reach-api-sdk 1.0.100 → 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 +722 -83
- package/dist/reach-sdk.js +563 -1
- package/package.json +1 -1
- package/src/apiClient.ts +15 -0
- package/src/definition/swagger.yaml +1968 -157
- package/src/index.ts +13 -0
- package/src/models/CourseSessionReschedulePatch.ts +30 -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/CourseSessionsService.ts +35 -0
- package/src/services/CoursesService.ts +33 -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
|
@@ -5822,6 +5822,21 @@ declare class CoursesService {
|
|
|
5822
5822
|
* @throws ApiError
|
|
5823
5823
|
*/
|
|
5824
5824
|
generateId(): CancelablePromise<string>;
|
|
5825
|
+
/**
|
|
5826
|
+
* Changes the capacity of a course />.
|
|
5827
|
+
* @returns Course Success
|
|
5828
|
+
* @throws ApiError
|
|
5829
|
+
*/
|
|
5830
|
+
changeCapacity({ courseId, capacity, }: {
|
|
5831
|
+
/**
|
|
5832
|
+
* The course Id.
|
|
5833
|
+
*/
|
|
5834
|
+
courseId: string;
|
|
5835
|
+
/**
|
|
5836
|
+
* The new capacity.
|
|
5837
|
+
*/
|
|
5838
|
+
capacity: number;
|
|
5839
|
+
}): CancelablePromise<Course>;
|
|
5825
5840
|
/**
|
|
5826
5841
|
* Emails all attendees booked onto the opportunity />.
|
|
5827
5842
|
* @returns ScheduledSession Success
|
|
@@ -6568,6 +6583,32 @@ type CourseSessionPost = {
|
|
|
6568
6583
|
capacityUnlimited?: boolean;
|
|
6569
6584
|
};
|
|
6570
6585
|
|
|
6586
|
+
/**
|
|
6587
|
+
* Post model for course session rescheduling updates.
|
|
6588
|
+
*/
|
|
6589
|
+
type CourseSessionReschedulePatch = {
|
|
6590
|
+
/**
|
|
6591
|
+
* Gets or sets the tenant Id.
|
|
6592
|
+
*/
|
|
6593
|
+
tenantId: string;
|
|
6594
|
+
/**
|
|
6595
|
+
* Gets or sets the Id.
|
|
6596
|
+
*/
|
|
6597
|
+
id: string;
|
|
6598
|
+
/**
|
|
6599
|
+
* Gets or sets the course session to start date time.
|
|
6600
|
+
*/
|
|
6601
|
+
startDateTime: string;
|
|
6602
|
+
/**
|
|
6603
|
+
* Gets or sets the course session to duration.
|
|
6604
|
+
*/
|
|
6605
|
+
durationMinutes?: number;
|
|
6606
|
+
/**
|
|
6607
|
+
* Gets or sets a value indicating whether to notify customers.
|
|
6608
|
+
*/
|
|
6609
|
+
notifyCustomers?: boolean;
|
|
6610
|
+
};
|
|
6611
|
+
|
|
6571
6612
|
declare class CourseSessionsService {
|
|
6572
6613
|
readonly httpRequest: BaseHttpRequest;
|
|
6573
6614
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -6582,6 +6623,21 @@ declare class CourseSessionsService {
|
|
|
6582
6623
|
*/
|
|
6583
6624
|
courseSessionId: string;
|
|
6584
6625
|
}): CancelablePromise<CourseSession>;
|
|
6626
|
+
/**
|
|
6627
|
+
* Reschedules the course session />.
|
|
6628
|
+
* @returns CourseSession Success
|
|
6629
|
+
* @throws ApiError
|
|
6630
|
+
*/
|
|
6631
|
+
reschedule({ courseSessionId, requestBody, }: {
|
|
6632
|
+
/**
|
|
6633
|
+
* The course session Id.
|
|
6634
|
+
*/
|
|
6635
|
+
courseSessionId: string;
|
|
6636
|
+
/**
|
|
6637
|
+
* The model for the new opportunity dates and times.
|
|
6638
|
+
*/
|
|
6639
|
+
requestBody?: CourseSessionReschedulePatch;
|
|
6640
|
+
}): CancelablePromise<CourseSession>;
|
|
6585
6641
|
/**
|
|
6586
6642
|
* Cleans table of leased and conflicted course sessions.
|
|
6587
6643
|
* @returns number Success
|
|
@@ -11077,117 +11133,143 @@ declare class HereAutocompleteLookupService {
|
|
|
11077
11133
|
}): CancelablePromise<HereLookupResults>;
|
|
11078
11134
|
}
|
|
11079
11135
|
|
|
11080
|
-
type ImagePage = {
|
|
11081
|
-
pagination: Pagination;
|
|
11082
|
-
readonly items: Array<Image>;
|
|
11083
|
-
};
|
|
11084
|
-
|
|
11085
11136
|
/**
|
|
11086
|
-
*
|
|
11137
|
+
* Represents an image library category within the Reach application.
|
|
11087
11138
|
*/
|
|
11088
|
-
type
|
|
11139
|
+
type ImageLibraryImage = {
|
|
11089
11140
|
/**
|
|
11090
|
-
* Gets or sets the
|
|
11141
|
+
* Gets or sets the activities Id.
|
|
11091
11142
|
*/
|
|
11092
|
-
|
|
11143
|
+
id?: number;
|
|
11093
11144
|
/**
|
|
11094
|
-
* Gets or sets the
|
|
11145
|
+
* Gets or sets the activity_id.
|
|
11095
11146
|
*/
|
|
11096
|
-
|
|
11147
|
+
imageLibraryCategoryId?: number;
|
|
11148
|
+
/**
|
|
11149
|
+
* Gets or sets the image url.
|
|
11150
|
+
*/
|
|
11151
|
+
imageUrl?: string | null;
|
|
11152
|
+
imageLibraryCategory?: ImageLibraryCategory;
|
|
11097
11153
|
};
|
|
11098
11154
|
|
|
11099
11155
|
/**
|
|
11100
|
-
*
|
|
11156
|
+
* Represents an image library category within the Reach application.
|
|
11101
11157
|
*/
|
|
11102
|
-
type
|
|
11158
|
+
type ImageLibraryCategory = {
|
|
11103
11159
|
/**
|
|
11104
|
-
* Gets or sets the
|
|
11160
|
+
* Gets or sets the activities Id.
|
|
11105
11161
|
*/
|
|
11106
|
-
|
|
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;
|
|
11107
11180
|
};
|
|
11108
11181
|
|
|
11109
|
-
declare class
|
|
11182
|
+
declare class ImageLibraryCategoryService {
|
|
11110
11183
|
readonly httpRequest: BaseHttpRequest;
|
|
11111
11184
|
constructor(httpRequest: BaseHttpRequest);
|
|
11112
11185
|
/**
|
|
11113
|
-
*
|
|
11114
|
-
* @returns
|
|
11186
|
+
* Gets a Reach.Models.ImageLibraryCategory by its Id.
|
|
11187
|
+
* @returns ImageLibraryCategory Success
|
|
11115
11188
|
* @throws ApiError
|
|
11116
11189
|
*/
|
|
11117
|
-
|
|
11190
|
+
getObject({ id, }: {
|
|
11118
11191
|
/**
|
|
11119
|
-
* The
|
|
11192
|
+
* The Reach.Models.ImageLibraryCategory id.
|
|
11120
11193
|
*/
|
|
11121
|
-
|
|
11122
|
-
}): CancelablePromise<
|
|
11194
|
+
id: number;
|
|
11195
|
+
}): CancelablePromise<ImageLibraryCategory>;
|
|
11123
11196
|
/**
|
|
11124
|
-
* Gets
|
|
11125
|
-
* @returns
|
|
11197
|
+
* Gets a list of Reach.Models.Activity.
|
|
11198
|
+
* @returns ImageLibraryCategory Success
|
|
11126
11199
|
* @throws ApiError
|
|
11127
11200
|
*/
|
|
11128
|
-
|
|
11201
|
+
getList({ activityId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11129
11202
|
/**
|
|
11130
|
-
*
|
|
11203
|
+
* Gets or sets the queryable activity Id.
|
|
11131
11204
|
*/
|
|
11132
|
-
|
|
11133
|
-
}): CancelablePromise<Image>;
|
|
11134
|
-
/**
|
|
11135
|
-
* Deletes the resource.
|
|
11136
|
-
* @returns any Success
|
|
11137
|
-
* @throws ApiError
|
|
11138
|
-
*/
|
|
11139
|
-
deleteById({ id, }: {
|
|
11205
|
+
activityId?: number;
|
|
11140
11206
|
/**
|
|
11141
|
-
*
|
|
11207
|
+
* Gets or sets the page number for paged queries.
|
|
11142
11208
|
*/
|
|
11143
|
-
|
|
11144
|
-
}): CancelablePromise<any>;
|
|
11145
|
-
/**
|
|
11146
|
-
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
11147
|
-
* @returns boolean Success
|
|
11148
|
-
* @throws ApiError
|
|
11149
|
-
*/
|
|
11150
|
-
exists({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11209
|
+
pageNumber?: number;
|
|
11151
11210
|
/**
|
|
11152
|
-
* Gets or sets the
|
|
11211
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
11153
11212
|
*/
|
|
11154
|
-
|
|
11213
|
+
take?: number;
|
|
11155
11214
|
/**
|
|
11156
|
-
* Gets or sets the
|
|
11215
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
11157
11216
|
*/
|
|
11158
|
-
|
|
11217
|
+
limitListRequests?: boolean;
|
|
11159
11218
|
/**
|
|
11160
|
-
* Gets or sets the
|
|
11219
|
+
* Gets or sets the Tenant Id.
|
|
11161
11220
|
*/
|
|
11162
|
-
|
|
11221
|
+
tenantId?: string;
|
|
11163
11222
|
/**
|
|
11164
|
-
* Gets or sets the
|
|
11223
|
+
* Gets or sets the Modifed By Id.
|
|
11165
11224
|
*/
|
|
11166
|
-
|
|
11225
|
+
modifiedById?: string;
|
|
11167
11226
|
/**
|
|
11168
|
-
* Gets or sets the
|
|
11227
|
+
* Gets or sets the Modifed By Ids.
|
|
11169
11228
|
*/
|
|
11170
|
-
|
|
11229
|
+
modifiedByIds?: Array<string>;
|
|
11171
11230
|
/**
|
|
11172
|
-
* Gets or sets the
|
|
11231
|
+
* Gets or sets the Date Created greater than equal to.
|
|
11173
11232
|
*/
|
|
11174
|
-
|
|
11233
|
+
dateCreatedGte?: string;
|
|
11175
11234
|
/**
|
|
11176
|
-
* Gets or sets the
|
|
11235
|
+
* Gets or sets the Date Created less than equal to.
|
|
11177
11236
|
*/
|
|
11178
|
-
|
|
11237
|
+
dateCreatedLte?: string;
|
|
11179
11238
|
/**
|
|
11180
|
-
* Gets or sets the queryable
|
|
11239
|
+
* Gets or sets the queryable only is live status.
|
|
11181
11240
|
*/
|
|
11182
|
-
|
|
11241
|
+
isLive?: boolean;
|
|
11183
11242
|
/**
|
|
11184
|
-
* Gets or sets the
|
|
11243
|
+
* Gets or sets the sort order direction.
|
|
11185
11244
|
*/
|
|
11186
|
-
|
|
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, }: {
|
|
11187
11258
|
/**
|
|
11188
|
-
*
|
|
11259
|
+
* The Reach.Models.ImageLibraryImage id.
|
|
11189
11260
|
*/
|
|
11190
|
-
|
|
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;
|
|
11191
11273
|
/**
|
|
11192
11274
|
* Gets or sets the page number for paged queries.
|
|
11193
11275
|
*/
|
|
@@ -11228,13 +11310,80 @@ declare class ImagesService {
|
|
|
11228
11310
|
* Gets or sets the sort order direction.
|
|
11229
11311
|
*/
|
|
11230
11312
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
11231
|
-
}): CancelablePromise<
|
|
11313
|
+
}): CancelablePromise<Array<ImageLibraryImage>>;
|
|
11314
|
+
}
|
|
11315
|
+
|
|
11316
|
+
type ImagePage = {
|
|
11317
|
+
pagination: Pagination;
|
|
11318
|
+
readonly items: Array<Image>;
|
|
11319
|
+
};
|
|
11320
|
+
|
|
11321
|
+
/**
|
|
11322
|
+
* Post model for image updates.
|
|
11323
|
+
*/
|
|
11324
|
+
type ImagePatch = {
|
|
11232
11325
|
/**
|
|
11233
|
-
* Gets
|
|
11234
|
-
|
|
11326
|
+
* Gets or sets the tenant Id.
|
|
11327
|
+
*/
|
|
11328
|
+
tenantId: string;
|
|
11329
|
+
/**
|
|
11330
|
+
* Gets or sets the Id.
|
|
11331
|
+
*/
|
|
11332
|
+
id: string;
|
|
11333
|
+
};
|
|
11334
|
+
|
|
11335
|
+
/**
|
|
11336
|
+
* Post model for image inserts.
|
|
11337
|
+
*/
|
|
11338
|
+
type ImagePost = {
|
|
11339
|
+
/**
|
|
11340
|
+
* Gets or sets the tenant Id.
|
|
11341
|
+
*/
|
|
11342
|
+
tenantId: string;
|
|
11343
|
+
};
|
|
11344
|
+
|
|
11345
|
+
declare class ImagesService {
|
|
11346
|
+
readonly httpRequest: BaseHttpRequest;
|
|
11347
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
11348
|
+
/**
|
|
11349
|
+
* Reorders images />.
|
|
11350
|
+
* @returns any Success
|
|
11235
11351
|
* @throws ApiError
|
|
11236
11352
|
*/
|
|
11237
|
-
|
|
11353
|
+
reorder({ requestBody, }: {
|
|
11354
|
+
/**
|
|
11355
|
+
* The Image models.
|
|
11356
|
+
*/
|
|
11357
|
+
requestBody?: Array<Image>;
|
|
11358
|
+
}): CancelablePromise<any>;
|
|
11359
|
+
/**
|
|
11360
|
+
* Gets the resource by its Id.
|
|
11361
|
+
* @returns Image Success
|
|
11362
|
+
* @throws ApiError
|
|
11363
|
+
*/
|
|
11364
|
+
getObject({ id, }: {
|
|
11365
|
+
/**
|
|
11366
|
+
* The <typeparamref name="TObject" /> id.
|
|
11367
|
+
*/
|
|
11368
|
+
id: string;
|
|
11369
|
+
}): CancelablePromise<Image>;
|
|
11370
|
+
/**
|
|
11371
|
+
* Deletes the resource.
|
|
11372
|
+
* @returns any Success
|
|
11373
|
+
* @throws ApiError
|
|
11374
|
+
*/
|
|
11375
|
+
deleteById({ id, }: {
|
|
11376
|
+
/**
|
|
11377
|
+
* The <typeparamref name="TObject" /> id.
|
|
11378
|
+
*/
|
|
11379
|
+
id: string;
|
|
11380
|
+
}): CancelablePromise<any>;
|
|
11381
|
+
/**
|
|
11382
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
11383
|
+
* @returns boolean Success
|
|
11384
|
+
* @throws ApiError
|
|
11385
|
+
*/
|
|
11386
|
+
exists({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11238
11387
|
/**
|
|
11239
11388
|
* Gets or sets the queryable venue id.
|
|
11240
11389
|
*/
|
|
@@ -11315,24 +11464,111 @@ declare class ImagesService {
|
|
|
11315
11464
|
* Gets or sets the sort order direction.
|
|
11316
11465
|
*/
|
|
11317
11466
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
11318
|
-
}): CancelablePromise<
|
|
11319
|
-
/**
|
|
11320
|
-
* Deletes the resource.
|
|
11321
|
-
* @returns any Success
|
|
11322
|
-
* @throws ApiError
|
|
11323
|
-
*/
|
|
11324
|
-
deleteByObject({ requestBody, }: {
|
|
11325
|
-
/**
|
|
11326
|
-
* The <typeparamref name="TObject" /> model.
|
|
11327
|
-
*/
|
|
11328
|
-
requestBody?: Image;
|
|
11329
|
-
}): CancelablePromise<any>;
|
|
11467
|
+
}): CancelablePromise<boolean>;
|
|
11330
11468
|
/**
|
|
11331
|
-
* Gets a list of resources
|
|
11332
|
-
* @returns
|
|
11469
|
+
* Gets a list of resources.
|
|
11470
|
+
* @returns ImagePage Success
|
|
11333
11471
|
* @throws ApiError
|
|
11334
11472
|
*/
|
|
11335
|
-
|
|
11473
|
+
getPage({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11474
|
+
/**
|
|
11475
|
+
* Gets or sets the queryable venue id.
|
|
11476
|
+
*/
|
|
11477
|
+
venueId?: string;
|
|
11478
|
+
/**
|
|
11479
|
+
* Gets or sets the queryable venue ids.
|
|
11480
|
+
*/
|
|
11481
|
+
venueIds?: Array<string>;
|
|
11482
|
+
/**
|
|
11483
|
+
* Gets or sets the queryable facility id.
|
|
11484
|
+
*/
|
|
11485
|
+
facilityId?: string;
|
|
11486
|
+
/**
|
|
11487
|
+
* Gets or sets the queryable facility ids.
|
|
11488
|
+
*/
|
|
11489
|
+
facilityIds?: Array<string>;
|
|
11490
|
+
/**
|
|
11491
|
+
* Gets or sets the queryable session id.
|
|
11492
|
+
*/
|
|
11493
|
+
sessionId?: string;
|
|
11494
|
+
/**
|
|
11495
|
+
* Gets or sets the queryable session ids.
|
|
11496
|
+
*/
|
|
11497
|
+
sessionIds?: Array<string>;
|
|
11498
|
+
/**
|
|
11499
|
+
* Gets or sets the queryable course id.
|
|
11500
|
+
*/
|
|
11501
|
+
courseId?: string;
|
|
11502
|
+
/**
|
|
11503
|
+
* Gets or sets the queryable course ids.
|
|
11504
|
+
*/
|
|
11505
|
+
courseIds?: Array<string>;
|
|
11506
|
+
/**
|
|
11507
|
+
* Gets or sets the queryable programme id.
|
|
11508
|
+
*/
|
|
11509
|
+
programmeId?: string;
|
|
11510
|
+
/**
|
|
11511
|
+
* Gets or sets the queryable programme ids.
|
|
11512
|
+
*/
|
|
11513
|
+
programmeIds?: Array<string>;
|
|
11514
|
+
/**
|
|
11515
|
+
* Gets or sets the page number for paged queries.
|
|
11516
|
+
*/
|
|
11517
|
+
pageNumber?: number;
|
|
11518
|
+
/**
|
|
11519
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
11520
|
+
*/
|
|
11521
|
+
take?: number;
|
|
11522
|
+
/**
|
|
11523
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
11524
|
+
*/
|
|
11525
|
+
limitListRequests?: boolean;
|
|
11526
|
+
/**
|
|
11527
|
+
* Gets or sets the Tenant Id.
|
|
11528
|
+
*/
|
|
11529
|
+
tenantId?: string;
|
|
11530
|
+
/**
|
|
11531
|
+
* Gets or sets the Modifed By Id.
|
|
11532
|
+
*/
|
|
11533
|
+
modifiedById?: string;
|
|
11534
|
+
/**
|
|
11535
|
+
* Gets or sets the Modifed By Ids.
|
|
11536
|
+
*/
|
|
11537
|
+
modifiedByIds?: Array<string>;
|
|
11538
|
+
/**
|
|
11539
|
+
* Gets or sets the Date Created greater than equal to.
|
|
11540
|
+
*/
|
|
11541
|
+
dateCreatedGte?: string;
|
|
11542
|
+
/**
|
|
11543
|
+
* Gets or sets the Date Created less than equal to.
|
|
11544
|
+
*/
|
|
11545
|
+
dateCreatedLte?: string;
|
|
11546
|
+
/**
|
|
11547
|
+
* Gets or sets the queryable only is live status.
|
|
11548
|
+
*/
|
|
11549
|
+
isLive?: boolean;
|
|
11550
|
+
/**
|
|
11551
|
+
* Gets or sets the sort order direction.
|
|
11552
|
+
*/
|
|
11553
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
11554
|
+
}): CancelablePromise<ImagePage>;
|
|
11555
|
+
/**
|
|
11556
|
+
* Deletes the resource.
|
|
11557
|
+
* @returns any Success
|
|
11558
|
+
* @throws ApiError
|
|
11559
|
+
*/
|
|
11560
|
+
deleteByObject({ requestBody, }: {
|
|
11561
|
+
/**
|
|
11562
|
+
* The <typeparamref name="TObject" /> model.
|
|
11563
|
+
*/
|
|
11564
|
+
requestBody?: Image;
|
|
11565
|
+
}): CancelablePromise<any>;
|
|
11566
|
+
/**
|
|
11567
|
+
* Gets a list of resources unpaged and without references.
|
|
11568
|
+
* @returns Image Success
|
|
11569
|
+
* @throws ApiError
|
|
11570
|
+
*/
|
|
11571
|
+
getListWithoutReferences({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11336
11572
|
/**
|
|
11337
11573
|
* Gets or sets the queryable venue id.
|
|
11338
11574
|
*/
|
|
@@ -11558,6 +11794,354 @@ declare class ImagesService {
|
|
|
11558
11794
|
}): CancelablePromise<boolean>;
|
|
11559
11795
|
}
|
|
11560
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
|
+
|
|
11561
12145
|
/**
|
|
11562
12146
|
* Post model for the items contained in the order.
|
|
11563
12147
|
*/
|
|
@@ -19376,6 +19960,22 @@ declare class PublicFacilitiesService {
|
|
|
19376
19960
|
}): CancelablePromise<Array<Facility>>;
|
|
19377
19961
|
}
|
|
19378
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
|
+
|
|
19379
19979
|
declare class PublicGenericActivityService {
|
|
19380
19980
|
readonly httpRequest: BaseHttpRequest;
|
|
19381
19981
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -35444,6 +36044,40 @@ declare class TotalRevenueReportService {
|
|
|
35444
36044
|
}): CancelablePromise<boolean>;
|
|
35445
36045
|
}
|
|
35446
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
|
+
|
|
35447
36081
|
type UserPage = {
|
|
35448
36082
|
pagination: Pagination;
|
|
35449
36083
|
readonly items: Array<User>;
|
|
@@ -39262,7 +39896,10 @@ declare class ApiClient {
|
|
|
39262
39896
|
readonly genericActivity: GenericActivityService;
|
|
39263
39897
|
readonly geocode: GeocodeService;
|
|
39264
39898
|
readonly hereAutocompleteLookup: HereAutocompleteLookupService;
|
|
39899
|
+
readonly imageLibraryCategory: ImageLibraryCategoryService;
|
|
39900
|
+
readonly imageLibraryImage: ImageLibraryImageService;
|
|
39265
39901
|
readonly images: ImagesService;
|
|
39902
|
+
readonly imageUploadHistory: ImageUploadHistoryService;
|
|
39266
39903
|
readonly leasing: LeasingService;
|
|
39267
39904
|
readonly loqatePlaces: LoqatePlacesService;
|
|
39268
39905
|
readonly notificationQueue: NotificationQueueService;
|
|
@@ -39282,6 +39919,7 @@ declare class ApiClient {
|
|
|
39282
39919
|
readonly publicCourses: PublicCoursesService;
|
|
39283
39920
|
readonly publicCustomers: PublicCustomersService;
|
|
39284
39921
|
readonly publicFacilities: PublicFacilitiesService;
|
|
39922
|
+
readonly publicFilestackWebhook: PublicFilestackWebhookService;
|
|
39285
39923
|
readonly publicGenericActivity: PublicGenericActivityService;
|
|
39286
39924
|
readonly publicHealthCheck: PublicHealthCheckService;
|
|
39287
39925
|
readonly publicLeasing: PublicLeasingService;
|
|
@@ -39323,6 +39961,7 @@ declare class ApiClient {
|
|
|
39323
39961
|
readonly tenantWebsiteSettings: TenantWebsiteSettingsService;
|
|
39324
39962
|
readonly timezone: TimezoneService;
|
|
39325
39963
|
readonly totalRevenueReport: TotalRevenueReportService;
|
|
39964
|
+
readonly unsplash: UnsplashService;
|
|
39326
39965
|
readonly users: UsersService;
|
|
39327
39966
|
readonly venueManagers: VenueManagersService;
|
|
39328
39967
|
readonly venues: VenuesService;
|
|
@@ -39461,4 +40100,4 @@ type ValidationResultModel = {
|
|
|
39461
40100
|
readonly errors?: Array<ValidationError> | null;
|
|
39462
40101
|
};
|
|
39463
40102
|
|
|
39464
|
-
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, 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 };
|