@wix/crm 1.0.161 → 1.0.163
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/crm",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.163",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"type-bundles"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@wix/crm_attachments": "1.0.
|
|
25
|
-
"@wix/crm_contacts": "1.0.
|
|
26
|
-
"@wix/crm_extended-fields": "1.0.
|
|
27
|
-
"@wix/crm_labels": "1.0.
|
|
24
|
+
"@wix/crm_attachments": "1.0.23",
|
|
25
|
+
"@wix/crm_contacts": "1.0.70",
|
|
26
|
+
"@wix/crm_extended-fields": "1.0.49",
|
|
27
|
+
"@wix/crm_labels": "1.0.48",
|
|
28
28
|
"@wix/crm_submitted-contact": "1.0.44",
|
|
29
|
-
"@wix/crm_tasks": "1.0.
|
|
29
|
+
"@wix/crm_tasks": "1.0.51"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"glob": "^10.4.1",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"fqdn": ""
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
"falconPackageHash": "
|
|
54
|
+
"falconPackageHash": "fba1ab41e61ba3fdc27ad168a23e23f1043c5081734405d05d2519a2"
|
|
55
55
|
}
|
|
@@ -1466,7 +1466,6 @@ declare enum SubscriptionStatus {
|
|
|
1466
1466
|
UNSUBSCRIBED = "UNSUBSCRIBED"
|
|
1467
1467
|
}
|
|
1468
1468
|
declare enum EmailDeliverabilityStatus {
|
|
1469
|
-
UNKNOWN_EMAIL_DELIVERABILITY_STATUS = "UNKNOWN_EMAIL_DELIVERABILITY_STATUS",
|
|
1470
1469
|
NOT_SET = "NOT_SET",
|
|
1471
1470
|
VALID = "VALID",
|
|
1472
1471
|
BOUNCED = "BOUNCED",
|
|
@@ -1543,7 +1542,6 @@ interface MemberInfo {
|
|
|
1543
1542
|
groupInfo?: GroupInfo;
|
|
1544
1543
|
}
|
|
1545
1544
|
declare enum MemberStatus {
|
|
1546
|
-
UNKNOWN_MEMBER_STATUS = "UNKNOWN_MEMBER_STATUS",
|
|
1547
1545
|
PENDING = "PENDING",
|
|
1548
1546
|
ACTIVE = "ACTIVE",
|
|
1549
1547
|
DELETED = "DELETED",
|
|
@@ -1563,7 +1561,6 @@ interface ProfileInfo {
|
|
|
1563
1561
|
photo?: string;
|
|
1564
1562
|
}
|
|
1565
1563
|
declare enum PrivacyStatus {
|
|
1566
|
-
UNKNOWN_PRIVACY_STATUS = "UNKNOWN_PRIVACY_STATUS",
|
|
1567
1564
|
PRIVATE = "PRIVATE",
|
|
1568
1565
|
PUBLIC = "PUBLIC"
|
|
1569
1566
|
}
|
|
@@ -3299,8 +3296,6 @@ interface ExtendedField {
|
|
|
3299
3296
|
description?: string | null;
|
|
3300
3297
|
}
|
|
3301
3298
|
declare enum FieldDataType {
|
|
3302
|
-
/** Undefined data type. */
|
|
3303
|
-
UNKNOWN_DATA_TYPE = "UNKNOWN_DATA_TYPE",
|
|
3304
3299
|
/** Accepts strings. */
|
|
3305
3300
|
TEXT = "TEXT",
|
|
3306
3301
|
/** Accepts floats. */
|
|
@@ -3311,8 +3306,6 @@ declare enum FieldDataType {
|
|
|
3311
3306
|
URL = "URL"
|
|
3312
3307
|
}
|
|
3313
3308
|
declare enum FieldType {
|
|
3314
|
-
/** Undefined field type. */
|
|
3315
|
-
UNKNOWN = "UNKNOWN",
|
|
3316
3309
|
/** The field is a system field managed by Wix. System fields cannot be modified by 3rd-party apps or site contributors. */
|
|
3317
3310
|
SYSTEM = "SYSTEM",
|
|
3318
3311
|
/** The field is a custom field and can be modified by 3rd-party apps or site contributors. */
|
|
@@ -4041,8 +4034,6 @@ interface ContactLabel {
|
|
|
4041
4034
|
_updatedDate?: Date | null;
|
|
4042
4035
|
}
|
|
4043
4036
|
declare enum LabelType {
|
|
4044
|
-
/** Fetch all labels. */
|
|
4045
|
-
UNKNOWN = "UNKNOWN",
|
|
4046
4037
|
/** Default system label for the Contact List. */
|
|
4047
4038
|
SYSTEM = "SYSTEM",
|
|
4048
4039
|
/** Label created by a site contributor or 3rd-party app. */
|
|
@@ -5443,8 +5434,6 @@ interface Task {
|
|
|
5443
5434
|
}
|
|
5444
5435
|
/** Possible statuses in which the task may be. */
|
|
5445
5436
|
declare enum TaskStatus {
|
|
5446
|
-
/** Undefined task status. */
|
|
5447
|
-
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
5448
5437
|
/** Action needed. */
|
|
5449
5438
|
ACTION_NEEDED = "ACTION_NEEDED",
|
|
5450
5439
|
/** Task completed. */
|
|
@@ -5469,8 +5458,6 @@ interface TaskSource {
|
|
|
5469
5458
|
}
|
|
5470
5459
|
/** Possible sources that can create tasks. */
|
|
5471
5460
|
declare enum SourceType {
|
|
5472
|
-
/** Undefined source type. */
|
|
5473
|
-
UNKNOWN_SOURCE_TYPE = "UNKNOWN_SOURCE_TYPE",
|
|
5474
5461
|
/** Task was created by an app. */
|
|
5475
5462
|
APP = "APP",
|
|
5476
5463
|
/** Task was created by a user. */
|
|
@@ -1466,7 +1466,6 @@ declare enum SubscriptionStatus {
|
|
|
1466
1466
|
UNSUBSCRIBED = "UNSUBSCRIBED"
|
|
1467
1467
|
}
|
|
1468
1468
|
declare enum EmailDeliverabilityStatus {
|
|
1469
|
-
UNKNOWN_EMAIL_DELIVERABILITY_STATUS = "UNKNOWN_EMAIL_DELIVERABILITY_STATUS",
|
|
1470
1469
|
NOT_SET = "NOT_SET",
|
|
1471
1470
|
VALID = "VALID",
|
|
1472
1471
|
BOUNCED = "BOUNCED",
|
|
@@ -1543,7 +1542,6 @@ interface MemberInfo {
|
|
|
1543
1542
|
groupInfo?: GroupInfo;
|
|
1544
1543
|
}
|
|
1545
1544
|
declare enum MemberStatus {
|
|
1546
|
-
UNKNOWN_MEMBER_STATUS = "UNKNOWN_MEMBER_STATUS",
|
|
1547
1545
|
PENDING = "PENDING",
|
|
1548
1546
|
ACTIVE = "ACTIVE",
|
|
1549
1547
|
DELETED = "DELETED",
|
|
@@ -1563,7 +1561,6 @@ interface ProfileInfo {
|
|
|
1563
1561
|
photo?: string;
|
|
1564
1562
|
}
|
|
1565
1563
|
declare enum PrivacyStatus {
|
|
1566
|
-
UNKNOWN_PRIVACY_STATUS = "UNKNOWN_PRIVACY_STATUS",
|
|
1567
1564
|
PRIVATE = "PRIVATE",
|
|
1568
1565
|
PUBLIC = "PUBLIC"
|
|
1569
1566
|
}
|
|
@@ -3299,8 +3296,6 @@ interface ExtendedField {
|
|
|
3299
3296
|
description?: string | null;
|
|
3300
3297
|
}
|
|
3301
3298
|
declare enum FieldDataType {
|
|
3302
|
-
/** Undefined data type. */
|
|
3303
|
-
UNKNOWN_DATA_TYPE = "UNKNOWN_DATA_TYPE",
|
|
3304
3299
|
/** Accepts strings. */
|
|
3305
3300
|
TEXT = "TEXT",
|
|
3306
3301
|
/** Accepts floats. */
|
|
@@ -3311,8 +3306,6 @@ declare enum FieldDataType {
|
|
|
3311
3306
|
URL = "URL"
|
|
3312
3307
|
}
|
|
3313
3308
|
declare enum FieldType {
|
|
3314
|
-
/** Undefined field type. */
|
|
3315
|
-
UNKNOWN = "UNKNOWN",
|
|
3316
3309
|
/** The field is a system field managed by Wix. System fields cannot be modified by 3rd-party apps or site contributors. */
|
|
3317
3310
|
SYSTEM = "SYSTEM",
|
|
3318
3311
|
/** The field is a custom field and can be modified by 3rd-party apps or site contributors. */
|
|
@@ -4041,8 +4034,6 @@ interface ContactLabel {
|
|
|
4041
4034
|
_updatedDate?: Date | null;
|
|
4042
4035
|
}
|
|
4043
4036
|
declare enum LabelType {
|
|
4044
|
-
/** Fetch all labels. */
|
|
4045
|
-
UNKNOWN = "UNKNOWN",
|
|
4046
4037
|
/** Default system label for the Contact List. */
|
|
4047
4038
|
SYSTEM = "SYSTEM",
|
|
4048
4039
|
/** Label created by a site contributor or 3rd-party app. */
|
|
@@ -5443,8 +5434,6 @@ interface Task {
|
|
|
5443
5434
|
}
|
|
5444
5435
|
/** Possible statuses in which the task may be. */
|
|
5445
5436
|
declare enum TaskStatus {
|
|
5446
|
-
/** Undefined task status. */
|
|
5447
|
-
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
5448
5437
|
/** Action needed. */
|
|
5449
5438
|
ACTION_NEEDED = "ACTION_NEEDED",
|
|
5450
5439
|
/** Task completed. */
|
|
@@ -5469,8 +5458,6 @@ interface TaskSource {
|
|
|
5469
5458
|
}
|
|
5470
5459
|
/** Possible sources that can create tasks. */
|
|
5471
5460
|
declare enum SourceType {
|
|
5472
|
-
/** Undefined source type. */
|
|
5473
|
-
UNKNOWN_SOURCE_TYPE = "UNKNOWN_SOURCE_TYPE",
|
|
5474
5461
|
/** Task was created by an app. */
|
|
5475
5462
|
APP = "APP",
|
|
5476
5463
|
/** Task was created by a user. */
|
|
@@ -790,7 +790,6 @@ declare enum SubscriptionStatus$1 {
|
|
|
790
790
|
UNSUBSCRIBED = "UNSUBSCRIBED"
|
|
791
791
|
}
|
|
792
792
|
declare enum EmailDeliverabilityStatus$1 {
|
|
793
|
-
UNKNOWN_EMAIL_DELIVERABILITY_STATUS = "UNKNOWN_EMAIL_DELIVERABILITY_STATUS",
|
|
794
793
|
NOT_SET = "NOT_SET",
|
|
795
794
|
VALID = "VALID",
|
|
796
795
|
BOUNCED = "BOUNCED",
|
|
@@ -802,7 +801,6 @@ declare enum PhoneDeliverabilityStatus$1 {
|
|
|
802
801
|
NOT_SET = "NOT_SET"
|
|
803
802
|
}
|
|
804
803
|
declare enum MemberStatus$1 {
|
|
805
|
-
UNKNOWN_MEMBER_STATUS = "UNKNOWN_MEMBER_STATUS",
|
|
806
804
|
PENDING = "PENDING",
|
|
807
805
|
ACTIVE = "ACTIVE",
|
|
808
806
|
DELETED = "DELETED",
|
|
@@ -810,7 +808,6 @@ declare enum MemberStatus$1 {
|
|
|
810
808
|
OFFLINE = "OFFLINE"
|
|
811
809
|
}
|
|
812
810
|
declare enum PrivacyStatus$1 {
|
|
813
|
-
UNKNOWN_PRIVACY_STATUS = "UNKNOWN_PRIVACY_STATUS",
|
|
814
811
|
PRIVATE = "PRIVATE",
|
|
815
812
|
PUBLIC = "PUBLIC"
|
|
816
813
|
}
|
|
@@ -1635,7 +1632,6 @@ declare enum SubscriptionStatus {
|
|
|
1635
1632
|
UNSUBSCRIBED = "UNSUBSCRIBED"
|
|
1636
1633
|
}
|
|
1637
1634
|
declare enum EmailDeliverabilityStatus {
|
|
1638
|
-
UNKNOWN_EMAIL_DELIVERABILITY_STATUS = "UNKNOWN_EMAIL_DELIVERABILITY_STATUS",
|
|
1639
1635
|
NOT_SET = "NOT_SET",
|
|
1640
1636
|
VALID = "VALID",
|
|
1641
1637
|
BOUNCED = "BOUNCED",
|
|
@@ -1647,7 +1643,6 @@ declare enum PhoneDeliverabilityStatus {
|
|
|
1647
1643
|
NOT_SET = "NOT_SET"
|
|
1648
1644
|
}
|
|
1649
1645
|
declare enum MemberStatus {
|
|
1650
|
-
UNKNOWN_MEMBER_STATUS = "UNKNOWN_MEMBER_STATUS",
|
|
1651
1646
|
PENDING = "PENDING",
|
|
1652
1647
|
ACTIVE = "ACTIVE",
|
|
1653
1648
|
DELETED = "DELETED",
|
|
@@ -1655,7 +1650,6 @@ declare enum MemberStatus {
|
|
|
1655
1650
|
OFFLINE = "OFFLINE"
|
|
1656
1651
|
}
|
|
1657
1652
|
declare enum PrivacyStatus {
|
|
1658
|
-
UNKNOWN_PRIVACY_STATUS = "UNKNOWN_PRIVACY_STATUS",
|
|
1659
1653
|
PRIVATE = "PRIVATE",
|
|
1660
1654
|
PUBLIC = "PUBLIC"
|
|
1661
1655
|
}
|
|
@@ -2148,8 +2142,6 @@ interface ExtendedField$1 {
|
|
|
2148
2142
|
description?: string | null;
|
|
2149
2143
|
}
|
|
2150
2144
|
declare enum FieldDataType$1 {
|
|
2151
|
-
/** Undefined data type. */
|
|
2152
|
-
UNKNOWN_DATA_TYPE = "UNKNOWN_DATA_TYPE",
|
|
2153
2145
|
/** Accepts strings. */
|
|
2154
2146
|
TEXT = "TEXT",
|
|
2155
2147
|
/** Accepts floats. */
|
|
@@ -2160,8 +2152,6 @@ declare enum FieldDataType$1 {
|
|
|
2160
2152
|
URL = "URL"
|
|
2161
2153
|
}
|
|
2162
2154
|
declare enum FieldType$1 {
|
|
2163
|
-
/** Undefined field type. */
|
|
2164
|
-
UNKNOWN = "UNKNOWN",
|
|
2165
2155
|
/** The field is a system field managed by Wix. System fields cannot be modified by 3rd-party apps or site contributors. */
|
|
2166
2156
|
SYSTEM = "SYSTEM",
|
|
2167
2157
|
/** The field is a custom field and can be modified by 3rd-party apps or site contributors. */
|
|
@@ -2395,8 +2385,6 @@ interface ExtendedField {
|
|
|
2395
2385
|
description?: string | null;
|
|
2396
2386
|
}
|
|
2397
2387
|
declare enum FieldDataType {
|
|
2398
|
-
/** Undefined data type. */
|
|
2399
|
-
UNKNOWN_DATA_TYPE = "UNKNOWN_DATA_TYPE",
|
|
2400
2388
|
/** Accepts strings. */
|
|
2401
2389
|
TEXT = "TEXT",
|
|
2402
2390
|
/** Accepts floats. */
|
|
@@ -2407,8 +2395,6 @@ declare enum FieldDataType {
|
|
|
2407
2395
|
URL = "URL"
|
|
2408
2396
|
}
|
|
2409
2397
|
declare enum FieldType {
|
|
2410
|
-
/** Undefined field type. */
|
|
2411
|
-
UNKNOWN = "UNKNOWN",
|
|
2412
2398
|
/** The field is a system field managed by Wix. System fields cannot be modified by 3rd-party apps or site contributors. */
|
|
2413
2399
|
SYSTEM = "SYSTEM",
|
|
2414
2400
|
/** The field is a custom field and can be modified by 3rd-party apps or site contributors. */
|
|
@@ -2654,8 +2640,6 @@ interface ContactLabel$1 {
|
|
|
2654
2640
|
updatedDate?: Date | null;
|
|
2655
2641
|
}
|
|
2656
2642
|
declare enum LabelType$1 {
|
|
2657
|
-
/** Fetch all labels. */
|
|
2658
|
-
UNKNOWN = "UNKNOWN",
|
|
2659
2643
|
/** Default system label for the Contact List. */
|
|
2660
2644
|
SYSTEM = "SYSTEM",
|
|
2661
2645
|
/** Label created by a site contributor or 3rd-party app. */
|
|
@@ -2865,8 +2849,6 @@ interface ContactLabel {
|
|
|
2865
2849
|
_updatedDate?: Date | null;
|
|
2866
2850
|
}
|
|
2867
2851
|
declare enum LabelType {
|
|
2868
|
-
/** Fetch all labels. */
|
|
2869
|
-
UNKNOWN = "UNKNOWN",
|
|
2870
2852
|
/** Default system label for the Contact List. */
|
|
2871
2853
|
SYSTEM = "SYSTEM",
|
|
2872
2854
|
/** Label created by a site contributor or 3rd-party app. */
|
|
@@ -3677,8 +3659,6 @@ interface Task$1 {
|
|
|
3677
3659
|
}
|
|
3678
3660
|
/** Possible statuses in which the task may be. */
|
|
3679
3661
|
declare enum TaskStatus$1 {
|
|
3680
|
-
/** Undefined task status. */
|
|
3681
|
-
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
3682
3662
|
/** Action needed. */
|
|
3683
3663
|
ACTION_NEEDED = "ACTION_NEEDED",
|
|
3684
3664
|
/** Task completed. */
|
|
@@ -3703,8 +3683,6 @@ interface TaskSource$1 {
|
|
|
3703
3683
|
}
|
|
3704
3684
|
/** Possible sources that can create tasks. */
|
|
3705
3685
|
declare enum SourceType$1 {
|
|
3706
|
-
/** Undefined source type. */
|
|
3707
|
-
UNKNOWN_SOURCE_TYPE = "UNKNOWN_SOURCE_TYPE",
|
|
3708
3686
|
/** Task was created by an app. */
|
|
3709
3687
|
APP = "APP",
|
|
3710
3688
|
/** Task was created by a user. */
|
|
@@ -3935,8 +3913,6 @@ interface Task {
|
|
|
3935
3913
|
}
|
|
3936
3914
|
/** Possible statuses in which the task may be. */
|
|
3937
3915
|
declare enum TaskStatus {
|
|
3938
|
-
/** Undefined task status. */
|
|
3939
|
-
UNKNOWN_STATUS = "UNKNOWN_STATUS",
|
|
3940
3916
|
/** Action needed. */
|
|
3941
3917
|
ACTION_NEEDED = "ACTION_NEEDED",
|
|
3942
3918
|
/** Task completed. */
|
|
@@ -3961,8 +3937,6 @@ interface TaskSource {
|
|
|
3961
3937
|
}
|
|
3962
3938
|
/** Possible sources that can create tasks. */
|
|
3963
3939
|
declare enum SourceType {
|
|
3964
|
-
/** Undefined source type. */
|
|
3965
|
-
UNKNOWN_SOURCE_TYPE = "UNKNOWN_SOURCE_TYPE",
|
|
3966
3940
|
/** Task was created by an app. */
|
|
3967
3941
|
APP = "APP",
|
|
3968
3942
|
/** Task was created by a user. */
|