reach-api-sdk 1.0.190 → 1.0.192
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 +756 -419
- package/dist/reach-sdk.js +355 -182
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +1129 -651
- package/src/index.ts +4 -0
- package/src/models/Course.ts +4 -0
- package/src/models/EndUserIdentity.ts +30 -0
- package/src/models/EndUserIdentitySecureToken.ts +2 -0
- package/src/models/EventTiming.ts +12 -0
- package/src/models/Session.ts +4 -0
- package/src/models/TenantWebsiteSetting.ts +3 -0
- package/src/models/UpcomingLayout.ts +12 -0
- package/src/services/BookingService.ts +36 -0
- package/src/services/CoursesService.ts +24 -0
- package/src/services/DealsService.ts +24 -0
- package/src/services/EndUserIdentitySecureTokenService.ts +4 -4
- package/src/services/LeasingService.ts +24 -0
- package/src/services/OrderItemsService.ts +73 -0
- package/src/services/OrdersService.ts +24 -0
- package/src/services/PublicBookingService.ts +12 -0
- package/src/services/PublicCalendarService.ts +57 -0
- package/src/services/PublicCoursesService.ts +12 -0
- package/src/services/PublicLeasingService.ts +12 -0
- package/src/services/PublicNetworksService.ts +6 -0
- package/src/services/PublicOrderItemsService.ts +201 -168
- package/src/services/PublicOrdersService.ts +239 -231
- package/src/services/PublicScheduledSessionsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +18 -0
- package/src/services/ScheduledSessionsSchedulesService.ts +24 -0
- package/src/services/ScheduledSessionsService.ts +24 -0
- package/src/services/SessionsService.ts +24 -0
package/dist/reach-sdk.js
CHANGED
|
@@ -1797,6 +1797,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
1797
1797
|
orderStages,
|
|
1798
1798
|
orderDateGte,
|
|
1799
1799
|
orderDateLte,
|
|
1800
|
+
endUserIdentityId,
|
|
1800
1801
|
pageNumber,
|
|
1801
1802
|
take,
|
|
1802
1803
|
skip,
|
|
@@ -1832,6 +1833,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
1832
1833
|
OrderStages: orderStages,
|
|
1833
1834
|
OrderDateGTE: orderDateGte,
|
|
1834
1835
|
OrderDateLTE: orderDateLte,
|
|
1836
|
+
EndUserIdentityId: endUserIdentityId,
|
|
1835
1837
|
PageNumber: pageNumber,
|
|
1836
1838
|
Take: take,
|
|
1837
1839
|
Skip: skip,
|
|
@@ -1878,6 +1880,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
1878
1880
|
orderStages,
|
|
1879
1881
|
orderDateGte,
|
|
1880
1882
|
orderDateLte,
|
|
1883
|
+
endUserIdentityId,
|
|
1881
1884
|
pageNumber,
|
|
1882
1885
|
take,
|
|
1883
1886
|
skip,
|
|
@@ -1913,6 +1916,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
1913
1916
|
OrderStages: orderStages,
|
|
1914
1917
|
OrderDateGTE: orderDateGte,
|
|
1915
1918
|
OrderDateLTE: orderDateLte,
|
|
1919
|
+
EndUserIdentityId: endUserIdentityId,
|
|
1916
1920
|
PageNumber: pageNumber,
|
|
1917
1921
|
Take: take,
|
|
1918
1922
|
Skip: skip,
|
|
@@ -2058,6 +2062,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2058
2062
|
orderStages,
|
|
2059
2063
|
orderDateGte,
|
|
2060
2064
|
orderDateLte,
|
|
2065
|
+
endUserIdentityId,
|
|
2061
2066
|
pageNumber,
|
|
2062
2067
|
take,
|
|
2063
2068
|
skip,
|
|
@@ -2092,6 +2097,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2092
2097
|
OrderStages: orderStages,
|
|
2093
2098
|
OrderDateGTE: orderDateGte,
|
|
2094
2099
|
OrderDateLTE: orderDateLte,
|
|
2100
|
+
EndUserIdentityId: endUserIdentityId,
|
|
2095
2101
|
PageNumber: pageNumber,
|
|
2096
2102
|
Take: take,
|
|
2097
2103
|
Skip: skip,
|
|
@@ -2198,6 +2204,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2198
2204
|
orderStages,
|
|
2199
2205
|
orderDateGte,
|
|
2200
2206
|
orderDateLte,
|
|
2207
|
+
endUserIdentityId,
|
|
2201
2208
|
pageNumber,
|
|
2202
2209
|
take,
|
|
2203
2210
|
skip,
|
|
@@ -2232,6 +2239,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2232
2239
|
OrderStages: orderStages,
|
|
2233
2240
|
OrderDateGTE: orderDateGte,
|
|
2234
2241
|
OrderDateLTE: orderDateLte,
|
|
2242
|
+
EndUserIdentityId: endUserIdentityId,
|
|
2235
2243
|
PageNumber: pageNumber,
|
|
2236
2244
|
Take: take,
|
|
2237
2245
|
Skip: skip,
|
|
@@ -2275,6 +2283,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2275
2283
|
orderStages,
|
|
2276
2284
|
orderDateGte,
|
|
2277
2285
|
orderDateLte,
|
|
2286
|
+
endUserIdentityId,
|
|
2278
2287
|
pageNumber,
|
|
2279
2288
|
take,
|
|
2280
2289
|
skip,
|
|
@@ -2309,6 +2318,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2309
2318
|
OrderStages: orderStages,
|
|
2310
2319
|
OrderDateGTE: orderDateGte,
|
|
2311
2320
|
OrderDateLTE: orderDateLte,
|
|
2321
|
+
EndUserIdentityId: endUserIdentityId,
|
|
2312
2322
|
PageNumber: pageNumber,
|
|
2313
2323
|
Take: take,
|
|
2314
2324
|
Skip: skip,
|
|
@@ -2352,6 +2362,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2352
2362
|
orderStages,
|
|
2353
2363
|
orderDateGte,
|
|
2354
2364
|
orderDateLte,
|
|
2365
|
+
endUserIdentityId,
|
|
2355
2366
|
pageNumber,
|
|
2356
2367
|
take,
|
|
2357
2368
|
skip,
|
|
@@ -2386,6 +2397,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2386
2397
|
OrderStages: orderStages,
|
|
2387
2398
|
OrderDateGTE: orderDateGte,
|
|
2388
2399
|
OrderDateLTE: orderDateLte,
|
|
2400
|
+
EndUserIdentityId: endUserIdentityId,
|
|
2389
2401
|
PageNumber: pageNumber,
|
|
2390
2402
|
Take: take,
|
|
2391
2403
|
Skip: skip,
|
|
@@ -3282,6 +3294,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3282
3294
|
remainingUsesGte,
|
|
3283
3295
|
futureOnly,
|
|
3284
3296
|
online,
|
|
3297
|
+
featured,
|
|
3285
3298
|
hasAvailability,
|
|
3286
3299
|
orderFirstNameContains,
|
|
3287
3300
|
orderLastNameContains,
|
|
@@ -3327,6 +3340,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3327
3340
|
RemainingUsesGTE: remainingUsesGte,
|
|
3328
3341
|
FutureOnly: futureOnly,
|
|
3329
3342
|
Online: online,
|
|
3343
|
+
Featured: featured,
|
|
3330
3344
|
HasAvailability: hasAvailability,
|
|
3331
3345
|
OrderFirstNameContains: orderFirstNameContains,
|
|
3332
3346
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -3444,6 +3458,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3444
3458
|
remainingUsesGte,
|
|
3445
3459
|
futureOnly,
|
|
3446
3460
|
online,
|
|
3461
|
+
featured,
|
|
3447
3462
|
hasAvailability,
|
|
3448
3463
|
orderFirstNameContains,
|
|
3449
3464
|
orderLastNameContains,
|
|
@@ -3489,6 +3504,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3489
3504
|
RemainingUsesGTE: remainingUsesGte,
|
|
3490
3505
|
FutureOnly: futureOnly,
|
|
3491
3506
|
Online: online,
|
|
3507
|
+
Featured: featured,
|
|
3492
3508
|
HasAvailability: hasAvailability,
|
|
3493
3509
|
OrderFirstNameContains: orderFirstNameContains,
|
|
3494
3510
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -3543,6 +3559,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3543
3559
|
remainingUsesGte,
|
|
3544
3560
|
futureOnly,
|
|
3545
3561
|
online,
|
|
3562
|
+
featured,
|
|
3546
3563
|
hasAvailability,
|
|
3547
3564
|
orderFirstNameContains,
|
|
3548
3565
|
orderLastNameContains,
|
|
@@ -3588,6 +3605,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3588
3605
|
RemainingUsesGTE: remainingUsesGte,
|
|
3589
3606
|
FutureOnly: futureOnly,
|
|
3590
3607
|
Online: online,
|
|
3608
|
+
Featured: featured,
|
|
3591
3609
|
HasAvailability: hasAvailability,
|
|
3592
3610
|
OrderFirstNameContains: orderFirstNameContains,
|
|
3593
3611
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -3642,6 +3660,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3642
3660
|
remainingUsesGte,
|
|
3643
3661
|
futureOnly,
|
|
3644
3662
|
online,
|
|
3663
|
+
featured,
|
|
3645
3664
|
hasAvailability,
|
|
3646
3665
|
orderFirstNameContains,
|
|
3647
3666
|
orderLastNameContains,
|
|
@@ -3687,6 +3706,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
3687
3706
|
RemainingUsesGTE: remainingUsesGte,
|
|
3688
3707
|
FutureOnly: futureOnly,
|
|
3689
3708
|
Online: online,
|
|
3709
|
+
Featured: featured,
|
|
3690
3710
|
HasAvailability: hasAvailability,
|
|
3691
3711
|
OrderFirstNameContains: orderFirstNameContains,
|
|
3692
3712
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -5762,6 +5782,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5762
5782
|
ids,
|
|
5763
5783
|
target,
|
|
5764
5784
|
type,
|
|
5785
|
+
types,
|
|
5765
5786
|
discountCode,
|
|
5766
5787
|
pageNumber,
|
|
5767
5788
|
take,
|
|
@@ -5783,6 +5804,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5783
5804
|
Ids: ids,
|
|
5784
5805
|
Target: target,
|
|
5785
5806
|
Type: type,
|
|
5807
|
+
Types: types,
|
|
5786
5808
|
DiscountCode: discountCode,
|
|
5787
5809
|
PageNumber: pageNumber,
|
|
5788
5810
|
Take: take,
|
|
@@ -5876,6 +5898,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5876
5898
|
ids,
|
|
5877
5899
|
target,
|
|
5878
5900
|
type,
|
|
5901
|
+
types,
|
|
5879
5902
|
discountCode,
|
|
5880
5903
|
pageNumber,
|
|
5881
5904
|
take,
|
|
@@ -5897,6 +5920,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5897
5920
|
Ids: ids,
|
|
5898
5921
|
Target: target,
|
|
5899
5922
|
Type: type,
|
|
5923
|
+
Types: types,
|
|
5900
5924
|
DiscountCode: discountCode,
|
|
5901
5925
|
PageNumber: pageNumber,
|
|
5902
5926
|
Take: take,
|
|
@@ -5927,6 +5951,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5927
5951
|
ids,
|
|
5928
5952
|
target,
|
|
5929
5953
|
type,
|
|
5954
|
+
types,
|
|
5930
5955
|
discountCode,
|
|
5931
5956
|
pageNumber,
|
|
5932
5957
|
take,
|
|
@@ -5948,6 +5973,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5948
5973
|
Ids: ids,
|
|
5949
5974
|
Target: target,
|
|
5950
5975
|
Type: type,
|
|
5976
|
+
Types: types,
|
|
5951
5977
|
DiscountCode: discountCode,
|
|
5952
5978
|
PageNumber: pageNumber,
|
|
5953
5979
|
Take: take,
|
|
@@ -5978,6 +6004,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5978
6004
|
ids,
|
|
5979
6005
|
target,
|
|
5980
6006
|
type,
|
|
6007
|
+
types,
|
|
5981
6008
|
discountCode,
|
|
5982
6009
|
pageNumber,
|
|
5983
6010
|
take,
|
|
@@ -5999,6 +6026,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5999
6026
|
Ids: ids,
|
|
6000
6027
|
Target: target,
|
|
6001
6028
|
Type: type,
|
|
6029
|
+
Types: types,
|
|
6002
6030
|
DiscountCode: discountCode,
|
|
6003
6031
|
PageNumber: pageNumber,
|
|
6004
6032
|
Take: take,
|
|
@@ -7146,7 +7174,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7146
7174
|
}) {
|
|
7147
7175
|
return this.httpRequest.request({
|
|
7148
7176
|
method: "GET",
|
|
7149
|
-
url: "/api/end-user-identity-secure-tokens/{id}",
|
|
7177
|
+
url: "/api/public/end-user-identity-secure-tokens/{id}",
|
|
7150
7178
|
path: {
|
|
7151
7179
|
id
|
|
7152
7180
|
},
|
|
@@ -7167,7 +7195,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7167
7195
|
}) {
|
|
7168
7196
|
return this.httpRequest.request({
|
|
7169
7197
|
method: "POST",
|
|
7170
|
-
url: "/api/end-user-identity-secure-tokens/resolve",
|
|
7198
|
+
url: "/api/public/end-user-identity-secure-tokens/resolve",
|
|
7171
7199
|
body: requestBody,
|
|
7172
7200
|
mediaType: "application/json",
|
|
7173
7201
|
errors: {
|
|
@@ -7198,7 +7226,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7198
7226
|
}) {
|
|
7199
7227
|
return this.httpRequest.request({
|
|
7200
7228
|
method: "GET",
|
|
7201
|
-
url: "/api/end-user-identity-secure-tokens",
|
|
7229
|
+
url: "/api/public/end-user-identity-secure-tokens",
|
|
7202
7230
|
query: {
|
|
7203
7231
|
Token: token,
|
|
7204
7232
|
PageNumber: pageNumber,
|
|
@@ -7228,7 +7256,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7228
7256
|
backfillTokens() {
|
|
7229
7257
|
return this.httpRequest.request({
|
|
7230
7258
|
method: "GET",
|
|
7231
|
-
url: "/api/end-user-identity-secure-tokens/back-fill",
|
|
7259
|
+
url: "/api/public/end-user-identity-secure-tokens/back-fill",
|
|
7232
7260
|
errors: {
|
|
7233
7261
|
400: `Bad Request`,
|
|
7234
7262
|
422: `Unprocessable Content`,
|
|
@@ -9901,6 +9929,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9901
9929
|
orderStages,
|
|
9902
9930
|
orderDateGte,
|
|
9903
9931
|
orderDateLte,
|
|
9932
|
+
endUserIdentityId,
|
|
9904
9933
|
pageNumber,
|
|
9905
9934
|
take,
|
|
9906
9935
|
skip,
|
|
@@ -9934,6 +9963,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
9934
9963
|
OrderStages: orderStages,
|
|
9935
9964
|
OrderDateGTE: orderDateGte,
|
|
9936
9965
|
OrderDateLTE: orderDateLte,
|
|
9966
|
+
EndUserIdentityId: endUserIdentityId,
|
|
9937
9967
|
PageNumber: pageNumber,
|
|
9938
9968
|
Take: take,
|
|
9939
9969
|
Skip: skip,
|
|
@@ -10039,6 +10069,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10039
10069
|
orderStages,
|
|
10040
10070
|
orderDateGte,
|
|
10041
10071
|
orderDateLte,
|
|
10072
|
+
endUserIdentityId,
|
|
10042
10073
|
pageNumber,
|
|
10043
10074
|
take,
|
|
10044
10075
|
skip,
|
|
@@ -10072,6 +10103,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10072
10103
|
OrderStages: orderStages,
|
|
10073
10104
|
OrderDateGTE: orderDateGte,
|
|
10074
10105
|
OrderDateLTE: orderDateLte,
|
|
10106
|
+
EndUserIdentityId: endUserIdentityId,
|
|
10075
10107
|
PageNumber: pageNumber,
|
|
10076
10108
|
Take: take,
|
|
10077
10109
|
Skip: skip,
|
|
@@ -10114,6 +10146,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10114
10146
|
orderStages,
|
|
10115
10147
|
orderDateGte,
|
|
10116
10148
|
orderDateLte,
|
|
10149
|
+
endUserIdentityId,
|
|
10117
10150
|
pageNumber,
|
|
10118
10151
|
take,
|
|
10119
10152
|
skip,
|
|
@@ -10147,6 +10180,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10147
10180
|
OrderStages: orderStages,
|
|
10148
10181
|
OrderDateGTE: orderDateGte,
|
|
10149
10182
|
OrderDateLTE: orderDateLte,
|
|
10183
|
+
EndUserIdentityId: endUserIdentityId,
|
|
10150
10184
|
PageNumber: pageNumber,
|
|
10151
10185
|
Take: take,
|
|
10152
10186
|
Skip: skip,
|
|
@@ -10189,6 +10223,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10189
10223
|
orderStages,
|
|
10190
10224
|
orderDateGte,
|
|
10191
10225
|
orderDateLte,
|
|
10226
|
+
endUserIdentityId,
|
|
10192
10227
|
pageNumber,
|
|
10193
10228
|
take,
|
|
10194
10229
|
skip,
|
|
@@ -10222,6 +10257,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10222
10257
|
OrderStages: orderStages,
|
|
10223
10258
|
OrderDateGTE: orderDateGte,
|
|
10224
10259
|
OrderDateLTE: orderDateLte,
|
|
10260
|
+
EndUserIdentityId: endUserIdentityId,
|
|
10225
10261
|
PageNumber: pageNumber,
|
|
10226
10262
|
Take: take,
|
|
10227
10263
|
Skip: skip,
|
|
@@ -13775,6 +13811,9 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13775
13811
|
status,
|
|
13776
13812
|
statuses,
|
|
13777
13813
|
parentOrderItemId,
|
|
13814
|
+
orderByOpportunityStartdate,
|
|
13815
|
+
eventTiming,
|
|
13816
|
+
endUserIdentityId,
|
|
13778
13817
|
pageNumber,
|
|
13779
13818
|
take,
|
|
13780
13819
|
skip,
|
|
@@ -13799,6 +13838,9 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13799
13838
|
Status: status,
|
|
13800
13839
|
Statuses: statuses,
|
|
13801
13840
|
ParentOrderItemId: parentOrderItemId,
|
|
13841
|
+
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
13842
|
+
EventTiming: eventTiming,
|
|
13843
|
+
EndUserIdentityId: endUserIdentityId,
|
|
13802
13844
|
PageNumber: pageNumber,
|
|
13803
13845
|
Take: take,
|
|
13804
13846
|
Skip: skip,
|
|
@@ -13895,6 +13937,9 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13895
13937
|
status,
|
|
13896
13938
|
statuses,
|
|
13897
13939
|
parentOrderItemId,
|
|
13940
|
+
orderByOpportunityStartdate,
|
|
13941
|
+
eventTiming,
|
|
13942
|
+
endUserIdentityId,
|
|
13898
13943
|
pageNumber,
|
|
13899
13944
|
take,
|
|
13900
13945
|
skip,
|
|
@@ -13919,6 +13964,9 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13919
13964
|
Status: status,
|
|
13920
13965
|
Statuses: statuses,
|
|
13921
13966
|
ParentOrderItemId: parentOrderItemId,
|
|
13967
|
+
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
13968
|
+
EventTiming: eventTiming,
|
|
13969
|
+
EndUserIdentityId: endUserIdentityId,
|
|
13922
13970
|
PageNumber: pageNumber,
|
|
13923
13971
|
Take: take,
|
|
13924
13972
|
Skip: skip,
|
|
@@ -13952,6 +14000,9 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13952
14000
|
status,
|
|
13953
14001
|
statuses,
|
|
13954
14002
|
parentOrderItemId,
|
|
14003
|
+
orderByOpportunityStartdate,
|
|
14004
|
+
eventTiming,
|
|
14005
|
+
endUserIdentityId,
|
|
13955
14006
|
pageNumber,
|
|
13956
14007
|
take,
|
|
13957
14008
|
skip,
|
|
@@ -13976,6 +14027,9 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13976
14027
|
Status: status,
|
|
13977
14028
|
Statuses: statuses,
|
|
13978
14029
|
ParentOrderItemId: parentOrderItemId,
|
|
14030
|
+
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
14031
|
+
EventTiming: eventTiming,
|
|
14032
|
+
EndUserIdentityId: endUserIdentityId,
|
|
13979
14033
|
PageNumber: pageNumber,
|
|
13980
14034
|
Take: take,
|
|
13981
14035
|
Skip: skip,
|
|
@@ -14009,6 +14063,9 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14009
14063
|
status,
|
|
14010
14064
|
statuses,
|
|
14011
14065
|
parentOrderItemId,
|
|
14066
|
+
orderByOpportunityStartdate,
|
|
14067
|
+
eventTiming,
|
|
14068
|
+
endUserIdentityId,
|
|
14012
14069
|
pageNumber,
|
|
14013
14070
|
take,
|
|
14014
14071
|
skip,
|
|
@@ -14033,6 +14090,9 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14033
14090
|
Status: status,
|
|
14034
14091
|
Statuses: statuses,
|
|
14035
14092
|
ParentOrderItemId: parentOrderItemId,
|
|
14093
|
+
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
14094
|
+
EventTiming: eventTiming,
|
|
14095
|
+
EndUserIdentityId: endUserIdentityId,
|
|
14036
14096
|
PageNumber: pageNumber,
|
|
14037
14097
|
Take: take,
|
|
14038
14098
|
Skip: skip,
|
|
@@ -14405,6 +14465,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14405
14465
|
orderStages,
|
|
14406
14466
|
orderDateGte,
|
|
14407
14467
|
orderDateLte,
|
|
14468
|
+
endUserIdentityId,
|
|
14408
14469
|
pageNumber,
|
|
14409
14470
|
take,
|
|
14410
14471
|
skip,
|
|
@@ -14438,6 +14499,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14438
14499
|
OrderStages: orderStages,
|
|
14439
14500
|
OrderDateGTE: orderDateGte,
|
|
14440
14501
|
OrderDateLTE: orderDateLte,
|
|
14502
|
+
EndUserIdentityId: endUserIdentityId,
|
|
14441
14503
|
PageNumber: pageNumber,
|
|
14442
14504
|
Take: take,
|
|
14443
14505
|
Skip: skip,
|
|
@@ -14543,6 +14605,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14543
14605
|
orderStages,
|
|
14544
14606
|
orderDateGte,
|
|
14545
14607
|
orderDateLte,
|
|
14608
|
+
endUserIdentityId,
|
|
14546
14609
|
pageNumber,
|
|
14547
14610
|
take,
|
|
14548
14611
|
skip,
|
|
@@ -14576,6 +14639,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14576
14639
|
OrderStages: orderStages,
|
|
14577
14640
|
OrderDateGTE: orderDateGte,
|
|
14578
14641
|
OrderDateLTE: orderDateLte,
|
|
14642
|
+
EndUserIdentityId: endUserIdentityId,
|
|
14579
14643
|
PageNumber: pageNumber,
|
|
14580
14644
|
Take: take,
|
|
14581
14645
|
Skip: skip,
|
|
@@ -14618,6 +14682,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14618
14682
|
orderStages,
|
|
14619
14683
|
orderDateGte,
|
|
14620
14684
|
orderDateLte,
|
|
14685
|
+
endUserIdentityId,
|
|
14621
14686
|
pageNumber,
|
|
14622
14687
|
take,
|
|
14623
14688
|
skip,
|
|
@@ -14651,6 +14716,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14651
14716
|
OrderStages: orderStages,
|
|
14652
14717
|
OrderDateGTE: orderDateGte,
|
|
14653
14718
|
OrderDateLTE: orderDateLte,
|
|
14719
|
+
EndUserIdentityId: endUserIdentityId,
|
|
14654
14720
|
PageNumber: pageNumber,
|
|
14655
14721
|
Take: take,
|
|
14656
14722
|
Skip: skip,
|
|
@@ -14693,6 +14759,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14693
14759
|
orderStages,
|
|
14694
14760
|
orderDateGte,
|
|
14695
14761
|
orderDateLte,
|
|
14762
|
+
endUserIdentityId,
|
|
14696
14763
|
pageNumber,
|
|
14697
14764
|
take,
|
|
14698
14765
|
skip,
|
|
@@ -14726,6 +14793,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14726
14793
|
OrderStages: orderStages,
|
|
14727
14794
|
OrderDateGTE: orderDateGte,
|
|
14728
14795
|
OrderDateLTE: orderDateLte,
|
|
14796
|
+
EndUserIdentityId: endUserIdentityId,
|
|
14729
14797
|
PageNumber: pageNumber,
|
|
14730
14798
|
Take: take,
|
|
14731
14799
|
Skip: skip,
|
|
@@ -17962,6 +18030,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
17962
18030
|
orderStages,
|
|
17963
18031
|
orderDateGte,
|
|
17964
18032
|
orderDateLte,
|
|
18033
|
+
endUserIdentityId,
|
|
17965
18034
|
pageNumber,
|
|
17966
18035
|
take,
|
|
17967
18036
|
skip,
|
|
@@ -17999,6 +18068,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
17999
18068
|
OrderStages: orderStages,
|
|
18000
18069
|
OrderDateGTE: orderDateGte,
|
|
18001
18070
|
OrderDateLTE: orderDateLte,
|
|
18071
|
+
EndUserIdentityId: endUserIdentityId,
|
|
18002
18072
|
PageNumber: pageNumber,
|
|
18003
18073
|
Take: take,
|
|
18004
18074
|
Skip: skip,
|
|
@@ -18093,6 +18163,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18093
18163
|
orderStages,
|
|
18094
18164
|
orderDateGte,
|
|
18095
18165
|
orderDateLte,
|
|
18166
|
+
endUserIdentityId,
|
|
18096
18167
|
pageNumber,
|
|
18097
18168
|
take,
|
|
18098
18169
|
skip,
|
|
@@ -18130,6 +18201,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18130
18201
|
OrderStages: orderStages,
|
|
18131
18202
|
OrderDateGTE: orderDateGte,
|
|
18132
18203
|
OrderDateLTE: orderDateLte,
|
|
18204
|
+
EndUserIdentityId: endUserIdentityId,
|
|
18133
18205
|
PageNumber: pageNumber,
|
|
18134
18206
|
Take: take,
|
|
18135
18207
|
Skip: skip,
|
|
@@ -18149,6 +18221,39 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18149
18221
|
}
|
|
18150
18222
|
});
|
|
18151
18223
|
}
|
|
18224
|
+
}class PublicCalendarService {
|
|
18225
|
+
constructor(httpRequest) {
|
|
18226
|
+
this.httpRequest = httpRequest;
|
|
18227
|
+
}
|
|
18228
|
+
/**
|
|
18229
|
+
* Gets calendar data.
|
|
18230
|
+
* @returns any OK
|
|
18231
|
+
* @throws ApiError
|
|
18232
|
+
*/
|
|
18233
|
+
getCalendarView({
|
|
18234
|
+
xTenantSubdomain,
|
|
18235
|
+
startDateTimeGte,
|
|
18236
|
+
venueId,
|
|
18237
|
+
programmeId
|
|
18238
|
+
}) {
|
|
18239
|
+
return this.httpRequest.request({
|
|
18240
|
+
method: "GET",
|
|
18241
|
+
url: "/api/public/calendar",
|
|
18242
|
+
headers: {
|
|
18243
|
+
"x-tenant-subdomain": xTenantSubdomain
|
|
18244
|
+
},
|
|
18245
|
+
query: {
|
|
18246
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
18247
|
+
VenueId: venueId,
|
|
18248
|
+
ProgrammeId: programmeId
|
|
18249
|
+
},
|
|
18250
|
+
errors: {
|
|
18251
|
+
400: `Bad Request`,
|
|
18252
|
+
422: `Unprocessable Content`,
|
|
18253
|
+
500: `Internal Server Error`
|
|
18254
|
+
}
|
|
18255
|
+
});
|
|
18256
|
+
}
|
|
18152
18257
|
}class PublicCoursesService {
|
|
18153
18258
|
constructor(httpRequest) {
|
|
18154
18259
|
this.httpRequest = httpRequest;
|
|
@@ -18228,6 +18333,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18228
18333
|
remainingUsesGte,
|
|
18229
18334
|
futureOnly,
|
|
18230
18335
|
online,
|
|
18336
|
+
featured,
|
|
18231
18337
|
hasAvailability,
|
|
18232
18338
|
orderFirstNameContains,
|
|
18233
18339
|
orderLastNameContains,
|
|
@@ -18276,6 +18382,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18276
18382
|
RemainingUsesGTE: remainingUsesGte,
|
|
18277
18383
|
FutureOnly: futureOnly,
|
|
18278
18384
|
Online: online,
|
|
18385
|
+
Featured: featured,
|
|
18279
18386
|
HasAvailability: hasAvailability,
|
|
18280
18387
|
OrderFirstNameContains: orderFirstNameContains,
|
|
18281
18388
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -18427,6 +18534,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18427
18534
|
remainingUsesGte,
|
|
18428
18535
|
futureOnly,
|
|
18429
18536
|
online,
|
|
18537
|
+
featured,
|
|
18430
18538
|
hasAvailability,
|
|
18431
18539
|
orderFirstNameContains,
|
|
18432
18540
|
orderLastNameContains,
|
|
@@ -18475,6 +18583,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18475
18583
|
RemainingUsesGTE: remainingUsesGte,
|
|
18476
18584
|
FutureOnly: futureOnly,
|
|
18477
18585
|
Online: online,
|
|
18586
|
+
Featured: featured,
|
|
18478
18587
|
HasAvailability: hasAvailability,
|
|
18479
18588
|
OrderFirstNameContains: orderFirstNameContains,
|
|
18480
18589
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -19838,6 +19947,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19838
19947
|
orderStages,
|
|
19839
19948
|
orderDateGte,
|
|
19840
19949
|
orderDateLte,
|
|
19950
|
+
endUserIdentityId,
|
|
19841
19951
|
pageNumber,
|
|
19842
19952
|
take,
|
|
19843
19953
|
skip,
|
|
@@ -19874,6 +19984,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19874
19984
|
OrderStages: orderStages,
|
|
19875
19985
|
OrderDateGTE: orderDateGte,
|
|
19876
19986
|
OrderDateLTE: orderDateLte,
|
|
19987
|
+
EndUserIdentityId: endUserIdentityId,
|
|
19877
19988
|
PageNumber: pageNumber,
|
|
19878
19989
|
Take: take,
|
|
19879
19990
|
Skip: skip,
|
|
@@ -19917,6 +20028,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19917
20028
|
orderStages,
|
|
19918
20029
|
orderDateGte,
|
|
19919
20030
|
orderDateLte,
|
|
20031
|
+
endUserIdentityId,
|
|
19920
20032
|
pageNumber,
|
|
19921
20033
|
take,
|
|
19922
20034
|
skip,
|
|
@@ -19953,6 +20065,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19953
20065
|
OrderStages: orderStages,
|
|
19954
20066
|
OrderDateGTE: orderDateGte,
|
|
19955
20067
|
OrderDateLTE: orderDateLte,
|
|
20068
|
+
EndUserIdentityId: endUserIdentityId,
|
|
19956
20069
|
PageNumber: pageNumber,
|
|
19957
20070
|
Take: take,
|
|
19958
20071
|
Skip: skip,
|
|
@@ -19989,6 +20102,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19989
20102
|
paymentPolicyId,
|
|
19990
20103
|
futureOnly,
|
|
19991
20104
|
online,
|
|
20105
|
+
featured,
|
|
19992
20106
|
programmeId,
|
|
19993
20107
|
includeNextOpportunity,
|
|
19994
20108
|
allowTemplating,
|
|
@@ -20034,6 +20148,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20034
20148
|
PaymentPolicyId: paymentPolicyId,
|
|
20035
20149
|
FutureOnly: futureOnly,
|
|
20036
20150
|
Online: online,
|
|
20151
|
+
Featured: featured,
|
|
20037
20152
|
ProgrammeId: programmeId,
|
|
20038
20153
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
20039
20154
|
AllowTemplating: allowTemplating,
|
|
@@ -20407,6 +20522,96 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20407
20522
|
constructor(httpRequest) {
|
|
20408
20523
|
this.httpRequest = httpRequest;
|
|
20409
20524
|
}
|
|
20525
|
+
/**
|
|
20526
|
+
* @returns OrderItemPage OK
|
|
20527
|
+
* @throws ApiError
|
|
20528
|
+
*/
|
|
20529
|
+
getPage({
|
|
20530
|
+
xTenantSubdomain,
|
|
20531
|
+
ids,
|
|
20532
|
+
orderId,
|
|
20533
|
+
scheduledSessionId,
|
|
20534
|
+
slotId,
|
|
20535
|
+
courseId,
|
|
20536
|
+
status,
|
|
20537
|
+
statuses,
|
|
20538
|
+
parentOrderItemId,
|
|
20539
|
+
orderByOpportunityStartdate,
|
|
20540
|
+
eventTiming,
|
|
20541
|
+
endUserIdentityId,
|
|
20542
|
+
pageNumber,
|
|
20543
|
+
take,
|
|
20544
|
+
skip,
|
|
20545
|
+
limitListRequests,
|
|
20546
|
+
tenantId,
|
|
20547
|
+
modifiedById,
|
|
20548
|
+
modifiedByIds,
|
|
20549
|
+
dateCreatedGte,
|
|
20550
|
+
dateCreatedLte,
|
|
20551
|
+
isLive,
|
|
20552
|
+
sortOrderDirection
|
|
20553
|
+
}) {
|
|
20554
|
+
return this.httpRequest.request({
|
|
20555
|
+
method: "GET",
|
|
20556
|
+
url: "/api/public/order-items",
|
|
20557
|
+
headers: {
|
|
20558
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
20559
|
+
},
|
|
20560
|
+
query: {
|
|
20561
|
+
Ids: ids,
|
|
20562
|
+
OrderId: orderId,
|
|
20563
|
+
ScheduledSessionId: scheduledSessionId,
|
|
20564
|
+
SlotId: slotId,
|
|
20565
|
+
CourseId: courseId,
|
|
20566
|
+
Status: status,
|
|
20567
|
+
Statuses: statuses,
|
|
20568
|
+
ParentOrderItemId: parentOrderItemId,
|
|
20569
|
+
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
20570
|
+
EventTiming: eventTiming,
|
|
20571
|
+
EndUserIdentityId: endUserIdentityId,
|
|
20572
|
+
PageNumber: pageNumber,
|
|
20573
|
+
Take: take,
|
|
20574
|
+
Skip: skip,
|
|
20575
|
+
LimitListRequests: limitListRequests,
|
|
20576
|
+
TenantId: tenantId,
|
|
20577
|
+
ModifiedById: modifiedById,
|
|
20578
|
+
ModifiedByIds: modifiedByIds,
|
|
20579
|
+
DateCreatedGTE: dateCreatedGte,
|
|
20580
|
+
DateCreatedLTE: dateCreatedLte,
|
|
20581
|
+
IsLive: isLive,
|
|
20582
|
+
SortOrderDirection: sortOrderDirection
|
|
20583
|
+
},
|
|
20584
|
+
errors: {
|
|
20585
|
+
400: `Bad Request`,
|
|
20586
|
+
422: `Unprocessable Content`,
|
|
20587
|
+
500: `Internal Server Error`
|
|
20588
|
+
}
|
|
20589
|
+
});
|
|
20590
|
+
}
|
|
20591
|
+
/**
|
|
20592
|
+
* Deletes the resource.
|
|
20593
|
+
* @returns any OK
|
|
20594
|
+
* @throws ApiError
|
|
20595
|
+
*/
|
|
20596
|
+
deleteByObject({
|
|
20597
|
+
xTenantSubdomain,
|
|
20598
|
+
requestBody
|
|
20599
|
+
}) {
|
|
20600
|
+
return this.httpRequest.request({
|
|
20601
|
+
method: "DELETE",
|
|
20602
|
+
url: "/api/public/order-items",
|
|
20603
|
+
headers: {
|
|
20604
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
20605
|
+
},
|
|
20606
|
+
body: requestBody,
|
|
20607
|
+
mediaType: "application/json",
|
|
20608
|
+
errors: {
|
|
20609
|
+
400: `Bad Request`,
|
|
20610
|
+
422: `Unprocessable Content`,
|
|
20611
|
+
500: `Internal Server Error`
|
|
20612
|
+
}
|
|
20613
|
+
});
|
|
20614
|
+
}
|
|
20410
20615
|
/**
|
|
20411
20616
|
* Reschedules the order item to another scheduled session.
|
|
20412
20617
|
* @returns OrderItem OK
|
|
@@ -20511,18 +20716,19 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20511
20716
|
* @returns any OK
|
|
20512
20717
|
* @throws ApiError
|
|
20513
20718
|
*/
|
|
20514
|
-
|
|
20515
|
-
|
|
20516
|
-
|
|
20719
|
+
deleteById({
|
|
20720
|
+
id,
|
|
20721
|
+
xTenantSubdomain
|
|
20517
20722
|
}) {
|
|
20518
20723
|
return this.httpRequest.request({
|
|
20519
20724
|
method: "DELETE",
|
|
20520
|
-
url: "/api/public/order-items",
|
|
20725
|
+
url: "/api/public/order-items/{id}",
|
|
20726
|
+
path: {
|
|
20727
|
+
id
|
|
20728
|
+
},
|
|
20521
20729
|
headers: {
|
|
20522
20730
|
x_tenant_subdomain: xTenantSubdomain
|
|
20523
20731
|
},
|
|
20524
|
-
body: requestBody,
|
|
20525
|
-
mediaType: "application/json",
|
|
20526
20732
|
errors: {
|
|
20527
20733
|
400: `Bad Request`,
|
|
20528
20734
|
422: `Unprocessable Content`,
|
|
@@ -20531,11 +20737,36 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20531
20737
|
});
|
|
20532
20738
|
}
|
|
20533
20739
|
/**
|
|
20534
|
-
* Gets
|
|
20535
|
-
* @returns
|
|
20740
|
+
* Gets the resource by its Id.
|
|
20741
|
+
* @returns OrderItem OK
|
|
20536
20742
|
* @throws ApiError
|
|
20537
20743
|
*/
|
|
20538
|
-
|
|
20744
|
+
getObject({
|
|
20745
|
+
id,
|
|
20746
|
+
xTenantSubdomain
|
|
20747
|
+
}) {
|
|
20748
|
+
return this.httpRequest.request({
|
|
20749
|
+
method: "GET",
|
|
20750
|
+
url: "/api/public/order-items/{id}",
|
|
20751
|
+
path: {
|
|
20752
|
+
id
|
|
20753
|
+
},
|
|
20754
|
+
headers: {
|
|
20755
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
20756
|
+
},
|
|
20757
|
+
errors: {
|
|
20758
|
+
400: `Bad Request`,
|
|
20759
|
+
422: `Unprocessable Content`,
|
|
20760
|
+
500: `Internal Server Error`
|
|
20761
|
+
}
|
|
20762
|
+
});
|
|
20763
|
+
}
|
|
20764
|
+
/**
|
|
20765
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
20766
|
+
* @returns boolean OK
|
|
20767
|
+
* @throws ApiError
|
|
20768
|
+
*/
|
|
20769
|
+
exists({
|
|
20539
20770
|
xTenantSubdomain,
|
|
20540
20771
|
ids,
|
|
20541
20772
|
orderId,
|
|
@@ -20545,6 +20776,9 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20545
20776
|
status,
|
|
20546
20777
|
statuses,
|
|
20547
20778
|
parentOrderItemId,
|
|
20779
|
+
orderByOpportunityStartdate,
|
|
20780
|
+
eventTiming,
|
|
20781
|
+
endUserIdentityId,
|
|
20548
20782
|
pageNumber,
|
|
20549
20783
|
take,
|
|
20550
20784
|
skip,
|
|
@@ -20559,7 +20793,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20559
20793
|
}) {
|
|
20560
20794
|
return this.httpRequest.request({
|
|
20561
20795
|
method: "GET",
|
|
20562
|
-
url: "/api/public/order-items",
|
|
20796
|
+
url: "/api/public/order-items/exists",
|
|
20563
20797
|
headers: {
|
|
20564
20798
|
x_tenant_subdomain: xTenantSubdomain
|
|
20565
20799
|
},
|
|
@@ -20572,6 +20806,9 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20572
20806
|
Status: status,
|
|
20573
20807
|
Statuses: statuses,
|
|
20574
20808
|
ParentOrderItemId: parentOrderItemId,
|
|
20809
|
+
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
20810
|
+
EventTiming: eventTiming,
|
|
20811
|
+
EndUserIdentityId: endUserIdentityId,
|
|
20575
20812
|
PageNumber: pageNumber,
|
|
20576
20813
|
Take: take,
|
|
20577
20814
|
Skip: skip,
|
|
@@ -20591,18 +20828,21 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20591
20828
|
}
|
|
20592
20829
|
});
|
|
20593
20830
|
}
|
|
20831
|
+
}class PublicOrdersService {
|
|
20832
|
+
constructor(httpRequest) {
|
|
20833
|
+
this.httpRequest = httpRequest;
|
|
20834
|
+
}
|
|
20594
20835
|
/**
|
|
20595
|
-
*
|
|
20596
|
-
* @returns any OK
|
|
20836
|
+
* @returns Order OK
|
|
20597
20837
|
* @throws ApiError
|
|
20598
20838
|
*/
|
|
20599
|
-
|
|
20839
|
+
getObject({
|
|
20600
20840
|
id,
|
|
20601
20841
|
xTenantSubdomain
|
|
20602
20842
|
}) {
|
|
20603
20843
|
return this.httpRequest.request({
|
|
20604
|
-
method: "
|
|
20605
|
-
url: "/api/public/
|
|
20844
|
+
method: "GET",
|
|
20845
|
+
url: "/api/public/orders/{id}",
|
|
20606
20846
|
path: {
|
|
20607
20847
|
id
|
|
20608
20848
|
},
|
|
@@ -20617,17 +20857,17 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20617
20857
|
});
|
|
20618
20858
|
}
|
|
20619
20859
|
/**
|
|
20620
|
-
*
|
|
20621
|
-
* @returns
|
|
20860
|
+
* Deletes the resource.
|
|
20861
|
+
* @returns any OK
|
|
20622
20862
|
* @throws ApiError
|
|
20623
20863
|
*/
|
|
20624
|
-
|
|
20864
|
+
deleteById({
|
|
20625
20865
|
id,
|
|
20626
20866
|
xTenantSubdomain
|
|
20627
20867
|
}) {
|
|
20628
20868
|
return this.httpRequest.request({
|
|
20629
|
-
method: "
|
|
20630
|
-
url: "/api/public/
|
|
20869
|
+
method: "DELETE",
|
|
20870
|
+
url: "/api/public/orders/{id}",
|
|
20631
20871
|
path: {
|
|
20632
20872
|
id
|
|
20633
20873
|
},
|
|
@@ -20642,20 +20882,29 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20642
20882
|
});
|
|
20643
20883
|
}
|
|
20644
20884
|
/**
|
|
20645
|
-
*
|
|
20646
|
-
* @returns boolean OK
|
|
20885
|
+
* @returns OrderPage OK
|
|
20647
20886
|
* @throws ApiError
|
|
20648
20887
|
*/
|
|
20649
|
-
|
|
20888
|
+
getPage({
|
|
20650
20889
|
xTenantSubdomain,
|
|
20651
|
-
|
|
20652
|
-
|
|
20653
|
-
|
|
20654
|
-
|
|
20890
|
+
wildcard,
|
|
20891
|
+
accessCode,
|
|
20892
|
+
customerName,
|
|
20893
|
+
email,
|
|
20894
|
+
providerId,
|
|
20895
|
+
venueId,
|
|
20896
|
+
programmeId,
|
|
20897
|
+
customerId,
|
|
20898
|
+
orderIds,
|
|
20899
|
+
sessionId,
|
|
20900
|
+
facilityId,
|
|
20655
20901
|
courseId,
|
|
20656
|
-
|
|
20657
|
-
|
|
20658
|
-
|
|
20902
|
+
orderStage,
|
|
20903
|
+
isBookedOrPendingPayment,
|
|
20904
|
+
orderStages,
|
|
20905
|
+
orderDateGte,
|
|
20906
|
+
orderDateLte,
|
|
20907
|
+
endUserIdentityId,
|
|
20659
20908
|
pageNumber,
|
|
20660
20909
|
take,
|
|
20661
20910
|
skip,
|
|
@@ -20670,19 +20919,29 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20670
20919
|
}) {
|
|
20671
20920
|
return this.httpRequest.request({
|
|
20672
20921
|
method: "GET",
|
|
20673
|
-
url: "/api/public/
|
|
20922
|
+
url: "/api/public/orders",
|
|
20674
20923
|
headers: {
|
|
20675
20924
|
x_tenant_subdomain: xTenantSubdomain
|
|
20676
20925
|
},
|
|
20677
20926
|
query: {
|
|
20678
|
-
|
|
20679
|
-
|
|
20680
|
-
|
|
20681
|
-
|
|
20927
|
+
Wildcard: wildcard,
|
|
20928
|
+
AccessCode: accessCode,
|
|
20929
|
+
CustomerName: customerName,
|
|
20930
|
+
Email: email,
|
|
20931
|
+
ProviderId: providerId,
|
|
20932
|
+
VenueId: venueId,
|
|
20933
|
+
ProgrammeId: programmeId,
|
|
20934
|
+
CustomerId: customerId,
|
|
20935
|
+
OrderIds: orderIds,
|
|
20936
|
+
SessionId: sessionId,
|
|
20937
|
+
FacilityId: facilityId,
|
|
20682
20938
|
CourseId: courseId,
|
|
20683
|
-
|
|
20684
|
-
|
|
20685
|
-
|
|
20939
|
+
OrderStage: orderStage,
|
|
20940
|
+
IsBookedOrPendingPayment: isBookedOrPendingPayment,
|
|
20941
|
+
OrderStages: orderStages,
|
|
20942
|
+
OrderDateGTE: orderDateGte,
|
|
20943
|
+
OrderDateLTE: orderDateLte,
|
|
20944
|
+
EndUserIdentityId: endUserIdentityId,
|
|
20686
20945
|
PageNumber: pageNumber,
|
|
20687
20946
|
Take: take,
|
|
20688
20947
|
Skip: skip,
|
|
@@ -20702,52 +20961,23 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20702
20961
|
}
|
|
20703
20962
|
});
|
|
20704
20963
|
}
|
|
20705
|
-
}class PublicOrdersService {
|
|
20706
|
-
constructor(httpRequest) {
|
|
20707
|
-
this.httpRequest = httpRequest;
|
|
20708
|
-
}
|
|
20709
|
-
/**
|
|
20710
|
-
* @returns Order OK
|
|
20711
|
-
* @throws ApiError
|
|
20712
|
-
*/
|
|
20713
|
-
getObject({
|
|
20714
|
-
id,
|
|
20715
|
-
xTenantSubdomain
|
|
20716
|
-
}) {
|
|
20717
|
-
return this.httpRequest.request({
|
|
20718
|
-
method: "GET",
|
|
20719
|
-
url: "/api/public/orders/{id}",
|
|
20720
|
-
path: {
|
|
20721
|
-
id
|
|
20722
|
-
},
|
|
20723
|
-
headers: {
|
|
20724
|
-
x_tenant_subdomain: xTenantSubdomain
|
|
20725
|
-
},
|
|
20726
|
-
errors: {
|
|
20727
|
-
400: `Bad Request`,
|
|
20728
|
-
422: `Unprocessable Content`,
|
|
20729
|
-
500: `Internal Server Error`
|
|
20730
|
-
}
|
|
20731
|
-
});
|
|
20732
|
-
}
|
|
20733
20964
|
/**
|
|
20734
20965
|
* Deletes the resource.
|
|
20735
20966
|
* @returns any OK
|
|
20736
20967
|
* @throws ApiError
|
|
20737
20968
|
*/
|
|
20738
|
-
|
|
20739
|
-
|
|
20740
|
-
|
|
20969
|
+
deleteByObject({
|
|
20970
|
+
xTenantSubdomain,
|
|
20971
|
+
requestBody
|
|
20741
20972
|
}) {
|
|
20742
20973
|
return this.httpRequest.request({
|
|
20743
20974
|
method: "DELETE",
|
|
20744
|
-
url: "/api/public/orders
|
|
20745
|
-
path: {
|
|
20746
|
-
id
|
|
20747
|
-
},
|
|
20975
|
+
url: "/api/public/orders",
|
|
20748
20976
|
headers: {
|
|
20749
20977
|
x_tenant_subdomain: xTenantSubdomain
|
|
20750
20978
|
},
|
|
20979
|
+
body: requestBody,
|
|
20980
|
+
mediaType: "application/json",
|
|
20751
20981
|
errors: {
|
|
20752
20982
|
400: `Bad Request`,
|
|
20753
20983
|
422: `Unprocessable Content`,
|
|
@@ -20932,109 +21162,6 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
20932
21162
|
}
|
|
20933
21163
|
});
|
|
20934
21164
|
}
|
|
20935
|
-
/**
|
|
20936
|
-
* Deletes the resource.
|
|
20937
|
-
* @returns any OK
|
|
20938
|
-
* @throws ApiError
|
|
20939
|
-
*/
|
|
20940
|
-
deleteByObject({
|
|
20941
|
-
xTenantSubdomain,
|
|
20942
|
-
requestBody
|
|
20943
|
-
}) {
|
|
20944
|
-
return this.httpRequest.request({
|
|
20945
|
-
method: "DELETE",
|
|
20946
|
-
url: "/api/public/orders",
|
|
20947
|
-
headers: {
|
|
20948
|
-
x_tenant_subdomain: xTenantSubdomain
|
|
20949
|
-
},
|
|
20950
|
-
body: requestBody,
|
|
20951
|
-
mediaType: "application/json",
|
|
20952
|
-
errors: {
|
|
20953
|
-
400: `Bad Request`,
|
|
20954
|
-
422: `Unprocessable Content`,
|
|
20955
|
-
500: `Internal Server Error`
|
|
20956
|
-
}
|
|
20957
|
-
});
|
|
20958
|
-
}
|
|
20959
|
-
/**
|
|
20960
|
-
* Gets a list of resources.
|
|
20961
|
-
* @returns OrderPage OK
|
|
20962
|
-
* @throws ApiError
|
|
20963
|
-
*/
|
|
20964
|
-
getPage({
|
|
20965
|
-
xTenantSubdomain,
|
|
20966
|
-
wildcard,
|
|
20967
|
-
accessCode,
|
|
20968
|
-
customerName,
|
|
20969
|
-
email,
|
|
20970
|
-
providerId,
|
|
20971
|
-
venueId,
|
|
20972
|
-
programmeId,
|
|
20973
|
-
customerId,
|
|
20974
|
-
orderIds,
|
|
20975
|
-
sessionId,
|
|
20976
|
-
facilityId,
|
|
20977
|
-
courseId,
|
|
20978
|
-
orderStage,
|
|
20979
|
-
isBookedOrPendingPayment,
|
|
20980
|
-
orderStages,
|
|
20981
|
-
orderDateGte,
|
|
20982
|
-
orderDateLte,
|
|
20983
|
-
pageNumber,
|
|
20984
|
-
take,
|
|
20985
|
-
skip,
|
|
20986
|
-
limitListRequests,
|
|
20987
|
-
tenantId,
|
|
20988
|
-
modifiedById,
|
|
20989
|
-
modifiedByIds,
|
|
20990
|
-
dateCreatedGte,
|
|
20991
|
-
dateCreatedLte,
|
|
20992
|
-
isLive,
|
|
20993
|
-
sortOrderDirection
|
|
20994
|
-
}) {
|
|
20995
|
-
return this.httpRequest.request({
|
|
20996
|
-
method: "GET",
|
|
20997
|
-
url: "/api/public/orders",
|
|
20998
|
-
headers: {
|
|
20999
|
-
x_tenant_subdomain: xTenantSubdomain
|
|
21000
|
-
},
|
|
21001
|
-
query: {
|
|
21002
|
-
Wildcard: wildcard,
|
|
21003
|
-
AccessCode: accessCode,
|
|
21004
|
-
CustomerName: customerName,
|
|
21005
|
-
Email: email,
|
|
21006
|
-
ProviderId: providerId,
|
|
21007
|
-
VenueId: venueId,
|
|
21008
|
-
ProgrammeId: programmeId,
|
|
21009
|
-
CustomerId: customerId,
|
|
21010
|
-
OrderIds: orderIds,
|
|
21011
|
-
SessionId: sessionId,
|
|
21012
|
-
FacilityId: facilityId,
|
|
21013
|
-
CourseId: courseId,
|
|
21014
|
-
OrderStage: orderStage,
|
|
21015
|
-
IsBookedOrPendingPayment: isBookedOrPendingPayment,
|
|
21016
|
-
OrderStages: orderStages,
|
|
21017
|
-
OrderDateGTE: orderDateGte,
|
|
21018
|
-
OrderDateLTE: orderDateLte,
|
|
21019
|
-
PageNumber: pageNumber,
|
|
21020
|
-
Take: take,
|
|
21021
|
-
Skip: skip,
|
|
21022
|
-
LimitListRequests: limitListRequests,
|
|
21023
|
-
TenantId: tenantId,
|
|
21024
|
-
ModifiedById: modifiedById,
|
|
21025
|
-
ModifiedByIds: modifiedByIds,
|
|
21026
|
-
DateCreatedGTE: dateCreatedGte,
|
|
21027
|
-
DateCreatedLTE: dateCreatedLte,
|
|
21028
|
-
IsLive: isLive,
|
|
21029
|
-
SortOrderDirection: sortOrderDirection
|
|
21030
|
-
},
|
|
21031
|
-
errors: {
|
|
21032
|
-
400: `Bad Request`,
|
|
21033
|
-
422: `Unprocessable Content`,
|
|
21034
|
-
500: `Internal Server Error`
|
|
21035
|
-
}
|
|
21036
|
-
});
|
|
21037
|
-
}
|
|
21038
21165
|
/**
|
|
21039
21166
|
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
21040
21167
|
* @returns boolean OK
|
|
@@ -21059,6 +21186,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21059
21186
|
orderStages,
|
|
21060
21187
|
orderDateGte,
|
|
21061
21188
|
orderDateLte,
|
|
21189
|
+
endUserIdentityId,
|
|
21062
21190
|
pageNumber,
|
|
21063
21191
|
take,
|
|
21064
21192
|
skip,
|
|
@@ -21095,6 +21223,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21095
21223
|
OrderStages: orderStages,
|
|
21096
21224
|
OrderDateGTE: orderDateGte,
|
|
21097
21225
|
OrderDateLTE: orderDateLte,
|
|
21226
|
+
EndUserIdentityId: endUserIdentityId,
|
|
21098
21227
|
PageNumber: pageNumber,
|
|
21099
21228
|
Take: take,
|
|
21100
21229
|
Skip: skip,
|
|
@@ -22125,6 +22254,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22125
22254
|
remainingUsesLte,
|
|
22126
22255
|
remainingUsesGte,
|
|
22127
22256
|
futureOnly,
|
|
22257
|
+
bookableOnly,
|
|
22128
22258
|
includeImages,
|
|
22129
22259
|
includeVenue,
|
|
22130
22260
|
includeOrders,
|
|
@@ -22169,6 +22299,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22169
22299
|
RemainingUsesLTE: remainingUsesLte,
|
|
22170
22300
|
RemainingUsesGTE: remainingUsesGte,
|
|
22171
22301
|
FutureOnly: futureOnly,
|
|
22302
|
+
BookableOnly: bookableOnly,
|
|
22172
22303
|
IncludeImages: includeImages,
|
|
22173
22304
|
IncludeVenue: includeVenue,
|
|
22174
22305
|
IncludeOrders: includeOrders,
|
|
@@ -22316,6 +22447,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22316
22447
|
remainingUsesLte,
|
|
22317
22448
|
remainingUsesGte,
|
|
22318
22449
|
futureOnly,
|
|
22450
|
+
bookableOnly,
|
|
22319
22451
|
includeImages,
|
|
22320
22452
|
includeVenue,
|
|
22321
22453
|
includeOrders,
|
|
@@ -22360,6 +22492,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22360
22492
|
RemainingUsesLTE: remainingUsesLte,
|
|
22361
22493
|
RemainingUsesGTE: remainingUsesGte,
|
|
22362
22494
|
FutureOnly: futureOnly,
|
|
22495
|
+
BookableOnly: bookableOnly,
|
|
22363
22496
|
IncludeImages: includeImages,
|
|
22364
22497
|
IncludeVenue: includeVenue,
|
|
22365
22498
|
IncludeOrders: includeOrders,
|
|
@@ -22454,6 +22587,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22454
22587
|
paymentPolicyId,
|
|
22455
22588
|
futureOnly,
|
|
22456
22589
|
online,
|
|
22590
|
+
featured,
|
|
22457
22591
|
programmeId,
|
|
22458
22592
|
includeNextOpportunity,
|
|
22459
22593
|
allowTemplating,
|
|
@@ -22502,6 +22636,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22502
22636
|
PaymentPolicyId: paymentPolicyId,
|
|
22503
22637
|
FutureOnly: futureOnly,
|
|
22504
22638
|
Online: online,
|
|
22639
|
+
Featured: featured,
|
|
22505
22640
|
ProgrammeId: programmeId,
|
|
22506
22641
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
22507
22642
|
AllowTemplating: allowTemplating,
|
|
@@ -22617,6 +22752,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22617
22752
|
remainingUsesLte,
|
|
22618
22753
|
remainingUsesGte,
|
|
22619
22754
|
futureOnly,
|
|
22755
|
+
bookableOnly,
|
|
22620
22756
|
includeImages,
|
|
22621
22757
|
includeVenue,
|
|
22622
22758
|
includeOrders,
|
|
@@ -22661,6 +22797,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22661
22797
|
RemainingUsesLTE: remainingUsesLte,
|
|
22662
22798
|
RemainingUsesGTE: remainingUsesGte,
|
|
22663
22799
|
FutureOnly: futureOnly,
|
|
22800
|
+
BookableOnly: bookableOnly,
|
|
22664
22801
|
IncludeImages: includeImages,
|
|
22665
22802
|
IncludeVenue: includeVenue,
|
|
22666
22803
|
IncludeOrders: includeOrders,
|
|
@@ -22775,6 +22912,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22775
22912
|
paymentPolicyId,
|
|
22776
22913
|
futureOnly,
|
|
22777
22914
|
online,
|
|
22915
|
+
featured,
|
|
22778
22916
|
programmeId,
|
|
22779
22917
|
includeNextOpportunity,
|
|
22780
22918
|
allowTemplating,
|
|
@@ -22823,6 +22961,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
22823
22961
|
PaymentPolicyId: paymentPolicyId,
|
|
22824
22962
|
FutureOnly: futureOnly,
|
|
22825
22963
|
Online: online,
|
|
22964
|
+
Featured: featured,
|
|
22826
22965
|
ProgrammeId: programmeId,
|
|
22827
22966
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
22828
22967
|
AllowTemplating: allowTemplating,
|
|
@@ -26816,6 +26955,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
26816
26955
|
remainingUsesLte,
|
|
26817
26956
|
remainingUsesGte,
|
|
26818
26957
|
futureOnly,
|
|
26958
|
+
bookableOnly,
|
|
26819
26959
|
includeImages,
|
|
26820
26960
|
includeVenue,
|
|
26821
26961
|
includeOrders,
|
|
@@ -26857,6 +26997,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
26857
26997
|
RemainingUsesLTE: remainingUsesLte,
|
|
26858
26998
|
RemainingUsesGTE: remainingUsesGte,
|
|
26859
26999
|
FutureOnly: futureOnly,
|
|
27000
|
+
BookableOnly: bookableOnly,
|
|
26860
27001
|
IncludeImages: includeImages,
|
|
26861
27002
|
IncludeVenue: includeVenue,
|
|
26862
27003
|
IncludeOrders: includeOrders,
|
|
@@ -26970,6 +27111,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
26970
27111
|
remainingUsesLte,
|
|
26971
27112
|
remainingUsesGte,
|
|
26972
27113
|
futureOnly,
|
|
27114
|
+
bookableOnly,
|
|
26973
27115
|
includeImages,
|
|
26974
27116
|
includeVenue,
|
|
26975
27117
|
includeOrders,
|
|
@@ -27011,6 +27153,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27011
27153
|
RemainingUsesLTE: remainingUsesLte,
|
|
27012
27154
|
RemainingUsesGTE: remainingUsesGte,
|
|
27013
27155
|
FutureOnly: futureOnly,
|
|
27156
|
+
BookableOnly: bookableOnly,
|
|
27014
27157
|
IncludeImages: includeImages,
|
|
27015
27158
|
IncludeVenue: includeVenue,
|
|
27016
27159
|
IncludeOrders: includeOrders,
|
|
@@ -27061,6 +27204,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27061
27204
|
remainingUsesLte,
|
|
27062
27205
|
remainingUsesGte,
|
|
27063
27206
|
futureOnly,
|
|
27207
|
+
bookableOnly,
|
|
27064
27208
|
includeImages,
|
|
27065
27209
|
includeVenue,
|
|
27066
27210
|
includeOrders,
|
|
@@ -27102,6 +27246,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27102
27246
|
RemainingUsesLTE: remainingUsesLte,
|
|
27103
27247
|
RemainingUsesGTE: remainingUsesGte,
|
|
27104
27248
|
FutureOnly: futureOnly,
|
|
27249
|
+
BookableOnly: bookableOnly,
|
|
27105
27250
|
IncludeImages: includeImages,
|
|
27106
27251
|
IncludeVenue: includeVenue,
|
|
27107
27252
|
IncludeOrders: includeOrders,
|
|
@@ -27152,6 +27297,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27152
27297
|
remainingUsesLte,
|
|
27153
27298
|
remainingUsesGte,
|
|
27154
27299
|
futureOnly,
|
|
27300
|
+
bookableOnly,
|
|
27155
27301
|
includeImages,
|
|
27156
27302
|
includeVenue,
|
|
27157
27303
|
includeOrders,
|
|
@@ -27193,6 +27339,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27193
27339
|
RemainingUsesLTE: remainingUsesLte,
|
|
27194
27340
|
RemainingUsesGTE: remainingUsesGte,
|
|
27195
27341
|
FutureOnly: futureOnly,
|
|
27342
|
+
BookableOnly: bookableOnly,
|
|
27196
27343
|
IncludeImages: includeImages,
|
|
27197
27344
|
IncludeVenue: includeVenue,
|
|
27198
27345
|
IncludeOrders: includeOrders,
|
|
@@ -27389,6 +27536,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27389
27536
|
lastRunDateTimeLte,
|
|
27390
27537
|
status,
|
|
27391
27538
|
statuses,
|
|
27539
|
+
bookableOnly,
|
|
27392
27540
|
pageNumber,
|
|
27393
27541
|
take,
|
|
27394
27542
|
skip,
|
|
@@ -27410,6 +27558,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27410
27558
|
LastRunDateTimeLTE: lastRunDateTimeLte,
|
|
27411
27559
|
Status: status,
|
|
27412
27560
|
Statuses: statuses,
|
|
27561
|
+
BookableOnly: bookableOnly,
|
|
27413
27562
|
PageNumber: pageNumber,
|
|
27414
27563
|
Take: take,
|
|
27415
27564
|
Skip: skip,
|
|
@@ -27503,6 +27652,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27503
27652
|
lastRunDateTimeLte,
|
|
27504
27653
|
status,
|
|
27505
27654
|
statuses,
|
|
27655
|
+
bookableOnly,
|
|
27506
27656
|
pageNumber,
|
|
27507
27657
|
take,
|
|
27508
27658
|
skip,
|
|
@@ -27524,6 +27674,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27524
27674
|
LastRunDateTimeLTE: lastRunDateTimeLte,
|
|
27525
27675
|
Status: status,
|
|
27526
27676
|
Statuses: statuses,
|
|
27677
|
+
BookableOnly: bookableOnly,
|
|
27527
27678
|
PageNumber: pageNumber,
|
|
27528
27679
|
Take: take,
|
|
27529
27680
|
Skip: skip,
|
|
@@ -27554,6 +27705,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27554
27705
|
lastRunDateTimeLte,
|
|
27555
27706
|
status,
|
|
27556
27707
|
statuses,
|
|
27708
|
+
bookableOnly,
|
|
27557
27709
|
pageNumber,
|
|
27558
27710
|
take,
|
|
27559
27711
|
skip,
|
|
@@ -27575,6 +27727,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27575
27727
|
LastRunDateTimeLTE: lastRunDateTimeLte,
|
|
27576
27728
|
Status: status,
|
|
27577
27729
|
Statuses: statuses,
|
|
27730
|
+
BookableOnly: bookableOnly,
|
|
27578
27731
|
PageNumber: pageNumber,
|
|
27579
27732
|
Take: take,
|
|
27580
27733
|
Skip: skip,
|
|
@@ -27605,6 +27758,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27605
27758
|
lastRunDateTimeLte,
|
|
27606
27759
|
status,
|
|
27607
27760
|
statuses,
|
|
27761
|
+
bookableOnly,
|
|
27608
27762
|
pageNumber,
|
|
27609
27763
|
take,
|
|
27610
27764
|
skip,
|
|
@@ -27626,6 +27780,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27626
27780
|
LastRunDateTimeLTE: lastRunDateTimeLte,
|
|
27627
27781
|
Status: status,
|
|
27628
27782
|
Statuses: statuses,
|
|
27783
|
+
BookableOnly: bookableOnly,
|
|
27629
27784
|
PageNumber: pageNumber,
|
|
27630
27785
|
Take: take,
|
|
27631
27786
|
Skip: skip,
|
|
@@ -27953,6 +28108,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27953
28108
|
paymentPolicyId,
|
|
27954
28109
|
futureOnly,
|
|
27955
28110
|
online,
|
|
28111
|
+
featured,
|
|
27956
28112
|
programmeId,
|
|
27957
28113
|
includeNextOpportunity,
|
|
27958
28114
|
allowTemplating,
|
|
@@ -27998,6 +28154,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
27998
28154
|
PaymentPolicyId: paymentPolicyId,
|
|
27999
28155
|
FutureOnly: futureOnly,
|
|
28000
28156
|
Online: online,
|
|
28157
|
+
Featured: featured,
|
|
28001
28158
|
ProgrammeId: programmeId,
|
|
28002
28159
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
28003
28160
|
AllowTemplating: allowTemplating,
|
|
@@ -28115,6 +28272,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28115
28272
|
paymentPolicyId,
|
|
28116
28273
|
futureOnly,
|
|
28117
28274
|
online,
|
|
28275
|
+
featured,
|
|
28118
28276
|
programmeId,
|
|
28119
28277
|
includeNextOpportunity,
|
|
28120
28278
|
allowTemplating,
|
|
@@ -28160,6 +28318,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28160
28318
|
PaymentPolicyId: paymentPolicyId,
|
|
28161
28319
|
FutureOnly: futureOnly,
|
|
28162
28320
|
Online: online,
|
|
28321
|
+
Featured: featured,
|
|
28163
28322
|
ProgrammeId: programmeId,
|
|
28164
28323
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
28165
28324
|
AllowTemplating: allowTemplating,
|
|
@@ -28214,6 +28373,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28214
28373
|
paymentPolicyId,
|
|
28215
28374
|
futureOnly,
|
|
28216
28375
|
online,
|
|
28376
|
+
featured,
|
|
28217
28377
|
programmeId,
|
|
28218
28378
|
includeNextOpportunity,
|
|
28219
28379
|
allowTemplating,
|
|
@@ -28259,6 +28419,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28259
28419
|
PaymentPolicyId: paymentPolicyId,
|
|
28260
28420
|
FutureOnly: futureOnly,
|
|
28261
28421
|
Online: online,
|
|
28422
|
+
Featured: featured,
|
|
28262
28423
|
ProgrammeId: programmeId,
|
|
28263
28424
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
28264
28425
|
AllowTemplating: allowTemplating,
|
|
@@ -28313,6 +28474,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28313
28474
|
paymentPolicyId,
|
|
28314
28475
|
futureOnly,
|
|
28315
28476
|
online,
|
|
28477
|
+
featured,
|
|
28316
28478
|
programmeId,
|
|
28317
28479
|
includeNextOpportunity,
|
|
28318
28480
|
allowTemplating,
|
|
@@ -28358,6 +28520,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28358
28520
|
PaymentPolicyId: paymentPolicyId,
|
|
28359
28521
|
FutureOnly: futureOnly,
|
|
28360
28522
|
Online: online,
|
|
28523
|
+
Featured: featured,
|
|
28361
28524
|
ProgrammeId: programmeId,
|
|
28362
28525
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
28363
28526
|
AllowTemplating: allowTemplating,
|
|
@@ -40847,6 +41010,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
40847
41010
|
providers;
|
|
40848
41011
|
providerTypes;
|
|
40849
41012
|
publicBooking;
|
|
41013
|
+
publicCalendar;
|
|
40850
41014
|
publicCourses;
|
|
40851
41015
|
publicCustomers;
|
|
40852
41016
|
publicFacilities;
|
|
@@ -40976,6 +41140,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
40976
41140
|
this.providers = new ProvidersService(this.request);
|
|
40977
41141
|
this.providerTypes = new ProviderTypesService(this.request);
|
|
40978
41142
|
this.publicBooking = new PublicBookingService(this.request);
|
|
41143
|
+
this.publicCalendar = new PublicCalendarService(this.request);
|
|
40979
41144
|
this.publicCourses = new PublicCoursesService(this.request);
|
|
40980
41145
|
this.publicCustomers = new PublicCustomersService(this.request);
|
|
40981
41146
|
this.publicFacilities = new PublicFacilitiesService(this.request);
|
|
@@ -41156,7 +41321,11 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
41156
41321
|
DealType2["MULTI_PARTICIPANT"] = "MultiParticipant";
|
|
41157
41322
|
DealType2["DISCOUNT_CODE"] = "DiscountCode";
|
|
41158
41323
|
return DealType2;
|
|
41159
|
-
})(DealType || {});var
|
|
41324
|
+
})(DealType || {});var EventTiming = /* @__PURE__ */ ((EventTiming2) => {
|
|
41325
|
+
EventTiming2["UPCOMING"] = "Upcoming";
|
|
41326
|
+
EventTiming2["PAST"] = "Past";
|
|
41327
|
+
return EventTiming2;
|
|
41328
|
+
})(EventTiming || {});var FacilityIndividualsType = /* @__PURE__ */ ((FacilityIndividualsType2) => {
|
|
41160
41329
|
FacilityIndividualsType2["COURT"] = "Court";
|
|
41161
41330
|
FacilityIndividualsType2["PITCH"] = "Pitch";
|
|
41162
41331
|
FacilityIndividualsType2["NET"] = "Net";
|
|
@@ -41427,4 +41596,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
41427
41596
|
TenantTier2["ENTERPRISE"] = "Enterprise";
|
|
41428
41597
|
TenantTier2["PRO"] = "Pro";
|
|
41429
41598
|
return TenantTier2;
|
|
41430
|
-
})(TenantTier || {});
|
|
41599
|
+
})(TenantTier || {});var UpcomingLayout = /* @__PURE__ */ ((UpcomingLayout2) => {
|
|
41600
|
+
UpcomingLayout2["GRID"] = "Grid";
|
|
41601
|
+
UpcomingLayout2["CALENDAR"] = "Calendar";
|
|
41602
|
+
return UpcomingLayout2;
|
|
41603
|
+
})(UpcomingLayout || {});export{ActivityPerformanceService,ActivityService,ActivityType,AdvanceBooking,AmenityService,AmenityType,ApiClient,ApiError,AppUserRole,ApplicationRole,AttendeesService,AvailabilityIndicator,BadEnglandReportService,BaseHttpRequest,BookingService,BookingStatus,CancelError,CancelablePromise,CancellationPoliciesService,ChatService,CheckoutPlatform,ContactOnConfirmation,CountryService,CourseBookingCutoff,CourseSearchSortBy,CourseSessionSchedulesService,CourseSessionsService,CourseStatus,CoursesService,CustomDateRange,CustomerCancellationOption,CustomerType,CustomersService,DayOfWeek,DealActivitiesService,DealDiscountType,DealTarget,DealType,DealsService,DiscountCodeUsesService,EmailReminderSchedulesService,EmailSettingsService,EndUserIdentitySecureTokenService,EnglandGolfReportService,EventTiming,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FieldPermission,FilestackService,Gender,GenericActivityService,GeocodeService,HelpersService,HereAutocompleteLookupService,HttpStatusCode,ImageLibraryCategoryService,ImageLibraryImageService,ImageUploadHistoryService,ImagesService,InviteStatus,LeasingService,LocationsReportService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityRegisterStatus,OpportunityType,OrderItemReportService,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentPoliciesService,PaymentPolicySplitType,PaymentsService,PeriodsOfWeek,PermissionsService,PlacesService,PlatformPayoutsService,Prepayment,ProgrammesService,ProviderTypesService,ProvidersService,PublicBookingService,PublicCalendarService,PublicCoursesService,PublicCustomersService,PublicFacilitiesService,PublicFilestackWebhookService,PublicGenericActivityService,PublicHealthCheckService,PublicLeasingService,PublicNetworksService,PublicOpportunityRegisterService,PublicOrderItemsService,PublicOrderTokensService,PublicOrdersService,PublicProgrammesService,PublicProvidersService,PublicScheduledSessionsService,PublicSessionsService,PublicSlotsService,PublicStripeWebhookService,PublicSurveyCompletionLogsService,PublicSurveyQuestionsService,PublicSurveysService,PublicTenantsService,PublicVenuesService,PublicWaitlistActivityService,PublicWaitlistOpportunityService,ReachEntity,ReachOperation,RecentOrderActivityReportService,RefundSource,RefundStatus,RegisterReportService,RescheduleLogService,ScheduleStatus,ScheduledSessionSearchSortBy,ScheduledSessionsSchedulesService,ScheduledSessionsService,SearchSortOrderDirection,SessionType,SessionsService,SlotAvailabilityStatus,SlotOffersService,SlotScheduleOffersService,SlotSchedulesService,SlotStatus,SlotsService,StripeAccountLinkedEntityType,StripeAccountService,StripeStatus,SurfacesService,SurveyAnswersService,SurveyCompletionLogService,SurveyQuestionType,SurveyQuestionsService,SurveyQuestionsTarget,SurveyReportExtendedService,SurveyResponseMode,SurveyType,SurveysService,TemplateDetailsService,TemplateFieldPermissionsService,TemplateOffersService,TemplatesService,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UnsplashService,UpcomingLayout,UserPermissionsService,UserProgrammesService,UserProvidersService,UsersService,VenueManagersService,VenuePerformanceService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService};
|