@wix/auto_sdk_crm_extended-fields 1.0.13 → 1.0.14
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 +9 -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 +33 -33
- package/build/cjs/src/contacts-v4-extended-field-extended-fields.universal.js +10 -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 +9 -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 +33 -33
- package/build/es/src/contacts-v4-extended-field-extended-fields.universal.js +10 -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 +9 -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 +33 -33
- package/build/internal/cjs/src/contacts-v4-extended-field-extended-fields.universal.js +10 -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 +9 -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 +33 -33
- package/build/internal/es/src/contacts-v4-extended-field-extended-fields.universal.js +10 -0
- package/build/internal/es/src/contacts-v4-extended-field-extended-fields.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -295,25 +295,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
295
295
|
updatedEvent?: EntityUpdatedEvent;
|
|
296
296
|
deletedEvent?: EntityDeletedEvent;
|
|
297
297
|
actionEvent?: ActionEvent;
|
|
298
|
-
/**
|
|
299
|
-
* Unique event ID.
|
|
300
|
-
* Allows clients to ignore duplicate webhooks.
|
|
301
|
-
*/
|
|
298
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
302
299
|
id?: string;
|
|
303
300
|
/**
|
|
304
|
-
*
|
|
305
|
-
*
|
|
301
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
302
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
306
303
|
*/
|
|
307
304
|
entityFqdn?: string;
|
|
308
305
|
/**
|
|
309
|
-
*
|
|
310
|
-
*
|
|
311
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
306
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
307
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
312
308
|
*/
|
|
313
309
|
slug?: string;
|
|
314
310
|
/** ID of the entity associated with the event. */
|
|
315
311
|
entityId?: string;
|
|
316
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
312
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
317
313
|
eventTime?: Date | null;
|
|
318
314
|
/**
|
|
319
315
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -323,12 +319,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
323
319
|
/** If present, indicates the action that triggered the event. */
|
|
324
320
|
originatedFrom?: string | null;
|
|
325
321
|
/**
|
|
326
|
-
* A sequence number
|
|
327
|
-
*
|
|
328
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
329
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
330
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
331
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
322
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
323
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
332
324
|
*/
|
|
333
325
|
entityEventSequence?: string | null;
|
|
334
326
|
}
|
|
@@ -356,7 +348,7 @@ export interface EntityUpdatedEvent {
|
|
|
356
348
|
currentEntityAsJson?: string;
|
|
357
349
|
}
|
|
358
350
|
export interface EntityDeletedEvent {
|
|
359
|
-
/** Entity that was deleted */
|
|
351
|
+
/** Entity that was deleted. */
|
|
360
352
|
deletedEntityAsJson?: string | null;
|
|
361
353
|
}
|
|
362
354
|
export interface ActionEvent {
|
|
@@ -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":";;;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;
|
|
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;AA4UD,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"}
|
|
@@ -296,25 +296,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
296
296
|
updatedEvent?: EntityUpdatedEvent;
|
|
297
297
|
deletedEvent?: EntityDeletedEvent;
|
|
298
298
|
actionEvent?: ActionEvent;
|
|
299
|
-
/**
|
|
300
|
-
* Unique event ID.
|
|
301
|
-
* Allows clients to ignore duplicate webhooks.
|
|
302
|
-
*/
|
|
299
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
303
300
|
_id?: string;
|
|
304
301
|
/**
|
|
305
|
-
*
|
|
306
|
-
*
|
|
302
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
303
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
307
304
|
*/
|
|
308
305
|
entityFqdn?: string;
|
|
309
306
|
/**
|
|
310
|
-
*
|
|
311
|
-
*
|
|
312
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
307
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
308
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
313
309
|
*/
|
|
314
310
|
slug?: string;
|
|
315
311
|
/** ID of the entity associated with the event. */
|
|
316
312
|
entityId?: string;
|
|
317
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
313
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
318
314
|
eventTime?: Date | null;
|
|
319
315
|
/**
|
|
320
316
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -324,12 +320,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
324
320
|
/** If present, indicates the action that triggered the event. */
|
|
325
321
|
originatedFrom?: string | null;
|
|
326
322
|
/**
|
|
327
|
-
* A sequence number
|
|
328
|
-
*
|
|
329
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
330
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
331
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
332
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
323
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
324
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
333
325
|
*/
|
|
334
326
|
entityEventSequence?: string | null;
|
|
335
327
|
}
|
|
@@ -355,7 +347,7 @@ export interface EntityUpdatedEvent {
|
|
|
355
347
|
currentEntity?: string;
|
|
356
348
|
}
|
|
357
349
|
export interface EntityDeletedEvent {
|
|
358
|
-
/** Entity that was deleted */
|
|
350
|
+
/** Entity that was deleted. */
|
|
359
351
|
deletedEntity?: string | null;
|
|
360
352
|
}
|
|
361
353
|
export interface ActionEvent {
|
|
@@ -446,25 +438,21 @@ export interface BaseEventMetadata {
|
|
|
446
438
|
identity?: IdentificationData;
|
|
447
439
|
}
|
|
448
440
|
export interface EventMetadata extends BaseEventMetadata {
|
|
449
|
-
/**
|
|
450
|
-
* Unique event ID.
|
|
451
|
-
* Allows clients to ignore duplicate webhooks.
|
|
452
|
-
*/
|
|
441
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
453
442
|
_id?: string;
|
|
454
443
|
/**
|
|
455
|
-
*
|
|
456
|
-
*
|
|
444
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
445
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
457
446
|
*/
|
|
458
447
|
entityFqdn?: string;
|
|
459
448
|
/**
|
|
460
|
-
*
|
|
461
|
-
*
|
|
462
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
449
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
450
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
463
451
|
*/
|
|
464
452
|
slug?: string;
|
|
465
453
|
/** ID of the entity associated with the event. */
|
|
466
454
|
entityId?: string;
|
|
467
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
455
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
468
456
|
eventTime?: Date | null;
|
|
469
457
|
/**
|
|
470
458
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -474,12 +462,8 @@ export interface EventMetadata extends BaseEventMetadata {
|
|
|
474
462
|
/** If present, indicates the action that triggered the event. */
|
|
475
463
|
originatedFrom?: string | null;
|
|
476
464
|
/**
|
|
477
|
-
* A sequence number
|
|
478
|
-
*
|
|
479
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
480
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
481
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
482
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
465
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
466
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
483
467
|
*/
|
|
484
468
|
entityEventSequence?: string | null;
|
|
485
469
|
}
|
|
@@ -489,6 +473,8 @@ export interface ExtendedFieldCreatedEnvelope {
|
|
|
489
473
|
}
|
|
490
474
|
/**
|
|
491
475
|
* Triggered when an extended field is created.
|
|
476
|
+
* @permissionScope Manage Stores
|
|
477
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
492
478
|
* @permissionScope Manage Bookings Services and Settings
|
|
493
479
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
494
480
|
* @permissionScope Manage Events
|
|
@@ -519,6 +505,8 @@ export interface ExtendedFieldDeletedEnvelope {
|
|
|
519
505
|
}
|
|
520
506
|
/**
|
|
521
507
|
* Triggered when an extended field is deleted.
|
|
508
|
+
* @permissionScope Manage Stores
|
|
509
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
522
510
|
* @permissionScope Manage Bookings Services and Settings
|
|
523
511
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
524
512
|
* @permissionScope Manage Events
|
|
@@ -550,6 +538,8 @@ export interface ExtendedFieldUpdatedEnvelope {
|
|
|
550
538
|
}
|
|
551
539
|
/**
|
|
552
540
|
* Triggered when an extended field is updated.
|
|
541
|
+
* @permissionScope Manage Stores
|
|
542
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
553
543
|
* @permissionScope Manage Bookings Services and Settings
|
|
554
544
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
555
545
|
* @permissionScope Manage Events
|
|
@@ -598,6 +588,8 @@ type ExtendedFieldNonNullablePaths = `key` | `displayName` | `dataType` | `field
|
|
|
598
588
|
* @requiredField dataType
|
|
599
589
|
* @requiredField displayName
|
|
600
590
|
* @permissionId CONTACTS_SCHEMA.MODIFY
|
|
591
|
+
* @permissionScope Manage Stores
|
|
592
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
601
593
|
* @permissionScope Manage Contact Extended Fields
|
|
602
594
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
603
595
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -615,6 +607,8 @@ export declare function findOrCreateExtendedField(displayName: string, dataType:
|
|
|
615
607
|
* @requiredField key
|
|
616
608
|
* @param key - null
|
|
617
609
|
* @permissionId CONTACTS_SCHEMA.VIEW
|
|
610
|
+
* @permissionScope Manage Stores
|
|
611
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
618
612
|
* @permissionScope Manage Bookings Services and Settings
|
|
619
613
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
620
614
|
* @permissionScope Manage Events
|
|
@@ -647,6 +641,8 @@ export declare function getExtendedField(key: string): Promise<NonNullablePaths<
|
|
|
647
641
|
* @param key - null
|
|
648
642
|
* @param field - null
|
|
649
643
|
* @permissionId CONTACTS_SCHEMA.MODIFY
|
|
644
|
+
* @permissionScope Manage Stores
|
|
645
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
650
646
|
* @permissionScope Manage Contact Extended Fields
|
|
651
647
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
652
648
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -710,6 +706,8 @@ export interface RenameExtendedField {
|
|
|
710
706
|
* @public
|
|
711
707
|
* @requiredField key
|
|
712
708
|
* @permissionId CONTACTS_SCHEMA.MODIFY
|
|
709
|
+
* @permissionScope Manage Stores
|
|
710
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
713
711
|
* @permissionScope Manage Contact Extended Fields
|
|
714
712
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
715
713
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -734,6 +732,8 @@ export declare function deleteExtendedField(key: string): Promise<void>;
|
|
|
734
732
|
*
|
|
735
733
|
* The following `FieldsQueryBuilder` methods are supported for `queryExtendedFields()`. For a full description of the `Extended Field` object, see the object returned for the `items` property in `FieldsQueryResult`.
|
|
736
734
|
* @public
|
|
735
|
+
* @permissionScope Manage Stores
|
|
736
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
737
737
|
* @permissionScope Manage Bookings Services and Settings
|
|
738
738
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
739
739
|
* @permissionScope Manage Events
|
|
@@ -83,6 +83,8 @@ var WebhookIdentityType;
|
|
|
83
83
|
* @requiredField dataType
|
|
84
84
|
* @requiredField displayName
|
|
85
85
|
* @permissionId CONTACTS_SCHEMA.MODIFY
|
|
86
|
+
* @permissionScope Manage Stores
|
|
87
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
86
88
|
* @permissionScope Manage Contact Extended Fields
|
|
87
89
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
88
90
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -122,6 +124,8 @@ exports.findOrCreateExtendedField = findOrCreateExtendedField;
|
|
|
122
124
|
* @requiredField key
|
|
123
125
|
* @param key - null
|
|
124
126
|
* @permissionId CONTACTS_SCHEMA.VIEW
|
|
127
|
+
* @permissionScope Manage Stores
|
|
128
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
125
129
|
* @permissionScope Manage Bookings Services and Settings
|
|
126
130
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
127
131
|
* @permissionScope Manage Events
|
|
@@ -175,6 +179,8 @@ exports.getExtendedField = getExtendedField;
|
|
|
175
179
|
* @param key - null
|
|
176
180
|
* @param field - null
|
|
177
181
|
* @permissionId CONTACTS_SCHEMA.MODIFY
|
|
182
|
+
* @permissionScope Manage Stores
|
|
183
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
178
184
|
* @permissionScope Manage Contact Extended Fields
|
|
179
185
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
180
186
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -216,6 +222,8 @@ exports.renameExtendedField = renameExtendedField;
|
|
|
216
222
|
* @public
|
|
217
223
|
* @requiredField key
|
|
218
224
|
* @permissionId CONTACTS_SCHEMA.MODIFY
|
|
225
|
+
* @permissionScope Manage Stores
|
|
226
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
219
227
|
* @permissionScope Manage Contact Extended Fields
|
|
220
228
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
221
229
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -260,6 +268,8 @@ exports.deleteExtendedField = deleteExtendedField;
|
|
|
260
268
|
*
|
|
261
269
|
* The following `FieldsQueryBuilder` methods are supported for `queryExtendedFields()`. For a full description of the `Extended Field` object, see the object returned for the `items` property in `FieldsQueryResult`.
|
|
262
270
|
* @public
|
|
271
|
+
* @permissionScope Manage Stores
|
|
272
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
263
273
|
* @permissionScope Manage Bookings Services and Settings
|
|
264
274
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
265
275
|
* @permissionScope Manage Events
|
|
@@ -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;AAiE7G,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;
|
|
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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"}
|
|
@@ -295,25 +295,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
295
295
|
updatedEvent?: EntityUpdatedEvent;
|
|
296
296
|
deletedEvent?: EntityDeletedEvent;
|
|
297
297
|
actionEvent?: ActionEvent;
|
|
298
|
-
/**
|
|
299
|
-
* Unique event ID.
|
|
300
|
-
* Allows clients to ignore duplicate webhooks.
|
|
301
|
-
*/
|
|
298
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
302
299
|
id?: string;
|
|
303
300
|
/**
|
|
304
|
-
*
|
|
305
|
-
*
|
|
301
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
302
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
306
303
|
*/
|
|
307
304
|
entityFqdn?: string;
|
|
308
305
|
/**
|
|
309
|
-
*
|
|
310
|
-
*
|
|
311
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
306
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
307
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
312
308
|
*/
|
|
313
309
|
slug?: string;
|
|
314
310
|
/** ID of the entity associated with the event. */
|
|
315
311
|
entityId?: string;
|
|
316
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
312
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
317
313
|
eventTime?: Date | null;
|
|
318
314
|
/**
|
|
319
315
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -323,12 +319,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
323
319
|
/** If present, indicates the action that triggered the event. */
|
|
324
320
|
originatedFrom?: string | null;
|
|
325
321
|
/**
|
|
326
|
-
* A sequence number
|
|
327
|
-
*
|
|
328
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
329
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
330
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
331
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
322
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
323
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
332
324
|
*/
|
|
333
325
|
entityEventSequence?: string | null;
|
|
334
326
|
}
|
|
@@ -356,7 +348,7 @@ export interface EntityUpdatedEvent {
|
|
|
356
348
|
currentEntityAsJson?: string;
|
|
357
349
|
}
|
|
358
350
|
export interface EntityDeletedEvent {
|
|
359
|
-
/** Entity that was deleted */
|
|
351
|
+
/** Entity that was deleted. */
|
|
360
352
|
deletedEntityAsJson?: string | null;
|
|
361
353
|
}
|
|
362
354
|
export interface ActionEvent {
|
|
@@ -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":"AA8DA,MAAM,CAAN,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,KAAb,aAAa,QASxB;AAED,MAAM,CAAN,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,2HAA2H;IAC3H,8BAAiB,CAAA;IACjB,+FAA+F;IAC/F,0CAA6B,CAAA;AAC/B,CAAC,EALW,SAAS,KAAT,SAAS,QAKpB;AAuCD,MAAM,CAAN,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,+BAA+B;IAC/B,wBAAW,CAAA;IACX,gCAAgC;IAChC,0BAAa,CAAA;AACf,CAAC,EALW,SAAS,KAAT,SAAS,QAKpB;
|
|
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,MAAM,CAAN,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,KAAb,aAAa,QASxB;AAED,MAAM,CAAN,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,2HAA2H;IAC3H,8BAAiB,CAAA;IACjB,+FAA+F;IAC/F,0CAA6B,CAAA;AAC/B,CAAC,EALW,SAAS,KAAT,SAAS,QAKpB;AAuCD,MAAM,CAAN,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,+BAA+B;IAC/B,wBAAW,CAAA;IACX,gCAAgC;IAChC,0BAAa,CAAA;AACf,CAAC,EALW,SAAS,KAAT,SAAS,QAKpB;AA4UD,MAAM,CAAN,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,KAAnB,mBAAmB,QAM9B"}
|
|
@@ -296,25 +296,21 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
296
296
|
updatedEvent?: EntityUpdatedEvent;
|
|
297
297
|
deletedEvent?: EntityDeletedEvent;
|
|
298
298
|
actionEvent?: ActionEvent;
|
|
299
|
-
/**
|
|
300
|
-
* Unique event ID.
|
|
301
|
-
* Allows clients to ignore duplicate webhooks.
|
|
302
|
-
*/
|
|
299
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
303
300
|
_id?: string;
|
|
304
301
|
/**
|
|
305
|
-
*
|
|
306
|
-
*
|
|
302
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
303
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
307
304
|
*/
|
|
308
305
|
entityFqdn?: string;
|
|
309
306
|
/**
|
|
310
|
-
*
|
|
311
|
-
*
|
|
312
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
307
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
308
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
313
309
|
*/
|
|
314
310
|
slug?: string;
|
|
315
311
|
/** ID of the entity associated with the event. */
|
|
316
312
|
entityId?: string;
|
|
317
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
313
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
318
314
|
eventTime?: Date | null;
|
|
319
315
|
/**
|
|
320
316
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -324,12 +320,8 @@ export interface DomainEvent extends DomainEventBodyOneOf {
|
|
|
324
320
|
/** If present, indicates the action that triggered the event. */
|
|
325
321
|
originatedFrom?: string | null;
|
|
326
322
|
/**
|
|
327
|
-
* A sequence number
|
|
328
|
-
*
|
|
329
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
330
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
331
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
332
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
323
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
324
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
333
325
|
*/
|
|
334
326
|
entityEventSequence?: string | null;
|
|
335
327
|
}
|
|
@@ -355,7 +347,7 @@ export interface EntityUpdatedEvent {
|
|
|
355
347
|
currentEntity?: string;
|
|
356
348
|
}
|
|
357
349
|
export interface EntityDeletedEvent {
|
|
358
|
-
/** Entity that was deleted */
|
|
350
|
+
/** Entity that was deleted. */
|
|
359
351
|
deletedEntity?: string | null;
|
|
360
352
|
}
|
|
361
353
|
export interface ActionEvent {
|
|
@@ -446,25 +438,21 @@ export interface BaseEventMetadata {
|
|
|
446
438
|
identity?: IdentificationData;
|
|
447
439
|
}
|
|
448
440
|
export interface EventMetadata extends BaseEventMetadata {
|
|
449
|
-
/**
|
|
450
|
-
* Unique event ID.
|
|
451
|
-
* Allows clients to ignore duplicate webhooks.
|
|
452
|
-
*/
|
|
441
|
+
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
453
442
|
_id?: string;
|
|
454
443
|
/**
|
|
455
|
-
*
|
|
456
|
-
*
|
|
444
|
+
* Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.
|
|
445
|
+
* For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
|
|
457
446
|
*/
|
|
458
447
|
entityFqdn?: string;
|
|
459
448
|
/**
|
|
460
|
-
*
|
|
461
|
-
*
|
|
462
|
-
* Example: created/updated/deleted/started/completed/email_opened
|
|
449
|
+
* Event action name, placed at the top level to make it easier for users to dispatch messages.
|
|
450
|
+
* For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
|
|
463
451
|
*/
|
|
464
452
|
slug?: string;
|
|
465
453
|
/** ID of the entity associated with the event. */
|
|
466
454
|
entityId?: string;
|
|
467
|
-
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example
|
|
455
|
+
/** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */
|
|
468
456
|
eventTime?: Date | null;
|
|
469
457
|
/**
|
|
470
458
|
* Whether the event was triggered as a result of a privacy regulation application
|
|
@@ -474,12 +462,8 @@ export interface EventMetadata extends BaseEventMetadata {
|
|
|
474
462
|
/** If present, indicates the action that triggered the event. */
|
|
475
463
|
originatedFrom?: string | null;
|
|
476
464
|
/**
|
|
477
|
-
* A sequence number
|
|
478
|
-
*
|
|
479
|
-
* it is guaranteed that the sequence number of the second update is strictly higher than the first.
|
|
480
|
-
* As the consumer, you can use this value to ensure that you handle messages in the correct order.
|
|
481
|
-
* To do so, you will need to persist this number on your end, and compare the sequence number from the
|
|
482
|
-
* message against the one you have stored. Given that the stored number is higher, you should ignore the message.
|
|
465
|
+
* A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.
|
|
466
|
+
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
483
467
|
*/
|
|
484
468
|
entityEventSequence?: string | null;
|
|
485
469
|
}
|
|
@@ -489,6 +473,8 @@ export interface ExtendedFieldCreatedEnvelope {
|
|
|
489
473
|
}
|
|
490
474
|
/**
|
|
491
475
|
* Triggered when an extended field is created.
|
|
476
|
+
* @permissionScope Manage Stores
|
|
477
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
492
478
|
* @permissionScope Manage Bookings Services and Settings
|
|
493
479
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
494
480
|
* @permissionScope Manage Events
|
|
@@ -519,6 +505,8 @@ export interface ExtendedFieldDeletedEnvelope {
|
|
|
519
505
|
}
|
|
520
506
|
/**
|
|
521
507
|
* Triggered when an extended field is deleted.
|
|
508
|
+
* @permissionScope Manage Stores
|
|
509
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
522
510
|
* @permissionScope Manage Bookings Services and Settings
|
|
523
511
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
524
512
|
* @permissionScope Manage Events
|
|
@@ -550,6 +538,8 @@ export interface ExtendedFieldUpdatedEnvelope {
|
|
|
550
538
|
}
|
|
551
539
|
/**
|
|
552
540
|
* Triggered when an extended field is updated.
|
|
541
|
+
* @permissionScope Manage Stores
|
|
542
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
553
543
|
* @permissionScope Manage Bookings Services and Settings
|
|
554
544
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
555
545
|
* @permissionScope Manage Events
|
|
@@ -598,6 +588,8 @@ type ExtendedFieldNonNullablePaths = `key` | `displayName` | `dataType` | `field
|
|
|
598
588
|
* @requiredField dataType
|
|
599
589
|
* @requiredField displayName
|
|
600
590
|
* @permissionId CONTACTS_SCHEMA.MODIFY
|
|
591
|
+
* @permissionScope Manage Stores
|
|
592
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
601
593
|
* @permissionScope Manage Contact Extended Fields
|
|
602
594
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
603
595
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -615,6 +607,8 @@ export declare function findOrCreateExtendedField(displayName: string, dataType:
|
|
|
615
607
|
* @requiredField key
|
|
616
608
|
* @param key - null
|
|
617
609
|
* @permissionId CONTACTS_SCHEMA.VIEW
|
|
610
|
+
* @permissionScope Manage Stores
|
|
611
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
618
612
|
* @permissionScope Manage Bookings Services and Settings
|
|
619
613
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
620
614
|
* @permissionScope Manage Events
|
|
@@ -647,6 +641,8 @@ export declare function getExtendedField(key: string): Promise<NonNullablePaths<
|
|
|
647
641
|
* @param key - null
|
|
648
642
|
* @param field - null
|
|
649
643
|
* @permissionId CONTACTS_SCHEMA.MODIFY
|
|
644
|
+
* @permissionScope Manage Stores
|
|
645
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
650
646
|
* @permissionScope Manage Contact Extended Fields
|
|
651
647
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
652
648
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -710,6 +706,8 @@ export interface RenameExtendedField {
|
|
|
710
706
|
* @public
|
|
711
707
|
* @requiredField key
|
|
712
708
|
* @permissionId CONTACTS_SCHEMA.MODIFY
|
|
709
|
+
* @permissionScope Manage Stores
|
|
710
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
713
711
|
* @permissionScope Manage Contact Extended Fields
|
|
714
712
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
715
713
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -734,6 +732,8 @@ export declare function deleteExtendedField(key: string): Promise<void>;
|
|
|
734
732
|
*
|
|
735
733
|
* The following `FieldsQueryBuilder` methods are supported for `queryExtendedFields()`. For a full description of the `Extended Field` object, see the object returned for the `items` property in `FieldsQueryResult`.
|
|
736
734
|
* @public
|
|
735
|
+
* @permissionScope Manage Stores
|
|
736
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
737
737
|
* @permissionScope Manage Bookings Services and Settings
|
|
738
738
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
739
739
|
* @permissionScope Manage Events
|
|
@@ -57,6 +57,8 @@ export var WebhookIdentityType;
|
|
|
57
57
|
* @requiredField dataType
|
|
58
58
|
* @requiredField displayName
|
|
59
59
|
* @permissionId CONTACTS_SCHEMA.MODIFY
|
|
60
|
+
* @permissionScope Manage Stores
|
|
61
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
60
62
|
* @permissionScope Manage Contact Extended Fields
|
|
61
63
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
62
64
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -95,6 +97,8 @@ export async function findOrCreateExtendedField(displayName, dataType) {
|
|
|
95
97
|
* @requiredField key
|
|
96
98
|
* @param key - null
|
|
97
99
|
* @permissionId CONTACTS_SCHEMA.VIEW
|
|
100
|
+
* @permissionScope Manage Stores
|
|
101
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
98
102
|
* @permissionScope Manage Bookings Services and Settings
|
|
99
103
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
100
104
|
* @permissionScope Manage Events
|
|
@@ -147,6 +151,8 @@ export async function getExtendedField(key) {
|
|
|
147
151
|
* @param key - null
|
|
148
152
|
* @param field - null
|
|
149
153
|
* @permissionId CONTACTS_SCHEMA.MODIFY
|
|
154
|
+
* @permissionScope Manage Stores
|
|
155
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
150
156
|
* @permissionScope Manage Contact Extended Fields
|
|
151
157
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
152
158
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -187,6 +193,8 @@ export async function renameExtendedField(key, field) {
|
|
|
187
193
|
* @public
|
|
188
194
|
* @requiredField key
|
|
189
195
|
* @permissionId CONTACTS_SCHEMA.MODIFY
|
|
196
|
+
* @permissionScope Manage Stores
|
|
197
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
190
198
|
* @permissionScope Manage Contact Extended Fields
|
|
191
199
|
* @permissionScopeId SCOPE.DC-CONTACTS.MANAGE-EX-FIELDS
|
|
192
200
|
* @permissionScope Manage Members and Contacts - all permissions
|
|
@@ -230,6 +238,8 @@ export async function deleteExtendedField(key) {
|
|
|
230
238
|
*
|
|
231
239
|
* The following `FieldsQueryBuilder` methods are supported for `queryExtendedFields()`. For a full description of the `Extended Field` object, see the object returned for the `items` property in `FieldsQueryResult`.
|
|
232
240
|
* @public
|
|
241
|
+
* @permissionScope Manage Stores
|
|
242
|
+
* @permissionScopeId SCOPE.STORES.MANAGE-STORES
|
|
233
243
|
* @permissionScope Manage Bookings Services and Settings
|
|
234
244
|
* @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION
|
|
235
245
|
* @permissionScope Manage Events
|
|
@@ -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,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAC9D,OAAO,EACL,qCAAqC,EACrC,uCAAuC,GACxC,MAAM,yCAAyC,CAAC;AAEjD,OAAO,KAAK,oCAAoC,MAAM,sDAAsD,CAAC;AAiE7G,MAAM,CAAN,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,KAAb,aAAa,QASxB;AAED,MAAM,CAAN,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,2HAA2H;IAC3H,8BAAiB,CAAA;IACjB,+FAA+F;IAC/F,0CAA6B,CAAA;AAC/B,CAAC,EALW,SAAS,KAAT,SAAS,QAKpB;AAuCD,MAAM,CAAN,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,+BAA+B;IAC/B,wBAAW,CAAA;IACX,gCAAgC;IAChC,0BAAa,CAAA;AACf,CAAC,EALW,SAAS,KAAT,SAAS,QAKpB;
|
|
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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"}
|