@wix/crm 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-contact.http.d.ts +59 -35
- package/build/cjs/src/contacts-v4-contact.http.js +93 -35
- package/build/cjs/src/contacts-v4-contact.http.js.map +1 -1
- package/build/cjs/src/contacts-v4-contact.public.d.ts +3 -2
- package/build/cjs/src/contacts-v4-contact.public.js +7 -1
- package/build/cjs/src/contacts-v4-contact.public.js.map +1 -1
- package/build/cjs/src/contacts-v4-contact.universal.d.ts +84 -41
- package/build/cjs/src/contacts-v4-contact.universal.js +123 -42
- package/build/cjs/src/contacts-v4-contact.universal.js.map +1 -1
- package/build/cjs/src/contacts-v4-extended-field.universal.d.ts +5 -5
- package/build/cjs/src/contacts-v4-extended-field.universal.js +5 -5
- package/build/cjs/src/contacts-v4-label.universal.d.ts +4 -4
- package/build/cjs/src/contacts-v4-label.universal.js +4 -4
- package/build/es/src/contacts-v4-contact.http.d.ts +59 -35
- package/build/es/src/contacts-v4-contact.http.js +91 -34
- package/build/es/src/contacts-v4-contact.http.js.map +1 -1
- package/build/es/src/contacts-v4-contact.public.d.ts +3 -2
- package/build/es/src/contacts-v4-contact.public.js +6 -1
- package/build/es/src/contacts-v4-contact.public.js.map +1 -1
- package/build/es/src/contacts-v4-contact.universal.d.ts +84 -41
- package/build/es/src/contacts-v4-contact.universal.js +121 -41
- package/build/es/src/contacts-v4-contact.universal.js.map +1 -1
- package/build/es/src/contacts-v4-extended-field.universal.d.ts +5 -5
- package/build/es/src/contacts-v4-extended-field.universal.js +5 -5
- package/build/es/src/contacts-v4-label.universal.d.ts +4 -4
- package/build/es/src/contacts-v4-label.universal.js +4 -4
- package/package.json +2 -2
|
@@ -274,7 +274,7 @@ export interface QueryLabelsResponse {
|
|
|
274
274
|
* [Get Label](https://dev.wix.com/api/rest/contacts/labels/get-label) or
|
|
275
275
|
* [List Labels](https://dev.wix.com/api/rest/contacts/labels/list-labels).
|
|
276
276
|
*
|
|
277
|
-
* This function is not a universal function and runs only on the backend
|
|
277
|
+
* This function is not a universal function and runs only on the backend.
|
|
278
278
|
* @param displayName - Display name to retrieve or create.
|
|
279
279
|
*
|
|
280
280
|
* If an existing label is an exact match
|
|
@@ -294,7 +294,7 @@ export interface FindOrCreateLabelOptions {
|
|
|
294
294
|
/**
|
|
295
295
|
* Updates a label's specified properties.
|
|
296
296
|
*
|
|
297
|
-
* This function is not a universal function and runs only on the backend
|
|
297
|
+
* This function is not a universal function and runs only on the backend.
|
|
298
298
|
* @param key - Label key.
|
|
299
299
|
*
|
|
300
300
|
* `key` is generated when the label is created
|
|
@@ -350,7 +350,7 @@ export interface RenameLabelOptions {
|
|
|
350
350
|
/**
|
|
351
351
|
* Deletes a label from the site and removes it from contacts it applies to.
|
|
352
352
|
*
|
|
353
|
-
* This function is not a universal function and runs only on the backend
|
|
353
|
+
* This function is not a universal function and runs only on the backend.
|
|
354
354
|
* @param key - Label key to delete.
|
|
355
355
|
* @public
|
|
356
356
|
* @documentationMaturity preview
|
|
@@ -363,7 +363,7 @@ export declare function deleteLabel(key: string): Promise<void>;
|
|
|
363
363
|
* For a detailed list of supported operations, see [sorting and filtering for labels](https://dev.wix.com/api/rest/contacts/labels/sort-and-filter). To learn how to query labels, see
|
|
364
364
|
* [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language).
|
|
365
365
|
*
|
|
366
|
-
* This function is not a universal function and runs only on the backend
|
|
366
|
+
* This function is not a universal function and runs only on the backend.
|
|
367
367
|
* @public
|
|
368
368
|
* @documentationMaturity preview
|
|
369
369
|
*/
|
|
@@ -64,7 +64,7 @@ const _updateLabelResponse = {};
|
|
|
64
64
|
* [Get Label](https://dev.wix.com/api/rest/contacts/labels/get-label) or
|
|
65
65
|
* [List Labels](https://dev.wix.com/api/rest/contacts/labels/list-labels).
|
|
66
66
|
*
|
|
67
|
-
* This function is not a universal function and runs only on the backend
|
|
67
|
+
* This function is not a universal function and runs only on the backend.
|
|
68
68
|
* @param displayName - Display name to retrieve or create.
|
|
69
69
|
*
|
|
70
70
|
* If an existing label is an exact match
|
|
@@ -126,7 +126,7 @@ export function findOrCreateLabel(displayName, options) {
|
|
|
126
126
|
/**
|
|
127
127
|
* Updates a label's specified properties.
|
|
128
128
|
*
|
|
129
|
-
* This function is not a universal function and runs only on the backend
|
|
129
|
+
* This function is not a universal function and runs only on the backend.
|
|
130
130
|
* @param key - Label key.
|
|
131
131
|
*
|
|
132
132
|
* `key` is generated when the label is created
|
|
@@ -187,7 +187,7 @@ export function renameLabel(key, options) {
|
|
|
187
187
|
/**
|
|
188
188
|
* Deletes a label from the site and removes it from contacts it applies to.
|
|
189
189
|
*
|
|
190
|
-
* This function is not a universal function and runs only on the backend
|
|
190
|
+
* This function is not a universal function and runs only on the backend.
|
|
191
191
|
* @param key - Label key to delete.
|
|
192
192
|
* @public
|
|
193
193
|
* @documentationMaturity preview
|
|
@@ -242,7 +242,7 @@ export function deleteLabel(key) {
|
|
|
242
242
|
* For a detailed list of supported operations, see [sorting and filtering for labels](https://dev.wix.com/api/rest/contacts/labels/sort-and-filter). To learn how to query labels, see
|
|
243
243
|
* [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language).
|
|
244
244
|
*
|
|
245
|
-
* This function is not a universal function and runs only on the backend
|
|
245
|
+
* This function is not a universal function and runs only on the backend.
|
|
246
246
|
* @public
|
|
247
247
|
* @documentationMaturity preview
|
|
248
248
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/crm",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
-
"falconPackageHash": "
|
|
36
|
+
"falconPackageHash": "e0387c34ee8de6e7dcf74d9c7a049c5ad266035bf896005a60af8f3a"
|
|
37
37
|
}
|