@wix/app-extensions 1.0.154 → 1.0.156

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.
@@ -5629,6 +5629,11 @@ interface ActionSPIConfig {
5629
5629
  id?: string | null;
5630
5630
  /** Whether this action supports synchronous invocation. */
5631
5631
  supportsSyncInvocation?: boolean;
5632
+ /**
5633
+ * Provider-owned configuration persisted with the action.
5634
+ * @internal
5635
+ */
5636
+ implementationConfiguration?: Record<string, any> | null;
5632
5637
  }
5633
5638
  /** @internal */
5634
5639
  declare enum ActionSPIConfigInterfaceConfigurationType {
@@ -25524,11 +25529,12 @@ declare enum AssetType {
25524
25529
  WIDGET = "WIDGET",
25525
25530
  FONT = "FONT",
25526
25531
  ICONS = "ICONS",
25527
- STORY = "STORY"
25532
+ STORY = "STORY",
25533
+ MODEL_3D = "MODEL_3D"
25528
25534
  }
25529
25535
  /** @enumType */
25530
25536
  /** @internal */
25531
- type AssetTypeWithLiterals = AssetType | 'UNKNOWN' | 'IMAGE' | 'VIDEO' | 'LOGO' | 'EVENT' | 'FORM' | 'PDF' | 'RICOS' | 'DOC' | 'SLIDE' | 'WIDGET' | 'FONT' | 'ICONS' | 'STORY';
25537
+ type AssetTypeWithLiterals = AssetType | 'UNKNOWN' | 'IMAGE' | 'VIDEO' | 'LOGO' | 'EVENT' | 'FORM' | 'PDF' | 'RICOS' | 'DOC' | 'SLIDE' | 'WIDGET' | 'FONT' | 'ICONS' | 'STORY' | 'MODEL_3D';
25532
25538
  /** @internal */
25533
25539
  declare enum FileMediaType {
25534
25540
  UNKNOWN_FILE_MEDIA_TYPE = "UNKNOWN_FILE_MEDIA_TYPE",
@@ -3045,6 +3045,7 @@ var AssetType = /* @__PURE__ */ ((AssetType2) => {
3045
3045
  AssetType2["FONT"] = "FONT";
3046
3046
  AssetType2["ICONS"] = "ICONS";
3047
3047
  AssetType2["STORY"] = "STORY";
3048
+ AssetType2["MODEL_3D"] = "MODEL_3D";
3048
3049
  return AssetType2;
3049
3050
  })(AssetType || {});
3050
3051
  var FileMediaType = /* @__PURE__ */ ((FileMediaType2) => {