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
|
@@ -4330,6 +4330,12 @@ paths:
|
|
|
4330
4330
|
schema:
|
|
4331
4331
|
type: string
|
|
4332
4332
|
format: date-time
|
|
4333
|
+
- name: EndUserIdentityId
|
|
4334
|
+
in: query
|
|
4335
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
4336
|
+
schema:
|
|
4337
|
+
type: string
|
|
4338
|
+
format: uuid
|
|
4333
4339
|
- name: PageNumber
|
|
4334
4340
|
in: query
|
|
4335
4341
|
description: Gets or sets the page number for paged queries.
|
|
@@ -4559,6 +4565,12 @@ paths:
|
|
|
4559
4565
|
schema:
|
|
4560
4566
|
type: string
|
|
4561
4567
|
format: date-time
|
|
4568
|
+
- name: EndUserIdentityId
|
|
4569
|
+
in: query
|
|
4570
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
4571
|
+
schema:
|
|
4572
|
+
type: string
|
|
4573
|
+
format: uuid
|
|
4562
4574
|
- name: PageNumber
|
|
4563
4575
|
in: query
|
|
4564
4576
|
description: Gets or sets the page number for paged queries.
|
|
@@ -5122,6 +5134,12 @@ paths:
|
|
|
5122
5134
|
schema:
|
|
5123
5135
|
type: string
|
|
5124
5136
|
format: date-time
|
|
5137
|
+
- name: EndUserIdentityId
|
|
5138
|
+
in: query
|
|
5139
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
5140
|
+
schema:
|
|
5141
|
+
type: string
|
|
5142
|
+
format: uuid
|
|
5125
5143
|
- name: PageNumber
|
|
5126
5144
|
in: query
|
|
5127
5145
|
description: Gets or sets the page number for paged queries.
|
|
@@ -5526,6 +5544,12 @@ paths:
|
|
|
5526
5544
|
schema:
|
|
5527
5545
|
type: string
|
|
5528
5546
|
format: date-time
|
|
5547
|
+
- name: EndUserIdentityId
|
|
5548
|
+
in: query
|
|
5549
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
5550
|
+
schema:
|
|
5551
|
+
type: string
|
|
5552
|
+
format: uuid
|
|
5529
5553
|
- name: PageNumber
|
|
5530
5554
|
in: query
|
|
5531
5555
|
description: Gets or sets the page number for paged queries.
|
|
@@ -5752,6 +5776,12 @@ paths:
|
|
|
5752
5776
|
schema:
|
|
5753
5777
|
type: string
|
|
5754
5778
|
format: date-time
|
|
5779
|
+
- name: EndUserIdentityId
|
|
5780
|
+
in: query
|
|
5781
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
5782
|
+
schema:
|
|
5783
|
+
type: string
|
|
5784
|
+
format: uuid
|
|
5755
5785
|
- name: PageNumber
|
|
5756
5786
|
in: query
|
|
5757
5787
|
description: Gets or sets the page number for paged queries.
|
|
@@ -5984,6 +6014,12 @@ paths:
|
|
|
5984
6014
|
schema:
|
|
5985
6015
|
type: string
|
|
5986
6016
|
format: date-time
|
|
6017
|
+
- name: EndUserIdentityId
|
|
6018
|
+
in: query
|
|
6019
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
6020
|
+
schema:
|
|
6021
|
+
type: string
|
|
6022
|
+
format: uuid
|
|
5987
6023
|
- name: PageNumber
|
|
5988
6024
|
in: query
|
|
5989
6025
|
description: Gets or sets the page number for paged queries.
|
|
@@ -8791,6 +8827,11 @@ paths:
|
|
|
8791
8827
|
description: Gets or sets a value indicating whether return online courses.
|
|
8792
8828
|
schema:
|
|
8793
8829
|
type: boolean
|
|
8830
|
+
- name: Featured
|
|
8831
|
+
in: query
|
|
8832
|
+
description: Gets or sets a value indicating whether the course is featured on the storefront.
|
|
8833
|
+
schema:
|
|
8834
|
+
type: boolean
|
|
8794
8835
|
- name: HasAvailability
|
|
8795
8836
|
in: query
|
|
8796
8837
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
@@ -9255,6 +9296,11 @@ paths:
|
|
|
9255
9296
|
description: Gets or sets a value indicating whether return online courses.
|
|
9256
9297
|
schema:
|
|
9257
9298
|
type: boolean
|
|
9299
|
+
- name: Featured
|
|
9300
|
+
in: query
|
|
9301
|
+
description: Gets or sets a value indicating whether the course is featured on the storefront.
|
|
9302
|
+
schema:
|
|
9303
|
+
type: boolean
|
|
9258
9304
|
- name: HasAvailability
|
|
9259
9305
|
in: query
|
|
9260
9306
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
@@ -9541,6 +9587,11 @@ paths:
|
|
|
9541
9587
|
description: Gets or sets a value indicating whether return online courses.
|
|
9542
9588
|
schema:
|
|
9543
9589
|
type: boolean
|
|
9590
|
+
- name: Featured
|
|
9591
|
+
in: query
|
|
9592
|
+
description: Gets or sets a value indicating whether the course is featured on the storefront.
|
|
9593
|
+
schema:
|
|
9594
|
+
type: boolean
|
|
9544
9595
|
- name: HasAvailability
|
|
9545
9596
|
in: query
|
|
9546
9597
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
@@ -9833,6 +9884,11 @@ paths:
|
|
|
9833
9884
|
description: Gets or sets a value indicating whether return online courses.
|
|
9834
9885
|
schema:
|
|
9835
9886
|
type: boolean
|
|
9887
|
+
- name: Featured
|
|
9888
|
+
in: query
|
|
9889
|
+
description: Gets or sets a value indicating whether the course is featured on the storefront.
|
|
9890
|
+
schema:
|
|
9891
|
+
type: boolean
|
|
9836
9892
|
- name: HasAvailability
|
|
9837
9893
|
in: query
|
|
9838
9894
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
@@ -28779,6 +28835,12 @@ paths:
|
|
|
28779
28835
|
schema:
|
|
28780
28836
|
type: string
|
|
28781
28837
|
format: date-time
|
|
28838
|
+
- name: EndUserIdentityId
|
|
28839
|
+
in: query
|
|
28840
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
28841
|
+
schema:
|
|
28842
|
+
type: string
|
|
28843
|
+
format: uuid
|
|
28782
28844
|
- name: PageNumber
|
|
28783
28845
|
in: query
|
|
28784
28846
|
description: Gets or sets the page number for paged queries.
|
|
@@ -29177,6 +29239,12 @@ paths:
|
|
|
29177
29239
|
schema:
|
|
29178
29240
|
type: string
|
|
29179
29241
|
format: date-time
|
|
29242
|
+
- name: EndUserIdentityId
|
|
29243
|
+
in: query
|
|
29244
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
29245
|
+
schema:
|
|
29246
|
+
type: string
|
|
29247
|
+
format: uuid
|
|
29180
29248
|
- name: PageNumber
|
|
29181
29249
|
in: query
|
|
29182
29250
|
description: Gets or sets the page number for paged queries.
|
|
@@ -29397,6 +29465,12 @@ paths:
|
|
|
29397
29465
|
schema:
|
|
29398
29466
|
type: string
|
|
29399
29467
|
format: date-time
|
|
29468
|
+
- name: EndUserIdentityId
|
|
29469
|
+
in: query
|
|
29470
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
29471
|
+
schema:
|
|
29472
|
+
type: string
|
|
29473
|
+
format: uuid
|
|
29400
29474
|
- name: PageNumber
|
|
29401
29475
|
in: query
|
|
29402
29476
|
description: Gets or sets the page number for paged queries.
|
|
@@ -29623,6 +29697,12 @@ paths:
|
|
|
29623
29697
|
schema:
|
|
29624
29698
|
type: string
|
|
29625
29699
|
format: date-time
|
|
29700
|
+
- name: EndUserIdentityId
|
|
29701
|
+
in: query
|
|
29702
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
29703
|
+
schema:
|
|
29704
|
+
type: string
|
|
29705
|
+
format: uuid
|
|
29626
29706
|
- name: PageNumber
|
|
29627
29707
|
in: query
|
|
29628
29708
|
description: Gets or sets the page number for paged queries.
|
|
@@ -40432,6 +40512,12 @@ paths:
|
|
|
40432
40512
|
description: Gets or sets the queryable event timing.
|
|
40433
40513
|
schema:
|
|
40434
40514
|
$ref: '#/components/schemas/EventTiming'
|
|
40515
|
+
- name: EndUserIdentityId
|
|
40516
|
+
in: query
|
|
40517
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
40518
|
+
schema:
|
|
40519
|
+
type: string
|
|
40520
|
+
format: uuid
|
|
40435
40521
|
- name: PageNumber
|
|
40436
40522
|
in: query
|
|
40437
40523
|
description: Gets or sets the page number for paged queries.
|
|
@@ -40791,6 +40877,12 @@ paths:
|
|
|
40791
40877
|
description: Gets or sets the queryable event timing.
|
|
40792
40878
|
schema:
|
|
40793
40879
|
$ref: '#/components/schemas/EventTiming'
|
|
40880
|
+
- name: EndUserIdentityId
|
|
40881
|
+
in: query
|
|
40882
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
40883
|
+
schema:
|
|
40884
|
+
type: string
|
|
40885
|
+
format: uuid
|
|
40794
40886
|
- name: PageNumber
|
|
40795
40887
|
in: query
|
|
40796
40888
|
description: Gets or sets the page number for paged queries.
|
|
@@ -40972,6 +41064,12 @@ paths:
|
|
|
40972
41064
|
description: Gets or sets the queryable event timing.
|
|
40973
41065
|
schema:
|
|
40974
41066
|
$ref: '#/components/schemas/EventTiming'
|
|
41067
|
+
- name: EndUserIdentityId
|
|
41068
|
+
in: query
|
|
41069
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
41070
|
+
schema:
|
|
41071
|
+
type: string
|
|
41072
|
+
format: uuid
|
|
40975
41073
|
- name: PageNumber
|
|
40976
41074
|
in: query
|
|
40977
41075
|
description: Gets or sets the page number for paged queries.
|
|
@@ -41159,6 +41257,12 @@ paths:
|
|
|
41159
41257
|
description: Gets or sets the queryable event timing.
|
|
41160
41258
|
schema:
|
|
41161
41259
|
$ref: '#/components/schemas/EventTiming'
|
|
41260
|
+
- name: EndUserIdentityId
|
|
41261
|
+
in: query
|
|
41262
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
41263
|
+
schema:
|
|
41264
|
+
type: string
|
|
41265
|
+
format: uuid
|
|
41162
41266
|
- name: PageNumber
|
|
41163
41267
|
in: query
|
|
41164
41268
|
description: Gets or sets the page number for paged queries.
|
|
@@ -42413,6 +42517,12 @@ paths:
|
|
|
42413
42517
|
schema:
|
|
42414
42518
|
type: string
|
|
42415
42519
|
format: date-time
|
|
42520
|
+
- name: EndUserIdentityId
|
|
42521
|
+
in: query
|
|
42522
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
42523
|
+
schema:
|
|
42524
|
+
type: string
|
|
42525
|
+
format: uuid
|
|
42416
42526
|
- name: PageNumber
|
|
42417
42527
|
in: query
|
|
42418
42528
|
description: Gets or sets the page number for paged queries.
|
|
@@ -42811,6 +42921,12 @@ paths:
|
|
|
42811
42921
|
schema:
|
|
42812
42922
|
type: string
|
|
42813
42923
|
format: date-time
|
|
42924
|
+
- name: EndUserIdentityId
|
|
42925
|
+
in: query
|
|
42926
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
42927
|
+
schema:
|
|
42928
|
+
type: string
|
|
42929
|
+
format: uuid
|
|
42814
42930
|
- name: PageNumber
|
|
42815
42931
|
in: query
|
|
42816
42932
|
description: Gets or sets the page number for paged queries.
|
|
@@ -43031,6 +43147,12 @@ paths:
|
|
|
43031
43147
|
schema:
|
|
43032
43148
|
type: string
|
|
43033
43149
|
format: date-time
|
|
43150
|
+
- name: EndUserIdentityId
|
|
43151
|
+
in: query
|
|
43152
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
43153
|
+
schema:
|
|
43154
|
+
type: string
|
|
43155
|
+
format: uuid
|
|
43034
43156
|
- name: PageNumber
|
|
43035
43157
|
in: query
|
|
43036
43158
|
description: Gets or sets the page number for paged queries.
|
|
@@ -43257,6 +43379,12 @@ paths:
|
|
|
43257
43379
|
schema:
|
|
43258
43380
|
type: string
|
|
43259
43381
|
format: date-time
|
|
43382
|
+
- name: EndUserIdentityId
|
|
43383
|
+
in: query
|
|
43384
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
43385
|
+
schema:
|
|
43386
|
+
type: string
|
|
43387
|
+
format: uuid
|
|
43260
43388
|
- name: PageNumber
|
|
43261
43389
|
in: query
|
|
43262
43390
|
description: Gets or sets the page number for paged queries.
|
|
@@ -53071,6 +53199,12 @@ paths:
|
|
|
53071
53199
|
schema:
|
|
53072
53200
|
type: string
|
|
53073
53201
|
format: date-time
|
|
53202
|
+
- name: EndUserIdentityId
|
|
53203
|
+
in: query
|
|
53204
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
53205
|
+
schema:
|
|
53206
|
+
type: string
|
|
53207
|
+
format: uuid
|
|
53074
53208
|
- name: PageNumber
|
|
53075
53209
|
in: query
|
|
53076
53210
|
description: Gets or sets the page number for paged queries.
|
|
@@ -53426,6 +53560,12 @@ paths:
|
|
|
53426
53560
|
schema:
|
|
53427
53561
|
type: string
|
|
53428
53562
|
format: date-time
|
|
53563
|
+
- name: EndUserIdentityId
|
|
53564
|
+
in: query
|
|
53565
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
53566
|
+
schema:
|
|
53567
|
+
type: string
|
|
53568
|
+
format: uuid
|
|
53429
53569
|
- name: PageNumber
|
|
53430
53570
|
in: query
|
|
53431
53571
|
description: Gets or sets the page number for paged queries.
|
|
@@ -53540,6 +53680,75 @@ paths:
|
|
|
53540
53680
|
text/json:
|
|
53541
53681
|
schema:
|
|
53542
53682
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
53683
|
+
/api/public/calendar:
|
|
53684
|
+
get:
|
|
53685
|
+
tags:
|
|
53686
|
+
- PublicCalendar
|
|
53687
|
+
summary: Gets calendar data.
|
|
53688
|
+
operationId: GetCalendarView
|
|
53689
|
+
parameters:
|
|
53690
|
+
- name: x-tenant-subdomain
|
|
53691
|
+
in: header
|
|
53692
|
+
description: The tenants subdomain.
|
|
53693
|
+
schema:
|
|
53694
|
+
type: string
|
|
53695
|
+
- name: StartDateTimeGTE
|
|
53696
|
+
in: query
|
|
53697
|
+
description: Gets or sets the queryable calendar item start date time is greater than or equal to.
|
|
53698
|
+
schema:
|
|
53699
|
+
type: string
|
|
53700
|
+
format: date-time
|
|
53701
|
+
- name: VenueId
|
|
53702
|
+
in: query
|
|
53703
|
+
description: Gets or sets the venue Id for use in a query search.
|
|
53704
|
+
schema:
|
|
53705
|
+
type: string
|
|
53706
|
+
format: uuid
|
|
53707
|
+
- name: ProgrammeId
|
|
53708
|
+
in: query
|
|
53709
|
+
description: Gets or sets the programme Id for use in a query search.
|
|
53710
|
+
schema:
|
|
53711
|
+
type: string
|
|
53712
|
+
format: uuid
|
|
53713
|
+
responses:
|
|
53714
|
+
'200':
|
|
53715
|
+
description: OK
|
|
53716
|
+
'400':
|
|
53717
|
+
description: Bad Request
|
|
53718
|
+
content:
|
|
53719
|
+
text/plain:
|
|
53720
|
+
schema:
|
|
53721
|
+
$ref: '#/components/schemas/ReachError'
|
|
53722
|
+
application/json:
|
|
53723
|
+
schema:
|
|
53724
|
+
$ref: '#/components/schemas/ReachError'
|
|
53725
|
+
text/json:
|
|
53726
|
+
schema:
|
|
53727
|
+
$ref: '#/components/schemas/ReachError'
|
|
53728
|
+
'500':
|
|
53729
|
+
description: Internal Server Error
|
|
53730
|
+
content:
|
|
53731
|
+
text/plain:
|
|
53732
|
+
schema:
|
|
53733
|
+
$ref: '#/components/schemas/ReachError'
|
|
53734
|
+
application/json:
|
|
53735
|
+
schema:
|
|
53736
|
+
$ref: '#/components/schemas/ReachError'
|
|
53737
|
+
text/json:
|
|
53738
|
+
schema:
|
|
53739
|
+
$ref: '#/components/schemas/ReachError'
|
|
53740
|
+
'422':
|
|
53741
|
+
description: Unprocessable Content
|
|
53742
|
+
content:
|
|
53743
|
+
text/plain:
|
|
53744
|
+
schema:
|
|
53745
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
53746
|
+
application/json:
|
|
53747
|
+
schema:
|
|
53748
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
53749
|
+
text/json:
|
|
53750
|
+
schema:
|
|
53751
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
53543
53752
|
'/api/public/courses/{id}':
|
|
53544
53753
|
get:
|
|
53545
53754
|
tags:
|
|
@@ -53786,6 +53995,11 @@ paths:
|
|
|
53786
53995
|
description: Gets or sets a value indicating whether return online courses.
|
|
53787
53996
|
schema:
|
|
53788
53997
|
type: boolean
|
|
53998
|
+
- name: Featured
|
|
53999
|
+
in: query
|
|
54000
|
+
description: Gets or sets a value indicating whether the course is featured on the storefront.
|
|
54001
|
+
schema:
|
|
54002
|
+
type: boolean
|
|
53789
54003
|
- name: HasAvailability
|
|
53790
54004
|
in: query
|
|
53791
54005
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
@@ -54369,6 +54583,11 @@ paths:
|
|
|
54369
54583
|
description: Gets or sets a value indicating whether return online courses.
|
|
54370
54584
|
schema:
|
|
54371
54585
|
type: boolean
|
|
54586
|
+
- name: Featured
|
|
54587
|
+
in: query
|
|
54588
|
+
description: Gets or sets a value indicating whether the course is featured on the storefront.
|
|
54589
|
+
schema:
|
|
54590
|
+
type: boolean
|
|
54372
54591
|
- name: HasAvailability
|
|
54373
54592
|
in: query
|
|
54374
54593
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
@@ -58265,6 +58484,12 @@ paths:
|
|
|
58265
58484
|
schema:
|
|
58266
58485
|
type: string
|
|
58267
58486
|
format: date-time
|
|
58487
|
+
- name: EndUserIdentityId
|
|
58488
|
+
in: query
|
|
58489
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
58490
|
+
schema:
|
|
58491
|
+
type: string
|
|
58492
|
+
format: uuid
|
|
58268
58493
|
- name: PageNumber
|
|
58269
58494
|
in: query
|
|
58270
58495
|
description: Gets or sets the page number for paged queries.
|
|
@@ -58490,6 +58715,12 @@ paths:
|
|
|
58490
58715
|
schema:
|
|
58491
58716
|
type: string
|
|
58492
58717
|
format: date-time
|
|
58718
|
+
- name: EndUserIdentityId
|
|
58719
|
+
in: query
|
|
58720
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
58721
|
+
schema:
|
|
58722
|
+
type: string
|
|
58723
|
+
format: uuid
|
|
58493
58724
|
- name: PageNumber
|
|
58494
58725
|
in: query
|
|
58495
58726
|
description: Gets or sets the page number for paged queries.
|
|
@@ -58653,6 +58884,11 @@ paths:
|
|
|
58653
58884
|
description: Gets or sets a value indicating whether return online sessions.
|
|
58654
58885
|
schema:
|
|
58655
58886
|
type: boolean
|
|
58887
|
+
- name: Featured
|
|
58888
|
+
in: query
|
|
58889
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
58890
|
+
schema:
|
|
58891
|
+
type: boolean
|
|
58656
58892
|
- name: ProgrammeId
|
|
58657
58893
|
in: query
|
|
58658
58894
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -59884,6 +60120,12 @@ paths:
|
|
|
59884
60120
|
description: Gets or sets the queryable event timing.
|
|
59885
60121
|
schema:
|
|
59886
60122
|
$ref: '#/components/schemas/EventTiming'
|
|
60123
|
+
- name: EndUserIdentityId
|
|
60124
|
+
in: query
|
|
60125
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
60126
|
+
schema:
|
|
60127
|
+
type: string
|
|
60128
|
+
format: uuid
|
|
59887
60129
|
- name: PageNumber
|
|
59888
60130
|
in: query
|
|
59889
60131
|
description: Gets or sets the page number for paged queries.
|
|
@@ -60561,6 +60803,12 @@ paths:
|
|
|
60561
60803
|
description: Gets or sets the queryable event timing.
|
|
60562
60804
|
schema:
|
|
60563
60805
|
$ref: '#/components/schemas/EventTiming'
|
|
60806
|
+
- name: EndUserIdentityId
|
|
60807
|
+
in: query
|
|
60808
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
60809
|
+
schema:
|
|
60810
|
+
type: string
|
|
60811
|
+
format: uuid
|
|
60564
60812
|
- name: PageNumber
|
|
60565
60813
|
in: query
|
|
60566
60814
|
description: Gets or sets the page number for paged queries.
|
|
@@ -60905,6 +61153,12 @@ paths:
|
|
|
60905
61153
|
schema:
|
|
60906
61154
|
type: string
|
|
60907
61155
|
format: date-time
|
|
61156
|
+
- name: EndUserIdentityId
|
|
61157
|
+
in: query
|
|
61158
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
61159
|
+
schema:
|
|
61160
|
+
type: string
|
|
61161
|
+
format: uuid
|
|
60908
61162
|
- name: PageNumber
|
|
60909
61163
|
in: query
|
|
60910
61164
|
description: Gets or sets the page number for paged queries.
|
|
@@ -61741,6 +61995,12 @@ paths:
|
|
|
61741
61995
|
schema:
|
|
61742
61996
|
type: string
|
|
61743
61997
|
format: date-time
|
|
61998
|
+
- name: EndUserIdentityId
|
|
61999
|
+
in: query
|
|
62000
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
62001
|
+
schema:
|
|
62002
|
+
type: string
|
|
62003
|
+
format: uuid
|
|
61744
62004
|
- name: PageNumber
|
|
61745
62005
|
in: query
|
|
61746
62006
|
description: Gets or sets the page number for paged queries.
|
|
@@ -64670,6 +64930,11 @@ paths:
|
|
|
64670
64930
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
64671
64931
|
schema:
|
|
64672
64932
|
type: boolean
|
|
64933
|
+
- name: BookableOnly
|
|
64934
|
+
in: query
|
|
64935
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
64936
|
+
schema:
|
|
64937
|
+
type: boolean
|
|
64673
64938
|
- name: IncludeImages
|
|
64674
64939
|
in: query
|
|
64675
64940
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -65231,6 +65496,11 @@ paths:
|
|
|
65231
65496
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
65232
65497
|
schema:
|
|
65233
65498
|
type: boolean
|
|
65499
|
+
- name: BookableOnly
|
|
65500
|
+
in: query
|
|
65501
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
65502
|
+
schema:
|
|
65503
|
+
type: boolean
|
|
65234
65504
|
- name: IncludeImages
|
|
65235
65505
|
in: query
|
|
65236
65506
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -65563,6 +65833,11 @@ paths:
|
|
|
65563
65833
|
description: Gets or sets a value indicating whether return online sessions.
|
|
65564
65834
|
schema:
|
|
65565
65835
|
type: boolean
|
|
65836
|
+
- name: Featured
|
|
65837
|
+
in: query
|
|
65838
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
65839
|
+
schema:
|
|
65840
|
+
type: boolean
|
|
65566
65841
|
- name: ProgrammeId
|
|
65567
65842
|
in: query
|
|
65568
65843
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -66049,6 +66324,11 @@ paths:
|
|
|
66049
66324
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
66050
66325
|
schema:
|
|
66051
66326
|
type: boolean
|
|
66327
|
+
- name: BookableOnly
|
|
66328
|
+
in: query
|
|
66329
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
66330
|
+
schema:
|
|
66331
|
+
type: boolean
|
|
66052
66332
|
- name: IncludeImages
|
|
66053
66333
|
in: query
|
|
66054
66334
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -66482,6 +66762,11 @@ paths:
|
|
|
66482
66762
|
description: Gets or sets a value indicating whether return online sessions.
|
|
66483
66763
|
schema:
|
|
66484
66764
|
type: boolean
|
|
66765
|
+
- name: Featured
|
|
66766
|
+
in: query
|
|
66767
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
66768
|
+
schema:
|
|
66769
|
+
type: boolean
|
|
66485
66770
|
- name: ProgrammeId
|
|
66486
66771
|
in: query
|
|
66487
66772
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -78164,6 +78449,11 @@ paths:
|
|
|
78164
78449
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
78165
78450
|
schema:
|
|
78166
78451
|
type: boolean
|
|
78452
|
+
- name: BookableOnly
|
|
78453
|
+
in: query
|
|
78454
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
78455
|
+
schema:
|
|
78456
|
+
type: boolean
|
|
78167
78457
|
- name: IncludeImages
|
|
78168
78458
|
in: query
|
|
78169
78459
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -78606,6 +78896,11 @@ paths:
|
|
|
78606
78896
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
78607
78897
|
schema:
|
|
78608
78898
|
type: boolean
|
|
78899
|
+
- name: BookableOnly
|
|
78900
|
+
in: query
|
|
78901
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
78902
|
+
schema:
|
|
78903
|
+
type: boolean
|
|
78609
78904
|
- name: IncludeImages
|
|
78610
78905
|
in: query
|
|
78611
78906
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -78870,6 +79165,11 @@ paths:
|
|
|
78870
79165
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
78871
79166
|
schema:
|
|
78872
79167
|
type: boolean
|
|
79168
|
+
- name: BookableOnly
|
|
79169
|
+
in: query
|
|
79170
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
79171
|
+
schema:
|
|
79172
|
+
type: boolean
|
|
78873
79173
|
- name: IncludeImages
|
|
78874
79174
|
in: query
|
|
78875
79175
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -79140,6 +79440,11 @@ paths:
|
|
|
79140
79440
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
79141
79441
|
schema:
|
|
79142
79442
|
type: boolean
|
|
79443
|
+
- name: BookableOnly
|
|
79444
|
+
in: query
|
|
79445
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
79446
|
+
schema:
|
|
79447
|
+
type: boolean
|
|
79143
79448
|
- name: IncludeImages
|
|
79144
79449
|
in: query
|
|
79145
79450
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -79858,6 +80163,11 @@ paths:
|
|
|
79858
80163
|
type: array
|
|
79859
80164
|
items:
|
|
79860
80165
|
$ref: '#/components/schemas/ScheduleStatus'
|
|
80166
|
+
- name: BookableOnly
|
|
80167
|
+
in: query
|
|
80168
|
+
description: Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
80169
|
+
schema:
|
|
80170
|
+
type: boolean
|
|
79861
80171
|
- name: PageNumber
|
|
79862
80172
|
in: query
|
|
79863
80173
|
description: Gets or sets the page number for paged queries.
|
|
@@ -80189,6 +80499,11 @@ paths:
|
|
|
80189
80499
|
type: array
|
|
80190
80500
|
items:
|
|
80191
80501
|
$ref: '#/components/schemas/ScheduleStatus'
|
|
80502
|
+
- name: BookableOnly
|
|
80503
|
+
in: query
|
|
80504
|
+
description: Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
80505
|
+
schema:
|
|
80506
|
+
type: boolean
|
|
80192
80507
|
- name: PageNumber
|
|
80193
80508
|
in: query
|
|
80194
80509
|
description: Gets or sets the page number for paged queries.
|
|
@@ -80342,6 +80657,11 @@ paths:
|
|
|
80342
80657
|
type: array
|
|
80343
80658
|
items:
|
|
80344
80659
|
$ref: '#/components/schemas/ScheduleStatus'
|
|
80660
|
+
- name: BookableOnly
|
|
80661
|
+
in: query
|
|
80662
|
+
description: Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
80663
|
+
schema:
|
|
80664
|
+
type: boolean
|
|
80345
80665
|
- name: PageNumber
|
|
80346
80666
|
in: query
|
|
80347
80667
|
description: Gets or sets the page number for paged queries.
|
|
@@ -80501,6 +80821,11 @@ paths:
|
|
|
80501
80821
|
type: array
|
|
80502
80822
|
items:
|
|
80503
80823
|
$ref: '#/components/schemas/ScheduleStatus'
|
|
80824
|
+
- name: BookableOnly
|
|
80825
|
+
in: query
|
|
80826
|
+
description: Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
80827
|
+
schema:
|
|
80828
|
+
type: boolean
|
|
80504
80829
|
- name: PageNumber
|
|
80505
80830
|
in: query
|
|
80506
80831
|
description: Gets or sets the page number for paged queries.
|
|
@@ -81589,6 +81914,11 @@ paths:
|
|
|
81589
81914
|
description: Gets or sets a value indicating whether return online sessions.
|
|
81590
81915
|
schema:
|
|
81591
81916
|
type: boolean
|
|
81917
|
+
- name: Featured
|
|
81918
|
+
in: query
|
|
81919
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
81920
|
+
schema:
|
|
81921
|
+
type: boolean
|
|
81592
81922
|
- name: ProgrammeId
|
|
81593
81923
|
in: query
|
|
81594
81924
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -82055,6 +82385,11 @@ paths:
|
|
|
82055
82385
|
description: Gets or sets a value indicating whether return online sessions.
|
|
82056
82386
|
schema:
|
|
82057
82387
|
type: boolean
|
|
82388
|
+
- name: Featured
|
|
82389
|
+
in: query
|
|
82390
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
82391
|
+
schema:
|
|
82392
|
+
type: boolean
|
|
82058
82393
|
- name: ProgrammeId
|
|
82059
82394
|
in: query
|
|
82060
82395
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -82343,6 +82678,11 @@ paths:
|
|
|
82343
82678
|
description: Gets or sets a value indicating whether return online sessions.
|
|
82344
82679
|
schema:
|
|
82345
82680
|
type: boolean
|
|
82681
|
+
- name: Featured
|
|
82682
|
+
in: query
|
|
82683
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
82684
|
+
schema:
|
|
82685
|
+
type: boolean
|
|
82346
82686
|
- name: ProgrammeId
|
|
82347
82687
|
in: query
|
|
82348
82688
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -82637,6 +82977,11 @@ paths:
|
|
|
82637
82977
|
description: Gets or sets a value indicating whether return online sessions.
|
|
82638
82978
|
schema:
|
|
82639
82979
|
type: boolean
|
|
82980
|
+
- name: Featured
|
|
82981
|
+
in: query
|
|
82982
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
82983
|
+
schema:
|
|
82984
|
+
type: boolean
|
|
82640
82985
|
- name: ProgrammeId
|
|
82641
82986
|
in: query
|
|
82642
82987
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -121401,6 +121746,10 @@ components:
|
|
|
121401
121746
|
type: string
|
|
121402
121747
|
description: Gets or sets the booking link override if checkout will occur externally.
|
|
121403
121748
|
nullable: true
|
|
121749
|
+
featured:
|
|
121750
|
+
type: boolean
|
|
121751
|
+
description: Gets or sets a value indicating whether the activity should be featured on the storefront.
|
|
121752
|
+
default: false
|
|
121404
121753
|
computedImage:
|
|
121405
121754
|
type: string
|
|
121406
121755
|
description: Gets the computed image url.
|
|
@@ -130263,6 +130612,10 @@ components:
|
|
|
130263
130612
|
type: string
|
|
130264
130613
|
description: Gets or sets the booking link override if checkout will occur externally.
|
|
130265
130614
|
nullable: true
|
|
130615
|
+
featured:
|
|
130616
|
+
type: boolean
|
|
130617
|
+
description: Gets or sets a value indicating whether the activity should be featured on the storefront.
|
|
130618
|
+
default: false
|
|
130266
130619
|
computedImage:
|
|
130267
130620
|
type: string
|
|
130268
130621
|
description: Gets the computed image url.
|
|
@@ -134087,6 +134440,8 @@ components:
|
|
|
134087
134440
|
type: string
|
|
134088
134441
|
description: Gets or sets the tenants website marketing optin text.
|
|
134089
134442
|
nullable: true
|
|
134443
|
+
upcomingLayout:
|
|
134444
|
+
$ref: '#/components/schemas/UpcomingLayout'
|
|
134090
134445
|
additionalProperties: false
|
|
134091
134446
|
description: Represents an organisation within the Reach application.
|
|
134092
134447
|
TenantWebsiteSettingPage:
|
|
@@ -134336,6 +134691,12 @@ components:
|
|
|
134336
134691
|
nullable: true
|
|
134337
134692
|
additionalProperties: false
|
|
134338
134693
|
description: The OpenAI description completion response model.
|
|
134694
|
+
UpcomingLayout:
|
|
134695
|
+
enum:
|
|
134696
|
+
- Grid
|
|
134697
|
+
- Calendar
|
|
134698
|
+
type: string
|
|
134699
|
+
description: UpcomingLayout.
|
|
134339
134700
|
UpdateEmailSettings:
|
|
134340
134701
|
type: object
|
|
134341
134702
|
properties:
|