@wix/auto_sdk_multilingual_translation-published-contents 1.0.3 → 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.types.d.ts +145 -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 +152 -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.types.d.ts +145 -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 +152 -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.types.d.ts +145 -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 +152 -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.types.d.ts +145 -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 +152 -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 {
|
|
@@ -908,13 +945,22 @@ export declare enum BackgroundType {
|
|
|
908
945
|
export interface Gradient {
|
|
909
946
|
/** The gradient angle in degrees. */
|
|
910
947
|
angle?: number | null;
|
|
911
|
-
/**
|
|
948
|
+
/**
|
|
949
|
+
* The start color as a hexademical value.
|
|
950
|
+
* @format COLOR_HEX
|
|
951
|
+
*/
|
|
912
952
|
startColor?: string | null;
|
|
913
|
-
/**
|
|
953
|
+
/**
|
|
954
|
+
* The end color as a hexademical value.
|
|
955
|
+
* @format COLOR_HEX
|
|
956
|
+
*/
|
|
914
957
|
lastColor?: string | null;
|
|
915
958
|
}
|
|
916
959
|
export interface Background extends BackgroundBackgroundOneOf {
|
|
917
|
-
/**
|
|
960
|
+
/**
|
|
961
|
+
* The background color as a hexademical value.
|
|
962
|
+
* @format COLOR_HEX
|
|
963
|
+
*/
|
|
918
964
|
color?: string | null;
|
|
919
965
|
/** An image to use for the background. */
|
|
920
966
|
image?: Media;
|
|
@@ -925,7 +971,10 @@ export interface Background extends BackgroundBackgroundOneOf {
|
|
|
925
971
|
}
|
|
926
972
|
/** @oneof */
|
|
927
973
|
export interface BackgroundBackgroundOneOf {
|
|
928
|
-
/**
|
|
974
|
+
/**
|
|
975
|
+
* The background color as a hexademical value.
|
|
976
|
+
* @format COLOR_HEX
|
|
977
|
+
*/
|
|
929
978
|
color?: string | null;
|
|
930
979
|
/** An image to use for the background. */
|
|
931
980
|
image?: Media;
|
|
@@ -1237,17 +1286,32 @@ export declare enum VerticalAlignment {
|
|
|
1237
1286
|
export interface CellStyle {
|
|
1238
1287
|
/** Vertical alignment for the cell's text. */
|
|
1239
1288
|
verticalAlignment?: VerticalAlignment;
|
|
1240
|
-
/**
|
|
1289
|
+
/**
|
|
1290
|
+
* Cell background color as a hexadecimal value.
|
|
1291
|
+
* @format COLOR_HEX
|
|
1292
|
+
*/
|
|
1241
1293
|
backgroundColor?: string | null;
|
|
1242
1294
|
}
|
|
1243
1295
|
export interface BorderColors {
|
|
1244
|
-
/**
|
|
1296
|
+
/**
|
|
1297
|
+
* Left border color as a hexadecimal value.
|
|
1298
|
+
* @format COLOR_HEX
|
|
1299
|
+
*/
|
|
1245
1300
|
left?: string | null;
|
|
1246
|
-
/**
|
|
1301
|
+
/**
|
|
1302
|
+
* Right border color as a hexadecimal value.
|
|
1303
|
+
* @format COLOR_HEX
|
|
1304
|
+
*/
|
|
1247
1305
|
right?: string | null;
|
|
1248
|
-
/**
|
|
1306
|
+
/**
|
|
1307
|
+
* Top border color as a hexadecimal value.
|
|
1308
|
+
* @format COLOR_HEX
|
|
1309
|
+
*/
|
|
1249
1310
|
top?: string | null;
|
|
1250
|
-
/**
|
|
1311
|
+
/**
|
|
1312
|
+
* Bottom border color as a hexadecimal value.
|
|
1313
|
+
* @format COLOR_HEX
|
|
1314
|
+
*/
|
|
1251
1315
|
bottom?: string | null;
|
|
1252
1316
|
}
|
|
1253
1317
|
/**
|
|
@@ -1394,6 +1458,7 @@ export interface VideoV2 {
|
|
|
1394
1458
|
/**
|
|
1395
1459
|
* Available resolutions for the video, starting with the optimal resolution.
|
|
1396
1460
|
* @readonly
|
|
1461
|
+
* @maxSize 100
|
|
1397
1462
|
*/
|
|
1398
1463
|
resolutions?: VideoResolution[];
|
|
1399
1464
|
/**
|
|
@@ -1432,7 +1497,10 @@ export interface ExtendedFields {
|
|
|
1432
1497
|
namespaces?: Record<string, Record<string, any>>;
|
|
1433
1498
|
}
|
|
1434
1499
|
export interface GetPublishedContentRequest {
|
|
1435
|
-
/**
|
|
1500
|
+
/**
|
|
1501
|
+
* The ID of the published content
|
|
1502
|
+
* @format GUID
|
|
1503
|
+
*/
|
|
1436
1504
|
contentId?: string;
|
|
1437
1505
|
}
|
|
1438
1506
|
export interface GetPublishedContentResponse {
|
|
@@ -1460,6 +1528,7 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
1460
1528
|
* Sort object.
|
|
1461
1529
|
*
|
|
1462
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
|
|
1463
1532
|
*/
|
|
1464
1533
|
sort?: Sorting[];
|
|
1465
1534
|
}
|
|
@@ -1473,7 +1542,10 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
1473
1542
|
cursorPaging?: CursorPaging;
|
|
1474
1543
|
}
|
|
1475
1544
|
export interface Sorting {
|
|
1476
|
-
/**
|
|
1545
|
+
/**
|
|
1546
|
+
* Name of the field to sort by.
|
|
1547
|
+
* @maxLength 512
|
|
1548
|
+
*/
|
|
1477
1549
|
fieldName?: string;
|
|
1478
1550
|
/** Sort order. */
|
|
1479
1551
|
order?: SortOrder;
|
|
@@ -1483,13 +1555,17 @@ export declare enum SortOrder {
|
|
|
1483
1555
|
DESC = "DESC"
|
|
1484
1556
|
}
|
|
1485
1557
|
export interface CursorPaging {
|
|
1486
|
-
/**
|
|
1558
|
+
/**
|
|
1559
|
+
* Maximum number of items to return in the results.
|
|
1560
|
+
* @max 100
|
|
1561
|
+
*/
|
|
1487
1562
|
limit?: number | null;
|
|
1488
1563
|
/**
|
|
1489
1564
|
* Pointer to the next or previous page in the list of results.
|
|
1490
1565
|
*
|
|
1491
1566
|
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
1492
1567
|
* Not relevant for the first request.
|
|
1568
|
+
* @maxLength 16000
|
|
1493
1569
|
*/
|
|
1494
1570
|
cursor?: string | null;
|
|
1495
1571
|
}
|
|
@@ -1513,9 +1589,15 @@ export interface CursorPagingMetadata {
|
|
|
1513
1589
|
hasNext?: boolean | null;
|
|
1514
1590
|
}
|
|
1515
1591
|
export interface Cursors {
|
|
1516
|
-
/**
|
|
1592
|
+
/**
|
|
1593
|
+
* Cursor string pointing to the next page in the list of results.
|
|
1594
|
+
* @maxLength 16000
|
|
1595
|
+
*/
|
|
1517
1596
|
next?: string | null;
|
|
1518
|
-
/**
|
|
1597
|
+
/**
|
|
1598
|
+
* Cursor pointing to the previous page in the list of results.
|
|
1599
|
+
* @maxLength 16000
|
|
1600
|
+
*/
|
|
1519
1601
|
prev?: string | null;
|
|
1520
1602
|
}
|
|
1521
1603
|
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
@@ -1593,9 +1675,15 @@ export interface ActionEvent {
|
|
|
1593
1675
|
export interface Empty {
|
|
1594
1676
|
}
|
|
1595
1677
|
export interface MessageEnvelope {
|
|
1596
|
-
/**
|
|
1678
|
+
/**
|
|
1679
|
+
* App instance ID.
|
|
1680
|
+
* @format GUID
|
|
1681
|
+
*/
|
|
1597
1682
|
instanceId?: string | null;
|
|
1598
|
-
/**
|
|
1683
|
+
/**
|
|
1684
|
+
* Event type.
|
|
1685
|
+
* @maxLength 150
|
|
1686
|
+
*/
|
|
1599
1687
|
eventType?: string;
|
|
1600
1688
|
/** The identification type and identity data. */
|
|
1601
1689
|
identity?: IdentificationData;
|
|
@@ -1603,26 +1691,50 @@ export interface MessageEnvelope {
|
|
|
1603
1691
|
data?: string;
|
|
1604
1692
|
}
|
|
1605
1693
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
1606
|
-
/**
|
|
1694
|
+
/**
|
|
1695
|
+
* ID of a site visitor that has not logged in to the site.
|
|
1696
|
+
* @format GUID
|
|
1697
|
+
*/
|
|
1607
1698
|
anonymousVisitorId?: string;
|
|
1608
|
-
/**
|
|
1699
|
+
/**
|
|
1700
|
+
* ID of a site visitor that has logged in to the site.
|
|
1701
|
+
* @format GUID
|
|
1702
|
+
*/
|
|
1609
1703
|
memberId?: string;
|
|
1610
|
-
/**
|
|
1704
|
+
/**
|
|
1705
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
1706
|
+
* @format GUID
|
|
1707
|
+
*/
|
|
1611
1708
|
wixUserId?: string;
|
|
1612
|
-
/**
|
|
1709
|
+
/**
|
|
1710
|
+
* ID of an app.
|
|
1711
|
+
* @format GUID
|
|
1712
|
+
*/
|
|
1613
1713
|
appId?: string;
|
|
1614
1714
|
/** @readonly */
|
|
1615
1715
|
identityType?: WebhookIdentityType;
|
|
1616
1716
|
}
|
|
1617
1717
|
/** @oneof */
|
|
1618
1718
|
export interface IdentificationDataIdOneOf {
|
|
1619
|
-
/**
|
|
1719
|
+
/**
|
|
1720
|
+
* ID of a site visitor that has not logged in to the site.
|
|
1721
|
+
* @format GUID
|
|
1722
|
+
*/
|
|
1620
1723
|
anonymousVisitorId?: string;
|
|
1621
|
-
/**
|
|
1724
|
+
/**
|
|
1725
|
+
* ID of a site visitor that has logged in to the site.
|
|
1726
|
+
* @format GUID
|
|
1727
|
+
*/
|
|
1622
1728
|
memberId?: string;
|
|
1623
|
-
/**
|
|
1729
|
+
/**
|
|
1730
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
1731
|
+
* @format GUID
|
|
1732
|
+
*/
|
|
1624
1733
|
wixUserId?: string;
|
|
1625
|
-
/**
|
|
1734
|
+
/**
|
|
1735
|
+
* ID of an app.
|
|
1736
|
+
* @format GUID
|
|
1737
|
+
*/
|
|
1626
1738
|
appId?: string;
|
|
1627
1739
|
}
|
|
1628
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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"}
|