reach-api-sdk 1.0.187 → 1.0.189
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 +199 -18
- package/dist/reach-sdk.js +164 -17
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +468 -9
- package/src/index.ts +3 -0
- package/src/models/Customer.ts +5 -1
- package/src/models/EndUserIdentitySecureToken.ts +37 -0
- package/src/models/ResolveSecureAccessTokenRequest.ts +14 -0
- package/src/services/CustomersService.ts +54 -18
- package/src/services/EndUserIdentitySecureTokenService.ts +177 -0
- package/src/services/PublicCustomersService.ts +53 -6
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -2062,7 +2062,7 @@ type Customer = {
|
|
|
2062
2062
|
/**
|
|
2063
2063
|
* Gets or sets the email.
|
|
2064
2064
|
*/
|
|
2065
|
-
|
|
2065
|
+
displayEmail?: string | null;
|
|
2066
2066
|
/**
|
|
2067
2067
|
* Gets or sets the phone number.
|
|
2068
2068
|
*/
|
|
@@ -2099,6 +2099,10 @@ type Customer = {
|
|
|
2099
2099
|
* Gets or sets how many times the customer has booked with the organisation.
|
|
2100
2100
|
*/
|
|
2101
2101
|
bookingCount?: number | null;
|
|
2102
|
+
/**
|
|
2103
|
+
* Gets or sets the customers end user identity id.
|
|
2104
|
+
*/
|
|
2105
|
+
endUserIdentityId?: string | null;
|
|
2102
2106
|
stats?: CustomerStats;
|
|
2103
2107
|
/**
|
|
2104
2108
|
* Gets or sets the attendees registered by the customer.
|
|
@@ -10053,7 +10057,7 @@ declare class CustomersService {
|
|
|
10053
10057
|
* @returns any OK
|
|
10054
10058
|
* @throws ApiError
|
|
10055
10059
|
*/
|
|
10056
|
-
exportToCsv({ wildcard,
|
|
10060
|
+
exportToCsv({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
10057
10061
|
/**
|
|
10058
10062
|
* Gets or sets the wildcard for use in a query search.
|
|
10059
10063
|
*/
|
|
@@ -10061,7 +10065,7 @@ declare class CustomersService {
|
|
|
10061
10065
|
/**
|
|
10062
10066
|
* Gets or sets the customers email for use in a query search.
|
|
10063
10067
|
*/
|
|
10064
|
-
|
|
10068
|
+
displayEmail?: string;
|
|
10065
10069
|
/**
|
|
10066
10070
|
* Gets or sets the venue id for use in a query search.
|
|
10067
10071
|
*/
|
|
@@ -10078,6 +10082,10 @@ declare class CustomersService {
|
|
|
10078
10082
|
* Gets or sets a value indicating whether the customer is an active customer, that is, they have completed at least 1 order through to the 'Booked' stage.
|
|
10079
10083
|
*/
|
|
10080
10084
|
isActiveCustomer?: boolean;
|
|
10085
|
+
/**
|
|
10086
|
+
* Gets or sets the customers end user identity id.
|
|
10087
|
+
*/
|
|
10088
|
+
endUserIdentityId?: string;
|
|
10081
10089
|
/**
|
|
10082
10090
|
* Gets or sets the page number for paged queries.
|
|
10083
10091
|
*/
|
|
@@ -10135,7 +10143,7 @@ declare class CustomersService {
|
|
|
10135
10143
|
* @returns any OK
|
|
10136
10144
|
* @throws ApiError
|
|
10137
10145
|
*/
|
|
10138
|
-
exportToXlsx({ wildcard,
|
|
10146
|
+
exportToXlsx({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
10139
10147
|
/**
|
|
10140
10148
|
* Gets or sets the wildcard for use in a query search.
|
|
10141
10149
|
*/
|
|
@@ -10143,7 +10151,7 @@ declare class CustomersService {
|
|
|
10143
10151
|
/**
|
|
10144
10152
|
* Gets or sets the customers email for use in a query search.
|
|
10145
10153
|
*/
|
|
10146
|
-
|
|
10154
|
+
displayEmail?: string;
|
|
10147
10155
|
/**
|
|
10148
10156
|
* Gets or sets the venue id for use in a query search.
|
|
10149
10157
|
*/
|
|
@@ -10160,6 +10168,10 @@ declare class CustomersService {
|
|
|
10160
10168
|
* Gets or sets a value indicating whether the customer is an active customer, that is, they have completed at least 1 order through to the 'Booked' stage.
|
|
10161
10169
|
*/
|
|
10162
10170
|
isActiveCustomer?: boolean;
|
|
10171
|
+
/**
|
|
10172
|
+
* Gets or sets the customers end user identity id.
|
|
10173
|
+
*/
|
|
10174
|
+
endUserIdentityId?: string;
|
|
10163
10175
|
/**
|
|
10164
10176
|
* Gets or sets the page number for paged queries.
|
|
10165
10177
|
*/
|
|
@@ -10271,7 +10283,7 @@ declare class CustomersService {
|
|
|
10271
10283
|
* @returns CustomerPage OK
|
|
10272
10284
|
* @throws ApiError
|
|
10273
10285
|
*/
|
|
10274
|
-
getPage({ wildcard,
|
|
10286
|
+
getPage({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10275
10287
|
/**
|
|
10276
10288
|
* Gets or sets the wildcard for use in a query search.
|
|
10277
10289
|
*/
|
|
@@ -10279,7 +10291,7 @@ declare class CustomersService {
|
|
|
10279
10291
|
/**
|
|
10280
10292
|
* Gets or sets the customers email for use in a query search.
|
|
10281
10293
|
*/
|
|
10282
|
-
|
|
10294
|
+
displayEmail?: string;
|
|
10283
10295
|
/**
|
|
10284
10296
|
* Gets or sets the venue id for use in a query search.
|
|
10285
10297
|
*/
|
|
@@ -10296,6 +10308,10 @@ declare class CustomersService {
|
|
|
10296
10308
|
* Gets or sets a value indicating whether the customer is an active customer, that is, they have completed at least 1 order through to the 'Booked' stage.
|
|
10297
10309
|
*/
|
|
10298
10310
|
isActiveCustomer?: boolean;
|
|
10311
|
+
/**
|
|
10312
|
+
* Gets or sets the customers end user identity id.
|
|
10313
|
+
*/
|
|
10314
|
+
endUserIdentityId?: string;
|
|
10299
10315
|
/**
|
|
10300
10316
|
* Gets or sets the page number for paged queries.
|
|
10301
10317
|
*/
|
|
@@ -10379,7 +10395,7 @@ declare class CustomersService {
|
|
|
10379
10395
|
* @returns boolean OK
|
|
10380
10396
|
* @throws ApiError
|
|
10381
10397
|
*/
|
|
10382
|
-
exists({ wildcard,
|
|
10398
|
+
exists({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10383
10399
|
/**
|
|
10384
10400
|
* Gets or sets the wildcard for use in a query search.
|
|
10385
10401
|
*/
|
|
@@ -10387,7 +10403,7 @@ declare class CustomersService {
|
|
|
10387
10403
|
/**
|
|
10388
10404
|
* Gets or sets the customers email for use in a query search.
|
|
10389
10405
|
*/
|
|
10390
|
-
|
|
10406
|
+
displayEmail?: string;
|
|
10391
10407
|
/**
|
|
10392
10408
|
* Gets or sets the venue id for use in a query search.
|
|
10393
10409
|
*/
|
|
@@ -10404,6 +10420,10 @@ declare class CustomersService {
|
|
|
10404
10420
|
* Gets or sets a value indicating whether the customer is an active customer, that is, they have completed at least 1 order through to the 'Booked' stage.
|
|
10405
10421
|
*/
|
|
10406
10422
|
isActiveCustomer?: boolean;
|
|
10423
|
+
/**
|
|
10424
|
+
* Gets or sets the customers end user identity id.
|
|
10425
|
+
*/
|
|
10426
|
+
endUserIdentityId?: string;
|
|
10407
10427
|
/**
|
|
10408
10428
|
* Gets or sets the page number for paged queries.
|
|
10409
10429
|
*/
|
|
@@ -10454,7 +10474,7 @@ declare class CustomersService {
|
|
|
10454
10474
|
* @returns Customer OK
|
|
10455
10475
|
* @throws ApiError
|
|
10456
10476
|
*/
|
|
10457
|
-
getListWithoutReferences({ wildcard,
|
|
10477
|
+
getListWithoutReferences({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10458
10478
|
/**
|
|
10459
10479
|
* Gets or sets the wildcard for use in a query search.
|
|
10460
10480
|
*/
|
|
@@ -10462,7 +10482,7 @@ declare class CustomersService {
|
|
|
10462
10482
|
/**
|
|
10463
10483
|
* Gets or sets the customers email for use in a query search.
|
|
10464
10484
|
*/
|
|
10465
|
-
|
|
10485
|
+
displayEmail?: string;
|
|
10466
10486
|
/**
|
|
10467
10487
|
* Gets or sets the venue id for use in a query search.
|
|
10468
10488
|
*/
|
|
@@ -10479,6 +10499,10 @@ declare class CustomersService {
|
|
|
10479
10499
|
* Gets or sets a value indicating whether the customer is an active customer, that is, they have completed at least 1 order through to the 'Booked' stage.
|
|
10480
10500
|
*/
|
|
10481
10501
|
isActiveCustomer?: boolean;
|
|
10502
|
+
/**
|
|
10503
|
+
* Gets or sets the customers end user identity id.
|
|
10504
|
+
*/
|
|
10505
|
+
endUserIdentityId?: string;
|
|
10482
10506
|
/**
|
|
10483
10507
|
* Gets or sets the page number for paged queries.
|
|
10484
10508
|
*/
|
|
@@ -10529,7 +10553,7 @@ declare class CustomersService {
|
|
|
10529
10553
|
* @returns Customer OK
|
|
10530
10554
|
* @throws ApiError
|
|
10531
10555
|
*/
|
|
10532
|
-
getListIdName({ wildcard,
|
|
10556
|
+
getListIdName({ wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10533
10557
|
/**
|
|
10534
10558
|
* Gets or sets the wildcard for use in a query search.
|
|
10535
10559
|
*/
|
|
@@ -10537,7 +10561,7 @@ declare class CustomersService {
|
|
|
10537
10561
|
/**
|
|
10538
10562
|
* Gets or sets the customers email for use in a query search.
|
|
10539
10563
|
*/
|
|
10540
|
-
|
|
10564
|
+
displayEmail?: string;
|
|
10541
10565
|
/**
|
|
10542
10566
|
* Gets or sets the venue id for use in a query search.
|
|
10543
10567
|
*/
|
|
@@ -10554,6 +10578,10 @@ declare class CustomersService {
|
|
|
10554
10578
|
* Gets or sets a value indicating whether the customer is an active customer, that is, they have completed at least 1 order through to the 'Booked' stage.
|
|
10555
10579
|
*/
|
|
10556
10580
|
isActiveCustomer?: boolean;
|
|
10581
|
+
/**
|
|
10582
|
+
* Gets or sets the customers end user identity id.
|
|
10583
|
+
*/
|
|
10584
|
+
endUserIdentityId?: string;
|
|
10557
10585
|
/**
|
|
10558
10586
|
* Gets or sets the page number for paged queries.
|
|
10559
10587
|
*/
|
|
@@ -13020,6 +13048,135 @@ declare class EmailSettingsService {
|
|
|
13020
13048
|
}): CancelablePromise<Array<EmailSetting>>;
|
|
13021
13049
|
}
|
|
13022
13050
|
|
|
13051
|
+
/**
|
|
13052
|
+
* Represents an end user identity within the Reach application.
|
|
13053
|
+
*/
|
|
13054
|
+
type EndUserIdentitySecureToken = {
|
|
13055
|
+
/**
|
|
13056
|
+
* Gets or sets the activities Id.
|
|
13057
|
+
*/
|
|
13058
|
+
id?: number;
|
|
13059
|
+
/**
|
|
13060
|
+
* Gets or sets the secure token.
|
|
13061
|
+
*/
|
|
13062
|
+
token?: string | null;
|
|
13063
|
+
/**
|
|
13064
|
+
* Gets or sets the end user identity id.
|
|
13065
|
+
*/
|
|
13066
|
+
endUserIdentityId?: string;
|
|
13067
|
+
/**
|
|
13068
|
+
* Gets or sets the tenant id.
|
|
13069
|
+
*/
|
|
13070
|
+
tenantId?: string;
|
|
13071
|
+
/**
|
|
13072
|
+
* Gets or sets the date the resource was created.
|
|
13073
|
+
*/
|
|
13074
|
+
dateCreated?: string;
|
|
13075
|
+
/**
|
|
13076
|
+
* Gets or sets a value indicating whether the token is active/revoked.
|
|
13077
|
+
*/
|
|
13078
|
+
isActive?: boolean;
|
|
13079
|
+
tenant?: Tenant;
|
|
13080
|
+
};
|
|
13081
|
+
|
|
13082
|
+
/**
|
|
13083
|
+
* Models secure access token requests.
|
|
13084
|
+
*/
|
|
13085
|
+
type ResolveSecureAccessTokenRequest = {
|
|
13086
|
+
/**
|
|
13087
|
+
* Gets or sets the token.
|
|
13088
|
+
*/
|
|
13089
|
+
token?: string | null;
|
|
13090
|
+
};
|
|
13091
|
+
|
|
13092
|
+
declare class EndUserIdentitySecureTokenService {
|
|
13093
|
+
readonly httpRequest: BaseHttpRequest;
|
|
13094
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
13095
|
+
/**
|
|
13096
|
+
* Gets a Reach.Models.EndUserIdentitySecureToken by its Id.
|
|
13097
|
+
* @returns EndUserIdentitySecureToken OK
|
|
13098
|
+
* @throws ApiError
|
|
13099
|
+
*/
|
|
13100
|
+
getObject({ id, }: {
|
|
13101
|
+
/**
|
|
13102
|
+
* The Reach.Models.EndUserIdentitySecureToken id.
|
|
13103
|
+
*/
|
|
13104
|
+
id: number;
|
|
13105
|
+
}): CancelablePromise<EndUserIdentitySecureToken>;
|
|
13106
|
+
/**
|
|
13107
|
+
* Gets a Reach.Models.EndUserIdentitySecureToken by its secure token string.
|
|
13108
|
+
* @returns EndUserIdentitySecureToken OK
|
|
13109
|
+
* @throws ApiError
|
|
13110
|
+
*/
|
|
13111
|
+
getObjectByToken({ requestBody, }: {
|
|
13112
|
+
/**
|
|
13113
|
+
* The secure token.
|
|
13114
|
+
*/
|
|
13115
|
+
requestBody?: ResolveSecureAccessTokenRequest;
|
|
13116
|
+
}): CancelablePromise<EndUserIdentitySecureToken>;
|
|
13117
|
+
/**
|
|
13118
|
+
* Gets a list of Reach.Models.EndUserIdentitySecureToken.
|
|
13119
|
+
* @returns EndUserIdentitySecureToken OK
|
|
13120
|
+
* @throws ApiError
|
|
13121
|
+
*/
|
|
13122
|
+
getList({ token, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
13123
|
+
/**
|
|
13124
|
+
* Gets or sets the queryable token.
|
|
13125
|
+
*/
|
|
13126
|
+
token?: string;
|
|
13127
|
+
/**
|
|
13128
|
+
* Gets or sets the page number for paged queries.
|
|
13129
|
+
*/
|
|
13130
|
+
pageNumber?: number;
|
|
13131
|
+
/**
|
|
13132
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
13133
|
+
*/
|
|
13134
|
+
take?: number;
|
|
13135
|
+
/**
|
|
13136
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
13137
|
+
*/
|
|
13138
|
+
skip?: number;
|
|
13139
|
+
/**
|
|
13140
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
13141
|
+
*/
|
|
13142
|
+
limitListRequests?: boolean;
|
|
13143
|
+
/**
|
|
13144
|
+
* Gets or sets the Tenant Id.
|
|
13145
|
+
*/
|
|
13146
|
+
tenantId?: string;
|
|
13147
|
+
/**
|
|
13148
|
+
* Gets or sets the Modifed By Id.
|
|
13149
|
+
*/
|
|
13150
|
+
modifiedById?: string;
|
|
13151
|
+
/**
|
|
13152
|
+
* Gets or sets the Modifed By Ids.
|
|
13153
|
+
*/
|
|
13154
|
+
modifiedByIds?: Array<string>;
|
|
13155
|
+
/**
|
|
13156
|
+
* Gets or sets the Date Created greater than equal to.
|
|
13157
|
+
*/
|
|
13158
|
+
dateCreatedGte?: string;
|
|
13159
|
+
/**
|
|
13160
|
+
* Gets or sets the Date Created less than equal to.
|
|
13161
|
+
*/
|
|
13162
|
+
dateCreatedLte?: string;
|
|
13163
|
+
/**
|
|
13164
|
+
* Gets or sets the queryable only is live status.
|
|
13165
|
+
*/
|
|
13166
|
+
isLive?: boolean;
|
|
13167
|
+
/**
|
|
13168
|
+
* Gets or sets the sort order direction.
|
|
13169
|
+
*/
|
|
13170
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
13171
|
+
}): CancelablePromise<Array<EndUserIdentitySecureToken>>;
|
|
13172
|
+
/**
|
|
13173
|
+
* Backfills the secure access tokens for all end user identities. Should only be run once and by existing developers whos db structure is outdated with relevance to end user identities.
|
|
13174
|
+
* @returns any OK
|
|
13175
|
+
* @throws ApiError
|
|
13176
|
+
*/
|
|
13177
|
+
backfillTokens(): CancelablePromise<any>;
|
|
13178
|
+
}
|
|
13179
|
+
|
|
13023
13180
|
declare class EnglandGolfReportService {
|
|
13024
13181
|
readonly httpRequest: BaseHttpRequest;
|
|
13025
13182
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -27601,7 +27758,7 @@ declare class PublicCustomersService {
|
|
|
27601
27758
|
* @returns CustomerPage OK
|
|
27602
27759
|
* @throws ApiError
|
|
27603
27760
|
*/
|
|
27604
|
-
getPage({ xTenantSubdomain, wildcard,
|
|
27761
|
+
getPage({ xTenantSubdomain, wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27605
27762
|
xTenantSubdomain?: string;
|
|
27606
27763
|
/**
|
|
27607
27764
|
* Gets or sets the wildcard for use in a query search.
|
|
@@ -27610,7 +27767,7 @@ declare class PublicCustomersService {
|
|
|
27610
27767
|
/**
|
|
27611
27768
|
* Gets or sets the customers email for use in a query search.
|
|
27612
27769
|
*/
|
|
27613
|
-
|
|
27770
|
+
displayEmail?: string;
|
|
27614
27771
|
/**
|
|
27615
27772
|
* Gets or sets the venue id for use in a query search.
|
|
27616
27773
|
*/
|
|
@@ -27627,6 +27784,10 @@ declare class PublicCustomersService {
|
|
|
27627
27784
|
* Gets or sets a value indicating whether the customer is an active customer, that is, they have completed at least 1 order through to the 'Booked' stage.
|
|
27628
27785
|
*/
|
|
27629
27786
|
isActiveCustomer?: boolean;
|
|
27787
|
+
/**
|
|
27788
|
+
* Gets or sets the customers end user identity id.
|
|
27789
|
+
*/
|
|
27790
|
+
endUserIdentityId?: string;
|
|
27630
27791
|
/**
|
|
27631
27792
|
* Gets or sets the page number for paged queries.
|
|
27632
27793
|
*/
|
|
@@ -27687,6 +27848,21 @@ declare class PublicCustomersService {
|
|
|
27687
27848
|
*/
|
|
27688
27849
|
requestBody?: Customer;
|
|
27689
27850
|
}): CancelablePromise<any>;
|
|
27851
|
+
/**
|
|
27852
|
+
* Returns the tenants accessible to the end user.
|
|
27853
|
+
* @returns any OK
|
|
27854
|
+
* @throws ApiError
|
|
27855
|
+
*/
|
|
27856
|
+
getCustomerAccessibleTenants({ endUserIdentityId, xTenantSubdomain, }: {
|
|
27857
|
+
/**
|
|
27858
|
+
* The end user identity id.
|
|
27859
|
+
*/
|
|
27860
|
+
endUserIdentityId: string;
|
|
27861
|
+
/**
|
|
27862
|
+
* The tenants subdomain.
|
|
27863
|
+
*/
|
|
27864
|
+
xTenantSubdomain?: string;
|
|
27865
|
+
}): CancelablePromise<any>;
|
|
27690
27866
|
/**
|
|
27691
27867
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
27692
27868
|
* @returns Customer OK
|
|
@@ -27737,7 +27913,7 @@ declare class PublicCustomersService {
|
|
|
27737
27913
|
* @returns boolean OK
|
|
27738
27914
|
* @throws ApiError
|
|
27739
27915
|
*/
|
|
27740
|
-
exists({ xTenantSubdomain, wildcard,
|
|
27916
|
+
exists({ xTenantSubdomain, wildcard, displayEmail, venueId, programmeId, marketingOptIn, isActiveCustomer, endUserIdentityId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
27741
27917
|
/**
|
|
27742
27918
|
* The tenants subdomain.
|
|
27743
27919
|
*/
|
|
@@ -27749,7 +27925,7 @@ declare class PublicCustomersService {
|
|
|
27749
27925
|
/**
|
|
27750
27926
|
* Gets or sets the customers email for use in a query search.
|
|
27751
27927
|
*/
|
|
27752
|
-
|
|
27928
|
+
displayEmail?: string;
|
|
27753
27929
|
/**
|
|
27754
27930
|
* Gets or sets the venue id for use in a query search.
|
|
27755
27931
|
*/
|
|
@@ -27766,6 +27942,10 @@ declare class PublicCustomersService {
|
|
|
27766
27942
|
* Gets or sets a value indicating whether the customer is an active customer, that is, they have completed at least 1 order through to the 'Booked' stage.
|
|
27767
27943
|
*/
|
|
27768
27944
|
isActiveCustomer?: boolean;
|
|
27945
|
+
/**
|
|
27946
|
+
* Gets or sets the customers end user identity id.
|
|
27947
|
+
*/
|
|
27948
|
+
endUserIdentityId?: string;
|
|
27769
27949
|
/**
|
|
27770
27950
|
* Gets or sets the page number for paged queries.
|
|
27771
27951
|
*/
|
|
@@ -54778,6 +54958,7 @@ declare class ApiClient {
|
|
|
54778
54958
|
readonly discountCodeUses: DiscountCodeUsesService;
|
|
54779
54959
|
readonly emailReminderSchedules: EmailReminderSchedulesService;
|
|
54780
54960
|
readonly emailSettings: EmailSettingsService;
|
|
54961
|
+
readonly endUserIdentitySecureToken: EndUserIdentitySecureTokenService;
|
|
54781
54962
|
readonly englandGolfReport: EnglandGolfReportService;
|
|
54782
54963
|
readonly facilities: FacilitiesService;
|
|
54783
54964
|
readonly facilityIndividuals: FacilityIndividualsService;
|
|
@@ -55006,4 +55187,4 @@ type ValidationResultModel = {
|
|
|
55006
55187
|
readonly errors?: Array<ValidationError> | null;
|
|
55007
55188
|
};
|
|
55008
55189
|
|
|
55009
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, 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, 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, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, 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, 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, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|
|
55190
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, 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, 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, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, 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, 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, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
|