@wix/auto_sdk_multilingual_translation-published-contents 1.0.36 → 1.0.37
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 +3 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.js +3 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +190 -1
- package/build/cjs/meta.js +365 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +3 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.mjs +3 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +190 -1
- package/build/es/meta.mjs +325 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +3 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.js +3 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +190 -1
- package/build/internal/cjs/meta.js +365 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +3 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.mjs +3 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +190 -1
- package/build/internal/es/meta.mjs +325 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -1734,6 +1734,27 @@ interface BorderColors {
|
|
|
1734
1734
|
*/
|
|
1735
1735
|
bottom?: string | null;
|
|
1736
1736
|
}
|
|
1737
|
+
/**
|
|
1738
|
+
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
1739
|
+
* `Value` type union.
|
|
1740
|
+
*
|
|
1741
|
+
* The JSON representation for `NullValue` is JSON `null`.
|
|
1742
|
+
*/
|
|
1743
|
+
declare enum NullValue {
|
|
1744
|
+
/** Null value. */
|
|
1745
|
+
NULL_VALUE = "NULL_VALUE"
|
|
1746
|
+
}
|
|
1747
|
+
/** @enumType */
|
|
1748
|
+
type NullValueWithLiterals = NullValue | 'NULL_VALUE';
|
|
1749
|
+
/**
|
|
1750
|
+
* `ListValue` is a wrapper around a repeated field of values.
|
|
1751
|
+
*
|
|
1752
|
+
* The JSON representation for `ListValue` is JSON array.
|
|
1753
|
+
*/
|
|
1754
|
+
interface ListValue {
|
|
1755
|
+
/** Repeated field of dynamically typed values. */
|
|
1756
|
+
values?: any[];
|
|
1757
|
+
}
|
|
1737
1758
|
interface AudioData {
|
|
1738
1759
|
/** Styling for the audio node's container. */
|
|
1739
1760
|
containerData?: PluginContainerData;
|
|
@@ -1843,6 +1864,16 @@ interface Image {
|
|
|
1843
1864
|
*/
|
|
1844
1865
|
filename?: string | null;
|
|
1845
1866
|
}
|
|
1867
|
+
interface FocalPoint {
|
|
1868
|
+
/** X-coordinate of the focal point. */
|
|
1869
|
+
x?: number;
|
|
1870
|
+
/** Y-coordinate of the focal point. */
|
|
1871
|
+
y?: number;
|
|
1872
|
+
/** crop by height */
|
|
1873
|
+
height?: number | null;
|
|
1874
|
+
/** crop by width */
|
|
1875
|
+
width?: number | null;
|
|
1876
|
+
}
|
|
1846
1877
|
interface VideoV2 {
|
|
1847
1878
|
/** WixMedia ID. */
|
|
1848
1879
|
id?: string;
|
|
@@ -1887,6 +1918,17 @@ interface ExtendedFields {
|
|
|
1887
1918
|
*/
|
|
1888
1919
|
namespaces?: Record<string, Record<string, any>>;
|
|
1889
1920
|
}
|
|
1921
|
+
interface GetPublishedContentRequest {
|
|
1922
|
+
/**
|
|
1923
|
+
* The ID of the published content
|
|
1924
|
+
* @format GUID
|
|
1925
|
+
*/
|
|
1926
|
+
contentId?: string;
|
|
1927
|
+
}
|
|
1928
|
+
interface GetPublishedContentResponse {
|
|
1929
|
+
/** The published content */
|
|
1930
|
+
publishedContent?: PublishedContent;
|
|
1931
|
+
}
|
|
1890
1932
|
interface QueryPublishedContentRequest {
|
|
1891
1933
|
/** Query options. Note that some query filters are required. See the API description for a list of required filters. */
|
|
1892
1934
|
query: CursorQuery;
|
|
@@ -1982,6 +2024,153 @@ interface Cursors {
|
|
|
1982
2024
|
*/
|
|
1983
2025
|
prev?: string | null;
|
|
1984
2026
|
}
|
|
2027
|
+
interface DomainEvent extends DomainEventBodyOneOf {
|
|
2028
|
+
createdEvent?: EntityCreatedEvent;
|
|
2029
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2030
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2031
|
+
actionEvent?: ActionEvent;
|
|
2032
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
2033
|
+
id?: string;
|
|
2034
|
+
/**
|
|
2035
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
2036
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
2037
|
+
*/
|
|
2038
|
+
entityFqdn?: string;
|
|
2039
|
+
/**
|
|
2040
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
2041
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
2042
|
+
*/
|
|
2043
|
+
slug?: string;
|
|
2044
|
+
/** ID of the entity associated with the event. */
|
|
2045
|
+
entityId?: string;
|
|
2046
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
2047
|
+
eventTime?: Date | null;
|
|
2048
|
+
/**
|
|
2049
|
+
* Whether the event was triggered as a result of a privacy regulation application
|
|
2050
|
+
* (for example, GDPR).
|
|
2051
|
+
*/
|
|
2052
|
+
triggeredByAnonymizeRequest?: boolean | null;
|
|
2053
|
+
/** If present, indicates the action that triggered the event. */
|
|
2054
|
+
originatedFrom?: string | null;
|
|
2055
|
+
/**
|
|
2056
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
2057
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
2058
|
+
*/
|
|
2059
|
+
entityEventSequence?: string | null;
|
|
2060
|
+
}
|
|
2061
|
+
/** @oneof */
|
|
2062
|
+
interface DomainEventBodyOneOf {
|
|
2063
|
+
createdEvent?: EntityCreatedEvent;
|
|
2064
|
+
updatedEvent?: EntityUpdatedEvent;
|
|
2065
|
+
deletedEvent?: EntityDeletedEvent;
|
|
2066
|
+
actionEvent?: ActionEvent;
|
|
2067
|
+
}
|
|
2068
|
+
interface EntityCreatedEvent {
|
|
2069
|
+
entityAsJson?: string;
|
|
2070
|
+
/** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */
|
|
2071
|
+
restoreInfo?: RestoreInfo;
|
|
2072
|
+
}
|
|
2073
|
+
interface RestoreInfo {
|
|
2074
|
+
deletedDate?: Date | null;
|
|
2075
|
+
}
|
|
2076
|
+
interface EntityUpdatedEvent {
|
|
2077
|
+
/**
|
|
2078
|
+
* Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.
|
|
2079
|
+
* This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.
|
|
2080
|
+
* We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.
|
|
2081
|
+
*/
|
|
2082
|
+
currentEntityAsJson?: string;
|
|
2083
|
+
}
|
|
2084
|
+
interface EntityDeletedEvent {
|
|
2085
|
+
/** Entity that was deleted. */
|
|
2086
|
+
deletedEntityAsJson?: string | null;
|
|
2087
|
+
}
|
|
2088
|
+
interface ActionEvent {
|
|
2089
|
+
bodyAsJson?: string;
|
|
2090
|
+
}
|
|
2091
|
+
interface Empty {
|
|
2092
|
+
}
|
|
2093
|
+
interface DeletePublishedContentRequest {
|
|
2094
|
+
/**
|
|
2095
|
+
* The ID of the published content to delete
|
|
2096
|
+
* @format GUID
|
|
2097
|
+
*/
|
|
2098
|
+
contentId?: string;
|
|
2099
|
+
}
|
|
2100
|
+
interface DeletePublishedContentResponse {
|
|
2101
|
+
}
|
|
2102
|
+
interface MessageEnvelope {
|
|
2103
|
+
/**
|
|
2104
|
+
* App instance ID.
|
|
2105
|
+
* @format GUID
|
|
2106
|
+
*/
|
|
2107
|
+
instanceId?: string | null;
|
|
2108
|
+
/**
|
|
2109
|
+
* Event type.
|
|
2110
|
+
* @maxLength 150
|
|
2111
|
+
*/
|
|
2112
|
+
eventType?: string;
|
|
2113
|
+
/** The identification type and identity data. */
|
|
2114
|
+
identity?: IdentificationData;
|
|
2115
|
+
/** Stringify payload. */
|
|
2116
|
+
data?: string;
|
|
2117
|
+
}
|
|
2118
|
+
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
2119
|
+
/**
|
|
2120
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2121
|
+
* @format GUID
|
|
2122
|
+
*/
|
|
2123
|
+
anonymousVisitorId?: string;
|
|
2124
|
+
/**
|
|
2125
|
+
* ID of a site visitor that has logged in to the site.
|
|
2126
|
+
* @format GUID
|
|
2127
|
+
*/
|
|
2128
|
+
memberId?: string;
|
|
2129
|
+
/**
|
|
2130
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2131
|
+
* @format GUID
|
|
2132
|
+
*/
|
|
2133
|
+
wixUserId?: string;
|
|
2134
|
+
/**
|
|
2135
|
+
* ID of an app.
|
|
2136
|
+
* @format GUID
|
|
2137
|
+
*/
|
|
2138
|
+
appId?: string;
|
|
2139
|
+
/** @readonly */
|
|
2140
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
2141
|
+
}
|
|
2142
|
+
/** @oneof */
|
|
2143
|
+
interface IdentificationDataIdOneOf {
|
|
2144
|
+
/**
|
|
2145
|
+
* ID of a site visitor that has not logged in to the site.
|
|
2146
|
+
* @format GUID
|
|
2147
|
+
*/
|
|
2148
|
+
anonymousVisitorId?: string;
|
|
2149
|
+
/**
|
|
2150
|
+
* ID of a site visitor that has logged in to the site.
|
|
2151
|
+
* @format GUID
|
|
2152
|
+
*/
|
|
2153
|
+
memberId?: string;
|
|
2154
|
+
/**
|
|
2155
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
2156
|
+
* @format GUID
|
|
2157
|
+
*/
|
|
2158
|
+
wixUserId?: string;
|
|
2159
|
+
/**
|
|
2160
|
+
* ID of an app.
|
|
2161
|
+
* @format GUID
|
|
2162
|
+
*/
|
|
2163
|
+
appId?: string;
|
|
2164
|
+
}
|
|
2165
|
+
declare enum WebhookIdentityType {
|
|
2166
|
+
UNKNOWN = "UNKNOWN",
|
|
2167
|
+
ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR",
|
|
2168
|
+
MEMBER = "MEMBER",
|
|
2169
|
+
WIX_USER = "WIX_USER",
|
|
2170
|
+
APP = "APP"
|
|
2171
|
+
}
|
|
2172
|
+
/** @enumType */
|
|
2173
|
+
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1985
2174
|
|
|
1986
2175
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
1987
2176
|
getUrl: (context: any) => string;
|
|
@@ -1995,4 +2184,4 @@ type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q
|
|
|
1995
2184
|
};
|
|
1996
2185
|
declare function queryPublishedContent(): __PublicMethodMetaInfo<'GET', {}, QueryPublishedContentRequest$1, QueryPublishedContentRequest, QueryPublishedContentResponse$1, QueryPublishedContentResponse>;
|
|
1997
2186
|
|
|
1998
|
-
export { type __PublicMethodMetaInfo, queryPublishedContent };
|
|
2187
|
+
export { type ActionEvent as ActionEventOriginal, Alignment as AlignmentOriginal, type AlignmentWithLiterals as AlignmentWithLiteralsOriginal, type AnchorData as AnchorDataOriginal, type AppEmbedDataAppDataOneOf as AppEmbedDataAppDataOneOfOriginal, type AppEmbedData as AppEmbedDataOriginal, AppType as AppTypeOriginal, type AppTypeWithLiterals as AppTypeWithLiteralsOriginal, AspectRatio as AspectRatioOriginal, type AspectRatioWithLiterals as AspectRatioWithLiteralsOriginal, type AudioData as AudioDataOriginal, type BackgroundBackgroundOneOf as BackgroundBackgroundOneOfOriginal, type Background as BackgroundOriginal, BackgroundType as BackgroundTypeOriginal, type BackgroundTypeWithLiterals as BackgroundTypeWithLiteralsOriginal, type BlockquoteData as BlockquoteDataOriginal, type BookingData as BookingDataOriginal, type BorderColors as BorderColorsOriginal, type Border as BorderOriginal, type BulletedListData as BulletedListDataOriginal, type ButtonData as ButtonDataOriginal, ButtonDataType as ButtonDataTypeOriginal, type ButtonDataTypeWithLiterals as ButtonDataTypeWithLiteralsOriginal, type ButtonStyles as ButtonStylesOriginal, type CaptionData as CaptionDataOriginal, type CardStyles as CardStylesOriginal, type CellStyle as CellStyleOriginal, type CodeBlockData as CodeBlockDataOriginal, type CollapsibleListData as CollapsibleListDataOriginal, type ColorData as ColorDataOriginal, type Colors as ColorsOriginal, Crop as CropOriginal, type CropWithLiterals as CropWithLiteralsOriginal, type CursorPagingMetadata as CursorPagingMetadataOriginal, type CursorPaging as CursorPagingOriginal, type CursorQuery as CursorQueryOriginal, type CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal, type Cursors as CursorsOriginal, type DecorationDataOneOf as DecorationDataOneOfOriginal, type Decoration as DecorationOriginal, DecorationType as DecorationTypeOriginal, type DecorationTypeWithLiterals as DecorationTypeWithLiteralsOriginal, type DeletePublishedContentRequest as DeletePublishedContentRequestOriginal, type DeletePublishedContentResponse as DeletePublishedContentResponseOriginal, type Design as DesignOriginal, type Dimensions as DimensionsOriginal, Direction as DirectionOriginal, type DirectionWithLiterals as DirectionWithLiteralsOriginal, DividerDataAlignment as DividerDataAlignmentOriginal, type DividerDataAlignmentWithLiterals as DividerDataAlignmentWithLiteralsOriginal, type DividerData as DividerDataOriginal, type Document as DocumentOriginal, type DocumentStyle as DocumentStyleOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type EmbedData as EmbedDataOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type EventData as EventDataOriginal, type ExtendedFields as ExtendedFieldsOriginal, type FileData as FileDataOriginal, type FileSourceDataOneOf as FileSourceDataOneOfOriginal, type FileSource as FileSourceOriginal, type FocalPoint as FocalPointOriginal, type FontSizeData as FontSizeDataOriginal, FontType as FontTypeOriginal, type FontTypeWithLiterals as FontTypeWithLiteralsOriginal, type GIFData as GIFDataOriginal, type GIF as GIFOriginal, GIFType as GIFTypeOriginal, type GIFTypeWithLiterals as GIFTypeWithLiteralsOriginal, type GalleryData as GalleryDataOriginal, type GalleryOptionsLayout as GalleryOptionsLayoutOriginal, type GalleryOptions as GalleryOptionsOriginal, type GetPublishedContentRequest as GetPublishedContentRequestOriginal, type GetPublishedContentResponse as GetPublishedContentResponseOriginal, type Gradient as GradientOriginal, type HTMLDataDataOneOf as HTMLDataDataOneOfOriginal, type HTMLData as HTMLDataOriginal, type HeadingData as HeadingDataOriginal, type Height as HeightOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type ImageData as ImageDataOriginal, type ImageDataStyles as ImageDataStylesOriginal, type Image as ImageOriginal, type ImageStyles as ImageStylesOriginal, InitialExpandedItems as InitialExpandedItemsOriginal, type InitialExpandedItemsWithLiterals as InitialExpandedItemsWithLiteralsOriginal, type ItemDataOneOf as ItemDataOneOfOriginal, type ItemImage as ItemImageOriginal, type Item as ItemOriginal, type ItemStyle as ItemStyleOriginal, type LayoutCellData as LayoutCellDataOriginal, Layout as LayoutOriginal, LayoutType as LayoutTypeOriginal, type LayoutTypeWithLiterals as LayoutTypeWithLiteralsOriginal, type LayoutWithLiterals as LayoutWithLiteralsOriginal, LineStyle as LineStyleOriginal, type LineStyleWithLiterals as LineStyleWithLiteralsOriginal, type LinkDataOneOf as LinkDataOneOfOriginal, type LinkData as LinkDataOriginal, type Link as LinkOriginal, type LinkPreviewData as LinkPreviewDataOriginal, type LinkPreviewDataStyles as LinkPreviewDataStylesOriginal, type ListValue as ListValueOriginal, type MapData as MapDataOriginal, type MapSettings as MapSettingsOriginal, MapType as MapTypeOriginal, type MapTypeWithLiterals as MapTypeWithLiteralsOriginal, type Media as MediaOriginal, type MentionData as MentionDataOriginal, type MessageEnvelope as MessageEnvelopeOriginal, type Metadata as MetadataOriginal, type NodeDataOneOf as NodeDataOneOfOriginal, type Node as NodeOriginal, type NodeStyle as NodeStyleOriginal, NodeType as NodeTypeOriginal, type NodeTypeWithLiterals as NodeTypeWithLiteralsOriginal, NullValue as NullValueOriginal, type NullValueWithLiterals as NullValueWithLiteralsOriginal, type Oembed as OembedOriginal, type OptionDesign as OptionDesignOriginal, type OptionLayout as OptionLayoutOriginal, type Option as OptionOriginal, type OrderedListData as OrderedListDataOriginal, Orientation as OrientationOriginal, type OrientationWithLiterals as OrientationWithLiteralsOriginal, type PDFSettings as PDFSettingsOriginal, type ParagraphData as ParagraphDataOriginal, type Permissions as PermissionsOriginal, Placement as PlacementOriginal, type PlacementWithLiterals as PlacementWithLiteralsOriginal, type PlaybackOptions as PlaybackOptionsOriginal, PluginContainerDataAlignment as PluginContainerDataAlignmentOriginal, type PluginContainerDataAlignmentWithLiterals as PluginContainerDataAlignmentWithLiteralsOriginal, type PluginContainerData as PluginContainerDataOriginal, type PluginContainerDataWidthDataOneOf as PluginContainerDataWidthDataOneOfOriginal, type PluginContainerDataWidth as PluginContainerDataWidthOriginal, type PollDataLayout as PollDataLayoutOriginal, type PollData as PollDataOriginal, type PollDesign as PollDesignOriginal, PollLayoutDirection as PollLayoutDirectionOriginal, type PollLayoutDirectionWithLiterals as PollLayoutDirectionWithLiteralsOriginal, type PollLayout as PollLayoutOriginal, PollLayoutType as PollLayoutTypeOriginal, type PollLayoutTypeWithLiterals as PollLayoutTypeWithLiteralsOriginal, type Poll as PollOriginal, Position as PositionOriginal, type PositionWithLiterals as PositionWithLiteralsOriginal, type PricingData as PricingDataOriginal, type PublishedContentField as PublishedContentFieldOriginal, type PublishedContentFieldValueOneOf as PublishedContentFieldValueOneOfOriginal, type PublishedContent as PublishedContentOriginal, type QueryPublishedContentRequest as QueryPublishedContentRequestOriginal, type QueryPublishedContentResponse as QueryPublishedContentResponseOriginal, type Rel as RelOriginal, Resizing as ResizingOriginal, type ResizingWithLiterals as ResizingWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type RibbonStyles as RibbonStylesOriginal, type RichContent as RichContentOriginal, type SchemaKey as SchemaKeyOriginal, SchemaScope as SchemaScopeOriginal, type SchemaScopeWithLiterals as SchemaScopeWithLiteralsOriginal, type Settings as SettingsOriginal, SortOrder as SortOrderOriginal, type SortOrderWithLiterals as SortOrderWithLiteralsOriginal, type Sorting as SortingOriginal, Source as SourceOriginal, type SourceWithLiterals as SourceWithLiteralsOriginal, type SpoilerData as SpoilerDataOriginal, type Spoiler as SpoilerOriginal, type StylesBorder as StylesBorderOriginal, type Styles as StylesOriginal, StylesPosition as StylesPositionOriginal, type StylesPositionWithLiterals as StylesPositionWithLiteralsOriginal, type TableCellData as TableCellDataOriginal, type TableData as TableDataOriginal, Target as TargetOriginal, type TargetWithLiterals as TargetWithLiteralsOriginal, TextAlignment as TextAlignmentOriginal, type TextAlignmentWithLiterals as TextAlignmentWithLiteralsOriginal, type TextData as TextDataOriginal, type TextNodeStyle as TextNodeStyleOriginal, type TextStyle as TextStyleOriginal, ThumbnailsAlignment as ThumbnailsAlignmentOriginal, type ThumbnailsAlignmentWithLiterals as ThumbnailsAlignmentWithLiteralsOriginal, type Thumbnails as ThumbnailsOriginal, Type as TypeOriginal, type TypeWithLiterals as TypeWithLiteralsOriginal, VerticalAlignment as VerticalAlignmentOriginal, type VerticalAlignmentWithLiterals as VerticalAlignmentWithLiteralsOriginal, type VideoData as VideoDataOriginal, type Video as VideoOriginal, type VideoResolution as VideoResolutionOriginal, type VideoV2 as VideoV2Original, ViewMode as ViewModeOriginal, type ViewModeWithLiterals as ViewModeWithLiteralsOriginal, ViewRole as ViewRoleOriginal, type ViewRoleWithLiterals as ViewRoleWithLiteralsOriginal, VoteRole as VoteRoleOriginal, type VoteRoleWithLiterals as VoteRoleWithLiteralsOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, Width as WidthOriginal, WidthType as WidthTypeOriginal, type WidthTypeWithLiterals as WidthTypeWithLiteralsOriginal, type WidthWithLiterals as WidthWithLiteralsOriginal, type __PublicMethodMetaInfo, queryPublishedContent };
|
|
@@ -20,6 +20,46 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
20
20
|
// meta.ts
|
|
21
21
|
var meta_exports = {};
|
|
22
22
|
__export(meta_exports, {
|
|
23
|
+
AlignmentOriginal: () => Alignment,
|
|
24
|
+
AppTypeOriginal: () => AppType,
|
|
25
|
+
AspectRatioOriginal: () => AspectRatio,
|
|
26
|
+
BackgroundTypeOriginal: () => BackgroundType,
|
|
27
|
+
ButtonDataTypeOriginal: () => ButtonDataType,
|
|
28
|
+
CropOriginal: () => Crop,
|
|
29
|
+
DecorationTypeOriginal: () => DecorationType,
|
|
30
|
+
DirectionOriginal: () => Direction,
|
|
31
|
+
DividerDataAlignmentOriginal: () => DividerDataAlignment,
|
|
32
|
+
FontTypeOriginal: () => FontType,
|
|
33
|
+
GIFTypeOriginal: () => GIFType,
|
|
34
|
+
InitialExpandedItemsOriginal: () => InitialExpandedItems,
|
|
35
|
+
LayoutOriginal: () => Layout,
|
|
36
|
+
LayoutTypeOriginal: () => LayoutType,
|
|
37
|
+
LineStyleOriginal: () => LineStyle,
|
|
38
|
+
MapTypeOriginal: () => MapType,
|
|
39
|
+
NodeTypeOriginal: () => NodeType,
|
|
40
|
+
NullValueOriginal: () => NullValue,
|
|
41
|
+
OrientationOriginal: () => Orientation,
|
|
42
|
+
PlacementOriginal: () => Placement,
|
|
43
|
+
PluginContainerDataAlignmentOriginal: () => PluginContainerDataAlignment,
|
|
44
|
+
PollLayoutDirectionOriginal: () => PollLayoutDirection,
|
|
45
|
+
PollLayoutTypeOriginal: () => PollLayoutType,
|
|
46
|
+
PositionOriginal: () => Position,
|
|
47
|
+
ResizingOriginal: () => Resizing,
|
|
48
|
+
SchemaScopeOriginal: () => SchemaScope,
|
|
49
|
+
SortOrderOriginal: () => SortOrder,
|
|
50
|
+
SourceOriginal: () => Source,
|
|
51
|
+
StylesPositionOriginal: () => StylesPosition,
|
|
52
|
+
TargetOriginal: () => Target,
|
|
53
|
+
TextAlignmentOriginal: () => TextAlignment,
|
|
54
|
+
ThumbnailsAlignmentOriginal: () => ThumbnailsAlignment,
|
|
55
|
+
TypeOriginal: () => Type,
|
|
56
|
+
VerticalAlignmentOriginal: () => VerticalAlignment,
|
|
57
|
+
ViewModeOriginal: () => ViewMode,
|
|
58
|
+
ViewRoleOriginal: () => ViewRole,
|
|
59
|
+
VoteRoleOriginal: () => VoteRole,
|
|
60
|
+
WebhookIdentityTypeOriginal: () => WebhookIdentityType,
|
|
61
|
+
WidthOriginal: () => Width,
|
|
62
|
+
WidthTypeOriginal: () => WidthType,
|
|
23
63
|
queryPublishedContent: () => queryPublishedContent2
|
|
24
64
|
});
|
|
25
65
|
module.exports = __toCommonJS(meta_exports);
|
|
@@ -99,6 +139,9 @@ function queryPublishedContent(payload) {
|
|
|
99
139
|
method: "GET",
|
|
100
140
|
methodFqn: "com.wixpress.localizationpublic.v3.TranslationPublishedContent.QueryPublishedContent",
|
|
101
141
|
packageName: PACKAGE_NAME,
|
|
142
|
+
migrationOptions: {
|
|
143
|
+
optInTransformResponse: true
|
|
144
|
+
},
|
|
102
145
|
url: resolveComWixpressLocalizationpublicV3TranslationPublishedContentUrl(
|
|
103
146
|
{ protoPath: "/v3/published-contents/query", data: payload, host }
|
|
104
147
|
),
|
|
@@ -212,6 +255,288 @@ function queryPublishedContent(payload) {
|
|
|
212
255
|
return __queryPublishedContent;
|
|
213
256
|
}
|
|
214
257
|
|
|
258
|
+
// src/multilingual-localization-public-v3-published-content-translation-published-contents.types.ts
|
|
259
|
+
var SchemaScope = /* @__PURE__ */ ((SchemaScope2) => {
|
|
260
|
+
SchemaScope2["UNKNOWN_SCOPE"] = "UNKNOWN_SCOPE";
|
|
261
|
+
SchemaScope2["GLOBAL"] = "GLOBAL";
|
|
262
|
+
SchemaScope2["SITE"] = "SITE";
|
|
263
|
+
return SchemaScope2;
|
|
264
|
+
})(SchemaScope || {});
|
|
265
|
+
var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
266
|
+
NodeType2["PARAGRAPH"] = "PARAGRAPH";
|
|
267
|
+
NodeType2["TEXT"] = "TEXT";
|
|
268
|
+
NodeType2["HEADING"] = "HEADING";
|
|
269
|
+
NodeType2["BULLETED_LIST"] = "BULLETED_LIST";
|
|
270
|
+
NodeType2["ORDERED_LIST"] = "ORDERED_LIST";
|
|
271
|
+
NodeType2["LIST_ITEM"] = "LIST_ITEM";
|
|
272
|
+
NodeType2["BLOCKQUOTE"] = "BLOCKQUOTE";
|
|
273
|
+
NodeType2["CODE_BLOCK"] = "CODE_BLOCK";
|
|
274
|
+
NodeType2["VIDEO"] = "VIDEO";
|
|
275
|
+
NodeType2["DIVIDER"] = "DIVIDER";
|
|
276
|
+
NodeType2["FILE"] = "FILE";
|
|
277
|
+
NodeType2["GALLERY"] = "GALLERY";
|
|
278
|
+
NodeType2["GIF"] = "GIF";
|
|
279
|
+
NodeType2["HTML"] = "HTML";
|
|
280
|
+
NodeType2["IMAGE"] = "IMAGE";
|
|
281
|
+
NodeType2["LINK_PREVIEW"] = "LINK_PREVIEW";
|
|
282
|
+
NodeType2["MAP"] = "MAP";
|
|
283
|
+
NodeType2["POLL"] = "POLL";
|
|
284
|
+
NodeType2["APP_EMBED"] = "APP_EMBED";
|
|
285
|
+
NodeType2["BUTTON"] = "BUTTON";
|
|
286
|
+
NodeType2["COLLAPSIBLE_LIST"] = "COLLAPSIBLE_LIST";
|
|
287
|
+
NodeType2["TABLE"] = "TABLE";
|
|
288
|
+
NodeType2["EMBED"] = "EMBED";
|
|
289
|
+
NodeType2["COLLAPSIBLE_ITEM"] = "COLLAPSIBLE_ITEM";
|
|
290
|
+
NodeType2["COLLAPSIBLE_ITEM_TITLE"] = "COLLAPSIBLE_ITEM_TITLE";
|
|
291
|
+
NodeType2["COLLAPSIBLE_ITEM_BODY"] = "COLLAPSIBLE_ITEM_BODY";
|
|
292
|
+
NodeType2["TABLE_CELL"] = "TABLE_CELL";
|
|
293
|
+
NodeType2["TABLE_ROW"] = "TABLE_ROW";
|
|
294
|
+
NodeType2["EXTERNAL"] = "EXTERNAL";
|
|
295
|
+
NodeType2["AUDIO"] = "AUDIO";
|
|
296
|
+
NodeType2["CAPTION"] = "CAPTION";
|
|
297
|
+
NodeType2["LAYOUT"] = "LAYOUT";
|
|
298
|
+
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
299
|
+
return NodeType2;
|
|
300
|
+
})(NodeType || {});
|
|
301
|
+
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
302
|
+
WidthType2["CONTENT"] = "CONTENT";
|
|
303
|
+
WidthType2["SMALL"] = "SMALL";
|
|
304
|
+
WidthType2["ORIGINAL"] = "ORIGINAL";
|
|
305
|
+
WidthType2["FULL_WIDTH"] = "FULL_WIDTH";
|
|
306
|
+
return WidthType2;
|
|
307
|
+
})(WidthType || {});
|
|
308
|
+
var PluginContainerDataAlignment = /* @__PURE__ */ ((PluginContainerDataAlignment2) => {
|
|
309
|
+
PluginContainerDataAlignment2["CENTER"] = "CENTER";
|
|
310
|
+
PluginContainerDataAlignment2["LEFT"] = "LEFT";
|
|
311
|
+
PluginContainerDataAlignment2["RIGHT"] = "RIGHT";
|
|
312
|
+
return PluginContainerDataAlignment2;
|
|
313
|
+
})(PluginContainerDataAlignment || {});
|
|
314
|
+
var ButtonDataType = /* @__PURE__ */ ((ButtonDataType2) => {
|
|
315
|
+
ButtonDataType2["LINK"] = "LINK";
|
|
316
|
+
ButtonDataType2["ACTION"] = "ACTION";
|
|
317
|
+
return ButtonDataType2;
|
|
318
|
+
})(ButtonDataType || {});
|
|
319
|
+
var Target = /* @__PURE__ */ ((Target2) => {
|
|
320
|
+
Target2["SELF"] = "SELF";
|
|
321
|
+
Target2["BLANK"] = "BLANK";
|
|
322
|
+
Target2["PARENT"] = "PARENT";
|
|
323
|
+
Target2["TOP"] = "TOP";
|
|
324
|
+
return Target2;
|
|
325
|
+
})(Target || {});
|
|
326
|
+
var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
327
|
+
TextAlignment2["AUTO"] = "AUTO";
|
|
328
|
+
TextAlignment2["LEFT"] = "LEFT";
|
|
329
|
+
TextAlignment2["RIGHT"] = "RIGHT";
|
|
330
|
+
TextAlignment2["CENTER"] = "CENTER";
|
|
331
|
+
TextAlignment2["JUSTIFY"] = "JUSTIFY";
|
|
332
|
+
return TextAlignment2;
|
|
333
|
+
})(TextAlignment || {});
|
|
334
|
+
var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
|
|
335
|
+
LineStyle2["SINGLE"] = "SINGLE";
|
|
336
|
+
LineStyle2["DOUBLE"] = "DOUBLE";
|
|
337
|
+
LineStyle2["DASHED"] = "DASHED";
|
|
338
|
+
LineStyle2["DOTTED"] = "DOTTED";
|
|
339
|
+
return LineStyle2;
|
|
340
|
+
})(LineStyle || {});
|
|
341
|
+
var Width = /* @__PURE__ */ ((Width2) => {
|
|
342
|
+
Width2["LARGE"] = "LARGE";
|
|
343
|
+
Width2["MEDIUM"] = "MEDIUM";
|
|
344
|
+
Width2["SMALL"] = "SMALL";
|
|
345
|
+
return Width2;
|
|
346
|
+
})(Width || {});
|
|
347
|
+
var DividerDataAlignment = /* @__PURE__ */ ((DividerDataAlignment2) => {
|
|
348
|
+
DividerDataAlignment2["CENTER"] = "CENTER";
|
|
349
|
+
DividerDataAlignment2["LEFT"] = "LEFT";
|
|
350
|
+
DividerDataAlignment2["RIGHT"] = "RIGHT";
|
|
351
|
+
return DividerDataAlignment2;
|
|
352
|
+
})(DividerDataAlignment || {});
|
|
353
|
+
var ViewMode = /* @__PURE__ */ ((ViewMode2) => {
|
|
354
|
+
ViewMode2["NONE"] = "NONE";
|
|
355
|
+
ViewMode2["FULL"] = "FULL";
|
|
356
|
+
ViewMode2["MINI"] = "MINI";
|
|
357
|
+
return ViewMode2;
|
|
358
|
+
})(ViewMode || {});
|
|
359
|
+
var LayoutType = /* @__PURE__ */ ((LayoutType2) => {
|
|
360
|
+
LayoutType2["COLLAGE"] = "COLLAGE";
|
|
361
|
+
LayoutType2["MASONRY"] = "MASONRY";
|
|
362
|
+
LayoutType2["GRID"] = "GRID";
|
|
363
|
+
LayoutType2["THUMBNAIL"] = "THUMBNAIL";
|
|
364
|
+
LayoutType2["SLIDER"] = "SLIDER";
|
|
365
|
+
LayoutType2["SLIDESHOW"] = "SLIDESHOW";
|
|
366
|
+
LayoutType2["PANORAMA"] = "PANORAMA";
|
|
367
|
+
LayoutType2["COLUMN"] = "COLUMN";
|
|
368
|
+
LayoutType2["MAGIC"] = "MAGIC";
|
|
369
|
+
LayoutType2["FULLSIZE"] = "FULLSIZE";
|
|
370
|
+
return LayoutType2;
|
|
371
|
+
})(LayoutType || {});
|
|
372
|
+
var Orientation = /* @__PURE__ */ ((Orientation2) => {
|
|
373
|
+
Orientation2["ROWS"] = "ROWS";
|
|
374
|
+
Orientation2["COLUMNS"] = "COLUMNS";
|
|
375
|
+
return Orientation2;
|
|
376
|
+
})(Orientation || {});
|
|
377
|
+
var Crop = /* @__PURE__ */ ((Crop2) => {
|
|
378
|
+
Crop2["FILL"] = "FILL";
|
|
379
|
+
Crop2["FIT"] = "FIT";
|
|
380
|
+
return Crop2;
|
|
381
|
+
})(Crop || {});
|
|
382
|
+
var ThumbnailsAlignment = /* @__PURE__ */ ((ThumbnailsAlignment2) => {
|
|
383
|
+
ThumbnailsAlignment2["TOP"] = "TOP";
|
|
384
|
+
ThumbnailsAlignment2["RIGHT"] = "RIGHT";
|
|
385
|
+
ThumbnailsAlignment2["BOTTOM"] = "BOTTOM";
|
|
386
|
+
ThumbnailsAlignment2["LEFT"] = "LEFT";
|
|
387
|
+
ThumbnailsAlignment2["NONE"] = "NONE";
|
|
388
|
+
return ThumbnailsAlignment2;
|
|
389
|
+
})(ThumbnailsAlignment || {});
|
|
390
|
+
var GIFType = /* @__PURE__ */ ((GIFType2) => {
|
|
391
|
+
GIFType2["NORMAL"] = "NORMAL";
|
|
392
|
+
GIFType2["STICKER"] = "STICKER";
|
|
393
|
+
return GIFType2;
|
|
394
|
+
})(GIFType || {});
|
|
395
|
+
var Source = /* @__PURE__ */ ((Source2) => {
|
|
396
|
+
Source2["HTML"] = "HTML";
|
|
397
|
+
Source2["ADSENSE"] = "ADSENSE";
|
|
398
|
+
return Source2;
|
|
399
|
+
})(Source || {});
|
|
400
|
+
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
401
|
+
StylesPosition2["START"] = "START";
|
|
402
|
+
StylesPosition2["END"] = "END";
|
|
403
|
+
StylesPosition2["TOP"] = "TOP";
|
|
404
|
+
StylesPosition2["HIDDEN"] = "HIDDEN";
|
|
405
|
+
return StylesPosition2;
|
|
406
|
+
})(StylesPosition || {});
|
|
407
|
+
var MapType = /* @__PURE__ */ ((MapType2) => {
|
|
408
|
+
MapType2["ROADMAP"] = "ROADMAP";
|
|
409
|
+
MapType2["SATELITE"] = "SATELITE";
|
|
410
|
+
MapType2["HYBRID"] = "HYBRID";
|
|
411
|
+
MapType2["TERRAIN"] = "TERRAIN";
|
|
412
|
+
return MapType2;
|
|
413
|
+
})(MapType || {});
|
|
414
|
+
var ViewRole = /* @__PURE__ */ ((ViewRole2) => {
|
|
415
|
+
ViewRole2["CREATOR"] = "CREATOR";
|
|
416
|
+
ViewRole2["VOTERS"] = "VOTERS";
|
|
417
|
+
ViewRole2["EVERYONE"] = "EVERYONE";
|
|
418
|
+
return ViewRole2;
|
|
419
|
+
})(ViewRole || {});
|
|
420
|
+
var VoteRole = /* @__PURE__ */ ((VoteRole2) => {
|
|
421
|
+
VoteRole2["SITE_MEMBERS"] = "SITE_MEMBERS";
|
|
422
|
+
VoteRole2["ALL"] = "ALL";
|
|
423
|
+
return VoteRole2;
|
|
424
|
+
})(VoteRole || {});
|
|
425
|
+
var PollLayoutType = /* @__PURE__ */ ((PollLayoutType2) => {
|
|
426
|
+
PollLayoutType2["LIST"] = "LIST";
|
|
427
|
+
PollLayoutType2["GRID"] = "GRID";
|
|
428
|
+
return PollLayoutType2;
|
|
429
|
+
})(PollLayoutType || {});
|
|
430
|
+
var PollLayoutDirection = /* @__PURE__ */ ((PollLayoutDirection2) => {
|
|
431
|
+
PollLayoutDirection2["LTR"] = "LTR";
|
|
432
|
+
PollLayoutDirection2["RTL"] = "RTL";
|
|
433
|
+
return PollLayoutDirection2;
|
|
434
|
+
})(PollLayoutDirection || {});
|
|
435
|
+
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
436
|
+
BackgroundType2["COLOR"] = "COLOR";
|
|
437
|
+
BackgroundType2["IMAGE"] = "IMAGE";
|
|
438
|
+
BackgroundType2["GRADIENT"] = "GRADIENT";
|
|
439
|
+
return BackgroundType2;
|
|
440
|
+
})(BackgroundType || {});
|
|
441
|
+
var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
442
|
+
DecorationType2["BOLD"] = "BOLD";
|
|
443
|
+
DecorationType2["ITALIC"] = "ITALIC";
|
|
444
|
+
DecorationType2["UNDERLINE"] = "UNDERLINE";
|
|
445
|
+
DecorationType2["SPOILER"] = "SPOILER";
|
|
446
|
+
DecorationType2["ANCHOR"] = "ANCHOR";
|
|
447
|
+
DecorationType2["MENTION"] = "MENTION";
|
|
448
|
+
DecorationType2["LINK"] = "LINK";
|
|
449
|
+
DecorationType2["COLOR"] = "COLOR";
|
|
450
|
+
DecorationType2["FONT_SIZE"] = "FONT_SIZE";
|
|
451
|
+
DecorationType2["EXTERNAL"] = "EXTERNAL";
|
|
452
|
+
DecorationType2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
453
|
+
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
454
|
+
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
455
|
+
return DecorationType2;
|
|
456
|
+
})(DecorationType || {});
|
|
457
|
+
var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
458
|
+
FontType2["PX"] = "PX";
|
|
459
|
+
FontType2["EM"] = "EM";
|
|
460
|
+
return FontType2;
|
|
461
|
+
})(FontType || {});
|
|
462
|
+
var Position = /* @__PURE__ */ ((Position2) => {
|
|
463
|
+
Position2["START"] = "START";
|
|
464
|
+
Position2["END"] = "END";
|
|
465
|
+
Position2["TOP"] = "TOP";
|
|
466
|
+
return Position2;
|
|
467
|
+
})(Position || {});
|
|
468
|
+
var AspectRatio = /* @__PURE__ */ ((AspectRatio2) => {
|
|
469
|
+
AspectRatio2["SQUARE"] = "SQUARE";
|
|
470
|
+
AspectRatio2["RECTANGLE"] = "RECTANGLE";
|
|
471
|
+
return AspectRatio2;
|
|
472
|
+
})(AspectRatio || {});
|
|
473
|
+
var Resizing = /* @__PURE__ */ ((Resizing2) => {
|
|
474
|
+
Resizing2["FILL"] = "FILL";
|
|
475
|
+
Resizing2["FIT"] = "FIT";
|
|
476
|
+
return Resizing2;
|
|
477
|
+
})(Resizing || {});
|
|
478
|
+
var Placement = /* @__PURE__ */ ((Placement2) => {
|
|
479
|
+
Placement2["IMAGE"] = "IMAGE";
|
|
480
|
+
Placement2["PRODUCT_INFO"] = "PRODUCT_INFO";
|
|
481
|
+
return Placement2;
|
|
482
|
+
})(Placement || {});
|
|
483
|
+
var Type = /* @__PURE__ */ ((Type2) => {
|
|
484
|
+
Type2["CONTAINED"] = "CONTAINED";
|
|
485
|
+
Type2["FRAMELESS"] = "FRAMELESS";
|
|
486
|
+
return Type2;
|
|
487
|
+
})(Type || {});
|
|
488
|
+
var Alignment = /* @__PURE__ */ ((Alignment2) => {
|
|
489
|
+
Alignment2["START"] = "START";
|
|
490
|
+
Alignment2["CENTER"] = "CENTER";
|
|
491
|
+
Alignment2["END"] = "END";
|
|
492
|
+
return Alignment2;
|
|
493
|
+
})(Alignment || {});
|
|
494
|
+
var Layout = /* @__PURE__ */ ((Layout2) => {
|
|
495
|
+
Layout2["STACKED"] = "STACKED";
|
|
496
|
+
Layout2["SIDE_BY_SIDE"] = "SIDE_BY_SIDE";
|
|
497
|
+
return Layout2;
|
|
498
|
+
})(Layout || {});
|
|
499
|
+
var AppType = /* @__PURE__ */ ((AppType2) => {
|
|
500
|
+
AppType2["PRODUCT"] = "PRODUCT";
|
|
501
|
+
AppType2["EVENT"] = "EVENT";
|
|
502
|
+
AppType2["BOOKING"] = "BOOKING";
|
|
503
|
+
return AppType2;
|
|
504
|
+
})(AppType || {});
|
|
505
|
+
var InitialExpandedItems = /* @__PURE__ */ ((InitialExpandedItems2) => {
|
|
506
|
+
InitialExpandedItems2["FIRST"] = "FIRST";
|
|
507
|
+
InitialExpandedItems2["ALL"] = "ALL";
|
|
508
|
+
InitialExpandedItems2["NONE"] = "NONE";
|
|
509
|
+
return InitialExpandedItems2;
|
|
510
|
+
})(InitialExpandedItems || {});
|
|
511
|
+
var Direction = /* @__PURE__ */ ((Direction2) => {
|
|
512
|
+
Direction2["LTR"] = "LTR";
|
|
513
|
+
Direction2["RTL"] = "RTL";
|
|
514
|
+
return Direction2;
|
|
515
|
+
})(Direction || {});
|
|
516
|
+
var VerticalAlignment = /* @__PURE__ */ ((VerticalAlignment2) => {
|
|
517
|
+
VerticalAlignment2["TOP"] = "TOP";
|
|
518
|
+
VerticalAlignment2["MIDDLE"] = "MIDDLE";
|
|
519
|
+
VerticalAlignment2["BOTTOM"] = "BOTTOM";
|
|
520
|
+
return VerticalAlignment2;
|
|
521
|
+
})(VerticalAlignment || {});
|
|
522
|
+
var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
523
|
+
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
524
|
+
return NullValue2;
|
|
525
|
+
})(NullValue || {});
|
|
526
|
+
var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
|
|
527
|
+
SortOrder2["ASC"] = "ASC";
|
|
528
|
+
SortOrder2["DESC"] = "DESC";
|
|
529
|
+
return SortOrder2;
|
|
530
|
+
})(SortOrder || {});
|
|
531
|
+
var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
532
|
+
WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
533
|
+
WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
534
|
+
WebhookIdentityType2["MEMBER"] = "MEMBER";
|
|
535
|
+
WebhookIdentityType2["WIX_USER"] = "WIX_USER";
|
|
536
|
+
WebhookIdentityType2["APP"] = "APP";
|
|
537
|
+
return WebhookIdentityType2;
|
|
538
|
+
})(WebhookIdentityType || {});
|
|
539
|
+
|
|
215
540
|
// src/multilingual-localization-public-v3-published-content-translation-published-contents.meta.ts
|
|
216
541
|
function queryPublishedContent2() {
|
|
217
542
|
const payload = {};
|
|
@@ -235,6 +560,46 @@ function queryPublishedContent2() {
|
|
|
235
560
|
}
|
|
236
561
|
// Annotate the CommonJS export names for ESM import in node:
|
|
237
562
|
0 && (module.exports = {
|
|
563
|
+
AlignmentOriginal,
|
|
564
|
+
AppTypeOriginal,
|
|
565
|
+
AspectRatioOriginal,
|
|
566
|
+
BackgroundTypeOriginal,
|
|
567
|
+
ButtonDataTypeOriginal,
|
|
568
|
+
CropOriginal,
|
|
569
|
+
DecorationTypeOriginal,
|
|
570
|
+
DirectionOriginal,
|
|
571
|
+
DividerDataAlignmentOriginal,
|
|
572
|
+
FontTypeOriginal,
|
|
573
|
+
GIFTypeOriginal,
|
|
574
|
+
InitialExpandedItemsOriginal,
|
|
575
|
+
LayoutOriginal,
|
|
576
|
+
LayoutTypeOriginal,
|
|
577
|
+
LineStyleOriginal,
|
|
578
|
+
MapTypeOriginal,
|
|
579
|
+
NodeTypeOriginal,
|
|
580
|
+
NullValueOriginal,
|
|
581
|
+
OrientationOriginal,
|
|
582
|
+
PlacementOriginal,
|
|
583
|
+
PluginContainerDataAlignmentOriginal,
|
|
584
|
+
PollLayoutDirectionOriginal,
|
|
585
|
+
PollLayoutTypeOriginal,
|
|
586
|
+
PositionOriginal,
|
|
587
|
+
ResizingOriginal,
|
|
588
|
+
SchemaScopeOriginal,
|
|
589
|
+
SortOrderOriginal,
|
|
590
|
+
SourceOriginal,
|
|
591
|
+
StylesPositionOriginal,
|
|
592
|
+
TargetOriginal,
|
|
593
|
+
TextAlignmentOriginal,
|
|
594
|
+
ThumbnailsAlignmentOriginal,
|
|
595
|
+
TypeOriginal,
|
|
596
|
+
VerticalAlignmentOriginal,
|
|
597
|
+
ViewModeOriginal,
|
|
598
|
+
ViewRoleOriginal,
|
|
599
|
+
VoteRoleOriginal,
|
|
600
|
+
WebhookIdentityTypeOriginal,
|
|
601
|
+
WidthOriginal,
|
|
602
|
+
WidthTypeOriginal,
|
|
238
603
|
queryPublishedContent
|
|
239
604
|
});
|
|
240
605
|
//# sourceMappingURL=meta.js.map
|