reach-api-sdk 1.0.47 → 1.0.49
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 +1422 -454
- package/dist/reach-sdk.js +885 -4
- package/package.json +1 -1
- package/src/apiClient.ts +9 -0
- package/src/definition/swagger.yaml +6618 -3913
- package/src/index.ts +9 -1
- package/src/models/Attendee.ts +4 -0
- package/src/models/AttendeePost.ts +8 -0
- package/src/models/Customer.ts +5 -0
- package/src/models/OpportunityRegister.ts +22 -0
- package/src/models/OpportunityRegisterPatch.ts +4 -0
- package/src/models/Survey.ts +1 -1
- package/src/models/SurveyAnswer.ts +4 -0
- package/src/models/SurveyCompletionLog.ts +58 -0
- package/src/models/SurveyCompletionLogPage.ts +12 -0
- package/src/models/SurveyCompletionLogPatch.ts +18 -0
- package/src/models/SurveyCompletionLogPost.ts +14 -0
- package/src/models/SurveyResponseMode.ts +2 -2
- package/src/models/SurveySubmit.ts +3 -11
- package/src/models/SurveySubmitAttendee.ts +32 -0
- package/src/models/{SurveySubmissionResponse.ts → SurveySubmitQuestions.ts} +3 -3
- package/src/services/OpportunityRegisterService.ts +90 -3
- package/src/services/PublicCustomersService.ts +425 -0
- package/src/services/PublicSurveyCompletionLogsService.ts +461 -0
- package/src/services/SurveyAnswersService.ts +30 -0
- package/src/services/SurveyCompletionLogService.ts +578 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -315,6 +315,10 @@ type Attendee = {
|
|
|
315
315
|
* Gets the attendees abbreviated name.
|
|
316
316
|
*/
|
|
317
317
|
readonly nameAbbreviation: string;
|
|
318
|
+
/**
|
|
319
|
+
* Gets the attendees full name.
|
|
320
|
+
*/
|
|
321
|
+
readonly fullName?: string | null;
|
|
318
322
|
};
|
|
319
323
|
|
|
320
324
|
/**
|
|
@@ -366,6 +370,14 @@ type AttendeePost = {
|
|
|
366
370
|
* Gets or sets the tenant Id.
|
|
367
371
|
*/
|
|
368
372
|
tenantId: string;
|
|
373
|
+
/**
|
|
374
|
+
* Gets or sets the attendee first name.
|
|
375
|
+
*/
|
|
376
|
+
firstName?: string | null;
|
|
377
|
+
/**
|
|
378
|
+
* Gets or sets the attendee last name.
|
|
379
|
+
*/
|
|
380
|
+
lastName?: string | null;
|
|
369
381
|
};
|
|
370
382
|
|
|
371
383
|
declare class AttendeesService {
|
|
@@ -1265,6 +1277,10 @@ type Customer = {
|
|
|
1265
1277
|
*/
|
|
1266
1278
|
bookingCount?: number | null;
|
|
1267
1279
|
stats?: CustomerStats;
|
|
1280
|
+
/**
|
|
1281
|
+
* Gets or sets the attendees registered by the customer.
|
|
1282
|
+
*/
|
|
1283
|
+
attendees?: Array<Attendee> | null;
|
|
1268
1284
|
};
|
|
1269
1285
|
|
|
1270
1286
|
/**
|
|
@@ -12528,7 +12544,26 @@ type OpportunityRegister = {
|
|
|
12528
12544
|
* Gets or sets the course id.
|
|
12529
12545
|
*/
|
|
12530
12546
|
courseId?: string | null;
|
|
12547
|
+
/**
|
|
12548
|
+
* Gets or sets a value indicating whether the attendee is confirmed as attending the opportunity (the order is booked).
|
|
12549
|
+
*/
|
|
12550
|
+
confirmed?: boolean;
|
|
12551
|
+
/**
|
|
12552
|
+
* Gets or sets a value indicating whether the attendee has been checked in.
|
|
12553
|
+
*/
|
|
12554
|
+
checkedIn: boolean;
|
|
12555
|
+
/**
|
|
12556
|
+
* Gets or sets a value indicating whether the attendee has been moved TO another opportunity.
|
|
12557
|
+
*/
|
|
12558
|
+
moved?: boolean;
|
|
12559
|
+
/**
|
|
12560
|
+
* Gets or sets the opportunity id that the attendee was moved from.
|
|
12561
|
+
*/
|
|
12562
|
+
movedFrom?: string | null;
|
|
12531
12563
|
attendee?: Attendee;
|
|
12564
|
+
orderItem?: OrderItem;
|
|
12565
|
+
scheduledSession?: ScheduledSession;
|
|
12566
|
+
course?: Course;
|
|
12532
12567
|
};
|
|
12533
12568
|
|
|
12534
12569
|
type OpportunityRegisterPage = {
|
|
@@ -12548,6 +12583,10 @@ type OpportunityRegisterPatch = {
|
|
|
12548
12583
|
* Gets or sets the Id.
|
|
12549
12584
|
*/
|
|
12550
12585
|
id: string;
|
|
12586
|
+
/**
|
|
12587
|
+
* Gets or sets a value indicating whether the attendee has been checked in.
|
|
12588
|
+
*/
|
|
12589
|
+
checkedIn?: boolean;
|
|
12551
12590
|
};
|
|
12552
12591
|
|
|
12553
12592
|
/**
|
|
@@ -12563,6 +12602,21 @@ type OpportunityRegisterPost = {
|
|
|
12563
12602
|
declare class OpportunityRegisterService {
|
|
12564
12603
|
readonly httpRequest: BaseHttpRequest;
|
|
12565
12604
|
constructor(httpRequest: BaseHttpRequest);
|
|
12605
|
+
/**
|
|
12606
|
+
* Moves an attendee from one scheduled sessions opportunity register to another.
|
|
12607
|
+
* @returns OpportunityRegister Success
|
|
12608
|
+
* @throws ApiError
|
|
12609
|
+
*/
|
|
12610
|
+
move({ opportunityRegisterId, scheduledSessionId, }: {
|
|
12611
|
+
/**
|
|
12612
|
+
* The current register the attendee is assigned to.
|
|
12613
|
+
*/
|
|
12614
|
+
opportunityRegisterId: string;
|
|
12615
|
+
/**
|
|
12616
|
+
* The scheduled session the attendee needs to be moved to.
|
|
12617
|
+
*/
|
|
12618
|
+
scheduledSessionId: string;
|
|
12619
|
+
}): CancelablePromise<OpportunityRegister>;
|
|
12566
12620
|
/**
|
|
12567
12621
|
* Gets the resource by its Id.
|
|
12568
12622
|
* @returns OpportunityRegister Success
|
|
@@ -12590,11 +12644,15 @@ declare class OpportunityRegisterService {
|
|
|
12590
12644
|
* @returns boolean Success
|
|
12591
12645
|
* @throws ApiError
|
|
12592
12646
|
*/
|
|
12593
|
-
exists({ orderItemId, attendeeId, scheduledSessionId, courseId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12647
|
+
exists({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12594
12648
|
/**
|
|
12595
|
-
* Gets or sets the queryable order item
|
|
12649
|
+
* Gets or sets the queryable order item id.
|
|
12596
12650
|
*/
|
|
12597
12651
|
orderItemId?: string;
|
|
12652
|
+
/**
|
|
12653
|
+
* Gets or sets the queryable order item ids.
|
|
12654
|
+
*/
|
|
12655
|
+
orderItemIds?: Array<string>;
|
|
12598
12656
|
/**
|
|
12599
12657
|
* Gets or sets the queryable attendee id.
|
|
12600
12658
|
*/
|
|
@@ -12607,6 +12665,14 @@ declare class OpportunityRegisterService {
|
|
|
12607
12665
|
* Gets or sets the queryable course id.
|
|
12608
12666
|
*/
|
|
12609
12667
|
courseId?: string;
|
|
12668
|
+
/**
|
|
12669
|
+
* Gets or sets the queryable attendence confirmed true/false.
|
|
12670
|
+
*/
|
|
12671
|
+
confirmed?: boolean;
|
|
12672
|
+
/**
|
|
12673
|
+
* Gets or sets the queryable attendee checked in value.
|
|
12674
|
+
*/
|
|
12675
|
+
checkedIn?: boolean;
|
|
12610
12676
|
/**
|
|
12611
12677
|
* Gets or sets the page number for paged queries.
|
|
12612
12678
|
*/
|
|
@@ -12653,11 +12719,15 @@ declare class OpportunityRegisterService {
|
|
|
12653
12719
|
* @returns OpportunityRegisterPage Success
|
|
12654
12720
|
* @throws ApiError
|
|
12655
12721
|
*/
|
|
12656
|
-
getPage({ orderItemId, attendeeId, scheduledSessionId, courseId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12722
|
+
getPage({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12657
12723
|
/**
|
|
12658
|
-
* Gets or sets the queryable order item
|
|
12724
|
+
* Gets or sets the queryable order item id.
|
|
12659
12725
|
*/
|
|
12660
12726
|
orderItemId?: string;
|
|
12727
|
+
/**
|
|
12728
|
+
* Gets or sets the queryable order item ids.
|
|
12729
|
+
*/
|
|
12730
|
+
orderItemIds?: Array<string>;
|
|
12661
12731
|
/**
|
|
12662
12732
|
* Gets or sets the queryable attendee id.
|
|
12663
12733
|
*/
|
|
@@ -12670,6 +12740,14 @@ declare class OpportunityRegisterService {
|
|
|
12670
12740
|
* Gets or sets the queryable course id.
|
|
12671
12741
|
*/
|
|
12672
12742
|
courseId?: string;
|
|
12743
|
+
/**
|
|
12744
|
+
* Gets or sets the queryable attendence confirmed true/false.
|
|
12745
|
+
*/
|
|
12746
|
+
confirmed?: boolean;
|
|
12747
|
+
/**
|
|
12748
|
+
* Gets or sets the queryable attendee checked in value.
|
|
12749
|
+
*/
|
|
12750
|
+
checkedIn?: boolean;
|
|
12673
12751
|
/**
|
|
12674
12752
|
* Gets or sets the page number for paged queries.
|
|
12675
12753
|
*/
|
|
@@ -12727,11 +12805,15 @@ declare class OpportunityRegisterService {
|
|
|
12727
12805
|
* @returns OpportunityRegister Success
|
|
12728
12806
|
* @throws ApiError
|
|
12729
12807
|
*/
|
|
12730
|
-
getListIdName({ orderItemId, attendeeId, scheduledSessionId, courseId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12808
|
+
getListIdName({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12731
12809
|
/**
|
|
12732
|
-
* Gets or sets the queryable order item
|
|
12810
|
+
* Gets or sets the queryable order item id.
|
|
12733
12811
|
*/
|
|
12734
12812
|
orderItemId?: string;
|
|
12813
|
+
/**
|
|
12814
|
+
* Gets or sets the queryable order item ids.
|
|
12815
|
+
*/
|
|
12816
|
+
orderItemIds?: Array<string>;
|
|
12735
12817
|
/**
|
|
12736
12818
|
* Gets or sets the queryable attendee id.
|
|
12737
12819
|
*/
|
|
@@ -12744,6 +12826,14 @@ declare class OpportunityRegisterService {
|
|
|
12744
12826
|
* Gets or sets the queryable course id.
|
|
12745
12827
|
*/
|
|
12746
12828
|
courseId?: string;
|
|
12829
|
+
/**
|
|
12830
|
+
* Gets or sets the queryable attendence confirmed true/false.
|
|
12831
|
+
*/
|
|
12832
|
+
confirmed?: boolean;
|
|
12833
|
+
/**
|
|
12834
|
+
* Gets or sets the queryable attendee checked in value.
|
|
12835
|
+
*/
|
|
12836
|
+
checkedIn?: boolean;
|
|
12747
12837
|
/**
|
|
12748
12838
|
* Gets or sets the page number for paged queries.
|
|
12749
12839
|
*/
|
|
@@ -15971,17 +16061,17 @@ declare class PublicCoursesService {
|
|
|
15971
16061
|
}): CancelablePromise<Array<Course>>;
|
|
15972
16062
|
}
|
|
15973
16063
|
|
|
15974
|
-
declare class
|
|
16064
|
+
declare class PublicCustomersService {
|
|
15975
16065
|
readonly httpRequest: BaseHttpRequest;
|
|
15976
16066
|
constructor(httpRequest: BaseHttpRequest);
|
|
15977
16067
|
/**
|
|
15978
|
-
* @returns
|
|
16068
|
+
* @returns Customer Success
|
|
15979
16069
|
* @throws ApiError
|
|
15980
16070
|
*/
|
|
15981
16071
|
getObject({ id, xTenantSubdomain, }: {
|
|
15982
16072
|
id: string;
|
|
15983
16073
|
xTenantSubdomain?: string;
|
|
15984
|
-
}): CancelablePromise<
|
|
16074
|
+
}): CancelablePromise<Customer>;
|
|
15985
16075
|
/**
|
|
15986
16076
|
* Deletes the resource.
|
|
15987
16077
|
* @returns any Success
|
|
@@ -15998,43 +16088,23 @@ declare class PublicFacilitiesService {
|
|
|
15998
16088
|
xTenantSubdomain?: string;
|
|
15999
16089
|
}): CancelablePromise<any>;
|
|
16000
16090
|
/**
|
|
16001
|
-
* @returns
|
|
16091
|
+
* @returns CustomerPage Success
|
|
16002
16092
|
* @throws ApiError
|
|
16003
16093
|
*/
|
|
16004
|
-
getPage({ xTenantSubdomain,
|
|
16094
|
+
getPage({ xTenantSubdomain, wildcard, email, venueId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16005
16095
|
xTenantSubdomain?: string;
|
|
16006
16096
|
/**
|
|
16007
|
-
* Gets or sets the
|
|
16008
|
-
*/
|
|
16009
|
-
ids?: Array<string>;
|
|
16010
|
-
/**
|
|
16011
|
-
* Gets or sets the queryable Venue Id.
|
|
16012
|
-
*/
|
|
16013
|
-
venueId?: string;
|
|
16014
|
-
/**
|
|
16015
|
-
* Gets or sets a value indicating whether to only return facilities with future slots available.
|
|
16016
|
-
*/
|
|
16017
|
-
futureOnly?: boolean;
|
|
16018
|
-
/**
|
|
16019
|
-
* Gets or sets a value indicating whether return online facilities.
|
|
16020
|
-
*/
|
|
16021
|
-
online?: boolean;
|
|
16022
|
-
/**
|
|
16023
|
-
* Gets or sets a value indicating whether to inlcude the facilities next availability.
|
|
16024
|
-
*/
|
|
16025
|
-
includeNextOpportunity?: boolean;
|
|
16026
|
-
/**
|
|
16027
|
-
* Gets or sets a value indicating whether to include archived facilities.
|
|
16097
|
+
* Gets or sets the wildcard for use in a query search.
|
|
16028
16098
|
*/
|
|
16029
|
-
|
|
16099
|
+
wildcard?: string;
|
|
16030
16100
|
/**
|
|
16031
|
-
* Gets or sets
|
|
16101
|
+
* Gets or sets the customers email for use in a query search.
|
|
16032
16102
|
*/
|
|
16033
|
-
|
|
16103
|
+
email?: string;
|
|
16034
16104
|
/**
|
|
16035
|
-
* Gets or sets
|
|
16105
|
+
* Gets or sets the customers venue id for use in a query search.
|
|
16036
16106
|
*/
|
|
16037
|
-
|
|
16107
|
+
venueId?: string;
|
|
16038
16108
|
/**
|
|
16039
16109
|
* Gets or sets the page number for paged queries.
|
|
16040
16110
|
*/
|
|
@@ -16075,7 +16145,7 @@ declare class PublicFacilitiesService {
|
|
|
16075
16145
|
* Gets or sets the sort order direction.
|
|
16076
16146
|
*/
|
|
16077
16147
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
16078
|
-
}): CancelablePromise<
|
|
16148
|
+
}): CancelablePromise<CustomerPage>;
|
|
16079
16149
|
/**
|
|
16080
16150
|
* Deletes the resource.
|
|
16081
16151
|
* @returns any Success
|
|
@@ -16089,50 +16159,30 @@ declare class PublicFacilitiesService {
|
|
|
16089
16159
|
/**
|
|
16090
16160
|
* The <typeparamref name="TObject" /> model.
|
|
16091
16161
|
*/
|
|
16092
|
-
requestBody?:
|
|
16162
|
+
requestBody?: Customer;
|
|
16093
16163
|
}): CancelablePromise<any>;
|
|
16094
16164
|
/**
|
|
16095
16165
|
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
16096
16166
|
* @returns boolean Success
|
|
16097
16167
|
* @throws ApiError
|
|
16098
16168
|
*/
|
|
16099
|
-
exists({ xTenantSubdomain,
|
|
16169
|
+
exists({ xTenantSubdomain, wildcard, email, venueId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16100
16170
|
/**
|
|
16101
16171
|
* The tenants subdomain.
|
|
16102
16172
|
*/
|
|
16103
16173
|
xTenantSubdomain?: string;
|
|
16104
16174
|
/**
|
|
16105
|
-
* Gets or sets the
|
|
16106
|
-
*/
|
|
16107
|
-
ids?: Array<string>;
|
|
16108
|
-
/**
|
|
16109
|
-
* Gets or sets the queryable Venue Id.
|
|
16110
|
-
*/
|
|
16111
|
-
venueId?: string;
|
|
16112
|
-
/**
|
|
16113
|
-
* Gets or sets a value indicating whether to only return facilities with future slots available.
|
|
16114
|
-
*/
|
|
16115
|
-
futureOnly?: boolean;
|
|
16116
|
-
/**
|
|
16117
|
-
* Gets or sets a value indicating whether return online facilities.
|
|
16118
|
-
*/
|
|
16119
|
-
online?: boolean;
|
|
16120
|
-
/**
|
|
16121
|
-
* Gets or sets a value indicating whether to inlcude the facilities next availability.
|
|
16122
|
-
*/
|
|
16123
|
-
includeNextOpportunity?: boolean;
|
|
16124
|
-
/**
|
|
16125
|
-
* Gets or sets a value indicating whether to include archived facilities.
|
|
16175
|
+
* Gets or sets the wildcard for use in a query search.
|
|
16126
16176
|
*/
|
|
16127
|
-
|
|
16177
|
+
wildcard?: string;
|
|
16128
16178
|
/**
|
|
16129
|
-
* Gets or sets
|
|
16179
|
+
* Gets or sets the customers email for use in a query search.
|
|
16130
16180
|
*/
|
|
16131
|
-
|
|
16181
|
+
email?: string;
|
|
16132
16182
|
/**
|
|
16133
|
-
* Gets or sets
|
|
16183
|
+
* Gets or sets the customers venue id for use in a query search.
|
|
16134
16184
|
*/
|
|
16135
|
-
|
|
16185
|
+
venueId?: string;
|
|
16136
16186
|
/**
|
|
16137
16187
|
* Gets or sets the page number for paged queries.
|
|
16138
16188
|
*/
|
|
@@ -16176,7 +16226,7 @@ declare class PublicFacilitiesService {
|
|
|
16176
16226
|
}): CancelablePromise<boolean>;
|
|
16177
16227
|
/**
|
|
16178
16228
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
16179
|
-
* @returns
|
|
16229
|
+
* @returns Customer Success
|
|
16180
16230
|
* @throws ApiError
|
|
16181
16231
|
*/
|
|
16182
16232
|
post({ xTenantSubdomain, requestBody, }: {
|
|
@@ -16187,11 +16237,11 @@ declare class PublicFacilitiesService {
|
|
|
16187
16237
|
/**
|
|
16188
16238
|
* The <typeparamref name="TObject" /> model.
|
|
16189
16239
|
*/
|
|
16190
|
-
requestBody?:
|
|
16191
|
-
}): CancelablePromise<
|
|
16240
|
+
requestBody?: CustomerPost;
|
|
16241
|
+
}): CancelablePromise<Customer>;
|
|
16192
16242
|
/**
|
|
16193
16243
|
* Patches the resource.
|
|
16194
|
-
* @returns
|
|
16244
|
+
* @returns Customer Success
|
|
16195
16245
|
* @throws ApiError
|
|
16196
16246
|
*/
|
|
16197
16247
|
patch({ xTenantSubdomain, requestBody, }: {
|
|
@@ -16202,11 +16252,11 @@ declare class PublicFacilitiesService {
|
|
|
16202
16252
|
/**
|
|
16203
16253
|
* The <typeparamref name="TObject" /> model.
|
|
16204
16254
|
*/
|
|
16205
|
-
requestBody?:
|
|
16206
|
-
}): CancelablePromise<
|
|
16255
|
+
requestBody?: CustomerPatch;
|
|
16256
|
+
}): CancelablePromise<Customer>;
|
|
16207
16257
|
/**
|
|
16208
16258
|
* Inserts a list of resources.
|
|
16209
|
-
* @returns
|
|
16259
|
+
* @returns Customer Success
|
|
16210
16260
|
* @throws ApiError
|
|
16211
16261
|
*/
|
|
16212
16262
|
postList({ xTenantSubdomain, requestBody, }: {
|
|
@@ -16217,32 +16267,21 @@ declare class PublicFacilitiesService {
|
|
|
16217
16267
|
/**
|
|
16218
16268
|
* The list of <typeparamref name="TObject" />.
|
|
16219
16269
|
*/
|
|
16220
|
-
requestBody?: Array<
|
|
16221
|
-
}): CancelablePromise<Array<
|
|
16222
|
-
}
|
|
16223
|
-
|
|
16224
|
-
declare class PublicHealthCheckService {
|
|
16225
|
-
readonly httpRequest: BaseHttpRequest;
|
|
16226
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
16227
|
-
/**
|
|
16228
|
-
* Accepts a ping to check App and Db status.
|
|
16229
|
-
* @returns any Success
|
|
16230
|
-
* @throws ApiError
|
|
16231
|
-
*/
|
|
16232
|
-
getObject(): CancelablePromise<any>;
|
|
16270
|
+
requestBody?: Array<CustomerPost>;
|
|
16271
|
+
}): CancelablePromise<Array<Customer>>;
|
|
16233
16272
|
}
|
|
16234
16273
|
|
|
16235
|
-
declare class
|
|
16274
|
+
declare class PublicFacilitiesService {
|
|
16236
16275
|
readonly httpRequest: BaseHttpRequest;
|
|
16237
16276
|
constructor(httpRequest: BaseHttpRequest);
|
|
16238
16277
|
/**
|
|
16239
|
-
* @returns
|
|
16278
|
+
* @returns Facility Success
|
|
16240
16279
|
* @throws ApiError
|
|
16241
16280
|
*/
|
|
16242
16281
|
getObject({ id, xTenantSubdomain, }: {
|
|
16243
16282
|
id: string;
|
|
16244
16283
|
xTenantSubdomain?: string;
|
|
16245
|
-
}): CancelablePromise<
|
|
16284
|
+
}): CancelablePromise<Facility>;
|
|
16246
16285
|
/**
|
|
16247
16286
|
* Deletes the resource.
|
|
16248
16287
|
* @returns any Success
|
|
@@ -16259,208 +16298,141 @@ declare class PublicLeasingService {
|
|
|
16259
16298
|
xTenantSubdomain?: string;
|
|
16260
16299
|
}): CancelablePromise<any>;
|
|
16261
16300
|
/**
|
|
16262
|
-
*
|
|
16263
|
-
* @returns any Success
|
|
16301
|
+
* @returns FacilityPage Success
|
|
16264
16302
|
* @throws ApiError
|
|
16265
16303
|
*/
|
|
16266
|
-
|
|
16304
|
+
getPage({ xTenantSubdomain, ids, venueId, futureOnly, online, includeNextOpportunity, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16305
|
+
xTenantSubdomain?: string;
|
|
16267
16306
|
/**
|
|
16268
|
-
*
|
|
16307
|
+
* Gets or sets the queryable facility ids.
|
|
16269
16308
|
*/
|
|
16270
|
-
|
|
16309
|
+
ids?: Array<string>;
|
|
16271
16310
|
/**
|
|
16272
|
-
*
|
|
16311
|
+
* Gets or sets the queryable Venue Id.
|
|
16273
16312
|
*/
|
|
16274
|
-
|
|
16313
|
+
venueId?: string;
|
|
16275
16314
|
/**
|
|
16276
|
-
*
|
|
16315
|
+
* Gets or sets a value indicating whether to only return facilities with future slots available.
|
|
16277
16316
|
*/
|
|
16278
|
-
|
|
16279
|
-
}): CancelablePromise<any>;
|
|
16280
|
-
/**
|
|
16281
|
-
* Gets a Reach.Models.Tenant by its subdomain.
|
|
16282
|
-
* @returns any Success
|
|
16283
|
-
* @throws ApiError
|
|
16284
|
-
*/
|
|
16285
|
-
convertToOrder({ orderId, xTenantSubdomain, requestBody, }: {
|
|
16317
|
+
futureOnly?: boolean;
|
|
16286
16318
|
/**
|
|
16287
|
-
*
|
|
16319
|
+
* Gets or sets a value indicating whether return online facilities.
|
|
16288
16320
|
*/
|
|
16289
|
-
|
|
16321
|
+
online?: boolean;
|
|
16290
16322
|
/**
|
|
16291
|
-
*
|
|
16323
|
+
* Gets or sets a value indicating whether to inlcude the facilities next availability.
|
|
16292
16324
|
*/
|
|
16293
|
-
|
|
16325
|
+
includeNextOpportunity?: boolean;
|
|
16294
16326
|
/**
|
|
16295
|
-
*
|
|
16327
|
+
* Gets or sets a value indicating whether to include archived facilities.
|
|
16296
16328
|
*/
|
|
16297
|
-
|
|
16298
|
-
}): CancelablePromise<any>;
|
|
16299
|
-
/**
|
|
16300
|
-
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
16301
|
-
* @returns boolean Success
|
|
16302
|
-
* @throws ApiError
|
|
16303
|
-
*/
|
|
16304
|
-
exists({ xTenantSubdomain, wildcard, accessCode, venueId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16329
|
+
archived?: boolean;
|
|
16305
16330
|
/**
|
|
16306
|
-
*
|
|
16331
|
+
* Gets or sets a value indicating whether to include deleted facilities.
|
|
16307
16332
|
*/
|
|
16308
|
-
|
|
16333
|
+
deleted?: boolean;
|
|
16309
16334
|
/**
|
|
16310
|
-
* Gets or sets
|
|
16335
|
+
* Gets or sets a value indicating this an openactive reaquest.
|
|
16311
16336
|
*/
|
|
16312
|
-
|
|
16337
|
+
openActiveUpdate?: boolean;
|
|
16313
16338
|
/**
|
|
16314
|
-
* Gets or sets the
|
|
16339
|
+
* Gets or sets the page number for paged queries.
|
|
16315
16340
|
*/
|
|
16316
|
-
|
|
16341
|
+
pageNumber?: number;
|
|
16317
16342
|
/**
|
|
16318
|
-
* Gets or sets the
|
|
16343
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
16319
16344
|
*/
|
|
16320
|
-
|
|
16345
|
+
take?: number;
|
|
16321
16346
|
/**
|
|
16322
|
-
* Gets or sets the
|
|
16347
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
16323
16348
|
*/
|
|
16324
|
-
|
|
16349
|
+
limitListRequests?: boolean;
|
|
16325
16350
|
/**
|
|
16326
|
-
* Gets or sets the
|
|
16351
|
+
* Gets or sets the Tenant Id.
|
|
16327
16352
|
*/
|
|
16328
|
-
|
|
16353
|
+
tenantId?: string;
|
|
16329
16354
|
/**
|
|
16330
|
-
* Gets or sets the
|
|
16355
|
+
* Gets or sets the Modifed By Id.
|
|
16331
16356
|
*/
|
|
16332
|
-
|
|
16357
|
+
modifiedById?: string;
|
|
16333
16358
|
/**
|
|
16334
|
-
* Gets or sets the
|
|
16359
|
+
* Gets or sets the Modifed By Ids.
|
|
16335
16360
|
*/
|
|
16336
|
-
|
|
16361
|
+
modifiedByIds?: Array<string>;
|
|
16337
16362
|
/**
|
|
16338
|
-
* Gets or sets the
|
|
16363
|
+
* Gets or sets the Date Created greater than equal to.
|
|
16339
16364
|
*/
|
|
16340
|
-
|
|
16365
|
+
dateCreatedGte?: string;
|
|
16341
16366
|
/**
|
|
16342
|
-
* Gets or sets the
|
|
16367
|
+
* Gets or sets the Date Created less than equal to.
|
|
16343
16368
|
*/
|
|
16344
|
-
|
|
16369
|
+
dateCreatedLte?: string;
|
|
16345
16370
|
/**
|
|
16346
|
-
* Gets or sets
|
|
16371
|
+
* Gets or sets the queryable only is live status.
|
|
16347
16372
|
*/
|
|
16348
|
-
|
|
16349
|
-
/**
|
|
16350
|
-
* Gets or sets the queryable order stages.
|
|
16351
|
-
*/
|
|
16352
|
-
orderStages?: Array<OrderStage>;
|
|
16353
|
-
/**
|
|
16354
|
-
* Gets or sets the queryable order date creted is greater than or equal to.
|
|
16355
|
-
*/
|
|
16356
|
-
orderDateGte?: string;
|
|
16357
|
-
/**
|
|
16358
|
-
* Gets or sets the queryable order date created is less than or equal to.
|
|
16359
|
-
*/
|
|
16360
|
-
orderDateLte?: string;
|
|
16361
|
-
/**
|
|
16362
|
-
* Gets or sets the page number for paged queries.
|
|
16363
|
-
*/
|
|
16364
|
-
pageNumber?: number;
|
|
16365
|
-
/**
|
|
16366
|
-
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
16367
|
-
*/
|
|
16368
|
-
take?: number;
|
|
16369
|
-
/**
|
|
16370
|
-
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
16371
|
-
*/
|
|
16372
|
-
limitListRequests?: boolean;
|
|
16373
|
-
/**
|
|
16374
|
-
* Gets or sets the Tenant Id.
|
|
16375
|
-
*/
|
|
16376
|
-
tenantId?: string;
|
|
16377
|
-
/**
|
|
16378
|
-
* Gets or sets the Modifed By Id.
|
|
16379
|
-
*/
|
|
16380
|
-
modifiedById?: string;
|
|
16381
|
-
/**
|
|
16382
|
-
* Gets or sets the Modifed By Ids.
|
|
16383
|
-
*/
|
|
16384
|
-
modifiedByIds?: Array<string>;
|
|
16385
|
-
/**
|
|
16386
|
-
* Gets or sets the Date Created greater than equal to.
|
|
16387
|
-
*/
|
|
16388
|
-
dateCreatedGte?: string;
|
|
16389
|
-
/**
|
|
16390
|
-
* Gets or sets the Date Created less than equal to.
|
|
16391
|
-
*/
|
|
16392
|
-
dateCreatedLte?: string;
|
|
16393
|
-
/**
|
|
16394
|
-
* Gets or sets the queryable only is live status.
|
|
16395
|
-
*/
|
|
16396
|
-
isLive?: boolean;
|
|
16373
|
+
isLive?: boolean;
|
|
16397
16374
|
/**
|
|
16398
16375
|
* Gets or sets the sort order direction.
|
|
16399
16376
|
*/
|
|
16400
16377
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
16401
|
-
}): CancelablePromise<
|
|
16378
|
+
}): CancelablePromise<FacilityPage>;
|
|
16402
16379
|
/**
|
|
16403
|
-
*
|
|
16404
|
-
* @returns
|
|
16380
|
+
* Deletes the resource.
|
|
16381
|
+
* @returns any Success
|
|
16405
16382
|
* @throws ApiError
|
|
16406
16383
|
*/
|
|
16407
|
-
|
|
16384
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
16408
16385
|
/**
|
|
16409
16386
|
* The tenants subdomain.
|
|
16410
16387
|
*/
|
|
16411
16388
|
xTenantSubdomain?: string;
|
|
16412
16389
|
/**
|
|
16413
|
-
*
|
|
16414
|
-
*/
|
|
16415
|
-
wildcard?: string;
|
|
16416
|
-
/**
|
|
16417
|
-
* Gets or sets the access code for use in a query search.
|
|
16418
|
-
*/
|
|
16419
|
-
accessCode?: string;
|
|
16420
|
-
/**
|
|
16421
|
-
* Gets or sets the venue Id for use in a query search.
|
|
16422
|
-
*/
|
|
16423
|
-
venueId?: string;
|
|
16424
|
-
/**
|
|
16425
|
-
* Gets or sets the customer Id for use in a query search.
|
|
16390
|
+
* The <typeparamref name="TObject" /> model.
|
|
16426
16391
|
*/
|
|
16427
|
-
|
|
16392
|
+
requestBody?: Facility;
|
|
16393
|
+
}): CancelablePromise<any>;
|
|
16394
|
+
/**
|
|
16395
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
16396
|
+
* @returns boolean Success
|
|
16397
|
+
* @throws ApiError
|
|
16398
|
+
*/
|
|
16399
|
+
exists({ xTenantSubdomain, ids, venueId, futureOnly, online, includeNextOpportunity, archived, deleted, openActiveUpdate, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16428
16400
|
/**
|
|
16429
|
-
*
|
|
16401
|
+
* The tenants subdomain.
|
|
16430
16402
|
*/
|
|
16431
|
-
|
|
16403
|
+
xTenantSubdomain?: string;
|
|
16432
16404
|
/**
|
|
16433
|
-
* Gets or sets the
|
|
16405
|
+
* Gets or sets the queryable facility ids.
|
|
16434
16406
|
*/
|
|
16435
|
-
|
|
16407
|
+
ids?: Array<string>;
|
|
16436
16408
|
/**
|
|
16437
|
-
* Gets or sets the
|
|
16409
|
+
* Gets or sets the queryable Venue Id.
|
|
16438
16410
|
*/
|
|
16439
|
-
|
|
16411
|
+
venueId?: string;
|
|
16440
16412
|
/**
|
|
16441
|
-
* Gets or sets
|
|
16413
|
+
* Gets or sets a value indicating whether to only return facilities with future slots available.
|
|
16442
16414
|
*/
|
|
16443
|
-
|
|
16415
|
+
futureOnly?: boolean;
|
|
16444
16416
|
/**
|
|
16445
|
-
* Gets or sets
|
|
16417
|
+
* Gets or sets a value indicating whether return online facilities.
|
|
16446
16418
|
*/
|
|
16447
|
-
|
|
16419
|
+
online?: boolean;
|
|
16448
16420
|
/**
|
|
16449
|
-
* Gets or sets a value indicating whether to
|
|
16421
|
+
* Gets or sets a value indicating whether to inlcude the facilities next availability.
|
|
16450
16422
|
*/
|
|
16451
|
-
|
|
16423
|
+
includeNextOpportunity?: boolean;
|
|
16452
16424
|
/**
|
|
16453
|
-
* Gets or sets
|
|
16425
|
+
* Gets or sets a value indicating whether to include archived facilities.
|
|
16454
16426
|
*/
|
|
16455
|
-
|
|
16427
|
+
archived?: boolean;
|
|
16456
16428
|
/**
|
|
16457
|
-
* Gets or sets
|
|
16429
|
+
* Gets or sets a value indicating whether to include deleted facilities.
|
|
16458
16430
|
*/
|
|
16459
|
-
|
|
16431
|
+
deleted?: boolean;
|
|
16460
16432
|
/**
|
|
16461
|
-
* Gets or sets
|
|
16433
|
+
* Gets or sets a value indicating this an openactive reaquest.
|
|
16462
16434
|
*/
|
|
16463
|
-
|
|
16435
|
+
openActiveUpdate?: boolean;
|
|
16464
16436
|
/**
|
|
16465
16437
|
* Gets or sets the page number for paged queries.
|
|
16466
16438
|
*/
|
|
@@ -16501,25 +16473,10 @@ declare class PublicLeasingService {
|
|
|
16501
16473
|
* Gets or sets the sort order direction.
|
|
16502
16474
|
*/
|
|
16503
16475
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
16504
|
-
}): CancelablePromise<
|
|
16505
|
-
/**
|
|
16506
|
-
* Deletes the resource.
|
|
16507
|
-
* @returns any Success
|
|
16508
|
-
* @throws ApiError
|
|
16509
|
-
*/
|
|
16510
|
-
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
16511
|
-
/**
|
|
16512
|
-
* The tenants subdomain.
|
|
16513
|
-
*/
|
|
16514
|
-
xTenantSubdomain?: string;
|
|
16515
|
-
/**
|
|
16516
|
-
* The <typeparamref name="TObject" /> model.
|
|
16517
|
-
*/
|
|
16518
|
-
requestBody?: Order;
|
|
16519
|
-
}): CancelablePromise<any>;
|
|
16476
|
+
}): CancelablePromise<boolean>;
|
|
16520
16477
|
/**
|
|
16521
16478
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
16522
|
-
* @returns
|
|
16479
|
+
* @returns Facility Success
|
|
16523
16480
|
* @throws ApiError
|
|
16524
16481
|
*/
|
|
16525
16482
|
post({ xTenantSubdomain, requestBody, }: {
|
|
@@ -16530,11 +16487,11 @@ declare class PublicLeasingService {
|
|
|
16530
16487
|
/**
|
|
16531
16488
|
* The <typeparamref name="TObject" /> model.
|
|
16532
16489
|
*/
|
|
16533
|
-
requestBody?:
|
|
16534
|
-
}): CancelablePromise<
|
|
16490
|
+
requestBody?: FacilityPost;
|
|
16491
|
+
}): CancelablePromise<Facility>;
|
|
16535
16492
|
/**
|
|
16536
16493
|
* Patches the resource.
|
|
16537
|
-
* @returns
|
|
16494
|
+
* @returns Facility Success
|
|
16538
16495
|
* @throws ApiError
|
|
16539
16496
|
*/
|
|
16540
16497
|
patch({ xTenantSubdomain, requestBody, }: {
|
|
@@ -16545,11 +16502,11 @@ declare class PublicLeasingService {
|
|
|
16545
16502
|
/**
|
|
16546
16503
|
* The <typeparamref name="TObject" /> model.
|
|
16547
16504
|
*/
|
|
16548
|
-
requestBody?:
|
|
16549
|
-
}): CancelablePromise<
|
|
16505
|
+
requestBody?: FacilityPatch;
|
|
16506
|
+
}): CancelablePromise<Facility>;
|
|
16550
16507
|
/**
|
|
16551
16508
|
* Inserts a list of resources.
|
|
16552
|
-
* @returns
|
|
16509
|
+
* @returns Facility Success
|
|
16553
16510
|
* @throws ApiError
|
|
16554
16511
|
*/
|
|
16555
16512
|
postList({ xTenantSubdomain, requestBody, }: {
|
|
@@ -16560,11 +16517,22 @@ declare class PublicLeasingService {
|
|
|
16560
16517
|
/**
|
|
16561
16518
|
* The list of <typeparamref name="TObject" />.
|
|
16562
16519
|
*/
|
|
16563
|
-
requestBody?: Array<
|
|
16564
|
-
}): CancelablePromise<Array<
|
|
16520
|
+
requestBody?: Array<FacilityPost>;
|
|
16521
|
+
}): CancelablePromise<Array<Facility>>;
|
|
16565
16522
|
}
|
|
16566
16523
|
|
|
16567
|
-
declare class
|
|
16524
|
+
declare class PublicHealthCheckService {
|
|
16525
|
+
readonly httpRequest: BaseHttpRequest;
|
|
16526
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
16527
|
+
/**
|
|
16528
|
+
* Accepts a ping to check App and Db status.
|
|
16529
|
+
* @returns any Success
|
|
16530
|
+
* @throws ApiError
|
|
16531
|
+
*/
|
|
16532
|
+
getObject(): CancelablePromise<any>;
|
|
16533
|
+
}
|
|
16534
|
+
|
|
16535
|
+
declare class PublicLeasingService {
|
|
16568
16536
|
readonly httpRequest: BaseHttpRequest;
|
|
16569
16537
|
constructor(httpRequest: BaseHttpRequest);
|
|
16570
16538
|
/**
|
|
@@ -16590,6 +16558,44 @@ declare class PublicOrdersService {
|
|
|
16590
16558
|
*/
|
|
16591
16559
|
xTenantSubdomain?: string;
|
|
16592
16560
|
}): CancelablePromise<any>;
|
|
16561
|
+
/**
|
|
16562
|
+
* Refreshes a lease and updates any changes />.
|
|
16563
|
+
* @returns any Success
|
|
16564
|
+
* @throws ApiError
|
|
16565
|
+
*/
|
|
16566
|
+
refresh({ orderId, xTenantSubdomain, requestBody, }: {
|
|
16567
|
+
/**
|
|
16568
|
+
* The order Id.
|
|
16569
|
+
*/
|
|
16570
|
+
orderId: string;
|
|
16571
|
+
/**
|
|
16572
|
+
* The tenants subdomain.
|
|
16573
|
+
*/
|
|
16574
|
+
xTenantSubdomain?: string;
|
|
16575
|
+
/**
|
|
16576
|
+
* The order.
|
|
16577
|
+
*/
|
|
16578
|
+
requestBody?: Order;
|
|
16579
|
+
}): CancelablePromise<any>;
|
|
16580
|
+
/**
|
|
16581
|
+
* Gets a Reach.Models.Tenant by its subdomain.
|
|
16582
|
+
* @returns any Success
|
|
16583
|
+
* @throws ApiError
|
|
16584
|
+
*/
|
|
16585
|
+
convertToOrder({ orderId, xTenantSubdomain, requestBody, }: {
|
|
16586
|
+
/**
|
|
16587
|
+
* The tenants subdomain.
|
|
16588
|
+
*/
|
|
16589
|
+
orderId: string;
|
|
16590
|
+
/**
|
|
16591
|
+
* The tenants subdomain.
|
|
16592
|
+
*/
|
|
16593
|
+
xTenantSubdomain?: string;
|
|
16594
|
+
/**
|
|
16595
|
+
* The tenants subdomain.
|
|
16596
|
+
*/
|
|
16597
|
+
requestBody?: Order;
|
|
16598
|
+
}): CancelablePromise<any>;
|
|
16593
16599
|
/**
|
|
16594
16600
|
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
16595
16601
|
* @returns boolean Success
|
|
@@ -16858,43 +16864,337 @@ declare class PublicOrdersService {
|
|
|
16858
16864
|
}): CancelablePromise<Array<Order>>;
|
|
16859
16865
|
}
|
|
16860
16866
|
|
|
16861
|
-
|
|
16862
|
-
|
|
16863
|
-
|
|
16864
|
-
type OrderToken = {
|
|
16865
|
-
/**
|
|
16866
|
-
* Gets or sets the entities Id.
|
|
16867
|
-
*/
|
|
16868
|
-
id?: string;
|
|
16869
|
-
/**
|
|
16870
|
-
* Gets or sets the tenant Id.
|
|
16871
|
-
*/
|
|
16872
|
-
tenantId: string;
|
|
16873
|
-
/**
|
|
16874
|
-
* Gets or sets the created date of this entity.
|
|
16875
|
-
*/
|
|
16876
|
-
dateCreated: string;
|
|
16877
|
-
/**
|
|
16878
|
-
* Gets or sets the last modified date of this entity.
|
|
16879
|
-
*/
|
|
16880
|
-
dateModified: string;
|
|
16881
|
-
/**
|
|
16882
|
-
* Gets or sets the modified by Id.
|
|
16883
|
-
*/
|
|
16884
|
-
modifiedById?: string | null;
|
|
16867
|
+
declare class PublicOrdersService {
|
|
16868
|
+
readonly httpRequest: BaseHttpRequest;
|
|
16869
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
16885
16870
|
/**
|
|
16886
|
-
*
|
|
16871
|
+
* @returns Order Success
|
|
16872
|
+
* @throws ApiError
|
|
16887
16873
|
*/
|
|
16888
|
-
|
|
16874
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
16875
|
+
id: string;
|
|
16876
|
+
xTenantSubdomain?: string;
|
|
16877
|
+
}): CancelablePromise<Order>;
|
|
16889
16878
|
/**
|
|
16890
|
-
*
|
|
16879
|
+
* Deletes the resource.
|
|
16880
|
+
* @returns any Success
|
|
16881
|
+
* @throws ApiError
|
|
16891
16882
|
*/
|
|
16892
|
-
|
|
16883
|
+
deleteById({ id, xTenantSubdomain, }: {
|
|
16884
|
+
/**
|
|
16885
|
+
* The <typeparamref name="TObject" /> id.
|
|
16886
|
+
*/
|
|
16887
|
+
id: string;
|
|
16888
|
+
/**
|
|
16889
|
+
* The tenants subdomain.
|
|
16890
|
+
*/
|
|
16891
|
+
xTenantSubdomain?: string;
|
|
16892
|
+
}): CancelablePromise<any>;
|
|
16893
16893
|
/**
|
|
16894
|
-
*
|
|
16894
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
16895
|
+
* @returns boolean Success
|
|
16896
|
+
* @throws ApiError
|
|
16895
16897
|
*/
|
|
16896
|
-
|
|
16897
|
-
|
|
16898
|
+
exists({ xTenantSubdomain, wildcard, accessCode, venueId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
16899
|
+
/**
|
|
16900
|
+
* The tenants subdomain.
|
|
16901
|
+
*/
|
|
16902
|
+
xTenantSubdomain?: string;
|
|
16903
|
+
/**
|
|
16904
|
+
* Gets or sets the wildcard for use in a query search.
|
|
16905
|
+
*/
|
|
16906
|
+
wildcard?: string;
|
|
16907
|
+
/**
|
|
16908
|
+
* Gets or sets the access code for use in a query search.
|
|
16909
|
+
*/
|
|
16910
|
+
accessCode?: string;
|
|
16911
|
+
/**
|
|
16912
|
+
* Gets or sets the venue Id for use in a query search.
|
|
16913
|
+
*/
|
|
16914
|
+
venueId?: string;
|
|
16915
|
+
/**
|
|
16916
|
+
* Gets or sets the customer Id for use in a query search.
|
|
16917
|
+
*/
|
|
16918
|
+
customerId?: string;
|
|
16919
|
+
/**
|
|
16920
|
+
* Gets or sets the queryable order ids.
|
|
16921
|
+
*/
|
|
16922
|
+
orderIds?: Array<string>;
|
|
16923
|
+
/**
|
|
16924
|
+
* Gets or sets the session Id for use in a query search.
|
|
16925
|
+
*/
|
|
16926
|
+
sessionId?: string;
|
|
16927
|
+
/**
|
|
16928
|
+
* Gets or sets the facility Id for use in a query search.
|
|
16929
|
+
*/
|
|
16930
|
+
facilityId?: string;
|
|
16931
|
+
/**
|
|
16932
|
+
* Gets or sets the course Id for use in a query search.
|
|
16933
|
+
*/
|
|
16934
|
+
courseId?: string;
|
|
16935
|
+
/**
|
|
16936
|
+
* Gets or sets the queryable order stage. This cannot be used in conjunction with IsBookedOrPendingPayment.
|
|
16937
|
+
*/
|
|
16938
|
+
orderStage?: OrderStage;
|
|
16939
|
+
/**
|
|
16940
|
+
* Gets or sets a value indicating whether to return orders that are either booked or pending payment. This cannot be used in conjunction with OrderStage.
|
|
16941
|
+
*/
|
|
16942
|
+
isBookedOrPendingPayment?: boolean;
|
|
16943
|
+
/**
|
|
16944
|
+
* Gets or sets the queryable order stages.
|
|
16945
|
+
*/
|
|
16946
|
+
orderStages?: Array<OrderStage>;
|
|
16947
|
+
/**
|
|
16948
|
+
* Gets or sets the queryable order date creted is greater than or equal to.
|
|
16949
|
+
*/
|
|
16950
|
+
orderDateGte?: string;
|
|
16951
|
+
/**
|
|
16952
|
+
* Gets or sets the queryable order date created is less than or equal to.
|
|
16953
|
+
*/
|
|
16954
|
+
orderDateLte?: string;
|
|
16955
|
+
/**
|
|
16956
|
+
* Gets or sets the page number for paged queries.
|
|
16957
|
+
*/
|
|
16958
|
+
pageNumber?: number;
|
|
16959
|
+
/**
|
|
16960
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
16961
|
+
*/
|
|
16962
|
+
take?: number;
|
|
16963
|
+
/**
|
|
16964
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
16965
|
+
*/
|
|
16966
|
+
limitListRequests?: boolean;
|
|
16967
|
+
/**
|
|
16968
|
+
* Gets or sets the Tenant Id.
|
|
16969
|
+
*/
|
|
16970
|
+
tenantId?: string;
|
|
16971
|
+
/**
|
|
16972
|
+
* Gets or sets the Modifed By Id.
|
|
16973
|
+
*/
|
|
16974
|
+
modifiedById?: string;
|
|
16975
|
+
/**
|
|
16976
|
+
* Gets or sets the Modifed By Ids.
|
|
16977
|
+
*/
|
|
16978
|
+
modifiedByIds?: Array<string>;
|
|
16979
|
+
/**
|
|
16980
|
+
* Gets or sets the Date Created greater than equal to.
|
|
16981
|
+
*/
|
|
16982
|
+
dateCreatedGte?: string;
|
|
16983
|
+
/**
|
|
16984
|
+
* Gets or sets the Date Created less than equal to.
|
|
16985
|
+
*/
|
|
16986
|
+
dateCreatedLte?: string;
|
|
16987
|
+
/**
|
|
16988
|
+
* Gets or sets the queryable only is live status.
|
|
16989
|
+
*/
|
|
16990
|
+
isLive?: boolean;
|
|
16991
|
+
/**
|
|
16992
|
+
* Gets or sets the sort order direction.
|
|
16993
|
+
*/
|
|
16994
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
16995
|
+
}): CancelablePromise<boolean>;
|
|
16996
|
+
/**
|
|
16997
|
+
* Gets a list of resources.
|
|
16998
|
+
* @returns OrderPage Success
|
|
16999
|
+
* @throws ApiError
|
|
17000
|
+
*/
|
|
17001
|
+
getPage({ xTenantSubdomain, wildcard, accessCode, venueId, customerId, orderIds, sessionId, facilityId, courseId, orderStage, isBookedOrPendingPayment, orderStages, orderDateGte, orderDateLte, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
17002
|
+
/**
|
|
17003
|
+
* The tenants subdomain.
|
|
17004
|
+
*/
|
|
17005
|
+
xTenantSubdomain?: string;
|
|
17006
|
+
/**
|
|
17007
|
+
* Gets or sets the wildcard for use in a query search.
|
|
17008
|
+
*/
|
|
17009
|
+
wildcard?: string;
|
|
17010
|
+
/**
|
|
17011
|
+
* Gets or sets the access code for use in a query search.
|
|
17012
|
+
*/
|
|
17013
|
+
accessCode?: string;
|
|
17014
|
+
/**
|
|
17015
|
+
* Gets or sets the venue Id for use in a query search.
|
|
17016
|
+
*/
|
|
17017
|
+
venueId?: string;
|
|
17018
|
+
/**
|
|
17019
|
+
* Gets or sets the customer Id for use in a query search.
|
|
17020
|
+
*/
|
|
17021
|
+
customerId?: string;
|
|
17022
|
+
/**
|
|
17023
|
+
* Gets or sets the queryable order ids.
|
|
17024
|
+
*/
|
|
17025
|
+
orderIds?: Array<string>;
|
|
17026
|
+
/**
|
|
17027
|
+
* Gets or sets the session Id for use in a query search.
|
|
17028
|
+
*/
|
|
17029
|
+
sessionId?: string;
|
|
17030
|
+
/**
|
|
17031
|
+
* Gets or sets the facility Id for use in a query search.
|
|
17032
|
+
*/
|
|
17033
|
+
facilityId?: string;
|
|
17034
|
+
/**
|
|
17035
|
+
* Gets or sets the course Id for use in a query search.
|
|
17036
|
+
*/
|
|
17037
|
+
courseId?: string;
|
|
17038
|
+
/**
|
|
17039
|
+
* Gets or sets the queryable order stage. This cannot be used in conjunction with IsBookedOrPendingPayment.
|
|
17040
|
+
*/
|
|
17041
|
+
orderStage?: OrderStage;
|
|
17042
|
+
/**
|
|
17043
|
+
* Gets or sets a value indicating whether to return orders that are either booked or pending payment. This cannot be used in conjunction with OrderStage.
|
|
17044
|
+
*/
|
|
17045
|
+
isBookedOrPendingPayment?: boolean;
|
|
17046
|
+
/**
|
|
17047
|
+
* Gets or sets the queryable order stages.
|
|
17048
|
+
*/
|
|
17049
|
+
orderStages?: Array<OrderStage>;
|
|
17050
|
+
/**
|
|
17051
|
+
* Gets or sets the queryable order date creted is greater than or equal to.
|
|
17052
|
+
*/
|
|
17053
|
+
orderDateGte?: string;
|
|
17054
|
+
/**
|
|
17055
|
+
* Gets or sets the queryable order date created is less than or equal to.
|
|
17056
|
+
*/
|
|
17057
|
+
orderDateLte?: string;
|
|
17058
|
+
/**
|
|
17059
|
+
* Gets or sets the page number for paged queries.
|
|
17060
|
+
*/
|
|
17061
|
+
pageNumber?: number;
|
|
17062
|
+
/**
|
|
17063
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
17064
|
+
*/
|
|
17065
|
+
take?: number;
|
|
17066
|
+
/**
|
|
17067
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
17068
|
+
*/
|
|
17069
|
+
limitListRequests?: boolean;
|
|
17070
|
+
/**
|
|
17071
|
+
* Gets or sets the Tenant Id.
|
|
17072
|
+
*/
|
|
17073
|
+
tenantId?: string;
|
|
17074
|
+
/**
|
|
17075
|
+
* Gets or sets the Modifed By Id.
|
|
17076
|
+
*/
|
|
17077
|
+
modifiedById?: string;
|
|
17078
|
+
/**
|
|
17079
|
+
* Gets or sets the Modifed By Ids.
|
|
17080
|
+
*/
|
|
17081
|
+
modifiedByIds?: Array<string>;
|
|
17082
|
+
/**
|
|
17083
|
+
* Gets or sets the Date Created greater than equal to.
|
|
17084
|
+
*/
|
|
17085
|
+
dateCreatedGte?: string;
|
|
17086
|
+
/**
|
|
17087
|
+
* Gets or sets the Date Created less than equal to.
|
|
17088
|
+
*/
|
|
17089
|
+
dateCreatedLte?: string;
|
|
17090
|
+
/**
|
|
17091
|
+
* Gets or sets the queryable only is live status.
|
|
17092
|
+
*/
|
|
17093
|
+
isLive?: boolean;
|
|
17094
|
+
/**
|
|
17095
|
+
* Gets or sets the sort order direction.
|
|
17096
|
+
*/
|
|
17097
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
17098
|
+
}): CancelablePromise<OrderPage>;
|
|
17099
|
+
/**
|
|
17100
|
+
* Deletes the resource.
|
|
17101
|
+
* @returns any Success
|
|
17102
|
+
* @throws ApiError
|
|
17103
|
+
*/
|
|
17104
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
17105
|
+
/**
|
|
17106
|
+
* The tenants subdomain.
|
|
17107
|
+
*/
|
|
17108
|
+
xTenantSubdomain?: string;
|
|
17109
|
+
/**
|
|
17110
|
+
* The <typeparamref name="TObject" /> model.
|
|
17111
|
+
*/
|
|
17112
|
+
requestBody?: Order;
|
|
17113
|
+
}): CancelablePromise<any>;
|
|
17114
|
+
/**
|
|
17115
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
17116
|
+
* @returns Order Success
|
|
17117
|
+
* @throws ApiError
|
|
17118
|
+
*/
|
|
17119
|
+
post({ xTenantSubdomain, requestBody, }: {
|
|
17120
|
+
/**
|
|
17121
|
+
* The tenants subdomain.
|
|
17122
|
+
*/
|
|
17123
|
+
xTenantSubdomain?: string;
|
|
17124
|
+
/**
|
|
17125
|
+
* The <typeparamref name="TObject" /> model.
|
|
17126
|
+
*/
|
|
17127
|
+
requestBody?: OrderPost;
|
|
17128
|
+
}): CancelablePromise<Order>;
|
|
17129
|
+
/**
|
|
17130
|
+
* Patches the resource.
|
|
17131
|
+
* @returns Order Success
|
|
17132
|
+
* @throws ApiError
|
|
17133
|
+
*/
|
|
17134
|
+
patch({ xTenantSubdomain, requestBody, }: {
|
|
17135
|
+
/**
|
|
17136
|
+
* The tenants subdomain.
|
|
17137
|
+
*/
|
|
17138
|
+
xTenantSubdomain?: string;
|
|
17139
|
+
/**
|
|
17140
|
+
* The <typeparamref name="TObject" /> model.
|
|
17141
|
+
*/
|
|
17142
|
+
requestBody?: OrderPatch;
|
|
17143
|
+
}): CancelablePromise<Order>;
|
|
17144
|
+
/**
|
|
17145
|
+
* Inserts a list of resources.
|
|
17146
|
+
* @returns Order Success
|
|
17147
|
+
* @throws ApiError
|
|
17148
|
+
*/
|
|
17149
|
+
postList({ xTenantSubdomain, requestBody, }: {
|
|
17150
|
+
/**
|
|
17151
|
+
* The tenants subdomain.
|
|
17152
|
+
*/
|
|
17153
|
+
xTenantSubdomain?: string;
|
|
17154
|
+
/**
|
|
17155
|
+
* The list of <typeparamref name="TObject" />.
|
|
17156
|
+
*/
|
|
17157
|
+
requestBody?: Array<OrderPost>;
|
|
17158
|
+
}): CancelablePromise<Array<Order>>;
|
|
17159
|
+
}
|
|
17160
|
+
|
|
17161
|
+
/**
|
|
17162
|
+
* Represents an organisation within the Reach application.
|
|
17163
|
+
*/
|
|
17164
|
+
type OrderToken = {
|
|
17165
|
+
/**
|
|
17166
|
+
* Gets or sets the entities Id.
|
|
17167
|
+
*/
|
|
17168
|
+
id?: string;
|
|
17169
|
+
/**
|
|
17170
|
+
* Gets or sets the tenant Id.
|
|
17171
|
+
*/
|
|
17172
|
+
tenantId: string;
|
|
17173
|
+
/**
|
|
17174
|
+
* Gets or sets the created date of this entity.
|
|
17175
|
+
*/
|
|
17176
|
+
dateCreated: string;
|
|
17177
|
+
/**
|
|
17178
|
+
* Gets or sets the last modified date of this entity.
|
|
17179
|
+
*/
|
|
17180
|
+
dateModified: string;
|
|
17181
|
+
/**
|
|
17182
|
+
* Gets or sets the modified by Id.
|
|
17183
|
+
*/
|
|
17184
|
+
modifiedById?: string | null;
|
|
17185
|
+
/**
|
|
17186
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
17187
|
+
*/
|
|
17188
|
+
isLive: boolean;
|
|
17189
|
+
/**
|
|
17190
|
+
* Gets or sets the order Id.
|
|
17191
|
+
*/
|
|
17192
|
+
orderId?: string;
|
|
17193
|
+
/**
|
|
17194
|
+
* Gets or sets the token.
|
|
17195
|
+
*/
|
|
17196
|
+
token?: string | null;
|
|
17197
|
+
};
|
|
16898
17198
|
|
|
16899
17199
|
type OrderTokenPage = {
|
|
16900
17200
|
pagination: Pagination;
|
|
@@ -18484,28 +18784,159 @@ declare class PublicSlotsService {
|
|
|
18484
18784
|
* Gets or sets the sort order direction.
|
|
18485
18785
|
*/
|
|
18486
18786
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
18487
|
-
}): CancelablePromise<SlotPage>;
|
|
18488
|
-
/**
|
|
18489
|
-
* Deletes the resource.
|
|
18490
|
-
* @returns any Success
|
|
18491
|
-
* @throws ApiError
|
|
18492
|
-
*/
|
|
18493
|
-
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
18494
|
-
/**
|
|
18495
|
-
* The tenants subdomain.
|
|
18496
|
-
*/
|
|
18497
|
-
xTenantSubdomain?: string;
|
|
18498
|
-
/**
|
|
18499
|
-
* The <typeparamref name="TObject" /> model.
|
|
18500
|
-
*/
|
|
18501
|
-
requestBody?: Slot;
|
|
18787
|
+
}): CancelablePromise<SlotPage>;
|
|
18788
|
+
/**
|
|
18789
|
+
* Deletes the resource.
|
|
18790
|
+
* @returns any Success
|
|
18791
|
+
* @throws ApiError
|
|
18792
|
+
*/
|
|
18793
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
18794
|
+
/**
|
|
18795
|
+
* The tenants subdomain.
|
|
18796
|
+
*/
|
|
18797
|
+
xTenantSubdomain?: string;
|
|
18798
|
+
/**
|
|
18799
|
+
* The <typeparamref name="TObject" /> model.
|
|
18800
|
+
*/
|
|
18801
|
+
requestBody?: Slot;
|
|
18802
|
+
}): CancelablePromise<any>;
|
|
18803
|
+
/**
|
|
18804
|
+
* Returns distinct slot dates without time information.
|
|
18805
|
+
* @returns any Success
|
|
18806
|
+
* @throws ApiError
|
|
18807
|
+
*/
|
|
18808
|
+
getDistinctSlotDates({ xTenantSubdomain, ids, venueId, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeOffers, includeVenue, hasAvailability, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18809
|
+
/**
|
|
18810
|
+
* The tenants subdomain.
|
|
18811
|
+
*/
|
|
18812
|
+
xTenantSubdomain?: string;
|
|
18813
|
+
/**
|
|
18814
|
+
* Gets or sets the queryable slot ids.
|
|
18815
|
+
*/
|
|
18816
|
+
ids?: Array<string>;
|
|
18817
|
+
/**
|
|
18818
|
+
* Gets or sets the queryable slot venue Id.
|
|
18819
|
+
*/
|
|
18820
|
+
venueId?: string;
|
|
18821
|
+
/**
|
|
18822
|
+
* Gets or sets the queryable slot facility Id.
|
|
18823
|
+
*/
|
|
18824
|
+
facilityId?: string;
|
|
18825
|
+
/**
|
|
18826
|
+
* Gets or sets the queryable slot facility Ids.
|
|
18827
|
+
*/
|
|
18828
|
+
facilityIds?: Array<string>;
|
|
18829
|
+
/**
|
|
18830
|
+
* Gets or sets the queryable slot facility individual Id.
|
|
18831
|
+
*/
|
|
18832
|
+
facilityIndividualId?: string;
|
|
18833
|
+
/**
|
|
18834
|
+
* Gets or sets the queryable slot facility individual Ids.
|
|
18835
|
+
*/
|
|
18836
|
+
facilityIndividualIds?: Array<string>;
|
|
18837
|
+
/**
|
|
18838
|
+
* Gets or sets the queryable slot facility individual Id.
|
|
18839
|
+
*/
|
|
18840
|
+
scheduleId?: string;
|
|
18841
|
+
/**
|
|
18842
|
+
* Gets or sets the queryable slot active status.
|
|
18843
|
+
*/
|
|
18844
|
+
status?: SlotStatus;
|
|
18845
|
+
/**
|
|
18846
|
+
* Gets or sets the queryable slot active status.
|
|
18847
|
+
*/
|
|
18848
|
+
statuses?: Array<SlotStatus>;
|
|
18849
|
+
/**
|
|
18850
|
+
* Gets or sets the queryable booking status.
|
|
18851
|
+
*/
|
|
18852
|
+
bookingStatus?: BookingStatus;
|
|
18853
|
+
/**
|
|
18854
|
+
* Gets or sets the queryable slot start date time is less than or equal to.
|
|
18855
|
+
*/
|
|
18856
|
+
startDateTimeLte?: string;
|
|
18857
|
+
/**
|
|
18858
|
+
* Gets or sets the queryable slot start date time is greater than or equal to.
|
|
18859
|
+
*/
|
|
18860
|
+
startDateTimeGte?: string;
|
|
18861
|
+
/**
|
|
18862
|
+
* Gets or sets the queryable slot end date time is less than or equal to.
|
|
18863
|
+
*/
|
|
18864
|
+
endDateTimeLte?: string;
|
|
18865
|
+
/**
|
|
18866
|
+
* Gets or sets the queryable slot end date time is greater than or equal to.
|
|
18867
|
+
*/
|
|
18868
|
+
endDateTimeGte?: string;
|
|
18869
|
+
/**
|
|
18870
|
+
* Gets or sets the queryable slot remaining uses is less than or equal to.
|
|
18871
|
+
*/
|
|
18872
|
+
remainingUsesLte?: number;
|
|
18873
|
+
/**
|
|
18874
|
+
* Gets or sets the queryable slot remaining uses is greater than or equal to.
|
|
18875
|
+
*/
|
|
18876
|
+
remainingUsesGte?: number;
|
|
18877
|
+
/**
|
|
18878
|
+
* Gets or sets a value indicating whether to only return future slots.
|
|
18879
|
+
*/
|
|
18880
|
+
futureOnly?: boolean;
|
|
18881
|
+
/**
|
|
18882
|
+
* Gets or sets a value indicating whether to include offers in the results.
|
|
18883
|
+
*/
|
|
18884
|
+
includeOffers?: boolean;
|
|
18885
|
+
/**
|
|
18886
|
+
* Gets or sets a value indicating whether to include venue detail in the results.
|
|
18887
|
+
*/
|
|
18888
|
+
includeVenue?: boolean;
|
|
18889
|
+
/**
|
|
18890
|
+
* Gets or sets a value indicating whether the slot has availability.
|
|
18891
|
+
*/
|
|
18892
|
+
hasAvailability?: boolean;
|
|
18893
|
+
/**
|
|
18894
|
+
* Gets or sets the page number for paged queries.
|
|
18895
|
+
*/
|
|
18896
|
+
pageNumber?: number;
|
|
18897
|
+
/**
|
|
18898
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
18899
|
+
*/
|
|
18900
|
+
take?: number;
|
|
18901
|
+
/**
|
|
18902
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
18903
|
+
*/
|
|
18904
|
+
limitListRequests?: boolean;
|
|
18905
|
+
/**
|
|
18906
|
+
* Gets or sets the Tenant Id.
|
|
18907
|
+
*/
|
|
18908
|
+
tenantId?: string;
|
|
18909
|
+
/**
|
|
18910
|
+
* Gets or sets the Modifed By Id.
|
|
18911
|
+
*/
|
|
18912
|
+
modifiedById?: string;
|
|
18913
|
+
/**
|
|
18914
|
+
* Gets or sets the Modifed By Ids.
|
|
18915
|
+
*/
|
|
18916
|
+
modifiedByIds?: Array<string>;
|
|
18917
|
+
/**
|
|
18918
|
+
* Gets or sets the Date Created greater than equal to.
|
|
18919
|
+
*/
|
|
18920
|
+
dateCreatedGte?: string;
|
|
18921
|
+
/**
|
|
18922
|
+
* Gets or sets the Date Created less than equal to.
|
|
18923
|
+
*/
|
|
18924
|
+
dateCreatedLte?: string;
|
|
18925
|
+
/**
|
|
18926
|
+
* Gets or sets the queryable only is live status.
|
|
18927
|
+
*/
|
|
18928
|
+
isLive?: boolean;
|
|
18929
|
+
/**
|
|
18930
|
+
* Gets or sets the sort order direction.
|
|
18931
|
+
*/
|
|
18932
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
18502
18933
|
}): CancelablePromise<any>;
|
|
18503
18934
|
/**
|
|
18504
|
-
* Returns
|
|
18505
|
-
* @returns
|
|
18935
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
18936
|
+
* @returns boolean Success
|
|
18506
18937
|
* @throws ApiError
|
|
18507
18938
|
*/
|
|
18508
|
-
|
|
18939
|
+
exists({ xTenantSubdomain, ids, venueId, facilityId, facilityIds, facilityIndividualId, facilityIndividualIds, scheduleId, status, statuses, bookingStatus, startDateTimeLte, startDateTimeGte, endDateTimeLte, endDateTimeGte, remainingUsesLte, remainingUsesGte, futureOnly, includeOffers, includeVenue, hasAvailability, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18509
18940
|
/**
|
|
18510
18941
|
* The tenants subdomain.
|
|
18511
18942
|
*/
|
|
@@ -18630,97 +19061,299 @@ declare class PublicSlotsService {
|
|
|
18630
19061
|
* Gets or sets the sort order direction.
|
|
18631
19062
|
*/
|
|
18632
19063
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
19064
|
+
}): CancelablePromise<boolean>;
|
|
19065
|
+
/**
|
|
19066
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
19067
|
+
* @returns Slot Success
|
|
19068
|
+
* @throws ApiError
|
|
19069
|
+
*/
|
|
19070
|
+
post({ xTenantSubdomain, requestBody, }: {
|
|
19071
|
+
/**
|
|
19072
|
+
* The tenants subdomain.
|
|
19073
|
+
*/
|
|
19074
|
+
xTenantSubdomain?: string;
|
|
19075
|
+
/**
|
|
19076
|
+
* The <typeparamref name="TObject" /> model.
|
|
19077
|
+
*/
|
|
19078
|
+
requestBody?: SlotPost;
|
|
19079
|
+
}): CancelablePromise<Slot>;
|
|
19080
|
+
/**
|
|
19081
|
+
* Patches the resource.
|
|
19082
|
+
* @returns Slot Success
|
|
19083
|
+
* @throws ApiError
|
|
19084
|
+
*/
|
|
19085
|
+
patch({ xTenantSubdomain, requestBody, }: {
|
|
19086
|
+
/**
|
|
19087
|
+
* The tenants subdomain.
|
|
19088
|
+
*/
|
|
19089
|
+
xTenantSubdomain?: string;
|
|
19090
|
+
/**
|
|
19091
|
+
* The <typeparamref name="TObject" /> model.
|
|
19092
|
+
*/
|
|
19093
|
+
requestBody?: SlotPatch;
|
|
19094
|
+
}): CancelablePromise<Slot>;
|
|
19095
|
+
/**
|
|
19096
|
+
* Inserts a list of resources.
|
|
19097
|
+
* @returns Slot Success
|
|
19098
|
+
* @throws ApiError
|
|
19099
|
+
*/
|
|
19100
|
+
postList({ xTenantSubdomain, requestBody, }: {
|
|
19101
|
+
/**
|
|
19102
|
+
* The tenants subdomain.
|
|
19103
|
+
*/
|
|
19104
|
+
xTenantSubdomain?: string;
|
|
19105
|
+
/**
|
|
19106
|
+
* The list of <typeparamref name="TObject" />.
|
|
19107
|
+
*/
|
|
19108
|
+
requestBody?: Array<SlotPost>;
|
|
19109
|
+
}): CancelablePromise<Array<Slot>>;
|
|
19110
|
+
}
|
|
19111
|
+
|
|
19112
|
+
declare class PublicStripeWebhookService {
|
|
19113
|
+
readonly httpRequest: BaseHttpRequest;
|
|
19114
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
19115
|
+
/**
|
|
19116
|
+
* Processes a Stripe web hook.
|
|
19117
|
+
* @returns any Success
|
|
19118
|
+
* @throws ApiError
|
|
19119
|
+
*/
|
|
19120
|
+
processWebhookEvent({ stripeSignature, }: {
|
|
19121
|
+
/**
|
|
19122
|
+
* The stripe signature.
|
|
19123
|
+
*/
|
|
19124
|
+
stripeSignature?: string;
|
|
18633
19125
|
}): CancelablePromise<any>;
|
|
19126
|
+
}
|
|
19127
|
+
|
|
19128
|
+
/**
|
|
19129
|
+
* Stores a log of survey completions.
|
|
19130
|
+
*/
|
|
19131
|
+
type SurveyCompletionLog = {
|
|
18634
19132
|
/**
|
|
18635
|
-
*
|
|
18636
|
-
|
|
19133
|
+
* Gets or sets the entities Id.
|
|
19134
|
+
*/
|
|
19135
|
+
id?: string;
|
|
19136
|
+
/**
|
|
19137
|
+
* Gets or sets the tenant Id.
|
|
19138
|
+
*/
|
|
19139
|
+
tenantId: string;
|
|
19140
|
+
/**
|
|
19141
|
+
* Gets or sets the created date of this entity.
|
|
19142
|
+
*/
|
|
19143
|
+
dateCreated: string;
|
|
19144
|
+
/**
|
|
19145
|
+
* Gets or sets the last modified date of this entity.
|
|
19146
|
+
*/
|
|
19147
|
+
dateModified: string;
|
|
19148
|
+
/**
|
|
19149
|
+
* Gets or sets the modified by Id.
|
|
19150
|
+
*/
|
|
19151
|
+
modifiedById?: string | null;
|
|
19152
|
+
/**
|
|
19153
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
19154
|
+
*/
|
|
19155
|
+
isLive: boolean;
|
|
19156
|
+
/**
|
|
19157
|
+
* Gets or sets the survey id.
|
|
19158
|
+
*/
|
|
19159
|
+
surveyId?: string;
|
|
19160
|
+
/**
|
|
19161
|
+
* Gets or sets the attendee id.
|
|
19162
|
+
*/
|
|
19163
|
+
attendeeId?: string;
|
|
19164
|
+
/**
|
|
19165
|
+
* Gets or sets the order id.
|
|
19166
|
+
*/
|
|
19167
|
+
orderId?: string;
|
|
19168
|
+
/**
|
|
19169
|
+
* Gets or sets the order item id.
|
|
19170
|
+
*/
|
|
19171
|
+
orderItemId?: string;
|
|
19172
|
+
/**
|
|
19173
|
+
* Gets or sets the session id.
|
|
19174
|
+
*/
|
|
19175
|
+
sessionId?: string | null;
|
|
19176
|
+
/**
|
|
19177
|
+
* Gets or sets the course id.
|
|
19178
|
+
*/
|
|
19179
|
+
courseId?: string | null;
|
|
19180
|
+
};
|
|
19181
|
+
|
|
19182
|
+
type SurveyCompletionLogPage = {
|
|
19183
|
+
pagination: Pagination;
|
|
19184
|
+
readonly items: Array<SurveyCompletionLog>;
|
|
19185
|
+
};
|
|
19186
|
+
|
|
19187
|
+
/**
|
|
19188
|
+
* Post model for survey completion log updates.
|
|
19189
|
+
*/
|
|
19190
|
+
type SurveyCompletionLogPatch = {
|
|
19191
|
+
/**
|
|
19192
|
+
* Gets or sets the tenant Id.
|
|
19193
|
+
*/
|
|
19194
|
+
tenantId: string;
|
|
19195
|
+
/**
|
|
19196
|
+
* Gets or sets the Id.
|
|
19197
|
+
*/
|
|
19198
|
+
id: string;
|
|
19199
|
+
};
|
|
19200
|
+
|
|
19201
|
+
/**
|
|
19202
|
+
* Post model for survey completion log inserts.
|
|
19203
|
+
*/
|
|
19204
|
+
type SurveyCompletionLogPost = {
|
|
19205
|
+
/**
|
|
19206
|
+
* Gets or sets the tenant Id.
|
|
19207
|
+
*/
|
|
19208
|
+
tenantId: string;
|
|
19209
|
+
};
|
|
19210
|
+
|
|
19211
|
+
declare class PublicSurveyCompletionLogsService {
|
|
19212
|
+
readonly httpRequest: BaseHttpRequest;
|
|
19213
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
19214
|
+
/**
|
|
19215
|
+
* @returns SurveyCompletionLog Success
|
|
18637
19216
|
* @throws ApiError
|
|
18638
19217
|
*/
|
|
18639
|
-
|
|
19218
|
+
getObject({ id, xTenantSubdomain, }: {
|
|
19219
|
+
id: string;
|
|
19220
|
+
xTenantSubdomain?: string;
|
|
19221
|
+
}): CancelablePromise<SurveyCompletionLog>;
|
|
19222
|
+
/**
|
|
19223
|
+
* Deletes the resource.
|
|
19224
|
+
* @returns any Success
|
|
19225
|
+
* @throws ApiError
|
|
19226
|
+
*/
|
|
19227
|
+
deleteById({ id, xTenantSubdomain, }: {
|
|
19228
|
+
/**
|
|
19229
|
+
* The <typeparamref name="TObject" /> id.
|
|
19230
|
+
*/
|
|
19231
|
+
id: string;
|
|
18640
19232
|
/**
|
|
18641
19233
|
* The tenants subdomain.
|
|
18642
19234
|
*/
|
|
18643
19235
|
xTenantSubdomain?: string;
|
|
19236
|
+
}): CancelablePromise<any>;
|
|
19237
|
+
/**
|
|
19238
|
+
* @returns SurveyCompletionLogPage Success
|
|
19239
|
+
* @throws ApiError
|
|
19240
|
+
*/
|
|
19241
|
+
getPage({ xTenantSubdomain, surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
19242
|
+
xTenantSubdomain?: string;
|
|
18644
19243
|
/**
|
|
18645
|
-
* Gets or sets the queryable
|
|
19244
|
+
* Gets or sets the queryable Survey Id.
|
|
18646
19245
|
*/
|
|
18647
|
-
|
|
19246
|
+
surveyId?: string;
|
|
18648
19247
|
/**
|
|
18649
|
-
* Gets or sets the queryable
|
|
19248
|
+
* Gets or sets the queryable Attendee Id.
|
|
18650
19249
|
*/
|
|
18651
|
-
|
|
19250
|
+
attendeeId?: string;
|
|
18652
19251
|
/**
|
|
18653
|
-
* Gets or sets the queryable
|
|
19252
|
+
* Gets or sets the queryable Order Id.
|
|
18654
19253
|
*/
|
|
18655
|
-
|
|
19254
|
+
orderId?: string;
|
|
18656
19255
|
/**
|
|
18657
|
-
* Gets or sets the queryable
|
|
19256
|
+
* Gets or sets the queryable Order item Id.
|
|
18658
19257
|
*/
|
|
18659
|
-
|
|
19258
|
+
orderItemId?: string;
|
|
18660
19259
|
/**
|
|
18661
|
-
* Gets or sets the queryable
|
|
19260
|
+
* Gets or sets the queryable Session Id.
|
|
18662
19261
|
*/
|
|
18663
|
-
|
|
19262
|
+
sessionId?: string;
|
|
18664
19263
|
/**
|
|
18665
|
-
* Gets or sets the queryable
|
|
19264
|
+
* Gets or sets the queryable Course Id.
|
|
18666
19265
|
*/
|
|
18667
|
-
|
|
19266
|
+
courseId?: string;
|
|
18668
19267
|
/**
|
|
18669
|
-
* Gets or sets the
|
|
19268
|
+
* Gets or sets the page number for paged queries.
|
|
18670
19269
|
*/
|
|
18671
|
-
|
|
19270
|
+
pageNumber?: number;
|
|
18672
19271
|
/**
|
|
18673
|
-
* Gets or sets the
|
|
19272
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
18674
19273
|
*/
|
|
18675
|
-
|
|
19274
|
+
take?: number;
|
|
18676
19275
|
/**
|
|
18677
|
-
* Gets or sets the
|
|
19276
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
18678
19277
|
*/
|
|
18679
|
-
|
|
19278
|
+
limitListRequests?: boolean;
|
|
18680
19279
|
/**
|
|
18681
|
-
* Gets or sets the
|
|
19280
|
+
* Gets or sets the Tenant Id.
|
|
18682
19281
|
*/
|
|
18683
|
-
|
|
19282
|
+
tenantId?: string;
|
|
18684
19283
|
/**
|
|
18685
|
-
* Gets or sets the
|
|
19284
|
+
* Gets or sets the Modifed By Id.
|
|
18686
19285
|
*/
|
|
18687
|
-
|
|
19286
|
+
modifiedById?: string;
|
|
18688
19287
|
/**
|
|
18689
|
-
* Gets or sets the
|
|
19288
|
+
* Gets or sets the Modifed By Ids.
|
|
18690
19289
|
*/
|
|
18691
|
-
|
|
19290
|
+
modifiedByIds?: Array<string>;
|
|
18692
19291
|
/**
|
|
18693
|
-
* Gets or sets the
|
|
19292
|
+
* Gets or sets the Date Created greater than equal to.
|
|
19293
|
+
*/
|
|
19294
|
+
dateCreatedGte?: string;
|
|
19295
|
+
/**
|
|
19296
|
+
* Gets or sets the Date Created less than equal to.
|
|
19297
|
+
*/
|
|
19298
|
+
dateCreatedLte?: string;
|
|
19299
|
+
/**
|
|
19300
|
+
* Gets or sets the queryable only is live status.
|
|
19301
|
+
*/
|
|
19302
|
+
isLive?: boolean;
|
|
19303
|
+
/**
|
|
19304
|
+
* Gets or sets the sort order direction.
|
|
19305
|
+
*/
|
|
19306
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
19307
|
+
}): CancelablePromise<SurveyCompletionLogPage>;
|
|
19308
|
+
/**
|
|
19309
|
+
* Deletes the resource.
|
|
19310
|
+
* @returns any Success
|
|
19311
|
+
* @throws ApiError
|
|
19312
|
+
*/
|
|
19313
|
+
deleteByObject({ xTenantSubdomain, requestBody, }: {
|
|
19314
|
+
/**
|
|
19315
|
+
* The tenants subdomain.
|
|
19316
|
+
*/
|
|
19317
|
+
xTenantSubdomain?: string;
|
|
19318
|
+
/**
|
|
19319
|
+
* The <typeparamref name="TObject" /> model.
|
|
18694
19320
|
*/
|
|
18695
|
-
|
|
19321
|
+
requestBody?: SurveyCompletionLog;
|
|
19322
|
+
}): CancelablePromise<any>;
|
|
19323
|
+
/**
|
|
19324
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
19325
|
+
* @returns boolean Success
|
|
19326
|
+
* @throws ApiError
|
|
19327
|
+
*/
|
|
19328
|
+
exists({ xTenantSubdomain, surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
18696
19329
|
/**
|
|
18697
|
-
*
|
|
19330
|
+
* The tenants subdomain.
|
|
18698
19331
|
*/
|
|
18699
|
-
|
|
19332
|
+
xTenantSubdomain?: string;
|
|
18700
19333
|
/**
|
|
18701
|
-
* Gets or sets the queryable
|
|
19334
|
+
* Gets or sets the queryable Survey Id.
|
|
18702
19335
|
*/
|
|
18703
|
-
|
|
19336
|
+
surveyId?: string;
|
|
18704
19337
|
/**
|
|
18705
|
-
* Gets or sets the queryable
|
|
19338
|
+
* Gets or sets the queryable Attendee Id.
|
|
18706
19339
|
*/
|
|
18707
|
-
|
|
19340
|
+
attendeeId?: string;
|
|
18708
19341
|
/**
|
|
18709
|
-
* Gets or sets
|
|
19342
|
+
* Gets or sets the queryable Order Id.
|
|
18710
19343
|
*/
|
|
18711
|
-
|
|
19344
|
+
orderId?: string;
|
|
18712
19345
|
/**
|
|
18713
|
-
* Gets or sets
|
|
19346
|
+
* Gets or sets the queryable Order item Id.
|
|
18714
19347
|
*/
|
|
18715
|
-
|
|
19348
|
+
orderItemId?: string;
|
|
18716
19349
|
/**
|
|
18717
|
-
* Gets or sets
|
|
19350
|
+
* Gets or sets the queryable Session Id.
|
|
18718
19351
|
*/
|
|
18719
|
-
|
|
19352
|
+
sessionId?: string;
|
|
18720
19353
|
/**
|
|
18721
|
-
* Gets or sets
|
|
19354
|
+
* Gets or sets the queryable Course Id.
|
|
18722
19355
|
*/
|
|
18723
|
-
|
|
19356
|
+
courseId?: string;
|
|
18724
19357
|
/**
|
|
18725
19358
|
* Gets or sets the page number for paged queries.
|
|
18726
19359
|
*/
|
|
@@ -18764,7 +19397,7 @@ declare class PublicSlotsService {
|
|
|
18764
19397
|
}): CancelablePromise<boolean>;
|
|
18765
19398
|
/**
|
|
18766
19399
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
18767
|
-
* @returns
|
|
19400
|
+
* @returns SurveyCompletionLog Success
|
|
18768
19401
|
* @throws ApiError
|
|
18769
19402
|
*/
|
|
18770
19403
|
post({ xTenantSubdomain, requestBody, }: {
|
|
@@ -18775,11 +19408,11 @@ declare class PublicSlotsService {
|
|
|
18775
19408
|
/**
|
|
18776
19409
|
* The <typeparamref name="TObject" /> model.
|
|
18777
19410
|
*/
|
|
18778
|
-
requestBody?:
|
|
18779
|
-
}): CancelablePromise<
|
|
19411
|
+
requestBody?: SurveyCompletionLogPost;
|
|
19412
|
+
}): CancelablePromise<SurveyCompletionLog>;
|
|
18780
19413
|
/**
|
|
18781
19414
|
* Patches the resource.
|
|
18782
|
-
* @returns
|
|
19415
|
+
* @returns SurveyCompletionLog Success
|
|
18783
19416
|
* @throws ApiError
|
|
18784
19417
|
*/
|
|
18785
19418
|
patch({ xTenantSubdomain, requestBody, }: {
|
|
@@ -18790,11 +19423,11 @@ declare class PublicSlotsService {
|
|
|
18790
19423
|
/**
|
|
18791
19424
|
* The <typeparamref name="TObject" /> model.
|
|
18792
19425
|
*/
|
|
18793
|
-
requestBody?:
|
|
18794
|
-
}): CancelablePromise<
|
|
19426
|
+
requestBody?: SurveyCompletionLogPatch;
|
|
19427
|
+
}): CancelablePromise<SurveyCompletionLog>;
|
|
18795
19428
|
/**
|
|
18796
19429
|
* Inserts a list of resources.
|
|
18797
|
-
* @returns
|
|
19430
|
+
* @returns SurveyCompletionLog Success
|
|
18798
19431
|
* @throws ApiError
|
|
18799
19432
|
*/
|
|
18800
19433
|
postList({ xTenantSubdomain, requestBody, }: {
|
|
@@ -18805,24 +19438,8 @@ declare class PublicSlotsService {
|
|
|
18805
19438
|
/**
|
|
18806
19439
|
* The list of <typeparamref name="TObject" />.
|
|
18807
19440
|
*/
|
|
18808
|
-
requestBody?: Array<
|
|
18809
|
-
}): CancelablePromise<Array<
|
|
18810
|
-
}
|
|
18811
|
-
|
|
18812
|
-
declare class PublicStripeWebhookService {
|
|
18813
|
-
readonly httpRequest: BaseHttpRequest;
|
|
18814
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
18815
|
-
/**
|
|
18816
|
-
* Processes a Stripe web hook.
|
|
18817
|
-
* @returns any Success
|
|
18818
|
-
* @throws ApiError
|
|
18819
|
-
*/
|
|
18820
|
-
processWebhookEvent({ stripeSignature, }: {
|
|
18821
|
-
/**
|
|
18822
|
-
* The stripe signature.
|
|
18823
|
-
*/
|
|
18824
|
-
stripeSignature?: string;
|
|
18825
|
-
}): CancelablePromise<any>;
|
|
19441
|
+
requestBody?: Array<SurveyCompletionLogPost>;
|
|
19442
|
+
}): CancelablePromise<Array<SurveyCompletionLog>>;
|
|
18826
19443
|
}
|
|
18827
19444
|
|
|
18828
19445
|
/**
|
|
@@ -19285,12 +19902,12 @@ declare enum SurveyQuestionsTarget {
|
|
|
19285
19902
|
* Controls the status of the survey response mode.
|
|
19286
19903
|
*/
|
|
19287
19904
|
declare enum SurveyResponseMode {
|
|
19288
|
-
|
|
19289
|
-
|
|
19905
|
+
ASK_ONCE = "AskOnce",
|
|
19906
|
+
ASK_ALWAYS = "AskAlways"
|
|
19290
19907
|
}
|
|
19291
19908
|
|
|
19292
19909
|
/**
|
|
19293
|
-
* Represents a
|
|
19910
|
+
* Represents a survey within the Reach application.
|
|
19294
19911
|
*/
|
|
19295
19912
|
type Survey = {
|
|
19296
19913
|
/**
|
|
@@ -19384,13 +20001,13 @@ type SurveyPost = {
|
|
|
19384
20001
|
};
|
|
19385
20002
|
|
|
19386
20003
|
/**
|
|
19387
|
-
* The
|
|
20004
|
+
* The answer to a single survey question.
|
|
19388
20005
|
*/
|
|
19389
|
-
type
|
|
20006
|
+
type SurveySubmitQuestions = {
|
|
19390
20007
|
/**
|
|
19391
20008
|
* Gets or sets question id.
|
|
19392
20009
|
*/
|
|
19393
|
-
|
|
20010
|
+
id: string;
|
|
19394
20011
|
/**
|
|
19395
20012
|
* Gets or sets the question answer.
|
|
19396
20013
|
*/
|
|
@@ -19401,6 +20018,32 @@ type SurveySubmissionResponse = {
|
|
|
19401
20018
|
answers?: Array<string> | null;
|
|
19402
20019
|
};
|
|
19403
20020
|
|
|
20021
|
+
/**
|
|
20022
|
+
* The attendee the submission is for.
|
|
20023
|
+
*/
|
|
20024
|
+
type SurveySubmitAttendee = {
|
|
20025
|
+
/**
|
|
20026
|
+
* Gets or sets the attendee id.
|
|
20027
|
+
*/
|
|
20028
|
+
id?: string;
|
|
20029
|
+
/**
|
|
20030
|
+
* Gets or sets the attendee first name.
|
|
20031
|
+
*/
|
|
20032
|
+
firstName?: string | null;
|
|
20033
|
+
/**
|
|
20034
|
+
* Gets or sets the attendee last name.
|
|
20035
|
+
*/
|
|
20036
|
+
lastName?: string | null;
|
|
20037
|
+
/**
|
|
20038
|
+
* Gets or sets the attendee number.
|
|
20039
|
+
*/
|
|
20040
|
+
attendeeNumber?: number | null;
|
|
20041
|
+
/**
|
|
20042
|
+
* Gets or sets the survey answers.
|
|
20043
|
+
*/
|
|
20044
|
+
questions: Array<SurveySubmitQuestions>;
|
|
20045
|
+
};
|
|
20046
|
+
|
|
19404
20047
|
/**
|
|
19405
20048
|
* Post model for survey submissions, a survey submission will contain the responses for a single unique attendee/activity combination. So a single order may have multiple survey submissions.
|
|
19406
20049
|
*/
|
|
@@ -19418,17 +20061,9 @@ type SurveySubmit = {
|
|
|
19418
20061
|
*/
|
|
19419
20062
|
orderItemId: string;
|
|
19420
20063
|
/**
|
|
19421
|
-
* Gets or sets the
|
|
19422
|
-
*/
|
|
19423
|
-
attendeeId: string;
|
|
19424
|
-
/**
|
|
19425
|
-
* Gets or sets the attendee number.
|
|
19426
|
-
*/
|
|
19427
|
-
attendeeNumber?: number | null;
|
|
19428
|
-
/**
|
|
19429
|
-
* Gets or sets the survey responses.
|
|
20064
|
+
* Gets or sets the survey submission attendees.
|
|
19430
20065
|
*/
|
|
19431
|
-
|
|
20066
|
+
attendees: Array<SurveySubmitAttendee>;
|
|
19432
20067
|
};
|
|
19433
20068
|
|
|
19434
20069
|
declare class PublicSurveysService {
|
|
@@ -24752,6 +25387,10 @@ type SurveyAnswer = {
|
|
|
24752
25387
|
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
24753
25388
|
*/
|
|
24754
25389
|
isLive: boolean;
|
|
25390
|
+
/**
|
|
25391
|
+
* Gets or sets the survey completion log id.
|
|
25392
|
+
*/
|
|
25393
|
+
surveyCompletionLogId?: string | null;
|
|
24755
25394
|
/**
|
|
24756
25395
|
* Gets or sets the survey id.
|
|
24757
25396
|
*/
|
|
@@ -24794,31 +25433,255 @@ type SurveyAnswerPatch = {
|
|
|
24794
25433
|
*/
|
|
24795
25434
|
tenantId: string;
|
|
24796
25435
|
/**
|
|
24797
|
-
* Gets or sets the Id.
|
|
25436
|
+
* Gets or sets the Id.
|
|
25437
|
+
*/
|
|
25438
|
+
id: string;
|
|
25439
|
+
};
|
|
25440
|
+
|
|
25441
|
+
/**
|
|
25442
|
+
* Post model for survey answer inserts.
|
|
25443
|
+
*/
|
|
25444
|
+
type SurveyAnswerPost = {
|
|
25445
|
+
/**
|
|
25446
|
+
* Gets or sets the tenant Id.
|
|
25447
|
+
*/
|
|
25448
|
+
tenantId: string;
|
|
25449
|
+
};
|
|
25450
|
+
|
|
25451
|
+
declare class SurveyAnswersService {
|
|
25452
|
+
readonly httpRequest: BaseHttpRequest;
|
|
25453
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
25454
|
+
/**
|
|
25455
|
+
* Exports the survey answers list to a csv format.
|
|
25456
|
+
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
25457
|
+
* @returns any Success
|
|
25458
|
+
* @throws ApiError
|
|
25459
|
+
*/
|
|
25460
|
+
exportToCsv({ surveyId, surveyQuestionId, orderItemId, attendeeId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
25461
|
+
/**
|
|
25462
|
+
* Gets or sets the Survey Id.
|
|
25463
|
+
*/
|
|
25464
|
+
surveyId?: string;
|
|
25465
|
+
/**
|
|
25466
|
+
* Gets or sets the Question Id.
|
|
25467
|
+
*/
|
|
25468
|
+
surveyQuestionId?: string;
|
|
25469
|
+
/**
|
|
25470
|
+
* Gets or sets the Order Id.
|
|
25471
|
+
*/
|
|
25472
|
+
orderItemId?: string;
|
|
25473
|
+
/**
|
|
25474
|
+
* Gets or sets the Attendee Id.
|
|
25475
|
+
*/
|
|
25476
|
+
attendeeId?: string;
|
|
25477
|
+
/**
|
|
25478
|
+
* Gets or sets the page number for paged queries.
|
|
25479
|
+
*/
|
|
25480
|
+
pageNumber?: number;
|
|
25481
|
+
/**
|
|
25482
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
25483
|
+
*/
|
|
25484
|
+
take?: number;
|
|
25485
|
+
/**
|
|
25486
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
25487
|
+
*/
|
|
25488
|
+
limitListRequests?: boolean;
|
|
25489
|
+
/**
|
|
25490
|
+
* Gets or sets the Tenant Id.
|
|
25491
|
+
*/
|
|
25492
|
+
tenantId?: string;
|
|
25493
|
+
/**
|
|
25494
|
+
* Gets or sets the Modifed By Id.
|
|
25495
|
+
*/
|
|
25496
|
+
modifiedById?: string;
|
|
25497
|
+
/**
|
|
25498
|
+
* Gets or sets the Modifed By Ids.
|
|
25499
|
+
*/
|
|
25500
|
+
modifiedByIds?: Array<string>;
|
|
25501
|
+
/**
|
|
25502
|
+
* Gets or sets the Date Created greater than equal to.
|
|
25503
|
+
*/
|
|
25504
|
+
dateCreatedGte?: string;
|
|
25505
|
+
/**
|
|
25506
|
+
* Gets or sets the Date Created less than equal to.
|
|
25507
|
+
*/
|
|
25508
|
+
dateCreatedLte?: string;
|
|
25509
|
+
/**
|
|
25510
|
+
* Gets or sets the queryable only is live status.
|
|
25511
|
+
*/
|
|
25512
|
+
isLive?: boolean;
|
|
25513
|
+
/**
|
|
25514
|
+
* Gets or sets the sort order direction.
|
|
25515
|
+
*/
|
|
25516
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
25517
|
+
formData?: {
|
|
25518
|
+
/**
|
|
25519
|
+
* Gets or sets the auth token.
|
|
25520
|
+
*/
|
|
25521
|
+
Token?: string;
|
|
25522
|
+
};
|
|
25523
|
+
}): CancelablePromise<any>;
|
|
25524
|
+
/**
|
|
25525
|
+
* Exports the customers list to an xlsx format.
|
|
25526
|
+
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
25527
|
+
* @returns any Success
|
|
25528
|
+
* @throws ApiError
|
|
25529
|
+
*/
|
|
25530
|
+
exportToXlsx({ surveyId, surveyQuestionId, orderItemId, attendeeId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, formData, }: {
|
|
25531
|
+
/**
|
|
25532
|
+
* Gets or sets the Survey Id.
|
|
25533
|
+
*/
|
|
25534
|
+
surveyId?: string;
|
|
25535
|
+
/**
|
|
25536
|
+
* Gets or sets the Question Id.
|
|
25537
|
+
*/
|
|
25538
|
+
surveyQuestionId?: string;
|
|
25539
|
+
/**
|
|
25540
|
+
* Gets or sets the Order Id.
|
|
25541
|
+
*/
|
|
25542
|
+
orderItemId?: string;
|
|
25543
|
+
/**
|
|
25544
|
+
* Gets or sets the Attendee Id.
|
|
25545
|
+
*/
|
|
25546
|
+
attendeeId?: string;
|
|
25547
|
+
/**
|
|
25548
|
+
* Gets or sets the page number for paged queries.
|
|
25549
|
+
*/
|
|
25550
|
+
pageNumber?: number;
|
|
25551
|
+
/**
|
|
25552
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
25553
|
+
*/
|
|
25554
|
+
take?: number;
|
|
25555
|
+
/**
|
|
25556
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
25557
|
+
*/
|
|
25558
|
+
limitListRequests?: boolean;
|
|
25559
|
+
/**
|
|
25560
|
+
* Gets or sets the Tenant Id.
|
|
25561
|
+
*/
|
|
25562
|
+
tenantId?: string;
|
|
25563
|
+
/**
|
|
25564
|
+
* Gets or sets the Modifed By Id.
|
|
25565
|
+
*/
|
|
25566
|
+
modifiedById?: string;
|
|
25567
|
+
/**
|
|
25568
|
+
* Gets or sets the Modifed By Ids.
|
|
25569
|
+
*/
|
|
25570
|
+
modifiedByIds?: Array<string>;
|
|
25571
|
+
/**
|
|
25572
|
+
* Gets or sets the Date Created greater than equal to.
|
|
25573
|
+
*/
|
|
25574
|
+
dateCreatedGte?: string;
|
|
25575
|
+
/**
|
|
25576
|
+
* Gets or sets the Date Created less than equal to.
|
|
25577
|
+
*/
|
|
25578
|
+
dateCreatedLte?: string;
|
|
25579
|
+
/**
|
|
25580
|
+
* Gets or sets the queryable only is live status.
|
|
25581
|
+
*/
|
|
25582
|
+
isLive?: boolean;
|
|
25583
|
+
/**
|
|
25584
|
+
* Gets or sets the sort order direction.
|
|
25585
|
+
*/
|
|
25586
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
25587
|
+
formData?: {
|
|
25588
|
+
/**
|
|
25589
|
+
* Gets or sets the auth token.
|
|
25590
|
+
*/
|
|
25591
|
+
Token?: string;
|
|
25592
|
+
};
|
|
25593
|
+
}): CancelablePromise<any>;
|
|
25594
|
+
/**
|
|
25595
|
+
* Gets the resource by its Id.
|
|
25596
|
+
* @returns SurveyAnswer Success
|
|
25597
|
+
* @throws ApiError
|
|
25598
|
+
*/
|
|
25599
|
+
getObject({ id, }: {
|
|
25600
|
+
/**
|
|
25601
|
+
* The <typeparamref name="TObject" /> id.
|
|
25602
|
+
*/
|
|
25603
|
+
id: string;
|
|
25604
|
+
}): CancelablePromise<SurveyAnswer>;
|
|
25605
|
+
/**
|
|
25606
|
+
* Deletes the resource.
|
|
25607
|
+
* @returns any Success
|
|
25608
|
+
* @throws ApiError
|
|
24798
25609
|
*/
|
|
24799
|
-
id:
|
|
24800
|
-
|
|
24801
|
-
|
|
24802
|
-
|
|
24803
|
-
|
|
24804
|
-
|
|
24805
|
-
type SurveyAnswerPost = {
|
|
25610
|
+
deleteById({ id, }: {
|
|
25611
|
+
/**
|
|
25612
|
+
* The <typeparamref name="TObject" /> id.
|
|
25613
|
+
*/
|
|
25614
|
+
id: string;
|
|
25615
|
+
}): CancelablePromise<any>;
|
|
24806
25616
|
/**
|
|
24807
|
-
*
|
|
25617
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
25618
|
+
* @returns boolean Success
|
|
25619
|
+
* @throws ApiError
|
|
24808
25620
|
*/
|
|
24809
|
-
tenantId:
|
|
24810
|
-
|
|
24811
|
-
|
|
24812
|
-
|
|
24813
|
-
|
|
24814
|
-
|
|
25621
|
+
exists({ surveyId, surveyQuestionId, orderItemId, attendeeId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25622
|
+
/**
|
|
25623
|
+
* Gets or sets the Survey Id.
|
|
25624
|
+
*/
|
|
25625
|
+
surveyId?: string;
|
|
25626
|
+
/**
|
|
25627
|
+
* Gets or sets the Question Id.
|
|
25628
|
+
*/
|
|
25629
|
+
surveyQuestionId?: string;
|
|
25630
|
+
/**
|
|
25631
|
+
* Gets or sets the Order Id.
|
|
25632
|
+
*/
|
|
25633
|
+
orderItemId?: string;
|
|
25634
|
+
/**
|
|
25635
|
+
* Gets or sets the Attendee Id.
|
|
25636
|
+
*/
|
|
25637
|
+
attendeeId?: string;
|
|
25638
|
+
/**
|
|
25639
|
+
* Gets or sets the page number for paged queries.
|
|
25640
|
+
*/
|
|
25641
|
+
pageNumber?: number;
|
|
25642
|
+
/**
|
|
25643
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
25644
|
+
*/
|
|
25645
|
+
take?: number;
|
|
25646
|
+
/**
|
|
25647
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
25648
|
+
*/
|
|
25649
|
+
limitListRequests?: boolean;
|
|
25650
|
+
/**
|
|
25651
|
+
* Gets or sets the Tenant Id.
|
|
25652
|
+
*/
|
|
25653
|
+
tenantId?: string;
|
|
25654
|
+
/**
|
|
25655
|
+
* Gets or sets the Modifed By Id.
|
|
25656
|
+
*/
|
|
25657
|
+
modifiedById?: string;
|
|
25658
|
+
/**
|
|
25659
|
+
* Gets or sets the Modifed By Ids.
|
|
25660
|
+
*/
|
|
25661
|
+
modifiedByIds?: Array<string>;
|
|
25662
|
+
/**
|
|
25663
|
+
* Gets or sets the Date Created greater than equal to.
|
|
25664
|
+
*/
|
|
25665
|
+
dateCreatedGte?: string;
|
|
25666
|
+
/**
|
|
25667
|
+
* Gets or sets the Date Created less than equal to.
|
|
25668
|
+
*/
|
|
25669
|
+
dateCreatedLte?: string;
|
|
25670
|
+
/**
|
|
25671
|
+
* Gets or sets the queryable only is live status.
|
|
25672
|
+
*/
|
|
25673
|
+
isLive?: boolean;
|
|
25674
|
+
/**
|
|
25675
|
+
* Gets or sets the sort order direction.
|
|
25676
|
+
*/
|
|
25677
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
25678
|
+
}): CancelablePromise<boolean>;
|
|
24815
25679
|
/**
|
|
24816
|
-
*
|
|
24817
|
-
*
|
|
24818
|
-
* @returns any Success
|
|
25680
|
+
* Gets a list of resources.
|
|
25681
|
+
* @returns SurveyAnswerPage Success
|
|
24819
25682
|
* @throws ApiError
|
|
24820
25683
|
*/
|
|
24821
|
-
|
|
25684
|
+
getPage({ surveyId, surveyQuestionId, orderItemId, attendeeId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24822
25685
|
/**
|
|
24823
25686
|
* Gets or sets the Survey Id.
|
|
24824
25687
|
*/
|
|
@@ -24831,6 +25694,10 @@ declare class SurveyAnswersService {
|
|
|
24831
25694
|
* Gets or sets the Order Id.
|
|
24832
25695
|
*/
|
|
24833
25696
|
orderItemId?: string;
|
|
25697
|
+
/**
|
|
25698
|
+
* Gets or sets the Attendee Id.
|
|
25699
|
+
*/
|
|
25700
|
+
attendeeId?: string;
|
|
24834
25701
|
/**
|
|
24835
25702
|
* Gets or sets the page number for paged queries.
|
|
24836
25703
|
*/
|
|
@@ -24871,20 +25738,24 @@ declare class SurveyAnswersService {
|
|
|
24871
25738
|
* Gets or sets the sort order direction.
|
|
24872
25739
|
*/
|
|
24873
25740
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
24874
|
-
|
|
24875
|
-
/**
|
|
24876
|
-
* Gets or sets the auth token.
|
|
24877
|
-
*/
|
|
24878
|
-
Token?: string;
|
|
24879
|
-
};
|
|
24880
|
-
}): CancelablePromise<any>;
|
|
25741
|
+
}): CancelablePromise<SurveyAnswerPage>;
|
|
24881
25742
|
/**
|
|
24882
|
-
*
|
|
24883
|
-
* Endpoint has AllowAnonymous attr, however the jwt is validated in the method body (in support of authenticated file downloads.
|
|
25743
|
+
* Deletes the resource.
|
|
24884
25744
|
* @returns any Success
|
|
24885
25745
|
* @throws ApiError
|
|
24886
25746
|
*/
|
|
24887
|
-
|
|
25747
|
+
deleteByObject({ requestBody, }: {
|
|
25748
|
+
/**
|
|
25749
|
+
* The <typeparamref name="TObject" /> model.
|
|
25750
|
+
*/
|
|
25751
|
+
requestBody?: SurveyAnswer;
|
|
25752
|
+
}): CancelablePromise<any>;
|
|
25753
|
+
/**
|
|
25754
|
+
* Gets a list of resources.
|
|
25755
|
+
* @returns SurveyAnswer Success
|
|
25756
|
+
* @throws ApiError
|
|
25757
|
+
*/
|
|
25758
|
+
getListIdName({ surveyId, surveyQuestionId, orderItemId, attendeeId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24888
25759
|
/**
|
|
24889
25760
|
* Gets or sets the Survey Id.
|
|
24890
25761
|
*/
|
|
@@ -24897,6 +25768,10 @@ declare class SurveyAnswersService {
|
|
|
24897
25768
|
* Gets or sets the Order Id.
|
|
24898
25769
|
*/
|
|
24899
25770
|
orderItemId?: string;
|
|
25771
|
+
/**
|
|
25772
|
+
* Gets or sets the Attendee Id.
|
|
25773
|
+
*/
|
|
25774
|
+
attendeeId?: string;
|
|
24900
25775
|
/**
|
|
24901
25776
|
* Gets or sets the page number for paged queries.
|
|
24902
25777
|
*/
|
|
@@ -24937,24 +25812,78 @@ declare class SurveyAnswersService {
|
|
|
24937
25812
|
* Gets or sets the sort order direction.
|
|
24938
25813
|
*/
|
|
24939
25814
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
24940
|
-
|
|
24941
|
-
/**
|
|
24942
|
-
* Gets or sets the auth token.
|
|
24943
|
-
*/
|
|
24944
|
-
Token?: string;
|
|
24945
|
-
};
|
|
24946
|
-
}): CancelablePromise<any>;
|
|
25815
|
+
}): CancelablePromise<Array<SurveyAnswer>>;
|
|
24947
25816
|
/**
|
|
24948
|
-
*
|
|
25817
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
25818
|
+
* @returns SurveyAnswer Success
|
|
25819
|
+
* @throws ApiError
|
|
25820
|
+
*/
|
|
25821
|
+
post({ requestBody, }: {
|
|
25822
|
+
/**
|
|
25823
|
+
* The <typeparamref name="TObject" /> model.
|
|
25824
|
+
*/
|
|
25825
|
+
requestBody?: SurveyAnswerPost;
|
|
25826
|
+
}): CancelablePromise<SurveyAnswer>;
|
|
25827
|
+
/**
|
|
25828
|
+
* Patches the resource.
|
|
25829
|
+
* @returns SurveyAnswer Success
|
|
25830
|
+
* @throws ApiError
|
|
25831
|
+
*/
|
|
25832
|
+
patch({ requestBody, }: {
|
|
25833
|
+
/**
|
|
25834
|
+
* The <typeparamref name="TObject" /> model.
|
|
25835
|
+
*/
|
|
25836
|
+
requestBody?: SurveyAnswerPatch;
|
|
25837
|
+
}): CancelablePromise<SurveyAnswer>;
|
|
25838
|
+
/**
|
|
25839
|
+
* Inserts a list of resources.
|
|
25840
|
+
* @returns SurveyAnswer Success
|
|
25841
|
+
* @throws ApiError
|
|
25842
|
+
*/
|
|
25843
|
+
postList({ requestBody, }: {
|
|
25844
|
+
/**
|
|
25845
|
+
* The list of <typeparamref name="TObject" />.
|
|
25846
|
+
*/
|
|
25847
|
+
requestBody?: Array<SurveyAnswerPost>;
|
|
25848
|
+
}): CancelablePromise<Array<SurveyAnswer>>;
|
|
25849
|
+
/**
|
|
25850
|
+
* Patches the resource.
|
|
24949
25851
|
* @returns SurveyAnswer Success
|
|
24950
25852
|
* @throws ApiError
|
|
24951
25853
|
*/
|
|
25854
|
+
patchWithReferences({ requestBody, }: {
|
|
25855
|
+
/**
|
|
25856
|
+
* The <typeparamref name="TObject" /> model.
|
|
25857
|
+
*/
|
|
25858
|
+
requestBody?: SurveyAnswerPatch;
|
|
25859
|
+
}): CancelablePromise<SurveyAnswer>;
|
|
25860
|
+
/**
|
|
25861
|
+
* Returns a value indicating whether the resource is deletable.
|
|
25862
|
+
* @returns boolean Success
|
|
25863
|
+
* @throws ApiError
|
|
25864
|
+
*/
|
|
25865
|
+
canDelete({ id, }: {
|
|
25866
|
+
/**
|
|
25867
|
+
* The <typeparamref name="TObject" /> id.
|
|
25868
|
+
*/
|
|
25869
|
+
id: string;
|
|
25870
|
+
}): CancelablePromise<boolean>;
|
|
25871
|
+
}
|
|
25872
|
+
|
|
25873
|
+
declare class SurveyCompletionLogService {
|
|
25874
|
+
readonly httpRequest: BaseHttpRequest;
|
|
25875
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
25876
|
+
/**
|
|
25877
|
+
* Gets the resource by its Id.
|
|
25878
|
+
* @returns SurveyCompletionLog Success
|
|
25879
|
+
* @throws ApiError
|
|
25880
|
+
*/
|
|
24952
25881
|
getObject({ id, }: {
|
|
24953
25882
|
/**
|
|
24954
25883
|
* The <typeparamref name="TObject" /> id.
|
|
24955
25884
|
*/
|
|
24956
25885
|
id: string;
|
|
24957
|
-
}): CancelablePromise<
|
|
25886
|
+
}): CancelablePromise<SurveyCompletionLog>;
|
|
24958
25887
|
/**
|
|
24959
25888
|
* Deletes the resource.
|
|
24960
25889
|
* @returns any Success
|
|
@@ -24971,19 +25900,31 @@ declare class SurveyAnswersService {
|
|
|
24971
25900
|
* @returns boolean Success
|
|
24972
25901
|
* @throws ApiError
|
|
24973
25902
|
*/
|
|
24974
|
-
exists({ surveyId,
|
|
25903
|
+
exists({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24975
25904
|
/**
|
|
24976
|
-
* Gets or sets the Survey Id.
|
|
25905
|
+
* Gets or sets the queryable Survey Id.
|
|
24977
25906
|
*/
|
|
24978
25907
|
surveyId?: string;
|
|
24979
25908
|
/**
|
|
24980
|
-
* Gets or sets the
|
|
25909
|
+
* Gets or sets the queryable Attendee Id.
|
|
24981
25910
|
*/
|
|
24982
|
-
|
|
25911
|
+
attendeeId?: string;
|
|
24983
25912
|
/**
|
|
24984
|
-
* Gets or sets the Order Id.
|
|
25913
|
+
* Gets or sets the queryable Order Id.
|
|
25914
|
+
*/
|
|
25915
|
+
orderId?: string;
|
|
25916
|
+
/**
|
|
25917
|
+
* Gets or sets the queryable Order item Id.
|
|
24985
25918
|
*/
|
|
24986
25919
|
orderItemId?: string;
|
|
25920
|
+
/**
|
|
25921
|
+
* Gets or sets the queryable Session Id.
|
|
25922
|
+
*/
|
|
25923
|
+
sessionId?: string;
|
|
25924
|
+
/**
|
|
25925
|
+
* Gets or sets the queryable Course Id.
|
|
25926
|
+
*/
|
|
25927
|
+
courseId?: string;
|
|
24987
25928
|
/**
|
|
24988
25929
|
* Gets or sets the page number for paged queries.
|
|
24989
25930
|
*/
|
|
@@ -25027,22 +25968,34 @@ declare class SurveyAnswersService {
|
|
|
25027
25968
|
}): CancelablePromise<boolean>;
|
|
25028
25969
|
/**
|
|
25029
25970
|
* Gets a list of resources.
|
|
25030
|
-
* @returns
|
|
25971
|
+
* @returns SurveyCompletionLogPage Success
|
|
25031
25972
|
* @throws ApiError
|
|
25032
25973
|
*/
|
|
25033
|
-
getPage({ surveyId,
|
|
25974
|
+
getPage({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25034
25975
|
/**
|
|
25035
|
-
* Gets or sets the Survey Id.
|
|
25976
|
+
* Gets or sets the queryable Survey Id.
|
|
25036
25977
|
*/
|
|
25037
25978
|
surveyId?: string;
|
|
25038
25979
|
/**
|
|
25039
|
-
* Gets or sets the
|
|
25980
|
+
* Gets or sets the queryable Attendee Id.
|
|
25040
25981
|
*/
|
|
25041
|
-
|
|
25982
|
+
attendeeId?: string;
|
|
25042
25983
|
/**
|
|
25043
|
-
* Gets or sets the Order Id.
|
|
25984
|
+
* Gets or sets the queryable Order Id.
|
|
25985
|
+
*/
|
|
25986
|
+
orderId?: string;
|
|
25987
|
+
/**
|
|
25988
|
+
* Gets or sets the queryable Order item Id.
|
|
25044
25989
|
*/
|
|
25045
25990
|
orderItemId?: string;
|
|
25991
|
+
/**
|
|
25992
|
+
* Gets or sets the queryable Session Id.
|
|
25993
|
+
*/
|
|
25994
|
+
sessionId?: string;
|
|
25995
|
+
/**
|
|
25996
|
+
* Gets or sets the queryable Course Id.
|
|
25997
|
+
*/
|
|
25998
|
+
courseId?: string;
|
|
25046
25999
|
/**
|
|
25047
26000
|
* Gets or sets the page number for paged queries.
|
|
25048
26001
|
*/
|
|
@@ -25083,7 +26036,7 @@ declare class SurveyAnswersService {
|
|
|
25083
26036
|
* Gets or sets the sort order direction.
|
|
25084
26037
|
*/
|
|
25085
26038
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
25086
|
-
}): CancelablePromise<
|
|
26039
|
+
}): CancelablePromise<SurveyCompletionLogPage>;
|
|
25087
26040
|
/**
|
|
25088
26041
|
* Deletes the resource.
|
|
25089
26042
|
* @returns any Success
|
|
@@ -25093,26 +26046,38 @@ declare class SurveyAnswersService {
|
|
|
25093
26046
|
/**
|
|
25094
26047
|
* The <typeparamref name="TObject" /> model.
|
|
25095
26048
|
*/
|
|
25096
|
-
requestBody?:
|
|
26049
|
+
requestBody?: SurveyCompletionLog;
|
|
25097
26050
|
}): CancelablePromise<any>;
|
|
25098
26051
|
/**
|
|
25099
26052
|
* Gets a list of resources.
|
|
25100
|
-
* @returns
|
|
26053
|
+
* @returns SurveyCompletionLog Success
|
|
25101
26054
|
* @throws ApiError
|
|
25102
26055
|
*/
|
|
25103
|
-
getListIdName({ surveyId,
|
|
26056
|
+
getListIdName({ surveyId, attendeeId, orderId, orderItemId, sessionId, courseId, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
25104
26057
|
/**
|
|
25105
|
-
* Gets or sets the Survey Id.
|
|
26058
|
+
* Gets or sets the queryable Survey Id.
|
|
25106
26059
|
*/
|
|
25107
26060
|
surveyId?: string;
|
|
25108
26061
|
/**
|
|
25109
|
-
* Gets or sets the
|
|
26062
|
+
* Gets or sets the queryable Attendee Id.
|
|
25110
26063
|
*/
|
|
25111
|
-
|
|
26064
|
+
attendeeId?: string;
|
|
25112
26065
|
/**
|
|
25113
|
-
* Gets or sets the Order Id.
|
|
26066
|
+
* Gets or sets the queryable Order Id.
|
|
26067
|
+
*/
|
|
26068
|
+
orderId?: string;
|
|
26069
|
+
/**
|
|
26070
|
+
* Gets or sets the queryable Order item Id.
|
|
25114
26071
|
*/
|
|
25115
26072
|
orderItemId?: string;
|
|
26073
|
+
/**
|
|
26074
|
+
* Gets or sets the queryable Session Id.
|
|
26075
|
+
*/
|
|
26076
|
+
sessionId?: string;
|
|
26077
|
+
/**
|
|
26078
|
+
* Gets or sets the queryable Course Id.
|
|
26079
|
+
*/
|
|
26080
|
+
courseId?: string;
|
|
25116
26081
|
/**
|
|
25117
26082
|
* Gets or sets the page number for paged queries.
|
|
25118
26083
|
*/
|
|
@@ -25153,51 +26118,51 @@ declare class SurveyAnswersService {
|
|
|
25153
26118
|
* Gets or sets the sort order direction.
|
|
25154
26119
|
*/
|
|
25155
26120
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
25156
|
-
}): CancelablePromise<Array<
|
|
26121
|
+
}): CancelablePromise<Array<SurveyCompletionLog>>;
|
|
25157
26122
|
/**
|
|
25158
26123
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
25159
|
-
* @returns
|
|
26124
|
+
* @returns SurveyCompletionLog Success
|
|
25160
26125
|
* @throws ApiError
|
|
25161
26126
|
*/
|
|
25162
26127
|
post({ requestBody, }: {
|
|
25163
26128
|
/**
|
|
25164
26129
|
* The <typeparamref name="TObject" /> model.
|
|
25165
26130
|
*/
|
|
25166
|
-
requestBody?:
|
|
25167
|
-
}): CancelablePromise<
|
|
26131
|
+
requestBody?: SurveyCompletionLogPost;
|
|
26132
|
+
}): CancelablePromise<SurveyCompletionLog>;
|
|
25168
26133
|
/**
|
|
25169
26134
|
* Patches the resource.
|
|
25170
|
-
* @returns
|
|
26135
|
+
* @returns SurveyCompletionLog Success
|
|
25171
26136
|
* @throws ApiError
|
|
25172
26137
|
*/
|
|
25173
26138
|
patch({ requestBody, }: {
|
|
25174
26139
|
/**
|
|
25175
26140
|
* The <typeparamref name="TObject" /> model.
|
|
25176
26141
|
*/
|
|
25177
|
-
requestBody?:
|
|
25178
|
-
}): CancelablePromise<
|
|
26142
|
+
requestBody?: SurveyCompletionLogPatch;
|
|
26143
|
+
}): CancelablePromise<SurveyCompletionLog>;
|
|
25179
26144
|
/**
|
|
25180
26145
|
* Inserts a list of resources.
|
|
25181
|
-
* @returns
|
|
26146
|
+
* @returns SurveyCompletionLog Success
|
|
25182
26147
|
* @throws ApiError
|
|
25183
26148
|
*/
|
|
25184
26149
|
postList({ requestBody, }: {
|
|
25185
26150
|
/**
|
|
25186
26151
|
* The list of <typeparamref name="TObject" />.
|
|
25187
26152
|
*/
|
|
25188
|
-
requestBody?: Array<
|
|
25189
|
-
}): CancelablePromise<Array<
|
|
26153
|
+
requestBody?: Array<SurveyCompletionLogPost>;
|
|
26154
|
+
}): CancelablePromise<Array<SurveyCompletionLog>>;
|
|
25190
26155
|
/**
|
|
25191
26156
|
* Patches the resource.
|
|
25192
|
-
* @returns
|
|
26157
|
+
* @returns SurveyCompletionLog Success
|
|
25193
26158
|
* @throws ApiError
|
|
25194
26159
|
*/
|
|
25195
26160
|
patchWithReferences({ requestBody, }: {
|
|
25196
26161
|
/**
|
|
25197
26162
|
* The <typeparamref name="TObject" /> model.
|
|
25198
26163
|
*/
|
|
25199
|
-
requestBody?:
|
|
25200
|
-
}): CancelablePromise<
|
|
26164
|
+
requestBody?: SurveyCompletionLogPatch;
|
|
26165
|
+
}): CancelablePromise<SurveyCompletionLog>;
|
|
25201
26166
|
/**
|
|
25202
26167
|
* Returns a value indicating whether the resource is deletable.
|
|
25203
26168
|
* @returns boolean Success
|
|
@@ -29331,6 +30296,7 @@ declare class ApiClient {
|
|
|
29331
30296
|
readonly programmes: ProgrammesService;
|
|
29332
30297
|
readonly publicBooking: PublicBookingService;
|
|
29333
30298
|
readonly publicCourses: PublicCoursesService;
|
|
30299
|
+
readonly publicCustomers: PublicCustomersService;
|
|
29334
30300
|
readonly publicFacilities: PublicFacilitiesService;
|
|
29335
30301
|
readonly publicHealthCheck: PublicHealthCheckService;
|
|
29336
30302
|
readonly publicLeasing: PublicLeasingService;
|
|
@@ -29341,6 +30307,7 @@ declare class ApiClient {
|
|
|
29341
30307
|
readonly publicSessions: PublicSessionsService;
|
|
29342
30308
|
readonly publicSlots: PublicSlotsService;
|
|
29343
30309
|
readonly publicStripeWebhook: PublicStripeWebhookService;
|
|
30310
|
+
readonly publicSurveyCompletionLogs: PublicSurveyCompletionLogsService;
|
|
29344
30311
|
readonly publicSurveyQuestions: PublicSurveyQuestionsService;
|
|
29345
30312
|
readonly publicSurveys: PublicSurveysService;
|
|
29346
30313
|
readonly publicTenants: PublicTenantsService;
|
|
@@ -29358,6 +30325,7 @@ declare class ApiClient {
|
|
|
29358
30325
|
readonly stripeAccount: StripeAccountService;
|
|
29359
30326
|
readonly surfaces: SurfacesService;
|
|
29360
30327
|
readonly surveyAnswers: SurveyAnswersService;
|
|
30328
|
+
readonly surveyCompletionLog: SurveyCompletionLogService;
|
|
29361
30329
|
readonly surveyQuestions: SurveyQuestionsService;
|
|
29362
30330
|
readonly surveyReportExtended: SurveyReportExtendedService;
|
|
29363
30331
|
readonly surveys: SurveysService;
|
|
@@ -29500,4 +30468,4 @@ type ValidationResultModel = {
|
|
|
29500
30468
|
readonly errors?: Array<ValidationError> | null;
|
|
29501
30469
|
};
|
|
29502
30470
|
|
|
29503
|
-
export { Activity, ActivityService, ActivityType, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateOffer, CreateQuestion, CreateQuestionOption, CreateVenue, Customer, CustomerCancellationOption, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityPatch, GenericActivityPost, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImagePage, ImagePatch, ImagePost, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityType, Order, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, PatchSurveyQuestionOption, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicFacilitiesService, PublicHealthCheckService, PublicLeasingService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundStatus, ScheduleStatus, ScheduledSession, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCreate, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPost, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel,
|
|
30471
|
+
export { Activity, ActivityService, ActivityType, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateOffer, CreateQuestion, CreateQuestionOption, CreateVenue, Customer, CustomerCancellationOption, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityPatch, GenericActivityPost, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImagePage, ImagePatch, ImagePost, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityType, Order, OrderItem, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, PatchSurveyQuestionOption, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicHealthCheckService, PublicLeasingService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundStatus, ScheduleStatus, ScheduledSession, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPost, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Tenant, TenantPage, TenantPatch, TenantPost, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityService };
|