reach-api-sdk 1.0.211 → 1.0.213
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 +562 -41
- package/dist/reach-sdk.js +246 -9
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +810 -17
- package/src/index.ts +6 -0
- package/src/models/Activity.ts +4 -0
- package/src/models/ActivityFacet.ts +26 -0
- package/src/models/ActivitySearchResponse.ts +23 -0
- package/src/models/ActivityTypeCategory.ts +18 -0
- package/src/models/Provider.ts +7 -0
- package/src/models/ProviderActivityLocation.ts +18 -0
- package/src/models/ProviderPatch.ts +2 -0
- package/src/models/TenantSetting.ts +4 -0
- package/src/models/TenantWebsiteSetting.ts +13 -0
- package/src/models/TenantWebsiteSettingPatch.ts +16 -0
- package/src/models/WebsiteHomepage.ts +12 -0
- package/src/services/ActivityTypeCategoryService.ts +133 -0
- package/src/services/CoursesService.ts +30 -0
- package/src/services/GenericActivityService.ts +78 -0
- package/src/services/PublicCoursesService.ts +12 -0
- package/src/services/PublicGenericActivityService.ts +350 -18
- package/src/services/PublicNetworksService.ts +6 -0
- package/src/services/PublicSessionsService.ts +12 -0
- package/src/services/SessionsService.ts +30 -0
|
@@ -537,6 +537,7 @@ export class SessionsService {
|
|
|
537
537
|
featured,
|
|
538
538
|
_private,
|
|
539
539
|
programmeId,
|
|
540
|
+
providerId,
|
|
540
541
|
includeNextOpportunity,
|
|
541
542
|
allowTemplating,
|
|
542
543
|
archived,
|
|
@@ -611,6 +612,10 @@ export class SessionsService {
|
|
|
611
612
|
* Gets or sets the queryable Programme Id.
|
|
612
613
|
*/
|
|
613
614
|
programmeId?: string;
|
|
615
|
+
/**
|
|
616
|
+
* Gets or sets the queryable Provider Id.
|
|
617
|
+
*/
|
|
618
|
+
providerId?: string;
|
|
614
619
|
/**
|
|
615
620
|
* Gets or sets a value indicating whether to inlcude the sessions next availability.
|
|
616
621
|
*/
|
|
@@ -758,6 +763,7 @@ export class SessionsService {
|
|
|
758
763
|
Featured: featured,
|
|
759
764
|
Private: _private,
|
|
760
765
|
ProgrammeId: programmeId,
|
|
766
|
+
ProviderId: providerId,
|
|
761
767
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
762
768
|
AllowTemplating: allowTemplating,
|
|
763
769
|
Archived: archived,
|
|
@@ -897,6 +903,7 @@ export class SessionsService {
|
|
|
897
903
|
featured,
|
|
898
904
|
_private,
|
|
899
905
|
programmeId,
|
|
906
|
+
providerId,
|
|
900
907
|
includeNextOpportunity,
|
|
901
908
|
allowTemplating,
|
|
902
909
|
archived,
|
|
@@ -971,6 +978,10 @@ export class SessionsService {
|
|
|
971
978
|
* Gets or sets the queryable Programme Id.
|
|
972
979
|
*/
|
|
973
980
|
programmeId?: string;
|
|
981
|
+
/**
|
|
982
|
+
* Gets or sets the queryable Provider Id.
|
|
983
|
+
*/
|
|
984
|
+
providerId?: string;
|
|
974
985
|
/**
|
|
975
986
|
* Gets or sets a value indicating whether to inlcude the sessions next availability.
|
|
976
987
|
*/
|
|
@@ -1118,6 +1129,7 @@ export class SessionsService {
|
|
|
1118
1129
|
Featured: featured,
|
|
1119
1130
|
Private: _private,
|
|
1120
1131
|
ProgrammeId: programmeId,
|
|
1132
|
+
ProviderId: providerId,
|
|
1121
1133
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1122
1134
|
AllowTemplating: allowTemplating,
|
|
1123
1135
|
Archived: archived,
|
|
@@ -1176,6 +1188,7 @@ export class SessionsService {
|
|
|
1176
1188
|
featured,
|
|
1177
1189
|
_private,
|
|
1178
1190
|
programmeId,
|
|
1191
|
+
providerId,
|
|
1179
1192
|
includeNextOpportunity,
|
|
1180
1193
|
allowTemplating,
|
|
1181
1194
|
archived,
|
|
@@ -1250,6 +1263,10 @@ export class SessionsService {
|
|
|
1250
1263
|
* Gets or sets the queryable Programme Id.
|
|
1251
1264
|
*/
|
|
1252
1265
|
programmeId?: string;
|
|
1266
|
+
/**
|
|
1267
|
+
* Gets or sets the queryable Provider Id.
|
|
1268
|
+
*/
|
|
1269
|
+
providerId?: string;
|
|
1253
1270
|
/**
|
|
1254
1271
|
* Gets or sets a value indicating whether to inlcude the sessions next availability.
|
|
1255
1272
|
*/
|
|
@@ -1397,6 +1414,7 @@ export class SessionsService {
|
|
|
1397
1414
|
Featured: featured,
|
|
1398
1415
|
Private: _private,
|
|
1399
1416
|
ProgrammeId: programmeId,
|
|
1417
|
+
ProviderId: providerId,
|
|
1400
1418
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1401
1419
|
AllowTemplating: allowTemplating,
|
|
1402
1420
|
Archived: archived,
|
|
@@ -1455,6 +1473,7 @@ export class SessionsService {
|
|
|
1455
1473
|
featured,
|
|
1456
1474
|
_private,
|
|
1457
1475
|
programmeId,
|
|
1476
|
+
providerId,
|
|
1458
1477
|
includeNextOpportunity,
|
|
1459
1478
|
allowTemplating,
|
|
1460
1479
|
archived,
|
|
@@ -1529,6 +1548,10 @@ export class SessionsService {
|
|
|
1529
1548
|
* Gets or sets the queryable Programme Id.
|
|
1530
1549
|
*/
|
|
1531
1550
|
programmeId?: string;
|
|
1551
|
+
/**
|
|
1552
|
+
* Gets or sets the queryable Provider Id.
|
|
1553
|
+
*/
|
|
1554
|
+
providerId?: string;
|
|
1532
1555
|
/**
|
|
1533
1556
|
* Gets or sets a value indicating whether to inlcude the sessions next availability.
|
|
1534
1557
|
*/
|
|
@@ -1676,6 +1699,7 @@ export class SessionsService {
|
|
|
1676
1699
|
Featured: featured,
|
|
1677
1700
|
Private: _private,
|
|
1678
1701
|
ProgrammeId: programmeId,
|
|
1702
|
+
ProviderId: providerId,
|
|
1679
1703
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1680
1704
|
AllowTemplating: allowTemplating,
|
|
1681
1705
|
Archived: archived,
|
|
@@ -1734,6 +1758,7 @@ export class SessionsService {
|
|
|
1734
1758
|
featured,
|
|
1735
1759
|
_private,
|
|
1736
1760
|
programmeId,
|
|
1761
|
+
providerId,
|
|
1737
1762
|
includeNextOpportunity,
|
|
1738
1763
|
allowTemplating,
|
|
1739
1764
|
archived,
|
|
@@ -1808,6 +1833,10 @@ export class SessionsService {
|
|
|
1808
1833
|
* Gets or sets the queryable Programme Id.
|
|
1809
1834
|
*/
|
|
1810
1835
|
programmeId?: string;
|
|
1836
|
+
/**
|
|
1837
|
+
* Gets or sets the queryable Provider Id.
|
|
1838
|
+
*/
|
|
1839
|
+
providerId?: string;
|
|
1811
1840
|
/**
|
|
1812
1841
|
* Gets or sets a value indicating whether to inlcude the sessions next availability.
|
|
1813
1842
|
*/
|
|
@@ -1955,6 +1984,7 @@ export class SessionsService {
|
|
|
1955
1984
|
Featured: featured,
|
|
1956
1985
|
Private: _private,
|
|
1957
1986
|
ProgrammeId: programmeId,
|
|
1987
|
+
ProviderId: providerId,
|
|
1958
1988
|
IncludeNextOpportunity: includeNextOpportunity,
|
|
1959
1989
|
AllowTemplating: allowTemplating,
|
|
1960
1990
|
Archived: archived,
|