@wix/auto_sdk_multilingual_translation-published-contents 1.0.27 → 1.0.29

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 +15 -5
  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-7wjuj2Yv.d.ts} +14 -4
  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 +15 -5
  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-7wjuj2Yv.d.mts} +14 -4
  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 +15 -5
  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-7wjuj2Yv.d.ts} +14 -4
  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 +15 -5
  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-7wjuj2Yv.d.mts} +14 -4
  21. package/package.json +3 -3
@@ -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-7wjuj2Yv.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;
@@ -1658,13 +1668,13 @@ interface CursorQuery extends CursorQueryPagingMethodOneOf {
1658
1668
  /**
1659
1669
  * Filter object.
1660
1670
  *
1661
- * Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
1671
+ * Learn more about [filtering](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters).
1662
1672
  */
1663
1673
  filter?: Record<string, any> | null;
1664
1674
  /**
1665
1675
  * Sort object.
1666
1676
  *
1667
- * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
1677
+ * Learn more about [sorting](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#sorting).
1668
1678
  * @maxSize 5
1669
1679
  */
1670
1680
  sort?: Sorting[];
@@ -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;
@@ -1650,13 +1660,13 @@ interface CursorQuery extends CursorQueryPagingMethodOneOf {
1650
1660
  /**
1651
1661
  * Filter object.
1652
1662
  *
1653
- * Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
1663
+ * Learn more about [filtering](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters).
1654
1664
  */
1655
1665
  filter?: Record<string, any> | null;
1656
1666
  /**
1657
1667
  * Sort object.
1658
1668
  *
1659
- * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
1669
+ * Learn more about [sorting](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#sorting).
1660
1670
  * @maxSize 5
1661
1671
  */
1662
1672
  sort?: Sorting[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/auto_sdk_multilingual_translation-published-contents",
3
- "version": "1.0.27",
3
+ "version": "1.0.29",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -28,7 +28,7 @@
28
28
  "service-plugins"
29
29
  ],
30
30
  "dependencies": {
31
- "@wix/sdk-runtime": "^0.3.49",
31
+ "@wix/sdk-runtime": "^0.3.55",
32
32
  "@wix/sdk-types": "^1.13.28"
33
33
  },
34
34
  "devDependencies": {
@@ -49,5 +49,5 @@
49
49
  "fqdn": "wix.multilingual.localization_public.v3.published_content"
50
50
  }
51
51
  },
52
- "falconPackageHash": "545ec6234957f36fb136a0007b0b7dfed5358faa9ac212e806b9cfaf"
52
+ "falconPackageHash": "e9737e5e89b2156a5688dd8a497343a3c798c2fbcac7575d0833cae0"
53
53
  }