@wix/auto_sdk_multilingual_translation-published-contents 1.0.25 → 1.0.26

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.
Files changed (21) hide show
  1. package/build/cjs/index.d.ts +2 -2
  2. package/build/cjs/index.js +2 -0
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/meta.d.ts +13 -3
  5. package/build/cjs/{multilingual-localization-public-v3-published-content-translation-published-contents.universal-CZFjMeB8.d.ts → multilingual-localization-public-v3-published-content-translation-published-contents.universal-CtXDNRl5.d.ts} +12 -2
  6. package/build/es/index.d.mts +2 -2
  7. package/build/es/index.mjs +2 -0
  8. package/build/es/index.mjs.map +1 -1
  9. package/build/es/meta.d.mts +13 -3
  10. package/build/es/{multilingual-localization-public-v3-published-content-translation-published-contents.universal-CZFjMeB8.d.mts → multilingual-localization-public-v3-published-content-translation-published-contents.universal-CtXDNRl5.d.mts} +12 -2
  11. package/build/internal/cjs/index.d.ts +2 -2
  12. package/build/internal/cjs/index.js +2 -0
  13. package/build/internal/cjs/index.js.map +1 -1
  14. package/build/internal/cjs/meta.d.ts +13 -3
  15. package/build/internal/cjs/{multilingual-localization-public-v3-published-content-translation-published-contents.universal-CZFjMeB8.d.ts → multilingual-localization-public-v3-published-content-translation-published-contents.universal-CtXDNRl5.d.ts} +12 -2
  16. package/build/internal/es/index.d.mts +2 -2
  17. package/build/internal/es/index.mjs +2 -0
  18. package/build/internal/es/index.mjs.map +1 -1
  19. package/build/internal/es/meta.d.mts +13 -3
  20. package/build/internal/es/{multilingual-localization-public-v3-published-content-translation-published-contents.universal-CZFjMeB8.d.mts → multilingual-localization-public-v3-published-content-translation-published-contents.universal-CtXDNRl5.d.mts} +12 -2
  21. package/package.json +2 -2
@@ -1,4 +1,4 @@
1
- import { bl as QueryPublishedContentRequest$1, bq as QueryPublishedContentResponse$1 } from './multilingual-localization-public-v3-published-content-translation-published-contents.universal-CZFjMeB8.mjs';
1
+ import { bl as QueryPublishedContentRequest$1, bq as QueryPublishedContentResponse$1 } from './multilingual-localization-public-v3-published-content-translation-published-contents.universal-CtXDNRl5.mjs';
2
2
 
3
3
  interface PublishedContent {
4
4
  /**
@@ -1205,6 +1205,10 @@ interface Decoration extends DecorationDataOneOf {
1205
1205
  spoilerData?: SpoilerData;
1206
1206
  /** Data for a strikethrough decoration. Defaults to `true`. */
1207
1207
  strikethroughData?: boolean | null;
1208
+ /** Data for a superscript decoration. Defaults to `true`. */
1209
+ superscriptData?: boolean | null;
1210
+ /** Data for a subscript decoration. Defaults to `true`. */
1211
+ subscriptData?: boolean | null;
1208
1212
  /** The type of decoration to apply. */
1209
1213
  type?: DecorationTypeWithLiterals;
1210
1214
  }
@@ -1230,6 +1234,10 @@ interface DecorationDataOneOf {
1230
1234
  spoilerData?: SpoilerData;
1231
1235
  /** Data for a strikethrough decoration. Defaults to `true`. */
1232
1236
  strikethroughData?: boolean | null;
1237
+ /** Data for a superscript decoration. Defaults to `true`. */
1238
+ superscriptData?: boolean | null;
1239
+ /** Data for a subscript decoration. Defaults to `true`. */
1240
+ subscriptData?: boolean | null;
1233
1241
  }
1234
1242
  declare enum DecorationType {
1235
1243
  BOLD = "BOLD",
@@ -1242,10 +1250,12 @@ declare enum DecorationType {
1242
1250
  COLOR = "COLOR",
1243
1251
  FONT_SIZE = "FONT_SIZE",
1244
1252
  EXTERNAL = "EXTERNAL",
1245
- STRIKETHROUGH = "STRIKETHROUGH"
1253
+ STRIKETHROUGH = "STRIKETHROUGH",
1254
+ SUPERSCRIPT = "SUPERSCRIPT",
1255
+ SUBSCRIPT = "SUBSCRIPT"
1246
1256
  }
1247
1257
  /** @enumType */
1248
- type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH';
1258
+ type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
1249
1259
  interface AnchorData {
1250
1260
  /** The target node's ID. */
1251
1261
  anchor?: string;
@@ -1203,6 +1203,10 @@ interface Decoration extends DecorationDataOneOf {
1203
1203
  spoilerData?: SpoilerData;
1204
1204
  /** Data for a strikethrough decoration. Defaults to `true`. */
1205
1205
  strikethroughData?: boolean | null;
1206
+ /** Data for a superscript decoration. Defaults to `true`. */
1207
+ superscriptData?: boolean | null;
1208
+ /** Data for a subscript decoration. Defaults to `true`. */
1209
+ subscriptData?: boolean | null;
1206
1210
  /** The type of decoration to apply. */
1207
1211
  type?: DecorationTypeWithLiterals;
1208
1212
  }
@@ -1228,6 +1232,10 @@ interface DecorationDataOneOf {
1228
1232
  spoilerData?: SpoilerData;
1229
1233
  /** Data for a strikethrough decoration. Defaults to `true`. */
1230
1234
  strikethroughData?: boolean | null;
1235
+ /** Data for a superscript decoration. Defaults to `true`. */
1236
+ superscriptData?: boolean | null;
1237
+ /** Data for a subscript decoration. Defaults to `true`. */
1238
+ subscriptData?: boolean | null;
1231
1239
  }
1232
1240
  declare enum DecorationType {
1233
1241
  BOLD = "BOLD",
@@ -1240,10 +1248,12 @@ declare enum DecorationType {
1240
1248
  COLOR = "COLOR",
1241
1249
  FONT_SIZE = "FONT_SIZE",
1242
1250
  EXTERNAL = "EXTERNAL",
1243
- STRIKETHROUGH = "STRIKETHROUGH"
1251
+ STRIKETHROUGH = "STRIKETHROUGH",
1252
+ SUPERSCRIPT = "SUPERSCRIPT",
1253
+ SUBSCRIPT = "SUBSCRIPT"
1244
1254
  }
1245
1255
  /** @enumType */
1246
- type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH';
1256
+ type DecorationTypeWithLiterals = DecorationType | 'BOLD' | 'ITALIC' | 'UNDERLINE' | 'SPOILER' | 'ANCHOR' | 'MENTION' | 'LINK' | 'COLOR' | 'FONT_SIZE' | 'EXTERNAL' | 'STRIKETHROUGH' | 'SUPERSCRIPT' | 'SUBSCRIPT';
1247
1257
  interface AnchorData {
1248
1258
  /** The target node's ID. */
1249
1259
  anchor?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_multilingual_translation-published-contents",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -49,5 +49,5 @@
49
49
  "fqdn": "wix.multilingual.localization_public.v3.published_content"
50
50
  }
51
51
  },
52
- "falconPackageHash": "545ec6234957f36fb136a0007b0b7dfed5358faa9ac212e806b9cfaf"
52
+ "falconPackageHash": "32a7d16214eb128d461092c47f49f167a9b8168319e3dafbc93ff4ce"
53
53
  }