reach-api-sdk 1.0.156 → 1.0.158
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 +638 -19
- package/dist/reach-sdk.js +454 -2
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +2383 -857
- package/src/index.ts +6 -0
- package/src/models/Course.ts +10 -0
- package/src/models/CoursePatch.ts +4 -0
- package/src/models/Order.ts +4 -0
- package/src/models/PaymentPolicy.ts +53 -0
- package/src/models/PaymentPolicyPage.ts +12 -0
- package/src/models/PaymentPolicyPatch.ts +33 -0
- package/src/models/PaymentPolicyPost.ts +29 -0
- package/src/models/PaymentPolicySplitType.ts +12 -0
- package/src/models/Session.ts +10 -0
- package/src/models/SessionPatch.ts +4 -0
- package/src/models/TemplateDetail.ts +4 -0
- package/src/models/TemplateDetailPatch.ts +4 -0
- package/src/services/CoursesService.ts +24 -0
- package/src/services/PaymentPoliciesService.ts +715 -0
- package/src/services/PublicCoursesService.ts +12 -0
- package/src/services/PublicNetworksService.ts +6 -0
- package/src/services/PublicSessionsService.ts +12 -0
- package/src/services/RegisterReportService.ts +60 -0
- package/src/services/SessionsService.ts +24 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -2687,6 +2687,61 @@ type Image = {
|
|
|
2687
2687
|
file?: Blob | null;
|
|
2688
2688
|
};
|
|
2689
2689
|
|
|
2690
|
+
/**
|
|
2691
|
+
* The payment policy split type.
|
|
2692
|
+
*/
|
|
2693
|
+
declare enum PaymentPolicySplitType {
|
|
2694
|
+
FIXED = "Fixed",
|
|
2695
|
+
PERCENTAGE = "Percentage"
|
|
2696
|
+
}
|
|
2697
|
+
|
|
2698
|
+
/**
|
|
2699
|
+
* Represents a payment policy for an activity.
|
|
2700
|
+
*/
|
|
2701
|
+
type PaymentPolicy = {
|
|
2702
|
+
/**
|
|
2703
|
+
* Gets or sets the entities Id.
|
|
2704
|
+
*/
|
|
2705
|
+
id?: string;
|
|
2706
|
+
/**
|
|
2707
|
+
* Gets or sets the tenant Id.
|
|
2708
|
+
*/
|
|
2709
|
+
tenantId: string;
|
|
2710
|
+
/**
|
|
2711
|
+
* Gets or sets the created date of this entity.
|
|
2712
|
+
*/
|
|
2713
|
+
dateCreated: string;
|
|
2714
|
+
/**
|
|
2715
|
+
* Gets or sets the last modified date of this entity.
|
|
2716
|
+
*/
|
|
2717
|
+
dateModified: string;
|
|
2718
|
+
/**
|
|
2719
|
+
* Gets or sets the modified by Id.
|
|
2720
|
+
*/
|
|
2721
|
+
modifiedById?: string | null;
|
|
2722
|
+
/**
|
|
2723
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
2724
|
+
*/
|
|
2725
|
+
isLive: boolean;
|
|
2726
|
+
/**
|
|
2727
|
+
* Gets or sets the name of the policy.
|
|
2728
|
+
*/
|
|
2729
|
+
name?: string | null;
|
|
2730
|
+
/**
|
|
2731
|
+
* Gets or sets the value of the split.
|
|
2732
|
+
*/
|
|
2733
|
+
splitValue?: number;
|
|
2734
|
+
splitType?: PaymentPolicySplitType;
|
|
2735
|
+
/**
|
|
2736
|
+
* Gets or sets a value indicating whether this is the default policy that will be applied to new activities that are created.
|
|
2737
|
+
*/
|
|
2738
|
+
isDefault?: boolean;
|
|
2739
|
+
/**
|
|
2740
|
+
* Gets or sets a value indicating whether this is the original policy that was created by the system, and can never be deleted.
|
|
2741
|
+
*/
|
|
2742
|
+
isSystem?: boolean;
|
|
2743
|
+
};
|
|
2744
|
+
|
|
2690
2745
|
/**
|
|
2691
2746
|
* Represents a Programme within the Reach application.
|
|
2692
2747
|
*/
|
|
@@ -3421,6 +3476,10 @@ type Session = {
|
|
|
3421
3476
|
* Gets or sets the cancellation policy id.
|
|
3422
3477
|
*/
|
|
3423
3478
|
cancellationPolicyId?: string;
|
|
3479
|
+
/**
|
|
3480
|
+
* Gets or sets the payment policy id.
|
|
3481
|
+
*/
|
|
3482
|
+
paymentPolicyId?: string;
|
|
3424
3483
|
/**
|
|
3425
3484
|
* Gets or sets the session name.
|
|
3426
3485
|
*/
|
|
@@ -3454,6 +3513,10 @@ type Session = {
|
|
|
3454
3513
|
* Gets the gender description.
|
|
3455
3514
|
*/
|
|
3456
3515
|
readonly genderDescription?: string | null;
|
|
3516
|
+
/**
|
|
3517
|
+
* Gets or sets a value indicating whether payments are enabled for the activity.
|
|
3518
|
+
*/
|
|
3519
|
+
paymentsEnabled?: boolean;
|
|
3457
3520
|
/**
|
|
3458
3521
|
* Gets or sets the min age.
|
|
3459
3522
|
*/
|
|
@@ -3499,6 +3562,7 @@ type Session = {
|
|
|
3499
3562
|
*/
|
|
3500
3563
|
images?: Array<Image> | null;
|
|
3501
3564
|
cancellationPolicy?: CancellationPolicy;
|
|
3565
|
+
paymentPolicy?: PaymentPolicy;
|
|
3502
3566
|
/**
|
|
3503
3567
|
* Gets or sets the activities deals.
|
|
3504
3568
|
*/
|
|
@@ -4644,6 +4708,10 @@ type Course = {
|
|
|
4644
4708
|
* Gets or sets the cancellation policy id.
|
|
4645
4709
|
*/
|
|
4646
4710
|
cancellationPolicyId?: string;
|
|
4711
|
+
/**
|
|
4712
|
+
* Gets or sets the payment policy id.
|
|
4713
|
+
*/
|
|
4714
|
+
paymentPolicyId?: string;
|
|
4647
4715
|
/**
|
|
4648
4716
|
* Gets or sets the session name.
|
|
4649
4717
|
*/
|
|
@@ -4677,6 +4745,10 @@ type Course = {
|
|
|
4677
4745
|
* Gets the gender description.
|
|
4678
4746
|
*/
|
|
4679
4747
|
readonly genderDescription?: string | null;
|
|
4748
|
+
/**
|
|
4749
|
+
* Gets or sets a value indicating whether payments are enabled for the activity.
|
|
4750
|
+
*/
|
|
4751
|
+
paymentsEnabled?: boolean;
|
|
4680
4752
|
/**
|
|
4681
4753
|
* Gets or sets the min age.
|
|
4682
4754
|
*/
|
|
@@ -4722,6 +4794,7 @@ type Course = {
|
|
|
4722
4794
|
*/
|
|
4723
4795
|
images?: Array<Image> | null;
|
|
4724
4796
|
cancellationPolicy?: CancellationPolicy;
|
|
4797
|
+
paymentPolicy?: PaymentPolicy;
|
|
4725
4798
|
/**
|
|
4726
4799
|
* Gets or sets the activities deals.
|
|
4727
4800
|
*/
|
|
@@ -5323,6 +5396,10 @@ type Order = {
|
|
|
5323
5396
|
* Gets or sets the stripe fee.
|
|
5324
5397
|
*/
|
|
5325
5398
|
stripeFee?: number | null;
|
|
5399
|
+
/**
|
|
5400
|
+
* Gets or sets the payment policy transfer fee (used to transfer an amount to the enterprise tenant in enterprise setups).
|
|
5401
|
+
*/
|
|
5402
|
+
paymentPolicyXferFee?: number | null;
|
|
5326
5403
|
/**
|
|
5327
5404
|
* Gets or sets the provided customer order reference.
|
|
5328
5405
|
*/
|
|
@@ -7296,6 +7373,10 @@ type CoursePatch = {
|
|
|
7296
7373
|
* Gets or sets the cancellation policy id.
|
|
7297
7374
|
*/
|
|
7298
7375
|
cancellationPolicyId?: string;
|
|
7376
|
+
/**
|
|
7377
|
+
* Gets or sets the payment policy id.
|
|
7378
|
+
*/
|
|
7379
|
+
paymentPolicyId?: string;
|
|
7299
7380
|
/**
|
|
7300
7381
|
* Gets or sets the survey Id.
|
|
7301
7382
|
*/
|
|
@@ -7609,7 +7690,7 @@ declare class CoursesService {
|
|
|
7609
7690
|
* @returns CoursePage Success
|
|
7610
7691
|
* @throws ApiError
|
|
7611
7692
|
*/
|
|
7612
|
-
getPage({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7693
|
+
getPage({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7613
7694
|
/**
|
|
7614
7695
|
* Gets or sets the queryable Course Id.
|
|
7615
7696
|
*/
|
|
@@ -7634,6 +7715,10 @@ declare class CoursesService {
|
|
|
7634
7715
|
* Gets or sets the queryable Cancellation policy Id.
|
|
7635
7716
|
*/
|
|
7636
7717
|
cancellationPolicyId?: string;
|
|
7718
|
+
/**
|
|
7719
|
+
* Gets or sets the queryable Payment policy Id.
|
|
7720
|
+
*/
|
|
7721
|
+
paymentPolicyId?: string;
|
|
7637
7722
|
/**
|
|
7638
7723
|
* Gets or sets a value indicating whether to include templatable courses.
|
|
7639
7724
|
*/
|
|
@@ -7797,7 +7882,7 @@ declare class CoursesService {
|
|
|
7797
7882
|
* @returns boolean Success
|
|
7798
7883
|
* @throws ApiError
|
|
7799
7884
|
*/
|
|
7800
|
-
exists({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7885
|
+
exists({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7801
7886
|
/**
|
|
7802
7887
|
* Gets or sets the queryable Course Id.
|
|
7803
7888
|
*/
|
|
@@ -7822,6 +7907,10 @@ declare class CoursesService {
|
|
|
7822
7907
|
* Gets or sets the queryable Cancellation policy Id.
|
|
7823
7908
|
*/
|
|
7824
7909
|
cancellationPolicyId?: string;
|
|
7910
|
+
/**
|
|
7911
|
+
* Gets or sets the queryable Payment policy Id.
|
|
7912
|
+
*/
|
|
7913
|
+
paymentPolicyId?: string;
|
|
7825
7914
|
/**
|
|
7826
7915
|
* Gets or sets a value indicating whether to include templatable courses.
|
|
7827
7916
|
*/
|
|
@@ -7952,7 +8041,7 @@ declare class CoursesService {
|
|
|
7952
8041
|
* @returns Course Success
|
|
7953
8042
|
* @throws ApiError
|
|
7954
8043
|
*/
|
|
7955
|
-
getListWithoutReferences({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8044
|
+
getListWithoutReferences({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
7956
8045
|
/**
|
|
7957
8046
|
* Gets or sets the queryable Course Id.
|
|
7958
8047
|
*/
|
|
@@ -7977,6 +8066,10 @@ declare class CoursesService {
|
|
|
7977
8066
|
* Gets or sets the queryable Cancellation policy Id.
|
|
7978
8067
|
*/
|
|
7979
8068
|
cancellationPolicyId?: string;
|
|
8069
|
+
/**
|
|
8070
|
+
* Gets or sets the queryable Payment policy Id.
|
|
8071
|
+
*/
|
|
8072
|
+
paymentPolicyId?: string;
|
|
7980
8073
|
/**
|
|
7981
8074
|
* Gets or sets a value indicating whether to include templatable courses.
|
|
7982
8075
|
*/
|
|
@@ -8107,7 +8200,7 @@ declare class CoursesService {
|
|
|
8107
8200
|
* @returns Course Success
|
|
8108
8201
|
* @throws ApiError
|
|
8109
8202
|
*/
|
|
8110
|
-
getListIdName({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8203
|
+
getListIdName({ id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8111
8204
|
/**
|
|
8112
8205
|
* Gets or sets the queryable Course Id.
|
|
8113
8206
|
*/
|
|
@@ -8132,6 +8225,10 @@ declare class CoursesService {
|
|
|
8132
8225
|
* Gets or sets the queryable Cancellation policy Id.
|
|
8133
8226
|
*/
|
|
8134
8227
|
cancellationPolicyId?: string;
|
|
8228
|
+
/**
|
|
8229
|
+
* Gets or sets the queryable Payment policy Id.
|
|
8230
|
+
*/
|
|
8231
|
+
paymentPolicyId?: string;
|
|
8135
8232
|
/**
|
|
8136
8233
|
* Gets or sets a value indicating whether to include templatable courses.
|
|
8137
8234
|
*/
|
|
@@ -22341,6 +22438,439 @@ declare class OrgCourseUtilisationService {
|
|
|
22341
22438
|
}): CancelablePromise<Array<OrgCourseUtilisation>>;
|
|
22342
22439
|
}
|
|
22343
22440
|
|
|
22441
|
+
type PaymentPolicyPage = {
|
|
22442
|
+
pagination: Pagination;
|
|
22443
|
+
readonly items: Array<PaymentPolicy>;
|
|
22444
|
+
};
|
|
22445
|
+
|
|
22446
|
+
/**
|
|
22447
|
+
* Patch model for the payment policy.
|
|
22448
|
+
*/
|
|
22449
|
+
type PaymentPolicyPatch = {
|
|
22450
|
+
/**
|
|
22451
|
+
* Gets or sets the tenant Id.
|
|
22452
|
+
*/
|
|
22453
|
+
tenantId: string;
|
|
22454
|
+
/**
|
|
22455
|
+
* Gets or sets the Id.
|
|
22456
|
+
*/
|
|
22457
|
+
id: string;
|
|
22458
|
+
/**
|
|
22459
|
+
* Gets or sets the name of the policy.
|
|
22460
|
+
*/
|
|
22461
|
+
name?: string | null;
|
|
22462
|
+
/**
|
|
22463
|
+
* Gets or sets the value of the split.
|
|
22464
|
+
*/
|
|
22465
|
+
splitValue?: number;
|
|
22466
|
+
splitType?: PaymentPolicySplitType;
|
|
22467
|
+
/**
|
|
22468
|
+
* Gets or sets a value indicating whether this is the default policy that will be applied to new activities that are created.
|
|
22469
|
+
*/
|
|
22470
|
+
isDefault?: boolean;
|
|
22471
|
+
};
|
|
22472
|
+
|
|
22473
|
+
/**
|
|
22474
|
+
* Post model for the payment policy.
|
|
22475
|
+
*/
|
|
22476
|
+
type PaymentPolicyPost = {
|
|
22477
|
+
/**
|
|
22478
|
+
* Gets or sets the tenant Id.
|
|
22479
|
+
*/
|
|
22480
|
+
tenantId: string;
|
|
22481
|
+
/**
|
|
22482
|
+
* Gets or sets the name of the policy.
|
|
22483
|
+
*/
|
|
22484
|
+
name?: string | null;
|
|
22485
|
+
/**
|
|
22486
|
+
* Gets or sets the value of the split.
|
|
22487
|
+
*/
|
|
22488
|
+
splitValue?: number;
|
|
22489
|
+
splitType?: PaymentPolicySplitType;
|
|
22490
|
+
/**
|
|
22491
|
+
* Gets or sets a value indicating whether this is the default policy that will be applied to new activities that are created.
|
|
22492
|
+
*/
|
|
22493
|
+
isDefault?: boolean;
|
|
22494
|
+
};
|
|
22495
|
+
|
|
22496
|
+
declare class PaymentPoliciesService {
|
|
22497
|
+
readonly httpRequest: BaseHttpRequest;
|
|
22498
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
22499
|
+
/**
|
|
22500
|
+
* Gets the system payment policy.
|
|
22501
|
+
* @returns PaymentPolicy Success
|
|
22502
|
+
* @throws ApiError
|
|
22503
|
+
*/
|
|
22504
|
+
getSystemPaymentPolicy(): CancelablePromise<PaymentPolicy>;
|
|
22505
|
+
/**
|
|
22506
|
+
* Sets the payment policy as the default policy. />.
|
|
22507
|
+
* @returns PaymentPolicy Success
|
|
22508
|
+
* @throws ApiError
|
|
22509
|
+
*/
|
|
22510
|
+
setAsDefault({ paymentPolicyId, }: {
|
|
22511
|
+
/**
|
|
22512
|
+
* The payment policy Id.
|
|
22513
|
+
*/
|
|
22514
|
+
paymentPolicyId: string;
|
|
22515
|
+
}): CancelablePromise<PaymentPolicy>;
|
|
22516
|
+
/**
|
|
22517
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
22518
|
+
* @returns PaymentPolicy Success
|
|
22519
|
+
* @throws ApiError
|
|
22520
|
+
*/
|
|
22521
|
+
post({ requestBody, }: {
|
|
22522
|
+
/**
|
|
22523
|
+
* The <typeparamref name="TObject" /> model.
|
|
22524
|
+
*/
|
|
22525
|
+
requestBody?: PaymentPolicyPost;
|
|
22526
|
+
}): CancelablePromise<PaymentPolicy>;
|
|
22527
|
+
/**
|
|
22528
|
+
* Patches the resource.
|
|
22529
|
+
* @returns PaymentPolicy Success
|
|
22530
|
+
* @throws ApiError
|
|
22531
|
+
*/
|
|
22532
|
+
patch({ requestBody, }: {
|
|
22533
|
+
/**
|
|
22534
|
+
* The <typeparamref name="TObject" /> model.
|
|
22535
|
+
*/
|
|
22536
|
+
requestBody?: PaymentPolicyPatch;
|
|
22537
|
+
}): CancelablePromise<PaymentPolicy>;
|
|
22538
|
+
/**
|
|
22539
|
+
* Inserts a list of resources.
|
|
22540
|
+
* @returns PaymentPolicy Success
|
|
22541
|
+
* @throws ApiError
|
|
22542
|
+
*/
|
|
22543
|
+
postList({ requestBody, }: {
|
|
22544
|
+
/**
|
|
22545
|
+
* The list of <typeparamref name="TObject" />.
|
|
22546
|
+
*/
|
|
22547
|
+
requestBody?: Array<PaymentPolicyPost>;
|
|
22548
|
+
}): CancelablePromise<Array<PaymentPolicy>>;
|
|
22549
|
+
/**
|
|
22550
|
+
* Patches the resource.
|
|
22551
|
+
* @returns PaymentPolicy Success
|
|
22552
|
+
* @throws ApiError
|
|
22553
|
+
*/
|
|
22554
|
+
patchWithReferences({ requestBody, }: {
|
|
22555
|
+
/**
|
|
22556
|
+
* The <typeparamref name="TObject" /> model.
|
|
22557
|
+
*/
|
|
22558
|
+
requestBody?: PaymentPolicyPatch;
|
|
22559
|
+
}): CancelablePromise<PaymentPolicy>;
|
|
22560
|
+
/**
|
|
22561
|
+
* Deletes the resource.
|
|
22562
|
+
* @returns any Success
|
|
22563
|
+
* @throws ApiError
|
|
22564
|
+
*/
|
|
22565
|
+
deleteByObject({ requestBody, }: {
|
|
22566
|
+
/**
|
|
22567
|
+
* The <typeparamref name="TObject" /> model.
|
|
22568
|
+
*/
|
|
22569
|
+
requestBody?: PaymentPolicy;
|
|
22570
|
+
}): CancelablePromise<any>;
|
|
22571
|
+
/**
|
|
22572
|
+
* Gets a list of resources.
|
|
22573
|
+
* @returns PaymentPolicyPage Success
|
|
22574
|
+
* @throws ApiError
|
|
22575
|
+
*/
|
|
22576
|
+
getPage({ ids, name, isDefault, isSystem, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22577
|
+
/**
|
|
22578
|
+
* Gets or sets the queryable payment policy ids.
|
|
22579
|
+
*/
|
|
22580
|
+
ids?: Array<string>;
|
|
22581
|
+
/**
|
|
22582
|
+
* Gets or sets the queryable name.
|
|
22583
|
+
*/
|
|
22584
|
+
name?: string;
|
|
22585
|
+
/**
|
|
22586
|
+
* Gets or sets the queryable IsDefault value.
|
|
22587
|
+
*/
|
|
22588
|
+
isDefault?: boolean;
|
|
22589
|
+
/**
|
|
22590
|
+
* Gets or sets the queryable IsSystem value.
|
|
22591
|
+
*/
|
|
22592
|
+
isSystem?: boolean;
|
|
22593
|
+
/**
|
|
22594
|
+
* Gets or sets the page number for paged queries.
|
|
22595
|
+
*/
|
|
22596
|
+
pageNumber?: number;
|
|
22597
|
+
/**
|
|
22598
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
22599
|
+
*/
|
|
22600
|
+
take?: number;
|
|
22601
|
+
/**
|
|
22602
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
22603
|
+
*/
|
|
22604
|
+
skip?: number;
|
|
22605
|
+
/**
|
|
22606
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
22607
|
+
*/
|
|
22608
|
+
limitListRequests?: boolean;
|
|
22609
|
+
/**
|
|
22610
|
+
* Gets or sets the Tenant Id.
|
|
22611
|
+
*/
|
|
22612
|
+
tenantId?: string;
|
|
22613
|
+
/**
|
|
22614
|
+
* Gets or sets the Modifed By Id.
|
|
22615
|
+
*/
|
|
22616
|
+
modifiedById?: string;
|
|
22617
|
+
/**
|
|
22618
|
+
* Gets or sets the Modifed By Ids.
|
|
22619
|
+
*/
|
|
22620
|
+
modifiedByIds?: Array<string>;
|
|
22621
|
+
/**
|
|
22622
|
+
* Gets or sets the Date Created greater than equal to.
|
|
22623
|
+
*/
|
|
22624
|
+
dateCreatedGte?: string;
|
|
22625
|
+
/**
|
|
22626
|
+
* Gets or sets the Date Created less than equal to.
|
|
22627
|
+
*/
|
|
22628
|
+
dateCreatedLte?: string;
|
|
22629
|
+
/**
|
|
22630
|
+
* Gets or sets the queryable only is live status.
|
|
22631
|
+
*/
|
|
22632
|
+
isLive?: boolean;
|
|
22633
|
+
/**
|
|
22634
|
+
* Gets or sets the sort order direction.
|
|
22635
|
+
*/
|
|
22636
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
22637
|
+
}): CancelablePromise<PaymentPolicyPage>;
|
|
22638
|
+
/**
|
|
22639
|
+
* Deletes the resource.
|
|
22640
|
+
* @returns any Success
|
|
22641
|
+
* @throws ApiError
|
|
22642
|
+
*/
|
|
22643
|
+
deleteById({ id, }: {
|
|
22644
|
+
/**
|
|
22645
|
+
* The <typeparamref name="TObject" /> id.
|
|
22646
|
+
*/
|
|
22647
|
+
id: string;
|
|
22648
|
+
}): CancelablePromise<any>;
|
|
22649
|
+
/**
|
|
22650
|
+
* Gets the resource by its Id.
|
|
22651
|
+
* @returns PaymentPolicy Success
|
|
22652
|
+
* @throws ApiError
|
|
22653
|
+
*/
|
|
22654
|
+
getObject({ id, }: {
|
|
22655
|
+
/**
|
|
22656
|
+
* The <typeparamref name="TObject" /> id.
|
|
22657
|
+
*/
|
|
22658
|
+
id: string;
|
|
22659
|
+
}): CancelablePromise<PaymentPolicy>;
|
|
22660
|
+
/**
|
|
22661
|
+
* Returns a value indicating whether the resource is deletable.
|
|
22662
|
+
* @returns boolean Success
|
|
22663
|
+
* @throws ApiError
|
|
22664
|
+
*/
|
|
22665
|
+
canDelete({ id, }: {
|
|
22666
|
+
/**
|
|
22667
|
+
* The <typeparamref name="TObject" /> id.
|
|
22668
|
+
*/
|
|
22669
|
+
id: string;
|
|
22670
|
+
}): CancelablePromise<boolean>;
|
|
22671
|
+
/**
|
|
22672
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
22673
|
+
* @returns boolean Success
|
|
22674
|
+
* @throws ApiError
|
|
22675
|
+
*/
|
|
22676
|
+
exists({ ids, name, isDefault, isSystem, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22677
|
+
/**
|
|
22678
|
+
* Gets or sets the queryable payment policy ids.
|
|
22679
|
+
*/
|
|
22680
|
+
ids?: Array<string>;
|
|
22681
|
+
/**
|
|
22682
|
+
* Gets or sets the queryable name.
|
|
22683
|
+
*/
|
|
22684
|
+
name?: string;
|
|
22685
|
+
/**
|
|
22686
|
+
* Gets or sets the queryable IsDefault value.
|
|
22687
|
+
*/
|
|
22688
|
+
isDefault?: boolean;
|
|
22689
|
+
/**
|
|
22690
|
+
* Gets or sets the queryable IsSystem value.
|
|
22691
|
+
*/
|
|
22692
|
+
isSystem?: boolean;
|
|
22693
|
+
/**
|
|
22694
|
+
* Gets or sets the page number for paged queries.
|
|
22695
|
+
*/
|
|
22696
|
+
pageNumber?: number;
|
|
22697
|
+
/**
|
|
22698
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
22699
|
+
*/
|
|
22700
|
+
take?: number;
|
|
22701
|
+
/**
|
|
22702
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
22703
|
+
*/
|
|
22704
|
+
skip?: number;
|
|
22705
|
+
/**
|
|
22706
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
22707
|
+
*/
|
|
22708
|
+
limitListRequests?: boolean;
|
|
22709
|
+
/**
|
|
22710
|
+
* Gets or sets the Tenant Id.
|
|
22711
|
+
*/
|
|
22712
|
+
tenantId?: string;
|
|
22713
|
+
/**
|
|
22714
|
+
* Gets or sets the Modifed By Id.
|
|
22715
|
+
*/
|
|
22716
|
+
modifiedById?: string;
|
|
22717
|
+
/**
|
|
22718
|
+
* Gets or sets the Modifed By Ids.
|
|
22719
|
+
*/
|
|
22720
|
+
modifiedByIds?: Array<string>;
|
|
22721
|
+
/**
|
|
22722
|
+
* Gets or sets the Date Created greater than equal to.
|
|
22723
|
+
*/
|
|
22724
|
+
dateCreatedGte?: string;
|
|
22725
|
+
/**
|
|
22726
|
+
* Gets or sets the Date Created less than equal to.
|
|
22727
|
+
*/
|
|
22728
|
+
dateCreatedLte?: string;
|
|
22729
|
+
/**
|
|
22730
|
+
* Gets or sets the queryable only is live status.
|
|
22731
|
+
*/
|
|
22732
|
+
isLive?: boolean;
|
|
22733
|
+
/**
|
|
22734
|
+
* Gets or sets the sort order direction.
|
|
22735
|
+
*/
|
|
22736
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
22737
|
+
}): CancelablePromise<boolean>;
|
|
22738
|
+
/**
|
|
22739
|
+
* Gets a list of resources unpaged and without references.
|
|
22740
|
+
* @returns PaymentPolicy Success
|
|
22741
|
+
* @throws ApiError
|
|
22742
|
+
*/
|
|
22743
|
+
getListWithoutReferences({ ids, name, isDefault, isSystem, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22744
|
+
/**
|
|
22745
|
+
* Gets or sets the queryable payment policy ids.
|
|
22746
|
+
*/
|
|
22747
|
+
ids?: Array<string>;
|
|
22748
|
+
/**
|
|
22749
|
+
* Gets or sets the queryable name.
|
|
22750
|
+
*/
|
|
22751
|
+
name?: string;
|
|
22752
|
+
/**
|
|
22753
|
+
* Gets or sets the queryable IsDefault value.
|
|
22754
|
+
*/
|
|
22755
|
+
isDefault?: boolean;
|
|
22756
|
+
/**
|
|
22757
|
+
* Gets or sets the queryable IsSystem value.
|
|
22758
|
+
*/
|
|
22759
|
+
isSystem?: boolean;
|
|
22760
|
+
/**
|
|
22761
|
+
* Gets or sets the page number for paged queries.
|
|
22762
|
+
*/
|
|
22763
|
+
pageNumber?: number;
|
|
22764
|
+
/**
|
|
22765
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
22766
|
+
*/
|
|
22767
|
+
take?: number;
|
|
22768
|
+
/**
|
|
22769
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
22770
|
+
*/
|
|
22771
|
+
skip?: number;
|
|
22772
|
+
/**
|
|
22773
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
22774
|
+
*/
|
|
22775
|
+
limitListRequests?: boolean;
|
|
22776
|
+
/**
|
|
22777
|
+
* Gets or sets the Tenant Id.
|
|
22778
|
+
*/
|
|
22779
|
+
tenantId?: string;
|
|
22780
|
+
/**
|
|
22781
|
+
* Gets or sets the Modifed By Id.
|
|
22782
|
+
*/
|
|
22783
|
+
modifiedById?: string;
|
|
22784
|
+
/**
|
|
22785
|
+
* Gets or sets the Modifed By Ids.
|
|
22786
|
+
*/
|
|
22787
|
+
modifiedByIds?: Array<string>;
|
|
22788
|
+
/**
|
|
22789
|
+
* Gets or sets the Date Created greater than equal to.
|
|
22790
|
+
*/
|
|
22791
|
+
dateCreatedGte?: string;
|
|
22792
|
+
/**
|
|
22793
|
+
* Gets or sets the Date Created less than equal to.
|
|
22794
|
+
*/
|
|
22795
|
+
dateCreatedLte?: string;
|
|
22796
|
+
/**
|
|
22797
|
+
* Gets or sets the queryable only is live status.
|
|
22798
|
+
*/
|
|
22799
|
+
isLive?: boolean;
|
|
22800
|
+
/**
|
|
22801
|
+
* Gets or sets the sort order direction.
|
|
22802
|
+
*/
|
|
22803
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
22804
|
+
}): CancelablePromise<Array<PaymentPolicy>>;
|
|
22805
|
+
/**
|
|
22806
|
+
* Gets a list of resources.
|
|
22807
|
+
* @returns PaymentPolicy Success
|
|
22808
|
+
* @throws ApiError
|
|
22809
|
+
*/
|
|
22810
|
+
getListIdName({ ids, name, isDefault, isSystem, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22811
|
+
/**
|
|
22812
|
+
* Gets or sets the queryable payment policy ids.
|
|
22813
|
+
*/
|
|
22814
|
+
ids?: Array<string>;
|
|
22815
|
+
/**
|
|
22816
|
+
* Gets or sets the queryable name.
|
|
22817
|
+
*/
|
|
22818
|
+
name?: string;
|
|
22819
|
+
/**
|
|
22820
|
+
* Gets or sets the queryable IsDefault value.
|
|
22821
|
+
*/
|
|
22822
|
+
isDefault?: boolean;
|
|
22823
|
+
/**
|
|
22824
|
+
* Gets or sets the queryable IsSystem value.
|
|
22825
|
+
*/
|
|
22826
|
+
isSystem?: boolean;
|
|
22827
|
+
/**
|
|
22828
|
+
* Gets or sets the page number for paged queries.
|
|
22829
|
+
*/
|
|
22830
|
+
pageNumber?: number;
|
|
22831
|
+
/**
|
|
22832
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
22833
|
+
*/
|
|
22834
|
+
take?: number;
|
|
22835
|
+
/**
|
|
22836
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
22837
|
+
*/
|
|
22838
|
+
skip?: number;
|
|
22839
|
+
/**
|
|
22840
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
22841
|
+
*/
|
|
22842
|
+
limitListRequests?: boolean;
|
|
22843
|
+
/**
|
|
22844
|
+
* Gets or sets the Tenant Id.
|
|
22845
|
+
*/
|
|
22846
|
+
tenantId?: string;
|
|
22847
|
+
/**
|
|
22848
|
+
* Gets or sets the Modifed By Id.
|
|
22849
|
+
*/
|
|
22850
|
+
modifiedById?: string;
|
|
22851
|
+
/**
|
|
22852
|
+
* Gets or sets the Modifed By Ids.
|
|
22853
|
+
*/
|
|
22854
|
+
modifiedByIds?: Array<string>;
|
|
22855
|
+
/**
|
|
22856
|
+
* Gets or sets the Date Created greater than equal to.
|
|
22857
|
+
*/
|
|
22858
|
+
dateCreatedGte?: string;
|
|
22859
|
+
/**
|
|
22860
|
+
* Gets or sets the Date Created less than equal to.
|
|
22861
|
+
*/
|
|
22862
|
+
dateCreatedLte?: string;
|
|
22863
|
+
/**
|
|
22864
|
+
* Gets or sets the queryable only is live status.
|
|
22865
|
+
*/
|
|
22866
|
+
isLive?: boolean;
|
|
22867
|
+
/**
|
|
22868
|
+
* Gets or sets the sort order direction.
|
|
22869
|
+
*/
|
|
22870
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
22871
|
+
}): CancelablePromise<Array<PaymentPolicy>>;
|
|
22872
|
+
}
|
|
22873
|
+
|
|
22344
22874
|
type PaymentPage = {
|
|
22345
22875
|
pagination: Pagination;
|
|
22346
22876
|
readonly items: Array<Payment>;
|
|
@@ -25037,7 +25567,7 @@ declare class PublicCoursesService {
|
|
|
25037
25567
|
* @returns CoursePage Success
|
|
25038
25568
|
* @throws ApiError
|
|
25039
25569
|
*/
|
|
25040
|
-
getPage({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25570
|
+
getPage({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25041
25571
|
xTenantSubdomain?: string;
|
|
25042
25572
|
/**
|
|
25043
25573
|
* Gets or sets the queryable Course Id.
|
|
@@ -25063,6 +25593,10 @@ declare class PublicCoursesService {
|
|
|
25063
25593
|
* Gets or sets the queryable Cancellation policy Id.
|
|
25064
25594
|
*/
|
|
25065
25595
|
cancellationPolicyId?: string;
|
|
25596
|
+
/**
|
|
25597
|
+
* Gets or sets the queryable Payment policy Id.
|
|
25598
|
+
*/
|
|
25599
|
+
paymentPolicyId?: string;
|
|
25066
25600
|
/**
|
|
25067
25601
|
* Gets or sets a value indicating whether to include templatable courses.
|
|
25068
25602
|
*/
|
|
@@ -25253,7 +25787,7 @@ declare class PublicCoursesService {
|
|
|
25253
25787
|
* @returns boolean Success
|
|
25254
25788
|
* @throws ApiError
|
|
25255
25789
|
*/
|
|
25256
|
-
exists({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25790
|
+
exists({ xTenantSubdomain, id, ids, venueId, programmeId, surveyId, cancellationPolicyId, paymentPolicyId, allowTemplating, archived, deleted, openActiveUpdate, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, online, hasAvailability, orderFirstNameContains, orderLastNameContains, sortBy, postCompletionEmailSent, searchGeoCenter, distance, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25257
25791
|
/**
|
|
25258
25792
|
* The tenants subdomain.
|
|
25259
25793
|
*/
|
|
@@ -25282,6 +25816,10 @@ declare class PublicCoursesService {
|
|
|
25282
25816
|
* Gets or sets the queryable Cancellation policy Id.
|
|
25283
25817
|
*/
|
|
25284
25818
|
cancellationPolicyId?: string;
|
|
25819
|
+
/**
|
|
25820
|
+
* Gets or sets the queryable Payment policy Id.
|
|
25821
|
+
*/
|
|
25822
|
+
paymentPolicyId?: string;
|
|
25285
25823
|
/**
|
|
25286
25824
|
* Gets or sets a value indicating whether to include templatable courses.
|
|
25287
25825
|
*/
|
|
@@ -27021,7 +27559,7 @@ declare class PublicNetworksService {
|
|
|
27021
27559
|
* @returns SessionPage Success
|
|
27022
27560
|
* @throws ApiError
|
|
27023
27561
|
*/
|
|
27024
|
-
getSessions({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27562
|
+
getSessions({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27025
27563
|
/**
|
|
27026
27564
|
* Gets or sets the queryable session ids.
|
|
27027
27565
|
*/
|
|
@@ -27038,6 +27576,10 @@ declare class PublicNetworksService {
|
|
|
27038
27576
|
* Gets or sets the queryable Cancellation policy Id.
|
|
27039
27577
|
*/
|
|
27040
27578
|
cancellationPolicyId?: string;
|
|
27579
|
+
/**
|
|
27580
|
+
* Gets or sets the queryable Payment policy Id.
|
|
27581
|
+
*/
|
|
27582
|
+
paymentPolicyId?: string;
|
|
27041
27583
|
/**
|
|
27042
27584
|
* Gets or sets a value indicating whether to only return sessions with future slots available.
|
|
27043
27585
|
*/
|
|
@@ -29627,6 +30169,10 @@ type SessionPatch = {
|
|
|
29627
30169
|
* Gets or sets the cancellation policy id.
|
|
29628
30170
|
*/
|
|
29629
30171
|
cancellationPolicyId?: string;
|
|
30172
|
+
/**
|
|
30173
|
+
* Gets or sets the payment policy id.
|
|
30174
|
+
*/
|
|
30175
|
+
paymentPolicyId?: string;
|
|
29630
30176
|
/**
|
|
29631
30177
|
* Gets or sets the session name.
|
|
29632
30178
|
*/
|
|
@@ -29756,7 +30302,7 @@ declare class PublicSessionsService {
|
|
|
29756
30302
|
* @returns SessionPage Success
|
|
29757
30303
|
* @throws ApiError
|
|
29758
30304
|
*/
|
|
29759
|
-
getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30305
|
+
getPage({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
29760
30306
|
xTenantSubdomain?: string;
|
|
29761
30307
|
/**
|
|
29762
30308
|
* Gets or sets the queryable session ids.
|
|
@@ -29774,6 +30320,10 @@ declare class PublicSessionsService {
|
|
|
29774
30320
|
* Gets or sets the queryable Cancellation policy Id.
|
|
29775
30321
|
*/
|
|
29776
30322
|
cancellationPolicyId?: string;
|
|
30323
|
+
/**
|
|
30324
|
+
* Gets or sets the queryable Payment policy Id.
|
|
30325
|
+
*/
|
|
30326
|
+
paymentPolicyId?: string;
|
|
29777
30327
|
/**
|
|
29778
30328
|
* Gets or sets a value indicating whether to only return sessions with future slots available.
|
|
29779
30329
|
*/
|
|
@@ -30146,7 +30696,7 @@ declare class PublicSessionsService {
|
|
|
30146
30696
|
* @returns boolean Success
|
|
30147
30697
|
* @throws ApiError
|
|
30148
30698
|
*/
|
|
30149
|
-
exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30699
|
+
exists({ xTenantSubdomain, ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
30150
30700
|
/**
|
|
30151
30701
|
* The tenants subdomain.
|
|
30152
30702
|
*/
|
|
@@ -30167,6 +30717,10 @@ declare class PublicSessionsService {
|
|
|
30167
30717
|
* Gets or sets the queryable Cancellation policy Id.
|
|
30168
30718
|
*/
|
|
30169
30719
|
cancellationPolicyId?: string;
|
|
30720
|
+
/**
|
|
30721
|
+
* Gets or sets the queryable Payment policy Id.
|
|
30722
|
+
*/
|
|
30723
|
+
paymentPolicyId?: string;
|
|
30170
30724
|
/**
|
|
30171
30725
|
* Gets or sets a value indicating whether to only return sessions with future slots available.
|
|
30172
30726
|
*/
|
|
@@ -34244,7 +34798,7 @@ declare class RegisterReportService {
|
|
|
34244
34798
|
* @returns any Success
|
|
34245
34799
|
* @throws ApiError
|
|
34246
34800
|
*/
|
|
34247
|
-
exportToCsv({ venueId, programmeId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
34801
|
+
exportToCsv({ venueId, programmeId, userId, startDateGte, startDateLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
34248
34802
|
/**
|
|
34249
34803
|
* Gets or sets the Venue Id.
|
|
34250
34804
|
*/
|
|
@@ -34257,6 +34811,14 @@ declare class RegisterReportService {
|
|
|
34257
34811
|
* Gets or sets the queryable User Id.
|
|
34258
34812
|
*/
|
|
34259
34813
|
userId?: string;
|
|
34814
|
+
/**
|
|
34815
|
+
* Gets or sets the starting date greater than or equal to.
|
|
34816
|
+
*/
|
|
34817
|
+
startDateGte?: string;
|
|
34818
|
+
/**
|
|
34819
|
+
* Gets or sets the starting date less than or equal to.
|
|
34820
|
+
*/
|
|
34821
|
+
startDateLte?: string;
|
|
34260
34822
|
/**
|
|
34261
34823
|
* Gets or sets the page number for paged queries.
|
|
34262
34824
|
*/
|
|
@@ -34368,7 +34930,7 @@ declare class RegisterReportService {
|
|
|
34368
34930
|
* @returns RegisterReportPage Success
|
|
34369
34931
|
* @throws ApiError
|
|
34370
34932
|
*/
|
|
34371
|
-
getPage({ venueId, programmeId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34933
|
+
getPage({ venueId, programmeId, userId, startDateGte, startDateLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34372
34934
|
/**
|
|
34373
34935
|
* Gets or sets the Venue Id.
|
|
34374
34936
|
*/
|
|
@@ -34381,6 +34943,14 @@ declare class RegisterReportService {
|
|
|
34381
34943
|
* Gets or sets the queryable User Id.
|
|
34382
34944
|
*/
|
|
34383
34945
|
userId?: string;
|
|
34946
|
+
/**
|
|
34947
|
+
* Gets or sets the starting date greater than or equal to.
|
|
34948
|
+
*/
|
|
34949
|
+
startDateGte?: string;
|
|
34950
|
+
/**
|
|
34951
|
+
* Gets or sets the starting date less than or equal to.
|
|
34952
|
+
*/
|
|
34953
|
+
startDateLte?: string;
|
|
34384
34954
|
/**
|
|
34385
34955
|
* Gets or sets the page number for paged queries.
|
|
34386
34956
|
*/
|
|
@@ -34464,7 +35034,7 @@ declare class RegisterReportService {
|
|
|
34464
35034
|
* @returns boolean Success
|
|
34465
35035
|
* @throws ApiError
|
|
34466
35036
|
*/
|
|
34467
|
-
exists({ venueId, programmeId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
35037
|
+
exists({ venueId, programmeId, userId, startDateGte, startDateLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34468
35038
|
/**
|
|
34469
35039
|
* Gets or sets the Venue Id.
|
|
34470
35040
|
*/
|
|
@@ -34477,6 +35047,14 @@ declare class RegisterReportService {
|
|
|
34477
35047
|
* Gets or sets the queryable User Id.
|
|
34478
35048
|
*/
|
|
34479
35049
|
userId?: string;
|
|
35050
|
+
/**
|
|
35051
|
+
* Gets or sets the starting date greater than or equal to.
|
|
35052
|
+
*/
|
|
35053
|
+
startDateGte?: string;
|
|
35054
|
+
/**
|
|
35055
|
+
* Gets or sets the starting date less than or equal to.
|
|
35056
|
+
*/
|
|
35057
|
+
startDateLte?: string;
|
|
34480
35058
|
/**
|
|
34481
35059
|
* Gets or sets the page number for paged queries.
|
|
34482
35060
|
*/
|
|
@@ -34527,7 +35105,7 @@ declare class RegisterReportService {
|
|
|
34527
35105
|
* @returns RegisterReport Success
|
|
34528
35106
|
* @throws ApiError
|
|
34529
35107
|
*/
|
|
34530
|
-
getListWithoutReferences({ venueId, programmeId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
35108
|
+
getListWithoutReferences({ venueId, programmeId, userId, startDateGte, startDateLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34531
35109
|
/**
|
|
34532
35110
|
* Gets or sets the Venue Id.
|
|
34533
35111
|
*/
|
|
@@ -34540,6 +35118,14 @@ declare class RegisterReportService {
|
|
|
34540
35118
|
* Gets or sets the queryable User Id.
|
|
34541
35119
|
*/
|
|
34542
35120
|
userId?: string;
|
|
35121
|
+
/**
|
|
35122
|
+
* Gets or sets the starting date greater than or equal to.
|
|
35123
|
+
*/
|
|
35124
|
+
startDateGte?: string;
|
|
35125
|
+
/**
|
|
35126
|
+
* Gets or sets the starting date less than or equal to.
|
|
35127
|
+
*/
|
|
35128
|
+
startDateLte?: string;
|
|
34543
35129
|
/**
|
|
34544
35130
|
* Gets or sets the page number for paged queries.
|
|
34545
35131
|
*/
|
|
@@ -34590,7 +35176,7 @@ declare class RegisterReportService {
|
|
|
34590
35176
|
* @returns RegisterReport Success
|
|
34591
35177
|
* @throws ApiError
|
|
34592
35178
|
*/
|
|
34593
|
-
getListIdName({ venueId, programmeId, userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
35179
|
+
getListIdName({ venueId, programmeId, userId, startDateGte, startDateLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
34594
35180
|
/**
|
|
34595
35181
|
* Gets or sets the Venue Id.
|
|
34596
35182
|
*/
|
|
@@ -34603,6 +35189,14 @@ declare class RegisterReportService {
|
|
|
34603
35189
|
* Gets or sets the queryable User Id.
|
|
34604
35190
|
*/
|
|
34605
35191
|
userId?: string;
|
|
35192
|
+
/**
|
|
35193
|
+
* Gets or sets the starting date greater than or equal to.
|
|
35194
|
+
*/
|
|
35195
|
+
startDateGte?: string;
|
|
35196
|
+
/**
|
|
35197
|
+
* Gets or sets the starting date less than or equal to.
|
|
35198
|
+
*/
|
|
35199
|
+
startDateLte?: string;
|
|
34606
35200
|
/**
|
|
34607
35201
|
* Gets or sets the page number for paged queries.
|
|
34608
35202
|
*/
|
|
@@ -36647,7 +37241,7 @@ declare class SessionsService {
|
|
|
36647
37241
|
* @returns SessionPage Success
|
|
36648
37242
|
* @throws ApiError
|
|
36649
37243
|
*/
|
|
36650
|
-
getPage({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
37244
|
+
getPage({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
36651
37245
|
/**
|
|
36652
37246
|
* Gets or sets the queryable session ids.
|
|
36653
37247
|
*/
|
|
@@ -36664,6 +37258,10 @@ declare class SessionsService {
|
|
|
36664
37258
|
* Gets or sets the queryable Cancellation policy Id.
|
|
36665
37259
|
*/
|
|
36666
37260
|
cancellationPolicyId?: string;
|
|
37261
|
+
/**
|
|
37262
|
+
* Gets or sets the queryable Payment policy Id.
|
|
37263
|
+
*/
|
|
37264
|
+
paymentPolicyId?: string;
|
|
36667
37265
|
/**
|
|
36668
37266
|
* Gets or sets a value indicating whether to only return sessions with future slots available.
|
|
36669
37267
|
*/
|
|
@@ -36835,7 +37433,7 @@ declare class SessionsService {
|
|
|
36835
37433
|
* @returns boolean Success
|
|
36836
37434
|
* @throws ApiError
|
|
36837
37435
|
*/
|
|
36838
|
-
exists({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
37436
|
+
exists({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
36839
37437
|
/**
|
|
36840
37438
|
* Gets or sets the queryable session ids.
|
|
36841
37439
|
*/
|
|
@@ -36852,6 +37450,10 @@ declare class SessionsService {
|
|
|
36852
37450
|
* Gets or sets the queryable Cancellation policy Id.
|
|
36853
37451
|
*/
|
|
36854
37452
|
cancellationPolicyId?: string;
|
|
37453
|
+
/**
|
|
37454
|
+
* Gets or sets the queryable Payment policy Id.
|
|
37455
|
+
*/
|
|
37456
|
+
paymentPolicyId?: string;
|
|
36855
37457
|
/**
|
|
36856
37458
|
* Gets or sets a value indicating whether to only return sessions with future slots available.
|
|
36857
37459
|
*/
|
|
@@ -36990,7 +37592,7 @@ declare class SessionsService {
|
|
|
36990
37592
|
* @returns Session Success
|
|
36991
37593
|
* @throws ApiError
|
|
36992
37594
|
*/
|
|
36993
|
-
getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
37595
|
+
getListWithoutReferences({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
36994
37596
|
/**
|
|
36995
37597
|
* Gets or sets the queryable session ids.
|
|
36996
37598
|
*/
|
|
@@ -37007,6 +37609,10 @@ declare class SessionsService {
|
|
|
37007
37609
|
* Gets or sets the queryable Cancellation policy Id.
|
|
37008
37610
|
*/
|
|
37009
37611
|
cancellationPolicyId?: string;
|
|
37612
|
+
/**
|
|
37613
|
+
* Gets or sets the queryable Payment policy Id.
|
|
37614
|
+
*/
|
|
37615
|
+
paymentPolicyId?: string;
|
|
37010
37616
|
/**
|
|
37011
37617
|
* Gets or sets a value indicating whether to only return sessions with future slots available.
|
|
37012
37618
|
*/
|
|
@@ -37145,7 +37751,7 @@ declare class SessionsService {
|
|
|
37145
37751
|
* @returns Session Success
|
|
37146
37752
|
* @throws ApiError
|
|
37147
37753
|
*/
|
|
37148
|
-
getListIdName({ ids, venueId, surveyId, cancellationPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
37754
|
+
getListIdName({ ids, venueId, surveyId, cancellationPolicyId, paymentPolicyId, futureOnly, online, programmeId, includeNextOpportunity, allowTemplating, archived, deleted, openActiveUpdate, networkId, distance, minAgeLte, minAgeGte, maxAgeLte, maxAgeGte, priceTotalGte, priceTotalLte, timeOfDay, dateFrom, dateTo, gender, periodsOfWeek, searchGeoCenter, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
37149
37755
|
/**
|
|
37150
37756
|
* Gets or sets the queryable session ids.
|
|
37151
37757
|
*/
|
|
@@ -37162,6 +37768,10 @@ declare class SessionsService {
|
|
|
37162
37768
|
* Gets or sets the queryable Cancellation policy Id.
|
|
37163
37769
|
*/
|
|
37164
37770
|
cancellationPolicyId?: string;
|
|
37771
|
+
/**
|
|
37772
|
+
* Gets or sets the queryable Payment policy Id.
|
|
37773
|
+
*/
|
|
37774
|
+
paymentPolicyId?: string;
|
|
37165
37775
|
/**
|
|
37166
37776
|
* Gets or sets a value indicating whether to only return sessions with future slots available.
|
|
37167
37777
|
*/
|
|
@@ -42261,6 +42871,10 @@ type TemplateDetail = {
|
|
|
42261
42871
|
* Gets or sets the templates cancellation policy id.
|
|
42262
42872
|
*/
|
|
42263
42873
|
cancellationPolicyId?: string;
|
|
42874
|
+
/**
|
|
42875
|
+
* Gets or sets the templates payment policy id.
|
|
42876
|
+
*/
|
|
42877
|
+
paymentPolicyId?: string;
|
|
42264
42878
|
/**
|
|
42265
42879
|
* Gets or sets the templates name.
|
|
42266
42880
|
*/
|
|
@@ -42394,6 +43008,10 @@ type TemplateDetailPatch = {
|
|
|
42394
43008
|
* Gets or sets the templates cancellation policy id.
|
|
42395
43009
|
*/
|
|
42396
43010
|
cancellationPolicyId?: string;
|
|
43011
|
+
/**
|
|
43012
|
+
* Gets or sets the templates payment policy id.
|
|
43013
|
+
*/
|
|
43014
|
+
paymentPolicyId?: string;
|
|
42397
43015
|
/**
|
|
42398
43016
|
* Gets or sets the templates name.
|
|
42399
43017
|
*/
|
|
@@ -51500,6 +52118,7 @@ declare class ApiClient {
|
|
|
51500
52118
|
readonly orderItems: OrderItemsService;
|
|
51501
52119
|
readonly orders: OrdersService;
|
|
51502
52120
|
readonly orgCourseUtilisation: OrgCourseUtilisationService;
|
|
52121
|
+
readonly paymentPolicies: PaymentPoliciesService;
|
|
51503
52122
|
readonly payments: PaymentsService;
|
|
51504
52123
|
readonly permissions: PermissionsService;
|
|
51505
52124
|
readonly places: PlacesService;
|
|
@@ -51699,4 +52318,4 @@ type ValidationResultModel = {
|
|
|
51699
52318
|
readonly errors?: Array<ValidationError> | null;
|
|
51700
52319
|
};
|
|
51701
52320
|
|
|
51702
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, 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, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, 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, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, 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, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProvidersService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, 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, TemplateDeal, 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, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, 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 };
|
|
52321
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, 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, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, 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, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProvidersService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, 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, TemplateDeal, 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, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, 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 };
|