@wix/auto_sdk_multilingual_translation-published-contents 1.0.2 → 1.0.4
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/src/multilingual-localization-public-v3-published-content-translation-published-contents.context.d.ts +1 -1
- package/build/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.public.d.ts +1 -1
- package/build/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.public.js.map +1 -1
- package/build/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.d.ts +161 -33
- package/build/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.js.map +1 -1
- package/build/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.d.ts +168 -35
- package/build/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.js.map +1 -1
- package/build/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.context.d.ts +1 -1
- package/build/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.public.d.ts +1 -1
- package/build/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.public.js.map +1 -1
- package/build/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.d.ts +161 -33
- package/build/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.js.map +1 -1
- package/build/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.d.ts +168 -35
- package/build/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.js.map +1 -1
- package/build/internal/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.context.d.ts +1 -1
- package/build/internal/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.public.d.ts +1 -1
- package/build/internal/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.public.js.map +1 -1
- package/build/internal/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.d.ts +161 -33
- package/build/internal/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.js.map +1 -1
- package/build/internal/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.d.ts +168 -35
- package/build/internal/cjs/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.js.map +1 -1
- package/build/internal/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.context.d.ts +1 -1
- package/build/internal/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.public.d.ts +1 -1
- package/build/internal/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.public.js.map +1 -1
- package/build/internal/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.d.ts +161 -33
- package/build/internal/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.types.js.map +1 -1
- package/build/internal/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.d.ts +168 -35
- package/build/internal/es/src/multilingual-localization-public-v3-published-content-translation-published-contents.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -2,6 +2,7 @@ export interface PublishedContent {
|
|
|
2
2
|
/**
|
|
3
3
|
* Published content ID.
|
|
4
4
|
* @readonly
|
|
5
|
+
* @format GUID
|
|
5
6
|
*/
|
|
6
7
|
id?: string | null;
|
|
7
8
|
/** Schema key of the published content. */
|
|
@@ -9,16 +10,25 @@ export interface PublishedContent {
|
|
|
9
10
|
/**
|
|
10
11
|
* A unique identifier defined by the app developer to differentiate translation content for various entities within the site. For example, if an app developer is creating translation content for blog posts, the `entityId` can be `'blog-posts-1'`.
|
|
11
12
|
* @readonly
|
|
13
|
+
* @maxLength 100
|
|
12
14
|
*/
|
|
13
15
|
entityId?: string;
|
|
14
16
|
/**
|
|
15
17
|
* Published content locale.
|
|
18
|
+
* @format LANGUAGE_TAG
|
|
16
19
|
* @readonly
|
|
17
20
|
*/
|
|
18
21
|
locale?: string;
|
|
19
|
-
/**
|
|
22
|
+
/**
|
|
23
|
+
* List of fields that have been translated and published for the given locale.
|
|
24
|
+
* @maxSize 2000
|
|
25
|
+
*/
|
|
20
26
|
fields?: PublishedContentField[];
|
|
21
|
-
/**
|
|
27
|
+
/**
|
|
28
|
+
* A reference to the parent content. For example, if the content is a menu item, this property would contain the `entityId` of the menu it belongs to.
|
|
29
|
+
* @minLength 1
|
|
30
|
+
* @maxLength 100
|
|
31
|
+
*/
|
|
22
32
|
parentEntityId?: string | null;
|
|
23
33
|
/** Custom field data for the published content object. */
|
|
24
34
|
extendedFields?: ExtendedFields;
|
|
@@ -26,16 +36,23 @@ export interface PublishedContent {
|
|
|
26
36
|
export interface SchemaKey {
|
|
27
37
|
/**
|
|
28
38
|
* ID of the app that created the schema.
|
|
39
|
+
* @format GUID
|
|
29
40
|
* @readonly
|
|
30
41
|
*/
|
|
31
42
|
appId?: string;
|
|
32
|
-
/**
|
|
43
|
+
/**
|
|
44
|
+
* A unique name defined by the app developer to differentiate translation schemas for various entities within their app. For example, if an app developer is creating a translation schema for blog posts, the `entityType` can be `'blog-posts'`.
|
|
45
|
+
* @minLength 1
|
|
46
|
+
* @maxLength 80
|
|
47
|
+
* @immutable
|
|
48
|
+
*/
|
|
33
49
|
entityType?: string;
|
|
34
50
|
/**
|
|
35
51
|
* Scope of the translation schema.
|
|
36
52
|
* Supported values:
|
|
37
53
|
* + `GLOBAL`: A global schema for all sites.
|
|
38
54
|
* + `SITE`: A custom schema for a specific site.
|
|
55
|
+
* @immutable
|
|
39
56
|
*/
|
|
40
57
|
scope?: SchemaScope;
|
|
41
58
|
}
|
|
@@ -47,7 +64,10 @@ export declare enum SchemaScope {
|
|
|
47
64
|
SITE = "SITE"
|
|
48
65
|
}
|
|
49
66
|
export interface PublishedContentField extends PublishedContentFieldValueOneOf {
|
|
50
|
-
/**
|
|
67
|
+
/**
|
|
68
|
+
* Plain text.
|
|
69
|
+
* @maxLength 100000
|
|
70
|
+
*/
|
|
51
71
|
textValue?: string;
|
|
52
72
|
/** Rich content. */
|
|
53
73
|
richContent?: RichContent;
|
|
@@ -60,14 +80,22 @@ export interface PublishedContentField extends PublishedContentFieldValueOneOf {
|
|
|
60
80
|
/**
|
|
61
81
|
* Unique string identifier that links a specific content field to its corresponding field in the schema.
|
|
62
82
|
* @readonly
|
|
83
|
+
* @maxLength 100
|
|
63
84
|
*/
|
|
64
85
|
schemaFieldKey?: string;
|
|
65
|
-
/**
|
|
86
|
+
/**
|
|
87
|
+
* For repeated fields. Contains the IDs of the messages linked to this field.
|
|
88
|
+
* @maxSize 100
|
|
89
|
+
* @maxLength 100
|
|
90
|
+
*/
|
|
66
91
|
sequenceIds?: string[];
|
|
67
92
|
}
|
|
68
93
|
/** @oneof */
|
|
69
94
|
export interface PublishedContentFieldValueOneOf {
|
|
70
|
-
/**
|
|
95
|
+
/**
|
|
96
|
+
* Plain text.
|
|
97
|
+
* @maxLength 100000
|
|
98
|
+
*/
|
|
71
99
|
textValue?: string;
|
|
72
100
|
/** Rich content. */
|
|
73
101
|
richContent?: RichContent;
|
|
@@ -676,11 +704,20 @@ export interface GIFData {
|
|
|
676
704
|
gifType?: GIFType;
|
|
677
705
|
}
|
|
678
706
|
export interface GIF {
|
|
679
|
-
/**
|
|
707
|
+
/**
|
|
708
|
+
* GIF format URL.
|
|
709
|
+
* @format WEB_URL
|
|
710
|
+
*/
|
|
680
711
|
gif?: string | null;
|
|
681
|
-
/**
|
|
712
|
+
/**
|
|
713
|
+
* MP4 format URL.
|
|
714
|
+
* @format WEB_URL
|
|
715
|
+
*/
|
|
682
716
|
mp4?: string | null;
|
|
683
|
-
/**
|
|
717
|
+
/**
|
|
718
|
+
* Thumbnail URL.
|
|
719
|
+
* @format WEB_URL
|
|
720
|
+
*/
|
|
684
721
|
still?: string | null;
|
|
685
722
|
}
|
|
686
723
|
export declare enum GIFType {
|
|
@@ -746,6 +783,22 @@ export interface ImageData {
|
|
|
746
783
|
caption?: string | null;
|
|
747
784
|
/** Sets whether the image's download button is disabled. Defaults to `false`. */
|
|
748
785
|
disableDownload?: boolean | null;
|
|
786
|
+
/** Sets whether the image is decorative and does not need an explanation. Defaults to `false`. */
|
|
787
|
+
decorative?: boolean | null;
|
|
788
|
+
/** Styling for the image. */
|
|
789
|
+
styles?: ImageDataStyles;
|
|
790
|
+
}
|
|
791
|
+
export interface StylesBorder {
|
|
792
|
+
/** Border width in pixels. */
|
|
793
|
+
width?: number | null;
|
|
794
|
+
/** Border color. */
|
|
795
|
+
color?: string | null;
|
|
796
|
+
/** Border radius in pixels. */
|
|
797
|
+
radius?: number | null;
|
|
798
|
+
}
|
|
799
|
+
export interface ImageDataStyles {
|
|
800
|
+
/** Border attributes. */
|
|
801
|
+
border?: StylesBorder;
|
|
749
802
|
}
|
|
750
803
|
export interface LinkPreviewData {
|
|
751
804
|
/** Styling for the link preview's container. */
|
|
@@ -892,13 +945,22 @@ export declare enum BackgroundType {
|
|
|
892
945
|
export interface Gradient {
|
|
893
946
|
/** The gradient angle in degrees. */
|
|
894
947
|
angle?: number | null;
|
|
895
|
-
/**
|
|
948
|
+
/**
|
|
949
|
+
* The start color as a hexademical value.
|
|
950
|
+
* @format COLOR_HEX
|
|
951
|
+
*/
|
|
896
952
|
startColor?: string | null;
|
|
897
|
-
/**
|
|
953
|
+
/**
|
|
954
|
+
* The end color as a hexademical value.
|
|
955
|
+
* @format COLOR_HEX
|
|
956
|
+
*/
|
|
898
957
|
lastColor?: string | null;
|
|
899
958
|
}
|
|
900
959
|
export interface Background extends BackgroundBackgroundOneOf {
|
|
901
|
-
/**
|
|
960
|
+
/**
|
|
961
|
+
* The background color as a hexademical value.
|
|
962
|
+
* @format COLOR_HEX
|
|
963
|
+
*/
|
|
902
964
|
color?: string | null;
|
|
903
965
|
/** An image to use for the background. */
|
|
904
966
|
image?: Media;
|
|
@@ -909,7 +971,10 @@ export interface Background extends BackgroundBackgroundOneOf {
|
|
|
909
971
|
}
|
|
910
972
|
/** @oneof */
|
|
911
973
|
export interface BackgroundBackgroundOneOf {
|
|
912
|
-
/**
|
|
974
|
+
/**
|
|
975
|
+
* The background color as a hexademical value.
|
|
976
|
+
* @format COLOR_HEX
|
|
977
|
+
*/
|
|
913
978
|
color?: string | null;
|
|
914
979
|
/** An image to use for the background. */
|
|
915
980
|
image?: Media;
|
|
@@ -1221,17 +1286,32 @@ export declare enum VerticalAlignment {
|
|
|
1221
1286
|
export interface CellStyle {
|
|
1222
1287
|
/** Vertical alignment for the cell's text. */
|
|
1223
1288
|
verticalAlignment?: VerticalAlignment;
|
|
1224
|
-
/**
|
|
1289
|
+
/**
|
|
1290
|
+
* Cell background color as a hexadecimal value.
|
|
1291
|
+
* @format COLOR_HEX
|
|
1292
|
+
*/
|
|
1225
1293
|
backgroundColor?: string | null;
|
|
1226
1294
|
}
|
|
1227
1295
|
export interface BorderColors {
|
|
1228
|
-
/**
|
|
1296
|
+
/**
|
|
1297
|
+
* Left border color as a hexadecimal value.
|
|
1298
|
+
* @format COLOR_HEX
|
|
1299
|
+
*/
|
|
1229
1300
|
left?: string | null;
|
|
1230
|
-
/**
|
|
1301
|
+
/**
|
|
1302
|
+
* Right border color as a hexadecimal value.
|
|
1303
|
+
* @format COLOR_HEX
|
|
1304
|
+
*/
|
|
1231
1305
|
right?: string | null;
|
|
1232
|
-
/**
|
|
1306
|
+
/**
|
|
1307
|
+
* Top border color as a hexadecimal value.
|
|
1308
|
+
* @format COLOR_HEX
|
|
1309
|
+
*/
|
|
1233
1310
|
top?: string | null;
|
|
1234
|
-
/**
|
|
1311
|
+
/**
|
|
1312
|
+
* Bottom border color as a hexadecimal value.
|
|
1313
|
+
* @format COLOR_HEX
|
|
1314
|
+
*/
|
|
1235
1315
|
bottom?: string | null;
|
|
1236
1316
|
}
|
|
1237
1317
|
/**
|
|
@@ -1378,6 +1458,7 @@ export interface VideoV2 {
|
|
|
1378
1458
|
/**
|
|
1379
1459
|
* Available resolutions for the video, starting with the optimal resolution.
|
|
1380
1460
|
* @readonly
|
|
1461
|
+
* @maxSize 100
|
|
1381
1462
|
*/
|
|
1382
1463
|
resolutions?: VideoResolution[];
|
|
1383
1464
|
/**
|
|
@@ -1416,7 +1497,10 @@ export interface ExtendedFields {
|
|
|
1416
1497
|
namespaces?: Record<string, Record<string, any>>;
|
|
1417
1498
|
}
|
|
1418
1499
|
export interface GetPublishedContentRequest {
|
|
1419
|
-
/**
|
|
1500
|
+
/**
|
|
1501
|
+
* The ID of the published content
|
|
1502
|
+
* @format GUID
|
|
1503
|
+
*/
|
|
1420
1504
|
contentId?: string;
|
|
1421
1505
|
}
|
|
1422
1506
|
export interface GetPublishedContentResponse {
|
|
@@ -1444,6 +1528,7 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
1444
1528
|
* Sort object.
|
|
1445
1529
|
*
|
|
1446
1530
|
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
1531
|
+
* @maxSize 5
|
|
1447
1532
|
*/
|
|
1448
1533
|
sort?: Sorting[];
|
|
1449
1534
|
}
|
|
@@ -1457,7 +1542,10 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
1457
1542
|
cursorPaging?: CursorPaging;
|
|
1458
1543
|
}
|
|
1459
1544
|
export interface Sorting {
|
|
1460
|
-
/**
|
|
1545
|
+
/**
|
|
1546
|
+
* Name of the field to sort by.
|
|
1547
|
+
* @maxLength 512
|
|
1548
|
+
*/
|
|
1461
1549
|
fieldName?: string;
|
|
1462
1550
|
/** Sort order. */
|
|
1463
1551
|
order?: SortOrder;
|
|
@@ -1467,13 +1555,17 @@ export declare enum SortOrder {
|
|
|
1467
1555
|
DESC = "DESC"
|
|
1468
1556
|
}
|
|
1469
1557
|
export interface CursorPaging {
|
|
1470
|
-
/**
|
|
1558
|
+
/**
|
|
1559
|
+
* Maximum number of items to return in the results.
|
|
1560
|
+
* @max 100
|
|
1561
|
+
*/
|
|
1471
1562
|
limit?: number | null;
|
|
1472
1563
|
/**
|
|
1473
1564
|
* Pointer to the next or previous page in the list of results.
|
|
1474
1565
|
*
|
|
1475
1566
|
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
1476
1567
|
* Not relevant for the first request.
|
|
1568
|
+
* @maxLength 16000
|
|
1477
1569
|
*/
|
|
1478
1570
|
cursor?: string | null;
|
|
1479
1571
|
}
|
|
@@ -1497,9 +1589,15 @@ export interface CursorPagingMetadata {
|
|
|
1497
1589
|
hasNext?: boolean | null;
|
|
1498
1590
|
}
|
|
1499
1591
|
export interface Cursors {
|
|
1500
|
-
/**
|
|
1592
|
+
/**
|
|
1593
|
+
* Cursor string pointing to the next page in the list of results.
|
|
1594
|
+
* @maxLength 16000
|
|
1595
|
+
*/
|
|
1501
1596
|
next?: string | null;
|
|
1502
|
-
/**
|
|
1597
|
+
/**
|
|
1598
|
+
* Cursor pointing to the previous page in the list of results.
|
|
1599
|
+
* @maxLength 16000
|
|
1600
|
+
*/
|
|
1503
1601
|
prev?: string | null;
|
|
1504
1602
|
}
|
|
1505
1603
|
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
@@ -1577,9 +1675,15 @@ export interface ActionEvent {
|
|
|
1577
1675
|
export interface Empty {
|
|
1578
1676
|
}
|
|
1579
1677
|
export interface MessageEnvelope {
|
|
1580
|
-
/**
|
|
1678
|
+
/**
|
|
1679
|
+
* App instance ID.
|
|
1680
|
+
* @format GUID
|
|
1681
|
+
*/
|
|
1581
1682
|
instanceId?: string | null;
|
|
1582
|
-
/**
|
|
1683
|
+
/**
|
|
1684
|
+
* Event type.
|
|
1685
|
+
* @maxLength 150
|
|
1686
|
+
*/
|
|
1583
1687
|
eventType?: string;
|
|
1584
1688
|
/** The identification type and identity data. */
|
|
1585
1689
|
identity?: IdentificationData;
|
|
@@ -1587,26 +1691,50 @@ export interface MessageEnvelope {
|
|
|
1587
1691
|
data?: string;
|
|
1588
1692
|
}
|
|
1589
1693
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
1590
|
-
/**
|
|
1694
|
+
/**
|
|
1695
|
+
* ID of a site visitor that has not logged in to the site.
|
|
1696
|
+
* @format GUID
|
|
1697
|
+
*/
|
|
1591
1698
|
anonymousVisitorId?: string;
|
|
1592
|
-
/**
|
|
1699
|
+
/**
|
|
1700
|
+
* ID of a site visitor that has logged in to the site.
|
|
1701
|
+
* @format GUID
|
|
1702
|
+
*/
|
|
1593
1703
|
memberId?: string;
|
|
1594
|
-
/**
|
|
1704
|
+
/**
|
|
1705
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
1706
|
+
* @format GUID
|
|
1707
|
+
*/
|
|
1595
1708
|
wixUserId?: string;
|
|
1596
|
-
/**
|
|
1709
|
+
/**
|
|
1710
|
+
* ID of an app.
|
|
1711
|
+
* @format GUID
|
|
1712
|
+
*/
|
|
1597
1713
|
appId?: string;
|
|
1598
1714
|
/** @readonly */
|
|
1599
1715
|
identityType?: WebhookIdentityType;
|
|
1600
1716
|
}
|
|
1601
1717
|
/** @oneof */
|
|
1602
1718
|
export interface IdentificationDataIdOneOf {
|
|
1603
|
-
/**
|
|
1719
|
+
/**
|
|
1720
|
+
* ID of a site visitor that has not logged in to the site.
|
|
1721
|
+
* @format GUID
|
|
1722
|
+
*/
|
|
1604
1723
|
anonymousVisitorId?: string;
|
|
1605
|
-
/**
|
|
1724
|
+
/**
|
|
1725
|
+
* ID of a site visitor that has logged in to the site.
|
|
1726
|
+
* @format GUID
|
|
1727
|
+
*/
|
|
1606
1728
|
memberId?: string;
|
|
1607
|
-
/**
|
|
1729
|
+
/**
|
|
1730
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
1731
|
+
* @format GUID
|
|
1732
|
+
*/
|
|
1608
1733
|
wixUserId?: string;
|
|
1609
|
-
/**
|
|
1734
|
+
/**
|
|
1735
|
+
* ID of an app.
|
|
1736
|
+
* @format GUID
|
|
1737
|
+
*/
|
|
1610
1738
|
appId?: string;
|
|
1611
1739
|
}
|
|
1612
1740
|
export declare enum WebhookIdentityType {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"multilingual-localization-public-v3-published-content-translation-published-contents.types.js","sourceRoot":"","sources":["../../../../src/multilingual-localization-public-v3-published-content-translation-published-contents.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"multilingual-localization-public-v3-published-content-translation-published-contents.types.js","sourceRoot":"","sources":["../../../../src/multilingual-localization-public-v3-published-content-translation-published-contents.types.ts"],"names":[],"mappings":"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"}
|