@compassdigital/sdk.typescript 4.528.0 → 4.528.1-beta.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/lib/index.d.ts +308 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +373 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/loyalty.d.ts +402 -0
- package/lib/interface/loyalty.d.ts.map +1 -0
- package/lib/interface/loyalty.js +5 -0
- package/lib/interface/loyalty.js.map +1 -0
- package/manifest.json +7 -0
- package/package.json +1 -1
- package/src/index.ts +914 -0
- package/src/interface/loyalty.ts +659 -0
|
@@ -0,0 +1,402 @@
|
|
|
1
|
+
export interface ErrorDisplayMessage {
|
|
2
|
+
title: string;
|
|
3
|
+
description: string;
|
|
4
|
+
}
|
|
5
|
+
export interface ErrorData {
|
|
6
|
+
statusCode: number;
|
|
7
|
+
statusText: string;
|
|
8
|
+
timestamp: string;
|
|
9
|
+
displayMessage: ErrorDisplayMessage;
|
|
10
|
+
}
|
|
11
|
+
export interface Error {
|
|
12
|
+
code: number;
|
|
13
|
+
message: string;
|
|
14
|
+
data: ErrorData;
|
|
15
|
+
}
|
|
16
|
+
export interface BundleGroupDto {
|
|
17
|
+
groupName: string;
|
|
18
|
+
minimumQuantity: number;
|
|
19
|
+
itemIds: string[];
|
|
20
|
+
}
|
|
21
|
+
export interface CreateBundleDto {
|
|
22
|
+
realm: 'boost' | 'thrive';
|
|
23
|
+
siteId?: string;
|
|
24
|
+
name: string;
|
|
25
|
+
description?: string;
|
|
26
|
+
groups: BundleGroupDto[];
|
|
27
|
+
}
|
|
28
|
+
export interface UpdateBundleDto {
|
|
29
|
+
realm?: 'boost' | 'thrive';
|
|
30
|
+
siteId?: string;
|
|
31
|
+
name?: string;
|
|
32
|
+
description?: string;
|
|
33
|
+
groups?: BundleGroupDto[];
|
|
34
|
+
}
|
|
35
|
+
export interface DailyScheduleDto {
|
|
36
|
+
dayOfWeek: 'mon' | 'tue' | 'wed' | 'thu' | 'fri' | 'sat' | 'sun';
|
|
37
|
+
active: boolean;
|
|
38
|
+
startTime: string;
|
|
39
|
+
endTime: string;
|
|
40
|
+
}
|
|
41
|
+
export interface EligibilityDto {
|
|
42
|
+
eligibilityType: 'everyone' | 'meal_plan' | 'badge_pay' | 'sso_group' | 'segment';
|
|
43
|
+
ssoGroupId?: string;
|
|
44
|
+
segmentId?: string;
|
|
45
|
+
maxRedemptionsPerCustomer?: number;
|
|
46
|
+
maxRedemptionsPerCustomerDaily?: number;
|
|
47
|
+
}
|
|
48
|
+
export interface SiteScopeDto {
|
|
49
|
+
siteId: string;
|
|
50
|
+
excluded?: boolean;
|
|
51
|
+
}
|
|
52
|
+
export interface StationScopeDto {
|
|
53
|
+
siteId: string;
|
|
54
|
+
stationId: string;
|
|
55
|
+
excluded?: boolean;
|
|
56
|
+
}
|
|
57
|
+
export interface ItemTargetDto {
|
|
58
|
+
siteId?: string;
|
|
59
|
+
stationId?: string;
|
|
60
|
+
menuId?: string;
|
|
61
|
+
categoryId?: string;
|
|
62
|
+
itemId?: string;
|
|
63
|
+
maxDiscountCents?: number;
|
|
64
|
+
}
|
|
65
|
+
export interface CreateCampaignDto {
|
|
66
|
+
realm: 'boost' | 'thrive';
|
|
67
|
+
name: string;
|
|
68
|
+
description?: string;
|
|
69
|
+
type: 'promo_code' | 'auto_apply' | 'loyalty_reward';
|
|
70
|
+
discountType: 'AMOUNT_OFF' | 'PERCENT_OFF' | 'FREE_ITEM';
|
|
71
|
+
discountScope: 'order' | 'items';
|
|
72
|
+
discountValueCents?: number;
|
|
73
|
+
discountPercent?: number;
|
|
74
|
+
appliesToCheapest?: boolean;
|
|
75
|
+
maxDiscountCents?: number;
|
|
76
|
+
codeType: 'open' | 'personal' | 'auto_applied';
|
|
77
|
+
startDate?: string;
|
|
78
|
+
endDate?: string;
|
|
79
|
+
maxRedemptions?: number;
|
|
80
|
+
maxRedemptionsPerCustomer?: number;
|
|
81
|
+
maxRedemptionsDaily?: number;
|
|
82
|
+
maxRedemptionsPerCustomerDaily?: number;
|
|
83
|
+
minOrderValueCents?: number;
|
|
84
|
+
maxOrderValueCents?: number;
|
|
85
|
+
dailySchedule?: DailyScheduleDto[];
|
|
86
|
+
eligibility?: EligibilityDto[];
|
|
87
|
+
siteScopes?: SiteScopeDto[];
|
|
88
|
+
stationScopes?: StationScopeDto[];
|
|
89
|
+
itemTargets?: ItemTargetDto[];
|
|
90
|
+
bundleId?: string;
|
|
91
|
+
}
|
|
92
|
+
export interface UpdateCampaignDto {
|
|
93
|
+
realm?: 'boost' | 'thrive';
|
|
94
|
+
name?: string;
|
|
95
|
+
description?: string;
|
|
96
|
+
type?: 'promo_code' | 'auto_apply' | 'loyalty_reward';
|
|
97
|
+
discountType?: 'AMOUNT_OFF' | 'PERCENT_OFF' | 'FREE_ITEM';
|
|
98
|
+
discountScope?: 'order' | 'items';
|
|
99
|
+
discountValueCents?: number;
|
|
100
|
+
discountPercent?: number;
|
|
101
|
+
appliesToCheapest?: boolean;
|
|
102
|
+
maxDiscountCents?: number;
|
|
103
|
+
codeType?: 'open' | 'personal' | 'auto_applied';
|
|
104
|
+
startDate?: string;
|
|
105
|
+
endDate?: string;
|
|
106
|
+
maxRedemptions?: number;
|
|
107
|
+
maxRedemptionsPerCustomer?: number;
|
|
108
|
+
maxRedemptionsDaily?: number;
|
|
109
|
+
maxRedemptionsPerCustomerDaily?: number;
|
|
110
|
+
minOrderValueCents?: number;
|
|
111
|
+
maxOrderValueCents?: number;
|
|
112
|
+
dailySchedule?: DailyScheduleDto[];
|
|
113
|
+
eligibility?: EligibilityDto[];
|
|
114
|
+
siteScopes?: SiteScopeDto[];
|
|
115
|
+
stationScopes?: StationScopeDto[];
|
|
116
|
+
itemTargets?: ItemTargetDto[];
|
|
117
|
+
bundleId?: string;
|
|
118
|
+
}
|
|
119
|
+
export interface UpdateCampaignStatusDto {
|
|
120
|
+
status: 'draft' | 'active' | 'paused' | 'expired' | 'archived';
|
|
121
|
+
reason?: string;
|
|
122
|
+
}
|
|
123
|
+
export interface CreateVoucherDto {
|
|
124
|
+
campaignId: string;
|
|
125
|
+
code: string;
|
|
126
|
+
codeType: 'open' | 'personal' | 'auto_applied';
|
|
127
|
+
customerId?: string;
|
|
128
|
+
expiresAt?: string;
|
|
129
|
+
issueReason?: string;
|
|
130
|
+
}
|
|
131
|
+
export interface UpdateVoucherDto {
|
|
132
|
+
expiresAt?: string;
|
|
133
|
+
customerId?: string;
|
|
134
|
+
}
|
|
135
|
+
export interface RevokeVoucherDto {
|
|
136
|
+
reason: string;
|
|
137
|
+
}
|
|
138
|
+
export interface BatchVoucherDto {
|
|
139
|
+
campaignId: string;
|
|
140
|
+
count: number;
|
|
141
|
+
codeType: 'open' | 'personal';
|
|
142
|
+
prefix?: string;
|
|
143
|
+
expiresAt?: string;
|
|
144
|
+
customerIds?: string[];
|
|
145
|
+
}
|
|
146
|
+
export interface CreateSegmentDto {
|
|
147
|
+
realm: 'boost' | 'thrive';
|
|
148
|
+
siteId: string;
|
|
149
|
+
name: string;
|
|
150
|
+
description?: string;
|
|
151
|
+
type: 'static_list' | 'sso_group' | 'attribute_rule';
|
|
152
|
+
ssoGroupId?: string;
|
|
153
|
+
ruleJson?: Record<string, any>;
|
|
154
|
+
customerIds?: string[];
|
|
155
|
+
}
|
|
156
|
+
export interface UpdateSegmentDto {
|
|
157
|
+
name?: string;
|
|
158
|
+
description?: string;
|
|
159
|
+
ssoGroupId?: string;
|
|
160
|
+
ruleJson?: Record<string, any>;
|
|
161
|
+
}
|
|
162
|
+
export interface SegmentMembersDto {
|
|
163
|
+
customerIds: string[];
|
|
164
|
+
}
|
|
165
|
+
export interface RollbackRedemptionDto {
|
|
166
|
+
reason: string;
|
|
167
|
+
}
|
|
168
|
+
export interface BrandExclusionDto {
|
|
169
|
+
siteId: string;
|
|
170
|
+
stationId: string;
|
|
171
|
+
}
|
|
172
|
+
export interface EarningRuleDto {
|
|
173
|
+
eventType: 'order_placed' | 'item_purchased' | 'amount_spent';
|
|
174
|
+
points: number;
|
|
175
|
+
spendThresholdCents?: number;
|
|
176
|
+
siteId?: string;
|
|
177
|
+
itemId?: string;
|
|
178
|
+
brandExclusions?: BrandExclusionDto[];
|
|
179
|
+
}
|
|
180
|
+
export interface MilestoneDto {
|
|
181
|
+
pointsRequired: number;
|
|
182
|
+
campaignId: string;
|
|
183
|
+
resetsAfterMilestone: boolean;
|
|
184
|
+
maxRewardCount?: number;
|
|
185
|
+
}
|
|
186
|
+
export interface CreateProgramDto {
|
|
187
|
+
realm: 'boost' | 'thrive';
|
|
188
|
+
name: string;
|
|
189
|
+
description?: string;
|
|
190
|
+
earningRules?: EarningRuleDto[];
|
|
191
|
+
milestones?: MilestoneDto[];
|
|
192
|
+
}
|
|
193
|
+
export interface UpdateProgramDto {
|
|
194
|
+
realm?: 'boost' | 'thrive';
|
|
195
|
+
name?: string;
|
|
196
|
+
description?: string;
|
|
197
|
+
earningRules?: EarningRuleDto[];
|
|
198
|
+
milestones?: MilestoneDto[];
|
|
199
|
+
}
|
|
200
|
+
export interface UpdateProgramStatusDto {
|
|
201
|
+
status: 'active' | 'paused' | 'archived';
|
|
202
|
+
}
|
|
203
|
+
export interface AdjustPointsDto {
|
|
204
|
+
pointsDelta: number;
|
|
205
|
+
description: string;
|
|
206
|
+
}
|
|
207
|
+
export interface BundleControllerFindAllQuery {
|
|
208
|
+
limit?: number;
|
|
209
|
+
cursor?: string;
|
|
210
|
+
realm?: 'boost' | 'thrive';
|
|
211
|
+
siteId?: string;
|
|
212
|
+
name?: string;
|
|
213
|
+
}
|
|
214
|
+
export type BundleControllerFindAllResponse = {};
|
|
215
|
+
export type BundleControllerCreateBody = CreateBundleDto;
|
|
216
|
+
export type BundleControllerCreateResponse = {};
|
|
217
|
+
export interface BundleControllerFindOnePath {
|
|
218
|
+
id: string;
|
|
219
|
+
}
|
|
220
|
+
export type BundleControllerFindOneResponse = {};
|
|
221
|
+
export interface BundleControllerUpdatePath {
|
|
222
|
+
id: string;
|
|
223
|
+
}
|
|
224
|
+
export type BundleControllerUpdateBody = UpdateBundleDto;
|
|
225
|
+
export type BundleControllerUpdateResponse = {};
|
|
226
|
+
export interface BundleControllerRemovePath {
|
|
227
|
+
id: string;
|
|
228
|
+
}
|
|
229
|
+
export type BundleControllerRemoveResponse = {};
|
|
230
|
+
export interface CampaignControllerListQuery {
|
|
231
|
+
limit?: number;
|
|
232
|
+
cursor?: string;
|
|
233
|
+
realm?: 'boost' | 'thrive';
|
|
234
|
+
status?: 'draft' | 'active' | 'paused' | 'expired' | 'archived';
|
|
235
|
+
type?: 'promo_code' | 'auto_apply' | 'loyalty_reward';
|
|
236
|
+
name?: string;
|
|
237
|
+
startDateFrom?: string;
|
|
238
|
+
startDateTo?: string;
|
|
239
|
+
endDateFrom?: string;
|
|
240
|
+
endDateTo?: string;
|
|
241
|
+
sortBy?: 'name' | 'createdAt' | 'startDate' | 'status';
|
|
242
|
+
sortOrder?: 'ASC' | 'DESC';
|
|
243
|
+
}
|
|
244
|
+
export type CampaignControllerListResponse = {};
|
|
245
|
+
export type CampaignControllerCreateBody = CreateCampaignDto;
|
|
246
|
+
export type CampaignControllerCreateResponse = {};
|
|
247
|
+
export interface CampaignControllerFindOnePath {
|
|
248
|
+
id: string;
|
|
249
|
+
}
|
|
250
|
+
export type CampaignControllerFindOneResponse = {};
|
|
251
|
+
export interface CampaignControllerUpdatePath {
|
|
252
|
+
id: string;
|
|
253
|
+
}
|
|
254
|
+
export type CampaignControllerUpdateBody = UpdateCampaignDto;
|
|
255
|
+
export type CampaignControllerUpdateResponse = {};
|
|
256
|
+
export interface CampaignControllerRemovePath {
|
|
257
|
+
id: string;
|
|
258
|
+
}
|
|
259
|
+
export type CampaignControllerRemoveResponse = {};
|
|
260
|
+
export interface CampaignControllerUpdateStatusPath {
|
|
261
|
+
id: string;
|
|
262
|
+
}
|
|
263
|
+
export type CampaignControllerUpdateStatusBody = UpdateCampaignStatusDto;
|
|
264
|
+
export type CampaignControllerUpdateStatusResponse = {};
|
|
265
|
+
export interface CampaignControllerClonePath {
|
|
266
|
+
id: string;
|
|
267
|
+
}
|
|
268
|
+
export type CampaignControllerCloneResponse = {};
|
|
269
|
+
export interface VoucherControllerFindAllQuery {
|
|
270
|
+
limit?: number;
|
|
271
|
+
cursor?: string;
|
|
272
|
+
campaignId?: string;
|
|
273
|
+
realm?: 'boost' | 'thrive';
|
|
274
|
+
status?: 'active' | 'redeemed' | 'expired' | 'revoked';
|
|
275
|
+
code?: string;
|
|
276
|
+
codeType?: 'open' | 'personal' | 'auto_applied';
|
|
277
|
+
customerId?: string;
|
|
278
|
+
}
|
|
279
|
+
export type VoucherControllerFindAllResponse = {};
|
|
280
|
+
export type VoucherControllerCreateBody = CreateVoucherDto;
|
|
281
|
+
export type VoucherControllerCreateResponse = {};
|
|
282
|
+
export interface VoucherControllerFindOnePath {
|
|
283
|
+
id: string;
|
|
284
|
+
}
|
|
285
|
+
export type VoucherControllerFindOneResponse = {};
|
|
286
|
+
export interface VoucherControllerUpdatePath {
|
|
287
|
+
id: string;
|
|
288
|
+
}
|
|
289
|
+
export type VoucherControllerUpdateBody = UpdateVoucherDto;
|
|
290
|
+
export type VoucherControllerUpdateResponse = {};
|
|
291
|
+
export interface VoucherControllerRemovePath {
|
|
292
|
+
id: string;
|
|
293
|
+
}
|
|
294
|
+
export type VoucherControllerRemoveResponse = {};
|
|
295
|
+
export interface VoucherControllerRevokePath {
|
|
296
|
+
id: string;
|
|
297
|
+
}
|
|
298
|
+
export type VoucherControllerRevokeBody = RevokeVoucherDto;
|
|
299
|
+
export type VoucherControllerRevokeResponse = {};
|
|
300
|
+
export type VoucherControllerBatchGenerateBody = BatchVoucherDto;
|
|
301
|
+
export type VoucherControllerBatchGenerateResponse = {};
|
|
302
|
+
export interface VoucherControllerFindRedemptionsPath {
|
|
303
|
+
id: string;
|
|
304
|
+
}
|
|
305
|
+
export interface VoucherControllerFindRedemptionsQuery {
|
|
306
|
+
limit?: number;
|
|
307
|
+
cursor?: string;
|
|
308
|
+
}
|
|
309
|
+
export type VoucherControllerFindRedemptionsResponse = {};
|
|
310
|
+
export type VoucherControllerValidateResponse = {};
|
|
311
|
+
export type VoucherControllerRedeemResponse = {};
|
|
312
|
+
export interface SegmentControllerFindAllQuery {
|
|
313
|
+
limit?: number;
|
|
314
|
+
cursor?: string;
|
|
315
|
+
realm?: 'boost' | 'thrive';
|
|
316
|
+
type?: 'static_list' | 'sso_group' | 'attribute_rule';
|
|
317
|
+
siteId?: string;
|
|
318
|
+
name?: string;
|
|
319
|
+
}
|
|
320
|
+
export type SegmentControllerFindAllResponse = {};
|
|
321
|
+
export type SegmentControllerCreateBody = CreateSegmentDto;
|
|
322
|
+
export type SegmentControllerCreateResponse = {};
|
|
323
|
+
export type SegmentControllerGetAttributesResponse = {};
|
|
324
|
+
export type SegmentControllerPreviewRuleCountResponse = {};
|
|
325
|
+
export interface SegmentControllerFindOnePath {
|
|
326
|
+
id: string;
|
|
327
|
+
}
|
|
328
|
+
export type SegmentControllerFindOneResponse = {};
|
|
329
|
+
export interface SegmentControllerUpdatePath {
|
|
330
|
+
id: string;
|
|
331
|
+
}
|
|
332
|
+
export type SegmentControllerUpdateBody = UpdateSegmentDto;
|
|
333
|
+
export type SegmentControllerUpdateResponse = {};
|
|
334
|
+
export interface SegmentControllerRemovePath {
|
|
335
|
+
id: string;
|
|
336
|
+
}
|
|
337
|
+
export type SegmentControllerRemoveResponse = {};
|
|
338
|
+
export interface SegmentControllerFindMembersPath {
|
|
339
|
+
id: string;
|
|
340
|
+
}
|
|
341
|
+
export interface SegmentControllerFindMembersQuery {
|
|
342
|
+
limit?: number;
|
|
343
|
+
cursor?: string;
|
|
344
|
+
}
|
|
345
|
+
export type SegmentControllerFindMembersResponse = {};
|
|
346
|
+
export interface SegmentControllerAddMembersPath {
|
|
347
|
+
id: string;
|
|
348
|
+
}
|
|
349
|
+
export type SegmentControllerAddMembersBody = SegmentMembersDto;
|
|
350
|
+
export type SegmentControllerAddMembersResponse = {};
|
|
351
|
+
export interface SegmentControllerRemoveMembersPath {
|
|
352
|
+
id: string;
|
|
353
|
+
}
|
|
354
|
+
export type SegmentControllerRemoveMembersBody = SegmentMembersDto;
|
|
355
|
+
export type SegmentControllerRemoveMembersResponse = {};
|
|
356
|
+
export interface RedemptionControllerRollbackPath {
|
|
357
|
+
id: string;
|
|
358
|
+
}
|
|
359
|
+
export type RedemptionControllerRollbackBody = RollbackRedemptionDto;
|
|
360
|
+
export type RedemptionControllerRollbackResponse = {};
|
|
361
|
+
export interface LoyaltyControllerListProgramsQuery {
|
|
362
|
+
limit?: number;
|
|
363
|
+
cursor?: string;
|
|
364
|
+
realm?: 'boost' | 'thrive';
|
|
365
|
+
status?: 'active' | 'paused' | 'archived';
|
|
366
|
+
}
|
|
367
|
+
export type LoyaltyControllerListProgramsResponse = {};
|
|
368
|
+
export type LoyaltyControllerCreateProgramBody = CreateProgramDto;
|
|
369
|
+
export type LoyaltyControllerCreateProgramResponse = {};
|
|
370
|
+
export interface LoyaltyControllerFindOneProgramPath {
|
|
371
|
+
id: string;
|
|
372
|
+
}
|
|
373
|
+
export type LoyaltyControllerFindOneProgramResponse = {};
|
|
374
|
+
export interface LoyaltyControllerUpdateProgramPath {
|
|
375
|
+
id: string;
|
|
376
|
+
}
|
|
377
|
+
export type LoyaltyControllerUpdateProgramBody = UpdateProgramDto;
|
|
378
|
+
export type LoyaltyControllerUpdateProgramResponse = {};
|
|
379
|
+
export interface LoyaltyControllerUpdateProgramStatusPath {
|
|
380
|
+
id: string;
|
|
381
|
+
}
|
|
382
|
+
export type LoyaltyControllerUpdateProgramStatusBody = UpdateProgramStatusDto;
|
|
383
|
+
export type LoyaltyControllerUpdateProgramStatusResponse = {};
|
|
384
|
+
export interface LoyaltyControllerListCardsPath {
|
|
385
|
+
id: string;
|
|
386
|
+
}
|
|
387
|
+
export interface LoyaltyControllerListCardsQuery {
|
|
388
|
+
limit?: number;
|
|
389
|
+
cursor?: string;
|
|
390
|
+
}
|
|
391
|
+
export type LoyaltyControllerListCardsResponse = {};
|
|
392
|
+
export interface LoyaltyControllerFindCardPath {
|
|
393
|
+
id: string;
|
|
394
|
+
customerId: string;
|
|
395
|
+
}
|
|
396
|
+
export type LoyaltyControllerFindCardResponse = {};
|
|
397
|
+
export interface LoyaltyControllerAdjustPointsPath {
|
|
398
|
+
cardId: string;
|
|
399
|
+
}
|
|
400
|
+
export type LoyaltyControllerAdjustPointsBody = AdjustPointsDto;
|
|
401
|
+
export type LoyaltyControllerAdjustPointsResponse = {};
|
|
402
|
+
//# sourceMappingURL=loyalty.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"loyalty.d.ts","sourceRoot":"","sources":["../../src/interface/loyalty.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"loyalty.js","sourceRoot":"","sources":["../../src/interface/loyalty.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,sDAAsD"}
|
package/manifest.json
CHANGED
|
@@ -151,6 +151,13 @@
|
|
|
151
151
|
"request": false
|
|
152
152
|
}
|
|
153
153
|
},
|
|
154
|
+
{
|
|
155
|
+
"name": "loyalty",
|
|
156
|
+
"swagger": "../../api/platform2/loyalty/swagger.json",
|
|
157
|
+
"options": {
|
|
158
|
+
"request": false
|
|
159
|
+
}
|
|
160
|
+
},
|
|
154
161
|
{
|
|
155
162
|
"name": "timeslots",
|
|
156
163
|
"swagger": "../../api/platform2/timeslots/swagger.json",
|