reach-api-sdk 1.0.229 → 1.0.231
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 +575 -1
- package/dist/reach-sdk.js +451 -1
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +2009 -546
- package/src/index.ts +5 -0
- package/src/models/CustomerAccountInviteSchedule.ts +54 -0
- package/src/models/CustomerAccountInviteSchedulePage.ts +12 -0
- package/src/models/CustomerAccountInviteSchedulePatch.ts +18 -0
- package/src/models/CustomerAccountInviteSchedulePost.ts +14 -0
- package/src/models/CustomerStats.ts +8 -0
- package/src/models/TenantSetting.ts +6 -0
- package/src/models/TenantStorefrontSettingsPatch.ts +6 -0
- package/src/services/CustomerAccountInviteSchedulesService.ts +859 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -1780,6 +1780,14 @@ type CustomerStats = {
|
|
|
1780
1780
|
* Gets or sets the total amount refunded to the customer.
|
|
1781
1781
|
*/
|
|
1782
1782
|
totalRefunded: number;
|
|
1783
|
+
/**
|
|
1784
|
+
* Gets or sets the earliest date a wallet credit period account invite is scheduled to send, if any are pending.
|
|
1785
|
+
*/
|
|
1786
|
+
pendingAccountInviteScheduledDate?: string | null;
|
|
1787
|
+
/**
|
|
1788
|
+
* Gets or sets a value indicating whether a scheduled account invite failed to send and still needs attention.
|
|
1789
|
+
*/
|
|
1790
|
+
hasErroredAccountInviteSchedule?: boolean;
|
|
1783
1791
|
};
|
|
1784
1792
|
|
|
1785
1793
|
/**
|
|
@@ -13171,6 +13179,559 @@ declare class CourseSessionSchedulesService {
|
|
|
13171
13179
|
}): CancelablePromise<Array<CourseSessionSchedule>>;
|
|
13172
13180
|
}
|
|
13173
13181
|
|
|
13182
|
+
/**
|
|
13183
|
+
* Represents a scheduled customer account invite email tied to a wallet credit period.
|
|
13184
|
+
*/
|
|
13185
|
+
type CustomerAccountInviteSchedule = {
|
|
13186
|
+
/**
|
|
13187
|
+
* Gets or sets the entities Id.
|
|
13188
|
+
*/
|
|
13189
|
+
id?: string;
|
|
13190
|
+
/**
|
|
13191
|
+
* Gets or sets the tenant Id.
|
|
13192
|
+
*/
|
|
13193
|
+
tenantId: string;
|
|
13194
|
+
/**
|
|
13195
|
+
* Gets or sets the created date of this entity.
|
|
13196
|
+
*/
|
|
13197
|
+
dateCreated: string;
|
|
13198
|
+
/**
|
|
13199
|
+
* Gets or sets the last modified date of this entity.
|
|
13200
|
+
*/
|
|
13201
|
+
dateModified: string;
|
|
13202
|
+
/**
|
|
13203
|
+
* Gets or sets the modified by Id.
|
|
13204
|
+
*/
|
|
13205
|
+
modifiedById?: string | null;
|
|
13206
|
+
/**
|
|
13207
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
13208
|
+
*/
|
|
13209
|
+
isLive: boolean;
|
|
13210
|
+
/**
|
|
13211
|
+
* Gets or sets the customer id.
|
|
13212
|
+
*/
|
|
13213
|
+
customerId?: string;
|
|
13214
|
+
/**
|
|
13215
|
+
* Gets or sets the wallet credit period id that triggered this invite schedule.
|
|
13216
|
+
*/
|
|
13217
|
+
walletCreditPeriodId?: string;
|
|
13218
|
+
/**
|
|
13219
|
+
* Gets or sets the date the invite is scheduled to send.
|
|
13220
|
+
*/
|
|
13221
|
+
dateScheduled?: string;
|
|
13222
|
+
/**
|
|
13223
|
+
* Gets or sets a value indicating whether the invite has been sent.
|
|
13224
|
+
*/
|
|
13225
|
+
sent?: boolean;
|
|
13226
|
+
/**
|
|
13227
|
+
* Gets or sets a value indicating whether sending the invite errored.
|
|
13228
|
+
*/
|
|
13229
|
+
errored?: boolean;
|
|
13230
|
+
};
|
|
13231
|
+
|
|
13232
|
+
type CustomerAccountInviteSchedulePage = {
|
|
13233
|
+
pagination: Pagination;
|
|
13234
|
+
readonly items: Array<CustomerAccountInviteSchedule>;
|
|
13235
|
+
};
|
|
13236
|
+
|
|
13237
|
+
/**
|
|
13238
|
+
* Patch model for customer account invite schedule updates.
|
|
13239
|
+
*/
|
|
13240
|
+
type CustomerAccountInviteSchedulePatch = {
|
|
13241
|
+
/**
|
|
13242
|
+
* Gets or sets the tenant Id.
|
|
13243
|
+
*/
|
|
13244
|
+
tenantId: string;
|
|
13245
|
+
/**
|
|
13246
|
+
* Gets or sets the Id.
|
|
13247
|
+
*/
|
|
13248
|
+
id: string;
|
|
13249
|
+
};
|
|
13250
|
+
|
|
13251
|
+
/**
|
|
13252
|
+
* Post model for customer account invite schedule inserts.
|
|
13253
|
+
*/
|
|
13254
|
+
type CustomerAccountInviteSchedulePost = {
|
|
13255
|
+
/**
|
|
13256
|
+
* Gets or sets the tenant Id.
|
|
13257
|
+
*/
|
|
13258
|
+
tenantId: string;
|
|
13259
|
+
};
|
|
13260
|
+
|
|
13261
|
+
declare class CustomerAccountInviteSchedulesService {
|
|
13262
|
+
readonly httpRequest: BaseHttpRequest;
|
|
13263
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
13264
|
+
/**
|
|
13265
|
+
* Sends due customer account invite emails.
|
|
13266
|
+
* @returns any OK
|
|
13267
|
+
* @throws ApiError
|
|
13268
|
+
*/
|
|
13269
|
+
sendDueInvites(): CancelablePromise<any>;
|
|
13270
|
+
/**
|
|
13271
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
13272
|
+
* @returns CustomerAccountInviteSchedule OK
|
|
13273
|
+
* @throws ApiError
|
|
13274
|
+
*/
|
|
13275
|
+
post({ requestBody, }: {
|
|
13276
|
+
/**
|
|
13277
|
+
* The <typeparamref name="TObject" /> model.
|
|
13278
|
+
*/
|
|
13279
|
+
requestBody?: CustomerAccountInviteSchedulePost;
|
|
13280
|
+
}): CancelablePromise<CustomerAccountInviteSchedule>;
|
|
13281
|
+
/**
|
|
13282
|
+
* Patches the resource.
|
|
13283
|
+
* @returns CustomerAccountInviteSchedule OK
|
|
13284
|
+
* @throws ApiError
|
|
13285
|
+
*/
|
|
13286
|
+
patch({ requestBody, }: {
|
|
13287
|
+
/**
|
|
13288
|
+
* The <typeparamref name="TObject" /> model.
|
|
13289
|
+
*/
|
|
13290
|
+
requestBody?: CustomerAccountInviteSchedulePatch;
|
|
13291
|
+
}): CancelablePromise<CustomerAccountInviteSchedule>;
|
|
13292
|
+
/**
|
|
13293
|
+
* Inserts a list of resources.
|
|
13294
|
+
* @returns CustomerAccountInviteSchedule OK
|
|
13295
|
+
* @throws ApiError
|
|
13296
|
+
*/
|
|
13297
|
+
postList({ requestBody, }: {
|
|
13298
|
+
/**
|
|
13299
|
+
* The list of <typeparamref name="TObject" />.
|
|
13300
|
+
*/
|
|
13301
|
+
requestBody?: Array<CustomerAccountInviteSchedulePost>;
|
|
13302
|
+
}): CancelablePromise<Array<CustomerAccountInviteSchedule>>;
|
|
13303
|
+
/**
|
|
13304
|
+
* Patches the resource.
|
|
13305
|
+
* @returns CustomerAccountInviteSchedule OK
|
|
13306
|
+
* @throws ApiError
|
|
13307
|
+
*/
|
|
13308
|
+
patchWithReferences({ requestBody, }: {
|
|
13309
|
+
/**
|
|
13310
|
+
* The <typeparamref name="TObject" /> model.
|
|
13311
|
+
*/
|
|
13312
|
+
requestBody?: CustomerAccountInviteSchedulePatch;
|
|
13313
|
+
}): CancelablePromise<CustomerAccountInviteSchedule>;
|
|
13314
|
+
/**
|
|
13315
|
+
* Deletes the resource.
|
|
13316
|
+
* @returns any OK
|
|
13317
|
+
* @throws ApiError
|
|
13318
|
+
*/
|
|
13319
|
+
deleteByObject({ requestBody, }: {
|
|
13320
|
+
/**
|
|
13321
|
+
* The <typeparamref name="TObject" /> model.
|
|
13322
|
+
*/
|
|
13323
|
+
requestBody?: CustomerAccountInviteSchedule;
|
|
13324
|
+
}): CancelablePromise<any>;
|
|
13325
|
+
/**
|
|
13326
|
+
* Gets a list of resources.
|
|
13327
|
+
* @returns CustomerAccountInviteSchedulePage OK
|
|
13328
|
+
* @throws ApiError
|
|
13329
|
+
*/
|
|
13330
|
+
getPage({ customerId, walletCreditPeriodId, dateScheduledGte, dateScheduledLte, sent, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13331
|
+
/**
|
|
13332
|
+
* Gets or sets the queryable customer id.
|
|
13333
|
+
*/
|
|
13334
|
+
customerId?: string;
|
|
13335
|
+
/**
|
|
13336
|
+
* Gets or sets the queryable wallet credit period id.
|
|
13337
|
+
*/
|
|
13338
|
+
walletCreditPeriodId?: string;
|
|
13339
|
+
/**
|
|
13340
|
+
* Gets or sets the queryable date scheduled greater than or equal to.
|
|
13341
|
+
*/
|
|
13342
|
+
dateScheduledGte?: string;
|
|
13343
|
+
/**
|
|
13344
|
+
* Gets or sets the queryable date scheduled less than or equal to.
|
|
13345
|
+
*/
|
|
13346
|
+
dateScheduledLte?: string;
|
|
13347
|
+
/**
|
|
13348
|
+
* Gets or sets the queryable sent flag.
|
|
13349
|
+
*/
|
|
13350
|
+
sent?: boolean;
|
|
13351
|
+
/**
|
|
13352
|
+
* Gets or sets the queryable errored flag.
|
|
13353
|
+
*/
|
|
13354
|
+
errored?: boolean;
|
|
13355
|
+
/**
|
|
13356
|
+
* Gets or sets the page number for paged queries.
|
|
13357
|
+
*/
|
|
13358
|
+
pageNumber?: number;
|
|
13359
|
+
/**
|
|
13360
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
13361
|
+
*/
|
|
13362
|
+
take?: number;
|
|
13363
|
+
/**
|
|
13364
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
13365
|
+
*/
|
|
13366
|
+
skip?: number;
|
|
13367
|
+
/**
|
|
13368
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
13369
|
+
*/
|
|
13370
|
+
limitListRequests?: boolean;
|
|
13371
|
+
/**
|
|
13372
|
+
* Gets or sets the Tenant Id.
|
|
13373
|
+
*/
|
|
13374
|
+
tenantId?: string;
|
|
13375
|
+
/**
|
|
13376
|
+
* Gets or sets the Modifed By Id.
|
|
13377
|
+
*/
|
|
13378
|
+
modifiedById?: string;
|
|
13379
|
+
/**
|
|
13380
|
+
* Gets or sets the Modifed By Ids.
|
|
13381
|
+
*/
|
|
13382
|
+
modifiedByIds?: Array<string>;
|
|
13383
|
+
/**
|
|
13384
|
+
* Gets or sets the Date Created greater than equal to.
|
|
13385
|
+
*/
|
|
13386
|
+
dateCreatedGte?: string;
|
|
13387
|
+
/**
|
|
13388
|
+
* Gets or sets the Date Created less than equal to.
|
|
13389
|
+
*/
|
|
13390
|
+
dateCreatedLte?: string;
|
|
13391
|
+
/**
|
|
13392
|
+
* Gets or sets the queryable only is live status.
|
|
13393
|
+
*/
|
|
13394
|
+
isLive?: boolean;
|
|
13395
|
+
/**
|
|
13396
|
+
* Gets or sets the sort order direction.
|
|
13397
|
+
*/
|
|
13398
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
13399
|
+
}): CancelablePromise<CustomerAccountInviteSchedulePage>;
|
|
13400
|
+
/**
|
|
13401
|
+
* Deletes the resource.
|
|
13402
|
+
* @returns any OK
|
|
13403
|
+
* @throws ApiError
|
|
13404
|
+
*/
|
|
13405
|
+
deleteById({ id, }: {
|
|
13406
|
+
/**
|
|
13407
|
+
* The <typeparamref name="TObject" /> id.
|
|
13408
|
+
*/
|
|
13409
|
+
id: string;
|
|
13410
|
+
}): CancelablePromise<any>;
|
|
13411
|
+
/**
|
|
13412
|
+
* Gets the resource by its Id.
|
|
13413
|
+
* @returns CustomerAccountInviteSchedule OK
|
|
13414
|
+
* @throws ApiError
|
|
13415
|
+
*/
|
|
13416
|
+
getObject({ id, }: {
|
|
13417
|
+
/**
|
|
13418
|
+
* The <typeparamref name="TObject" /> id.
|
|
13419
|
+
*/
|
|
13420
|
+
id: string;
|
|
13421
|
+
}): CancelablePromise<CustomerAccountInviteSchedule>;
|
|
13422
|
+
/**
|
|
13423
|
+
* Returns a value indicating whether the resource is deletable.
|
|
13424
|
+
* @returns boolean OK
|
|
13425
|
+
* @throws ApiError
|
|
13426
|
+
*/
|
|
13427
|
+
canDelete({ id, }: {
|
|
13428
|
+
/**
|
|
13429
|
+
* The <typeparamref name="TObject" /> id.
|
|
13430
|
+
*/
|
|
13431
|
+
id: string;
|
|
13432
|
+
}): CancelablePromise<boolean>;
|
|
13433
|
+
/**
|
|
13434
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
13435
|
+
* @returns boolean OK
|
|
13436
|
+
* @throws ApiError
|
|
13437
|
+
*/
|
|
13438
|
+
exists({ customerId, walletCreditPeriodId, dateScheduledGte, dateScheduledLte, sent, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13439
|
+
/**
|
|
13440
|
+
* Gets or sets the queryable customer id.
|
|
13441
|
+
*/
|
|
13442
|
+
customerId?: string;
|
|
13443
|
+
/**
|
|
13444
|
+
* Gets or sets the queryable wallet credit period id.
|
|
13445
|
+
*/
|
|
13446
|
+
walletCreditPeriodId?: string;
|
|
13447
|
+
/**
|
|
13448
|
+
* Gets or sets the queryable date scheduled greater than or equal to.
|
|
13449
|
+
*/
|
|
13450
|
+
dateScheduledGte?: string;
|
|
13451
|
+
/**
|
|
13452
|
+
* Gets or sets the queryable date scheduled less than or equal to.
|
|
13453
|
+
*/
|
|
13454
|
+
dateScheduledLte?: string;
|
|
13455
|
+
/**
|
|
13456
|
+
* Gets or sets the queryable sent flag.
|
|
13457
|
+
*/
|
|
13458
|
+
sent?: boolean;
|
|
13459
|
+
/**
|
|
13460
|
+
* Gets or sets the queryable errored flag.
|
|
13461
|
+
*/
|
|
13462
|
+
errored?: boolean;
|
|
13463
|
+
/**
|
|
13464
|
+
* Gets or sets the page number for paged queries.
|
|
13465
|
+
*/
|
|
13466
|
+
pageNumber?: number;
|
|
13467
|
+
/**
|
|
13468
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
13469
|
+
*/
|
|
13470
|
+
take?: number;
|
|
13471
|
+
/**
|
|
13472
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
13473
|
+
*/
|
|
13474
|
+
skip?: number;
|
|
13475
|
+
/**
|
|
13476
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
13477
|
+
*/
|
|
13478
|
+
limitListRequests?: boolean;
|
|
13479
|
+
/**
|
|
13480
|
+
* Gets or sets the Tenant Id.
|
|
13481
|
+
*/
|
|
13482
|
+
tenantId?: string;
|
|
13483
|
+
/**
|
|
13484
|
+
* Gets or sets the Modifed By Id.
|
|
13485
|
+
*/
|
|
13486
|
+
modifiedById?: string;
|
|
13487
|
+
/**
|
|
13488
|
+
* Gets or sets the Modifed By Ids.
|
|
13489
|
+
*/
|
|
13490
|
+
modifiedByIds?: Array<string>;
|
|
13491
|
+
/**
|
|
13492
|
+
* Gets or sets the Date Created greater than equal to.
|
|
13493
|
+
*/
|
|
13494
|
+
dateCreatedGte?: string;
|
|
13495
|
+
/**
|
|
13496
|
+
* Gets or sets the Date Created less than equal to.
|
|
13497
|
+
*/
|
|
13498
|
+
dateCreatedLte?: string;
|
|
13499
|
+
/**
|
|
13500
|
+
* Gets or sets the queryable only is live status.
|
|
13501
|
+
*/
|
|
13502
|
+
isLive?: boolean;
|
|
13503
|
+
/**
|
|
13504
|
+
* Gets or sets the sort order direction.
|
|
13505
|
+
*/
|
|
13506
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
13507
|
+
}): CancelablePromise<boolean>;
|
|
13508
|
+
/**
|
|
13509
|
+
* Returns the number of results in the database given the provided search params.
|
|
13510
|
+
* @returns number OK
|
|
13511
|
+
* @throws ApiError
|
|
13512
|
+
*/
|
|
13513
|
+
count({ customerId, walletCreditPeriodId, dateScheduledGte, dateScheduledLte, sent, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13514
|
+
/**
|
|
13515
|
+
* Gets or sets the queryable customer id.
|
|
13516
|
+
*/
|
|
13517
|
+
customerId?: string;
|
|
13518
|
+
/**
|
|
13519
|
+
* Gets or sets the queryable wallet credit period id.
|
|
13520
|
+
*/
|
|
13521
|
+
walletCreditPeriodId?: string;
|
|
13522
|
+
/**
|
|
13523
|
+
* Gets or sets the queryable date scheduled greater than or equal to.
|
|
13524
|
+
*/
|
|
13525
|
+
dateScheduledGte?: string;
|
|
13526
|
+
/**
|
|
13527
|
+
* Gets or sets the queryable date scheduled less than or equal to.
|
|
13528
|
+
*/
|
|
13529
|
+
dateScheduledLte?: string;
|
|
13530
|
+
/**
|
|
13531
|
+
* Gets or sets the queryable sent flag.
|
|
13532
|
+
*/
|
|
13533
|
+
sent?: boolean;
|
|
13534
|
+
/**
|
|
13535
|
+
* Gets or sets the queryable errored flag.
|
|
13536
|
+
*/
|
|
13537
|
+
errored?: boolean;
|
|
13538
|
+
/**
|
|
13539
|
+
* Gets or sets the page number for paged queries.
|
|
13540
|
+
*/
|
|
13541
|
+
pageNumber?: number;
|
|
13542
|
+
/**
|
|
13543
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
13544
|
+
*/
|
|
13545
|
+
take?: number;
|
|
13546
|
+
/**
|
|
13547
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
13548
|
+
*/
|
|
13549
|
+
skip?: number;
|
|
13550
|
+
/**
|
|
13551
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
13552
|
+
*/
|
|
13553
|
+
limitListRequests?: boolean;
|
|
13554
|
+
/**
|
|
13555
|
+
* Gets or sets the Tenant Id.
|
|
13556
|
+
*/
|
|
13557
|
+
tenantId?: string;
|
|
13558
|
+
/**
|
|
13559
|
+
* Gets or sets the Modifed By Id.
|
|
13560
|
+
*/
|
|
13561
|
+
modifiedById?: string;
|
|
13562
|
+
/**
|
|
13563
|
+
* Gets or sets the Modifed By Ids.
|
|
13564
|
+
*/
|
|
13565
|
+
modifiedByIds?: Array<string>;
|
|
13566
|
+
/**
|
|
13567
|
+
* Gets or sets the Date Created greater than equal to.
|
|
13568
|
+
*/
|
|
13569
|
+
dateCreatedGte?: string;
|
|
13570
|
+
/**
|
|
13571
|
+
* Gets or sets the Date Created less than equal to.
|
|
13572
|
+
*/
|
|
13573
|
+
dateCreatedLte?: string;
|
|
13574
|
+
/**
|
|
13575
|
+
* Gets or sets the queryable only is live status.
|
|
13576
|
+
*/
|
|
13577
|
+
isLive?: boolean;
|
|
13578
|
+
/**
|
|
13579
|
+
* Gets or sets the sort order direction.
|
|
13580
|
+
*/
|
|
13581
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
13582
|
+
}): CancelablePromise<number>;
|
|
13583
|
+
/**
|
|
13584
|
+
* Gets a list of resources unpaged and without references.
|
|
13585
|
+
* @returns CustomerAccountInviteSchedule OK
|
|
13586
|
+
* @throws ApiError
|
|
13587
|
+
*/
|
|
13588
|
+
getListWithoutReferences({ customerId, walletCreditPeriodId, dateScheduledGte, dateScheduledLte, sent, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13589
|
+
/**
|
|
13590
|
+
* Gets or sets the queryable customer id.
|
|
13591
|
+
*/
|
|
13592
|
+
customerId?: string;
|
|
13593
|
+
/**
|
|
13594
|
+
* Gets or sets the queryable wallet credit period id.
|
|
13595
|
+
*/
|
|
13596
|
+
walletCreditPeriodId?: string;
|
|
13597
|
+
/**
|
|
13598
|
+
* Gets or sets the queryable date scheduled greater than or equal to.
|
|
13599
|
+
*/
|
|
13600
|
+
dateScheduledGte?: string;
|
|
13601
|
+
/**
|
|
13602
|
+
* Gets or sets the queryable date scheduled less than or equal to.
|
|
13603
|
+
*/
|
|
13604
|
+
dateScheduledLte?: string;
|
|
13605
|
+
/**
|
|
13606
|
+
* Gets or sets the queryable sent flag.
|
|
13607
|
+
*/
|
|
13608
|
+
sent?: boolean;
|
|
13609
|
+
/**
|
|
13610
|
+
* Gets or sets the queryable errored flag.
|
|
13611
|
+
*/
|
|
13612
|
+
errored?: boolean;
|
|
13613
|
+
/**
|
|
13614
|
+
* Gets or sets the page number for paged queries.
|
|
13615
|
+
*/
|
|
13616
|
+
pageNumber?: number;
|
|
13617
|
+
/**
|
|
13618
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
13619
|
+
*/
|
|
13620
|
+
take?: number;
|
|
13621
|
+
/**
|
|
13622
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
13623
|
+
*/
|
|
13624
|
+
skip?: number;
|
|
13625
|
+
/**
|
|
13626
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
13627
|
+
*/
|
|
13628
|
+
limitListRequests?: boolean;
|
|
13629
|
+
/**
|
|
13630
|
+
* Gets or sets the Tenant Id.
|
|
13631
|
+
*/
|
|
13632
|
+
tenantId?: string;
|
|
13633
|
+
/**
|
|
13634
|
+
* Gets or sets the Modifed By Id.
|
|
13635
|
+
*/
|
|
13636
|
+
modifiedById?: string;
|
|
13637
|
+
/**
|
|
13638
|
+
* Gets or sets the Modifed By Ids.
|
|
13639
|
+
*/
|
|
13640
|
+
modifiedByIds?: Array<string>;
|
|
13641
|
+
/**
|
|
13642
|
+
* Gets or sets the Date Created greater than equal to.
|
|
13643
|
+
*/
|
|
13644
|
+
dateCreatedGte?: string;
|
|
13645
|
+
/**
|
|
13646
|
+
* Gets or sets the Date Created less than equal to.
|
|
13647
|
+
*/
|
|
13648
|
+
dateCreatedLte?: string;
|
|
13649
|
+
/**
|
|
13650
|
+
* Gets or sets the queryable only is live status.
|
|
13651
|
+
*/
|
|
13652
|
+
isLive?: boolean;
|
|
13653
|
+
/**
|
|
13654
|
+
* Gets or sets the sort order direction.
|
|
13655
|
+
*/
|
|
13656
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
13657
|
+
}): CancelablePromise<Array<CustomerAccountInviteSchedule>>;
|
|
13658
|
+
/**
|
|
13659
|
+
* Gets a list of resources.
|
|
13660
|
+
* @returns CustomerAccountInviteSchedule OK
|
|
13661
|
+
* @throws ApiError
|
|
13662
|
+
*/
|
|
13663
|
+
getListIdName({ customerId, walletCreditPeriodId, dateScheduledGte, dateScheduledLte, sent, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13664
|
+
/**
|
|
13665
|
+
* Gets or sets the queryable customer id.
|
|
13666
|
+
*/
|
|
13667
|
+
customerId?: string;
|
|
13668
|
+
/**
|
|
13669
|
+
* Gets or sets the queryable wallet credit period id.
|
|
13670
|
+
*/
|
|
13671
|
+
walletCreditPeriodId?: string;
|
|
13672
|
+
/**
|
|
13673
|
+
* Gets or sets the queryable date scheduled greater than or equal to.
|
|
13674
|
+
*/
|
|
13675
|
+
dateScheduledGte?: string;
|
|
13676
|
+
/**
|
|
13677
|
+
* Gets or sets the queryable date scheduled less than or equal to.
|
|
13678
|
+
*/
|
|
13679
|
+
dateScheduledLte?: string;
|
|
13680
|
+
/**
|
|
13681
|
+
* Gets or sets the queryable sent flag.
|
|
13682
|
+
*/
|
|
13683
|
+
sent?: boolean;
|
|
13684
|
+
/**
|
|
13685
|
+
* Gets or sets the queryable errored flag.
|
|
13686
|
+
*/
|
|
13687
|
+
errored?: boolean;
|
|
13688
|
+
/**
|
|
13689
|
+
* Gets or sets the page number for paged queries.
|
|
13690
|
+
*/
|
|
13691
|
+
pageNumber?: number;
|
|
13692
|
+
/**
|
|
13693
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
13694
|
+
*/
|
|
13695
|
+
take?: number;
|
|
13696
|
+
/**
|
|
13697
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
13698
|
+
*/
|
|
13699
|
+
skip?: number;
|
|
13700
|
+
/**
|
|
13701
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
13702
|
+
*/
|
|
13703
|
+
limitListRequests?: boolean;
|
|
13704
|
+
/**
|
|
13705
|
+
* Gets or sets the Tenant Id.
|
|
13706
|
+
*/
|
|
13707
|
+
tenantId?: string;
|
|
13708
|
+
/**
|
|
13709
|
+
* Gets or sets the Modifed By Id.
|
|
13710
|
+
*/
|
|
13711
|
+
modifiedById?: string;
|
|
13712
|
+
/**
|
|
13713
|
+
* Gets or sets the Modifed By Ids.
|
|
13714
|
+
*/
|
|
13715
|
+
modifiedByIds?: Array<string>;
|
|
13716
|
+
/**
|
|
13717
|
+
* Gets or sets the Date Created greater than equal to.
|
|
13718
|
+
*/
|
|
13719
|
+
dateCreatedGte?: string;
|
|
13720
|
+
/**
|
|
13721
|
+
* Gets or sets the Date Created less than equal to.
|
|
13722
|
+
*/
|
|
13723
|
+
dateCreatedLte?: string;
|
|
13724
|
+
/**
|
|
13725
|
+
* Gets or sets the queryable only is live status.
|
|
13726
|
+
*/
|
|
13727
|
+
isLive?: boolean;
|
|
13728
|
+
/**
|
|
13729
|
+
* Gets or sets the sort order direction.
|
|
13730
|
+
*/
|
|
13731
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
13732
|
+
}): CancelablePromise<Array<CustomerAccountInviteSchedule>>;
|
|
13733
|
+
}
|
|
13734
|
+
|
|
13174
13735
|
declare class CustomerAuthService {
|
|
13175
13736
|
readonly httpRequest: BaseHttpRequest;
|
|
13176
13737
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -46525,6 +47086,12 @@ type TenantSetting = {
|
|
|
46525
47086
|
* When enabled, attendee wallets require an active credit period for bookings and allocation management.
|
|
46526
47087
|
*/
|
|
46527
47088
|
enableWalletCreditPeriods?: boolean;
|
|
47089
|
+
/**
|
|
47090
|
+
* Gets or sets how many days before a credit period start date to send the customer account invite.
|
|
47091
|
+
* Allowed values: 0 (on period start), 7 (one week before), 14 (two weeks before).
|
|
47092
|
+
* Only applies when Reach.Models.TenantSetting.EnableWalletCreditPeriods is true.
|
|
47093
|
+
*/
|
|
47094
|
+
walletCreditPeriodAccountInviteDaysBefore?: number | null;
|
|
46528
47095
|
/**
|
|
46529
47096
|
* Gets or sets a value indicating whether customer portal WorkOS login is restricted to pre-provisioned customers only.
|
|
46530
47097
|
* When true, the authenticated email must match a live customer row (email or display_email) for this tenant.
|
|
@@ -62622,6 +63189,12 @@ type TenantStorefrontSettingsPatch = {
|
|
|
62622
63189
|
* When null, PATCH leaves the existing database value unchanged.
|
|
62623
63190
|
*/
|
|
62624
63191
|
customerPortalWorkOsLoginEnabled?: boolean | null;
|
|
63192
|
+
/**
|
|
63193
|
+
* Gets or sets how many days before a credit period start date to automatically send customer account invites.
|
|
63194
|
+
* Allowed values: 0 (on period start), 7 (one week before), 14 (two weeks before).
|
|
63195
|
+
* When null, PATCH leaves the existing database value unchanged.
|
|
63196
|
+
*/
|
|
63197
|
+
walletCreditPeriodAccountInviteDaysBefore?: number | null;
|
|
62625
63198
|
};
|
|
62626
63199
|
|
|
62627
63200
|
declare class TenantsService {
|
|
@@ -73052,6 +73625,7 @@ declare class ApiClient {
|
|
|
73052
73625
|
readonly courses: CoursesService;
|
|
73053
73626
|
readonly courseSessions: CourseSessionsService;
|
|
73054
73627
|
readonly courseSessionSchedules: CourseSessionSchedulesService;
|
|
73628
|
+
readonly customerAccountInviteSchedules: CustomerAccountInviteSchedulesService;
|
|
73055
73629
|
readonly customerAuth: CustomerAuthService;
|
|
73056
73630
|
readonly customerPortal: CustomerPortalService;
|
|
73057
73631
|
readonly customers: CustomersService;
|
|
@@ -73308,4 +73882,4 @@ type ValidationResultModel = {
|
|
|
73308
73882
|
readonly errors?: Array<ValidationError> | null;
|
|
73309
73883
|
};
|
|
73310
73884
|
|
|
73311
|
-
export { AccessCredential, AccessCredentialPage, AccessCredentialPatch, AccessCredentialPost, AccessCredentialsService, Activity, ActivityFacet, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivitySearchResponse, ActivityService, ActivityType, ActivityTypeCategory, ActivityTypeCategoryService, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CodelocksLock, CodelocksLockPage, CodelocksLockPatch, CodelocksLockPost, CodelocksLocksService, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerAuthService, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPortalAccountPatch, CustomerPortalService, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserAccessibleTenantDto, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FeatureAnnouncementDismissPost, FeatureAnnouncementForUserDto, FeatureAnnouncementsService, FieldPermission, 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, IntegrationCodelocksSettings, IntegrationCodelocksSettingsCreate, IntegrationCodelocksSettingsPage, IntegrationCodelocksSettingsPatch, IntegrationCodelocksSettingsPost, IntegrationCodelocksSettingsService, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemCodelocksAccess, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderActivityLocation, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSellableItemsService, PublicSessionsService, PublicSlotsService, PublicStorefrontStaffPreviewService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantFaqsService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, SellableItem, SellableItemPage, SellableItemPatch, SellableItemPost, SellableItemsService, 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, SortIndex, Southwest, StorefrontStaffPreviewService, StorefrontStaffPreviewTokenResponse, StorefrontStaffPreviewValidateRequest, StorefrontStaffPreviewValidateResponse, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, 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, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantFaq, TenantFaqPage, TenantFaqPatch, TenantFaqPost, TenantFaqsService, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantStorefrontSettingsPatch, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletCreditPeriod, WalletCreditPeriodReassessPost, WalletCreditPeriodStatus, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };
|
|
73885
|
+
export { AccessCredential, AccessCredentialPage, AccessCredentialPatch, AccessCredentialPost, AccessCredentialsService, Activity, ActivityFacet, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivitySearchResponse, ActivityService, ActivityType, ActivityTypeCategory, ActivityTypeCategoryService, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CodelocksLock, CodelocksLockPage, CodelocksLockPatch, CodelocksLockPost, CodelocksLocksService, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerAccountInviteSchedule, CustomerAccountInviteSchedulePage, CustomerAccountInviteSchedulePatch, CustomerAccountInviteSchedulePost, CustomerAccountInviteSchedulesService, CustomerAuthService, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPortalAccountPatch, CustomerPortalService, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserAccessibleTenantDto, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FeatureAnnouncementDismissPost, FeatureAnnouncementForUserDto, FeatureAnnouncementsService, FieldPermission, 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, IntegrationCodelocksSettings, IntegrationCodelocksSettingsCreate, IntegrationCodelocksSettingsPage, IntegrationCodelocksSettingsPatch, IntegrationCodelocksSettingsPost, IntegrationCodelocksSettingsService, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemCodelocksAccess, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderActivityLocation, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSellableItemsService, PublicSessionsService, PublicSlotsService, PublicStorefrontStaffPreviewService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantFaqsService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, SellableItem, SellableItemPage, SellableItemPatch, SellableItemPost, SellableItemsService, 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, SortIndex, Southwest, StorefrontStaffPreviewService, StorefrontStaffPreviewTokenResponse, StorefrontStaffPreviewValidateRequest, StorefrontStaffPreviewValidateResponse, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, 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, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantFaq, TenantFaqPage, TenantFaqPatch, TenantFaqPost, TenantFaqsService, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantStorefrontSettingsPatch, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletCreditPeriod, WalletCreditPeriodReassessPost, WalletCreditPeriodStatus, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };
|