reach-api-sdk 1.0.114 → 1.0.116
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 +627 -1
- package/dist/reach-sdk.js +468 -2
- package/package.json +1 -1
- package/src/apiClient.ts +6 -0
- package/src/definition/swagger.yaml +1749 -229
- package/src/index.ts +8 -0
- package/src/models/CustomDateRange.ts +21 -0
- package/src/models/CustomDateRangeOption.ts +11 -0
- package/src/models/OrderItemReport.ts +113 -0
- package/src/models/OrderItemReportPage.ts +12 -0
- package/src/models/OrderItemReportPatch.ts +18 -0
- package/src/models/OrderItemReportPost.ts +14 -0
- package/src/services/HelpersService.ts +29 -0
- package/src/services/OrderItemReportService.ts +823 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -12189,6 +12189,39 @@ declare class GeocodeService {
|
|
|
12189
12189
|
}): CancelablePromise<GeocodeResponseModel>;
|
|
12190
12190
|
}
|
|
12191
12191
|
|
|
12192
|
+
declare enum CustomDateRange {
|
|
12193
|
+
LAST7DAYS = "Last7Days",
|
|
12194
|
+
LAST14DAYS = "Last14Days",
|
|
12195
|
+
LAST28DAYS = "Last28Days",
|
|
12196
|
+
LAST30DAYS = "Last30Days",
|
|
12197
|
+
TODAY = "Today",
|
|
12198
|
+
YESTERDAY = "Yesterday",
|
|
12199
|
+
THIS_WEEK = "ThisWeek",
|
|
12200
|
+
LAST_WEEK = "LastWeek",
|
|
12201
|
+
THIS_MONTH = "ThisMonth",
|
|
12202
|
+
LAST_MONTH = "LastMonth",
|
|
12203
|
+
THIS_QUARTER = "ThisQuarter",
|
|
12204
|
+
LAST_QUARTER = "LastQuarter",
|
|
12205
|
+
THIS_YEAR = "ThisYear",
|
|
12206
|
+
LAST_YEAR = "LastYear"
|
|
12207
|
+
}
|
|
12208
|
+
|
|
12209
|
+
type CustomDateRangeOption = {
|
|
12210
|
+
value?: CustomDateRange;
|
|
12211
|
+
label?: string | null;
|
|
12212
|
+
};
|
|
12213
|
+
|
|
12214
|
+
declare class HelpersService {
|
|
12215
|
+
readonly httpRequest: BaseHttpRequest;
|
|
12216
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
12217
|
+
/**
|
|
12218
|
+
* Gets the custom date range options that can be used for filtering where CustomDateRanges can be used.
|
|
12219
|
+
* @returns CustomDateRangeOption Success
|
|
12220
|
+
* @throws ApiError
|
|
12221
|
+
*/
|
|
12222
|
+
getFilterCustomDateRangeOptions(): CancelablePromise<Array<CustomDateRangeOption>>;
|
|
12223
|
+
}
|
|
12224
|
+
|
|
12192
12225
|
/**
|
|
12193
12226
|
* HerePrediction.
|
|
12194
12227
|
*/
|
|
@@ -17203,6 +17236,597 @@ declare class OpportunityRegisterService {
|
|
|
17203
17236
|
}): CancelablePromise<Array<OpportunityRegister>>;
|
|
17204
17237
|
}
|
|
17205
17238
|
|
|
17239
|
+
/**
|
|
17240
|
+
* Represents an order item report row within the Reach application.
|
|
17241
|
+
*/
|
|
17242
|
+
type OrderItemReport = {
|
|
17243
|
+
/**
|
|
17244
|
+
* Gets or sets the entities Id.
|
|
17245
|
+
*/
|
|
17246
|
+
id?: string;
|
|
17247
|
+
/**
|
|
17248
|
+
* Gets or sets the tenant Id.
|
|
17249
|
+
*/
|
|
17250
|
+
tenantId: string;
|
|
17251
|
+
/**
|
|
17252
|
+
* Gets or sets the created date of this entity.
|
|
17253
|
+
*/
|
|
17254
|
+
dateCreated: string;
|
|
17255
|
+
/**
|
|
17256
|
+
* Gets or sets the last modified date of this entity.
|
|
17257
|
+
*/
|
|
17258
|
+
dateModified: string;
|
|
17259
|
+
/**
|
|
17260
|
+
* Gets or sets the modified by Id.
|
|
17261
|
+
*/
|
|
17262
|
+
modifiedById?: string | null;
|
|
17263
|
+
/**
|
|
17264
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
17265
|
+
*/
|
|
17266
|
+
isLive: boolean;
|
|
17267
|
+
/**
|
|
17268
|
+
* Gets or sets the customer first name.
|
|
17269
|
+
*/
|
|
17270
|
+
customerFirstName?: string | null;
|
|
17271
|
+
/**
|
|
17272
|
+
* Gets or sets the customer last name.
|
|
17273
|
+
*/
|
|
17274
|
+
customerLastName?: string | null;
|
|
17275
|
+
/**
|
|
17276
|
+
* Gets or sets the activity name.
|
|
17277
|
+
*/
|
|
17278
|
+
activityName?: string | null;
|
|
17279
|
+
/**
|
|
17280
|
+
* Gets or sets the venue name.
|
|
17281
|
+
*/
|
|
17282
|
+
venueName?: string | null;
|
|
17283
|
+
/**
|
|
17284
|
+
* Gets or sets the activity start date.
|
|
17285
|
+
*/
|
|
17286
|
+
startDate?: string;
|
|
17287
|
+
/**
|
|
17288
|
+
* Gets or sets the activity end date.
|
|
17289
|
+
*/
|
|
17290
|
+
endDate?: string;
|
|
17291
|
+
/**
|
|
17292
|
+
* Gets or sets the location.
|
|
17293
|
+
*/
|
|
17294
|
+
location?: string | null;
|
|
17295
|
+
/**
|
|
17296
|
+
* Gets or sets the programme.
|
|
17297
|
+
*/
|
|
17298
|
+
programme?: string | null;
|
|
17299
|
+
/**
|
|
17300
|
+
* Gets or sets the order number.
|
|
17301
|
+
*/
|
|
17302
|
+
orderNumber?: string | null;
|
|
17303
|
+
status?: OrderItemStatus;
|
|
17304
|
+
/**
|
|
17305
|
+
* Gets or sets whether the item has been refunded.
|
|
17306
|
+
*/
|
|
17307
|
+
refunded?: string | null;
|
|
17308
|
+
/**
|
|
17309
|
+
* Gets or sets the order date.
|
|
17310
|
+
*/
|
|
17311
|
+
orderDate?: string;
|
|
17312
|
+
/**
|
|
17313
|
+
* Gets or sets the quantity.
|
|
17314
|
+
*/
|
|
17315
|
+
quantity?: number;
|
|
17316
|
+
/**
|
|
17317
|
+
* Gets or sets the offer name.
|
|
17318
|
+
*/
|
|
17319
|
+
offerName?: string | null;
|
|
17320
|
+
/**
|
|
17321
|
+
* Gets or sets the order item value.
|
|
17322
|
+
*/
|
|
17323
|
+
orderItemValue?: number;
|
|
17324
|
+
/**
|
|
17325
|
+
* Gets or sets the currency.
|
|
17326
|
+
*/
|
|
17327
|
+
currency?: string | null;
|
|
17328
|
+
/**
|
|
17329
|
+
* Gets or sets the payment source (currently offline, or played storefront).
|
|
17330
|
+
*/
|
|
17331
|
+
paymentSource?: string | null;
|
|
17332
|
+
/**
|
|
17333
|
+
* Gets or sets the customer email.
|
|
17334
|
+
*/
|
|
17335
|
+
customerEmail?: string | null;
|
|
17336
|
+
/**
|
|
17337
|
+
* Gets or sets the customer phone.
|
|
17338
|
+
*/
|
|
17339
|
+
customerPhone?: string | null;
|
|
17340
|
+
/**
|
|
17341
|
+
* Gets or sets the customer postcode.
|
|
17342
|
+
*/
|
|
17343
|
+
customerPostCode?: string | null;
|
|
17344
|
+
};
|
|
17345
|
+
|
|
17346
|
+
type OrderItemReportPage = {
|
|
17347
|
+
pagination: Pagination;
|
|
17348
|
+
readonly items: Array<OrderItemReport>;
|
|
17349
|
+
};
|
|
17350
|
+
|
|
17351
|
+
/**
|
|
17352
|
+
* Post model for order item report updates.
|
|
17353
|
+
*/
|
|
17354
|
+
type OrderItemReportPatch = {
|
|
17355
|
+
/**
|
|
17356
|
+
* Gets or sets the tenant Id.
|
|
17357
|
+
*/
|
|
17358
|
+
tenantId: string;
|
|
17359
|
+
/**
|
|
17360
|
+
* Gets or sets the Id.
|
|
17361
|
+
*/
|
|
17362
|
+
id: string;
|
|
17363
|
+
};
|
|
17364
|
+
|
|
17365
|
+
/**
|
|
17366
|
+
* Post model for order item report inserts.
|
|
17367
|
+
*/
|
|
17368
|
+
type OrderItemReportPost = {
|
|
17369
|
+
/**
|
|
17370
|
+
* Gets or sets the tenant Id.
|
|
17371
|
+
*/
|
|
17372
|
+
tenantId: string;
|
|
17373
|
+
};
|
|
17374
|
+
|
|
17375
|
+
declare class OrderItemReportService {
|
|
17376
|
+
readonly httpRequest: BaseHttpRequest;
|
|
17377
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
17378
|
+
/**
|
|
17379
|
+
* Exports the order item list to a csv format.
|
|
17380
|
+
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
17381
|
+
* @returns any Success
|
|
17382
|
+
* @throws ApiError
|
|
17383
|
+
*/
|
|
17384
|
+
exportToCsv({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
17385
|
+
/**
|
|
17386
|
+
* Gets or sets the Venue Id.
|
|
17387
|
+
*/
|
|
17388
|
+
venueId?: string;
|
|
17389
|
+
/**
|
|
17390
|
+
* Gets or sets the User Id.
|
|
17391
|
+
*/
|
|
17392
|
+
userId?: string;
|
|
17393
|
+
/**
|
|
17394
|
+
* Gets or sets the Programme Id.
|
|
17395
|
+
*/
|
|
17396
|
+
programmeId?: string;
|
|
17397
|
+
/**
|
|
17398
|
+
* Gets or sets the starting date greater than or equal to.
|
|
17399
|
+
*/
|
|
17400
|
+
startDateGte?: string;
|
|
17401
|
+
/**
|
|
17402
|
+
* Gets or sets the starting date less than or equal to.
|
|
17403
|
+
*/
|
|
17404
|
+
startDateLte?: string;
|
|
17405
|
+
/**
|
|
17406
|
+
* Gets or sets a custom date range.
|
|
17407
|
+
*/
|
|
17408
|
+
dateRange?: CustomDateRange;
|
|
17409
|
+
/**
|
|
17410
|
+
* Gets or sets the page number for paged queries.
|
|
17411
|
+
*/
|
|
17412
|
+
pageNumber?: number;
|
|
17413
|
+
/**
|
|
17414
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
17415
|
+
*/
|
|
17416
|
+
take?: number;
|
|
17417
|
+
/**
|
|
17418
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
17419
|
+
*/
|
|
17420
|
+
limitListRequests?: boolean;
|
|
17421
|
+
/**
|
|
17422
|
+
* Gets or sets the Tenant Id.
|
|
17423
|
+
*/
|
|
17424
|
+
tenantId?: string;
|
|
17425
|
+
/**
|
|
17426
|
+
* Gets or sets the Modifed By Id.
|
|
17427
|
+
*/
|
|
17428
|
+
modifiedById?: string;
|
|
17429
|
+
/**
|
|
17430
|
+
* Gets or sets the Modifed By Ids.
|
|
17431
|
+
*/
|
|
17432
|
+
modifiedByIds?: Array<string>;
|
|
17433
|
+
/**
|
|
17434
|
+
* Gets or sets the Date Created greater than equal to.
|
|
17435
|
+
*/
|
|
17436
|
+
dateCreatedGte?: string;
|
|
17437
|
+
/**
|
|
17438
|
+
* Gets or sets the Date Created less than equal to.
|
|
17439
|
+
*/
|
|
17440
|
+
dateCreatedLte?: string;
|
|
17441
|
+
/**
|
|
17442
|
+
* Gets or sets the queryable only is live status.
|
|
17443
|
+
*/
|
|
17444
|
+
isLive?: boolean;
|
|
17445
|
+
/**
|
|
17446
|
+
* Gets or sets the sort order direction.
|
|
17447
|
+
*/
|
|
17448
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
17449
|
+
formData?: {
|
|
17450
|
+
/**
|
|
17451
|
+
* Gets or sets the auth token.
|
|
17452
|
+
*/
|
|
17453
|
+
Token?: string;
|
|
17454
|
+
};
|
|
17455
|
+
}): CancelablePromise<any>;
|
|
17456
|
+
/**
|
|
17457
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
17458
|
+
* @returns OrderItemReport Success
|
|
17459
|
+
* @throws ApiError
|
|
17460
|
+
*/
|
|
17461
|
+
post({ requestBody, }: {
|
|
17462
|
+
/**
|
|
17463
|
+
* The <typeparamref name="TObject" /> model.
|
|
17464
|
+
*/
|
|
17465
|
+
requestBody?: OrderItemReportPost;
|
|
17466
|
+
}): CancelablePromise<OrderItemReport>;
|
|
17467
|
+
/**
|
|
17468
|
+
* Patches the resource.
|
|
17469
|
+
* @returns OrderItemReport Success
|
|
17470
|
+
* @throws ApiError
|
|
17471
|
+
*/
|
|
17472
|
+
patch({ requestBody, }: {
|
|
17473
|
+
/**
|
|
17474
|
+
* The <typeparamref name="TObject" /> model.
|
|
17475
|
+
*/
|
|
17476
|
+
requestBody?: OrderItemReportPatch;
|
|
17477
|
+
}): CancelablePromise<OrderItemReport>;
|
|
17478
|
+
/**
|
|
17479
|
+
* Inserts a list of resources.
|
|
17480
|
+
* @returns OrderItemReport Success
|
|
17481
|
+
* @throws ApiError
|
|
17482
|
+
*/
|
|
17483
|
+
postList({ requestBody, }: {
|
|
17484
|
+
/**
|
|
17485
|
+
* The list of <typeparamref name="TObject" />.
|
|
17486
|
+
*/
|
|
17487
|
+
requestBody?: Array<OrderItemReportPost>;
|
|
17488
|
+
}): CancelablePromise<Array<OrderItemReport>>;
|
|
17489
|
+
/**
|
|
17490
|
+
* Patches the resource.
|
|
17491
|
+
* @returns OrderItemReport Success
|
|
17492
|
+
* @throws ApiError
|
|
17493
|
+
*/
|
|
17494
|
+
patchWithReferences({ requestBody, }: {
|
|
17495
|
+
/**
|
|
17496
|
+
* The <typeparamref name="TObject" /> model.
|
|
17497
|
+
*/
|
|
17498
|
+
requestBody?: OrderItemReportPatch;
|
|
17499
|
+
}): CancelablePromise<OrderItemReport>;
|
|
17500
|
+
/**
|
|
17501
|
+
* Deletes the resource.
|
|
17502
|
+
* @returns any Success
|
|
17503
|
+
* @throws ApiError
|
|
17504
|
+
*/
|
|
17505
|
+
deleteByObject({ requestBody, }: {
|
|
17506
|
+
/**
|
|
17507
|
+
* The <typeparamref name="TObject" /> model.
|
|
17508
|
+
*/
|
|
17509
|
+
requestBody?: OrderItemReport;
|
|
17510
|
+
}): CancelablePromise<any>;
|
|
17511
|
+
/**
|
|
17512
|
+
* Gets a list of resources.
|
|
17513
|
+
* @returns OrderItemReportPage Success
|
|
17514
|
+
* @throws ApiError
|
|
17515
|
+
*/
|
|
17516
|
+
getPage({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17517
|
+
/**
|
|
17518
|
+
* Gets or sets the Venue Id.
|
|
17519
|
+
*/
|
|
17520
|
+
venueId?: string;
|
|
17521
|
+
/**
|
|
17522
|
+
* Gets or sets the User Id.
|
|
17523
|
+
*/
|
|
17524
|
+
userId?: string;
|
|
17525
|
+
/**
|
|
17526
|
+
* Gets or sets the Programme Id.
|
|
17527
|
+
*/
|
|
17528
|
+
programmeId?: string;
|
|
17529
|
+
/**
|
|
17530
|
+
* Gets or sets the starting date greater than or equal to.
|
|
17531
|
+
*/
|
|
17532
|
+
startDateGte?: string;
|
|
17533
|
+
/**
|
|
17534
|
+
* Gets or sets the starting date less than or equal to.
|
|
17535
|
+
*/
|
|
17536
|
+
startDateLte?: string;
|
|
17537
|
+
/**
|
|
17538
|
+
* Gets or sets a custom date range.
|
|
17539
|
+
*/
|
|
17540
|
+
dateRange?: CustomDateRange;
|
|
17541
|
+
/**
|
|
17542
|
+
* Gets or sets the page number for paged queries.
|
|
17543
|
+
*/
|
|
17544
|
+
pageNumber?: number;
|
|
17545
|
+
/**
|
|
17546
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
17547
|
+
*/
|
|
17548
|
+
take?: number;
|
|
17549
|
+
/**
|
|
17550
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
17551
|
+
*/
|
|
17552
|
+
limitListRequests?: boolean;
|
|
17553
|
+
/**
|
|
17554
|
+
* Gets or sets the Tenant Id.
|
|
17555
|
+
*/
|
|
17556
|
+
tenantId?: string;
|
|
17557
|
+
/**
|
|
17558
|
+
* Gets or sets the Modifed By Id.
|
|
17559
|
+
*/
|
|
17560
|
+
modifiedById?: string;
|
|
17561
|
+
/**
|
|
17562
|
+
* Gets or sets the Modifed By Ids.
|
|
17563
|
+
*/
|
|
17564
|
+
modifiedByIds?: Array<string>;
|
|
17565
|
+
/**
|
|
17566
|
+
* Gets or sets the Date Created greater than equal to.
|
|
17567
|
+
*/
|
|
17568
|
+
dateCreatedGte?: string;
|
|
17569
|
+
/**
|
|
17570
|
+
* Gets or sets the Date Created less than equal to.
|
|
17571
|
+
*/
|
|
17572
|
+
dateCreatedLte?: string;
|
|
17573
|
+
/**
|
|
17574
|
+
* Gets or sets the queryable only is live status.
|
|
17575
|
+
*/
|
|
17576
|
+
isLive?: boolean;
|
|
17577
|
+
/**
|
|
17578
|
+
* Gets or sets the sort order direction.
|
|
17579
|
+
*/
|
|
17580
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
17581
|
+
}): CancelablePromise<OrderItemReportPage>;
|
|
17582
|
+
/**
|
|
17583
|
+
* Deletes the resource.
|
|
17584
|
+
* @returns any Success
|
|
17585
|
+
* @throws ApiError
|
|
17586
|
+
*/
|
|
17587
|
+
deleteById({ id, }: {
|
|
17588
|
+
/**
|
|
17589
|
+
* The <typeparamref name="TObject" /> id.
|
|
17590
|
+
*/
|
|
17591
|
+
id: string;
|
|
17592
|
+
}): CancelablePromise<any>;
|
|
17593
|
+
/**
|
|
17594
|
+
* Gets the resource by its Id.
|
|
17595
|
+
* @returns OrderItemReport Success
|
|
17596
|
+
* @throws ApiError
|
|
17597
|
+
*/
|
|
17598
|
+
getObject({ id, }: {
|
|
17599
|
+
/**
|
|
17600
|
+
* The <typeparamref name="TObject" /> id.
|
|
17601
|
+
*/
|
|
17602
|
+
id: string;
|
|
17603
|
+
}): CancelablePromise<OrderItemReport>;
|
|
17604
|
+
/**
|
|
17605
|
+
* Returns a value indicating whether the resource is deletable.
|
|
17606
|
+
* @returns boolean Success
|
|
17607
|
+
* @throws ApiError
|
|
17608
|
+
*/
|
|
17609
|
+
canDelete({ id, }: {
|
|
17610
|
+
/**
|
|
17611
|
+
* The <typeparamref name="TObject" /> id.
|
|
17612
|
+
*/
|
|
17613
|
+
id: string;
|
|
17614
|
+
}): CancelablePromise<boolean>;
|
|
17615
|
+
/**
|
|
17616
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
17617
|
+
* @returns boolean Success
|
|
17618
|
+
* @throws ApiError
|
|
17619
|
+
*/
|
|
17620
|
+
exists({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17621
|
+
/**
|
|
17622
|
+
* Gets or sets the Venue Id.
|
|
17623
|
+
*/
|
|
17624
|
+
venueId?: string;
|
|
17625
|
+
/**
|
|
17626
|
+
* Gets or sets the User Id.
|
|
17627
|
+
*/
|
|
17628
|
+
userId?: string;
|
|
17629
|
+
/**
|
|
17630
|
+
* Gets or sets the Programme Id.
|
|
17631
|
+
*/
|
|
17632
|
+
programmeId?: string;
|
|
17633
|
+
/**
|
|
17634
|
+
* Gets or sets the starting date greater than or equal to.
|
|
17635
|
+
*/
|
|
17636
|
+
startDateGte?: string;
|
|
17637
|
+
/**
|
|
17638
|
+
* Gets or sets the starting date less than or equal to.
|
|
17639
|
+
*/
|
|
17640
|
+
startDateLte?: string;
|
|
17641
|
+
/**
|
|
17642
|
+
* Gets or sets a custom date range.
|
|
17643
|
+
*/
|
|
17644
|
+
dateRange?: CustomDateRange;
|
|
17645
|
+
/**
|
|
17646
|
+
* Gets or sets the page number for paged queries.
|
|
17647
|
+
*/
|
|
17648
|
+
pageNumber?: number;
|
|
17649
|
+
/**
|
|
17650
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
17651
|
+
*/
|
|
17652
|
+
take?: number;
|
|
17653
|
+
/**
|
|
17654
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
17655
|
+
*/
|
|
17656
|
+
limitListRequests?: boolean;
|
|
17657
|
+
/**
|
|
17658
|
+
* Gets or sets the Tenant Id.
|
|
17659
|
+
*/
|
|
17660
|
+
tenantId?: string;
|
|
17661
|
+
/**
|
|
17662
|
+
* Gets or sets the Modifed By Id.
|
|
17663
|
+
*/
|
|
17664
|
+
modifiedById?: string;
|
|
17665
|
+
/**
|
|
17666
|
+
* Gets or sets the Modifed By Ids.
|
|
17667
|
+
*/
|
|
17668
|
+
modifiedByIds?: Array<string>;
|
|
17669
|
+
/**
|
|
17670
|
+
* Gets or sets the Date Created greater than equal to.
|
|
17671
|
+
*/
|
|
17672
|
+
dateCreatedGte?: string;
|
|
17673
|
+
/**
|
|
17674
|
+
* Gets or sets the Date Created less than equal to.
|
|
17675
|
+
*/
|
|
17676
|
+
dateCreatedLte?: string;
|
|
17677
|
+
/**
|
|
17678
|
+
* Gets or sets the queryable only is live status.
|
|
17679
|
+
*/
|
|
17680
|
+
isLive?: boolean;
|
|
17681
|
+
/**
|
|
17682
|
+
* Gets or sets the sort order direction.
|
|
17683
|
+
*/
|
|
17684
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
17685
|
+
}): CancelablePromise<boolean>;
|
|
17686
|
+
/**
|
|
17687
|
+
* Gets a list of resources unpaged and without references.
|
|
17688
|
+
* @returns OrderItemReport Success
|
|
17689
|
+
* @throws ApiError
|
|
17690
|
+
*/
|
|
17691
|
+
getListWithoutReferences({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17692
|
+
/**
|
|
17693
|
+
* Gets or sets the Venue Id.
|
|
17694
|
+
*/
|
|
17695
|
+
venueId?: string;
|
|
17696
|
+
/**
|
|
17697
|
+
* Gets or sets the User Id.
|
|
17698
|
+
*/
|
|
17699
|
+
userId?: string;
|
|
17700
|
+
/**
|
|
17701
|
+
* Gets or sets the Programme Id.
|
|
17702
|
+
*/
|
|
17703
|
+
programmeId?: string;
|
|
17704
|
+
/**
|
|
17705
|
+
* Gets or sets the starting date greater than or equal to.
|
|
17706
|
+
*/
|
|
17707
|
+
startDateGte?: string;
|
|
17708
|
+
/**
|
|
17709
|
+
* Gets or sets the starting date less than or equal to.
|
|
17710
|
+
*/
|
|
17711
|
+
startDateLte?: string;
|
|
17712
|
+
/**
|
|
17713
|
+
* Gets or sets a custom date range.
|
|
17714
|
+
*/
|
|
17715
|
+
dateRange?: CustomDateRange;
|
|
17716
|
+
/**
|
|
17717
|
+
* Gets or sets the page number for paged queries.
|
|
17718
|
+
*/
|
|
17719
|
+
pageNumber?: number;
|
|
17720
|
+
/**
|
|
17721
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
17722
|
+
*/
|
|
17723
|
+
take?: number;
|
|
17724
|
+
/**
|
|
17725
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
17726
|
+
*/
|
|
17727
|
+
limitListRequests?: boolean;
|
|
17728
|
+
/**
|
|
17729
|
+
* Gets or sets the Tenant Id.
|
|
17730
|
+
*/
|
|
17731
|
+
tenantId?: string;
|
|
17732
|
+
/**
|
|
17733
|
+
* Gets or sets the Modifed By Id.
|
|
17734
|
+
*/
|
|
17735
|
+
modifiedById?: string;
|
|
17736
|
+
/**
|
|
17737
|
+
* Gets or sets the Modifed By Ids.
|
|
17738
|
+
*/
|
|
17739
|
+
modifiedByIds?: Array<string>;
|
|
17740
|
+
/**
|
|
17741
|
+
* Gets or sets the Date Created greater than equal to.
|
|
17742
|
+
*/
|
|
17743
|
+
dateCreatedGte?: string;
|
|
17744
|
+
/**
|
|
17745
|
+
* Gets or sets the Date Created less than equal to.
|
|
17746
|
+
*/
|
|
17747
|
+
dateCreatedLte?: string;
|
|
17748
|
+
/**
|
|
17749
|
+
* Gets or sets the queryable only is live status.
|
|
17750
|
+
*/
|
|
17751
|
+
isLive?: boolean;
|
|
17752
|
+
/**
|
|
17753
|
+
* Gets or sets the sort order direction.
|
|
17754
|
+
*/
|
|
17755
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
17756
|
+
}): CancelablePromise<Array<OrderItemReport>>;
|
|
17757
|
+
/**
|
|
17758
|
+
* Gets a list of resources.
|
|
17759
|
+
* @returns OrderItemReport Success
|
|
17760
|
+
* @throws ApiError
|
|
17761
|
+
*/
|
|
17762
|
+
getListIdName({ venueId, userId, programmeId, startDateGte, startDateLte, dateRange, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17763
|
+
/**
|
|
17764
|
+
* Gets or sets the Venue Id.
|
|
17765
|
+
*/
|
|
17766
|
+
venueId?: string;
|
|
17767
|
+
/**
|
|
17768
|
+
* Gets or sets the User Id.
|
|
17769
|
+
*/
|
|
17770
|
+
userId?: string;
|
|
17771
|
+
/**
|
|
17772
|
+
* Gets or sets the Programme Id.
|
|
17773
|
+
*/
|
|
17774
|
+
programmeId?: string;
|
|
17775
|
+
/**
|
|
17776
|
+
* Gets or sets the starting date greater than or equal to.
|
|
17777
|
+
*/
|
|
17778
|
+
startDateGte?: string;
|
|
17779
|
+
/**
|
|
17780
|
+
* Gets or sets the starting date less than or equal to.
|
|
17781
|
+
*/
|
|
17782
|
+
startDateLte?: string;
|
|
17783
|
+
/**
|
|
17784
|
+
* Gets or sets a custom date range.
|
|
17785
|
+
*/
|
|
17786
|
+
dateRange?: CustomDateRange;
|
|
17787
|
+
/**
|
|
17788
|
+
* Gets or sets the page number for paged queries.
|
|
17789
|
+
*/
|
|
17790
|
+
pageNumber?: number;
|
|
17791
|
+
/**
|
|
17792
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
17793
|
+
*/
|
|
17794
|
+
take?: number;
|
|
17795
|
+
/**
|
|
17796
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
17797
|
+
*/
|
|
17798
|
+
limitListRequests?: boolean;
|
|
17799
|
+
/**
|
|
17800
|
+
* Gets or sets the Tenant Id.
|
|
17801
|
+
*/
|
|
17802
|
+
tenantId?: string;
|
|
17803
|
+
/**
|
|
17804
|
+
* Gets or sets the Modifed By Id.
|
|
17805
|
+
*/
|
|
17806
|
+
modifiedById?: string;
|
|
17807
|
+
/**
|
|
17808
|
+
* Gets or sets the Modifed By Ids.
|
|
17809
|
+
*/
|
|
17810
|
+
modifiedByIds?: Array<string>;
|
|
17811
|
+
/**
|
|
17812
|
+
* Gets or sets the Date Created greater than equal to.
|
|
17813
|
+
*/
|
|
17814
|
+
dateCreatedGte?: string;
|
|
17815
|
+
/**
|
|
17816
|
+
* Gets or sets the Date Created less than equal to.
|
|
17817
|
+
*/
|
|
17818
|
+
dateCreatedLte?: string;
|
|
17819
|
+
/**
|
|
17820
|
+
* Gets or sets the queryable only is live status.
|
|
17821
|
+
*/
|
|
17822
|
+
isLive?: boolean;
|
|
17823
|
+
/**
|
|
17824
|
+
* Gets or sets the sort order direction.
|
|
17825
|
+
*/
|
|
17826
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
17827
|
+
}): CancelablePromise<Array<OrderItemReport>>;
|
|
17828
|
+
}
|
|
17829
|
+
|
|
17206
17830
|
type OrderItemPage = {
|
|
17207
17831
|
pagination: Pagination;
|
|
17208
17832
|
readonly items: Array<OrderItem>;
|
|
@@ -42689,6 +43313,7 @@ declare class ApiClient {
|
|
|
42689
43313
|
readonly filestack: FilestackService;
|
|
42690
43314
|
readonly genericActivity: GenericActivityService;
|
|
42691
43315
|
readonly geocode: GeocodeService;
|
|
43316
|
+
readonly helpers: HelpersService;
|
|
42692
43317
|
readonly hereAutocompleteLookup: HereAutocompleteLookupService;
|
|
42693
43318
|
readonly imageLibraryCategory: ImageLibraryCategoryService;
|
|
42694
43319
|
readonly imageLibraryImage: ImageLibraryImageService;
|
|
@@ -42702,6 +43327,7 @@ declare class ApiClient {
|
|
|
42702
43327
|
readonly openactiveFeedIntermediate: OpenactiveFeedIntermediateService;
|
|
42703
43328
|
readonly openactiveFeedItem: OpenactiveFeedItemService;
|
|
42704
43329
|
readonly opportunityRegister: OpportunityRegisterService;
|
|
43330
|
+
readonly orderItemReport: OrderItemReportService;
|
|
42705
43331
|
readonly orderItems: OrderItemsService;
|
|
42706
43332
|
readonly orders: OrdersService;
|
|
42707
43333
|
readonly orgCourseUtilisation: OrgCourseUtilisationService;
|
|
@@ -42896,4 +43522,4 @@ type ValidationResultModel = {
|
|
|
42896
43522
|
readonly errors?: Array<ValidationError> | null;
|
|
42897
43523
|
};
|
|
42898
43524
|
|
|
42899
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, 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, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderEmailCustomerPatch, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
|
43525
|
+
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 };
|