reach-api-sdk 1.0.83 → 1.0.84
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 +143 -14
- package/dist/reach-sdk.js +87 -2
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +225 -1
- package/src/index.ts +1 -0
- package/src/models/TenantPost.ts +1 -1
- package/src/services/PublicNetworksService.ts +166 -0
- package/src/services/PublicSessionsService.ts +12 -0
- package/src/services/SessionsService.ts +24 -0
- package/src/services/StripeAccountService.ts +8 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -19214,6 +19214,111 @@ declare class PublicLeasingService {
|
|
|
19214
19214
|
}): CancelablePromise<Array<Order>>;
|
|
19215
19215
|
}
|
|
19216
19216
|
|
|
19217
|
+
type SessionPage = {
|
|
19218
|
+
pagination: Pagination;
|
|
19219
|
+
readonly items: Array<Session>;
|
|
19220
|
+
};
|
|
19221
|
+
|
|
19222
|
+
declare class PublicNetworksService {
|
|
19223
|
+
readonly httpRequest: BaseHttpRequest;
|
|
19224
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
19225
|
+
/**
|
|
19226
|
+
* GetSessions.
|
|
19227
|
+
* @returns SessionPage Success
|
|
19228
|
+
* @throws ApiError
|
|
19229
|
+
*/
|
|
19230
|
+
getSessions({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19231
|
+
/**
|
|
19232
|
+
* Gets or sets the queryable session ids.
|
|
19233
|
+
*/
|
|
19234
|
+
ids?: Array<string>;
|
|
19235
|
+
/**
|
|
19236
|
+
* Gets or sets the queryable Venue Id.
|
|
19237
|
+
*/
|
|
19238
|
+
venueId?: string;
|
|
19239
|
+
/**
|
|
19240
|
+
* Gets or sets the queryable Survey Id.
|
|
19241
|
+
*/
|
|
19242
|
+
surveyId?: string;
|
|
19243
|
+
/**
|
|
19244
|
+
* Gets or sets a value indicating whether to only return sessions with future slots available.
|
|
19245
|
+
*/
|
|
19246
|
+
futureOnly?: boolean;
|
|
19247
|
+
/**
|
|
19248
|
+
* Gets or sets a value indicating whether return online sessions.
|
|
19249
|
+
*/
|
|
19250
|
+
online?: boolean;
|
|
19251
|
+
/**
|
|
19252
|
+
* Gets or sets the queryable Programme Id.
|
|
19253
|
+
*/
|
|
19254
|
+
programmeId?: string;
|
|
19255
|
+
/**
|
|
19256
|
+
* Gets or sets a value indicating whether to inlcude the sessions next availability.
|
|
19257
|
+
*/
|
|
19258
|
+
includeNextOpportunity?: boolean;
|
|
19259
|
+
/**
|
|
19260
|
+
* Gets or sets a value indicating whether to include templatable sessions.
|
|
19261
|
+
*/
|
|
19262
|
+
allowTemplating?: boolean;
|
|
19263
|
+
/**
|
|
19264
|
+
* Gets or sets a value indicating whether to include archived sessions.
|
|
19265
|
+
*/
|
|
19266
|
+
archived?: boolean;
|
|
19267
|
+
/**
|
|
19268
|
+
* Gets or sets a value indicating whether to include deleted sessions.
|
|
19269
|
+
*/
|
|
19270
|
+
deleted?: boolean;
|
|
19271
|
+
/**
|
|
19272
|
+
* Gets or sets a value indicating this an openactive reaquest.
|
|
19273
|
+
*/
|
|
19274
|
+
openActiveUpdate?: boolean;
|
|
19275
|
+
/**
|
|
19276
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
19277
|
+
*/
|
|
19278
|
+
networkId?: string;
|
|
19279
|
+
/**
|
|
19280
|
+
* Gets or sets the page number for paged queries.
|
|
19281
|
+
*/
|
|
19282
|
+
pageNumber?: number;
|
|
19283
|
+
/**
|
|
19284
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
19285
|
+
*/
|
|
19286
|
+
take?: number;
|
|
19287
|
+
/**
|
|
19288
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
19289
|
+
*/
|
|
19290
|
+
limitListRequests?: boolean;
|
|
19291
|
+
/**
|
|
19292
|
+
* Gets or sets the Tenant Id.
|
|
19293
|
+
*/
|
|
19294
|
+
tenantId?: string;
|
|
19295
|
+
/**
|
|
19296
|
+
* Gets or sets the Modifed By Id.
|
|
19297
|
+
*/
|
|
19298
|
+
modifiedById?: string;
|
|
19299
|
+
/**
|
|
19300
|
+
* Gets or sets the Modifed By Ids.
|
|
19301
|
+
*/
|
|
19302
|
+
modifiedByIds?: Array<string>;
|
|
19303
|
+
/**
|
|
19304
|
+
* Gets or sets the Date Created greater than equal to.
|
|
19305
|
+
*/
|
|
19306
|
+
dateCreatedGte?: string;
|
|
19307
|
+
/**
|
|
19308
|
+
* Gets or sets the Date Created less than equal to.
|
|
19309
|
+
*/
|
|
19310
|
+
dateCreatedLte?: string;
|
|
19311
|
+
/**
|
|
19312
|
+
* Gets or sets the queryable only is live status.
|
|
19313
|
+
*/
|
|
19314
|
+
isLive?: boolean;
|
|
19315
|
+
/**
|
|
19316
|
+
* Gets or sets the sort order direction.
|
|
19317
|
+
*/
|
|
19318
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
19319
|
+
}): CancelablePromise<SessionPage>;
|
|
19320
|
+
}
|
|
19321
|
+
|
|
19217
19322
|
declare class PublicOrdersService {
|
|
19218
19323
|
readonly httpRequest: BaseHttpRequest;
|
|
19219
19324
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -20455,11 +20560,6 @@ declare class PublicScheduledSessionsService {
|
|
|
20455
20560
|
}): CancelablePromise<Array<ScheduledSession>>;
|
|
20456
20561
|
}
|
|
20457
20562
|
|
|
20458
|
-
type SessionPage = {
|
|
20459
|
-
pagination: Pagination;
|
|
20460
|
-
readonly items: Array<Session>;
|
|
20461
|
-
};
|
|
20462
|
-
|
|
20463
20563
|
/**
|
|
20464
20564
|
* Patch model for session updates.
|
|
20465
20565
|
*/
|
|
@@ -20613,7 +20713,7 @@ declare class PublicSessionsService {
|
|
|
20613
20713
|
* @returns SessionPage Success
|
|
20614
20714
|
* @throws ApiError
|
|
20615
20715
|
*/
|
|
20616
|
-
getPage({ xTenantSubdomain, ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20716
|
+
getPage({ xTenantSubdomain, ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20617
20717
|
xTenantSubdomain?: string;
|
|
20618
20718
|
/**
|
|
20619
20719
|
* Gets or sets the queryable session ids.
|
|
@@ -20659,6 +20759,10 @@ declare class PublicSessionsService {
|
|
|
20659
20759
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
20660
20760
|
*/
|
|
20661
20761
|
openActiveUpdate?: boolean;
|
|
20762
|
+
/**
|
|
20763
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
20764
|
+
*/
|
|
20765
|
+
networkId?: string;
|
|
20662
20766
|
/**
|
|
20663
20767
|
* Gets or sets the page number for paged queries.
|
|
20664
20768
|
*/
|
|
@@ -20859,7 +20963,7 @@ declare class PublicSessionsService {
|
|
|
20859
20963
|
* @returns boolean Success
|
|
20860
20964
|
* @throws ApiError
|
|
20861
20965
|
*/
|
|
20862
|
-
exists({ xTenantSubdomain, ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20966
|
+
exists({ xTenantSubdomain, ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20863
20967
|
/**
|
|
20864
20968
|
* The tenants subdomain.
|
|
20865
20969
|
*/
|
|
@@ -20908,6 +21012,10 @@ declare class PublicSessionsService {
|
|
|
20908
21012
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
20909
21013
|
*/
|
|
20910
21014
|
openActiveUpdate?: boolean;
|
|
21015
|
+
/**
|
|
21016
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
21017
|
+
*/
|
|
21018
|
+
networkId?: string;
|
|
20911
21019
|
/**
|
|
20912
21020
|
* Gets or sets the page number for paged queries.
|
|
20913
21021
|
*/
|
|
@@ -22805,7 +22913,7 @@ type TenantPost = {
|
|
|
22805
22913
|
/**
|
|
22806
22914
|
* Gets or sets the organisation website url.
|
|
22807
22915
|
*/
|
|
22808
|
-
websiteUrl
|
|
22916
|
+
websiteUrl?: string | null;
|
|
22809
22917
|
/**
|
|
22810
22918
|
* Gets or sets the tenants time zone.
|
|
22811
22919
|
*/
|
|
@@ -26298,7 +26406,7 @@ declare class SessionsService {
|
|
|
26298
26406
|
* @returns boolean Success
|
|
26299
26407
|
* @throws ApiError
|
|
26300
26408
|
*/
|
|
26301
|
-
exists({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26409
|
+
exists({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26302
26410
|
/**
|
|
26303
26411
|
* Gets or sets the queryable session ids.
|
|
26304
26412
|
*/
|
|
@@ -26343,6 +26451,10 @@ declare class SessionsService {
|
|
|
26343
26451
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
26344
26452
|
*/
|
|
26345
26453
|
openActiveUpdate?: boolean;
|
|
26454
|
+
/**
|
|
26455
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
26456
|
+
*/
|
|
26457
|
+
networkId?: string;
|
|
26346
26458
|
/**
|
|
26347
26459
|
* Gets or sets the page number for paged queries.
|
|
26348
26460
|
*/
|
|
@@ -26389,7 +26501,7 @@ declare class SessionsService {
|
|
|
26389
26501
|
* @returns SessionPage Success
|
|
26390
26502
|
* @throws ApiError
|
|
26391
26503
|
*/
|
|
26392
|
-
getPage({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26504
|
+
getPage({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26393
26505
|
/**
|
|
26394
26506
|
* Gets or sets the queryable session ids.
|
|
26395
26507
|
*/
|
|
@@ -26434,6 +26546,10 @@ declare class SessionsService {
|
|
|
26434
26546
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
26435
26547
|
*/
|
|
26436
26548
|
openActiveUpdate?: boolean;
|
|
26549
|
+
/**
|
|
26550
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
26551
|
+
*/
|
|
26552
|
+
networkId?: string;
|
|
26437
26553
|
/**
|
|
26438
26554
|
* Gets or sets the page number for paged queries.
|
|
26439
26555
|
*/
|
|
@@ -26491,7 +26607,7 @@ declare class SessionsService {
|
|
|
26491
26607
|
* @returns Session Success
|
|
26492
26608
|
* @throws ApiError
|
|
26493
26609
|
*/
|
|
26494
|
-
getListWithoutReferences({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26610
|
+
getListWithoutReferences({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26495
26611
|
/**
|
|
26496
26612
|
* Gets or sets the queryable session ids.
|
|
26497
26613
|
*/
|
|
@@ -26536,6 +26652,10 @@ declare class SessionsService {
|
|
|
26536
26652
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
26537
26653
|
*/
|
|
26538
26654
|
openActiveUpdate?: boolean;
|
|
26655
|
+
/**
|
|
26656
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
26657
|
+
*/
|
|
26658
|
+
networkId?: string;
|
|
26539
26659
|
/**
|
|
26540
26660
|
* Gets or sets the page number for paged queries.
|
|
26541
26661
|
*/
|
|
@@ -26582,7 +26702,7 @@ declare class SessionsService {
|
|
|
26582
26702
|
* @returns Session Success
|
|
26583
26703
|
* @throws ApiError
|
|
26584
26704
|
*/
|
|
26585
|
-
getListIdName({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26705
|
+
getListIdName({ ids, venueId, surveyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
26586
26706
|
/**
|
|
26587
26707
|
* Gets or sets the queryable session ids.
|
|
26588
26708
|
*/
|
|
@@ -26627,6 +26747,10 @@ declare class SessionsService {
|
|
|
26627
26747
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
26628
26748
|
*/
|
|
26629
26749
|
openActiveUpdate?: boolean;
|
|
26750
|
+
/**
|
|
26751
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
26752
|
+
*/
|
|
26753
|
+
networkId?: string;
|
|
26630
26754
|
/**
|
|
26631
26755
|
* Gets or sets the page number for paged queries.
|
|
26632
26756
|
*/
|
|
@@ -28665,11 +28789,15 @@ declare class StripeAccountService {
|
|
|
28665
28789
|
* @returns string Success
|
|
28666
28790
|
* @throws ApiError
|
|
28667
28791
|
*/
|
|
28668
|
-
createStripeAccountLink({ id, }: {
|
|
28792
|
+
createStripeAccountLink({ id, venueId, }: {
|
|
28669
28793
|
/**
|
|
28670
28794
|
* The Tenant id.
|
|
28671
28795
|
*/
|
|
28672
28796
|
id: string;
|
|
28797
|
+
/**
|
|
28798
|
+
* The Tenant id.
|
|
28799
|
+
*/
|
|
28800
|
+
venueId?: string;
|
|
28673
28801
|
}): CancelablePromise<string>;
|
|
28674
28802
|
/**
|
|
28675
28803
|
* Registers the tenants domain with Apple pay in Stripe. />.
|
|
@@ -36676,6 +36804,7 @@ declare class ApiClient {
|
|
|
36676
36804
|
readonly publicFacilities: PublicFacilitiesService;
|
|
36677
36805
|
readonly publicHealthCheck: PublicHealthCheckService;
|
|
36678
36806
|
readonly publicLeasing: PublicLeasingService;
|
|
36807
|
+
readonly publicNetworks: PublicNetworksService;
|
|
36679
36808
|
readonly publicOrders: PublicOrdersService;
|
|
36680
36809
|
readonly publicOrderTokens: PublicOrderTokensService;
|
|
36681
36810
|
readonly publicProgrammes: PublicProgrammesService;
|
|
@@ -36849,4 +36978,4 @@ type ValidationResultModel = {
|
|
|
36849
36978
|
readonly errors?: Array<ValidationError> | null;
|
|
36850
36979
|
};
|
|
36851
36980
|
|
|
36852
|
-
export { Activity, ActivityService, ActivityType, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateOffer, CreateQuestion, CreateQuestionOption, CreateVenue, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityPatch, GenericActivityPost, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImagePage, ImagePatch, ImagePost, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityType, Order, OrderEmailCustomerPatch, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicHealthCheckService, PublicLeasingService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityService };
|
|
36981
|
+
export { Activity, ActivityService, ActivityType, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateOffer, CreateQuestion, CreateQuestionOption, CreateVenue, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityPatch, GenericActivityPost, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImagePage, ImagePatch, ImagePost, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityType, Order, OrderEmailCustomerPatch, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityService };
|
package/dist/reach-sdk.js
CHANGED
|
@@ -13362,6 +13362,73 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
13362
13362
|
}
|
|
13363
13363
|
});
|
|
13364
13364
|
}
|
|
13365
|
+
}class PublicNetworksService {
|
|
13366
|
+
constructor(httpRequest) {
|
|
13367
|
+
this.httpRequest = httpRequest;
|
|
13368
|
+
}
|
|
13369
|
+
/**
|
|
13370
|
+
* GetSessions.
|
|
13371
|
+
* @returns SessionPage Success
|
|
13372
|
+
* @throws ApiError
|
|
13373
|
+
*/
|
|
13374
|
+
getSessions({
|
|
13375
|
+
ids,
|
|
13376
|
+
venueId,
|
|
13377
|
+
surveyId,
|
|
13378
|
+
futureOnly,
|
|
13379
|
+
online,
|
|
13380
|
+
programmeId,
|
|
13381
|
+
includeNextOpportunity,
|
|
13382
|
+
allowTemplating,
|
|
13383
|
+
archived,
|
|
13384
|
+
deleted,
|
|
13385
|
+
openActiveUpdate,
|
|
13386
|
+
networkId,
|
|
13387
|
+
pageNumber,
|
|
13388
|
+
take,
|
|
13389
|
+
limitListRequests,
|
|
13390
|
+
tenantId,
|
|
13391
|
+
modifiedById,
|
|
13392
|
+
modifiedByIds,
|
|
13393
|
+
dateCreatedGte,
|
|
13394
|
+
dateCreatedLte,
|
|
13395
|
+
isLive,
|
|
13396
|
+
sortOrderDirection
|
|
13397
|
+
}) {
|
|
13398
|
+
return this.httpRequest.request({
|
|
13399
|
+
method: "GET",
|
|
13400
|
+
url: "/api/public/networks/sessions",
|
|
13401
|
+
query: {
|
|
13402
|
+
Ids: ids,
|
|
13403
|
+
VenueId: venueId,
|
|
13404
|
+
SurveyId: surveyId,
|
|
13405
|
+
FutureOnly: futureOnly,
|
|
13406
|
+
Online: online,
|
|
13407
|
+
ProgrammeId: programmeId,
|
|
13408
|
+
IncludeNextOpportunity: includeNextOpportunity,
|
|
13409
|
+
AllowTemplating: allowTemplating,
|
|
13410
|
+
Archived: archived,
|
|
13411
|
+
Deleted: deleted,
|
|
13412
|
+
OpenActiveUpdate: openActiveUpdate,
|
|
13413
|
+
NetworkId: networkId,
|
|
13414
|
+
PageNumber: pageNumber,
|
|
13415
|
+
Take: take,
|
|
13416
|
+
LimitListRequests: limitListRequests,
|
|
13417
|
+
TenantId: tenantId,
|
|
13418
|
+
ModifiedById: modifiedById,
|
|
13419
|
+
ModifiedByIds: modifiedByIds,
|
|
13420
|
+
DateCreatedGTE: dateCreatedGte,
|
|
13421
|
+
DateCreatedLTE: dateCreatedLte,
|
|
13422
|
+
IsLive: isLive,
|
|
13423
|
+
SortOrderDirection: sortOrderDirection
|
|
13424
|
+
},
|
|
13425
|
+
errors: {
|
|
13426
|
+
400: `Bad Request`,
|
|
13427
|
+
422: `Client Error`,
|
|
13428
|
+
500: `Server Error`
|
|
13429
|
+
}
|
|
13430
|
+
});
|
|
13431
|
+
}
|
|
13365
13432
|
}class PublicOrdersService {
|
|
13366
13433
|
constructor(httpRequest) {
|
|
13367
13434
|
this.httpRequest = httpRequest;
|
|
@@ -14609,6 +14676,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14609
14676
|
archived,
|
|
14610
14677
|
deleted,
|
|
14611
14678
|
openActiveUpdate,
|
|
14679
|
+
networkId,
|
|
14612
14680
|
pageNumber,
|
|
14613
14681
|
take,
|
|
14614
14682
|
limitListRequests,
|
|
@@ -14638,6 +14706,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14638
14706
|
Archived: archived,
|
|
14639
14707
|
Deleted: deleted,
|
|
14640
14708
|
OpenActiveUpdate: openActiveUpdate,
|
|
14709
|
+
NetworkId: networkId,
|
|
14641
14710
|
PageNumber: pageNumber,
|
|
14642
14711
|
Take: take,
|
|
14643
14712
|
LimitListRequests: limitListRequests,
|
|
@@ -14785,6 +14854,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14785
14854
|
archived,
|
|
14786
14855
|
deleted,
|
|
14787
14856
|
openActiveUpdate,
|
|
14857
|
+
networkId,
|
|
14788
14858
|
pageNumber,
|
|
14789
14859
|
take,
|
|
14790
14860
|
limitListRequests,
|
|
@@ -14814,6 +14884,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
14814
14884
|
Archived: archived,
|
|
14815
14885
|
Deleted: deleted,
|
|
14816
14886
|
OpenActiveUpdate: openActiveUpdate,
|
|
14887
|
+
NetworkId: networkId,
|
|
14817
14888
|
PageNumber: pageNumber,
|
|
14818
14889
|
Take: take,
|
|
14819
14890
|
LimitListRequests: limitListRequests,
|
|
@@ -19123,6 +19194,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19123
19194
|
archived,
|
|
19124
19195
|
deleted,
|
|
19125
19196
|
openActiveUpdate,
|
|
19197
|
+
networkId,
|
|
19126
19198
|
pageNumber,
|
|
19127
19199
|
take,
|
|
19128
19200
|
limitListRequests,
|
|
@@ -19149,6 +19221,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19149
19221
|
Archived: archived,
|
|
19150
19222
|
Deleted: deleted,
|
|
19151
19223
|
OpenActiveUpdate: openActiveUpdate,
|
|
19224
|
+
NetworkId: networkId,
|
|
19152
19225
|
PageNumber: pageNumber,
|
|
19153
19226
|
Take: take,
|
|
19154
19227
|
LimitListRequests: limitListRequests,
|
|
@@ -19184,6 +19257,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19184
19257
|
archived,
|
|
19185
19258
|
deleted,
|
|
19186
19259
|
openActiveUpdate,
|
|
19260
|
+
networkId,
|
|
19187
19261
|
pageNumber,
|
|
19188
19262
|
take,
|
|
19189
19263
|
limitListRequests,
|
|
@@ -19210,6 +19284,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19210
19284
|
Archived: archived,
|
|
19211
19285
|
Deleted: deleted,
|
|
19212
19286
|
OpenActiveUpdate: openActiveUpdate,
|
|
19287
|
+
NetworkId: networkId,
|
|
19213
19288
|
PageNumber: pageNumber,
|
|
19214
19289
|
Take: take,
|
|
19215
19290
|
LimitListRequests: limitListRequests,
|
|
@@ -19265,6 +19340,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19265
19340
|
archived,
|
|
19266
19341
|
deleted,
|
|
19267
19342
|
openActiveUpdate,
|
|
19343
|
+
networkId,
|
|
19268
19344
|
pageNumber,
|
|
19269
19345
|
take,
|
|
19270
19346
|
limitListRequests,
|
|
@@ -19291,6 +19367,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19291
19367
|
Archived: archived,
|
|
19292
19368
|
Deleted: deleted,
|
|
19293
19369
|
OpenActiveUpdate: openActiveUpdate,
|
|
19370
|
+
NetworkId: networkId,
|
|
19294
19371
|
PageNumber: pageNumber,
|
|
19295
19372
|
Take: take,
|
|
19296
19373
|
LimitListRequests: limitListRequests,
|
|
@@ -19326,6 +19403,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19326
19403
|
archived,
|
|
19327
19404
|
deleted,
|
|
19328
19405
|
openActiveUpdate,
|
|
19406
|
+
networkId,
|
|
19329
19407
|
pageNumber,
|
|
19330
19408
|
take,
|
|
19331
19409
|
limitListRequests,
|
|
@@ -19352,6 +19430,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
19352
19430
|
Archived: archived,
|
|
19353
19431
|
Deleted: deleted,
|
|
19354
19432
|
OpenActiveUpdate: openActiveUpdate,
|
|
19433
|
+
NetworkId: networkId,
|
|
19355
19434
|
PageNumber: pageNumber,
|
|
19356
19435
|
Take: take,
|
|
19357
19436
|
LimitListRequests: limitListRequests,
|
|
@@ -21132,7 +21211,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21132
21211
|
* @throws ApiError
|
|
21133
21212
|
*/
|
|
21134
21213
|
createStripeAccountLink({
|
|
21135
|
-
id
|
|
21214
|
+
id,
|
|
21215
|
+
venueId
|
|
21136
21216
|
}) {
|
|
21137
21217
|
return this.httpRequest.request({
|
|
21138
21218
|
method: "GET",
|
|
@@ -21140,6 +21220,9 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
21140
21220
|
path: {
|
|
21141
21221
|
id
|
|
21142
21222
|
},
|
|
21223
|
+
query: {
|
|
21224
|
+
venueId
|
|
21225
|
+
},
|
|
21143
21226
|
errors: {
|
|
21144
21227
|
400: `Bad Request`,
|
|
21145
21228
|
422: `Client Error`,
|
|
@@ -28485,6 +28568,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28485
28568
|
publicFacilities;
|
|
28486
28569
|
publicHealthCheck;
|
|
28487
28570
|
publicLeasing;
|
|
28571
|
+
publicNetworks;
|
|
28488
28572
|
publicOrders;
|
|
28489
28573
|
publicOrderTokens;
|
|
28490
28574
|
publicProgrammes;
|
|
@@ -28582,6 +28666,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28582
28666
|
this.publicFacilities = new PublicFacilitiesService(this.request);
|
|
28583
28667
|
this.publicHealthCheck = new PublicHealthCheckService(this.request);
|
|
28584
28668
|
this.publicLeasing = new PublicLeasingService(this.request);
|
|
28669
|
+
this.publicNetworks = new PublicNetworksService(this.request);
|
|
28585
28670
|
this.publicOrders = new PublicOrdersService(this.request);
|
|
28586
28671
|
this.publicOrderTokens = new PublicOrderTokensService(this.request);
|
|
28587
28672
|
this.publicProgrammes = new PublicProgrammesService(this.request);
|
|
@@ -28933,4 +29018,4 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
28933
29018
|
TenantTier2["ENTERPRISE"] = "Enterprise";
|
|
28934
29019
|
TenantTier2["PRO"] = "Pro";
|
|
28935
29020
|
return TenantTier2;
|
|
28936
|
-
})(TenantTier || {});export{ActivityService,ActivityType,AdvanceBooking,AmenityService,ApiClient,ApiError,AppUserRole,ApplicationRole,AttendeesService,BadEnglandReportService,BaseHttpRequest,BookingService,BookingStatus,CancelError,CancelablePromise,ChatService,ContactOnConfirmation,CountryService,CourseBookingCutoff,CourseSearchSortBy,CourseSessionSchedulesService,CourseSessionsService,CourseStatus,CoursesService,CustomerCancellationOption,CustomerType,CustomersService,DayOfWeek,EmailReminderSchedulesService,EmailSettingsService,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FilestackService,Gender,GenericActivityService,GeocodeService,HereAutocompleteLookupService,HttpStatusCode,ImagesService,InviteStatus,LeasingService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityType,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentsService,PermissionsService,PlacesService,Prepayment,ProgrammesService,PublicBookingService,PublicCoursesService,PublicCustomersService,PublicFacilitiesService,PublicHealthCheckService,PublicLeasingService,PublicOrderTokensService,PublicOrdersService,PublicProgrammesService,PublicScheduledSessionsService,PublicSessionsService,PublicSlotsService,PublicStripeWebhookService,PublicSurveyCompletionLogsService,PublicSurveyQuestionsService,PublicSurveysService,PublicTenantsService,PublicVenuesService,PublicWaitlistActivityService,PublicWaitlistOpportunityService,ReachEntity,ReachOperation,RecentOrderActivityReportService,RefundStatus,RescheduleLogService,ScheduleStatus,ScheduledSessionSearchSortBy,ScheduledSessionsSchedulesService,ScheduledSessionsService,SearchSortOrderDirection,SessionType,SessionsService,SlotAvailabilityStatus,SlotOffersService,SlotScheduleOffersService,SlotSchedulesService,SlotStatus,SlotsService,StripeAccountService,SurfacesService,SurveyAnswersService,SurveyCompletionLogService,SurveyQuestionType,SurveyQuestionsService,SurveyQuestionsTarget,SurveyReportExtendedService,SurveyResponseMode,SurveyType,SurveysService,TemplateDetailsService,TemplateOffersService,TemplatesService,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UsersService,VenueManagersService,VenuesReportService,VenuesService,WaitlistActivityService,WaitlistOpportunityService};
|
|
29021
|
+
})(TenantTier || {});export{ActivityService,ActivityType,AdvanceBooking,AmenityService,ApiClient,ApiError,AppUserRole,ApplicationRole,AttendeesService,BadEnglandReportService,BaseHttpRequest,BookingService,BookingStatus,CancelError,CancelablePromise,ChatService,ContactOnConfirmation,CountryService,CourseBookingCutoff,CourseSearchSortBy,CourseSessionSchedulesService,CourseSessionsService,CourseStatus,CoursesService,CustomerCancellationOption,CustomerType,CustomersService,DayOfWeek,EmailReminderSchedulesService,EmailSettingsService,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FilestackService,Gender,GenericActivityService,GeocodeService,HereAutocompleteLookupService,HttpStatusCode,ImagesService,InviteStatus,LeasingService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityType,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentsService,PermissionsService,PlacesService,Prepayment,ProgrammesService,PublicBookingService,PublicCoursesService,PublicCustomersService,PublicFacilitiesService,PublicHealthCheckService,PublicLeasingService,PublicNetworksService,PublicOrderTokensService,PublicOrdersService,PublicProgrammesService,PublicScheduledSessionsService,PublicSessionsService,PublicSlotsService,PublicStripeWebhookService,PublicSurveyCompletionLogsService,PublicSurveyQuestionsService,PublicSurveysService,PublicTenantsService,PublicVenuesService,PublicWaitlistActivityService,PublicWaitlistOpportunityService,ReachEntity,ReachOperation,RecentOrderActivityReportService,RefundStatus,RescheduleLogService,ScheduleStatus,ScheduledSessionSearchSortBy,ScheduledSessionsSchedulesService,ScheduledSessionsService,SearchSortOrderDirection,SessionType,SessionsService,SlotAvailabilityStatus,SlotOffersService,SlotScheduleOffersService,SlotSchedulesService,SlotStatus,SlotsService,StripeAccountService,SurfacesService,SurveyAnswersService,SurveyCompletionLogService,SurveyQuestionType,SurveyQuestionsService,SurveyQuestionsTarget,SurveyReportExtendedService,SurveyResponseMode,SurveyType,SurveysService,TemplateDetailsService,TemplateOffersService,TemplatesService,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UsersService,VenueManagersService,VenuesReportService,VenuesService,WaitlistActivityService,WaitlistOpportunityService};
|
package/package.json
CHANGED
package/src/apiClient.ts
CHANGED
|
@@ -47,6 +47,7 @@ import { PublicCustomersService } from './services/PublicCustomersService';
|
|
|
47
47
|
import { PublicFacilitiesService } from './services/PublicFacilitiesService';
|
|
48
48
|
import { PublicHealthCheckService } from './services/PublicHealthCheckService';
|
|
49
49
|
import { PublicLeasingService } from './services/PublicLeasingService';
|
|
50
|
+
import { PublicNetworksService } from './services/PublicNetworksService';
|
|
50
51
|
import { PublicOrdersService } from './services/PublicOrdersService';
|
|
51
52
|
import { PublicOrderTokensService } from './services/PublicOrderTokensService';
|
|
52
53
|
import { PublicProgrammesService } from './services/PublicProgrammesService';
|
|
@@ -135,6 +136,7 @@ export class ApiClient {
|
|
|
135
136
|
public readonly publicFacilities: PublicFacilitiesService;
|
|
136
137
|
public readonly publicHealthCheck: PublicHealthCheckService;
|
|
137
138
|
public readonly publicLeasing: PublicLeasingService;
|
|
139
|
+
public readonly publicNetworks: PublicNetworksService;
|
|
138
140
|
public readonly publicOrders: PublicOrdersService;
|
|
139
141
|
public readonly publicOrderTokens: PublicOrderTokensService;
|
|
140
142
|
public readonly publicProgrammes: PublicProgrammesService;
|
|
@@ -238,6 +240,7 @@ export class ApiClient {
|
|
|
238
240
|
this.publicFacilities = new PublicFacilitiesService(this.request);
|
|
239
241
|
this.publicHealthCheck = new PublicHealthCheckService(this.request);
|
|
240
242
|
this.publicLeasing = new PublicLeasingService(this.request);
|
|
243
|
+
this.publicNetworks = new PublicNetworksService(this.request);
|
|
241
244
|
this.publicOrders = new PublicOrdersService(this.request);
|
|
242
245
|
this.publicOrderTokens = new PublicOrderTokensService(this.request);
|
|
243
246
|
this.publicProgrammes = new PublicProgrammesService(this.request);
|
|
@@ -38830,6 +38830,188 @@ paths:
|
|
|
38830
38830
|
text/json:
|
|
38831
38831
|
schema:
|
|
38832
38832
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
38833
|
+
/api/public/networks/sessions:
|
|
38834
|
+
get:
|
|
38835
|
+
tags:
|
|
38836
|
+
- PublicNetworks
|
|
38837
|
+
summary: GetSessions.
|
|
38838
|
+
operationId: GetSessions
|
|
38839
|
+
parameters:
|
|
38840
|
+
- name: Ids
|
|
38841
|
+
in: query
|
|
38842
|
+
description: Gets or sets the queryable session ids.
|
|
38843
|
+
schema:
|
|
38844
|
+
type: array
|
|
38845
|
+
items:
|
|
38846
|
+
type: string
|
|
38847
|
+
format: uuid
|
|
38848
|
+
- name: VenueId
|
|
38849
|
+
in: query
|
|
38850
|
+
description: Gets or sets the queryable Venue Id.
|
|
38851
|
+
schema:
|
|
38852
|
+
type: string
|
|
38853
|
+
format: uuid
|
|
38854
|
+
- name: SurveyId
|
|
38855
|
+
in: query
|
|
38856
|
+
description: Gets or sets the queryable Survey Id.
|
|
38857
|
+
schema:
|
|
38858
|
+
type: string
|
|
38859
|
+
format: uuid
|
|
38860
|
+
- name: FutureOnly
|
|
38861
|
+
in: query
|
|
38862
|
+
description: Gets or sets a value indicating whether to only return sessions with future slots available.
|
|
38863
|
+
schema:
|
|
38864
|
+
type: boolean
|
|
38865
|
+
- name: Online
|
|
38866
|
+
in: query
|
|
38867
|
+
description: Gets or sets a value indicating whether return online sessions.
|
|
38868
|
+
schema:
|
|
38869
|
+
type: boolean
|
|
38870
|
+
- name: ProgrammeId
|
|
38871
|
+
in: query
|
|
38872
|
+
description: Gets or sets the queryable Programme Id.
|
|
38873
|
+
schema:
|
|
38874
|
+
type: string
|
|
38875
|
+
format: uuid
|
|
38876
|
+
- name: IncludeNextOpportunity
|
|
38877
|
+
in: query
|
|
38878
|
+
description: Gets or sets a value indicating whether to inlcude the sessions next availability.
|
|
38879
|
+
schema:
|
|
38880
|
+
type: boolean
|
|
38881
|
+
- name: AllowTemplating
|
|
38882
|
+
in: query
|
|
38883
|
+
description: Gets or sets a value indicating whether to include templatable sessions.
|
|
38884
|
+
schema:
|
|
38885
|
+
type: boolean
|
|
38886
|
+
- name: Archived
|
|
38887
|
+
in: query
|
|
38888
|
+
description: Gets or sets a value indicating whether to include archived sessions.
|
|
38889
|
+
schema:
|
|
38890
|
+
type: boolean
|
|
38891
|
+
- name: Deleted
|
|
38892
|
+
in: query
|
|
38893
|
+
description: Gets or sets a value indicating whether to include deleted sessions.
|
|
38894
|
+
schema:
|
|
38895
|
+
type: boolean
|
|
38896
|
+
- name: OpenActiveUpdate
|
|
38897
|
+
in: query
|
|
38898
|
+
description: Gets or sets a value indicating this an openactive reaquest.
|
|
38899
|
+
schema:
|
|
38900
|
+
type: boolean
|
|
38901
|
+
- name: NetworkId
|
|
38902
|
+
in: query
|
|
38903
|
+
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
38904
|
+
schema:
|
|
38905
|
+
type: string
|
|
38906
|
+
format: uuid
|
|
38907
|
+
- name: PageNumber
|
|
38908
|
+
in: query
|
|
38909
|
+
description: Gets or sets the page number for paged queries.
|
|
38910
|
+
schema:
|
|
38911
|
+
type: integer
|
|
38912
|
+
format: int32
|
|
38913
|
+
- name: Take
|
|
38914
|
+
in: query
|
|
38915
|
+
description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
|
|
38916
|
+
schema:
|
|
38917
|
+
type: integer
|
|
38918
|
+
format: int32
|
|
38919
|
+
- name: LimitListRequests
|
|
38920
|
+
in: query
|
|
38921
|
+
description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
38922
|
+
schema:
|
|
38923
|
+
type: boolean
|
|
38924
|
+
- name: TenantId
|
|
38925
|
+
in: query
|
|
38926
|
+
description: Gets or sets the Tenant Id.
|
|
38927
|
+
schema:
|
|
38928
|
+
type: string
|
|
38929
|
+
format: uuid
|
|
38930
|
+
- name: ModifiedById
|
|
38931
|
+
in: query
|
|
38932
|
+
description: Gets or sets the Modifed By Id.
|
|
38933
|
+
schema:
|
|
38934
|
+
type: string
|
|
38935
|
+
format: uuid
|
|
38936
|
+
- name: ModifiedByIds
|
|
38937
|
+
in: query
|
|
38938
|
+
description: Gets or sets the Modifed By Ids.
|
|
38939
|
+
schema:
|
|
38940
|
+
type: array
|
|
38941
|
+
items:
|
|
38942
|
+
type: string
|
|
38943
|
+
format: uuid
|
|
38944
|
+
- name: DateCreatedGTE
|
|
38945
|
+
in: query
|
|
38946
|
+
description: Gets or sets the Date Created greater than equal to.
|
|
38947
|
+
schema:
|
|
38948
|
+
type: string
|
|
38949
|
+
format: date-time
|
|
38950
|
+
- name: DateCreatedLTE
|
|
38951
|
+
in: query
|
|
38952
|
+
description: Gets or sets the Date Created less than equal to.
|
|
38953
|
+
schema:
|
|
38954
|
+
type: string
|
|
38955
|
+
format: date-time
|
|
38956
|
+
- name: IsLive
|
|
38957
|
+
in: query
|
|
38958
|
+
description: Gets or sets the queryable only is live status.
|
|
38959
|
+
schema:
|
|
38960
|
+
type: boolean
|
|
38961
|
+
- name: SortOrderDirection
|
|
38962
|
+
in: query
|
|
38963
|
+
description: Gets or sets the sort order direction.
|
|
38964
|
+
schema:
|
|
38965
|
+
$ref: '#/components/schemas/SearchSortOrderDirection'
|
|
38966
|
+
responses:
|
|
38967
|
+
'200':
|
|
38968
|
+
description: Success
|
|
38969
|
+
content:
|
|
38970
|
+
text/plain:
|
|
38971
|
+
schema:
|
|
38972
|
+
$ref: '#/components/schemas/SessionPage'
|
|
38973
|
+
application/json:
|
|
38974
|
+
schema:
|
|
38975
|
+
$ref: '#/components/schemas/SessionPage'
|
|
38976
|
+
text/json:
|
|
38977
|
+
schema:
|
|
38978
|
+
$ref: '#/components/schemas/SessionPage'
|
|
38979
|
+
'400':
|
|
38980
|
+
description: Bad Request
|
|
38981
|
+
content:
|
|
38982
|
+
text/plain:
|
|
38983
|
+
schema:
|
|
38984
|
+
$ref: '#/components/schemas/ReachError'
|
|
38985
|
+
application/json:
|
|
38986
|
+
schema:
|
|
38987
|
+
$ref: '#/components/schemas/ReachError'
|
|
38988
|
+
text/json:
|
|
38989
|
+
schema:
|
|
38990
|
+
$ref: '#/components/schemas/ReachError'
|
|
38991
|
+
'500':
|
|
38992
|
+
description: Server Error
|
|
38993
|
+
content:
|
|
38994
|
+
text/plain:
|
|
38995
|
+
schema:
|
|
38996
|
+
$ref: '#/components/schemas/ReachError'
|
|
38997
|
+
application/json:
|
|
38998
|
+
schema:
|
|
38999
|
+
$ref: '#/components/schemas/ReachError'
|
|
39000
|
+
text/json:
|
|
39001
|
+
schema:
|
|
39002
|
+
$ref: '#/components/schemas/ReachError'
|
|
39003
|
+
'422':
|
|
39004
|
+
description: Client Error
|
|
39005
|
+
content:
|
|
39006
|
+
text/plain:
|
|
39007
|
+
schema:
|
|
39008
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
39009
|
+
application/json:
|
|
39010
|
+
schema:
|
|
39011
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
39012
|
+
text/json:
|
|
39013
|
+
schema:
|
|
39014
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
38833
39015
|
'/api/public/orders/{id}':
|
|
38834
39016
|
get:
|
|
38835
39017
|
tags:
|
|
@@ -42284,6 +42466,12 @@ paths:
|
|
|
42284
42466
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
42285
42467
|
schema:
|
|
42286
42468
|
type: boolean
|
|
42469
|
+
- name: NetworkId
|
|
42470
|
+
in: query
|
|
42471
|
+
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
42472
|
+
schema:
|
|
42473
|
+
type: string
|
|
42474
|
+
format: uuid
|
|
42287
42475
|
- name: PageNumber
|
|
42288
42476
|
in: query
|
|
42289
42477
|
description: Gets or sets the page number for paged queries.
|
|
@@ -42764,6 +42952,12 @@ paths:
|
|
|
42764
42952
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
42765
42953
|
schema:
|
|
42766
42954
|
type: boolean
|
|
42955
|
+
- name: NetworkId
|
|
42956
|
+
in: query
|
|
42957
|
+
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
42958
|
+
schema:
|
|
42959
|
+
type: string
|
|
42960
|
+
format: uuid
|
|
42767
42961
|
- name: PageNumber
|
|
42768
42962
|
in: query
|
|
42769
42963
|
description: Gets or sets the page number for paged queries.
|
|
@@ -55342,6 +55536,12 @@ paths:
|
|
|
55342
55536
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
55343
55537
|
schema:
|
|
55344
55538
|
type: boolean
|
|
55539
|
+
- name: NetworkId
|
|
55540
|
+
in: query
|
|
55541
|
+
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
55542
|
+
schema:
|
|
55543
|
+
type: string
|
|
55544
|
+
format: uuid
|
|
55345
55545
|
- name: PageNumber
|
|
55346
55546
|
in: query
|
|
55347
55547
|
description: Gets or sets the page number for paged queries.
|
|
@@ -55518,6 +55718,12 @@ paths:
|
|
|
55518
55718
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
55519
55719
|
schema:
|
|
55520
55720
|
type: boolean
|
|
55721
|
+
- name: NetworkId
|
|
55722
|
+
in: query
|
|
55723
|
+
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
55724
|
+
schema:
|
|
55725
|
+
type: string
|
|
55726
|
+
format: uuid
|
|
55521
55727
|
- name: PageNumber
|
|
55522
55728
|
in: query
|
|
55523
55729
|
description: Gets or sets the page number for paged queries.
|
|
@@ -55750,6 +55956,12 @@ paths:
|
|
|
55750
55956
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
55751
55957
|
schema:
|
|
55752
55958
|
type: boolean
|
|
55959
|
+
- name: NetworkId
|
|
55960
|
+
in: query
|
|
55961
|
+
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
55962
|
+
schema:
|
|
55963
|
+
type: string
|
|
55964
|
+
format: uuid
|
|
55753
55965
|
- name: PageNumber
|
|
55754
55966
|
in: query
|
|
55755
55967
|
description: Gets or sets the page number for paged queries.
|
|
@@ -55932,6 +56144,12 @@ paths:
|
|
|
55932
56144
|
description: Gets or sets a value indicating this an openactive reaquest.
|
|
55933
56145
|
schema:
|
|
55934
56146
|
type: boolean
|
|
56147
|
+
- name: NetworkId
|
|
56148
|
+
in: query
|
|
56149
|
+
description: Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
56150
|
+
schema:
|
|
56151
|
+
type: string
|
|
56152
|
+
format: uuid
|
|
55935
56153
|
- name: PageNumber
|
|
55936
56154
|
in: query
|
|
55937
56155
|
description: Gets or sets the page number for paged queries.
|
|
@@ -61469,6 +61687,12 @@ paths:
|
|
|
61469
61687
|
schema:
|
|
61470
61688
|
type: string
|
|
61471
61689
|
format: uuid
|
|
61690
|
+
- name: venueId
|
|
61691
|
+
in: query
|
|
61692
|
+
description: The Tenant id.
|
|
61693
|
+
schema:
|
|
61694
|
+
type: string
|
|
61695
|
+
format: uuid
|
|
61472
61696
|
responses:
|
|
61473
61697
|
'200':
|
|
61474
61698
|
description: Success
|
|
@@ -92949,7 +93173,6 @@ components:
|
|
|
92949
93173
|
- name
|
|
92950
93174
|
- tenantId
|
|
92951
93175
|
- timeZoneTz
|
|
92952
|
-
- websiteUrl
|
|
92953
93176
|
type: object
|
|
92954
93177
|
properties:
|
|
92955
93178
|
tenantId:
|
|
@@ -92976,6 +93199,7 @@ components:
|
|
|
92976
93199
|
type: string
|
|
92977
93200
|
description: Gets or sets the organisation website url.
|
|
92978
93201
|
format: uri
|
|
93202
|
+
nullable: true
|
|
92979
93203
|
timeZoneTz:
|
|
92980
93204
|
minLength: 1
|
|
92981
93205
|
type: string
|
package/src/index.ts
CHANGED
|
@@ -370,6 +370,7 @@ export { PublicCustomersService } from './services/PublicCustomersService';
|
|
|
370
370
|
export { PublicFacilitiesService } from './services/PublicFacilitiesService';
|
|
371
371
|
export { PublicHealthCheckService } from './services/PublicHealthCheckService';
|
|
372
372
|
export { PublicLeasingService } from './services/PublicLeasingService';
|
|
373
|
+
export { PublicNetworksService } from './services/PublicNetworksService';
|
|
373
374
|
export { PublicOrdersService } from './services/PublicOrdersService';
|
|
374
375
|
export { PublicOrderTokensService } from './services/PublicOrderTokensService';
|
|
375
376
|
export { PublicProgrammesService } from './services/PublicProgrammesService';
|
package/src/models/TenantPost.ts
CHANGED
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { SearchSortOrderDirection } from '../models/SearchSortOrderDirection';
|
|
6
|
+
import type { SessionPage } from '../models/SessionPage';
|
|
7
|
+
|
|
8
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
9
|
+
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
10
|
+
|
|
11
|
+
export class PublicNetworksService {
|
|
12
|
+
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* GetSessions.
|
|
16
|
+
* @returns SessionPage Success
|
|
17
|
+
* @throws ApiError
|
|
18
|
+
*/
|
|
19
|
+
public getSessions({
|
|
20
|
+
ids,
|
|
21
|
+
venueId,
|
|
22
|
+
surveyId,
|
|
23
|
+
futureOnly,
|
|
24
|
+
online,
|
|
25
|
+
programmeId,
|
|
26
|
+
includeNextOpportunity,
|
|
27
|
+
allowTemplating,
|
|
28
|
+
archived,
|
|
29
|
+
deleted,
|
|
30
|
+
openActiveUpdate,
|
|
31
|
+
networkId,
|
|
32
|
+
pageNumber,
|
|
33
|
+
take,
|
|
34
|
+
limitListRequests,
|
|
35
|
+
tenantId,
|
|
36
|
+
modifiedById,
|
|
37
|
+
modifiedByIds,
|
|
38
|
+
dateCreatedGte,
|
|
39
|
+
dateCreatedLte,
|
|
40
|
+
isLive,
|
|
41
|
+
sortOrderDirection,
|
|
42
|
+
}: {
|
|
43
|
+
/**
|
|
44
|
+
* Gets or sets the queryable session ids.
|
|
45
|
+
*/
|
|
46
|
+
ids?: Array<string>;
|
|
47
|
+
/**
|
|
48
|
+
* Gets or sets the queryable Venue Id.
|
|
49
|
+
*/
|
|
50
|
+
venueId?: string;
|
|
51
|
+
/**
|
|
52
|
+
* Gets or sets the queryable Survey Id.
|
|
53
|
+
*/
|
|
54
|
+
surveyId?: string;
|
|
55
|
+
/**
|
|
56
|
+
* Gets or sets a value indicating whether to only return sessions with future slots available.
|
|
57
|
+
*/
|
|
58
|
+
futureOnly?: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* Gets or sets a value indicating whether return online sessions.
|
|
61
|
+
*/
|
|
62
|
+
online?: boolean;
|
|
63
|
+
/**
|
|
64
|
+
* Gets or sets the queryable Programme Id.
|
|
65
|
+
*/
|
|
66
|
+
programmeId?: string;
|
|
67
|
+
/**
|
|
68
|
+
* Gets or sets a value indicating whether to inlcude the sessions next availability.
|
|
69
|
+
*/
|
|
70
|
+
includeNextOpportunity?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Gets or sets a value indicating whether to include templatable sessions.
|
|
73
|
+
*/
|
|
74
|
+
allowTemplating?: boolean;
|
|
75
|
+
/**
|
|
76
|
+
* Gets or sets a value indicating whether to include archived sessions.
|
|
77
|
+
*/
|
|
78
|
+
archived?: boolean;
|
|
79
|
+
/**
|
|
80
|
+
* Gets or sets a value indicating whether to include deleted sessions.
|
|
81
|
+
*/
|
|
82
|
+
deleted?: boolean;
|
|
83
|
+
/**
|
|
84
|
+
* Gets or sets a value indicating this an openactive reaquest.
|
|
85
|
+
*/
|
|
86
|
+
openActiveUpdate?: boolean;
|
|
87
|
+
/**
|
|
88
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
89
|
+
*/
|
|
90
|
+
networkId?: string;
|
|
91
|
+
/**
|
|
92
|
+
* Gets or sets the page number for paged queries.
|
|
93
|
+
*/
|
|
94
|
+
pageNumber?: number;
|
|
95
|
+
/**
|
|
96
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
97
|
+
*/
|
|
98
|
+
take?: number;
|
|
99
|
+
/**
|
|
100
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
101
|
+
*/
|
|
102
|
+
limitListRequests?: boolean;
|
|
103
|
+
/**
|
|
104
|
+
* Gets or sets the Tenant Id.
|
|
105
|
+
*/
|
|
106
|
+
tenantId?: string;
|
|
107
|
+
/**
|
|
108
|
+
* Gets or sets the Modifed By Id.
|
|
109
|
+
*/
|
|
110
|
+
modifiedById?: string;
|
|
111
|
+
/**
|
|
112
|
+
* Gets or sets the Modifed By Ids.
|
|
113
|
+
*/
|
|
114
|
+
modifiedByIds?: Array<string>;
|
|
115
|
+
/**
|
|
116
|
+
* Gets or sets the Date Created greater than equal to.
|
|
117
|
+
*/
|
|
118
|
+
dateCreatedGte?: string;
|
|
119
|
+
/**
|
|
120
|
+
* Gets or sets the Date Created less than equal to.
|
|
121
|
+
*/
|
|
122
|
+
dateCreatedLte?: string;
|
|
123
|
+
/**
|
|
124
|
+
* Gets or sets the queryable only is live status.
|
|
125
|
+
*/
|
|
126
|
+
isLive?: boolean;
|
|
127
|
+
/**
|
|
128
|
+
* Gets or sets the sort order direction.
|
|
129
|
+
*/
|
|
130
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
131
|
+
}): CancelablePromise<SessionPage> {
|
|
132
|
+
return this.httpRequest.request({
|
|
133
|
+
method: 'GET',
|
|
134
|
+
url: '/api/public/networks/sessions',
|
|
135
|
+
query: {
|
|
136
|
+
Ids: ids,
|
|
137
|
+
VenueId: venueId,
|
|
138
|
+
SurveyId: surveyId,
|
|
139
|
+
FutureOnly: futureOnly,
|
|
140
|
+
Online: online,
|
|
141
|
+
ProgrammeId: programmeId,
|
|
142
|
+
IncludeNextOpportunity: includeNextOpportunity,
|
|
143
|
+
AllowTemplating: allowTemplating,
|
|
144
|
+
Archived: archived,
|
|
145
|
+
Deleted: deleted,
|
|
146
|
+
OpenActiveUpdate: openActiveUpdate,
|
|
147
|
+
NetworkId: networkId,
|
|
148
|
+
PageNumber: pageNumber,
|
|
149
|
+
Take: take,
|
|
150
|
+
LimitListRequests: limitListRequests,
|
|
151
|
+
TenantId: tenantId,
|
|
152
|
+
ModifiedById: modifiedById,
|
|
153
|
+
ModifiedByIds: modifiedByIds,
|
|
154
|
+
DateCreatedGTE: dateCreatedGte,
|
|
155
|
+
DateCreatedLTE: dateCreatedLte,
|
|
156
|
+
IsLive: isLive,
|
|
157
|
+
SortOrderDirection: sortOrderDirection,
|
|
158
|
+
},
|
|
159
|
+
errors: {
|
|
160
|
+
400: `Bad Request`,
|
|
161
|
+
422: `Client Error`,
|
|
162
|
+
500: `Server Error`,
|
|
163
|
+
},
|
|
164
|
+
});
|
|
165
|
+
}
|
|
166
|
+
}
|
|
@@ -97,6 +97,7 @@ export class PublicSessionsService {
|
|
|
97
97
|
archived,
|
|
98
98
|
deleted,
|
|
99
99
|
openActiveUpdate,
|
|
100
|
+
networkId,
|
|
100
101
|
pageNumber,
|
|
101
102
|
take,
|
|
102
103
|
limitListRequests,
|
|
@@ -153,6 +154,10 @@ export class PublicSessionsService {
|
|
|
153
154
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
154
155
|
*/
|
|
155
156
|
openActiveUpdate?: boolean;
|
|
157
|
+
/**
|
|
158
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
159
|
+
*/
|
|
160
|
+
networkId?: string;
|
|
156
161
|
/**
|
|
157
162
|
* Gets or sets the page number for paged queries.
|
|
158
163
|
*/
|
|
@@ -212,6 +217,7 @@ export class PublicSessionsService {
|
|
|
212
217
|
Archived: archived,
|
|
213
218
|
Deleted: deleted,
|
|
214
219
|
OpenActiveUpdate: openActiveUpdate,
|
|
220
|
+
NetworkId: networkId,
|
|
215
221
|
PageNumber: pageNumber,
|
|
216
222
|
Take: take,
|
|
217
223
|
LimitListRequests: limitListRequests,
|
|
@@ -504,6 +510,7 @@ export class PublicSessionsService {
|
|
|
504
510
|
archived,
|
|
505
511
|
deleted,
|
|
506
512
|
openActiveUpdate,
|
|
513
|
+
networkId,
|
|
507
514
|
pageNumber,
|
|
508
515
|
take,
|
|
509
516
|
limitListRequests,
|
|
@@ -563,6 +570,10 @@ export class PublicSessionsService {
|
|
|
563
570
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
564
571
|
*/
|
|
565
572
|
openActiveUpdate?: boolean;
|
|
573
|
+
/**
|
|
574
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
575
|
+
*/
|
|
576
|
+
networkId?: string;
|
|
566
577
|
/**
|
|
567
578
|
* Gets or sets the page number for paged queries.
|
|
568
579
|
*/
|
|
@@ -622,6 +633,7 @@ export class PublicSessionsService {
|
|
|
622
633
|
Archived: archived,
|
|
623
634
|
Deleted: deleted,
|
|
624
635
|
OpenActiveUpdate: openActiveUpdate,
|
|
636
|
+
NetworkId: networkId,
|
|
625
637
|
PageNumber: pageNumber,
|
|
626
638
|
Take: take,
|
|
627
639
|
LimitListRequests: limitListRequests,
|
|
@@ -210,6 +210,7 @@ export class SessionsService {
|
|
|
210
210
|
archived,
|
|
211
211
|
deleted,
|
|
212
212
|
openActiveUpdate,
|
|
213
|
+
networkId,
|
|
213
214
|
pageNumber,
|
|
214
215
|
take,
|
|
215
216
|
limitListRequests,
|
|
@@ -265,6 +266,10 @@ export class SessionsService {
|
|
|
265
266
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
266
267
|
*/
|
|
267
268
|
openActiveUpdate?: boolean;
|
|
269
|
+
/**
|
|
270
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
271
|
+
*/
|
|
272
|
+
networkId?: string;
|
|
268
273
|
/**
|
|
269
274
|
* Gets or sets the page number for paged queries.
|
|
270
275
|
*/
|
|
@@ -321,6 +326,7 @@ export class SessionsService {
|
|
|
321
326
|
Archived: archived,
|
|
322
327
|
Deleted: deleted,
|
|
323
328
|
OpenActiveUpdate: openActiveUpdate,
|
|
329
|
+
NetworkId: networkId,
|
|
324
330
|
PageNumber: pageNumber,
|
|
325
331
|
Take: take,
|
|
326
332
|
LimitListRequests: limitListRequests,
|
|
@@ -357,6 +363,7 @@ export class SessionsService {
|
|
|
357
363
|
archived,
|
|
358
364
|
deleted,
|
|
359
365
|
openActiveUpdate,
|
|
366
|
+
networkId,
|
|
360
367
|
pageNumber,
|
|
361
368
|
take,
|
|
362
369
|
limitListRequests,
|
|
@@ -412,6 +419,10 @@ export class SessionsService {
|
|
|
412
419
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
413
420
|
*/
|
|
414
421
|
openActiveUpdate?: boolean;
|
|
422
|
+
/**
|
|
423
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
424
|
+
*/
|
|
425
|
+
networkId?: string;
|
|
415
426
|
/**
|
|
416
427
|
* Gets or sets the page number for paged queries.
|
|
417
428
|
*/
|
|
@@ -468,6 +479,7 @@ export class SessionsService {
|
|
|
468
479
|
Archived: archived,
|
|
469
480
|
Deleted: deleted,
|
|
470
481
|
OpenActiveUpdate: openActiveUpdate,
|
|
482
|
+
NetworkId: networkId,
|
|
471
483
|
PageNumber: pageNumber,
|
|
472
484
|
Take: take,
|
|
473
485
|
LimitListRequests: limitListRequests,
|
|
@@ -530,6 +542,7 @@ export class SessionsService {
|
|
|
530
542
|
archived,
|
|
531
543
|
deleted,
|
|
532
544
|
openActiveUpdate,
|
|
545
|
+
networkId,
|
|
533
546
|
pageNumber,
|
|
534
547
|
take,
|
|
535
548
|
limitListRequests,
|
|
@@ -585,6 +598,10 @@ export class SessionsService {
|
|
|
585
598
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
586
599
|
*/
|
|
587
600
|
openActiveUpdate?: boolean;
|
|
601
|
+
/**
|
|
602
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
603
|
+
*/
|
|
604
|
+
networkId?: string;
|
|
588
605
|
/**
|
|
589
606
|
* Gets or sets the page number for paged queries.
|
|
590
607
|
*/
|
|
@@ -641,6 +658,7 @@ export class SessionsService {
|
|
|
641
658
|
Archived: archived,
|
|
642
659
|
Deleted: deleted,
|
|
643
660
|
OpenActiveUpdate: openActiveUpdate,
|
|
661
|
+
NetworkId: networkId,
|
|
644
662
|
PageNumber: pageNumber,
|
|
645
663
|
Take: take,
|
|
646
664
|
LimitListRequests: limitListRequests,
|
|
@@ -677,6 +695,7 @@ export class SessionsService {
|
|
|
677
695
|
archived,
|
|
678
696
|
deleted,
|
|
679
697
|
openActiveUpdate,
|
|
698
|
+
networkId,
|
|
680
699
|
pageNumber,
|
|
681
700
|
take,
|
|
682
701
|
limitListRequests,
|
|
@@ -732,6 +751,10 @@ export class SessionsService {
|
|
|
732
751
|
* Gets or sets a value indicating this an openactive reaquest.
|
|
733
752
|
*/
|
|
734
753
|
openActiveUpdate?: boolean;
|
|
754
|
+
/**
|
|
755
|
+
* Gets or sets a value indicating whether to include only sessions by given NetworkId.
|
|
756
|
+
*/
|
|
757
|
+
networkId?: string;
|
|
735
758
|
/**
|
|
736
759
|
* Gets or sets the page number for paged queries.
|
|
737
760
|
*/
|
|
@@ -788,6 +811,7 @@ export class SessionsService {
|
|
|
788
811
|
Archived: archived,
|
|
789
812
|
Deleted: deleted,
|
|
790
813
|
OpenActiveUpdate: openActiveUpdate,
|
|
814
|
+
NetworkId: networkId,
|
|
791
815
|
PageNumber: pageNumber,
|
|
792
816
|
Take: take,
|
|
793
817
|
LimitListRequests: limitListRequests,
|
|
@@ -48,11 +48,16 @@ export class StripeAccountService {
|
|
|
48
48
|
*/
|
|
49
49
|
public createStripeAccountLink({
|
|
50
50
|
id,
|
|
51
|
+
venueId,
|
|
51
52
|
}: {
|
|
52
53
|
/**
|
|
53
54
|
* The Tenant id.
|
|
54
55
|
*/
|
|
55
56
|
id: string;
|
|
57
|
+
/**
|
|
58
|
+
* The Tenant id.
|
|
59
|
+
*/
|
|
60
|
+
venueId?: string;
|
|
56
61
|
}): CancelablePromise<string> {
|
|
57
62
|
return this.httpRequest.request({
|
|
58
63
|
method: 'GET',
|
|
@@ -60,6 +65,9 @@ export class StripeAccountService {
|
|
|
60
65
|
path: {
|
|
61
66
|
id: id,
|
|
62
67
|
},
|
|
68
|
+
query: {
|
|
69
|
+
venueId: venueId,
|
|
70
|
+
},
|
|
63
71
|
errors: {
|
|
64
72
|
400: `Bad Request`,
|
|
65
73
|
422: `Client Error`,
|