reach-api-sdk 1.0.120 → 1.0.122

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.
@@ -2026,6 +2026,125 @@ declare enum CustomerCancellationOption {
2026
2026
  UNDETERMINED = "Undetermined"
2027
2027
  }
2028
2028
 
2029
+ /**
2030
+ * Controls the DealType.
2031
+ */
2032
+ declare enum DealDiscountType {
2033
+ PERCENT = "Percent",
2034
+ FIXED = "Fixed"
2035
+ }
2036
+
2037
+ /**
2038
+ * Controls the DealTarget.
2039
+ */
2040
+ declare enum DealTarget {
2041
+ ALL_ACTIVITIES = "AllActivities",
2042
+ SPECIFIC_ACTIVITIES = "SpecificActivities"
2043
+ }
2044
+
2045
+ /**
2046
+ * Controls the DealType.
2047
+ */
2048
+ declare enum DealType {
2049
+ MULTI_ITEM = "MultiItem",
2050
+ MULTI_PARTICIPANT = "MultiParticipant",
2051
+ EARLY_BIRD_DISCOUNT = "EarlyBirdDiscount"
2052
+ }
2053
+
2054
+ /**
2055
+ * Represents a deal within the Reach application.
2056
+ */
2057
+ type Deal = {
2058
+ /**
2059
+ * Gets or sets the entities Id.
2060
+ */
2061
+ id?: string;
2062
+ /**
2063
+ * Gets or sets the tenant Id.
2064
+ */
2065
+ tenantId: string;
2066
+ /**
2067
+ * Gets or sets the created date of this entity.
2068
+ */
2069
+ dateCreated: string;
2070
+ /**
2071
+ * Gets or sets the last modified date of this entity.
2072
+ */
2073
+ dateModified: string;
2074
+ /**
2075
+ * Gets or sets the modified by Id.
2076
+ */
2077
+ modifiedById?: string | null;
2078
+ /**
2079
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
2080
+ */
2081
+ isLive: boolean;
2082
+ /**
2083
+ * Gets or sets the survey name.
2084
+ */
2085
+ name?: string | null;
2086
+ type?: DealType;
2087
+ /**
2088
+ * Gets or sets the required items.
2089
+ */
2090
+ requiredItems?: number;
2091
+ discountType?: DealDiscountType;
2092
+ /**
2093
+ * Gets or sets the value of the discount applied to the deal.
2094
+ * This can represent a percentage or a fixed amount, depending on the Reach.Models.Deal.DiscountType.
2095
+ */
2096
+ discountValue?: number;
2097
+ target?: DealTarget;
2098
+ /**
2099
+ * Gets the venues shortened formatted address.
2100
+ */
2101
+ readonly typeLabel?: string | null;
2102
+ };
2103
+
2104
+ /**
2105
+ * Represents an order deal Reach.Models.OrderDeal within the Reach application.
2106
+ */
2107
+ type OrderDeal = {
2108
+ /**
2109
+ * Gets or sets the entities Id.
2110
+ */
2111
+ id?: string;
2112
+ /**
2113
+ * Gets or sets the tenant Id.
2114
+ */
2115
+ tenantId: string;
2116
+ /**
2117
+ * Gets or sets the created date of this entity.
2118
+ */
2119
+ dateCreated: string;
2120
+ /**
2121
+ * Gets or sets the last modified date of this entity.
2122
+ */
2123
+ dateModified: string;
2124
+ /**
2125
+ * Gets or sets the modified by Id.
2126
+ */
2127
+ modifiedById?: string | null;
2128
+ /**
2129
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
2130
+ */
2131
+ isLive: boolean;
2132
+ /**
2133
+ * Gets or sets the order id.
2134
+ */
2135
+ orderId?: string | null;
2136
+ /**
2137
+ * Gets or sets the slot id.
2138
+ */
2139
+ dealId?: string | null;
2140
+ /**
2141
+ * Gets or sets the deal value.
2142
+ */
2143
+ dealValue?: number;
2144
+ order?: Order;
2145
+ deal?: Deal;
2146
+ };
2147
+
2029
2148
  /**
2030
2149
  * The Opportunity booking status, indicating whether the opportunity has an active booking or has been attended.
2031
2150
  */
