@wix/app-extensions 1.0.101 → 1.0.102
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
|
@@ -24582,11 +24582,12 @@ declare enum AssetType {
|
|
|
24582
24582
|
SLIDE = "SLIDE",
|
|
24583
24583
|
WIDGET = "WIDGET",
|
|
24584
24584
|
FONT = "FONT",
|
|
24585
|
-
ICONS = "ICONS"
|
|
24585
|
+
ICONS = "ICONS",
|
|
24586
|
+
STORY = "STORY"
|
|
24586
24587
|
}
|
|
24587
24588
|
/** @enumType */
|
|
24588
24589
|
/** @internal */
|
|
24589
|
-
type AssetTypeWithLiterals = AssetType | 'UNKNOWN' | 'IMAGE' | 'VIDEO' | 'LOGO' | 'EVENT' | 'FORM' | 'PDF' | 'RICOS' | 'DOC' | 'SLIDE' | 'WIDGET' | 'FONT' | 'ICONS';
|
|
24590
|
+
type AssetTypeWithLiterals = AssetType | 'UNKNOWN' | 'IMAGE' | 'VIDEO' | 'LOGO' | 'EVENT' | 'FORM' | 'PDF' | 'RICOS' | 'DOC' | 'SLIDE' | 'WIDGET' | 'FONT' | 'ICONS' | 'STORY';
|
|
24590
24591
|
/** @internal */
|
|
24591
24592
|
declare enum FileMediaType {
|
|
24592
24593
|
UNKNOWN_FILE_MEDIA_TYPE = "UNKNOWN_FILE_MEDIA_TYPE",
|
|
@@ -3486,6 +3486,7 @@ var AssetType = /* @__PURE__ */ ((AssetType2) => {
|
|
|
3486
3486
|
AssetType2["WIDGET"] = "WIDGET";
|
|
3487
3487
|
AssetType2["FONT"] = "FONT";
|
|
3488
3488
|
AssetType2["ICONS"] = "ICONS";
|
|
3489
|
+
AssetType2["STORY"] = "STORY";
|
|
3489
3490
|
return AssetType2;
|
|
3490
3491
|
})(AssetType || {});
|
|
3491
3492
|
var FileMediaType = /* @__PURE__ */ ((FileMediaType2) => {
|