@wix/auto_sdk_multilingual_translation-schemas 1.0.1 → 1.0.2
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-translation-v1-schema-translation-schemas.types.d.ts +215 -50
- package/build/cjs/src/multilingual-translation-v1-schema-translation-schemas.types.js.map +1 -1
- package/build/cjs/src/multilingual-translation-v1-schema-translation-schemas.universal.d.ts +254 -58
- package/build/cjs/src/multilingual-translation-v1-schema-translation-schemas.universal.js.map +1 -1
- package/build/es/src/multilingual-translation-v1-schema-translation-schemas.types.d.ts +215 -50
- package/build/es/src/multilingual-translation-v1-schema-translation-schemas.types.js.map +1 -1
- package/build/es/src/multilingual-translation-v1-schema-translation-schemas.universal.d.ts +254 -58
- package/build/es/src/multilingual-translation-v1-schema-translation-schemas.universal.js.map +1 -1
- package/build/internal/cjs/src/multilingual-translation-v1-schema-translation-schemas.types.d.ts +215 -50
- package/build/internal/cjs/src/multilingual-translation-v1-schema-translation-schemas.types.js.map +1 -1
- package/build/internal/cjs/src/multilingual-translation-v1-schema-translation-schemas.universal.d.ts +254 -58
- package/build/internal/cjs/src/multilingual-translation-v1-schema-translation-schemas.universal.js.map +1 -1
- package/build/internal/es/src/multilingual-translation-v1-schema-translation-schemas.types.d.ts +215 -50
- package/build/internal/es/src/multilingual-translation-v1-schema-translation-schemas.types.js.map +1 -1
- package/build/internal/es/src/multilingual-translation-v1-schema-translation-schemas.universal.d.ts +254 -58
- package/build/internal/es/src/multilingual-translation-v1-schema-translation-schemas.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -2,11 +2,16 @@ export interface Schema {
|
|
|
2
2
|
/**
|
|
3
3
|
* Translation schema ID.
|
|
4
4
|
* @readonly
|
|
5
|
+
* @format GUID
|
|
5
6
|
*/
|
|
6
7
|
id?: string | null;
|
|
7
8
|
/** Translation schema unique key identifier. */
|
|
8
9
|
key?: SchemaKey;
|
|
9
|
-
/**
|
|
10
|
+
/**
|
|
11
|
+
* List of fields for the translation schema. This property uses a string to map to a `SchemaField` (`Map<string, SchemaField>`). The string serves as a key, which you'll need to access each field in the schema and when adding translation content.
|
|
12
|
+
* @minSize 1
|
|
13
|
+
* @maxSize 1000
|
|
14
|
+
*/
|
|
10
15
|
fields?: Record<string, SchemaField>;
|
|
11
16
|
/** Fields displayed in content previews. For example, a product name for a product translation schema. */
|
|
12
17
|
previewFields?: PreviewFields;
|
|
@@ -16,9 +21,15 @@ export interface Schema {
|
|
|
16
21
|
* Default: `false`
|
|
17
22
|
*/
|
|
18
23
|
hidden?: boolean | null;
|
|
19
|
-
/**
|
|
24
|
+
/**
|
|
25
|
+
* Translation schema name displayed in the [Translation Manager](https://support.wix.com/en/article/wix-multilingual-using-the-translation-manager).
|
|
26
|
+
* @maxLength 100
|
|
27
|
+
*/
|
|
20
28
|
displayName?: string | null;
|
|
21
|
-
/**
|
|
29
|
+
/**
|
|
30
|
+
* A reference to the parent schema. For example, if the schema is for a menu item, this property would contain the schema ID of the menu it belongs to.
|
|
31
|
+
* @format GUID
|
|
32
|
+
*/
|
|
22
33
|
parentId?: string | null;
|
|
23
34
|
/**
|
|
24
35
|
* Revision number, which increments by 1 each time the schema is updated. To prevent conflicting changes, the existing `revision` must be used when updating a schema.
|
|
@@ -45,16 +56,23 @@ export interface Schema {
|
|
|
45
56
|
export interface SchemaKey {
|
|
46
57
|
/**
|
|
47
58
|
* ID of the app that created the schema.
|
|
59
|
+
* @format GUID
|
|
48
60
|
* @readonly
|
|
49
61
|
*/
|
|
50
62
|
appId?: string;
|
|
51
|
-
/**
|
|
63
|
+
/**
|
|
64
|
+
* 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'`.
|
|
65
|
+
* @minLength 1
|
|
66
|
+
* @maxLength 80
|
|
67
|
+
* @immutable
|
|
68
|
+
*/
|
|
52
69
|
entityType?: string;
|
|
53
70
|
/**
|
|
54
71
|
* Scope of the translation schema.
|
|
55
72
|
* Supported values:
|
|
56
73
|
* + `GLOBAL`: A global schema for all sites.
|
|
57
74
|
* + `SITE`: A custom schema for a specific site.
|
|
75
|
+
* @immutable
|
|
58
76
|
*/
|
|
59
77
|
scope?: SchemaScope;
|
|
60
78
|
}
|
|
@@ -68,20 +86,38 @@ export declare enum SchemaScope {
|
|
|
68
86
|
export interface SchemaField {
|
|
69
87
|
/**
|
|
70
88
|
* Field ID. Validated according to Regex `^[A-Za-z0-9-_)(]+$`. Field IDs may contain parentheses to reference repeated items, such as images. These parentheses can't be nested and each opening parenthesis must be followed by a closing one. For example, `title()()` is valid, while `title)(` and `title(())` aren't valid. The value inside the parenthesis is validated according to Regex `^[^)(\\]\\[\\.]+$`.
|
|
89
|
+
* @minLength 1
|
|
90
|
+
* @maxLength 100
|
|
71
91
|
* @readonly
|
|
72
92
|
*/
|
|
73
93
|
id?: string;
|
|
74
94
|
/** **Required.** Field type. */
|
|
75
95
|
type?: FieldType;
|
|
76
|
-
/**
|
|
96
|
+
/**
|
|
97
|
+
* Field name displayed in the [Translation Manager](https://support.wix.com/en/article/wix-multilingual-using-the-translation-manager).
|
|
98
|
+
* @maxLength 100
|
|
99
|
+
*/
|
|
77
100
|
displayName?: string | null;
|
|
78
|
-
/**
|
|
101
|
+
/**
|
|
102
|
+
* Field group name.
|
|
103
|
+
* @maxLength 100
|
|
104
|
+
*/
|
|
79
105
|
groupName?: string | null;
|
|
80
|
-
/**
|
|
106
|
+
/**
|
|
107
|
+
* Field minimum text length.
|
|
108
|
+
* @min 1
|
|
109
|
+
*/
|
|
81
110
|
minLength?: number | null;
|
|
82
|
-
/**
|
|
111
|
+
/**
|
|
112
|
+
* Field maximum text length.
|
|
113
|
+
* @min 1
|
|
114
|
+
*/
|
|
83
115
|
maxLength?: number | null;
|
|
84
|
-
/**
|
|
116
|
+
/**
|
|
117
|
+
* Field format. Content is validated based on the format set here in the field schema. For example, if the format is `EMAIL`, then the content for this field must be a valid email address.
|
|
118
|
+
* @minLength 2
|
|
119
|
+
* @maxLength 20
|
|
120
|
+
*/
|
|
85
121
|
format?: string | null;
|
|
86
122
|
/** Whether the field is hidden from the site. Hidden fields are still validated. */
|
|
87
123
|
hidden?: boolean;
|
|
@@ -111,9 +147,15 @@ export declare enum FieldType {
|
|
|
111
147
|
DOCUMENT = "DOCUMENT"
|
|
112
148
|
}
|
|
113
149
|
export interface PreviewFields {
|
|
114
|
-
/**
|
|
150
|
+
/**
|
|
151
|
+
* ID of the field representing the schema's title.
|
|
152
|
+
* @maxLength 100
|
|
153
|
+
*/
|
|
115
154
|
titleFieldId?: string | null;
|
|
116
|
-
/**
|
|
155
|
+
/**
|
|
156
|
+
* ID of the field representing the schema's image.
|
|
157
|
+
* @maxLength 100
|
|
158
|
+
*/
|
|
117
159
|
imageFieldId?: string | null;
|
|
118
160
|
}
|
|
119
161
|
export interface CreateSchemaRequest {
|
|
@@ -125,7 +167,10 @@ export interface CreateSchemaResponse {
|
|
|
125
167
|
schema?: Schema;
|
|
126
168
|
}
|
|
127
169
|
export interface GetSchemaRequest {
|
|
128
|
-
/**
|
|
170
|
+
/**
|
|
171
|
+
* ID of the translation schema to retrieve.
|
|
172
|
+
* @format GUID
|
|
173
|
+
*/
|
|
129
174
|
schemaId: string;
|
|
130
175
|
}
|
|
131
176
|
export interface GetSchemaResponse {
|
|
@@ -149,7 +194,10 @@ export interface UpdateSchemaResponse {
|
|
|
149
194
|
schema?: Schema;
|
|
150
195
|
}
|
|
151
196
|
export interface DeleteSchemaRequest {
|
|
152
|
-
/**
|
|
197
|
+
/**
|
|
198
|
+
* ID of the translation schema to delete.
|
|
199
|
+
* @format GUID
|
|
200
|
+
*/
|
|
153
201
|
schemaId: string;
|
|
154
202
|
}
|
|
155
203
|
export interface DeleteSchemaResponse {
|
|
@@ -175,6 +223,7 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
175
223
|
* Sort object.
|
|
176
224
|
*
|
|
177
225
|
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
226
|
+
* @maxSize 5
|
|
178
227
|
*/
|
|
179
228
|
sort?: Sorting[];
|
|
180
229
|
}
|
|
@@ -188,7 +237,10 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
188
237
|
cursorPaging?: CursorPaging;
|
|
189
238
|
}
|
|
190
239
|
export interface Sorting {
|
|
191
|
-
/**
|
|
240
|
+
/**
|
|
241
|
+
* Name of the field to sort by.
|
|
242
|
+
* @maxLength 512
|
|
243
|
+
*/
|
|
192
244
|
fieldName?: string;
|
|
193
245
|
/** Sort order. */
|
|
194
246
|
order?: SortOrder;
|
|
@@ -198,13 +250,17 @@ export declare enum SortOrder {
|
|
|
198
250
|
DESC = "DESC"
|
|
199
251
|
}
|
|
200
252
|
export interface CursorPaging {
|
|
201
|
-
/**
|
|
253
|
+
/**
|
|
254
|
+
* Maximum number of items to return in the results.
|
|
255
|
+
* @max 100
|
|
256
|
+
*/
|
|
202
257
|
limit?: number | null;
|
|
203
258
|
/**
|
|
204
259
|
* Pointer to the next or previous page in the list of results.
|
|
205
260
|
*
|
|
206
261
|
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
207
262
|
* Not relevant for the first request.
|
|
263
|
+
* @maxLength 16000
|
|
208
264
|
*/
|
|
209
265
|
cursor?: string | null;
|
|
210
266
|
}
|
|
@@ -228,17 +284,30 @@ export interface CursorPagingMetadata {
|
|
|
228
284
|
hasNext?: boolean | null;
|
|
229
285
|
}
|
|
230
286
|
export interface Cursors {
|
|
231
|
-
/**
|
|
287
|
+
/**
|
|
288
|
+
* Cursor string pointing to the next page in the list of results.
|
|
289
|
+
* @maxLength 16000
|
|
290
|
+
*/
|
|
232
291
|
next?: string | null;
|
|
233
|
-
/**
|
|
292
|
+
/**
|
|
293
|
+
* Cursor pointing to the previous page in the list of results.
|
|
294
|
+
* @maxLength 16000
|
|
295
|
+
*/
|
|
234
296
|
prev?: string | null;
|
|
235
297
|
}
|
|
236
298
|
export interface ListSiteSchemasRequest {
|
|
237
299
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
238
300
|
paging?: CursorPaging;
|
|
239
|
-
/**
|
|
301
|
+
/**
|
|
302
|
+
* ID of app that created the schema.
|
|
303
|
+
* @format GUID
|
|
304
|
+
*/
|
|
240
305
|
appId?: string | null;
|
|
241
|
-
/**
|
|
306
|
+
/**
|
|
307
|
+
* 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'`.
|
|
308
|
+
* @minLength 1
|
|
309
|
+
* @maxLength 80
|
|
310
|
+
*/
|
|
242
311
|
entityType?: string | null;
|
|
243
312
|
/**
|
|
244
313
|
* Scope of the translation schema.
|
|
@@ -285,7 +354,10 @@ export interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
|
|
|
285
354
|
studioAssigned?: StudioAssigned;
|
|
286
355
|
/** Emitted when Studio is detached. */
|
|
287
356
|
studioUnassigned?: StudioUnassigned;
|
|
288
|
-
/**
|
|
357
|
+
/**
|
|
358
|
+
* A meta site id.
|
|
359
|
+
* @format GUID
|
|
360
|
+
*/
|
|
289
361
|
metaSiteId?: string;
|
|
290
362
|
/** A meta site version. Monotonically increasing. */
|
|
291
363
|
version?: string;
|
|
@@ -294,6 +366,7 @@ export interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
|
|
|
294
366
|
/**
|
|
295
367
|
* TODO(meta-site): Change validation once validations are disabled for consumers
|
|
296
368
|
* More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
|
|
369
|
+
* @maxSize 4000
|
|
297
370
|
*/
|
|
298
371
|
assets?: Asset[];
|
|
299
372
|
}
|
|
@@ -331,9 +404,15 @@ export interface MetaSiteSpecialEventPayloadOneOf {
|
|
|
331
404
|
studioUnassigned?: StudioUnassigned;
|
|
332
405
|
}
|
|
333
406
|
export interface Asset {
|
|
334
|
-
/**
|
|
407
|
+
/**
|
|
408
|
+
* An application definition id (app_id in dev-center). For legacy reasons may be UUID or a string (from Java Enum).
|
|
409
|
+
* @maxLength 36
|
|
410
|
+
*/
|
|
335
411
|
appDefId?: string;
|
|
336
|
-
/**
|
|
412
|
+
/**
|
|
413
|
+
* An instance id. For legacy reasons may be UUID or a string.
|
|
414
|
+
* @maxLength 200
|
|
415
|
+
*/
|
|
337
416
|
instanceId?: string;
|
|
338
417
|
/** An application state. */
|
|
339
418
|
state?: State;
|
|
@@ -346,9 +425,15 @@ export declare enum State {
|
|
|
346
425
|
DEMO = "DEMO"
|
|
347
426
|
}
|
|
348
427
|
export interface SiteCreated {
|
|
349
|
-
/**
|
|
428
|
+
/**
|
|
429
|
+
* A template identifier (empty if not created from a template).
|
|
430
|
+
* @maxLength 36
|
|
431
|
+
*/
|
|
350
432
|
originTemplateId?: string;
|
|
351
|
-
/**
|
|
433
|
+
/**
|
|
434
|
+
* An account id of the owner.
|
|
435
|
+
* @format GUID
|
|
436
|
+
*/
|
|
352
437
|
ownerId?: string;
|
|
353
438
|
/** A context in which meta site was created. */
|
|
354
439
|
context?: SiteCreatedContext;
|
|
@@ -357,9 +442,13 @@ export interface SiteCreated {
|
|
|
357
442
|
*
|
|
358
443
|
* In case of a creation from a template it's a template id.
|
|
359
444
|
* In case of a site duplication ("Save As" in dashboard or duplicate in UM) it's an id of a source site.
|
|
445
|
+
* @format GUID
|
|
360
446
|
*/
|
|
361
447
|
originMetaSiteId?: string | null;
|
|
362
|
-
/**
|
|
448
|
+
/**
|
|
449
|
+
* A meta site name (URL slug).
|
|
450
|
+
* @maxLength 20
|
|
451
|
+
*/
|
|
363
452
|
siteName?: string;
|
|
364
453
|
/** A namespace. */
|
|
365
454
|
namespace?: Namespace;
|
|
@@ -456,9 +545,15 @@ export declare enum Namespace {
|
|
|
456
545
|
}
|
|
457
546
|
/** Site transferred to another user. */
|
|
458
547
|
export interface SiteTransferred {
|
|
459
|
-
/**
|
|
548
|
+
/**
|
|
549
|
+
* A previous owner id (user that transfers meta site).
|
|
550
|
+
* @format GUID
|
|
551
|
+
*/
|
|
460
552
|
oldOwnerId?: string;
|
|
461
|
-
/**
|
|
553
|
+
/**
|
|
554
|
+
* A new owner id (user that accepts meta site).
|
|
555
|
+
* @format GUID
|
|
556
|
+
*/
|
|
462
557
|
newOwnerId?: string;
|
|
463
558
|
}
|
|
464
559
|
/** Soft deletion of the meta site. Could be restored. */
|
|
@@ -471,9 +566,15 @@ export interface DeleteContext {
|
|
|
471
566
|
dateDeleted?: Date | null;
|
|
472
567
|
/** A status. */
|
|
473
568
|
deleteStatus?: DeleteStatus;
|
|
474
|
-
/**
|
|
569
|
+
/**
|
|
570
|
+
* A reason (flow).
|
|
571
|
+
* @maxLength 255
|
|
572
|
+
*/
|
|
475
573
|
deleteOrigin?: string;
|
|
476
|
-
/**
|
|
574
|
+
/**
|
|
575
|
+
* A service that deleted it.
|
|
576
|
+
* @maxLength 255
|
|
577
|
+
*/
|
|
477
578
|
initiatorId?: string | null;
|
|
478
579
|
}
|
|
479
580
|
export declare enum DeleteStatus {
|
|
@@ -489,7 +590,11 @@ export interface SiteUndeleted {
|
|
|
489
590
|
export interface SitePublished {
|
|
490
591
|
}
|
|
491
592
|
export interface SiteUnpublished {
|
|
492
|
-
/**
|
|
593
|
+
/**
|
|
594
|
+
* A list of URLs previously associated with the meta site.
|
|
595
|
+
* @maxLength 4000
|
|
596
|
+
* @maxSize 10000
|
|
597
|
+
*/
|
|
493
598
|
urls?: string[];
|
|
494
599
|
}
|
|
495
600
|
export interface SiteMarkedAsTemplate {
|
|
@@ -512,30 +617,60 @@ export interface SiteMarkedAsWixSite {
|
|
|
512
617
|
* To ensure this, the TPA on the template gets a new instance_id.
|
|
513
618
|
*/
|
|
514
619
|
export interface ServiceProvisioned {
|
|
515
|
-
/**
|
|
620
|
+
/**
|
|
621
|
+
* Either UUID or EmbeddedServiceType.
|
|
622
|
+
* @maxLength 36
|
|
623
|
+
*/
|
|
516
624
|
appDefId?: string;
|
|
517
|
-
/**
|
|
625
|
+
/**
|
|
626
|
+
* Not only UUID. Something here could be something weird.
|
|
627
|
+
* @maxLength 36
|
|
628
|
+
*/
|
|
518
629
|
instanceId?: string;
|
|
519
|
-
/**
|
|
630
|
+
/**
|
|
631
|
+
* An instance id from which this instance is originated.
|
|
632
|
+
* @maxLength 36
|
|
633
|
+
*/
|
|
520
634
|
originInstanceId?: string;
|
|
521
|
-
/**
|
|
635
|
+
/**
|
|
636
|
+
* A version.
|
|
637
|
+
* @maxLength 500
|
|
638
|
+
*/
|
|
522
639
|
version?: string | null;
|
|
523
|
-
/**
|
|
640
|
+
/**
|
|
641
|
+
* The origin meta site id
|
|
642
|
+
* @format GUID
|
|
643
|
+
*/
|
|
524
644
|
originMetaSiteId?: string | null;
|
|
525
645
|
}
|
|
526
646
|
export interface ServiceRemoved {
|
|
527
|
-
/**
|
|
647
|
+
/**
|
|
648
|
+
* Either UUID or EmbeddedServiceType.
|
|
649
|
+
* @maxLength 36
|
|
650
|
+
*/
|
|
528
651
|
appDefId?: string;
|
|
529
|
-
/**
|
|
652
|
+
/**
|
|
653
|
+
* Not only UUID. Something here could be something weird.
|
|
654
|
+
* @maxLength 36
|
|
655
|
+
*/
|
|
530
656
|
instanceId?: string;
|
|
531
|
-
/**
|
|
657
|
+
/**
|
|
658
|
+
* A version.
|
|
659
|
+
* @maxLength 500
|
|
660
|
+
*/
|
|
532
661
|
version?: string | null;
|
|
533
662
|
}
|
|
534
663
|
/** Rename of the site. Meaning, free public url has been changed as well. */
|
|
535
664
|
export interface SiteRenamed {
|
|
536
|
-
/**
|
|
665
|
+
/**
|
|
666
|
+
* A new meta site name (URL slug).
|
|
667
|
+
* @maxLength 20
|
|
668
|
+
*/
|
|
537
669
|
newSiteName?: string;
|
|
538
|
-
/**
|
|
670
|
+
/**
|
|
671
|
+
* A previous meta site name (URL slug).
|
|
672
|
+
* @maxLength 255
|
|
673
|
+
*/
|
|
539
674
|
oldSiteName?: string;
|
|
540
675
|
}
|
|
541
676
|
/**
|
|
@@ -634,9 +769,15 @@ export interface ActionEvent {
|
|
|
634
769
|
bodyAsJson?: string;
|
|
635
770
|
}
|
|
636
771
|
export interface MessageEnvelope {
|
|
637
|
-
/**
|
|
772
|
+
/**
|
|
773
|
+
* App instance ID.
|
|
774
|
+
* @format GUID
|
|
775
|
+
*/
|
|
638
776
|
instanceId?: string | null;
|
|
639
|
-
/**
|
|
777
|
+
/**
|
|
778
|
+
* Event type.
|
|
779
|
+
* @maxLength 150
|
|
780
|
+
*/
|
|
640
781
|
eventType?: string;
|
|
641
782
|
/** The identification type and identity data. */
|
|
642
783
|
identity?: IdentificationData;
|
|
@@ -644,26 +785,50 @@ export interface MessageEnvelope {
|
|
|
644
785
|
data?: string;
|
|
645
786
|
}
|
|
646
787
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
647
|
-
/**
|
|
788
|
+
/**
|
|
789
|
+
* ID of a site visitor that has not logged in to the site.
|
|
790
|
+
* @format GUID
|
|
791
|
+
*/
|
|
648
792
|
anonymousVisitorId?: string;
|
|
649
|
-
/**
|
|
793
|
+
/**
|
|
794
|
+
* ID of a site visitor that has logged in to the site.
|
|
795
|
+
* @format GUID
|
|
796
|
+
*/
|
|
650
797
|
memberId?: string;
|
|
651
|
-
/**
|
|
798
|
+
/**
|
|
799
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
800
|
+
* @format GUID
|
|
801
|
+
*/
|
|
652
802
|
wixUserId?: string;
|
|
653
|
-
/**
|
|
803
|
+
/**
|
|
804
|
+
* ID of an app.
|
|
805
|
+
* @format GUID
|
|
806
|
+
*/
|
|
654
807
|
appId?: string;
|
|
655
808
|
/** @readonly */
|
|
656
809
|
identityType?: WebhookIdentityType;
|
|
657
810
|
}
|
|
658
811
|
/** @oneof */
|
|
659
812
|
export interface IdentificationDataIdOneOf {
|
|
660
|
-
/**
|
|
813
|
+
/**
|
|
814
|
+
* ID of a site visitor that has not logged in to the site.
|
|
815
|
+
* @format GUID
|
|
816
|
+
*/
|
|
661
817
|
anonymousVisitorId?: string;
|
|
662
|
-
/**
|
|
818
|
+
/**
|
|
819
|
+
* ID of a site visitor that has logged in to the site.
|
|
820
|
+
* @format GUID
|
|
821
|
+
*/
|
|
663
822
|
memberId?: string;
|
|
664
|
-
/**
|
|
823
|
+
/**
|
|
824
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
825
|
+
* @format GUID
|
|
826
|
+
*/
|
|
665
827
|
wixUserId?: string;
|
|
666
|
-
/**
|
|
828
|
+
/**
|
|
829
|
+
* ID of an app.
|
|
830
|
+
* @format GUID
|
|
831
|
+
*/
|
|
667
832
|
appId?: string;
|
|
668
833
|
}
|
|
669
834
|
export declare enum WebhookIdentityType {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"multilingual-translation-v1-schema-translation-schemas.types.js","sourceRoot":"","sources":["../../../src/multilingual-translation-v1-schema-translation-schemas.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"multilingual-translation-v1-schema-translation-schemas.types.js","sourceRoot":"","sources":["../../../src/multilingual-translation-v1-schema-translation-schemas.types.ts"],"names":[],"mappings":"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"}
|