reach-api-sdk 1.0.210 → 1.0.211
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 +2228 -169
- package/dist/reach-sdk.js +2618 -935
- package/package.json +1 -1
- package/src/apiClient.ts +15 -0
- package/src/definition/swagger.yaml +6733 -1147
- package/src/index.ts +28 -0
- package/src/models/AddressBookItem.ts +26 -0
- package/src/models/AddressBooksRequest.ts +22 -0
- package/src/models/DotdigitalCanonicalField.ts +17 -0
- package/src/models/DotdigitalSourceType.ts +15 -0
- package/src/models/IntegrationDotdigitalFieldMap.ts +55 -0
- package/src/models/IntegrationDotdigitalFieldMapPage.ts +12 -0
- package/src/models/IntegrationDotdigitalFieldMapPatch.ts +18 -0
- package/src/models/IntegrationDotdigitalFieldMapPost.ts +14 -0
- package/src/models/IntegrationDotdigitalLog.ts +65 -0
- package/src/models/IntegrationDotdigitalLogPage.ts +12 -0
- package/src/models/IntegrationDotdigitalLogPatch.ts +18 -0
- package/src/models/IntegrationDotdigitalLogPost.ts +14 -0
- package/src/models/IntegrationDotdigitalLogStatus.ts +13 -0
- package/src/models/IntegrationDotdigitalSettings.ts +66 -0
- package/src/models/IntegrationDotdigitalSettingsCreate.ts +38 -0
- package/src/models/IntegrationDotdigitalSettingsPage.ts +12 -0
- package/src/models/IntegrationDotdigitalSettingsPatch.ts +18 -0
- package/src/models/IntegrationDotdigitalSettingsPost.ts +14 -0
- package/src/models/IntegrationQueue.ts +57 -0
- package/src/models/IntegrationQueuePage.ts +12 -0
- package/src/models/IntegrationQueuePatch.ts +18 -0
- package/src/models/IntegrationQueuePost.ts +14 -0
- package/src/models/IntegrationType.ts +11 -0
- package/src/models/OrderItemReport.ts +4 -0
- package/src/services/CourseSessionsService.ts +30 -0
- package/src/services/DotdigitalService.ts +39 -0
- package/src/services/IntegrationDotDigitalSettingsService.ts +708 -0
- package/src/services/IntegrationDotdigitalFieldMapService.ts +662 -0
- package/src/services/IntegrationDotdigitalLogService.ts +662 -0
- package/src/services/IntegrationQueueService.ts +739 -0
- package/src/services/PublicCalendarService.ts +6 -0
- package/src/services/PublicScheduledSessionsService.ts +12 -0
- package/src/services/PublicSessionsService.ts +6 -0
- package/src/services/PublicVenuesService.ts +48 -0
- package/src/services/ScheduledSessionsService.ts +30 -0
- package/src/services/VenuesService.ts +60 -0
|
@@ -18,6 +18,7 @@ export class PublicCalendarService {
|
|
|
18
18
|
startDateTimeGte,
|
|
19
19
|
venueId,
|
|
20
20
|
programmeId,
|
|
21
|
+
providerId,
|
|
21
22
|
}: {
|
|
22
23
|
/**
|
|
23
24
|
* The tenants subdomain.
|
|
@@ -35,6 +36,10 @@ export class PublicCalendarService {
|
|
|
35
36
|
* Gets or sets the programme Id for use in a query search.
|
|
36
37
|
*/
|
|
37
38
|
programmeId?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Gets or sets the provider Id for use in a query search.
|
|
41
|
+
*/
|
|
42
|
+
providerId?: string;
|
|
38
43
|
}): CancelablePromise<any> {
|
|
39
44
|
return this.httpRequest.request({
|
|
40
45
|
method: 'GET',
|
|
@@ -46,6 +51,7 @@ export class PublicCalendarService {
|
|
|
46
51
|
StartDateTimeGTE: startDateTimeGte,
|
|
47
52
|
VenueId: venueId,
|
|
48
53
|
ProgrammeId: programmeId,
|
|
54
|
+
ProviderId: providerId,
|
|
49
55
|
},
|
|
50
56
|
errors: {
|
|
51
57
|
400: `Bad Request`,
|
|
@@ -89,6 +89,7 @@ export class PublicScheduledSessionsService {
|
|
|
89
89
|
ids,
|
|
90
90
|
venueId,
|
|
91
91
|
programmeId,
|
|
92
|
+
providerId,
|
|
92
93
|
sessionId,
|
|
93
94
|
sessionIds,
|
|
94
95
|
scheduleId,
|
|
@@ -139,6 +140,10 @@ export class PublicScheduledSessionsService {
|
|
|
139
140
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
140
141
|
*/
|
|
141
142
|
programmeId?: string;
|
|
143
|
+
/**
|
|
144
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
145
|
+
*/
|
|
146
|
+
providerId?: string;
|
|
142
147
|
/**
|
|
143
148
|
* Gets or sets the queryable scheduled session facility Id.
|
|
144
149
|
*/
|
|
@@ -294,6 +299,7 @@ export class PublicScheduledSessionsService {
|
|
|
294
299
|
Ids: ids,
|
|
295
300
|
VenueId: venueId,
|
|
296
301
|
ProgrammeId: programmeId,
|
|
302
|
+
ProviderId: providerId,
|
|
297
303
|
SessionId: sessionId,
|
|
298
304
|
SessionIds: sessionIds,
|
|
299
305
|
ScheduleId: scheduleId,
|
|
@@ -485,6 +491,7 @@ export class PublicScheduledSessionsService {
|
|
|
485
491
|
ids,
|
|
486
492
|
venueId,
|
|
487
493
|
programmeId,
|
|
494
|
+
providerId,
|
|
488
495
|
sessionId,
|
|
489
496
|
sessionIds,
|
|
490
497
|
scheduleId,
|
|
@@ -538,6 +545,10 @@ export class PublicScheduledSessionsService {
|
|
|
538
545
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
539
546
|
*/
|
|
540
547
|
programmeId?: string;
|
|
548
|
+
/**
|
|
549
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
550
|
+
*/
|
|
551
|
+
providerId?: string;
|
|
541
552
|
/**
|
|
542
553
|
* Gets or sets the queryable scheduled session facility Id.
|
|
543
554
|
*/
|
|
@@ -693,6 +704,7 @@ export class PublicScheduledSessionsService {
|
|
|
693
704
|
Ids: ids,
|
|
694
705
|
VenueId: venueId,
|
|
695
706
|
ProgrammeId: programmeId,
|
|
707
|
+
ProviderId: providerId,
|
|
696
708
|
SessionId: sessionId,
|
|
697
709
|
SessionIds: sessionIds,
|
|
698
710
|
ScheduleId: scheduleId,
|
|
@@ -487,6 +487,7 @@ export class PublicSessionsService {
|
|
|
487
487
|
ids,
|
|
488
488
|
venueId,
|
|
489
489
|
programmeId,
|
|
490
|
+
providerId,
|
|
490
491
|
sessionId,
|
|
491
492
|
sessionIds,
|
|
492
493
|
scheduleId,
|
|
@@ -540,6 +541,10 @@ export class PublicSessionsService {
|
|
|
540
541
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
541
542
|
*/
|
|
542
543
|
programmeId?: string;
|
|
544
|
+
/**
|
|
545
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
546
|
+
*/
|
|
547
|
+
providerId?: string;
|
|
543
548
|
/**
|
|
544
549
|
* Gets or sets the queryable scheduled session facility Id.
|
|
545
550
|
*/
|
|
@@ -695,6 +700,7 @@ export class PublicSessionsService {
|
|
|
695
700
|
Ids: ids,
|
|
696
701
|
VenueId: venueId,
|
|
697
702
|
ProgrammeId: programmeId,
|
|
703
|
+
ProviderId: providerId,
|
|
698
704
|
SessionId: sessionId,
|
|
699
705
|
SessionIds: sessionIds,
|
|
700
706
|
ScheduleId: scheduleId,
|
|
@@ -107,6 +107,8 @@ export class PublicVenuesService {
|
|
|
107
107
|
dashboardRequest,
|
|
108
108
|
programmeIds,
|
|
109
109
|
venueTypeIds,
|
|
110
|
+
providerId,
|
|
111
|
+
providerIds,
|
|
110
112
|
pageNumber,
|
|
111
113
|
take,
|
|
112
114
|
skip,
|
|
@@ -208,6 +210,14 @@ export class PublicVenuesService {
|
|
|
208
210
|
* Gets or sets the venue type ids.
|
|
209
211
|
*/
|
|
210
212
|
venueTypeIds?: Array<string>;
|
|
213
|
+
/**
|
|
214
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
215
|
+
*/
|
|
216
|
+
providerId?: string;
|
|
217
|
+
/**
|
|
218
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
219
|
+
*/
|
|
220
|
+
providerIds?: Array<string>;
|
|
211
221
|
/**
|
|
212
222
|
* Gets or sets the page number for paged queries.
|
|
213
223
|
*/
|
|
@@ -282,6 +292,8 @@ export class PublicVenuesService {
|
|
|
282
292
|
DashboardRequest: dashboardRequest,
|
|
283
293
|
ProgrammeIds: programmeIds,
|
|
284
294
|
VenueTypeIds: venueTypeIds,
|
|
295
|
+
ProviderId: providerId,
|
|
296
|
+
ProviderIds: providerIds,
|
|
285
297
|
PageNumber: pageNumber,
|
|
286
298
|
Take: take,
|
|
287
299
|
Skip: skip,
|
|
@@ -364,6 +376,8 @@ export class PublicVenuesService {
|
|
|
364
376
|
dashboardRequest,
|
|
365
377
|
programmeIds,
|
|
366
378
|
venueTypeIds,
|
|
379
|
+
providerId,
|
|
380
|
+
providerIds,
|
|
367
381
|
pageNumber,
|
|
368
382
|
take,
|
|
369
383
|
skip,
|
|
@@ -464,6 +478,14 @@ export class PublicVenuesService {
|
|
|
464
478
|
* Gets or sets the venue type ids.
|
|
465
479
|
*/
|
|
466
480
|
venueTypeIds?: Array<string>;
|
|
481
|
+
/**
|
|
482
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
483
|
+
*/
|
|
484
|
+
providerId?: string;
|
|
485
|
+
/**
|
|
486
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
487
|
+
*/
|
|
488
|
+
providerIds?: Array<string>;
|
|
467
489
|
/**
|
|
468
490
|
* Gets or sets the page number for paged queries.
|
|
469
491
|
*/
|
|
@@ -535,6 +557,8 @@ export class PublicVenuesService {
|
|
|
535
557
|
DashboardRequest: dashboardRequest,
|
|
536
558
|
ProgrammeIds: programmeIds,
|
|
537
559
|
VenueTypeIds: venueTypeIds,
|
|
560
|
+
ProviderId: providerId,
|
|
561
|
+
ProviderIds: providerIds,
|
|
538
562
|
PageNumber: pageNumber,
|
|
539
563
|
Take: take,
|
|
540
564
|
Skip: skip,
|
|
@@ -583,6 +607,8 @@ export class PublicVenuesService {
|
|
|
583
607
|
dashboardRequest,
|
|
584
608
|
programmeIds,
|
|
585
609
|
venueTypeIds,
|
|
610
|
+
providerId,
|
|
611
|
+
providerIds,
|
|
586
612
|
pageNumber,
|
|
587
613
|
take,
|
|
588
614
|
skip,
|
|
@@ -683,6 +709,14 @@ export class PublicVenuesService {
|
|
|
683
709
|
* Gets or sets the venue type ids.
|
|
684
710
|
*/
|
|
685
711
|
venueTypeIds?: Array<string>;
|
|
712
|
+
/**
|
|
713
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
714
|
+
*/
|
|
715
|
+
providerId?: string;
|
|
716
|
+
/**
|
|
717
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
718
|
+
*/
|
|
719
|
+
providerIds?: Array<string>;
|
|
686
720
|
/**
|
|
687
721
|
* Gets or sets the page number for paged queries.
|
|
688
722
|
*/
|
|
@@ -754,6 +788,8 @@ export class PublicVenuesService {
|
|
|
754
788
|
DashboardRequest: dashboardRequest,
|
|
755
789
|
ProgrammeIds: programmeIds,
|
|
756
790
|
VenueTypeIds: venueTypeIds,
|
|
791
|
+
ProviderId: providerId,
|
|
792
|
+
ProviderIds: providerIds,
|
|
757
793
|
PageNumber: pageNumber,
|
|
758
794
|
Take: take,
|
|
759
795
|
Skip: skip,
|
|
@@ -940,6 +976,8 @@ export class PublicVenuesService {
|
|
|
940
976
|
dashboardRequest,
|
|
941
977
|
programmeIds,
|
|
942
978
|
venueTypeIds,
|
|
979
|
+
providerId,
|
|
980
|
+
providerIds,
|
|
943
981
|
pageNumber,
|
|
944
982
|
take,
|
|
945
983
|
skip,
|
|
@@ -1044,6 +1082,14 @@ export class PublicVenuesService {
|
|
|
1044
1082
|
* Gets or sets the venue type ids.
|
|
1045
1083
|
*/
|
|
1046
1084
|
venueTypeIds?: Array<string>;
|
|
1085
|
+
/**
|
|
1086
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
1087
|
+
*/
|
|
1088
|
+
providerId?: string;
|
|
1089
|
+
/**
|
|
1090
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
1091
|
+
*/
|
|
1092
|
+
providerIds?: Array<string>;
|
|
1047
1093
|
/**
|
|
1048
1094
|
* Gets or sets the page number for paged queries.
|
|
1049
1095
|
*/
|
|
@@ -1118,6 +1164,8 @@ export class PublicVenuesService {
|
|
|
1118
1164
|
DashboardRequest: dashboardRequest,
|
|
1119
1165
|
ProgrammeIds: programmeIds,
|
|
1120
1166
|
VenueTypeIds: venueTypeIds,
|
|
1167
|
+
ProviderId: providerId,
|
|
1168
|
+
ProviderIds: providerIds,
|
|
1121
1169
|
PageNumber: pageNumber,
|
|
1122
1170
|
Take: take,
|
|
1123
1171
|
Skip: skip,
|
|
@@ -409,6 +409,7 @@ export class ScheduledSessionsService {
|
|
|
409
409
|
ids,
|
|
410
410
|
venueId,
|
|
411
411
|
programmeId,
|
|
412
|
+
providerId,
|
|
412
413
|
sessionId,
|
|
413
414
|
sessionIds,
|
|
414
415
|
scheduleId,
|
|
@@ -458,6 +459,10 @@ export class ScheduledSessionsService {
|
|
|
458
459
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
459
460
|
*/
|
|
460
461
|
programmeId?: string;
|
|
462
|
+
/**
|
|
463
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
464
|
+
*/
|
|
465
|
+
providerId?: string;
|
|
461
466
|
/**
|
|
462
467
|
* Gets or sets the queryable scheduled session facility Id.
|
|
463
468
|
*/
|
|
@@ -610,6 +615,7 @@ export class ScheduledSessionsService {
|
|
|
610
615
|
Ids: ids,
|
|
611
616
|
VenueId: venueId,
|
|
612
617
|
ProgrammeId: programmeId,
|
|
618
|
+
ProviderId: providerId,
|
|
613
619
|
SessionId: sessionId,
|
|
614
620
|
SessionIds: sessionIds,
|
|
615
621
|
ScheduleId: scheduleId,
|
|
@@ -745,6 +751,7 @@ export class ScheduledSessionsService {
|
|
|
745
751
|
ids,
|
|
746
752
|
venueId,
|
|
747
753
|
programmeId,
|
|
754
|
+
providerId,
|
|
748
755
|
sessionId,
|
|
749
756
|
sessionIds,
|
|
750
757
|
scheduleId,
|
|
@@ -794,6 +801,10 @@ export class ScheduledSessionsService {
|
|
|
794
801
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
795
802
|
*/
|
|
796
803
|
programmeId?: string;
|
|
804
|
+
/**
|
|
805
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
806
|
+
*/
|
|
807
|
+
providerId?: string;
|
|
797
808
|
/**
|
|
798
809
|
* Gets or sets the queryable scheduled session facility Id.
|
|
799
810
|
*/
|
|
@@ -946,6 +957,7 @@ export class ScheduledSessionsService {
|
|
|
946
957
|
Ids: ids,
|
|
947
958
|
VenueId: venueId,
|
|
948
959
|
ProgrammeId: programmeId,
|
|
960
|
+
ProviderId: providerId,
|
|
949
961
|
SessionId: sessionId,
|
|
950
962
|
SessionIds: sessionIds,
|
|
951
963
|
ScheduleId: scheduleId,
|
|
@@ -1000,6 +1012,7 @@ export class ScheduledSessionsService {
|
|
|
1000
1012
|
ids,
|
|
1001
1013
|
venueId,
|
|
1002
1014
|
programmeId,
|
|
1015
|
+
providerId,
|
|
1003
1016
|
sessionId,
|
|
1004
1017
|
sessionIds,
|
|
1005
1018
|
scheduleId,
|
|
@@ -1049,6 +1062,10 @@ export class ScheduledSessionsService {
|
|
|
1049
1062
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
1050
1063
|
*/
|
|
1051
1064
|
programmeId?: string;
|
|
1065
|
+
/**
|
|
1066
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
1067
|
+
*/
|
|
1068
|
+
providerId?: string;
|
|
1052
1069
|
/**
|
|
1053
1070
|
* Gets or sets the queryable scheduled session facility Id.
|
|
1054
1071
|
*/
|
|
@@ -1201,6 +1218,7 @@ export class ScheduledSessionsService {
|
|
|
1201
1218
|
Ids: ids,
|
|
1202
1219
|
VenueId: venueId,
|
|
1203
1220
|
ProgrammeId: programmeId,
|
|
1221
|
+
ProviderId: providerId,
|
|
1204
1222
|
SessionId: sessionId,
|
|
1205
1223
|
SessionIds: sessionIds,
|
|
1206
1224
|
ScheduleId: scheduleId,
|
|
@@ -1255,6 +1273,7 @@ export class ScheduledSessionsService {
|
|
|
1255
1273
|
ids,
|
|
1256
1274
|
venueId,
|
|
1257
1275
|
programmeId,
|
|
1276
|
+
providerId,
|
|
1258
1277
|
sessionId,
|
|
1259
1278
|
sessionIds,
|
|
1260
1279
|
scheduleId,
|
|
@@ -1304,6 +1323,10 @@ export class ScheduledSessionsService {
|
|
|
1304
1323
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
1305
1324
|
*/
|
|
1306
1325
|
programmeId?: string;
|
|
1326
|
+
/**
|
|
1327
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
1328
|
+
*/
|
|
1329
|
+
providerId?: string;
|
|
1307
1330
|
/**
|
|
1308
1331
|
* Gets or sets the queryable scheduled session facility Id.
|
|
1309
1332
|
*/
|
|
@@ -1456,6 +1479,7 @@ export class ScheduledSessionsService {
|
|
|
1456
1479
|
Ids: ids,
|
|
1457
1480
|
VenueId: venueId,
|
|
1458
1481
|
ProgrammeId: programmeId,
|
|
1482
|
+
ProviderId: providerId,
|
|
1459
1483
|
SessionId: sessionId,
|
|
1460
1484
|
SessionIds: sessionIds,
|
|
1461
1485
|
ScheduleId: scheduleId,
|
|
@@ -1510,6 +1534,7 @@ export class ScheduledSessionsService {
|
|
|
1510
1534
|
ids,
|
|
1511
1535
|
venueId,
|
|
1512
1536
|
programmeId,
|
|
1537
|
+
providerId,
|
|
1513
1538
|
sessionId,
|
|
1514
1539
|
sessionIds,
|
|
1515
1540
|
scheduleId,
|
|
@@ -1559,6 +1584,10 @@ export class ScheduledSessionsService {
|
|
|
1559
1584
|
* Gets or sets the queryable scheduled sessions programme Id.
|
|
1560
1585
|
*/
|
|
1561
1586
|
programmeId?: string;
|
|
1587
|
+
/**
|
|
1588
|
+
* Gets or sets the queryable scheduled session provider Id.
|
|
1589
|
+
*/
|
|
1590
|
+
providerId?: string;
|
|
1562
1591
|
/**
|
|
1563
1592
|
* Gets or sets the queryable scheduled session facility Id.
|
|
1564
1593
|
*/
|
|
@@ -1711,6 +1740,7 @@ export class ScheduledSessionsService {
|
|
|
1711
1740
|
Ids: ids,
|
|
1712
1741
|
VenueId: venueId,
|
|
1713
1742
|
ProgrammeId: programmeId,
|
|
1743
|
+
ProviderId: providerId,
|
|
1714
1744
|
SessionId: sessionId,
|
|
1715
1745
|
SessionIds: sessionIds,
|
|
1716
1746
|
ScheduleId: scheduleId,
|
|
@@ -448,6 +448,8 @@ export class VenuesService {
|
|
|
448
448
|
dashboardRequest,
|
|
449
449
|
programmeIds,
|
|
450
450
|
venueTypeIds,
|
|
451
|
+
providerId,
|
|
452
|
+
providerIds,
|
|
451
453
|
pageNumber,
|
|
452
454
|
take,
|
|
453
455
|
skip,
|
|
@@ -548,6 +550,14 @@ export class VenuesService {
|
|
|
548
550
|
* Gets or sets the venue type ids.
|
|
549
551
|
*/
|
|
550
552
|
venueTypeIds?: Array<string>;
|
|
553
|
+
/**
|
|
554
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
555
|
+
*/
|
|
556
|
+
providerId?: string;
|
|
557
|
+
/**
|
|
558
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
559
|
+
*/
|
|
560
|
+
providerIds?: Array<string>;
|
|
551
561
|
/**
|
|
552
562
|
* Gets or sets the page number for paged queries.
|
|
553
563
|
*/
|
|
@@ -619,6 +629,8 @@ export class VenuesService {
|
|
|
619
629
|
DashboardRequest: dashboardRequest,
|
|
620
630
|
ProgrammeIds: programmeIds,
|
|
621
631
|
VenueTypeIds: venueTypeIds,
|
|
632
|
+
ProviderId: providerId,
|
|
633
|
+
ProviderIds: providerIds,
|
|
622
634
|
PageNumber: pageNumber,
|
|
623
635
|
Take: take,
|
|
624
636
|
Skip: skip,
|
|
@@ -748,6 +760,8 @@ export class VenuesService {
|
|
|
748
760
|
dashboardRequest,
|
|
749
761
|
programmeIds,
|
|
750
762
|
venueTypeIds,
|
|
763
|
+
providerId,
|
|
764
|
+
providerIds,
|
|
751
765
|
pageNumber,
|
|
752
766
|
take,
|
|
753
767
|
skip,
|
|
@@ -848,6 +862,14 @@ export class VenuesService {
|
|
|
848
862
|
* Gets or sets the venue type ids.
|
|
849
863
|
*/
|
|
850
864
|
venueTypeIds?: Array<string>;
|
|
865
|
+
/**
|
|
866
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
867
|
+
*/
|
|
868
|
+
providerId?: string;
|
|
869
|
+
/**
|
|
870
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
871
|
+
*/
|
|
872
|
+
providerIds?: Array<string>;
|
|
851
873
|
/**
|
|
852
874
|
* Gets or sets the page number for paged queries.
|
|
853
875
|
*/
|
|
@@ -919,6 +941,8 @@ export class VenuesService {
|
|
|
919
941
|
DashboardRequest: dashboardRequest,
|
|
920
942
|
ProgrammeIds: programmeIds,
|
|
921
943
|
VenueTypeIds: venueTypeIds,
|
|
944
|
+
ProviderId: providerId,
|
|
945
|
+
ProviderIds: providerIds,
|
|
922
946
|
PageNumber: pageNumber,
|
|
923
947
|
Take: take,
|
|
924
948
|
Skip: skip,
|
|
@@ -967,6 +991,8 @@ export class VenuesService {
|
|
|
967
991
|
dashboardRequest,
|
|
968
992
|
programmeIds,
|
|
969
993
|
venueTypeIds,
|
|
994
|
+
providerId,
|
|
995
|
+
providerIds,
|
|
970
996
|
pageNumber,
|
|
971
997
|
take,
|
|
972
998
|
skip,
|
|
@@ -1067,6 +1093,14 @@ export class VenuesService {
|
|
|
1067
1093
|
* Gets or sets the venue type ids.
|
|
1068
1094
|
*/
|
|
1069
1095
|
venueTypeIds?: Array<string>;
|
|
1096
|
+
/**
|
|
1097
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
1098
|
+
*/
|
|
1099
|
+
providerId?: string;
|
|
1100
|
+
/**
|
|
1101
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
1102
|
+
*/
|
|
1103
|
+
providerIds?: Array<string>;
|
|
1070
1104
|
/**
|
|
1071
1105
|
* Gets or sets the page number for paged queries.
|
|
1072
1106
|
*/
|
|
@@ -1138,6 +1172,8 @@ export class VenuesService {
|
|
|
1138
1172
|
DashboardRequest: dashboardRequest,
|
|
1139
1173
|
ProgrammeIds: programmeIds,
|
|
1140
1174
|
VenueTypeIds: venueTypeIds,
|
|
1175
|
+
ProviderId: providerId,
|
|
1176
|
+
ProviderIds: providerIds,
|
|
1141
1177
|
PageNumber: pageNumber,
|
|
1142
1178
|
Take: take,
|
|
1143
1179
|
Skip: skip,
|
|
@@ -1186,6 +1222,8 @@ export class VenuesService {
|
|
|
1186
1222
|
dashboardRequest,
|
|
1187
1223
|
programmeIds,
|
|
1188
1224
|
venueTypeIds,
|
|
1225
|
+
providerId,
|
|
1226
|
+
providerIds,
|
|
1189
1227
|
pageNumber,
|
|
1190
1228
|
take,
|
|
1191
1229
|
skip,
|
|
@@ -1286,6 +1324,14 @@ export class VenuesService {
|
|
|
1286
1324
|
* Gets or sets the venue type ids.
|
|
1287
1325
|
*/
|
|
1288
1326
|
venueTypeIds?: Array<string>;
|
|
1327
|
+
/**
|
|
1328
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
1329
|
+
*/
|
|
1330
|
+
providerId?: string;
|
|
1331
|
+
/**
|
|
1332
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
1333
|
+
*/
|
|
1334
|
+
providerIds?: Array<string>;
|
|
1289
1335
|
/**
|
|
1290
1336
|
* Gets or sets the page number for paged queries.
|
|
1291
1337
|
*/
|
|
@@ -1357,6 +1403,8 @@ export class VenuesService {
|
|
|
1357
1403
|
DashboardRequest: dashboardRequest,
|
|
1358
1404
|
ProgrammeIds: programmeIds,
|
|
1359
1405
|
VenueTypeIds: venueTypeIds,
|
|
1406
|
+
ProviderId: providerId,
|
|
1407
|
+
ProviderIds: providerIds,
|
|
1360
1408
|
PageNumber: pageNumber,
|
|
1361
1409
|
Take: take,
|
|
1362
1410
|
Skip: skip,
|
|
@@ -1405,6 +1453,8 @@ export class VenuesService {
|
|
|
1405
1453
|
dashboardRequest,
|
|
1406
1454
|
programmeIds,
|
|
1407
1455
|
venueTypeIds,
|
|
1456
|
+
providerId,
|
|
1457
|
+
providerIds,
|
|
1408
1458
|
pageNumber,
|
|
1409
1459
|
take,
|
|
1410
1460
|
skip,
|
|
@@ -1505,6 +1555,14 @@ export class VenuesService {
|
|
|
1505
1555
|
* Gets or sets the venue type ids.
|
|
1506
1556
|
*/
|
|
1507
1557
|
venueTypeIds?: Array<string>;
|
|
1558
|
+
/**
|
|
1559
|
+
* Gets or sets the provider Id. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to the provider.
|
|
1560
|
+
*/
|
|
1561
|
+
providerId?: string;
|
|
1562
|
+
/**
|
|
1563
|
+
* Gets or sets the provider Ids. When supplied, returns venues that have activities (sessions, courses, or facilities) assigned to any of the providers.
|
|
1564
|
+
*/
|
|
1565
|
+
providerIds?: Array<string>;
|
|
1508
1566
|
/**
|
|
1509
1567
|
* Gets or sets the page number for paged queries.
|
|
1510
1568
|
*/
|
|
@@ -1576,6 +1634,8 @@ export class VenuesService {
|
|
|
1576
1634
|
DashboardRequest: dashboardRequest,
|
|
1577
1635
|
ProgrammeIds: programmeIds,
|
|
1578
1636
|
VenueTypeIds: venueTypeIds,
|
|
1637
|
+
ProviderId: providerId,
|
|
1638
|
+
ProviderIds: providerIds,
|
|
1579
1639
|
PageNumber: pageNumber,
|
|
1580
1640
|
Take: take,
|
|
1581
1641
|
Skip: skip,
|