reach-api-sdk 1.0.221 → 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 +681 -1
- package/dist/reach-sdk.js +536 -1
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +2553 -833
- 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/services/PublicTenantFaqsService.ts +264 -0
- package/src/services/TenantFaqsService.ts +752 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -46006,6 +46006,204 @@ declare class PublicSurveysService {
|
|
|
46006
46006
|
}): CancelablePromise<boolean>;
|
|
46007
46007
|
}
|
|
46008
46008
|
|
|
46009
|
+
/**
|
|
46010
|
+
* Represents a single Frequently Asked Question entry owned by a tenant.
|
|
46011
|
+
*/
|
|
46012
|
+
type TenantFaq = {
|
|
46013
|
+
/**
|
|
46014
|
+
* Gets or sets the entities Id.
|
|
46015
|
+
*/
|
|
46016
|
+
id?: string;
|
|
46017
|
+
/**
|
|
46018
|
+
* Gets or sets the tenant Id.
|
|
46019
|
+
*/
|
|
46020
|
+
tenantId: string;
|
|
46021
|
+
/**
|
|
46022
|
+
* Gets or sets the created date of this entity.
|
|
46023
|
+
*/
|
|
46024
|
+
dateCreated: string;
|
|
46025
|
+
/**
|
|
46026
|
+
* Gets or sets the last modified date of this entity.
|
|
46027
|
+
*/
|
|
46028
|
+
dateModified: string;
|
|
46029
|
+
/**
|
|
46030
|
+
* Gets or sets the modified by Id.
|
|
46031
|
+
*/
|
|
46032
|
+
modifiedById?: string | null;
|
|
46033
|
+
/**
|
|
46034
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
46035
|
+
*/
|
|
46036
|
+
isLive: boolean;
|
|
46037
|
+
/**
|
|
46038
|
+
* Gets or sets the question text.
|
|
46039
|
+
*/
|
|
46040
|
+
question?: string | null;
|
|
46041
|
+
/**
|
|
46042
|
+
* Gets or sets the answer text. Stored as sanitized HTML (basic formatting only - paragraphs, bullets, links).
|
|
46043
|
+
*/
|
|
46044
|
+
answer?: string | null;
|
|
46045
|
+
/**
|
|
46046
|
+
* Gets or sets the display order for the FAQ within the tenant list. Lower values appear first.
|
|
46047
|
+
*/
|
|
46048
|
+
sortOrder?: number;
|
|
46049
|
+
/**
|
|
46050
|
+
* Gets or sets a value indicating whether this FAQ is shown on the public storefront.
|
|
46051
|
+
*/
|
|
46052
|
+
showOnStorefront?: boolean;
|
|
46053
|
+
/**
|
|
46054
|
+
* Gets or sets a value indicating whether this FAQ is shown on the customer portal.
|
|
46055
|
+
*/
|
|
46056
|
+
showOnCustomerPortal?: boolean;
|
|
46057
|
+
};
|
|
46058
|
+
|
|
46059
|
+
type TenantFaqPage = {
|
|
46060
|
+
pagination: Pagination;
|
|
46061
|
+
readonly items: Array<TenantFaq>;
|
|
46062
|
+
};
|
|
46063
|
+
|
|
46064
|
+
declare class PublicTenantFaqsService {
|
|
46065
|
+
readonly httpRequest: BaseHttpRequest;
|
|
46066
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
46067
|
+
/**
|
|
46068
|
+
* @returns TenantFaq OK
|
|
46069
|
+
* @throws ApiError
|
|
46070
|
+
*/
|
|
46071
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
46072
|
+
id: string;
|
|
46073
|
+
xTenantSubdomain?: string;
|
|
46074
|
+
}): CancelablePromise<TenantFaq>;
|
|
46075
|
+
/**
|
|
46076
|
+
* @returns TenantFaqPage OK
|
|
46077
|
+
* @throws ApiError
|
|
46078
|
+
*/
|
|
46079
|
+
getPage({ xTenantSubdomain, ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
46080
|
+
xTenantSubdomain?: string;
|
|
46081
|
+
/**
|
|
46082
|
+
* Gets or sets the queryable tenant FAQ ids.
|
|
46083
|
+
*/
|
|
46084
|
+
ids?: Array<string>;
|
|
46085
|
+
/**
|
|
46086
|
+
* Gets or sets the queryable ShowOnStorefront value.
|
|
46087
|
+
*/
|
|
46088
|
+
showOnStorefront?: boolean;
|
|
46089
|
+
/**
|
|
46090
|
+
* Gets or sets the queryable ShowOnCustomerPortal value.
|
|
46091
|
+
*/
|
|
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
|
+
|
|
46009
46207
|
type TenantPage = {
|
|
46010
46208
|
pagination: Pagination;
|
|
46011
46209
|
readonly items: Array<Tenant>;
|
|
@@ -61637,6 +61835,486 @@ declare class TemplatesService {
|
|
|
61637
61835
|
}): CancelablePromise<Array<Template>>;
|
|
61638
61836
|
}
|
|
61639
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
|
|
61971
|
+
* @throws ApiError
|
|
61972
|
+
*/
|
|
61973
|
+
getPage({ ids, showOnStorefront, showOnCustomerPortal, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
61974
|
+
/**
|
|
61975
|
+
* Gets or sets the queryable tenant FAQ ids.
|
|
61976
|
+
*/
|
|
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;
|
|
61986
|
+
/**
|
|
61987
|
+
* Gets or sets the page number for paged queries.
|
|
61988
|
+
*/
|
|
61989
|
+
pageNumber?: number;
|
|
61990
|
+
/**
|
|
61991
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
61992
|
+
*/
|
|
61993
|
+
take?: number;
|
|
61994
|
+
/**
|
|
61995
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
61996
|
+
*/
|
|
61997
|
+
skip?: number;
|
|
61998
|
+
/**
|
|
61999
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
62000
|
+
*/
|
|
62001
|
+
limitListRequests?: boolean;
|
|
62002
|
+
/**
|
|
62003
|
+
* Gets or sets the Tenant Id.
|
|
62004
|
+
*/
|
|
62005
|
+
tenantId?: string;
|
|
62006
|
+
/**
|
|
62007
|
+
* Gets or sets the Modifed By Id.
|
|
62008
|
+
*/
|
|
62009
|
+
modifiedById?: string;
|
|
62010
|
+
/**
|
|
62011
|
+
* Gets or sets the Modifed By Ids.
|
|
62012
|
+
*/
|
|
62013
|
+
modifiedByIds?: Array<string>;
|
|
62014
|
+
/**
|
|
62015
|
+
* Gets or sets the Date Created greater than equal to.
|
|
62016
|
+
*/
|
|
62017
|
+
dateCreatedGte?: string;
|
|
62018
|
+
/**
|
|
62019
|
+
* Gets or sets the Date Created less than equal to.
|
|
62020
|
+
*/
|
|
62021
|
+
dateCreatedLte?: string;
|
|
62022
|
+
/**
|
|
62023
|
+
* Gets or sets the queryable only is live status.
|
|
62024
|
+
*/
|
|
62025
|
+
isLive?: boolean;
|
|
62026
|
+
/**
|
|
62027
|
+
* Gets or sets the sort order direction.
|
|
62028
|
+
*/
|
|
62029
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
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>>;
|
|
62316
|
+
}
|
|
62317
|
+
|
|
61640
62318
|
/**
|
|
61641
62319
|
* The Stripe connection status.
|
|
61642
62320
|
*/
|
|
@@ -72208,6 +72886,7 @@ declare class ApiClient {
|
|
|
72208
72886
|
readonly publicSurveyCompletionLogs: PublicSurveyCompletionLogsService;
|
|
72209
72887
|
readonly publicSurveyQuestions: PublicSurveyQuestionsService;
|
|
72210
72888
|
readonly publicSurveys: PublicSurveysService;
|
|
72889
|
+
readonly publicTenantFaqs: PublicTenantFaqsService;
|
|
72211
72890
|
readonly publicTenants: PublicTenantsService;
|
|
72212
72891
|
readonly publicVenues: PublicVenuesService;
|
|
72213
72892
|
readonly publicVenueTypes: PublicVenueTypesService;
|
|
@@ -72236,6 +72915,7 @@ declare class ApiClient {
|
|
|
72236
72915
|
readonly templateFieldPermissions: TemplateFieldPermissionsService;
|
|
72237
72916
|
readonly templateOffers: TemplateOffersService;
|
|
72238
72917
|
readonly templates: TemplatesService;
|
|
72918
|
+
readonly tenantFaqs: TenantFaqsService;
|
|
72239
72919
|
readonly tenants: TenantsService;
|
|
72240
72920
|
readonly tenantWebsiteSettings: TenantWebsiteSettingsService;
|
|
72241
72921
|
readonly timezone: TimezoneService;
|
|
@@ -72387,4 +73067,4 @@ type ValidationResultModel = {
|
|
|
72387
73067
|
readonly errors?: Array<ValidationError> | null;
|
|
72388
73068
|
};
|
|
72389
73069
|
|
|
72390
|
-
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 };
|