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