reach-api-sdk 1.0.101 → 1.0.103

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.
Files changed (34) hide show
  1. package/dist/reach-sdk.d.ts +1122 -248
  2. package/dist/reach-sdk.js +761 -115
  3. package/package.json +1 -1
  4. package/src/apiClient.ts +15 -0
  5. package/src/definition/swagger.yaml +2637 -556
  6. package/src/index.ts +12 -0
  7. package/src/models/Course.ts +4 -0
  8. package/src/models/CoursePatch.ts +4 -0
  9. package/src/models/CreateEmailSettings.ts +4 -0
  10. package/src/models/CreateTemplateDetail.ts +8 -0
  11. package/src/models/EmailReminderSchedule.ts +6 -6
  12. package/src/models/EmailSetting.ts +4 -0
  13. package/src/models/GenericActivity.ts +4 -0
  14. package/src/models/ImageLibraryCategory.ts +38 -0
  15. package/src/models/ImageLibraryImage.ts +25 -0
  16. package/src/models/ImageUploadHistory.ts +42 -0
  17. package/src/models/ImageUploadHistoryPage.ts +12 -0
  18. package/src/models/ImageUploadHistoryPatch.ts +18 -0
  19. package/src/models/ImageUploadHistoryPost.ts +14 -0
  20. package/src/models/Session.ts +4 -0
  21. package/src/models/SessionPatch.ts +4 -0
  22. package/src/models/TemplateDetail.ts +8 -0
  23. package/src/models/TemplateDetailPatch.ts +8 -0
  24. package/src/models/UnsplashSearchResponse.ts +22 -0
  25. package/src/models/UpdateEmailSettings.ts +4 -0
  26. package/src/services/EmailReminderSchedulesService.ts +64 -16
  27. package/src/services/ImageLibraryCategoryService.ts +127 -0
  28. package/src/services/ImageLibraryImageService.ts +127 -0
  29. package/src/services/ImageUploadHistoryService.ts +599 -0
  30. package/src/services/PublicFilestackWebhookService.ts +43 -0
  31. package/src/services/PublicGenericActivityService.ts +2 -2
  32. package/src/services/PublicVenuesService.ts +207 -0
  33. package/src/services/UnsplashService.ts +39 -0
  34. package/src/services/VenuesService.ts +48 -0
