Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .changeset/calm-bobcats-peel.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@sitecore-marketplace-sdk/core": patch
---

Add Organization ID and Tenant ID in ApplicationRuntimeContext
Add OrganizationID and MarketplaceTenantID in ApplicationRuntimeContext
4 changes: 2 additions & 2 deletions packages/core/src/shared-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export interface ApplicationContext {
iconUrl?: string;
state?: string;
installationId?: string;
tenantId?: string;
MarketplaceAppTenantId?: string;
organizationId?: string;
/** @deprecated Use resourceAccess instead */
resources?: ApplicationResourceContext[];
Expand All @@ -188,7 +188,7 @@ export interface ApplicationContext {
*/
export interface ApplicationRuntimeContext {
installationId: string;
tenantId?: string;
MarketplaceAppTenantId?: string;
organizationId?: string;
application: {
id: string;
Expand Down