reach-api-sdk 1.0.191 → 1.0.193
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 +515 -73
- package/dist/reach-sdk.js +298 -5
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +806 -6
- package/src/index.ts +2 -0
- package/src/models/Course.ts +8 -0
- package/src/models/GenericActivity.ts +4 -0
- package/src/models/Session.ts +8 -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 +104 -2
- package/src/services/GenericActivityService.ts +30 -0
- package/src/services/LeasingService.ts +24 -0
- package/src/services/OrderItemsService.ts +48 -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 +24 -0
- package/src/services/PublicGenericActivityService.ts +24 -0
- package/src/services/PublicLeasingService.ts +12 -0
- package/src/services/PublicNetworksService.ts +12 -0
- package/src/services/PublicOrderItemsService.ts +24 -0
- package/src/services/PublicOrdersService.ts +12 -0
- package/src/services/PublicScheduledSessionsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +30 -0
- package/src/services/PublicVenuesService.ts +18 -0
- package/src/services/ScheduledSessionsSchedulesService.ts +24 -0
- package/src/services/ScheduledSessionsService.ts +24 -0
- package/src/services/SessionsService.ts +106 -4
- package/src/services/VenuesService.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.
|
|
@@ -8198,7 +8234,7 @@ paths:
|
|
|
8198
8234
|
patch:
|
|
8199
8235
|
tags:
|
|
8200
8236
|
- Courses
|
|
8201
|
-
summary:
|
|
8237
|
+
summary: Assign deal to course />.
|
|
8202
8238
|
operationId: AssignDeal
|
|
8203
8239
|
parameters:
|
|
8204
8240
|
- name: courseId
|
|
@@ -8268,7 +8304,7 @@ paths:
|
|
|
8268
8304
|
patch:
|
|
8269
8305
|
tags:
|
|
8270
8306
|
- Courses
|
|
8271
|
-
summary:
|
|
8307
|
+
summary: Unassign deal from course />.
|
|
8272
8308
|
operationId: UnassignDeal
|
|
8273
8309
|
parameters:
|
|
8274
8310
|
- name: courseId
|
|
@@ -8334,6 +8370,132 @@ paths:
|
|
|
8334
8370
|
text/json:
|
|
8335
8371
|
schema:
|
|
8336
8372
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
8373
|
+
'/api/courses/{id}/set-featured':
|
|
8374
|
+
patch:
|
|
8375
|
+
tags:
|
|
8376
|
+
- Courses
|
|
8377
|
+
summary: Set the course as featured (displays more prominently on the storefront).
|
|
8378
|
+
operationId: SetFeatured
|
|
8379
|
+
parameters:
|
|
8380
|
+
- name: id
|
|
8381
|
+
in: path
|
|
8382
|
+
description: The course Id.
|
|
8383
|
+
required: true
|
|
8384
|
+
schema:
|
|
8385
|
+
type: string
|
|
8386
|
+
format: uuid
|
|
8387
|
+
responses:
|
|
8388
|
+
'200':
|
|
8389
|
+
description: OK
|
|
8390
|
+
content:
|
|
8391
|
+
text/plain:
|
|
8392
|
+
schema:
|
|
8393
|
+
$ref: '#/components/schemas/Course'
|
|
8394
|
+
application/json:
|
|
8395
|
+
schema:
|
|
8396
|
+
$ref: '#/components/schemas/Course'
|
|
8397
|
+
text/json:
|
|
8398
|
+
schema:
|
|
8399
|
+
$ref: '#/components/schemas/Course'
|
|
8400
|
+
'400':
|
|
8401
|
+
description: Bad Request
|
|
8402
|
+
content:
|
|
8403
|
+
text/plain:
|
|
8404
|
+
schema:
|
|
8405
|
+
$ref: '#/components/schemas/ReachError'
|
|
8406
|
+
application/json:
|
|
8407
|
+
schema:
|
|
8408
|
+
$ref: '#/components/schemas/ReachError'
|
|
8409
|
+
text/json:
|
|
8410
|
+
schema:
|
|
8411
|
+
$ref: '#/components/schemas/ReachError'
|
|
8412
|
+
'500':
|
|
8413
|
+
description: Internal Server Error
|
|
8414
|
+
content:
|
|
8415
|
+
text/plain:
|
|
8416
|
+
schema:
|
|
8417
|
+
$ref: '#/components/schemas/ReachError'
|
|
8418
|
+
application/json:
|
|
8419
|
+
schema:
|
|
8420
|
+
$ref: '#/components/schemas/ReachError'
|
|
8421
|
+
text/json:
|
|
8422
|
+
schema:
|
|
8423
|
+
$ref: '#/components/schemas/ReachError'
|
|
8424
|
+
'422':
|
|
8425
|
+
description: Unprocessable Content
|
|
8426
|
+
content:
|
|
8427
|
+
text/plain:
|
|
8428
|
+
schema:
|
|
8429
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
8430
|
+
application/json:
|
|
8431
|
+
schema:
|
|
8432
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
8433
|
+
text/json:
|
|
8434
|
+
schema:
|
|
8435
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
8436
|
+
'/api/courses/{id}/remove-featured':
|
|
8437
|
+
patch:
|
|
8438
|
+
tags:
|
|
8439
|
+
- Courses
|
|
8440
|
+
summary: Remove the course as featured (displays as standard on the storefront).
|
|
8441
|
+
operationId: RemoveFeatured
|
|
8442
|
+
parameters:
|
|
8443
|
+
- name: id
|
|
8444
|
+
in: path
|
|
8445
|
+
description: The course Id.
|
|
8446
|
+
required: true
|
|
8447
|
+
schema:
|
|
8448
|
+
type: string
|
|
8449
|
+
format: uuid
|
|
8450
|
+
responses:
|
|
8451
|
+
'200':
|
|
8452
|
+
description: OK
|
|
8453
|
+
content:
|
|
8454
|
+
text/plain:
|
|
8455
|
+
schema:
|
|
8456
|
+
$ref: '#/components/schemas/Course'
|
|
8457
|
+
application/json:
|
|
8458
|
+
schema:
|
|
8459
|
+
$ref: '#/components/schemas/Course'
|
|
8460
|
+
text/json:
|
|
8461
|
+
schema:
|
|
8462
|
+
$ref: '#/components/schemas/Course'
|
|
8463
|
+
'400':
|
|
8464
|
+
description: Bad Request
|
|
8465
|
+
content:
|
|
8466
|
+
text/plain:
|
|
8467
|
+
schema:
|
|
8468
|
+
$ref: '#/components/schemas/ReachError'
|
|
8469
|
+
application/json:
|
|
8470
|
+
schema:
|
|
8471
|
+
$ref: '#/components/schemas/ReachError'
|
|
8472
|
+
text/json:
|
|
8473
|
+
schema:
|
|
8474
|
+
$ref: '#/components/schemas/ReachError'
|
|
8475
|
+
'500':
|
|
8476
|
+
description: Internal Server Error
|
|
8477
|
+
content:
|
|
8478
|
+
text/plain:
|
|
8479
|
+
schema:
|
|
8480
|
+
$ref: '#/components/schemas/ReachError'
|
|
8481
|
+
application/json:
|
|
8482
|
+
schema:
|
|
8483
|
+
$ref: '#/components/schemas/ReachError'
|
|
8484
|
+
text/json:
|
|
8485
|
+
schema:
|
|
8486
|
+
$ref: '#/components/schemas/ReachError'
|
|
8487
|
+
'422':
|
|
8488
|
+
description: Unprocessable Content
|
|
8489
|
+
content:
|
|
8490
|
+
text/plain:
|
|
8491
|
+
schema:
|
|
8492
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
8493
|
+
application/json:
|
|
8494
|
+
schema:
|
|
8495
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
8496
|
+
text/json:
|
|
8497
|
+
schema:
|
|
8498
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
8337
8499
|
/api/courses/v2-temporary-route:
|
|
8338
8500
|
post:
|
|
8339
8501
|
tags:
|
|
@@ -8740,6 +8902,11 @@ paths:
|
|
|
8740
8902
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
8741
8903
|
schema:
|
|
8742
8904
|
type: boolean
|
|
8905
|
+
- name: DashboardRequest
|
|
8906
|
+
in: query
|
|
8907
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
8908
|
+
schema:
|
|
8909
|
+
type: boolean
|
|
8743
8910
|
- name: BookingStatus
|
|
8744
8911
|
in: query
|
|
8745
8912
|
description: Gets or sets the queryable booking status.
|
|
@@ -8791,6 +8958,11 @@ paths:
|
|
|
8791
8958
|
description: Gets or sets a value indicating whether return online courses.
|
|
8792
8959
|
schema:
|
|
8793
8960
|
type: boolean
|
|
8961
|
+
- name: Featured
|
|
8962
|
+
in: query
|
|
8963
|
+
description: Gets or sets a value indicating whether the course is featured on the storefront.
|
|
8964
|
+
schema:
|
|
8965
|
+
type: boolean
|
|
8794
8966
|
- name: HasAvailability
|
|
8795
8967
|
in: query
|
|
8796
8968
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
@@ -9204,6 +9376,11 @@ paths:
|
|
|
9204
9376
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
9205
9377
|
schema:
|
|
9206
9378
|
type: boolean
|
|
9379
|
+
- name: DashboardRequest
|
|
9380
|
+
in: query
|
|
9381
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
9382
|
+
schema:
|
|
9383
|
+
type: boolean
|
|
9207
9384
|
- name: BookingStatus
|
|
9208
9385
|
in: query
|
|
9209
9386
|
description: Gets or sets the queryable booking status.
|
|
@@ -9255,6 +9432,11 @@ paths:
|
|
|
9255
9432
|
description: Gets or sets a value indicating whether return online courses.
|
|
9256
9433
|
schema:
|
|
9257
9434
|
type: boolean
|
|
9435
|
+
- name: Featured
|
|
9436
|
+
in: query
|
|
9437
|
+
description: Gets or sets a value indicating whether the course is featured on the storefront.
|
|
9438
|
+
schema:
|
|
9439
|
+
type: boolean
|
|
9258
9440
|
- name: HasAvailability
|
|
9259
9441
|
in: query
|
|
9260
9442
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
@@ -9490,6 +9672,11 @@ paths:
|
|
|
9490
9672
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
9491
9673
|
schema:
|
|
9492
9674
|
type: boolean
|
|
9675
|
+
- name: DashboardRequest
|
|
9676
|
+
in: query
|
|
9677
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
9678
|
+
schema:
|
|
9679
|
+
type: boolean
|
|
9493
9680
|
- name: BookingStatus
|
|
9494
9681
|
in: query
|
|
9495
9682
|
description: Gets or sets the queryable booking status.
|
|
@@ -9541,6 +9728,11 @@ paths:
|
|
|
9541
9728
|
description: Gets or sets a value indicating whether return online courses.
|
|
9542
9729
|
schema:
|
|
9543
9730
|
type: boolean
|
|
9731
|
+
- name: Featured
|
|
9732
|
+
in: query
|
|
9733
|
+
description: Gets or sets a value indicating whether the course is featured on the storefront.
|
|
9734
|
+
schema:
|
|
9735
|
+
type: boolean
|
|
9544
9736
|
- name: HasAvailability
|
|
9545
9737
|
in: query
|
|
9546
9738
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
@@ -9782,6 +9974,11 @@ paths:
|
|
|
9782
9974
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
9783
9975
|
schema:
|
|
9784
9976
|
type: boolean
|
|
9977
|
+
- name: DashboardRequest
|
|
9978
|
+
in: query
|
|
9979
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
9980
|
+
schema:
|
|
9981
|
+
type: boolean
|
|
9785
9982
|
- name: BookingStatus
|
|
9786
9983
|
in: query
|
|
9787
9984
|
description: Gets or sets the queryable booking status.
|
|
@@ -9833,6 +10030,11 @@ paths:
|
|
|
9833
10030
|
description: Gets or sets a value indicating whether return online courses.
|
|
9834
10031
|
schema:
|
|
9835
10032
|
type: boolean
|
|
10033
|
+
- name: Featured
|
|
10034
|
+
in: query
|
|
10035
|
+
description: Gets or sets a value indicating whether the course is featured on the storefront.
|
|
10036
|
+
schema:
|
|
10037
|
+
type: boolean
|
|
9836
10038
|
- name: HasAvailability
|
|
9837
10039
|
in: query
|
|
9838
10040
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
@@ -23624,6 +23826,11 @@ paths:
|
|
|
23624
23826
|
description: Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
23625
23827
|
schema:
|
|
23626
23828
|
type: boolean
|
|
23829
|
+
- name: Featured
|
|
23830
|
+
in: query
|
|
23831
|
+
description: Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
23832
|
+
schema:
|
|
23833
|
+
type: boolean
|
|
23627
23834
|
- name: SearchGeoCenter
|
|
23628
23835
|
in: query
|
|
23629
23836
|
description: Gets or sets SearchGeoCenter.
|
|
@@ -23988,6 +24195,11 @@ paths:
|
|
|
23988
24195
|
description: Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
23989
24196
|
schema:
|
|
23990
24197
|
type: boolean
|
|
24198
|
+
- name: Featured
|
|
24199
|
+
in: query
|
|
24200
|
+
description: Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
24201
|
+
schema:
|
|
24202
|
+
type: boolean
|
|
23991
24203
|
- name: SearchGeoCenter
|
|
23992
24204
|
in: query
|
|
23993
24205
|
description: Gets or sets SearchGeoCenter.
|
|
@@ -24283,6 +24495,11 @@ paths:
|
|
|
24283
24495
|
description: Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
24284
24496
|
schema:
|
|
24285
24497
|
type: boolean
|
|
24498
|
+
- name: Featured
|
|
24499
|
+
in: query
|
|
24500
|
+
description: Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
24501
|
+
schema:
|
|
24502
|
+
type: boolean
|
|
24286
24503
|
- name: SearchGeoCenter
|
|
24287
24504
|
in: query
|
|
24288
24505
|
description: Gets or sets SearchGeoCenter.
|
|
@@ -24578,6 +24795,11 @@ paths:
|
|
|
24578
24795
|
description: Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
24579
24796
|
schema:
|
|
24580
24797
|
type: boolean
|
|
24798
|
+
- name: Featured
|
|
24799
|
+
in: query
|
|
24800
|
+
description: Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
24801
|
+
schema:
|
|
24802
|
+
type: boolean
|
|
24581
24803
|
- name: SearchGeoCenter
|
|
24582
24804
|
in: query
|
|
24583
24805
|
description: Gets or sets SearchGeoCenter.
|
|
@@ -24879,6 +25101,11 @@ paths:
|
|
|
24879
25101
|
description: Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
24880
25102
|
schema:
|
|
24881
25103
|
type: boolean
|
|
25104
|
+
- name: Featured
|
|
25105
|
+
in: query
|
|
25106
|
+
description: Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
25107
|
+
schema:
|
|
25108
|
+
type: boolean
|
|
24882
25109
|
- name: SearchGeoCenter
|
|
24883
25110
|
in: query
|
|
24884
25111
|
description: Gets or sets SearchGeoCenter.
|
|
@@ -28779,6 +29006,12 @@ paths:
|
|
|
28779
29006
|
schema:
|
|
28780
29007
|
type: string
|
|
28781
29008
|
format: date-time
|
|
29009
|
+
- name: EndUserIdentityId
|
|
29010
|
+
in: query
|
|
29011
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
29012
|
+
schema:
|
|
29013
|
+
type: string
|
|
29014
|
+
format: uuid
|
|
28782
29015
|
- name: PageNumber
|
|
28783
29016
|
in: query
|
|
28784
29017
|
description: Gets or sets the page number for paged queries.
|
|
@@ -29177,6 +29410,12 @@ paths:
|
|
|
29177
29410
|
schema:
|
|
29178
29411
|
type: string
|
|
29179
29412
|
format: date-time
|
|
29413
|
+
- name: EndUserIdentityId
|
|
29414
|
+
in: query
|
|
29415
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
29416
|
+
schema:
|
|
29417
|
+
type: string
|
|
29418
|
+
format: uuid
|
|
29180
29419
|
- name: PageNumber
|
|
29181
29420
|
in: query
|
|
29182
29421
|
description: Gets or sets the page number for paged queries.
|
|
@@ -29397,6 +29636,12 @@ paths:
|
|
|
29397
29636
|
schema:
|
|
29398
29637
|
type: string
|
|
29399
29638
|
format: date-time
|
|
29639
|
+
- name: EndUserIdentityId
|
|
29640
|
+
in: query
|
|
29641
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
29642
|
+
schema:
|
|
29643
|
+
type: string
|
|
29644
|
+
format: uuid
|
|
29400
29645
|
- name: PageNumber
|
|
29401
29646
|
in: query
|
|
29402
29647
|
description: Gets or sets the page number for paged queries.
|
|
@@ -29623,6 +29868,12 @@ paths:
|
|
|
29623
29868
|
schema:
|
|
29624
29869
|
type: string
|
|
29625
29870
|
format: date-time
|
|
29871
|
+
- name: EndUserIdentityId
|
|
29872
|
+
in: query
|
|
29873
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
29874
|
+
schema:
|
|
29875
|
+
type: string
|
|
29876
|
+
format: uuid
|
|
29626
29877
|
- name: PageNumber
|
|
29627
29878
|
in: query
|
|
29628
29879
|
description: Gets or sets the page number for paged queries.
|
|
@@ -40432,6 +40683,17 @@ paths:
|
|
|
40432
40683
|
description: Gets or sets the queryable event timing.
|
|
40433
40684
|
schema:
|
|
40434
40685
|
$ref: '#/components/schemas/EventTiming'
|
|
40686
|
+
- name: EndUserIdentityId
|
|
40687
|
+
in: query
|
|
40688
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
40689
|
+
schema:
|
|
40690
|
+
type: string
|
|
40691
|
+
format: uuid
|
|
40692
|
+
- name: DashboardRequest
|
|
40693
|
+
in: query
|
|
40694
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
40695
|
+
schema:
|
|
40696
|
+
type: boolean
|
|
40435
40697
|
- name: PageNumber
|
|
40436
40698
|
in: query
|
|
40437
40699
|
description: Gets or sets the page number for paged queries.
|
|
@@ -40791,6 +41053,17 @@ paths:
|
|
|
40791
41053
|
description: Gets or sets the queryable event timing.
|
|
40792
41054
|
schema:
|
|
40793
41055
|
$ref: '#/components/schemas/EventTiming'
|
|
41056
|
+
- name: EndUserIdentityId
|
|
41057
|
+
in: query
|
|
41058
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
41059
|
+
schema:
|
|
41060
|
+
type: string
|
|
41061
|
+
format: uuid
|
|
41062
|
+
- name: DashboardRequest
|
|
41063
|
+
in: query
|
|
41064
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
41065
|
+
schema:
|
|
41066
|
+
type: boolean
|
|
40794
41067
|
- name: PageNumber
|
|
40795
41068
|
in: query
|
|
40796
41069
|
description: Gets or sets the page number for paged queries.
|
|
@@ -40972,6 +41245,17 @@ paths:
|
|
|
40972
41245
|
description: Gets or sets the queryable event timing.
|
|
40973
41246
|
schema:
|
|
40974
41247
|
$ref: '#/components/schemas/EventTiming'
|
|
41248
|
+
- name: EndUserIdentityId
|
|
41249
|
+
in: query
|
|
41250
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
41251
|
+
schema:
|
|
41252
|
+
type: string
|
|
41253
|
+
format: uuid
|
|
41254
|
+
- name: DashboardRequest
|
|
41255
|
+
in: query
|
|
41256
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
41257
|
+
schema:
|
|
41258
|
+
type: boolean
|
|
40975
41259
|
- name: PageNumber
|
|
40976
41260
|
in: query
|
|
40977
41261
|
description: Gets or sets the page number for paged queries.
|
|
@@ -41159,6 +41443,17 @@ paths:
|
|
|
41159
41443
|
description: Gets or sets the queryable event timing.
|
|
41160
41444
|
schema:
|
|
41161
41445
|
$ref: '#/components/schemas/EventTiming'
|
|
41446
|
+
- name: EndUserIdentityId
|
|
41447
|
+
in: query
|
|
41448
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
41449
|
+
schema:
|
|
41450
|
+
type: string
|
|
41451
|
+
format: uuid
|
|
41452
|
+
- name: DashboardRequest
|
|
41453
|
+
in: query
|
|
41454
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
41455
|
+
schema:
|
|
41456
|
+
type: boolean
|
|
41162
41457
|
- name: PageNumber
|
|
41163
41458
|
in: query
|
|
41164
41459
|
description: Gets or sets the page number for paged queries.
|
|
@@ -42413,6 +42708,12 @@ paths:
|
|
|
42413
42708
|
schema:
|
|
42414
42709
|
type: string
|
|
42415
42710
|
format: date-time
|
|
42711
|
+
- name: EndUserIdentityId
|
|
42712
|
+
in: query
|
|
42713
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
42714
|
+
schema:
|
|
42715
|
+
type: string
|
|
42716
|
+
format: uuid
|
|
42416
42717
|
- name: PageNumber
|
|
42417
42718
|
in: query
|
|
42418
42719
|
description: Gets or sets the page number for paged queries.
|
|
@@ -42811,6 +43112,12 @@ paths:
|
|
|
42811
43112
|
schema:
|
|
42812
43113
|
type: string
|
|
42813
43114
|
format: date-time
|
|
43115
|
+
- name: EndUserIdentityId
|
|
43116
|
+
in: query
|
|
43117
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
43118
|
+
schema:
|
|
43119
|
+
type: string
|
|
43120
|
+
format: uuid
|
|
42814
43121
|
- name: PageNumber
|
|
42815
43122
|
in: query
|
|
42816
43123
|
description: Gets or sets the page number for paged queries.
|
|
@@ -43031,6 +43338,12 @@ paths:
|
|
|
43031
43338
|
schema:
|
|
43032
43339
|
type: string
|
|
43033
43340
|
format: date-time
|
|
43341
|
+
- name: EndUserIdentityId
|
|
43342
|
+
in: query
|
|
43343
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
43344
|
+
schema:
|
|
43345
|
+
type: string
|
|
43346
|
+
format: uuid
|
|
43034
43347
|
- name: PageNumber
|
|
43035
43348
|
in: query
|
|
43036
43349
|
description: Gets or sets the page number for paged queries.
|
|
@@ -43257,6 +43570,12 @@ paths:
|
|
|
43257
43570
|
schema:
|
|
43258
43571
|
type: string
|
|
43259
43572
|
format: date-time
|
|
43573
|
+
- name: EndUserIdentityId
|
|
43574
|
+
in: query
|
|
43575
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
43576
|
+
schema:
|
|
43577
|
+
type: string
|
|
43578
|
+
format: uuid
|
|
43260
43579
|
- name: PageNumber
|
|
43261
43580
|
in: query
|
|
43262
43581
|
description: Gets or sets the page number for paged queries.
|
|
@@ -53071,6 +53390,12 @@ paths:
|
|
|
53071
53390
|
schema:
|
|
53072
53391
|
type: string
|
|
53073
53392
|
format: date-time
|
|
53393
|
+
- name: EndUserIdentityId
|
|
53394
|
+
in: query
|
|
53395
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
53396
|
+
schema:
|
|
53397
|
+
type: string
|
|
53398
|
+
format: uuid
|
|
53074
53399
|
- name: PageNumber
|
|
53075
53400
|
in: query
|
|
53076
53401
|
description: Gets or sets the page number for paged queries.
|
|
@@ -53426,6 +53751,12 @@ paths:
|
|
|
53426
53751
|
schema:
|
|
53427
53752
|
type: string
|
|
53428
53753
|
format: date-time
|
|
53754
|
+
- name: EndUserIdentityId
|
|
53755
|
+
in: query
|
|
53756
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
53757
|
+
schema:
|
|
53758
|
+
type: string
|
|
53759
|
+
format: uuid
|
|
53429
53760
|
- name: PageNumber
|
|
53430
53761
|
in: query
|
|
53431
53762
|
description: Gets or sets the page number for paged queries.
|
|
@@ -53540,6 +53871,75 @@ paths:
|
|
|
53540
53871
|
text/json:
|
|
53541
53872
|
schema:
|
|
53542
53873
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
53874
|
+
/api/public/calendar:
|
|
53875
|
+
get:
|
|
53876
|
+
tags:
|
|
53877
|
+
- PublicCalendar
|
|
53878
|
+
summary: Gets calendar data.
|
|
53879
|
+
operationId: GetCalendarView
|
|
53880
|
+
parameters:
|
|
53881
|
+
- name: x-tenant-subdomain
|
|
53882
|
+
in: header
|
|
53883
|
+
description: The tenants subdomain.
|
|
53884
|
+
schema:
|
|
53885
|
+
type: string
|
|
53886
|
+
- name: StartDateTimeGTE
|
|
53887
|
+
in: query
|
|
53888
|
+
description: Gets or sets the queryable calendar item start date time is greater than or equal to.
|
|
53889
|
+
schema:
|
|
53890
|
+
type: string
|
|
53891
|
+
format: date-time
|
|
53892
|
+
- name: VenueId
|
|
53893
|
+
in: query
|
|
53894
|
+
description: Gets or sets the venue Id for use in a query search.
|
|
53895
|
+
schema:
|
|
53896
|
+
type: string
|
|
53897
|
+
format: uuid
|
|
53898
|
+
- name: ProgrammeId
|
|
53899
|
+
in: query
|
|
53900
|
+
description: Gets or sets the programme Id for use in a query search.
|
|
53901
|
+
schema:
|
|
53902
|
+
type: string
|
|
53903
|
+
format: uuid
|
|
53904
|
+
responses:
|
|
53905
|
+
'200':
|
|
53906
|
+
description: OK
|
|
53907
|
+
'400':
|
|
53908
|
+
description: Bad Request
|
|
53909
|
+
content:
|
|
53910
|
+
text/plain:
|
|
53911
|
+
schema:
|
|
53912
|
+
$ref: '#/components/schemas/ReachError'
|
|
53913
|
+
application/json:
|
|
53914
|
+
schema:
|
|
53915
|
+
$ref: '#/components/schemas/ReachError'
|
|
53916
|
+
text/json:
|
|
53917
|
+
schema:
|
|
53918
|
+
$ref: '#/components/schemas/ReachError'
|
|
53919
|
+
'500':
|
|
53920
|
+
description: Internal Server Error
|
|
53921
|
+
content:
|
|
53922
|
+
text/plain:
|
|
53923
|
+
schema:
|
|
53924
|
+
$ref: '#/components/schemas/ReachError'
|
|
53925
|
+
application/json:
|
|
53926
|
+
schema:
|
|
53927
|
+
$ref: '#/components/schemas/ReachError'
|
|
53928
|
+
text/json:
|
|
53929
|
+
schema:
|
|
53930
|
+
$ref: '#/components/schemas/ReachError'
|
|
53931
|
+
'422':
|
|
53932
|
+
description: Unprocessable Content
|
|
53933
|
+
content:
|
|
53934
|
+
text/plain:
|
|
53935
|
+
schema:
|
|
53936
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
53937
|
+
application/json:
|
|
53938
|
+
schema:
|
|
53939
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
53940
|
+
text/json:
|
|
53941
|
+
schema:
|
|
53942
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
53543
53943
|
'/api/public/courses/{id}':
|
|
53544
53944
|
get:
|
|
53545
53945
|
tags:
|
|
@@ -53735,6 +54135,11 @@ paths:
|
|
|
53735
54135
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
53736
54136
|
schema:
|
|
53737
54137
|
type: boolean
|
|
54138
|
+
- name: DashboardRequest
|
|
54139
|
+
in: query
|
|
54140
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
54141
|
+
schema:
|
|
54142
|
+
type: boolean
|
|
53738
54143
|
- name: BookingStatus
|
|
53739
54144
|
in: query
|
|
53740
54145
|
description: Gets or sets the queryable booking status.
|
|
@@ -53786,6 +54191,11 @@ paths:
|
|
|
53786
54191
|
description: Gets or sets a value indicating whether return online courses.
|
|
53787
54192
|
schema:
|
|
53788
54193
|
type: boolean
|
|
54194
|
+
- name: Featured
|
|
54195
|
+
in: query
|
|
54196
|
+
description: Gets or sets a value indicating whether the course is featured on the storefront.
|
|
54197
|
+
schema:
|
|
54198
|
+
type: boolean
|
|
53789
54199
|
- name: HasAvailability
|
|
53790
54200
|
in: query
|
|
53791
54201
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
@@ -54318,6 +54728,11 @@ paths:
|
|
|
54318
54728
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
54319
54729
|
schema:
|
|
54320
54730
|
type: boolean
|
|
54731
|
+
- name: DashboardRequest
|
|
54732
|
+
in: query
|
|
54733
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
54734
|
+
schema:
|
|
54735
|
+
type: boolean
|
|
54321
54736
|
- name: BookingStatus
|
|
54322
54737
|
in: query
|
|
54323
54738
|
description: Gets or sets the queryable booking status.
|
|
@@ -54369,6 +54784,11 @@ paths:
|
|
|
54369
54784
|
description: Gets or sets a value indicating whether return online courses.
|
|
54370
54785
|
schema:
|
|
54371
54786
|
type: boolean
|
|
54787
|
+
- name: Featured
|
|
54788
|
+
in: query
|
|
54789
|
+
description: Gets or sets a value indicating whether the course is featured on the storefront.
|
|
54790
|
+
schema:
|
|
54791
|
+
type: boolean
|
|
54372
54792
|
- name: HasAvailability
|
|
54373
54793
|
in: query
|
|
54374
54794
|
description: Gets or sets a value indicating whether the scheduled session has availability.
|
|
@@ -56259,6 +56679,11 @@ paths:
|
|
|
56259
56679
|
description: Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
56260
56680
|
schema:
|
|
56261
56681
|
type: boolean
|
|
56682
|
+
- name: Featured
|
|
56683
|
+
in: query
|
|
56684
|
+
description: Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
56685
|
+
schema:
|
|
56686
|
+
type: boolean
|
|
56262
56687
|
- name: SearchGeoCenter
|
|
56263
56688
|
in: query
|
|
56264
56689
|
description: Gets or sets SearchGeoCenter.
|
|
@@ -56554,6 +56979,11 @@ paths:
|
|
|
56554
56979
|
description: Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
56555
56980
|
schema:
|
|
56556
56981
|
type: boolean
|
|
56982
|
+
- name: Featured
|
|
56983
|
+
in: query
|
|
56984
|
+
description: Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
56985
|
+
schema:
|
|
56986
|
+
type: boolean
|
|
56557
56987
|
- name: SearchGeoCenter
|
|
56558
56988
|
in: query
|
|
56559
56989
|
description: Gets or sets SearchGeoCenter.
|
|
@@ -56854,6 +57284,11 @@ paths:
|
|
|
56854
57284
|
description: Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
56855
57285
|
schema:
|
|
56856
57286
|
type: boolean
|
|
57287
|
+
- name: Featured
|
|
57288
|
+
in: query
|
|
57289
|
+
description: Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
57290
|
+
schema:
|
|
57291
|
+
type: boolean
|
|
56857
57292
|
- name: SearchGeoCenter
|
|
56858
57293
|
in: query
|
|
56859
57294
|
description: Gets or sets SearchGeoCenter.
|
|
@@ -57246,6 +57681,11 @@ paths:
|
|
|
57246
57681
|
description: Gets or sets a value indicating whether to inlcude the activities next availability.
|
|
57247
57682
|
schema:
|
|
57248
57683
|
type: boolean
|
|
57684
|
+
- name: Featured
|
|
57685
|
+
in: query
|
|
57686
|
+
description: Gets or sets a value indicating whether to filter on whether the activity is featured.
|
|
57687
|
+
schema:
|
|
57688
|
+
type: boolean
|
|
57249
57689
|
- name: SearchGeoCenter
|
|
57250
57690
|
in: query
|
|
57251
57691
|
description: Gets or sets SearchGeoCenter.
|
|
@@ -58265,6 +58705,12 @@ paths:
|
|
|
58265
58705
|
schema:
|
|
58266
58706
|
type: string
|
|
58267
58707
|
format: date-time
|
|
58708
|
+
- name: EndUserIdentityId
|
|
58709
|
+
in: query
|
|
58710
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
58711
|
+
schema:
|
|
58712
|
+
type: string
|
|
58713
|
+
format: uuid
|
|
58268
58714
|
- name: PageNumber
|
|
58269
58715
|
in: query
|
|
58270
58716
|
description: Gets or sets the page number for paged queries.
|
|
@@ -58490,6 +58936,12 @@ paths:
|
|
|
58490
58936
|
schema:
|
|
58491
58937
|
type: string
|
|
58492
58938
|
format: date-time
|
|
58939
|
+
- name: EndUserIdentityId
|
|
58940
|
+
in: query
|
|
58941
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
58942
|
+
schema:
|
|
58943
|
+
type: string
|
|
58944
|
+
format: uuid
|
|
58493
58945
|
- name: PageNumber
|
|
58494
58946
|
in: query
|
|
58495
58947
|
description: Gets or sets the page number for paged queries.
|
|
@@ -58653,6 +59105,11 @@ paths:
|
|
|
58653
59105
|
description: Gets or sets a value indicating whether return online sessions.
|
|
58654
59106
|
schema:
|
|
58655
59107
|
type: boolean
|
|
59108
|
+
- name: Featured
|
|
59109
|
+
in: query
|
|
59110
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
59111
|
+
schema:
|
|
59112
|
+
type: boolean
|
|
58656
59113
|
- name: ProgrammeId
|
|
58657
59114
|
in: query
|
|
58658
59115
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -58684,6 +59141,11 @@ paths:
|
|
|
58684
59141
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
58685
59142
|
schema:
|
|
58686
59143
|
type: boolean
|
|
59144
|
+
- name: DashboardRequest
|
|
59145
|
+
in: query
|
|
59146
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
59147
|
+
schema:
|
|
59148
|
+
type: boolean
|
|
58687
59149
|
- name: NetworkId
|
|
58688
59150
|
in: query
|
|
58689
59151
|
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
@@ -59884,6 +60346,17 @@ paths:
|
|
|
59884
60346
|
description: Gets or sets the queryable event timing.
|
|
59885
60347
|
schema:
|
|
59886
60348
|
$ref: '#/components/schemas/EventTiming'
|
|
60349
|
+
- name: EndUserIdentityId
|
|
60350
|
+
in: query
|
|
60351
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
60352
|
+
schema:
|
|
60353
|
+
type: string
|
|
60354
|
+
format: uuid
|
|
60355
|
+
- name: DashboardRequest
|
|
60356
|
+
in: query
|
|
60357
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
60358
|
+
schema:
|
|
60359
|
+
type: boolean
|
|
59887
60360
|
- name: PageNumber
|
|
59888
60361
|
in: query
|
|
59889
60362
|
description: Gets or sets the page number for paged queries.
|
|
@@ -60561,6 +61034,17 @@ paths:
|
|
|
60561
61034
|
description: Gets or sets the queryable event timing.
|
|
60562
61035
|
schema:
|
|
60563
61036
|
$ref: '#/components/schemas/EventTiming'
|
|
61037
|
+
- name: EndUserIdentityId
|
|
61038
|
+
in: query
|
|
61039
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
61040
|
+
schema:
|
|
61041
|
+
type: string
|
|
61042
|
+
format: uuid
|
|
61043
|
+
- name: DashboardRequest
|
|
61044
|
+
in: query
|
|
61045
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
61046
|
+
schema:
|
|
61047
|
+
type: boolean
|
|
60564
61048
|
- name: PageNumber
|
|
60565
61049
|
in: query
|
|
60566
61050
|
description: Gets or sets the page number for paged queries.
|
|
@@ -60905,6 +61389,12 @@ paths:
|
|
|
60905
61389
|
schema:
|
|
60906
61390
|
type: string
|
|
60907
61391
|
format: date-time
|
|
61392
|
+
- name: EndUserIdentityId
|
|
61393
|
+
in: query
|
|
61394
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
61395
|
+
schema:
|
|
61396
|
+
type: string
|
|
61397
|
+
format: uuid
|
|
60908
61398
|
- name: PageNumber
|
|
60909
61399
|
in: query
|
|
60910
61400
|
description: Gets or sets the page number for paged queries.
|
|
@@ -61741,6 +62231,12 @@ paths:
|
|
|
61741
62231
|
schema:
|
|
61742
62232
|
type: string
|
|
61743
62233
|
format: date-time
|
|
62234
|
+
- name: EndUserIdentityId
|
|
62235
|
+
in: query
|
|
62236
|
+
description: Gets or sets the end user identity Id for use in a query search.
|
|
62237
|
+
schema:
|
|
62238
|
+
type: string
|
|
62239
|
+
format: uuid
|
|
61744
62240
|
- name: PageNumber
|
|
61745
62241
|
in: query
|
|
61746
62242
|
description: Gets or sets the page number for paged queries.
|
|
@@ -64670,6 +65166,11 @@ paths:
|
|
|
64670
65166
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
64671
65167
|
schema:
|
|
64672
65168
|
type: boolean
|
|
65169
|
+
- name: BookableOnly
|
|
65170
|
+
in: query
|
|
65171
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
65172
|
+
schema:
|
|
65173
|
+
type: boolean
|
|
64673
65174
|
- name: IncludeImages
|
|
64674
65175
|
in: query
|
|
64675
65176
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -65231,6 +65732,11 @@ paths:
|
|
|
65231
65732
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
65232
65733
|
schema:
|
|
65233
65734
|
type: boolean
|
|
65735
|
+
- name: BookableOnly
|
|
65736
|
+
in: query
|
|
65737
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
65738
|
+
schema:
|
|
65739
|
+
type: boolean
|
|
65234
65740
|
- name: IncludeImages
|
|
65235
65741
|
in: query
|
|
65236
65742
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -65563,6 +66069,11 @@ paths:
|
|
|
65563
66069
|
description: Gets or sets a value indicating whether return online sessions.
|
|
65564
66070
|
schema:
|
|
65565
66071
|
type: boolean
|
|
66072
|
+
- name: Featured
|
|
66073
|
+
in: query
|
|
66074
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
66075
|
+
schema:
|
|
66076
|
+
type: boolean
|
|
65566
66077
|
- name: ProgrammeId
|
|
65567
66078
|
in: query
|
|
65568
66079
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -65594,6 +66105,11 @@ paths:
|
|
|
65594
66105
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
65595
66106
|
schema:
|
|
65596
66107
|
type: boolean
|
|
66108
|
+
- name: DashboardRequest
|
|
66109
|
+
in: query
|
|
66110
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
66111
|
+
schema:
|
|
66112
|
+
type: boolean
|
|
65597
66113
|
- name: NetworkId
|
|
65598
66114
|
in: query
|
|
65599
66115
|
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
@@ -66049,6 +66565,11 @@ paths:
|
|
|
66049
66565
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
66050
66566
|
schema:
|
|
66051
66567
|
type: boolean
|
|
66568
|
+
- name: BookableOnly
|
|
66569
|
+
in: query
|
|
66570
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
66571
|
+
schema:
|
|
66572
|
+
type: boolean
|
|
66052
66573
|
- name: IncludeImages
|
|
66053
66574
|
in: query
|
|
66054
66575
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -66482,6 +67003,11 @@ paths:
|
|
|
66482
67003
|
description: Gets or sets a value indicating whether return online sessions.
|
|
66483
67004
|
schema:
|
|
66484
67005
|
type: boolean
|
|
67006
|
+
- name: Featured
|
|
67007
|
+
in: query
|
|
67008
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
67009
|
+
schema:
|
|
67010
|
+
type: boolean
|
|
66485
67011
|
- name: ProgrammeId
|
|
66486
67012
|
in: query
|
|
66487
67013
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -66513,6 +67039,11 @@ paths:
|
|
|
66513
67039
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
66514
67040
|
schema:
|
|
66515
67041
|
type: boolean
|
|
67042
|
+
- name: DashboardRequest
|
|
67043
|
+
in: query
|
|
67044
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
67045
|
+
schema:
|
|
67046
|
+
type: boolean
|
|
66516
67047
|
- name: NetworkId
|
|
66517
67048
|
in: query
|
|
66518
67049
|
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
@@ -71277,6 +71808,11 @@ paths:
|
|
|
71277
71808
|
schema:
|
|
71278
71809
|
type: number
|
|
71279
71810
|
format: float
|
|
71811
|
+
- name: DashboardRequest
|
|
71812
|
+
in: query
|
|
71813
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
71814
|
+
schema:
|
|
71815
|
+
type: boolean
|
|
71280
71816
|
- name: PageNumber
|
|
71281
71817
|
in: query
|
|
71282
71818
|
description: Gets or sets the page number for paged queries.
|
|
@@ -71558,6 +72094,11 @@ paths:
|
|
|
71558
72094
|
schema:
|
|
71559
72095
|
type: number
|
|
71560
72096
|
format: float
|
|
72097
|
+
- name: DashboardRequest
|
|
72098
|
+
in: query
|
|
72099
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
72100
|
+
schema:
|
|
72101
|
+
type: boolean
|
|
71561
72102
|
- name: PageNumber
|
|
71562
72103
|
in: query
|
|
71563
72104
|
description: Gets or sets the page number for paged queries.
|
|
@@ -72012,6 +72553,11 @@ paths:
|
|
|
72012
72553
|
schema:
|
|
72013
72554
|
type: number
|
|
72014
72555
|
format: float
|
|
72556
|
+
- name: DashboardRequest
|
|
72557
|
+
in: query
|
|
72558
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
72559
|
+
schema:
|
|
72560
|
+
type: boolean
|
|
72015
72561
|
- name: PageNumber
|
|
72016
72562
|
in: query
|
|
72017
72563
|
description: Gets or sets the page number for paged queries.
|
|
@@ -78164,6 +78710,11 @@ paths:
|
|
|
78164
78710
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
78165
78711
|
schema:
|
|
78166
78712
|
type: boolean
|
|
78713
|
+
- name: BookableOnly
|
|
78714
|
+
in: query
|
|
78715
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
78716
|
+
schema:
|
|
78717
|
+
type: boolean
|
|
78167
78718
|
- name: IncludeImages
|
|
78168
78719
|
in: query
|
|
78169
78720
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -78606,6 +79157,11 @@ paths:
|
|
|
78606
79157
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
78607
79158
|
schema:
|
|
78608
79159
|
type: boolean
|
|
79160
|
+
- name: BookableOnly
|
|
79161
|
+
in: query
|
|
79162
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
79163
|
+
schema:
|
|
79164
|
+
type: boolean
|
|
78609
79165
|
- name: IncludeImages
|
|
78610
79166
|
in: query
|
|
78611
79167
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -78870,6 +79426,11 @@ paths:
|
|
|
78870
79426
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
78871
79427
|
schema:
|
|
78872
79428
|
type: boolean
|
|
79429
|
+
- name: BookableOnly
|
|
79430
|
+
in: query
|
|
79431
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
79432
|
+
schema:
|
|
79433
|
+
type: boolean
|
|
78873
79434
|
- name: IncludeImages
|
|
78874
79435
|
in: query
|
|
78875
79436
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -79140,6 +79701,11 @@ paths:
|
|
|
79140
79701
|
description: Gets or sets a value indicating whether to only return future scheduled session.
|
|
79141
79702
|
schema:
|
|
79142
79703
|
type: boolean
|
|
79704
|
+
- name: BookableOnly
|
|
79705
|
+
in: query
|
|
79706
|
+
description: Gets or sets a value indicating whether to only return bookable scheduled sessions.
|
|
79707
|
+
schema:
|
|
79708
|
+
type: boolean
|
|
79143
79709
|
- name: IncludeImages
|
|
79144
79710
|
in: query
|
|
79145
79711
|
description: Gets or sets a value indicating whether to include image detail in the results.
|
|
@@ -79858,6 +80424,11 @@ paths:
|
|
|
79858
80424
|
type: array
|
|
79859
80425
|
items:
|
|
79860
80426
|
$ref: '#/components/schemas/ScheduleStatus'
|
|
80427
|
+
- name: BookableOnly
|
|
80428
|
+
in: query
|
|
80429
|
+
description: Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
80430
|
+
schema:
|
|
80431
|
+
type: boolean
|
|
79861
80432
|
- name: PageNumber
|
|
79862
80433
|
in: query
|
|
79863
80434
|
description: Gets or sets the page number for paged queries.
|
|
@@ -80189,6 +80760,11 @@ paths:
|
|
|
80189
80760
|
type: array
|
|
80190
80761
|
items:
|
|
80191
80762
|
$ref: '#/components/schemas/ScheduleStatus'
|
|
80763
|
+
- name: BookableOnly
|
|
80764
|
+
in: query
|
|
80765
|
+
description: Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
80766
|
+
schema:
|
|
80767
|
+
type: boolean
|
|
80192
80768
|
- name: PageNumber
|
|
80193
80769
|
in: query
|
|
80194
80770
|
description: Gets or sets the page number for paged queries.
|
|
@@ -80342,6 +80918,11 @@ paths:
|
|
|
80342
80918
|
type: array
|
|
80343
80919
|
items:
|
|
80344
80920
|
$ref: '#/components/schemas/ScheduleStatus'
|
|
80921
|
+
- name: BookableOnly
|
|
80922
|
+
in: query
|
|
80923
|
+
description: Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
80924
|
+
schema:
|
|
80925
|
+
type: boolean
|
|
80345
80926
|
- name: PageNumber
|
|
80346
80927
|
in: query
|
|
80347
80928
|
description: Gets or sets the page number for paged queries.
|
|
@@ -80501,6 +81082,11 @@ paths:
|
|
|
80501
81082
|
type: array
|
|
80502
81083
|
items:
|
|
80503
81084
|
$ref: '#/components/schemas/ScheduleStatus'
|
|
81085
|
+
- name: BookableOnly
|
|
81086
|
+
in: query
|
|
81087
|
+
description: Gets or sets a value indicating whether to only return course sessions contained in bookable courses.
|
|
81088
|
+
schema:
|
|
81089
|
+
type: boolean
|
|
80504
81090
|
- name: PageNumber
|
|
80505
81091
|
in: query
|
|
80506
81092
|
description: Gets or sets the page number for paged queries.
|
|
@@ -81069,12 +81655,12 @@ paths:
|
|
|
81069
81655
|
patch:
|
|
81070
81656
|
tags:
|
|
81071
81657
|
- Sessions
|
|
81072
|
-
summary:
|
|
81658
|
+
summary: Assign deal to session.
|
|
81073
81659
|
operationId: AssignDeal
|
|
81074
81660
|
parameters:
|
|
81075
81661
|
- name: sessionId
|
|
81076
81662
|
in: path
|
|
81077
|
-
description: The
|
|
81663
|
+
description: The session Id.
|
|
81078
81664
|
required: true
|
|
81079
81665
|
schema:
|
|
81080
81666
|
type: string
|
|
@@ -81139,12 +81725,12 @@ paths:
|
|
|
81139
81725
|
patch:
|
|
81140
81726
|
tags:
|
|
81141
81727
|
- Sessions
|
|
81142
|
-
summary:
|
|
81728
|
+
summary: Unassign deal from session.
|
|
81143
81729
|
operationId: UnassignDeal
|
|
81144
81730
|
parameters:
|
|
81145
81731
|
- name: sessionId
|
|
81146
81732
|
in: path
|
|
81147
|
-
description: The
|
|
81733
|
+
description: The session Id.
|
|
81148
81734
|
required: true
|
|
81149
81735
|
schema:
|
|
81150
81736
|
type: string
|
|
@@ -81205,6 +81791,132 @@ paths:
|
|
|
81205
81791
|
text/json:
|
|
81206
81792
|
schema:
|
|
81207
81793
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
81794
|
+
'/api/sessions/{id}/set-featured':
|
|
81795
|
+
patch:
|
|
81796
|
+
tags:
|
|
81797
|
+
- Sessions
|
|
81798
|
+
summary: Set the session as featured (displays more prominently on the storefront).
|
|
81799
|
+
operationId: SetFeatured
|
|
81800
|
+
parameters:
|
|
81801
|
+
- name: id
|
|
81802
|
+
in: path
|
|
81803
|
+
description: The session Id.
|
|
81804
|
+
required: true
|
|
81805
|
+
schema:
|
|
81806
|
+
type: string
|
|
81807
|
+
format: uuid
|
|
81808
|
+
responses:
|
|
81809
|
+
'200':
|
|
81810
|
+
description: OK
|
|
81811
|
+
content:
|
|
81812
|
+
text/plain:
|
|
81813
|
+
schema:
|
|
81814
|
+
$ref: '#/components/schemas/Session'
|
|
81815
|
+
application/json:
|
|
81816
|
+
schema:
|
|
81817
|
+
$ref: '#/components/schemas/Session'
|
|
81818
|
+
text/json:
|
|
81819
|
+
schema:
|
|
81820
|
+
$ref: '#/components/schemas/Session'
|
|
81821
|
+
'400':
|
|
81822
|
+
description: Bad Request
|
|
81823
|
+
content:
|
|
81824
|
+
text/plain:
|
|
81825
|
+
schema:
|
|
81826
|
+
$ref: '#/components/schemas/ReachError'
|
|
81827
|
+
application/json:
|
|
81828
|
+
schema:
|
|
81829
|
+
$ref: '#/components/schemas/ReachError'
|
|
81830
|
+
text/json:
|
|
81831
|
+
schema:
|
|
81832
|
+
$ref: '#/components/schemas/ReachError'
|
|
81833
|
+
'500':
|
|
81834
|
+
description: Internal Server Error
|
|
81835
|
+
content:
|
|
81836
|
+
text/plain:
|
|
81837
|
+
schema:
|
|
81838
|
+
$ref: '#/components/schemas/ReachError'
|
|
81839
|
+
application/json:
|
|
81840
|
+
schema:
|
|
81841
|
+
$ref: '#/components/schemas/ReachError'
|
|
81842
|
+
text/json:
|
|
81843
|
+
schema:
|
|
81844
|
+
$ref: '#/components/schemas/ReachError'
|
|
81845
|
+
'422':
|
|
81846
|
+
description: Unprocessable Content
|
|
81847
|
+
content:
|
|
81848
|
+
text/plain:
|
|
81849
|
+
schema:
|
|
81850
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
81851
|
+
application/json:
|
|
81852
|
+
schema:
|
|
81853
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
81854
|
+
text/json:
|
|
81855
|
+
schema:
|
|
81856
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
81857
|
+
'/api/sessions/{id}/remove-featured':
|
|
81858
|
+
patch:
|
|
81859
|
+
tags:
|
|
81860
|
+
- Sessions
|
|
81861
|
+
summary: Remove the session as featured (displays as standard on the storefront).
|
|
81862
|
+
operationId: RemoveFeatured
|
|
81863
|
+
parameters:
|
|
81864
|
+
- name: id
|
|
81865
|
+
in: path
|
|
81866
|
+
description: The session Id.
|
|
81867
|
+
required: true
|
|
81868
|
+
schema:
|
|
81869
|
+
type: string
|
|
81870
|
+
format: uuid
|
|
81871
|
+
responses:
|
|
81872
|
+
'200':
|
|
81873
|
+
description: OK
|
|
81874
|
+
content:
|
|
81875
|
+
text/plain:
|
|
81876
|
+
schema:
|
|
81877
|
+
$ref: '#/components/schemas/Session'
|
|
81878
|
+
application/json:
|
|
81879
|
+
schema:
|
|
81880
|
+
$ref: '#/components/schemas/Session'
|
|
81881
|
+
text/json:
|
|
81882
|
+
schema:
|
|
81883
|
+
$ref: '#/components/schemas/Session'
|
|
81884
|
+
'400':
|
|
81885
|
+
description: Bad Request
|
|
81886
|
+
content:
|
|
81887
|
+
text/plain:
|
|
81888
|
+
schema:
|
|
81889
|
+
$ref: '#/components/schemas/ReachError'
|
|
81890
|
+
application/json:
|
|
81891
|
+
schema:
|
|
81892
|
+
$ref: '#/components/schemas/ReachError'
|
|
81893
|
+
text/json:
|
|
81894
|
+
schema:
|
|
81895
|
+
$ref: '#/components/schemas/ReachError'
|
|
81896
|
+
'500':
|
|
81897
|
+
description: Internal Server Error
|
|
81898
|
+
content:
|
|
81899
|
+
text/plain:
|
|
81900
|
+
schema:
|
|
81901
|
+
$ref: '#/components/schemas/ReachError'
|
|
81902
|
+
application/json:
|
|
81903
|
+
schema:
|
|
81904
|
+
$ref: '#/components/schemas/ReachError'
|
|
81905
|
+
text/json:
|
|
81906
|
+
schema:
|
|
81907
|
+
$ref: '#/components/schemas/ReachError'
|
|
81908
|
+
'422':
|
|
81909
|
+
description: Unprocessable Content
|
|
81910
|
+
content:
|
|
81911
|
+
text/plain:
|
|
81912
|
+
schema:
|
|
81913
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
81914
|
+
application/json:
|
|
81915
|
+
schema:
|
|
81916
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
81917
|
+
text/json:
|
|
81918
|
+
schema:
|
|
81919
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
81208
81920
|
/api/sessions/v2-temporary-route:
|
|
81209
81921
|
post:
|
|
81210
81922
|
tags:
|
|
@@ -81589,6 +82301,11 @@ paths:
|
|
|
81589
82301
|
description: Gets or sets a value indicating whether return online sessions.
|
|
81590
82302
|
schema:
|
|
81591
82303
|
type: boolean
|
|
82304
|
+
- name: Featured
|
|
82305
|
+
in: query
|
|
82306
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
82307
|
+
schema:
|
|
82308
|
+
type: boolean
|
|
81592
82309
|
- name: ProgrammeId
|
|
81593
82310
|
in: query
|
|
81594
82311
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -81620,6 +82337,11 @@ paths:
|
|
|
81620
82337
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
81621
82338
|
schema:
|
|
81622
82339
|
type: boolean
|
|
82340
|
+
- name: DashboardRequest
|
|
82341
|
+
in: query
|
|
82342
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
82343
|
+
schema:
|
|
82344
|
+
type: boolean
|
|
81623
82345
|
- name: NetworkId
|
|
81624
82346
|
in: query
|
|
81625
82347
|
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
@@ -82055,6 +82777,11 @@ paths:
|
|
|
82055
82777
|
description: Gets or sets a value indicating whether return online sessions.
|
|
82056
82778
|
schema:
|
|
82057
82779
|
type: boolean
|
|
82780
|
+
- name: Featured
|
|
82781
|
+
in: query
|
|
82782
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
82783
|
+
schema:
|
|
82784
|
+
type: boolean
|
|
82058
82785
|
- name: ProgrammeId
|
|
82059
82786
|
in: query
|
|
82060
82787
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -82086,6 +82813,11 @@ paths:
|
|
|
82086
82813
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
82087
82814
|
schema:
|
|
82088
82815
|
type: boolean
|
|
82816
|
+
- name: DashboardRequest
|
|
82817
|
+
in: query
|
|
82818
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
82819
|
+
schema:
|
|
82820
|
+
type: boolean
|
|
82089
82821
|
- name: NetworkId
|
|
82090
82822
|
in: query
|
|
82091
82823
|
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
@@ -82343,6 +83075,11 @@ paths:
|
|
|
82343
83075
|
description: Gets or sets a value indicating whether return online sessions.
|
|
82344
83076
|
schema:
|
|
82345
83077
|
type: boolean
|
|
83078
|
+
- name: Featured
|
|
83079
|
+
in: query
|
|
83080
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
83081
|
+
schema:
|
|
83082
|
+
type: boolean
|
|
82346
83083
|
- name: ProgrammeId
|
|
82347
83084
|
in: query
|
|
82348
83085
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -82374,6 +83111,11 @@ paths:
|
|
|
82374
83111
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
82375
83112
|
schema:
|
|
82376
83113
|
type: boolean
|
|
83114
|
+
- name: DashboardRequest
|
|
83115
|
+
in: query
|
|
83116
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
83117
|
+
schema:
|
|
83118
|
+
type: boolean
|
|
82377
83119
|
- name: NetworkId
|
|
82378
83120
|
in: query
|
|
82379
83121
|
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
@@ -82637,6 +83379,11 @@ paths:
|
|
|
82637
83379
|
description: Gets or sets a value indicating whether return online sessions.
|
|
82638
83380
|
schema:
|
|
82639
83381
|
type: boolean
|
|
83382
|
+
- name: Featured
|
|
83383
|
+
in: query
|
|
83384
|
+
description: Gets or sets a value indicating whether the session is featured on the storefront.
|
|
83385
|
+
schema:
|
|
83386
|
+
type: boolean
|
|
82640
83387
|
- name: ProgrammeId
|
|
82641
83388
|
in: query
|
|
82642
83389
|
description: Gets or sets the queryable Programme Id.
|
|
@@ -82668,6 +83415,11 @@ paths:
|
|
|
82668
83415
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
82669
83416
|
schema:
|
|
82670
83417
|
type: boolean
|
|
83418
|
+
- name: DashboardRequest
|
|
83419
|
+
in: query
|
|
83420
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
83421
|
+
schema:
|
|
83422
|
+
type: boolean
|
|
82671
83423
|
- name: NetworkId
|
|
82672
83424
|
in: query
|
|
82673
83425
|
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
@@ -113405,6 +114157,11 @@ paths:
|
|
|
113405
114157
|
schema:
|
|
113406
114158
|
type: number
|
|
113407
114159
|
format: float
|
|
114160
|
+
- name: DashboardRequest
|
|
114161
|
+
in: query
|
|
114162
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
114163
|
+
schema:
|
|
114164
|
+
type: boolean
|
|
113408
114165
|
- name: PageNumber
|
|
113409
114166
|
in: query
|
|
113410
114167
|
description: Gets or sets the page number for paged queries.
|
|
@@ -113802,6 +114559,11 @@ paths:
|
|
|
113802
114559
|
schema:
|
|
113803
114560
|
type: number
|
|
113804
114561
|
format: float
|
|
114562
|
+
- name: DashboardRequest
|
|
114563
|
+
in: query
|
|
114564
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
114565
|
+
schema:
|
|
114566
|
+
type: boolean
|
|
113805
114567
|
- name: PageNumber
|
|
113806
114568
|
in: query
|
|
113807
114569
|
description: Gets or sets the page number for paged queries.
|
|
@@ -114021,6 +114783,11 @@ paths:
|
|
|
114021
114783
|
schema:
|
|
114022
114784
|
type: number
|
|
114023
114785
|
format: float
|
|
114786
|
+
- name: DashboardRequest
|
|
114787
|
+
in: query
|
|
114788
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
114789
|
+
schema:
|
|
114790
|
+
type: boolean
|
|
114024
114791
|
- name: PageNumber
|
|
114025
114792
|
in: query
|
|
114026
114793
|
description: Gets or sets the page number for paged queries.
|
|
@@ -114246,6 +115013,11 @@ paths:
|
|
|
114246
115013
|
schema:
|
|
114247
115014
|
type: number
|
|
114248
115015
|
format: float
|
|
115016
|
+
- name: DashboardRequest
|
|
115017
|
+
in: query
|
|
115018
|
+
description: Gets or sets a value indicating this a request from the storefront dashboard.Needs replacing with token middleware and DI.
|
|
115019
|
+
schema:
|
|
115020
|
+
type: boolean
|
|
114249
115021
|
- name: PageNumber
|
|
114250
115022
|
in: query
|
|
114251
115023
|
description: Gets or sets the page number for paged queries.
|
|
@@ -121390,6 +122162,10 @@ components:
|
|
|
121390
122162
|
type: string
|
|
121391
122163
|
description: Gets or sets the admin contact email.
|
|
121392
122164
|
nullable: true
|
|
122165
|
+
sendReminder:
|
|
122166
|
+
type: boolean
|
|
122167
|
+
description: Gets or sets a valu indicating whether to send the reminder email.
|
|
122168
|
+
nullable: true
|
|
121393
122169
|
reminderHoursBeforeStart:
|
|
121394
122170
|
type: integer
|
|
121395
122171
|
description: Gets or sets the reminder hours before start.
|
|
@@ -121401,6 +122177,10 @@ components:
|
|
|
121401
122177
|
type: string
|
|
121402
122178
|
description: Gets or sets the booking link override if checkout will occur externally.
|
|
121403
122179
|
nullable: true
|
|
122180
|
+
featured:
|
|
122181
|
+
type: boolean
|
|
122182
|
+
description: Gets or sets a value indicating whether the activity should be featured on the storefront.
|
|
122183
|
+
default: false
|
|
121404
122184
|
computedImage:
|
|
121405
122185
|
type: string
|
|
121406
122186
|
description: Gets the computed image url.
|
|
@@ -124623,6 +125403,10 @@ components:
|
|
|
124623
125403
|
type: boolean
|
|
124624
125404
|
description: Gets or sets a value indicating whether there is an age restriction.
|
|
124625
125405
|
default: false
|
|
125406
|
+
featured:
|
|
125407
|
+
type: boolean
|
|
125408
|
+
description: Gets or sets a value indicating whether the activity should be featured on the storefront.
|
|
125409
|
+
default: false
|
|
124626
125410
|
startDateTime:
|
|
124627
125411
|
type: string
|
|
124628
125412
|
description: Gets or sets the start date.
|
|
@@ -130252,6 +131036,10 @@ components:
|
|
|
130252
131036
|
type: string
|
|
130253
131037
|
description: Gets or sets the admin contact email.
|
|
130254
131038
|
nullable: true
|
|
131039
|
+
sendReminder:
|
|
131040
|
+
type: boolean
|
|
131041
|
+
description: Gets or sets a valu indicating whether to send the reminder email.
|
|
131042
|
+
nullable: true
|
|
130255
131043
|
reminderHoursBeforeStart:
|
|
130256
131044
|
type: integer
|
|
130257
131045
|
description: Gets or sets the reminder hours before start.
|
|
@@ -130263,6 +131051,10 @@ components:
|
|
|
130263
131051
|
type: string
|
|
130264
131052
|
description: Gets or sets the booking link override if checkout will occur externally.
|
|
130265
131053
|
nullable: true
|
|
131054
|
+
featured:
|
|
131055
|
+
type: boolean
|
|
131056
|
+
description: Gets or sets a value indicating whether the activity should be featured on the storefront.
|
|
131057
|
+
default: false
|
|
130266
131058
|
computedImage:
|
|
130267
131059
|
type: string
|
|
130268
131060
|
description: Gets the computed image url.
|
|
@@ -134087,6 +134879,8 @@ components:
|
|
|
134087
134879
|
type: string
|
|
134088
134880
|
description: Gets or sets the tenants website marketing optin text.
|
|
134089
134881
|
nullable: true
|
|
134882
|
+
upcomingLayout:
|
|
134883
|
+
$ref: '#/components/schemas/UpcomingLayout'
|
|
134090
134884
|
additionalProperties: false
|
|
134091
134885
|
description: Represents an organisation within the Reach application.
|
|
134092
134886
|
TenantWebsiteSettingPage:
|
|
@@ -134336,6 +135130,12 @@ components:
|
|
|
134336
135130
|
nullable: true
|
|
134337
135131
|
additionalProperties: false
|
|
134338
135132
|
description: The OpenAI description completion response model.
|
|
135133
|
+
UpcomingLayout:
|
|
135134
|
+
enum:
|
|
135135
|
+
- Grid
|
|
135136
|
+
- Calendar
|
|
135137
|
+
type: string
|
|
135138
|
+
description: UpcomingLayout.
|
|
134339
135139
|
UpdateEmailSettings:
|
|
134340
135140
|
type: object
|
|
134341
135141
|
properties:
|