@wix/auto_sdk_crm_contacts 1.0.1300 → 1.0.1301

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.
@@ -2,9 +2,7 @@ import { HttpClient, NonNullablePaths, EventDefinition, MaybeContext, BuildRESTF
2
2
  import { ContactInfo, CreateContactOptions, CreateContactResponse, CreateContactApplicationErrors, UpdateContactOptions, UpdateContactResponse, UpdateContactApplicationErrors, MergeContactsOptions, MergeContactsResponse, MergeContactsApplicationErrors, PreviewMergeContactsOptions, PreviewMergeContactsResponse, PreviewMergeContactsApplicationErrors, DeleteContactApplicationErrors, LabelContactResponse, LabelContactApplicationErrors, UnlabelContactResponse, UnlabelContactApplicationErrors, ListContactsOptions, ListContactsResponse, ListContactsApplicationErrors, ListFacetsOptions, ListFacetsResponse, QueryFacetsOptions, QueryFacetsResponse, BulkDeleteContactsOptions, BulkDeleteContactsResponse, BulkDeleteContactsApplicationErrors, BulkUpdateContactsOptions, BulkUpdateContactsResponse, BulkLabelAndUnlabelContactsOptions, BulkLabelAndUnlabelContactsResponse, BulkLabelAndUnlabelContactsApplicationErrors, GetContactOptions, Contact, GetContactApplicationErrors, ContactCreatedEnvelope, ContactDeletedEnvelope, ContactMergedEnvelope, ContactUpdatedEnvelope, ContactQuery, QueryContactsOptions, typedQueryContacts, ContactsQueryBuilder } from './index.typings.js';
3
3
  export { AccountInfo, AccountInfoMetadata, Action, ActionEvent, ActionWithLiterals, ActivityIcon, Address, AddressLocation, AddressStreetOneOf, AddressTag, AddressTagWithLiterals, ApplicationError, AssigneesWrapper, BaseEventMetadata, BulkActionMetadata, BulkAddSegmentToContactsRequest, BulkAddSegmentToContactsResponse, BulkDeleteContactsRequest, BulkLabelAndUnlabelContactsRequest, BulkRemoveSegmentFromContactsRequest, BulkRemoveSegmentFromContactsResponse, BulkUpdateContactsRequest, BulkUpsertContactsRequest, BulkUpsertContactsResponse, BulkUpsertContactsResponseMetadata, CommonQueryWithEntityContext, ContactActivity, ContactActivityType, ContactActivityTypeWithLiterals, ContactAddedToSegment, ContactAddress, ContactAddressesWrapper, ContactChanged, ContactEmail, ContactEmailSubscriptionUpdated, ContactEmailsWrapper, ContactFieldSet, ContactFieldSetWithLiterals, ContactMerged, ContactName, ContactPhone, ContactPhoneSubscriptionUpdated, ContactPhonesWrapper, ContactPicture, ContactPrimaryInfoUpdated, ContactQuerySpec, ContactRemovedFromSegment, ContactSource, ContactSourceType, ContactSourceTypeWithLiterals, ContactSubmitted, ContactsFacet, ContactsFacetType, ContactsFacetTypeWithLiterals, ContactsQueryResult, CountContactsRequest, CountContactsResponse, CreateContactRequest, CursorPaging, CursorPagingMetadata, Cursors, DeleteContactRequest, DeleteContactResponse, DomainEvent, DomainEventBodyOneOf, DuplicateContactExists, EmailDeliverabilityStatus, EmailDeliverabilityStatusWithLiterals, EmailTag, EmailTagWithLiterals, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, Error, EventMetadata, ExtendedFieldsWrapper, GeneratePictureUploadUrlRequest, GeneratePictureUploadUrlResponse, GetContactRequest, GetContactResponse, GetContactResponseType, GetContactResponseTypeWithLiterals, GroupInfo, IdentificationData, IdentificationDataIdOneOf, ImageProvider, ImageProviderWithLiterals, Item, ItemMetadata, LabelAndUnlabelContactRequest, LabelAndUnlabelContactResponse, LabelContactRequest, LabelsWrapper, LastActivityUpdate, ListContactIdsBySegmentRequest, ListContactIdsBySegmentResponse, ListContactsRequest, ListFacetsRequest, LocationsWrapper, MemberInfo, MemberStatus, MemberStatusWithLiterals, MergeContactsRequest, MessageEnvelope, Metadata, Mode, ModeWithLiterals, Paging, PagingMetadata, PhoneDeliverabilityStatus, PhoneDeliverabilityStatusWithLiterals, PhoneTag, PhoneTagWithLiterals, PreviewMergeContactsRequest, PrimaryContactInfo, PrimaryEmail, PrimaryPhone, PrimarySubscriptionStatus, PrivacyStatus, PrivacyStatusWithLiterals, ProfileInfo, Query, QueryContactsApplicationErrors, QueryContactsRequest, QueryContactsResponse, QueryFacetsRequest, RestoreInfo, Role, RoleWithLiterals, Search, SearchContactsRequest, SearchContactsResponse, SearchDetails, SearchPagingMethodOneOf, SegmentsWrapper, SessionInfo, SortOrder, SortOrderWithLiterals, Sorting, StreetAddress, Subdivision, SubdivisionType, SubdivisionTypeWithLiterals, SubmitOperation, SubmitOperationWithLiterals, SubscriptionStatus, SubscriptionStatusWithLiterals, SyncSubmitContactRequest, SyncSubmitContactResponse, UnlabelContactRequest, UpdateContactRequest, UpsertContactRequest, UpsertContactResponse, UpsertContactResponseAction, UpsertContactResponseActionWithLiterals, UserInfo, WebhookIdentityType, WebhookIdentityTypeWithLiterals, utils } from './index.typings.js';
4
4
 
5
- declare function createContact$1(httpClient: HttpClient, __options?: {
6
- validateRequestSchema?: boolean;
7
- }): CreateContactSignature;
5
+ declare function createContact$1(httpClient: HttpClient): CreateContactSignature;
8
6
  interface CreateContactSignature {
9
7
  /**
10
8
  * Creates a new contact.
@@ -24,9 +22,7 @@ interface CreateContactSignature {
24
22
  __applicationErrorsType?: CreateContactApplicationErrors;
25
23
  }>;
26
24
  }
27
- declare function updateContact$1(httpClient: HttpClient, __options?: {
28
- validateRequestSchema?: boolean;
29
- }): UpdateContactSignature;
25
+ declare function updateContact$1(httpClient: HttpClient): UpdateContactSignature;
30
26
  interface UpdateContactSignature {
31
27
  /**
32
28
  * Updates a contact.
@@ -53,9 +49,7 @@ interface UpdateContactSignature {
53
49
  __applicationErrorsType?: UpdateContactApplicationErrors;
54
50
  }>;
55
51
  }
56
- declare function mergeContacts$1(httpClient: HttpClient, __options?: {
57
- validateRequestSchema?: boolean;
58
- }): MergeContactsSignature;
52
+ declare function mergeContacts$1(httpClient: HttpClient): MergeContactsSignature;
59
53
  interface MergeContactsSignature {
60
54
  /**
61
55
  * Merges source contacts into a target contact.
@@ -98,9 +92,7 @@ interface MergeContactsSignature {
98
92
  __applicationErrorsType?: MergeContactsApplicationErrors;
99
93
  }>;
100
94
  }
101
- declare function previewMergeContacts$1(httpClient: HttpClient, __options?: {
102
- validateRequestSchema?: boolean;
103
- }): PreviewMergeContactsSignature;
95
+ declare function previewMergeContacts$1(httpClient: HttpClient): PreviewMergeContactsSignature;
104
96
  interface PreviewMergeContactsSignature {
105
97
  /**
106
98
  * Previews merging source contacts into a target contact.
@@ -117,9 +109,7 @@ interface PreviewMergeContactsSignature {
117
109
  __applicationErrorsType?: PreviewMergeContactsApplicationErrors;
118
110
  }>;
119
111
  }
120
- declare function deleteContact$1(httpClient: HttpClient, __options?: {
121
- validateRequestSchema?: boolean;
122
- }): DeleteContactSignature;
112
+ declare function deleteContact$1(httpClient: HttpClient): DeleteContactSignature;
123
113
  interface DeleteContactSignature {
124
114
  /**
125
115
  * Deletes a contact.
@@ -137,9 +127,7 @@ interface DeleteContactSignature {
137
127
  __applicationErrorsType?: DeleteContactApplicationErrors;
138
128
  }>;
139
129
  }
140
- declare function labelContact$1(httpClient: HttpClient, __options?: {
141
- validateRequestSchema?: boolean;
142
- }): LabelContactSignature;
130
+ declare function labelContact$1(httpClient: HttpClient): LabelContactSignature;
143
131
  interface LabelContactSignature {
144
132
  /**
145
133
  * Adds labels to a contact.
@@ -159,9 +147,7 @@ interface LabelContactSignature {
159
147
  __applicationErrorsType?: LabelContactApplicationErrors;
160
148
  }>;
161
149
  }
162
- declare function unlabelContact$1(httpClient: HttpClient, __options?: {
163
- validateRequestSchema?: boolean;
164
- }): UnlabelContactSignature;
150
+ declare function unlabelContact$1(httpClient: HttpClient): UnlabelContactSignature;
165
151
  interface UnlabelContactSignature {
166
152
  /**
167
153
  * Removes labels from a contact.
@@ -180,9 +166,7 @@ interface UnlabelContactSignature {
180
166
  __applicationErrorsType?: UnlabelContactApplicationErrors;
181
167
  }>;
182
168
  }
183
- declare function listContacts$1(httpClient: HttpClient, __options?: {
184
- validateRequestSchema?: boolean;
185
- }): ListContactsSignature;
169
+ declare function listContacts$1(httpClient: HttpClient): ListContactsSignature;
186
170
  interface ListContactsSignature {
187
171
  /**
188
172
  * Retrieves a list of up to 1,000 contacts per request.
@@ -193,9 +177,7 @@ interface ListContactsSignature {
193
177
  __applicationErrorsType?: ListContactsApplicationErrors;
194
178
  }>;
195
179
  }
196
- declare function listFacets$1(httpClient: HttpClient, __options?: {
197
- validateRequestSchema?: boolean;
198
- }): ListFacetsSignature;
180
+ declare function listFacets$1(httpClient: HttpClient): ListFacetsSignature;
199
181
  interface ListFacetsSignature {
200
182
  /**
201
183
  * Lists facets from the site’s contact list.
@@ -204,9 +186,7 @@ interface ListFacetsSignature {
204
186
  */
205
187
  (options?: ListFacetsOptions): Promise<NonNullablePaths<ListFacetsResponse, `facets` | `facets.${number}.facetType`, 4>>;
206
188
  }
207
- declare function queryFacets$1(httpClient: HttpClient, __options?: {
208
- validateRequestSchema?: boolean;
209
- }): QueryFacetsSignature;
189
+ declare function queryFacets$1(httpClient: HttpClient): QueryFacetsSignature;
210
190
  interface QueryFacetsSignature {
211
191
  /**
212
192
  * Retrieves facets from the site’s contact list by filter.
@@ -215,9 +195,7 @@ interface QueryFacetsSignature {
215
195
  */
216
196
  (options?: QueryFacetsOptions): Promise<NonNullablePaths<QueryFacetsResponse, `facets` | `facets.${number}.facetType`, 4>>;
217
197
  }
218
- declare function bulkDeleteContacts$1(httpClient: HttpClient, __options?: {
219
- validateRequestSchema?: boolean;
220
- }): BulkDeleteContactsSignature;
198
+ declare function bulkDeleteContacts$1(httpClient: HttpClient): BulkDeleteContactsSignature;
221
199
  interface BulkDeleteContactsSignature {
222
200
  /**
223
201
  * Deletes multiple contacts.
@@ -242,9 +220,7 @@ interface BulkDeleteContactsSignature {
242
220
  __applicationErrorsType?: BulkDeleteContactsApplicationErrors;
243
221
  }>;
244
222
  }
245
- declare function bulkUpdateContacts$1(httpClient: HttpClient, __options?: {
246
- validateRequestSchema?: boolean;
247
- }): BulkUpdateContactsSignature;
223
+ declare function bulkUpdateContacts$1(httpClient: HttpClient): BulkUpdateContactsSignature;
248
224
  interface BulkUpdateContactsSignature {
249
225
  /**
250
226
  * Updates the specified properties for multiple contacts.
@@ -261,9 +237,7 @@ interface BulkUpdateContactsSignature {
261
237
  */
262
238
  (options?: BulkUpdateContactsOptions): Promise<NonNullablePaths<BulkUpdateContactsResponse, `jobId`, 2>>;
263
239
  }
264
- declare function bulkLabelAndUnlabelContacts$1(httpClient: HttpClient, __options?: {
265
- validateRequestSchema?: boolean;
266
- }): BulkLabelAndUnlabelContactsSignature;
240
+ declare function bulkLabelAndUnlabelContacts$1(httpClient: HttpClient): BulkLabelAndUnlabelContactsSignature;
267
241
  interface BulkLabelAndUnlabelContactsSignature {
268
242
  /**
269
243
  * Adds and removes labels from multiple contacts.
@@ -282,9 +256,7 @@ interface BulkLabelAndUnlabelContactsSignature {
282
256
  __applicationErrorsType?: BulkLabelAndUnlabelContactsApplicationErrors;
283
257
  }>;
284
258
  }
285
- declare function getContact$1(httpClient: HttpClient, __options?: {
286
- validateRequestSchema?: boolean;
287
- }): GetContactSignature;
259
+ declare function getContact$1(httpClient: HttpClient): GetContactSignature;
288
260
  interface GetContactSignature {
289
261
  /**
290
262
  * Retrieves a contact.