reach-api-sdk 1.0.87 → 1.0.89
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 +43 -3
- package/package.json +1 -1
- package/src/definition/swagger.yaml +45 -2
- package/src/index.ts +1 -0
- package/src/models/CourseCreate.ts +6 -0
- package/src/models/CourseSessionPost.ts +6 -2
- package/src/models/CourseSessionSchedulePost.ts +4 -0
- package/src/models/CreateEmailSettings.ts +22 -0
- package/src/models/ScheduledSessionPost.ts +4 -0
- package/src/models/ScheduledSessionSchedulePost.ts +4 -0
- package/src/models/SessionCreate.ts +2 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -5360,6 +5360,24 @@ declare class CountryService {
|
|
|
5360
5360
|
}): CancelablePromise<Array<Country>>;
|
|
5361
5361
|
}
|
|
5362
5362
|
|
|
5363
|
+
/**
|
|
5364
|
+
* email settings.
|
|
5365
|
+
*/
|
|
5366
|
+
type CreateEmailSettings = {
|
|
5367
|
+
/**
|
|
5368
|
+
* Gets or sets the order confirmation text.
|
|
5369
|
+
*/
|
|
5370
|
+
orderConfimationText?: string | null;
|
|
5371
|
+
/**
|
|
5372
|
+
* Gets or sets the order post completion text.
|
|
5373
|
+
*/
|
|
5374
|
+
postCompletionSubject?: string | null;
|
|
5375
|
+
/**
|
|
5376
|
+
* Gets or sets the order post completion text.
|
|
5377
|
+
*/
|
|
5378
|
+
postCompletionText?: string | null;
|
|
5379
|
+
};
|
|
5380
|
+
|
|
5363
5381
|
/**
|
|
5364
5382
|
* Post model for session offers.
|
|
5365
5383
|
*/
|
|
@@ -5489,6 +5507,10 @@ type CourseCreate = {
|
|
|
5489
5507
|
* Gets or sets the max age.
|
|
5490
5508
|
*/
|
|
5491
5509
|
maxAge?: number | null;
|
|
5510
|
+
/**
|
|
5511
|
+
* Gets or sets a value indicating whether there is an age restriction.
|
|
5512
|
+
*/
|
|
5513
|
+
noAgeRestriction?: boolean | null;
|
|
5492
5514
|
/**
|
|
5493
5515
|
* Gets or sets additional support options.
|
|
5494
5516
|
*/
|
|
@@ -5518,6 +5540,7 @@ type CourseCreate = {
|
|
|
5518
5540
|
* Gets or sets the course offers.
|
|
5519
5541
|
*/
|
|
5520
5542
|
offers?: Array<CreateOffer> | null;
|
|
5543
|
+
emailSettings?: CreateEmailSettings;
|
|
5521
5544
|
};
|
|
5522
5545
|
|
|
5523
5546
|
type CoursePage = {
|
|
@@ -6448,17 +6471,21 @@ type CourseSessionPost = {
|
|
|
6448
6471
|
*/
|
|
6449
6472
|
courseId?: string | null;
|
|
6450
6473
|
/**
|
|
6451
|
-
* Gets or sets the
|
|
6474
|
+
* Gets or sets the course session start date time in UTC as is the applications required convention. (this datetime must always be UTC).
|
|
6452
6475
|
*/
|
|
6453
6476
|
startDateTime?: string | null;
|
|
6454
6477
|
/**
|
|
6455
|
-
* Gets or sets the course session duration.
|
|
6478
|
+
* Gets or sets the course course session duration.
|
|
6456
6479
|
*/
|
|
6457
6480
|
durationMinutes?: number;
|
|
6458
6481
|
/**
|
|
6459
6482
|
* Gets or sets the capacity.
|
|
6460
6483
|
*/
|
|
6461
6484
|
capacity?: number | null;
|
|
6485
|
+
/**
|
|
6486
|
+
* Gets or sets a value indicating whether the course session has unlimited capacity.
|
|
6487
|
+
*/
|
|
6488
|
+
capacityUnlimited?: boolean;
|
|
6462
6489
|
};
|
|
6463
6490
|
|
|
6464
6491
|
declare class CourseSessionsService {
|
|
@@ -7038,6 +7065,10 @@ type CourseSessionSchedulePost = {
|
|
|
7038
7065
|
* Gets or sets the capacity.
|
|
7039
7066
|
*/
|
|
7040
7067
|
capacity: number;
|
|
7068
|
+
/**
|
|
7069
|
+
* Gets or sets a value indicating whether the course session has unlimited capacity.
|
|
7070
|
+
*/
|
|
7071
|
+
capacityUnlimited: boolean;
|
|
7041
7072
|
};
|
|
7042
7073
|
|
|
7043
7074
|
declare class CourseSessionSchedulesService {
|
|
@@ -20185,6 +20216,10 @@ type ScheduledSessionPost = {
|
|
|
20185
20216
|
* Gets or sets the capacity.
|
|
20186
20217
|
*/
|
|
20187
20218
|
capacity?: number | null;
|
|
20219
|
+
/**
|
|
20220
|
+
* Gets or sets a value indicating whether the session has unlimited capacity.
|
|
20221
|
+
*/
|
|
20222
|
+
capacityUnlimited?: boolean;
|
|
20188
20223
|
/**
|
|
20189
20224
|
* Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.
|
|
20190
20225
|
*/
|
|
@@ -25836,6 +25871,10 @@ type ScheduledSessionSchedulePost = {
|
|
|
25836
25871
|
* Gets or sets the capacity.
|
|
25837
25872
|
*/
|
|
25838
25873
|
capacity: number;
|
|
25874
|
+
/**
|
|
25875
|
+
* Gets or sets a value indicating whether the session has unlimited capacity.
|
|
25876
|
+
*/
|
|
25877
|
+
capacityUnlimited: boolean;
|
|
25839
25878
|
/**
|
|
25840
25879
|
* Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.
|
|
25841
25880
|
*/
|
|
@@ -26324,6 +26363,7 @@ type SessionCreate = {
|
|
|
26324
26363
|
* Gets or sets the session offers.
|
|
26325
26364
|
*/
|
|
26326
26365
|
offers?: Array<CreateOffer> | null;
|
|
26366
|
+
emailSettings?: CreateEmailSettings;
|
|
26327
26367
|
};
|
|
26328
26368
|
|
|
26329
26369
|
declare class SessionsService {
|
|
@@ -37014,4 +37054,4 @@ type ValidationResultModel = {
|
|
|
37014
37054
|
readonly errors?: Array<ValidationError> | null;
|
|
37015
37055
|
};
|
|
37016
37056
|
|
|
37017
|
-
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 };
|
|
37057
|
+
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, CreateEmailSettings, 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/package.json
CHANGED
|
@@ -84676,6 +84676,10 @@ components:
|
|
|
84676
84676
|
description: Gets or sets the max age.
|
|
84677
84677
|
format: int32
|
|
84678
84678
|
nullable: true
|
|
84679
|
+
noAgeRestriction:
|
|
84680
|
+
type: boolean
|
|
84681
|
+
description: Gets or sets a value indicating whether there is an age restriction.
|
|
84682
|
+
nullable: true
|
|
84679
84683
|
additionalSupport:
|
|
84680
84684
|
type: array
|
|
84681
84685
|
items:
|
|
@@ -84716,6 +84720,8 @@ components:
|
|
|
84716
84720
|
$ref: '#/components/schemas/CreateOffer'
|
|
84717
84721
|
description: Gets or sets the course offers.
|
|
84718
84722
|
nullable: true
|
|
84723
|
+
emailSettings:
|
|
84724
|
+
$ref: '#/components/schemas/CreateEmailSettings'
|
|
84719
84725
|
additionalProperties: false
|
|
84720
84726
|
description: Post model for course inserts.
|
|
84721
84727
|
CoursePage:
|
|
@@ -85038,12 +85044,12 @@ components:
|
|
|
85038
85044
|
nullable: true
|
|
85039
85045
|
startDateTime:
|
|
85040
85046
|
type: string
|
|
85041
|
-
description: Gets or sets the
|
|
85047
|
+
description: Gets or sets the course session start date time in UTC as is the applications required convention. (this datetime must always be UTC).
|
|
85042
85048
|
format: date-time
|
|
85043
85049
|
nullable: true
|
|
85044
85050
|
durationMinutes:
|
|
85045
85051
|
type: integer
|
|
85046
|
-
description: Gets or sets the course session duration.
|
|
85052
|
+
description: Gets or sets the course course session duration.
|
|
85047
85053
|
format: int32
|
|
85048
85054
|
default: 0
|
|
85049
85055
|
capacity:
|
|
@@ -85051,6 +85057,10 @@ components:
|
|
|
85051
85057
|
description: Gets or sets the capacity.
|
|
85052
85058
|
format: int32
|
|
85053
85059
|
nullable: true
|
|
85060
|
+
capacityUnlimited:
|
|
85061
|
+
type: boolean
|
|
85062
|
+
description: Gets or sets a value indicating whether the course session has unlimited capacity.
|
|
85063
|
+
default: false
|
|
85054
85064
|
additionalProperties: false
|
|
85055
85065
|
description: Post model for course inserts.
|
|
85056
85066
|
CourseSessionSchedule:
|
|
@@ -85179,6 +85189,7 @@ components:
|
|
|
85179
85189
|
CourseSessionSchedulePost:
|
|
85180
85190
|
required:
|
|
85181
85191
|
- capacity
|
|
85192
|
+
- capacityUnlimited
|
|
85182
85193
|
- durationMinutes
|
|
85183
85194
|
- rRuleString
|
|
85184
85195
|
- startDateTime
|
|
@@ -85220,6 +85231,10 @@ components:
|
|
|
85220
85231
|
description: Gets or sets the capacity.
|
|
85221
85232
|
format: int32
|
|
85222
85233
|
default: 0
|
|
85234
|
+
capacityUnlimited:
|
|
85235
|
+
type: boolean
|
|
85236
|
+
description: Gets or sets a value indicating whether the course session has unlimited capacity.
|
|
85237
|
+
default: false
|
|
85223
85238
|
additionalProperties: false
|
|
85224
85239
|
description: Post model for course session schedule inserts.
|
|
85225
85240
|
CourseStatus:
|
|
@@ -85228,6 +85243,23 @@ components:
|
|
|
85228
85243
|
- Cancelled
|
|
85229
85244
|
type: string
|
|
85230
85245
|
description: The Slot active status.
|
|
85246
|
+
CreateEmailSettings:
|
|
85247
|
+
type: object
|
|
85248
|
+
properties:
|
|
85249
|
+
orderConfimationText:
|
|
85250
|
+
type: string
|
|
85251
|
+
description: Gets or sets the order confirmation text.
|
|
85252
|
+
nullable: true
|
|
85253
|
+
postCompletionSubject:
|
|
85254
|
+
type: string
|
|
85255
|
+
description: Gets or sets the order post completion text.
|
|
85256
|
+
nullable: true
|
|
85257
|
+
postCompletionText:
|
|
85258
|
+
type: string
|
|
85259
|
+
description: Gets or sets the order post completion text.
|
|
85260
|
+
nullable: true
|
|
85261
|
+
additionalProperties: false
|
|
85262
|
+
description: email settings.
|
|
85231
85263
|
CreateOffer:
|
|
85232
85264
|
required:
|
|
85233
85265
|
- priceTotal
|
|
@@ -89893,6 +89925,10 @@ components:
|
|
|
89893
89925
|
description: Gets or sets the capacity.
|
|
89894
89926
|
format: int32
|
|
89895
89927
|
nullable: true
|
|
89928
|
+
capacityUnlimited:
|
|
89929
|
+
type: boolean
|
|
89930
|
+
description: Gets or sets a value indicating whether the session has unlimited capacity.
|
|
89931
|
+
default: false
|
|
89896
89932
|
transactionId:
|
|
89897
89933
|
type: string
|
|
89898
89934
|
description: 'Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.'
|
|
@@ -90064,6 +90100,7 @@ components:
|
|
|
90064
90100
|
ScheduledSessionSchedulePost:
|
|
90065
90101
|
required:
|
|
90066
90102
|
- capacity
|
|
90103
|
+
- capacityUnlimited
|
|
90067
90104
|
- durationMinutes
|
|
90068
90105
|
- rRuleString
|
|
90069
90106
|
- sessionId
|
|
@@ -90106,6 +90143,10 @@ components:
|
|
|
90106
90143
|
description: Gets or sets the capacity.
|
|
90107
90144
|
format: int32
|
|
90108
90145
|
default: 0
|
|
90146
|
+
capacityUnlimited:
|
|
90147
|
+
type: boolean
|
|
90148
|
+
description: Gets or sets a value indicating whether the session has unlimited capacity.
|
|
90149
|
+
default: false
|
|
90109
90150
|
transactionId:
|
|
90110
90151
|
type: string
|
|
90111
90152
|
description: 'Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.'
|
|
@@ -90484,6 +90525,8 @@ components:
|
|
|
90484
90525
|
$ref: '#/components/schemas/CreateOffer'
|
|
90485
90526
|
description: Gets or sets the session offers.
|
|
90486
90527
|
nullable: true
|
|
90528
|
+
emailSettings:
|
|
90529
|
+
$ref: '#/components/schemas/CreateEmailSettings'
|
|
90487
90530
|
additionalProperties: false
|
|
90488
90531
|
description: Post model for session inserts.
|
|
90489
90532
|
SessionPage:
|
package/src/index.ts
CHANGED
|
@@ -42,6 +42,7 @@ export type { CourseSessionSchedulePage } from './models/CourseSessionSchedulePa
|
|
|
42
42
|
export type { CourseSessionSchedulePatch } from './models/CourseSessionSchedulePatch';
|
|
43
43
|
export type { CourseSessionSchedulePost } from './models/CourseSessionSchedulePost';
|
|
44
44
|
export { CourseStatus } from './models/CourseStatus';
|
|
45
|
+
export type { CreateEmailSettings } from './models/CreateEmailSettings';
|
|
45
46
|
export type { CreateOffer } from './models/CreateOffer';
|
|
46
47
|
export type { CreateQuestion } from './models/CreateQuestion';
|
|
47
48
|
export type { CreateQuestionOption } from './models/CreateQuestionOption';
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
|
|
6
|
+
import type { CreateEmailSettings } from './CreateEmailSettings';
|
|
6
7
|
import type { CreateOffer } from './CreateOffer';
|
|
7
8
|
import type { CreateVenue } from './CreateVenue';
|
|
8
9
|
import type { Gender } from './Gender';
|
|
@@ -72,6 +73,10 @@ export type CourseCreate = {
|
|
|
72
73
|
* Gets or sets the max age.
|
|
73
74
|
*/
|
|
74
75
|
maxAge?: number | null;
|
|
76
|
+
/**
|
|
77
|
+
* Gets or sets a value indicating whether there is an age restriction.
|
|
78
|
+
*/
|
|
79
|
+
noAgeRestriction?: boolean | null;
|
|
75
80
|
/**
|
|
76
81
|
* Gets or sets additional support options.
|
|
77
82
|
*/
|
|
@@ -101,4 +106,5 @@ export type CourseCreate = {
|
|
|
101
106
|
* Gets or sets the course offers.
|
|
102
107
|
*/
|
|
103
108
|
offers?: Array<CreateOffer> | null;
|
|
109
|
+
emailSettings?: CreateEmailSettings;
|
|
104
110
|
};
|
|
@@ -16,15 +16,19 @@ export type CourseSessionPost = {
|
|
|
16
16
|
*/
|
|
17
17
|
courseId?: string | null;
|
|
18
18
|
/**
|
|
19
|
-
* Gets or sets the
|
|
19
|
+
* Gets or sets the course session start date time in UTC as is the applications required convention. (this datetime must always be UTC).
|
|
20
20
|
*/
|
|
21
21
|
startDateTime?: string | null;
|
|
22
22
|
/**
|
|
23
|
-
* Gets or sets the course session duration.
|
|
23
|
+
* Gets or sets the course course session duration.
|
|
24
24
|
*/
|
|
25
25
|
durationMinutes?: number;
|
|
26
26
|
/**
|
|
27
27
|
* Gets or sets the capacity.
|
|
28
28
|
*/
|
|
29
29
|
capacity?: number | null;
|
|
30
|
+
/**
|
|
31
|
+
* Gets or sets a value indicating whether the course session has unlimited capacity.
|
|
32
|
+
*/
|
|
33
|
+
capacityUnlimited?: boolean;
|
|
30
34
|
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* email settings.
|
|
8
|
+
*/
|
|
9
|
+
export type CreateEmailSettings = {
|
|
10
|
+
/**
|
|
11
|
+
* Gets or sets the order confirmation text.
|
|
12
|
+
*/
|
|
13
|
+
orderConfimationText?: string | null;
|
|
14
|
+
/**
|
|
15
|
+
* Gets or sets the order post completion text.
|
|
16
|
+
*/
|
|
17
|
+
postCompletionSubject?: string | null;
|
|
18
|
+
/**
|
|
19
|
+
* Gets or sets the order post completion text.
|
|
20
|
+
*/
|
|
21
|
+
postCompletionText?: string | null;
|
|
22
|
+
};
|
|
@@ -27,6 +27,10 @@ export type ScheduledSessionPost = {
|
|
|
27
27
|
* Gets or sets the capacity.
|
|
28
28
|
*/
|
|
29
29
|
capacity?: number | null;
|
|
30
|
+
/**
|
|
31
|
+
* Gets or sets a value indicating whether the session has unlimited capacity.
|
|
32
|
+
*/
|
|
33
|
+
capacityUnlimited?: boolean;
|
|
30
34
|
/**
|
|
31
35
|
* Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.
|
|
32
36
|
*/
|
|
@@ -39,6 +39,10 @@ export type ScheduledSessionSchedulePost = {
|
|
|
39
39
|
* Gets or sets the capacity.
|
|
40
40
|
*/
|
|
41
41
|
capacity: number;
|
|
42
|
+
/**
|
|
43
|
+
* Gets or sets a value indicating whether the session has unlimited capacity.
|
|
44
|
+
*/
|
|
45
|
+
capacityUnlimited: boolean;
|
|
42
46
|
/**
|
|
43
47
|
* Gets or sets the session schedules transaction id, used to defect collisions when a scheduled session insert operation contains more than 1 schedule/slot.
|
|
44
48
|
*/
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
5
|
|
|
6
|
+
import type { CreateEmailSettings } from './CreateEmailSettings';
|
|
6
7
|
import type { CreateOffer } from './CreateOffer';
|
|
7
8
|
import type { CreateVenue } from './CreateVenue';
|
|
8
9
|
import type { Gender } from './Gender';
|
|
@@ -105,4 +106,5 @@ export type SessionCreate = {
|
|
|
105
106
|
* Gets or sets the session offers.
|
|
106
107
|
*/
|
|
107
108
|
offers?: Array<CreateOffer> | null;
|
|
109
|
+
emailSettings?: CreateEmailSettings;
|
|
108
110
|
};
|