reach-api-sdk 1.0.220 → 1.0.222
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 +961 -265
- package/dist/reach-sdk.js +536 -1
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +2635 -899
- package/src/index.ts +6 -0
- package/src/models/TenantFaq.ts +54 -0
- package/src/models/TenantFaqPage.ts +12 -0
- package/src/models/TenantFaqPatch.ts +42 -0
- package/src/models/TenantFaqPost.ts +38 -0
- package/src/models/TenantWebsiteSetting.ts +8 -0
- package/src/models/TenantWebsiteSettingPatch.ts +8 -0
- package/src/services/PublicTenantFaqsService.ts +264 -0
- package/src/services/TenantFaqsService.ts +752 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -2337,6 +2337,14 @@ type TenantWebsiteSetting = {
|
|
|
2337
2337
|
*/
|
|
2338
2338
|
defaultMapCenterPlaceId?: string | null;
|
|
2339
2339
|
websiteHomepage?: WebsiteHomepage;
|
|
2340
|
+
/**
|
|
2341
|
+
* Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
|
|
2342
|
+
*/
|
|
2343
|
+
checkoutGatingMessageEnabled?: boolean | null;
|
|
2344
|
+
/**
|
|
2345
|
+
* Gets or sets the message shown to customers in a modal before they proceed to the checkout flow. Only shown when Reach.Models.TenantWebsiteSetting.CheckoutGatingMessageEnabled is true.
|
|
2346
|
+
*/
|
|
2347
|
+
checkoutGatingMessage?: string | null;
|
|
2340
2348
|
};
|
|
2341
2349
|
|
|
2342
2350
|
/**
|
|
@@ -45998,136 +46006,10 @@ declare class PublicSurveysService {
|
|
|
45998
46006
|
}): CancelablePromise<boolean>;
|
|
45999
46007
|
}
|
|
46000
46008
|
|
|
46001
|
-
type TenantPage = {
|
|
46002
|
-
pagination: Pagination;
|
|
46003
|
-
readonly items: Array<Tenant>;
|
|
46004
|
-
};
|
|
46005
|
-
|
|
46006
46009
|
/**
|
|
46007
|
-
*
|
|
46010
|
+
* Represents a single Frequently Asked Question entry owned by a tenant.
|
|
46008
46011
|
*/
|
|
46009
|
-
type
|
|
46010
|
-
/**
|
|
46011
|
-
* Gets or sets the tenant Id.
|
|
46012
|
-
*/
|
|
46013
|
-
tenantId: string;
|
|
46014
|
-
/**
|
|
46015
|
-
* Gets or sets the Id.
|
|
46016
|
-
*/
|
|
46017
|
-
id: string;
|
|
46018
|
-
/**
|
|
46019
|
-
* Gets or sets the name of the organisation.
|
|
46020
|
-
*/
|
|
46021
|
-
name?: string | null;
|
|
46022
|
-
/**
|
|
46023
|
-
* Gets or sets the organisations contact email address.
|
|
46024
|
-
*/
|
|
46025
|
-
contactEmail?: string | null;
|
|
46026
|
-
/**
|
|
46027
|
-
* Gets or sets the organisation logo url.
|
|
46028
|
-
*/
|
|
46029
|
-
logoUrl?: string | null;
|
|
46030
|
-
/**
|
|
46031
|
-
* Gets or sets the organisations country id.
|
|
46032
|
-
*/
|
|
46033
|
-
countryId?: number | null;
|
|
46034
|
-
/**
|
|
46035
|
-
* Gets or sets the tenants time zone.
|
|
46036
|
-
*/
|
|
46037
|
-
timeZoneTz?: string | null;
|
|
46038
|
-
/**
|
|
46039
|
-
* Gets or sets the organisations tax amount as a percentage.
|
|
46040
|
-
*/
|
|
46041
|
-
taxAmount?: number | null;
|
|
46042
|
-
/**
|
|
46043
|
-
* Gets or sets the organisations tax Id.
|
|
46044
|
-
*/
|
|
46045
|
-
taxId?: number;
|
|
46046
|
-
refundPolicy?: OrganisationRefundPolicy;
|
|
46047
|
-
/**
|
|
46048
|
-
* Gets or sets the organisations social media Urls.
|
|
46049
|
-
*/
|
|
46050
|
-
facebookUrl?: string | null;
|
|
46051
|
-
/**
|
|
46052
|
-
* Gets or sets the organisations social media Urls.
|
|
46053
|
-
*/
|
|
46054
|
-
twitterUrl?: string | null;
|
|
46055
|
-
/**
|
|
46056
|
-
* Gets or sets the organisations social media Urls.
|
|
46057
|
-
*/
|
|
46058
|
-
instagramUrl?: string | null;
|
|
46059
|
-
/**
|
|
46060
|
-
* Gets or sets the organisations website url.
|
|
46061
|
-
*/
|
|
46062
|
-
websiteUrl?: string | null;
|
|
46063
|
-
/**
|
|
46064
|
-
* Gets or sets a value indicating whether the tenant is using a custom cancellation policy.
|
|
46065
|
-
*/
|
|
46066
|
-
useCustomCancellationPolicy?: boolean | null;
|
|
46067
|
-
/**
|
|
46068
|
-
* Gets or sets the custom policy url.
|
|
46069
|
-
*/
|
|
46070
|
-
customPolicyUrl?: string | null;
|
|
46071
|
-
/**
|
|
46072
|
-
* Gets or sets a value indicating whether charges are enabled and the tenants customers can pay online.
|
|
46073
|
-
*/
|
|
46074
|
-
allowStripeSubAccounts?: boolean | null;
|
|
46075
|
-
/**
|
|
46076
|
-
* Gets or sets a value indicating whether charges are enabled and the tenants customers can pay online.
|
|
46077
|
-
*/
|
|
46078
|
-
allowPaymentFallBack?: boolean | null;
|
|
46079
|
-
/**
|
|
46080
|
-
* Gets or sets a value indicating whether the openactive feed is enabled for the tenant.
|
|
46081
|
-
*/
|
|
46082
|
-
openActiveFeedEnabled?: boolean | null;
|
|
46083
|
-
};
|
|
46084
|
-
|
|
46085
|
-
/**
|
|
46086
|
-
* Post model for tenant inserts.
|
|
46087
|
-
*/
|
|
46088
|
-
type TenantPost = {
|
|
46089
|
-
/**
|
|
46090
|
-
* Gets or sets the tenant Id.
|
|
46091
|
-
*/
|
|
46092
|
-
tenantId: string;
|
|
46093
|
-
/**
|
|
46094
|
-
* Gets or sets the Id.
|
|
46095
|
-
*/
|
|
46096
|
-
id: string;
|
|
46097
|
-
/**
|
|
46098
|
-
* Gets or sets the name of the organisation.
|
|
46099
|
-
*/
|
|
46100
|
-
name: string;
|
|
46101
|
-
/**
|
|
46102
|
-
* Gets or sets the organisations contact email address.
|
|
46103
|
-
*/
|
|
46104
|
-
contactEmail?: string | null;
|
|
46105
|
-
/**
|
|
46106
|
-
* Gets or sets the organisations country id.
|
|
46107
|
-
*/
|
|
46108
|
-
countryId: number;
|
|
46109
|
-
/**
|
|
46110
|
-
* Gets or sets the organisation website url.
|
|
46111
|
-
*/
|
|
46112
|
-
websiteUrl?: string | null;
|
|
46113
|
-
/**
|
|
46114
|
-
* Gets or sets the tenants time zone.
|
|
46115
|
-
*/
|
|
46116
|
-
timeZoneTz: string;
|
|
46117
|
-
};
|
|
46118
|
-
|
|
46119
|
-
/**
|
|
46120
|
-
* Controls the wallet tracking level (customer or attendee).
|
|
46121
|
-
*/
|
|
46122
|
-
declare enum WalletTrackingLevel {
|
|
46123
|
-
CUSTOMER = "Customer",
|
|
46124
|
-
ATTENDEE = "Attendee"
|
|
46125
|
-
}
|
|
46126
|
-
|
|
46127
|
-
/**
|
|
46128
|
-
* Represents an organisation within the Reach application.
|
|
46129
|
-
*/
|
|
46130
|
-
type TenantSetting = {
|
|
46012
|
+
type TenantFaq = {
|
|
46131
46013
|
/**
|
|
46132
46014
|
* Gets or sets the entities Id.
|
|
46133
46015
|
*/
|
|
@@ -46153,166 +46035,490 @@ type TenantSetting = {
|
|
|
46153
46035
|
*/
|
|
46154
46036
|
isLive: boolean;
|
|
46155
46037
|
/**
|
|
46156
|
-
* Gets or sets the
|
|
46157
|
-
*/
|
|
46158
|
-
orderNumberPrefix?: string | null;
|
|
46159
|
-
/**
|
|
46160
|
-
* Gets or sets the next order number in the sequence.
|
|
46161
|
-
*/
|
|
46162
|
-
orderNumberValue?: number;
|
|
46163
|
-
/**
|
|
46164
|
-
* Gets or sets the Played platforms application fee percentage per transaction.
|
|
46165
|
-
*/
|
|
46166
|
-
applicationFee?: number | null;
|
|
46167
|
-
/**
|
|
46168
|
-
* Gets or sets a value indicating whether payment policies are enabled for the tenant (only applicable to enterprise tenants).
|
|
46169
|
-
*/
|
|
46170
|
-
enablePaymentPolicies?: boolean;
|
|
46171
|
-
/**
|
|
46172
|
-
* Gets or sets a value indicating whether providers are enabled for the tenant (only applicable to enterprise tenants).
|
|
46173
|
-
*/
|
|
46174
|
-
enableProviders?: boolean;
|
|
46175
|
-
/**
|
|
46176
|
-
* Gets or sets a value indicating whether programmes are enabled for the tenant (only applicable to enterprise tenants).
|
|
46038
|
+
* Gets or sets the question text.
|
|
46177
46039
|
*/
|
|
46178
|
-
|
|
46179
|
-
walletTrackingLevel?: WalletTrackingLevel;
|
|
46040
|
+
question?: string | null;
|
|
46180
46041
|
/**
|
|
46181
|
-
* Gets or sets
|
|
46182
|
-
* When enabled, prices will be displayed as 'credits' rather than currency.
|
|
46042
|
+
* Gets or sets the answer text. Stored as sanitized HTML (basic formatting only - paragraphs, bullets, links).
|
|
46183
46043
|
*/
|
|
46184
|
-
|
|
46185
|
-
/**
|
|
46186
|
-
* Gets or sets a value indicating whether customer portal WorkOS login is restricted to pre-provisioned customers only.
|
|
46187
|
-
* When true, the authenticated email must match a live customer row (email or display_email) for this tenant.
|
|
46188
|
-
*/
|
|
46189
|
-
customerLoginRequiresPreprovision?: boolean;
|
|
46044
|
+
answer?: string | null;
|
|
46190
46045
|
/**
|
|
46191
|
-
* Gets or sets
|
|
46192
|
-
* When false (default), anonymous browsing is allowed.
|
|
46046
|
+
* Gets or sets the display order for the FAQ within the tenant list. Lower values appear first.
|
|
46193
46047
|
*/
|
|
46194
|
-
|
|
46048
|
+
sortOrder?: number;
|
|
46195
46049
|
/**
|
|
46196
|
-
* Gets or sets a value indicating whether
|
|
46197
|
-
* When false (default), storefronts should hide WorkOS sign-in; use for phased rollout per tenant.
|
|
46050
|
+
* Gets or sets a value indicating whether this FAQ is shown on the public storefront.
|
|
46198
46051
|
*/
|
|
46199
|
-
|
|
46052
|
+
showOnStorefront?: boolean;
|
|
46200
46053
|
/**
|
|
46201
|
-
* Gets
|
|
46054
|
+
* Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
46202
46055
|
*/
|
|
46203
|
-
|
|
46056
|
+
showOnCustomerPortal?: boolean;
|
|
46204
46057
|
};
|
|
46205
46058
|
|
|
46206
|
-
|
|
46059
|
+
type TenantFaqPage = {
|
|
46060
|
+
pagination: Pagination;
|
|
46061
|
+
readonly items: Array<TenantFaq>;
|
|
46062
|
+
};
|
|
46063
|
+
|
|
46064
|
+
declare class PublicTenantFaqsService {
|
|
46207
46065
|
readonly httpRequest: BaseHttpRequest;
|
|
46208
46066
|
constructor(httpRequest: BaseHttpRequest);
|
|
46209
46067
|
/**
|
|
46210
|
-
*
|
|
46211
|
-
* @returns Tenant OK
|
|
46212
|
-
* @throws ApiError
|
|
46213
|
-
*/
|
|
46214
|
-
init({ xTenantSubdomain, }: {
|
|
46215
|
-
/**
|
|
46216
|
-
* The tenants subdomain.
|
|
46217
|
-
*/
|
|
46218
|
-
xTenantSubdomain?: string;
|
|
46219
|
-
}): CancelablePromise<Tenant>;
|
|
46220
|
-
/**
|
|
46221
|
-
* Gets a Reach.Models.Tenant by its subdomain.
|
|
46222
|
-
* @returns Tenant OK
|
|
46068
|
+
* @returns TenantFaq OK
|
|
46223
46069
|
* @throws ApiError
|
|
46224
46070
|
*/
|
|
46225
|
-
|
|
46226
|
-
/**
|
|
46227
|
-
* The tenants id.
|
|
46228
|
-
*/
|
|
46071
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
46229
46072
|
id: string;
|
|
46230
|
-
}): CancelablePromise<Tenant>;
|
|
46231
|
-
/**
|
|
46232
|
-
* Gets the tenants settings.
|
|
46233
|
-
* @returns TenantSetting OK
|
|
46234
|
-
* @throws ApiError
|
|
46235
|
-
*/
|
|
46236
|
-
getSettings({ xTenantSubdomain, }: {
|
|
46237
|
-
/**
|
|
46238
|
-
* The tenants subdomain.
|
|
46239
|
-
*/
|
|
46240
46073
|
xTenantSubdomain?: string;
|
|
46241
|
-
}): CancelablePromise<
|
|
46242
|
-
/**
|
|
46243
|
-
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
46244
|
-
* @returns Tenant OK
|
|
46245
|
-
* @throws ApiError
|
|
46246
|
-
*/
|
|
46247
|
-
post({ xTenantSubdomain, requestBody, }: {
|
|
46248
|
-
/**
|
|
46249
|
-
* The tenants subdomain.
|
|
46250
|
-
*/
|
|
46251
|
-
xTenantSubdomain?: string;
|
|
46252
|
-
/**
|
|
46253
|
-
* The <typeparamref name="TObject" /> model.
|
|
46254
|
-
*/
|
|
46255
|
-
requestBody?: TenantPost;
|
|
46256
|
-
}): CancelablePromise<Tenant>;
|
|
46074
|
+
}): CancelablePromise<TenantFaq>;
|
|
46257
46075
|
/**
|
|
46258
|
-
*
|
|
46259
|
-
* @returns Tenant OK
|
|
46076
|
+
* @returns TenantFaqPage OK
|
|
46260
46077
|
* @throws ApiError
|
|
46261
46078
|
*/
|
|
46262
|
-
|
|
46263
|
-
/**
|
|
46264
|
-
* The tenants subdomain.
|
|
46265
|
-
*/
|
|
46079
|
+
getPage({ xTenantSubdomain, ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
46266
46080
|
xTenantSubdomain?: string;
|
|
46267
46081
|
/**
|
|
46268
|
-
*
|
|
46082
|
+
* Gets or sets the queryable tenant FAQ ids.
|
|
46269
46083
|
*/
|
|
46270
|
-
|
|
46271
|
-
}): CancelablePromise<Tenant>;
|
|
46272
|
-
/**
|
|
46273
|
-
* Inserts a list of resources.
|
|
46274
|
-
* @returns Tenant OK
|
|
46275
|
-
* @throws ApiError
|
|
46276
|
-
*/
|
|
46277
|
-
postList({ xTenantSubdomain, requestBody, }: {
|
|
46278
|
-
/**
|
|
46279
|
-
* The tenants subdomain.
|
|
46280
|
-
*/
|
|
46281
|
-
xTenantSubdomain?: string;
|
|
46282
|
-
/**
|
|
46283
|
-
* The list of <typeparamref name="TObject" />.
|
|
46284
|
-
*/
|
|
46285
|
-
requestBody?: Array<TenantPost>;
|
|
46286
|
-
}): CancelablePromise<Array<Tenant>>;
|
|
46287
|
-
/**
|
|
46288
|
-
* Deletes the resource.
|
|
46289
|
-
* @returns any OK
|
|
46290
|
-
* @throws ApiError
|
|
46291
|
-
*/
|
|
46292
|
-
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
46293
|
-
/**
|
|
46294
|
-
* The tenants subdomain.
|
|
46295
|
-
*/
|
|
46296
|
-
xTenantSubdomain?: string;
|
|
46297
|
-
/**
|
|
46298
|
-
* The <typeparamref name="TObject" /> model.
|
|
46299
|
-
*/
|
|
46300
|
-
requestBody?: Tenant;
|
|
46301
|
-
}): CancelablePromise<any>;
|
|
46302
|
-
/**
|
|
46303
|
-
* Gets a list of resources.
|
|
46304
|
-
* @returns TenantPage OK
|
|
46305
|
-
* @throws ApiError
|
|
46306
|
-
*/
|
|
46307
|
-
getPage({ xTenantSubdomain, subDomain, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
46084
|
+
ids?: Array<string>;
|
|
46308
46085
|
/**
|
|
46309
|
-
*
|
|
46086
|
+
* Gets or sets the queryable ShowOnStorefront value.
|
|
46310
46087
|
*/
|
|
46311
|
-
|
|
46088
|
+
showOnStorefront?: boolean;
|
|
46312
46089
|
/**
|
|
46313
|
-
* Gets or sets the queryable
|
|
46090
|
+
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
46314
46091
|
*/
|
|
46315
|
-
|
|
46092
|
+
showOnCustomerPortal?: boolean;
|
|
46093
|
+
/**
|
|
46094
|
+
* Gets or sets the page number for paged queries.
|
|
46095
|
+
*/
|
|
46096
|
+
pageNumber?: number;
|
|
46097
|
+
/**
|
|
46098
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
46099
|
+
*/
|
|
46100
|
+
take?: number;
|
|
46101
|
+
/**
|
|
46102
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
46103
|
+
*/
|
|
46104
|
+
skip?: number;
|
|
46105
|
+
/**
|
|
46106
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
46107
|
+
*/
|
|
46108
|
+
limitListRequests?: boolean;
|
|
46109
|
+
/**
|
|
46110
|
+
* Gets or sets the Tenant Id.
|
|
46111
|
+
*/
|
|
46112
|
+
tenantId?: string;
|
|
46113
|
+
/**
|
|
46114
|
+
* Gets or sets the Modifed By Id.
|
|
46115
|
+
*/
|
|
46116
|
+
modifiedById?: string;
|
|
46117
|
+
/**
|
|
46118
|
+
* Gets or sets the Modifed By Ids.
|
|
46119
|
+
*/
|
|
46120
|
+
modifiedByIds?: Array<string>;
|
|
46121
|
+
/**
|
|
46122
|
+
* Gets or sets the Date Created greater than equal to.
|
|
46123
|
+
*/
|
|
46124
|
+
dateCreatedGte?: string;
|
|
46125
|
+
/**
|
|
46126
|
+
* Gets or sets the Date Created less than equal to.
|
|
46127
|
+
*/
|
|
46128
|
+
dateCreatedLte?: string;
|
|
46129
|
+
/**
|
|
46130
|
+
* Gets or sets the queryable only is live status.
|
|
46131
|
+
*/
|
|
46132
|
+
isLive?: boolean;
|
|
46133
|
+
/**
|
|
46134
|
+
* Gets or sets the sort order direction.
|
|
46135
|
+
*/
|
|
46136
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
46137
|
+
}): CancelablePromise<TenantFaqPage>;
|
|
46138
|
+
/**
|
|
46139
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
46140
|
+
* @returns boolean OK
|
|
46141
|
+
* @throws ApiError
|
|
46142
|
+
*/
|
|
46143
|
+
exists({ xTenantSubdomain, ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
46144
|
+
/**
|
|
46145
|
+
* The tenants subdomain.
|
|
46146
|
+
*/
|
|
46147
|
+
xTenantSubdomain?: string;
|
|
46148
|
+
/**
|
|
46149
|
+
* Gets or sets the queryable tenant FAQ ids.
|
|
46150
|
+
*/
|
|
46151
|
+
ids?: Array<string>;
|
|
46152
|
+
/**
|
|
46153
|
+
* Gets or sets the queryable ShowOnStorefront value.
|
|
46154
|
+
*/
|
|
46155
|
+
showOnStorefront?: boolean;
|
|
46156
|
+
/**
|
|
46157
|
+
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
46158
|
+
*/
|
|
46159
|
+
showOnCustomerPortal?: boolean;
|
|
46160
|
+
/**
|
|
46161
|
+
* Gets or sets the page number for paged queries.
|
|
46162
|
+
*/
|
|
46163
|
+
pageNumber?: number;
|
|
46164
|
+
/**
|
|
46165
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
46166
|
+
*/
|
|
46167
|
+
take?: number;
|
|
46168
|
+
/**
|
|
46169
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
46170
|
+
*/
|
|
46171
|
+
skip?: number;
|
|
46172
|
+
/**
|
|
46173
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
46174
|
+
*/
|
|
46175
|
+
limitListRequests?: boolean;
|
|
46176
|
+
/**
|
|
46177
|
+
* Gets or sets the Tenant Id.
|
|
46178
|
+
*/
|
|
46179
|
+
tenantId?: string;
|
|
46180
|
+
/**
|
|
46181
|
+
* Gets or sets the Modifed By Id.
|
|
46182
|
+
*/
|
|
46183
|
+
modifiedById?: string;
|
|
46184
|
+
/**
|
|
46185
|
+
* Gets or sets the Modifed By Ids.
|
|
46186
|
+
*/
|
|
46187
|
+
modifiedByIds?: Array<string>;
|
|
46188
|
+
/**
|
|
46189
|
+
* Gets or sets the Date Created greater than equal to.
|
|
46190
|
+
*/
|
|
46191
|
+
dateCreatedGte?: string;
|
|
46192
|
+
/**
|
|
46193
|
+
* Gets or sets the Date Created less than equal to.
|
|
46194
|
+
*/
|
|
46195
|
+
dateCreatedLte?: string;
|
|
46196
|
+
/**
|
|
46197
|
+
* Gets or sets the queryable only is live status.
|
|
46198
|
+
*/
|
|
46199
|
+
isLive?: boolean;
|
|
46200
|
+
/**
|
|
46201
|
+
* Gets or sets the sort order direction.
|
|
46202
|
+
*/
|
|
46203
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
46204
|
+
}): CancelablePromise<boolean>;
|
|
46205
|
+
}
|
|
46206
|
+
|
|
46207
|
+
type TenantPage = {
|
|
46208
|
+
pagination: Pagination;
|
|
46209
|
+
readonly items: Array<Tenant>;
|
|
46210
|
+
};
|
|
46211
|
+
|
|
46212
|
+
/**
|
|
46213
|
+
* Post model for tenant updates.
|
|
46214
|
+
*/
|
|
46215
|
+
type TenantPatch = {
|
|
46216
|
+
/**
|
|
46217
|
+
* Gets or sets the tenant Id.
|
|
46218
|
+
*/
|
|
46219
|
+
tenantId: string;
|
|
46220
|
+
/**
|
|
46221
|
+
* Gets or sets the Id.
|
|
46222
|
+
*/
|
|
46223
|
+
id: string;
|
|
46224
|
+
/**
|
|
46225
|
+
* Gets or sets the name of the organisation.
|
|
46226
|
+
*/
|
|
46227
|
+
name?: string | null;
|
|
46228
|
+
/**
|
|
46229
|
+
* Gets or sets the organisations contact email address.
|
|
46230
|
+
*/
|
|
46231
|
+
contactEmail?: string | null;
|
|
46232
|
+
/**
|
|
46233
|
+
* Gets or sets the organisation logo url.
|
|
46234
|
+
*/
|
|
46235
|
+
logoUrl?: string | null;
|
|
46236
|
+
/**
|
|
46237
|
+
* Gets or sets the organisations country id.
|
|
46238
|
+
*/
|
|
46239
|
+
countryId?: number | null;
|
|
46240
|
+
/**
|
|
46241
|
+
* Gets or sets the tenants time zone.
|
|
46242
|
+
*/
|
|
46243
|
+
timeZoneTz?: string | null;
|
|
46244
|
+
/**
|
|
46245
|
+
* Gets or sets the organisations tax amount as a percentage.
|
|
46246
|
+
*/
|
|
46247
|
+
taxAmount?: number | null;
|
|
46248
|
+
/**
|
|
46249
|
+
* Gets or sets the organisations tax Id.
|
|
46250
|
+
*/
|
|
46251
|
+
taxId?: number;
|
|
46252
|
+
refundPolicy?: OrganisationRefundPolicy;
|
|
46253
|
+
/**
|
|
46254
|
+
* Gets or sets the organisations social media Urls.
|
|
46255
|
+
*/
|
|
46256
|
+
facebookUrl?: string | null;
|
|
46257
|
+
/**
|
|
46258
|
+
* Gets or sets the organisations social media Urls.
|
|
46259
|
+
*/
|
|
46260
|
+
twitterUrl?: string | null;
|
|
46261
|
+
/**
|
|
46262
|
+
* Gets or sets the organisations social media Urls.
|
|
46263
|
+
*/
|
|
46264
|
+
instagramUrl?: string | null;
|
|
46265
|
+
/**
|
|
46266
|
+
* Gets or sets the organisations website url.
|
|
46267
|
+
*/
|
|
46268
|
+
websiteUrl?: string | null;
|
|
46269
|
+
/**
|
|
46270
|
+
* Gets or sets a value indicating whether the tenant is using a custom cancellation policy.
|
|
46271
|
+
*/
|
|
46272
|
+
useCustomCancellationPolicy?: boolean | null;
|
|
46273
|
+
/**
|
|
46274
|
+
* Gets or sets the custom policy url.
|
|
46275
|
+
*/
|
|
46276
|
+
customPolicyUrl?: string | null;
|
|
46277
|
+
/**
|
|
46278
|
+
* Gets or sets a value indicating whether charges are enabled and the tenants customers can pay online.
|
|
46279
|
+
*/
|
|
46280
|
+
allowStripeSubAccounts?: boolean | null;
|
|
46281
|
+
/**
|
|
46282
|
+
* Gets or sets a value indicating whether charges are enabled and the tenants customers can pay online.
|
|
46283
|
+
*/
|
|
46284
|
+
allowPaymentFallBack?: boolean | null;
|
|
46285
|
+
/**
|
|
46286
|
+
* Gets or sets a value indicating whether the openactive feed is enabled for the tenant.
|
|
46287
|
+
*/
|
|
46288
|
+
openActiveFeedEnabled?: boolean | null;
|
|
46289
|
+
};
|
|
46290
|
+
|
|
46291
|
+
/**
|
|
46292
|
+
* Post model for tenant inserts.
|
|
46293
|
+
*/
|
|
46294
|
+
type TenantPost = {
|
|
46295
|
+
/**
|
|
46296
|
+
* Gets or sets the tenant Id.
|
|
46297
|
+
*/
|
|
46298
|
+
tenantId: string;
|
|
46299
|
+
/**
|
|
46300
|
+
* Gets or sets the Id.
|
|
46301
|
+
*/
|
|
46302
|
+
id: string;
|
|
46303
|
+
/**
|
|
46304
|
+
* Gets or sets the name of the organisation.
|
|
46305
|
+
*/
|
|
46306
|
+
name: string;
|
|
46307
|
+
/**
|
|
46308
|
+
* Gets or sets the organisations contact email address.
|
|
46309
|
+
*/
|
|
46310
|
+
contactEmail?: string | null;
|
|
46311
|
+
/**
|
|
46312
|
+
* Gets or sets the organisations country id.
|
|
46313
|
+
*/
|
|
46314
|
+
countryId: number;
|
|
46315
|
+
/**
|
|
46316
|
+
* Gets or sets the organisation website url.
|
|
46317
|
+
*/
|
|
46318
|
+
websiteUrl?: string | null;
|
|
46319
|
+
/**
|
|
46320
|
+
* Gets or sets the tenants time zone.
|
|
46321
|
+
*/
|
|
46322
|
+
timeZoneTz: string;
|
|
46323
|
+
};
|
|
46324
|
+
|
|
46325
|
+
/**
|
|
46326
|
+
* Controls the wallet tracking level (customer or attendee).
|
|
46327
|
+
*/
|
|
46328
|
+
declare enum WalletTrackingLevel {
|
|
46329
|
+
CUSTOMER = "Customer",
|
|
46330
|
+
ATTENDEE = "Attendee"
|
|
46331
|
+
}
|
|
46332
|
+
|
|
46333
|
+
/**
|
|
46334
|
+
* Represents an organisation within the Reach application.
|
|
46335
|
+
*/
|
|
46336
|
+
type TenantSetting = {
|
|
46337
|
+
/**
|
|
46338
|
+
* Gets or sets the entities Id.
|
|
46339
|
+
*/
|
|
46340
|
+
id?: string;
|
|
46341
|
+
/**
|
|
46342
|
+
* Gets or sets the tenant Id.
|
|
46343
|
+
*/
|
|
46344
|
+
tenantId: string;
|
|
46345
|
+
/**
|
|
46346
|
+
* Gets or sets the created date of this entity.
|
|
46347
|
+
*/
|
|
46348
|
+
dateCreated: string;
|
|
46349
|
+
/**
|
|
46350
|
+
* Gets or sets the last modified date of this entity.
|
|
46351
|
+
*/
|
|
46352
|
+
dateModified: string;
|
|
46353
|
+
/**
|
|
46354
|
+
* Gets or sets the modified by Id.
|
|
46355
|
+
*/
|
|
46356
|
+
modifiedById?: string | null;
|
|
46357
|
+
/**
|
|
46358
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
46359
|
+
*/
|
|
46360
|
+
isLive: boolean;
|
|
46361
|
+
/**
|
|
46362
|
+
* Gets or sets the order number prefix.
|
|
46363
|
+
*/
|
|
46364
|
+
orderNumberPrefix?: string | null;
|
|
46365
|
+
/**
|
|
46366
|
+
* Gets or sets the next order number in the sequence.
|
|
46367
|
+
*/
|
|
46368
|
+
orderNumberValue?: number;
|
|
46369
|
+
/**
|
|
46370
|
+
* Gets or sets the Played platforms application fee percentage per transaction.
|
|
46371
|
+
*/
|
|
46372
|
+
applicationFee?: number | null;
|
|
46373
|
+
/**
|
|
46374
|
+
* Gets or sets a value indicating whether payment policies are enabled for the tenant (only applicable to enterprise tenants).
|
|
46375
|
+
*/
|
|
46376
|
+
enablePaymentPolicies?: boolean;
|
|
46377
|
+
/**
|
|
46378
|
+
* Gets or sets a value indicating whether providers are enabled for the tenant (only applicable to enterprise tenants).
|
|
46379
|
+
*/
|
|
46380
|
+
enableProviders?: boolean;
|
|
46381
|
+
/**
|
|
46382
|
+
* Gets or sets a value indicating whether programmes are enabled for the tenant (only applicable to enterprise tenants).
|
|
46383
|
+
*/
|
|
46384
|
+
enableProgrammes?: boolean;
|
|
46385
|
+
walletTrackingLevel?: WalletTrackingLevel;
|
|
46386
|
+
/**
|
|
46387
|
+
* Gets or sets a value indicating whether customers are only allowed to use wallet transactions (no card payments).
|
|
46388
|
+
* When enabled, prices will be displayed as 'credits' rather than currency.
|
|
46389
|
+
*/
|
|
46390
|
+
walletOnlyPayments?: boolean;
|
|
46391
|
+
/**
|
|
46392
|
+
* Gets or sets a value indicating whether customer portal WorkOS login is restricted to pre-provisioned customers only.
|
|
46393
|
+
* When true, the authenticated email must match a live customer row (email or display_email) for this tenant.
|
|
46394
|
+
*/
|
|
46395
|
+
customerLoginRequiresPreprovision?: boolean;
|
|
46396
|
+
/**
|
|
46397
|
+
* Gets or sets a value indicating whether the storefront requires the customer to be signed in before browsing activities and venues.
|
|
46398
|
+
* When false (default), anonymous browsing is allowed.
|
|
46399
|
+
*/
|
|
46400
|
+
storefrontRequiresLoginToBrowse?: boolean;
|
|
46401
|
+
/**
|
|
46402
|
+
* Gets or sets a value indicating whether WorkOS customer-portal auth is enabled for this tenant.
|
|
46403
|
+
* When false (default), storefronts should hide WorkOS sign-in; use for phased rollout per tenant.
|
|
46404
|
+
*/
|
|
46405
|
+
customerPortalWorkOsLoginEnabled?: boolean;
|
|
46406
|
+
/**
|
|
46407
|
+
* Gets the next order number in the sequence.
|
|
46408
|
+
*/
|
|
46409
|
+
readonly orderNumber?: string | null;
|
|
46410
|
+
};
|
|
46411
|
+
|
|
46412
|
+
declare class PublicTenantsService {
|
|
46413
|
+
readonly httpRequest: BaseHttpRequest;
|
|
46414
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
46415
|
+
/**
|
|
46416
|
+
* Gets a Reach.Models.Tenant by its subdomain.
|
|
46417
|
+
* @returns Tenant OK
|
|
46418
|
+
* @throws ApiError
|
|
46419
|
+
*/
|
|
46420
|
+
init({ xTenantSubdomain, }: {
|
|
46421
|
+
/**
|
|
46422
|
+
* The tenants subdomain.
|
|
46423
|
+
*/
|
|
46424
|
+
xTenantSubdomain?: string;
|
|
46425
|
+
}): CancelablePromise<Tenant>;
|
|
46426
|
+
/**
|
|
46427
|
+
* Gets a Reach.Models.Tenant by its subdomain.
|
|
46428
|
+
* @returns Tenant OK
|
|
46429
|
+
* @throws ApiError
|
|
46430
|
+
*/
|
|
46431
|
+
initById({ id, }: {
|
|
46432
|
+
/**
|
|
46433
|
+
* The tenants id.
|
|
46434
|
+
*/
|
|
46435
|
+
id: string;
|
|
46436
|
+
}): CancelablePromise<Tenant>;
|
|
46437
|
+
/**
|
|
46438
|
+
* Gets the tenants settings.
|
|
46439
|
+
* @returns TenantSetting OK
|
|
46440
|
+
* @throws ApiError
|
|
46441
|
+
*/
|
|
46442
|
+
getSettings({ xTenantSubdomain, }: {
|
|
46443
|
+
/**
|
|
46444
|
+
* The tenants subdomain.
|
|
46445
|
+
*/
|
|
46446
|
+
xTenantSubdomain?: string;
|
|
46447
|
+
}): CancelablePromise<TenantSetting>;
|
|
46448
|
+
/**
|
|
46449
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
46450
|
+
* @returns Tenant OK
|
|
46451
|
+
* @throws ApiError
|
|
46452
|
+
*/
|
|
46453
|
+
post({ xTenantSubdomain, requestBody, }: {
|
|
46454
|
+
/**
|
|
46455
|
+
* The tenants subdomain.
|
|
46456
|
+
*/
|
|
46457
|
+
xTenantSubdomain?: string;
|
|
46458
|
+
/**
|
|
46459
|
+
* The <typeparamref name="TObject" /> model.
|
|
46460
|
+
*/
|
|
46461
|
+
requestBody?: TenantPost;
|
|
46462
|
+
}): CancelablePromise<Tenant>;
|
|
46463
|
+
/**
|
|
46464
|
+
* Patches the resource.
|
|
46465
|
+
* @returns Tenant OK
|
|
46466
|
+
* @throws ApiError
|
|
46467
|
+
*/
|
|
46468
|
+
patch({ xTenantSubdomain, requestBody, }: {
|
|
46469
|
+
/**
|
|
46470
|
+
* The tenants subdomain.
|
|
46471
|
+
*/
|
|
46472
|
+
xTenantSubdomain?: string;
|
|
46473
|
+
/**
|
|
46474
|
+
* The <typeparamref name="TObject" /> model.
|
|
46475
|
+
*/
|
|
46476
|
+
requestBody?: TenantPatch;
|
|
46477
|
+
}): CancelablePromise<Tenant>;
|
|
46478
|
+
/**
|
|
46479
|
+
* Inserts a list of resources.
|
|
46480
|
+
* @returns Tenant OK
|
|
46481
|
+
* @throws ApiError
|
|
46482
|
+
*/
|
|
46483
|
+
postList({ xTenantSubdomain, requestBody, }: {
|
|
46484
|
+
/**
|
|
46485
|
+
* The tenants subdomain.
|
|
46486
|
+
*/
|
|
46487
|
+
xTenantSubdomain?: string;
|
|
46488
|
+
/**
|
|
46489
|
+
* The list of <typeparamref name="TObject" />.
|
|
46490
|
+
*/
|
|
46491
|
+
requestBody?: Array<TenantPost>;
|
|
46492
|
+
}): CancelablePromise<Array<Tenant>>;
|
|
46493
|
+
/**
|
|
46494
|
+
* Deletes the resource.
|
|
46495
|
+
* @returns any OK
|
|
46496
|
+
* @throws ApiError
|
|
46497
|
+
*/
|
|
46498
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
46499
|
+
/**
|
|
46500
|
+
* The tenants subdomain.
|
|
46501
|
+
*/
|
|
46502
|
+
xTenantSubdomain?: string;
|
|
46503
|
+
/**
|
|
46504
|
+
* The <typeparamref name="TObject" /> model.
|
|
46505
|
+
*/
|
|
46506
|
+
requestBody?: Tenant;
|
|
46507
|
+
}): CancelablePromise<any>;
|
|
46508
|
+
/**
|
|
46509
|
+
* Gets a list of resources.
|
|
46510
|
+
* @returns TenantPage OK
|
|
46511
|
+
* @throws ApiError
|
|
46512
|
+
*/
|
|
46513
|
+
getPage({ xTenantSubdomain, subDomain, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
46514
|
+
/**
|
|
46515
|
+
* The tenants subdomain.
|
|
46516
|
+
*/
|
|
46517
|
+
xTenantSubdomain?: string;
|
|
46518
|
+
/**
|
|
46519
|
+
* Gets or sets the queryable sub domain.
|
|
46520
|
+
*/
|
|
46521
|
+
subDomain?: string;
|
|
46316
46522
|
/**
|
|
46317
46523
|
* Gets or sets the page number for paged queries.
|
|
46318
46524
|
*/
|
|
@@ -61574,14 +61780,209 @@ declare class TemplatesService {
|
|
|
61574
61780
|
}): CancelablePromise<Array<Template>>;
|
|
61575
61781
|
/**
|
|
61576
61782
|
* Gets a list of resources.
|
|
61577
|
-
* @returns Template OK
|
|
61783
|
+
* @returns Template OK
|
|
61784
|
+
* @throws ApiError
|
|
61785
|
+
*/
|
|
61786
|
+
getListIdName({ ids, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61787
|
+
/**
|
|
61788
|
+
* Gets or sets the queryable template ids.
|
|
61789
|
+
*/
|
|
61790
|
+
ids?: Array<string>;
|
|
61791
|
+
/**
|
|
61792
|
+
* Gets or sets the page number for paged queries.
|
|
61793
|
+
*/
|
|
61794
|
+
pageNumber?: number;
|
|
61795
|
+
/**
|
|
61796
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
61797
|
+
*/
|
|
61798
|
+
take?: number;
|
|
61799
|
+
/**
|
|
61800
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
61801
|
+
*/
|
|
61802
|
+
skip?: number;
|
|
61803
|
+
/**
|
|
61804
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
61805
|
+
*/
|
|
61806
|
+
limitListRequests?: boolean;
|
|
61807
|
+
/**
|
|
61808
|
+
* Gets or sets the Tenant Id.
|
|
61809
|
+
*/
|
|
61810
|
+
tenantId?: string;
|
|
61811
|
+
/**
|
|
61812
|
+
* Gets or sets the Modifed By Id.
|
|
61813
|
+
*/
|
|
61814
|
+
modifiedById?: string;
|
|
61815
|
+
/**
|
|
61816
|
+
* Gets or sets the Modifed By Ids.
|
|
61817
|
+
*/
|
|
61818
|
+
modifiedByIds?: Array<string>;
|
|
61819
|
+
/**
|
|
61820
|
+
* Gets or sets the Date Created greater than equal to.
|
|
61821
|
+
*/
|
|
61822
|
+
dateCreatedGte?: string;
|
|
61823
|
+
/**
|
|
61824
|
+
* Gets or sets the Date Created less than equal to.
|
|
61825
|
+
*/
|
|
61826
|
+
dateCreatedLte?: string;
|
|
61827
|
+
/**
|
|
61828
|
+
* Gets or sets the queryable only is live status.
|
|
61829
|
+
*/
|
|
61830
|
+
isLive?: boolean;
|
|
61831
|
+
/**
|
|
61832
|
+
* Gets or sets the sort order direction.
|
|
61833
|
+
*/
|
|
61834
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
61835
|
+
}): CancelablePromise<Array<Template>>;
|
|
61836
|
+
}
|
|
61837
|
+
|
|
61838
|
+
/**
|
|
61839
|
+
* Patch model for a tenant FAQ entry.
|
|
61840
|
+
*/
|
|
61841
|
+
type TenantFaqPatch = {
|
|
61842
|
+
/**
|
|
61843
|
+
* Gets or sets the tenant Id.
|
|
61844
|
+
*/
|
|
61845
|
+
tenantId: string;
|
|
61846
|
+
/**
|
|
61847
|
+
* Gets or sets the Id.
|
|
61848
|
+
*/
|
|
61849
|
+
id: string;
|
|
61850
|
+
/**
|
|
61851
|
+
* Gets or sets the question text.
|
|
61852
|
+
*/
|
|
61853
|
+
question?: string | null;
|
|
61854
|
+
/**
|
|
61855
|
+
* Gets or sets the answer text (sanitized HTML).
|
|
61856
|
+
*/
|
|
61857
|
+
answer?: string | null;
|
|
61858
|
+
/**
|
|
61859
|
+
* Gets or sets the display order for the FAQ within the tenant list.
|
|
61860
|
+
*/
|
|
61861
|
+
sortOrder?: number;
|
|
61862
|
+
/**
|
|
61863
|
+
* Gets or sets a value indicating whether this FAQ is shown on the public storefront.
|
|
61864
|
+
*/
|
|
61865
|
+
showOnStorefront?: boolean;
|
|
61866
|
+
/**
|
|
61867
|
+
* Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
61868
|
+
*/
|
|
61869
|
+
showOnCustomerPortal?: boolean;
|
|
61870
|
+
/**
|
|
61871
|
+
* Gets or sets a value indicating whether this FAQ is live (published).
|
|
61872
|
+
*/
|
|
61873
|
+
isLive?: boolean;
|
|
61874
|
+
};
|
|
61875
|
+
|
|
61876
|
+
/**
|
|
61877
|
+
* Post model for a tenant FAQ entry.
|
|
61878
|
+
*/
|
|
61879
|
+
type TenantFaqPost = {
|
|
61880
|
+
/**
|
|
61881
|
+
* Gets or sets the tenant Id.
|
|
61882
|
+
*/
|
|
61883
|
+
tenantId: string;
|
|
61884
|
+
/**
|
|
61885
|
+
* Gets or sets the question text.
|
|
61886
|
+
*/
|
|
61887
|
+
question?: string | null;
|
|
61888
|
+
/**
|
|
61889
|
+
* Gets or sets the answer text (sanitized HTML).
|
|
61890
|
+
*/
|
|
61891
|
+
answer?: string | null;
|
|
61892
|
+
/**
|
|
61893
|
+
* Gets or sets the display order for the FAQ within the tenant list.
|
|
61894
|
+
*/
|
|
61895
|
+
sortOrder?: number;
|
|
61896
|
+
/**
|
|
61897
|
+
* Gets or sets a value indicating whether this FAQ is shown on the public storefront.
|
|
61898
|
+
*/
|
|
61899
|
+
showOnStorefront?: boolean;
|
|
61900
|
+
/**
|
|
61901
|
+
* Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
61902
|
+
*/
|
|
61903
|
+
showOnCustomerPortal?: boolean;
|
|
61904
|
+
/**
|
|
61905
|
+
* Gets or sets a value indicating whether this FAQ is live (published).
|
|
61906
|
+
*/
|
|
61907
|
+
isLive?: boolean;
|
|
61908
|
+
};
|
|
61909
|
+
|
|
61910
|
+
declare class TenantFaqsService {
|
|
61911
|
+
readonly httpRequest: BaseHttpRequest;
|
|
61912
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
61913
|
+
/**
|
|
61914
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
61915
|
+
* @returns TenantFaq OK
|
|
61916
|
+
* @throws ApiError
|
|
61917
|
+
*/
|
|
61918
|
+
post({ requestBody, }: {
|
|
61919
|
+
/**
|
|
61920
|
+
* The <typeparamref name="TObject" /> model.
|
|
61921
|
+
*/
|
|
61922
|
+
requestBody?: TenantFaqPost;
|
|
61923
|
+
}): CancelablePromise<TenantFaq>;
|
|
61924
|
+
/**
|
|
61925
|
+
* Patches the resource.
|
|
61926
|
+
* @returns TenantFaq OK
|
|
61927
|
+
* @throws ApiError
|
|
61928
|
+
*/
|
|
61929
|
+
patch({ requestBody, }: {
|
|
61930
|
+
/**
|
|
61931
|
+
* The <typeparamref name="TObject" /> model.
|
|
61932
|
+
*/
|
|
61933
|
+
requestBody?: TenantFaqPatch;
|
|
61934
|
+
}): CancelablePromise<TenantFaq>;
|
|
61935
|
+
/**
|
|
61936
|
+
* Inserts a list of resources.
|
|
61937
|
+
* @returns TenantFaq OK
|
|
61938
|
+
* @throws ApiError
|
|
61939
|
+
*/
|
|
61940
|
+
postList({ requestBody, }: {
|
|
61941
|
+
/**
|
|
61942
|
+
* The list of <typeparamref name="TObject" />.
|
|
61943
|
+
*/
|
|
61944
|
+
requestBody?: Array<TenantFaqPost>;
|
|
61945
|
+
}): CancelablePromise<Array<TenantFaq>>;
|
|
61946
|
+
/**
|
|
61947
|
+
* Patches the resource.
|
|
61948
|
+
* @returns TenantFaq OK
|
|
61949
|
+
* @throws ApiError
|
|
61950
|
+
*/
|
|
61951
|
+
patchWithReferences({ requestBody, }: {
|
|
61952
|
+
/**
|
|
61953
|
+
* The <typeparamref name="TObject" /> model.
|
|
61954
|
+
*/
|
|
61955
|
+
requestBody?: TenantFaqPatch;
|
|
61956
|
+
}): CancelablePromise<TenantFaq>;
|
|
61957
|
+
/**
|
|
61958
|
+
* Deletes the resource.
|
|
61959
|
+
* @returns any OK
|
|
61960
|
+
* @throws ApiError
|
|
61961
|
+
*/
|
|
61962
|
+
deleteByObject({ requestBody, }: {
|
|
61963
|
+
/**
|
|
61964
|
+
* The <typeparamref name="TObject" /> model.
|
|
61965
|
+
*/
|
|
61966
|
+
requestBody?: TenantFaq;
|
|
61967
|
+
}): CancelablePromise<any>;
|
|
61968
|
+
/**
|
|
61969
|
+
* Gets a list of resources.
|
|
61970
|
+
* @returns TenantFaqPage OK
|
|
61578
61971
|
* @throws ApiError
|
|
61579
61972
|
*/
|
|
61580
|
-
|
|
61973
|
+
getPage({ ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61581
61974
|
/**
|
|
61582
|
-
* Gets or sets the queryable
|
|
61975
|
+
* Gets or sets the queryable tenant FAQ ids.
|
|
61583
61976
|
*/
|
|
61584
61977
|
ids?: Array<string>;
|
|
61978
|
+
/**
|
|
61979
|
+
* Gets or sets the queryable ShowOnStorefront value.
|
|
61980
|
+
*/
|
|
61981
|
+
showOnStorefront?: boolean;
|
|
61982
|
+
/**
|
|
61983
|
+
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
61984
|
+
*/
|
|
61985
|
+
showOnCustomerPortal?: boolean;
|
|
61585
61986
|
/**
|
|
61586
61987
|
* Gets or sets the page number for paged queries.
|
|
61587
61988
|
*/
|
|
@@ -61626,7 +62027,292 @@ declare class TemplatesService {
|
|
|
61626
62027
|
* Gets or sets the sort order direction.
|
|
61627
62028
|
*/
|
|
61628
62029
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
61629
|
-
}): CancelablePromise<
|
|
62030
|
+
}): CancelablePromise<TenantFaqPage>;
|
|
62031
|
+
/**
|
|
62032
|
+
* Deletes the resource.
|
|
62033
|
+
* @returns any OK
|
|
62034
|
+
* @throws ApiError
|
|
62035
|
+
*/
|
|
62036
|
+
deleteById({ id, }: {
|
|
62037
|
+
/**
|
|
62038
|
+
* The <typeparamref name="TObject" /> id.
|
|
62039
|
+
*/
|
|
62040
|
+
id: string;
|
|
62041
|
+
}): CancelablePromise<any>;
|
|
62042
|
+
/**
|
|
62043
|
+
* Gets the resource by its Id.
|
|
62044
|
+
* @returns TenantFaq OK
|
|
62045
|
+
* @throws ApiError
|
|
62046
|
+
*/
|
|
62047
|
+
getObject({ id, }: {
|
|
62048
|
+
/**
|
|
62049
|
+
* The <typeparamref name="TObject" /> id.
|
|
62050
|
+
*/
|
|
62051
|
+
id: string;
|
|
62052
|
+
}): CancelablePromise<TenantFaq>;
|
|
62053
|
+
/**
|
|
62054
|
+
* Returns a value indicating whether the resource is deletable.
|
|
62055
|
+
* @returns boolean OK
|
|
62056
|
+
* @throws ApiError
|
|
62057
|
+
*/
|
|
62058
|
+
canDelete({ id, }: {
|
|
62059
|
+
/**
|
|
62060
|
+
* The <typeparamref name="TObject" /> id.
|
|
62061
|
+
*/
|
|
62062
|
+
id: string;
|
|
62063
|
+
}): CancelablePromise<boolean>;
|
|
62064
|
+
/**
|
|
62065
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
62066
|
+
* @returns boolean OK
|
|
62067
|
+
* @throws ApiError
|
|
62068
|
+
*/
|
|
62069
|
+
exists({ ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62070
|
+
/**
|
|
62071
|
+
* Gets or sets the queryable tenant FAQ ids.
|
|
62072
|
+
*/
|
|
62073
|
+
ids?: Array<string>;
|
|
62074
|
+
/**
|
|
62075
|
+
* Gets or sets the queryable ShowOnStorefront value.
|
|
62076
|
+
*/
|
|
62077
|
+
showOnStorefront?: boolean;
|
|
62078
|
+
/**
|
|
62079
|
+
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
62080
|
+
*/
|
|
62081
|
+
showOnCustomerPortal?: boolean;
|
|
62082
|
+
/**
|
|
62083
|
+
* Gets or sets the page number for paged queries.
|
|
62084
|
+
*/
|
|
62085
|
+
pageNumber?: number;
|
|
62086
|
+
/**
|
|
62087
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
62088
|
+
*/
|
|
62089
|
+
take?: number;
|
|
62090
|
+
/**
|
|
62091
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
62092
|
+
*/
|
|
62093
|
+
skip?: number;
|
|
62094
|
+
/**
|
|
62095
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
62096
|
+
*/
|
|
62097
|
+
limitListRequests?: boolean;
|
|
62098
|
+
/**
|
|
62099
|
+
* Gets or sets the Tenant Id.
|
|
62100
|
+
*/
|
|
62101
|
+
tenantId?: string;
|
|
62102
|
+
/**
|
|
62103
|
+
* Gets or sets the Modifed By Id.
|
|
62104
|
+
*/
|
|
62105
|
+
modifiedById?: string;
|
|
62106
|
+
/**
|
|
62107
|
+
* Gets or sets the Modifed By Ids.
|
|
62108
|
+
*/
|
|
62109
|
+
modifiedByIds?: Array<string>;
|
|
62110
|
+
/**
|
|
62111
|
+
* Gets or sets the Date Created greater than equal to.
|
|
62112
|
+
*/
|
|
62113
|
+
dateCreatedGte?: string;
|
|
62114
|
+
/**
|
|
62115
|
+
* Gets or sets the Date Created less than equal to.
|
|
62116
|
+
*/
|
|
62117
|
+
dateCreatedLte?: string;
|
|
62118
|
+
/**
|
|
62119
|
+
* Gets or sets the queryable only is live status.
|
|
62120
|
+
*/
|
|
62121
|
+
isLive?: boolean;
|
|
62122
|
+
/**
|
|
62123
|
+
* Gets or sets the sort order direction.
|
|
62124
|
+
*/
|
|
62125
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
62126
|
+
}): CancelablePromise<boolean>;
|
|
62127
|
+
/**
|
|
62128
|
+
* Returns the number of results in the database given the provided search params.
|
|
62129
|
+
* @returns number OK
|
|
62130
|
+
* @throws ApiError
|
|
62131
|
+
*/
|
|
62132
|
+
count({ ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62133
|
+
/**
|
|
62134
|
+
* Gets or sets the queryable tenant FAQ ids.
|
|
62135
|
+
*/
|
|
62136
|
+
ids?: Array<string>;
|
|
62137
|
+
/**
|
|
62138
|
+
* Gets or sets the queryable ShowOnStorefront value.
|
|
62139
|
+
*/
|
|
62140
|
+
showOnStorefront?: boolean;
|
|
62141
|
+
/**
|
|
62142
|
+
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
62143
|
+
*/
|
|
62144
|
+
showOnCustomerPortal?: boolean;
|
|
62145
|
+
/**
|
|
62146
|
+
* Gets or sets the page number for paged queries.
|
|
62147
|
+
*/
|
|
62148
|
+
pageNumber?: number;
|
|
62149
|
+
/**
|
|
62150
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
62151
|
+
*/
|
|
62152
|
+
take?: number;
|
|
62153
|
+
/**
|
|
62154
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
62155
|
+
*/
|
|
62156
|
+
skip?: number;
|
|
62157
|
+
/**
|
|
62158
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
62159
|
+
*/
|
|
62160
|
+
limitListRequests?: boolean;
|
|
62161
|
+
/**
|
|
62162
|
+
* Gets or sets the Tenant Id.
|
|
62163
|
+
*/
|
|
62164
|
+
tenantId?: string;
|
|
62165
|
+
/**
|
|
62166
|
+
* Gets or sets the Modifed By Id.
|
|
62167
|
+
*/
|
|
62168
|
+
modifiedById?: string;
|
|
62169
|
+
/**
|
|
62170
|
+
* Gets or sets the Modifed By Ids.
|
|
62171
|
+
*/
|
|
62172
|
+
modifiedByIds?: Array<string>;
|
|
62173
|
+
/**
|
|
62174
|
+
* Gets or sets the Date Created greater than equal to.
|
|
62175
|
+
*/
|
|
62176
|
+
dateCreatedGte?: string;
|
|
62177
|
+
/**
|
|
62178
|
+
* Gets or sets the Date Created less than equal to.
|
|
62179
|
+
*/
|
|
62180
|
+
dateCreatedLte?: string;
|
|
62181
|
+
/**
|
|
62182
|
+
* Gets or sets the queryable only is live status.
|
|
62183
|
+
*/
|
|
62184
|
+
isLive?: boolean;
|
|
62185
|
+
/**
|
|
62186
|
+
* Gets or sets the sort order direction.
|
|
62187
|
+
*/
|
|
62188
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
62189
|
+
}): CancelablePromise<number>;
|
|
62190
|
+
/**
|
|
62191
|
+
* Gets a list of resources unpaged and without references.
|
|
62192
|
+
* @returns TenantFaq OK
|
|
62193
|
+
* @throws ApiError
|
|
62194
|
+
*/
|
|
62195
|
+
getListWithoutReferences({ ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62196
|
+
/**
|
|
62197
|
+
* Gets or sets the queryable tenant FAQ ids.
|
|
62198
|
+
*/
|
|
62199
|
+
ids?: Array<string>;
|
|
62200
|
+
/**
|
|
62201
|
+
* Gets or sets the queryable ShowOnStorefront value.
|
|
62202
|
+
*/
|
|
62203
|
+
showOnStorefront?: boolean;
|
|
62204
|
+
/**
|
|
62205
|
+
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
62206
|
+
*/
|
|
62207
|
+
showOnCustomerPortal?: boolean;
|
|
62208
|
+
/**
|
|
62209
|
+
* Gets or sets the page number for paged queries.
|
|
62210
|
+
*/
|
|
62211
|
+
pageNumber?: number;
|
|
62212
|
+
/**
|
|
62213
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
62214
|
+
*/
|
|
62215
|
+
take?: number;
|
|
62216
|
+
/**
|
|
62217
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
62218
|
+
*/
|
|
62219
|
+
skip?: number;
|
|
62220
|
+
/**
|
|
62221
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
62222
|
+
*/
|
|
62223
|
+
limitListRequests?: boolean;
|
|
62224
|
+
/**
|
|
62225
|
+
* Gets or sets the Tenant Id.
|
|
62226
|
+
*/
|
|
62227
|
+
tenantId?: string;
|
|
62228
|
+
/**
|
|
62229
|
+
* Gets or sets the Modifed By Id.
|
|
62230
|
+
*/
|
|
62231
|
+
modifiedById?: string;
|
|
62232
|
+
/**
|
|
62233
|
+
* Gets or sets the Modifed By Ids.
|
|
62234
|
+
*/
|
|
62235
|
+
modifiedByIds?: Array<string>;
|
|
62236
|
+
/**
|
|
62237
|
+
* Gets or sets the Date Created greater than equal to.
|
|
62238
|
+
*/
|
|
62239
|
+
dateCreatedGte?: string;
|
|
62240
|
+
/**
|
|
62241
|
+
* Gets or sets the Date Created less than equal to.
|
|
62242
|
+
*/
|
|
62243
|
+
dateCreatedLte?: string;
|
|
62244
|
+
/**
|
|
62245
|
+
* Gets or sets the queryable only is live status.
|
|
62246
|
+
*/
|
|
62247
|
+
isLive?: boolean;
|
|
62248
|
+
/**
|
|
62249
|
+
* Gets or sets the sort order direction.
|
|
62250
|
+
*/
|
|
62251
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
62252
|
+
}): CancelablePromise<Array<TenantFaq>>;
|
|
62253
|
+
/**
|
|
62254
|
+
* Gets a list of resources.
|
|
62255
|
+
* @returns TenantFaq OK
|
|
62256
|
+
* @throws ApiError
|
|
62257
|
+
*/
|
|
62258
|
+
getListIdName({ ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
62259
|
+
/**
|
|
62260
|
+
* Gets or sets the queryable tenant FAQ ids.
|
|
62261
|
+
*/
|
|
62262
|
+
ids?: Array<string>;
|
|
62263
|
+
/**
|
|
62264
|
+
* Gets or sets the queryable ShowOnStorefront value.
|
|
62265
|
+
*/
|
|
62266
|
+
showOnStorefront?: boolean;
|
|
62267
|
+
/**
|
|
62268
|
+
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
62269
|
+
*/
|
|
62270
|
+
showOnCustomerPortal?: boolean;
|
|
62271
|
+
/**
|
|
62272
|
+
* Gets or sets the page number for paged queries.
|
|
62273
|
+
*/
|
|
62274
|
+
pageNumber?: number;
|
|
62275
|
+
/**
|
|
62276
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
62277
|
+
*/
|
|
62278
|
+
take?: number;
|
|
62279
|
+
/**
|
|
62280
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
62281
|
+
*/
|
|
62282
|
+
skip?: number;
|
|
62283
|
+
/**
|
|
62284
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
62285
|
+
*/
|
|
62286
|
+
limitListRequests?: boolean;
|
|
62287
|
+
/**
|
|
62288
|
+
* Gets or sets the Tenant Id.
|
|
62289
|
+
*/
|
|
62290
|
+
tenantId?: string;
|
|
62291
|
+
/**
|
|
62292
|
+
* Gets or sets the Modifed By Id.
|
|
62293
|
+
*/
|
|
62294
|
+
modifiedById?: string;
|
|
62295
|
+
/**
|
|
62296
|
+
* Gets or sets the Modifed By Ids.
|
|
62297
|
+
*/
|
|
62298
|
+
modifiedByIds?: Array<string>;
|
|
62299
|
+
/**
|
|
62300
|
+
* Gets or sets the Date Created greater than equal to.
|
|
62301
|
+
*/
|
|
62302
|
+
dateCreatedGte?: string;
|
|
62303
|
+
/**
|
|
62304
|
+
* Gets or sets the Date Created less than equal to.
|
|
62305
|
+
*/
|
|
62306
|
+
dateCreatedLte?: string;
|
|
62307
|
+
/**
|
|
62308
|
+
* Gets or sets the queryable only is live status.
|
|
62309
|
+
*/
|
|
62310
|
+
isLive?: boolean;
|
|
62311
|
+
/**
|
|
62312
|
+
* Gets or sets the sort order direction.
|
|
62313
|
+
*/
|
|
62314
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
62315
|
+
}): CancelablePromise<Array<TenantFaq>>;
|
|
61630
62316
|
}
|
|
61631
62317
|
|
|
61632
62318
|
/**
|
|
@@ -62399,6 +63085,14 @@ type TenantWebsiteSettingPatch = {
|
|
|
62399
63085
|
*/
|
|
62400
63086
|
defaultMapCenterPlaceId?: string | null;
|
|
62401
63087
|
websiteHomepage?: WebsiteHomepage;
|
|
63088
|
+
/**
|
|
63089
|
+
* Gets or sets a value indicating whether a gating message is shown to customers in a modal before they proceed to the checkout flow.
|
|
63090
|
+
*/
|
|
63091
|
+
checkoutGatingMessageEnabled?: boolean | null;
|
|
63092
|
+
/**
|
|
63093
|
+
* Gets or sets the message shown to customers in a modal before they proceed to the checkout flow.
|
|
63094
|
+
*/
|
|
63095
|
+
checkoutGatingMessage?: string | null;
|
|
62402
63096
|
};
|
|
62403
63097
|
|
|
62404
63098
|
/**
|
|
@@ -72192,6 +72886,7 @@ declare class ApiClient {
|
|
|
72192
72886
|
readonly publicSurveyCompletionLogs: PublicSurveyCompletionLogsService;
|
|
72193
72887
|
readonly publicSurveyQuestions: PublicSurveyQuestionsService;
|
|
72194
72888
|
readonly publicSurveys: PublicSurveysService;
|
|
72889
|
+
readonly publicTenantFaqs: PublicTenantFaqsService;
|
|
72195
72890
|
readonly publicTenants: PublicTenantsService;
|
|
72196
72891
|
readonly publicVenues: PublicVenuesService;
|
|
72197
72892
|
readonly publicVenueTypes: PublicVenueTypesService;
|
|
@@ -72220,6 +72915,7 @@ declare class ApiClient {
|
|
|
72220
72915
|
readonly templateFieldPermissions: TemplateFieldPermissionsService;
|
|
72221
72916
|
readonly templateOffers: TemplateOffersService;
|
|
72222
72917
|
readonly templates: TemplatesService;
|
|
72918
|
+
readonly tenantFaqs: TenantFaqsService;
|
|
72223
72919
|
readonly tenants: TenantsService;
|
|
72224
72920
|
readonly tenantWebsiteSettings: TenantWebsiteSettingsService;
|
|
72225
72921
|
readonly timezone: TimezoneService;
|
|
@@ -72371,4 +73067,4 @@ type ValidationResultModel = {
|
|
|
72371
73067
|
readonly errors?: Array<ValidationError> | null;
|
|
72372
73068
|
};
|
|
72373
73069
|
|
|
72374
|
-
export { AccessCredential, AccessCredentialPage, AccessCredentialPatch, AccessCredentialPost, AccessCredentialsService, Activity, ActivityFacet, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivitySearchResponse, ActivityService, ActivityType, ActivityTypeCategory, ActivityTypeCategoryService, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CodelocksLock, CodelocksLockPage, CodelocksLockPatch, CodelocksLockPost, CodelocksLocksService, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerAuthService, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPortalAccountPatch, CustomerPortalService, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserAccessibleTenantDto, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FeatureAnnouncementDismissPost, FeatureAnnouncementForUserDto, FeatureAnnouncementsService, FieldPermission, 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, IntegrationCodelocksSettings, IntegrationCodelocksSettingsCreate, IntegrationCodelocksSettingsPage, IntegrationCodelocksSettingsPatch, IntegrationCodelocksSettingsPost, IntegrationCodelocksSettingsService, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, 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, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemCodelocksAccess, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, 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, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderActivityLocation, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSellableItemsService, PublicSessionsService, PublicSlotsService, PublicStorefrontStaffPreviewService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, SellableItem, SellableItemPage, SellableItemPatch, SellableItemPost, SellableItemsService, 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, SortIndex, Southwest, StorefrontStaffPreviewService, StorefrontStaffPreviewTokenResponse, StorefrontStaffPreviewValidateRequest, StorefrontStaffPreviewValidateResponse, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, 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, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantStorefrontSettingsPatch, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, 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, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };
|
|
73070
|
+
export { AccessCredential, AccessCredentialPage, AccessCredentialPatch, AccessCredentialPost, AccessCredentialsService, Activity, ActivityFacet, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivitySearchResponse, ActivityService, ActivityType, ActivityTypeCategory, ActivityTypeCategoryService, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CodelocksLock, CodelocksLockPage, CodelocksLockPatch, CodelocksLockPost, CodelocksLocksService, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerAuthService, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPortalAccountPatch, CustomerPortalService, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserAccessibleTenantDto, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FeatureAnnouncementDismissPost, FeatureAnnouncementForUserDto, FeatureAnnouncementsService, FieldPermission, 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, IntegrationCodelocksSettings, IntegrationCodelocksSettingsCreate, IntegrationCodelocksSettingsPage, IntegrationCodelocksSettingsPatch, IntegrationCodelocksSettingsPost, IntegrationCodelocksSettingsService, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, 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, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemCodelocksAccess, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, 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, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderActivityLocation, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSellableItemsService, PublicSessionsService, PublicSlotsService, PublicStorefrontStaffPreviewService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantFaqsService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, SellableItem, SellableItemPage, SellableItemPatch, SellableItemPost, SellableItemsService, 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, SortIndex, Southwest, StorefrontStaffPreviewService, StorefrontStaffPreviewTokenResponse, StorefrontStaffPreviewValidateRequest, StorefrontStaffPreviewValidateResponse, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, 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, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantFaq, TenantFaqPage, TenantFaqPatch, TenantFaqPost, TenantFaqsService, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantStorefrontSettingsPatch, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, 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, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };
|