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.js
CHANGED
|
@@ -4692,11 +4692,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4692
4692
|
*/
|
|
4693
4693
|
exportToCsv({
|
|
4694
4694
|
wildcard,
|
|
4695
|
-
|
|
4695
|
+
displayEmail,
|
|
4696
4696
|
venueId,
|
|
4697
4697
|
programmeId,
|
|
4698
4698
|
marketingOptIn,
|
|
4699
4699
|
isActiveCustomer,
|
|
4700
|
+
endUserIdentityId,
|
|
4700
4701
|
pageNumber,
|
|
4701
4702
|
take,
|
|
4702
4703
|
skip,
|
|
@@ -4715,11 +4716,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4715
4716
|
url: "/api/customers/export/csv",
|
|
4716
4717
|
query: {
|
|
4717
4718
|
Wildcard: wildcard,
|
|
4718
|
-
|
|
4719
|
+
DisplayEmail: displayEmail,
|
|
4719
4720
|
VenueId: venueId,
|
|
4720
4721
|
ProgrammeId: programmeId,
|
|
4721
4722
|
MarketingOptIn: marketingOptIn,
|
|
4722
4723
|
IsActiveCustomer: isActiveCustomer,
|
|
4724
|
+
EndUserIdentityId: endUserIdentityId,
|
|
4723
4725
|
PageNumber: pageNumber,
|
|
4724
4726
|
Take: take,
|
|
4725
4727
|
Skip: skip,
|
|
@@ -4749,11 +4751,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4749
4751
|
*/
|
|
4750
4752
|
exportToXlsx({
|
|
4751
4753
|
wildcard,
|
|
4752
|
-
|
|
4754
|
+
displayEmail,
|
|
4753
4755
|
venueId,
|
|
4754
4756
|
programmeId,
|
|
4755
4757
|
marketingOptIn,
|
|
4756
4758
|
isActiveCustomer,
|
|
4759
|
+
endUserIdentityId,
|
|
4757
4760
|
pageNumber,
|
|
4758
4761
|
take,
|
|
4759
4762
|
skip,
|
|
@@ -4772,11 +4775,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4772
4775
|
url: "/api/customers/export/xlsx",
|
|
4773
4776
|
query: {
|
|
4774
4777
|
Wildcard: wildcard,
|
|
4775
|
-
|
|
4778
|
+
DisplayEmail: displayEmail,
|
|
4776
4779
|
VenueId: venueId,
|
|
4777
4780
|
ProgrammeId: programmeId,
|
|
4778
4781
|
MarketingOptIn: marketingOptIn,
|
|
4779
4782
|
IsActiveCustomer: isActiveCustomer,
|
|
4783
|
+
EndUserIdentityId: endUserIdentityId,
|
|
4780
4784
|
PageNumber: pageNumber,
|
|
4781
4785
|
Take: take,
|
|
4782
4786
|
Skip: skip,
|
|
@@ -4905,11 +4909,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4905
4909
|
*/
|
|
4906
4910
|
getPage({
|
|
4907
4911
|
wildcard,
|
|
4908
|
-
|
|
4912
|
+
displayEmail,
|
|
4909
4913
|
venueId,
|
|
4910
4914
|
programmeId,
|
|
4911
4915
|
marketingOptIn,
|
|
4912
4916
|
isActiveCustomer,
|
|
4917
|
+
endUserIdentityId,
|
|
4913
4918
|
pageNumber,
|
|
4914
4919
|
take,
|
|
4915
4920
|
skip,
|
|
@@ -4927,11 +4932,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
4927
4932
|
url: "/api/customers",
|
|
4928
4933
|
query: {
|
|
4929
4934
|
Wildcard: wildcard,
|
|
4930
|
-
|
|
4935
|
+
DisplayEmail: displayEmail,
|
|
4931
4936
|
VenueId: venueId,
|
|
4932
4937
|
ProgrammeId: programmeId,
|
|
4933
4938
|
MarketingOptIn: marketingOptIn,
|
|
4934
4939
|
IsActiveCustomer: isActiveCustomer,
|
|
4940
|
+
EndUserIdentityId: endUserIdentityId,
|
|
4935
4941
|
PageNumber: pageNumber,
|
|
4936
4942
|
Take: take,
|
|
4937
4943
|
Skip: skip,
|
|
@@ -5021,11 +5027,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5021
5027
|
*/
|
|
5022
5028
|
exists({
|
|
5023
5029
|
wildcard,
|
|
5024
|
-
|
|
5030
|
+
displayEmail,
|
|
5025
5031
|
venueId,
|
|
5026
5032
|
programmeId,
|
|
5027
5033
|
marketingOptIn,
|
|
5028
5034
|
isActiveCustomer,
|
|
5035
|
+
endUserIdentityId,
|
|
5029
5036
|
pageNumber,
|
|
5030
5037
|
take,
|
|
5031
5038
|
skip,
|
|
@@ -5043,11 +5050,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5043
5050
|
url: "/api/customers/exists",
|
|
5044
5051
|
query: {
|
|
5045
5052
|
Wildcard: wildcard,
|
|
5046
|
-
|
|
5053
|
+
DisplayEmail: displayEmail,
|
|
5047
5054
|
VenueId: venueId,
|
|
5048
5055
|
ProgrammeId: programmeId,
|
|
5049
5056
|
MarketingOptIn: marketingOptIn,
|
|
5050
5057
|
IsActiveCustomer: isActiveCustomer,
|
|
5058
|
+
EndUserIdentityId: endUserIdentityId,
|
|
5051
5059
|
PageNumber: pageNumber,
|
|
5052
5060
|
Take: take,
|
|
5053
5061
|
Skip: skip,
|
|
@@ -5074,11 +5082,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5074
5082
|
*/
|
|
5075
5083
|
getListWithoutReferences({
|
|
5076
5084
|
wildcard,
|
|
5077
|
-
|
|
5085
|
+
displayEmail,
|
|
5078
5086
|
venueId,
|
|
5079
5087
|
programmeId,
|
|
5080
5088
|
marketingOptIn,
|
|
5081
5089
|
isActiveCustomer,
|
|
5090
|
+
endUserIdentityId,
|
|
5082
5091
|
pageNumber,
|
|
5083
5092
|
take,
|
|
5084
5093
|
skip,
|
|
@@ -5096,11 +5105,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5096
5105
|
url: "/api/customers/without-references",
|
|
5097
5106
|
query: {
|
|
5098
5107
|
Wildcard: wildcard,
|
|
5099
|
-
|
|
5108
|
+
DisplayEmail: displayEmail,
|
|
5100
5109
|
VenueId: venueId,
|
|
5101
5110
|
ProgrammeId: programmeId,
|
|
5102
5111
|
MarketingOptIn: marketingOptIn,
|
|
5103
5112
|
IsActiveCustomer: isActiveCustomer,
|
|
5113
|
+
EndUserIdentityId: endUserIdentityId,
|
|
5104
5114
|
PageNumber: pageNumber,
|
|
5105
5115
|
Take: take,
|
|
5106
5116
|
Skip: skip,
|
|
@@ -5127,11 +5137,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5127
5137
|
*/
|
|
5128
5138
|
getListIdName({
|
|
5129
5139
|
wildcard,
|
|
5130
|
-
|
|
5140
|
+
displayEmail,
|
|
5131
5141
|
venueId,
|
|
5132
5142
|
programmeId,
|
|
5133
5143
|
marketingOptIn,
|
|
5134
5144
|
isActiveCustomer,
|
|
5145
|
+
endUserIdentityId,
|
|
5135
5146
|
pageNumber,
|
|
5136
5147
|
take,
|
|
5137
5148
|
skip,
|
|
@@ -5149,11 +5160,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5149
5160
|
url: "/api/customers/id-name",
|
|
5150
5161
|
query: {
|
|
5151
5162
|
Wildcard: wildcard,
|
|
5152
|
-
|
|
5163
|
+
DisplayEmail: displayEmail,
|
|
5153
5164
|
VenueId: venueId,
|
|
5154
5165
|
ProgrammeId: programmeId,
|
|
5155
5166
|
MarketingOptIn: marketingOptIn,
|
|
5156
5167
|
IsActiveCustomer: isActiveCustomer,
|
|
5168
|
+
EndUserIdentityId: endUserIdentityId,
|
|
5157
5169
|
PageNumber: pageNumber,
|
|
5158
5170
|
Take: take,
|
|
5159
5171
|
Skip: skip,
|
|
@@ -7120,6 +7132,110 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7120
7132
|
}
|
|
7121
7133
|
});
|
|
7122
7134
|
}
|
|
7135
|
+
}class EndUserIdentitySecureTokenService {
|
|
7136
|
+
constructor(httpRequest) {
|
|
7137
|
+
this.httpRequest = httpRequest;
|
|
7138
|
+
}
|
|
7139
|
+
/**
|
|
7140
|
+
* Gets a Reach.Models.EndUserIdentitySecureToken by its Id.
|
|
7141
|
+
* @returns EndUserIdentitySecureToken OK
|
|
7142
|
+
* @throws ApiError
|
|
7143
|
+
*/
|
|
7144
|
+
getObject({
|
|
7145
|
+
id
|
|
7146
|
+
}) {
|
|
7147
|
+
return this.httpRequest.request({
|
|
7148
|
+
method: "GET",
|
|
7149
|
+
url: "/api/end-user-identity-secure-tokens/{id}",
|
|
7150
|
+
path: {
|
|
7151
|
+
id
|
|
7152
|
+
},
|
|
7153
|
+
errors: {
|
|
7154
|
+
400: `Bad Request`,
|
|
7155
|
+
422: `Unprocessable Content`,
|
|
7156
|
+
500: `Internal Server Error`
|
|
7157
|
+
}
|
|
7158
|
+
});
|
|
7159
|
+
}
|
|
7160
|
+
/**
|
|
7161
|
+
* Gets a Reach.Models.EndUserIdentitySecureToken by its secure token string.
|
|
7162
|
+
* @returns EndUserIdentitySecureToken OK
|
|
7163
|
+
* @throws ApiError
|
|
7164
|
+
*/
|
|
7165
|
+
getObjectByToken({
|
|
7166
|
+
requestBody
|
|
7167
|
+
}) {
|
|
7168
|
+
return this.httpRequest.request({
|
|
7169
|
+
method: "POST",
|
|
7170
|
+
url: "/api/end-user-identity-secure-tokens/resolve",
|
|
7171
|
+
body: requestBody,
|
|
7172
|
+
mediaType: "application/json",
|
|
7173
|
+
errors: {
|
|
7174
|
+
400: `Bad Request`,
|
|
7175
|
+
422: `Unprocessable Content`,
|
|
7176
|
+
500: `Internal Server Error`
|
|
7177
|
+
}
|
|
7178
|
+
});
|
|
7179
|
+
}
|
|
7180
|
+
/**
|
|
7181
|
+
* Gets a list of Reach.Models.EndUserIdentitySecureToken.
|
|
7182
|
+
* @returns EndUserIdentitySecureToken OK
|
|
7183
|
+
* @throws ApiError
|
|
7184
|
+
*/
|
|
7185
|
+
getList({
|
|
7186
|
+
token,
|
|
7187
|
+
pageNumber,
|
|
7188
|
+
take,
|
|
7189
|
+
skip,
|
|
7190
|
+
limitListRequests,
|
|
7191
|
+
tenantId,
|
|
7192
|
+
modifiedById,
|
|
7193
|
+
modifiedByIds,
|
|
7194
|
+
dateCreatedGte,
|
|
7195
|
+
dateCreatedLte,
|
|
7196
|
+
isLive,
|
|
7197
|
+
sortOrderDirection
|
|
7198
|
+
}) {
|
|
7199
|
+
return this.httpRequest.request({
|
|
7200
|
+
method: "GET",
|
|
7201
|
+
url: "/api/end-user-identity-secure-tokens",
|
|
7202
|
+
query: {
|
|
7203
|
+
Token: token,
|
|
7204
|
+
PageNumber: pageNumber,
|
|
7205
|
+
Take: take,
|
|
7206
|
+
Skip: skip,
|
|
7207
|
+
LimitListRequests: limitListRequests,
|
|
7208
|
+
TenantId: tenantId,
|
|
7209
|
+
ModifiedById: modifiedById,
|
|
7210
|
+
ModifiedByIds: modifiedByIds,
|
|
7211
|
+
DateCreatedGTE: dateCreatedGte,
|
|
7212
|
+
DateCreatedLTE: dateCreatedLte,
|
|
7213
|
+
IsLive: isLive,
|
|
7214
|
+
SortOrderDirection: sortOrderDirection
|
|
7215
|
+
},
|
|
7216
|
+
errors: {
|
|
7217
|
+
400: `Bad Request`,
|
|
7218
|
+
422: `Unprocessable Content`,
|
|
7219
|
+
500: `Internal Server Error`
|
|
7220
|
+
}
|
|
7221
|
+
});
|
|
7222
|
+
}
|
|
7223
|
+
/**
|
|
7224
|
+
* 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.
|
|
7225
|
+
* @returns any OK
|
|
7226
|
+
* @throws ApiError
|
|
7227
|
+
*/
|
|
7228
|
+
backfillTokens() {
|
|
7229
|
+
return this.httpRequest.request({
|
|
7230
|
+
method: "GET",
|
|
7231
|
+
url: "/api/end-user-identity-secure-tokens/back-fill",
|
|
7232
|
+
errors: {
|
|
7233
|
+
400: `Bad Request`,
|
|
7234
|
+
422: `Unprocessable Content`,
|
|
7235
|
+
500: `Internal Server Error`
|
|
7236
|
+
}
|
|
7237
|
+
});
|
|
7238
|
+
}
|
|
7123
7239
|
}class EnglandGolfReportService {
|
|
7124
7240
|
constructor(httpRequest) {
|
|
7125
7241
|
this.httpRequest = httpRequest;
|
|
@@ -18447,11 +18563,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18447
18563
|
getPage({
|
|
18448
18564
|
xTenantSubdomain,
|
|
18449
18565
|
wildcard,
|
|
18450
|
-
|
|
18566
|
+
displayEmail,
|
|
18451
18567
|
venueId,
|
|
18452
18568
|
programmeId,
|
|
18453
18569
|
marketingOptIn,
|
|
18454
18570
|
isActiveCustomer,
|
|
18571
|
+
endUserIdentityId,
|
|
18455
18572
|
pageNumber,
|
|
18456
18573
|
take,
|
|
18457
18574
|
skip,
|
|
@@ -18472,11 +18589,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18472
18589
|
},
|
|
18473
18590
|
query: {
|
|
18474
18591
|
Wildcard: wildcard,
|
|
18475
|
-
|
|
18592
|
+
DisplayEmail: displayEmail,
|
|
18476
18593
|
VenueId: venueId,
|
|
18477
18594
|
ProgrammeId: programmeId,
|
|
18478
18595
|
MarketingOptIn: marketingOptIn,
|
|
18479
18596
|
IsActiveCustomer: isActiveCustomer,
|
|
18597
|
+
EndUserIdentityId: endUserIdentityId,
|
|
18480
18598
|
PageNumber: pageNumber,
|
|
18481
18599
|
Take: take,
|
|
18482
18600
|
Skip: skip,
|
|
@@ -18520,6 +18638,31 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18520
18638
|
}
|
|
18521
18639
|
});
|
|
18522
18640
|
}
|
|
18641
|
+
/**
|
|
18642
|
+
* Returns the tenants accessible to the end user.
|
|
18643
|
+
* @returns any OK
|
|
18644
|
+
* @throws ApiError
|
|
18645
|
+
*/
|
|
18646
|
+
getCustomerAccessibleTenants({
|
|
18647
|
+
endUserIdentityId,
|
|
18648
|
+
xTenantSubdomain
|
|
18649
|
+
}) {
|
|
18650
|
+
return this.httpRequest.request({
|
|
18651
|
+
method: "GET",
|
|
18652
|
+
url: "/api/public/customers/accessible-tenants",
|
|
18653
|
+
path: {
|
|
18654
|
+
endUserIdentityId
|
|
18655
|
+
},
|
|
18656
|
+
headers: {
|
|
18657
|
+
x_tenant_subdomain: xTenantSubdomain
|
|
18658
|
+
},
|
|
18659
|
+
errors: {
|
|
18660
|
+
400: `Bad Request`,
|
|
18661
|
+
422: `Unprocessable Content`,
|
|
18662
|
+
500: `Internal Server Error`
|
|
18663
|
+
}
|
|
18664
|
+
});
|
|
18665
|
+
}
|
|
18523
18666
|
/**
|
|
18524
18667
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
18525
18668
|
* @returns Customer OK
|
|
@@ -18600,11 +18743,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18600
18743
|
exists({
|
|
18601
18744
|
xTenantSubdomain,
|
|
18602
18745
|
wildcard,
|
|
18603
|
-
|
|
18746
|
+
displayEmail,
|
|
18604
18747
|
venueId,
|
|
18605
18748
|
programmeId,
|
|
18606
18749
|
marketingOptIn,
|
|
18607
18750
|
isActiveCustomer,
|
|
18751
|
+
endUserIdentityId,
|
|
18608
18752
|
pageNumber,
|
|
18609
18753
|
take,
|
|
18610
18754
|
skip,
|
|
@@ -18625,11 +18769,12 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
18625
18769
|
},
|
|
18626
18770
|
query: {
|
|
18627
18771
|
Wildcard: wildcard,
|
|
18628
|
-
|
|
18772
|
+
DisplayEmail: displayEmail,
|
|
18629
18773
|
VenueId: venueId,
|
|
18630
18774
|
ProgrammeId: programmeId,
|
|
18631
18775
|
MarketingOptIn: marketingOptIn,
|
|
18632
18776
|
IsActiveCustomer: isActiveCustomer,
|
|
18777
|
+
EndUserIdentityId: endUserIdentityId,
|
|
18633
18778
|
PageNumber: pageNumber,
|
|
18634
18779
|
Take: take,
|
|
18635
18780
|
Skip: skip,
|
|
@@ -40667,6 +40812,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
40667
40812
|
discountCodeUses;
|
|
40668
40813
|
emailReminderSchedules;
|
|
40669
40814
|
emailSettings;
|
|
40815
|
+
endUserIdentitySecureToken;
|
|
40670
40816
|
englandGolfReport;
|
|
40671
40817
|
facilities;
|
|
40672
40818
|
facilityIndividuals;
|
|
@@ -40795,6 +40941,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
40795
40941
|
this.discountCodeUses = new DiscountCodeUsesService(this.request);
|
|
40796
40942
|
this.emailReminderSchedules = new EmailReminderSchedulesService(this.request);
|
|
40797
40943
|
this.emailSettings = new EmailSettingsService(this.request);
|
|
40944
|
+
this.endUserIdentitySecureToken = new EndUserIdentitySecureTokenService(this.request);
|
|
40798
40945
|
this.englandGolfReport = new EnglandGolfReportService(this.request);
|
|
40799
40946
|
this.facilities = new FacilitiesService(this.request);
|
|
40800
40947
|
this.facilityIndividuals = new FacilityIndividualsService(this.request);
|
|
@@ -41280,4 +41427,4 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
41280
41427
|
TenantTier2["ENTERPRISE"] = "Enterprise";
|
|
41281
41428
|
TenantTier2["PRO"] = "Pro";
|
|
41282
41429
|
return TenantTier2;
|
|
41283
|
-
})(TenantTier || {});export{ActivityPerformanceService,ActivityService,ActivityType,AdvanceBooking,AmenityService,AmenityType,ApiClient,ApiError,AppUserRole,ApplicationRole,AttendeesService,AvailabilityIndicator,BadEnglandReportService,BaseHttpRequest,BookingService,BookingStatus,CancelError,CancelablePromise,CancellationPoliciesService,ChatService,CheckoutPlatform,ContactOnConfirmation,CountryService,CourseBookingCutoff,CourseSearchSortBy,CourseSessionSchedulesService,CourseSessionsService,CourseStatus,CoursesService,CustomDateRange,CustomerCancellationOption,CustomerType,CustomersService,DayOfWeek,DealActivitiesService,DealDiscountType,DealTarget,DealType,DealsService,DiscountCodeUsesService,EmailReminderSchedulesService,EmailSettingsService,EnglandGolfReportService,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FieldPermission,FilestackService,Gender,GenericActivityService,GeocodeService,HelpersService,HereAutocompleteLookupService,HttpStatusCode,ImageLibraryCategoryService,ImageLibraryImageService,ImageUploadHistoryService,ImagesService,InviteStatus,LeasingService,LocationsReportService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityRegisterStatus,OpportunityType,OrderItemReportService,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentPoliciesService,PaymentPolicySplitType,PaymentsService,PeriodsOfWeek,PermissionsService,PlacesService,PlatformPayoutsService,Prepayment,ProgrammesService,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,ReachEntity,ReachOperation,RecentOrderActivityReportService,RefundSource,RefundStatus,RegisterReportService,RescheduleLogService,ScheduleStatus,ScheduledSessionSearchSortBy,ScheduledSessionsSchedulesService,ScheduledSessionsService,SearchSortOrderDirection,SessionType,SessionsService,SlotAvailabilityStatus,SlotOffersService,SlotScheduleOffersService,SlotSchedulesService,SlotStatus,SlotsService,StripeAccountLinkedEntityType,StripeAccountService,StripeStatus,SurfacesService,SurveyAnswersService,SurveyCompletionLogService,SurveyQuestionType,SurveyQuestionsService,SurveyQuestionsTarget,SurveyReportExtendedService,SurveyResponseMode,SurveyType,SurveysService,TemplateDetailsService,TemplateFieldPermissionsService,TemplateOffersService,TemplatesService,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UnsplashService,UserPermissionsService,UserProgrammesService,UserProvidersService,UsersService,VenueManagersService,VenuePerformanceService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService};
|
|
41430
|
+
})(TenantTier || {});export{ActivityPerformanceService,ActivityService,ActivityType,AdvanceBooking,AmenityService,AmenityType,ApiClient,ApiError,AppUserRole,ApplicationRole,AttendeesService,AvailabilityIndicator,BadEnglandReportService,BaseHttpRequest,BookingService,BookingStatus,CancelError,CancelablePromise,CancellationPoliciesService,ChatService,CheckoutPlatform,ContactOnConfirmation,CountryService,CourseBookingCutoff,CourseSearchSortBy,CourseSessionSchedulesService,CourseSessionsService,CourseStatus,CoursesService,CustomDateRange,CustomerCancellationOption,CustomerType,CustomersService,DayOfWeek,DealActivitiesService,DealDiscountType,DealTarget,DealType,DealsService,DiscountCodeUsesService,EmailReminderSchedulesService,EmailSettingsService,EndUserIdentitySecureTokenService,EnglandGolfReportService,FacilitiesService,FacilityIndividualsService,FacilityIndividualsType,FieldPermission,FilestackService,Gender,GenericActivityService,GeocodeService,HelpersService,HereAutocompleteLookupService,HttpStatusCode,ImageLibraryCategoryService,ImageLibraryImageService,ImageUploadHistoryService,ImagesService,InviteStatus,LeasingService,LocationsReportService,LoqatePlacesService,NotificationQueueService,NotificationSettingsService,NotificationType,OffersService,OpenAPI,OpenactiveFeedIntermediateService,OpenactiveFeedItemService,OpportunityRegisterService,OpportunityRegisterStatus,OpportunityType,OrderItemReportService,OrderItemStatus,OrderItemsService,OrderSource,OrderStage,OrdersService,OrgCourseUtilisationService,OrganisationApplicationFeeHandling,OrganisationAvailableChannel,OrganisationRefundPolicy,OrganisationTaxMode,OrganisationType,PaymentMethod,PaymentPoliciesService,PaymentPolicySplitType,PaymentsService,PeriodsOfWeek,PermissionsService,PlacesService,PlatformPayoutsService,Prepayment,ProgrammesService,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,ReachEntity,ReachOperation,RecentOrderActivityReportService,RefundSource,RefundStatus,RegisterReportService,RescheduleLogService,ScheduleStatus,ScheduledSessionSearchSortBy,ScheduledSessionsSchedulesService,ScheduledSessionsService,SearchSortOrderDirection,SessionType,SessionsService,SlotAvailabilityStatus,SlotOffersService,SlotScheduleOffersService,SlotSchedulesService,SlotStatus,SlotsService,StripeAccountLinkedEntityType,StripeAccountService,StripeStatus,SurfacesService,SurveyAnswersService,SurveyCompletionLogService,SurveyQuestionType,SurveyQuestionsService,SurveyQuestionsTarget,SurveyReportExtendedService,SurveyResponseMode,SurveyType,SurveysService,TemplateDetailsService,TemplateFieldPermissionsService,TemplateOffersService,TemplatesService,TenantTier,TenantWebsiteSettingsService,TenantsService,TimezoneService,TotalRevenueReportService,UnsplashService,UserPermissionsService,UserProgrammesService,UserProvidersService,UsersService,VenueManagersService,VenuePerformanceService,VenuesReportService,VenuesService,WaitlistActivityReportService,WaitlistActivityService,WaitlistOpportunityReportService,WaitlistOpportunityService};
|
package/package.json
CHANGED
package/src/apiClient.ts
CHANGED
|
@@ -24,6 +24,7 @@ import { DealsService } from './services/DealsService';
|
|
|
24
24
|
import { DiscountCodeUsesService } from './services/DiscountCodeUsesService';
|
|
25
25
|
import { EmailReminderSchedulesService } from './services/EmailReminderSchedulesService';
|
|
26
26
|
import { EmailSettingsService } from './services/EmailSettingsService';
|
|
27
|
+
import { EndUserIdentitySecureTokenService } from './services/EndUserIdentitySecureTokenService';
|
|
27
28
|
import { EnglandGolfReportService } from './services/EnglandGolfReportService';
|
|
28
29
|
import { FacilitiesService } from './services/FacilitiesService';
|
|
29
30
|
import { FacilityIndividualsService } from './services/FacilityIndividualsService';
|
|
@@ -143,6 +144,7 @@ export class ApiClient {
|
|
|
143
144
|
public readonly discountCodeUses: DiscountCodeUsesService;
|
|
144
145
|
public readonly emailReminderSchedules: EmailReminderSchedulesService;
|
|
145
146
|
public readonly emailSettings: EmailSettingsService;
|
|
147
|
+
public readonly endUserIdentitySecureToken: EndUserIdentitySecureTokenService;
|
|
146
148
|
public readonly englandGolfReport: EnglandGolfReportService;
|
|
147
149
|
public readonly facilities: FacilitiesService;
|
|
148
150
|
public readonly facilityIndividuals: FacilityIndividualsService;
|
|
@@ -277,6 +279,7 @@ export class ApiClient {
|
|
|
277
279
|
this.discountCodeUses = new DiscountCodeUsesService(this.request);
|
|
278
280
|
this.emailReminderSchedules = new EmailReminderSchedulesService(this.request);
|
|
279
281
|
this.emailSettings = new EmailSettingsService(this.request);
|
|
282
|
+
this.endUserIdentitySecureToken = new EndUserIdentitySecureTokenService(this.request);
|
|
280
283
|
this.englandGolfReport = new EnglandGolfReportService(this.request);
|
|
281
284
|
this.facilities = new FacilitiesService(this.request);
|
|
282
285
|
this.facilityIndividuals = new FacilityIndividualsService(this.request);
|