@wix/app-extensions 1.0.91 → 1.0.92

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18483,6 +18483,12 @@ interface EditorReactComponent {
18483
18483
  * @format WEB_URL
18484
18484
  */
18485
18485
  schemaUrl?: string | null;
18486
+ /**
18487
+ * The id of the app that manages this component when installed in a companion app
18488
+ * @internal
18489
+ * @format GUID
18490
+ */
18491
+ managingAppId?: string | null;
18486
18492
  }
18487
18493
  /** @internal */
18488
18494
  interface Resources {
@@ -24662,6 +24668,12 @@ interface EditorContextProvider {
24662
24668
  actions?: ContextActions;
24663
24669
  /** Display groups for the context provider, used to group data items in the editor for better UX */
24664
24670
  displayGroups?: Record<string, DisplayGroupItem>;
24671
+ /**
24672
+ * The id of the app that manages this component when installed in a companion app
24673
+ * @internal
24674
+ * @format GUID
24675
+ */
24676
+ managingAppId?: string | null;
24665
24677
  }
24666
24678
  /** @internal */
24667
24679
  interface EditorContextProviderResources {
@@ -24800,6 +24812,12 @@ interface EditorFunctionLibrary {
24800
24812
  * @format WEB_URL
24801
24813
  */
24802
24814
  schemaUrl?: string | null;
24815
+ /**
24816
+ * The id of the app that manages this component when installed in a companion app
24817
+ * @internal
24818
+ * @format GUID
24819
+ */
24820
+ managingAppId?: string | null;
24803
24821
  }
24804
24822
  /** @internal */
24805
24823
  interface FunctionResources {