@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.
- package/build/cjs/index.d.ts +2 -2
- package/build/cjs/index.js +2 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/meta.d.ts +15 -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
- package/build/es/index.d.mts +2 -2
- package/build/es/index.mjs +2 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/meta.d.mts +15 -5
- 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
- package/build/internal/cjs/index.d.ts +2 -2
- package/build/internal/cjs/index.js +2 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +15 -5
- 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
- package/build/internal/es/index.d.mts +2 -2
- package/build/internal/es/index.mjs +2 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +15 -5
- 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
- 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-
|
|
1
|
+
import { bl as QueryPublishedContentRequest$1, bq as QueryPublishedContentResponse$1 } from './multilingual-localization-public-v3-published-content-translation-published-contents.universal-7wjuj2Yv.js';
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient, EventDefinition, MaybeContext, BuildRESTFunction, BuildEventDefinition } from '@wix/sdk-types';
|
|
2
|
-
import { P as PublishedContentQueryBuilder, a as PublishedContentCreatedEnvelope, b as PublishedContentDeletedEnvelope, c as PublishedContentUpdatedEnvelope } from './multilingual-localization-public-v3-published-content-translation-published-contents.universal-
|
|
3
|
-
export { bz as ActionEvent, A as Alignment, aO as AnchorData, aU as AppEmbedData, aV as AppEmbedDataAppDataOneOf, p as AppType, b7 as AudioData, aE as Background, aF as BackgroundBackgroundOneOf, B as BackgroundType, bG as BaseEventMetadata, ba as BlockquoteData, aW as BookingData, K as Border, b5 as BorderColors, b9 as BulletedListData, J as ButtonData, bb as CaptionData, b4 as CellStyle, a3 as CodeBlockData, b0 as CollapsibleListData, aP as ColorData, Q as Colors, C as Crop, bp as CursorPaging, br as CursorPagingMetadata, bm as CursorQuery, bn as CursorQueryPagingMethodOneOf, bs as Cursors, aM as Decoration, aN as DecorationDataOneOf, D as DecorationType, bB as DeletePublishedContentRequest, bC as DeletePublishedContentResponse, aK as Design, b2 as Dimensions, q as Direction, a5 as DividerData, be as DocumentStyle, bt as DomainEvent, bu as DomainEventBodyOneOf, a_ as EmbedData, bA as Empty, bv as EntityCreatedEvent, by as EntityDeletedEvent, bx as EntityUpdatedEvent, aX as EventData, bH as EventMetadata, bi as ExtendedFields, a6 as FileData, a7 as FileSource, a8 as FileSourceDataOneOf, bg as FocalPoint, aS as FontSizeData, F as FontType, al as GIF, ak as GIFData, G as GIFType, aa as GalleryData, ag as GalleryOptions, bj as GetPublishedContentRequest, bk as GetPublishedContentResponse, aD as Gradient, an as HTMLData, ao as HTMLDataDataOneOf, am as HeadingData, _ as Height, bE as IdentificationData, bF as IdentificationDataIdOneOf, ac as Image, ap as ImageData, ar as ImageDataStyles, I as InitialExpandedItems, ae as Item, af as ItemDataOneOf, ai as ItemStyle, ah as Layout, bc as LayoutCellData, h as LayoutType, L as LineStyle, a0 as Link, aQ as LinkData, a1 as LinkDataOneOf, as as LinkPreviewData, at as LinkPreviewDataStyles, b6 as ListValue, au as MapData, av as MapSettings, M as MapType, ab as Media, aR as MentionData, bD as MessageEnvelope, bd as Metadata, z as Node, E as NodeDataOneOf, H as NodeStyle, N as NodeType, s as NullValue, a$ as Oembed, az as Option, aH as OptionDesign, aC as OptionLayout, b8 as OrderedListData, O as Orientation, a9 as PDFSettings, aw as ParagraphData, ay as Permissions, aZ as PlaybackOptions, U as PluginContainerData, d as PluginContainerDataAlignment, X as PluginContainerDataWidth, Y as PluginContainerDataWidthDataOneOf, aI as Poll, ax as PollData, aJ as PollDataLayout, aG as PollDesign, aB as PollLayout, o as PollLayoutDirection, n as PollLayoutType, k as Position, v as PublishedContent, x as PublishedContentField, y as PublishedContentFieldValueOneOf, bI as PublishedContentQueryResult, bl as QueryPublishedContentRequest, bq as QueryPublishedContentResponse, a2 as Rel, bw as RestoreInfo, R as RichContent, w as SchemaKey, S as SchemaScope, aA as Settings, t as SortOrder, bo as Sorting, j as Source, Z as Spoiler, aT as SpoilerData, $ as Styles, aq as StylesBorder, b3 as TableCellData, b1 as TableData, e as Target, f as TextAlignment, aL as TextData, bf as TextNodeStyle, a4 as TextStyle, aj as Thumbnails, i as ThumbnailsAlignment, T as Type, r as VerticalAlignment, ad as Video, aY as VideoData, bh as VideoResolution, V as ViewMode, l as ViewRole, m as VoteRole, u as WebhookIdentityType, g as Width, W as WidthType } from './multilingual-localization-public-v3-published-content-translation-published-contents.universal-
|
|
2
|
+
import { P as PublishedContentQueryBuilder, a as PublishedContentCreatedEnvelope, b as PublishedContentDeletedEnvelope, c as PublishedContentUpdatedEnvelope } from './multilingual-localization-public-v3-published-content-translation-published-contents.universal-7wjuj2Yv.mjs';
|
|
3
|
+
export { bz as ActionEvent, A as Alignment, aO as AnchorData, aU as AppEmbedData, aV as AppEmbedDataAppDataOneOf, p as AppType, b7 as AudioData, aE as Background, aF as BackgroundBackgroundOneOf, B as BackgroundType, bG as BaseEventMetadata, ba as BlockquoteData, aW as BookingData, K as Border, b5 as BorderColors, b9 as BulletedListData, J as ButtonData, bb as CaptionData, b4 as CellStyle, a3 as CodeBlockData, b0 as CollapsibleListData, aP as ColorData, Q as Colors, C as Crop, bp as CursorPaging, br as CursorPagingMetadata, bm as CursorQuery, bn as CursorQueryPagingMethodOneOf, bs as Cursors, aM as Decoration, aN as DecorationDataOneOf, D as DecorationType, bB as DeletePublishedContentRequest, bC as DeletePublishedContentResponse, aK as Design, b2 as Dimensions, q as Direction, a5 as DividerData, be as DocumentStyle, bt as DomainEvent, bu as DomainEventBodyOneOf, a_ as EmbedData, bA as Empty, bv as EntityCreatedEvent, by as EntityDeletedEvent, bx as EntityUpdatedEvent, aX as EventData, bH as EventMetadata, bi as ExtendedFields, a6 as FileData, a7 as FileSource, a8 as FileSourceDataOneOf, bg as FocalPoint, aS as FontSizeData, F as FontType, al as GIF, ak as GIFData, G as GIFType, aa as GalleryData, ag as GalleryOptions, bj as GetPublishedContentRequest, bk as GetPublishedContentResponse, aD as Gradient, an as HTMLData, ao as HTMLDataDataOneOf, am as HeadingData, _ as Height, bE as IdentificationData, bF as IdentificationDataIdOneOf, ac as Image, ap as ImageData, ar as ImageDataStyles, I as InitialExpandedItems, ae as Item, af as ItemDataOneOf, ai as ItemStyle, ah as Layout, bc as LayoutCellData, h as LayoutType, L as LineStyle, a0 as Link, aQ as LinkData, a1 as LinkDataOneOf, as as LinkPreviewData, at as LinkPreviewDataStyles, b6 as ListValue, au as MapData, av as MapSettings, M as MapType, ab as Media, aR as MentionData, bD as MessageEnvelope, bd as Metadata, z as Node, E as NodeDataOneOf, H as NodeStyle, N as NodeType, s as NullValue, a$ as Oembed, az as Option, aH as OptionDesign, aC as OptionLayout, b8 as OrderedListData, O as Orientation, a9 as PDFSettings, aw as ParagraphData, ay as Permissions, aZ as PlaybackOptions, U as PluginContainerData, d as PluginContainerDataAlignment, X as PluginContainerDataWidth, Y as PluginContainerDataWidthDataOneOf, aI as Poll, ax as PollData, aJ as PollDataLayout, aG as PollDesign, aB as PollLayout, o as PollLayoutDirection, n as PollLayoutType, k as Position, v as PublishedContent, x as PublishedContentField, y as PublishedContentFieldValueOneOf, bI as PublishedContentQueryResult, bl as QueryPublishedContentRequest, bq as QueryPublishedContentResponse, a2 as Rel, bw as RestoreInfo, R as RichContent, w as SchemaKey, S as SchemaScope, aA as Settings, t as SortOrder, bo as Sorting, j as Source, Z as Spoiler, aT as SpoilerData, $ as Styles, aq as StylesBorder, b3 as TableCellData, b1 as TableData, e as Target, f as TextAlignment, aL as TextData, bf as TextNodeStyle, a4 as TextStyle, aj as Thumbnails, i as ThumbnailsAlignment, T as Type, r as VerticalAlignment, ad as Video, aY as VideoData, bh as VideoResolution, V as ViewMode, l as ViewRole, m as VoteRole, u as WebhookIdentityType, g as Width, W as WidthType } from './multilingual-localization-public-v3-published-content-translation-published-contents.universal-7wjuj2Yv.mjs';
|
|
4
4
|
|
|
5
5
|
declare function queryPublishedContent$1(httpClient: HttpClient): QueryPublishedContentSignature;
|
|
6
6
|
interface QueryPublishedContentSignature {
|
|
@@ -402,6 +402,8 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
|
402
402
|
DecorationType2["FONT_SIZE"] = "FONT_SIZE";
|
|
403
403
|
DecorationType2["EXTERNAL"] = "EXTERNAL";
|
|
404
404
|
DecorationType2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
405
|
+
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
406
|
+
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
405
407
|
return DecorationType2;
|
|
406
408
|
})(DecorationType || {});
|
|
407
409
|
var FontType = /* @__PURE__ */ ((FontType2) => {
|