reach-api-sdk 1.0.216 → 1.0.218
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/dist/reach-sdk.d.ts +1995 -453
- package/dist/reach-sdk.js +878 -2
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +4508 -1212
- package/src/index.ts +6 -0
- package/src/models/ActivityType.ts +1 -0
- package/src/models/Course.ts +20 -0
- package/src/models/CoursePatch.ts +16 -0
- package/src/models/DealActivity.ts +4 -0
- package/src/models/DealActivityPost.ts +4 -0
- package/src/models/EmailSetting.ts +4 -0
- package/src/models/GenericActivity.ts +24 -0
- package/src/models/Image.ts +4 -0
- package/src/models/Offer.ts +4 -0
- package/src/models/OfferPatch.ts +4 -0
- package/src/models/OfferPost.ts +4 -0
- package/src/models/OpportunityType.ts +1 -0
- package/src/models/OrderItem.ts +6 -0
- package/src/models/OrderPatchItem.ts +4 -0
- package/src/models/OrderPostItem.ts +4 -0
- package/src/models/SellableItem.ts +194 -0
- package/src/models/SellableItemPage.ts +12 -0
- package/src/models/SellableItemPatch.ts +150 -0
- package/src/models/SellableItemPost.ts +145 -0
- package/src/models/Session.ts +20 -0
- package/src/models/SessionPatch.ts +16 -0
- package/src/services/CoursesService.ts +30 -0
- package/src/services/DealActivitiesService.ts +60 -0
- package/src/services/EmailSettingsService.ts +30 -0
- package/src/services/ImagesService.ts +30 -0
- package/src/services/OffersService.ts +60 -0
- package/src/services/OrderItemsService.ts +30 -0
- package/src/services/PublicCoursesService.ts +12 -0
- package/src/services/PublicOrderItemsService.ts +12 -0
- package/src/services/PublicSellableItemsService.ts +473 -0
- package/src/services/SellableItemsService.ts +962 -0
- package/src/services/SessionsService.ts +2 -2
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
|
|
6
|
+
import type { CheckoutPlatform } from './CheckoutPlatform';
|
|
7
|
+
import type { Gender } from './Gender';
|
|
8
|
+
import type { UpdateEmailSettings } from './UpdateEmailSettings';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Post model for sellable item inserts.
|
|
12
|
+
*/
|
|
13
|
+
export type SellableItemPost = {
|
|
14
|
+
/**
|
|
15
|
+
* Gets or sets the tenant Id.
|
|
16
|
+
*/
|
|
17
|
+
tenantId: string;
|
|
18
|
+
/**
|
|
19
|
+
* Gets or sets the provider id.
|
|
20
|
+
*/
|
|
21
|
+
providerId?: string | null;
|
|
22
|
+
/**
|
|
23
|
+
* Gets or sets the venue id.
|
|
24
|
+
*/
|
|
25
|
+
venueId?: string | null;
|
|
26
|
+
/**
|
|
27
|
+
* Gets or sets the activity category id.
|
|
28
|
+
*/
|
|
29
|
+
activityId?: number | null;
|
|
30
|
+
/**
|
|
31
|
+
* Gets or sets the name.
|
|
32
|
+
*/
|
|
33
|
+
name?: string | null;
|
|
34
|
+
/**
|
|
35
|
+
* Gets or sets the description.
|
|
36
|
+
*/
|
|
37
|
+
description?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
* Gets or sets the image url.
|
|
40
|
+
*/
|
|
41
|
+
imageUrl?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
* Gets or sets a value indicating whether the item is bookable on the web.
|
|
44
|
+
*/
|
|
45
|
+
online?: boolean | null;
|
|
46
|
+
/**
|
|
47
|
+
* Gets or sets remaining stock.
|
|
48
|
+
*/
|
|
49
|
+
stockQuantity?: number;
|
|
50
|
+
/**
|
|
51
|
+
* Gets or sets a value indicating whether the item is featured.
|
|
52
|
+
*/
|
|
53
|
+
featured?: boolean | null;
|
|
54
|
+
/**
|
|
55
|
+
* Gets or sets a value indicating whether the item is private.
|
|
56
|
+
*/
|
|
57
|
+
private?: boolean | null;
|
|
58
|
+
/**
|
|
59
|
+
* Gets or sets the checkout survey id.
|
|
60
|
+
*/
|
|
61
|
+
surveyId?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
* Gets or sets the post-completion survey id.
|
|
64
|
+
*/
|
|
65
|
+
postCompletionSurveyId?: string | null;
|
|
66
|
+
/**
|
|
67
|
+
* Gets or sets the cancellation policy id.
|
|
68
|
+
*/
|
|
69
|
+
cancellationPolicyId?: string | null;
|
|
70
|
+
/**
|
|
71
|
+
* Gets or sets the payment policy id.
|
|
72
|
+
*/
|
|
73
|
+
paymentPolicyId?: string | null;
|
|
74
|
+
gender?: Gender;
|
|
75
|
+
/**
|
|
76
|
+
* Gets or sets the min age.
|
|
77
|
+
*/
|
|
78
|
+
minAge?: number | null;
|
|
79
|
+
/**
|
|
80
|
+
* Gets or sets the max age.
|
|
81
|
+
*/
|
|
82
|
+
maxAge?: number | null;
|
|
83
|
+
/**
|
|
84
|
+
* Gets or sets a value indicating whether there is no age restriction.
|
|
85
|
+
*/
|
|
86
|
+
noAgeRestriction?: boolean | null;
|
|
87
|
+
/**
|
|
88
|
+
* Gets or sets additional support options.
|
|
89
|
+
*/
|
|
90
|
+
additionalSupport?: Array<string> | null;
|
|
91
|
+
/**
|
|
92
|
+
* Gets or sets the contact name.
|
|
93
|
+
*/
|
|
94
|
+
contactName?: string | null;
|
|
95
|
+
/**
|
|
96
|
+
* Gets or sets the contact phone.
|
|
97
|
+
*/
|
|
98
|
+
contactPhone?: string | null;
|
|
99
|
+
/**
|
|
100
|
+
* Gets or sets the contact email.
|
|
101
|
+
*/
|
|
102
|
+
contactEmail?: string | null;
|
|
103
|
+
/**
|
|
104
|
+
* Gets or sets the admin contact name.
|
|
105
|
+
*/
|
|
106
|
+
adminContactName?: string | null;
|
|
107
|
+
/**
|
|
108
|
+
* Gets or sets the admin contact phone.
|
|
109
|
+
*/
|
|
110
|
+
adminContactPhone?: string | null;
|
|
111
|
+
/**
|
|
112
|
+
* Gets or sets the admin contact email.
|
|
113
|
+
*/
|
|
114
|
+
adminContactEmail?: string | null;
|
|
115
|
+
/**
|
|
116
|
+
* Gets or sets a value indicating whether to send reminder emails.
|
|
117
|
+
*/
|
|
118
|
+
sendReminder?: boolean | null;
|
|
119
|
+
/**
|
|
120
|
+
* Gets or sets the reminder hours before start.
|
|
121
|
+
*/
|
|
122
|
+
reminderHoursBeforeStart?: number | null;
|
|
123
|
+
checkoutPlatform?: CheckoutPlatform;
|
|
124
|
+
/**
|
|
125
|
+
* Gets or sets the booking link override.
|
|
126
|
+
*/
|
|
127
|
+
bookingLinkOverride?: string | null;
|
|
128
|
+
/**
|
|
129
|
+
* Gets or sets a value indicating whether pre-registration is enabled.
|
|
130
|
+
*/
|
|
131
|
+
preRegistrationEnabled?: boolean | null;
|
|
132
|
+
/**
|
|
133
|
+
* Gets or sets when pre-registration opens.
|
|
134
|
+
*/
|
|
135
|
+
preRegistrationOpensAt?: string | null;
|
|
136
|
+
/**
|
|
137
|
+
* Gets or sets when pre-registration closes.
|
|
138
|
+
*/
|
|
139
|
+
preRegistrationClosesAt?: string | null;
|
|
140
|
+
/**
|
|
141
|
+
* Gets or sets the pre-registration message.
|
|
142
|
+
*/
|
|
143
|
+
preRegistrationMessage?: string | null;
|
|
144
|
+
emailSettings?: UpdateEmailSettings;
|
|
145
|
+
};
|
package/src/models/Session.ts
CHANGED
|
@@ -182,6 +182,26 @@ export type Session = {
|
|
|
182
182
|
* Gets or sets a value indicating whether the activity should be featured on the storefront.
|
|
183
183
|
*/
|
|
184
184
|
featured?: boolean;
|
|
185
|
+
/**
|
|
186
|
+
* Gets or sets a value indicating whether customers may join the activity pre-registration / waitlist when there is nothing bookable yet.
|
|
187
|
+
*/
|
|
188
|
+
preRegistrationEnabled?: boolean | null;
|
|
189
|
+
/**
|
|
190
|
+
* Gets or sets when pre-registration sign-up opens. When null, there is no start boundary (sign-up is allowed from whenever the activity is eligible, until Reach.Models.ActivityBase.PreRegistrationClosesAt if set).
|
|
191
|
+
*/
|
|
192
|
+
preRegistrationOpensAt?: string | null;
|
|
193
|
+
/**
|
|
194
|
+
* Gets or sets when pre-registration sign-up closes. When null, there is no end boundary while Reach.Models.ActivityBase.PreRegistrationEnabled is true.
|
|
195
|
+
*/
|
|
196
|
+
preRegistrationClosesAt?: string | null;
|
|
197
|
+
/**
|
|
198
|
+
* Gets or sets optional storefront copy for the pre-registration form.
|
|
199
|
+
*/
|
|
200
|
+
preRegistrationMessage?: string | null;
|
|
201
|
+
/**
|
|
202
|
+
* Gets a value indicating whether pre-registration is configured and the current instant falls inside the optional window.
|
|
203
|
+
*/
|
|
204
|
+
readonly isPreRegistrationAcceptingSignUps?: boolean;
|
|
185
205
|
/**
|
|
186
206
|
* Gets the computed image url.
|
|
187
207
|
*/
|
|
@@ -151,6 +151,22 @@ export type SessionPatch = {
|
|
|
151
151
|
* Gets or sets a value indicating whether the session is deleted and should be ignored under normal operation.
|
|
152
152
|
*/
|
|
153
153
|
deleted?: boolean | null;
|
|
154
|
+
/**
|
|
155
|
+
* Gets or sets a value indicating whether pre-registration / waitlist is enabled for this session template.
|
|
156
|
+
*/
|
|
157
|
+
preRegistrationEnabled?: boolean | null;
|
|
158
|
+
/**
|
|
159
|
+
* Gets or sets when pre-registration opens; null means no start boundary.
|
|
160
|
+
*/
|
|
161
|
+
preRegistrationOpensAt?: string | null;
|
|
162
|
+
/**
|
|
163
|
+
* Gets or sets when pre-registration closes; null means no end boundary.
|
|
164
|
+
*/
|
|
165
|
+
preRegistrationClosesAt?: string | null;
|
|
166
|
+
/**
|
|
167
|
+
* Gets or sets optional storefront message for pre-registration.
|
|
168
|
+
*/
|
|
169
|
+
preRegistrationMessage?: string | null;
|
|
154
170
|
emailSettings?: UpdateEmailSettings;
|
|
155
171
|
/**
|
|
156
172
|
* Gets or sets the session offers.
|
|
@@ -667,6 +667,7 @@ export class CoursesService {
|
|
|
667
667
|
searchGeoCenter,
|
|
668
668
|
distance,
|
|
669
669
|
additionalSupport,
|
|
670
|
+
timeOfDay,
|
|
670
671
|
activityId,
|
|
671
672
|
templateFieldPermissionsId,
|
|
672
673
|
templateFieldPermissionsIds,
|
|
@@ -810,6 +811,10 @@ export class CoursesService {
|
|
|
810
811
|
* Gets or sets AdditionalSupport.
|
|
811
812
|
*/
|
|
812
813
|
additionalSupport?: Array<string>;
|
|
814
|
+
/**
|
|
815
|
+
* Gets or sets time-of-day bucket (morning, afternoon, evening) for course session start times.
|
|
816
|
+
*/
|
|
817
|
+
timeOfDay?: string;
|
|
813
818
|
/**
|
|
814
819
|
* Gets or sets Activity id.
|
|
815
820
|
*/
|
|
@@ -903,6 +908,7 @@ export class CoursesService {
|
|
|
903
908
|
SearchGeoCenter: searchGeoCenter,
|
|
904
909
|
Distance: distance,
|
|
905
910
|
AdditionalSupport: additionalSupport,
|
|
911
|
+
TimeOfDay: timeOfDay,
|
|
906
912
|
ActivityId: activityId,
|
|
907
913
|
TemplateFieldPermissionsId: templateFieldPermissionsId,
|
|
908
914
|
TemplateFieldPermissionsIds: templateFieldPermissionsIds,
|
|
@@ -1045,6 +1051,7 @@ export class CoursesService {
|
|
|
1045
1051
|
searchGeoCenter,
|
|
1046
1052
|
distance,
|
|
1047
1053
|
additionalSupport,
|
|
1054
|
+
timeOfDay,
|
|
1048
1055
|
activityId,
|
|
1049
1056
|
templateFieldPermissionsId,
|
|
1050
1057
|
templateFieldPermissionsIds,
|
|
@@ -1188,6 +1195,10 @@ export class CoursesService {
|
|
|
1188
1195
|
* Gets or sets AdditionalSupport.
|
|
1189
1196
|
*/
|
|
1190
1197
|
additionalSupport?: Array<string>;
|
|
1198
|
+
/**
|
|
1199
|
+
* Gets or sets time-of-day bucket (morning, afternoon, evening) for course session start times.
|
|
1200
|
+
*/
|
|
1201
|
+
timeOfDay?: string;
|
|
1191
1202
|
/**
|
|
1192
1203
|
* Gets or sets Activity id.
|
|
1193
1204
|
*/
|
|
@@ -1281,6 +1292,7 @@ export class CoursesService {
|
|
|
1281
1292
|
SearchGeoCenter: searchGeoCenter,
|
|
1282
1293
|
Distance: distance,
|
|
1283
1294
|
AdditionalSupport: additionalSupport,
|
|
1295
|
+
TimeOfDay: timeOfDay,
|
|
1284
1296
|
ActivityId: activityId,
|
|
1285
1297
|
TemplateFieldPermissionsId: templateFieldPermissionsId,
|
|
1286
1298
|
TemplateFieldPermissionsIds: templateFieldPermissionsIds,
|
|
@@ -1342,6 +1354,7 @@ export class CoursesService {
|
|
|
1342
1354
|
searchGeoCenter,
|
|
1343
1355
|
distance,
|
|
1344
1356
|
additionalSupport,
|
|
1357
|
+
timeOfDay,
|
|
1345
1358
|
activityId,
|
|
1346
1359
|
templateFieldPermissionsId,
|
|
1347
1360
|
templateFieldPermissionsIds,
|
|
@@ -1485,6 +1498,10 @@ export class CoursesService {
|
|
|
1485
1498
|
* Gets or sets AdditionalSupport.
|
|
1486
1499
|
*/
|
|
1487
1500
|
additionalSupport?: Array<string>;
|
|
1501
|
+
/**
|
|
1502
|
+
* Gets or sets time-of-day bucket (morning, afternoon, evening) for course session start times.
|
|
1503
|
+
*/
|
|
1504
|
+
timeOfDay?: string;
|
|
1488
1505
|
/**
|
|
1489
1506
|
* Gets or sets Activity id.
|
|
1490
1507
|
*/
|
|
@@ -1578,6 +1595,7 @@ export class CoursesService {
|
|
|
1578
1595
|
SearchGeoCenter: searchGeoCenter,
|
|
1579
1596
|
Distance: distance,
|
|
1580
1597
|
AdditionalSupport: additionalSupport,
|
|
1598
|
+
TimeOfDay: timeOfDay,
|
|
1581
1599
|
ActivityId: activityId,
|
|
1582
1600
|
TemplateFieldPermissionsId: templateFieldPermissionsId,
|
|
1583
1601
|
TemplateFieldPermissionsIds: templateFieldPermissionsIds,
|
|
@@ -1639,6 +1657,7 @@ export class CoursesService {
|
|
|
1639
1657
|
searchGeoCenter,
|
|
1640
1658
|
distance,
|
|
1641
1659
|
additionalSupport,
|
|
1660
|
+
timeOfDay,
|
|
1642
1661
|
activityId,
|
|
1643
1662
|
templateFieldPermissionsId,
|
|
1644
1663
|
templateFieldPermissionsIds,
|
|
@@ -1782,6 +1801,10 @@ export class CoursesService {
|
|
|
1782
1801
|
* Gets or sets AdditionalSupport.
|
|
1783
1802
|
*/
|
|
1784
1803
|
additionalSupport?: Array<string>;
|
|
1804
|
+
/**
|
|
1805
|
+
* Gets or sets time-of-day bucket (morning, afternoon, evening) for course session start times.
|
|
1806
|
+
*/
|
|
1807
|
+
timeOfDay?: string;
|
|
1785
1808
|
/**
|
|
1786
1809
|
* Gets or sets Activity id.
|
|
1787
1810
|
*/
|
|
@@ -1875,6 +1898,7 @@ export class CoursesService {
|
|
|
1875
1898
|
SearchGeoCenter: searchGeoCenter,
|
|
1876
1899
|
Distance: distance,
|
|
1877
1900
|
AdditionalSupport: additionalSupport,
|
|
1901
|
+
TimeOfDay: timeOfDay,
|
|
1878
1902
|
ActivityId: activityId,
|
|
1879
1903
|
TemplateFieldPermissionsId: templateFieldPermissionsId,
|
|
1880
1904
|
TemplateFieldPermissionsIds: templateFieldPermissionsIds,
|
|
@@ -1936,6 +1960,7 @@ export class CoursesService {
|
|
|
1936
1960
|
searchGeoCenter,
|
|
1937
1961
|
distance,
|
|
1938
1962
|
additionalSupport,
|
|
1963
|
+
timeOfDay,
|
|
1939
1964
|
activityId,
|
|
1940
1965
|
templateFieldPermissionsId,
|
|
1941
1966
|
templateFieldPermissionsIds,
|
|
@@ -2079,6 +2104,10 @@ export class CoursesService {
|
|
|
2079
2104
|
* Gets or sets AdditionalSupport.
|
|
2080
2105
|
*/
|
|
2081
2106
|
additionalSupport?: Array<string>;
|
|
2107
|
+
/**
|
|
2108
|
+
* Gets or sets time-of-day bucket (morning, afternoon, evening) for course session start times.
|
|
2109
|
+
*/
|
|
2110
|
+
timeOfDay?: string;
|
|
2082
2111
|
/**
|
|
2083
2112
|
* Gets or sets Activity id.
|
|
2084
2113
|
*/
|
|
@@ -2172,6 +2201,7 @@ export class CoursesService {
|
|
|
2172
2201
|
SearchGeoCenter: searchGeoCenter,
|
|
2173
2202
|
Distance: distance,
|
|
2174
2203
|
AdditionalSupport: additionalSupport,
|
|
2204
|
+
TimeOfDay: timeOfDay,
|
|
2175
2205
|
ActivityId: activityId,
|
|
2176
2206
|
TemplateFieldPermissionsId: templateFieldPermissionsId,
|
|
2177
2207
|
TemplateFieldPermissionsIds: templateFieldPermissionsIds,
|
|
@@ -224,6 +224,8 @@ export class DealActivitiesService {
|
|
|
224
224
|
courseIds,
|
|
225
225
|
sessionId,
|
|
226
226
|
sessionIds,
|
|
227
|
+
sellableItemId,
|
|
228
|
+
sellableItemIds,
|
|
227
229
|
pageNumber,
|
|
228
230
|
take,
|
|
229
231
|
skip,
|
|
@@ -260,6 +262,14 @@ export class DealActivitiesService {
|
|
|
260
262
|
* Gets or sets the queryable session ids.
|
|
261
263
|
*/
|
|
262
264
|
sessionIds?: Array<string>;
|
|
265
|
+
/**
|
|
266
|
+
* Gets or sets the queryable sellable item id.
|
|
267
|
+
*/
|
|
268
|
+
sellableItemId?: string;
|
|
269
|
+
/**
|
|
270
|
+
* Gets or sets the queryable sellable item ids.
|
|
271
|
+
*/
|
|
272
|
+
sellableItemIds?: Array<string>;
|
|
263
273
|
/**
|
|
264
274
|
* Gets or sets the page number for paged queries.
|
|
265
275
|
*/
|
|
@@ -315,6 +325,8 @@ export class DealActivitiesService {
|
|
|
315
325
|
CourseIds: courseIds,
|
|
316
326
|
SessionId: sessionId,
|
|
317
327
|
SessionIds: sessionIds,
|
|
328
|
+
SellableItemId: sellableItemId,
|
|
329
|
+
SellableItemIds: sellableItemIds,
|
|
318
330
|
PageNumber: pageNumber,
|
|
319
331
|
Take: take,
|
|
320
332
|
Skip: skip,
|
|
@@ -428,6 +440,8 @@ export class DealActivitiesService {
|
|
|
428
440
|
courseIds,
|
|
429
441
|
sessionId,
|
|
430
442
|
sessionIds,
|
|
443
|
+
sellableItemId,
|
|
444
|
+
sellableItemIds,
|
|
431
445
|
pageNumber,
|
|
432
446
|
take,
|
|
433
447
|
skip,
|
|
@@ -464,6 +478,14 @@ export class DealActivitiesService {
|
|
|
464
478
|
* Gets or sets the queryable session ids.
|
|
465
479
|
*/
|
|
466
480
|
sessionIds?: Array<string>;
|
|
481
|
+
/**
|
|
482
|
+
* Gets or sets the queryable sellable item id.
|
|
483
|
+
*/
|
|
484
|
+
sellableItemId?: string;
|
|
485
|
+
/**
|
|
486
|
+
* Gets or sets the queryable sellable item ids.
|
|
487
|
+
*/
|
|
488
|
+
sellableItemIds?: Array<string>;
|
|
467
489
|
/**
|
|
468
490
|
* Gets or sets the page number for paged queries.
|
|
469
491
|
*/
|
|
@@ -519,6 +541,8 @@ export class DealActivitiesService {
|
|
|
519
541
|
CourseIds: courseIds,
|
|
520
542
|
SessionId: sessionId,
|
|
521
543
|
SessionIds: sessionIds,
|
|
544
|
+
SellableItemId: sellableItemId,
|
|
545
|
+
SellableItemIds: sellableItemIds,
|
|
522
546
|
PageNumber: pageNumber,
|
|
523
547
|
Take: take,
|
|
524
548
|
Skip: skip,
|
|
@@ -551,6 +575,8 @@ export class DealActivitiesService {
|
|
|
551
575
|
courseIds,
|
|
552
576
|
sessionId,
|
|
553
577
|
sessionIds,
|
|
578
|
+
sellableItemId,
|
|
579
|
+
sellableItemIds,
|
|
554
580
|
pageNumber,
|
|
555
581
|
take,
|
|
556
582
|
skip,
|
|
@@ -587,6 +613,14 @@ export class DealActivitiesService {
|
|
|
587
613
|
* Gets or sets the queryable session ids.
|
|
588
614
|
*/
|
|
589
615
|
sessionIds?: Array<string>;
|
|
616
|
+
/**
|
|
617
|
+
* Gets or sets the queryable sellable item id.
|
|
618
|
+
*/
|
|
619
|
+
sellableItemId?: string;
|
|
620
|
+
/**
|
|
621
|
+
* Gets or sets the queryable sellable item ids.
|
|
622
|
+
*/
|
|
623
|
+
sellableItemIds?: Array<string>;
|
|
590
624
|
/**
|
|
591
625
|
* Gets or sets the page number for paged queries.
|
|
592
626
|
*/
|
|
@@ -642,6 +676,8 @@ export class DealActivitiesService {
|
|
|
642
676
|
CourseIds: courseIds,
|
|
643
677
|
SessionId: sessionId,
|
|
644
678
|
SessionIds: sessionIds,
|
|
679
|
+
SellableItemId: sellableItemId,
|
|
680
|
+
SellableItemIds: sellableItemIds,
|
|
645
681
|
PageNumber: pageNumber,
|
|
646
682
|
Take: take,
|
|
647
683
|
Skip: skip,
|
|
@@ -674,6 +710,8 @@ export class DealActivitiesService {
|
|
|
674
710
|
courseIds,
|
|
675
711
|
sessionId,
|
|
676
712
|
sessionIds,
|
|
713
|
+
sellableItemId,
|
|
714
|
+
sellableItemIds,
|
|
677
715
|
pageNumber,
|
|
678
716
|
take,
|
|
679
717
|
skip,
|
|
@@ -710,6 +748,14 @@ export class DealActivitiesService {
|
|
|
710
748
|
* Gets or sets the queryable session ids.
|
|
711
749
|
*/
|
|
712
750
|
sessionIds?: Array<string>;
|
|
751
|
+
/**
|
|
752
|
+
* Gets or sets the queryable sellable item id.
|
|
753
|
+
*/
|
|
754
|
+
sellableItemId?: string;
|
|
755
|
+
/**
|
|
756
|
+
* Gets or sets the queryable sellable item ids.
|
|
757
|
+
*/
|
|
758
|
+
sellableItemIds?: Array<string>;
|
|
713
759
|
/**
|
|
714
760
|
* Gets or sets the page number for paged queries.
|
|
715
761
|
*/
|
|
@@ -765,6 +811,8 @@ export class DealActivitiesService {
|
|
|
765
811
|
CourseIds: courseIds,
|
|
766
812
|
SessionId: sessionId,
|
|
767
813
|
SessionIds: sessionIds,
|
|
814
|
+
SellableItemId: sellableItemId,
|
|
815
|
+
SellableItemIds: sellableItemIds,
|
|
768
816
|
PageNumber: pageNumber,
|
|
769
817
|
Take: take,
|
|
770
818
|
Skip: skip,
|
|
@@ -797,6 +845,8 @@ export class DealActivitiesService {
|
|
|
797
845
|
courseIds,
|
|
798
846
|
sessionId,
|
|
799
847
|
sessionIds,
|
|
848
|
+
sellableItemId,
|
|
849
|
+
sellableItemIds,
|
|
800
850
|
pageNumber,
|
|
801
851
|
take,
|
|
802
852
|
skip,
|
|
@@ -833,6 +883,14 @@ export class DealActivitiesService {
|
|
|
833
883
|
* Gets or sets the queryable session ids.
|
|
834
884
|
*/
|
|
835
885
|
sessionIds?: Array<string>;
|
|
886
|
+
/**
|
|
887
|
+
* Gets or sets the queryable sellable item id.
|
|
888
|
+
*/
|
|
889
|
+
sellableItemId?: string;
|
|
890
|
+
/**
|
|
891
|
+
* Gets or sets the queryable sellable item ids.
|
|
892
|
+
*/
|
|
893
|
+
sellableItemIds?: Array<string>;
|
|
836
894
|
/**
|
|
837
895
|
* Gets or sets the page number for paged queries.
|
|
838
896
|
*/
|
|
@@ -888,6 +946,8 @@ export class DealActivitiesService {
|
|
|
888
946
|
CourseIds: courseIds,
|
|
889
947
|
SessionId: sessionId,
|
|
890
948
|
SessionIds: sessionIds,
|
|
949
|
+
SellableItemId: sellableItemId,
|
|
950
|
+
SellableItemIds: sellableItemIds,
|
|
891
951
|
PageNumber: pageNumber,
|
|
892
952
|
Take: take,
|
|
893
953
|
Skip: skip,
|
|
@@ -155,6 +155,7 @@ export class EmailSettingsService {
|
|
|
155
155
|
facilityId,
|
|
156
156
|
sessionId,
|
|
157
157
|
courseId,
|
|
158
|
+
sellableItemId,
|
|
158
159
|
pageNumber,
|
|
159
160
|
take,
|
|
160
161
|
skip,
|
|
@@ -187,6 +188,10 @@ export class EmailSettingsService {
|
|
|
187
188
|
* Gets or sets the queryable Course Id.
|
|
188
189
|
*/
|
|
189
190
|
courseId?: string;
|
|
191
|
+
/**
|
|
192
|
+
* Gets or sets the queryable sellable item Id.
|
|
193
|
+
*/
|
|
194
|
+
sellableItemId?: string;
|
|
190
195
|
/**
|
|
191
196
|
* Gets or sets the page number for paged queries.
|
|
192
197
|
*/
|
|
@@ -241,6 +246,7 @@ export class EmailSettingsService {
|
|
|
241
246
|
FacilityId: facilityId,
|
|
242
247
|
SessionId: sessionId,
|
|
243
248
|
CourseId: courseId,
|
|
249
|
+
SellableItemId: sellableItemId,
|
|
244
250
|
PageNumber: pageNumber,
|
|
245
251
|
Take: take,
|
|
246
252
|
Skip: skip,
|
|
@@ -353,6 +359,7 @@ export class EmailSettingsService {
|
|
|
353
359
|
facilityId,
|
|
354
360
|
sessionId,
|
|
355
361
|
courseId,
|
|
362
|
+
sellableItemId,
|
|
356
363
|
pageNumber,
|
|
357
364
|
take,
|
|
358
365
|
skip,
|
|
@@ -385,6 +392,10 @@ export class EmailSettingsService {
|
|
|
385
392
|
* Gets or sets the queryable Course Id.
|
|
386
393
|
*/
|
|
387
394
|
courseId?: string;
|
|
395
|
+
/**
|
|
396
|
+
* Gets or sets the queryable sellable item Id.
|
|
397
|
+
*/
|
|
398
|
+
sellableItemId?: string;
|
|
388
399
|
/**
|
|
389
400
|
* Gets or sets the page number for paged queries.
|
|
390
401
|
*/
|
|
@@ -439,6 +450,7 @@ export class EmailSettingsService {
|
|
|
439
450
|
FacilityId: facilityId,
|
|
440
451
|
SessionId: sessionId,
|
|
441
452
|
CourseId: courseId,
|
|
453
|
+
SellableItemId: sellableItemId,
|
|
442
454
|
PageNumber: pageNumber,
|
|
443
455
|
Take: take,
|
|
444
456
|
Skip: skip,
|
|
@@ -470,6 +482,7 @@ export class EmailSettingsService {
|
|
|
470
482
|
facilityId,
|
|
471
483
|
sessionId,
|
|
472
484
|
courseId,
|
|
485
|
+
sellableItemId,
|
|
473
486
|
pageNumber,
|
|
474
487
|
take,
|
|
475
488
|
skip,
|
|
@@ -502,6 +515,10 @@ export class EmailSettingsService {
|
|
|
502
515
|
* Gets or sets the queryable Course Id.
|
|
503
516
|
*/
|
|
504
517
|
courseId?: string;
|
|
518
|
+
/**
|
|
519
|
+
* Gets or sets the queryable sellable item Id.
|
|
520
|
+
*/
|
|
521
|
+
sellableItemId?: string;
|
|
505
522
|
/**
|
|
506
523
|
* Gets or sets the page number for paged queries.
|
|
507
524
|
*/
|
|
@@ -556,6 +573,7 @@ export class EmailSettingsService {
|
|
|
556
573
|
FacilityId: facilityId,
|
|
557
574
|
SessionId: sessionId,
|
|
558
575
|
CourseId: courseId,
|
|
576
|
+
SellableItemId: sellableItemId,
|
|
559
577
|
PageNumber: pageNumber,
|
|
560
578
|
Take: take,
|
|
561
579
|
Skip: skip,
|
|
@@ -587,6 +605,7 @@ export class EmailSettingsService {
|
|
|
587
605
|
facilityId,
|
|
588
606
|
sessionId,
|
|
589
607
|
courseId,
|
|
608
|
+
sellableItemId,
|
|
590
609
|
pageNumber,
|
|
591
610
|
take,
|
|
592
611
|
skip,
|
|
@@ -619,6 +638,10 @@ export class EmailSettingsService {
|
|
|
619
638
|
* Gets or sets the queryable Course Id.
|
|
620
639
|
*/
|
|
621
640
|
courseId?: string;
|
|
641
|
+
/**
|
|
642
|
+
* Gets or sets the queryable sellable item Id.
|
|
643
|
+
*/
|
|
644
|
+
sellableItemId?: string;
|
|
622
645
|
/**
|
|
623
646
|
* Gets or sets the page number for paged queries.
|
|
624
647
|
*/
|
|
@@ -673,6 +696,7 @@ export class EmailSettingsService {
|
|
|
673
696
|
FacilityId: facilityId,
|
|
674
697
|
SessionId: sessionId,
|
|
675
698
|
CourseId: courseId,
|
|
699
|
+
SellableItemId: sellableItemId,
|
|
676
700
|
PageNumber: pageNumber,
|
|
677
701
|
Take: take,
|
|
678
702
|
Skip: skip,
|
|
@@ -704,6 +728,7 @@ export class EmailSettingsService {
|
|
|
704
728
|
facilityId,
|
|
705
729
|
sessionId,
|
|
706
730
|
courseId,
|
|
731
|
+
sellableItemId,
|
|
707
732
|
pageNumber,
|
|
708
733
|
take,
|
|
709
734
|
skip,
|
|
@@ -736,6 +761,10 @@ export class EmailSettingsService {
|
|
|
736
761
|
* Gets or sets the queryable Course Id.
|
|
737
762
|
*/
|
|
738
763
|
courseId?: string;
|
|
764
|
+
/**
|
|
765
|
+
* Gets or sets the queryable sellable item Id.
|
|
766
|
+
*/
|
|
767
|
+
sellableItemId?: string;
|
|
739
768
|
/**
|
|
740
769
|
* Gets or sets the page number for paged queries.
|
|
741
770
|
*/
|
|
@@ -790,6 +819,7 @@ export class EmailSettingsService {
|
|
|
790
819
|
FacilityId: facilityId,
|
|
791
820
|
SessionId: sessionId,
|
|
792
821
|
CourseId: courseId,
|
|
822
|
+
SellableItemId: sellableItemId,
|
|
793
823
|
PageNumber: pageNumber,
|
|
794
824
|
Take: take,
|
|
795
825
|
Skip: skip,
|