reach-api-sdk 1.0.115 → 1.0.117
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 +67 -8
- package/dist/reach-sdk.js +51 -2
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +119 -2
- package/src/index.ts +3 -0
- package/src/models/CustomDateRange.ts +22 -0
- package/src/models/CustomDateRangeOption.ts +11 -0
- package/src/models/OrderItemReport.ts +6 -2
- package/src/services/HelpersService.ts +29 -0
- package/src/services/OrderItemReportService.ts +31 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -12189,6 +12189,40 @@ declare class GeocodeService {
|
|
|
12189
12189
|
}): CancelablePromise<GeocodeResponseModel>;
|
|
12190
12190
|
}
|
|
12191
12191
|
|
|
12192
|
+
declare enum CustomDateRange {
|
|
12193
|
+
CUSTOM = "Custom",
|
|
12194
|
+
LAST7DAYS = "Last7Days",
|
|
12195
|
+
LAST14DAYS = "Last14Days",
|
|
12196
|
+
LAST28DAYS = "Last28Days",
|
|
12197
|
+
LAST30DAYS = "Last30Days",
|
|
12198
|
+
TODAY = "Today",
|
|
12199
|
+
YESTERDAY = "Yesterday",
|
|
12200
|
+
THIS_WEEK = "ThisWeek",
|
|
12201
|
+
LAST_WEEK = "LastWeek",
|
|
12202
|
+
THIS_MONTH = "ThisMonth",
|
|
12203
|
+
LAST_MONTH = "LastMonth",
|
|
12204
|
+
THIS_QUARTER = "ThisQuarter",
|
|
12205
|
+
LAST_QUARTER = "LastQuarter",
|
|
12206
|
+
THIS_YEAR = "ThisYear",
|
|
12207
|
+
LAST_YEAR = "LastYear"
|
|
12208
|
+
}
|
|
12209
|
+
|
|
12210
|
+
type CustomDateRangeOption = {
|
|
12211
|
+
value?: CustomDateRange;
|
|
12212
|
+
label?: string | null;
|
|
12213
|
+
};
|
|
12214
|
+
|
|
12215
|
+
declare class HelpersService {
|
|
12216
|
+
readonly httpRequest: BaseHttpRequest;
|
|
12217
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
12218
|
+
/**
|
|
12219
|
+
* Gets the custom date range options that can be used for filtering where CustomDateRanges can be used.
|
|
12220
|
+
* @returns CustomDateRangeOption Success
|
|
12221
|
+
* @throws ApiError
|
|
12222
|
+
*/
|
|
12223
|
+
getFilterCustomDateRangeOptions(): CancelablePromise<Array<CustomDateRangeOption>>;
|
|
12224
|
+
}
|
|
12225
|
+
|
|
12192
12226
|
/**
|
|
12193
12227
|
* HerePrediction.
|
|
12194
12228
|
*/
|
|
@@ -17243,6 +17277,10 @@ type OrderItemReport = {
|
|
|
17243
17277
|
* Gets or sets the activity name.
|
|
17244
17278
|
*/
|
|
17245
17279
|
activityName?: string | null;
|
|
17280
|
+
/**
|
|
17281
|
+
* Gets or sets the venue name.
|
|
17282
|
+
*/
|
|
17283
|
+
venueName?: string | null;
|
|
17246
17284
|
/**
|
|
17247
17285
|
* Gets or sets the activity start date.
|
|
17248
17286
|
*/
|
|
@@ -17289,9 +17327,9 @@ type OrderItemReport = {
|
|
|
17289
17327
|
*/
|
|
17290
17328
|
currency?: string | null;
|
|
17291
17329
|
/**
|
|
17292
|
-
* Gets or sets the payment
|
|
17330
|
+
* Gets or sets the payment source (currently offline, or played storefront).
|
|
17293
17331
|
*/
|
|
17294
|
-
|
|
17332
|
+
paymentSource?: string | null;
|
|
17295
17333
|
/**
|
|
17296
17334
|
* Gets or sets the customer email.
|
|
17297
17335
|
*/
|
|
@@ -17344,7 +17382,7 @@ declare class OrderItemReportService {
|
|
|
17344
17382
|
* @returns any Success
|
|
17345
17383
|
* @throws ApiError
|
|
17346
17384
|
*/
|
|
17347
|
-
exportToCsv({ venueId, userId, programmeId, startDateGte, startDateLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
17385
|
+
exportToCsv({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
17348
17386
|
/**
|
|
17349
17387
|
* Gets or sets the Venue Id.
|
|
17350
17388
|
*/
|
|
@@ -17365,6 +17403,10 @@ declare class OrderItemReportService {
|
|
|
17365
17403
|
* Gets or sets the starting date less than or equal to.
|
|
17366
17404
|
*/
|
|
17367
17405
|
startDateLte?: string;
|
|
17406
|
+
/**
|
|
17407
|
+
* Gets or sets a custom date range.
|
|
17408
|
+
*/
|
|
17409
|
+
dateRange?: CustomDateRange;
|
|
17368
17410
|
/**
|
|
17369
17411
|
* Gets or sets the page number for paged queries.
|
|
17370
17412
|
*/
|
|
@@ -17472,7 +17514,7 @@ declare class OrderItemReportService {
|
|
|
17472
17514
|
* @returns OrderItemReportPage Success
|
|
17473
17515
|
* @throws ApiError
|
|
17474
17516
|
*/
|
|
17475
|
-
getPage({ venueId, userId, programmeId, startDateGte, startDateLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17517
|
+
getPage({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17476
17518
|
/**
|
|
17477
17519
|
* Gets or sets the Venue Id.
|
|
17478
17520
|
*/
|
|
@@ -17493,6 +17535,10 @@ declare class OrderItemReportService {
|
|
|
17493
17535
|
* Gets or sets the starting date less than or equal to.
|
|
17494
17536
|
*/
|
|
17495
17537
|
startDateLte?: string;
|
|
17538
|
+
/**
|
|
17539
|
+
* Gets or sets a custom date range.
|
|
17540
|
+
*/
|
|
17541
|
+
dateRange?: CustomDateRange;
|
|
17496
17542
|
/**
|
|
17497
17543
|
* Gets or sets the page number for paged queries.
|
|
17498
17544
|
*/
|
|
@@ -17572,7 +17618,7 @@ declare class OrderItemReportService {
|
|
|
17572
17618
|
* @returns boolean Success
|
|
17573
17619
|
* @throws ApiError
|
|
17574
17620
|
*/
|
|
17575
|
-
exists({ venueId, userId, programmeId, startDateGte, startDateLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17621
|
+
exists({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17576
17622
|
/**
|
|
17577
17623
|
* Gets or sets the Venue Id.
|
|
17578
17624
|
*/
|
|
@@ -17593,6 +17639,10 @@ declare class OrderItemReportService {
|
|
|
17593
17639
|
* Gets or sets the starting date less than or equal to.
|
|
17594
17640
|
*/
|
|
17595
17641
|
startDateLte?: string;
|
|
17642
|
+
/**
|
|
17643
|
+
* Gets or sets a custom date range.
|
|
17644
|
+
*/
|
|
17645
|
+
dateRange?: CustomDateRange;
|
|
17596
17646
|
/**
|
|
17597
17647
|
* Gets or sets the page number for paged queries.
|
|
17598
17648
|
*/
|
|
@@ -17639,7 +17689,7 @@ declare class OrderItemReportService {
|
|
|
17639
17689
|
* @returns OrderItemReport Success
|
|
17640
17690
|
* @throws ApiError
|
|
17641
17691
|
*/
|
|
17642
|
-
getListWithoutReferences({ venueId, userId, programmeId, startDateGte, startDateLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17692
|
+
getListWithoutReferences({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17643
17693
|
/**
|
|
17644
17694
|
* Gets or sets the Venue Id.
|
|
17645
17695
|
*/
|
|
@@ -17660,6 +17710,10 @@ declare class OrderItemReportService {
|
|
|
17660
17710
|
* Gets or sets the starting date less than or equal to.
|
|
17661
17711
|
*/
|
|
17662
17712
|
startDateLte?: string;
|
|
17713
|
+
/**
|
|
17714
|
+
* Gets or sets a custom date range.
|
|
17715
|
+
*/
|
|
17716
|
+
dateRange?: CustomDateRange;
|
|
17663
17717
|
/**
|
|
17664
17718
|
* Gets or sets the page number for paged queries.
|
|
17665
17719
|
*/
|
|
@@ -17706,7 +17760,7 @@ declare class OrderItemReportService {
|
|
|
17706
17760
|
* @returns OrderItemReport Success
|
|
17707
17761
|
* @throws ApiError
|
|
17708
17762
|
*/
|
|
17709
|
-
getListIdName({ venueId, userId, programmeId, startDateGte, startDateLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17763
|
+
getListIdName({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17710
17764
|
/**
|
|
17711
17765
|
* Gets or sets the Venue Id.
|
|
17712
17766
|
*/
|
|
@@ -17727,6 +17781,10 @@ declare class OrderItemReportService {
|
|
|
17727
17781
|
* Gets or sets the starting date less than or equal to.
|
|
17728
17782
|
*/
|
|
17729
17783
|
startDateLte?: string;
|
|
17784
|
+
/**
|
|
17785
|
+
* Gets or sets a custom date range.
|
|
17786
|
+
*/
|
|
17787
|
+
dateRange?: CustomDateRange;
|
|
17730
17788
|
/**
|
|
17731
17789
|
* Gets or sets the page number for paged queries.
|
|
17732
17790
|
*/
|
|
@@ -43256,6 +43314,7 @@ declare class ApiClient {
|
|
|
43256
43314
|
readonly filestack: FilestackService;
|
|
43257
43315
|
readonly genericActivity: GenericActivityService;
|
|
43258
43316
|
readonly geocode: GeocodeService;
|
|
43317
|
+
readonly helpers: HelpersService;
|
|
43259
43318
|
readonly hereAutocompleteLookup: HereAutocompleteLookupService;
|
|
43260
43319
|
readonly imageLibraryCategory: ImageLibraryCategoryService;
|
|
43261
43320
|
readonly imageLibraryImage: ImageLibraryImageService;
|
|
@@ -43464,4 +43523,4 @@ type ValidationResultModel = {
|
|
|
43464
43523
|
readonly errors?: Array<ValidationError> | null;
|
|
43465
43524
|
};
|
|
43466
43525
|
|
|
43467
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, 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, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, 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, OpportunityRegisterStatus, OpportunityType, Order, OrderEmailCustomerPatch, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, 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, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, 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, SurveyDuplicatePost, 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, TemplateCreate, 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, UnsplashSearchResponse, UnsplashService, 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, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
|
43526
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, 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, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, 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, OpportunityRegisterStatus, OpportunityType, Order, OrderEmailCustomerPatch, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, 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, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, 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, SurveyDuplicatePost, 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, TemplateCreate, 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, UnsplashSearchResponse, UnsplashService, 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, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
package/dist/reach-sdk.js
CHANGED
|
@@ -7010,6 +7010,26 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7010
7010
|
}
|
|
7011
7011
|
});
|
|
7012
7012
|
}
|
|
7013
|
+
}class HelpersService {
|
|
7014
|
+
constructor(httpRequest) {
|
|
7015
|
+
this.httpRequest = httpRequest;
|
|
7016
|
+
}
|
|
7017
|
+
/**
|
|
7018
|
+
* Gets the custom date range options that can be used for filtering where CustomDateRanges can be used.
|
|
7019
|
+
* @returns CustomDateRangeOption Success
|
|
7020
|
+
* @throws ApiError
|
|
7021
|
+
*/
|
|
7022
|
+
getFilterCustomDateRangeOptions() {
|
|
7023
|
+
return this.httpRequest.request({
|
|
7024
|
+
method: "GET",
|
|
7025
|
+
url: "/api/helpers/filter-date-ranges",
|
|
7026
|
+
errors: {
|
|
7027
|
+
400: `Bad Request`,
|
|
7028
|
+
422: `Client Error`,
|
|
7029
|
+
500: `Server Error`
|
|
7030
|
+
}
|
|
7031
|
+
});
|
|
7032
|
+
}
|
|
7013
7033
|
}class HereAutocompleteLookupService {
|
|
7014
7034
|
constructor(httpRequest) {
|
|
7015
7035
|
this.httpRequest = httpRequest;
|
|
@@ -10885,6 +10905,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10885
10905
|
programmeId,
|
|
10886
10906
|
startDateGte,
|
|
10887
10907
|
startDateLte,
|
|
10908
|
+
dateRange,
|
|
10888
10909
|
pageNumber,
|
|
10889
10910
|
take,
|
|
10890
10911
|
limitListRequests,
|
|
@@ -10906,6 +10927,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
10906
10927
|
ProgrammeId: programmeId,
|
|
10907
10928
|
StartDateGTE: startDateGte,
|
|
10908
10929
|
StartDateLTE: startDateLte,
|
|
10930
|
+
DateRange: dateRange,
|
|
10909
10931
|
PageNumber: pageNumber,
|
|
10910
10932
|
Take: take,
|
|
10911
10933
|
LimitListRequests: limitListRequests,
|
|
@@ -11037,6 +11059,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
11037
11059
|
programmeId,
|
|
11038
11060
|
startDateGte,
|
|
11039
11061
|
startDateLte,
|
|
11062
|
+
dateRange,
|
|
11040
11063
|
pageNumber,
|
|
11041
11064
|
take,
|
|
11042
11065
|
limitListRequests,
|
|
@@ -11057,6 +11080,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
11057
11080
|
ProgrammeId: programmeId,
|
|
11058
11081
|
StartDateGTE: startDateGte,
|
|
11059
11082
|
StartDateLTE: startDateLte,
|
|
11083
|
+
DateRange: dateRange,
|
|
11060
11084
|
PageNumber: pageNumber,
|
|
11061
11085
|
Take: take,
|
|
11062
11086
|
LimitListRequests: limitListRequests,
|
|
@@ -11149,6 +11173,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
11149
11173
|
programmeId,
|
|
11150
11174
|
startDateGte,
|
|
11151
11175
|
startDateLte,
|
|
11176
|
+
dateRange,
|
|
11152
11177
|
pageNumber,
|
|
11153
11178
|
take,
|
|
11154
11179
|
limitListRequests,
|
|
@@ -11169,6 +11194,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
11169
11194
|
ProgrammeId: programmeId,
|
|
11170
11195
|
StartDateGTE: startDateGte,
|
|
11171
11196
|
StartDateLTE: startDateLte,
|
|
11197
|
+
DateRange: dateRange,
|
|
11172
11198
|
PageNumber: pageNumber,
|
|
11173
11199
|
Take: take,
|
|
11174
11200
|
LimitListRequests: limitListRequests,
|
|
@@ -11198,6 +11224,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
11198
11224
|
programmeId,
|
|
11199
11225
|
startDateGte,
|
|
11200
11226
|
startDateLte,
|
|
11227
|
+
dateRange,
|
|
11201
11228
|
pageNumber,
|
|
11202
11229
|
take,
|
|
11203
11230
|
limitListRequests,
|
|
@@ -11218,6 +11245,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
11218
11245
|
ProgrammeId: programmeId,
|
|
11219
11246
|
StartDateGTE: startDateGte,
|
|
11220
11247
|
StartDateLTE: startDateLte,
|
|
11248
|
+
DateRange: dateRange,
|
|
11221
11249
|
PageNumber: pageNumber,
|
|
11222
11250
|
Take: take,
|
|
11223
11251
|
LimitListRequests: limitListRequests,
|
|
@@ -11247,6 +11275,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
11247
11275
|
programmeId,
|
|
11248
11276
|
startDateGte,
|
|
11249
11277
|
startDateLte,
|
|
11278
|
+
dateRange,
|
|
11250
11279
|
pageNumber,
|
|
11251
11280
|
take,
|
|
11252
11281
|
limitListRequests,
|
|
@@ -11267,6 +11296,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
11267
11296
|
ProgrammeId: programmeId,
|
|
11268
11297
|
StartDateGTE: startDateGte,
|
|
11269
11298
|
StartDateLTE: startDateLte,
|
|
11299
|
+
DateRange: dateRange,
|
|
11270
11300
|
PageNumber: pageNumber,
|
|
11271
11301
|
Take: take,
|
|
11272
11302
|
LimitListRequests: limitListRequests,
|
|
@@ -32850,6 +32880,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
32850
32880
|
filestack;
|
|
32851
32881
|
genericActivity;
|
|
32852
32882
|
geocode;
|
|
32883
|
+
helpers;
|
|
32853
32884
|
hereAutocompleteLookup;
|
|
32854
32885
|
imageLibraryCategory;
|
|
32855
32886
|
imageLibraryImage;
|
|
@@ -32961,6 +32992,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
32961
32992
|
this.filestack = new FilestackService(this.request);
|
|
32962
32993
|
this.genericActivity = new GenericActivityService(this.request);
|
|
32963
32994
|
this.geocode = new GeocodeService(this.request);
|
|
32995
|
+
this.helpers = new HelpersService(this.request);
|
|
32964
32996
|
this.hereAutocompleteLookup = new HereAutocompleteLookupService(this.request);
|
|
32965
32997
|
this.imageLibraryCategory = new ImageLibraryCategoryService(this.request);
|
|
32966
32998
|
this.imageLibraryImage = new ImageLibraryImageService(this.request);
|
|
@@ -33092,7 +33124,24 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
33092
33124
|
CourseStatus2["ACTIVE"] = "Active";
|
|
33093
33125
|
CourseStatus2["CANCELLED"] = "Cancelled";
|
|
33094
33126
|
return CourseStatus2;
|
|
33095
|
-
})(CourseStatus || {});var
|
|
33127
|
+
})(CourseStatus || {});var CustomDateRange = /* @__PURE__ */ ((CustomDateRange2) => {
|
|
33128
|
+
CustomDateRange2["CUSTOM"] = "Custom";
|
|
33129
|
+
CustomDateRange2["LAST7DAYS"] = "Last7Days";
|
|
33130
|
+
CustomDateRange2["LAST14DAYS"] = "Last14Days";
|
|
33131
|
+
CustomDateRange2["LAST28DAYS"] = "Last28Days";
|
|
33132
|
+
CustomDateRange2["LAST30DAYS"] = "Last30Days";
|
|
33133
|
+
CustomDateRange2["TODAY"] = "Today";
|
|
33134
|
+
CustomDateRange2["YESTERDAY"] = "Yesterday";
|
|
33135
|
+
CustomDateRange2["THIS_WEEK"] = "ThisWeek";
|
|
33136
|
+
CustomDateRange2["LAST_WEEK"] = "LastWeek";
|
|
33137
|
+
CustomDateRange2["THIS_MONTH"] = "ThisMonth";
|
|
33138
|
+
CustomDateRange2["LAST_MONTH"] = "LastMonth";
|
|
33139
|
+
CustomDateRange2["THIS_QUARTER"] = "ThisQuarter";
|
|
33140
|
+
CustomDateRange2["LAST_QUARTER"] = "LastQuarter";
|
|
33141
|
+
CustomDateRange2["THIS_YEAR"] = "ThisYear";
|
|
33142
|
+
CustomDateRange2["LAST_YEAR"] = "LastYear";
|
|
33143
|
+
return CustomDateRange2;
|
|
33144
|
+
})(CustomDateRange || {});var CustomerCancellationOption = /* @__PURE__ */ ((CustomerCancellationOption2) => {
|
|
33096
33145
|
CustomerCancellationOption2["CANCELLABLE"] = "Cancellable";
|
|
33097
33146
|
CustomerCancellationOption2["CANCELLATION_NOT_POSSIBLE"] = "CancellationNotPossible";
|
|
33098
33147
|
CustomerCancellationOption2["UNDETERMINED"] = "Undetermined";
|
|
@@ -33367,4 +33416,4 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
33367
33416
|
TenantTier2["ENTERPRISE"] = "Enterprise";
|
|
33368
33417
|
TenantTier2["PRO"] = "Pro";
|
|
33369
33418
|
return TenantTier2;
|
|
33370
|
-
})(TenantTier || {});export{ActivityPerformanceService,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,DealDiscountType,DealTarget,DealType,DealsService,EmailReminderSchedulesService,EmailSettingsService,EnglandGolfReportService,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FilestackService,Gender,GenericActivityService,GeocodeService,HereAutocompleteLookupService,HttpStatusCode,ImageLibraryCategoryService,ImageLibraryImageService,ImageUploadHistoryService,ImagesService,InviteStatus,LeasingService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityRegisterStatus,OpportunityType,OrderItemReportService,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentsService,PeriodsOfWeek,PermissionsService,PlacesService,Prepayment,ProgrammesService,PublicBookingService,PublicCoursesService,PublicCustomersService,PublicFacilitiesService,PublicFilestackWebhookService,PublicGenericActivityService,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,UnsplashService,UsersService,VenueManagersService,VenuePerformanceService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService};
|
|
33419
|
+
})(TenantTier || {});export{ActivityPerformanceService,ActivityService,ActivityType,AdvanceBooking,AmenityService,ApiClient,ApiError,AppUserRole,ApplicationRole,AttendeesService,BadEnglandReportService,BaseHttpRequest,BookingService,BookingStatus,CancelError,CancelablePromise,ChatService,ContactOnConfirmation,CountryService,CourseBookingCutoff,CourseSearchSortBy,CourseSessionSchedulesService,CourseSessionsService,CourseStatus,CoursesService,CustomDateRange,CustomerCancellationOption,CustomerType,CustomersService,DayOfWeek,DealDiscountType,DealTarget,DealType,DealsService,EmailReminderSchedulesService,EmailSettingsService,EnglandGolfReportService,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FilestackService,Gender,GenericActivityService,GeocodeService,HelpersService,HereAutocompleteLookupService,HttpStatusCode,ImageLibraryCategoryService,ImageLibraryImageService,ImageUploadHistoryService,ImagesService,InviteStatus,LeasingService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityRegisterStatus,OpportunityType,OrderItemReportService,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentsService,PeriodsOfWeek,PermissionsService,PlacesService,Prepayment,ProgrammesService,PublicBookingService,PublicCoursesService,PublicCustomersService,PublicFacilitiesService,PublicFilestackWebhookService,PublicGenericActivityService,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,UnsplashService,UsersService,VenueManagersService,VenuePerformanceService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService};
|
package/package.json
CHANGED
package/src/apiClient.ts
CHANGED
|
@@ -27,6 +27,7 @@ import { FacilityIndividualsService } from './services/FacilityIndividualsServic
|
|
|
27
27
|
import { FilestackService } from './services/FilestackService';
|
|
28
28
|
import { GenericActivityService } from './services/GenericActivityService';
|
|
29
29
|
import { GeocodeService } from './services/GeocodeService';
|
|
30
|
+
import { HelpersService } from './services/HelpersService';
|
|
30
31
|
import { HereAutocompleteLookupService } from './services/HereAutocompleteLookupService';
|
|
31
32
|
import { ImageLibraryCategoryService } from './services/ImageLibraryCategoryService';
|
|
32
33
|
import { ImageLibraryImageService } from './services/ImageLibraryImageService';
|
|
@@ -129,6 +130,7 @@ export class ApiClient {
|
|
|
129
130
|
public readonly filestack: FilestackService;
|
|
130
131
|
public readonly genericActivity: GenericActivityService;
|
|
131
132
|
public readonly geocode: GeocodeService;
|
|
133
|
+
public readonly helpers: HelpersService;
|
|
132
134
|
public readonly hereAutocompleteLookup: HereAutocompleteLookupService;
|
|
133
135
|
public readonly imageLibraryCategory: ImageLibraryCategoryService;
|
|
134
136
|
public readonly imageLibraryImage: ImageLibraryImageService;
|
|
@@ -246,6 +248,7 @@ export class ApiClient {
|
|
|
246
248
|
this.filestack = new FilestackService(this.request);
|
|
247
249
|
this.genericActivity = new GenericActivityService(this.request);
|
|
248
250
|
this.geocode = new GeocodeService(this.request);
|
|
251
|
+
this.helpers = new HelpersService(this.request);
|
|
249
252
|
this.hereAutocompleteLookup = new HereAutocompleteLookupService(this.request);
|
|
250
253
|
this.imageLibraryCategory = new ImageLibraryCategoryService(this.request);
|
|
251
254
|
this.imageLibraryImage = new ImageLibraryImageService(this.request);
|
|
@@ -19858,6 +19858,67 @@ paths:
|
|
|
19858
19858
|
text/json:
|
|
19859
19859
|
schema:
|
|
19860
19860
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
19861
|
+
/api/helpers/filter-date-ranges:
|
|
19862
|
+
get:
|
|
19863
|
+
tags:
|
|
19864
|
+
- Helpers
|
|
19865
|
+
summary: Gets the custom date range options that can be used for filtering where CustomDateRanges can be used.
|
|
19866
|
+
operationId: GetFilterCustomDateRangeOptions
|
|
19867
|
+
responses:
|
|
19868
|
+
'200':
|
|
19869
|
+
description: Success
|
|
19870
|
+
content:
|
|
19871
|
+
text/plain:
|
|
19872
|
+
schema:
|
|
19873
|
+
type: array
|
|
19874
|
+
items:
|
|
19875
|
+
$ref: '#/components/schemas/CustomDateRangeOption'
|
|
19876
|
+
application/json:
|
|
19877
|
+
schema:
|
|
19878
|
+
type: array
|
|
19879
|
+
items:
|
|
19880
|
+
$ref: '#/components/schemas/CustomDateRangeOption'
|
|
19881
|
+
text/json:
|
|
19882
|
+
schema:
|
|
19883
|
+
type: array
|
|
19884
|
+
items:
|
|
19885
|
+
$ref: '#/components/schemas/CustomDateRangeOption'
|
|
19886
|
+
'400':
|
|
19887
|
+
description: Bad Request
|
|
19888
|
+
content:
|
|
19889
|
+
text/plain:
|
|
19890
|
+
schema:
|
|
19891
|
+
$ref: '#/components/schemas/ReachError'
|
|
19892
|
+
application/json:
|
|
19893
|
+
schema:
|
|
19894
|
+
$ref: '#/components/schemas/ReachError'
|
|
19895
|
+
text/json:
|
|
19896
|
+
schema:
|
|
19897
|
+
$ref: '#/components/schemas/ReachError'
|
|
19898
|
+
'500':
|
|
19899
|
+
description: Server Error
|
|
19900
|
+
content:
|
|
19901
|
+
text/plain:
|
|
19902
|
+
schema:
|
|
19903
|
+
$ref: '#/components/schemas/ReachError'
|
|
19904
|
+
application/json:
|
|
19905
|
+
schema:
|
|
19906
|
+
$ref: '#/components/schemas/ReachError'
|
|
19907
|
+
text/json:
|
|
19908
|
+
schema:
|
|
19909
|
+
$ref: '#/components/schemas/ReachError'
|
|
19910
|
+
'422':
|
|
19911
|
+
description: Client Error
|
|
19912
|
+
content:
|
|
19913
|
+
text/plain:
|
|
19914
|
+
schema:
|
|
19915
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
19916
|
+
application/json:
|
|
19917
|
+
schema:
|
|
19918
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
19919
|
+
text/json:
|
|
19920
|
+
schema:
|
|
19921
|
+
$ref: '#/components/schemas/ValidationResultModel'
|
|
19861
19922
|
/api/external/here/places/autocomplete:
|
|
19862
19923
|
get:
|
|
19863
19924
|
tags:
|
|
@@ -31591,6 +31652,11 @@ paths:
|
|
|
31591
31652
|
schema:
|
|
31592
31653
|
type: string
|
|
31593
31654
|
format: date-time
|
|
31655
|
+
- name: DateRange
|
|
31656
|
+
in: query
|
|
31657
|
+
description: Gets or sets a custom date range.
|
|
31658
|
+
schema:
|
|
31659
|
+
$ref: '#/components/schemas/CustomDateRange'
|
|
31594
31660
|
- name: PageNumber
|
|
31595
31661
|
in: query
|
|
31596
31662
|
description: Gets or sets the page number for paged queries.
|
|
@@ -32073,6 +32139,11 @@ paths:
|
|
|
32073
32139
|
schema:
|
|
32074
32140
|
type: string
|
|
32075
32141
|
format: date-time
|
|
32142
|
+
- name: DateRange
|
|
32143
|
+
in: query
|
|
32144
|
+
description: Gets or sets a custom date range.
|
|
32145
|
+
schema:
|
|
32146
|
+
$ref: '#/components/schemas/CustomDateRange'
|
|
32076
32147
|
- name: PageNumber
|
|
32077
32148
|
in: query
|
|
32078
32149
|
description: Gets or sets the page number for paged queries.
|
|
@@ -32396,6 +32467,11 @@ paths:
|
|
|
32396
32467
|
schema:
|
|
32397
32468
|
type: string
|
|
32398
32469
|
format: date-time
|
|
32470
|
+
- name: DateRange
|
|
32471
|
+
in: query
|
|
32472
|
+
description: Gets or sets a custom date range.
|
|
32473
|
+
schema:
|
|
32474
|
+
$ref: '#/components/schemas/CustomDateRange'
|
|
32399
32475
|
- name: PageNumber
|
|
32400
32476
|
in: query
|
|
32401
32477
|
description: Gets or sets the page number for paged queries.
|
|
@@ -32541,6 +32617,11 @@ paths:
|
|
|
32541
32617
|
schema:
|
|
32542
32618
|
type: string
|
|
32543
32619
|
format: date-time
|
|
32620
|
+
- name: DateRange
|
|
32621
|
+
in: query
|
|
32622
|
+
description: Gets or sets a custom date range.
|
|
32623
|
+
schema:
|
|
32624
|
+
$ref: '#/components/schemas/CustomDateRange'
|
|
32544
32625
|
- name: PageNumber
|
|
32545
32626
|
in: query
|
|
32546
32627
|
description: Gets or sets the page number for paged queries.
|
|
@@ -32692,6 +32773,11 @@ paths:
|
|
|
32692
32773
|
schema:
|
|
32693
32774
|
type: string
|
|
32694
32775
|
format: date-time
|
|
32776
|
+
- name: DateRange
|
|
32777
|
+
in: query
|
|
32778
|
+
description: Gets or sets a custom date range.
|
|
32779
|
+
schema:
|
|
32780
|
+
$ref: '#/components/schemas/CustomDateRange'
|
|
32695
32781
|
- name: PageNumber
|
|
32696
32782
|
in: query
|
|
32697
32783
|
description: Gets or sets the page number for paged queries.
|
|
@@ -98316,6 +98402,33 @@ components:
|
|
|
98316
98402
|
nullable: true
|
|
98317
98403
|
additionalProperties: false
|
|
98318
98404
|
description: Post model for venue.
|
|
98405
|
+
CustomDateRange:
|
|
98406
|
+
enum:
|
|
98407
|
+
- Custom
|
|
98408
|
+
- Last7Days
|
|
98409
|
+
- Last14Days
|
|
98410
|
+
- Last28Days
|
|
98411
|
+
- Last30Days
|
|
98412
|
+
- Today
|
|
98413
|
+
- Yesterday
|
|
98414
|
+
- ThisWeek
|
|
98415
|
+
- LastWeek
|
|
98416
|
+
- ThisMonth
|
|
98417
|
+
- LastMonth
|
|
98418
|
+
- ThisQuarter
|
|
98419
|
+
- LastQuarter
|
|
98420
|
+
- ThisYear
|
|
98421
|
+
- LastYear
|
|
98422
|
+
type: string
|
|
98423
|
+
CustomDateRangeOption:
|
|
98424
|
+
type: object
|
|
98425
|
+
properties:
|
|
98426
|
+
value:
|
|
98427
|
+
$ref: '#/components/schemas/CustomDateRange'
|
|
98428
|
+
label:
|
|
98429
|
+
type: string
|
|
98430
|
+
nullable: true
|
|
98431
|
+
additionalProperties: false
|
|
98319
98432
|
Customer:
|
|
98320
98433
|
required:
|
|
98321
98434
|
- dateCreated
|
|
@@ -101609,6 +101722,10 @@ components:
|
|
|
101609
101722
|
type: string
|
|
101610
101723
|
description: Gets or sets the activity name.
|
|
101611
101724
|
nullable: true
|
|
101725
|
+
venueName:
|
|
101726
|
+
type: string
|
|
101727
|
+
description: Gets or sets the venue name.
|
|
101728
|
+
nullable: true
|
|
101612
101729
|
startDate:
|
|
101613
101730
|
type: string
|
|
101614
101731
|
description: Gets or sets the activity start date.
|
|
@@ -101656,9 +101773,9 @@ components:
|
|
|
101656
101773
|
type: string
|
|
101657
101774
|
description: Gets or sets the currency.
|
|
101658
101775
|
nullable: true
|
|
101659
|
-
|
|
101776
|
+
paymentSource:
|
|
101660
101777
|
type: string
|
|
101661
|
-
description: Gets or sets the payment
|
|
101778
|
+
description: 'Gets or sets the payment source (currently offline, or played storefront).'
|
|
101662
101779
|
nullable: true
|
|
101663
101780
|
customerEmail:
|
|
101664
101781
|
type: string
|
package/src/index.ts
CHANGED
|
@@ -55,6 +55,8 @@ export type { CreateQuestion } from './models/CreateQuestion';
|
|
|
55
55
|
export type { CreateQuestionOption } from './models/CreateQuestionOption';
|
|
56
56
|
export type { CreateTemplateDetail } from './models/CreateTemplateDetail';
|
|
57
57
|
export type { CreateVenue } from './models/CreateVenue';
|
|
58
|
+
export { CustomDateRange } from './models/CustomDateRange';
|
|
59
|
+
export type { CustomDateRangeOption } from './models/CustomDateRangeOption';
|
|
58
60
|
export type { Customer } from './models/Customer';
|
|
59
61
|
export { CustomerCancellationOption } from './models/CustomerCancellationOption';
|
|
60
62
|
export type { CustomerEmailPatch } from './models/CustomerEmailPatch';
|
|
@@ -393,6 +395,7 @@ export { FacilityIndividualsService } from './services/FacilityIndividualsServic
|
|
|
393
395
|
export { FilestackService } from './services/FilestackService';
|
|
394
396
|
export { GenericActivityService } from './services/GenericActivityService';
|
|
395
397
|
export { GeocodeService } from './services/GeocodeService';
|
|
398
|
+
export { HelpersService } from './services/HelpersService';
|
|
396
399
|
export { HereAutocompleteLookupService } from './services/HereAutocompleteLookupService';
|
|
397
400
|
export { ImageLibraryCategoryService } from './services/ImageLibraryCategoryService';
|
|
398
401
|
export { ImageLibraryImageService } from './services/ImageLibraryImageService';
|
|
@@ -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
|
+
export enum CustomDateRange {
|
|
7
|
+
CUSTOM = 'Custom',
|
|
8
|
+
LAST7DAYS = 'Last7Days',
|
|
9
|
+
LAST14DAYS = 'Last14Days',
|
|
10
|
+
LAST28DAYS = 'Last28Days',
|
|
11
|
+
LAST30DAYS = 'Last30Days',
|
|
12
|
+
TODAY = 'Today',
|
|
13
|
+
YESTERDAY = 'Yesterday',
|
|
14
|
+
THIS_WEEK = 'ThisWeek',
|
|
15
|
+
LAST_WEEK = 'LastWeek',
|
|
16
|
+
THIS_MONTH = 'ThisMonth',
|
|
17
|
+
LAST_MONTH = 'LastMonth',
|
|
18
|
+
THIS_QUARTER = 'ThisQuarter',
|
|
19
|
+
LAST_QUARTER = 'LastQuarter',
|
|
20
|
+
THIS_YEAR = 'ThisYear',
|
|
21
|
+
LAST_YEAR = 'LastYear',
|
|
22
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
|
|
6
|
+
import type { CustomDateRange } from './CustomDateRange';
|
|
7
|
+
|
|
8
|
+
export type CustomDateRangeOption = {
|
|
9
|
+
value?: CustomDateRange;
|
|
10
|
+
label?: string | null;
|
|
11
|
+
};
|
|
@@ -45,6 +45,10 @@ export type OrderItemReport = {
|
|
|
45
45
|
* Gets or sets the activity name.
|
|
46
46
|
*/
|
|
47
47
|
activityName?: string | null;
|
|
48
|
+
/**
|
|
49
|
+
* Gets or sets the venue name.
|
|
50
|
+
*/
|
|
51
|
+
venueName?: string | null;
|
|
48
52
|
/**
|
|
49
53
|
* Gets or sets the activity start date.
|
|
50
54
|
*/
|
|
@@ -91,9 +95,9 @@ export type OrderItemReport = {
|
|
|
91
95
|
*/
|
|
92
96
|
currency?: string | null;
|
|
93
97
|
/**
|
|
94
|
-
* Gets or sets the payment
|
|
98
|
+
* Gets or sets the payment source (currently offline, or played storefront).
|
|
95
99
|
*/
|
|
96
|
-
|
|
100
|
+
paymentSource?: string | null;
|
|
97
101
|
/**
|
|
98
102
|
* Gets or sets the customer email.
|
|
99
103
|
*/
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { CustomDateRangeOption } from '../models/CustomDateRangeOption';
|
|
6
|
+
|
|
7
|
+
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
8
|
+
import type { BaseHttpRequest } from '../core/BaseHttpRequest';
|
|
9
|
+
|
|
10
|
+
export class HelpersService {
|
|
11
|
+
constructor(public readonly httpRequest: BaseHttpRequest) {}
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Gets the custom date range options that can be used for filtering where CustomDateRanges can be used.
|
|
15
|
+
* @returns CustomDateRangeOption Success
|
|
16
|
+
* @throws ApiError
|
|
17
|
+
*/
|
|
18
|
+
public getFilterCustomDateRangeOptions(): CancelablePromise<Array<CustomDateRangeOption>> {
|
|
19
|
+
return this.httpRequest.request({
|
|
20
|
+
method: 'GET',
|
|
21
|
+
url: '/api/helpers/filter-date-ranges',
|
|
22
|
+
errors: {
|
|
23
|
+
400: `Bad Request`,
|
|
24
|
+
422: `Client Error`,
|
|
25
|
+
500: `Server Error`,
|
|
26
|
+
},
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
/* istanbul ignore file */
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
|
+
import type { CustomDateRange } from '../models/CustomDateRange';
|
|
5
6
|
import type { OrderItemReport } from '../models/OrderItemReport';
|
|
6
7
|
import type { OrderItemReportPage } from '../models/OrderItemReportPage';
|
|
7
8
|
import type { OrderItemReportPatch } from '../models/OrderItemReportPatch';
|
|
@@ -26,6 +27,7 @@ export class OrderItemReportService {
|
|
|
26
27
|
programmeId,
|
|
27
28
|
startDateGte,
|
|
28
29
|
startDateLte,
|
|
30
|
+
dateRange,
|
|
29
31
|
pageNumber,
|
|
30
32
|
take,
|
|
31
33
|
limitListRequests,
|
|
@@ -58,6 +60,10 @@ export class OrderItemReportService {
|
|
|
58
60
|
* Gets or sets the starting date less than or equal to.
|
|
59
61
|
*/
|
|
60
62
|
startDateLte?: string;
|
|
63
|
+
/**
|
|
64
|
+
* Gets or sets a custom date range.
|
|
65
|
+
*/
|
|
66
|
+
dateRange?: CustomDateRange;
|
|
61
67
|
/**
|
|
62
68
|
* Gets or sets the page number for paged queries.
|
|
63
69
|
*/
|
|
@@ -114,6 +120,7 @@ export class OrderItemReportService {
|
|
|
114
120
|
ProgrammeId: programmeId,
|
|
115
121
|
StartDateGTE: startDateGte,
|
|
116
122
|
StartDateLTE: startDateLte,
|
|
123
|
+
DateRange: dateRange,
|
|
117
124
|
PageNumber: pageNumber,
|
|
118
125
|
Take: take,
|
|
119
126
|
LimitListRequests: limitListRequests,
|
|
@@ -276,6 +283,7 @@ export class OrderItemReportService {
|
|
|
276
283
|
programmeId,
|
|
277
284
|
startDateGte,
|
|
278
285
|
startDateLte,
|
|
286
|
+
dateRange,
|
|
279
287
|
pageNumber,
|
|
280
288
|
take,
|
|
281
289
|
limitListRequests,
|
|
@@ -307,6 +315,10 @@ export class OrderItemReportService {
|
|
|
307
315
|
* Gets or sets the starting date less than or equal to.
|
|
308
316
|
*/
|
|
309
317
|
startDateLte?: string;
|
|
318
|
+
/**
|
|
319
|
+
* Gets or sets a custom date range.
|
|
320
|
+
*/
|
|
321
|
+
dateRange?: CustomDateRange;
|
|
310
322
|
/**
|
|
311
323
|
* Gets or sets the page number for paged queries.
|
|
312
324
|
*/
|
|
@@ -357,6 +369,7 @@ export class OrderItemReportService {
|
|
|
357
369
|
ProgrammeId: programmeId,
|
|
358
370
|
StartDateGTE: startDateGte,
|
|
359
371
|
StartDateLTE: startDateLte,
|
|
372
|
+
DateRange: dateRange,
|
|
360
373
|
PageNumber: pageNumber,
|
|
361
374
|
Take: take,
|
|
362
375
|
LimitListRequests: limitListRequests,
|
|
@@ -468,6 +481,7 @@ export class OrderItemReportService {
|
|
|
468
481
|
programmeId,
|
|
469
482
|
startDateGte,
|
|
470
483
|
startDateLte,
|
|
484
|
+
dateRange,
|
|
471
485
|
pageNumber,
|
|
472
486
|
take,
|
|
473
487
|
limitListRequests,
|
|
@@ -499,6 +513,10 @@ export class OrderItemReportService {
|
|
|
499
513
|
* Gets or sets the starting date less than or equal to.
|
|
500
514
|
*/
|
|
501
515
|
startDateLte?: string;
|
|
516
|
+
/**
|
|
517
|
+
* Gets or sets a custom date range.
|
|
518
|
+
*/
|
|
519
|
+
dateRange?: CustomDateRange;
|
|
502
520
|
/**
|
|
503
521
|
* Gets or sets the page number for paged queries.
|
|
504
522
|
*/
|
|
@@ -549,6 +567,7 @@ export class OrderItemReportService {
|
|
|
549
567
|
ProgrammeId: programmeId,
|
|
550
568
|
StartDateGTE: startDateGte,
|
|
551
569
|
StartDateLTE: startDateLte,
|
|
570
|
+
DateRange: dateRange,
|
|
552
571
|
PageNumber: pageNumber,
|
|
553
572
|
Take: take,
|
|
554
573
|
LimitListRequests: limitListRequests,
|
|
@@ -579,6 +598,7 @@ export class OrderItemReportService {
|
|
|
579
598
|
programmeId,
|
|
580
599
|
startDateGte,
|
|
581
600
|
startDateLte,
|
|
601
|
+
dateRange,
|
|
582
602
|
pageNumber,
|
|
583
603
|
take,
|
|
584
604
|
limitListRequests,
|
|
@@ -610,6 +630,10 @@ export class OrderItemReportService {
|
|
|
610
630
|
* Gets or sets the starting date less than or equal to.
|
|
611
631
|
*/
|
|
612
632
|
startDateLte?: string;
|
|
633
|
+
/**
|
|
634
|
+
* Gets or sets a custom date range.
|
|
635
|
+
*/
|
|
636
|
+
dateRange?: CustomDateRange;
|
|
613
637
|
/**
|
|
614
638
|
* Gets or sets the page number for paged queries.
|
|
615
639
|
*/
|
|
@@ -660,6 +684,7 @@ export class OrderItemReportService {
|
|
|
660
684
|
ProgrammeId: programmeId,
|
|
661
685
|
StartDateGTE: startDateGte,
|
|
662
686
|
StartDateLTE: startDateLte,
|
|
687
|
+
DateRange: dateRange,
|
|
663
688
|
PageNumber: pageNumber,
|
|
664
689
|
Take: take,
|
|
665
690
|
LimitListRequests: limitListRequests,
|
|
@@ -690,6 +715,7 @@ export class OrderItemReportService {
|
|
|
690
715
|
programmeId,
|
|
691
716
|
startDateGte,
|
|
692
717
|
startDateLte,
|
|
718
|
+
dateRange,
|
|
693
719
|
pageNumber,
|
|
694
720
|
take,
|
|
695
721
|
limitListRequests,
|
|
@@ -721,6 +747,10 @@ export class OrderItemReportService {
|
|
|
721
747
|
* Gets or sets the starting date less than or equal to.
|
|
722
748
|
*/
|
|
723
749
|
startDateLte?: string;
|
|
750
|
+
/**
|
|
751
|
+
* Gets or sets a custom date range.
|
|
752
|
+
*/
|
|
753
|
+
dateRange?: CustomDateRange;
|
|
724
754
|
/**
|
|
725
755
|
* Gets or sets the page number for paged queries.
|
|
726
756
|
*/
|
|
@@ -771,6 +801,7 @@ export class OrderItemReportService {
|
|
|
771
801
|
ProgrammeId: programmeId,
|
|
772
802
|
StartDateGTE: startDateGte,
|
|
773
803
|
StartDateLTE: startDateLte,
|
|
804
|
+
DateRange: dateRange,
|
|
774
805
|
PageNumber: pageNumber,
|
|
775
806
|
Take: take,
|
|
776
807
|
LimitListRequests: limitListRequests,
|