@wix/crm 1.0.0
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/index.d.ts +1 -0
- package/build/cjs/index.js +24 -0
- package/build/cjs/index.js.map +1 -0
- package/build/cjs/src/contacts-v4-submit-contact.http.d.ts +9 -0
- package/build/cjs/src/contacts-v4-submit-contact.http.js +104 -0
- package/build/cjs/src/contacts-v4-submit-contact.http.js.map +1 -0
- package/build/cjs/src/contacts-v4-submit-contact.public.d.ts +8 -0
- package/build/cjs/src/contacts-v4-submit-contact.public.js +22 -0
- package/build/cjs/src/contacts-v4-submit-contact.public.js.map +1 -0
- package/build/cjs/src/contacts-v4-submit-contact.types.d.ts +514 -0
- package/build/cjs/src/contacts-v4-submit-contact.types.js +159 -0
- package/build/cjs/src/contacts-v4-submit-contact.types.js.map +1 -0
- package/build/cjs/src/contacts-v4-submit-contact.universal.d.ts +532 -0
- package/build/cjs/src/contacts-v4-submit-contact.universal.js +274 -0
- package/build/cjs/src/contacts-v4-submit-contact.universal.js.map +1 -0
- package/build/es/index.d.ts +1 -0
- package/build/es/index.js +2 -0
- package/build/es/index.js.map +1 -0
- package/build/es/src/contacts-v4-submit-contact.http.d.ts +9 -0
- package/build/es/src/contacts-v4-submit-contact.http.js +100 -0
- package/build/es/src/contacts-v4-submit-contact.http.js.map +1 -0
- package/build/es/src/contacts-v4-submit-contact.public.d.ts +8 -0
- package/build/es/src/contacts-v4-submit-contact.public.js +9 -0
- package/build/es/src/contacts-v4-submit-contact.public.js.map +1 -0
- package/build/es/src/contacts-v4-submit-contact.types.d.ts +514 -0
- package/build/es/src/contacts-v4-submit-contact.types.js +156 -0
- package/build/es/src/contacts-v4-submit-contact.types.js.map +1 -0
- package/build/es/src/contacts-v4-submit-contact.universal.d.ts +532 -0
- package/build/es/src/contacts-v4-submit-contact.universal.js +251 -0
- package/build/es/src/contacts-v4-submit-contact.universal.js.map +1 -0
- package/package.json +37 -0
|
@@ -0,0 +1,514 @@
|
|
|
1
|
+
/** Dummy message for fqdn validation */
|
|
2
|
+
export interface SubmitContact {
|
|
3
|
+
/** Submit Contact Id */
|
|
4
|
+
id?: string | null;
|
|
5
|
+
}
|
|
6
|
+
export interface SubmitContactRequest {
|
|
7
|
+
/**
|
|
8
|
+
* Contact's information.
|
|
9
|
+
* To reconcile with an existing contact,
|
|
10
|
+
* a phone or email must be provided,
|
|
11
|
+
* or the current session identity must be attached to a contact or member.
|
|
12
|
+
*
|
|
13
|
+
* If no existing contact can be found,
|
|
14
|
+
* a new contact is created with the specified information.
|
|
15
|
+
*
|
|
16
|
+
* <!--ONLY:REST-->
|
|
17
|
+
* Required if there's no contextual identity or given `contactId`.
|
|
18
|
+
* <!--END:ONLY:REST-->
|
|
19
|
+
*/
|
|
20
|
+
info?: ContactInfo;
|
|
21
|
+
/** Pass through data, to be posted on Contact Submitted Domain Event (optional). */
|
|
22
|
+
passThroughData?: string | null;
|
|
23
|
+
/**
|
|
24
|
+
* Existing Contact ID (optional).
|
|
25
|
+
* Requires permission `CONTACTS.SUBMIT_WITH_OVERRIDES`
|
|
26
|
+
*/
|
|
27
|
+
contactId?: string | null;
|
|
28
|
+
}
|
|
29
|
+
export interface ContactInfo {
|
|
30
|
+
/** Contact's first and last name. */
|
|
31
|
+
name?: ContactName;
|
|
32
|
+
/** Contact's email addresses. */
|
|
33
|
+
emails?: ContactEmailsWrapper;
|
|
34
|
+
/** Contact's phone numbers. */
|
|
35
|
+
phones?: ContactPhonesWrapper;
|
|
36
|
+
/** Contact's street addresses. */
|
|
37
|
+
addresses?: ContactAddressesWrapper;
|
|
38
|
+
/** Contact's company name. */
|
|
39
|
+
company?: string | null;
|
|
40
|
+
/**
|
|
41
|
+
* Contact's job title.
|
|
42
|
+
* Corresponds to the **Position** field in the Dashboard.
|
|
43
|
+
*/
|
|
44
|
+
jobTitle?: string | null;
|
|
45
|
+
/** Birth date in `YYYY-MM-DD` format. For example, `2020-03-15`. */
|
|
46
|
+
birthdate?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Locale in
|
|
49
|
+
* [IETF BCP 47 language tag](https://en.wikipedia.org/wiki/IETF_language_tag) format.
|
|
50
|
+
* Typically, this is a lowercase 2-letter language code,
|
|
51
|
+
* followed by a hyphen, followed by an uppercase 2-letter country code.
|
|
52
|
+
* For example, `en-US` for U.S. English, and `de-DE` for Germany German.
|
|
53
|
+
*/
|
|
54
|
+
locale?: string | null;
|
|
55
|
+
/**
|
|
56
|
+
* List of contact's labels.
|
|
57
|
+
* Labels are used to organize contacts.
|
|
58
|
+
* When setting the `labelKeys` property,
|
|
59
|
+
* only labels that already exist in the site's Contacts List can be used.
|
|
60
|
+
* Labels can be added and removed using
|
|
61
|
+
* [Label Contact](https://dev.wix.com/api/rest/contacts/contacts/contacts-v4/label-contact) and
|
|
62
|
+
* [Unlabel Contact](https://dev.wix.com/api/rest/contacts/contacts/contacts-v4/unlabel-contact),
|
|
63
|
+
* respectively.
|
|
64
|
+
*
|
|
65
|
+
* To view or manage site labels, use the
|
|
66
|
+
* [Labels API](https://dev.wix.com/api/rest/contacts/labels).
|
|
67
|
+
*/
|
|
68
|
+
labelKeys?: LabelsWrapper;
|
|
69
|
+
/**
|
|
70
|
+
* Additional custom fields.
|
|
71
|
+
* This includes fields managed by Wix, by 3rd-party apps, and by the site.
|
|
72
|
+
*
|
|
73
|
+
* Empty fields are not returned.
|
|
74
|
+
*/
|
|
75
|
+
extendedFields?: ExtendedFieldsWrapper;
|
|
76
|
+
/** Contact's profile picture. */
|
|
77
|
+
picture?: ContactPicture;
|
|
78
|
+
}
|
|
79
|
+
export interface ContactName {
|
|
80
|
+
/** Contact's first name. */
|
|
81
|
+
first?: string | null;
|
|
82
|
+
/** Contact's last name. */
|
|
83
|
+
last?: string | null;
|
|
84
|
+
}
|
|
85
|
+
export interface ContactEmailsWrapper {
|
|
86
|
+
/** List of up to 50 email addresses. */
|
|
87
|
+
items?: ContactEmail[];
|
|
88
|
+
}
|
|
89
|
+
export interface ContactEmail {
|
|
90
|
+
/**
|
|
91
|
+
* Email ID.
|
|
92
|
+
* @readonly
|
|
93
|
+
*/
|
|
94
|
+
id?: string | null;
|
|
95
|
+
/**
|
|
96
|
+
* Email type.
|
|
97
|
+
*
|
|
98
|
+
* `UNTAGGED` is shown as "Other" in the Contact List.
|
|
99
|
+
*/
|
|
100
|
+
tag?: EmailTag;
|
|
101
|
+
/** Email address. */
|
|
102
|
+
email?: string;
|
|
103
|
+
/**
|
|
104
|
+
* Indicates whether this is the contact's primary email address.
|
|
105
|
+
* When changing `primary` to `true` for an email,
|
|
106
|
+
* the contact's other emails become `false`.
|
|
107
|
+
*/
|
|
108
|
+
primary?: boolean | null;
|
|
109
|
+
}
|
|
110
|
+
export declare enum EmailTag {
|
|
111
|
+
UNTAGGED = "UNTAGGED",
|
|
112
|
+
MAIN = "MAIN",
|
|
113
|
+
HOME = "HOME",
|
|
114
|
+
WORK = "WORK"
|
|
115
|
+
}
|
|
116
|
+
export interface ContactPhonesWrapper {
|
|
117
|
+
/** List of up to 50 phone numbers. */
|
|
118
|
+
items?: ContactPhone[];
|
|
119
|
+
}
|
|
120
|
+
export interface ContactPhone {
|
|
121
|
+
/**
|
|
122
|
+
* Phone ID.
|
|
123
|
+
* @readonly
|
|
124
|
+
*/
|
|
125
|
+
id?: string | null;
|
|
126
|
+
/**
|
|
127
|
+
* Phone type.
|
|
128
|
+
*
|
|
129
|
+
* `UNTAGGED` is shown as "Other" in the Contact List.
|
|
130
|
+
*/
|
|
131
|
+
tag?: PhoneTag;
|
|
132
|
+
/** [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code. */
|
|
133
|
+
countryCode?: string | null;
|
|
134
|
+
/** Phone number. */
|
|
135
|
+
phone?: string;
|
|
136
|
+
/**
|
|
137
|
+
* [ITU E.164-formatted](https://www.itu.int/rec/T-REC-E.164/)
|
|
138
|
+
* phone number.
|
|
139
|
+
* Automatically generated using `phone` and `countryCode`,
|
|
140
|
+
* as long as both of those values are valid.
|
|
141
|
+
* @readonly
|
|
142
|
+
*/
|
|
143
|
+
e164Phone?: string | null;
|
|
144
|
+
/**
|
|
145
|
+
* Whether this is the contact's primary phone number.
|
|
146
|
+
* When changing `primary` to `true` for a phone,
|
|
147
|
+
* the contact's other phones become `false`.
|
|
148
|
+
*/
|
|
149
|
+
primary?: boolean | null;
|
|
150
|
+
}
|
|
151
|
+
export declare enum PhoneTag {
|
|
152
|
+
UNTAGGED = "UNTAGGED",
|
|
153
|
+
MAIN = "MAIN",
|
|
154
|
+
HOME = "HOME",
|
|
155
|
+
MOBILE = "MOBILE",
|
|
156
|
+
WORK = "WORK",
|
|
157
|
+
FAX = "FAX"
|
|
158
|
+
}
|
|
159
|
+
export interface ContactAddressesWrapper {
|
|
160
|
+
/** List of up to 50 addresses. */
|
|
161
|
+
items?: ContactAddress[];
|
|
162
|
+
}
|
|
163
|
+
export interface ContactAddress {
|
|
164
|
+
/**
|
|
165
|
+
* Street address ID.
|
|
166
|
+
* @readonly
|
|
167
|
+
*/
|
|
168
|
+
id?: string | null;
|
|
169
|
+
/**
|
|
170
|
+
* Address type.
|
|
171
|
+
* `UNTAGGED` is shown as "Other" in the Contact List.
|
|
172
|
+
*/
|
|
173
|
+
tag?: AddressTag;
|
|
174
|
+
/** Street address. */
|
|
175
|
+
address?: Address;
|
|
176
|
+
}
|
|
177
|
+
export declare enum AddressTag {
|
|
178
|
+
UNTAGGED = "UNTAGGED",
|
|
179
|
+
HOME = "HOME",
|
|
180
|
+
WORK = "WORK",
|
|
181
|
+
BILLING = "BILLING",
|
|
182
|
+
SHIPPING = "SHIPPING"
|
|
183
|
+
}
|
|
184
|
+
/** Physical address */
|
|
185
|
+
export interface Address extends AddressStreetOneOf {
|
|
186
|
+
/** Street address object, with number and name in separate fields. */
|
|
187
|
+
streetAddress?: StreetAddress;
|
|
188
|
+
/** Main address line, usually street and number, as free text. */
|
|
189
|
+
addressLine?: string | null;
|
|
190
|
+
/**
|
|
191
|
+
* 2-letter country code in an
|
|
192
|
+
* [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) format.
|
|
193
|
+
*/
|
|
194
|
+
country?: string | null;
|
|
195
|
+
/**
|
|
196
|
+
* Code for a subdivision (such as state, prefecture, or province) in an
|
|
197
|
+
* [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2) format.
|
|
198
|
+
*/
|
|
199
|
+
subdivision?: string | null;
|
|
200
|
+
/** City name. */
|
|
201
|
+
city?: string | null;
|
|
202
|
+
/** Postal or zip code. */
|
|
203
|
+
postalCode?: string | null;
|
|
204
|
+
/**
|
|
205
|
+
* Free text providing more detailed address information,
|
|
206
|
+
* such as apartment, suite, or floor.
|
|
207
|
+
*/
|
|
208
|
+
addressLine2?: string | null;
|
|
209
|
+
}
|
|
210
|
+
/** @oneof */
|
|
211
|
+
export interface AddressStreetOneOf {
|
|
212
|
+
/** Street address object, with number and name in separate fields. */
|
|
213
|
+
streetAddress?: StreetAddress;
|
|
214
|
+
/** Main address line, usually street and number, as free text. */
|
|
215
|
+
addressLine?: string | null;
|
|
216
|
+
}
|
|
217
|
+
export interface StreetAddress {
|
|
218
|
+
/** Street number. */
|
|
219
|
+
number?: string;
|
|
220
|
+
/** Street name. */
|
|
221
|
+
name?: string;
|
|
222
|
+
}
|
|
223
|
+
export interface AddressLocation {
|
|
224
|
+
/** Address's latitude. */
|
|
225
|
+
latitude?: number | null;
|
|
226
|
+
/** Address's longitude. */
|
|
227
|
+
longitude?: number | null;
|
|
228
|
+
}
|
|
229
|
+
export interface Subdivision {
|
|
230
|
+
/** subdivision short code */
|
|
231
|
+
code?: string;
|
|
232
|
+
/** Full subdivision name. */
|
|
233
|
+
name?: string;
|
|
234
|
+
}
|
|
235
|
+
export declare enum SubdivisionType {
|
|
236
|
+
UNKNOWN_SUBDIVISION_TYPE = "UNKNOWN_SUBDIVISION_TYPE",
|
|
237
|
+
/** state */
|
|
238
|
+
ADMINISTRATIVE_AREA_LEVEL_1 = "ADMINISTRATIVE_AREA_LEVEL_1",
|
|
239
|
+
/** county */
|
|
240
|
+
ADMINISTRATIVE_AREA_LEVEL_2 = "ADMINISTRATIVE_AREA_LEVEL_2",
|
|
241
|
+
/** cities/towns */
|
|
242
|
+
ADMINISTRATIVE_AREA_LEVEL_3 = "ADMINISTRATIVE_AREA_LEVEL_3",
|
|
243
|
+
/** neighborhood/quarter */
|
|
244
|
+
ADMINISTRATIVE_AREA_LEVEL_4 = "ADMINISTRATIVE_AREA_LEVEL_4",
|
|
245
|
+
/** street/block */
|
|
246
|
+
ADMINISTRATIVE_AREA_LEVEL_5 = "ADMINISTRATIVE_AREA_LEVEL_5",
|
|
247
|
+
/** (ADMINISTRATIVE_AREA_LEVEL_0) indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
|
|
248
|
+
COUNTRY = "COUNTRY"
|
|
249
|
+
}
|
|
250
|
+
export interface AssigneesWrapper {
|
|
251
|
+
/** List of site contributor user IDs. */
|
|
252
|
+
items?: string[];
|
|
253
|
+
}
|
|
254
|
+
export interface LabelsWrapper {
|
|
255
|
+
/**
|
|
256
|
+
* List of contact label keys.
|
|
257
|
+
* [Contact labels](https://support.wix.com/en/article/adding-labels-to-contacts-in-your-contact-list)
|
|
258
|
+
* help categorize contacts.
|
|
259
|
+
*
|
|
260
|
+
* Label keys must exist to be added to the contact.
|
|
261
|
+
* Contact labels can be created or retrieved with
|
|
262
|
+
* [Find or Create Label](https://dev.wix.com/api/rest/contacts/labels/find-or-create-label)
|
|
263
|
+
* or
|
|
264
|
+
* [List Labels](https://dev.wix.com/api/rest/contacts/labels/list-labels)
|
|
265
|
+
*/
|
|
266
|
+
items?: string[];
|
|
267
|
+
}
|
|
268
|
+
export interface ExtendedFieldsWrapper {
|
|
269
|
+
/**
|
|
270
|
+
* Contact's extended fields,
|
|
271
|
+
* where each key is the field key,
|
|
272
|
+
* and each value is the field's value for the contact.
|
|
273
|
+
*
|
|
274
|
+
* To view and manage extended fields, use the
|
|
275
|
+
* [Extended Fields API](https://dev.wix.com/api/rest/contacts/extended-fields).
|
|
276
|
+
*/
|
|
277
|
+
items?: Record<string, any>;
|
|
278
|
+
}
|
|
279
|
+
export interface LocationsWrapper {
|
|
280
|
+
/** List of location ids. */
|
|
281
|
+
items?: string[];
|
|
282
|
+
}
|
|
283
|
+
/** TEST contact picture description */
|
|
284
|
+
export interface ContactPicture {
|
|
285
|
+
/**
|
|
286
|
+
* Image.
|
|
287
|
+
* This can contain an image URL or a Wix Media image ID.
|
|
288
|
+
*/
|
|
289
|
+
image?: Image;
|
|
290
|
+
}
|
|
291
|
+
export interface Image {
|
|
292
|
+
/**
|
|
293
|
+
* WixMedia image ID.
|
|
294
|
+
* This property is written by Wix when an image is uploaded to the Wix Media Manager.
|
|
295
|
+
*/
|
|
296
|
+
id?: string;
|
|
297
|
+
/** Image source: Either a Media Manager URL or external URL. */
|
|
298
|
+
url?: string;
|
|
299
|
+
/** Height of the original image. */
|
|
300
|
+
height?: number;
|
|
301
|
+
/** Width of the original image. */
|
|
302
|
+
width?: number;
|
|
303
|
+
/** Image alt text. Optional. */
|
|
304
|
+
altText?: string | null;
|
|
305
|
+
/**
|
|
306
|
+
* Image URL expiration date (when relevant). Optional
|
|
307
|
+
* @readonly
|
|
308
|
+
*/
|
|
309
|
+
urlExpirationDate?: Date;
|
|
310
|
+
}
|
|
311
|
+
export declare enum ImageProvider {
|
|
312
|
+
UNKNOWN = "UNKNOWN",
|
|
313
|
+
/** Image stored outside Wix */
|
|
314
|
+
EXTERNAL = "EXTERNAL",
|
|
315
|
+
/** Stored in wix media platform, Must be uploaded by using `GeneratePictureUploadUrl` */
|
|
316
|
+
WIX_MEDIA = "WIX_MEDIA"
|
|
317
|
+
}
|
|
318
|
+
export interface ContactActivity {
|
|
319
|
+
/** Date and time of the last action. */
|
|
320
|
+
activityDate?: Date;
|
|
321
|
+
/**
|
|
322
|
+
* Contact's last action in the site.
|
|
323
|
+
*
|
|
324
|
+
* For descriptions of each value, see
|
|
325
|
+
* [Last Activity Types](https://dev.wix.com/api/rest/contacts/contacts/last-activity-types).
|
|
326
|
+
*/
|
|
327
|
+
activityType?: ContactActivityType;
|
|
328
|
+
}
|
|
329
|
+
export declare enum ContactActivityType {
|
|
330
|
+
/** Last visit to your site (any unknown activity) */
|
|
331
|
+
GENERAL = "GENERAL",
|
|
332
|
+
/** This cannot be reported, used when contact created, will throw exception */
|
|
333
|
+
CONTACT_CREATED = "CONTACT_CREATED",
|
|
334
|
+
/** "auth/login" */
|
|
335
|
+
MEMBER_LOGIN = "MEMBER_LOGIN",
|
|
336
|
+
/** "auth/register" */
|
|
337
|
+
MEMBER_REGISTER = "MEMBER_REGISTER",
|
|
338
|
+
/** "auth/status-change" */
|
|
339
|
+
MEMBER_STATUS_CHANGED = "MEMBER_STATUS_CHANGED",
|
|
340
|
+
/** "contact/contact-form", (but also "form/contact-form", "form/form") */
|
|
341
|
+
FORM_SUBMITTED = "FORM_SUBMITTED",
|
|
342
|
+
/** "form/lead-capture-form" */
|
|
343
|
+
INBOX_FORM_SUBMITTED = "INBOX_FORM_SUBMITTED",
|
|
344
|
+
/** "chat/payment-request-paid" */
|
|
345
|
+
INBOX_PAYMENT_REQUEST_PAID = "INBOX_PAYMENT_REQUEST_PAID",
|
|
346
|
+
/** "messaging/email" - Direction BUSINESS_TO_CUSTOMER */
|
|
347
|
+
INBOX_MESSAGE_TO_CUSTOMER = "INBOX_MESSAGE_TO_CUSTOMER",
|
|
348
|
+
/** "messaging/email" - Direction CUSTOMER_TO_BUSINESS */
|
|
349
|
+
INBOX_MESSAGE_FROM_CUSTOMER = "INBOX_MESSAGE_FROM_CUSTOMER",
|
|
350
|
+
/** "contact/subscription-form" (but also "form/subscription-form") */
|
|
351
|
+
NEWSLETTER_SUBSCRIPTION_FORM_SUBMITTED = "NEWSLETTER_SUBSCRIPTION_FORM_SUBMITTED",
|
|
352
|
+
/** "contact/unsubscribe" */
|
|
353
|
+
NEWSLETTER_SUBSCRIPTION_UNSUBSCRIBE = "NEWSLETTER_SUBSCRIPTION_UNSUBSCRIBE",
|
|
354
|
+
/** "e_commerce/purchase" */
|
|
355
|
+
ECOM_PURCHASE = "ECOM_PURCHASE",
|
|
356
|
+
/** "e_commerce/cart-abandon" */
|
|
357
|
+
ECOM_CART_ABANDON = "ECOM_CART_ABANDON",
|
|
358
|
+
/** "e_commerce/checkout-buyer" */
|
|
359
|
+
ECOM_CHECKOUT_BUYER = "ECOM_CHECKOUT_BUYER",
|
|
360
|
+
/** "scheduler/appointment" */
|
|
361
|
+
BOOKINGS_APPOINTMENT = "BOOKINGS_APPOINTMENT",
|
|
362
|
+
/** "hotels/reservation" */
|
|
363
|
+
HOTELS_RESERVATION = "HOTELS_RESERVATION",
|
|
364
|
+
/** "hotels/purchase" */
|
|
365
|
+
HOTELS_PURCHASE = "HOTELS_PURCHASE",
|
|
366
|
+
/** "hotels/confirmation" */
|
|
367
|
+
HOTELS_CONFIRMATION = "HOTELS_CONFIRMATION",
|
|
368
|
+
/** "hotels/cancel" */
|
|
369
|
+
HOTELS_CANCEL = "HOTELS_CANCEL",
|
|
370
|
+
/** "video/purchase" */
|
|
371
|
+
VIDEO_PURCHASE = "VIDEO_PURCHASE",
|
|
372
|
+
/** "video/rent" */
|
|
373
|
+
VIDEO_RENT = "VIDEO_RENT",
|
|
374
|
+
/** "cashier/button_purchase" */
|
|
375
|
+
CASHIER_BUTTON_PURCHASE = "CASHIER_BUTTON_PURCHASE",
|
|
376
|
+
/** "arena/new-lead" */
|
|
377
|
+
ARENA_NEW_LEAD = "ARENA_NEW_LEAD",
|
|
378
|
+
/** "events/rsvp" */
|
|
379
|
+
EVENTS_RSVP = "EVENTS_RSVP",
|
|
380
|
+
/** "invoice/pay" */
|
|
381
|
+
INVOICE_PAY = "INVOICE_PAY",
|
|
382
|
+
/** "invoice/overdue" */
|
|
383
|
+
INVOICE_OVERDUE = "INVOICE_OVERDUE",
|
|
384
|
+
/** "price-quote/accept" */
|
|
385
|
+
PRICE_QUOTE_ACCEPT = "PRICE_QUOTE_ACCEPT",
|
|
386
|
+
/** "price-quote/expire" */
|
|
387
|
+
PRICE_QUOTE_EXPIRE = "PRICE_QUOTE_EXPIRE",
|
|
388
|
+
/** "restaurants/order" */
|
|
389
|
+
RESTAURANTS_ORDER = "RESTAURANTS_ORDER",
|
|
390
|
+
/** "restaurants/reservation" */
|
|
391
|
+
RESTAURANTS_RESERVATION = "RESTAURANTS_RESERVATION",
|
|
392
|
+
/** "shoutout/open" */
|
|
393
|
+
SHOUTOUT_OPEN = "SHOUTOUT_OPEN",
|
|
394
|
+
/** "shoutout/click" */
|
|
395
|
+
SHOUTOUT_CLICK = "SHOUTOUT_CLICK",
|
|
396
|
+
CONTACT_MERGED = "CONTACT_MERGED"
|
|
397
|
+
}
|
|
398
|
+
export interface SubmitContactOptions {
|
|
399
|
+
/**
|
|
400
|
+
* Overrides `visitorId`
|
|
401
|
+
* Requires permission `CONTACTS.SUBMIT_WITH_OVERRIDES`
|
|
402
|
+
*/
|
|
403
|
+
overrideVisitorId?: string | null;
|
|
404
|
+
/**
|
|
405
|
+
* Overrides `memberId`
|
|
406
|
+
* Requires permission `CONTACTS.SUBMIT_WITH_OVERRIDES`
|
|
407
|
+
*/
|
|
408
|
+
overrideMemberId?: string | null;
|
|
409
|
+
/**
|
|
410
|
+
* Overrides `app_id`
|
|
411
|
+
* Requires permission `CONTACTS.SUBMIT_WITH_OVERRIDES`
|
|
412
|
+
*/
|
|
413
|
+
overrideAppId?: string | null;
|
|
414
|
+
/**
|
|
415
|
+
* Indicates primary email is verified (first email on contact.emails)
|
|
416
|
+
* Requires permission `CONTACTS.SUBMIT_WITH_OVERRIDES`
|
|
417
|
+
*/
|
|
418
|
+
emailVerified?: boolean | null;
|
|
419
|
+
/**
|
|
420
|
+
* Indicates primary phone is verified (first phone on contact.phones)
|
|
421
|
+
* Requires permission `CONTACTS.SUBMIT_WITH_OVERRIDES`
|
|
422
|
+
*/
|
|
423
|
+
phoneVerified?: boolean | null;
|
|
424
|
+
}
|
|
425
|
+
export interface SubmitContactResponse {
|
|
426
|
+
/** ID of the contact that was found or created. */
|
|
427
|
+
contactId?: string;
|
|
428
|
+
/**
|
|
429
|
+
* Identity type of the returned contact.
|
|
430
|
+
*
|
|
431
|
+
* - `CONTACT`: The returned contact ID belongs to a new or existing contact.
|
|
432
|
+
* - `MEMBER`: The returned contact ID belongs to the currently logged-in site member.
|
|
433
|
+
* - `NOT_AUTHENTICATED_MEMBER`: The returned contact ID belongs to a site member who is not currently logged in.
|
|
434
|
+
*/
|
|
435
|
+
identityType?: IdentityType;
|
|
436
|
+
/**
|
|
437
|
+
* Indicates whether the contact was just created or already existed.
|
|
438
|
+
*
|
|
439
|
+
* If the contact was just created, returns `true`.
|
|
440
|
+
* If it already existed, returns `false`.
|
|
441
|
+
*/
|
|
442
|
+
newContact?: boolean;
|
|
443
|
+
}
|
|
444
|
+
export declare enum IdentityType {
|
|
445
|
+
UNKNOWN = "UNKNOWN",
|
|
446
|
+
/** Existing or new contact */
|
|
447
|
+
CONTACT = "CONTACT",
|
|
448
|
+
/** Member is logged in, matching logic skipped */
|
|
449
|
+
MEMBER = "MEMBER",
|
|
450
|
+
/** Matching contact is a member, Merge logic won't be applied */
|
|
451
|
+
NOT_AUTHENTICATED_MEMBER = "NOT_AUTHENTICATED_MEMBER"
|
|
452
|
+
}
|
|
453
|
+
export interface ContactToSubmit {
|
|
454
|
+
/**
|
|
455
|
+
* reserved 6;
|
|
456
|
+
* reserved "raw_source";
|
|
457
|
+
*/
|
|
458
|
+
contactInfo?: ContactInfo;
|
|
459
|
+
/** Last activity */
|
|
460
|
+
activity?: ContactActivity;
|
|
461
|
+
/** Pass through data */
|
|
462
|
+
passThroughData?: string | null;
|
|
463
|
+
/** Contact Id */
|
|
464
|
+
contactId?: string;
|
|
465
|
+
/** Create/Update */
|
|
466
|
+
submitOperation?: SubmitOperation;
|
|
467
|
+
/** Raw source */
|
|
468
|
+
rawSource?: string | null;
|
|
469
|
+
/** Need to resolve source in allocator, because of server sign */
|
|
470
|
+
sourceType?: ContactSourceType;
|
|
471
|
+
/** Source Id */
|
|
472
|
+
sourceId?: string | null;
|
|
473
|
+
/** Hide from contact list (implicit contact) */
|
|
474
|
+
hideFromContactList?: boolean;
|
|
475
|
+
}
|
|
476
|
+
export declare enum SubmitOperation {
|
|
477
|
+
UNKNOWN = "UNKNOWN",
|
|
478
|
+
CREATE = "CREATE",
|
|
479
|
+
UPDATE = "UPDATE"
|
|
480
|
+
}
|
|
481
|
+
export declare enum ContactSourceType {
|
|
482
|
+
OTHER = "OTHER",
|
|
483
|
+
ADMIN = "ADMIN",
|
|
484
|
+
WIX_APP = "WIX_APP",
|
|
485
|
+
IMPORT = "IMPORT",
|
|
486
|
+
THIRD_PARTY = "THIRD_PARTY",
|
|
487
|
+
WIX_BOOKINGS = "WIX_BOOKINGS",
|
|
488
|
+
WIX_CHAT = "WIX_CHAT",
|
|
489
|
+
WIX_EMAIL_MARKETING = "WIX_EMAIL_MARKETING",
|
|
490
|
+
WIX_EVENTS = "WIX_EVENTS",
|
|
491
|
+
WIX_FORMS = "WIX_FORMS",
|
|
492
|
+
WIX_GROUPS = "WIX_GROUPS",
|
|
493
|
+
WIX_HOTELS = "WIX_HOTELS",
|
|
494
|
+
WIX_MARKET_PLACE = "WIX_MARKET_PLACE",
|
|
495
|
+
WIX_MUSIC = "WIX_MUSIC",
|
|
496
|
+
WIX_RESTAURANTS = "WIX_RESTAURANTS",
|
|
497
|
+
WIX_SITE_MEMBERS = "WIX_SITE_MEMBERS",
|
|
498
|
+
WIX_STORES = "WIX_STORES",
|
|
499
|
+
WIX_CODE = "WIX_CODE"
|
|
500
|
+
}
|
|
501
|
+
export interface SubmitVisitorIdRequest {
|
|
502
|
+
/** Existing Contact ID */
|
|
503
|
+
contactId?: string;
|
|
504
|
+
/** The visitor ID to be attached to the given `contactId` */
|
|
505
|
+
visitorId?: string;
|
|
506
|
+
}
|
|
507
|
+
export interface SubmitVisitorIdResponse {
|
|
508
|
+
/** The mapped Contact ID */
|
|
509
|
+
contactId?: string;
|
|
510
|
+
/** The mapped visitor ID */
|
|
511
|
+
visitorId?: string;
|
|
512
|
+
/** Date in the `visitorId` was attached to the given `contactId` */
|
|
513
|
+
validFrom?: Date;
|
|
514
|
+
}
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ContactSourceType = exports.SubmitOperation = exports.IdentityType = exports.ContactActivityType = exports.ImageProvider = exports.SubdivisionType = exports.AddressTag = exports.PhoneTag = exports.EmailTag = void 0;
|
|
4
|
+
var EmailTag;
|
|
5
|
+
(function (EmailTag) {
|
|
6
|
+
EmailTag["UNTAGGED"] = "UNTAGGED";
|
|
7
|
+
EmailTag["MAIN"] = "MAIN";
|
|
8
|
+
EmailTag["HOME"] = "HOME";
|
|
9
|
+
EmailTag["WORK"] = "WORK";
|
|
10
|
+
})(EmailTag = exports.EmailTag || (exports.EmailTag = {}));
|
|
11
|
+
var PhoneTag;
|
|
12
|
+
(function (PhoneTag) {
|
|
13
|
+
PhoneTag["UNTAGGED"] = "UNTAGGED";
|
|
14
|
+
PhoneTag["MAIN"] = "MAIN";
|
|
15
|
+
PhoneTag["HOME"] = "HOME";
|
|
16
|
+
PhoneTag["MOBILE"] = "MOBILE";
|
|
17
|
+
PhoneTag["WORK"] = "WORK";
|
|
18
|
+
PhoneTag["FAX"] = "FAX";
|
|
19
|
+
})(PhoneTag = exports.PhoneTag || (exports.PhoneTag = {}));
|
|
20
|
+
var AddressTag;
|
|
21
|
+
(function (AddressTag) {
|
|
22
|
+
AddressTag["UNTAGGED"] = "UNTAGGED";
|
|
23
|
+
AddressTag["HOME"] = "HOME";
|
|
24
|
+
AddressTag["WORK"] = "WORK";
|
|
25
|
+
AddressTag["BILLING"] = "BILLING";
|
|
26
|
+
AddressTag["SHIPPING"] = "SHIPPING";
|
|
27
|
+
})(AddressTag = exports.AddressTag || (exports.AddressTag = {}));
|
|
28
|
+
var SubdivisionType;
|
|
29
|
+
(function (SubdivisionType) {
|
|
30
|
+
SubdivisionType["UNKNOWN_SUBDIVISION_TYPE"] = "UNKNOWN_SUBDIVISION_TYPE";
|
|
31
|
+
/** state */
|
|
32
|
+
SubdivisionType["ADMINISTRATIVE_AREA_LEVEL_1"] = "ADMINISTRATIVE_AREA_LEVEL_1";
|
|
33
|
+
/** county */
|
|
34
|
+
SubdivisionType["ADMINISTRATIVE_AREA_LEVEL_2"] = "ADMINISTRATIVE_AREA_LEVEL_2";
|
|
35
|
+
/** cities/towns */
|
|
36
|
+
SubdivisionType["ADMINISTRATIVE_AREA_LEVEL_3"] = "ADMINISTRATIVE_AREA_LEVEL_3";
|
|
37
|
+
/** neighborhood/quarter */
|
|
38
|
+
SubdivisionType["ADMINISTRATIVE_AREA_LEVEL_4"] = "ADMINISTRATIVE_AREA_LEVEL_4";
|
|
39
|
+
/** street/block */
|
|
40
|
+
SubdivisionType["ADMINISTRATIVE_AREA_LEVEL_5"] = "ADMINISTRATIVE_AREA_LEVEL_5";
|
|
41
|
+
/** (ADMINISTRATIVE_AREA_LEVEL_0) indicates the national political entity, and is typically the highest order type returned by the Geocoder. */
|
|
42
|
+
SubdivisionType["COUNTRY"] = "COUNTRY";
|
|
43
|
+
})(SubdivisionType = exports.SubdivisionType || (exports.SubdivisionType = {}));
|
|
44
|
+
var ImageProvider;
|
|
45
|
+
(function (ImageProvider) {
|
|
46
|
+
ImageProvider["UNKNOWN"] = "UNKNOWN";
|
|
47
|
+
/** Image stored outside Wix */
|
|
48
|
+
ImageProvider["EXTERNAL"] = "EXTERNAL";
|
|
49
|
+
/** Stored in wix media platform, Must be uploaded by using `GeneratePictureUploadUrl` */
|
|
50
|
+
ImageProvider["WIX_MEDIA"] = "WIX_MEDIA";
|
|
51
|
+
})(ImageProvider = exports.ImageProvider || (exports.ImageProvider = {}));
|
|
52
|
+
var ContactActivityType;
|
|
53
|
+
(function (ContactActivityType) {
|
|
54
|
+
/** Last visit to your site (any unknown activity) */
|
|
55
|
+
ContactActivityType["GENERAL"] = "GENERAL";
|
|
56
|
+
/** This cannot be reported, used when contact created, will throw exception */
|
|
57
|
+
ContactActivityType["CONTACT_CREATED"] = "CONTACT_CREATED";
|
|
58
|
+
/** "auth/login" */
|
|
59
|
+
ContactActivityType["MEMBER_LOGIN"] = "MEMBER_LOGIN";
|
|
60
|
+
/** "auth/register" */
|
|
61
|
+
ContactActivityType["MEMBER_REGISTER"] = "MEMBER_REGISTER";
|
|
62
|
+
/** "auth/status-change" */
|
|
63
|
+
ContactActivityType["MEMBER_STATUS_CHANGED"] = "MEMBER_STATUS_CHANGED";
|
|
64
|
+
/** "contact/contact-form", (but also "form/contact-form", "form/form") */
|
|
65
|
+
ContactActivityType["FORM_SUBMITTED"] = "FORM_SUBMITTED";
|
|
66
|
+
/** "form/lead-capture-form" */
|
|
67
|
+
ContactActivityType["INBOX_FORM_SUBMITTED"] = "INBOX_FORM_SUBMITTED";
|
|
68
|
+
/** "chat/payment-request-paid" */
|
|
69
|
+
ContactActivityType["INBOX_PAYMENT_REQUEST_PAID"] = "INBOX_PAYMENT_REQUEST_PAID";
|
|
70
|
+
/** "messaging/email" - Direction BUSINESS_TO_CUSTOMER */
|
|
71
|
+
ContactActivityType["INBOX_MESSAGE_TO_CUSTOMER"] = "INBOX_MESSAGE_TO_CUSTOMER";
|
|
72
|
+
/** "messaging/email" - Direction CUSTOMER_TO_BUSINESS */
|
|
73
|
+
ContactActivityType["INBOX_MESSAGE_FROM_CUSTOMER"] = "INBOX_MESSAGE_FROM_CUSTOMER";
|
|
74
|
+
/** "contact/subscription-form" (but also "form/subscription-form") */
|
|
75
|
+
ContactActivityType["NEWSLETTER_SUBSCRIPTION_FORM_SUBMITTED"] = "NEWSLETTER_SUBSCRIPTION_FORM_SUBMITTED";
|
|
76
|
+
/** "contact/unsubscribe" */
|
|
77
|
+
ContactActivityType["NEWSLETTER_SUBSCRIPTION_UNSUBSCRIBE"] = "NEWSLETTER_SUBSCRIPTION_UNSUBSCRIBE";
|
|
78
|
+
/** "e_commerce/purchase" */
|
|
79
|
+
ContactActivityType["ECOM_PURCHASE"] = "ECOM_PURCHASE";
|
|
80
|
+
/** "e_commerce/cart-abandon" */
|
|
81
|
+
ContactActivityType["ECOM_CART_ABANDON"] = "ECOM_CART_ABANDON";
|
|
82
|
+
/** "e_commerce/checkout-buyer" */
|
|
83
|
+
ContactActivityType["ECOM_CHECKOUT_BUYER"] = "ECOM_CHECKOUT_BUYER";
|
|
84
|
+
/** "scheduler/appointment" */
|
|
85
|
+
ContactActivityType["BOOKINGS_APPOINTMENT"] = "BOOKINGS_APPOINTMENT";
|
|
86
|
+
/** "hotels/reservation" */
|
|
87
|
+
ContactActivityType["HOTELS_RESERVATION"] = "HOTELS_RESERVATION";
|
|
88
|
+
/** "hotels/purchase" */
|
|
89
|
+
ContactActivityType["HOTELS_PURCHASE"] = "HOTELS_PURCHASE";
|
|
90
|
+
/** "hotels/confirmation" */
|
|
91
|
+
ContactActivityType["HOTELS_CONFIRMATION"] = "HOTELS_CONFIRMATION";
|
|
92
|
+
/** "hotels/cancel" */
|
|
93
|
+
ContactActivityType["HOTELS_CANCEL"] = "HOTELS_CANCEL";
|
|
94
|
+
/** "video/purchase" */
|
|
95
|
+
ContactActivityType["VIDEO_PURCHASE"] = "VIDEO_PURCHASE";
|
|
96
|
+
/** "video/rent" */
|
|
97
|
+
ContactActivityType["VIDEO_RENT"] = "VIDEO_RENT";
|
|
98
|
+
/** "cashier/button_purchase" */
|
|
99
|
+
ContactActivityType["CASHIER_BUTTON_PURCHASE"] = "CASHIER_BUTTON_PURCHASE";
|
|
100
|
+
/** "arena/new-lead" */
|
|
101
|
+
ContactActivityType["ARENA_NEW_LEAD"] = "ARENA_NEW_LEAD";
|
|
102
|
+
/** "events/rsvp" */
|
|
103
|
+
ContactActivityType["EVENTS_RSVP"] = "EVENTS_RSVP";
|
|
104
|
+
/** "invoice/pay" */
|
|
105
|
+
ContactActivityType["INVOICE_PAY"] = "INVOICE_PAY";
|
|
106
|
+
/** "invoice/overdue" */
|
|
107
|
+
ContactActivityType["INVOICE_OVERDUE"] = "INVOICE_OVERDUE";
|
|
108
|
+
/** "price-quote/accept" */
|
|
109
|
+
ContactActivityType["PRICE_QUOTE_ACCEPT"] = "PRICE_QUOTE_ACCEPT";
|
|
110
|
+
/** "price-quote/expire" */
|
|
111
|
+
ContactActivityType["PRICE_QUOTE_EXPIRE"] = "PRICE_QUOTE_EXPIRE";
|
|
112
|
+
/** "restaurants/order" */
|
|
113
|
+
ContactActivityType["RESTAURANTS_ORDER"] = "RESTAURANTS_ORDER";
|
|
114
|
+
/** "restaurants/reservation" */
|
|
115
|
+
ContactActivityType["RESTAURANTS_RESERVATION"] = "RESTAURANTS_RESERVATION";
|
|
116
|
+
/** "shoutout/open" */
|
|
117
|
+
ContactActivityType["SHOUTOUT_OPEN"] = "SHOUTOUT_OPEN";
|
|
118
|
+
/** "shoutout/click" */
|
|
119
|
+
ContactActivityType["SHOUTOUT_CLICK"] = "SHOUTOUT_CLICK";
|
|
120
|
+
ContactActivityType["CONTACT_MERGED"] = "CONTACT_MERGED";
|
|
121
|
+
})(ContactActivityType = exports.ContactActivityType || (exports.ContactActivityType = {}));
|
|
122
|
+
var IdentityType;
|
|
123
|
+
(function (IdentityType) {
|
|
124
|
+
IdentityType["UNKNOWN"] = "UNKNOWN";
|
|
125
|
+
/** Existing or new contact */
|
|
126
|
+
IdentityType["CONTACT"] = "CONTACT";
|
|
127
|
+
/** Member is logged in, matching logic skipped */
|
|
128
|
+
IdentityType["MEMBER"] = "MEMBER";
|
|
129
|
+
/** Matching contact is a member, Merge logic won't be applied */
|
|
130
|
+
IdentityType["NOT_AUTHENTICATED_MEMBER"] = "NOT_AUTHENTICATED_MEMBER";
|
|
131
|
+
})(IdentityType = exports.IdentityType || (exports.IdentityType = {}));
|
|
132
|
+
var SubmitOperation;
|
|
133
|
+
(function (SubmitOperation) {
|
|
134
|
+
SubmitOperation["UNKNOWN"] = "UNKNOWN";
|
|
135
|
+
SubmitOperation["CREATE"] = "CREATE";
|
|
136
|
+
SubmitOperation["UPDATE"] = "UPDATE";
|
|
137
|
+
})(SubmitOperation = exports.SubmitOperation || (exports.SubmitOperation = {}));
|
|
138
|
+
var ContactSourceType;
|
|
139
|
+
(function (ContactSourceType) {
|
|
140
|
+
ContactSourceType["OTHER"] = "OTHER";
|
|
141
|
+
ContactSourceType["ADMIN"] = "ADMIN";
|
|
142
|
+
ContactSourceType["WIX_APP"] = "WIX_APP";
|
|
143
|
+
ContactSourceType["IMPORT"] = "IMPORT";
|
|
144
|
+
ContactSourceType["THIRD_PARTY"] = "THIRD_PARTY";
|
|
145
|
+
ContactSourceType["WIX_BOOKINGS"] = "WIX_BOOKINGS";
|
|
146
|
+
ContactSourceType["WIX_CHAT"] = "WIX_CHAT";
|
|
147
|
+
ContactSourceType["WIX_EMAIL_MARKETING"] = "WIX_EMAIL_MARKETING";
|
|
148
|
+
ContactSourceType["WIX_EVENTS"] = "WIX_EVENTS";
|
|
149
|
+
ContactSourceType["WIX_FORMS"] = "WIX_FORMS";
|
|
150
|
+
ContactSourceType["WIX_GROUPS"] = "WIX_GROUPS";
|
|
151
|
+
ContactSourceType["WIX_HOTELS"] = "WIX_HOTELS";
|
|
152
|
+
ContactSourceType["WIX_MARKET_PLACE"] = "WIX_MARKET_PLACE";
|
|
153
|
+
ContactSourceType["WIX_MUSIC"] = "WIX_MUSIC";
|
|
154
|
+
ContactSourceType["WIX_RESTAURANTS"] = "WIX_RESTAURANTS";
|
|
155
|
+
ContactSourceType["WIX_SITE_MEMBERS"] = "WIX_SITE_MEMBERS";
|
|
156
|
+
ContactSourceType["WIX_STORES"] = "WIX_STORES";
|
|
157
|
+
ContactSourceType["WIX_CODE"] = "WIX_CODE";
|
|
158
|
+
})(ContactSourceType = exports.ContactSourceType || (exports.ContactSourceType = {}));
|
|
159
|
+
//# sourceMappingURL=contacts-v4-submit-contact.types.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contacts-v4-submit-contact.types.js","sourceRoot":"","sources":["../../../src/contacts-v4-submit-contact.types.ts"],"names":[],"mappings":"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"}
|