@@ -3208,6 +3327,10 @@ type Session = {
3208
3327
  * Gets or sets the venues referenced images.
3209
3328
  */
3210
3329
  images?: Array<Image> | null;
3330
+ /**
3331
+ * Gets or sets the deals.
3332
+ */
3333
+ deals?: Array<Deal> | null;
3211
3334
  activityType?: ActivityType;
3212
3335
  sessionType?: SessionType;
3213
3336
  /**
@@ -4410,6 +4533,10 @@ type Course = {
4410
4533
  * Gets or sets the venues referenced images.
4411
4534
  */
4412
4535
  images?: Array<Image> | null;
4536
+ /**
4537
+ * Gets or sets the deals.
4538
+ */
4539
+ deals?: Array<Deal> | null;
4413
4540
  activityType?: ActivityType;
4414
4541
  /**
4415
4542
  * Gets or sets the course duration, added to satisfy interface but is not applicable to courses.
@@ -4614,6 +4741,50 @@ declare enum OpportunityType {
4614
4741
  COURSE = "Course"
4615
4742
  }
4616
4743
 
4744
+ /**
4745
+ * Represents an order deal Reach.Models.OrderItemDeal within the Reach application.
4746
+ */
4747
+ type OrderItemDeal = {
4748
+ /**
4749
+ * Gets or sets the entities Id.
4750
+ */
4751
+ id?: string;
4752
+ /**
4753
+ * Gets or sets the tenant Id.
4754
+ */
4755
+ tenantId: string;
4756
+ /**
4757
+ * Gets or sets the created date of this entity.
4758
+ */
4759
+ dateCreated: string;
4760
+ /**
4761
+ * Gets or sets the last modified date of this entity.
4762
+ */
4763
+ dateModified: string;
4764
+ /**
4765
+ * Gets or sets the modified by Id.
4766
+ */
4767
+ modifiedById?: string | null;
4768
+ /**
4769
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
4770
+ */
4771
+ isLive: boolean;
4772
+ /**
4773
+ * Gets or sets the order item id.
4774
+ */
4775
+ orderItemId?: string | null;
4776
+ /**
4777
+ * Gets or sets the slot id.
4778
+ */
4779
+ dealId?: string | null;
4780
+ /**
4781
+ * Gets or sets the deal value.
4782
+ */
4783
+ dealValue?: number;
4784
+ orderItem?: OrderItem;
4785
+ deal?: Deal;
4786
+ };
4787
+
4617
4788
  /**
4618
4789
  * The OrderItem status.
4619
4790
  */
@@ -4713,6 +4884,10 @@ type OrderItem = {
4713
4884
  scheduledSession?: ScheduledSession;
4714
4885
  course?: Course;
4715
4886
  offer?: Offer;
4887
+ /**
4888
+ * Gets or sets the order item deals.
4889
+ */
4890
+ orderItemDeals?: Array<OrderItemDeal> | null;
4716
4891
  opportunityType?: OpportunityType;
4717
4892
  opportunity?: IOpportunity;
4718
4893
  cancellable?: CustomerCancellationOption;
@@ -4913,6 +5088,10 @@ type Order = {
4913
5088
  * Gets a value indicating whether the order is a lease and that it is currently valid.
4914
5089
  */
4915
5090
  readonly isLeaseAndIsValid?: boolean;
5091
+ /**
5092
+ * Gets or sets the sub total for the order.
5093
+ */
5094
+ subTotal: number;
4916
5095
  /**
4917
5096
  * Gets or sets the total payment due for the order.
4918
5097
  */
@@ -4925,6 +5104,10 @@ type Order = {
4925
5104
  * Gets or sets the total payment due for the order.
4926
5105
  */
4927
5106
  totalPaymentTax: number;
5107
+ /**
5108
+ * Gets or sets the total deal value for the order.
5109
+ */
5110
+ totalDealValue: number;
4928
5111
  /**
4929
5112
  * Gets or sets the application fee.
4930
5113
  */
@@ -5033,6 +5216,10 @@ type Order = {
5033
5216
  * Gets or sets the orders payments.
5034
5217
  */
5035
5218
  payments?: Array<Payment> | null;
5219
+ /**
5220
+ * Gets or sets the order deals.
5221
+ */
5222
+ orderDeals?: Array<OrderDeal> | null;
5036
5223
  cancellable?: CustomerCancellationOption;
5037
5224
  };
5038
5225
 
@@ -6019,6 +6206,56 @@ declare class CountryService {
6019
6206
  }): CancelablePromise<Array<Country>>;
6020
6207
  }
6021
6208
 
6209
+ /**
6210
+ * Post model for session offers.
6211
+ */
6212
+ type CreateDeal = {
6213
+ /**
6214
+ * Gets or sets the entities Id.
6215
+ */
6216
+ id?: string;
6217
+ /**
6218
+ * Gets or sets the tenant Id.
6219
+ */
6220
+ tenantId: string;
6221
+ /**
6222
+ * Gets or sets the created date of this entity.
6223
+ */
6224
+ dateCreated: string;
6225
+ /**
6226
+ * Gets or sets the last modified date of this entity.
6227
+ */
6228
+ dateModified: string;
6229
+ /**
6230
+ * Gets or sets the modified by Id.
6231
+ */
6232
+ modifiedById?: string | null;
6233
+ /**
6234
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
6235
+ */
6236
+ isLive: boolean;
6237
+ /**
6238
+ * Gets or sets the survey name.
6239
+ */
6240
+ name?: string | null;
6241
+ type?: DealType;
6242
+ /**
6243
+ * Gets or sets the required items.
6244
+ */
6245
+ requiredItems?: number;
6246
+ discountType?: DealDiscountType;
6247
+ /**
6248
+ * Gets or sets the value of the discount applied to the deal.
6249
+ * This can represent a percentage or a fixed amount, depending on the Reach.Models.Deal.DiscountType.
6250
+ */
6251
+ discountValue?: number;
6252
+ target?: DealTarget;
6253
+ /**
6254
+ * Gets the venues shortened formatted address.
6255
+ */
6256
+ readonly typeLabel?: string | null;
6257
+ };
6258
+
6022
6259
  /**
6023
6260
  * email settings.
6024
6261
  */
@@ -6204,6 +6441,10 @@ type CourseCreate = {
6204
6441
  */
6205
6442
  offers?: Array<CreateOffer> | null;
6206
6443
  emailSettings?: CreateEmailSettings;
6444
+ /**
6445
+ * Gets or sets the session deals.
6446
+ */
6447
+ deals?: Array<CreateDeal> | null;
6207
6448
  };
6208
6449
 
6209
6450
  /**
@@ -6520,6 +6761,36 @@ declare class CoursesService {
6520
6761
  * @throws ApiError
6521
6762
  */
6522
6763
  batchSendPostActivityCompletionsEmails(): CancelablePromise<any>;
6764
+ /**
6765
+ * Asign deal to course />.
6766
+ * @returns Course Success
6767
+ * @throws ApiError
6768
+ */
6769
+ assignDeal({ courseId, dealId, }: {
6770
+ /**
6771
+ * The course Id.
6772
+ */
6773
+ courseId: string;
6774
+ /**
6775
+ * The deal Id.
6776
+ */
6777
+ dealId: string;
6778
+ }): CancelablePromise<Course>;
6779
+ /**
6780
+ * Unasign deal from course />.
6781
+ * @returns Course Success
6782
+ * @throws ApiError
6783
+ */
6784
+ unassignDeal({ courseId, dealId, }: {
6785
+ /**
6786
+ * The course Id.
6787
+ */
6788
+ courseId: string;
6789
+ /**
6790
+ * The deal Id.
6791
+ */
6792
+ dealId: string;
6793
+ }): CancelablePromise<Course>;
6523
6794
  /**
6524
6795
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
6525
6796
  * @returns Course Success
@@ -8902,34 +9173,9 @@ declare class CustomersService {
8902
9173
  }
8903
9174
 
8904
9175
  /**
8905
- * Controls the DealType.
8906
- */
8907
- declare enum DealDiscountType {
8908
- PERCENT = "Percent",
8909
- FIXED = "Fixed"
8910
- }
8911
-
8912
- /**
8913
- * Controls the DealTarget.
8914
- */
8915
- declare enum DealTarget {
8916
- ALL_ACTIVITIES = "AllActivities",
8917
- SPECIFIC_ACTIVITIES = "SpecificActivities"
8918
- }
8919
-
8920
- /**
8921
- * Controls the DealType.
8922
- */
8923
- declare enum DealType {
8924
- MULTI_ITEM = "MultiItem",
8925
- MULTI_PARTICIPANT = "MultiParticipant",
8926
- EARLY_BIRD_DISCOUNT = "EarlyBirdDiscount"
8927
- }
8928
-
8929
- /**
8930
- * Represents a deal within the Reach application.
9176
+ * Represents a relationship between a deal and a course or session.
8931
9177
  */
8932
- type Deal = {
9178
+ type DealActivity = {
8933
9179
  /**
8934
9180
  * Gets or sets the entities Id.
8935
9181
  */
@@ -8955,25 +9201,507 @@ type Deal = {
8955
9201
  */
8956
9202
  isLive: boolean;
8957
9203
  /**
8958
- * Gets or sets the survey name.
9204
+ * Gets or sets the deal id.
8959
9205
  */
8960
- name?: string | null;
8961
- type?: DealType;
9206
+ dealId?: string | null;
8962
9207
  /**
8963
- * Gets or sets the required items.
9208
+ * Gets or sets the course id.
8964
9209
  */
8965
- requiredItems?: number;
8966
- discountType?: DealDiscountType;
9210
+ courseId?: string | null;
8967
9211
  /**
8968
- * Gets or sets the value of the discount applied to the deal.
8969
- * This can represent a percentage or a fixed amount, depending on the Reach.Models.Deal.DiscountType.
9212
+ * Gets or sets the session id.
8970
9213
  */
8971
- discountValue?: number;
8972
- target?: DealTarget;
9214
+ sessionId?: string | null;
9215
+ deal?: Deal;
9216
+ };
9217
+
9218
+ type DealActivityPage = {
9219
+ pagination: Pagination;
9220
+ readonly items: Array<DealActivity>;
9221
+ };
9222
+
9223
+ /**
9224
+ * Post model for deal activity updates.
9225
+ */
9226
+ type DealActivityPatch = {
8973
9227
  /**
8974
- * Gets the venues shortened formatted address.
9228
+ * Gets or sets the tenant Id.
8975
9229
  */
8976
- readonly typeLabel?: string | null;
9230
+ tenantId: string;
9231
+ /**
9232
+ * Gets or sets the Id.
9233
+ */
9234
+ id: string;
9235
+ /**
9236
+ * Gets or sets the deal id.
9237
+ */
9238
+ dealId?: string | null;
9239
+ /**
9240
+ * Gets or sets the course id.
9241
+ */
9242
+ courseId?: string | null;
9243
+ /**
9244
+ * Gets or sets the session id.
9245
+ */
9246
+ sessionId?: string | null;
9247
+ };
9248
+
9249
+ /**
9250
+ * Post model for deal activity inserts.
9251
+ */
9252
+ type DealActivityPost = {
9253
+ /**
9254
+ * Gets or sets the tenant Id.
9255
+ */
9256
+ tenantId: string;
9257
+ /**
9258
+ * Gets or sets the deal id.
9259
+ */
9260
+ dealId?: string | null;
9261
+ /**
9262
+ * Gets or sets the course id.
9263
+ */
9264
+ courseId?: string | null;
9265
+ /**
9266
+ * Gets or sets the session id.
9267
+ */
9268
+ sessionId?: string | null;
9269
+ };
9270
+
9271
+ declare class DealActivitiesService {
9272
+ readonly httpRequest: BaseHttpRequest;
9273
+ constructor(httpRequest: BaseHttpRequest);
9274
+ /**
9275
+ * Updates the assigned activities for the deal />.
9276
+ * @returns any Success
9277
+ * @throws ApiError
9278
+ */
9279
+ updateDealActivityAssignments({ dealId, requestBody, }: {
9280
+ /**
9281
+ * The user Id.
9282
+ */
9283
+ dealId: string;
9284
+ /**
9285
+ * The post model.
9286
+ */
9287
+ requestBody?: Array<DealActivityPost>;
9288
+ }): CancelablePromise<any>;
9289
+ /**
9290
+ * Updates the assigned deals for the activity />.
9291
+ * @returns any Success
9292
+ * @throws ApiError
9293
+ */
9294
+ updateActivityDealAssignments({ activityId, requestBody, }: {
9295
+ /**
9296
+ * The venue Id.
9297
+ */
9298
+ activityId: string;
9299
+ /**
9300
+ * The post model.
9301
+ */
9302
+ requestBody?: Array<DealActivityPost>;
9303
+ }): CancelablePromise<any>;
9304
+ /**
9305
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
9306
+ * @returns DealActivity Success
9307
+ * @throws ApiError
9308
+ */
9309
+ post({ requestBody, }: {
9310
+ /**
9311
+ * The <typeparamref name="TObject" /> model.
9312
+ */
9313
+ requestBody?: DealActivityPost;
9314
+ }): CancelablePromise<DealActivity>;
9315
+ /**
9316
+ * Patches the resource.
9317
+ * @returns DealActivity Success
9318
+ * @throws ApiError
9319
+ */
9320
+ patch({ requestBody, }: {
9321
+ /**
9322
+ * The <typeparamref name="TObject" /> model.
9323
+ */
9324
+ requestBody?: DealActivityPatch;
9325
+ }): CancelablePromise<DealActivity>;
9326
+ /**
9327
+ * Inserts a list of resources.
9328
+ * @returns DealActivity Success
9329
+ * @throws ApiError
9330
+ */
9331
+ postList({ requestBody, }: {
9332
+ /**
9333
+ * The list of <typeparamref name="TObject" />.
9334
+ */
9335
+ requestBody?: Array<DealActivityPost>;
9336
+ }): CancelablePromise<Array<DealActivity>>;
9337
+ /**
9338
+ * Patches the resource.
9339
+ * @returns DealActivity Success
9340
+ * @throws ApiError
9341
+ */
9342
+ patchWithReferences({ requestBody, }: {
9343
+ /**
9344
+ * The <typeparamref name="TObject" /> model.
9345
+ */
9346
+ requestBody?: DealActivityPatch;
9347
+ }): CancelablePromise<DealActivity>;
9348
+ /**
9349
+ * Deletes the resource.
9350
+ * @returns any Success
9351
+ * @throws ApiError
9352
+ */
9353
+ deleteByObject({ requestBody, }: {
9354
+ /**
9355
+ * The <typeparamref name="TObject" /> model.
9356
+ */
9357
+ requestBody?: DealActivity;
9358
+ }): CancelablePromise<any>;
9359
+ /**
9360
+ * Gets a list of resources.
9361
+ * @returns DealActivityPage Success
9362
+ * @throws ApiError
9363
+ */
9364
+ getPage({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9365
+ /**
9366
+ * Gets or sets the queryable deal id.
9367
+ */
9368
+ dealId?: string;
9369
+ /**
9370
+ * Gets or sets the queryable dealids.
9371
+ */
9372
+ dealIds?: Array<string>;
9373
+ /**
9374
+ * Gets or sets the queryable course id.
9375
+ */
9376
+ courseId?: string;
9377
+ /**
9378
+ * Gets or sets the queryable course ids.
9379
+ */
9380
+ courseIds?: Array<string>;
9381
+ /**
9382
+ * Gets or sets the queryable session id.
9383
+ */
9384
+ sessionId?: string;
9385
+ /**
9386
+ * Gets or sets the queryable session ids.
9387
+ */
9388
+ sessionIds?: Array<string>;
9389
+ /**
9390
+ * Gets or sets the page number for paged queries.
9391
+ */
9392
+ pageNumber?: number;
9393
+ /**
9394
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
9395
+ */
9396
+ take?: number;
9397
+ /**
9398
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
9399
+ */
9400
+ limitListRequests?: boolean;
9401
+ /**
9402
+ * Gets or sets the Tenant Id.
9403
+ */
9404
+ tenantId?: string;
9405
+ /**
9406
+ * Gets or sets the Modifed By Id.
9407
+ */
9408
+ modifiedById?: string;
9409
+ /**
9410
+ * Gets or sets the Modifed By Ids.
9411
+ */
9412
+ modifiedByIds?: Array<string>;
9413
+ /**
9414
+ * Gets or sets the Date Created greater than equal to.
9415
+ */
9416
+ dateCreatedGte?: string;
9417
+ /**
9418
+ * Gets or sets the Date Created less than equal to.
9419
+ */
9420
+ dateCreatedLte?: string;
9421
+ /**
9422
+ * Gets or sets the queryable only is live status.
9423
+ */
9424
+ isLive?: boolean;
9425
+ /**
9426
+ * Gets or sets the sort order direction.
9427
+ */
9428
+ sortOrderDirection?: SearchSortOrderDirection;
9429
+ }): CancelablePromise<DealActivityPage>;
9430
+ /**
9431
+ * Deletes the resource.
9432
+ * @returns any Success
9433
+ * @throws ApiError
9434
+ */
9435
+ deleteById({ id, }: {
9436
+ /**
9437
+ * The <typeparamref name="TObject" /> id.
9438
+ */
9439
+ id: string;
9440
+ }): CancelablePromise<any>;
9441
+ /**
9442
+ * Gets the resource by its Id.
9443
+ * @returns DealActivity Success
9444
+ * @throws ApiError
9445
+ */
9446
+ getObject({ id, }: {
9447
+ /**
9448
+ * The <typeparamref name="TObject" /> id.
9449
+ */
9450
+ id: string;
9451
+ }): CancelablePromise<DealActivity>;
9452
+ /**
9453
+ * Returns a value indicating whether the resource is deletable.
9454
+ * @returns boolean Success
9455
+ * @throws ApiError
9456
+ */
9457
+ canDelete({ id, }: {
9458
+ /**
9459
+ * The <typeparamref name="TObject" /> id.
9460
+ */
9461
+ id: string;
9462
+ }): CancelablePromise<boolean>;
9463
+ /**
9464
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
9465
+ * @returns boolean Success
9466
+ * @throws ApiError
9467
+ */
9468
+ exists({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9469
+ /**
9470
+ * Gets or sets the queryable deal id.
9471
+ */
9472
+ dealId?: string;
9473
+ /**
9474
+ * Gets or sets the queryable dealids.
9475
+ */
9476
+ dealIds?: Array<string>;
9477
+ /**
9478
+ * Gets or sets the queryable course id.
9479
+ */
9480
+ courseId?: string;
9481
+ /**
9482
+ * Gets or sets the queryable course ids.
9483
+ */
9484
+ courseIds?: Array<string>;
9485
+ /**
9486
+ * Gets or sets the queryable session id.
9487
+ */
9488
+ sessionId?: string;
9489
+ /**
9490
+ * Gets or sets the queryable session ids.
9491
+ */
9492
+ sessionIds?: Array<string>;
9493
+ /**
9494
+ * Gets or sets the page number for paged queries.
9495
+ */
9496
+ pageNumber?: number;
9497
+ /**
9498
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
9499
+ */
9500
+ take?: number;
9501
+ /**
9502
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
9503
+ */
9504
+ limitListRequests?: boolean;
9505
+ /**
9506
+ * Gets or sets the Tenant Id.
9507
+ */
9508
+ tenantId?: string;
9509
+ /**
9510
+ * Gets or sets the Modifed By Id.
9511
+ */
9512
+ modifiedById?: string;
9513
+ /**
9514
+ * Gets or sets the Modifed By Ids.
9515
+ */
9516
+ modifiedByIds?: Array<string>;
9517
+ /**
9518
+ * Gets or sets the Date Created greater than equal to.
9519
+ */
9520
+ dateCreatedGte?: string;
9521
+ /**
9522
+ * Gets or sets the Date Created less than equal to.
9523
+ */
9524
+ dateCreatedLte?: string;
9525
+ /**
9526
+ * Gets or sets the queryable only is live status.
9527
+ */
9528
+ isLive?: boolean;
9529
+ /**
9530
+ * Gets or sets the sort order direction.
9531
+ */
9532
+ sortOrderDirection?: SearchSortOrderDirection;
9533
+ }): CancelablePromise<boolean>;
9534
+ /**
9535
+ * Gets a list of resources unpaged and without references.
9536
+ * @returns DealActivity Success
9537
+ * @throws ApiError
9538
+ */
9539
+ getListWithoutReferences({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9540
+ /**
9541
+ * Gets or sets the queryable deal id.
9542
+ */
9543
+ dealId?: string;
9544
+ /**
9545
+ * Gets or sets the queryable dealids.
9546
+ */
9547
+ dealIds?: Array<string>;
9548
+ /**
9549
+ * Gets or sets the queryable course id.
9550
+ */
9551
+ courseId?: string;
9552
+ /**
9553
+ * Gets or sets the queryable course ids.
9554
+ */
9555
+ courseIds?: Array<string>;
9556
+ /**
9557
+ * Gets or sets the queryable session id.
9558
+ */
9559
+ sessionId?: string;
9560
+ /**
9561
+ * Gets or sets the queryable session ids.
9562
+ */
9563
+ sessionIds?: Array<string>;
9564
+ /**
9565
+ * Gets or sets the page number for paged queries.
9566
+ */
9567
+ pageNumber?: number;
9568
+ /**
9569
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
9570
+ */
9571
+ take?: number;
9572
+ /**
9573
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
9574
+ */
9575
+ limitListRequests?: boolean;
9576
+ /**
9577
+ * Gets or sets the Tenant Id.
9578
+ */
9579
+ tenantId?: string;
9580
+ /**
9581
+ * Gets or sets the Modifed By Id.
9582
+ */
9583
+ modifiedById?: string;
9584
+ /**
9585
+ * Gets or sets the Modifed By Ids.
9586
+ */
9587
+ modifiedByIds?: Array<string>;
9588
+ /**
9589
+ * Gets or sets the Date Created greater than equal to.
9590
+ */
9591
+ dateCreatedGte?: string;
9592
+ /**
9593
+ * Gets or sets the Date Created less than equal to.
9594
+ */
9595
+ dateCreatedLte?: string;
9596
+ /**
9597
+ * Gets or sets the queryable only is live status.
9598
+ */
9599
+ isLive?: boolean;
9600
+ /**
9601
+ * Gets or sets the sort order direction.
9602
+ */
9603
+ sortOrderDirection?: SearchSortOrderDirection;
9604
+ }): CancelablePromise<Array<DealActivity>>;
9605
+ /**
9606
+ * Gets a list of resources.
9607
+ * @returns DealActivity Success
9608
+ * @throws ApiError
9609
+ */
9610
+ getListIdName({ dealId, dealIds, courseId, courseIds, sessionId, sessionIds, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9611
+ /**
9612
+ * Gets or sets the queryable deal id.
9613
+ */
9614
+ dealId?: string;
9615
+ /**
9616
+ * Gets or sets the queryable dealids.
9617
+ */
9618
+ dealIds?: Array<string>;
9619
+ /**
9620
+ * Gets or sets the queryable course id.
9621
+ */
9622
+ courseId?: string;
9623
+ /**
9624
+ * Gets or sets the queryable course ids.
9625
+ */
9626
+ courseIds?: Array<string>;
9627
+ /**
9628
+ * Gets or sets the queryable session id.
9629
+ */
9630
+ sessionId?: string;
9631
+ /**
9632
+ * Gets or sets the queryable session ids.
9633
+ */
9634
+ sessionIds?: Array<string>;
9635
+ /**
9636
+ * Gets or sets the page number for paged queries.
9637
+ */
9638
+ pageNumber?: number;
9639
+ /**
9640
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
9641
+ */
9642
+ take?: number;
9643
+ /**
9644
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
9645
+ */
9646
+ limitListRequests?: boolean;
9647
+ /**
9648
+ * Gets or sets the Tenant Id.
9649
+ */
9650
+ tenantId?: string;
9651
+ /**
9652
+ * Gets or sets the Modifed By Id.
9653
+ */
9654
+ modifiedById?: string;
9655
+ /**
9656
+ * Gets or sets the Modifed By Ids.
9657
+ */
9658
+ modifiedByIds?: Array<string>;
9659
+ /**
9660
+ * Gets or sets the Date Created greater than equal to.
9661
+ */
9662
+ dateCreatedGte?: string;
9663
+ /**
9664
+ * Gets or sets the Date Created less than equal to.
9665
+ */
9666
+ dateCreatedLte?: string;
9667
+ /**
9668
+ * Gets or sets the queryable only is live status.
9669
+ */
9670
+ isLive?: boolean;
9671
+ /**
9672
+ * Gets or sets the sort order direction.
9673
+ */
9674
+ sortOrderDirection?: SearchSortOrderDirection;
9675
+ }): CancelablePromise<Array<DealActivity>>;
9676
+ }
9677
+
9678
+ /**
9679
+ * Post model for deal inserts.
9680
+ */
9681
+ type DealCreate = {
9682
+ /**
9683
+ * Gets or sets the tenant Id.
9684
+ */
9685
+ tenantId: string;
9686
+ /**
9687
+ * Gets or sets the deal id.
9688
+ */
9689
+ id: string;
9690
+ /**
9691
+ * Gets or sets the deal name.
9692
+ */
9693
+ name: string;
9694
+ type: DealType;
9695
+ /**
9696
+ * Gets or sets the number of required items for the deal.
9697
+ */
9698
+ requiredItems: number;
9699
+ discountType: DealDiscountType;
9700
+ /**
9701
+ * Gets or sets the value of the discount applied to the deal.
9702
+ */
9703
+ discountValue: number;
9704
+ target: DealTarget;
8977
9705
  };
8978
9706
 
8979
9707
  type DealPage = {
@@ -9038,6 +9766,23 @@ type DealPost = {
9038
9766
  declare class DealsService {
9039
9767
  readonly httpRequest: BaseHttpRequest;
9040
9768
  constructor(httpRequest: BaseHttpRequest);
9769
+ /**
9770
+ * Creates a deal.
9771
+ * @returns Deal Success
9772
+ * @throws ApiError
9773
+ */
9774
+ create({ requestBody, }: {
9775
+ /**
9776
+ * The deal to be created.
9777
+ */
9778
+ requestBody?: DealCreate;
9779
+ }): CancelablePromise<Deal>;
9780
+ /**
9781
+ * Generates an id for use in a Deal create client side process.
9782
+ * @returns string Success
9783
+ * @throws ApiError
9784
+ */
9785
+ generateId(): CancelablePromise<string>;
9041
9786
  /**
9042
9787
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
9043
9788
  * @returns Deal Success
@@ -9098,11 +9843,19 @@ declare class DealsService {
9098
9843
  * @returns DealPage Success
9099
9844
  * @throws ApiError
9100
9845
  */
9101
- getPage({ id, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9846
+ getPage({ id, ids, target, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9102
9847
  /**
9103
- * Gets or sets the queryable Survey Id.
9848
+ * Gets or sets the queryable Deal Id.
9104
9849
  */
9105
9850
  id?: string;
9851
+ /**
9852
+ * Gets or sets the queryable Deal ids.
9853
+ */
9854
+ ids?: Array<string>;
9855
+ /**
9856
+ * Gets or sets the queryable target.
9857
+ */
9858
+ target?: DealTarget;
9106
9859
  /**
9107
9860
  * Gets or sets the page number for paged queries.
9108
9861
  */
@@ -9182,11 +9935,19 @@ declare class DealsService {
9182
9935
  * @returns boolean Success
9183
9936
  * @throws ApiError
9184
9937
  */
9185
- exists({ id, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9938
+ exists({ id, ids, target, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9186
9939
  /**
9187
- * Gets or sets the queryable Survey Id.
9940
+ * Gets or sets the queryable Deal Id.
9188
9941
  */
9189
9942
  id?: string;
9943
+ /**
9944
+ * Gets or sets the queryable Deal ids.
9945
+ */
9946
+ ids?: Array<string>;
9947
+ /**
9948
+ * Gets or sets the queryable target.
9949
+ */
9950
+ target?: DealTarget;
9190
9951
  /**
9191
9952
  * Gets or sets the page number for paged queries.
9192
9953
  */
@@ -9233,11 +9994,19 @@ declare class DealsService {
9233
9994
  * @returns Deal Success
9234
9995
  * @throws ApiError
9235
9996
  */
9236
- getListWithoutReferences({ id, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9997
+ getListWithoutReferences({ id, ids, target, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9237
9998
  /**
9238
- * Gets or sets the queryable Survey Id.
9999
+ * Gets or sets the queryable Deal Id.
9239
10000
  */
9240
10001
  id?: string;
10002
+ /**
10003
+ * Gets or sets the queryable Deal ids.
10004
+ */
10005
+ ids?: Array<string>;
10006
+ /**
10007
+ * Gets or sets the queryable target.
10008
+ */
10009
+ target?: DealTarget;
9241
10010
  /**
9242
10011
  * Gets or sets the page number for paged queries.
9243
10012
  */
@@ -9284,11 +10053,19 @@ declare class DealsService {
9284
10053
  * @returns Deal Success
9285
10054
  * @throws ApiError
9286
10055
  */
9287
- getListIdName({ id, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
10056
+ getListIdName({ id, ids, target, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
9288
10057
  /**
9289
- * Gets or sets the queryable Survey Id.
10058
+ * Gets or sets the queryable Deal Id.
9290
10059
  */
9291
10060
  id?: string;
10061
+ /**
10062
+ * Gets or sets the queryable Deal ids.
10063
+ */
10064
+ ids?: Array<string>;
10065
+ /**
10066
+ * Gets or sets the queryable target.
10067
+ */
10068
+ target?: DealTarget;
9292
10069
  /**
9293
10070
  * Gets or sets the page number for paged queries.
9294
10071
  */
@@ -11197,6 +11974,10 @@ type GenericActivity = {
11197
11974
  * Gets or sets the offers.
11198
11975
  */
11199
11976
  offers?: Array<Offer> | null;
11977
+ /**
11978
+ * Gets or sets the offers.
11979
+ */
11980
+ deals?: Array<Deal> | null;
11200
11981
  /**
11201
11982
  * Gets or sets the waitlist.
11202
11983
  */
@@ -18445,6 +19226,18 @@ declare class OrdersService {
18445
19226
  */
18446
19227
  id: string;
18447
19228
  }): CancelablePromise<Order>;
19229
+ /**
19230
+ * Gets an Order and includes checks to ensure it is bookable.
19231
+ * Typically used when entering checkout.
19232
+ * @returns Order Success
19233
+ * @throws ApiError
19234
+ */
19235
+ updateBasket({ requestBody, }: {
19236
+ /**
19237
+ * The order.
19238
+ */
19239
+ requestBody?: Order;
19240
+ }): CancelablePromise<Order>;
18448
19241
  /**
18449
19242
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
18450
19243
  * @returns Order Success
@@ -23218,6 +24011,21 @@ declare class PublicOrdersService {
23218
24011
  */
23219
24012
  requestBody?: Array<string>;
23220
24013
  }): CancelablePromise<any>;
24014
+ /**
24015
+ * Update basket for order.
24016
+ * @returns Order Success
24017
+ * @throws ApiError
24018
+ */
24019
+ updateBasket({ xTenantSubdomain, requestBody, }: {
24020
+ /**
24021
+ * The tenants subdomain.
24022
+ */
24023
+ xTenantSubdomain?: string;
24024
+ /**
24025
+ * The Order id.
24026
+ */
24027
+ requestBody?: Order;
24028
+ }): CancelablePromise<Order>;
23221
24029
  /**
23222
24030
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
23223
24031
  * @returns Order Success
@@ -30573,6 +31381,10 @@ type SessionCreate = {
30573
31381
  */
30574
31382
  offers?: Array<CreateOffer> | null;
30575
31383
  emailSettings?: CreateEmailSettings;
31384
+ /**
31385
+ * Gets or sets the session deals.
31386
+ */
31387
+ deals?: Array<CreateDeal> | null;
30576
31388
  };
30577
31389
 
30578
31390
  declare class SessionsService {
@@ -30628,6 +31440,36 @@ declare class SessionsService {
30628
31440
  * @throws ApiError
30629
31441
  */
30630
31442
  generateId(): CancelablePromise<string>;
31443
+ /**
31444
+ * Asign deal to session />.
31445
+ * @returns Session Success
31446
+ * @throws ApiError
31447
+ */
31448
+ assignDeal({ sessionId, dealId, }: {
31449
+ /**
31450
+ * The course Id.
31451
+ */
31452
+ sessionId: string;
31453
+ /**
31454
+ * The deal Id.
31455
+ */
31456
+ dealId: string;
31457
+ }): CancelablePromise<Session>;
31458
+ /**
31459
+ * Unasign deal from session />.
31460
+ * @returns Session Success
31461
+ * @throws ApiError
31462
+ */
31463
+ unassignDeal({ sessionId, dealId, }: {
31464
+ /**
31465
+ * The course Id.
31466
+ */
31467
+ sessionId: string;
31468
+ /**
31469
+ * The deal Id.
31470
+ */
31471
+ dealId: string;
31472
+ }): CancelablePromise<Session>;
30631
31473
  /**
30632
31474
  * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
30633
31475
  * @returns Session Success
@@ -35950,6 +36792,44 @@ declare class SurveysService {
35950
36792
  }): CancelablePromise<Array<Survey>>;
35951
36793
  }
35952
36794
 
36795
+ /**
36796
+ * Represents a Template Offers within the Reach application.
36797
+ */
36798
+ type TemplateDeal = {
36799
+ /**
36800
+ * Gets or sets the entities Id.
36801
+ */
36802
+ id?: string;
36803
+ /**
36804
+ * Gets or sets the tenant Id.
36805
+ */
36806
+ tenantId: string;
36807
+ /**
36808
+ * Gets or sets the created date of this entity.
36809
+ */
36810
+ dateCreated: string;
36811
+ /**
36812
+ * Gets or sets the last modified date of this entity.
36813
+ */
36814
+ dateModified: string;
36815
+ /**
36816
+ * Gets or sets the modified by Id.
36817
+ */
36818
+ modifiedById?: string | null;
36819
+ /**
36820
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
36821
+ */
36822
+ isLive: boolean;
36823
+ /**
36824
+ * Gets or sets the template detail id.
36825
+ */
36826
+ templateDetailId?: string;
36827
+ /**
36828
+ * Gets or sets the template deal id.
36829
+ */
36830
+ dealId?: string;
36831
+ };
36832
+
35953
36833
  /**
35954
36834
  * Represents a Template Offers within the Reach application.
35955
36835
  */
@@ -36142,6 +37022,14 @@ type TemplateDetail = {
36142
37022
  * Gets or sets the templates referenced offers.
36143
37023
  */
36144
37024
  offers?: Array<TemplateOffer> | null;
37025
+ /**
37026
+ * Gets or sets the templates referenced template deals.
37027
+ */
37028
+ templateDeals?: Array<TemplateDeal> | null;
37029
+ /**
37030
+ * Gets or sets the templates referenced deals.
37031
+ */
37032
+ deals?: Array<Deal> | null;
36145
37033
  };
36146
37034
 
36147
37035
  type TemplateDetailPage = {
@@ -36263,6 +37151,10 @@ type TemplateDetailPatch = {
36263
37151
  * Gets or sets the templates referenced offers.
36264
37152
  */
36265
37153
  offers?: Array<TemplateOffer> | null;
37154
+ /**
37155
+ * Gets or sets the templates referenced deals.
37156
+ */
37157
+ deals?: Array<TemplateDeal> | null;
36266
37158
  };
36267
37159
 
36268
37160
  /**
@@ -37060,6 +37952,10 @@ type CreateTemplateDetail = {
37060
37952
  * Gets or sets the templates referenced offers.
37061
37953
  */
37062
37954
  offers?: Array<CreateOffer> | null;
37955
+ /**
37956
+ * Gets or sets the templates referenced deals.
37957
+ */
37958
+ deals?: Array<CreateDeal> | null;
37063
37959
  };
37064
37960
 
37065
37961
  /**
@@ -43433,6 +44329,7 @@ declare class ApiClient {
43433
44329
  readonly courseSessions: CourseSessionsService;
43434
44330
  readonly courseSessionSchedules: CourseSessionSchedulesService;
43435
44331
  readonly customers: CustomersService;
44332
+ readonly dealActivities: DealActivitiesService;
43436
44333
  readonly deals: DealsService;
43437
44334
  readonly emailReminderSchedules: EmailReminderSchedulesService;
43438
44335
  readonly emailSettings: EmailSettingsService;
@@ -43651,4 +44548,4 @@ type ValidationResultModel = {
43651
44548
  readonly errors?: Array<ValidationError> | null;
43652
44549
  };
43653
44550
 
43654
- 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, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, 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, 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, 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, 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 };
44551
+ 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, 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, 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, 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, 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, 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 };