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
|
@@ -417,6 +417,7 @@ export class SessionsService {
|
|
|
417
417
|
paymentPolicyId,
|
|
418
418
|
futureOnly,
|
|
419
419
|
online,
|
|
420
|
+
featured,
|
|
420
421
|
programmeId,
|
|
421
422
|
includeNextOpportunity,
|
|
422
423
|
allowTemplating,
|
|
@@ -479,6 +480,10 @@ export class SessionsService {
|
|
|
479
480
|
* Gets or sets a value indicating whether return online sessions.
|
|
480
481
|
*/
|
|
481
482
|
online?: boolean;
|
|
483
|
+
/**
|
|
484
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
485
|
+
*/
|
|
486
|
+
featured?: boolean;
|
|
482
487
|
/**
|
|
483
488
|
* Gets or sets the queryable Programme Id.
|
|
484
489
|
*/
|
|
@@ -623,6 +628,7 @@ export class SessionsService {
|
|
|
623
628
|
PaymentPolicyId: paymentPolicyId,
|
|
624
629
|
FutureOnly: futureOnly,
|
|
625
630
|
Online: online,
|
|
631
|
+
Featured: featured,
|
|
626
632
|
ProgrammeId: programmeId,
|
|
627
633
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
628
634
|
AllowTemplating: allowTemplating,
|
|
@@ -759,6 +765,7 @@ export class SessionsService {
|
|
|
759
765
|
paymentPolicyId,
|
|
760
766
|
futureOnly,
|
|
761
767
|
online,
|
|
768
|
+
featured,
|
|
762
769
|
programmeId,
|
|
763
770
|
includeNextOpportunity,
|
|
764
771
|
allowTemplating,
|
|
@@ -821,6 +828,10 @@ export class SessionsService {
|
|
|
821
828
|
* Gets or sets a value indicating whether return online sessions.
|
|
822
829
|
*/
|
|
823
830
|
online?: boolean;
|
|
831
|
+
/**
|
|
832
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
833
|
+
*/
|
|
834
|
+
featured?: boolean;
|
|
824
835
|
/**
|
|
825
836
|
* Gets or sets the queryable Programme Id.
|
|
826
837
|
*/
|
|
@@ -965,6 +976,7 @@ export class SessionsService {
|
|
|
965
976
|
PaymentPolicyId: paymentPolicyId,
|
|
966
977
|
FutureOnly: futureOnly,
|
|
967
978
|
Online: online,
|
|
979
|
+
Featured: featured,
|
|
968
980
|
ProgrammeId: programmeId,
|
|
969
981
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
970
982
|
AllowTemplating: allowTemplating,
|
|
@@ -1020,6 +1032,7 @@ export class SessionsService {
|
|
|
1020
1032
|
paymentPolicyId,
|
|
1021
1033
|
futureOnly,
|
|
1022
1034
|
online,
|
|
1035
|
+
featured,
|
|
1023
1036
|
programmeId,
|
|
1024
1037
|
includeNextOpportunity,
|
|
1025
1038
|
allowTemplating,
|
|
@@ -1082,6 +1095,10 @@ export class SessionsService {
|
|
|
1082
1095
|
* Gets or sets a value indicating whether return online sessions.
|
|
1083
1096
|
*/
|
|
1084
1097
|
online?: boolean;
|
|
1098
|
+
/**
|
|
1099
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
1100
|
+
*/
|
|
1101
|
+
featured?: boolean;
|
|
1085
1102
|
/**
|
|
1086
1103
|
* Gets or sets the queryable Programme Id.
|
|
1087
1104
|
*/
|
|
@@ -1226,6 +1243,7 @@ export class SessionsService {
|
|
|
1226
1243
|
PaymentPolicyId: paymentPolicyId,
|
|
1227
1244
|
FutureOnly: futureOnly,
|
|
1228
1245
|
Online: online,
|
|
1246
|
+
Featured: featured,
|
|
1229
1247
|
ProgrammeId: programmeId,
|
|
1230
1248
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1231
1249
|
AllowTemplating: allowTemplating,
|
|
@@ -1281,6 +1299,7 @@ export class SessionsService {
|
|
|
1281
1299
|
paymentPolicyId,
|
|
1282
1300
|
futureOnly,
|
|
1283
1301
|
online,
|
|
1302
|
+
featured,
|
|
1284
1303
|
programmeId,
|
|
1285
1304
|
includeNextOpportunity,
|
|
1286
1305
|
allowTemplating,
|
|
@@ -1343,6 +1362,10 @@ export class SessionsService {
|
|
|
1343
1362
|
* Gets or sets a value indicating whether return online sessions.
|
|
1344
1363
|
*/
|
|
1345
1364
|
online?: boolean;
|
|
1365
|
+
/**
|
|
1366
|
+
* Gets or sets a value indicating whether the session is featured on the storefront.
|
|
1367
|
+
*/
|
|
1368
|
+
featured?: boolean;
|
|
1346
1369
|
/**
|
|
1347
1370
|
* Gets or sets the queryable Programme Id.
|
|
1348
1371
|
*/
|
|
@@ -1487,6 +1510,7 @@ export class SessionsService {
|
|
|
1487
1510
|
PaymentPolicyId: paymentPolicyId,
|
|
1488
1511
|
FutureOnly: futureOnly,
|
|
1489
1512
|
Online: online,
|
|
1513
|
+
Featured: featured,
|
|
1490
1514
|
ProgrammeId: programmeId,
|
|
1491
1515
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1492
1516
|
AllowTemplating: allowTemplating,
|