@@ -2663,6 +2663,10 @@ type Session = {
2663
2663
  * Gets or sets a value indicating whether the Session can be used as a template.
2664
2664
  */
2665
2665
  allowTemplating?: boolean;
2666
+ /**
2667
+ * Gets or sets the reminder hours before start.
2668
+ */
2669
+ reminderHoursBeforeStart?: number | null;
2666
2670
  /**
2667
2671
  * Gets or sets a value indicating whether the session is archived and should be ignored under normal operation.
2668
2672
  */
@@ -3859,6 +3863,10 @@ type Course = {
3859
3863
  */
3860
3864
  postCompletionEmailSent?: boolean;
3861
3865
  status?: CourseStatus;
3866
+ /**
3867
+ * Gets or sets the reminder hours before start.
3868
+ */
3869
+ reminderHoursBeforeStart?: number | null;
3862
3870
  /**
3863
3871
  * Gets or sets a value indicating whether the course is archived and should be ignored under normal operation.
3864
3872
  */
@@ -5412,6 +5420,10 @@ type CreateEmailSettings = {
5412
5420
  * Gets or sets the order post completion text.
5413
5421
  */
5414
5422
  postCompletionText?: string | null;
5423
+ /**
5424
+ * Gets or sets the order post completion text.
5425
+ */
5426
+ reminderEmailText?: string | null;
5415
5427
  };
5416
5428
 
5417
5429
  /**
@@ -5618,6 +5630,10 @@ type UpdateEmailSettings = {
5618
5630
  * Gets or sets the order post completion text.
5619
5631
  */
5620
5632
  postCompletionText?: string | null;
5633
+ /**
5634
+ * Gets or sets the order post completion text.
5635
+ */
5636
+ reminderEmailText?: string | null;
5621
5637
  };
5622
5638
 
5623
5639
  /**
@@ -5735,6 +5751,10 @@ type CoursePatch = {
5735
5751
  * Gets or sets a value indicating whether the course can be used as a template.
5736
5752
  */
5737
5753
  allowTemplating?: boolean | null;
5754
+ /**
5755
+ * Gets or sets the Reminder Hours Before Start.
5756
+ */
5757
+ reminderHoursBeforeStart?: number | null;
5738
5758
  /**
5739
5759
  * Gets or sets a value indicating whether the course is archived and should be ignored under normal operation.
5740
5760
  */
@@ -8242,17 +8262,17 @@ type EmailReminderSchedule = {
8242
8262
  */
8243
8263
  isLive: boolean;
8244
8264
  /**
8245
- * Gets or sets the order Id.
8265
+ * Gets or sets the scheduled session id.
8246
8266
  */
8247
- orderId?: string | null;
8267
+ scheduledSessionId?: string | null;
8248
8268
  /**
8249
- * Gets or sets the date the reminder is scheduled to send.
8269
+ * Gets or sets the course id.
8250
8270
  */
8251
- dateScheduled?: string;
8271
+ courseSessionId?: string | null;
8252
8272
  /**
8253
- * Gets or sets the pre calculated reminder json.
8273
+ * Gets or sets the date the reminder is scheduled to send.
8254
8274
  */
8255
- reminderJson?: string | null;
8275
+ dateScheduled?: string;
8256
8276
  /**
8257
8277
  * Gets or sets a value indicating whether the reminder has been sent.
8258
8278
  */
@@ -8324,11 +8344,15 @@ declare class EmailReminderSchedulesService {
8324
8344
  * @returns boolean Success
8325
8345
  * @throws ApiError
8326
8346
  */
8327
- exists({ orderId, dateScheduledGte, dateScheduledLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8347
+ exists({ courseSessionId, scheduledSessionId, dateScheduledGte, dateScheduledLte, sent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8328
8348
  /**
8329
- * Gets or sets the queryable Order Id.
8349
+ * Gets or sets the queryable Course Session Id.
8330
8350
  */
8331
- orderId?: string;
8351
+ courseSessionId?: string;
8352
+ /**
8353
+ * Gets or sets the queryable Scheduled Session Id.
8354
+ */
8355
+ scheduledSessionId?: string;
8332
8356
  /**
8333
8357
  * Gets or sets the queryable date scheduled greater than.
8334
8358
  */
@@ -8337,6 +8361,10 @@ declare class EmailReminderSchedulesService {
8337
8361
  * Gets or sets the queryable date scheduled less than.
8338
8362
  */
8339
8363
  dateScheduledLte?: string;
8364
+ /**
8365
+ * Gets or sets the queryable if reminder id sent or no.
8366
+ */
8367
+ sent?: boolean;
8340
8368
  /**
8341
8369
  * Gets or sets the page number for paged queries.
8342
8370
  */
@@ -8383,11 +8411,15 @@ declare class EmailReminderSchedulesService {
8383
8411
  * @returns EmailReminderSchedulePage Success
8384
8412
  * @throws ApiError
8385
8413
  */
8386
- getPage({ orderId, dateScheduledGte, dateScheduledLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8414
+ getPage({ courseSessionId, scheduledSessionId, dateScheduledGte, dateScheduledLte, sent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8387
8415
  /**
8388
- * Gets or sets the queryable Order Id.
8416
+ * Gets or sets the queryable Course Session Id.
8389
8417
  */
8390
- orderId?: string;
8418
+ courseSessionId?: string;
8419
+ /**
8420
+ * Gets or sets the queryable Scheduled Session Id.
8421
+ */
8422
+ scheduledSessionId?: string;
8391
8423
  /**
8392
8424
  * Gets or sets the queryable date scheduled greater than.
8393
8425
  */
@@ -8396,6 +8428,10 @@ declare class EmailReminderSchedulesService {
8396
8428
  * Gets or sets the queryable date scheduled less than.
8397
8429
  */
8398
8430
  dateScheduledLte?: string;
8431
+ /**
8432
+ * Gets or sets the queryable if reminder id sent or no.
8433
+ */
8434
+ sent?: boolean;
8399
8435
  /**
8400
8436
  * Gets or sets the page number for paged queries.
8401
8437
  */
@@ -8453,11 +8489,15 @@ declare class EmailReminderSchedulesService {
8453
8489
  * @returns EmailReminderSchedule Success
8454
8490
  * @throws ApiError
8455
8491
  */
8456
- getListWithoutReferences({ orderId, dateScheduledGte, dateScheduledLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8492
+ getListWithoutReferences({ courseSessionId, scheduledSessionId, dateScheduledGte, dateScheduledLte, sent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8457
8493
  /**
8458
- * Gets or sets the queryable Order Id.
8494
+ * Gets or sets the queryable Course Session Id.
8459
8495
  */
8460
- orderId?: string;
8496
+ courseSessionId?: string;
8497
+ /**
8498
+ * Gets or sets the queryable Scheduled Session Id.
8499
+ */
8500
+ scheduledSessionId?: string;
8461
8501
  /**
8462
8502
  * Gets or sets the queryable date scheduled greater than.
8463
8503
  */
@@ -8466,6 +8506,10 @@ declare class EmailReminderSchedulesService {
8466
8506
  * Gets or sets the queryable date scheduled less than.
8467
8507
  */
8468
8508
  dateScheduledLte?: string;
8509
+ /**
8510
+ * Gets or sets the queryable if reminder id sent or no.
8511
+ */
8512
+ sent?: boolean;
8469
8513
  /**
8470
8514
  * Gets or sets the page number for paged queries.
8471
8515
  */
@@ -8512,11 +8556,15 @@ declare class EmailReminderSchedulesService {
8512
8556
  * @returns EmailReminderSchedule Success
8513
8557
  * @throws ApiError
8514
8558
  */
8515
- getListIdName({ orderId, dateScheduledGte, dateScheduledLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8559
+ getListIdName({ courseSessionId, scheduledSessionId, dateScheduledGte, dateScheduledLte, sent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
8516
8560
  /**
8517
- * Gets or sets the queryable Order Id.
8561
+ * Gets or sets the queryable Course Session Id.
8518
8562
  */
8519
- orderId?: string;
8563
+ courseSessionId?: string;
8564
+ /**
8565
+ * Gets or sets the queryable Scheduled Session Id.
8566
+ */
8567
+ scheduledSessionId?: string;
8520
8568
  /**
8521
8569
  * Gets or sets the queryable date scheduled greater than.
8522
8570
  */
@@ -8525,6 +8573,10 @@ declare class EmailReminderSchedulesService {
8525
8573
  * Gets or sets the queryable date scheduled less than.
8526
8574
  */
8527
8575
  dateScheduledLte?: string;
8576
+ /**
8577
+ * Gets or sets the queryable if reminder id sent or no.
8578
+ */
8579
+ sent?: boolean;
8528
8580
  /**
8529
8581
  * Gets or sets the page number for paged queries.
8530
8582
  */
@@ -8679,6 +8731,10 @@ type EmailSetting = {
8679
8731
  * Gets or sets the order post completion text.
8680
8732
  */
8681
8733
  postCompletionText?: string | null;
8734
+ /**
8735
+ * Gets or sets the reminder email text.
8736
+ */
8737
+ reminderEmailText?: string | null;
8682
8738
  };
8683
8739
 
8684
8740
  type EmailSettingPage = {
@@ -10017,6 +10073,10 @@ type GenericActivity = {
10017
10073
  * Gets or sets the max age.
10018
10074
  */
10019
10075
  maxAge?: number | null;
10076
+ /**
10077
+ * Gets or sets a value indicating whether there is an age restriction.
10078
+ */
10079
+ noAgeRestriction?: boolean;
10020
10080
  /**
10021
10081
  * Gets or sets the start date.
10022
10082
  */
@@ -11133,204 +11193,388 @@ declare class HereAutocompleteLookupService {
11133
11193
  }): CancelablePromise<HereLookupResults>;
11134
11194
  }
11135
11195
 
11136
- type ImagePage = {
11137
- pagination: Pagination;
11138
- readonly items: Array<Image>;
11139
- };
11140
-
11141
11196
  /**
11142
- * Post model for image updates.
11197
+ * Represents an image library category within the Reach application.
11143
11198
  */
11144
- type ImagePatch = {
11199
+ type ImageLibraryImage = {
11145
11200
  /**
11146
- * Gets or sets the tenant Id.
11201
+ * Gets or sets the activities Id.
11147
11202
  */
11148
- tenantId: string;
11203
+ id?: number;
11149
11204
  /**
11150
- * Gets or sets the Id.
11205
+ * Gets or sets the activity_id.
11151
11206
  */
11152
- id: string;
11207
+ imageLibraryCategoryId?: number;
11208
+ /**
11209
+ * Gets or sets the image url.
11210
+ */
11211
+ imageUrl?: string | null;
11212
+ imageLibraryCategory?: ImageLibraryCategory;
11153
11213
  };
11154
11214
 
11155
11215
  /**
11156
- * Post model for image inserts.
11216
+ * Represents an image library category within the Reach application.
11157
11217
  */
11158
- type ImagePost = {
11218
+ type ImageLibraryCategory = {
11159
11219
  /**
11160
- * Gets or sets the tenant Id.
11220
+ * Gets or sets the activities Id.
11161
11221
  */
11162
- tenantId: string;
11163
- };
11164
-
11165
- declare class ImagesService {
11166
- readonly httpRequest: BaseHttpRequest;
11167
- constructor(httpRequest: BaseHttpRequest);
11222
+ id?: number;
11168
11223
  /**
11169
- * Reorders images />.
11170
- * @returns any Success
11171
- * @throws ApiError
11224
+ * Gets or sets the activities Name.
11172
11225
  */
11173
- reorder({ requestBody, }: {
11174
- /**
11175
- * The Image models.
11176
- */
11177
- requestBody?: Array<Image>;
11178
- }): CancelablePromise<any>;
11226
+ name?: string | null;
11179
11227
  /**
11180
- * Gets the resource by its Id.
11181
- * @returns Image Success
11182
- * @throws ApiError
11228
+ * Gets or sets the activity_id.
11183
11229
  */
11184
- getObject({ id, }: {
11185
- /**
11186
- * The <typeparamref name="TObject" /> id.
11187
- */
11188
- id: string;
11189
- }): CancelablePromise<Image>;
11230
+ activityId?: number;
11190
11231
  /**
11191
- * Deletes the resource.
11192
- * @returns any Success
11193
- * @throws ApiError
11232
+ * Gets or sets the sort order.
11194
11233
  */
11195
- deleteById({ id, }: {
11196
- /**
11197
- * The <typeparamref name="TObject" /> id.
11198
- */
11199
- id: string;
11200
- }): CancelablePromise<any>;
11234
+ sortOrder?: number | null;
11235
+ activity?: Activity;
11201
11236
  /**
11202
- * Returns a value indicating whether the resource exists in the database given the provided search params.
11203
- * @returns boolean Success
11237
+ * Gets or sets a value indicating whether the category is active or not.
11238
+ */
11239
+ active?: boolean;
11240
+ /**
11241
+ * Gets or sets the image library images.
11242
+ */
11243
+ imageLibraryImages?: Array<ImageLibraryImage> | null;
11244
+ };
11245
+
11246
+ declare class ImageLibraryCategoryService {
11247
+ readonly httpRequest: BaseHttpRequest;
11248
+ constructor(httpRequest: BaseHttpRequest);
11249
+ /**
11250
+ * Gets a Reach.Models.ImageLibraryCategory by its Id.
11251
+ * @returns ImageLibraryCategory Success
11204
11252
  * @throws ApiError
11205
11253
  */
11206
- exists({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
11207
- /**
11208
- * Gets or sets the queryable venue id.
11209
- */
11210
- venueId?: string;
11211
- /**
11212
- * Gets or sets the queryable venue ids.
11213
- */
11214
- venueIds?: Array<string>;
11215
- /**
11216
- * Gets or sets the queryable facility id.
11217
- */
11218
- facilityId?: string;
11219
- /**
11220
- * Gets or sets the queryable facility ids.
11221
- */
11222
- facilityIds?: Array<string>;
11223
- /**
11224
- * Gets or sets the queryable session id.
11225
- */
11226
- sessionId?: string;
11227
- /**
11228
- * Gets or sets the queryable session ids.
11229
- */
11230
- sessionIds?: Array<string>;
11231
- /**
11232
- * Gets or sets the queryable course id.
11233
- */
11234
- courseId?: string;
11235
- /**
11236
- * Gets or sets the queryable course ids.
11237
- */
11238
- courseIds?: Array<string>;
11239
- /**
11240
- * Gets or sets the queryable programme id.
11241
- */
11242
- programmeId?: string;
11243
- /**
11244
- * Gets or sets the queryable programme ids.
11245
- */
11246
- programmeIds?: Array<string>;
11247
- /**
11248
- * Gets or sets the page number for paged queries.
11249
- */
11250
- pageNumber?: number;
11251
- /**
11252
- * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
11253
- */
11254
- take?: number;
11255
- /**
11256
- * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
11257
- */
11258
- limitListRequests?: boolean;
11259
- /**
11260
- * Gets or sets the Tenant Id.
11261
- */
11262
- tenantId?: string;
11263
- /**
11264
- * Gets or sets the Modifed By Id.
11265
- */
11266
- modifiedById?: string;
11267
- /**
11268
- * Gets or sets the Modifed By Ids.
11269
- */
11270
- modifiedByIds?: Array<string>;
11271
- /**
11272
- * Gets or sets the Date Created greater than equal to.
11273
- */
11274
- dateCreatedGte?: string;
11275
- /**
11276
- * Gets or sets the Date Created less than equal to.
11277
- */
11278
- dateCreatedLte?: string;
11279
- /**
11280
- * Gets or sets the queryable only is live status.
11281
- */
11282
- isLive?: boolean;
11254
+ getObject({ id, }: {
11283
11255
  /**
11284
- * Gets or sets the sort order direction.
11256
+ * The Reach.Models.ImageLibraryCategory id.
11285
11257
  */
11286
- sortOrderDirection?: SearchSortOrderDirection;
11287
- }): CancelablePromise<boolean>;
11258
+ id: number;
11259
+ }): CancelablePromise<ImageLibraryCategory>;
11288
11260
  /**
11289
- * Gets a list of resources.
11290
- * @returns ImagePage Success
11261
+ * Gets a list of Reach.Models.Activity.
11262
+ * @returns ImageLibraryCategory Success
11291
11263
  * @throws ApiError
11292
11264
  */
11293
- getPage({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
11294
- /**
11295
- * Gets or sets the queryable venue id.
11296
- */
11297
- venueId?: string;
11298
- /**
11299
- * Gets or sets the queryable venue ids.
11300
- */
11301
- venueIds?: Array<string>;
11302
- /**
11303
- * Gets or sets the queryable facility id.
11304
- */
11305
- facilityId?: string;
11306
- /**
11307
- * Gets or sets the queryable facility ids.
11308
- */
11309
- facilityIds?: Array<string>;
11310
- /**
11311
- * Gets or sets the queryable session id.
11312
- */
11313
- sessionId?: string;
11314
- /**
11315
- * Gets or sets the queryable session ids.
11316
- */
11317
- sessionIds?: Array<string>;
11318
- /**
11319
- * Gets or sets the queryable course id.
11320
- */
11321
- courseId?: string;
11322
- /**
11323
- * Gets or sets the queryable course ids.
11324
- */
11325
- courseIds?: Array<string>;
11326
- /**
11327
- * Gets or sets the queryable programme id.
11328
- */
11329
- programmeId?: string;
11265
+ getList({ activityId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
11330
11266
  /**
11331
- * Gets or sets the queryable programme ids.
11267
+ * Gets or sets the queryable activity Id.
11332
11268
  */
11333
- programmeIds?: Array<string>;
11269
+ activityId?: number;
11270
+ /**
11271
+ * Gets or sets the page number for paged queries.
11272
+ */
11273
+ pageNumber?: number;
11274
+ /**
11275
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
11276
+ */
11277
+ take?: number;
11278
+ /**
11279
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
11280
+ */
11281
+ limitListRequests?: boolean;
11282
+ /**
11283
+ * Gets or sets the Tenant Id.
11284
+ */
11285
+ tenantId?: string;
11286
+ /**
11287
+ * Gets or sets the Modifed By Id.
11288
+ */
11289
+ modifiedById?: string;
11290
+ /**
11291
+ * Gets or sets the Modifed By Ids.
11292
+ */
11293
+ modifiedByIds?: Array<string>;
11294
+ /**
11295
+ * Gets or sets the Date Created greater than equal to.
11296
+ */
11297
+ dateCreatedGte?: string;
11298
+ /**
11299
+ * Gets or sets the Date Created less than equal to.
11300
+ */
11301
+ dateCreatedLte?: string;
11302
+ /**
11303
+ * Gets or sets the queryable only is live status.
11304
+ */
11305
+ isLive?: boolean;
11306
+ /**
11307
+ * Gets or sets the sort order direction.
11308
+ */
11309
+ sortOrderDirection?: SearchSortOrderDirection;
11310
+ }): CancelablePromise<Array<ImageLibraryCategory>>;
11311
+ }
11312
+
11313
+ declare class ImageLibraryImageService {
11314
+ readonly httpRequest: BaseHttpRequest;
11315
+ constructor(httpRequest: BaseHttpRequest);
11316
+ /**
11317
+ * Gets a Reach.Models.ImageLibraryImage by its Id.
11318
+ * @returns ImageLibraryImage Success
11319
+ * @throws ApiError
11320
+ */
11321
+ getObject({ id, }: {
11322
+ /**
11323
+ * The Reach.Models.ImageLibraryImage id.
11324
+ */
11325
+ id: number;
11326
+ }): CancelablePromise<ImageLibraryImage>;
11327
+ /**
11328
+ * Gets a list of Reach.Models.ImageLibraryImage.
11329
+ * @returns ImageLibraryImage Success
11330
+ * @throws ApiError
11331
+ */
11332
+ getList({ imageLibraryCategoryId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
11333
+ /**
11334
+ * Gets or sets the queryable image library category Id.
11335
+ */
11336
+ imageLibraryCategoryId?: number;
11337
+ /**
11338
+ * Gets or sets the page number for paged queries.
11339
+ */
11340
+ pageNumber?: number;
11341
+ /**
11342
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
11343
+ */
11344
+ take?: number;
11345
+ /**
11346
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
11347
+ */
11348
+ limitListRequests?: boolean;
11349
+ /**
11350
+ * Gets or sets the Tenant Id.
11351
+ */
11352
+ tenantId?: string;
11353
+ /**
11354
+ * Gets or sets the Modifed By Id.
11355
+ */
11356
+ modifiedById?: string;
11357
+ /**
11358
+ * Gets or sets the Modifed By Ids.
11359
+ */
11360
+ modifiedByIds?: Array<string>;
11361
+ /**
11362
+ * Gets or sets the Date Created greater than equal to.
11363
+ */
11364
+ dateCreatedGte?: string;
11365
+ /**
11366
+ * Gets or sets the Date Created less than equal to.
11367
+ */
11368
+ dateCreatedLte?: string;
11369
+ /**
11370
+ * Gets or sets the queryable only is live status.
11371
+ */
11372
+ isLive?: boolean;
11373
+ /**
11374
+ * Gets or sets the sort order direction.
11375
+ */
11376
+ sortOrderDirection?: SearchSortOrderDirection;
11377
+ }): CancelablePromise<Array<ImageLibraryImage>>;
11378
+ }
11379
+
11380
+ type ImagePage = {
11381
+ pagination: Pagination;
11382
+ readonly items: Array<Image>;
11383
+ };
11384
+
11385
+ /**
11386
+ * Post model for image updates.
11387
+ */
11388
+ type ImagePatch = {
11389
+ /**
11390
+ * Gets or sets the tenant Id.
11391
+ */
11392
+ tenantId: string;
11393
+ /**
11394
+ * Gets or sets the Id.
11395
+ */
11396
+ id: string;
11397
+ };
11398
+
11399
+ /**
11400
+ * Post model for image inserts.
11401
+ */
11402
+ type ImagePost = {
11403
+ /**
11404
+ * Gets or sets the tenant Id.
11405
+ */
11406
+ tenantId: string;
11407
+ };
11408
+
11409
+ declare class ImagesService {
11410
+ readonly httpRequest: BaseHttpRequest;
11411
+ constructor(httpRequest: BaseHttpRequest);
11412
+ /**
11413
+ * Reorders images />.
11414
+ * @returns any Success
11415
+ * @throws ApiError
11416
+ */
11417
+ reorder({ requestBody, }: {
11418
+ /**
11419
+ * The Image models.
11420
+ */
11421
+ requestBody?: Array<Image>;
11422
+ }): CancelablePromise<any>;
11423
+ /**
11424
+ * Gets the resource by its Id.
11425
+ * @returns Image Success
11426
+ * @throws ApiError
11427
+ */
11428
+ getObject({ id, }: {
11429
+ /**
11430
+ * The <typeparamref name="TObject" /> id.
11431
+ */
11432
+ id: string;
11433
+ }): CancelablePromise<Image>;
11434
+ /**
11435
+ * Deletes the resource.
11436
+ * @returns any Success
11437
+ * @throws ApiError
11438
+ */
11439
+ deleteById({ id, }: {
11440
+ /**
11441
+ * The <typeparamref name="TObject" /> id.
11442
+ */
11443
+ id: string;
11444
+ }): CancelablePromise<any>;
11445
+ /**
11446
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
11447
+ * @returns boolean Success
11448
+ * @throws ApiError
11449
+ */
11450
+ exists({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
11451
+ /**
11452
+ * Gets or sets the queryable venue id.
11453
+ */
11454
+ venueId?: string;
11455
+ /**
11456
+ * Gets or sets the queryable venue ids.
11457
+ */
11458
+ venueIds?: Array<string>;
11459
+ /**
11460
+ * Gets or sets the queryable facility id.
11461
+ */
11462
+ facilityId?: string;
11463
+ /**
11464
+ * Gets or sets the queryable facility ids.
11465
+ */
11466
+ facilityIds?: Array<string>;
11467
+ /**
11468
+ * Gets or sets the queryable session id.
11469
+ */
11470
+ sessionId?: string;
11471
+ /**
11472
+ * Gets or sets the queryable session ids.
11473
+ */
11474
+ sessionIds?: Array<string>;
11475
+ /**
11476
+ * Gets or sets the queryable course id.
11477
+ */
11478
+ courseId?: string;
11479
+ /**
11480
+ * Gets or sets the queryable course ids.
11481
+ */
11482
+ courseIds?: Array<string>;
11483
+ /**
11484
+ * Gets or sets the queryable programme id.
11485
+ */
11486
+ programmeId?: string;
11487
+ /**
11488
+ * Gets or sets the queryable programme ids.
11489
+ */
11490
+ programmeIds?: Array<string>;
11491
+ /**
11492
+ * Gets or sets the page number for paged queries.
11493
+ */
11494
+ pageNumber?: number;
11495
+ /**
11496
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
11497
+ */
11498
+ take?: number;
11499
+ /**
11500
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
11501
+ */
11502
+ limitListRequests?: boolean;
11503
+ /**
11504
+ * Gets or sets the Tenant Id.
11505
+ */
11506
+ tenantId?: string;
11507
+ /**
11508
+ * Gets or sets the Modifed By Id.
11509
+ */
11510
+ modifiedById?: string;
11511
+ /**
11512
+ * Gets or sets the Modifed By Ids.
11513
+ */
11514
+ modifiedByIds?: Array<string>;
11515
+ /**
11516
+ * Gets or sets the Date Created greater than equal to.
11517
+ */
11518
+ dateCreatedGte?: string;
11519
+ /**
11520
+ * Gets or sets the Date Created less than equal to.
11521
+ */
11522
+ dateCreatedLte?: string;
11523
+ /**
11524
+ * Gets or sets the queryable only is live status.
11525
+ */
11526
+ isLive?: boolean;
11527
+ /**
11528
+ * Gets or sets the sort order direction.
11529
+ */
11530
+ sortOrderDirection?: SearchSortOrderDirection;
11531
+ }): CancelablePromise<boolean>;
11532
+ /**
11533
+ * Gets a list of resources.
11534
+ * @returns ImagePage Success
11535
+ * @throws ApiError
11536
+ */
11537
+ getPage({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
11538
+ /**
11539
+ * Gets or sets the queryable venue id.
11540
+ */
11541
+ venueId?: string;
11542
+ /**
11543
+ * Gets or sets the queryable venue ids.
11544
+ */
11545
+ venueIds?: Array<string>;
11546
+ /**
11547
+ * Gets or sets the queryable facility id.
11548
+ */
11549
+ facilityId?: string;
11550
+ /**
11551
+ * Gets or sets the queryable facility ids.
11552
+ */
11553
+ facilityIds?: Array<string>;
11554
+ /**
11555
+ * Gets or sets the queryable session id.
11556
+ */
11557
+ sessionId?: string;
11558
+ /**
11559
+ * Gets or sets the queryable session ids.
11560
+ */
11561
+ sessionIds?: Array<string>;
11562
+ /**
11563
+ * Gets or sets the queryable course id.
11564
+ */
11565
+ courseId?: string;
11566
+ /**
11567
+ * Gets or sets the queryable course ids.
11568
+ */
11569
+ courseIds?: Array<string>;
11570
+ /**
11571
+ * Gets or sets the queryable programme id.
11572
+ */
11573
+ programmeId?: string;
11574
+ /**
11575
+ * Gets or sets the queryable programme ids.
11576
+ */
11577
+ programmeIds?: Array<string>;
11334
11578
  /**
11335
11579
  * Gets or sets the page number for paged queries.
11336
11580
  */
@@ -11469,53 +11713,433 @@ declare class ImagesService {
11469
11713
  * Gets or sets the sort order direction.
11470
11714
  */
11471
11715
  sortOrderDirection?: SearchSortOrderDirection;
11472
- }): CancelablePromise<Array<Image>>;
11716
+ }): CancelablePromise<Array<Image>>;
11717
+ /**
11718
+ * Gets a list of resources.
11719
+ * @returns Image Success
11720
+ * @throws ApiError
11721
+ */
11722
+ getListIdName({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
11723
+ /**
11724
+ * Gets or sets the queryable venue id.
11725
+ */
11726
+ venueId?: string;
11727
+ /**
11728
+ * Gets or sets the queryable venue ids.
11729
+ */
11730
+ venueIds?: Array<string>;
11731
+ /**
11732
+ * Gets or sets the queryable facility id.
11733
+ */
11734
+ facilityId?: string;
11735
+ /**
11736
+ * Gets or sets the queryable facility ids.
11737
+ */
11738
+ facilityIds?: Array<string>;
11739
+ /**
11740
+ * Gets or sets the queryable session id.
11741
+ */
11742
+ sessionId?: string;
11743
+ /**
11744
+ * Gets or sets the queryable session ids.
11745
+ */
11746
+ sessionIds?: Array<string>;
11747
+ /**
11748
+ * Gets or sets the queryable course id.
11749
+ */
11750
+ courseId?: string;
11751
+ /**
11752
+ * Gets or sets the queryable course ids.
11753
+ */
11754
+ courseIds?: Array<string>;
11755
+ /**
11756
+ * Gets or sets the queryable programme id.
11757
+ */
11758
+ programmeId?: string;
11759
+ /**
11760
+ * Gets or sets the queryable programme ids.
11761
+ */
11762
+ programmeIds?: Array<string>;
11763
+ /**
11764
+ * Gets or sets the page number for paged queries.
11765
+ */
11766
+ pageNumber?: number;
11767
+ /**
11768
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
11769
+ */
11770
+ take?: number;
11771
+ /**
11772
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
11773
+ */
11774
+ limitListRequests?: boolean;
11775
+ /**
11776
+ * Gets or sets the Tenant Id.
11777
+ */
11778
+ tenantId?: string;
11779
+ /**
11780
+ * Gets or sets the Modifed By Id.
11781
+ */
11782
+ modifiedById?: string;
11783
+ /**
11784
+ * Gets or sets the Modifed By Ids.
11785
+ */
11786
+ modifiedByIds?: Array<string>;
11787
+ /**
11788
+ * Gets or sets the Date Created greater than equal to.
11789
+ */
11790
+ dateCreatedGte?: string;
11791
+ /**
11792
+ * Gets or sets the Date Created less than equal to.
11793
+ */
11794
+ dateCreatedLte?: string;
11795
+ /**
11796
+ * Gets or sets the queryable only is live status.
11797
+ */
11798
+ isLive?: boolean;
11799
+ /**
11800
+ * Gets or sets the sort order direction.
11801
+ */
11802
+ sortOrderDirection?: SearchSortOrderDirection;
11803
+ }): CancelablePromise<Array<Image>>;
11804
+ /**
11805
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
11806
+ * @returns Image Success
11807
+ * @throws ApiError
11808
+ */
11809
+ post({ requestBody, }: {
11810
+ /**
11811
+ * The <typeparamref name="TObject" /> model.
11812
+ */
11813
+ requestBody?: ImagePost;
11814
+ }): CancelablePromise<Image>;
11815
+ /**
11816
+ * Patches the resource.
11817
+ * @returns Image Success
11818
+ * @throws ApiError
11819
+ */
11820
+ patch({ requestBody, }: {
11821
+ /**
11822
+ * The <typeparamref name="TObject" /> model.
11823
+ */
11824
+ requestBody?: ImagePatch;
11825
+ }): CancelablePromise<Image>;
11826
+ /**
11827
+ * Inserts a list of resources.
11828
+ * @returns Image Success
11829
+ * @throws ApiError
11830
+ */
11831
+ postList({ requestBody, }: {
11832
+ /**
11833
+ * The list of <typeparamref name="TObject" />.
11834
+ */
11835
+ requestBody?: Array<ImagePost>;
11836
+ }): CancelablePromise<Array<Image>>;
11837
+ /**
11838
+ * Patches the resource.
11839
+ * @returns Image Success
11840
+ * @throws ApiError
11841
+ */
11842
+ patchWithReferences({ requestBody, }: {
11843
+ /**
11844
+ * The <typeparamref name="TObject" /> model.
11845
+ */
11846
+ requestBody?: ImagePatch;
11847
+ }): CancelablePromise<Image>;
11848
+ /**
11849
+ * Returns a value indicating whether the resource is deletable.
11850
+ * @returns boolean Success
11851
+ * @throws ApiError
11852
+ */
11853
+ canDelete({ id, }: {
11854
+ /**
11855
+ * The <typeparamref name="TObject" /> id.
11856
+ */
11857
+ id: string;
11858
+ }): CancelablePromise<boolean>;
11859
+ }
11860
+
11861
+ /**
11862
+ * Represents a Image upload history within the Reach application.
11863
+ */
11864
+ type ImageUploadHistory = {
11865
+ /**
11866
+ * Gets or sets the entities Id.
11867
+ */
11868
+ id?: string;
11869
+ /**
11870
+ * Gets or sets the tenant Id.
11871
+ */
11872
+ tenantId: string;
11873
+ /**
11874
+ * Gets or sets the created date of this entity.
11875
+ */
11876
+ dateCreated: string;
11877
+ /**
11878
+ * Gets or sets the last modified date of this entity.
11879
+ */
11880
+ dateModified: string;
11881
+ /**
11882
+ * Gets or sets the modified by Id.
11883
+ */
11884
+ modifiedById?: string | null;
11885
+ /**
11886
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
11887
+ */
11888
+ isLive: boolean;
11889
+ /**
11890
+ * Gets or sets the user id.
11891
+ */
11892
+ userId?: string;
11893
+ /**
11894
+ * Gets or sets the images url.
11895
+ */
11896
+ imageUrl?: string | null;
11897
+ };
11898
+
11899
+ type ImageUploadHistoryPage = {
11900
+ pagination: Pagination;
11901
+ readonly items: Array<ImageUploadHistory>;
11902
+ };
11903
+
11904
+ /**
11905
+ * Post model for image updates.
11906
+ */
11907
+ type ImageUploadHistoryPatch = {
11908
+ /**
11909
+ * Gets or sets the tenant Id.
11910
+ */
11911
+ tenantId: string;
11912
+ /**
11913
+ * Gets or sets the Id.
11914
+ */
11915
+ id: string;
11916
+ };
11917
+
11918
+ /**
11919
+ * Post model for image inserts.
11920
+ */
11921
+ type ImageUploadHistoryPost = {
11922
+ /**
11923
+ * Gets or sets the tenant Id.
11924
+ */
11925
+ tenantId: string;
11926
+ };
11927
+
11928
+ declare class ImageUploadHistoryService {
11929
+ readonly httpRequest: BaseHttpRequest;
11930
+ constructor(httpRequest: BaseHttpRequest);
11931
+ /**
11932
+ * Gets the resource by its Id.
11933
+ * @returns ImageUploadHistory Success
11934
+ * @throws ApiError
11935
+ */
11936
+ getObject({ id, }: {
11937
+ /**
11938
+ * The <typeparamref name="TObject" /> id.
11939
+ */
11940
+ id: string;
11941
+ }): CancelablePromise<ImageUploadHistory>;
11942
+ /**
11943
+ * Deletes the resource.
11944
+ * @returns any Success
11945
+ * @throws ApiError
11946
+ */
11947
+ deleteById({ id, }: {
11948
+ /**
11949
+ * The <typeparamref name="TObject" /> id.
11950
+ */
11951
+ id: string;
11952
+ }): CancelablePromise<any>;
11953
+ /**
11954
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
11955
+ * @returns boolean Success
11956
+ * @throws ApiError
11957
+ */
11958
+ exists({ userId, imageUrl, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
11959
+ /**
11960
+ * Gets or sets the queryable user id.
11961
+ */
11962
+ userId?: string;
11963
+ /**
11964
+ * Gets or sets the queryable image url.
11965
+ */
11966
+ imageUrl?: string;
11967
+ /**
11968
+ * Gets or sets the page number for paged queries.
11969
+ */
11970
+ pageNumber?: number;
11971
+ /**
11972
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
11973
+ */
11974
+ take?: number;
11975
+ /**
11976
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
11977
+ */
11978
+ limitListRequests?: boolean;
11979
+ /**
11980
+ * Gets or sets the Tenant Id.
11981
+ */
11982
+ tenantId?: string;
11983
+ /**
11984
+ * Gets or sets the Modifed By Id.
11985
+ */
11986
+ modifiedById?: string;
11987
+ /**
11988
+ * Gets or sets the Modifed By Ids.
11989
+ */
11990
+ modifiedByIds?: Array<string>;
11991
+ /**
11992
+ * Gets or sets the Date Created greater than equal to.
11993
+ */
11994
+ dateCreatedGte?: string;
11995
+ /**
11996
+ * Gets or sets the Date Created less than equal to.
11997
+ */
11998
+ dateCreatedLte?: string;
11999
+ /**
12000
+ * Gets or sets the queryable only is live status.
12001
+ */
12002
+ isLive?: boolean;
12003
+ /**
12004
+ * Gets or sets the sort order direction.
12005
+ */
12006
+ sortOrderDirection?: SearchSortOrderDirection;
12007
+ }): CancelablePromise<boolean>;
12008
+ /**
12009
+ * Gets a list of resources.
12010
+ * @returns ImageUploadHistoryPage Success
12011
+ * @throws ApiError
12012
+ */
12013
+ getPage({ userId, imageUrl, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12014
+ /**
12015
+ * Gets or sets the queryable user id.
12016
+ */
12017
+ userId?: string;
12018
+ /**
12019
+ * Gets or sets the queryable image url.
12020
+ */
12021
+ imageUrl?: string;
12022
+ /**
12023
+ * Gets or sets the page number for paged queries.
12024
+ */
12025
+ pageNumber?: number;
12026
+ /**
12027
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
12028
+ */
12029
+ take?: number;
12030
+ /**
12031
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
12032
+ */
12033
+ limitListRequests?: boolean;
12034
+ /**
12035
+ * Gets or sets the Tenant Id.
12036
+ */
12037
+ tenantId?: string;
12038
+ /**
12039
+ * Gets or sets the Modifed By Id.
12040
+ */
12041
+ modifiedById?: string;
12042
+ /**
12043
+ * Gets or sets the Modifed By Ids.
12044
+ */
12045
+ modifiedByIds?: Array<string>;
12046
+ /**
12047
+ * Gets or sets the Date Created greater than equal to.
12048
+ */
12049
+ dateCreatedGte?: string;
12050
+ /**
12051
+ * Gets or sets the Date Created less than equal to.
12052
+ */
12053
+ dateCreatedLte?: string;
12054
+ /**
12055
+ * Gets or sets the queryable only is live status.
12056
+ */
12057
+ isLive?: boolean;
12058
+ /**
12059
+ * Gets or sets the sort order direction.
12060
+ */
12061
+ sortOrderDirection?: SearchSortOrderDirection;
12062
+ }): CancelablePromise<ImageUploadHistoryPage>;
12063
+ /**
12064
+ * Deletes the resource.
12065
+ * @returns any Success
12066
+ * @throws ApiError
12067
+ */
12068
+ deleteByObject({ requestBody, }: {
12069
+ /**
12070
+ * The <typeparamref name="TObject" /> model.
12071
+ */
12072
+ requestBody?: ImageUploadHistory;
12073
+ }): CancelablePromise<any>;
12074
+ /**
12075
+ * Gets a list of resources unpaged and without references.
12076
+ * @returns ImageUploadHistory Success
12077
+ * @throws ApiError
12078
+ */
12079
+ getListWithoutReferences({ userId, imageUrl, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12080
+ /**
12081
+ * Gets or sets the queryable user id.
12082
+ */
12083
+ userId?: string;
12084
+ /**
12085
+ * Gets or sets the queryable image url.
12086
+ */
12087
+ imageUrl?: string;
12088
+ /**
12089
+ * Gets or sets the page number for paged queries.
12090
+ */
12091
+ pageNumber?: number;
12092
+ /**
12093
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
12094
+ */
12095
+ take?: number;
12096
+ /**
12097
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
12098
+ */
12099
+ limitListRequests?: boolean;
12100
+ /**
12101
+ * Gets or sets the Tenant Id.
12102
+ */
12103
+ tenantId?: string;
12104
+ /**
12105
+ * Gets or sets the Modifed By Id.
12106
+ */
12107
+ modifiedById?: string;
12108
+ /**
12109
+ * Gets or sets the Modifed By Ids.
12110
+ */
12111
+ modifiedByIds?: Array<string>;
12112
+ /**
12113
+ * Gets or sets the Date Created greater than equal to.
12114
+ */
12115
+ dateCreatedGte?: string;
12116
+ /**
12117
+ * Gets or sets the Date Created less than equal to.
12118
+ */
12119
+ dateCreatedLte?: string;
12120
+ /**
12121
+ * Gets or sets the queryable only is live status.
12122
+ */
12123
+ isLive?: boolean;
12124
+ /**
12125
+ * Gets or sets the sort order direction.
12126
+ */
12127
+ sortOrderDirection?: SearchSortOrderDirection;
12128
+ }): CancelablePromise<Array<ImageUploadHistory>>;
11473
12129
  /**
11474
12130
  * Gets a list of resources.
11475
- * @returns Image Success
12131
+ * @returns ImageUploadHistory Success
11476
12132
  * @throws ApiError
11477
12133
  */
11478
- getListIdName({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, programmeId, programmeIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
11479
- /**
11480
- * Gets or sets the queryable venue id.
11481
- */
11482
- venueId?: string;
11483
- /**
11484
- * Gets or sets the queryable venue ids.
11485
- */
11486
- venueIds?: Array<string>;
11487
- /**
11488
- * Gets or sets the queryable facility id.
11489
- */
11490
- facilityId?: string;
11491
- /**
11492
- * Gets or sets the queryable facility ids.
11493
- */
11494
- facilityIds?: Array<string>;
11495
- /**
11496
- * Gets or sets the queryable session id.
11497
- */
11498
- sessionId?: string;
11499
- /**
11500
- * Gets or sets the queryable session ids.
11501
- */
11502
- sessionIds?: Array<string>;
11503
- /**
11504
- * Gets or sets the queryable course id.
11505
- */
11506
- courseId?: string;
11507
- /**
11508
- * Gets or sets the queryable course ids.
11509
- */
11510
- courseIds?: Array<string>;
12134
+ getListIdName({ userId, imageUrl, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
11511
12135
  /**
11512
- * Gets or sets the queryable programme id.
12136
+ * Gets or sets the queryable user id.
11513
12137
  */
11514
- programmeId?: string;
12138
+ userId?: string;
11515
12139
  /**
11516
- * Gets or sets the queryable programme ids.
12140
+ * Gets or sets the queryable image url.
11517
12141
  */
11518
- programmeIds?: Array<string>;
12142
+ imageUrl?: string;
11519
12143
  /**
11520
12144
  * Gets or sets the page number for paged queries.
11521
12145
  */
@@ -11556,51 +12180,51 @@ declare class ImagesService {
11556
12180
  * Gets or sets the sort order direction.
11557
12181
  */
11558
12182
  sortOrderDirection?: SearchSortOrderDirection;
11559
- }): CancelablePromise<Array<Image>>;
12183
+ }): CancelablePromise<Array<ImageUploadHistory>>;
11560
12184
  /**
11561
12185
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
11562
- * @returns Image Success
12186
+ * @returns ImageUploadHistory Success
11563
12187
  * @throws ApiError
11564
12188
  */
11565
12189
  post({ requestBody, }: {
11566
12190
  /**
11567
12191
  * The <typeparamref name="TObject" /> model.
11568
12192
  */
11569
- requestBody?: ImagePost;
11570
- }): CancelablePromise<Image>;
12193
+ requestBody?: ImageUploadHistoryPost;
12194
+ }): CancelablePromise<ImageUploadHistory>;
11571
12195
  /**
11572
12196
  * Patches the resource.
11573
- * @returns Image Success
12197
+ * @returns ImageUploadHistory Success
11574
12198
  * @throws ApiError
11575
12199
  */
11576
12200
  patch({ requestBody, }: {
11577
12201
  /**
11578
12202
  * The <typeparamref name="TObject" /> model.
11579
12203
  */
11580
- requestBody?: ImagePatch;
11581
- }): CancelablePromise<Image>;
12204
+ requestBody?: ImageUploadHistoryPatch;
12205
+ }): CancelablePromise<ImageUploadHistory>;
11582
12206
  /**
11583
12207
  * Inserts a list of resources.
11584
- * @returns Image Success
12208
+ * @returns ImageUploadHistory Success
11585
12209
  * @throws ApiError
11586
12210
  */
11587
12211
  postList({ requestBody, }: {
11588
12212
  /**
11589
12213
  * The list of <typeparamref name="TObject" />.
11590
12214
  */
11591
- requestBody?: Array<ImagePost>;
11592
- }): CancelablePromise<Array<Image>>;
12215
+ requestBody?: Array<ImageUploadHistoryPost>;
12216
+ }): CancelablePromise<Array<ImageUploadHistory>>;
11593
12217
  /**
11594
12218
  * Patches the resource.
11595
- * @returns Image Success
12219
+ * @returns ImageUploadHistory Success
11596
12220
  * @throws ApiError
11597
12221
  */
11598
12222
  patchWithReferences({ requestBody, }: {
11599
12223
  /**
11600
12224
  * The <typeparamref name="TObject" /> model.
11601
12225
  */
11602
- requestBody?: ImagePatch;
11603
- }): CancelablePromise<Image>;
12226
+ requestBody?: ImageUploadHistoryPatch;
12227
+ }): CancelablePromise<ImageUploadHistory>;
11604
12228
  /**
11605
12229
  * Returns a value indicating whether the resource is deletable.
11606
12230
  * @returns boolean Success
@@ -19432,11 +20056,31 @@ declare class PublicFacilitiesService {
19432
20056
  }): CancelablePromise<Array<Facility>>;
19433
20057
  }
19434
20058
 
20059
+ declare class PublicFilestackWebhookService {
20060
+ readonly httpRequest: BaseHttpRequest;
20061
+ constructor(httpRequest: BaseHttpRequest);
20062
+ /**
20063
+ * Processes a FileStack web hook.
20064
+ * @returns any Success
20065
+ * @throws ApiError
20066
+ */
20067
+ processWebhookEvent({ fsSignature, fsTimestamp, }: {
20068
+ /**
20069
+ * The filestack signature.
20070
+ */
20071
+ fsSignature?: string;
20072
+ /**
20073
+ * The filestack signature.
20074
+ */
20075
+ fsTimestamp?: string;
20076
+ }): CancelablePromise<any>;
20077
+ }
20078
+
19435
20079
  declare class PublicGenericActivityService {
19436
20080
  readonly httpRequest: BaseHttpRequest;
19437
20081
  constructor(httpRequest: BaseHttpRequest);
19438
20082
  /**
19439
- * GetSessions.
20083
+ * Get activities for a network.
19440
20084
  * @returns GenericActivityPage Success
19441
20085
  * @throws ApiError
19442
20086
  */
@@ -21487,6 +22131,10 @@ type SessionPatch = {
21487
22131
  * Gets or sets a value indicating whether the Session can be used as a template.
21488
22132
  */
21489
22133
  allowTemplating?: boolean | null;
22134
+ /**
22135
+ * Gets or sets the Reminder Hours Before Start.
22136
+ */
22137
+ reminderHoursBeforeStart?: number | null;
21490
22138
  /**
21491
22139
  * Gets or sets a value indicating whether the session is archived and should be ignored under normal operation.
21492
22140
  */
@@ -24339,7 +24987,7 @@ declare class PublicVenuesService {
24339
24987
  * @returns VenuePage Success
24340
24988
  * @throws ApiError
24341
24989
  */
24342
- getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24990
+ getPage({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24343
24991
  xTenantSubdomain?: string;
24344
24992
  /**
24345
24993
  * Gets or sets the queryable user ids.
@@ -24385,6 +25033,10 @@ declare class PublicVenuesService {
24385
25033
  * Gets or sets a value indicating whether to show published venues.
24386
25034
  */
24387
25035
  publishedOnWeb?: boolean;
25036
+ /**
25037
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
25038
+ */
25039
+ networkId?: string;
24388
25040
  /**
24389
25041
  * Gets or sets the queryable programme Id.
24390
25042
  */
@@ -24401,6 +25053,10 @@ declare class PublicVenuesService {
24401
25053
  * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
24402
25054
  */
24403
25055
  includeNextOpportunity?: boolean;
25056
+ /**
25057
+ * Gets or sets Distance.
25058
+ */
25059
+ distance?: number;
24404
25060
  /**
24405
25061
  * Gets or sets the page number for paged queries.
24406
25062
  */
@@ -24457,12 +25113,127 @@ declare class PublicVenuesService {
24457
25113
  */
24458
25114
  requestBody?: Venue;
24459
25115
  }): CancelablePromise<any>;
25116
+ /**
25117
+ * Get Venues for a network.
25118
+ * @returns VenuePage Success
25119
+ * @throws ApiError
25120
+ */
25121
+ getNetworkPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25122
+ /**
25123
+ * Gets or sets the queryable user ids.
25124
+ */
25125
+ ids?: Array<string>;
25126
+ /**
25127
+ * Gets or sets the queryable venue name wildcard.
25128
+ */
25129
+ wildcard?: string;
25130
+ /**
25131
+ * Gets or sets the queryable venue name.
25132
+ */
25133
+ name?: string;
25134
+ /**
25135
+ * Gets or sets the queryable venue street address.
25136
+ */
25137
+ streetAddress?: string;
25138
+ /**
25139
+ * Gets or sets the queryable venue address postal code.
25140
+ */
25141
+ addressPostalcode?: string;
25142
+ /**
25143
+ * Gets or sets the queryable venue name wildcard.
25144
+ */
25145
+ nameLike?: string;
25146
+ /**
25147
+ * Gets or sets the queryable venue url slug.
25148
+ */
25149
+ slug?: string;
25150
+ /**
25151
+ * Gets or sets the queryable assign to Id.
25152
+ */
25153
+ assignedTo?: string;
25154
+ /**
25155
+ * Gets or sets the queryable stripe account Id.
25156
+ */
25157
+ stripeAccountId?: string;
25158
+ /**
25159
+ * Gets or sets the queryable search geo center.
25160
+ */
25161
+ searchGeoCenter?: string;
25162
+ /**
25163
+ * Gets or sets a value indicating whether to show published venues.
25164
+ */
25165
+ publishedOnWeb?: boolean;
25166
+ /**
25167
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
25168
+ */
25169
+ networkId?: string;
25170
+ /**
25171
+ * Gets or sets the queryable programme Id.
25172
+ */
25173
+ programmeId?: string;
25174
+ /**
25175
+ * Gets or sets a value indicating whether to inlcude the venues opportunity images.
25176
+ */
25177
+ includeOpportunityImages?: boolean;
25178
+ /**
25179
+ * Gets or sets a value indicating whether to inlcude the venues opportunity offers.
25180
+ */
25181
+ includeOpportunityOffers?: boolean;
25182
+ /**
25183
+ * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
25184
+ */
25185
+ includeNextOpportunity?: boolean;
25186
+ /**
25187
+ * Gets or sets Distance.
25188
+ */
25189
+ distance?: number;
25190
+ /**
25191
+ * Gets or sets the page number for paged queries.
25192
+ */
25193
+ pageNumber?: number;
25194
+ /**
25195
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
25196
+ */
25197
+ take?: number;
25198
+ /**
25199
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
25200
+ */
25201
+ limitListRequests?: boolean;
25202
+ /**
25203
+ * Gets or sets the Tenant Id.
25204
+ */
25205
+ tenantId?: string;
25206
+ /**
25207
+ * Gets or sets the Modifed By Id.
25208
+ */
25209
+ modifiedById?: string;
25210
+ /**
25211
+ * Gets or sets the Modifed By Ids.
25212
+ */
25213
+ modifiedByIds?: Array<string>;
25214
+ /**
25215
+ * Gets or sets the Date Created greater than equal to.
25216
+ */
25217
+ dateCreatedGte?: string;
25218
+ /**
25219
+ * Gets or sets the Date Created less than equal to.
25220
+ */
25221
+ dateCreatedLte?: string;
25222
+ /**
25223
+ * Gets or sets the queryable only is live status.
25224
+ */
25225
+ isLive?: boolean;
25226
+ /**
25227
+ * Gets or sets the sort order direction.
25228
+ */
25229
+ sortOrderDirection?: SearchSortOrderDirection;
25230
+ }): CancelablePromise<VenuePage>;
24460
25231
  /**
24461
25232
  * Returns a value indicating whether the resource exists in the database given the provided search params.
24462
25233
  * @returns boolean Success
24463
25234
  * @throws ApiError
24464
25235
  */
24465
- exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
25236
+ exists({ xTenantSubdomain, ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
24466
25237
  /**
24467
25238
  * The tenants subdomain.
24468
25239
  */
@@ -24511,6 +25282,10 @@ declare class PublicVenuesService {
24511
25282
  * Gets or sets a value indicating whether to show published venues.
24512
25283
  */
24513
25284
  publishedOnWeb?: boolean;
25285
+ /**
25286
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
25287
+ */
25288
+ networkId?: string;
24514
25289
  /**
24515
25290
  * Gets or sets the queryable programme Id.
24516
25291
  */
@@ -24527,6 +25302,10 @@ declare class PublicVenuesService {
24527
25302
  * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
24528
25303
  */
24529
25304
  includeNextOpportunity?: boolean;
25305
+ /**
25306
+ * Gets or sets Distance.
25307
+ */
25308
+ distance?: number;
24530
25309
  /**
24531
25310
  * Gets or sets the page number for paged queries.
24532
25311
  */
@@ -32761,6 +33540,14 @@ type TemplateDetail = {
32761
33540
  * Gets or sets the order post completion text.
32762
33541
  */
32763
33542
  postCompletionText?: string | null;
33543
+ /**
33544
+ * Gets or sets the order post completion text.
33545
+ */
33546
+ reminderEmailText?: string | null;
33547
+ /**
33548
+ * Gets or sets the order post completion text.
33549
+ */
33550
+ reminderHoursBeforeStart?: number | null;
32764
33551
  /**
32765
33552
  * Gets or sets the templates referenced offers.
32766
33553
  */
@@ -32873,6 +33660,14 @@ type TemplateDetailPatch = {
32873
33660
  * Gets or sets the order post completion text.
32874
33661
  */
32875
33662
  postCompletionText?: string | null;
33663
+ /**
33664
+ * Gets or sets the order confirmation text.
33665
+ */
33666
+ reminderEmailText?: string | null;
33667
+ /**
33668
+ * Gets or sets the templates reminder hours before start.
33669
+ */
33670
+ reminderHoursBeforeStart?: number | null;
32876
33671
  /**
32877
33672
  * Gets or sets the templates referenced offers.
32878
33673
  */
@@ -33661,6 +34456,14 @@ type CreateTemplateDetail = {
33661
34456
  * Gets or sets the order post completion text.
33662
34457
  */
33663
34458
  postCompletionText?: string | null;
34459
+ /**
34460
+ * Gets or sets the order confirmation text.
34461
+ */
34462
+ reminderEmailText?: string | null;
34463
+ /**
34464
+ * Gets or sets the templates reminder hours before start.
34465
+ */
34466
+ reminderHoursBeforeStart?: number | null;
33664
34467
  /**
33665
34468
  * Gets or sets the templates referenced offers.
33666
34469
  */
@@ -35500,6 +36303,40 @@ declare class TotalRevenueReportService {
35500
36303
  }): CancelablePromise<boolean>;
35501
36304
  }
35502
36305
 
36306
+ /**
36307
+ * The OpenAI description completion response model.
36308
+ */
36309
+ type UnsplashSearchResponse = {
36310
+ /**
36311
+ * Gets or sets the openai response id.
36312
+ */
36313
+ total?: number;
36314
+ /**
36315
+ * Gets or sets the used endpoint.
36316
+ */
36317
+ totalPages?: number;
36318
+ /**
36319
+ * Gets or sets the returned choices.
36320
+ */
36321
+ results?: Array<any> | null;
36322
+ };
36323
+
36324
+ declare class UnsplashService {
36325
+ readonly httpRequest: BaseHttpRequest;
36326
+ constructor(httpRequest: BaseHttpRequest);
36327
+ /**
36328
+ * Returns a suggestion for an activity description based on given attributes.
36329
+ * @returns UnsplashSearchResponse Success
36330
+ * @throws ApiError
36331
+ */
36332
+ searchImages({ searchText, }: {
36333
+ /**
36334
+ * Searh keyword.
36335
+ */
36336
+ searchText?: string;
36337
+ }): CancelablePromise<UnsplashSearchResponse>;
36338
+ }
36339
+
35503
36340
  type UserPage = {
35504
36341
  pagination: Pagination;
35505
36342
  readonly items: Array<User>;
@@ -36611,7 +37448,7 @@ declare class VenuesService {
36611
37448
  * @returns boolean Success
36612
37449
  * @throws ApiError
36613
37450
  */
36614
- exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37451
+ exists({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36615
37452
  /**
36616
37453
  * Gets or sets the queryable user ids.
36617
37454
  */
@@ -36656,6 +37493,10 @@ declare class VenuesService {
36656
37493
  * Gets or sets a value indicating whether to show published venues.
36657
37494
  */
36658
37495
  publishedOnWeb?: boolean;
37496
+ /**
37497
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
37498
+ */
37499
+ networkId?: string;
36659
37500
  /**
36660
37501
  * Gets or sets the queryable programme Id.
36661
37502
  */
@@ -36672,6 +37513,10 @@ declare class VenuesService {
36672
37513
  * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
36673
37514
  */
36674
37515
  includeNextOpportunity?: boolean;
37516
+ /**
37517
+ * Gets or sets Distance.
37518
+ */
37519
+ distance?: number;
36675
37520
  /**
36676
37521
  * Gets or sets the page number for paged queries.
36677
37522
  */
@@ -36718,7 +37563,7 @@ declare class VenuesService {
36718
37563
  * @returns VenuePage Success
36719
37564
  * @throws ApiError
36720
37565
  */
36721
- getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37566
+ getPage({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36722
37567
  /**
36723
37568
  * Gets or sets the queryable user ids.
36724
37569
  */
@@ -36763,6 +37608,10 @@ declare class VenuesService {
36763
37608
  * Gets or sets a value indicating whether to show published venues.
36764
37609
  */
36765
37610
  publishedOnWeb?: boolean;
37611
+ /**
37612
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
37613
+ */
37614
+ networkId?: string;
36766
37615
  /**
36767
37616
  * Gets or sets the queryable programme Id.
36768
37617
  */
@@ -36779,6 +37628,10 @@ declare class VenuesService {
36779
37628
  * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
36780
37629
  */
36781
37630
  includeNextOpportunity?: boolean;
37631
+ /**
37632
+ * Gets or sets Distance.
37633
+ */
37634
+ distance?: number;
36782
37635
  /**
36783
37636
  * Gets or sets the page number for paged queries.
36784
37637
  */
@@ -36836,7 +37689,7 @@ declare class VenuesService {
36836
37689
  * @returns Venue Success
36837
37690
  * @throws ApiError
36838
37691
  */
36839
- getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37692
+ getListWithoutReferences({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36840
37693
  /**
36841
37694
  * Gets or sets the queryable user ids.
36842
37695
  */
@@ -36881,6 +37734,10 @@ declare class VenuesService {
36881
37734
  * Gets or sets a value indicating whether to show published venues.
36882
37735
  */
36883
37736
  publishedOnWeb?: boolean;
37737
+ /**
37738
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
37739
+ */
37740
+ networkId?: string;
36884
37741
  /**
36885
37742
  * Gets or sets the queryable programme Id.
36886
37743
  */
@@ -36897,6 +37754,10 @@ declare class VenuesService {
36897
37754
  * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
36898
37755
  */
36899
37756
  includeNextOpportunity?: boolean;
37757
+ /**
37758
+ * Gets or sets Distance.
37759
+ */
37760
+ distance?: number;
36900
37761
  /**
36901
37762
  * Gets or sets the page number for paged queries.
36902
37763
  */
@@ -36943,7 +37804,7 @@ declare class VenuesService {
36943
37804
  * @returns Venue Success
36944
37805
  * @throws ApiError
36945
37806
  */
36946
- getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
37807
+ getListIdName({ ids, wildcard, name, streetAddress, addressPostalcode, nameLike, slug, assignedTo, stripeAccountId, searchGeoCenter, publishedOnWeb, networkId, programmeId, includeOpportunityImages, includeOpportunityOffers, includeNextOpportunity, distance, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
36947
37808
  /**
36948
37809
  * Gets or sets the queryable user ids.
36949
37810
  */
@@ -36988,6 +37849,10 @@ declare class VenuesService {
36988
37849
  * Gets or sets a value indicating whether to show published venues.
36989
37850
  */
36990
37851
  publishedOnWeb?: boolean;
37852
+ /**
37853
+ * Gets or sets a value indicating whether to include only sessions by given NetworkId.
37854
+ */
37855
+ networkId?: string;
36991
37856
  /**
36992
37857
  * Gets or sets the queryable programme Id.
36993
37858
  */
@@ -37004,6 +37869,10 @@ declare class VenuesService {
37004
37869
  * Gets or sets a value indicating whether to inlcude the venues opportunity next availability.
37005
37870
  */
37006
37871
  includeNextOpportunity?: boolean;
37872
+ /**
37873
+ * Gets or sets Distance.
37874
+ */
37875
+ distance?: number;
37007
37876
  /**
37008
37877
  * Gets or sets the page number for paged queries.
37009
37878
  */
@@ -39318,7 +40187,10 @@ declare class ApiClient {
39318
40187
  readonly genericActivity: GenericActivityService;
39319
40188
  readonly geocode: GeocodeService;
39320
40189
  readonly hereAutocompleteLookup: HereAutocompleteLookupService;
40190
+ readonly imageLibraryCategory: ImageLibraryCategoryService;
40191
+ readonly imageLibraryImage: ImageLibraryImageService;
39321
40192
  readonly images: ImagesService;
40193
+ readonly imageUploadHistory: ImageUploadHistoryService;
39322
40194
  readonly leasing: LeasingService;
39323
40195
  readonly loqatePlaces: LoqatePlacesService;
39324
40196
  readonly notificationQueue: NotificationQueueService;
@@ -39338,6 +40210,7 @@ declare class ApiClient {
39338
40210
  readonly publicCourses: PublicCoursesService;
39339
40211
  readonly publicCustomers: PublicCustomersService;
39340
40212
  readonly publicFacilities: PublicFacilitiesService;
40213
+ readonly publicFilestackWebhook: PublicFilestackWebhookService;
39341
40214
  readonly publicGenericActivity: PublicGenericActivityService;
39342
40215
  readonly publicHealthCheck: PublicHealthCheckService;
39343
40216
  readonly publicLeasing: PublicLeasingService;
@@ -39379,6 +40252,7 @@ declare class ApiClient {
39379
40252
  readonly tenantWebsiteSettings: TenantWebsiteSettingsService;
39380
40253
  readonly timezone: TimezoneService;
39381
40254
  readonly totalRevenueReport: TotalRevenueReportService;
40255
+ readonly unsplash: UnsplashService;
39382
40256
  readonly users: UsersService;
39383
40257
  readonly venueManagers: VenueManagersService;
39384
40258
  readonly venues: VenuesService;
@@ -39517,4 +40391,4 @@ type ValidationResultModel = {
39517
40391
  readonly errors?: Array<ValidationError> | null;
39518
40392
  };
39519
40393
 
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 };
40394
+ 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 };