reach-api-sdk 1.0.110 → 1.0.112
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 +1471 -902
- package/dist/reach-sdk.js +7015 -6579
- package/package.json +1 -1
- package/src/apiClient.ts +6 -3
- package/src/definition/swagger.yaml +25999 -24597
- package/src/index.ts +10 -5
- package/src/models/{Performance.ts → ActivityPerformance.ts} +2 -2
- package/src/models/ActivityPerformancePage.ts +12 -0
- package/src/models/ActivityPerformancePatch.ts +18 -0
- package/src/models/ActivityPerformancePost.ts +14 -0
- package/src/models/CoursePatch.ts +4 -1
- package/src/models/SessionPatch.ts +4 -1
- package/src/models/VenuePerformance.ts +66 -0
- package/src/models/{PerformancePage.ts → VenuePerformancePage.ts} +3 -3
- package/src/models/{PerformancePatch.ts → VenuePerformancePatch.ts} +2 -2
- package/src/models/{PerformancePost.ts → VenuePerformancePost.ts} +2 -2
- package/src/services/{PerformanceService.ts → ActivityPerformanceService.ts} +39 -129
- package/src/services/PublicScheduledSessionsService.ts +24 -0
- package/src/services/PublicSessionsService.ts +12 -0
- package/src/services/ScheduledSessionsService.ts +48 -0
- package/src/services/VenuePerformanceService.ts +852 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -190,6 +190,612 @@ declare class ActivityService {
|
|
|
190
190
|
}): CancelablePromise<Array<Activity>>;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
|
+
/**
|
|
194
|
+
* The activity type.
|
|
195
|
+
*/
|
|
196
|
+
declare enum ActivityType {
|
|
197
|
+
FACILITY = "Facility",
|
|
198
|
+
SESSION = "Session",
|
|
199
|
+
COURSE = "Course"
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Represents an activity performance row within the Reach application.
|
|
204
|
+
*/
|
|
205
|
+
type ActivityPerformance = {
|
|
206
|
+
/**
|
|
207
|
+
* Gets or sets the entities Id.
|
|
208
|
+
*/
|
|
209
|
+
id?: string;
|
|
210
|
+
/**
|
|
211
|
+
* Gets or sets the tenant Id.
|
|
212
|
+
*/
|
|
213
|
+
tenantId: string;
|
|
214
|
+
/**
|
|
215
|
+
* Gets or sets the created date of this entity.
|
|
216
|
+
*/
|
|
217
|
+
dateCreated: string;
|
|
218
|
+
/**
|
|
219
|
+
* Gets or sets the last modified date of this entity.
|
|
220
|
+
*/
|
|
221
|
+
dateModified: string;
|
|
222
|
+
/**
|
|
223
|
+
* Gets or sets the modified by Id.
|
|
224
|
+
*/
|
|
225
|
+
modifiedById?: string | null;
|
|
226
|
+
/**
|
|
227
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
228
|
+
*/
|
|
229
|
+
isLive: boolean;
|
|
230
|
+
/**
|
|
231
|
+
* Gets or sets the activity name.
|
|
232
|
+
*/
|
|
233
|
+
activityName?: string | null;
|
|
234
|
+
/**
|
|
235
|
+
* Gets or sets the venue name.
|
|
236
|
+
*/
|
|
237
|
+
venueName?: string | null;
|
|
238
|
+
activityType?: ActivityType;
|
|
239
|
+
/**
|
|
240
|
+
* Gets or sets a value indicating whether the performance row has unlimited capacity.
|
|
241
|
+
*/
|
|
242
|
+
unlimitedCapacity?: boolean;
|
|
243
|
+
/**
|
|
244
|
+
* Gets or sets the capacity.
|
|
245
|
+
*/
|
|
246
|
+
totalCapacity?: number;
|
|
247
|
+
/**
|
|
248
|
+
* Gets or sets the remaining uses.
|
|
249
|
+
*/
|
|
250
|
+
usedCapacity?: number;
|
|
251
|
+
/**
|
|
252
|
+
* Gets or sets the remaining uses.
|
|
253
|
+
*/
|
|
254
|
+
unusedCapacity?: number;
|
|
255
|
+
/**
|
|
256
|
+
* Gets or sets the utilisation.
|
|
257
|
+
*/
|
|
258
|
+
utilisation?: number;
|
|
259
|
+
/**
|
|
260
|
+
* Gets or sets the total orders.
|
|
261
|
+
*/
|
|
262
|
+
totalOrders?: number;
|
|
263
|
+
/**
|
|
264
|
+
* Gets or sets the total revenue.
|
|
265
|
+
*/
|
|
266
|
+
totalRevenue?: number;
|
|
267
|
+
/**
|
|
268
|
+
* Gets or sets the revenue potential.
|
|
269
|
+
*/
|
|
270
|
+
revenuePotential?: number;
|
|
271
|
+
};
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* Describes meta data for results returned as pages.
|
|
275
|
+
*/
|
|
276
|
+
type Pagination = {
|
|
277
|
+
/**
|
|
278
|
+
* Gets or sets the page number.
|
|
279
|
+
*/
|
|
280
|
+
pageNumber: number;
|
|
281
|
+
/**
|
|
282
|
+
* Gets the total number of pages.
|
|
283
|
+
*/
|
|
284
|
+
readonly totalPages: number;
|
|
285
|
+
/**
|
|
286
|
+
* Gets the total number of items in each page.
|
|
287
|
+
*/
|
|
288
|
+
readonly itemsPerPage: number;
|
|
289
|
+
/**
|
|
290
|
+
* Gets the total number of items.
|
|
291
|
+
*/
|
|
292
|
+
readonly totalItems: number;
|
|
293
|
+
};
|
|
294
|
+
|
|
295
|
+
type ActivityPerformancePage = {
|
|
296
|
+
pagination: Pagination;
|
|
297
|
+
readonly items: Array<ActivityPerformance>;
|
|
298
|
+
};
|
|
299
|
+
|
|
300
|
+
/**
|
|
301
|
+
* Post model for Activity Performance updates.
|
|
302
|
+
*/
|
|
303
|
+
type ActivityPerformancePatch = {
|
|
304
|
+
/**
|
|
305
|
+
* Gets or sets the tenant Id.
|
|
306
|
+
*/
|
|
307
|
+
tenantId: string;
|
|
308
|
+
/**
|
|
309
|
+
* Gets or sets the Id.
|
|
310
|
+
*/
|
|
311
|
+
id: string;
|
|
312
|
+
};
|
|
313
|
+
|
|
314
|
+
/**
|
|
315
|
+
* Post model for Activity Performance inserts.
|
|
316
|
+
*/
|
|
317
|
+
type ActivityPerformancePost = {
|
|
318
|
+
/**
|
|
319
|
+
* Gets or sets the tenant Id.
|
|
320
|
+
*/
|
|
321
|
+
tenantId: string;
|
|
322
|
+
};
|
|
323
|
+
|
|
324
|
+
declare class ActivityPerformanceService {
|
|
325
|
+
readonly httpRequest: BaseHttpRequest;
|
|
326
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
327
|
+
/**
|
|
328
|
+
* Exports the performance list to a csv format.
|
|
329
|
+
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
330
|
+
* @returns any Success
|
|
331
|
+
* @throws ApiError
|
|
332
|
+
*/
|
|
333
|
+
exportToCsv({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
334
|
+
/**
|
|
335
|
+
* Gets or sets the Venue Id.
|
|
336
|
+
*/
|
|
337
|
+
venueId?: string;
|
|
338
|
+
/**
|
|
339
|
+
* Gets or sets the User Id.
|
|
340
|
+
*/
|
|
341
|
+
userId?: string;
|
|
342
|
+
/**
|
|
343
|
+
* Gets or sets the Programme Id.
|
|
344
|
+
*/
|
|
345
|
+
programmeId?: string;
|
|
346
|
+
/**
|
|
347
|
+
* Gets or sets the starting date greater than or equal to.
|
|
348
|
+
*/
|
|
349
|
+
startDateGte?: string;
|
|
350
|
+
/**
|
|
351
|
+
* Gets or sets the starting date less than or equal to.
|
|
352
|
+
*/
|
|
353
|
+
startDateLte?: string;
|
|
354
|
+
/**
|
|
355
|
+
* Gets or sets a value indicating whether to include online activities only.
|
|
356
|
+
*/
|
|
357
|
+
onlineActivitiesOnly?: boolean;
|
|
358
|
+
/**
|
|
359
|
+
* Gets or sets a value indicating whether to include online venues only.
|
|
360
|
+
*/
|
|
361
|
+
onlineVenuesOnly?: boolean;
|
|
362
|
+
/**
|
|
363
|
+
* Gets or sets the page number for paged queries.
|
|
364
|
+
*/
|
|
365
|
+
pageNumber?: number;
|
|
366
|
+
/**
|
|
367
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
368
|
+
*/
|
|
369
|
+
take?: number;
|
|
370
|
+
/**
|
|
371
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
372
|
+
*/
|
|
373
|
+
limitListRequests?: boolean;
|
|
374
|
+
/**
|
|
375
|
+
* Gets or sets the Tenant Id.
|
|
376
|
+
*/
|
|
377
|
+
tenantId?: string;
|
|
378
|
+
/**
|
|
379
|
+
* Gets or sets the Modifed By Id.
|
|
380
|
+
*/
|
|
381
|
+
modifiedById?: string;
|
|
382
|
+
/**
|
|
383
|
+
* Gets or sets the Modifed By Ids.
|
|
384
|
+
*/
|
|
385
|
+
modifiedByIds?: Array<string>;
|
|
386
|
+
/**
|
|
387
|
+
* Gets or sets the Date Created greater than equal to.
|
|
388
|
+
*/
|
|
389
|
+
dateCreatedGte?: string;
|
|
390
|
+
/**
|
|
391
|
+
* Gets or sets the Date Created less than equal to.
|
|
392
|
+
*/
|
|
393
|
+
dateCreatedLte?: string;
|
|
394
|
+
/**
|
|
395
|
+
* Gets or sets the queryable only is live status.
|
|
396
|
+
*/
|
|
397
|
+
isLive?: boolean;
|
|
398
|
+
/**
|
|
399
|
+
* Gets or sets the sort order direction.
|
|
400
|
+
*/
|
|
401
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
402
|
+
formData?: {
|
|
403
|
+
/**
|
|
404
|
+
* Gets or sets the auth token.
|
|
405
|
+
*/
|
|
406
|
+
Token?: string;
|
|
407
|
+
};
|
|
408
|
+
}): CancelablePromise<any>;
|
|
409
|
+
/**
|
|
410
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
411
|
+
* @returns ActivityPerformance Success
|
|
412
|
+
* @throws ApiError
|
|
413
|
+
*/
|
|
414
|
+
post({ requestBody, }: {
|
|
415
|
+
/**
|
|
416
|
+
* The <typeparamref name="TObject" /> model.
|
|
417
|
+
*/
|
|
418
|
+
requestBody?: ActivityPerformancePost;
|
|
419
|
+
}): CancelablePromise<ActivityPerformance>;
|
|
420
|
+
/**
|
|
421
|
+
* Patches the resource.
|
|
422
|
+
* @returns ActivityPerformance Success
|
|
423
|
+
* @throws ApiError
|
|
424
|
+
*/
|
|
425
|
+
patch({ requestBody, }: {
|
|
426
|
+
/**
|
|
427
|
+
* The <typeparamref name="TObject" /> model.
|
|
428
|
+
*/
|
|
429
|
+
requestBody?: ActivityPerformancePatch;
|
|
430
|
+
}): CancelablePromise<ActivityPerformance>;
|
|
431
|
+
/**
|
|
432
|
+
* Inserts a list of resources.
|
|
433
|
+
* @returns ActivityPerformance Success
|
|
434
|
+
* @throws ApiError
|
|
435
|
+
*/
|
|
436
|
+
postList({ requestBody, }: {
|
|
437
|
+
/**
|
|
438
|
+
* The list of <typeparamref name="TObject" />.
|
|
439
|
+
*/
|
|
440
|
+
requestBody?: Array<ActivityPerformancePost>;
|
|
441
|
+
}): CancelablePromise<Array<ActivityPerformance>>;
|
|
442
|
+
/**
|
|
443
|
+
* Patches the resource.
|
|
444
|
+
* @returns ActivityPerformance Success
|
|
445
|
+
* @throws ApiError
|
|
446
|
+
*/
|
|
447
|
+
patchWithReferences({ requestBody, }: {
|
|
448
|
+
/**
|
|
449
|
+
* The <typeparamref name="TObject" /> model.
|
|
450
|
+
*/
|
|
451
|
+
requestBody?: ActivityPerformancePatch;
|
|
452
|
+
}): CancelablePromise<ActivityPerformance>;
|
|
453
|
+
/**
|
|
454
|
+
* Deletes the resource.
|
|
455
|
+
* @returns any Success
|
|
456
|
+
* @throws ApiError
|
|
457
|
+
*/
|
|
458
|
+
deleteByObject({ requestBody, }: {
|
|
459
|
+
/**
|
|
460
|
+
* The <typeparamref name="TObject" /> model.
|
|
461
|
+
*/
|
|
462
|
+
requestBody?: ActivityPerformance;
|
|
463
|
+
}): CancelablePromise<any>;
|
|
464
|
+
/**
|
|
465
|
+
* Gets a list of resources.
|
|
466
|
+
* @returns ActivityPerformancePage Success
|
|
467
|
+
* @throws ApiError
|
|
468
|
+
*/
|
|
469
|
+
getPage({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
470
|
+
/**
|
|
471
|
+
* Gets or sets the Venue Id.
|
|
472
|
+
*/
|
|
473
|
+
venueId?: string;
|
|
474
|
+
/**
|
|
475
|
+
* Gets or sets the User Id.
|
|
476
|
+
*/
|
|
477
|
+
userId?: string;
|
|
478
|
+
/**
|
|
479
|
+
* Gets or sets the Programme Id.
|
|
480
|
+
*/
|
|
481
|
+
programmeId?: string;
|
|
482
|
+
/**
|
|
483
|
+
* Gets or sets the starting date greater than or equal to.
|
|
484
|
+
*/
|
|
485
|
+
startDateGte?: string;
|
|
486
|
+
/**
|
|
487
|
+
* Gets or sets the starting date less than or equal to.
|
|
488
|
+
*/
|
|
489
|
+
startDateLte?: string;
|
|
490
|
+
/**
|
|
491
|
+
* Gets or sets a value indicating whether to include online activities only.
|
|
492
|
+
*/
|
|
493
|
+
onlineActivitiesOnly?: boolean;
|
|
494
|
+
/**
|
|
495
|
+
* Gets or sets a value indicating whether to include online venues only.
|
|
496
|
+
*/
|
|
497
|
+
onlineVenuesOnly?: boolean;
|
|
498
|
+
/**
|
|
499
|
+
* Gets or sets the page number for paged queries.
|
|
500
|
+
*/
|
|
501
|
+
pageNumber?: number;
|
|
502
|
+
/**
|
|
503
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
504
|
+
*/
|
|
505
|
+
take?: number;
|
|
506
|
+
/**
|
|
507
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
508
|
+
*/
|
|
509
|
+
limitListRequests?: boolean;
|
|
510
|
+
/**
|
|
511
|
+
* Gets or sets the Tenant Id.
|
|
512
|
+
*/
|
|
513
|
+
tenantId?: string;
|
|
514
|
+
/**
|
|
515
|
+
* Gets or sets the Modifed By Id.
|
|
516
|
+
*/
|
|
517
|
+
modifiedById?: string;
|
|
518
|
+
/**
|
|
519
|
+
* Gets or sets the Modifed By Ids.
|
|
520
|
+
*/
|
|
521
|
+
modifiedByIds?: Array<string>;
|
|
522
|
+
/**
|
|
523
|
+
* Gets or sets the Date Created greater than equal to.
|
|
524
|
+
*/
|
|
525
|
+
dateCreatedGte?: string;
|
|
526
|
+
/**
|
|
527
|
+
* Gets or sets the Date Created less than equal to.
|
|
528
|
+
*/
|
|
529
|
+
dateCreatedLte?: string;
|
|
530
|
+
/**
|
|
531
|
+
* Gets or sets the queryable only is live status.
|
|
532
|
+
*/
|
|
533
|
+
isLive?: boolean;
|
|
534
|
+
/**
|
|
535
|
+
* Gets or sets the sort order direction.
|
|
536
|
+
*/
|
|
537
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
538
|
+
}): CancelablePromise<ActivityPerformancePage>;
|
|
539
|
+
/**
|
|
540
|
+
* Deletes the resource.
|
|
541
|
+
* @returns any Success
|
|
542
|
+
* @throws ApiError
|
|
543
|
+
*/
|
|
544
|
+
deleteById({ id, }: {
|
|
545
|
+
/**
|
|
546
|
+
* The <typeparamref name="TObject" /> id.
|
|
547
|
+
*/
|
|
548
|
+
id: string;
|
|
549
|
+
}): CancelablePromise<any>;
|
|
550
|
+
/**
|
|
551
|
+
* Gets the resource by its Id.
|
|
552
|
+
* @returns ActivityPerformance Success
|
|
553
|
+
* @throws ApiError
|
|
554
|
+
*/
|
|
555
|
+
getObject({ id, }: {
|
|
556
|
+
/**
|
|
557
|
+
* The <typeparamref name="TObject" /> id.
|
|
558
|
+
*/
|
|
559
|
+
id: string;
|
|
560
|
+
}): CancelablePromise<ActivityPerformance>;
|
|
561
|
+
/**
|
|
562
|
+
* Returns a value indicating whether the resource is deletable.
|
|
563
|
+
* @returns boolean Success
|
|
564
|
+
* @throws ApiError
|
|
565
|
+
*/
|
|
566
|
+
canDelete({ id, }: {
|
|
567
|
+
/**
|
|
568
|
+
* The <typeparamref name="TObject" /> id.
|
|
569
|
+
*/
|
|
570
|
+
id: string;
|
|
571
|
+
}): CancelablePromise<boolean>;
|
|
572
|
+
/**
|
|
573
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
574
|
+
* @returns boolean Success
|
|
575
|
+
* @throws ApiError
|
|
576
|
+
*/
|
|
577
|
+
exists({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
578
|
+
/**
|
|
579
|
+
* Gets or sets the Venue Id.
|
|
580
|
+
*/
|
|
581
|
+
venueId?: string;
|
|
582
|
+
/**
|
|
583
|
+
* Gets or sets the User Id.
|
|
584
|
+
*/
|
|
585
|
+
userId?: string;
|
|
586
|
+
/**
|
|
587
|
+
* Gets or sets the Programme Id.
|
|
588
|
+
*/
|
|
589
|
+
programmeId?: string;
|
|
590
|
+
/**
|
|
591
|
+
* Gets or sets the starting date greater than or equal to.
|
|
592
|
+
*/
|
|
593
|
+
startDateGte?: string;
|
|
594
|
+
/**
|
|
595
|
+
* Gets or sets the starting date less than or equal to.
|
|
596
|
+
*/
|
|
597
|
+
startDateLte?: string;
|
|
598
|
+
/**
|
|
599
|
+
* Gets or sets a value indicating whether to include online activities only.
|
|
600
|
+
*/
|
|
601
|
+
onlineActivitiesOnly?: boolean;
|
|
602
|
+
/**
|
|
603
|
+
* Gets or sets a value indicating whether to include online venues only.
|
|
604
|
+
*/
|
|
605
|
+
onlineVenuesOnly?: boolean;
|
|
606
|
+
/**
|
|
607
|
+
* Gets or sets the page number for paged queries.
|
|
608
|
+
*/
|
|
609
|
+
pageNumber?: number;
|
|
610
|
+
/**
|
|
611
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
612
|
+
*/
|
|
613
|
+
take?: number;
|
|
614
|
+
/**
|
|
615
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
616
|
+
*/
|
|
617
|
+
limitListRequests?: boolean;
|
|
618
|
+
/**
|
|
619
|
+
* Gets or sets the Tenant Id.
|
|
620
|
+
*/
|
|
621
|
+
tenantId?: string;
|
|
622
|
+
/**
|
|
623
|
+
* Gets or sets the Modifed By Id.
|
|
624
|
+
*/
|
|
625
|
+
modifiedById?: string;
|
|
626
|
+
/**
|
|
627
|
+
* Gets or sets the Modifed By Ids.
|
|
628
|
+
*/
|
|
629
|
+
modifiedByIds?: Array<string>;
|
|
630
|
+
/**
|
|
631
|
+
* Gets or sets the Date Created greater than equal to.
|
|
632
|
+
*/
|
|
633
|
+
dateCreatedGte?: string;
|
|
634
|
+
/**
|
|
635
|
+
* Gets or sets the Date Created less than equal to.
|
|
636
|
+
*/
|
|
637
|
+
dateCreatedLte?: string;
|
|
638
|
+
/**
|
|
639
|
+
* Gets or sets the queryable only is live status.
|
|
640
|
+
*/
|
|
641
|
+
isLive?: boolean;
|
|
642
|
+
/**
|
|
643
|
+
* Gets or sets the sort order direction.
|
|
644
|
+
*/
|
|
645
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
646
|
+
}): CancelablePromise<boolean>;
|
|
647
|
+
/**
|
|
648
|
+
* Gets a list of resources unpaged and without references.
|
|
649
|
+
* @returns ActivityPerformance Success
|
|
650
|
+
* @throws ApiError
|
|
651
|
+
*/
|
|
652
|
+
getListWithoutReferences({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
653
|
+
/**
|
|
654
|
+
* Gets or sets the Venue Id.
|
|
655
|
+
*/
|
|
656
|
+
venueId?: string;
|
|
657
|
+
/**
|
|
658
|
+
* Gets or sets the User Id.
|
|
659
|
+
*/
|
|
660
|
+
userId?: string;
|
|
661
|
+
/**
|
|
662
|
+
* Gets or sets the Programme Id.
|
|
663
|
+
*/
|
|
664
|
+
programmeId?: string;
|
|
665
|
+
/**
|
|
666
|
+
* Gets or sets the starting date greater than or equal to.
|
|
667
|
+
*/
|
|
668
|
+
startDateGte?: string;
|
|
669
|
+
/**
|
|
670
|
+
* Gets or sets the starting date less than or equal to.
|
|
671
|
+
*/
|
|
672
|
+
startDateLte?: string;
|
|
673
|
+
/**
|
|
674
|
+
* Gets or sets a value indicating whether to include online activities only.
|
|
675
|
+
*/
|
|
676
|
+
onlineActivitiesOnly?: boolean;
|
|
677
|
+
/**
|
|
678
|
+
* Gets or sets a value indicating whether to include online venues only.
|
|
679
|
+
*/
|
|
680
|
+
onlineVenuesOnly?: boolean;
|
|
681
|
+
/**
|
|
682
|
+
* Gets or sets the page number for paged queries.
|
|
683
|
+
*/
|
|
684
|
+
pageNumber?: number;
|
|
685
|
+
/**
|
|
686
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
687
|
+
*/
|
|
688
|
+
take?: number;
|
|
689
|
+
/**
|
|
690
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
691
|
+
*/
|
|
692
|
+
limitListRequests?: boolean;
|
|
693
|
+
/**
|
|
694
|
+
* Gets or sets the Tenant Id.
|
|
695
|
+
*/
|
|
696
|
+
tenantId?: string;
|
|
697
|
+
/**
|
|
698
|
+
* Gets or sets the Modifed By Id.
|
|
699
|
+
*/
|
|
700
|
+
modifiedById?: string;
|
|
701
|
+
/**
|
|
702
|
+
* Gets or sets the Modifed By Ids.
|
|
703
|
+
*/
|
|
704
|
+
modifiedByIds?: Array<string>;
|
|
705
|
+
/**
|
|
706
|
+
* Gets or sets the Date Created greater than equal to.
|
|
707
|
+
*/
|
|
708
|
+
dateCreatedGte?: string;
|
|
709
|
+
/**
|
|
710
|
+
* Gets or sets the Date Created less than equal to.
|
|
711
|
+
*/
|
|
712
|
+
dateCreatedLte?: string;
|
|
713
|
+
/**
|
|
714
|
+
* Gets or sets the queryable only is live status.
|
|
715
|
+
*/
|
|
716
|
+
isLive?: boolean;
|
|
717
|
+
/**
|
|
718
|
+
* Gets or sets the sort order direction.
|
|
719
|
+
*/
|
|
720
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
721
|
+
}): CancelablePromise<Array<ActivityPerformance>>;
|
|
722
|
+
/**
|
|
723
|
+
* Gets a list of resources.
|
|
724
|
+
* @returns ActivityPerformance Success
|
|
725
|
+
* @throws ApiError
|
|
726
|
+
*/
|
|
727
|
+
getListIdName({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
728
|
+
/**
|
|
729
|
+
* Gets or sets the Venue Id.
|
|
730
|
+
*/
|
|
731
|
+
venueId?: string;
|
|
732
|
+
/**
|
|
733
|
+
* Gets or sets the User Id.
|
|
734
|
+
*/
|
|
735
|
+
userId?: string;
|
|
736
|
+
/**
|
|
737
|
+
* Gets or sets the Programme Id.
|
|
738
|
+
*/
|
|
739
|
+
programmeId?: string;
|
|
740
|
+
/**
|
|
741
|
+
* Gets or sets the starting date greater than or equal to.
|
|
742
|
+
*/
|
|
743
|
+
startDateGte?: string;
|
|
744
|
+
/**
|
|
745
|
+
* Gets or sets the starting date less than or equal to.
|
|
746
|
+
*/
|
|
747
|
+
startDateLte?: string;
|
|
748
|
+
/**
|
|
749
|
+
* Gets or sets a value indicating whether to include online activities only.
|
|
750
|
+
*/
|
|
751
|
+
onlineActivitiesOnly?: boolean;
|
|
752
|
+
/**
|
|
753
|
+
* Gets or sets a value indicating whether to include online venues only.
|
|
754
|
+
*/
|
|
755
|
+
onlineVenuesOnly?: boolean;
|
|
756
|
+
/**
|
|
757
|
+
* Gets or sets the page number for paged queries.
|
|
758
|
+
*/
|
|
759
|
+
pageNumber?: number;
|
|
760
|
+
/**
|
|
761
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
762
|
+
*/
|
|
763
|
+
take?: number;
|
|
764
|
+
/**
|
|
765
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
766
|
+
*/
|
|
767
|
+
limitListRequests?: boolean;
|
|
768
|
+
/**
|
|
769
|
+
* Gets or sets the Tenant Id.
|
|
770
|
+
*/
|
|
771
|
+
tenantId?: string;
|
|
772
|
+
/**
|
|
773
|
+
* Gets or sets the Modifed By Id.
|
|
774
|
+
*/
|
|
775
|
+
modifiedById?: string;
|
|
776
|
+
/**
|
|
777
|
+
* Gets or sets the Modifed By Ids.
|
|
778
|
+
*/
|
|
779
|
+
modifiedByIds?: Array<string>;
|
|
780
|
+
/**
|
|
781
|
+
* Gets or sets the Date Created greater than equal to.
|
|
782
|
+
*/
|
|
783
|
+
dateCreatedGte?: string;
|
|
784
|
+
/**
|
|
785
|
+
* Gets or sets the Date Created less than equal to.
|
|
786
|
+
*/
|
|
787
|
+
dateCreatedLte?: string;
|
|
788
|
+
/**
|
|
789
|
+
* Gets or sets the queryable only is live status.
|
|
790
|
+
*/
|
|
791
|
+
isLive?: boolean;
|
|
792
|
+
/**
|
|
793
|
+
* Gets or sets the sort order direction.
|
|
794
|
+
*/
|
|
795
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
796
|
+
}): CancelablePromise<Array<ActivityPerformance>>;
|
|
797
|
+
}
|
|
798
|
+
|
|
193
799
|
/**
|
|
194
800
|
* Represents a Country within the Reach application.
|
|
195
801
|
*/
|
|
@@ -325,28 +931,6 @@ type Attendee = {
|
|
|
325
931
|
readonly fullName?: string | null;
|
|
326
932
|
};
|
|
327
933
|
|
|
328
|
-
/**
|
|
329
|
-
* Describes meta data for results returned as pages.
|
|
330
|
-
*/
|
|
331
|
-
type Pagination = {
|
|
332
|
-
/**
|
|
333
|
-
* Gets or sets the page number.
|
|
334
|
-
*/
|
|
335
|
-
pageNumber: number;
|
|
336
|
-
/**
|
|
337
|
-
* Gets the total number of pages.
|
|
338
|
-
*/
|
|
339
|
-
readonly totalPages: number;
|
|
340
|
-
/**
|
|
341
|
-
* Gets the total number of items in each page.
|
|
342
|
-
*/
|
|
343
|
-
readonly itemsPerPage: number;
|
|
344
|
-
/**
|
|
345
|
-
* Gets the total number of items.
|
|
346
|
-
*/
|
|
347
|
-
readonly totalItems: number;
|
|
348
|
-
};
|
|
349
|
-
|
|
350
934
|
type AttendeePage = {
|
|
351
935
|
pagination: Pagination;
|
|
352
936
|
readonly items: Array<Attendee>;
|
|
@@ -1426,15 +2010,6 @@ declare enum CustomerCancellationOption {
|
|
|
1426
2010
|
UNDETERMINED = "Undetermined"
|
|
1427
2011
|
}
|
|
1428
2012
|
|
|
1429
|
-
/**
|
|
1430
|
-
* The activity type.
|
|
1431
|
-
*/
|
|
1432
|
-
declare enum ActivityType {
|
|
1433
|
-
FACILITY = "Facility",
|
|
1434
|
-
SESSION = "Session",
|
|
1435
|
-
COURSE = "Course"
|
|
1436
|
-
}
|
|
1437
|
-
|
|
1438
2013
|
/**
|
|
1439
2014
|
* The Opportunity booking status, indicating whether the opportunity has an active booking or has been attended.
|
|
1440
2015
|
*/
|
|
@@ -5763,6 +6338,10 @@ type CoursePatch = {
|
|
|
5763
6338
|
* Gets or sets the contact email.
|
|
5764
6339
|
*/
|
|
5765
6340
|
contactEmail?: string | null;
|
|
6341
|
+
/**
|
|
6342
|
+
* Gets or sets the booking link override if checkout will occur externally.
|
|
6343
|
+
*/
|
|
6344
|
+
bookingLinkOverride?: string | null;
|
|
5766
6345
|
/**
|
|
5767
6346
|
* Gets or sets the course that this course was originally copied from.
|
|
5768
6347
|
*/
|
|
@@ -5789,7 +6368,6 @@ type CoursePatch = {
|
|
|
5789
6368
|
* Gets or sets the course offers.
|
|
5790
6369
|
*/
|
|
5791
6370
|
offers?: Array<UpdateOffer> | null;
|
|
5792
|
-
bookingLinkOverride?: string | null;
|
|
5793
6371
|
};
|
|
5794
6372
|
|
|
5795
6373
|
/**
|
|
@@ -17896,576 +18474,85 @@ declare class OrgCourseUtilisationService {
|
|
|
17896
18474
|
* Gets or sets the sort order direction.
|
|
17897
18475
|
*/
|
|
17898
18476
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
17899
|
-
}): CancelablePromise<Array<OrgCourseUtilisation>>;
|
|
17900
|
-
}
|
|
17901
|
-
|
|
17902
|
-
type PaymentPage = {
|
|
17903
|
-
pagination: Pagination;
|
|
17904
|
-
readonly items: Array<Payment>;
|
|
17905
|
-
};
|
|
17906
|
-
|
|
17907
|
-
/**
|
|
17908
|
-
* Post model for payment updates.
|
|
17909
|
-
*/
|
|
17910
|
-
type PaymentPatch = {
|
|
17911
|
-
/**
|
|
17912
|
-
* Gets or sets the tenant Id.
|
|
17913
|
-
*/
|
|
17914
|
-
tenantId: string;
|
|
17915
|
-
/**
|
|
17916
|
-
* Gets or sets the Id.
|
|
17917
|
-
*/
|
|
17918
|
-
id: string;
|
|
17919
|
-
};
|
|
17920
|
-
|
|
17921
|
-
/**
|
|
17922
|
-
* Post model for payment inserts.
|
|
17923
|
-
*/
|
|
17924
|
-
type PaymentPost = {
|
|
17925
|
-
/**
|
|
17926
|
-
* Gets or sets the tenant Id.
|
|
17927
|
-
*/
|
|
17928
|
-
tenantId: string;
|
|
17929
|
-
};
|
|
17930
|
-
|
|
17931
|
-
declare class PaymentsService {
|
|
17932
|
-
readonly httpRequest: BaseHttpRequest;
|
|
17933
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
17934
|
-
/**
|
|
17935
|
-
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
17936
|
-
* @returns Payment Success
|
|
17937
|
-
* @throws ApiError
|
|
17938
|
-
*/
|
|
17939
|
-
post({ requestBody, }: {
|
|
17940
|
-
/**
|
|
17941
|
-
* The <typeparamref name="TObject" /> model.
|
|
17942
|
-
*/
|
|
17943
|
-
requestBody?: PaymentPost;
|
|
17944
|
-
}): CancelablePromise<Payment>;
|
|
17945
|
-
/**
|
|
17946
|
-
* Patches the resource.
|
|
17947
|
-
* @returns Payment Success
|
|
17948
|
-
* @throws ApiError
|
|
17949
|
-
*/
|
|
17950
|
-
patch({ requestBody, }: {
|
|
17951
|
-
/**
|
|
17952
|
-
* The <typeparamref name="TObject" /> model.
|
|
17953
|
-
*/
|
|
17954
|
-
requestBody?: PaymentPatch;
|
|
17955
|
-
}): CancelablePromise<Payment>;
|
|
17956
|
-
/**
|
|
17957
|
-
* Inserts a list of resources.
|
|
17958
|
-
* @returns Payment Success
|
|
17959
|
-
* @throws ApiError
|
|
17960
|
-
*/
|
|
17961
|
-
postList({ requestBody, }: {
|
|
17962
|
-
/**
|
|
17963
|
-
* The list of <typeparamref name="TObject" />.
|
|
17964
|
-
*/
|
|
17965
|
-
requestBody?: Array<PaymentPost>;
|
|
17966
|
-
}): CancelablePromise<Array<Payment>>;
|
|
17967
|
-
/**
|
|
17968
|
-
* Patches the resource.
|
|
17969
|
-
* @returns Payment Success
|
|
17970
|
-
* @throws ApiError
|
|
17971
|
-
*/
|
|
17972
|
-
patchWithReferences({ requestBody, }: {
|
|
17973
|
-
/**
|
|
17974
|
-
* The <typeparamref name="TObject" /> model.
|
|
17975
|
-
*/
|
|
17976
|
-
requestBody?: PaymentPatch;
|
|
17977
|
-
}): CancelablePromise<Payment>;
|
|
17978
|
-
/**
|
|
17979
|
-
* Deletes the resource.
|
|
17980
|
-
* @returns any Success
|
|
17981
|
-
* @throws ApiError
|
|
17982
|
-
*/
|
|
17983
|
-
deleteByObject({ requestBody, }: {
|
|
17984
|
-
/**
|
|
17985
|
-
* The <typeparamref name="TObject" /> model.
|
|
17986
|
-
*/
|
|
17987
|
-
requestBody?: Payment;
|
|
17988
|
-
}): CancelablePromise<any>;
|
|
17989
|
-
/**
|
|
17990
|
-
* Gets a list of resources.
|
|
17991
|
-
* @returns PaymentPage Success
|
|
17992
|
-
* @throws ApiError
|
|
17993
|
-
*/
|
|
17994
|
-
getPage({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17995
|
-
/**
|
|
17996
|
-
* Gets or sets the order Id for use in a query search.
|
|
17997
|
-
*/
|
|
17998
|
-
orderId?: string;
|
|
17999
|
-
/**
|
|
18000
|
-
* Gets or sets the page number for paged queries.
|
|
18001
|
-
*/
|
|
18002
|
-
pageNumber?: number;
|
|
18003
|
-
/**
|
|
18004
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
18005
|
-
*/
|
|
18006
|
-
take?: number;
|
|
18007
|
-
/**
|
|
18008
|
-
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
18009
|
-
*/
|
|
18010
|
-
limitListRequests?: boolean;
|
|
18011
|
-
/**
|
|
18012
|
-
* Gets or sets the Tenant Id.
|
|
18013
|
-
*/
|
|
18014
|
-
tenantId?: string;
|
|
18015
|
-
/**
|
|
18016
|
-
* Gets or sets the Modifed By Id.
|
|
18017
|
-
*/
|
|
18018
|
-
modifiedById?: string;
|
|
18019
|
-
/**
|
|
18020
|
-
* Gets or sets the Modifed By Ids.
|
|
18021
|
-
*/
|
|
18022
|
-
modifiedByIds?: Array<string>;
|
|
18023
|
-
/**
|
|
18024
|
-
* Gets or sets the Date Created greater than equal to.
|
|
18025
|
-
*/
|
|
18026
|
-
dateCreatedGte?: string;
|
|
18027
|
-
/**
|
|
18028
|
-
* Gets or sets the Date Created less than equal to.
|
|
18029
|
-
*/
|
|
18030
|
-
dateCreatedLte?: string;
|
|
18031
|
-
/**
|
|
18032
|
-
* Gets or sets the queryable only is live status.
|
|
18033
|
-
*/
|
|
18034
|
-
isLive?: boolean;
|
|
18035
|
-
/**
|
|
18036
|
-
* Gets or sets the sort order direction.
|
|
18037
|
-
*/
|
|
18038
|
-
sortOrderDirection?: SearchSortOrderDirection;
|
|
18039
|
-
}): CancelablePromise<PaymentPage>;
|
|
18040
|
-
/**
|
|
18041
|
-
* Deletes the resource.
|
|
18042
|
-
* @returns any Success
|
|
18043
|
-
* @throws ApiError
|
|
18044
|
-
*/
|
|
18045
|
-
deleteById({ id, }: {
|
|
18046
|
-
/**
|
|
18047
|
-
* The <typeparamref name="TObject" /> id.
|
|
18048
|
-
*/
|
|
18049
|
-
id: string;
|
|
18050
|
-
}): CancelablePromise<any>;
|
|
18051
|
-
/**
|
|
18052
|
-
* Gets the resource by its Id.
|
|
18053
|
-
* @returns Payment Success
|
|
18054
|
-
* @throws ApiError
|
|
18055
|
-
*/
|
|
18056
|
-
getObject({ id, }: {
|
|
18057
|
-
/**
|
|
18058
|
-
* The <typeparamref name="TObject" /> id.
|
|
18059
|
-
*/
|
|
18060
|
-
id: string;
|
|
18061
|
-
}): CancelablePromise<Payment>;
|
|
18062
|
-
/**
|
|
18063
|
-
* Returns a value indicating whether the resource is deletable.
|
|
18064
|
-
* @returns boolean Success
|
|
18065
|
-
* @throws ApiError
|
|
18066
|
-
*/
|
|
18067
|
-
canDelete({ id, }: {
|
|
18068
|
-
/**
|
|
18069
|
-
* The <typeparamref name="TObject" /> id.
|
|
18070
|
-
*/
|
|
18071
|
-
id: string;
|
|
18072
|
-
}): CancelablePromise<boolean>;
|
|
18073
|
-
/**
|
|
18074
|
-
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
18075
|
-
* @returns boolean Success
|
|
18076
|
-
* @throws ApiError
|
|
18077
|
-
*/
|
|
18078
|
-
exists({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18079
|
-
/**
|
|
18080
|
-
* Gets or sets the order Id for use in a query search.
|
|
18081
|
-
*/
|
|
18082
|
-
orderId?: string;
|
|
18083
|
-
/**
|
|
18084
|
-
* Gets or sets the page number for paged queries.
|
|
18085
|
-
*/
|
|
18086
|
-
pageNumber?: number;
|
|
18087
|
-
/**
|
|
18088
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
18089
|
-
*/
|
|
18090
|
-
take?: number;
|
|
18091
|
-
/**
|
|
18092
|
-
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
18093
|
-
*/
|
|
18094
|
-
limitListRequests?: boolean;
|
|
18095
|
-
/**
|
|
18096
|
-
* Gets or sets the Tenant Id.
|
|
18097
|
-
*/
|
|
18098
|
-
tenantId?: string;
|
|
18099
|
-
/**
|
|
18100
|
-
* Gets or sets the Modifed By Id.
|
|
18101
|
-
*/
|
|
18102
|
-
modifiedById?: string;
|
|
18103
|
-
/**
|
|
18104
|
-
* Gets or sets the Modifed By Ids.
|
|
18105
|
-
*/
|
|
18106
|
-
modifiedByIds?: Array<string>;
|
|
18107
|
-
/**
|
|
18108
|
-
* Gets or sets the Date Created greater than equal to.
|
|
18109
|
-
*/
|
|
18110
|
-
dateCreatedGte?: string;
|
|
18111
|
-
/**
|
|
18112
|
-
* Gets or sets the Date Created less than equal to.
|
|
18113
|
-
*/
|
|
18114
|
-
dateCreatedLte?: string;
|
|
18115
|
-
/**
|
|
18116
|
-
* Gets or sets the queryable only is live status.
|
|
18117
|
-
*/
|
|
18118
|
-
isLive?: boolean;
|
|
18119
|
-
/**
|
|
18120
|
-
* Gets or sets the sort order direction.
|
|
18121
|
-
*/
|
|
18122
|
-
sortOrderDirection?: SearchSortOrderDirection;
|
|
18123
|
-
}): CancelablePromise<boolean>;
|
|
18124
|
-
/**
|
|
18125
|
-
* Gets a list of resources unpaged and without references.
|
|
18126
|
-
* @returns Payment Success
|
|
18127
|
-
* @throws ApiError
|
|
18128
|
-
*/
|
|
18129
|
-
getListWithoutReferences({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18130
|
-
/**
|
|
18131
|
-
* Gets or sets the order Id for use in a query search.
|
|
18132
|
-
*/
|
|
18133
|
-
orderId?: string;
|
|
18134
|
-
/**
|
|
18135
|
-
* Gets or sets the page number for paged queries.
|
|
18136
|
-
*/
|
|
18137
|
-
pageNumber?: number;
|
|
18138
|
-
/**
|
|
18139
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
18140
|
-
*/
|
|
18141
|
-
take?: number;
|
|
18142
|
-
/**
|
|
18143
|
-
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
18144
|
-
*/
|
|
18145
|
-
limitListRequests?: boolean;
|
|
18146
|
-
/**
|
|
18147
|
-
* Gets or sets the Tenant Id.
|
|
18148
|
-
*/
|
|
18149
|
-
tenantId?: string;
|
|
18150
|
-
/**
|
|
18151
|
-
* Gets or sets the Modifed By Id.
|
|
18152
|
-
*/
|
|
18153
|
-
modifiedById?: string;
|
|
18154
|
-
/**
|
|
18155
|
-
* Gets or sets the Modifed By Ids.
|
|
18156
|
-
*/
|
|
18157
|
-
modifiedByIds?: Array<string>;
|
|
18158
|
-
/**
|
|
18159
|
-
* Gets or sets the Date Created greater than equal to.
|
|
18160
|
-
*/
|
|
18161
|
-
dateCreatedGte?: string;
|
|
18162
|
-
/**
|
|
18163
|
-
* Gets or sets the Date Created less than equal to.
|
|
18164
|
-
*/
|
|
18165
|
-
dateCreatedLte?: string;
|
|
18166
|
-
/**
|
|
18167
|
-
* Gets or sets the queryable only is live status.
|
|
18168
|
-
*/
|
|
18169
|
-
isLive?: boolean;
|
|
18170
|
-
/**
|
|
18171
|
-
* Gets or sets the sort order direction.
|
|
18172
|
-
*/
|
|
18173
|
-
sortOrderDirection?: SearchSortOrderDirection;
|
|
18174
|
-
}): CancelablePromise<Array<Payment>>;
|
|
18175
|
-
/**
|
|
18176
|
-
* Gets a list of resources.
|
|
18177
|
-
* @returns Payment Success
|
|
18178
|
-
* @throws ApiError
|
|
18179
|
-
*/
|
|
18180
|
-
getListIdName({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18181
|
-
/**
|
|
18182
|
-
* Gets or sets the order Id for use in a query search.
|
|
18183
|
-
*/
|
|
18184
|
-
orderId?: string;
|
|
18185
|
-
/**
|
|
18186
|
-
* Gets or sets the page number for paged queries.
|
|
18187
|
-
*/
|
|
18188
|
-
pageNumber?: number;
|
|
18189
|
-
/**
|
|
18190
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
18191
|
-
*/
|
|
18192
|
-
take?: number;
|
|
18193
|
-
/**
|
|
18194
|
-
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
18195
|
-
*/
|
|
18196
|
-
limitListRequests?: boolean;
|
|
18197
|
-
/**
|
|
18198
|
-
* Gets or sets the Tenant Id.
|
|
18199
|
-
*/
|
|
18200
|
-
tenantId?: string;
|
|
18201
|
-
/**
|
|
18202
|
-
* Gets or sets the Modifed By Id.
|
|
18203
|
-
*/
|
|
18204
|
-
modifiedById?: string;
|
|
18205
|
-
/**
|
|
18206
|
-
* Gets or sets the Modifed By Ids.
|
|
18207
|
-
*/
|
|
18208
|
-
modifiedByIds?: Array<string>;
|
|
18209
|
-
/**
|
|
18210
|
-
* Gets or sets the Date Created greater than equal to.
|
|
18211
|
-
*/
|
|
18212
|
-
dateCreatedGte?: string;
|
|
18213
|
-
/**
|
|
18214
|
-
* Gets or sets the Date Created less than equal to.
|
|
18215
|
-
*/
|
|
18216
|
-
dateCreatedLte?: string;
|
|
18217
|
-
/**
|
|
18218
|
-
* Gets or sets the queryable only is live status.
|
|
18219
|
-
*/
|
|
18220
|
-
isLive?: boolean;
|
|
18221
|
-
/**
|
|
18222
|
-
* Gets or sets the sort order direction.
|
|
18223
|
-
*/
|
|
18224
|
-
sortOrderDirection?: SearchSortOrderDirection;
|
|
18225
|
-
}): CancelablePromise<Array<Payment>>;
|
|
18226
|
-
}
|
|
18227
|
-
|
|
18228
|
-
/**
|
|
18229
|
-
* Represents a performance row within the Reach application.
|
|
18230
|
-
*/
|
|
18231
|
-
type Performance = {
|
|
18232
|
-
/**
|
|
18233
|
-
* Gets or sets the entities Id.
|
|
18234
|
-
*/
|
|
18235
|
-
id?: string;
|
|
18236
|
-
/**
|
|
18237
|
-
* Gets or sets the tenant Id.
|
|
18238
|
-
*/
|
|
18239
|
-
tenantId: string;
|
|
18240
|
-
/**
|
|
18241
|
-
* Gets or sets the created date of this entity.
|
|
18242
|
-
*/
|
|
18243
|
-
dateCreated: string;
|
|
18244
|
-
/**
|
|
18245
|
-
* Gets or sets the last modified date of this entity.
|
|
18246
|
-
*/
|
|
18247
|
-
dateModified: string;
|
|
18248
|
-
/**
|
|
18249
|
-
* Gets or sets the modified by Id.
|
|
18250
|
-
*/
|
|
18251
|
-
modifiedById?: string | null;
|
|
18252
|
-
/**
|
|
18253
|
-
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
18254
|
-
*/
|
|
18255
|
-
isLive: boolean;
|
|
18256
|
-
/**
|
|
18257
|
-
* Gets or sets the activity name.
|
|
18258
|
-
*/
|
|
18259
|
-
activityName?: string | null;
|
|
18260
|
-
/**
|
|
18261
|
-
* Gets or sets the venue name.
|
|
18262
|
-
*/
|
|
18263
|
-
venueName?: string | null;
|
|
18264
|
-
activityType?: ActivityType;
|
|
18265
|
-
/**
|
|
18266
|
-
* Gets or sets a value indicating whether the performance row has unlimited capacity.
|
|
18267
|
-
*/
|
|
18268
|
-
unlimitedCapacity?: boolean;
|
|
18269
|
-
/**
|
|
18270
|
-
* Gets or sets the capacity.
|
|
18271
|
-
*/
|
|
18272
|
-
totalCapacity?: number;
|
|
18273
|
-
/**
|
|
18274
|
-
* Gets or sets the remaining uses.
|
|
18275
|
-
*/
|
|
18276
|
-
usedCapacity?: number;
|
|
18277
|
-
/**
|
|
18278
|
-
* Gets or sets the remaining uses.
|
|
18279
|
-
*/
|
|
18280
|
-
unusedCapacity?: number;
|
|
18281
|
-
/**
|
|
18282
|
-
* Gets or sets the utilisation.
|
|
18283
|
-
*/
|
|
18284
|
-
utilisation?: number;
|
|
18285
|
-
/**
|
|
18286
|
-
* Gets or sets the total orders.
|
|
18287
|
-
*/
|
|
18288
|
-
totalOrders?: number;
|
|
18289
|
-
/**
|
|
18290
|
-
* Gets or sets the total revenue.
|
|
18291
|
-
*/
|
|
18292
|
-
totalRevenue?: number;
|
|
18293
|
-
/**
|
|
18294
|
-
* Gets or sets the revenue potential.
|
|
18295
|
-
*/
|
|
18296
|
-
revenuePotential?: number;
|
|
18297
|
-
};
|
|
18298
|
-
|
|
18299
|
-
type PerformancePage = {
|
|
18300
|
-
pagination: Pagination;
|
|
18301
|
-
readonly items: Array<Performance>;
|
|
18302
|
-
};
|
|
18303
|
-
|
|
18304
|
-
/**
|
|
18305
|
-
* Post model for Performance updates.
|
|
18306
|
-
*/
|
|
18307
|
-
type PerformancePatch = {
|
|
18308
|
-
/**
|
|
18309
|
-
* Gets or sets the tenant Id.
|
|
18310
|
-
*/
|
|
18311
|
-
tenantId: string;
|
|
18312
|
-
/**
|
|
18313
|
-
* Gets or sets the Id.
|
|
18314
|
-
*/
|
|
18315
|
-
id: string;
|
|
18316
|
-
};
|
|
18317
|
-
|
|
18318
|
-
/**
|
|
18319
|
-
* Post model for Performance inserts.
|
|
18320
|
-
*/
|
|
18321
|
-
type PerformancePost = {
|
|
18322
|
-
/**
|
|
18323
|
-
* Gets or sets the tenant Id.
|
|
18324
|
-
*/
|
|
18325
|
-
tenantId: string;
|
|
18326
|
-
};
|
|
18327
|
-
|
|
18328
|
-
declare class PerformanceService {
|
|
18329
|
-
readonly httpRequest: BaseHttpRequest;
|
|
18330
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
18331
|
-
/**
|
|
18332
|
-
* Exports the performance list to a csv format.
|
|
18333
|
-
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
18334
|
-
* @returns any Success
|
|
18335
|
-
* @throws ApiError
|
|
18336
|
-
*/
|
|
18337
|
-
exportToCsv({ venueId, userId, programmeId, startDateGte, startDateLte, endDateGte, endDateLte, onlineActivitiesOnly, onlineVenuesOnly, reportingLevel, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
18338
|
-
/**
|
|
18339
|
-
* Gets or sets the Venue Id.
|
|
18340
|
-
*/
|
|
18341
|
-
venueId?: string;
|
|
18342
|
-
/**
|
|
18343
|
-
* Gets or sets the User Id.
|
|
18344
|
-
*/
|
|
18345
|
-
userId?: string;
|
|
18346
|
-
/**
|
|
18347
|
-
* Gets or sets the Programme Id.
|
|
18348
|
-
*/
|
|
18349
|
-
programmeId?: string;
|
|
18350
|
-
/**
|
|
18351
|
-
* Gets or sets the starting date greater than or equal to.
|
|
18352
|
-
*/
|
|
18353
|
-
startDateGte?: string;
|
|
18354
|
-
/**
|
|
18355
|
-
* Gets or sets the starting date less than or equal to.
|
|
18356
|
-
*/
|
|
18357
|
-
startDateLte?: string;
|
|
18358
|
-
/**
|
|
18359
|
-
* Gets or sets the end date greater than or equal to.
|
|
18360
|
-
*/
|
|
18361
|
-
endDateGte?: string;
|
|
18362
|
-
/**
|
|
18363
|
-
* Gets or sets the end date less than or equal to.
|
|
18364
|
-
*/
|
|
18365
|
-
endDateLte?: string;
|
|
18366
|
-
/**
|
|
18367
|
-
* Gets or sets a value indicating whether to include online activities only.
|
|
18368
|
-
*/
|
|
18369
|
-
onlineActivitiesOnly?: boolean;
|
|
18370
|
-
/**
|
|
18371
|
-
* Gets or sets a value indicating whether to include online venues only.
|
|
18372
|
-
*/
|
|
18373
|
-
onlineVenuesOnly?: boolean;
|
|
18374
|
-
/**
|
|
18375
|
-
* Gets or sets the reporting level ('activity' or 'venue').
|
|
18376
|
-
*/
|
|
18377
|
-
reportingLevel?: string;
|
|
18378
|
-
/**
|
|
18379
|
-
* Gets or sets the page number for paged queries.
|
|
18380
|
-
*/
|
|
18381
|
-
pageNumber?: number;
|
|
18382
|
-
/**
|
|
18383
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
18384
|
-
*/
|
|
18385
|
-
take?: number;
|
|
18386
|
-
/**
|
|
18387
|
-
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
18388
|
-
*/
|
|
18389
|
-
limitListRequests?: boolean;
|
|
18390
|
-
/**
|
|
18391
|
-
* Gets or sets the Tenant Id.
|
|
18392
|
-
*/
|
|
18393
|
-
tenantId?: string;
|
|
18394
|
-
/**
|
|
18395
|
-
* Gets or sets the Modifed By Id.
|
|
18396
|
-
*/
|
|
18397
|
-
modifiedById?: string;
|
|
18398
|
-
/**
|
|
18399
|
-
* Gets or sets the Modifed By Ids.
|
|
18400
|
-
*/
|
|
18401
|
-
modifiedByIds?: Array<string>;
|
|
18402
|
-
/**
|
|
18403
|
-
* Gets or sets the Date Created greater than equal to.
|
|
18404
|
-
*/
|
|
18405
|
-
dateCreatedGte?: string;
|
|
18406
|
-
/**
|
|
18407
|
-
* Gets or sets the Date Created less than equal to.
|
|
18408
|
-
*/
|
|
18409
|
-
dateCreatedLte?: string;
|
|
18410
|
-
/**
|
|
18411
|
-
* Gets or sets the queryable only is live status.
|
|
18412
|
-
*/
|
|
18413
|
-
isLive?: boolean;
|
|
18414
|
-
/**
|
|
18415
|
-
* Gets or sets the sort order direction.
|
|
18416
|
-
*/
|
|
18417
|
-
sortOrderDirection?: SearchSortOrderDirection;
|
|
18418
|
-
formData?: {
|
|
18419
|
-
/**
|
|
18420
|
-
* Gets or sets the auth token.
|
|
18421
|
-
*/
|
|
18422
|
-
Token?: string;
|
|
18423
|
-
};
|
|
18424
|
-
}): CancelablePromise<any>;
|
|
18477
|
+
}): CancelablePromise<Array<OrgCourseUtilisation>>;
|
|
18478
|
+
}
|
|
18479
|
+
|
|
18480
|
+
type PaymentPage = {
|
|
18481
|
+
pagination: Pagination;
|
|
18482
|
+
readonly items: Array<Payment>;
|
|
18483
|
+
};
|
|
18484
|
+
|
|
18485
|
+
/**
|
|
18486
|
+
* Post model for payment updates.
|
|
18487
|
+
*/
|
|
18488
|
+
type PaymentPatch = {
|
|
18489
|
+
/**
|
|
18490
|
+
* Gets or sets the tenant Id.
|
|
18491
|
+
*/
|
|
18492
|
+
tenantId: string;
|
|
18493
|
+
/**
|
|
18494
|
+
* Gets or sets the Id.
|
|
18495
|
+
*/
|
|
18496
|
+
id: string;
|
|
18497
|
+
};
|
|
18498
|
+
|
|
18499
|
+
/**
|
|
18500
|
+
* Post model for payment inserts.
|
|
18501
|
+
*/
|
|
18502
|
+
type PaymentPost = {
|
|
18503
|
+
/**
|
|
18504
|
+
* Gets or sets the tenant Id.
|
|
18505
|
+
*/
|
|
18506
|
+
tenantId: string;
|
|
18507
|
+
};
|
|
18508
|
+
|
|
18509
|
+
declare class PaymentsService {
|
|
18510
|
+
readonly httpRequest: BaseHttpRequest;
|
|
18511
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
18425
18512
|
/**
|
|
18426
18513
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
18427
|
-
* @returns
|
|
18514
|
+
* @returns Payment Success
|
|
18428
18515
|
* @throws ApiError
|
|
18429
18516
|
*/
|
|
18430
18517
|
post({ requestBody, }: {
|
|
18431
18518
|
/**
|
|
18432
18519
|
* The <typeparamref name="TObject" /> model.
|
|
18433
18520
|
*/
|
|
18434
|
-
requestBody?:
|
|
18435
|
-
}): CancelablePromise<
|
|
18521
|
+
requestBody?: PaymentPost;
|
|
18522
|
+
}): CancelablePromise<Payment>;
|
|
18436
18523
|
/**
|
|
18437
18524
|
* Patches the resource.
|
|
18438
|
-
* @returns
|
|
18525
|
+
* @returns Payment Success
|
|
18439
18526
|
* @throws ApiError
|
|
18440
18527
|
*/
|
|
18441
18528
|
patch({ requestBody, }: {
|
|
18442
18529
|
/**
|
|
18443
18530
|
* The <typeparamref name="TObject" /> model.
|
|
18444
18531
|
*/
|
|
18445
|
-
requestBody?:
|
|
18446
|
-
}): CancelablePromise<
|
|
18532
|
+
requestBody?: PaymentPatch;
|
|
18533
|
+
}): CancelablePromise<Payment>;
|
|
18447
18534
|
/**
|
|
18448
18535
|
* Inserts a list of resources.
|
|
18449
|
-
* @returns
|
|
18536
|
+
* @returns Payment Success
|
|
18450
18537
|
* @throws ApiError
|
|
18451
18538
|
*/
|
|
18452
18539
|
postList({ requestBody, }: {
|
|
18453
18540
|
/**
|
|
18454
18541
|
* The list of <typeparamref name="TObject" />.
|
|
18455
18542
|
*/
|
|
18456
|
-
requestBody?: Array<
|
|
18457
|
-
}): CancelablePromise<Array<
|
|
18543
|
+
requestBody?: Array<PaymentPost>;
|
|
18544
|
+
}): CancelablePromise<Array<Payment>>;
|
|
18458
18545
|
/**
|
|
18459
18546
|
* Patches the resource.
|
|
18460
|
-
* @returns
|
|
18547
|
+
* @returns Payment Success
|
|
18461
18548
|
* @throws ApiError
|
|
18462
18549
|
*/
|
|
18463
18550
|
patchWithReferences({ requestBody, }: {
|
|
18464
18551
|
/**
|
|
18465
18552
|
* The <typeparamref name="TObject" /> model.
|
|
18466
18553
|
*/
|
|
18467
|
-
requestBody?:
|
|
18468
|
-
}): CancelablePromise<
|
|
18554
|
+
requestBody?: PaymentPatch;
|
|
18555
|
+
}): CancelablePromise<Payment>;
|
|
18469
18556
|
/**
|
|
18470
18557
|
* Deletes the resource.
|
|
18471
18558
|
* @returns any Success
|
|
@@ -18475,54 +18562,18 @@ declare class PerformanceService {
|
|
|
18475
18562
|
/**
|
|
18476
18563
|
* The <typeparamref name="TObject" /> model.
|
|
18477
18564
|
*/
|
|
18478
|
-
requestBody?:
|
|
18565
|
+
requestBody?: Payment;
|
|
18479
18566
|
}): CancelablePromise<any>;
|
|
18480
18567
|
/**
|
|
18481
18568
|
* Gets a list of resources.
|
|
18482
|
-
* @returns
|
|
18569
|
+
* @returns PaymentPage Success
|
|
18483
18570
|
* @throws ApiError
|
|
18484
18571
|
*/
|
|
18485
|
-
getPage({
|
|
18486
|
-
/**
|
|
18487
|
-
* Gets or sets the Venue Id.
|
|
18488
|
-
*/
|
|
18489
|
-
venueId?: string;
|
|
18490
|
-
/**
|
|
18491
|
-
* Gets or sets the User Id.
|
|
18492
|
-
*/
|
|
18493
|
-
userId?: string;
|
|
18494
|
-
/**
|
|
18495
|
-
* Gets or sets the Programme Id.
|
|
18496
|
-
*/
|
|
18497
|
-
programmeId?: string;
|
|
18498
|
-
/**
|
|
18499
|
-
* Gets or sets the starting date greater than or equal to.
|
|
18500
|
-
*/
|
|
18501
|
-
startDateGte?: string;
|
|
18502
|
-
/**
|
|
18503
|
-
* Gets or sets the starting date less than or equal to.
|
|
18504
|
-
*/
|
|
18505
|
-
startDateLte?: string;
|
|
18506
|
-
/**
|
|
18507
|
-
* Gets or sets the end date greater than or equal to.
|
|
18508
|
-
*/
|
|
18509
|
-
endDateGte?: string;
|
|
18510
|
-
/**
|
|
18511
|
-
* Gets or sets the end date less than or equal to.
|
|
18512
|
-
*/
|
|
18513
|
-
endDateLte?: string;
|
|
18514
|
-
/**
|
|
18515
|
-
* Gets or sets a value indicating whether to include online activities only.
|
|
18516
|
-
*/
|
|
18517
|
-
onlineActivitiesOnly?: boolean;
|
|
18518
|
-
/**
|
|
18519
|
-
* Gets or sets a value indicating whether to include online venues only.
|
|
18520
|
-
*/
|
|
18521
|
-
onlineVenuesOnly?: boolean;
|
|
18572
|
+
getPage({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18522
18573
|
/**
|
|
18523
|
-
* Gets or sets the
|
|
18574
|
+
* Gets or sets the order Id for use in a query search.
|
|
18524
18575
|
*/
|
|
18525
|
-
|
|
18576
|
+
orderId?: string;
|
|
18526
18577
|
/**
|
|
18527
18578
|
* Gets or sets the page number for paged queries.
|
|
18528
18579
|
*/
|
|
@@ -18563,7 +18614,7 @@ declare class PerformanceService {
|
|
|
18563
18614
|
* Gets or sets the sort order direction.
|
|
18564
18615
|
*/
|
|
18565
18616
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
18566
|
-
}): CancelablePromise<
|
|
18617
|
+
}): CancelablePromise<PaymentPage>;
|
|
18567
18618
|
/**
|
|
18568
18619
|
* Deletes the resource.
|
|
18569
18620
|
* @returns any Success
|
|
@@ -18577,7 +18628,7 @@ declare class PerformanceService {
|
|
|
18577
18628
|
}): CancelablePromise<any>;
|
|
18578
18629
|
/**
|
|
18579
18630
|
* Gets the resource by its Id.
|
|
18580
|
-
* @returns
|
|
18631
|
+
* @returns Payment Success
|
|
18581
18632
|
* @throws ApiError
|
|
18582
18633
|
*/
|
|
18583
18634
|
getObject({ id, }: {
|
|
@@ -18585,7 +18636,7 @@ declare class PerformanceService {
|
|
|
18585
18636
|
* The <typeparamref name="TObject" /> id.
|
|
18586
18637
|
*/
|
|
18587
18638
|
id: string;
|
|
18588
|
-
}): CancelablePromise<
|
|
18639
|
+
}): CancelablePromise<Payment>;
|
|
18589
18640
|
/**
|
|
18590
18641
|
* Returns a value indicating whether the resource is deletable.
|
|
18591
18642
|
* @returns boolean Success
|
|
@@ -18602,47 +18653,11 @@ declare class PerformanceService {
|
|
|
18602
18653
|
* @returns boolean Success
|
|
18603
18654
|
* @throws ApiError
|
|
18604
18655
|
*/
|
|
18605
|
-
exists({
|
|
18606
|
-
/**
|
|
18607
|
-
* Gets or sets the Venue Id.
|
|
18608
|
-
*/
|
|
18609
|
-
venueId?: string;
|
|
18610
|
-
/**
|
|
18611
|
-
* Gets or sets the User Id.
|
|
18612
|
-
*/
|
|
18613
|
-
userId?: string;
|
|
18614
|
-
/**
|
|
18615
|
-
* Gets or sets the Programme Id.
|
|
18616
|
-
*/
|
|
18617
|
-
programmeId?: string;
|
|
18618
|
-
/**
|
|
18619
|
-
* Gets or sets the starting date greater than or equal to.
|
|
18620
|
-
*/
|
|
18621
|
-
startDateGte?: string;
|
|
18622
|
-
/**
|
|
18623
|
-
* Gets or sets the starting date less than or equal to.
|
|
18624
|
-
*/
|
|
18625
|
-
startDateLte?: string;
|
|
18626
|
-
/**
|
|
18627
|
-
* Gets or sets the end date greater than or equal to.
|
|
18628
|
-
*/
|
|
18629
|
-
endDateGte?: string;
|
|
18630
|
-
/**
|
|
18631
|
-
* Gets or sets the end date less than or equal to.
|
|
18632
|
-
*/
|
|
18633
|
-
endDateLte?: string;
|
|
18634
|
-
/**
|
|
18635
|
-
* Gets or sets a value indicating whether to include online activities only.
|
|
18636
|
-
*/
|
|
18637
|
-
onlineActivitiesOnly?: boolean;
|
|
18638
|
-
/**
|
|
18639
|
-
* Gets or sets a value indicating whether to include online venues only.
|
|
18640
|
-
*/
|
|
18641
|
-
onlineVenuesOnly?: boolean;
|
|
18656
|
+
exists({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18642
18657
|
/**
|
|
18643
|
-
* Gets or sets the
|
|
18658
|
+
* Gets or sets the order Id for use in a query search.
|
|
18644
18659
|
*/
|
|
18645
|
-
|
|
18660
|
+
orderId?: string;
|
|
18646
18661
|
/**
|
|
18647
18662
|
* Gets or sets the page number for paged queries.
|
|
18648
18663
|
*/
|
|
@@ -18686,50 +18701,14 @@ declare class PerformanceService {
|
|
|
18686
18701
|
}): CancelablePromise<boolean>;
|
|
18687
18702
|
/**
|
|
18688
18703
|
* Gets a list of resources unpaged and without references.
|
|
18689
|
-
* @returns
|
|
18704
|
+
* @returns Payment Success
|
|
18690
18705
|
* @throws ApiError
|
|
18691
18706
|
*/
|
|
18692
|
-
getListWithoutReferences({
|
|
18693
|
-
/**
|
|
18694
|
-
* Gets or sets the Venue Id.
|
|
18695
|
-
*/
|
|
18696
|
-
venueId?: string;
|
|
18697
|
-
/**
|
|
18698
|
-
* Gets or sets the User Id.
|
|
18699
|
-
*/
|
|
18700
|
-
userId?: string;
|
|
18701
|
-
/**
|
|
18702
|
-
* Gets or sets the Programme Id.
|
|
18703
|
-
*/
|
|
18704
|
-
programmeId?: string;
|
|
18705
|
-
/**
|
|
18706
|
-
* Gets or sets the starting date greater than or equal to.
|
|
18707
|
-
*/
|
|
18708
|
-
startDateGte?: string;
|
|
18709
|
-
/**
|
|
18710
|
-
* Gets or sets the starting date less than or equal to.
|
|
18711
|
-
*/
|
|
18712
|
-
startDateLte?: string;
|
|
18713
|
-
/**
|
|
18714
|
-
* Gets or sets the end date greater than or equal to.
|
|
18715
|
-
*/
|
|
18716
|
-
endDateGte?: string;
|
|
18717
|
-
/**
|
|
18718
|
-
* Gets or sets the end date less than or equal to.
|
|
18719
|
-
*/
|
|
18720
|
-
endDateLte?: string;
|
|
18721
|
-
/**
|
|
18722
|
-
* Gets or sets a value indicating whether to include online activities only.
|
|
18723
|
-
*/
|
|
18724
|
-
onlineActivitiesOnly?: boolean;
|
|
18725
|
-
/**
|
|
18726
|
-
* Gets or sets a value indicating whether to include online venues only.
|
|
18727
|
-
*/
|
|
18728
|
-
onlineVenuesOnly?: boolean;
|
|
18707
|
+
getListWithoutReferences({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18729
18708
|
/**
|
|
18730
|
-
* Gets or sets the
|
|
18709
|
+
* Gets or sets the order Id for use in a query search.
|
|
18731
18710
|
*/
|
|
18732
|
-
|
|
18711
|
+
orderId?: string;
|
|
18733
18712
|
/**
|
|
18734
18713
|
* Gets or sets the page number for paged queries.
|
|
18735
18714
|
*/
|
|
@@ -18770,53 +18749,17 @@ declare class PerformanceService {
|
|
|
18770
18749
|
* Gets or sets the sort order direction.
|
|
18771
18750
|
*/
|
|
18772
18751
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
18773
|
-
}): CancelablePromise<Array<
|
|
18752
|
+
}): CancelablePromise<Array<Payment>>;
|
|
18774
18753
|
/**
|
|
18775
18754
|
* Gets a list of resources.
|
|
18776
|
-
* @returns
|
|
18755
|
+
* @returns Payment Success
|
|
18777
18756
|
* @throws ApiError
|
|
18778
18757
|
*/
|
|
18779
|
-
getListIdName({
|
|
18780
|
-
/**
|
|
18781
|
-
* Gets or sets the Venue Id.
|
|
18782
|
-
*/
|
|
18783
|
-
venueId?: string;
|
|
18784
|
-
/**
|
|
18785
|
-
* Gets or sets the User Id.
|
|
18786
|
-
*/
|
|
18787
|
-
userId?: string;
|
|
18788
|
-
/**
|
|
18789
|
-
* Gets or sets the Programme Id.
|
|
18790
|
-
*/
|
|
18791
|
-
programmeId?: string;
|
|
18792
|
-
/**
|
|
18793
|
-
* Gets or sets the starting date greater than or equal to.
|
|
18794
|
-
*/
|
|
18795
|
-
startDateGte?: string;
|
|
18796
|
-
/**
|
|
18797
|
-
* Gets or sets the starting date less than or equal to.
|
|
18798
|
-
*/
|
|
18799
|
-
startDateLte?: string;
|
|
18800
|
-
/**
|
|
18801
|
-
* Gets or sets the end date greater than or equal to.
|
|
18802
|
-
*/
|
|
18803
|
-
endDateGte?: string;
|
|
18804
|
-
/**
|
|
18805
|
-
* Gets or sets the end date less than or equal to.
|
|
18806
|
-
*/
|
|
18807
|
-
endDateLte?: string;
|
|
18808
|
-
/**
|
|
18809
|
-
* Gets or sets a value indicating whether to include online activities only.
|
|
18810
|
-
*/
|
|
18811
|
-
onlineActivitiesOnly?: boolean;
|
|
18812
|
-
/**
|
|
18813
|
-
* Gets or sets a value indicating whether to include online venues only.
|
|
18814
|
-
*/
|
|
18815
|
-
onlineVenuesOnly?: boolean;
|
|
18758
|
+
getListIdName({ orderId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18816
18759
|
/**
|
|
18817
|
-
* Gets or sets the
|
|
18760
|
+
* Gets or sets the order Id for use in a query search.
|
|
18818
18761
|
*/
|
|
18819
|
-
|
|
18762
|
+
orderId?: string;
|
|
18820
18763
|
/**
|
|
18821
18764
|
* Gets or sets the page number for paged queries.
|
|
18822
18765
|
*/
|
|
@@ -18857,7 +18800,7 @@ declare class PerformanceService {
|
|
|
18857
18800
|
* Gets or sets the sort order direction.
|
|
18858
18801
|
*/
|
|
18859
18802
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
18860
|
-
}): CancelablePromise<Array<
|
|
18803
|
+
}): CancelablePromise<Array<Payment>>;
|
|
18861
18804
|
}
|
|
18862
18805
|
|
|
18863
18806
|
/**
|
|
@@ -23051,7 +22994,7 @@ declare class PublicScheduledSessionsService {
|
|
|
23051
22994
|
* @returns ScheduledSessionPage Success
|
|
23052
22995
|
* @throws ApiError
|
|
23053
22996
|
*/
|
|
23054
|
-
getPage({ xTenantSubdomain, ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22997
|
+
getPage({ xTenantSubdomain, ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
23055
22998
|
xTenantSubdomain?: string;
|
|
23056
22999
|
/**
|
|
23057
23000
|
* Gets or sets the queryable scheduled session ids.
|
|
@@ -23113,10 +23056,18 @@ declare class PublicScheduledSessionsService {
|
|
|
23113
23056
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
23114
23057
|
*/
|
|
23115
23058
|
futureOnly?: boolean;
|
|
23059
|
+
/**
|
|
23060
|
+
* Gets or sets a value indicating whether to include image detail in the results.
|
|
23061
|
+
*/
|
|
23062
|
+
includeImages?: boolean;
|
|
23116
23063
|
/**
|
|
23117
23064
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
23118
23065
|
*/
|
|
23119
23066
|
includeVenue?: boolean;
|
|
23067
|
+
/**
|
|
23068
|
+
* Gets or sets a value indicating whether to include order detail in the results.
|
|
23069
|
+
*/
|
|
23070
|
+
includeOrders?: boolean;
|
|
23120
23071
|
/**
|
|
23121
23072
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
23122
23073
|
*/
|
|
@@ -23247,7 +23198,7 @@ declare class PublicScheduledSessionsService {
|
|
|
23247
23198
|
* @returns boolean Success
|
|
23248
23199
|
* @throws ApiError
|
|
23249
23200
|
*/
|
|
23250
|
-
exists({ xTenantSubdomain, ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
23201
|
+
exists({ xTenantSubdomain, ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
23251
23202
|
/**
|
|
23252
23203
|
* The tenants subdomain.
|
|
23253
23204
|
*/
|
|
@@ -23312,10 +23263,18 @@ declare class PublicScheduledSessionsService {
|
|
|
23312
23263
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
23313
23264
|
*/
|
|
23314
23265
|
futureOnly?: boolean;
|
|
23266
|
+
/**
|
|
23267
|
+
* Gets or sets a value indicating whether to include image detail in the results.
|
|
23268
|
+
*/
|
|
23269
|
+
includeImages?: boolean;
|
|
23315
23270
|
/**
|
|
23316
23271
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
23317
23272
|
*/
|
|
23318
23273
|
includeVenue?: boolean;
|
|
23274
|
+
/**
|
|
23275
|
+
* Gets or sets a value indicating whether to include order detail in the results.
|
|
23276
|
+
*/
|
|
23277
|
+
includeOrders?: boolean;
|
|
23319
23278
|
/**
|
|
23320
23279
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
23321
23280
|
*/
|
|
@@ -23472,6 +23431,10 @@ type SessionPatch = {
|
|
|
23472
23431
|
* Gets or sets the contact email.
|
|
23473
23432
|
*/
|
|
23474
23433
|
contactEmail?: string | null;
|
|
23434
|
+
/**
|
|
23435
|
+
* Gets or sets the booking link override if checkout will occur externally.
|
|
23436
|
+
*/
|
|
23437
|
+
bookingLinkOverride?: string | null;
|
|
23475
23438
|
/**
|
|
23476
23439
|
* Gets or sets the session that this course was originally copied from.
|
|
23477
23440
|
*/
|
|
@@ -23497,7 +23460,6 @@ type SessionPatch = {
|
|
|
23497
23460
|
* Gets or sets the session offers.
|
|
23498
23461
|
*/
|
|
23499
23462
|
offers?: Array<UpdateOffer> | null;
|
|
23500
|
-
bookingLinkOverride?: string | null;
|
|
23501
23463
|
};
|
|
23502
23464
|
|
|
23503
23465
|
/**
|
|
@@ -23716,7 +23678,7 @@ declare class PublicSessionsService {
|
|
|
23716
23678
|
* @returns any Success
|
|
23717
23679
|
* @throws ApiError
|
|
23718
23680
|
*/
|
|
23719
|
-
getDistinctSlotDates({ xTenantSubdomain, ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
23681
|
+
getDistinctSlotDates({ xTenantSubdomain, ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
23720
23682
|
/**
|
|
23721
23683
|
* The tenants subdomain.
|
|
23722
23684
|
*/
|
|
@@ -23781,10 +23743,18 @@ declare class PublicSessionsService {
|
|
|
23781
23743
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
23782
23744
|
*/
|
|
23783
23745
|
futureOnly?: boolean;
|
|
23746
|
+
/**
|
|
23747
|
+
* Gets or sets a value indicating whether to include image detail in the results.
|
|
23748
|
+
*/
|
|
23749
|
+
includeImages?: boolean;
|
|
23784
23750
|
/**
|
|
23785
23751
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
23786
23752
|
*/
|
|
23787
23753
|
includeVenue?: boolean;
|
|
23754
|
+
/**
|
|
23755
|
+
* Gets or sets a value indicating whether to include order detail in the results.
|
|
23756
|
+
*/
|
|
23757
|
+
includeOrders?: boolean;
|
|
23788
23758
|
/**
|
|
23789
23759
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
23790
23760
|
*/
|
|
@@ -28341,7 +28311,7 @@ declare class ScheduledSessionsService {
|
|
|
28341
28311
|
* @returns ScheduledSessionPage Success
|
|
28342
28312
|
* @throws ApiError
|
|
28343
28313
|
*/
|
|
28344
|
-
getPage({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28314
|
+
getPage({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28345
28315
|
/**
|
|
28346
28316
|
* Gets or sets the queryable scheduled session ids.
|
|
28347
28317
|
*/
|
|
@@ -28402,10 +28372,18 @@ declare class ScheduledSessionsService {
|
|
|
28402
28372
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
28403
28373
|
*/
|
|
28404
28374
|
futureOnly?: boolean;
|
|
28375
|
+
/**
|
|
28376
|
+
* Gets or sets a value indicating whether to include image detail in the results.
|
|
28377
|
+
*/
|
|
28378
|
+
includeImages?: boolean;
|
|
28405
28379
|
/**
|
|
28406
28380
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
28407
28381
|
*/
|
|
28408
28382
|
includeVenue?: boolean;
|
|
28383
|
+
/**
|
|
28384
|
+
* Gets or sets a value indicating whether to include order detail in the results.
|
|
28385
|
+
*/
|
|
28386
|
+
includeOrders?: boolean;
|
|
28409
28387
|
/**
|
|
28410
28388
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
28411
28389
|
*/
|
|
@@ -28509,7 +28487,7 @@ declare class ScheduledSessionsService {
|
|
|
28509
28487
|
* @returns boolean Success
|
|
28510
28488
|
* @throws ApiError
|
|
28511
28489
|
*/
|
|
28512
|
-
exists({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28490
|
+
exists({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28513
28491
|
/**
|
|
28514
28492
|
* Gets or sets the queryable scheduled session ids.
|
|
28515
28493
|
*/
|
|
@@ -28570,10 +28548,18 @@ declare class ScheduledSessionsService {
|
|
|
28570
28548
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
28571
28549
|
*/
|
|
28572
28550
|
futureOnly?: boolean;
|
|
28551
|
+
/**
|
|
28552
|
+
* Gets or sets a value indicating whether to include image detail in the results.
|
|
28553
|
+
*/
|
|
28554
|
+
includeImages?: boolean;
|
|
28573
28555
|
/**
|
|
28574
28556
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
28575
28557
|
*/
|
|
28576
28558
|
includeVenue?: boolean;
|
|
28559
|
+
/**
|
|
28560
|
+
* Gets or sets a value indicating whether to include order detail in the results.
|
|
28561
|
+
*/
|
|
28562
|
+
includeOrders?: boolean;
|
|
28577
28563
|
/**
|
|
28578
28564
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
28579
28565
|
*/
|
|
@@ -28644,7 +28630,7 @@ declare class ScheduledSessionsService {
|
|
|
28644
28630
|
* @returns ScheduledSession Success
|
|
28645
28631
|
* @throws ApiError
|
|
28646
28632
|
*/
|
|
28647
|
-
getListWithoutReferences({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28633
|
+
getListWithoutReferences({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28648
28634
|
/**
|
|
28649
28635
|
* Gets or sets the queryable scheduled session ids.
|
|
28650
28636
|
*/
|
|
@@ -28705,10 +28691,18 @@ declare class ScheduledSessionsService {
|
|
|
28705
28691
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
28706
28692
|
*/
|
|
28707
28693
|
futureOnly?: boolean;
|
|
28694
|
+
/**
|
|
28695
|
+
* Gets or sets a value indicating whether to include image detail in the results.
|
|
28696
|
+
*/
|
|
28697
|
+
includeImages?: boolean;
|
|
28708
28698
|
/**
|
|
28709
28699
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
28710
28700
|
*/
|
|
28711
28701
|
includeVenue?: boolean;
|
|
28702
|
+
/**
|
|
28703
|
+
* Gets or sets a value indicating whether to include order detail in the results.
|
|
28704
|
+
*/
|
|
28705
|
+
includeOrders?: boolean;
|
|
28712
28706
|
/**
|
|
28713
28707
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
28714
28708
|
*/
|
|
@@ -28779,7 +28773,7 @@ declare class ScheduledSessionsService {
|
|
|
28779
28773
|
* @returns ScheduledSession Success
|
|
28780
28774
|
* @throws ApiError
|
|
28781
28775
|
*/
|
|
28782
|
-
getListIdName({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeVenue, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28776
|
+
getListIdName({ ids, venueId, sessionId, sessionIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeImages, includeVenue, includeOrders, hasAvailability, excludeArchived, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
28783
28777
|
/**
|
|
28784
28778
|
* Gets or sets the queryable scheduled session ids.
|
|
28785
28779
|
*/
|
|
@@ -28840,10 +28834,18 @@ declare class ScheduledSessionsService {
|
|
|
28840
28834
|
* Gets or sets a value indicating whether to only return future scheduled session.
|
|
28841
28835
|
*/
|
|
28842
28836
|
futureOnly?: boolean;
|
|
28837
|
+
/**
|
|
28838
|
+
* Gets or sets a value indicating whether to include image detail in the results.
|
|
28839
|
+
*/
|
|
28840
|
+
includeImages?: boolean;
|
|
28843
28841
|
/**
|
|
28844
28842
|
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
28845
28843
|
*/
|
|
28846
28844
|
includeVenue?: boolean;
|
|
28845
|
+
/**
|
|
28846
|
+
* Gets or sets a value indicating whether to include order detail in the results.
|
|
28847
|
+
*/
|
|
28848
|
+
includeOrders?: boolean;
|
|
28847
28849
|
/**
|
|
28848
28850
|
* Gets or sets a value indicating whether the scheduled session has availability.
|
|
28849
28851
|
*/
|
|
@@ -38004,7 +38006,489 @@ declare class UsersService {
|
|
|
38004
38006
|
* Gets or sets the sort order direction.
|
|
38005
38007
|
*/
|
|
38006
38008
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
38007
|
-
}): CancelablePromise<UserPage>;
|
|
38009
|
+
}): CancelablePromise<UserPage>;
|
|
38010
|
+
/**
|
|
38011
|
+
* Deletes the resource.
|
|
38012
|
+
* @returns any Success
|
|
38013
|
+
* @throws ApiError
|
|
38014
|
+
*/
|
|
38015
|
+
deleteById({ id, }: {
|
|
38016
|
+
/**
|
|
38017
|
+
* The <typeparamref name="TObject" /> id.
|
|
38018
|
+
*/
|
|
38019
|
+
id: string;
|
|
38020
|
+
}): CancelablePromise<any>;
|
|
38021
|
+
/**
|
|
38022
|
+
* Gets the resource by its Id.
|
|
38023
|
+
* @returns User Success
|
|
38024
|
+
* @throws ApiError
|
|
38025
|
+
*/
|
|
38026
|
+
getObject({ id, }: {
|
|
38027
|
+
/**
|
|
38028
|
+
* The <typeparamref name="TObject" /> id.
|
|
38029
|
+
*/
|
|
38030
|
+
id: string;
|
|
38031
|
+
}): CancelablePromise<User>;
|
|
38032
|
+
/**
|
|
38033
|
+
* Returns a value indicating whether the resource is deletable.
|
|
38034
|
+
* @returns boolean Success
|
|
38035
|
+
* @throws ApiError
|
|
38036
|
+
*/
|
|
38037
|
+
canDelete({ id, }: {
|
|
38038
|
+
/**
|
|
38039
|
+
* The <typeparamref name="TObject" /> id.
|
|
38040
|
+
*/
|
|
38041
|
+
id: string;
|
|
38042
|
+
}): CancelablePromise<boolean>;
|
|
38043
|
+
/**
|
|
38044
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
38045
|
+
* @returns boolean Success
|
|
38046
|
+
* @throws ApiError
|
|
38047
|
+
*/
|
|
38048
|
+
exists({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38049
|
+
/**
|
|
38050
|
+
* Gets or sets the queryable user ids.
|
|
38051
|
+
*/
|
|
38052
|
+
ids?: Array<string>;
|
|
38053
|
+
/**
|
|
38054
|
+
* Gets or sets the queryable user ids.
|
|
38055
|
+
*/
|
|
38056
|
+
roles?: Array<string>;
|
|
38057
|
+
/**
|
|
38058
|
+
* Gets or sets the users Name for use in a query search.
|
|
38059
|
+
*/
|
|
38060
|
+
name?: string;
|
|
38061
|
+
/**
|
|
38062
|
+
* Gets or sets the users wildcard Name for use in a query search.
|
|
38063
|
+
*/
|
|
38064
|
+
nameLike?: string;
|
|
38065
|
+
/**
|
|
38066
|
+
* Gets or sets the users Email for use in a query search.
|
|
38067
|
+
*/
|
|
38068
|
+
email?: string;
|
|
38069
|
+
/**
|
|
38070
|
+
* Gets or sets the team member invite status for use in a query search.
|
|
38071
|
+
*/
|
|
38072
|
+
inviteStatus?: InviteStatus;
|
|
38073
|
+
/**
|
|
38074
|
+
* Gets or sets the page number for paged queries.
|
|
38075
|
+
*/
|
|
38076
|
+
pageNumber?: number;
|
|
38077
|
+
/**
|
|
38078
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
38079
|
+
*/
|
|
38080
|
+
take?: number;
|
|
38081
|
+
/**
|
|
38082
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
38083
|
+
*/
|
|
38084
|
+
limitListRequests?: boolean;
|
|
38085
|
+
/**
|
|
38086
|
+
* Gets or sets the Tenant Id.
|
|
38087
|
+
*/
|
|
38088
|
+
tenantId?: string;
|
|
38089
|
+
/**
|
|
38090
|
+
* Gets or sets the Modifed By Id.
|
|
38091
|
+
*/
|
|
38092
|
+
modifiedById?: string;
|
|
38093
|
+
/**
|
|
38094
|
+
* Gets or sets the Modifed By Ids.
|
|
38095
|
+
*/
|
|
38096
|
+
modifiedByIds?: Array<string>;
|
|
38097
|
+
/**
|
|
38098
|
+
* Gets or sets the Date Created greater than equal to.
|
|
38099
|
+
*/
|
|
38100
|
+
dateCreatedGte?: string;
|
|
38101
|
+
/**
|
|
38102
|
+
* Gets or sets the Date Created less than equal to.
|
|
38103
|
+
*/
|
|
38104
|
+
dateCreatedLte?: string;
|
|
38105
|
+
/**
|
|
38106
|
+
* Gets or sets the queryable only is live status.
|
|
38107
|
+
*/
|
|
38108
|
+
isLive?: boolean;
|
|
38109
|
+
/**
|
|
38110
|
+
* Gets or sets the sort order direction.
|
|
38111
|
+
*/
|
|
38112
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
38113
|
+
}): CancelablePromise<boolean>;
|
|
38114
|
+
/**
|
|
38115
|
+
* Gets a list of resources unpaged and without references.
|
|
38116
|
+
* @returns User Success
|
|
38117
|
+
* @throws ApiError
|
|
38118
|
+
*/
|
|
38119
|
+
getListWithoutReferences({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38120
|
+
/**
|
|
38121
|
+
* Gets or sets the queryable user ids.
|
|
38122
|
+
*/
|
|
38123
|
+
ids?: Array<string>;
|
|
38124
|
+
/**
|
|
38125
|
+
* Gets or sets the queryable user ids.
|
|
38126
|
+
*/
|
|
38127
|
+
roles?: Array<string>;
|
|
38128
|
+
/**
|
|
38129
|
+
* Gets or sets the users Name for use in a query search.
|
|
38130
|
+
*/
|
|
38131
|
+
name?: string;
|
|
38132
|
+
/**
|
|
38133
|
+
* Gets or sets the users wildcard Name for use in a query search.
|
|
38134
|
+
*/
|
|
38135
|
+
nameLike?: string;
|
|
38136
|
+
/**
|
|
38137
|
+
* Gets or sets the users Email for use in a query search.
|
|
38138
|
+
*/
|
|
38139
|
+
email?: string;
|
|
38140
|
+
/**
|
|
38141
|
+
* Gets or sets the team member invite status for use in a query search.
|
|
38142
|
+
*/
|
|
38143
|
+
inviteStatus?: InviteStatus;
|
|
38144
|
+
/**
|
|
38145
|
+
* Gets or sets the page number for paged queries.
|
|
38146
|
+
*/
|
|
38147
|
+
pageNumber?: number;
|
|
38148
|
+
/**
|
|
38149
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
38150
|
+
*/
|
|
38151
|
+
take?: number;
|
|
38152
|
+
/**
|
|
38153
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
38154
|
+
*/
|
|
38155
|
+
limitListRequests?: boolean;
|
|
38156
|
+
/**
|
|
38157
|
+
* Gets or sets the Tenant Id.
|
|
38158
|
+
*/
|
|
38159
|
+
tenantId?: string;
|
|
38160
|
+
/**
|
|
38161
|
+
* Gets or sets the Modifed By Id.
|
|
38162
|
+
*/
|
|
38163
|
+
modifiedById?: string;
|
|
38164
|
+
/**
|
|
38165
|
+
* Gets or sets the Modifed By Ids.
|
|
38166
|
+
*/
|
|
38167
|
+
modifiedByIds?: Array<string>;
|
|
38168
|
+
/**
|
|
38169
|
+
* Gets or sets the Date Created greater than equal to.
|
|
38170
|
+
*/
|
|
38171
|
+
dateCreatedGte?: string;
|
|
38172
|
+
/**
|
|
38173
|
+
* Gets or sets the Date Created less than equal to.
|
|
38174
|
+
*/
|
|
38175
|
+
dateCreatedLte?: string;
|
|
38176
|
+
/**
|
|
38177
|
+
* Gets or sets the queryable only is live status.
|
|
38178
|
+
*/
|
|
38179
|
+
isLive?: boolean;
|
|
38180
|
+
/**
|
|
38181
|
+
* Gets or sets the sort order direction.
|
|
38182
|
+
*/
|
|
38183
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
38184
|
+
}): CancelablePromise<Array<User>>;
|
|
38185
|
+
/**
|
|
38186
|
+
* Gets a list of resources.
|
|
38187
|
+
* @returns User Success
|
|
38188
|
+
* @throws ApiError
|
|
38189
|
+
*/
|
|
38190
|
+
getListIdName({ ids, roles, name, nameLike, email, inviteStatus, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38191
|
+
/**
|
|
38192
|
+
* Gets or sets the queryable user ids.
|
|
38193
|
+
*/
|
|
38194
|
+
ids?: Array<string>;
|
|
38195
|
+
/**
|
|
38196
|
+
* Gets or sets the queryable user ids.
|
|
38197
|
+
*/
|
|
38198
|
+
roles?: Array<string>;
|
|
38199
|
+
/**
|
|
38200
|
+
* Gets or sets the users Name for use in a query search.
|
|
38201
|
+
*/
|
|
38202
|
+
name?: string;
|
|
38203
|
+
/**
|
|
38204
|
+
* Gets or sets the users wildcard Name for use in a query search.
|
|
38205
|
+
*/
|
|
38206
|
+
nameLike?: string;
|
|
38207
|
+
/**
|
|
38208
|
+
* Gets or sets the users Email for use in a query search.
|
|
38209
|
+
*/
|
|
38210
|
+
email?: string;
|
|
38211
|
+
/**
|
|
38212
|
+
* Gets or sets the team member invite status for use in a query search.
|
|
38213
|
+
*/
|
|
38214
|
+
inviteStatus?: InviteStatus;
|
|
38215
|
+
/**
|
|
38216
|
+
* Gets or sets the page number for paged queries.
|
|
38217
|
+
*/
|
|
38218
|
+
pageNumber?: number;
|
|
38219
|
+
/**
|
|
38220
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
38221
|
+
*/
|
|
38222
|
+
take?: number;
|
|
38223
|
+
/**
|
|
38224
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
38225
|
+
*/
|
|
38226
|
+
limitListRequests?: boolean;
|
|
38227
|
+
/**
|
|
38228
|
+
* Gets or sets the Tenant Id.
|
|
38229
|
+
*/
|
|
38230
|
+
tenantId?: string;
|
|
38231
|
+
/**
|
|
38232
|
+
* Gets or sets the Modifed By Id.
|
|
38233
|
+
*/
|
|
38234
|
+
modifiedById?: string;
|
|
38235
|
+
/**
|
|
38236
|
+
* Gets or sets the Modifed By Ids.
|
|
38237
|
+
*/
|
|
38238
|
+
modifiedByIds?: Array<string>;
|
|
38239
|
+
/**
|
|
38240
|
+
* Gets or sets the Date Created greater than equal to.
|
|
38241
|
+
*/
|
|
38242
|
+
dateCreatedGte?: string;
|
|
38243
|
+
/**
|
|
38244
|
+
* Gets or sets the Date Created less than equal to.
|
|
38245
|
+
*/
|
|
38246
|
+
dateCreatedLte?: string;
|
|
38247
|
+
/**
|
|
38248
|
+
* Gets or sets the queryable only is live status.
|
|
38249
|
+
*/
|
|
38250
|
+
isLive?: boolean;
|
|
38251
|
+
/**
|
|
38252
|
+
* Gets or sets the sort order direction.
|
|
38253
|
+
*/
|
|
38254
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
38255
|
+
}): CancelablePromise<Array<User>>;
|
|
38256
|
+
}
|
|
38257
|
+
|
|
38258
|
+
/**
|
|
38259
|
+
* Represents a relationship between a venue and a user.
|
|
38260
|
+
*/
|
|
38261
|
+
type VenueManager = {
|
|
38262
|
+
/**
|
|
38263
|
+
* Gets or sets the entities Id.
|
|
38264
|
+
*/
|
|
38265
|
+
id?: string;
|
|
38266
|
+
/**
|
|
38267
|
+
* Gets or sets the tenant Id.
|
|
38268
|
+
*/
|
|
38269
|
+
tenantId: string;
|
|
38270
|
+
/**
|
|
38271
|
+
* Gets or sets the created date of this entity.
|
|
38272
|
+
*/
|
|
38273
|
+
dateCreated: string;
|
|
38274
|
+
/**
|
|
38275
|
+
* Gets or sets the last modified date of this entity.
|
|
38276
|
+
*/
|
|
38277
|
+
dateModified: string;
|
|
38278
|
+
/**
|
|
38279
|
+
* Gets or sets the modified by Id.
|
|
38280
|
+
*/
|
|
38281
|
+
modifiedById?: string | null;
|
|
38282
|
+
/**
|
|
38283
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
38284
|
+
*/
|
|
38285
|
+
isLive: boolean;
|
|
38286
|
+
/**
|
|
38287
|
+
* Gets or sets the user id.
|
|
38288
|
+
*/
|
|
38289
|
+
userId?: string | null;
|
|
38290
|
+
/**
|
|
38291
|
+
* Gets or sets the venue id.
|
|
38292
|
+
*/
|
|
38293
|
+
venueId?: string | null;
|
|
38294
|
+
};
|
|
38295
|
+
|
|
38296
|
+
type VenueManagerPage = {
|
|
38297
|
+
pagination: Pagination;
|
|
38298
|
+
readonly items: Array<VenueManager>;
|
|
38299
|
+
};
|
|
38300
|
+
|
|
38301
|
+
/**
|
|
38302
|
+
* Post model for venue manager updates.
|
|
38303
|
+
*/
|
|
38304
|
+
type VenueManagerPatch = {
|
|
38305
|
+
/**
|
|
38306
|
+
* Gets or sets the tenant Id.
|
|
38307
|
+
*/
|
|
38308
|
+
tenantId: string;
|
|
38309
|
+
/**
|
|
38310
|
+
* Gets or sets the Id.
|
|
38311
|
+
*/
|
|
38312
|
+
id: string;
|
|
38313
|
+
/**
|
|
38314
|
+
* Gets or sets the user id.
|
|
38315
|
+
*/
|
|
38316
|
+
userId?: string | null;
|
|
38317
|
+
/**
|
|
38318
|
+
* Gets or sets the venue id.
|
|
38319
|
+
*/
|
|
38320
|
+
venueId?: string | null;
|
|
38321
|
+
};
|
|
38322
|
+
|
|
38323
|
+
/**
|
|
38324
|
+
* Post model for venue manager inserts.
|
|
38325
|
+
*/
|
|
38326
|
+
type VenueManagerPost = {
|
|
38327
|
+
/**
|
|
38328
|
+
* Gets or sets the tenant Id.
|
|
38329
|
+
*/
|
|
38330
|
+
tenantId: string;
|
|
38331
|
+
/**
|
|
38332
|
+
* Gets or sets the user id.
|
|
38333
|
+
*/
|
|
38334
|
+
userId?: string | null;
|
|
38335
|
+
/**
|
|
38336
|
+
* Gets or sets the venue id.
|
|
38337
|
+
*/
|
|
38338
|
+
venueId?: string | null;
|
|
38339
|
+
};
|
|
38340
|
+
|
|
38341
|
+
declare class VenueManagersService {
|
|
38342
|
+
readonly httpRequest: BaseHttpRequest;
|
|
38343
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
38344
|
+
/**
|
|
38345
|
+
* Updates the assigned venues for the user />.
|
|
38346
|
+
* @returns any Success
|
|
38347
|
+
* @throws ApiError
|
|
38348
|
+
*/
|
|
38349
|
+
updateUserVenueAssignments({ userId, requestBody, }: {
|
|
38350
|
+
/**
|
|
38351
|
+
* The user Id.
|
|
38352
|
+
*/
|
|
38353
|
+
userId: string;
|
|
38354
|
+
/**
|
|
38355
|
+
* The post model.
|
|
38356
|
+
*/
|
|
38357
|
+
requestBody?: Array<VenueManagerPost>;
|
|
38358
|
+
}): CancelablePromise<any>;
|
|
38359
|
+
/**
|
|
38360
|
+
* Updates the assigned users for the venue />.
|
|
38361
|
+
* @returns any Success
|
|
38362
|
+
* @throws ApiError
|
|
38363
|
+
*/
|
|
38364
|
+
updateVenueUserAssignments({ venueId, requestBody, }: {
|
|
38365
|
+
/**
|
|
38366
|
+
* The venue Id.
|
|
38367
|
+
*/
|
|
38368
|
+
venueId: string;
|
|
38369
|
+
/**
|
|
38370
|
+
* The post model.
|
|
38371
|
+
*/
|
|
38372
|
+
requestBody?: Array<VenueManagerPost>;
|
|
38373
|
+
}): CancelablePromise<any>;
|
|
38374
|
+
/**
|
|
38375
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
38376
|
+
* @returns VenueManager Success
|
|
38377
|
+
* @throws ApiError
|
|
38378
|
+
*/
|
|
38379
|
+
post({ requestBody, }: {
|
|
38380
|
+
/**
|
|
38381
|
+
* The <typeparamref name="TObject" /> model.
|
|
38382
|
+
*/
|
|
38383
|
+
requestBody?: VenueManagerPost;
|
|
38384
|
+
}): CancelablePromise<VenueManager>;
|
|
38385
|
+
/**
|
|
38386
|
+
* Patches the resource.
|
|
38387
|
+
* @returns VenueManager Success
|
|
38388
|
+
* @throws ApiError
|
|
38389
|
+
*/
|
|
38390
|
+
patch({ requestBody, }: {
|
|
38391
|
+
/**
|
|
38392
|
+
* The <typeparamref name="TObject" /> model.
|
|
38393
|
+
*/
|
|
38394
|
+
requestBody?: VenueManagerPatch;
|
|
38395
|
+
}): CancelablePromise<VenueManager>;
|
|
38396
|
+
/**
|
|
38397
|
+
* Inserts a list of resources.
|
|
38398
|
+
* @returns VenueManager Success
|
|
38399
|
+
* @throws ApiError
|
|
38400
|
+
*/
|
|
38401
|
+
postList({ requestBody, }: {
|
|
38402
|
+
/**
|
|
38403
|
+
* The list of <typeparamref name="TObject" />.
|
|
38404
|
+
*/
|
|
38405
|
+
requestBody?: Array<VenueManagerPost>;
|
|
38406
|
+
}): CancelablePromise<Array<VenueManager>>;
|
|
38407
|
+
/**
|
|
38408
|
+
* Patches the resource.
|
|
38409
|
+
* @returns VenueManager Success
|
|
38410
|
+
* @throws ApiError
|
|
38411
|
+
*/
|
|
38412
|
+
patchWithReferences({ requestBody, }: {
|
|
38413
|
+
/**
|
|
38414
|
+
* The <typeparamref name="TObject" /> model.
|
|
38415
|
+
*/
|
|
38416
|
+
requestBody?: VenueManagerPatch;
|
|
38417
|
+
}): CancelablePromise<VenueManager>;
|
|
38418
|
+
/**
|
|
38419
|
+
* Deletes the resource.
|
|
38420
|
+
* @returns any Success
|
|
38421
|
+
* @throws ApiError
|
|
38422
|
+
*/
|
|
38423
|
+
deleteByObject({ requestBody, }: {
|
|
38424
|
+
/**
|
|
38425
|
+
* The <typeparamref name="TObject" /> model.
|
|
38426
|
+
*/
|
|
38427
|
+
requestBody?: VenueManager;
|
|
38428
|
+
}): CancelablePromise<any>;
|
|
38429
|
+
/**
|
|
38430
|
+
* Gets a list of resources.
|
|
38431
|
+
* @returns VenueManagerPage Success
|
|
38432
|
+
* @throws ApiError
|
|
38433
|
+
*/
|
|
38434
|
+
getPage({ venueId, venueIds, userId, userIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38435
|
+
/**
|
|
38436
|
+
* Gets or sets the queryable venue id.
|
|
38437
|
+
*/
|
|
38438
|
+
venueId?: string;
|
|
38439
|
+
/**
|
|
38440
|
+
* Gets or sets the queryable venueids.
|
|
38441
|
+
*/
|
|
38442
|
+
venueIds?: Array<string>;
|
|
38443
|
+
/**
|
|
38444
|
+
* Gets or sets the queryable user id.
|
|
38445
|
+
*/
|
|
38446
|
+
userId?: string;
|
|
38447
|
+
/**
|
|
38448
|
+
* Gets or sets the queryable user ids.
|
|
38449
|
+
*/
|
|
38450
|
+
userIds?: Array<string>;
|
|
38451
|
+
/**
|
|
38452
|
+
* Gets or sets the page number for paged queries.
|
|
38453
|
+
*/
|
|
38454
|
+
pageNumber?: number;
|
|
38455
|
+
/**
|
|
38456
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
38457
|
+
*/
|
|
38458
|
+
take?: number;
|
|
38459
|
+
/**
|
|
38460
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
38461
|
+
*/
|
|
38462
|
+
limitListRequests?: boolean;
|
|
38463
|
+
/**
|
|
38464
|
+
* Gets or sets the Tenant Id.
|
|
38465
|
+
*/
|
|
38466
|
+
tenantId?: string;
|
|
38467
|
+
/**
|
|
38468
|
+
* Gets or sets the Modifed By Id.
|
|
38469
|
+
*/
|
|
38470
|
+
modifiedById?: string;
|
|
38471
|
+
/**
|
|
38472
|
+
* Gets or sets the Modifed By Ids.
|
|
38473
|
+
*/
|
|
38474
|
+
modifiedByIds?: Array<string>;
|
|
38475
|
+
/**
|
|
38476
|
+
* Gets or sets the Date Created greater than equal to.
|
|
38477
|
+
*/
|
|
38478
|
+
dateCreatedGte?: string;
|
|
38479
|
+
/**
|
|
38480
|
+
* Gets or sets the Date Created less than equal to.
|
|
38481
|
+
*/
|
|
38482
|
+
dateCreatedLte?: string;
|
|
38483
|
+
/**
|
|
38484
|
+
* Gets or sets the queryable only is live status.
|
|
38485
|
+
*/
|
|
38486
|
+
isLive?: boolean;
|
|
38487
|
+
/**
|
|
38488
|
+
* Gets or sets the sort order direction.
|
|
38489
|
+
*/
|
|
38490
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
38491
|
+
}): CancelablePromise<VenueManagerPage>;
|
|
38008
38492
|
/**
|
|
38009
38493
|
* Deletes the resource.
|
|
38010
38494
|
* @returns any Success
|
|
@@ -38018,7 +38502,7 @@ declare class UsersService {
|
|
|
38018
38502
|
}): CancelablePromise<any>;
|
|
38019
38503
|
/**
|
|
38020
38504
|
* Gets the resource by its Id.
|
|
38021
|
-
* @returns
|
|
38505
|
+
* @returns VenueManager Success
|
|
38022
38506
|
* @throws ApiError
|
|
38023
38507
|
*/
|
|
38024
38508
|
getObject({ id, }: {
|
|
@@ -38026,7 +38510,7 @@ declare class UsersService {
|
|
|
38026
38510
|
* The <typeparamref name="TObject" /> id.
|
|
38027
38511
|
*/
|
|
38028
38512
|
id: string;
|
|
38029
|
-
}): CancelablePromise<
|
|
38513
|
+
}): CancelablePromise<VenueManager>;
|
|
38030
38514
|
/**
|
|
38031
38515
|
* Returns a value indicating whether the resource is deletable.
|
|
38032
38516
|
* @returns boolean Success
|
|
@@ -38043,31 +38527,23 @@ declare class UsersService {
|
|
|
38043
38527
|
* @returns boolean Success
|
|
38044
38528
|
* @throws ApiError
|
|
38045
38529
|
*/
|
|
38046
|
-
exists({
|
|
38047
|
-
/**
|
|
38048
|
-
* Gets or sets the queryable user ids.
|
|
38049
|
-
*/
|
|
38050
|
-
ids?: Array<string>;
|
|
38051
|
-
/**
|
|
38052
|
-
* Gets or sets the queryable user ids.
|
|
38053
|
-
*/
|
|
38054
|
-
roles?: Array<string>;
|
|
38530
|
+
exists({ venueId, venueIds, userId, userIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38055
38531
|
/**
|
|
38056
|
-
* Gets or sets the
|
|
38532
|
+
* Gets or sets the queryable venue id.
|
|
38057
38533
|
*/
|
|
38058
|
-
|
|
38534
|
+
venueId?: string;
|
|
38059
38535
|
/**
|
|
38060
|
-
* Gets or sets the
|
|
38536
|
+
* Gets or sets the queryable venueids.
|
|
38061
38537
|
*/
|
|
38062
|
-
|
|
38538
|
+
venueIds?: Array<string>;
|
|
38063
38539
|
/**
|
|
38064
|
-
* Gets or sets the
|
|
38540
|
+
* Gets or sets the queryable user id.
|
|
38065
38541
|
*/
|
|
38066
|
-
|
|
38542
|
+
userId?: string;
|
|
38067
38543
|
/**
|
|
38068
|
-
* Gets or sets the
|
|
38544
|
+
* Gets or sets the queryable user ids.
|
|
38069
38545
|
*/
|
|
38070
|
-
|
|
38546
|
+
userIds?: Array<string>;
|
|
38071
38547
|
/**
|
|
38072
38548
|
* Gets or sets the page number for paged queries.
|
|
38073
38549
|
*/
|
|
@@ -38111,34 +38587,26 @@ declare class UsersService {
|
|
|
38111
38587
|
}): CancelablePromise<boolean>;
|
|
38112
38588
|
/**
|
|
38113
38589
|
* Gets a list of resources unpaged and without references.
|
|
38114
|
-
* @returns
|
|
38590
|
+
* @returns VenueManager Success
|
|
38115
38591
|
* @throws ApiError
|
|
38116
38592
|
*/
|
|
38117
|
-
getListWithoutReferences({
|
|
38118
|
-
/**
|
|
38119
|
-
* Gets or sets the queryable user ids.
|
|
38120
|
-
*/
|
|
38121
|
-
ids?: Array<string>;
|
|
38122
|
-
/**
|
|
38123
|
-
* Gets or sets the queryable user ids.
|
|
38124
|
-
*/
|
|
38125
|
-
roles?: Array<string>;
|
|
38593
|
+
getListWithoutReferences({ venueId, venueIds, userId, userIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38126
38594
|
/**
|
|
38127
|
-
* Gets or sets the
|
|
38595
|
+
* Gets or sets the queryable venue id.
|
|
38128
38596
|
*/
|
|
38129
|
-
|
|
38597
|
+
venueId?: string;
|
|
38130
38598
|
/**
|
|
38131
|
-
* Gets or sets the
|
|
38599
|
+
* Gets or sets the queryable venueids.
|
|
38132
38600
|
*/
|
|
38133
|
-
|
|
38601
|
+
venueIds?: Array<string>;
|
|
38134
38602
|
/**
|
|
38135
|
-
* Gets or sets the
|
|
38603
|
+
* Gets or sets the queryable user id.
|
|
38136
38604
|
*/
|
|
38137
|
-
|
|
38605
|
+
userId?: string;
|
|
38138
38606
|
/**
|
|
38139
|
-
* Gets or sets the
|
|
38607
|
+
* Gets or sets the queryable user ids.
|
|
38140
38608
|
*/
|
|
38141
|
-
|
|
38609
|
+
userIds?: Array<string>;
|
|
38142
38610
|
/**
|
|
38143
38611
|
* Gets or sets the page number for paged queries.
|
|
38144
38612
|
*/
|
|
@@ -38179,37 +38647,29 @@ declare class UsersService {
|
|
|
38179
38647
|
* Gets or sets the sort order direction.
|
|
38180
38648
|
*/
|
|
38181
38649
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
38182
|
-
}): CancelablePromise<Array<
|
|
38650
|
+
}): CancelablePromise<Array<VenueManager>>;
|
|
38183
38651
|
/**
|
|
38184
38652
|
* Gets a list of resources.
|
|
38185
|
-
* @returns
|
|
38653
|
+
* @returns VenueManager Success
|
|
38186
38654
|
* @throws ApiError
|
|
38187
38655
|
*/
|
|
38188
|
-
getListIdName({
|
|
38189
|
-
/**
|
|
38190
|
-
* Gets or sets the queryable user ids.
|
|
38191
|
-
*/
|
|
38192
|
-
ids?: Array<string>;
|
|
38193
|
-
/**
|
|
38194
|
-
* Gets or sets the queryable user ids.
|
|
38195
|
-
*/
|
|
38196
|
-
roles?: Array<string>;
|
|
38656
|
+
getListIdName({ venueId, venueIds, userId, userIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38197
38657
|
/**
|
|
38198
|
-
* Gets or sets the
|
|
38658
|
+
* Gets or sets the queryable venue id.
|
|
38199
38659
|
*/
|
|
38200
|
-
|
|
38660
|
+
venueId?: string;
|
|
38201
38661
|
/**
|
|
38202
|
-
* Gets or sets the
|
|
38662
|
+
* Gets or sets the queryable venueids.
|
|
38203
38663
|
*/
|
|
38204
|
-
|
|
38664
|
+
venueIds?: Array<string>;
|
|
38205
38665
|
/**
|
|
38206
|
-
* Gets or sets the
|
|
38666
|
+
* Gets or sets the queryable user id.
|
|
38207
38667
|
*/
|
|
38208
|
-
|
|
38668
|
+
userId?: string;
|
|
38209
38669
|
/**
|
|
38210
|
-
* Gets or sets the
|
|
38670
|
+
* Gets or sets the queryable user ids.
|
|
38211
38671
|
*/
|
|
38212
|
-
|
|
38672
|
+
userIds?: Array<string>;
|
|
38213
38673
|
/**
|
|
38214
38674
|
* Gets or sets the page number for paged queries.
|
|
38215
38675
|
*/
|
|
@@ -38250,13 +38710,13 @@ declare class UsersService {
|
|
|
38250
38710
|
* Gets or sets the sort order direction.
|
|
38251
38711
|
*/
|
|
38252
38712
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
38253
|
-
}): CancelablePromise<Array<
|
|
38713
|
+
}): CancelablePromise<Array<VenueManager>>;
|
|
38254
38714
|
}
|
|
38255
38715
|
|
|
38256
38716
|
/**
|
|
38257
|
-
* Represents a
|
|
38717
|
+
* Represents a venue performance row within the Reach application.
|
|
38258
38718
|
*/
|
|
38259
|
-
type
|
|
38719
|
+
type VenuePerformance = {
|
|
38260
38720
|
/**
|
|
38261
38721
|
* Gets or sets the entities Id.
|
|
38262
38722
|
*/
|
|
@@ -38282,24 +38742,48 @@ type VenueManager = {
|
|
|
38282
38742
|
*/
|
|
38283
38743
|
isLive: boolean;
|
|
38284
38744
|
/**
|
|
38285
|
-
* Gets or sets the
|
|
38745
|
+
* Gets or sets the venue name.
|
|
38286
38746
|
*/
|
|
38287
|
-
|
|
38747
|
+
venueName?: string | null;
|
|
38288
38748
|
/**
|
|
38289
|
-
* Gets or sets the
|
|
38749
|
+
* Gets or sets the capacity.
|
|
38290
38750
|
*/
|
|
38291
|
-
|
|
38751
|
+
totalCapacity?: number;
|
|
38752
|
+
/**
|
|
38753
|
+
* Gets or sets the remaining uses.
|
|
38754
|
+
*/
|
|
38755
|
+
usedCapacity?: number;
|
|
38756
|
+
/**
|
|
38757
|
+
* Gets or sets the remaining uses.
|
|
38758
|
+
*/
|
|
38759
|
+
unusedCapacity?: number;
|
|
38760
|
+
/**
|
|
38761
|
+
* Gets or sets the utilisation.
|
|
38762
|
+
*/
|
|
38763
|
+
utilisation?: number;
|
|
38764
|
+
/**
|
|
38765
|
+
* Gets or sets the total orders.
|
|
38766
|
+
*/
|
|
38767
|
+
totalOrders?: number;
|
|
38768
|
+
/**
|
|
38769
|
+
* Gets or sets the total revenue.
|
|
38770
|
+
*/
|
|
38771
|
+
totalRevenue?: number;
|
|
38772
|
+
/**
|
|
38773
|
+
* Gets or sets the revenue potential.
|
|
38774
|
+
*/
|
|
38775
|
+
revenuePotential?: number;
|
|
38292
38776
|
};
|
|
38293
38777
|
|
|
38294
|
-
type
|
|
38778
|
+
type VenuePerformancePage = {
|
|
38295
38779
|
pagination: Pagination;
|
|
38296
|
-
readonly items: Array<
|
|
38780
|
+
readonly items: Array<VenuePerformance>;
|
|
38297
38781
|
};
|
|
38298
38782
|
|
|
38299
38783
|
/**
|
|
38300
|
-
* Post model for
|
|
38784
|
+
* Post model for Venue Performance updates.
|
|
38301
38785
|
*/
|
|
38302
|
-
type
|
|
38786
|
+
type VenuePerformancePatch = {
|
|
38303
38787
|
/**
|
|
38304
38788
|
* Gets or sets the tenant Id.
|
|
38305
38789
|
*/
|
|
@@ -38308,111 +38792,147 @@ type VenueManagerPatch = {
|
|
|
38308
38792
|
* Gets or sets the Id.
|
|
38309
38793
|
*/
|
|
38310
38794
|
id: string;
|
|
38311
|
-
/**
|
|
38312
|
-
* Gets or sets the user id.
|
|
38313
|
-
*/
|
|
38314
|
-
userId?: string | null;
|
|
38315
|
-
/**
|
|
38316
|
-
* Gets or sets the venue id.
|
|
38317
|
-
*/
|
|
38318
|
-
venueId?: string | null;
|
|
38319
38795
|
};
|
|
38320
38796
|
|
|
38321
38797
|
/**
|
|
38322
|
-
* Post model for
|
|
38798
|
+
* Post model for Venue Performance inserts.
|
|
38323
38799
|
*/
|
|
38324
|
-
type
|
|
38800
|
+
type VenuePerformancePost = {
|
|
38325
38801
|
/**
|
|
38326
38802
|
* Gets or sets the tenant Id.
|
|
38327
38803
|
*/
|
|
38328
38804
|
tenantId: string;
|
|
38329
|
-
/**
|
|
38330
|
-
* Gets or sets the user id.
|
|
38331
|
-
*/
|
|
38332
|
-
userId?: string | null;
|
|
38333
|
-
/**
|
|
38334
|
-
* Gets or sets the venue id.
|
|
38335
|
-
*/
|
|
38336
|
-
venueId?: string | null;
|
|
38337
38805
|
};
|
|
38338
38806
|
|
|
38339
|
-
declare class
|
|
38807
|
+
declare class VenuePerformanceService {
|
|
38340
38808
|
readonly httpRequest: BaseHttpRequest;
|
|
38341
38809
|
constructor(httpRequest: BaseHttpRequest);
|
|
38342
38810
|
/**
|
|
38343
|
-
*
|
|
38811
|
+
* Exports the performance list to a csv format.
|
|
38812
|
+
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
38344
38813
|
* @returns any Success
|
|
38345
38814
|
* @throws ApiError
|
|
38346
38815
|
*/
|
|
38347
|
-
|
|
38816
|
+
exportToCsv({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
38348
38817
|
/**
|
|
38349
|
-
*
|
|
38818
|
+
* Gets or sets the Venue Id.
|
|
38350
38819
|
*/
|
|
38351
|
-
|
|
38820
|
+
venueId?: string;
|
|
38352
38821
|
/**
|
|
38353
|
-
*
|
|
38822
|
+
* Gets or sets the User Id.
|
|
38354
38823
|
*/
|
|
38355
|
-
|
|
38356
|
-
}): CancelablePromise<any>;
|
|
38357
|
-
/**
|
|
38358
|
-
* Updates the assigned users for the venue />.
|
|
38359
|
-
* @returns any Success
|
|
38360
|
-
* @throws ApiError
|
|
38361
|
-
*/
|
|
38362
|
-
updateVenueUserAssignments({ venueId, requestBody, }: {
|
|
38824
|
+
userId?: string;
|
|
38363
38825
|
/**
|
|
38364
|
-
*
|
|
38826
|
+
* Gets or sets the Programme Id.
|
|
38365
38827
|
*/
|
|
38366
|
-
|
|
38828
|
+
programmeId?: string;
|
|
38367
38829
|
/**
|
|
38368
|
-
*
|
|
38830
|
+
* Gets or sets the starting date greater than or equal to.
|
|
38369
38831
|
*/
|
|
38370
|
-
|
|
38832
|
+
startDateGte?: string;
|
|
38833
|
+
/**
|
|
38834
|
+
* Gets or sets the starting date less than or equal to.
|
|
38835
|
+
*/
|
|
38836
|
+
startDateLte?: string;
|
|
38837
|
+
/**
|
|
38838
|
+
* Gets or sets a value indicating whether to include online activities only.
|
|
38839
|
+
*/
|
|
38840
|
+
onlineActivitiesOnly?: boolean;
|
|
38841
|
+
/**
|
|
38842
|
+
* Gets or sets a value indicating whether to include online venues only.
|
|
38843
|
+
*/
|
|
38844
|
+
onlineVenuesOnly?: boolean;
|
|
38845
|
+
/**
|
|
38846
|
+
* Gets or sets the page number for paged queries.
|
|
38847
|
+
*/
|
|
38848
|
+
pageNumber?: number;
|
|
38849
|
+
/**
|
|
38850
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
38851
|
+
*/
|
|
38852
|
+
take?: number;
|
|
38853
|
+
/**
|
|
38854
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
38855
|
+
*/
|
|
38856
|
+
limitListRequests?: boolean;
|
|
38857
|
+
/**
|
|
38858
|
+
* Gets or sets the Tenant Id.
|
|
38859
|
+
*/
|
|
38860
|
+
tenantId?: string;
|
|
38861
|
+
/**
|
|
38862
|
+
* Gets or sets the Modifed By Id.
|
|
38863
|
+
*/
|
|
38864
|
+
modifiedById?: string;
|
|
38865
|
+
/**
|
|
38866
|
+
* Gets or sets the Modifed By Ids.
|
|
38867
|
+
*/
|
|
38868
|
+
modifiedByIds?: Array<string>;
|
|
38869
|
+
/**
|
|
38870
|
+
* Gets or sets the Date Created greater than equal to.
|
|
38871
|
+
*/
|
|
38872
|
+
dateCreatedGte?: string;
|
|
38873
|
+
/**
|
|
38874
|
+
* Gets or sets the Date Created less than equal to.
|
|
38875
|
+
*/
|
|
38876
|
+
dateCreatedLte?: string;
|
|
38877
|
+
/**
|
|
38878
|
+
* Gets or sets the queryable only is live status.
|
|
38879
|
+
*/
|
|
38880
|
+
isLive?: boolean;
|
|
38881
|
+
/**
|
|
38882
|
+
* Gets or sets the sort order direction.
|
|
38883
|
+
*/
|
|
38884
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
38885
|
+
formData?: {
|
|
38886
|
+
/**
|
|
38887
|
+
* Gets or sets the auth token.
|
|
38888
|
+
*/
|
|
38889
|
+
Token?: string;
|
|
38890
|
+
};
|
|
38371
38891
|
}): CancelablePromise<any>;
|
|
38372
38892
|
/**
|
|
38373
38893
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
38374
|
-
* @returns
|
|
38894
|
+
* @returns VenuePerformance Success
|
|
38375
38895
|
* @throws ApiError
|
|
38376
38896
|
*/
|
|
38377
38897
|
post({ requestBody, }: {
|
|
38378
38898
|
/**
|
|
38379
38899
|
* The <typeparamref name="TObject" /> model.
|
|
38380
38900
|
*/
|
|
38381
|
-
requestBody?:
|
|
38382
|
-
}): CancelablePromise<
|
|
38901
|
+
requestBody?: VenuePerformancePost;
|
|
38902
|
+
}): CancelablePromise<VenuePerformance>;
|
|
38383
38903
|
/**
|
|
38384
38904
|
* Patches the resource.
|
|
38385
|
-
* @returns
|
|
38905
|
+
* @returns VenuePerformance Success
|
|
38386
38906
|
* @throws ApiError
|
|
38387
38907
|
*/
|
|
38388
38908
|
patch({ requestBody, }: {
|
|
38389
38909
|
/**
|
|
38390
38910
|
* The <typeparamref name="TObject" /> model.
|
|
38391
38911
|
*/
|
|
38392
|
-
requestBody?:
|
|
38393
|
-
}): CancelablePromise<
|
|
38912
|
+
requestBody?: VenuePerformancePatch;
|
|
38913
|
+
}): CancelablePromise<VenuePerformance>;
|
|
38394
38914
|
/**
|
|
38395
38915
|
* Inserts a list of resources.
|
|
38396
|
-
* @returns
|
|
38916
|
+
* @returns VenuePerformance Success
|
|
38397
38917
|
* @throws ApiError
|
|
38398
38918
|
*/
|
|
38399
38919
|
postList({ requestBody, }: {
|
|
38400
38920
|
/**
|
|
38401
38921
|
* The list of <typeparamref name="TObject" />.
|
|
38402
38922
|
*/
|
|
38403
|
-
requestBody?: Array<
|
|
38404
|
-
}): CancelablePromise<Array<
|
|
38923
|
+
requestBody?: Array<VenuePerformancePost>;
|
|
38924
|
+
}): CancelablePromise<Array<VenuePerformance>>;
|
|
38405
38925
|
/**
|
|
38406
38926
|
* Patches the resource.
|
|
38407
|
-
* @returns
|
|
38927
|
+
* @returns VenuePerformance Success
|
|
38408
38928
|
* @throws ApiError
|
|
38409
38929
|
*/
|
|
38410
38930
|
patchWithReferences({ requestBody, }: {
|
|
38411
38931
|
/**
|
|
38412
38932
|
* The <typeparamref name="TObject" /> model.
|
|
38413
38933
|
*/
|
|
38414
|
-
requestBody?:
|
|
38415
|
-
}): CancelablePromise<
|
|
38934
|
+
requestBody?: VenuePerformancePatch;
|
|
38935
|
+
}): CancelablePromise<VenuePerformance>;
|
|
38416
38936
|
/**
|
|
38417
38937
|
* Deletes the resource.
|
|
38418
38938
|
* @returns any Success
|
|
@@ -38422,30 +38942,42 @@ declare class VenueManagersService {
|
|
|
38422
38942
|
/**
|
|
38423
38943
|
* The <typeparamref name="TObject" /> model.
|
|
38424
38944
|
*/
|
|
38425
|
-
requestBody?:
|
|
38945
|
+
requestBody?: VenuePerformance;
|
|
38426
38946
|
}): CancelablePromise<any>;
|
|
38427
38947
|
/**
|
|
38428
38948
|
* Gets a list of resources.
|
|
38429
|
-
* @returns
|
|
38949
|
+
* @returns VenuePerformancePage Success
|
|
38430
38950
|
* @throws ApiError
|
|
38431
38951
|
*/
|
|
38432
|
-
getPage({ venueId,
|
|
38952
|
+
getPage({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38433
38953
|
/**
|
|
38434
|
-
* Gets or sets the
|
|
38954
|
+
* Gets or sets the Venue Id.
|
|
38435
38955
|
*/
|
|
38436
38956
|
venueId?: string;
|
|
38437
38957
|
/**
|
|
38438
|
-
* Gets or sets the
|
|
38958
|
+
* Gets or sets the User Id.
|
|
38439
38959
|
*/
|
|
38440
|
-
|
|
38960
|
+
userId?: string;
|
|
38441
38961
|
/**
|
|
38442
|
-
* Gets or sets the
|
|
38962
|
+
* Gets or sets the Programme Id.
|
|
38443
38963
|
*/
|
|
38444
|
-
|
|
38964
|
+
programmeId?: string;
|
|
38445
38965
|
/**
|
|
38446
|
-
* Gets or sets the
|
|
38966
|
+
* Gets or sets the starting date greater than or equal to.
|
|
38447
38967
|
*/
|
|
38448
|
-
|
|
38968
|
+
startDateGte?: string;
|
|
38969
|
+
/**
|
|
38970
|
+
* Gets or sets the starting date less than or equal to.
|
|
38971
|
+
*/
|
|
38972
|
+
startDateLte?: string;
|
|
38973
|
+
/**
|
|
38974
|
+
* Gets or sets a value indicating whether to include online activities only.
|
|
38975
|
+
*/
|
|
38976
|
+
onlineActivitiesOnly?: boolean;
|
|
38977
|
+
/**
|
|
38978
|
+
* Gets or sets a value indicating whether to include online venues only.
|
|
38979
|
+
*/
|
|
38980
|
+
onlineVenuesOnly?: boolean;
|
|
38449
38981
|
/**
|
|
38450
38982
|
* Gets or sets the page number for paged queries.
|
|
38451
38983
|
*/
|
|
@@ -38486,7 +39018,7 @@ declare class VenueManagersService {
|
|
|
38486
39018
|
* Gets or sets the sort order direction.
|
|
38487
39019
|
*/
|
|
38488
39020
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
38489
|
-
}): CancelablePromise<
|
|
39021
|
+
}): CancelablePromise<VenuePerformancePage>;
|
|
38490
39022
|
/**
|
|
38491
39023
|
* Deletes the resource.
|
|
38492
39024
|
* @returns any Success
|
|
@@ -38500,7 +39032,7 @@ declare class VenueManagersService {
|
|
|
38500
39032
|
}): CancelablePromise<any>;
|
|
38501
39033
|
/**
|
|
38502
39034
|
* Gets the resource by its Id.
|
|
38503
|
-
* @returns
|
|
39035
|
+
* @returns VenuePerformance Success
|
|
38504
39036
|
* @throws ApiError
|
|
38505
39037
|
*/
|
|
38506
39038
|
getObject({ id, }: {
|
|
@@ -38508,7 +39040,7 @@ declare class VenueManagersService {
|
|
|
38508
39040
|
* The <typeparamref name="TObject" /> id.
|
|
38509
39041
|
*/
|
|
38510
39042
|
id: string;
|
|
38511
|
-
}): CancelablePromise<
|
|
39043
|
+
}): CancelablePromise<VenuePerformance>;
|
|
38512
39044
|
/**
|
|
38513
39045
|
* Returns a value indicating whether the resource is deletable.
|
|
38514
39046
|
* @returns boolean Success
|
|
@@ -38525,23 +39057,35 @@ declare class VenueManagersService {
|
|
|
38525
39057
|
* @returns boolean Success
|
|
38526
39058
|
* @throws ApiError
|
|
38527
39059
|
*/
|
|
38528
|
-
exists({ venueId,
|
|
39060
|
+
exists({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38529
39061
|
/**
|
|
38530
|
-
* Gets or sets the
|
|
39062
|
+
* Gets or sets the Venue Id.
|
|
38531
39063
|
*/
|
|
38532
39064
|
venueId?: string;
|
|
38533
39065
|
/**
|
|
38534
|
-
* Gets or sets the
|
|
39066
|
+
* Gets or sets the User Id.
|
|
38535
39067
|
*/
|
|
38536
|
-
|
|
39068
|
+
userId?: string;
|
|
38537
39069
|
/**
|
|
38538
|
-
* Gets or sets the
|
|
39070
|
+
* Gets or sets the Programme Id.
|
|
38539
39071
|
*/
|
|
38540
|
-
|
|
39072
|
+
programmeId?: string;
|
|
38541
39073
|
/**
|
|
38542
|
-
* Gets or sets the
|
|
39074
|
+
* Gets or sets the starting date greater than or equal to.
|
|
38543
39075
|
*/
|
|
38544
|
-
|
|
39076
|
+
startDateGte?: string;
|
|
39077
|
+
/**
|
|
39078
|
+
* Gets or sets the starting date less than or equal to.
|
|
39079
|
+
*/
|
|
39080
|
+
startDateLte?: string;
|
|
39081
|
+
/**
|
|
39082
|
+
* Gets or sets a value indicating whether to include online activities only.
|
|
39083
|
+
*/
|
|
39084
|
+
onlineActivitiesOnly?: boolean;
|
|
39085
|
+
/**
|
|
39086
|
+
* Gets or sets a value indicating whether to include online venues only.
|
|
39087
|
+
*/
|
|
39088
|
+
onlineVenuesOnly?: boolean;
|
|
38545
39089
|
/**
|
|
38546
39090
|
* Gets or sets the page number for paged queries.
|
|
38547
39091
|
*/
|
|
@@ -38585,26 +39129,38 @@ declare class VenueManagersService {
|
|
|
38585
39129
|
}): CancelablePromise<boolean>;
|
|
38586
39130
|
/**
|
|
38587
39131
|
* Gets a list of resources unpaged and without references.
|
|
38588
|
-
* @returns
|
|
39132
|
+
* @returns VenuePerformance Success
|
|
38589
39133
|
* @throws ApiError
|
|
38590
39134
|
*/
|
|
38591
|
-
getListWithoutReferences({ venueId,
|
|
39135
|
+
getListWithoutReferences({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38592
39136
|
/**
|
|
38593
|
-
* Gets or sets the
|
|
39137
|
+
* Gets or sets the Venue Id.
|
|
38594
39138
|
*/
|
|
38595
39139
|
venueId?: string;
|
|
38596
39140
|
/**
|
|
38597
|
-
* Gets or sets the
|
|
39141
|
+
* Gets or sets the User Id.
|
|
38598
39142
|
*/
|
|
38599
|
-
|
|
39143
|
+
userId?: string;
|
|
38600
39144
|
/**
|
|
38601
|
-
* Gets or sets the
|
|
39145
|
+
* Gets or sets the Programme Id.
|
|
38602
39146
|
*/
|
|
38603
|
-
|
|
39147
|
+
programmeId?: string;
|
|
38604
39148
|
/**
|
|
38605
|
-
* Gets or sets the
|
|
39149
|
+
* Gets or sets the starting date greater than or equal to.
|
|
38606
39150
|
*/
|
|
38607
|
-
|
|
39151
|
+
startDateGte?: string;
|
|
39152
|
+
/**
|
|
39153
|
+
* Gets or sets the starting date less than or equal to.
|
|
39154
|
+
*/
|
|
39155
|
+
startDateLte?: string;
|
|
39156
|
+
/**
|
|
39157
|
+
* Gets or sets a value indicating whether to include online activities only.
|
|
39158
|
+
*/
|
|
39159
|
+
onlineActivitiesOnly?: boolean;
|
|
39160
|
+
/**
|
|
39161
|
+
* Gets or sets a value indicating whether to include online venues only.
|
|
39162
|
+
*/
|
|
39163
|
+
onlineVenuesOnly?: boolean;
|
|
38608
39164
|
/**
|
|
38609
39165
|
* Gets or sets the page number for paged queries.
|
|
38610
39166
|
*/
|
|
@@ -38645,29 +39201,41 @@ declare class VenueManagersService {
|
|
|
38645
39201
|
* Gets or sets the sort order direction.
|
|
38646
39202
|
*/
|
|
38647
39203
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
38648
|
-
}): CancelablePromise<Array<
|
|
39204
|
+
}): CancelablePromise<Array<VenuePerformance>>;
|
|
38649
39205
|
/**
|
|
38650
39206
|
* Gets a list of resources.
|
|
38651
|
-
* @returns
|
|
39207
|
+
* @returns VenuePerformance Success
|
|
38652
39208
|
* @throws ApiError
|
|
38653
39209
|
*/
|
|
38654
|
-
getListIdName({ venueId,
|
|
39210
|
+
getListIdName({ venueId, userId, programmeId, startDateGte, startDateLte, onlineActivitiesOnly, onlineVenuesOnly, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
38655
39211
|
/**
|
|
38656
|
-
* Gets or sets the
|
|
39212
|
+
* Gets or sets the Venue Id.
|
|
38657
39213
|
*/
|
|
38658
39214
|
venueId?: string;
|
|
38659
39215
|
/**
|
|
38660
|
-
* Gets or sets the
|
|
39216
|
+
* Gets or sets the User Id.
|
|
38661
39217
|
*/
|
|
38662
|
-
|
|
39218
|
+
userId?: string;
|
|
38663
39219
|
/**
|
|
38664
|
-
* Gets or sets the
|
|
39220
|
+
* Gets or sets the Programme Id.
|
|
38665
39221
|
*/
|
|
38666
|
-
|
|
39222
|
+
programmeId?: string;
|
|
38667
39223
|
/**
|
|
38668
|
-
* Gets or sets the
|
|
39224
|
+
* Gets or sets the starting date greater than or equal to.
|
|
38669
39225
|
*/
|
|
38670
|
-
|
|
39226
|
+
startDateGte?: string;
|
|
39227
|
+
/**
|
|
39228
|
+
* Gets or sets the starting date less than or equal to.
|
|
39229
|
+
*/
|
|
39230
|
+
startDateLte?: string;
|
|
39231
|
+
/**
|
|
39232
|
+
* Gets or sets a value indicating whether to include online activities only.
|
|
39233
|
+
*/
|
|
39234
|
+
onlineActivitiesOnly?: boolean;
|
|
39235
|
+
/**
|
|
39236
|
+
* Gets or sets a value indicating whether to include online venues only.
|
|
39237
|
+
*/
|
|
39238
|
+
onlineVenuesOnly?: boolean;
|
|
38671
39239
|
/**
|
|
38672
39240
|
* Gets or sets the page number for paged queries.
|
|
38673
39241
|
*/
|
|
@@ -38708,7 +39276,7 @@ declare class VenueManagersService {
|
|
|
38708
39276
|
* Gets or sets the sort order direction.
|
|
38709
39277
|
*/
|
|
38710
39278
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
38711
|
-
}): CancelablePromise<Array<
|
|
39279
|
+
}): CancelablePromise<Array<VenuePerformance>>;
|
|
38712
39280
|
}
|
|
38713
39281
|
|
|
38714
39282
|
/**
|
|
@@ -41642,6 +42210,7 @@ declare class WaitlistOpportunityReportService {
|
|
|
41642
42210
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
41643
42211
|
declare class ApiClient {
|
|
41644
42212
|
readonly activity: ActivityService;
|
|
42213
|
+
readonly activityPerformance: ActivityPerformanceService;
|
|
41645
42214
|
readonly amenity: AmenityService;
|
|
41646
42215
|
readonly attendees: AttendeesService;
|
|
41647
42216
|
readonly badEnglandReport: BadEnglandReportService;
|
|
@@ -41677,7 +42246,6 @@ declare class ApiClient {
|
|
|
41677
42246
|
readonly orders: OrdersService;
|
|
41678
42247
|
readonly orgCourseUtilisation: OrgCourseUtilisationService;
|
|
41679
42248
|
readonly payments: PaymentsService;
|
|
41680
|
-
readonly performance: PerformanceService;
|
|
41681
42249
|
readonly permissions: PermissionsService;
|
|
41682
42250
|
readonly places: PlacesService;
|
|
41683
42251
|
readonly programmes: ProgrammesService;
|
|
@@ -41730,6 +42298,7 @@ declare class ApiClient {
|
|
|
41730
42298
|
readonly unsplash: UnsplashService;
|
|
41731
42299
|
readonly users: UsersService;
|
|
41732
42300
|
readonly venueManagers: VenueManagersService;
|
|
42301
|
+
readonly venuePerformance: VenuePerformanceService;
|
|
41733
42302
|
readonly venues: VenuesService;
|
|
41734
42303
|
readonly venuesReport: VenuesReportService;
|
|
41735
42304
|
readonly waitlistActivity: WaitlistActivityService;
|
|
@@ -41866,4 +42435,4 @@ type ValidationResultModel = {
|
|
|
41866
42435
|
readonly errors?: Array<ValidationError> | null;
|
|
41867
42436
|
};
|
|
41868
42437
|
|
|
41869
|
-
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, 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,
|
|
42438
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, 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, 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, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, 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, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, 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 };
|