reach-api-sdk 1.0.191 → 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 +297 -51
- package/dist/reach-sdk.js +140 -1
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +361 -0
- package/src/index.ts +2 -0
- package/src/models/Course.ts +4 -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/LeasingService.ts +24 -0
- package/src/services/OrderItemsService.ts +24 -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 +12 -0
- package/src/services/PublicOrdersService.ts +12 -0
- 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
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
6
|
+
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
7
|
+
|
|
8
|
+
export class PublicCalendarService {
|
|
9
|
+
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Gets calendar data.
|
|
13
|
+
* @returns any OK
|
|
14
|
+
* @throws ApiError
|
|
15
|
+
*/
|
|
16
|
+
public getCalendarView({
|
|
17
|
+
xTenantSubdomain,
|
|
18
|
+
startDateTimeGte,
|
|
19
|
+
venueId,
|
|
20
|
+
programmeId,
|
|
21
|
+
}: {
|
|
22
|
+
/**
|
|
23
|
+
* The tenants subdomain.
|
|
24
|
+
*/
|
|
25
|
+
xTenantSubdomain?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Gets or sets the queryable calendar item start date time is greater than or equal to.
|
|
28
|
+
*/
|
|
29
|
+
startDateTimeGte?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Gets or sets the venue Id for use in a query search.
|
|
32
|
+
*/
|
|
33
|
+
venueId?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Gets or sets the programme Id for use in a query search.
|
|
36
|
+
*/
|
|
37
|
+
programmeId?: string;
|
|
38
|
+
}): CancelablePromise<any> {
|
|
39
|
+
return this.httpRequest.request({
|
|
40
|
+
method: 'GET',
|
|
41
|
+
url: '/api/public/calendar',
|
|
42
|
+
headers: {
|
|
43
|
+
'x-tenant-subdomain': xTenantSubdomain,
|
|
44
|
+
},
|
|
45
|
+
query: {
|
|
46
|
+
StartDateTimeGTE: startDateTimeGte,
|
|
47
|
+
VenueId: venueId,
|
|
48
|
+
ProgrammeId: programmeId,
|
|
49
|
+
},
|
|
50
|
+
errors: {
|
|
51
|
+
400: `Bad Request`,
|
|
52
|
+
422: `Unprocessable Content`,
|
|
53
|
+
500: `Internal Server Error`,
|
|
54
|
+
},
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
}
|
|
@@ -105,6 +105,7 @@ export class PublicCoursesService {
|
|
|
105
105
|
remainingUsesGte,
|
|
106
106
|
futureOnly,
|
|
107
107
|
online,
|
|
108
|
+
featured,
|
|
108
109
|
hasAvailability,
|
|
109
110
|
orderFirstNameContains,
|
|
110
111
|
orderLastNameContains,
|
|
@@ -207,6 +208,10 @@ export class PublicCoursesService {
|
|
|
207
208
|
* Gets or sets a value indicating whether return online courses.
|
|
208
209
|
*/
|
|
209
210
|
online?: boolean;
|
|
211
|
+
/**
|
|
212
|
+
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
213
|
+
*/
|
|
214
|
+
featured?: boolean;
|
|
210
215
|
/**
|
|
211
216
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
212
217
|
*/
|
|
@@ -315,6 +320,7 @@ export class PublicCoursesService {
|
|
|
315
320
|
RemainingUsesGTE: remainingUsesGte,
|
|
316
321
|
FutureOnly: futureOnly,
|
|
317
322
|
Online: online,
|
|
323
|
+
Featured: featured,
|
|
318
324
|
HasAvailability: hasAvailability,
|
|
319
325
|
OrderFirstNameContains: orderFirstNameContains,
|
|
320
326
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -507,6 +513,7 @@ export class PublicCoursesService {
|
|
|
507
513
|
remainingUsesGte,
|
|
508
514
|
futureOnly,
|
|
509
515
|
online,
|
|
516
|
+
featured,
|
|
510
517
|
hasAvailability,
|
|
511
518
|
orderFirstNameContains,
|
|
512
519
|
orderLastNameContains,
|
|
@@ -612,6 +619,10 @@ export class PublicCoursesService {
|
|
|
612
619
|
* Gets or sets a value indicating whether return online courses.
|
|
613
620
|
*/
|
|
614
621
|
online?: boolean;
|
|
622
|
+
/**
|
|
623
|
+
* Gets or sets a value indicating whether the course is featured on the storefront.
|
|
624
|
+
*/
|
|
625
|
+
featured?: boolean;
|
|
615
626
|
/**
|
|
616
627
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
617
628
|
*/
|
|
@@ -720,6 +731,7 @@ export class PublicCoursesService {
|
|
|
720
731
|
RemainingUsesGTE: remainingUsesGte,
|
|
721
732
|
FutureOnly: futureOnly,
|
|
722
733
|
Online: online,
|
|
734
|
+
Featured: featured,
|
|
723
735
|
HasAvailability: hasAvailability,
|
|
724
736
|
OrderFirstNameContains: orderFirstNameContains,
|
|
725
737
|
OrderLastNameContains: orderLastNameContains,
|
|
@@ -365,6 +365,7 @@ export class PublicLeasingService {
|
|
|
365
365
|
orderStages,
|
|
366
366
|
orderDateGte,
|
|
367
367
|
orderDateLte,
|
|
368
|
+
endUserIdentityId,
|
|
368
369
|
pageNumber,
|
|
369
370
|
take,
|
|
370
371
|
skip,
|
|
@@ -449,6 +450,10 @@ export class PublicLeasingService {
|
|
|
449
450
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
450
451
|
*/
|
|
451
452
|
orderDateLte?: string;
|
|
453
|
+
/**
|
|
454
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
455
|
+
*/
|
|
456
|
+
endUserIdentityId?: string;
|
|
452
457
|
/**
|
|
453
458
|
* Gets or sets the page number for paged queries.
|
|
454
459
|
*/
|
|
@@ -518,6 +523,7 @@ export class PublicLeasingService {
|
|
|
518
523
|
OrderStages: orderStages,
|
|
519
524
|
OrderDateGTE: orderDateGte,
|
|
520
525
|
OrderDateLTE: orderDateLte,
|
|
526
|
+
EndUserIdentityId: endUserIdentityId,
|
|
521
527
|
PageNumber: pageNumber,
|
|
522
528
|
Take: take,
|
|
523
529
|
Skip: skip,
|
|
@@ -562,6 +568,7 @@ export class PublicLeasingService {
|
|
|
562
568
|
orderStages,
|
|
563
569
|
orderDateGte,
|
|
564
570
|
orderDateLte,
|
|
571
|
+
endUserIdentityId,
|
|
565
572
|
pageNumber,
|
|
566
573
|
take,
|
|
567
574
|
skip,
|
|
@@ -646,6 +653,10 @@ export class PublicLeasingService {
|
|
|
646
653
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
647
654
|
*/
|
|
648
655
|
orderDateLte?: string;
|
|
656
|
+
/**
|
|
657
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
658
|
+
*/
|
|
659
|
+
endUserIdentityId?: string;
|
|
649
660
|
/**
|
|
650
661
|
* Gets or sets the page number for paged queries.
|
|
651
662
|
*/
|
|
@@ -715,6 +726,7 @@ export class PublicLeasingService {
|
|
|
715
726
|
OrderStages: orderStages,
|
|
716
727
|
OrderDateGTE: orderDateGte,
|
|
717
728
|
OrderDateLTE: orderDateLte,
|
|
729
|
+
EndUserIdentityId: endUserIdentityId,
|
|
718
730
|
PageNumber: pageNumber,
|
|
719
731
|
Take: take,
|
|
720
732
|
Skip: skip,
|
|
@@ -27,6 +27,7 @@ export class PublicNetworksService {
|
|
|
27
27
|
paymentPolicyId,
|
|
28
28
|
futureOnly,
|
|
29
29
|
online,
|
|
30
|
+
featured,
|
|
30
31
|
programmeId,
|
|
31
32
|
includeNextOpportunity,
|
|
32
33
|
allowTemplating,
|
|
@@ -89,6 +90,10 @@ export class PublicNetworksService {
|
|
|
89
90
|
* Gets or sets a value indicating whether return online sessions.
|
|
90
91
|
*/
|
|
91
92
|
online?: boolean;
|
|
93
|
+
/**
|
|
94
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
95
|
+
*/
|
|
96
|
+
featured?: boolean;
|
|
92
97
|
/**
|
|
93
98
|
* Gets or sets the queryable Programme Id.
|
|
94
99
|
*/
|
|
@@ -233,6 +238,7 @@ export class PublicNetworksService {
|
|
|
233
238
|
PaymentPolicyId: paymentPolicyId,
|
|
234
239
|
FutureOnly: futureOnly,
|
|
235
240
|
Online: online,
|
|
241
|
+
Featured: featured,
|
|
236
242
|
ProgrammeId: programmeId,
|
|
237
243
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
238
244
|
AllowTemplating: allowTemplating,
|
|
@@ -32,6 +32,7 @@ export class PublicOrderItemsService {
|
|
|
32
32
|
parentOrderItemId,
|
|
33
33
|
orderByOpportunityStartdate,
|
|
34
34
|
eventTiming,
|
|
35
|
+
endUserIdentityId,
|
|
35
36
|
pageNumber,
|
|
36
37
|
take,
|
|
37
38
|
skip,
|
|
@@ -85,6 +86,10 @@ export class PublicOrderItemsService {
|
|
|
85
86
|
* Gets or sets the queryable event timing.
|
|
86
87
|
*/
|
|
87
88
|
eventTiming?: EventTiming;
|
|
89
|
+
/**
|
|
90
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
91
|
+
*/
|
|
92
|
+
endUserIdentityId?: string;
|
|
88
93
|
/**
|
|
89
94
|
* Gets or sets the page number for paged queries.
|
|
90
95
|
*/
|
|
@@ -147,6 +152,7 @@ export class PublicOrderItemsService {
|
|
|
147
152
|
ParentOrderItemId: parentOrderItemId,
|
|
148
153
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
149
154
|
EventTiming: eventTiming,
|
|
155
|
+
EndUserIdentityId: endUserIdentityId,
|
|
150
156
|
PageNumber: pageNumber,
|
|
151
157
|
Take: take,
|
|
152
158
|
Skip: skip,
|
|
@@ -431,6 +437,7 @@ export class PublicOrderItemsService {
|
|
|
431
437
|
parentOrderItemId,
|
|
432
438
|
orderByOpportunityStartdate,
|
|
433
439
|
eventTiming,
|
|
440
|
+
endUserIdentityId,
|
|
434
441
|
pageNumber,
|
|
435
442
|
take,
|
|
436
443
|
skip,
|
|
@@ -487,6 +494,10 @@ export class PublicOrderItemsService {
|
|
|
487
494
|
* Gets or sets the queryable event timing.
|
|
488
495
|
*/
|
|
489
496
|
eventTiming?: EventTiming;
|
|
497
|
+
/**
|
|
498
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
499
|
+
*/
|
|
500
|
+
endUserIdentityId?: string;
|
|
490
501
|
/**
|
|
491
502
|
* Gets or sets the page number for paged queries.
|
|
492
503
|
*/
|
|
@@ -549,6 +560,7 @@ export class PublicOrderItemsService {
|
|
|
549
560
|
ParentOrderItemId: parentOrderItemId,
|
|
550
561
|
OrderByOpportunityStartdate: orderByOpportunityStartdate,
|
|
551
562
|
EventTiming: eventTiming,
|
|
563
|
+
EndUserIdentityId: endUserIdentityId,
|
|
552
564
|
PageNumber: pageNumber,
|
|
553
565
|
Take: take,
|
|
554
566
|
Skip: skip,
|
|
@@ -101,6 +101,7 @@ export class PublicOrdersService {
|
|
|
101
101
|
orderStages,
|
|
102
102
|
orderDateGte,
|
|
103
103
|
orderDateLte,
|
|
104
|
+
endUserIdentityId,
|
|
104
105
|
pageNumber,
|
|
105
106
|
take,
|
|
106
107
|
skip,
|
|
@@ -182,6 +183,10 @@ export class PublicOrdersService {
|
|
|
182
183
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
183
184
|
*/
|
|
184
185
|
orderDateLte?: string;
|
|
186
|
+
/**
|
|
187
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
188
|
+
*/
|
|
189
|
+
endUserIdentityId?: string;
|
|
185
190
|
/**
|
|
186
191
|
* Gets or sets the page number for paged queries.
|
|
187
192
|
*/
|
|
@@ -251,6 +256,7 @@ export class PublicOrdersService {
|
|
|
251
256
|
OrderStages: orderStages,
|
|
252
257
|
OrderDateGTE: orderDateGte,
|
|
253
258
|
OrderDateLTE: orderDateLte,
|
|
259
|
+
EndUserIdentityId: endUserIdentityId,
|
|
254
260
|
PageNumber: pageNumber,
|
|
255
261
|
Take: take,
|
|
256
262
|
Skip: skip,
|
|
@@ -584,6 +590,7 @@ export class PublicOrdersService {
|
|
|
584
590
|
orderStages,
|
|
585
591
|
orderDateGte,
|
|
586
592
|
orderDateLte,
|
|
593
|
+
endUserIdentityId,
|
|
587
594
|
pageNumber,
|
|
588
595
|
take,
|
|
589
596
|
skip,
|
|
@@ -668,6 +675,10 @@ export class PublicOrdersService {
|
|
|
668
675
|
* Gets or sets the queryable order date created is less than or equal to.
|
|
669
676
|
*/
|
|
670
677
|
orderDateLte?: string;
|
|
678
|
+
/**
|
|
679
|
+
* Gets or sets the end user identity Id for use in a query search.
|
|
680
|
+
*/
|
|
681
|
+
endUserIdentityId?: string;
|
|
671
682
|
/**
|
|
672
683
|
* Gets or sets the page number for paged queries.
|
|
673
684
|
*/
|
|
@@ -737,6 +748,7 @@ export class PublicOrdersService {
|
|
|
737
748
|
OrderStages: orderStages,
|
|
738
749
|
OrderDateGTE: orderDateGte,
|
|
739
750
|
OrderDateLTE: orderDateLte,
|
|
751
|
+
EndUserIdentityId: endUserIdentityId,
|
|
740
752
|
PageNumber: pageNumber,
|
|
741
753
|
Take: take,
|
|
742
754
|
Skip: skip,
|
|
@@ -102,6 +102,7 @@ export class PublicScheduledSessionsService {
|
|
|
102
102
|
remainingUsesLte,
|
|
103
103
|
remainingUsesGte,
|
|
104
104
|
futureOnly,
|
|
105
|
+
bookableOnly,
|
|
105
106
|
includeImages,
|
|
106
107
|
includeVenue,
|
|
107
108
|
includeOrders,
|
|
@@ -188,6 +189,10 @@ export class PublicScheduledSessionsService {
|
|
|
188
189
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
189
190
|
*/
|
|
190
191
|
futureOnly?: boolean;
|
|
192
|
+
/**
|
|
193
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
194
|
+
*/
|
|
195
|
+
bookableOnly?: boolean;
|
|
191
196
|
/**
|
|
192
197
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
193
198
|
*/
|
|
@@ -292,6 +297,7 @@ export class PublicScheduledSessionsService {
|
|
|
292
297
|
RemainingUsesLTE: remainingUsesLte,
|
|
293
298
|
RemainingUsesGTE: remainingUsesGte,
|
|
294
299
|
FutureOnly: futureOnly,
|
|
300
|
+
BookableOnly: bookableOnly,
|
|
295
301
|
IncludeImages: includeImages,
|
|
296
302
|
IncludeVenue: includeVenue,
|
|
297
303
|
IncludeOrders: includeOrders,
|
|
@@ -480,6 +486,7 @@ export class PublicScheduledSessionsService {
|
|
|
480
486
|
remainingUsesLte,
|
|
481
487
|
remainingUsesGte,
|
|
482
488
|
futureOnly,
|
|
489
|
+
bookableOnly,
|
|
483
490
|
includeImages,
|
|
484
491
|
includeVenue,
|
|
485
492
|
includeOrders,
|
|
@@ -569,6 +576,10 @@ export class PublicScheduledSessionsService {
|
|
|
569
576
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
570
577
|
*/
|
|
571
578
|
futureOnly?: boolean;
|
|
579
|
+
/**
|
|
580
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
581
|
+
*/
|
|
582
|
+
bookableOnly?: boolean;
|
|
572
583
|
/**
|
|
573
584
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
574
585
|
*/
|
|
@@ -673,6 +684,7 @@ export class PublicScheduledSessionsService {
|
|
|
673
684
|
RemainingUsesLTE: remainingUsesLte,
|
|
674
685
|
RemainingUsesGTE: remainingUsesGte,
|
|
675
686
|
FutureOnly: futureOnly,
|
|
687
|
+
BookableOnly: bookableOnly,
|
|
676
688
|
IncludeImages: includeImages,
|
|
677
689
|
IncludeVenue: includeVenue,
|
|
678
690
|
IncludeOrders: includeOrders,
|
|
@@ -96,6 +96,7 @@ export class PublicSessionsService {
|
|
|
96
96
|
paymentPolicyId,
|
|
97
97
|
futureOnly,
|
|
98
98
|
online,
|
|
99
|
+
featured,
|
|
99
100
|
programmeId,
|
|
100
101
|
includeNextOpportunity,
|
|
101
102
|
allowTemplating,
|
|
@@ -159,6 +160,10 @@ export class PublicSessionsService {
|
|
|
159
160
|
* Gets or sets a value indicating whether return online sessions.
|
|
160
161
|
*/
|
|
161
162
|
online?: boolean;
|
|
163
|
+
/**
|
|
164
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
165
|
+
*/
|
|
166
|
+
featured?: boolean;
|
|
162
167
|
/**
|
|
163
168
|
* Gets or sets the queryable Programme Id.
|
|
164
169
|
*/
|
|
@@ -306,6 +311,7 @@ export class PublicSessionsService {
|
|
|
306
311
|
PaymentPolicyId: paymentPolicyId,
|
|
307
312
|
FutureOnly: futureOnly,
|
|
308
313
|
Online: online,
|
|
314
|
+
Featured: featured,
|
|
309
315
|
ProgrammeId: programmeId,
|
|
310
316
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
311
317
|
AllowTemplating: allowTemplating,
|
|
@@ -446,6 +452,7 @@ export class PublicSessionsService {
|
|
|
446
452
|
remainingUsesLte,
|
|
447
453
|
remainingUsesGte,
|
|
448
454
|
futureOnly,
|
|
455
|
+
bookableOnly,
|
|
449
456
|
includeImages,
|
|
450
457
|
includeVenue,
|
|
451
458
|
includeOrders,
|
|
@@ -535,6 +542,10 @@ export class PublicSessionsService {
|
|
|
535
542
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
536
543
|
*/
|
|
537
544
|
futureOnly?: boolean;
|
|
545
|
+
/**
|
|
546
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
547
|
+
*/
|
|
548
|
+
bookableOnly?: boolean;
|
|
538
549
|
/**
|
|
539
550
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
540
551
|
*/
|
|
@@ -639,6 +650,7 @@ export class PublicSessionsService {
|
|
|
639
650
|
RemainingUsesLTE: remainingUsesLte,
|
|
640
651
|
RemainingUsesGTE: remainingUsesGte,
|
|
641
652
|
FutureOnly: futureOnly,
|
|
653
|
+
BookableOnly: bookableOnly,
|
|
642
654
|
IncludeImages: includeImages,
|
|
643
655
|
IncludeVenue: includeVenue,
|
|
644
656
|
IncludeOrders: includeOrders,
|
|
@@ -784,6 +796,7 @@ export class PublicSessionsService {
|
|
|
784
796
|
paymentPolicyId,
|
|
785
797
|
futureOnly,
|
|
786
798
|
online,
|
|
799
|
+
featured,
|
|
787
800
|
programmeId,
|
|
788
801
|
includeNextOpportunity,
|
|
789
802
|
allowTemplating,
|
|
@@ -850,6 +863,10 @@ export class PublicSessionsService {
|
|
|
850
863
|
* Gets or sets a value indicating whether return online sessions.
|
|
851
864
|
*/
|
|
852
865
|
online?: boolean;
|
|
866
|
+
/**
|
|
867
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
868
|
+
*/
|
|
869
|
+
featured?: boolean;
|
|
853
870
|
/**
|
|
854
871
|
* Gets or sets the queryable Programme Id.
|
|
855
872
|
*/
|
|
@@ -997,6 +1014,7 @@ export class PublicSessionsService {
|
|
|
997
1014
|
PaymentPolicyId: paymentPolicyId,
|
|
998
1015
|
FutureOnly: futureOnly,
|
|
999
1016
|
Online: online,
|
|
1017
|
+
Featured: featured,
|
|
1000
1018
|
ProgrammeId: programmeId,
|
|
1001
1019
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1002
1020
|
AllowTemplating: allowTemplating,
|
|
@@ -217,6 +217,7 @@ export class ScheduledSessionsSchedulesService {
|
|
|
217
217
|
lastRunDateTimeLte,
|
|
218
218
|
status,
|
|
219
219
|
statuses,
|
|
220
|
+
bookableOnly,
|
|
220
221
|
pageNumber,
|
|
221
222
|
take,
|
|
222
223
|
skip,
|
|
@@ -249,6 +250,10 @@ export class ScheduledSessionsSchedulesService {
|
|
|
249
250
|
* Gets or sets the queryable schedule statuses.
|
|
250
251
|
*/
|
|
251
252
|
statuses?: Array<ScheduleStatus>;
|
|
253
|
+
/**
|
|
254
|
+
* Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
255
|
+
*/
|
|
256
|
+
bookableOnly?: boolean;
|
|
252
257
|
/**
|
|
253
258
|
* Gets or sets the page number for paged queries.
|
|
254
259
|
*/
|
|
@@ -303,6 +308,7 @@ export class ScheduledSessionsSchedulesService {
|
|
|
303
308
|
LastRunDateTimeLTE: lastRunDateTimeLte,
|
|
304
309
|
Status: status,
|
|
305
310
|
Statuses: statuses,
|
|
311
|
+
BookableOnly: bookableOnly,
|
|
306
312
|
PageNumber: pageNumber,
|
|
307
313
|
Take: take,
|
|
308
314
|
Skip: skip,
|
|
@@ -415,6 +421,7 @@ export class ScheduledSessionsSchedulesService {
|
|
|
415
421
|
lastRunDateTimeLte,
|
|
416
422
|
status,
|
|
417
423
|
statuses,
|
|
424
|
+
bookableOnly,
|
|
418
425
|
pageNumber,
|
|
419
426
|
take,
|
|
420
427
|
skip,
|
|
@@ -447,6 +454,10 @@ export class ScheduledSessionsSchedulesService {
|
|
|
447
454
|
* Gets or sets the queryable schedule statuses.
|
|
448
455
|
*/
|
|
449
456
|
statuses?: Array<ScheduleStatus>;
|
|
457
|
+
/**
|
|
458
|
+
* Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
459
|
+
*/
|
|
460
|
+
bookableOnly?: boolean;
|
|
450
461
|
/**
|
|
451
462
|
* Gets or sets the page number for paged queries.
|
|
452
463
|
*/
|
|
@@ -501,6 +512,7 @@ export class ScheduledSessionsSchedulesService {
|
|
|
501
512
|
LastRunDateTimeLTE: lastRunDateTimeLte,
|
|
502
513
|
Status: status,
|
|
503
514
|
Statuses: statuses,
|
|
515
|
+
BookableOnly: bookableOnly,
|
|
504
516
|
PageNumber: pageNumber,
|
|
505
517
|
Take: take,
|
|
506
518
|
Skip: skip,
|
|
@@ -532,6 +544,7 @@ export class ScheduledSessionsSchedulesService {
|
|
|
532
544
|
lastRunDateTimeLte,
|
|
533
545
|
status,
|
|
534
546
|
statuses,
|
|
547
|
+
bookableOnly,
|
|
535
548
|
pageNumber,
|
|
536
549
|
take,
|
|
537
550
|
skip,
|
|
@@ -564,6 +577,10 @@ export class ScheduledSessionsSchedulesService {
|
|
|
564
577
|
* Gets or sets the queryable schedule statuses.
|
|
565
578
|
*/
|
|
566
579
|
statuses?: Array<ScheduleStatus>;
|
|
580
|
+
/**
|
|
581
|
+
* Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
582
|
+
*/
|
|
583
|
+
bookableOnly?: boolean;
|
|
567
584
|
/**
|
|
568
585
|
* Gets or sets the page number for paged queries.
|
|
569
586
|
*/
|
|
@@ -618,6 +635,7 @@ export class ScheduledSessionsSchedulesService {
|
|
|
618
635
|
LastRunDateTimeLTE: lastRunDateTimeLte,
|
|
619
636
|
Status: status,
|
|
620
637
|
Statuses: statuses,
|
|
638
|
+
BookableOnly: bookableOnly,
|
|
621
639
|
PageNumber: pageNumber,
|
|
622
640
|
Take: take,
|
|
623
641
|
Skip: skip,
|
|
@@ -649,6 +667,7 @@ export class ScheduledSessionsSchedulesService {
|
|
|
649
667
|
lastRunDateTimeLte,
|
|
650
668
|
status,
|
|
651
669
|
statuses,
|
|
670
|
+
bookableOnly,
|
|
652
671
|
pageNumber,
|
|
653
672
|
take,
|
|
654
673
|
skip,
|
|
@@ -681,6 +700,10 @@ export class ScheduledSessionsSchedulesService {
|
|
|
681
700
|
* Gets or sets the queryable schedule statuses.
|
|
682
701
|
*/
|
|
683
702
|
statuses?: Array<ScheduleStatus>;
|
|
703
|
+
/**
|
|
704
|
+
* Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
705
|
+
*/
|
|
706
|
+
bookableOnly?: boolean;
|
|
684
707
|
/**
|
|
685
708
|
* Gets or sets the page number for paged queries.
|
|
686
709
|
*/
|
|
@@ -735,6 +758,7 @@ export class ScheduledSessionsSchedulesService {
|
|
|
735
758
|
LastRunDateTimeLTE: lastRunDateTimeLte,
|
|
736
759
|
Status: status,
|
|
737
760
|
Statuses: statuses,
|
|
761
|
+
BookableOnly: bookableOnly,
|
|
738
762
|
PageNumber: pageNumber,
|
|
739
763
|
Take: take,
|
|
740
764
|
Skip: skip,
|
|
@@ -387,6 +387,7 @@ export class ScheduledSessionsService {
|
|
|
387
387
|
remainingUsesLte,
|
|
388
388
|
remainingUsesGte,
|
|
389
389
|
futureOnly,
|
|
390
|
+
bookableOnly,
|
|
390
391
|
includeImages,
|
|
391
392
|
includeVenue,
|
|
392
393
|
includeOrders,
|
|
@@ -472,6 +473,10 @@ export class ScheduledSessionsService {
|
|
|
472
473
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
473
474
|
*/
|
|
474
475
|
futureOnly?: boolean;
|
|
476
|
+
/**
|
|
477
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
478
|
+
*/
|
|
479
|
+
bookableOnly?: boolean;
|
|
475
480
|
/**
|
|
476
481
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
477
482
|
*/
|
|
@@ -573,6 +578,7 @@ export class ScheduledSessionsService {
|
|
|
573
578
|
RemainingUsesLTE: remainingUsesLte,
|
|
574
579
|
RemainingUsesGTE: remainingUsesGte,
|
|
575
580
|
FutureOnly: futureOnly,
|
|
581
|
+
BookableOnly: bookableOnly,
|
|
576
582
|
IncludeImages: includeImages,
|
|
577
583
|
IncludeVenue: includeVenue,
|
|
578
584
|
IncludeOrders: includeOrders,
|
|
@@ -705,6 +711,7 @@ export class ScheduledSessionsService {
|
|
|
705
711
|
remainingUsesLte,
|
|
706
712
|
remainingUsesGte,
|
|
707
713
|
futureOnly,
|
|
714
|
+
bookableOnly,
|
|
708
715
|
includeImages,
|
|
709
716
|
includeVenue,
|
|
710
717
|
includeOrders,
|
|
@@ -790,6 +797,10 @@ export class ScheduledSessionsService {
|
|
|
790
797
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
791
798
|
*/
|
|
792
799
|
futureOnly?: boolean;
|
|
800
|
+
/**
|
|
801
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
802
|
+
*/
|
|
803
|
+
bookableOnly?: boolean;
|
|
793
804
|
/**
|
|
794
805
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
795
806
|
*/
|
|
@@ -891,6 +902,7 @@ export class ScheduledSessionsService {
|
|
|
891
902
|
RemainingUsesLTE: remainingUsesLte,
|
|
892
903
|
RemainingUsesGTE: remainingUsesGte,
|
|
893
904
|
FutureOnly: futureOnly,
|
|
905
|
+
BookableOnly: bookableOnly,
|
|
894
906
|
IncludeImages: includeImages,
|
|
895
907
|
IncludeVenue: includeVenue,
|
|
896
908
|
IncludeOrders: includeOrders,
|
|
@@ -942,6 +954,7 @@ export class ScheduledSessionsService {
|
|
|
942
954
|
remainingUsesLte,
|
|
943
955
|
remainingUsesGte,
|
|
944
956
|
futureOnly,
|
|
957
|
+
bookableOnly,
|
|
945
958
|
includeImages,
|
|
946
959
|
includeVenue,
|
|
947
960
|
includeOrders,
|
|
@@ -1027,6 +1040,10 @@ export class ScheduledSessionsService {
|
|
|
1027
1040
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
1028
1041
|
*/
|
|
1029
1042
|
futureOnly?: boolean;
|
|
1043
|
+
/**
|
|
1044
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
1045
|
+
*/
|
|
1046
|
+
bookableOnly?: boolean;
|
|
1030
1047
|
/**
|
|
1031
1048
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
1032
1049
|
*/
|
|
@@ -1128,6 +1145,7 @@ export class ScheduledSessionsService {
|
|
|
1128
1145
|
RemainingUsesLTE: remainingUsesLte,
|
|
1129
1146
|
RemainingUsesGTE: remainingUsesGte,
|
|
1130
1147
|
FutureOnly: futureOnly,
|
|
1148
|
+
BookableOnly: bookableOnly,
|
|
1131
1149
|
IncludeImages: includeImages,
|
|
1132
1150
|
IncludeVenue: includeVenue,
|
|
1133
1151
|
IncludeOrders: includeOrders,
|
|
@@ -1179,6 +1197,7 @@ export class ScheduledSessionsService {
|
|
|
1179
1197
|
remainingUsesLte,
|
|
1180
1198
|
remainingUsesGte,
|
|
1181
1199
|
futureOnly,
|
|
1200
|
+
bookableOnly,
|
|
1182
1201
|
includeImages,
|
|
1183
1202
|
includeVenue,
|
|
1184
1203
|
includeOrders,
|
|
@@ -1264,6 +1283,10 @@ export class ScheduledSessionsService {
|
|
|
1264
1283
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
1265
1284
|
*/
|
|
1266
1285
|
futureOnly?: boolean;
|
|
1286
|
+
/**
|
|
1287
|
+
* Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
1288
|
+
*/
|
|
1289
|
+
bookableOnly?: boolean;
|
|
1267
1290
|
/**
|
|
1268
1291
|
* Gets or sets a value indicating whether to include image detail in the results.
|
|
1269
1292
|
*/
|
|
@@ -1365,6 +1388,7 @@ export class ScheduledSessionsService {
|
|
|
1365
1388
|
RemainingUsesLTE: remainingUsesLte,
|
|
1366
1389
|
RemainingUsesGTE: remainingUsesGte,
|
|
1367
1390
|
FutureOnly: futureOnly,
|
|
1391
|
+
BookableOnly: bookableOnly,
|
|
1368
1392
|
IncludeImages: includeImages,
|
|
1369
1393
|
IncludeVenue: includeVenue,
|
|
1370
1394
|
IncludeOrders: includeOrders,
|