reach-api-sdk 1.0.101 → 1.0.102
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 +584 -1
- package/dist/reach-sdk.js +516 -1
- package/package.json +1 -1
- package/src/apiClient.ts +15 -0
- package/src/definition/swagger.yaml +1976 -340
- package/src/index.ts +12 -0
- package/src/models/ImageLibraryCategory.ts +34 -0
- package/src/models/ImageLibraryImage.ts +25 -0
- package/src/models/ImageUploadHistory.ts +42 -0
- package/src/models/ImageUploadHistoryPage.ts +12 -0
- package/src/models/ImageUploadHistoryPatch.ts +18 -0
- package/src/models/ImageUploadHistoryPost.ts +14 -0
- package/src/models/UnsplashSearchResponse.ts +22 -0
- package/src/services/ImageLibraryCategoryService.ts +127 -0
- package/src/services/ImageLibraryImageService.ts +127 -0
- package/src/services/ImageUploadHistoryService.ts +551 -0
- package/src/services/PublicFilestackWebhookService.ts +37 -0
- package/src/services/UnsplashService.ts +39 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -11133,6 +11133,186 @@ declare class HereAutocompleteLookupService {
|
|
|
11133
11133
|
}): CancelablePromise<HereLookupResults>;
|
|
11134
11134
|
}
|
|
11135
11135
|
|
|
11136
|
+
/**
|
|
11137
|
+
* Represents an image library category within the Reach application.
|
|
11138
|
+
*/
|
|
11139
|
+
type ImageLibraryImage = {
|
|
11140
|
+
/**
|
|
11141
|
+
* Gets or sets the activities Id.
|
|
11142
|
+
*/
|
|
11143
|
+
id?: number;
|
|
11144
|
+
/**
|
|
11145
|
+
* Gets or sets the activity_id.
|
|
11146
|
+
*/
|
|
11147
|
+
imageLibraryCategoryId?: number;
|
|
11148
|
+
/**
|
|
11149
|
+
* Gets or sets the image url.
|
|
11150
|
+
*/
|
|
11151
|
+
imageUrl?: string | null;
|
|
11152
|
+
imageLibraryCategory?: ImageLibraryCategory;
|
|
11153
|
+
};
|
|
11154
|
+
|
|
11155
|
+
/**
|
|
11156
|
+
* Represents an image library category within the Reach application.
|
|
11157
|
+
*/
|
|
11158
|
+
type ImageLibraryCategory = {
|
|
11159
|
+
/**
|
|
11160
|
+
* Gets or sets the activities Id.
|
|
11161
|
+
*/
|
|
11162
|
+
id?: number;
|
|
11163
|
+
/**
|
|
11164
|
+
* Gets or sets the activities Name.
|
|
11165
|
+
*/
|
|
11166
|
+
name?: string | null;
|
|
11167
|
+
/**
|
|
11168
|
+
* Gets or sets the activity_id.
|
|
11169
|
+
*/
|
|
11170
|
+
activityId?: number;
|
|
11171
|
+
/**
|
|
11172
|
+
* Gets or sets the sort order.
|
|
11173
|
+
*/
|
|
11174
|
+
sortOrder?: number | null;
|
|
11175
|
+
activity?: Activity;
|
|
11176
|
+
/**
|
|
11177
|
+
* Gets or sets the image library images.
|
|
11178
|
+
*/
|
|
11179
|
+
imageLibraryImages?: Array<ImageLibraryImage> | null;
|
|
11180
|
+
};
|
|
11181
|
+
|
|
11182
|
+
declare class ImageLibraryCategoryService {
|
|
11183
|
+
readonly httpRequest: BaseHttpRequest;
|
|
11184
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
11185
|
+
/**
|
|
11186
|
+
* Gets a Reach.Models.ImageLibraryCategory by its Id.
|
|
11187
|
+
* @returns ImageLibraryCategory Success
|
|
11188
|
+
* @throws ApiError
|
|
11189
|
+
*/
|
|
11190
|
+
getObject({ id, }: {
|
|
11191
|
+
/**
|
|
11192
|
+
* The Reach.Models.ImageLibraryCategory id.
|
|
11193
|
+
*/
|
|
11194
|
+
id: number;
|
|
11195
|
+
}): CancelablePromise<ImageLibraryCategory>;
|
|
11196
|
+
/**
|
|
11197
|
+
* Gets a list of Reach.Models.Activity.
|
|
11198
|
+
* @returns ImageLibraryCategory Success
|
|
11199
|
+
* @throws ApiError
|
|
11200
|
+
*/
|
|
11201
|
+
getList({ activityId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11202
|
+
/**
|
|
11203
|
+
* Gets or sets the queryable activity Id.
|
|
11204
|
+
*/
|
|
11205
|
+
activityId?: number;
|
|
11206
|
+
/**
|
|
11207
|
+
* Gets or sets the page number for paged queries.
|
|
11208
|
+
*/
|
|
11209
|
+
pageNumber?: number;
|
|
11210
|
+
/**
|
|
11211
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
11212
|
+
*/
|
|
11213
|
+
take?: number;
|
|
11214
|
+
/**
|
|
11215
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
11216
|
+
*/
|
|
11217
|
+
limitListRequests?: boolean;
|
|
11218
|
+
/**
|
|
11219
|
+
* Gets or sets the Tenant Id.
|
|
11220
|
+
*/
|
|
11221
|
+
tenantId?: string;
|
|
11222
|
+
/**
|
|
11223
|
+
* Gets or sets the Modifed By Id.
|
|
11224
|
+
*/
|
|
11225
|
+
modifiedById?: string;
|
|
11226
|
+
/**
|
|
11227
|
+
* Gets or sets the Modifed By Ids.
|
|
11228
|
+
*/
|
|
11229
|
+
modifiedByIds?: Array<string>;
|
|
11230
|
+
/**
|
|
11231
|
+
* Gets or sets the Date Created greater than equal to.
|
|
11232
|
+
*/
|
|
11233
|
+
dateCreatedGte?: string;
|
|
11234
|
+
/**
|
|
11235
|
+
* Gets or sets the Date Created less than equal to.
|
|
11236
|
+
*/
|
|
11237
|
+
dateCreatedLte?: string;
|
|
11238
|
+
/**
|
|
11239
|
+
* Gets or sets the queryable only is live status.
|
|
11240
|
+
*/
|
|
11241
|
+
isLive?: boolean;
|
|
11242
|
+
/**
|
|
11243
|
+
* Gets or sets the sort order direction.
|
|
11244
|
+
*/
|
|
11245
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
11246
|
+
}): CancelablePromise<Array<ImageLibraryCategory>>;
|
|
11247
|
+
}
|
|
11248
|
+
|
|
11249
|
+
declare class ImageLibraryImageService {
|
|
11250
|
+
readonly httpRequest: BaseHttpRequest;
|
|
11251
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
11252
|
+
/**
|
|
11253
|
+
* Gets a Reach.Models.ImageLibraryImage by its Id.
|
|
11254
|
+
* @returns ImageLibraryImage Success
|
|
11255
|
+
* @throws ApiError
|
|
11256
|
+
*/
|
|
11257
|
+
getObject({ id, }: {
|
|
11258
|
+
/**
|
|
11259
|
+
* The Reach.Models.ImageLibraryImage id.
|
|
11260
|
+
*/
|
|
11261
|
+
id: number;
|
|
11262
|
+
}): CancelablePromise<ImageLibraryImage>;
|
|
11263
|
+
/**
|
|
11264
|
+
* Gets a list of Reach.Models.ImageLibraryImage.
|
|
11265
|
+
* @returns ImageLibraryImage Success
|
|
11266
|
+
* @throws ApiError
|
|
11267
|
+
*/
|
|
11268
|
+
getList({ imageLibraryCategoryId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11269
|
+
/**
|
|
11270
|
+
* Gets or sets the queryable image library category Id.
|
|
11271
|
+
*/
|
|
11272
|
+
imageLibraryCategoryId?: number;
|
|
11273
|
+
/**
|
|
11274
|
+
* Gets or sets the page number for paged queries.
|
|
11275
|
+
*/
|
|
11276
|
+
pageNumber?: number;
|
|
11277
|
+
/**
|
|
11278
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
11279
|
+
*/
|
|
11280
|
+
take?: number;
|
|
11281
|
+
/**
|
|
11282
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
11283
|
+
*/
|
|
11284
|
+
limitListRequests?: boolean;
|
|
11285
|
+
/**
|
|
11286
|
+
* Gets or sets the Tenant Id.
|
|
11287
|
+
*/
|
|
11288
|
+
tenantId?: string;
|
|
11289
|
+
/**
|
|
11290
|
+
* Gets or sets the Modifed By Id.
|
|
11291
|
+
*/
|
|
11292
|
+
modifiedById?: string;
|
|
11293
|
+
/**
|
|
11294
|
+
* Gets or sets the Modifed By Ids.
|
|
11295
|
+
*/
|
|
11296
|
+
modifiedByIds?: Array<string>;
|
|
11297
|
+
/**
|
|
11298
|
+
* Gets or sets the Date Created greater than equal to.
|
|
11299
|
+
*/
|
|
11300
|
+
dateCreatedGte?: string;
|
|
11301
|
+
/**
|
|
11302
|
+
* Gets or sets the Date Created less than equal to.
|
|
11303
|
+
*/
|
|
11304
|
+
dateCreatedLte?: string;
|
|
11305
|
+
/**
|
|
11306
|
+
* Gets or sets the queryable only is live status.
|
|
11307
|
+
*/
|
|
11308
|
+
isLive?: boolean;
|
|
11309
|
+
/**
|
|
11310
|
+
* Gets or sets the sort order direction.
|
|
11311
|
+
*/
|
|
11312
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
11313
|
+
}): CancelablePromise<Array<ImageLibraryImage>>;
|
|
11314
|
+
}
|
|
11315
|
+
|
|
11136
11316
|
type ImagePage = {
|
|
11137
11317
|
pagination: Pagination;
|
|
11138
11318
|
readonly items: Array<Image>;
|
|
@@ -11614,6 +11794,354 @@ declare class ImagesService {
|
|
|
11614
11794
|
}): CancelablePromise<boolean>;
|
|
11615
11795
|
}
|
|
11616
11796
|
|
|
11797
|
+
/**
|
|
11798
|
+
* Represents a Image upload history within the Reach application.
|
|
11799
|
+
*/
|
|
11800
|
+
type ImageUploadHistory = {
|
|
11801
|
+
/**
|
|
11802
|
+
* Gets or sets the entities Id.
|
|
11803
|
+
*/
|
|
11804
|
+
id?: string;
|
|
11805
|
+
/**
|
|
11806
|
+
* Gets or sets the tenant Id.
|
|
11807
|
+
*/
|
|
11808
|
+
tenantId: string;
|
|
11809
|
+
/**
|
|
11810
|
+
* Gets or sets the created date of this entity.
|
|
11811
|
+
*/
|
|
11812
|
+
dateCreated: string;
|
|
11813
|
+
/**
|
|
11814
|
+
* Gets or sets the last modified date of this entity.
|
|
11815
|
+
*/
|
|
11816
|
+
dateModified: string;
|
|
11817
|
+
/**
|
|
11818
|
+
* Gets or sets the modified by Id.
|
|
11819
|
+
*/
|
|
11820
|
+
modifiedById?: string | null;
|
|
11821
|
+
/**
|
|
11822
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
11823
|
+
*/
|
|
11824
|
+
isLive: boolean;
|
|
11825
|
+
/**
|
|
11826
|
+
* Gets or sets the user id.
|
|
11827
|
+
*/
|
|
11828
|
+
userId?: string;
|
|
11829
|
+
/**
|
|
11830
|
+
* Gets or sets the images url.
|
|
11831
|
+
*/
|
|
11832
|
+
imageUrl?: string | null;
|
|
11833
|
+
};
|
|
11834
|
+
|
|
11835
|
+
type ImageUploadHistoryPage = {
|
|
11836
|
+
pagination: Pagination;
|
|
11837
|
+
readonly items: Array<ImageUploadHistory>;
|
|
11838
|
+
};
|
|
11839
|
+
|
|
11840
|
+
/**
|
|
11841
|
+
* Post model for image updates.
|
|
11842
|
+
*/
|
|
11843
|
+
type ImageUploadHistoryPatch = {
|
|
11844
|
+
/**
|
|
11845
|
+
* Gets or sets the tenant Id.
|
|
11846
|
+
*/
|
|
11847
|
+
tenantId: string;
|
|
11848
|
+
/**
|
|
11849
|
+
* Gets or sets the Id.
|
|
11850
|
+
*/
|
|
11851
|
+
id: string;
|
|
11852
|
+
};
|
|
11853
|
+
|
|
11854
|
+
/**
|
|
11855
|
+
* Post model for image inserts.
|
|
11856
|
+
*/
|
|
11857
|
+
type ImageUploadHistoryPost = {
|
|
11858
|
+
/**
|
|
11859
|
+
* Gets or sets the tenant Id.
|
|
11860
|
+
*/
|
|
11861
|
+
tenantId: string;
|
|
11862
|
+
};
|
|
11863
|
+
|
|
11864
|
+
declare class ImageUploadHistoryService {
|
|
11865
|
+
readonly httpRequest: BaseHttpRequest;
|
|
11866
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
11867
|
+
/**
|
|
11868
|
+
* Gets the resource by its Id.
|
|
11869
|
+
* @returns ImageUploadHistory Success
|
|
11870
|
+
* @throws ApiError
|
|
11871
|
+
*/
|
|
11872
|
+
getObject({ id, }: {
|
|
11873
|
+
/**
|
|
11874
|
+
* The <typeparamref name="TObject" /> id.
|
|
11875
|
+
*/
|
|
11876
|
+
id: string;
|
|
11877
|
+
}): CancelablePromise<ImageUploadHistory>;
|
|
11878
|
+
/**
|
|
11879
|
+
* Deletes the resource.
|
|
11880
|
+
* @returns any Success
|
|
11881
|
+
* @throws ApiError
|
|
11882
|
+
*/
|
|
11883
|
+
deleteById({ id, }: {
|
|
11884
|
+
/**
|
|
11885
|
+
* The <typeparamref name="TObject" /> id.
|
|
11886
|
+
*/
|
|
11887
|
+
id: string;
|
|
11888
|
+
}): CancelablePromise<any>;
|
|
11889
|
+
/**
|
|
11890
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
11891
|
+
* @returns boolean Success
|
|
11892
|
+
* @throws ApiError
|
|
11893
|
+
*/
|
|
11894
|
+
exists({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11895
|
+
/**
|
|
11896
|
+
* Gets or sets the page number for paged queries.
|
|
11897
|
+
*/
|
|
11898
|
+
pageNumber?: number;
|
|
11899
|
+
/**
|
|
11900
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
11901
|
+
*/
|
|
11902
|
+
take?: number;
|
|
11903
|
+
/**
|
|
11904
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
11905
|
+
*/
|
|
11906
|
+
limitListRequests?: boolean;
|
|
11907
|
+
/**
|
|
11908
|
+
* Gets or sets the Tenant Id.
|
|
11909
|
+
*/
|
|
11910
|
+
tenantId?: string;
|
|
11911
|
+
/**
|
|
11912
|
+
* Gets or sets the Modifed By Id.
|
|
11913
|
+
*/
|
|
11914
|
+
modifiedById?: string;
|
|
11915
|
+
/**
|
|
11916
|
+
* Gets or sets the Modifed By Ids.
|
|
11917
|
+
*/
|
|
11918
|
+
modifiedByIds?: Array<string>;
|
|
11919
|
+
/**
|
|
11920
|
+
* Gets or sets the Date Created greater than equal to.
|
|
11921
|
+
*/
|
|
11922
|
+
dateCreatedGte?: string;
|
|
11923
|
+
/**
|
|
11924
|
+
* Gets or sets the Date Created less than equal to.
|
|
11925
|
+
*/
|
|
11926
|
+
dateCreatedLte?: string;
|
|
11927
|
+
/**
|
|
11928
|
+
* Gets or sets the queryable only is live status.
|
|
11929
|
+
*/
|
|
11930
|
+
isLive?: boolean;
|
|
11931
|
+
/**
|
|
11932
|
+
* Gets or sets the sort order direction.
|
|
11933
|
+
*/
|
|
11934
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
11935
|
+
}): CancelablePromise<boolean>;
|
|
11936
|
+
/**
|
|
11937
|
+
* Gets a list of resources.
|
|
11938
|
+
* @returns ImageUploadHistoryPage Success
|
|
11939
|
+
* @throws ApiError
|
|
11940
|
+
*/
|
|
11941
|
+
getPage({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11942
|
+
/**
|
|
11943
|
+
* Gets or sets the page number for paged queries.
|
|
11944
|
+
*/
|
|
11945
|
+
pageNumber?: number;
|
|
11946
|
+
/**
|
|
11947
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
11948
|
+
*/
|
|
11949
|
+
take?: number;
|
|
11950
|
+
/**
|
|
11951
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
11952
|
+
*/
|
|
11953
|
+
limitListRequests?: boolean;
|
|
11954
|
+
/**
|
|
11955
|
+
* Gets or sets the Tenant Id.
|
|
11956
|
+
*/
|
|
11957
|
+
tenantId?: string;
|
|
11958
|
+
/**
|
|
11959
|
+
* Gets or sets the Modifed By Id.
|
|
11960
|
+
*/
|
|
11961
|
+
modifiedById?: string;
|
|
11962
|
+
/**
|
|
11963
|
+
* Gets or sets the Modifed By Ids.
|
|
11964
|
+
*/
|
|
11965
|
+
modifiedByIds?: Array<string>;
|
|
11966
|
+
/**
|
|
11967
|
+
* Gets or sets the Date Created greater than equal to.
|
|
11968
|
+
*/
|
|
11969
|
+
dateCreatedGte?: string;
|
|
11970
|
+
/**
|
|
11971
|
+
* Gets or sets the Date Created less than equal to.
|
|
11972
|
+
*/
|
|
11973
|
+
dateCreatedLte?: string;
|
|
11974
|
+
/**
|
|
11975
|
+
* Gets or sets the queryable only is live status.
|
|
11976
|
+
*/
|
|
11977
|
+
isLive?: boolean;
|
|
11978
|
+
/**
|
|
11979
|
+
* Gets or sets the sort order direction.
|
|
11980
|
+
*/
|
|
11981
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
11982
|
+
}): CancelablePromise<ImageUploadHistoryPage>;
|
|
11983
|
+
/**
|
|
11984
|
+
* Deletes the resource.
|
|
11985
|
+
* @returns any Success
|
|
11986
|
+
* @throws ApiError
|
|
11987
|
+
*/
|
|
11988
|
+
deleteByObject({ requestBody, }: {
|
|
11989
|
+
/**
|
|
11990
|
+
* The <typeparamref name="TObject" /> model.
|
|
11991
|
+
*/
|
|
11992
|
+
requestBody?: ImageUploadHistory;
|
|
11993
|
+
}): CancelablePromise<any>;
|
|
11994
|
+
/**
|
|
11995
|
+
* Gets a list of resources unpaged and without references.
|
|
11996
|
+
* @returns ImageUploadHistory Success
|
|
11997
|
+
* @throws ApiError
|
|
11998
|
+
*/
|
|
11999
|
+
getListWithoutReferences({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12000
|
+
/**
|
|
12001
|
+
* Gets or sets the page number for paged queries.
|
|
12002
|
+
*/
|
|
12003
|
+
pageNumber?: number;
|
|
12004
|
+
/**
|
|
12005
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
12006
|
+
*/
|
|
12007
|
+
take?: number;
|
|
12008
|
+
/**
|
|
12009
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
12010
|
+
*/
|
|
12011
|
+
limitListRequests?: boolean;
|
|
12012
|
+
/**
|
|
12013
|
+
* Gets or sets the Tenant Id.
|
|
12014
|
+
*/
|
|
12015
|
+
tenantId?: string;
|
|
12016
|
+
/**
|
|
12017
|
+
* Gets or sets the Modifed By Id.
|
|
12018
|
+
*/
|
|
12019
|
+
modifiedById?: string;
|
|
12020
|
+
/**
|
|
12021
|
+
* Gets or sets the Modifed By Ids.
|
|
12022
|
+
*/
|
|
12023
|
+
modifiedByIds?: Array<string>;
|
|
12024
|
+
/**
|
|
12025
|
+
* Gets or sets the Date Created greater than equal to.
|
|
12026
|
+
*/
|
|
12027
|
+
dateCreatedGte?: string;
|
|
12028
|
+
/**
|
|
12029
|
+
* Gets or sets the Date Created less than equal to.
|
|
12030
|
+
*/
|
|
12031
|
+
dateCreatedLte?: string;
|
|
12032
|
+
/**
|
|
12033
|
+
* Gets or sets the queryable only is live status.
|
|
12034
|
+
*/
|
|
12035
|
+
isLive?: boolean;
|
|
12036
|
+
/**
|
|
12037
|
+
* Gets or sets the sort order direction.
|
|
12038
|
+
*/
|
|
12039
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
12040
|
+
}): CancelablePromise<Array<ImageUploadHistory>>;
|
|
12041
|
+
/**
|
|
12042
|
+
* Gets a list of resources.
|
|
12043
|
+
* @returns ImageUploadHistory Success
|
|
12044
|
+
* @throws ApiError
|
|
12045
|
+
*/
|
|
12046
|
+
getListIdName({ pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12047
|
+
/**
|
|
12048
|
+
* Gets or sets the page number for paged queries.
|
|
12049
|
+
*/
|
|
12050
|
+
pageNumber?: number;
|
|
12051
|
+
/**
|
|
12052
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
12053
|
+
*/
|
|
12054
|
+
take?: number;
|
|
12055
|
+
/**
|
|
12056
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
12057
|
+
*/
|
|
12058
|
+
limitListRequests?: boolean;
|
|
12059
|
+
/**
|
|
12060
|
+
* Gets or sets the Tenant Id.
|
|
12061
|
+
*/
|
|
12062
|
+
tenantId?: string;
|
|
12063
|
+
/**
|
|
12064
|
+
* Gets or sets the Modifed By Id.
|
|
12065
|
+
*/
|
|
12066
|
+
modifiedById?: string;
|
|
12067
|
+
/**
|
|
12068
|
+
* Gets or sets the Modifed By Ids.
|
|
12069
|
+
*/
|
|
12070
|
+
modifiedByIds?: Array<string>;
|
|
12071
|
+
/**
|
|
12072
|
+
* Gets or sets the Date Created greater than equal to.
|
|
12073
|
+
*/
|
|
12074
|
+
dateCreatedGte?: string;
|
|
12075
|
+
/**
|
|
12076
|
+
* Gets or sets the Date Created less than equal to.
|
|
12077
|
+
*/
|
|
12078
|
+
dateCreatedLte?: string;
|
|
12079
|
+
/**
|
|
12080
|
+
* Gets or sets the queryable only is live status.
|
|
12081
|
+
*/
|
|
12082
|
+
isLive?: boolean;
|
|
12083
|
+
/**
|
|
12084
|
+
* Gets or sets the sort order direction.
|
|
12085
|
+
*/
|
|
12086
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
12087
|
+
}): CancelablePromise<Array<ImageUploadHistory>>;
|
|
12088
|
+
/**
|
|
12089
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
12090
|
+
* @returns ImageUploadHistory Success
|
|
12091
|
+
* @throws ApiError
|
|
12092
|
+
*/
|
|
12093
|
+
post({ requestBody, }: {
|
|
12094
|
+
/**
|
|
12095
|
+
* The <typeparamref name="TObject" /> model.
|
|
12096
|
+
*/
|
|
12097
|
+
requestBody?: ImageUploadHistoryPost;
|
|
12098
|
+
}): CancelablePromise<ImageUploadHistory>;
|
|
12099
|
+
/**
|
|
12100
|
+
* Patches the resource.
|
|
12101
|
+
* @returns ImageUploadHistory Success
|
|
12102
|
+
* @throws ApiError
|
|
12103
|
+
*/
|
|
12104
|
+
patch({ requestBody, }: {
|
|
12105
|
+
/**
|
|
12106
|
+
* The <typeparamref name="TObject" /> model.
|
|
12107
|
+
*/
|
|
12108
|
+
requestBody?: ImageUploadHistoryPatch;
|
|
12109
|
+
}): CancelablePromise<ImageUploadHistory>;
|
|
12110
|
+
/**
|
|
12111
|
+
* Inserts a list of resources.
|
|
12112
|
+
* @returns ImageUploadHistory Success
|
|
12113
|
+
* @throws ApiError
|
|
12114
|
+
*/
|
|
12115
|
+
postList({ requestBody, }: {
|
|
12116
|
+
/**
|
|
12117
|
+
* The list of <typeparamref name="TObject" />.
|
|
12118
|
+
*/
|
|
12119
|
+
requestBody?: Array<ImageUploadHistoryPost>;
|
|
12120
|
+
}): CancelablePromise<Array<ImageUploadHistory>>;
|
|
12121
|
+
/**
|
|
12122
|
+
* Patches the resource.
|
|
12123
|
+
* @returns ImageUploadHistory Success
|
|
12124
|
+
* @throws ApiError
|
|
12125
|
+
*/
|
|
12126
|
+
patchWithReferences({ requestBody, }: {
|
|
12127
|
+
/**
|
|
12128
|
+
* The <typeparamref name="TObject" /> model.
|
|
12129
|
+
*/
|
|
12130
|
+
requestBody?: ImageUploadHistoryPatch;
|
|
12131
|
+
}): CancelablePromise<ImageUploadHistory>;
|
|
12132
|
+
/**
|
|
12133
|
+
* Returns a value indicating whether the resource is deletable.
|
|
12134
|
+
* @returns boolean Success
|
|
12135
|
+
* @throws ApiError
|
|
12136
|
+
*/
|
|
12137
|
+
canDelete({ id, }: {
|
|
12138
|
+
/**
|
|
12139
|
+
* The <typeparamref name="TObject" /> id.
|
|
12140
|
+
*/
|
|
12141
|
+
id: string;
|
|
12142
|
+
}): CancelablePromise<boolean>;
|
|
12143
|
+
}
|
|
12144
|
+
|
|
11617
12145
|
/**
|
|
11618
12146
|
* Post model for the items contained in the order.
|
|
11619
12147
|
*/
|
|
@@ -19432,6 +19960,22 @@ declare class PublicFacilitiesService {
|
|
|
19432
19960
|
}): CancelablePromise<Array<Facility>>;
|
|
19433
19961
|
}
|
|
19434
19962
|
|
|
19963
|
+
declare class PublicFilestackWebhookService {
|
|
19964
|
+
readonly httpRequest: BaseHttpRequest;
|
|
19965
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
19966
|
+
/**
|
|
19967
|
+
* Processes a FileStack web hook.
|
|
19968
|
+
* @returns any Success
|
|
19969
|
+
* @throws ApiError
|
|
19970
|
+
*/
|
|
19971
|
+
processWebhookEvent({ xFilestackSignature, }: {
|
|
19972
|
+
/**
|
|
19973
|
+
* The filestack signature.
|
|
19974
|
+
*/
|
|
19975
|
+
xFilestackSignature?: string;
|
|
19976
|
+
}): CancelablePromise<any>;
|
|
19977
|
+
}
|
|
19978
|
+
|
|
19435
19979
|
declare class PublicGenericActivityService {
|
|
19436
19980
|
readonly httpRequest: BaseHttpRequest;
|
|
19437
19981
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -35500,6 +36044,40 @@ declare class TotalRevenueReportService {
|
|
|
35500
36044
|
}): CancelablePromise<boolean>;
|
|
35501
36045
|
}
|
|
35502
36046
|
|
|
36047
|
+
/**
|
|
36048
|
+
* The OpenAI description completion response model.
|
|
36049
|
+
*/
|
|
36050
|
+
type UnsplashSearchResponse = {
|
|
36051
|
+
/**
|
|
36052
|
+
* Gets or sets the openai response id.
|
|
36053
|
+
*/
|
|
36054
|
+
total?: number;
|
|
36055
|
+
/**
|
|
36056
|
+
* Gets or sets the used endpoint.
|
|
36057
|
+
*/
|
|
36058
|
+
totalPages?: number;
|
|
36059
|
+
/**
|
|
36060
|
+
* Gets or sets the returned choices.
|
|
36061
|
+
*/
|
|
36062
|
+
results?: Array<any> | null;
|
|
36063
|
+
};
|
|
36064
|
+
|
|
36065
|
+
declare class UnsplashService {
|
|
36066
|
+
readonly httpRequest: BaseHttpRequest;
|
|
36067
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
36068
|
+
/**
|
|
36069
|
+
* Returns a suggestion for an activity description based on given attributes.
|
|
36070
|
+
* @returns UnsplashSearchResponse Success
|
|
36071
|
+
* @throws ApiError
|
|
36072
|
+
*/
|
|
36073
|
+
searchImages({ searchText, }: {
|
|
36074
|
+
/**
|
|
36075
|
+
* Searh keyword.
|
|
36076
|
+
*/
|
|
36077
|
+
searchText?: string;
|
|
36078
|
+
}): CancelablePromise<UnsplashSearchResponse>;
|
|
36079
|
+
}
|
|
36080
|
+
|
|
35503
36081
|
type UserPage = {
|
|
35504
36082
|
pagination: Pagination;
|
|
35505
36083
|
readonly items: Array<User>;
|
|
@@ -39318,7 +39896,10 @@ declare class ApiClient {
|
|
|
39318
39896
|
readonly genericActivity: GenericActivityService;
|
|
39319
39897
|
readonly geocode: GeocodeService;
|
|
39320
39898
|
readonly hereAutocompleteLookup: HereAutocompleteLookupService;
|
|
39899
|
+
readonly imageLibraryCategory: ImageLibraryCategoryService;
|
|
39900
|
+
readonly imageLibraryImage: ImageLibraryImageService;
|
|
39321
39901
|
readonly images: ImagesService;
|
|
39902
|
+
readonly imageUploadHistory: ImageUploadHistoryService;
|
|
39322
39903
|
readonly leasing: LeasingService;
|
|
39323
39904
|
readonly loqatePlaces: LoqatePlacesService;
|
|
39324
39905
|
readonly notificationQueue: NotificationQueueService;
|
|
@@ -39338,6 +39919,7 @@ declare class ApiClient {
|
|
|
39338
39919
|
readonly publicCourses: PublicCoursesService;
|
|
39339
39920
|
readonly publicCustomers: PublicCustomersService;
|
|
39340
39921
|
readonly publicFacilities: PublicFacilitiesService;
|
|
39922
|
+
readonly publicFilestackWebhook: PublicFilestackWebhookService;
|
|
39341
39923
|
readonly publicGenericActivity: PublicGenericActivityService;
|
|
39342
39924
|
readonly publicHealthCheck: PublicHealthCheckService;
|
|
39343
39925
|
readonly publicLeasing: PublicLeasingService;
|
|
@@ -39379,6 +39961,7 @@ declare class ApiClient {
|
|
|
39379
39961
|
readonly tenantWebsiteSettings: TenantWebsiteSettingsService;
|
|
39380
39962
|
readonly timezone: TimezoneService;
|
|
39381
39963
|
readonly totalRevenueReport: TotalRevenueReportService;
|
|
39964
|
+
readonly unsplash: UnsplashService;
|
|
39382
39965
|
readonly users: UsersService;
|
|
39383
39966
|
readonly venueManagers: VenueManagersService;
|
|
39384
39967
|
readonly venues: VenuesService;
|
|
@@ -39517,4 +40100,4 @@ type ValidationResultModel = {
|
|
|
39517
40100
|
readonly errors?: Array<ValidationError> | null;
|
|
39518
40101
|
};
|
|
39519
40102
|
|
|
39520
|
-
export { Activity, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityPatch, GenericActivityPost, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImagePage, ImagePatch, ImagePost, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderEmailCustomerPatch, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
|
40103
|
+
export { Activity, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityPatch, GenericActivityPost, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderEmailCustomerPatch, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|