@wix/app-extensions 1.0.154 → 1.0.155
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.
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +3 -2
- package/build/trusted/cjs/index.js +1 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +3 -2
- package/build/trusted/es/index.mjs +1 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -25524,11 +25524,12 @@ declare enum AssetType {
|
|
|
25524
25524
|
WIDGET = "WIDGET",
|
|
25525
25525
|
FONT = "FONT",
|
|
25526
25526
|
ICONS = "ICONS",
|
|
25527
|
-
STORY = "STORY"
|
|
25527
|
+
STORY = "STORY",
|
|
25528
|
+
MODEL_3D = "MODEL_3D"
|
|
25528
25529
|
}
|
|
25529
25530
|
/** @enumType */
|
|
25530
25531
|
/** @internal */
|
|
25531
|
-
type AssetTypeWithLiterals = AssetType | 'UNKNOWN' | 'IMAGE' | 'VIDEO' | 'LOGO' | 'EVENT' | 'FORM' | 'PDF' | 'RICOS' | 'DOC' | 'SLIDE' | 'WIDGET' | 'FONT' | 'ICONS' | 'STORY';
|
|
25532
|
+
type AssetTypeWithLiterals = AssetType | 'UNKNOWN' | 'IMAGE' | 'VIDEO' | 'LOGO' | 'EVENT' | 'FORM' | 'PDF' | 'RICOS' | 'DOC' | 'SLIDE' | 'WIDGET' | 'FONT' | 'ICONS' | 'STORY' | 'MODEL_3D';
|
|
25532
25533
|
/** @internal */
|
|
25533
25534
|
declare enum FileMediaType {
|
|
25534
25535
|
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) => {
|