@wix/auto_sdk_loyalty_programs 1.0.3 → 1.0.5
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/loyalty-v1-program-programs.types.d.ts +196 -45
- package/build/cjs/src/loyalty-v1-program-programs.types.js +1 -0
- package/build/cjs/src/loyalty-v1-program-programs.types.js.map +1 -1
- package/build/cjs/src/loyalty-v1-program-programs.universal.d.ts +204 -47
- package/build/cjs/src/loyalty-v1-program-programs.universal.js +1 -0
- package/build/cjs/src/loyalty-v1-program-programs.universal.js.map +1 -1
- package/build/es/src/loyalty-v1-program-programs.types.d.ts +196 -45
- package/build/es/src/loyalty-v1-program-programs.types.js +1 -0
- package/build/es/src/loyalty-v1-program-programs.types.js.map +1 -1
- package/build/es/src/loyalty-v1-program-programs.universal.d.ts +204 -47
- package/build/es/src/loyalty-v1-program-programs.universal.js +1 -0
- package/build/es/src/loyalty-v1-program-programs.universal.js.map +1 -1
- package/build/internal/cjs/src/loyalty-v1-program-programs.types.d.ts +196 -45
- package/build/internal/cjs/src/loyalty-v1-program-programs.types.js +1 -0
- package/build/internal/cjs/src/loyalty-v1-program-programs.types.js.map +1 -1
- package/build/internal/cjs/src/loyalty-v1-program-programs.universal.d.ts +204 -47
- package/build/internal/cjs/src/loyalty-v1-program-programs.universal.js +1 -0
- package/build/internal/cjs/src/loyalty-v1-program-programs.universal.js.map +1 -1
- package/build/internal/es/src/loyalty-v1-program-programs.types.d.ts +196 -45
- package/build/internal/es/src/loyalty-v1-program-programs.types.js +1 -0
- package/build/internal/es/src/loyalty-v1-program-programs.types.js.map +1 -1
- package/build/internal/es/src/loyalty-v1-program-programs.universal.d.ts +204 -47
- package/build/internal/es/src/loyalty-v1-program-programs.universal.js +1 -0
- package/build/internal/es/src/loyalty-v1-program-programs.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -4,7 +4,11 @@
|
|
|
4
4
|
* [this overview](https://support.wix.com/en/article/wix-loyalty-program-an-overview).
|
|
5
5
|
*/
|
|
6
6
|
export interface LoyaltyProgram {
|
|
7
|
-
/**
|
|
7
|
+
/**
|
|
8
|
+
* Program name.
|
|
9
|
+
* @minLength 2
|
|
10
|
+
* @maxLength 50
|
|
11
|
+
*/
|
|
8
12
|
name?: string | null;
|
|
9
13
|
/** Information about the program's collectible entity. */
|
|
10
14
|
pointDefinition?: PointDefinition;
|
|
@@ -42,6 +46,7 @@ export interface PointDefinition {
|
|
|
42
46
|
* In contrast to a custom name, the default `"Points"` name is translated and adjusted to singular based on circumstances.
|
|
43
47
|
*
|
|
44
48
|
* Default: `Points`.
|
|
49
|
+
* @maxLength 20
|
|
45
50
|
*/
|
|
46
51
|
customName?: string | null;
|
|
47
52
|
/** Image URL. See [Image]($w/image/introduction) for more information on URL formats for images. */
|
|
@@ -73,9 +78,17 @@ export interface PointsExpiration {
|
|
|
73
78
|
* @readonly
|
|
74
79
|
*/
|
|
75
80
|
status?: Status;
|
|
76
|
-
/**
|
|
81
|
+
/**
|
|
82
|
+
* How many months a member should be inactive to lose the collected points.
|
|
83
|
+
* @min 1
|
|
84
|
+
* @max 12
|
|
85
|
+
*/
|
|
77
86
|
monthsOfInactivity?: number;
|
|
78
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* Percentage of points that a member loses after being inactive.
|
|
89
|
+
* @min 1
|
|
90
|
+
* @max 100
|
|
91
|
+
*/
|
|
79
92
|
expiringPointsPercentage?: number;
|
|
80
93
|
}
|
|
81
94
|
export declare enum Status {
|
|
@@ -104,7 +117,10 @@ export interface PremiumFeatures {
|
|
|
104
117
|
pointsExpiration?: boolean;
|
|
105
118
|
}
|
|
106
119
|
export interface SocialMediaSettings {
|
|
107
|
-
/**
|
|
120
|
+
/**
|
|
121
|
+
* List of social media channels
|
|
122
|
+
* @maxSize 5
|
|
123
|
+
*/
|
|
108
124
|
channels?: SocialMediaChannel[];
|
|
109
125
|
}
|
|
110
126
|
export interface SocialMediaChannel {
|
|
@@ -112,11 +128,16 @@ export interface SocialMediaChannel {
|
|
|
112
128
|
type?: Type;
|
|
113
129
|
/** Enable or disable social media channel */
|
|
114
130
|
enabled?: boolean;
|
|
115
|
-
/**
|
|
131
|
+
/**
|
|
132
|
+
* Social media channel ID. For example, Instagram username.
|
|
133
|
+
* @minLength 1
|
|
134
|
+
* @maxLength 255
|
|
135
|
+
*/
|
|
116
136
|
_id?: string;
|
|
117
137
|
/**
|
|
118
138
|
* Social media channel URL
|
|
119
139
|
* @readonly
|
|
140
|
+
* @format WEB_URL
|
|
120
141
|
*/
|
|
121
142
|
url?: string | null;
|
|
122
143
|
}
|
|
@@ -147,7 +168,10 @@ export interface BulkGetLoyaltyProgramResponse {
|
|
|
147
168
|
programInSites?: ProgramInSite[];
|
|
148
169
|
}
|
|
149
170
|
export interface ProgramInSite {
|
|
150
|
-
/**
|
|
171
|
+
/**
|
|
172
|
+
* Metasite ID.
|
|
173
|
+
* @format GUID
|
|
174
|
+
*/
|
|
151
175
|
metaSiteId?: string;
|
|
152
176
|
/** Loyalty program. */
|
|
153
177
|
loyaltyProgram?: LoyaltyProgram;
|
|
@@ -187,7 +211,10 @@ export interface PauseLoyaltyProgramResponse {
|
|
|
187
211
|
loyaltyProgram?: LoyaltyProgram;
|
|
188
212
|
}
|
|
189
213
|
export interface GetLoyaltyProgramDescriptionRequest {
|
|
190
|
-
/**
|
|
214
|
+
/**
|
|
215
|
+
* List of description fields to retrieve. Supported values: `description`, `updatedDate`.
|
|
216
|
+
* @maxSize 2
|
|
217
|
+
*/
|
|
191
218
|
fields?: string[];
|
|
192
219
|
}
|
|
193
220
|
export interface GetLoyaltyProgramDescriptionResponse {
|
|
@@ -197,7 +224,11 @@ export interface GetLoyaltyProgramDescriptionResponse {
|
|
|
197
224
|
_updatedDate?: Date | null;
|
|
198
225
|
}
|
|
199
226
|
export interface UpdateLoyaltyProgramDescriptionRequest {
|
|
200
|
-
/**
|
|
227
|
+
/**
|
|
228
|
+
* Loyalty program description to update.
|
|
229
|
+
* @minLength 1
|
|
230
|
+
* @maxLength 1000000
|
|
231
|
+
*/
|
|
201
232
|
description?: string;
|
|
202
233
|
}
|
|
203
234
|
export interface UpdateLoyaltyProgramDescriptionResponse {
|
|
@@ -274,7 +305,10 @@ export interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
|
|
|
274
305
|
studioAssigned?: StudioAssigned;
|
|
275
306
|
/** Emitted when Studio is detached. */
|
|
276
307
|
studioUnassigned?: StudioUnassigned;
|
|
277
|
-
/**
|
|
308
|
+
/**
|
|
309
|
+
* A meta site id.
|
|
310
|
+
* @format GUID
|
|
311
|
+
*/
|
|
278
312
|
metaSiteId?: string;
|
|
279
313
|
/** A meta site version. Monotonically increasing. */
|
|
280
314
|
version?: string;
|
|
@@ -283,6 +317,7 @@ export interface MetaSiteSpecialEvent extends MetaSiteSpecialEventPayloadOneOf {
|
|
|
283
317
|
/**
|
|
284
318
|
* TODO(meta-site): Change validation once validations are disabled for consumers
|
|
285
319
|
* More context: https://wix.slack.com/archives/C0UHEBPFT/p1720957844413149 and https://wix.slack.com/archives/CFWKX325T/p1728892152855659
|
|
320
|
+
* @maxSize 4000
|
|
286
321
|
*/
|
|
287
322
|
assets?: Asset[];
|
|
288
323
|
}
|
|
@@ -320,9 +355,15 @@ export interface MetaSiteSpecialEventPayloadOneOf {
|
|
|
320
355
|
studioUnassigned?: StudioUnassigned;
|
|
321
356
|
}
|
|
322
357
|
export interface Asset {
|
|
323
|
-
/**
|
|
358
|
+
/**
|
|
359
|
+
* An application definition id (app_id in dev-center). For legacy reasons may be UUID or a string (from Java Enum).
|
|
360
|
+
* @maxLength 36
|
|
361
|
+
*/
|
|
324
362
|
appDefId?: string;
|
|
325
|
-
/**
|
|
363
|
+
/**
|
|
364
|
+
* An instance id. For legacy reasons may be UUID or a string.
|
|
365
|
+
* @maxLength 200
|
|
366
|
+
*/
|
|
326
367
|
instanceId?: string;
|
|
327
368
|
/** An application state. */
|
|
328
369
|
state?: State;
|
|
@@ -335,9 +376,15 @@ export declare enum State {
|
|
|
335
376
|
DEMO = "DEMO"
|
|
336
377
|
}
|
|
337
378
|
export interface SiteCreated {
|
|
338
|
-
/**
|
|
379
|
+
/**
|
|
380
|
+
* A template identifier (empty if not created from a template).
|
|
381
|
+
* @maxLength 36
|
|
382
|
+
*/
|
|
339
383
|
originTemplateId?: string;
|
|
340
|
-
/**
|
|
384
|
+
/**
|
|
385
|
+
* An account id of the owner.
|
|
386
|
+
* @format GUID
|
|
387
|
+
*/
|
|
341
388
|
ownerId?: string;
|
|
342
389
|
/** A context in which meta site was created. */
|
|
343
390
|
context?: SiteCreatedContext;
|
|
@@ -346,9 +393,13 @@ export interface SiteCreated {
|
|
|
346
393
|
*
|
|
347
394
|
* In case of a creation from a template it's a template id.
|
|
348
395
|
* In case of a site duplication ("Save As" in dashboard or duplicate in UM) it's an id of a source site.
|
|
396
|
+
* @format GUID
|
|
349
397
|
*/
|
|
350
398
|
originMetaSiteId?: string | null;
|
|
351
|
-
/**
|
|
399
|
+
/**
|
|
400
|
+
* A meta site name (URL slug).
|
|
401
|
+
* @maxLength 20
|
|
402
|
+
*/
|
|
352
403
|
siteName?: string;
|
|
353
404
|
/** A namespace. */
|
|
354
405
|
namespace?: Namespace;
|
|
@@ -445,9 +496,15 @@ export declare enum Namespace {
|
|
|
445
496
|
}
|
|
446
497
|
/** Site transferred to another user. */
|
|
447
498
|
export interface SiteTransferred {
|
|
448
|
-
/**
|
|
499
|
+
/**
|
|
500
|
+
* A previous owner id (user that transfers meta site).
|
|
501
|
+
* @format GUID
|
|
502
|
+
*/
|
|
449
503
|
oldOwnerId?: string;
|
|
450
|
-
/**
|
|
504
|
+
/**
|
|
505
|
+
* A new owner id (user that accepts meta site).
|
|
506
|
+
* @format GUID
|
|
507
|
+
*/
|
|
451
508
|
newOwnerId?: string;
|
|
452
509
|
}
|
|
453
510
|
/** Soft deletion of the meta site. Could be restored. */
|
|
@@ -460,16 +517,23 @@ export interface DeleteContext {
|
|
|
460
517
|
dateDeleted?: Date | null;
|
|
461
518
|
/** A status. */
|
|
462
519
|
deleteStatus?: DeleteStatus;
|
|
463
|
-
/**
|
|
520
|
+
/**
|
|
521
|
+
* A reason (flow).
|
|
522
|
+
* @maxLength 255
|
|
523
|
+
*/
|
|
464
524
|
deleteOrigin?: string;
|
|
465
|
-
/**
|
|
525
|
+
/**
|
|
526
|
+
* A service that deleted it.
|
|
527
|
+
* @maxLength 255
|
|
528
|
+
*/
|
|
466
529
|
initiatorId?: string | null;
|
|
467
530
|
}
|
|
468
531
|
export declare enum DeleteStatus {
|
|
469
532
|
UNKNOWN = "UNKNOWN",
|
|
470
533
|
TRASH = "TRASH",
|
|
471
534
|
DELETED = "DELETED",
|
|
472
|
-
PENDING_PURGE = "PENDING_PURGE"
|
|
535
|
+
PENDING_PURGE = "PENDING_PURGE",
|
|
536
|
+
PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
|
|
473
537
|
}
|
|
474
538
|
/** Restoration of the meta site. */
|
|
475
539
|
export interface SiteUndeleted {
|
|
@@ -478,7 +542,11 @@ export interface SiteUndeleted {
|
|
|
478
542
|
export interface SitePublished {
|
|
479
543
|
}
|
|
480
544
|
export interface SiteUnpublished {
|
|
481
|
-
/**
|
|
545
|
+
/**
|
|
546
|
+
* A list of URLs previously associated with the meta site.
|
|
547
|
+
* @maxLength 4000
|
|
548
|
+
* @maxSize 10000
|
|
549
|
+
*/
|
|
482
550
|
urls?: string[];
|
|
483
551
|
}
|
|
484
552
|
export interface SiteMarkedAsTemplate {
|
|
@@ -501,30 +569,60 @@ export interface SiteMarkedAsWixSite {
|
|
|
501
569
|
* To ensure this, the TPA on the template gets a new instance_id.
|
|
502
570
|
*/
|
|
503
571
|
export interface ServiceProvisioned {
|
|
504
|
-
/**
|
|
572
|
+
/**
|
|
573
|
+
* Either UUID or EmbeddedServiceType.
|
|
574
|
+
* @maxLength 36
|
|
575
|
+
*/
|
|
505
576
|
appDefId?: string;
|
|
506
|
-
/**
|
|
577
|
+
/**
|
|
578
|
+
* Not only UUID. Something here could be something weird.
|
|
579
|
+
* @maxLength 36
|
|
580
|
+
*/
|
|
507
581
|
instanceId?: string;
|
|
508
|
-
/**
|
|
582
|
+
/**
|
|
583
|
+
* An instance id from which this instance is originated.
|
|
584
|
+
* @maxLength 36
|
|
585
|
+
*/
|
|
509
586
|
originInstanceId?: string;
|
|
510
|
-
/**
|
|
587
|
+
/**
|
|
588
|
+
* A version.
|
|
589
|
+
* @maxLength 500
|
|
590
|
+
*/
|
|
511
591
|
version?: string | null;
|
|
512
|
-
/**
|
|
592
|
+
/**
|
|
593
|
+
* The origin meta site id
|
|
594
|
+
* @format GUID
|
|
595
|
+
*/
|
|
513
596
|
originMetaSiteId?: string | null;
|
|
514
597
|
}
|
|
515
598
|
export interface ServiceRemoved {
|
|
516
|
-
/**
|
|
599
|
+
/**
|
|
600
|
+
* Either UUID or EmbeddedServiceType.
|
|
601
|
+
* @maxLength 36
|
|
602
|
+
*/
|
|
517
603
|
appDefId?: string;
|
|
518
|
-
/**
|
|
604
|
+
/**
|
|
605
|
+
* Not only UUID. Something here could be something weird.
|
|
606
|
+
* @maxLength 36
|
|
607
|
+
*/
|
|
519
608
|
instanceId?: string;
|
|
520
|
-
/**
|
|
609
|
+
/**
|
|
610
|
+
* A version.
|
|
611
|
+
* @maxLength 500
|
|
612
|
+
*/
|
|
521
613
|
version?: string | null;
|
|
522
614
|
}
|
|
523
615
|
/** Rename of the site. Meaning, free public url has been changed as well. */
|
|
524
616
|
export interface SiteRenamed {
|
|
525
|
-
/**
|
|
617
|
+
/**
|
|
618
|
+
* A new meta site name (URL slug).
|
|
619
|
+
* @maxLength 20
|
|
620
|
+
*/
|
|
526
621
|
newSiteName?: string;
|
|
527
|
-
/**
|
|
622
|
+
/**
|
|
623
|
+
* A previous meta site name (URL slug).
|
|
624
|
+
* @maxLength 255
|
|
625
|
+
*/
|
|
528
626
|
oldSiteName?: string;
|
|
529
627
|
}
|
|
530
628
|
/**
|
|
@@ -633,11 +731,13 @@ export interface FeatureEnabled extends FeatureEnabledReasonOneOf {
|
|
|
633
731
|
/**
|
|
634
732
|
* Information about a transfer from another account.
|
|
635
733
|
* __Deprecated__. Use `reason.transferred_from_another_account` instead.
|
|
734
|
+
* @format GUID
|
|
636
735
|
*/
|
|
637
736
|
transferredFromAccount?: string | null;
|
|
638
737
|
/**
|
|
639
738
|
* Information about a transfer from another site.
|
|
640
739
|
* __Deprecated__. Use `reason.reassigned_from_site` instead.
|
|
740
|
+
* @format GUID
|
|
641
741
|
*/
|
|
642
742
|
reassignedFromMetasite?: string | null;
|
|
643
743
|
}
|
|
@@ -686,6 +786,8 @@ export interface Feature extends FeatureQuantityInfoOneOf {
|
|
|
686
786
|
*
|
|
687
787
|
* Min: 2 characters
|
|
688
788
|
* Max: 50 characters
|
|
789
|
+
* @minLength 2
|
|
790
|
+
* @maxLength 50
|
|
689
791
|
*/
|
|
690
792
|
uniqueName?: string;
|
|
691
793
|
/**
|
|
@@ -724,6 +826,7 @@ export interface Feature extends FeatureQuantityInfoOneOf {
|
|
|
724
826
|
/**
|
|
725
827
|
* ID of the [subscription](https://bo.wix.com/wix-docs/rest/premium/premium-subscriptions-manager/subscription-object)
|
|
726
828
|
* to which the feature instance belongs.
|
|
829
|
+
* @format GUID
|
|
727
830
|
*/
|
|
728
831
|
subscriptionId?: string | null;
|
|
729
832
|
/**
|
|
@@ -757,6 +860,7 @@ export interface FeatureContext {
|
|
|
757
860
|
/**
|
|
758
861
|
* ID of the Wix account that the feature instance belongs to.
|
|
759
862
|
* Available for both site and account level feature instances.
|
|
863
|
+
* @format GUID
|
|
760
864
|
*/
|
|
761
865
|
userId?: string;
|
|
762
866
|
/**
|
|
@@ -764,6 +868,7 @@ export interface FeatureContext {
|
|
|
764
868
|
* Only available for site level feature instances that are assigned to a Wix
|
|
765
869
|
* site. Not available for account level and unassigned site level feature
|
|
766
870
|
* instances.
|
|
871
|
+
* @format GUID
|
|
767
872
|
*/
|
|
768
873
|
metaSiteId?: string | null;
|
|
769
874
|
}
|
|
@@ -820,12 +925,18 @@ export interface QuotaInfo {
|
|
|
820
925
|
}
|
|
821
926
|
/** Subscription transferred from another account, features on the current account were enabled. */
|
|
822
927
|
export interface TransferredFromAnotherAccountReason {
|
|
823
|
-
/**
|
|
928
|
+
/**
|
|
929
|
+
* Information about a transfer from another account.
|
|
930
|
+
* @format GUID
|
|
931
|
+
*/
|
|
824
932
|
transferredFromAccount?: string;
|
|
825
933
|
}
|
|
826
934
|
/** Subscription moved from one site to another in the same account, features enabled on the target site */
|
|
827
935
|
export interface ReassignedFromSiteReason {
|
|
828
|
-
/**
|
|
936
|
+
/**
|
|
937
|
+
* Information about a transfer from another site.
|
|
938
|
+
* @format GUID
|
|
939
|
+
*/
|
|
829
940
|
reassignedFromMetasite?: string;
|
|
830
941
|
}
|
|
831
942
|
/** Subscription was floating and assigned to site, features enabled on the target site */
|
|
@@ -862,7 +973,10 @@ export interface FeatureDisabled extends FeatureDisabledReasonOneOf {
|
|
|
862
973
|
* possibly its new context.
|
|
863
974
|
*/
|
|
864
975
|
feature?: Feature;
|
|
865
|
-
/**
|
|
976
|
+
/**
|
|
977
|
+
* ID of the meta site for which the feature has been disabled.
|
|
978
|
+
* @format GUID
|
|
979
|
+
*/
|
|
866
980
|
metaSiteId?: string | null;
|
|
867
981
|
}
|
|
868
982
|
/** @oneof */
|
|
@@ -888,7 +1002,10 @@ export interface ReplacedByAnotherSubscriptionReason {
|
|
|
888
1002
|
}
|
|
889
1003
|
/** Subscription was assigned to another site, causing features on the origin site to be disabled. */
|
|
890
1004
|
export interface ReassignedToAnotherSiteReason {
|
|
891
|
-
/**
|
|
1005
|
+
/**
|
|
1006
|
+
* Information about a transfer to the site.
|
|
1007
|
+
* @format GUID
|
|
1008
|
+
*/
|
|
892
1009
|
reassignedToMetasite?: string;
|
|
893
1010
|
}
|
|
894
1011
|
/** Feature updated, for example Quota was increased due to upgrade */
|
|
@@ -930,6 +1047,7 @@ export interface FeatureCancelled extends FeatureCancelledReasonOneOf {
|
|
|
930
1047
|
/**
|
|
931
1048
|
* Information about a transfer to the account.
|
|
932
1049
|
* __Deprecated__. Use `reason.transferred_to_account` instead.
|
|
1050
|
+
* @format GUID
|
|
933
1051
|
*/
|
|
934
1052
|
transferredToAccount?: string | null;
|
|
935
1053
|
}
|
|
@@ -944,7 +1062,10 @@ export interface FeatureCancelledReasonOneOf {
|
|
|
944
1062
|
}
|
|
945
1063
|
/** Subscription was transferred to another account, features in the origin account were cancelled */
|
|
946
1064
|
export interface TransferredToAnotherAccountReason {
|
|
947
|
-
/**
|
|
1065
|
+
/**
|
|
1066
|
+
* Information about a transfer to the account.
|
|
1067
|
+
* @format GUID
|
|
1068
|
+
*/
|
|
948
1069
|
transferredToAccount?: string;
|
|
949
1070
|
}
|
|
950
1071
|
/** Cancellation was requested from the subscription manager api, might be a result of billing event, or direct call */
|
|
@@ -1021,9 +1142,15 @@ export interface ActionEvent {
|
|
|
1021
1142
|
body?: string;
|
|
1022
1143
|
}
|
|
1023
1144
|
export interface MessageEnvelope {
|
|
1024
|
-
/**
|
|
1145
|
+
/**
|
|
1146
|
+
* App instance ID.
|
|
1147
|
+
* @format GUID
|
|
1148
|
+
*/
|
|
1025
1149
|
instanceId?: string | null;
|
|
1026
|
-
/**
|
|
1150
|
+
/**
|
|
1151
|
+
* Event type.
|
|
1152
|
+
* @maxLength 150
|
|
1153
|
+
*/
|
|
1027
1154
|
eventType?: string;
|
|
1028
1155
|
/** The identification type and identity data. */
|
|
1029
1156
|
identity?: IdentificationData;
|
|
@@ -1031,26 +1158,50 @@ export interface MessageEnvelope {
|
|
|
1031
1158
|
data?: string;
|
|
1032
1159
|
}
|
|
1033
1160
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
1034
|
-
/**
|
|
1161
|
+
/**
|
|
1162
|
+
* ID of a site visitor that has not logged in to the site.
|
|
1163
|
+
* @format GUID
|
|
1164
|
+
*/
|
|
1035
1165
|
anonymousVisitorId?: string;
|
|
1036
|
-
/**
|
|
1166
|
+
/**
|
|
1167
|
+
* ID of a site visitor that has logged in to the site.
|
|
1168
|
+
* @format GUID
|
|
1169
|
+
*/
|
|
1037
1170
|
memberId?: string;
|
|
1038
|
-
/**
|
|
1171
|
+
/**
|
|
1172
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
1173
|
+
* @format GUID
|
|
1174
|
+
*/
|
|
1039
1175
|
wixUserId?: string;
|
|
1040
|
-
/**
|
|
1176
|
+
/**
|
|
1177
|
+
* ID of an app.
|
|
1178
|
+
* @format GUID
|
|
1179
|
+
*/
|
|
1041
1180
|
appId?: string;
|
|
1042
1181
|
/** @readonly */
|
|
1043
1182
|
identityType?: WebhookIdentityType;
|
|
1044
1183
|
}
|
|
1045
1184
|
/** @oneof */
|
|
1046
1185
|
export interface IdentificationDataIdOneOf {
|
|
1047
|
-
/**
|
|
1186
|
+
/**
|
|
1187
|
+
* ID of a site visitor that has not logged in to the site.
|
|
1188
|
+
* @format GUID
|
|
1189
|
+
*/
|
|
1048
1190
|
anonymousVisitorId?: string;
|
|
1049
|
-
/**
|
|
1191
|
+
/**
|
|
1192
|
+
* ID of a site visitor that has logged in to the site.
|
|
1193
|
+
* @format GUID
|
|
1194
|
+
*/
|
|
1050
1195
|
memberId?: string;
|
|
1051
|
-
/**
|
|
1196
|
+
/**
|
|
1197
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
1198
|
+
* @format GUID
|
|
1199
|
+
*/
|
|
1052
1200
|
wixUserId?: string;
|
|
1053
|
-
/**
|
|
1201
|
+
/**
|
|
1202
|
+
* ID of an app.
|
|
1203
|
+
* @format GUID
|
|
1204
|
+
*/
|
|
1054
1205
|
appId?: string;
|
|
1055
1206
|
}
|
|
1056
1207
|
export declare enum WebhookIdentityType {
|
|
@@ -1119,9 +1270,15 @@ export interface DisablePointsExpirationResponseNonNullableFields {
|
|
|
1119
1270
|
loyaltyProgram?: LoyaltyProgramNonNullableFields;
|
|
1120
1271
|
}
|
|
1121
1272
|
export interface BaseEventMetadata {
|
|
1122
|
-
/**
|
|
1273
|
+
/**
|
|
1274
|
+
* App instance ID.
|
|
1275
|
+
* @format GUID
|
|
1276
|
+
*/
|
|
1123
1277
|
instanceId?: string | null;
|
|
1124
|
-
/**
|
|
1278
|
+
/**
|
|
1279
|
+
* Event type.
|
|
1280
|
+
* @maxLength 150
|
|
1281
|
+
*/
|
|
1125
1282
|
eventType?: string;
|
|
1126
1283
|
/** The identification type and identity data. */
|
|
1127
1284
|
identity?: IdentificationData;
|
|
@@ -171,6 +171,7 @@ var DeleteStatus;
|
|
|
171
171
|
DeleteStatus["TRASH"] = "TRASH";
|
|
172
172
|
DeleteStatus["DELETED"] = "DELETED";
|
|
173
173
|
DeleteStatus["PENDING_PURGE"] = "PENDING_PURGE";
|
|
174
|
+
DeleteStatus["PURGED_EXTERNALLY"] = "PURGED_EXTERNALLY";
|
|
174
175
|
})(DeleteStatus || (exports.DeleteStatus = DeleteStatus = {}));
|
|
175
176
|
/** Determines the reset cycle of the feature usage. */
|
|
176
177
|
var FeaturePeriod;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"loyalty-v1-program-programs.universal.js","sourceRoot":"","sources":["../../../../src/loyalty-v1-program-programs.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,oFAGiD;AAEjD,qGAAuF;AACvF,kEAAsF;AACtF,kEAAsF;AACtF,sFAAkF;
|
|
1
|
+
{"version":3,"file":"loyalty-v1-program-programs.universal.js","sourceRoot":"","sources":["../../../../src/loyalty-v1-program-programs.universal.ts"],"names":[],"mappings":"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"}
|