reach-api-sdk 1.0.2 → 1.0.4
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/package.json +1 -1
- package/src/apiClient.ts +242 -242
- package/src/definition/swagger.yaml +58949 -58949
- package/src/index.ts +234 -234
- package/src/models/CoursePage.ts +11 -11
- package/src/models/CourseSessionPage.ts +11 -11
- package/src/models/CourseSessionSchedulePage.ts +11 -11
- package/src/models/CustomerPage.ts +11 -11
- package/src/models/EmailReminderSchedulePage.ts +11 -11
- package/src/models/EmailSettingPage.ts +11 -11
- package/src/models/FacilityIndividualPage.ts +11 -11
- package/src/models/FacilityPage.ts +11 -11
- package/src/models/GenericActivityPage.ts +11 -11
- package/src/models/ImagePage.ts +11 -11
- package/src/models/NotificationQueuePage.ts +11 -11
- package/src/models/NotificationSettingPage.ts +11 -11
- package/src/models/OfferPage.ts +11 -11
- package/src/models/OpenactiveFeedIntermediatePage.ts +11 -11
- package/src/models/OpenactiveFeedItemPage.ts +11 -11
- package/src/models/OrderItemPage.ts +11 -11
- package/src/models/OrderPage.ts +11 -11
- package/src/models/OrderTokenPage.ts +11 -11
- package/src/models/OrgCourseUtilisationPage.ts +11 -11
- package/src/models/PageMeta.ts +25 -25
- package/src/models/PaymentPage.ts +11 -11
- package/src/models/PermissionPage.ts +11 -11
- package/src/models/ProgrammePage.ts +11 -11
- package/src/models/RecentOrderActivityReportPage.ts +11 -11
- package/src/models/ScheduledSessionPage.ts +11 -11
- package/src/models/ScheduledSessionSchedulePage.ts +11 -11
- package/src/models/SessionPage.ts +11 -11
- package/src/models/SlotOfferPage.ts +11 -11
- package/src/models/SlotPage.ts +11 -11
- package/src/models/SlotScheduleOfferPage.ts +11 -11
- package/src/models/SlotSchedulePage.ts +11 -11
- package/src/models/StripeAccountPage.ts +11 -11
- package/src/models/SurveyAnswerPage.ts +11 -11
- package/src/models/SurveyPage.ts +11 -11
- package/src/models/SurveyQuestionPage.ts +11 -11
- package/src/models/SurveyReportExtended.ts +33 -33
- package/src/models/SurveyReportExtendedPage.ts +11 -11
- package/src/models/TenantPage.ts +11 -11
- package/src/models/TenantWebsiteSettingPage.ts +11 -11
- package/src/models/TotalRevenueReportPage.ts +11 -11
- package/src/models/UserPage.ts +11 -11
- package/src/models/VenuePage.ts +11 -11
- package/src/models/VenuesReportPage.ts +11 -11
- package/src/models/WaitlistActivityPage.ts +11 -11
- package/src/models/WaitlistOpportunityPage.ts +11 -11
- package/src/services/SurveyReportExtendedService.ts +618 -618
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { FacilityIndividual } from './FacilityIndividual';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type FacilityIndividualPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<FacilityIndividual> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { FacilityIndividual } from './FacilityIndividual';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type FacilityIndividualPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<FacilityIndividual> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { Facility } from './Facility';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type FacilityPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<Facility> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Facility } from './Facility';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type FacilityPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<Facility> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { GenericActivity } from './GenericActivity';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type GenericActivityPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<GenericActivity> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenericActivity } from './GenericActivity';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type GenericActivityPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<GenericActivity> | null;
|
|
11
|
+
};
|
package/src/models/ImagePage.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { Image } from './Image';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type ImagePage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<Image> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Image } from './Image';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type ImagePage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<Image> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { NotificationQueue } from './NotificationQueue';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type NotificationQueuePage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<NotificationQueue> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { NotificationQueue } from './NotificationQueue';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type NotificationQueuePage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<NotificationQueue> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { NotificationSetting } from './NotificationSetting';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type NotificationSettingPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<NotificationSetting> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { NotificationSetting } from './NotificationSetting';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type NotificationSettingPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<NotificationSetting> | null;
|
|
11
|
+
};
|
package/src/models/OfferPage.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { Offer } from './Offer';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type OfferPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<Offer> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Offer } from './Offer';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type OfferPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<Offer> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { OpenactiveFeedIntermediate } from './OpenactiveFeedIntermediate';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type OpenactiveFeedIntermediatePage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<OpenactiveFeedIntermediate> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { OpenactiveFeedIntermediate } from './OpenactiveFeedIntermediate';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type OpenactiveFeedIntermediatePage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<OpenactiveFeedIntermediate> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { OpenactiveFeedItem } from './OpenactiveFeedItem';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type OpenactiveFeedItemPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<OpenactiveFeedItem> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { OpenactiveFeedItem } from './OpenactiveFeedItem';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type OpenactiveFeedItemPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<OpenactiveFeedItem> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { OrderItem } from './OrderItem';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type OrderItemPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<OrderItem> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { OrderItem } from './OrderItem';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type OrderItemPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<OrderItem> | null;
|
|
11
|
+
};
|
package/src/models/OrderPage.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { Order } from './Order';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type OrderPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<Order> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { Order } from './Order';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type OrderPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<Order> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { OrderToken } from './OrderToken';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type OrderTokenPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<OrderToken> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { OrderToken } from './OrderToken';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type OrderTokenPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<OrderToken> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { OrgCourseUtilisation } from './OrgCourseUtilisation';
|
|
6
|
-
import type { PageMeta } from './PageMeta';
|
|
7
|
-
|
|
8
|
-
export type OrgCourseUtilisationPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<OrgCourseUtilisation> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { OrgCourseUtilisation } from './OrgCourseUtilisation';
|
|
6
|
+
import type { PageMeta } from './PageMeta';
|
|
7
|
+
|
|
8
|
+
export type OrgCourseUtilisationPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<OrgCourseUtilisation> | null;
|
|
11
|
+
};
|
package/src/models/PageMeta.ts
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Describes meta data for results returned as pages.
|
|
7
|
-
*/
|
|
8
|
-
export type PageMeta = {
|
|
9
|
-
/**
|
|
10
|
-
* Gets the page number.
|
|
11
|
-
*/
|
|
12
|
-
readonly pageNumber?: number;
|
|
13
|
-
/**
|
|
14
|
-
* Gets the total number of pages.
|
|
15
|
-
*/
|
|
16
|
-
readonly totalPages?: number;
|
|
17
|
-
/**
|
|
18
|
-
* Gets the total number of items in each page.
|
|
19
|
-
*/
|
|
20
|
-
readonly itemsPerPage?: number;
|
|
21
|
-
/**
|
|
22
|
-
* Gets the total number of items.
|
|
23
|
-
*/
|
|
24
|
-
readonly totalItems?: number;
|
|
25
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Describes meta data for results returned as pages.
|
|
7
|
+
*/
|
|
8
|
+
export type PageMeta = {
|
|
9
|
+
/**
|
|
10
|
+
* Gets the page number.
|
|
11
|
+
*/
|
|
12
|
+
readonly pageNumber?: number;
|
|
13
|
+
/**
|
|
14
|
+
* Gets the total number of pages.
|
|
15
|
+
*/
|
|
16
|
+
readonly totalPages?: number;
|
|
17
|
+
/**
|
|
18
|
+
* Gets the total number of items in each page.
|
|
19
|
+
*/
|
|
20
|
+
readonly itemsPerPage?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Gets the total number of items.
|
|
23
|
+
*/
|
|
24
|
+
readonly totalItems?: number;
|
|
25
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { PageMeta } from './PageMeta';
|
|
6
|
-
import type { Payment } from './Payment';
|
|
7
|
-
|
|
8
|
-
export type PaymentPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<Payment> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { PageMeta } from './PageMeta';
|
|
6
|
+
import type { Payment } from './Payment';
|
|
7
|
+
|
|
8
|
+
export type PaymentPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<Payment> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { PageMeta } from './PageMeta';
|
|
6
|
-
import type { Permission } from './Permission';
|
|
7
|
-
|
|
8
|
-
export type PermissionPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<Permission> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { PageMeta } from './PageMeta';
|
|
6
|
+
import type { Permission } from './Permission';
|
|
7
|
+
|
|
8
|
+
export type PermissionPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<Permission> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { PageMeta } from './PageMeta';
|
|
6
|
-
import type { Programme } from './Programme';
|
|
7
|
-
|
|
8
|
-
export type ProgrammePage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<Programme> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { PageMeta } from './PageMeta';
|
|
6
|
+
import type { Programme } from './Programme';
|
|
7
|
+
|
|
8
|
+
export type ProgrammePage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<Programme> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { PageMeta } from './PageMeta';
|
|
6
|
-
import type { RecentOrderActivityReport } from './RecentOrderActivityReport';
|
|
7
|
-
|
|
8
|
-
export type RecentOrderActivityReportPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<RecentOrderActivityReport> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { PageMeta } from './PageMeta';
|
|
6
|
+
import type { RecentOrderActivityReport } from './RecentOrderActivityReport';
|
|
7
|
+
|
|
8
|
+
export type RecentOrderActivityReportPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<RecentOrderActivityReport> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { PageMeta } from './PageMeta';
|
|
6
|
-
import type { ScheduledSession } from './ScheduledSession';
|
|
7
|
-
|
|
8
|
-
export type ScheduledSessionPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<ScheduledSession> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { PageMeta } from './PageMeta';
|
|
6
|
+
import type { ScheduledSession } from './ScheduledSession';
|
|
7
|
+
|
|
8
|
+
export type ScheduledSessionPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<ScheduledSession> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { PageMeta } from './PageMeta';
|
|
6
|
-
import type { ScheduledSessionSchedule } from './ScheduledSessionSchedule';
|
|
7
|
-
|
|
8
|
-
export type ScheduledSessionSchedulePage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<ScheduledSessionSchedule> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { PageMeta } from './PageMeta';
|
|
6
|
+
import type { ScheduledSessionSchedule } from './ScheduledSessionSchedule';
|
|
7
|
+
|
|
8
|
+
export type ScheduledSessionSchedulePage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<ScheduledSessionSchedule> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { PageMeta } from './PageMeta';
|
|
6
|
-
import type { Session } from './Session';
|
|
7
|
-
|
|
8
|
-
export type SessionPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<Session> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { PageMeta } from './PageMeta';
|
|
6
|
+
import type { Session } from './Session';
|
|
7
|
+
|
|
8
|
+
export type SessionPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<Session> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { PageMeta } from './PageMeta';
|
|
6
|
-
import type { SlotOffer } from './SlotOffer';
|
|
7
|
-
|
|
8
|
-
export type SlotOfferPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<SlotOffer> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { PageMeta } from './PageMeta';
|
|
6
|
+
import type { SlotOffer } from './SlotOffer';
|
|
7
|
+
|
|
8
|
+
export type SlotOfferPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<SlotOffer> | null;
|
|
11
|
+
};
|
package/src/models/SlotPage.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { PageMeta } from './PageMeta';
|
|
6
|
-
import type { Slot } from './Slot';
|
|
7
|
-
|
|
8
|
-
export type SlotPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<Slot> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { PageMeta } from './PageMeta';
|
|
6
|
+
import type { Slot } from './Slot';
|
|
7
|
+
|
|
8
|
+
export type SlotPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<Slot> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { PageMeta } from './PageMeta';
|
|
6
|
-
import type { SlotScheduleOffer } from './SlotScheduleOffer';
|
|
7
|
-
|
|
8
|
-
export type SlotScheduleOfferPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<SlotScheduleOffer> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { PageMeta } from './PageMeta';
|
|
6
|
+
import type { SlotScheduleOffer } from './SlotScheduleOffer';
|
|
7
|
+
|
|
8
|
+
export type SlotScheduleOfferPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<SlotScheduleOffer> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { PageMeta } from './PageMeta';
|
|
6
|
-
import type { SlotSchedule } from './SlotSchedule';
|
|
7
|
-
|
|
8
|
-
export type SlotSchedulePage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<SlotSchedule> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { PageMeta } from './PageMeta';
|
|
6
|
+
import type { SlotSchedule } from './SlotSchedule';
|
|
7
|
+
|
|
8
|
+
export type SlotSchedulePage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<SlotSchedule> | null;
|
|
11
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { PageMeta } from './PageMeta';
|
|
6
|
-
import type { StripeAccount } from './StripeAccount';
|
|
7
|
-
|
|
8
|
-
export type StripeAccountPage = {
|
|
9
|
-
meta?: PageMeta;
|
|
10
|
-
readonly items?: Array<StripeAccount> | null;
|
|
11
|
-
};
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { PageMeta } from './PageMeta';
|
|
6
|
+
import type { StripeAccount } from './StripeAccount';
|
|
7
|
+
|
|
8
|
+
export type StripeAccountPage = {
|
|
9
|
+
meta?: PageMeta;
|
|
10
|
+
readonly items?: Array<StripeAccount> | null;
|
|
11
|
+
};
|