@wix/auto_sdk_crm_extended-fields 1.0.1 → 1.0.3
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/contacts-v4-extended-field-extended-fields.types.d.ts +83 -17
- package/build/cjs/src/contacts-v4-extended-field-extended-fields.types.js.map +1 -1
- package/build/cjs/src/contacts-v4-extended-field-extended-fields.universal.d.ts +126 -20
- package/build/cjs/src/contacts-v4-extended-field-extended-fields.universal.js +8 -0
- package/build/cjs/src/contacts-v4-extended-field-extended-fields.universal.js.map +1 -1
- package/build/es/src/contacts-v4-extended-field-extended-fields.types.d.ts +83 -17
- package/build/es/src/contacts-v4-extended-field-extended-fields.types.js.map +1 -1
- package/build/es/src/contacts-v4-extended-field-extended-fields.universal.d.ts +126 -20
- package/build/es/src/contacts-v4-extended-field-extended-fields.universal.js +8 -0
- package/build/es/src/contacts-v4-extended-field-extended-fields.universal.js.map +1 -1
- package/build/internal/cjs/src/contacts-v4-extended-field-extended-fields.types.d.ts +83 -17
- package/build/internal/cjs/src/contacts-v4-extended-field-extended-fields.types.js.map +1 -1
- package/build/internal/cjs/src/contacts-v4-extended-field-extended-fields.universal.d.ts +126 -20
- package/build/internal/cjs/src/contacts-v4-extended-field-extended-fields.universal.js +8 -0
- package/build/internal/cjs/src/contacts-v4-extended-field-extended-fields.universal.js.map +1 -1
- package/build/internal/es/src/contacts-v4-extended-field-extended-fields.types.d.ts +83 -17
- package/build/internal/es/src/contacts-v4-extended-field-extended-fields.types.js.map +1 -1
- package/build/internal/es/src/contacts-v4-extended-field-extended-fields.universal.d.ts +126 -20
- package/build/internal/es/src/contacts-v4-extended-field-extended-fields.universal.js +8 -0
- package/build/internal/es/src/contacts-v4-extended-field-extended-fields.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -6,6 +6,8 @@ export interface ExtendedField {
|
|
|
6
6
|
* Extended fields created through by calling the Find Or Create Extended Field method
|
|
7
7
|
* are automatically assigned to the `custom` namespace.
|
|
8
8
|
* @readonly
|
|
9
|
+
* @minLength 1
|
|
10
|
+
* @maxLength 25
|
|
9
11
|
*/
|
|
10
12
|
namespace?: string | null;
|
|
11
13
|
/**
|
|
@@ -19,9 +21,15 @@ export interface ExtendedField {
|
|
|
19
21
|
* `key` is generated when the extended field is created
|
|
20
22
|
* and can't be modified, even if `displayName` changes.
|
|
21
23
|
* @readonly
|
|
24
|
+
* @minLength 1
|
|
25
|
+
* @maxLength 80
|
|
22
26
|
*/
|
|
23
27
|
key?: string;
|
|
24
|
-
/**
|
|
28
|
+
/**
|
|
29
|
+
* Display name shown in the contact list.
|
|
30
|
+
* @minLength 1
|
|
31
|
+
* @maxLength 150
|
|
32
|
+
*/
|
|
25
33
|
displayName?: string;
|
|
26
34
|
/**
|
|
27
35
|
* Type of data the field holds.
|
|
@@ -46,6 +54,8 @@ export interface ExtendedField {
|
|
|
46
54
|
/**
|
|
47
55
|
* Field description, if the field is a system field.
|
|
48
56
|
* @readonly
|
|
57
|
+
* @minLength 1
|
|
58
|
+
* @maxLength 150
|
|
49
59
|
*/
|
|
50
60
|
description?: string | null;
|
|
51
61
|
}
|
|
@@ -73,9 +83,14 @@ export interface ListExtendedFieldsRequest {
|
|
|
73
83
|
* Filter for fields in the specified namespace.
|
|
74
84
|
* Fields created by calling the Find Or Create Extended Field method
|
|
75
85
|
* are automatically assigned to the `custom` namespace.
|
|
86
|
+
* @minLength 3
|
|
87
|
+
* @maxLength 25
|
|
76
88
|
*/
|
|
77
89
|
namespace?: string | null;
|
|
78
|
-
/**
|
|
90
|
+
/**
|
|
91
|
+
* Filter for fields where `displayName` starts with the specified case-sensitive string.
|
|
92
|
+
* @maxLength 150
|
|
93
|
+
*/
|
|
79
94
|
startsWith?: string | null;
|
|
80
95
|
/** Sorting options. */
|
|
81
96
|
sort?: Sorting;
|
|
@@ -83,7 +98,10 @@ export interface ListExtendedFieldsRequest {
|
|
|
83
98
|
paging?: Paging;
|
|
84
99
|
}
|
|
85
100
|
export interface Sorting {
|
|
86
|
-
/**
|
|
101
|
+
/**
|
|
102
|
+
* Name of the field to sort by.
|
|
103
|
+
* @maxLength 100
|
|
104
|
+
*/
|
|
87
105
|
fieldName?: string;
|
|
88
106
|
/**
|
|
89
107
|
* Sort order.
|
|
@@ -141,6 +159,8 @@ export interface FindOrCreateExtendedFieldRequest {
|
|
|
141
159
|
* for the specified display name,
|
|
142
160
|
* the existing field is returned.
|
|
143
161
|
* If not, a new field is created and returned.
|
|
162
|
+
* @minLength 1
|
|
163
|
+
* @maxLength 150
|
|
144
164
|
*/
|
|
145
165
|
displayName: string;
|
|
146
166
|
/**
|
|
@@ -172,6 +192,8 @@ export interface GetExtendedFieldRequest {
|
|
|
172
192
|
*
|
|
173
193
|
* `key` is generated when the extended field is created.
|
|
174
194
|
* It can't be modified, even if `displayName` is updated.
|
|
195
|
+
* @minLength 1
|
|
196
|
+
* @maxLength 80
|
|
175
197
|
*/
|
|
176
198
|
key: string;
|
|
177
199
|
}
|
|
@@ -181,7 +203,10 @@ export interface GetExtendedFieldResponse {
|
|
|
181
203
|
field?: ExtendedField;
|
|
182
204
|
}
|
|
183
205
|
export interface GetExtendedFieldByLegacyIdRequest {
|
|
184
|
-
/**
|
|
206
|
+
/**
|
|
207
|
+
* Legacy ID of the extended field.
|
|
208
|
+
* @format GUID
|
|
209
|
+
*/
|
|
185
210
|
legacyId?: string;
|
|
186
211
|
}
|
|
187
212
|
export interface GetExtendedFieldByLegacyIdResponse {
|
|
@@ -198,13 +223,20 @@ export interface UpdateExtendedFieldResponse {
|
|
|
198
223
|
field?: ExtendedField;
|
|
199
224
|
}
|
|
200
225
|
export interface DeleteExtendedFieldRequest {
|
|
201
|
-
/**
|
|
226
|
+
/**
|
|
227
|
+
* Extended field key.
|
|
228
|
+
* @minLength 1
|
|
229
|
+
* @maxLength 80
|
|
230
|
+
*/
|
|
202
231
|
key: string;
|
|
203
232
|
}
|
|
204
233
|
export interface DeleteExtendedFieldResponse {
|
|
205
234
|
}
|
|
206
235
|
export interface PurgeRequest {
|
|
207
|
-
/**
|
|
236
|
+
/**
|
|
237
|
+
* Instance ID of the site.
|
|
238
|
+
* @format GUID
|
|
239
|
+
*/
|
|
208
240
|
instanceId?: string;
|
|
209
241
|
}
|
|
210
242
|
export interface PurgeResponse {
|
|
@@ -212,7 +244,10 @@ export interface PurgeResponse {
|
|
|
212
244
|
deletedItems?: number;
|
|
213
245
|
}
|
|
214
246
|
export interface GdprListRequest {
|
|
215
|
-
/**
|
|
247
|
+
/**
|
|
248
|
+
* Instance ID of the site.
|
|
249
|
+
* @format GUID
|
|
250
|
+
*/
|
|
216
251
|
instanceId?: string;
|
|
217
252
|
}
|
|
218
253
|
export interface GdprListResponse {
|
|
@@ -243,6 +278,7 @@ export interface Query {
|
|
|
243
278
|
* Sorting options. Currently supports sorting on one field only.
|
|
244
279
|
*
|
|
245
280
|
* Example: `{ "sort": [{"fieldName": "displayName", "order": "DESC"}] }`
|
|
281
|
+
* @maxSize 1
|
|
246
282
|
*/
|
|
247
283
|
sort?: Sorting[];
|
|
248
284
|
/** Pagination options. */
|
|
@@ -327,9 +363,15 @@ export interface ActionEvent {
|
|
|
327
363
|
bodyAsJson?: string;
|
|
328
364
|
}
|
|
329
365
|
export interface MessageEnvelope {
|
|
330
|
-
/**
|
|
366
|
+
/**
|
|
367
|
+
* App instance ID.
|
|
368
|
+
* @format GUID
|
|
369
|
+
*/
|
|
331
370
|
instanceId?: string | null;
|
|
332
|
-
/**
|
|
371
|
+
/**
|
|
372
|
+
* Event type.
|
|
373
|
+
* @maxLength 150
|
|
374
|
+
*/
|
|
333
375
|
eventType?: string;
|
|
334
376
|
/** The identification type and identity data. */
|
|
335
377
|
identity?: IdentificationData;
|
|
@@ -337,26 +379,50 @@ export interface MessageEnvelope {
|
|
|
337
379
|
data?: string;
|
|
338
380
|
}
|
|
339
381
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
340
|
-
/**
|
|
382
|
+
/**
|
|
383
|
+
* ID of a site visitor that has not logged in to the site.
|
|
384
|
+
* @format GUID
|
|
385
|
+
*/
|
|
341
386
|
anonymousVisitorId?: string;
|
|
342
|
-
/**
|
|
387
|
+
/**
|
|
388
|
+
* ID of a site visitor that has logged in to the site.
|
|
389
|
+
* @format GUID
|
|
390
|
+
*/
|
|
343
391
|
memberId?: string;
|
|
344
|
-
/**
|
|
392
|
+
/**
|
|
393
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
394
|
+
* @format GUID
|
|
395
|
+
*/
|
|
345
396
|
wixUserId?: string;
|
|
346
|
-
/**
|
|
397
|
+
/**
|
|
398
|
+
* ID of an app.
|
|
399
|
+
* @format GUID
|
|
400
|
+
*/
|
|
347
401
|
appId?: string;
|
|
348
402
|
/** @readonly */
|
|
349
403
|
identityType?: WebhookIdentityType;
|
|
350
404
|
}
|
|
351
405
|
/** @oneof */
|
|
352
406
|
export interface IdentificationDataIdOneOf {
|
|
353
|
-
/**
|
|
407
|
+
/**
|
|
408
|
+
* ID of a site visitor that has not logged in to the site.
|
|
409
|
+
* @format GUID
|
|
410
|
+
*/
|
|
354
411
|
anonymousVisitorId?: string;
|
|
355
|
-
/**
|
|
412
|
+
/**
|
|
413
|
+
* ID of a site visitor that has logged in to the site.
|
|
414
|
+
* @format GUID
|
|
415
|
+
*/
|
|
356
416
|
memberId?: string;
|
|
357
|
-
/**
|
|
417
|
+
/**
|
|
418
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
419
|
+
* @format GUID
|
|
420
|
+
*/
|
|
358
421
|
wixUserId?: string;
|
|
359
|
-
/**
|
|
422
|
+
/**
|
|
423
|
+
* ID of an app.
|
|
424
|
+
* @format GUID
|
|
425
|
+
*/
|
|
360
426
|
appId?: string;
|
|
361
427
|
}
|
|
362
428
|
export declare enum WebhookIdentityType {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contacts-v4-extended-field-extended-fields.types.js","sourceRoot":"","sources":["../../../src/contacts-v4-extended-field-extended-fields.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"contacts-v4-extended-field-extended-fields.types.js","sourceRoot":"","sources":["../../../src/contacts-v4-extended-field-extended-fields.types.ts"],"names":[],"mappings":";;;AA8DA,IAAY,aASX;AATD,WAAY,aAAa;IACvB,uBAAuB;IACvB,8BAAa,CAAA;IACb,sBAAsB;IACtB,kCAAiB,CAAA;IACjB,+CAA+C;IAC/C,8BAAa,CAAA;IACb,uEAAuE;IACvE,4BAAW,CAAA;AACb,CAAC,EATW,aAAa,6BAAb,aAAa,QASxB;AAED,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,2HAA2H;IAC3H,8BAAiB,CAAA;IACjB,+FAA+F;IAC/F,0CAA6B,CAAA;AAC/B,CAAC,EALW,SAAS,yBAAT,SAAS,QAKpB;AAuCD,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,+BAA+B;IAC/B,wBAAW,CAAA;IACX,gCAAgC;IAChC,0BAAa,CAAA;AACf,CAAC,EALW,SAAS,yBAAT,SAAS,QAKpB;AAoVD,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B"}
|
|
@@ -6,6 +6,8 @@ export interface ExtendedField {
|
|
|
6
6
|
* Extended fields created through by calling the Find Or Create Extended Field method
|
|
7
7
|
* are automatically assigned to the `custom` namespace.
|
|
8
8
|
* @readonly
|
|
9
|
+
* @minLength 1
|
|
10
|
+
* @maxLength 25
|
|
9
11
|
*/
|
|
10
12
|
namespace?: string | null;
|
|
11
13
|
/**
|
|
@@ -19,9 +21,15 @@ export interface ExtendedField {
|
|
|
19
21
|
* `key` is generated when the extended field is created
|
|
20
22
|
* and can't be modified, even if `displayName` changes.
|
|
21
23
|
* @readonly
|
|
24
|
+
* @minLength 1
|
|
25
|
+
* @maxLength 80
|
|
22
26
|
*/
|
|
23
27
|
key?: string;
|
|
24
|
-
/**
|
|
28
|
+
/**
|
|
29
|
+
* Display name shown in the contact list.
|
|
30
|
+
* @minLength 1
|
|
31
|
+
* @maxLength 150
|
|
32
|
+
*/
|
|
25
33
|
displayName?: string;
|
|
26
34
|
/**
|
|
27
35
|
* Type of data the field holds.
|
|
@@ -46,6 +54,8 @@ export interface ExtendedField {
|
|
|
46
54
|
/**
|
|
47
55
|
* Field description, if the field is a system field.
|
|
48
56
|
* @readonly
|
|
57
|
+
* @minLength 1
|
|
58
|
+
* @maxLength 150
|
|
49
59
|
*/
|
|
50
60
|
description?: string | null;
|
|
51
61
|
}
|
|
@@ -73,9 +83,14 @@ export interface ListExtendedFieldsRequest {
|
|
|
73
83
|
* Filter for fields in the specified namespace.
|
|
74
84
|
* Fields created by calling the Find Or Create Extended Field method
|
|
75
85
|
* are automatically assigned to the `custom` namespace.
|
|
86
|
+
* @minLength 3
|
|
87
|
+
* @maxLength 25
|
|
76
88
|
*/
|
|
77
89
|
namespace?: string | null;
|
|
78
|
-
/**
|
|
90
|
+
/**
|
|
91
|
+
* Filter for fields where `displayName` starts with the specified case-sensitive string.
|
|
92
|
+
* @maxLength 150
|
|
93
|
+
*/
|
|
79
94
|
startsWith?: string | null;
|
|
80
95
|
/** Sorting options. */
|
|
81
96
|
sort?: Sorting;
|
|
@@ -83,7 +98,10 @@ export interface ListExtendedFieldsRequest {
|
|
|
83
98
|
paging?: Paging;
|
|
84
99
|
}
|
|
85
100
|
export interface Sorting {
|
|
86
|
-
/**
|
|
101
|
+
/**
|
|
102
|
+
* Name of the field to sort by.
|
|
103
|
+
* @maxLength 100
|
|
104
|
+
*/
|
|
87
105
|
fieldName?: string;
|
|
88
106
|
/**
|
|
89
107
|
* Sort order.
|
|
@@ -141,6 +159,8 @@ export interface FindOrCreateExtendedFieldRequest {
|
|
|
141
159
|
* for the specified display name,
|
|
142
160
|
* the existing field is returned.
|
|
143
161
|
* If not, a new field is created and returned.
|
|
162
|
+
* @minLength 1
|
|
163
|
+
* @maxLength 150
|
|
144
164
|
*/
|
|
145
165
|
displayName: string;
|
|
146
166
|
/**
|
|
@@ -172,6 +192,8 @@ export interface GetExtendedFieldRequest {
|
|
|
172
192
|
*
|
|
173
193
|
* `key` is generated when the extended field is created.
|
|
174
194
|
* It can't be modified, even if `displayName` is updated.
|
|
195
|
+
* @minLength 1
|
|
196
|
+
* @maxLength 80
|
|
175
197
|
*/
|
|
176
198
|
key: string;
|
|
177
199
|
}
|
|
@@ -181,7 +203,10 @@ export interface GetExtendedFieldResponse {
|
|
|
181
203
|
field?: ExtendedField;
|
|
182
204
|
}
|
|
183
205
|
export interface GetExtendedFieldByLegacyIdRequest {
|
|
184
|
-
/**
|
|
206
|
+
/**
|
|
207
|
+
* Legacy ID of the extended field.
|
|
208
|
+
* @format GUID
|
|
209
|
+
*/
|
|
185
210
|
legacyId?: string;
|
|
186
211
|
}
|
|
187
212
|
export interface GetExtendedFieldByLegacyIdResponse {
|
|
@@ -198,13 +223,20 @@ export interface UpdateExtendedFieldResponse {
|
|
|
198
223
|
field?: ExtendedField;
|
|
199
224
|
}
|
|
200
225
|
export interface DeleteExtendedFieldRequest {
|
|
201
|
-
/**
|
|
226
|
+
/**
|
|
227
|
+
* Extended field key.
|
|
228
|
+
* @minLength 1
|
|
229
|
+
* @maxLength 80
|
|
230
|
+
*/
|
|
202
231
|
key: string;
|
|
203
232
|
}
|
|
204
233
|
export interface DeleteExtendedFieldResponse {
|
|
205
234
|
}
|
|
206
235
|
export interface PurgeRequest {
|
|
207
|
-
/**
|
|
236
|
+
/**
|
|
237
|
+
* Instance ID of the site.
|
|
238
|
+
* @format GUID
|
|
239
|
+
*/
|
|
208
240
|
instanceId?: string;
|
|
209
241
|
}
|
|
210
242
|
export interface PurgeResponse {
|
|
@@ -212,7 +244,10 @@ export interface PurgeResponse {
|
|
|
212
244
|
deletedItems?: number;
|
|
213
245
|
}
|
|
214
246
|
export interface GdprListRequest {
|
|
215
|
-
/**
|
|
247
|
+
/**
|
|
248
|
+
* Instance ID of the site.
|
|
249
|
+
* @format GUID
|
|
250
|
+
*/
|
|
216
251
|
instanceId?: string;
|
|
217
252
|
}
|
|
218
253
|
export interface GdprListResponse {
|
|
@@ -243,6 +278,7 @@ export interface Query {
|
|
|
243
278
|
* Sorting options. Currently supports sorting on one field only.
|
|
244
279
|
*
|
|
245
280
|
* Example: `{ "sort": [{"fieldName": "displayName", "order": "DESC"}] }`
|
|
281
|
+
* @maxSize 1
|
|
246
282
|
*/
|
|
247
283
|
sort?: Sorting[];
|
|
248
284
|
/** Pagination options. */
|
|
@@ -325,9 +361,15 @@ export interface ActionEvent {
|
|
|
325
361
|
body?: string;
|
|
326
362
|
}
|
|
327
363
|
export interface MessageEnvelope {
|
|
328
|
-
/**
|
|
364
|
+
/**
|
|
365
|
+
* App instance ID.
|
|
366
|
+
* @format GUID
|
|
367
|
+
*/
|
|
329
368
|
instanceId?: string | null;
|
|
330
|
-
/**
|
|
369
|
+
/**
|
|
370
|
+
* Event type.
|
|
371
|
+
* @maxLength 150
|
|
372
|
+
*/
|
|
331
373
|
eventType?: string;
|
|
332
374
|
/** The identification type and identity data. */
|
|
333
375
|
identity?: IdentificationData;
|
|
@@ -335,26 +377,50 @@ export interface MessageEnvelope {
|
|
|
335
377
|
data?: string;
|
|
336
378
|
}
|
|
337
379
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
338
|
-
/**
|
|
380
|
+
/**
|
|
381
|
+
* ID of a site visitor that has not logged in to the site.
|
|
382
|
+
* @format GUID
|
|
383
|
+
*/
|
|
339
384
|
anonymousVisitorId?: string;
|
|
340
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* ID of a site visitor that has logged in to the site.
|
|
387
|
+
* @format GUID
|
|
388
|
+
*/
|
|
341
389
|
memberId?: string;
|
|
342
|
-
/**
|
|
390
|
+
/**
|
|
391
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
392
|
+
* @format GUID
|
|
393
|
+
*/
|
|
343
394
|
wixUserId?: string;
|
|
344
|
-
/**
|
|
395
|
+
/**
|
|
396
|
+
* ID of an app.
|
|
397
|
+
* @format GUID
|
|
398
|
+
*/
|
|
345
399
|
appId?: string;
|
|
346
400
|
/** @readonly */
|
|
347
401
|
identityType?: WebhookIdentityType;
|
|
348
402
|
}
|
|
349
403
|
/** @oneof */
|
|
350
404
|
export interface IdentificationDataIdOneOf {
|
|
351
|
-
/**
|
|
405
|
+
/**
|
|
406
|
+
* ID of a site visitor that has not logged in to the site.
|
|
407
|
+
* @format GUID
|
|
408
|
+
*/
|
|
352
409
|
anonymousVisitorId?: string;
|
|
353
|
-
/**
|
|
410
|
+
/**
|
|
411
|
+
* ID of a site visitor that has logged in to the site.
|
|
412
|
+
* @format GUID
|
|
413
|
+
*/
|
|
354
414
|
memberId?: string;
|
|
355
|
-
/**
|
|
415
|
+
/**
|
|
416
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
417
|
+
* @format GUID
|
|
418
|
+
*/
|
|
356
419
|
wixUserId?: string;
|
|
357
|
-
/**
|
|
420
|
+
/**
|
|
421
|
+
* ID of an app.
|
|
422
|
+
* @format GUID
|
|
423
|
+
*/
|
|
358
424
|
appId?: string;
|
|
359
425
|
}
|
|
360
426
|
export declare enum WebhookIdentityType {
|
|
@@ -384,9 +450,15 @@ export interface QueryExtendedFieldsResponseNonNullableFields {
|
|
|
384
450
|
fields: ExtendedFieldNonNullableFields[];
|
|
385
451
|
}
|
|
386
452
|
export interface BaseEventMetadata {
|
|
387
|
-
/**
|
|
453
|
+
/**
|
|
454
|
+
* App instance ID.
|
|
455
|
+
* @format GUID
|
|
456
|
+
*/
|
|
388
457
|
instanceId?: string | null;
|
|
389
|
-
/**
|
|
458
|
+
/**
|
|
459
|
+
* Event type.
|
|
460
|
+
* @maxLength 150
|
|
461
|
+
*/
|
|
390
462
|
eventType?: string;
|
|
391
463
|
/** The identification type and identity data. */
|
|
392
464
|
identity?: IdentificationData;
|
|
@@ -437,10 +509,14 @@ export interface ExtendedFieldCreatedEnvelope {
|
|
|
437
509
|
* Triggered when an extended field is created.
|
|
438
510
|
* @permissionScope Manage Bookings Services and Settings
|
|
439
511
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
512
|
+
* @permissionScope Manage Events
|
|
513
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
440
514
|
* @permissionScope Manage Portfolio
|
|
441
515
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
442
516
|
* @permissionScope Manage Contact Extended Fields
|
|
443
517
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
518
|
+
* @permissionScope Access Verticals by Automations
|
|
519
|
+
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
444
520
|
* @permissionScope Manage Restaurants - all permissions
|
|
445
521
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
446
522
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -448,6 +524,8 @@ export interface ExtendedFieldCreatedEnvelope {
|
|
|
448
524
|
* @permissionId CONTACTS_SCHEMA.VIEW
|
|
449
525
|
* @webhook
|
|
450
526
|
* @eventType wix.contacts.v4.extended-field_created
|
|
527
|
+
* @serviceIdentifier com.wixpress.contacts.fields.v4.ContactExtendedFieldsServiceV4
|
|
528
|
+
* @slug created
|
|
451
529
|
*/
|
|
452
530
|
export declare function onExtendedFieldCreated(handler: (event: ExtendedFieldCreatedEnvelope) => void | Promise<void>): void;
|
|
453
531
|
export interface ExtendedFieldDeletedEnvelope {
|
|
@@ -457,10 +535,14 @@ export interface ExtendedFieldDeletedEnvelope {
|
|
|
457
535
|
* Triggered when an extended field is deleted.
|
|
458
536
|
* @permissionScope Manage Bookings Services and Settings
|
|
459
537
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
538
|
+
* @permissionScope Manage Events
|
|
539
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
460
540
|
* @permissionScope Manage Portfolio
|
|
461
541
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
462
542
|
* @permissionScope Manage Contact Extended Fields
|
|
463
543
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
544
|
+
* @permissionScope Access Verticals by Automations
|
|
545
|
+
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
464
546
|
* @permissionScope Manage Restaurants - all permissions
|
|
465
547
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
466
548
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -468,6 +550,8 @@ export interface ExtendedFieldDeletedEnvelope {
|
|
|
468
550
|
* @permissionId CONTACTS_SCHEMA.VIEW
|
|
469
551
|
* @webhook
|
|
470
552
|
* @eventType wix.contacts.v4.extended-field_deleted
|
|
553
|
+
* @serviceIdentifier com.wixpress.contacts.fields.v4.ContactExtendedFieldsServiceV4
|
|
554
|
+
* @slug deleted
|
|
471
555
|
*/
|
|
472
556
|
export declare function onExtendedFieldDeleted(handler: (event: ExtendedFieldDeletedEnvelope) => void | Promise<void>): void;
|
|
473
557
|
export interface ExtendedFieldUpdatedEnvelope {
|
|
@@ -478,10 +562,14 @@ export interface ExtendedFieldUpdatedEnvelope {
|
|
|
478
562
|
* Triggered when an extended field is updated.
|
|
479
563
|
* @permissionScope Manage Bookings Services and Settings
|
|
480
564
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
565
|
+
* @permissionScope Manage Events
|
|
566
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
481
567
|
* @permissionScope Manage Portfolio
|
|
482
568
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
483
569
|
* @permissionScope Manage Contact Extended Fields
|
|
484
570
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
571
|
+
* @permissionScope Access Verticals by Automations
|
|
572
|
+
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
485
573
|
* @permissionScope Manage Restaurants - all permissions
|
|
486
574
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
487
575
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -489,6 +577,8 @@ export interface ExtendedFieldUpdatedEnvelope {
|
|
|
489
577
|
* @permissionId CONTACTS_SCHEMA.VIEW
|
|
490
578
|
* @webhook
|
|
491
579
|
* @eventType wix.contacts.v4.extended-field_updated
|
|
580
|
+
* @serviceIdentifier com.wixpress.contacts.fields.v4.ContactExtendedFieldsServiceV4
|
|
581
|
+
* @slug updated
|
|
492
582
|
*/
|
|
493
583
|
export declare function onExtendedFieldUpdated(handler: (event: ExtendedFieldUpdatedEnvelope) => void | Promise<void>): void;
|
|
494
584
|
/**
|
|
@@ -530,10 +620,14 @@ export declare function findOrCreateExtendedField(displayName: string, dataType:
|
|
|
530
620
|
* @permissionId CONTACTS_SCHEMA.VIEW
|
|
531
621
|
* @permissionScope Manage Bookings Services and Settings
|
|
532
622
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
623
|
+
* @permissionScope Manage Events
|
|
624
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
533
625
|
* @permissionScope Manage Portfolio
|
|
534
626
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
535
627
|
* @permissionScope Manage Contact Extended Fields
|
|
536
628
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
629
|
+
* @permissionScope Access Verticals by Automations
|
|
630
|
+
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
537
631
|
* @permissionScope Manage Restaurants - all permissions
|
|
538
632
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
539
633
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -568,9 +662,15 @@ export interface RenameExtendedField {
|
|
|
568
662
|
* Extended fields created through by calling the Find Or Create Extended Field method
|
|
569
663
|
* are automatically assigned to the `custom` namespace.
|
|
570
664
|
* @readonly
|
|
665
|
+
* @minLength 1
|
|
666
|
+
* @maxLength 25
|
|
571
667
|
*/
|
|
572
668
|
namespace?: string | null;
|
|
573
|
-
/**
|
|
669
|
+
/**
|
|
670
|
+
* Display name shown in the contact list.
|
|
671
|
+
* @minLength 1
|
|
672
|
+
* @maxLength 150
|
|
673
|
+
*/
|
|
574
674
|
displayName?: string;
|
|
575
675
|
/**
|
|
576
676
|
* Type of data the field holds.
|
|
@@ -595,6 +695,8 @@ export interface RenameExtendedField {
|
|
|
595
695
|
/**
|
|
596
696
|
* Field description, if the field is a system field.
|
|
597
697
|
* @readonly
|
|
698
|
+
* @minLength 1
|
|
699
|
+
* @maxLength 150
|
|
598
700
|
*/
|
|
599
701
|
description?: string | null;
|
|
600
702
|
}
|
|
@@ -633,10 +735,14 @@ export declare function deleteExtendedField(key: string): Promise<void>;
|
|
|
633
735
|
* @public
|
|
634
736
|
* @permissionScope Manage Bookings Services and Settings
|
|
635
737
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
738
|
+
* @permissionScope Manage Events
|
|
739
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
636
740
|
* @permissionScope Manage Portfolio
|
|
637
741
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
638
742
|
* @permissionScope Manage Contact Extended Fields
|
|
639
743
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
744
|
+
* @permissionScope Access Verticals by Automations
|
|
745
|
+
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
640
746
|
* @permissionScope Manage Restaurants - all permissions
|
|
641
747
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
642
748
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -124,10 +124,14 @@ exports.findOrCreateExtendedField = findOrCreateExtendedField;
|
|
|
124
124
|
* @permissionId CONTACTS_SCHEMA.VIEW
|
|
125
125
|
* @permissionScope Manage Bookings Services and Settings
|
|
126
126
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
127
|
+
* @permissionScope Manage Events
|
|
128
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
127
129
|
* @permissionScope Manage Portfolio
|
|
128
130
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
129
131
|
* @permissionScope Manage Contact Extended Fields
|
|
130
132
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
133
|
+
* @permissionScope Access Verticals by Automations
|
|
134
|
+
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
131
135
|
* @permissionScope Manage Restaurants - all permissions
|
|
132
136
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
133
137
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -254,10 +258,14 @@ exports.deleteExtendedField = deleteExtendedField;
|
|
|
254
258
|
* @public
|
|
255
259
|
* @permissionScope Manage Bookings Services and Settings
|
|
256
260
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
261
|
+
* @permissionScope Manage Events
|
|
262
|
+
* @permissionScopeId SCOPE.EVENTS.MANAGE-EVENTS
|
|
257
263
|
* @permissionScope Manage Portfolio
|
|
258
264
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
259
265
|
* @permissionScope Manage Contact Extended Fields
|
|
260
266
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
267
|
+
* @permissionScope Access Verticals by Automations
|
|
268
|
+
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
261
269
|
* @permissionScope Manage Restaurants - all permissions
|
|
262
270
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
263
271
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contacts-v4-extended-field-extended-fields.universal.js","sourceRoot":"","sources":["../../../src/contacts-v4-extended-field-extended-fields.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,kEAA8D;AAC9D,oFAGiD;AAEjD,2HAA6G;
|
|
1
|
+
{"version":3,"file":"contacts-v4-extended-field-extended-fields.universal.js","sourceRoot":"","sources":["../../../src/contacts-v4-extended-field-extended-fields.universal.ts"],"names":[],"mappings":"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"}
|