reach-api-sdk 1.0.218 → 1.0.220
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 +1989 -248
- package/dist/reach-sdk.js +1956 -666
- package/package.json +1 -1
- package/src/apiClient.ts +12 -0
- package/src/definition/swagger.yaml +9632 -5179
- package/src/index.ts +20 -0
- package/src/models/AccessCredential.ts +74 -0
- package/src/models/AccessCredentialPage.ts +12 -0
- package/src/models/AccessCredentialPatch.ts +18 -0
- package/src/models/AccessCredentialPost.ts +14 -0
- package/src/models/CodelocksLock.ts +62 -0
- package/src/models/CodelocksLockPage.ts +12 -0
- package/src/models/CodelocksLockPatch.ts +46 -0
- package/src/models/CodelocksLockPost.ts +42 -0
- package/src/models/Course.ts +4 -0
- package/src/models/CourseCreate.ts +4 -0
- package/src/models/CoursePatch.ts +4 -0
- package/src/models/CourseSession.ts +1 -1
- package/src/models/Facility.ts +8 -4
- package/src/models/FacilityPatch.ts +4 -0
- package/src/models/FacilityPost.ts +4 -0
- package/src/models/FeatureAnnouncementDismissPost.ts +14 -0
- package/src/models/FeatureAnnouncementForUserDto.ts +38 -0
- package/src/models/IntegrationCodelocksSettings.ts +38 -0
- package/src/models/IntegrationCodelocksSettingsCreate.ts +18 -0
- package/src/models/IntegrationCodelocksSettingsPage.ts +12 -0
- package/src/models/IntegrationCodelocksSettingsPatch.ts +22 -0
- package/src/models/IntegrationCodelocksSettingsPost.ts +18 -0
- package/src/models/IntegrationQueue.ts +4 -0
- package/src/models/IntegrationType.ts +1 -0
- package/src/models/NotificationType.ts +1 -0
- package/src/models/Order.ts +3 -3
- package/src/models/OrderItem.ts +5 -3
- package/src/models/OrderItemCodelocksAccess.ts +14 -0
- package/src/models/OrderItemReport.ts +25 -1
- package/src/models/SellableItemPatch.ts +4 -0
- package/src/models/Session.ts +4 -0
- package/src/models/SessionCreate.ts +4 -0
- package/src/models/SessionPatch.ts +4 -0
- package/src/models/Survey.ts +3 -3
- package/src/models/SurveyAnswer.ts +4 -4
- package/src/models/SurveyQuestion.ts +3 -3
- package/src/models/SurveyQuestionOption.ts +2 -2
- package/src/models/WaitlistActivity.ts +3 -3
- package/src/models/WaitlistOpportunity.ts +4 -4
- package/src/services/AccessCredentialsService.ts +812 -0
- package/src/services/CodelocksLocksService.ts +752 -0
- package/src/services/FeatureAnnouncementsService.ts +56 -0
- package/src/services/IntegrationCodelocksSettingsService.ts +689 -0
- package/src/services/IntegrationQueueService.ts +30 -0
- package/src/services/PublicSellableItemsService.ts +12 -0
- package/src/services/SellableItemsService.ts +30 -0
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -54,6 +54,583 @@ declare abstract class BaseHttpRequest {
|
|
|
54
54
|
abstract request<T>(options: ApiRequestOptions): CancelablePromise<T>;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
+
/**
|
|
58
|
+
* Lifecycle record for a generated or pending access code (e.g. Codelocks NetCode) tied to an order.
|
|
59
|
+
*/
|
|
60
|
+
type AccessCredential = {
|
|
61
|
+
/**
|
|
62
|
+
* Gets or sets the entities Id.
|
|
63
|
+
*/
|
|
64
|
+
id?: string;
|
|
65
|
+
/**
|
|
66
|
+
* Gets or sets the tenant Id.
|
|
67
|
+
*/
|
|
68
|
+
tenantId: string;
|
|
69
|
+
/**
|
|
70
|
+
* Gets or sets the created date of this entity.
|
|
71
|
+
*/
|
|
72
|
+
dateCreated: string;
|
|
73
|
+
/**
|
|
74
|
+
* Gets or sets the last modified date of this entity.
|
|
75
|
+
*/
|
|
76
|
+
dateModified: string;
|
|
77
|
+
/**
|
|
78
|
+
* Gets or sets the modified by Id.
|
|
79
|
+
*/
|
|
80
|
+
modifiedById?: string | null;
|
|
81
|
+
/**
|
|
82
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
83
|
+
*/
|
|
84
|
+
isLive: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* Gets or sets the registered lock used when generating the code.
|
|
87
|
+
*/
|
|
88
|
+
codelocksLockId?: string;
|
|
89
|
+
/**
|
|
90
|
+
* Gets or sets the parent order id.
|
|
91
|
+
*/
|
|
92
|
+
orderId?: string;
|
|
93
|
+
/**
|
|
94
|
+
* Gets or sets the order line id when the grant applies to a single line.
|
|
95
|
+
*/
|
|
96
|
+
orderItemId?: string | null;
|
|
97
|
+
/**
|
|
98
|
+
* Gets or sets the credential lifecycle status (see Reach.Models.AccessCredentialStatus).
|
|
99
|
+
*/
|
|
100
|
+
status?: string | null;
|
|
101
|
+
/**
|
|
102
|
+
* Gets or sets the idempotency key for generation and queue processing.
|
|
103
|
+
*/
|
|
104
|
+
idempotencyKey?: string | null;
|
|
105
|
+
/**
|
|
106
|
+
* Gets or sets the generated access code when available.
|
|
107
|
+
*/
|
|
108
|
+
accessCode?: string | null;
|
|
109
|
+
/**
|
|
110
|
+
* Gets or sets the validity start (UTC).
|
|
111
|
+
*/
|
|
112
|
+
validFromUtc?: string | null;
|
|
113
|
+
/**
|
|
114
|
+
* Gets or sets the validity end (UTC).
|
|
115
|
+
*/
|
|
116
|
+
validToUtc?: string | null;
|
|
117
|
+
/**
|
|
118
|
+
* Gets or sets when the code was successfully retrieved from the supplier.
|
|
119
|
+
*/
|
|
120
|
+
generatedUtc?: string | null;
|
|
121
|
+
/**
|
|
122
|
+
* Gets or sets when the customer was notified or saw the code in a channel.
|
|
123
|
+
*/
|
|
124
|
+
deliveredToCustomerUtc?: string | null;
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Describes meta data for results returned as pages.
|
|
129
|
+
*/
|
|
130
|
+
type Pagination = {
|
|
131
|
+
/**
|
|
132
|
+
* Gets or sets the page number.
|
|
133
|
+
*/
|
|
134
|
+
pageNumber: number;
|
|
135
|
+
/**
|
|
136
|
+
* Gets the total number of pages.
|
|
137
|
+
*/
|
|
138
|
+
readonly totalPages: number;
|
|
139
|
+
/**
|
|
140
|
+
* Gets the total number of items in each page.
|
|
141
|
+
*/
|
|
142
|
+
readonly itemsPerPage: number;
|
|
143
|
+
/**
|
|
144
|
+
* Gets the total number of items.
|
|
145
|
+
*/
|
|
146
|
+
readonly totalItems: number;
|
|
147
|
+
};
|
|
148
|
+
|
|
149
|
+
type AccessCredentialPage = {
|
|
150
|
+
pagination: Pagination;
|
|
151
|
+
readonly items: Array<AccessCredential>;
|
|
152
|
+
};
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Patch model for access credential updates.
|
|
156
|
+
*/
|
|
157
|
+
type AccessCredentialPatch = {
|
|
158
|
+
/**
|
|
159
|
+
* Gets or sets the tenant Id.
|
|
160
|
+
*/
|
|
161
|
+
tenantId: string;
|
|
162
|
+
/**
|
|
163
|
+
* Gets or sets the Id.
|
|
164
|
+
*/
|
|
165
|
+
id: string;
|
|
166
|
+
};
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* Post model for access credential inserts (system use).
|
|
170
|
+
*/
|
|
171
|
+
type AccessCredentialPost = {
|
|
172
|
+
/**
|
|
173
|
+
* Gets or sets the tenant Id.
|
|
174
|
+
*/
|
|
175
|
+
tenantId: string;
|
|
176
|
+
};
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* The course search sortby.
|
|
180
|
+
*/
|
|
181
|
+
declare enum SearchSortOrderDirection {
|
|
182
|
+
ASC = "Asc",
|
|
183
|
+
DESC = "Desc"
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
declare class AccessCredentialsService {
|
|
187
|
+
readonly httpRequest: BaseHttpRequest;
|
|
188
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
189
|
+
/**
|
|
190
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
191
|
+
* @returns AccessCredential OK
|
|
192
|
+
* @throws ApiError
|
|
193
|
+
*/
|
|
194
|
+
post({ requestBody, }: {
|
|
195
|
+
/**
|
|
196
|
+
* The <typeparamref name="TObject" /> model.
|
|
197
|
+
*/
|
|
198
|
+
requestBody?: AccessCredentialPost;
|
|
199
|
+
}): CancelablePromise<AccessCredential>;
|
|
200
|
+
/**
|
|
201
|
+
* Patches the resource.
|
|
202
|
+
* @returns AccessCredential OK
|
|
203
|
+
* @throws ApiError
|
|
204
|
+
*/
|
|
205
|
+
patch({ requestBody, }: {
|
|
206
|
+
/**
|
|
207
|
+
* The <typeparamref name="TObject" /> model.
|
|
208
|
+
*/
|
|
209
|
+
requestBody?: AccessCredentialPatch;
|
|
210
|
+
}): CancelablePromise<AccessCredential>;
|
|
211
|
+
/**
|
|
212
|
+
* Inserts a list of resources.
|
|
213
|
+
* @returns AccessCredential OK
|
|
214
|
+
* @throws ApiError
|
|
215
|
+
*/
|
|
216
|
+
postList({ requestBody, }: {
|
|
217
|
+
/**
|
|
218
|
+
* The list of <typeparamref name="TObject" />.
|
|
219
|
+
*/
|
|
220
|
+
requestBody?: Array<AccessCredentialPost>;
|
|
221
|
+
}): CancelablePromise<Array<AccessCredential>>;
|
|
222
|
+
/**
|
|
223
|
+
* Patches the resource.
|
|
224
|
+
* @returns AccessCredential OK
|
|
225
|
+
* @throws ApiError
|
|
226
|
+
*/
|
|
227
|
+
patchWithReferences({ requestBody, }: {
|
|
228
|
+
/**
|
|
229
|
+
* The <typeparamref name="TObject" /> model.
|
|
230
|
+
*/
|
|
231
|
+
requestBody?: AccessCredentialPatch;
|
|
232
|
+
}): CancelablePromise<AccessCredential>;
|
|
233
|
+
/**
|
|
234
|
+
* Deletes the resource.
|
|
235
|
+
* @returns any OK
|
|
236
|
+
* @throws ApiError
|
|
237
|
+
*/
|
|
238
|
+
deleteByObject({ requestBody, }: {
|
|
239
|
+
/**
|
|
240
|
+
* The <typeparamref name="TObject" /> model.
|
|
241
|
+
*/
|
|
242
|
+
requestBody?: AccessCredential;
|
|
243
|
+
}): CancelablePromise<any>;
|
|
244
|
+
/**
|
|
245
|
+
* Gets a list of resources.
|
|
246
|
+
* @returns AccessCredentialPage OK
|
|
247
|
+
* @throws ApiError
|
|
248
|
+
*/
|
|
249
|
+
getPage({ orderId, orderItemId, orderItemIds, status, ids, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
250
|
+
/**
|
|
251
|
+
* Gets or sets the order id filter.
|
|
252
|
+
*/
|
|
253
|
+
orderId?: string;
|
|
254
|
+
/**
|
|
255
|
+
* Gets or sets the order item id filter.
|
|
256
|
+
*/
|
|
257
|
+
orderItemId?: string;
|
|
258
|
+
/**
|
|
259
|
+
* Gets or sets order item id filters (batch list queries).
|
|
260
|
+
*/
|
|
261
|
+
orderItemIds?: Array<string>;
|
|
262
|
+
/**
|
|
263
|
+
* Gets or sets the status filter (see Reach.Models.AccessCredentialStatus names).
|
|
264
|
+
*/
|
|
265
|
+
status?: string;
|
|
266
|
+
/**
|
|
267
|
+
* Gets or sets the queryable credential ids.
|
|
268
|
+
*/
|
|
269
|
+
ids?: Array<string>;
|
|
270
|
+
/**
|
|
271
|
+
* Gets or sets the page number for paged queries.
|
|
272
|
+
*/
|
|
273
|
+
pageNumber?: number;
|
|
274
|
+
/**
|
|
275
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
276
|
+
*/
|
|
277
|
+
take?: number;
|
|
278
|
+
/**
|
|
279
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
280
|
+
*/
|
|
281
|
+
skip?: number;
|
|
282
|
+
/**
|
|
283
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
284
|
+
*/
|
|
285
|
+
limitListRequests?: boolean;
|
|
286
|
+
/**
|
|
287
|
+
* Gets or sets the Tenant Id.
|
|
288
|
+
*/
|
|
289
|
+
tenantId?: string;
|
|
290
|
+
/**
|
|
291
|
+
* Gets or sets the Modifed By Id.
|
|
292
|
+
*/
|
|
293
|
+
modifiedById?: string;
|
|
294
|
+
/**
|
|
295
|
+
* Gets or sets the Modifed By Ids.
|
|
296
|
+
*/
|
|
297
|
+
modifiedByIds?: Array<string>;
|
|
298
|
+
/**
|
|
299
|
+
* Gets or sets the Date Created greater than equal to.
|
|
300
|
+
*/
|
|
301
|
+
dateCreatedGte?: string;
|
|
302
|
+
/**
|
|
303
|
+
* Gets or sets the Date Created less than equal to.
|
|
304
|
+
*/
|
|
305
|
+
dateCreatedLte?: string;
|
|
306
|
+
/**
|
|
307
|
+
* Gets or sets the queryable only is live status.
|
|
308
|
+
*/
|
|
309
|
+
isLive?: boolean;
|
|
310
|
+
/**
|
|
311
|
+
* Gets or sets the sort order direction.
|
|
312
|
+
*/
|
|
313
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
314
|
+
}): CancelablePromise<AccessCredentialPage>;
|
|
315
|
+
/**
|
|
316
|
+
* Deletes the resource.
|
|
317
|
+
* @returns any OK
|
|
318
|
+
* @throws ApiError
|
|
319
|
+
*/
|
|
320
|
+
deleteById({ id, }: {
|
|
321
|
+
/**
|
|
322
|
+
* The <typeparamref name="TObject" /> id.
|
|
323
|
+
*/
|
|
324
|
+
id: string;
|
|
325
|
+
}): CancelablePromise<any>;
|
|
326
|
+
/**
|
|
327
|
+
* Gets the resource by its Id.
|
|
328
|
+
* @returns AccessCredential OK
|
|
329
|
+
* @throws ApiError
|
|
330
|
+
*/
|
|
331
|
+
getObject({ id, }: {
|
|
332
|
+
/**
|
|
333
|
+
* The <typeparamref name="TObject" /> id.
|
|
334
|
+
*/
|
|
335
|
+
id: string;
|
|
336
|
+
}): CancelablePromise<AccessCredential>;
|
|
337
|
+
/**
|
|
338
|
+
* Returns a value indicating whether the resource is deletable.
|
|
339
|
+
* @returns boolean OK
|
|
340
|
+
* @throws ApiError
|
|
341
|
+
*/
|
|
342
|
+
canDelete({ id, }: {
|
|
343
|
+
/**
|
|
344
|
+
* The <typeparamref name="TObject" /> id.
|
|
345
|
+
*/
|
|
346
|
+
id: string;
|
|
347
|
+
}): CancelablePromise<boolean>;
|
|
348
|
+
/**
|
|
349
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
350
|
+
* @returns boolean OK
|
|
351
|
+
* @throws ApiError
|
|
352
|
+
*/
|
|
353
|
+
exists({ orderId, orderItemId, orderItemIds, status, ids, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
354
|
+
/**
|
|
355
|
+
* Gets or sets the order id filter.
|
|
356
|
+
*/
|
|
357
|
+
orderId?: string;
|
|
358
|
+
/**
|
|
359
|
+
* Gets or sets the order item id filter.
|
|
360
|
+
*/
|
|
361
|
+
orderItemId?: string;
|
|
362
|
+
/**
|
|
363
|
+
* Gets or sets order item id filters (batch list queries).
|
|
364
|
+
*/
|
|
365
|
+
orderItemIds?: Array<string>;
|
|
366
|
+
/**
|
|
367
|
+
* Gets or sets the status filter (see Reach.Models.AccessCredentialStatus names).
|
|
368
|
+
*/
|
|
369
|
+
status?: string;
|
|
370
|
+
/**
|
|
371
|
+
* Gets or sets the queryable credential ids.
|
|
372
|
+
*/
|
|
373
|
+
ids?: Array<string>;
|
|
374
|
+
/**
|
|
375
|
+
* Gets or sets the page number for paged queries.
|
|
376
|
+
*/
|
|
377
|
+
pageNumber?: number;
|
|
378
|
+
/**
|
|
379
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
380
|
+
*/
|
|
381
|
+
take?: number;
|
|
382
|
+
/**
|
|
383
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
384
|
+
*/
|
|
385
|
+
skip?: number;
|
|
386
|
+
/**
|
|
387
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
388
|
+
*/
|
|
389
|
+
limitListRequests?: boolean;
|
|
390
|
+
/**
|
|
391
|
+
* Gets or sets the Tenant Id.
|
|
392
|
+
*/
|
|
393
|
+
tenantId?: string;
|
|
394
|
+
/**
|
|
395
|
+
* Gets or sets the Modifed By Id.
|
|
396
|
+
*/
|
|
397
|
+
modifiedById?: string;
|
|
398
|
+
/**
|
|
399
|
+
* Gets or sets the Modifed By Ids.
|
|
400
|
+
*/
|
|
401
|
+
modifiedByIds?: Array<string>;
|
|
402
|
+
/**
|
|
403
|
+
* Gets or sets the Date Created greater than equal to.
|
|
404
|
+
*/
|
|
405
|
+
dateCreatedGte?: string;
|
|
406
|
+
/**
|
|
407
|
+
* Gets or sets the Date Created less than equal to.
|
|
408
|
+
*/
|
|
409
|
+
dateCreatedLte?: string;
|
|
410
|
+
/**
|
|
411
|
+
* Gets or sets the queryable only is live status.
|
|
412
|
+
*/
|
|
413
|
+
isLive?: boolean;
|
|
414
|
+
/**
|
|
415
|
+
* Gets or sets the sort order direction.
|
|
416
|
+
*/
|
|
417
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
418
|
+
}): CancelablePromise<boolean>;
|
|
419
|
+
/**
|
|
420
|
+
* Returns the number of results in the database given the provided search params.
|
|
421
|
+
* @returns number OK
|
|
422
|
+
* @throws ApiError
|
|
423
|
+
*/
|
|
424
|
+
count({ orderId, orderItemId, orderItemIds, status, ids, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
425
|
+
/**
|
|
426
|
+
* Gets or sets the order id filter.
|
|
427
|
+
*/
|
|
428
|
+
orderId?: string;
|
|
429
|
+
/**
|
|
430
|
+
* Gets or sets the order item id filter.
|
|
431
|
+
*/
|
|
432
|
+
orderItemId?: string;
|
|
433
|
+
/**
|
|
434
|
+
* Gets or sets order item id filters (batch list queries).
|
|
435
|
+
*/
|
|
436
|
+
orderItemIds?: Array<string>;
|
|
437
|
+
/**
|
|
438
|
+
* Gets or sets the status filter (see Reach.Models.AccessCredentialStatus names).
|
|
439
|
+
*/
|
|
440
|
+
status?: string;
|
|
441
|
+
/**
|
|
442
|
+
* Gets or sets the queryable credential ids.
|
|
443
|
+
*/
|
|
444
|
+
ids?: Array<string>;
|
|
445
|
+
/**
|
|
446
|
+
* Gets or sets the page number for paged queries.
|
|
447
|
+
*/
|
|
448
|
+
pageNumber?: number;
|
|
449
|
+
/**
|
|
450
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
451
|
+
*/
|
|
452
|
+
take?: number;
|
|
453
|
+
/**
|
|
454
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
455
|
+
*/
|
|
456
|
+
skip?: number;
|
|
457
|
+
/**
|
|
458
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
459
|
+
*/
|
|
460
|
+
limitListRequests?: boolean;
|
|
461
|
+
/**
|
|
462
|
+
* Gets or sets the Tenant Id.
|
|
463
|
+
*/
|
|
464
|
+
tenantId?: string;
|
|
465
|
+
/**
|
|
466
|
+
* Gets or sets the Modifed By Id.
|
|
467
|
+
*/
|
|
468
|
+
modifiedById?: string;
|
|
469
|
+
/**
|
|
470
|
+
* Gets or sets the Modifed By Ids.
|
|
471
|
+
*/
|
|
472
|
+
modifiedByIds?: Array<string>;
|
|
473
|
+
/**
|
|
474
|
+
* Gets or sets the Date Created greater than equal to.
|
|
475
|
+
*/
|
|
476
|
+
dateCreatedGte?: string;
|
|
477
|
+
/**
|
|
478
|
+
* Gets or sets the Date Created less than equal to.
|
|
479
|
+
*/
|
|
480
|
+
dateCreatedLte?: string;
|
|
481
|
+
/**
|
|
482
|
+
* Gets or sets the queryable only is live status.
|
|
483
|
+
*/
|
|
484
|
+
isLive?: boolean;
|
|
485
|
+
/**
|
|
486
|
+
* Gets or sets the sort order direction.
|
|
487
|
+
*/
|
|
488
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
489
|
+
}): CancelablePromise<number>;
|
|
490
|
+
/**
|
|
491
|
+
* Gets a list of resources unpaged and without references.
|
|
492
|
+
* @returns AccessCredential OK
|
|
493
|
+
* @throws ApiError
|
|
494
|
+
*/
|
|
495
|
+
getListWithoutReferences({ orderId, orderItemId, orderItemIds, status, ids, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
496
|
+
/**
|
|
497
|
+
* Gets or sets the order id filter.
|
|
498
|
+
*/
|
|
499
|
+
orderId?: string;
|
|
500
|
+
/**
|
|
501
|
+
* Gets or sets the order item id filter.
|
|
502
|
+
*/
|
|
503
|
+
orderItemId?: string;
|
|
504
|
+
/**
|
|
505
|
+
* Gets or sets order item id filters (batch list queries).
|
|
506
|
+
*/
|
|
507
|
+
orderItemIds?: Array<string>;
|
|
508
|
+
/**
|
|
509
|
+
* Gets or sets the status filter (see Reach.Models.AccessCredentialStatus names).
|
|
510
|
+
*/
|
|
511
|
+
status?: string;
|
|
512
|
+
/**
|
|
513
|
+
* Gets or sets the queryable credential ids.
|
|
514
|
+
*/
|
|
515
|
+
ids?: Array<string>;
|
|
516
|
+
/**
|
|
517
|
+
* Gets or sets the page number for paged queries.
|
|
518
|
+
*/
|
|
519
|
+
pageNumber?: number;
|
|
520
|
+
/**
|
|
521
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
522
|
+
*/
|
|
523
|
+
take?: number;
|
|
524
|
+
/**
|
|
525
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
526
|
+
*/
|
|
527
|
+
skip?: number;
|
|
528
|
+
/**
|
|
529
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
530
|
+
*/
|
|
531
|
+
limitListRequests?: boolean;
|
|
532
|
+
/**
|
|
533
|
+
* Gets or sets the Tenant Id.
|
|
534
|
+
*/
|
|
535
|
+
tenantId?: string;
|
|
536
|
+
/**
|
|
537
|
+
* Gets or sets the Modifed By Id.
|
|
538
|
+
*/
|
|
539
|
+
modifiedById?: string;
|
|
540
|
+
/**
|
|
541
|
+
* Gets or sets the Modifed By Ids.
|
|
542
|
+
*/
|
|
543
|
+
modifiedByIds?: Array<string>;
|
|
544
|
+
/**
|
|
545
|
+
* Gets or sets the Date Created greater than equal to.
|
|
546
|
+
*/
|
|
547
|
+
dateCreatedGte?: string;
|
|
548
|
+
/**
|
|
549
|
+
* Gets or sets the Date Created less than equal to.
|
|
550
|
+
*/
|
|
551
|
+
dateCreatedLte?: string;
|
|
552
|
+
/**
|
|
553
|
+
* Gets or sets the queryable only is live status.
|
|
554
|
+
*/
|
|
555
|
+
isLive?: boolean;
|
|
556
|
+
/**
|
|
557
|
+
* Gets or sets the sort order direction.
|
|
558
|
+
*/
|
|
559
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
560
|
+
}): CancelablePromise<Array<AccessCredential>>;
|
|
561
|
+
/**
|
|
562
|
+
* Gets a list of resources.
|
|
563
|
+
* @returns AccessCredential OK
|
|
564
|
+
* @throws ApiError
|
|
565
|
+
*/
|
|
566
|
+
getListIdName({ orderId, orderItemId, orderItemIds, status, ids, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
567
|
+
/**
|
|
568
|
+
* Gets or sets the order id filter.
|
|
569
|
+
*/
|
|
570
|
+
orderId?: string;
|
|
571
|
+
/**
|
|
572
|
+
* Gets or sets the order item id filter.
|
|
573
|
+
*/
|
|
574
|
+
orderItemId?: string;
|
|
575
|
+
/**
|
|
576
|
+
* Gets or sets order item id filters (batch list queries).
|
|
577
|
+
*/
|
|
578
|
+
orderItemIds?: Array<string>;
|
|
579
|
+
/**
|
|
580
|
+
* Gets or sets the status filter (see Reach.Models.AccessCredentialStatus names).
|
|
581
|
+
*/
|
|
582
|
+
status?: string;
|
|
583
|
+
/**
|
|
584
|
+
* Gets or sets the queryable credential ids.
|
|
585
|
+
*/
|
|
586
|
+
ids?: Array<string>;
|
|
587
|
+
/**
|
|
588
|
+
* Gets or sets the page number for paged queries.
|
|
589
|
+
*/
|
|
590
|
+
pageNumber?: number;
|
|
591
|
+
/**
|
|
592
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
593
|
+
*/
|
|
594
|
+
take?: number;
|
|
595
|
+
/**
|
|
596
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
597
|
+
*/
|
|
598
|
+
skip?: number;
|
|
599
|
+
/**
|
|
600
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
601
|
+
*/
|
|
602
|
+
limitListRequests?: boolean;
|
|
603
|
+
/**
|
|
604
|
+
* Gets or sets the Tenant Id.
|
|
605
|
+
*/
|
|
606
|
+
tenantId?: string;
|
|
607
|
+
/**
|
|
608
|
+
* Gets or sets the Modifed By Id.
|
|
609
|
+
*/
|
|
610
|
+
modifiedById?: string;
|
|
611
|
+
/**
|
|
612
|
+
* Gets or sets the Modifed By Ids.
|
|
613
|
+
*/
|
|
614
|
+
modifiedByIds?: Array<string>;
|
|
615
|
+
/**
|
|
616
|
+
* Gets or sets the Date Created greater than equal to.
|
|
617
|
+
*/
|
|
618
|
+
dateCreatedGte?: string;
|
|
619
|
+
/**
|
|
620
|
+
* Gets or sets the Date Created less than equal to.
|
|
621
|
+
*/
|
|
622
|
+
dateCreatedLte?: string;
|
|
623
|
+
/**
|
|
624
|
+
* Gets or sets the queryable only is live status.
|
|
625
|
+
*/
|
|
626
|
+
isLive?: boolean;
|
|
627
|
+
/**
|
|
628
|
+
* Gets or sets the sort order direction.
|
|
629
|
+
*/
|
|
630
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
631
|
+
}): CancelablePromise<Array<AccessCredential>>;
|
|
632
|
+
}
|
|
633
|
+
|
|
57
634
|
/**
|
|
58
635
|
* Represents a Country within the Reach application.
|
|
59
636
|
*/
|
|
@@ -127,14 +704,6 @@ type Activity = {
|
|
|
127
704
|
surfaces?: Array<Surface> | null;
|
|
128
705
|
};
|
|
129
706
|
|
|
130
|
-
/**
|
|
131
|
-
* The course search sortby.
|
|
132
|
-
*/
|
|
133
|
-
declare enum SearchSortOrderDirection {
|
|
134
|
-
ASC = "Asc",
|
|
135
|
-
DESC = "Desc"
|
|
136
|
-
}
|
|
137
|
-
|
|
138
707
|
declare class ActivityService {
|
|
139
708
|
readonly httpRequest: BaseHttpRequest;
|
|
140
709
|
constructor(httpRequest: BaseHttpRequest);
|
|
@@ -303,28 +872,6 @@ type ActivityPerformance = {
|
|
|
303
872
|
revenuePotential?: number;
|
|
304
873
|
};
|
|
305
874
|
|
|
306
|
-
/**
|
|
307
|
-
* Describes meta data for results returned as pages.
|
|
308
|
-
*/
|
|
309
|
-
type Pagination = {
|
|
310
|
-
/**
|
|
311
|
-
* Gets or sets the page number.
|
|
312
|
-
*/
|
|
313
|
-
pageNumber: number;
|
|
314
|
-
/**
|
|
315
|
-
* Gets the total number of pages.
|
|
316
|
-
*/
|
|
317
|
-
readonly totalPages: number;
|
|
318
|
-
/**
|
|
319
|
-
* Gets the total number of items in each page.
|
|
320
|
-
*/
|
|
321
|
-
readonly itemsPerPage: number;
|
|
322
|
-
/**
|
|
323
|
-
* Gets the total number of items.
|
|
324
|
-
*/
|
|
325
|
-
readonly totalItems: number;
|
|
326
|
-
};
|
|
327
|
-
|
|
328
875
|
type ActivityPerformancePage = {
|
|
329
876
|
pagination: Pagination;
|
|
330
877
|
readonly items: Array<ActivityPerformance>;
|
|
@@ -2769,15 +3316,15 @@ type WaitlistOpportunity = {
|
|
|
2769
3316
|
/**
|
|
2770
3317
|
* Gets or sets the first name.
|
|
2771
3318
|
*/
|
|
2772
|
-
firstName
|
|
3319
|
+
firstName: string;
|
|
2773
3320
|
/**
|
|
2774
3321
|
* Gets or sets the last name.
|
|
2775
3322
|
*/
|
|
2776
|
-
lastName
|
|
3323
|
+
lastName: string;
|
|
2777
3324
|
/**
|
|
2778
3325
|
* Gets or sets the email.
|
|
2779
3326
|
*/
|
|
2780
|
-
email
|
|
3327
|
+
email: string;
|
|
2781
3328
|
/**
|
|
2782
3329
|
* Gets or sets the phone.
|
|
2783
3330
|
*/
|
|
@@ -2785,7 +3332,7 @@ type WaitlistOpportunity = {
|
|
|
2785
3332
|
/**
|
|
2786
3333
|
* Gets or sets the spaces required.
|
|
2787
3334
|
*/
|
|
2788
|
-
spacesRequired
|
|
3335
|
+
spacesRequired: number;
|
|
2789
3336
|
/**
|
|
2790
3337
|
* Gets or sets a value indicating whether gets or sets the converted.
|
|
2791
3338
|
*/
|
|
@@ -2983,15 +3530,15 @@ type WaitlistActivity = {
|
|
|
2983
3530
|
/**
|
|
2984
3531
|
* Gets or sets the first name.
|
|
2985
3532
|
*/
|
|
2986
|
-
firstName
|
|
3533
|
+
firstName: string;
|
|
2987
3534
|
/**
|
|
2988
3535
|
* Gets or sets the last name.
|
|
2989
3536
|
*/
|
|
2990
|
-
lastName
|
|
3537
|
+
lastName: string;
|
|
2991
3538
|
/**
|
|
2992
3539
|
* Gets or sets the email.
|
|
2993
3540
|
*/
|
|
2994
|
-
email
|
|
3541
|
+
email: string;
|
|
2995
3542
|
/**
|
|
2996
3543
|
* Gets or sets the phone.
|
|
2997
3544
|
*/
|
|
@@ -3040,6 +3587,10 @@ type Session = {
|
|
|
3040
3587
|
* Gets or sets the activity venue id.
|
|
3041
3588
|
*/
|
|
3042
3589
|
venueId?: string | null;
|
|
3590
|
+
/**
|
|
3591
|
+
* Gets or sets the optional registered Codelocks lock for NetCode access (course or session template).
|
|
3592
|
+
*/
|
|
3593
|
+
codelocksLockId?: string | null;
|
|
3043
3594
|
/**
|
|
3044
3595
|
* Gets or sets the session activity id.
|
|
3045
3596
|
*/
|
|
@@ -3533,11 +4084,11 @@ type Facility = {
|
|
|
3533
4084
|
/**
|
|
3534
4085
|
* Gets or sets the facility venue id.
|
|
3535
4086
|
*/
|
|
3536
|
-
venueId
|
|
4087
|
+
venueId: string;
|
|
3537
4088
|
/**
|
|
3538
4089
|
* Gets or sets the facility activity id.
|
|
3539
4090
|
*/
|
|
3540
|
-
activityId
|
|
4091
|
+
activityId: number;
|
|
3541
4092
|
/**
|
|
3542
4093
|
* Gets or sets the facility survey id.
|
|
3543
4094
|
*/
|
|
@@ -3549,11 +4100,11 @@ type Facility = {
|
|
|
3549
4100
|
/**
|
|
3550
4101
|
* Gets or sets the facility name.
|
|
3551
4102
|
*/
|
|
3552
|
-
name
|
|
4103
|
+
name: string;
|
|
3553
4104
|
/**
|
|
3554
4105
|
* Gets or sets the facility description.
|
|
3555
4106
|
*/
|
|
3556
|
-
description
|
|
4107
|
+
description: string;
|
|
3557
4108
|
/**
|
|
3558
4109
|
* Gets or sets the facility image url.
|
|
3559
4110
|
* @deprecated
|
|
@@ -3584,6 +4135,10 @@ type Facility = {
|
|
|
3584
4135
|
* Gets or sets a value indicating whether the facility is deleted and should be ignored under normal operation.
|
|
3585
4136
|
*/
|
|
3586
4137
|
deleted?: boolean | null;
|
|
4138
|
+
/**
|
|
4139
|
+
* Gets or sets the optional registered Codelocks lock used for NetCode access at this facility.
|
|
4140
|
+
*/
|
|
4141
|
+
codelocksLockId?: string | null;
|
|
3587
4142
|
nextAvailableOpportunity?: Slot;
|
|
3588
4143
|
venue?: Venue;
|
|
3589
4144
|
activity?: Activity;
|
|
@@ -4229,7 +4784,7 @@ type CourseSession = {
|
|
|
4229
4784
|
/**
|
|
4230
4785
|
* Gets or sets the session id.
|
|
4231
4786
|
*/
|
|
4232
|
-
courseId
|
|
4787
|
+
courseId: string;
|
|
4233
4788
|
status?: SlotStatus;
|
|
4234
4789
|
/**
|
|
4235
4790
|
* Gets or sets the scheduled session creation lease expiry. Preventing other scheduled sessions from overwriting until the lease expires.
|
|
@@ -4311,6 +4866,10 @@ type Course = {
|
|
|
4311
4866
|
* Gets or sets the activity venue id.
|
|
4312
4867
|
*/
|
|
4313
4868
|
venueId?: string | null;
|
|
4869
|
+
/**
|
|
4870
|
+
* Gets or sets the optional registered Codelocks lock for NetCode access (course or session template).
|
|
4871
|
+
*/
|
|
4872
|
+
codelocksLockId?: string | null;
|
|
4314
4873
|
/**
|
|
4315
4874
|
* Gets or sets the session activity id.
|
|
4316
4875
|
*/
|
|
@@ -4683,6 +5242,16 @@ declare enum OpportunityType {
|
|
|
4683
5242
|
SELLABLE_ITEM = "SellableItem"
|
|
4684
5243
|
}
|
|
4685
5244
|
|
|
5245
|
+
/**
|
|
5246
|
+
* Generated Codelocks access for a single order line (customer portal JSON only; not persisted on Reach.Models.OrderItem).
|
|
5247
|
+
*/
|
|
5248
|
+
type OrderItemCodelocksAccess = {
|
|
5249
|
+
/**
|
|
5250
|
+
* Gets or sets the access code (NetCode) shown to the customer.
|
|
5251
|
+
*/
|
|
5252
|
+
accessCode?: string | null;
|
|
5253
|
+
};
|
|
5254
|
+
|
|
4686
5255
|
/**
|
|
4687
5256
|
* Represents an order deal Reach.Models.OrderItemDeal within the Reach application.
|
|
4688
5257
|
*/
|
|
@@ -4952,7 +5521,7 @@ type OrderItem = {
|
|
|
4952
5521
|
/**
|
|
4953
5522
|
* Gets or sets the order id.
|
|
4954
5523
|
*/
|
|
4955
|
-
orderId
|
|
5524
|
+
orderId: string;
|
|
4956
5525
|
/**
|
|
4957
5526
|
* Gets or sets the slot id.
|
|
4958
5527
|
*/
|
|
@@ -4972,7 +5541,7 @@ type OrderItem = {
|
|
|
4972
5541
|
/**
|
|
4973
5542
|
* Gets or sets the offer id.
|
|
4974
5543
|
*/
|
|
4975
|
-
offerId
|
|
5544
|
+
offerId: string;
|
|
4976
5545
|
/**
|
|
4977
5546
|
* Gets or sets the payment policy id.
|
|
4978
5547
|
*/
|
|
@@ -4988,7 +5557,7 @@ type OrderItem = {
|
|
|
4988
5557
|
/**
|
|
4989
5558
|
* Gets or sets the quantity of opportunities required on the order item.
|
|
4990
5559
|
*/
|
|
4991
|
-
quantity
|
|
5560
|
+
quantity: number;
|
|
4992
5561
|
status?: OrderItemStatus;
|
|
4993
5562
|
/**
|
|
4994
5563
|
* Gets or sets a value indicating whether the order item has been refunded.
|
|
@@ -5039,6 +5608,7 @@ type OrderItem = {
|
|
|
5039
5608
|
* Gets or sets a value indicating whether the order item is rescheduleable.
|
|
5040
5609
|
*/
|
|
5041
5610
|
rescheduleable?: boolean | null;
|
|
5611
|
+
codelocksAccess?: OrderItemCodelocksAccess;
|
|
5042
5612
|
/**
|
|
5043
5613
|
* Gets or sets the unit price before discount.
|
|
5044
5614
|
*/
|
|
@@ -5423,7 +5993,7 @@ type Order = {
|
|
|
5423
5993
|
/**
|
|
5424
5994
|
* Gets or sets the last name.
|
|
5425
5995
|
*/
|
|
5426
|
-
lastName
|
|
5996
|
+
lastName: string;
|
|
5427
5997
|
/**
|
|
5428
5998
|
* Gets the attendees abbreviated name.
|
|
5429
5999
|
*/
|
|
@@ -5435,11 +6005,11 @@ type Order = {
|
|
|
5435
6005
|
/**
|
|
5436
6006
|
* Gets or sets the email.
|
|
5437
6007
|
*/
|
|
5438
|
-
email
|
|
6008
|
+
email: string;
|
|
5439
6009
|
/**
|
|
5440
6010
|
* Gets or sets the phone number.
|
|
5441
6011
|
*/
|
|
5442
|
-
phone
|
|
6012
|
+
phone: string;
|
|
5443
6013
|
/**
|
|
5444
6014
|
* Gets or sets the orders street address.
|
|
5445
6015
|
*/
|
|
@@ -8387,81 +8957,632 @@ declare class CancellationPoliciesService {
|
|
|
8387
8957
|
* Gets or sets the sort order direction.
|
|
8388
8958
|
*/
|
|
8389
8959
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
8390
|
-
}): CancelablePromise<Array<CancellationPolicy>>;
|
|
8391
|
-
}
|
|
8392
|
-
|
|
8393
|
-
/**
|
|
8394
|
-
* The OpenAI description completion choice message.
|
|
8395
|
-
*/
|
|
8396
|
-
type ChoiceMessage = {
|
|
8397
|
-
/**
|
|
8398
|
-
* Gets or sets the role.
|
|
8399
|
-
*/
|
|
8400
|
-
role?: string | null;
|
|
8401
|
-
/**
|
|
8402
|
-
* Gets or sets the content.
|
|
8403
|
-
*/
|
|
8404
|
-
content?: string | null;
|
|
8405
|
-
};
|
|
8406
|
-
|
|
8407
|
-
/**
|
|
8408
|
-
* The OpenAI description completion choice.
|
|
8409
|
-
*/
|
|
8410
|
-
type CompletionChoice = {
|
|
8411
|
-
/**
|
|
8412
|
-
* Gets or sets the choice index.
|
|
8413
|
-
*/
|
|
8414
|
-
index?: number;
|
|
8415
|
-
message?: ChoiceMessage;
|
|
8416
|
-
};
|
|
8417
|
-
|
|
8418
|
-
/**
|
|
8419
|
-
* The OpenAI description completion response model.
|
|
8420
|
-
*/
|
|
8421
|
-
type DescriptionCompletionResponse = {
|
|
8422
|
-
/**
|
|
8423
|
-
* Gets or sets the openai response id.
|
|
8424
|
-
*/
|
|
8425
|
-
id?: string | null;
|
|
8426
|
-
/**
|
|
8427
|
-
* Gets or sets the used endpoint.
|
|
8428
|
-
*/
|
|
8429
|
-
object?: string | null;
|
|
8430
|
-
/**
|
|
8431
|
-
* Gets or sets the created timestamp.
|
|
8432
|
-
*/
|
|
8433
|
-
created?: number;
|
|
8960
|
+
}): CancelablePromise<Array<CancellationPolicy>>;
|
|
8961
|
+
}
|
|
8962
|
+
|
|
8963
|
+
/**
|
|
8964
|
+
* The OpenAI description completion choice message.
|
|
8965
|
+
*/
|
|
8966
|
+
type ChoiceMessage = {
|
|
8967
|
+
/**
|
|
8968
|
+
* Gets or sets the role.
|
|
8969
|
+
*/
|
|
8970
|
+
role?: string | null;
|
|
8971
|
+
/**
|
|
8972
|
+
* Gets or sets the content.
|
|
8973
|
+
*/
|
|
8974
|
+
content?: string | null;
|
|
8975
|
+
};
|
|
8976
|
+
|
|
8977
|
+
/**
|
|
8978
|
+
* The OpenAI description completion choice.
|
|
8979
|
+
*/
|
|
8980
|
+
type CompletionChoice = {
|
|
8981
|
+
/**
|
|
8982
|
+
* Gets or sets the choice index.
|
|
8983
|
+
*/
|
|
8984
|
+
index?: number;
|
|
8985
|
+
message?: ChoiceMessage;
|
|
8986
|
+
};
|
|
8987
|
+
|
|
8988
|
+
/**
|
|
8989
|
+
* The OpenAI description completion response model.
|
|
8990
|
+
*/
|
|
8991
|
+
type DescriptionCompletionResponse = {
|
|
8992
|
+
/**
|
|
8993
|
+
* Gets or sets the openai response id.
|
|
8994
|
+
*/
|
|
8995
|
+
id?: string | null;
|
|
8996
|
+
/**
|
|
8997
|
+
* Gets or sets the used endpoint.
|
|
8998
|
+
*/
|
|
8999
|
+
object?: string | null;
|
|
9000
|
+
/**
|
|
9001
|
+
* Gets or sets the created timestamp.
|
|
9002
|
+
*/
|
|
9003
|
+
created?: number;
|
|
9004
|
+
/**
|
|
9005
|
+
* Gets or sets the model used.
|
|
9006
|
+
*/
|
|
9007
|
+
model?: string | null;
|
|
9008
|
+
/**
|
|
9009
|
+
* Gets or sets the returned choices.
|
|
9010
|
+
*/
|
|
9011
|
+
choices?: Array<CompletionChoice> | null;
|
|
9012
|
+
};
|
|
9013
|
+
|
|
9014
|
+
declare class ChatService {
|
|
9015
|
+
readonly httpRequest: BaseHttpRequest;
|
|
9016
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
9017
|
+
/**
|
|
9018
|
+
* Returns a suggestion for an activity description based on given attributes.
|
|
9019
|
+
* Example request body
|
|
9020
|
+
* {
|
|
9021
|
+
* "name": "Shervs Tennis Fun",
|
|
9022
|
+
* "activity": "Tennis",
|
|
9023
|
+
* "Gender": "Mixed",
|
|
9024
|
+
* etc...
|
|
9025
|
+
* }.
|
|
9026
|
+
* @returns DescriptionCompletionResponse OK
|
|
9027
|
+
* @throws ApiError
|
|
9028
|
+
*/
|
|
9029
|
+
getActivityDescriptionCompletion({ requestBody, }: {
|
|
9030
|
+
/**
|
|
9031
|
+
* The attributes to use to generate the the open AI response.
|
|
9032
|
+
*/
|
|
9033
|
+
requestBody?: Record<string, any>;
|
|
9034
|
+
}): CancelablePromise<DescriptionCompletionResponse>;
|
|
9035
|
+
}
|
|
9036
|
+
|
|
9037
|
+
/**
|
|
9038
|
+
* Tenant-scoped registry entry for a physical Codelocks device used when generating NetCodes.
|
|
9039
|
+
*/
|
|
9040
|
+
type CodelocksLock = {
|
|
9041
|
+
/**
|
|
9042
|
+
* Gets or sets the entities Id.
|
|
9043
|
+
*/
|
|
9044
|
+
id?: string;
|
|
9045
|
+
/**
|
|
9046
|
+
* Gets or sets the tenant Id.
|
|
9047
|
+
*/
|
|
9048
|
+
tenantId: string;
|
|
9049
|
+
/**
|
|
9050
|
+
* Gets or sets the created date of this entity.
|
|
9051
|
+
*/
|
|
9052
|
+
dateCreated: string;
|
|
9053
|
+
/**
|
|
9054
|
+
* Gets or sets the last modified date of this entity.
|
|
9055
|
+
*/
|
|
9056
|
+
dateModified: string;
|
|
9057
|
+
/**
|
|
9058
|
+
* Gets or sets the modified by Id.
|
|
9059
|
+
*/
|
|
9060
|
+
modifiedById?: string | null;
|
|
9061
|
+
/**
|
|
9062
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
9063
|
+
*/
|
|
9064
|
+
isLive: boolean;
|
|
9065
|
+
/**
|
|
9066
|
+
* Gets or sets the display name for the lock.
|
|
9067
|
+
*/
|
|
9068
|
+
name?: string | null;
|
|
9069
|
+
/**
|
|
9070
|
+
* Gets or sets an optional location description (e.g. door, building).
|
|
9071
|
+
*/
|
|
9072
|
+
location?: string | null;
|
|
9073
|
+
/**
|
|
9074
|
+
* Gets or sets the IANA timezone for lock-side scheduling context.
|
|
9075
|
+
*/
|
|
9076
|
+
timezone?: string | null;
|
|
9077
|
+
/**
|
|
9078
|
+
* Gets or sets the supplier lock model (e.g. KL1060, C3SMART).
|
|
9079
|
+
*/
|
|
9080
|
+
lockModel?: string | null;
|
|
9081
|
+
/**
|
|
9082
|
+
* Gets or sets the path segment for `GET .../netcode/{id}` (C3SMART LockID or timecode for other models).
|
|
9083
|
+
*/
|
|
9084
|
+
netcodePathId?: string | null;
|
|
9085
|
+
/**
|
|
9086
|
+
* Gets or sets the lock identifier sent as the `identifer` query parameter to Codelocks Connect.
|
|
9087
|
+
*/
|
|
9088
|
+
identifier?: string | null;
|
|
9089
|
+
/**
|
|
9090
|
+
* Gets or sets a value indicating whether this lock can be selected for new bookings.
|
|
9091
|
+
*/
|
|
9092
|
+
isActive?: boolean;
|
|
9093
|
+
};
|
|
9094
|
+
|
|
9095
|
+
type CodelocksLockPage = {
|
|
9096
|
+
pagination: Pagination;
|
|
9097
|
+
readonly items: Array<CodelocksLock>;
|
|
9098
|
+
};
|
|
9099
|
+
|
|
9100
|
+
/**
|
|
9101
|
+
* Patch model for Codelocks lock updates.
|
|
9102
|
+
*/
|
|
9103
|
+
type CodelocksLockPatch = {
|
|
9104
|
+
/**
|
|
9105
|
+
* Gets or sets the tenant Id.
|
|
9106
|
+
*/
|
|
9107
|
+
tenantId: string;
|
|
9108
|
+
/**
|
|
9109
|
+
* Gets or sets the Id.
|
|
9110
|
+
*/
|
|
9111
|
+
id: string;
|
|
9112
|
+
/**
|
|
9113
|
+
* Gets or sets the display name for the lock.
|
|
9114
|
+
*/
|
|
9115
|
+
name?: string | null;
|
|
9116
|
+
/**
|
|
9117
|
+
* Gets or sets an optional location description.
|
|
9118
|
+
*/
|
|
9119
|
+
location?: string | null;
|
|
9120
|
+
/**
|
|
9121
|
+
* Gets or sets the IANA timezone.
|
|
9122
|
+
*/
|
|
9123
|
+
timezone?: string | null;
|
|
9124
|
+
/**
|
|
9125
|
+
* Gets or sets the supplier lock model.
|
|
9126
|
+
*/
|
|
9127
|
+
lockModel?: string | null;
|
|
9128
|
+
/**
|
|
9129
|
+
* Gets or sets the NetCode path id.
|
|
9130
|
+
*/
|
|
9131
|
+
netcodePathId?: string | null;
|
|
9132
|
+
/**
|
|
9133
|
+
* Gets or sets the lock identifier for the Codelocks API.
|
|
9134
|
+
*/
|
|
9135
|
+
identifier?: string | null;
|
|
9136
|
+
/**
|
|
9137
|
+
* Gets or sets a value indicating whether this lock is active.
|
|
9138
|
+
*/
|
|
9139
|
+
isActive?: boolean | null;
|
|
9140
|
+
};
|
|
9141
|
+
|
|
9142
|
+
/**
|
|
9143
|
+
* Post model for Codelocks lock inserts.
|
|
9144
|
+
*/
|
|
9145
|
+
type CodelocksLockPost = {
|
|
9146
|
+
/**
|
|
9147
|
+
* Gets or sets the tenant Id.
|
|
9148
|
+
*/
|
|
9149
|
+
tenantId: string;
|
|
9150
|
+
/**
|
|
9151
|
+
* Gets or sets the display name for the lock.
|
|
9152
|
+
*/
|
|
9153
|
+
name?: string | null;
|
|
9154
|
+
/**
|
|
9155
|
+
* Gets or sets an optional location description.
|
|
9156
|
+
*/
|
|
9157
|
+
location?: string | null;
|
|
9158
|
+
/**
|
|
9159
|
+
* Gets or sets the IANA timezone.
|
|
9160
|
+
*/
|
|
9161
|
+
timezone?: string | null;
|
|
9162
|
+
/**
|
|
9163
|
+
* Gets or sets the supplier lock model.
|
|
9164
|
+
*/
|
|
9165
|
+
lockModel?: string | null;
|
|
9166
|
+
/**
|
|
9167
|
+
* Gets or sets the NetCode path id.
|
|
9168
|
+
*/
|
|
9169
|
+
netcodePathId?: string | null;
|
|
9170
|
+
/**
|
|
9171
|
+
* Gets or sets the lock identifier for the Codelocks API.
|
|
9172
|
+
*/
|
|
9173
|
+
identifier?: string | null;
|
|
9174
|
+
/**
|
|
9175
|
+
* Gets or sets a value indicating whether this lock is active.
|
|
9176
|
+
*/
|
|
9177
|
+
isActive?: boolean | null;
|
|
9178
|
+
};
|
|
9179
|
+
|
|
9180
|
+
declare class CodelocksLocksService {
|
|
9181
|
+
readonly httpRequest: BaseHttpRequest;
|
|
9182
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
9183
|
+
/**
|
|
9184
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
9185
|
+
* @returns CodelocksLock OK
|
|
9186
|
+
* @throws ApiError
|
|
9187
|
+
*/
|
|
9188
|
+
post({ requestBody, }: {
|
|
9189
|
+
/**
|
|
9190
|
+
* The <typeparamref name="TObject" /> model.
|
|
9191
|
+
*/
|
|
9192
|
+
requestBody?: CodelocksLockPost;
|
|
9193
|
+
}): CancelablePromise<CodelocksLock>;
|
|
9194
|
+
/**
|
|
9195
|
+
* Patches the resource.
|
|
9196
|
+
* @returns CodelocksLock OK
|
|
9197
|
+
* @throws ApiError
|
|
9198
|
+
*/
|
|
9199
|
+
patch({ requestBody, }: {
|
|
9200
|
+
/**
|
|
9201
|
+
* The <typeparamref name="TObject" /> model.
|
|
9202
|
+
*/
|
|
9203
|
+
requestBody?: CodelocksLockPatch;
|
|
9204
|
+
}): CancelablePromise<CodelocksLock>;
|
|
9205
|
+
/**
|
|
9206
|
+
* Inserts a list of resources.
|
|
9207
|
+
* @returns CodelocksLock OK
|
|
9208
|
+
* @throws ApiError
|
|
9209
|
+
*/
|
|
9210
|
+
postList({ requestBody, }: {
|
|
9211
|
+
/**
|
|
9212
|
+
* The list of <typeparamref name="TObject" />.
|
|
9213
|
+
*/
|
|
9214
|
+
requestBody?: Array<CodelocksLockPost>;
|
|
9215
|
+
}): CancelablePromise<Array<CodelocksLock>>;
|
|
9216
|
+
/**
|
|
9217
|
+
* Patches the resource.
|
|
9218
|
+
* @returns CodelocksLock OK
|
|
9219
|
+
* @throws ApiError
|
|
9220
|
+
*/
|
|
9221
|
+
patchWithReferences({ requestBody, }: {
|
|
9222
|
+
/**
|
|
9223
|
+
* The <typeparamref name="TObject" /> model.
|
|
9224
|
+
*/
|
|
9225
|
+
requestBody?: CodelocksLockPatch;
|
|
9226
|
+
}): CancelablePromise<CodelocksLock>;
|
|
9227
|
+
/**
|
|
9228
|
+
* Deletes the resource.
|
|
9229
|
+
* @returns any OK
|
|
9230
|
+
* @throws ApiError
|
|
9231
|
+
*/
|
|
9232
|
+
deleteByObject({ requestBody, }: {
|
|
9233
|
+
/**
|
|
9234
|
+
* The <typeparamref name="TObject" /> model.
|
|
9235
|
+
*/
|
|
9236
|
+
requestBody?: CodelocksLock;
|
|
9237
|
+
}): CancelablePromise<any>;
|
|
9238
|
+
/**
|
|
9239
|
+
* Gets a list of resources.
|
|
9240
|
+
* @returns CodelocksLockPage OK
|
|
9241
|
+
* @throws ApiError
|
|
9242
|
+
*/
|
|
9243
|
+
getPage({ ids, name, isActive, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9244
|
+
/**
|
|
9245
|
+
* Gets or sets the queryable lock ids.
|
|
9246
|
+
*/
|
|
9247
|
+
ids?: Array<string>;
|
|
9248
|
+
/**
|
|
9249
|
+
* Gets or sets the exact name filter.
|
|
9250
|
+
*/
|
|
9251
|
+
name?: string;
|
|
9252
|
+
/**
|
|
9253
|
+
* Gets or sets a value indicating whether to filter by active locks.
|
|
9254
|
+
*/
|
|
9255
|
+
isActive?: boolean;
|
|
9256
|
+
/**
|
|
9257
|
+
* Gets or sets the page number for paged queries.
|
|
9258
|
+
*/
|
|
9259
|
+
pageNumber?: number;
|
|
9260
|
+
/**
|
|
9261
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
9262
|
+
*/
|
|
9263
|
+
take?: number;
|
|
9264
|
+
/**
|
|
9265
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
9266
|
+
*/
|
|
9267
|
+
skip?: number;
|
|
9268
|
+
/**
|
|
9269
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
9270
|
+
*/
|
|
9271
|
+
limitListRequests?: boolean;
|
|
9272
|
+
/**
|
|
9273
|
+
* Gets or sets the Tenant Id.
|
|
9274
|
+
*/
|
|
9275
|
+
tenantId?: string;
|
|
9276
|
+
/**
|
|
9277
|
+
* Gets or sets the Modifed By Id.
|
|
9278
|
+
*/
|
|
9279
|
+
modifiedById?: string;
|
|
9280
|
+
/**
|
|
9281
|
+
* Gets or sets the Modifed By Ids.
|
|
9282
|
+
*/
|
|
9283
|
+
modifiedByIds?: Array<string>;
|
|
9284
|
+
/**
|
|
9285
|
+
* Gets or sets the Date Created greater than equal to.
|
|
9286
|
+
*/
|
|
9287
|
+
dateCreatedGte?: string;
|
|
9288
|
+
/**
|
|
9289
|
+
* Gets or sets the Date Created less than equal to.
|
|
9290
|
+
*/
|
|
9291
|
+
dateCreatedLte?: string;
|
|
9292
|
+
/**
|
|
9293
|
+
* Gets or sets the queryable only is live status.
|
|
9294
|
+
*/
|
|
9295
|
+
isLive?: boolean;
|
|
9296
|
+
/**
|
|
9297
|
+
* Gets or sets the sort order direction.
|
|
9298
|
+
*/
|
|
9299
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
9300
|
+
}): CancelablePromise<CodelocksLockPage>;
|
|
9301
|
+
/**
|
|
9302
|
+
* Deletes the resource.
|
|
9303
|
+
* @returns any OK
|
|
9304
|
+
* @throws ApiError
|
|
9305
|
+
*/
|
|
9306
|
+
deleteById({ id, }: {
|
|
9307
|
+
/**
|
|
9308
|
+
* The <typeparamref name="TObject" /> id.
|
|
9309
|
+
*/
|
|
9310
|
+
id: string;
|
|
9311
|
+
}): CancelablePromise<any>;
|
|
9312
|
+
/**
|
|
9313
|
+
* Gets the resource by its Id.
|
|
9314
|
+
* @returns CodelocksLock OK
|
|
9315
|
+
* @throws ApiError
|
|
9316
|
+
*/
|
|
9317
|
+
getObject({ id, }: {
|
|
9318
|
+
/**
|
|
9319
|
+
* The <typeparamref name="TObject" /> id.
|
|
9320
|
+
*/
|
|
9321
|
+
id: string;
|
|
9322
|
+
}): CancelablePromise<CodelocksLock>;
|
|
9323
|
+
/**
|
|
9324
|
+
* Returns a value indicating whether the resource is deletable.
|
|
9325
|
+
* @returns boolean OK
|
|
9326
|
+
* @throws ApiError
|
|
9327
|
+
*/
|
|
9328
|
+
canDelete({ id, }: {
|
|
9329
|
+
/**
|
|
9330
|
+
* The <typeparamref name="TObject" /> id.
|
|
9331
|
+
*/
|
|
9332
|
+
id: string;
|
|
9333
|
+
}): CancelablePromise<boolean>;
|
|
9334
|
+
/**
|
|
9335
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
9336
|
+
* @returns boolean OK
|
|
9337
|
+
* @throws ApiError
|
|
9338
|
+
*/
|
|
9339
|
+
exists({ ids, name, isActive, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9340
|
+
/**
|
|
9341
|
+
* Gets or sets the queryable lock ids.
|
|
9342
|
+
*/
|
|
9343
|
+
ids?: Array<string>;
|
|
9344
|
+
/**
|
|
9345
|
+
* Gets or sets the exact name filter.
|
|
9346
|
+
*/
|
|
9347
|
+
name?: string;
|
|
9348
|
+
/**
|
|
9349
|
+
* Gets or sets a value indicating whether to filter by active locks.
|
|
9350
|
+
*/
|
|
9351
|
+
isActive?: boolean;
|
|
9352
|
+
/**
|
|
9353
|
+
* Gets or sets the page number for paged queries.
|
|
9354
|
+
*/
|
|
9355
|
+
pageNumber?: number;
|
|
9356
|
+
/**
|
|
9357
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
9358
|
+
*/
|
|
9359
|
+
take?: number;
|
|
9360
|
+
/**
|
|
9361
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
9362
|
+
*/
|
|
9363
|
+
skip?: number;
|
|
9364
|
+
/**
|
|
9365
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
9366
|
+
*/
|
|
9367
|
+
limitListRequests?: boolean;
|
|
9368
|
+
/**
|
|
9369
|
+
* Gets or sets the Tenant Id.
|
|
9370
|
+
*/
|
|
9371
|
+
tenantId?: string;
|
|
9372
|
+
/**
|
|
9373
|
+
* Gets or sets the Modifed By Id.
|
|
9374
|
+
*/
|
|
9375
|
+
modifiedById?: string;
|
|
9376
|
+
/**
|
|
9377
|
+
* Gets or sets the Modifed By Ids.
|
|
9378
|
+
*/
|
|
9379
|
+
modifiedByIds?: Array<string>;
|
|
9380
|
+
/**
|
|
9381
|
+
* Gets or sets the Date Created greater than equal to.
|
|
9382
|
+
*/
|
|
9383
|
+
dateCreatedGte?: string;
|
|
9384
|
+
/**
|
|
9385
|
+
* Gets or sets the Date Created less than equal to.
|
|
9386
|
+
*/
|
|
9387
|
+
dateCreatedLte?: string;
|
|
9388
|
+
/**
|
|
9389
|
+
* Gets or sets the queryable only is live status.
|
|
9390
|
+
*/
|
|
9391
|
+
isLive?: boolean;
|
|
9392
|
+
/**
|
|
9393
|
+
* Gets or sets the sort order direction.
|
|
9394
|
+
*/
|
|
9395
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
9396
|
+
}): CancelablePromise<boolean>;
|
|
8434
9397
|
/**
|
|
8435
|
-
*
|
|
9398
|
+
* Returns the number of results in the database given the provided search params.
|
|
9399
|
+
* @returns number OK
|
|
9400
|
+
* @throws ApiError
|
|
8436
9401
|
*/
|
|
8437
|
-
|
|
9402
|
+
count({ ids, name, isActive, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9403
|
+
/**
|
|
9404
|
+
* Gets or sets the queryable lock ids.
|
|
9405
|
+
*/
|
|
9406
|
+
ids?: Array<string>;
|
|
9407
|
+
/**
|
|
9408
|
+
* Gets or sets the exact name filter.
|
|
9409
|
+
*/
|
|
9410
|
+
name?: string;
|
|
9411
|
+
/**
|
|
9412
|
+
* Gets or sets a value indicating whether to filter by active locks.
|
|
9413
|
+
*/
|
|
9414
|
+
isActive?: boolean;
|
|
9415
|
+
/**
|
|
9416
|
+
* Gets or sets the page number for paged queries.
|
|
9417
|
+
*/
|
|
9418
|
+
pageNumber?: number;
|
|
9419
|
+
/**
|
|
9420
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
9421
|
+
*/
|
|
9422
|
+
take?: number;
|
|
9423
|
+
/**
|
|
9424
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
9425
|
+
*/
|
|
9426
|
+
skip?: number;
|
|
9427
|
+
/**
|
|
9428
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
9429
|
+
*/
|
|
9430
|
+
limitListRequests?: boolean;
|
|
9431
|
+
/**
|
|
9432
|
+
* Gets or sets the Tenant Id.
|
|
9433
|
+
*/
|
|
9434
|
+
tenantId?: string;
|
|
9435
|
+
/**
|
|
9436
|
+
* Gets or sets the Modifed By Id.
|
|
9437
|
+
*/
|
|
9438
|
+
modifiedById?: string;
|
|
9439
|
+
/**
|
|
9440
|
+
* Gets or sets the Modifed By Ids.
|
|
9441
|
+
*/
|
|
9442
|
+
modifiedByIds?: Array<string>;
|
|
9443
|
+
/**
|
|
9444
|
+
* Gets or sets the Date Created greater than equal to.
|
|
9445
|
+
*/
|
|
9446
|
+
dateCreatedGte?: string;
|
|
9447
|
+
/**
|
|
9448
|
+
* Gets or sets the Date Created less than equal to.
|
|
9449
|
+
*/
|
|
9450
|
+
dateCreatedLte?: string;
|
|
9451
|
+
/**
|
|
9452
|
+
* Gets or sets the queryable only is live status.
|
|
9453
|
+
*/
|
|
9454
|
+
isLive?: boolean;
|
|
9455
|
+
/**
|
|
9456
|
+
* Gets or sets the sort order direction.
|
|
9457
|
+
*/
|
|
9458
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
9459
|
+
}): CancelablePromise<number>;
|
|
8438
9460
|
/**
|
|
8439
|
-
* Gets
|
|
9461
|
+
* Gets a list of resources unpaged and without references.
|
|
9462
|
+
* @returns CodelocksLock OK
|
|
9463
|
+
* @throws ApiError
|
|
8440
9464
|
*/
|
|
8441
|
-
|
|
8442
|
-
|
|
8443
|
-
|
|
8444
|
-
|
|
8445
|
-
|
|
8446
|
-
|
|
9465
|
+
getListWithoutReferences({ ids, name, isActive, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
9466
|
+
/**
|
|
9467
|
+
* Gets or sets the queryable lock ids.
|
|
9468
|
+
*/
|
|
9469
|
+
ids?: Array<string>;
|
|
9470
|
+
/**
|
|
9471
|
+
* Gets or sets the exact name filter.
|
|
9472
|
+
*/
|
|
9473
|
+
name?: string;
|
|
9474
|
+
/**
|
|
9475
|
+
* Gets or sets a value indicating whether to filter by active locks.
|
|
9476
|
+
*/
|
|
9477
|
+
isActive?: boolean;
|
|
9478
|
+
/**
|
|
9479
|
+
* Gets or sets the page number for paged queries.
|
|
9480
|
+
*/
|
|
9481
|
+
pageNumber?: number;
|
|
9482
|
+
/**
|
|
9483
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
9484
|
+
*/
|
|
9485
|
+
take?: number;
|
|
9486
|
+
/**
|
|
9487
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
9488
|
+
*/
|
|
9489
|
+
skip?: number;
|
|
9490
|
+
/**
|
|
9491
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
9492
|
+
*/
|
|
9493
|
+
limitListRequests?: boolean;
|
|
9494
|
+
/**
|
|
9495
|
+
* Gets or sets the Tenant Id.
|
|
9496
|
+
*/
|
|
9497
|
+
tenantId?: string;
|
|
9498
|
+
/**
|
|
9499
|
+
* Gets or sets the Modifed By Id.
|
|
9500
|
+
*/
|
|
9501
|
+
modifiedById?: string;
|
|
9502
|
+
/**
|
|
9503
|
+
* Gets or sets the Modifed By Ids.
|
|
9504
|
+
*/
|
|
9505
|
+
modifiedByIds?: Array<string>;
|
|
9506
|
+
/**
|
|
9507
|
+
* Gets or sets the Date Created greater than equal to.
|
|
9508
|
+
*/
|
|
9509
|
+
dateCreatedGte?: string;
|
|
9510
|
+
/**
|
|
9511
|
+
* Gets or sets the Date Created less than equal to.
|
|
9512
|
+
*/
|
|
9513
|
+
dateCreatedLte?: string;
|
|
9514
|
+
/**
|
|
9515
|
+
* Gets or sets the queryable only is live status.
|
|
9516
|
+
*/
|
|
9517
|
+
isLive?: boolean;
|
|
9518
|
+
/**
|
|
9519
|
+
* Gets or sets the sort order direction.
|
|
9520
|
+
*/
|
|
9521
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
9522
|
+
}): CancelablePromise<Array<CodelocksLock>>;
|
|
8447
9523
|
/**
|
|
8448
|
-
*
|
|
8449
|
-
*
|
|
8450
|
-
* {
|
|
8451
|
-
* "name": "Shervs Tennis Fun",
|
|
8452
|
-
* "activity": "Tennis",
|
|
8453
|
-
* "Gender": "Mixed",
|
|
8454
|
-
* etc...
|
|
8455
|
-
* }.
|
|
8456
|
-
* @returns DescriptionCompletionResponse OK
|
|
9524
|
+
* Gets a list of resources.
|
|
9525
|
+
* @returns CodelocksLock OK
|
|
8457
9526
|
* @throws ApiError
|
|
8458
9527
|
*/
|
|
8459
|
-
|
|
9528
|
+
getListIdName({ ids, name, isActive, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
8460
9529
|
/**
|
|
8461
|
-
*
|
|
9530
|
+
* Gets or sets the queryable lock ids.
|
|
8462
9531
|
*/
|
|
8463
|
-
|
|
8464
|
-
|
|
9532
|
+
ids?: Array<string>;
|
|
9533
|
+
/**
|
|
9534
|
+
* Gets or sets the exact name filter.
|
|
9535
|
+
*/
|
|
9536
|
+
name?: string;
|
|
9537
|
+
/**
|
|
9538
|
+
* Gets or sets a value indicating whether to filter by active locks.
|
|
9539
|
+
*/
|
|
9540
|
+
isActive?: boolean;
|
|
9541
|
+
/**
|
|
9542
|
+
* Gets or sets the page number for paged queries.
|
|
9543
|
+
*/
|
|
9544
|
+
pageNumber?: number;
|
|
9545
|
+
/**
|
|
9546
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
9547
|
+
*/
|
|
9548
|
+
take?: number;
|
|
9549
|
+
/**
|
|
9550
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
9551
|
+
*/
|
|
9552
|
+
skip?: number;
|
|
9553
|
+
/**
|
|
9554
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
9555
|
+
*/
|
|
9556
|
+
limitListRequests?: boolean;
|
|
9557
|
+
/**
|
|
9558
|
+
* Gets or sets the Tenant Id.
|
|
9559
|
+
*/
|
|
9560
|
+
tenantId?: string;
|
|
9561
|
+
/**
|
|
9562
|
+
* Gets or sets the Modifed By Id.
|
|
9563
|
+
*/
|
|
9564
|
+
modifiedById?: string;
|
|
9565
|
+
/**
|
|
9566
|
+
* Gets or sets the Modifed By Ids.
|
|
9567
|
+
*/
|
|
9568
|
+
modifiedByIds?: Array<string>;
|
|
9569
|
+
/**
|
|
9570
|
+
* Gets or sets the Date Created greater than equal to.
|
|
9571
|
+
*/
|
|
9572
|
+
dateCreatedGte?: string;
|
|
9573
|
+
/**
|
|
9574
|
+
* Gets or sets the Date Created less than equal to.
|
|
9575
|
+
*/
|
|
9576
|
+
dateCreatedLte?: string;
|
|
9577
|
+
/**
|
|
9578
|
+
* Gets or sets the queryable only is live status.
|
|
9579
|
+
*/
|
|
9580
|
+
isLive?: boolean;
|
|
9581
|
+
/**
|
|
9582
|
+
* Gets or sets the sort order direction.
|
|
9583
|
+
*/
|
|
9584
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
9585
|
+
}): CancelablePromise<Array<CodelocksLock>>;
|
|
8465
9586
|
}
|
|
8466
9587
|
|
|
8467
9588
|
declare class CountryService {
|
|
@@ -8855,6 +9976,10 @@ type CourseCreate = {
|
|
|
8855
9976
|
* Gets or sets the session deals.
|
|
8856
9977
|
*/
|
|
8857
9978
|
deals?: Array<CreateDeal> | null;
|
|
9979
|
+
/**
|
|
9980
|
+
* Gets or sets the optional registered Codelocks lock for NetCode access.
|
|
9981
|
+
*/
|
|
9982
|
+
codelocksLockId?: string | null;
|
|
8858
9983
|
};
|
|
8859
9984
|
|
|
8860
9985
|
/**
|
|
@@ -9145,6 +10270,10 @@ type CoursePatch = {
|
|
|
9145
10270
|
* Gets or sets optional storefront message for pre-registration.
|
|
9146
10271
|
*/
|
|
9147
10272
|
preRegistrationMessage?: string | null;
|
|
10273
|
+
/**
|
|
10274
|
+
* Gets or sets the optional registered Codelocks lock for NetCode access.
|
|
10275
|
+
*/
|
|
10276
|
+
codelocksLockId?: string | null;
|
|
9148
10277
|
emailSettings?: UpdateEmailSettings;
|
|
9149
10278
|
/**
|
|
9150
10279
|
* Gets or sets the course offers.
|
|
@@ -16942,6 +18071,10 @@ type FacilityPatch = {
|
|
|
16942
18071
|
*/
|
|
16943
18072
|
id: string;
|
|
16944
18073
|
emailSettings?: UpdateEmailSettings;
|
|
18074
|
+
/**
|
|
18075
|
+
* Gets or sets the optional registered Codelocks lock for NetCode access.
|
|
18076
|
+
*/
|
|
18077
|
+
codelocksLockId?: string | null;
|
|
16945
18078
|
};
|
|
16946
18079
|
|
|
16947
18080
|
/**
|
|
@@ -16953,6 +18086,10 @@ type FacilityPost = {
|
|
|
16953
18086
|
*/
|
|
16954
18087
|
tenantId: string;
|
|
16955
18088
|
emailSettings?: UpdateEmailSettings;
|
|
18089
|
+
/**
|
|
18090
|
+
* Gets or sets the optional registered Codelocks lock for NetCode access.
|
|
18091
|
+
*/
|
|
18092
|
+
codelocksLockId?: string | null;
|
|
16956
18093
|
};
|
|
16957
18094
|
|
|
16958
18095
|
declare class FacilitiesService {
|
|
@@ -17904,6 +19041,72 @@ declare class FacilityIndividualsService {
|
|
|
17904
19041
|
}): CancelablePromise<Array<FacilityIndividual>>;
|
|
17905
19042
|
}
|
|
17906
19043
|
|
|
19044
|
+
/**
|
|
19045
|
+
* Request body to dismiss a feature announcement for the current user.
|
|
19046
|
+
*/
|
|
19047
|
+
type FeatureAnnouncementDismissPost = {
|
|
19048
|
+
/**
|
|
19049
|
+
* Gets or sets the announcement identifier to dismiss.
|
|
19050
|
+
*/
|
|
19051
|
+
featureAnnouncementId?: string;
|
|
19052
|
+
};
|
|
19053
|
+
|
|
19054
|
+
/**
|
|
19055
|
+
* Feature announcement payload returned to the partner app for the current user.
|
|
19056
|
+
*/
|
|
19057
|
+
type FeatureAnnouncementForUserDto = {
|
|
19058
|
+
/**
|
|
19059
|
+
* Gets or sets the identifier.
|
|
19060
|
+
*/
|
|
19061
|
+
id?: string;
|
|
19062
|
+
/**
|
|
19063
|
+
* Gets or sets the slug.
|
|
19064
|
+
*/
|
|
19065
|
+
slug?: string | null;
|
|
19066
|
+
/**
|
|
19067
|
+
* Gets or sets the version.
|
|
19068
|
+
*/
|
|
19069
|
+
version?: number;
|
|
19070
|
+
/**
|
|
19071
|
+
* Gets or sets the widget title.
|
|
19072
|
+
*/
|
|
19073
|
+
title?: string | null;
|
|
19074
|
+
/**
|
|
19075
|
+
* Gets or sets the short summary.
|
|
19076
|
+
*/
|
|
19077
|
+
summary?: string | null;
|
|
19078
|
+
/**
|
|
19079
|
+
* Gets or sets the modal body.
|
|
19080
|
+
*/
|
|
19081
|
+
detailBody?: string | null;
|
|
19082
|
+
/**
|
|
19083
|
+
* Gets or sets an optional URL.
|
|
19084
|
+
*/
|
|
19085
|
+
url?: string | null;
|
|
19086
|
+
};
|
|
19087
|
+
|
|
19088
|
+
declare class FeatureAnnouncementsService {
|
|
19089
|
+
readonly httpRequest: BaseHttpRequest;
|
|
19090
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
19091
|
+
/**
|
|
19092
|
+
* Returns active announcements for the current user (filtered by schedule, dismissal, role, and latest version per slug).
|
|
19093
|
+
* @returns FeatureAnnouncementForUserDto OK
|
|
19094
|
+
* @throws ApiError
|
|
19095
|
+
*/
|
|
19096
|
+
getActive(): CancelablePromise<Array<FeatureAnnouncementForUserDto>>;
|
|
19097
|
+
/**
|
|
19098
|
+
* Records a dismissal for the current user (idempotent).
|
|
19099
|
+
* @returns any OK
|
|
19100
|
+
* @throws ApiError
|
|
19101
|
+
*/
|
|
19102
|
+
dismiss({ requestBody, }: {
|
|
19103
|
+
/**
|
|
19104
|
+
* Dismissal body.
|
|
19105
|
+
*/
|
|
19106
|
+
requestBody?: FeatureAnnouncementDismissPost;
|
|
19107
|
+
}): CancelablePromise<any>;
|
|
19108
|
+
}
|
|
19109
|
+
|
|
17907
19110
|
/**
|
|
17908
19111
|
* The filestack image meta data response model.
|
|
17909
19112
|
*/
|
|
@@ -20471,57 +21674,512 @@ declare class ImagesService {
|
|
|
20471
21674
|
* Gets or sets the sort order direction.
|
|
20472
21675
|
*/
|
|
20473
21676
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
20474
|
-
}): CancelablePromise<Array<Image>>;
|
|
21677
|
+
}): CancelablePromise<Array<Image>>;
|
|
21678
|
+
/**
|
|
21679
|
+
* Gets a list of resources.
|
|
21680
|
+
* @returns Image OK
|
|
21681
|
+
* @throws ApiError
|
|
21682
|
+
*/
|
|
21683
|
+
getListIdName({ venueId, venueIds, facilityId, facilityIds, sessionId, sessionIds, courseId, courseIds, sellableItemIds, programmeId, programmeIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21684
|
+
/**
|
|
21685
|
+
* Gets or sets the queryable venue id.
|
|
21686
|
+
*/
|
|
21687
|
+
venueId?: string;
|
|
21688
|
+
/**
|
|
21689
|
+
* Gets or sets the queryable venue ids.
|
|
21690
|
+
*/
|
|
21691
|
+
venueIds?: Array<string>;
|
|
21692
|
+
/**
|
|
21693
|
+
* Gets or sets the queryable facility id.
|
|
21694
|
+
*/
|
|
21695
|
+
facilityId?: string;
|
|
21696
|
+
/**
|
|
21697
|
+
* Gets or sets the queryable facility ids.
|
|
21698
|
+
*/
|
|
21699
|
+
facilityIds?: Array<string>;
|
|
21700
|
+
/**
|
|
21701
|
+
* Gets or sets the queryable session id.
|
|
21702
|
+
*/
|
|
21703
|
+
sessionId?: string;
|
|
21704
|
+
/**
|
|
21705
|
+
* Gets or sets the queryable session ids.
|
|
21706
|
+
*/
|
|
21707
|
+
sessionIds?: Array<string>;
|
|
21708
|
+
/**
|
|
21709
|
+
* Gets or sets the queryable course id.
|
|
21710
|
+
*/
|
|
21711
|
+
courseId?: string;
|
|
21712
|
+
/**
|
|
21713
|
+
* Gets or sets the queryable course ids.
|
|
21714
|
+
*/
|
|
21715
|
+
courseIds?: Array<string>;
|
|
21716
|
+
/**
|
|
21717
|
+
* Gets or sets the queryable sellable item ids.
|
|
21718
|
+
*/
|
|
21719
|
+
sellableItemIds?: Array<string>;
|
|
21720
|
+
/**
|
|
21721
|
+
* Gets or sets the queryable programme id.
|
|
21722
|
+
*/
|
|
21723
|
+
programmeId?: string;
|
|
21724
|
+
/**
|
|
21725
|
+
* Gets or sets the queryable programme ids.
|
|
21726
|
+
*/
|
|
21727
|
+
programmeIds?: Array<string>;
|
|
21728
|
+
/**
|
|
21729
|
+
* Gets or sets the page number for paged queries.
|
|
21730
|
+
*/
|
|
21731
|
+
pageNumber?: number;
|
|
21732
|
+
/**
|
|
21733
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
21734
|
+
*/
|
|
21735
|
+
take?: number;
|
|
21736
|
+
/**
|
|
21737
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
21738
|
+
*/
|
|
21739
|
+
skip?: number;
|
|
21740
|
+
/**
|
|
21741
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
21742
|
+
*/
|
|
21743
|
+
limitListRequests?: boolean;
|
|
21744
|
+
/**
|
|
21745
|
+
* Gets or sets the Tenant Id.
|
|
21746
|
+
*/
|
|
21747
|
+
tenantId?: string;
|
|
21748
|
+
/**
|
|
21749
|
+
* Gets or sets the Modifed By Id.
|
|
21750
|
+
*/
|
|
21751
|
+
modifiedById?: string;
|
|
21752
|
+
/**
|
|
21753
|
+
* Gets or sets the Modifed By Ids.
|
|
21754
|
+
*/
|
|
21755
|
+
modifiedByIds?: Array<string>;
|
|
21756
|
+
/**
|
|
21757
|
+
* Gets or sets the Date Created greater than equal to.
|
|
21758
|
+
*/
|
|
21759
|
+
dateCreatedGte?: string;
|
|
21760
|
+
/**
|
|
21761
|
+
* Gets or sets the Date Created less than equal to.
|
|
21762
|
+
*/
|
|
21763
|
+
dateCreatedLte?: string;
|
|
21764
|
+
/**
|
|
21765
|
+
* Gets or sets the queryable only is live status.
|
|
21766
|
+
*/
|
|
21767
|
+
isLive?: boolean;
|
|
21768
|
+
/**
|
|
21769
|
+
* Gets or sets the sort order direction.
|
|
21770
|
+
*/
|
|
21771
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
21772
|
+
}): CancelablePromise<Array<Image>>;
|
|
21773
|
+
}
|
|
21774
|
+
|
|
21775
|
+
/**
|
|
21776
|
+
* Represents a Image upload history within the Reach application.
|
|
21777
|
+
*/
|
|
21778
|
+
type ImageUploadHistory = {
|
|
21779
|
+
/**
|
|
21780
|
+
* Gets or sets the entities Id.
|
|
21781
|
+
*/
|
|
21782
|
+
id?: string;
|
|
21783
|
+
/**
|
|
21784
|
+
* Gets or sets the tenant Id.
|
|
21785
|
+
*/
|
|
21786
|
+
tenantId: string;
|
|
21787
|
+
/**
|
|
21788
|
+
* Gets or sets the created date of this entity.
|
|
21789
|
+
*/
|
|
21790
|
+
dateCreated: string;
|
|
21791
|
+
/**
|
|
21792
|
+
* Gets or sets the last modified date of this entity.
|
|
21793
|
+
*/
|
|
21794
|
+
dateModified: string;
|
|
21795
|
+
/**
|
|
21796
|
+
* Gets or sets the modified by Id.
|
|
21797
|
+
*/
|
|
21798
|
+
modifiedById?: string | null;
|
|
21799
|
+
/**
|
|
21800
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
21801
|
+
*/
|
|
21802
|
+
isLive: boolean;
|
|
21803
|
+
/**
|
|
21804
|
+
* Gets or sets the user id.
|
|
21805
|
+
*/
|
|
21806
|
+
userId?: string;
|
|
21807
|
+
/**
|
|
21808
|
+
* Gets or sets the images url.
|
|
21809
|
+
*/
|
|
21810
|
+
imageUrl?: string | null;
|
|
21811
|
+
};
|
|
21812
|
+
|
|
21813
|
+
type ImageUploadHistoryPage = {
|
|
21814
|
+
pagination: Pagination;
|
|
21815
|
+
readonly items: Array<ImageUploadHistory>;
|
|
21816
|
+
};
|
|
21817
|
+
|
|
21818
|
+
/**
|
|
21819
|
+
* Post model for image updates.
|
|
21820
|
+
*/
|
|
21821
|
+
type ImageUploadHistoryPatch = {
|
|
21822
|
+
/**
|
|
21823
|
+
* Gets or sets the tenant Id.
|
|
21824
|
+
*/
|
|
21825
|
+
tenantId: string;
|
|
21826
|
+
/**
|
|
21827
|
+
* Gets or sets the Id.
|
|
21828
|
+
*/
|
|
21829
|
+
id: string;
|
|
21830
|
+
};
|
|
21831
|
+
|
|
21832
|
+
/**
|
|
21833
|
+
* Post model for image inserts.
|
|
21834
|
+
*/
|
|
21835
|
+
type ImageUploadHistoryPost = {
|
|
21836
|
+
/**
|
|
21837
|
+
* Gets or sets the tenant Id.
|
|
21838
|
+
*/
|
|
21839
|
+
tenantId: string;
|
|
21840
|
+
};
|
|
21841
|
+
|
|
21842
|
+
declare class ImageUploadHistoryService {
|
|
21843
|
+
readonly httpRequest: BaseHttpRequest;
|
|
21844
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
21845
|
+
/**
|
|
21846
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
21847
|
+
* @returns ImageUploadHistory OK
|
|
21848
|
+
* @throws ApiError
|
|
21849
|
+
*/
|
|
21850
|
+
post({ requestBody, }: {
|
|
21851
|
+
/**
|
|
21852
|
+
* The <typeparamref name="TObject" /> model.
|
|
21853
|
+
*/
|
|
21854
|
+
requestBody?: ImageUploadHistoryPost;
|
|
21855
|
+
}): CancelablePromise<ImageUploadHistory>;
|
|
21856
|
+
/**
|
|
21857
|
+
* Patches the resource.
|
|
21858
|
+
* @returns ImageUploadHistory OK
|
|
21859
|
+
* @throws ApiError
|
|
21860
|
+
*/
|
|
21861
|
+
patch({ requestBody, }: {
|
|
21862
|
+
/**
|
|
21863
|
+
* The <typeparamref name="TObject" /> model.
|
|
21864
|
+
*/
|
|
21865
|
+
requestBody?: ImageUploadHistoryPatch;
|
|
21866
|
+
}): CancelablePromise<ImageUploadHistory>;
|
|
21867
|
+
/**
|
|
21868
|
+
* Inserts a list of resources.
|
|
21869
|
+
* @returns ImageUploadHistory OK
|
|
21870
|
+
* @throws ApiError
|
|
21871
|
+
*/
|
|
21872
|
+
postList({ requestBody, }: {
|
|
21873
|
+
/**
|
|
21874
|
+
* The list of <typeparamref name="TObject" />.
|
|
21875
|
+
*/
|
|
21876
|
+
requestBody?: Array<ImageUploadHistoryPost>;
|
|
21877
|
+
}): CancelablePromise<Array<ImageUploadHistory>>;
|
|
21878
|
+
/**
|
|
21879
|
+
* Patches the resource.
|
|
21880
|
+
* @returns ImageUploadHistory OK
|
|
21881
|
+
* @throws ApiError
|
|
21882
|
+
*/
|
|
21883
|
+
patchWithReferences({ requestBody, }: {
|
|
21884
|
+
/**
|
|
21885
|
+
* The <typeparamref name="TObject" /> model.
|
|
21886
|
+
*/
|
|
21887
|
+
requestBody?: ImageUploadHistoryPatch;
|
|
21888
|
+
}): CancelablePromise<ImageUploadHistory>;
|
|
21889
|
+
/**
|
|
21890
|
+
* Deletes the resource.
|
|
21891
|
+
* @returns any OK
|
|
21892
|
+
* @throws ApiError
|
|
21893
|
+
*/
|
|
21894
|
+
deleteByObject({ requestBody, }: {
|
|
21895
|
+
/**
|
|
21896
|
+
* The <typeparamref name="TObject" /> model.
|
|
21897
|
+
*/
|
|
21898
|
+
requestBody?: ImageUploadHistory;
|
|
21899
|
+
}): CancelablePromise<any>;
|
|
21900
|
+
/**
|
|
21901
|
+
* Gets a list of resources.
|
|
21902
|
+
* @returns ImageUploadHistoryPage OK
|
|
21903
|
+
* @throws ApiError
|
|
21904
|
+
*/
|
|
21905
|
+
getPage({ userId, imageUrl, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21906
|
+
/**
|
|
21907
|
+
* Gets or sets the queryable user id.
|
|
21908
|
+
*/
|
|
21909
|
+
userId?: string;
|
|
21910
|
+
/**
|
|
21911
|
+
* Gets or sets the queryable image url.
|
|
21912
|
+
*/
|
|
21913
|
+
imageUrl?: string;
|
|
21914
|
+
/**
|
|
21915
|
+
* Gets or sets the page number for paged queries.
|
|
21916
|
+
*/
|
|
21917
|
+
pageNumber?: number;
|
|
21918
|
+
/**
|
|
21919
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
21920
|
+
*/
|
|
21921
|
+
take?: number;
|
|
21922
|
+
/**
|
|
21923
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
21924
|
+
*/
|
|
21925
|
+
skip?: number;
|
|
21926
|
+
/**
|
|
21927
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
21928
|
+
*/
|
|
21929
|
+
limitListRequests?: boolean;
|
|
21930
|
+
/**
|
|
21931
|
+
* Gets or sets the Tenant Id.
|
|
21932
|
+
*/
|
|
21933
|
+
tenantId?: string;
|
|
21934
|
+
/**
|
|
21935
|
+
* Gets or sets the Modifed By Id.
|
|
21936
|
+
*/
|
|
21937
|
+
modifiedById?: string;
|
|
21938
|
+
/**
|
|
21939
|
+
* Gets or sets the Modifed By Ids.
|
|
21940
|
+
*/
|
|
21941
|
+
modifiedByIds?: Array<string>;
|
|
21942
|
+
/**
|
|
21943
|
+
* Gets or sets the Date Created greater than equal to.
|
|
21944
|
+
*/
|
|
21945
|
+
dateCreatedGte?: string;
|
|
21946
|
+
/**
|
|
21947
|
+
* Gets or sets the Date Created less than equal to.
|
|
21948
|
+
*/
|
|
21949
|
+
dateCreatedLte?: string;
|
|
21950
|
+
/**
|
|
21951
|
+
* Gets or sets the queryable only is live status.
|
|
21952
|
+
*/
|
|
21953
|
+
isLive?: boolean;
|
|
21954
|
+
/**
|
|
21955
|
+
* Gets or sets the sort order direction.
|
|
21956
|
+
*/
|
|
21957
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
21958
|
+
}): CancelablePromise<ImageUploadHistoryPage>;
|
|
21959
|
+
/**
|
|
21960
|
+
* Deletes the resource.
|
|
21961
|
+
* @returns any OK
|
|
21962
|
+
* @throws ApiError
|
|
21963
|
+
*/
|
|
21964
|
+
deleteById({ id, }: {
|
|
21965
|
+
/**
|
|
21966
|
+
* The <typeparamref name="TObject" /> id.
|
|
21967
|
+
*/
|
|
21968
|
+
id: string;
|
|
21969
|
+
}): CancelablePromise<any>;
|
|
21970
|
+
/**
|
|
21971
|
+
* Gets the resource by its Id.
|
|
21972
|
+
* @returns ImageUploadHistory OK
|
|
21973
|
+
* @throws ApiError
|
|
21974
|
+
*/
|
|
21975
|
+
getObject({ id, }: {
|
|
21976
|
+
/**
|
|
21977
|
+
* The <typeparamref name="TObject" /> id.
|
|
21978
|
+
*/
|
|
21979
|
+
id: string;
|
|
21980
|
+
}): CancelablePromise<ImageUploadHistory>;
|
|
21981
|
+
/**
|
|
21982
|
+
* Returns a value indicating whether the resource is deletable.
|
|
21983
|
+
* @returns boolean OK
|
|
21984
|
+
* @throws ApiError
|
|
21985
|
+
*/
|
|
21986
|
+
canDelete({ id, }: {
|
|
21987
|
+
/**
|
|
21988
|
+
* The <typeparamref name="TObject" /> id.
|
|
21989
|
+
*/
|
|
21990
|
+
id: string;
|
|
21991
|
+
}): CancelablePromise<boolean>;
|
|
21992
|
+
/**
|
|
21993
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
21994
|
+
* @returns boolean OK
|
|
21995
|
+
* @throws ApiError
|
|
21996
|
+
*/
|
|
21997
|
+
exists({ userId, imageUrl, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
21998
|
+
/**
|
|
21999
|
+
* Gets or sets the queryable user id.
|
|
22000
|
+
*/
|
|
22001
|
+
userId?: string;
|
|
22002
|
+
/**
|
|
22003
|
+
* Gets or sets the queryable image url.
|
|
22004
|
+
*/
|
|
22005
|
+
imageUrl?: string;
|
|
22006
|
+
/**
|
|
22007
|
+
* Gets or sets the page number for paged queries.
|
|
22008
|
+
*/
|
|
22009
|
+
pageNumber?: number;
|
|
22010
|
+
/**
|
|
22011
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
22012
|
+
*/
|
|
22013
|
+
take?: number;
|
|
22014
|
+
/**
|
|
22015
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
22016
|
+
*/
|
|
22017
|
+
skip?: number;
|
|
22018
|
+
/**
|
|
22019
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
22020
|
+
*/
|
|
22021
|
+
limitListRequests?: boolean;
|
|
22022
|
+
/**
|
|
22023
|
+
* Gets or sets the Tenant Id.
|
|
22024
|
+
*/
|
|
22025
|
+
tenantId?: string;
|
|
22026
|
+
/**
|
|
22027
|
+
* Gets or sets the Modifed By Id.
|
|
22028
|
+
*/
|
|
22029
|
+
modifiedById?: string;
|
|
22030
|
+
/**
|
|
22031
|
+
* Gets or sets the Modifed By Ids.
|
|
22032
|
+
*/
|
|
22033
|
+
modifiedByIds?: Array<string>;
|
|
22034
|
+
/**
|
|
22035
|
+
* Gets or sets the Date Created greater than equal to.
|
|
22036
|
+
*/
|
|
22037
|
+
dateCreatedGte?: string;
|
|
22038
|
+
/**
|
|
22039
|
+
* Gets or sets the Date Created less than equal to.
|
|
22040
|
+
*/
|
|
22041
|
+
dateCreatedLte?: string;
|
|
22042
|
+
/**
|
|
22043
|
+
* Gets or sets the queryable only is live status.
|
|
22044
|
+
*/
|
|
22045
|
+
isLive?: boolean;
|
|
22046
|
+
/**
|
|
22047
|
+
* Gets or sets the sort order direction.
|
|
22048
|
+
*/
|
|
22049
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
22050
|
+
}): CancelablePromise<boolean>;
|
|
22051
|
+
/**
|
|
22052
|
+
* Returns the number of results in the database given the provided search params.
|
|
22053
|
+
* @returns number OK
|
|
22054
|
+
* @throws ApiError
|
|
22055
|
+
*/
|
|
22056
|
+
count({ userId, imageUrl, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22057
|
+
/**
|
|
22058
|
+
* Gets or sets the queryable user id.
|
|
22059
|
+
*/
|
|
22060
|
+
userId?: string;
|
|
22061
|
+
/**
|
|
22062
|
+
* Gets or sets the queryable image url.
|
|
22063
|
+
*/
|
|
22064
|
+
imageUrl?: string;
|
|
22065
|
+
/**
|
|
22066
|
+
* Gets or sets the page number for paged queries.
|
|
22067
|
+
*/
|
|
22068
|
+
pageNumber?: number;
|
|
22069
|
+
/**
|
|
22070
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
22071
|
+
*/
|
|
22072
|
+
take?: number;
|
|
22073
|
+
/**
|
|
22074
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
22075
|
+
*/
|
|
22076
|
+
skip?: number;
|
|
22077
|
+
/**
|
|
22078
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
22079
|
+
*/
|
|
22080
|
+
limitListRequests?: boolean;
|
|
22081
|
+
/**
|
|
22082
|
+
* Gets or sets the Tenant Id.
|
|
22083
|
+
*/
|
|
22084
|
+
tenantId?: string;
|
|
22085
|
+
/**
|
|
22086
|
+
* Gets or sets the Modifed By Id.
|
|
22087
|
+
*/
|
|
22088
|
+
modifiedById?: string;
|
|
22089
|
+
/**
|
|
22090
|
+
* Gets or sets the Modifed By Ids.
|
|
22091
|
+
*/
|
|
22092
|
+
modifiedByIds?: Array<string>;
|
|
22093
|
+
/**
|
|
22094
|
+
* Gets or sets the Date Created greater than equal to.
|
|
22095
|
+
*/
|
|
22096
|
+
dateCreatedGte?: string;
|
|
22097
|
+
/**
|
|
22098
|
+
* Gets or sets the Date Created less than equal to.
|
|
22099
|
+
*/
|
|
22100
|
+
dateCreatedLte?: string;
|
|
22101
|
+
/**
|
|
22102
|
+
* Gets or sets the queryable only is live status.
|
|
22103
|
+
*/
|
|
22104
|
+
isLive?: boolean;
|
|
22105
|
+
/**
|
|
22106
|
+
* Gets or sets the sort order direction.
|
|
22107
|
+
*/
|
|
22108
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
22109
|
+
}): CancelablePromise<number>;
|
|
20475
22110
|
/**
|
|
20476
|
-
* Gets a list of resources.
|
|
20477
|
-
* @returns
|
|
22111
|
+
* Gets a list of resources unpaged and without references.
|
|
22112
|
+
* @returns ImageUploadHistory OK
|
|
20478
22113
|
* @throws ApiError
|
|
20479
22114
|
*/
|
|
20480
|
-
|
|
22115
|
+
getListWithoutReferences({ userId, imageUrl, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20481
22116
|
/**
|
|
20482
|
-
* Gets or sets the queryable
|
|
22117
|
+
* Gets or sets the queryable user id.
|
|
20483
22118
|
*/
|
|
20484
|
-
|
|
22119
|
+
userId?: string;
|
|
20485
22120
|
/**
|
|
20486
|
-
* Gets or sets the queryable
|
|
22121
|
+
* Gets or sets the queryable image url.
|
|
20487
22122
|
*/
|
|
20488
|
-
|
|
22123
|
+
imageUrl?: string;
|
|
20489
22124
|
/**
|
|
20490
|
-
* Gets or sets the
|
|
22125
|
+
* Gets or sets the page number for paged queries.
|
|
20491
22126
|
*/
|
|
20492
|
-
|
|
22127
|
+
pageNumber?: number;
|
|
20493
22128
|
/**
|
|
20494
|
-
* Gets or sets the
|
|
22129
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
20495
22130
|
*/
|
|
20496
|
-
|
|
22131
|
+
take?: number;
|
|
20497
22132
|
/**
|
|
20498
|
-
* Gets or sets
|
|
22133
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
20499
22134
|
*/
|
|
20500
|
-
|
|
22135
|
+
skip?: number;
|
|
20501
22136
|
/**
|
|
20502
|
-
* Gets or sets the
|
|
22137
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
20503
22138
|
*/
|
|
20504
|
-
|
|
22139
|
+
limitListRequests?: boolean;
|
|
20505
22140
|
/**
|
|
20506
|
-
* Gets or sets the
|
|
22141
|
+
* Gets or sets the Tenant Id.
|
|
20507
22142
|
*/
|
|
20508
|
-
|
|
22143
|
+
tenantId?: string;
|
|
20509
22144
|
/**
|
|
20510
|
-
* Gets or sets the
|
|
22145
|
+
* Gets or sets the Modifed By Id.
|
|
20511
22146
|
*/
|
|
20512
|
-
|
|
22147
|
+
modifiedById?: string;
|
|
20513
22148
|
/**
|
|
20514
|
-
* Gets or sets the
|
|
22149
|
+
* Gets or sets the Modifed By Ids.
|
|
20515
22150
|
*/
|
|
20516
|
-
|
|
22151
|
+
modifiedByIds?: Array<string>;
|
|
20517
22152
|
/**
|
|
20518
|
-
* Gets or sets the
|
|
22153
|
+
* Gets or sets the Date Created greater than equal to.
|
|
20519
22154
|
*/
|
|
20520
|
-
|
|
22155
|
+
dateCreatedGte?: string;
|
|
20521
22156
|
/**
|
|
20522
|
-
* Gets or sets the
|
|
22157
|
+
* Gets or sets the Date Created less than equal to.
|
|
20523
22158
|
*/
|
|
20524
|
-
|
|
22159
|
+
dateCreatedLte?: string;
|
|
22160
|
+
/**
|
|
22161
|
+
* Gets or sets the queryable only is live status.
|
|
22162
|
+
*/
|
|
22163
|
+
isLive?: boolean;
|
|
22164
|
+
/**
|
|
22165
|
+
* Gets or sets the sort order direction.
|
|
22166
|
+
*/
|
|
22167
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
22168
|
+
}): CancelablePromise<Array<ImageUploadHistory>>;
|
|
22169
|
+
/**
|
|
22170
|
+
* Gets a list of resources.
|
|
22171
|
+
* @returns ImageUploadHistory OK
|
|
22172
|
+
* @throws ApiError
|
|
22173
|
+
*/
|
|
22174
|
+
getListIdName({ userId, imageUrl, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22175
|
+
/**
|
|
22176
|
+
* Gets or sets the queryable user id.
|
|
22177
|
+
*/
|
|
22178
|
+
userId?: string;
|
|
22179
|
+
/**
|
|
22180
|
+
* Gets or sets the queryable image url.
|
|
22181
|
+
*/
|
|
22182
|
+
imageUrl?: string;
|
|
20525
22183
|
/**
|
|
20526
22184
|
* Gets or sets the page number for paged queries.
|
|
20527
22185
|
*/
|
|
@@ -20566,13 +22224,13 @@ declare class ImagesService {
|
|
|
20566
22224
|
* Gets or sets the sort order direction.
|
|
20567
22225
|
*/
|
|
20568
22226
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
20569
|
-
}): CancelablePromise<Array<
|
|
22227
|
+
}): CancelablePromise<Array<ImageUploadHistory>>;
|
|
20570
22228
|
}
|
|
20571
22229
|
|
|
20572
22230
|
/**
|
|
20573
|
-
*
|
|
22231
|
+
* Per-tenant Codelocks integration settings. The shared Codelocks API key is not stored here — it lives in Reach API configuration.
|
|
20574
22232
|
*/
|
|
20575
|
-
type
|
|
22233
|
+
type IntegrationCodelocksSettings = {
|
|
20576
22234
|
/**
|
|
20577
22235
|
* Gets or sets the entities Id.
|
|
20578
22236
|
*/
|
|
@@ -20598,24 +22256,34 @@ type ImageUploadHistory = {
|
|
|
20598
22256
|
*/
|
|
20599
22257
|
isLive: boolean;
|
|
20600
22258
|
/**
|
|
20601
|
-
* Gets or sets
|
|
22259
|
+
* Gets or sets a value indicating whether NetCode generation is enabled for this tenant.
|
|
20602
22260
|
*/
|
|
20603
|
-
|
|
22261
|
+
enabled?: boolean | null;
|
|
22262
|
+
};
|
|
22263
|
+
|
|
22264
|
+
/**
|
|
22265
|
+
* Create/update payload for Codelocks integration settings (upsert from partner settings UI).
|
|
22266
|
+
*/
|
|
22267
|
+
type IntegrationCodelocksSettingsCreate = {
|
|
20604
22268
|
/**
|
|
20605
|
-
* Gets or sets the
|
|
22269
|
+
* Gets or sets the tenant Id.
|
|
20606
22270
|
*/
|
|
20607
|
-
|
|
22271
|
+
tenantId: string;
|
|
22272
|
+
/**
|
|
22273
|
+
* Gets or sets a value indicating whether the integration is enabled.
|
|
22274
|
+
*/
|
|
22275
|
+
enabled: boolean;
|
|
20608
22276
|
};
|
|
20609
22277
|
|
|
20610
|
-
type
|
|
22278
|
+
type IntegrationCodelocksSettingsPage = {
|
|
20611
22279
|
pagination: Pagination;
|
|
20612
|
-
readonly items: Array<
|
|
22280
|
+
readonly items: Array<IntegrationCodelocksSettings>;
|
|
20613
22281
|
};
|
|
20614
22282
|
|
|
20615
22283
|
/**
|
|
20616
|
-
*
|
|
22284
|
+
* Patch model for Codelocks integration settings updates.
|
|
20617
22285
|
*/
|
|
20618
|
-
type
|
|
22286
|
+
type IntegrationCodelocksSettingsPatch = {
|
|
20619
22287
|
/**
|
|
20620
22288
|
* Gets or sets the tenant Id.
|
|
20621
22289
|
*/
|
|
@@ -20624,65 +22292,84 @@ type ImageUploadHistoryPatch = {
|
|
|
20624
22292
|
* Gets or sets the Id.
|
|
20625
22293
|
*/
|
|
20626
22294
|
id: string;
|
|
22295
|
+
/**
|
|
22296
|
+
* Gets or sets a value indicating whether the integration is enabled.
|
|
22297
|
+
*/
|
|
22298
|
+
enabled?: boolean | null;
|
|
20627
22299
|
};
|
|
20628
22300
|
|
|
20629
22301
|
/**
|
|
20630
|
-
* Post model for
|
|
22302
|
+
* Post model for Codelocks integration settings inserts.
|
|
20631
22303
|
*/
|
|
20632
|
-
type
|
|
22304
|
+
type IntegrationCodelocksSettingsPost = {
|
|
20633
22305
|
/**
|
|
20634
22306
|
* Gets or sets the tenant Id.
|
|
20635
22307
|
*/
|
|
20636
22308
|
tenantId: string;
|
|
22309
|
+
/**
|
|
22310
|
+
* Gets or sets a value indicating whether the integration is enabled.
|
|
22311
|
+
*/
|
|
22312
|
+
enabled?: boolean | null;
|
|
20637
22313
|
};
|
|
20638
22314
|
|
|
20639
|
-
declare class
|
|
22315
|
+
declare class IntegrationCodelocksSettingsService {
|
|
20640
22316
|
readonly httpRequest: BaseHttpRequest;
|
|
20641
22317
|
constructor(httpRequest: BaseHttpRequest);
|
|
22318
|
+
/**
|
|
22319
|
+
* Creates or updates Codelocks integration settings for the tenant.
|
|
22320
|
+
* @returns IntegrationCodelocksSettings OK
|
|
22321
|
+
* @throws ApiError
|
|
22322
|
+
*/
|
|
22323
|
+
upsert({ requestBody, }: {
|
|
22324
|
+
/**
|
|
22325
|
+
* The settings payload.
|
|
22326
|
+
*/
|
|
22327
|
+
requestBody?: IntegrationCodelocksSettingsCreate;
|
|
22328
|
+
}): CancelablePromise<IntegrationCodelocksSettings>;
|
|
20642
22329
|
/**
|
|
20643
22330
|
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
20644
|
-
* @returns
|
|
22331
|
+
* @returns IntegrationCodelocksSettings OK
|
|
20645
22332
|
* @throws ApiError
|
|
20646
22333
|
*/
|
|
20647
22334
|
post({ requestBody, }: {
|
|
20648
22335
|
/**
|
|
20649
22336
|
* The <typeparamref name="TObject" /> model.
|
|
20650
22337
|
*/
|
|
20651
|
-
requestBody?:
|
|
20652
|
-
}): CancelablePromise<
|
|
22338
|
+
requestBody?: IntegrationCodelocksSettingsPost;
|
|
22339
|
+
}): CancelablePromise<IntegrationCodelocksSettings>;
|
|
20653
22340
|
/**
|
|
20654
22341
|
* Patches the resource.
|
|
20655
|
-
* @returns
|
|
22342
|
+
* @returns IntegrationCodelocksSettings OK
|
|
20656
22343
|
* @throws ApiError
|
|
20657
22344
|
*/
|
|
20658
22345
|
patch({ requestBody, }: {
|
|
20659
22346
|
/**
|
|
20660
22347
|
* The <typeparamref name="TObject" /> model.
|
|
20661
22348
|
*/
|
|
20662
|
-
requestBody?:
|
|
20663
|
-
}): CancelablePromise<
|
|
22349
|
+
requestBody?: IntegrationCodelocksSettingsPatch;
|
|
22350
|
+
}): CancelablePromise<IntegrationCodelocksSettings>;
|
|
20664
22351
|
/**
|
|
20665
22352
|
* Inserts a list of resources.
|
|
20666
|
-
* @returns
|
|
22353
|
+
* @returns IntegrationCodelocksSettings OK
|
|
20667
22354
|
* @throws ApiError
|
|
20668
22355
|
*/
|
|
20669
22356
|
postList({ requestBody, }: {
|
|
20670
22357
|
/**
|
|
20671
22358
|
* The list of <typeparamref name="TObject" />.
|
|
20672
22359
|
*/
|
|
20673
|
-
requestBody?: Array<
|
|
20674
|
-
}): CancelablePromise<Array<
|
|
22360
|
+
requestBody?: Array<IntegrationCodelocksSettingsPost>;
|
|
22361
|
+
}): CancelablePromise<Array<IntegrationCodelocksSettings>>;
|
|
20675
22362
|
/**
|
|
20676
22363
|
* Patches the resource.
|
|
20677
|
-
* @returns
|
|
22364
|
+
* @returns IntegrationCodelocksSettings OK
|
|
20678
22365
|
* @throws ApiError
|
|
20679
22366
|
*/
|
|
20680
22367
|
patchWithReferences({ requestBody, }: {
|
|
20681
22368
|
/**
|
|
20682
22369
|
* The <typeparamref name="TObject" /> model.
|
|
20683
22370
|
*/
|
|
20684
|
-
requestBody?:
|
|
20685
|
-
}): CancelablePromise<
|
|
22371
|
+
requestBody?: IntegrationCodelocksSettingsPatch;
|
|
22372
|
+
}): CancelablePromise<IntegrationCodelocksSettings>;
|
|
20686
22373
|
/**
|
|
20687
22374
|
* Deletes the resource.
|
|
20688
22375
|
* @returns any OK
|
|
@@ -20692,22 +22379,14 @@ declare class ImageUploadHistoryService {
|
|
|
20692
22379
|
/**
|
|
20693
22380
|
* The <typeparamref name="TObject" /> model.
|
|
20694
22381
|
*/
|
|
20695
|
-
requestBody?:
|
|
22382
|
+
requestBody?: IntegrationCodelocksSettings;
|
|
20696
22383
|
}): CancelablePromise<any>;
|
|
20697
22384
|
/**
|
|
20698
22385
|
* Gets a list of resources.
|
|
20699
|
-
* @returns
|
|
22386
|
+
* @returns IntegrationCodelocksSettingsPage OK
|
|
20700
22387
|
* @throws ApiError
|
|
20701
22388
|
*/
|
|
20702
|
-
getPage({
|
|
20703
|
-
/**
|
|
20704
|
-
* Gets or sets the queryable user id.
|
|
20705
|
-
*/
|
|
20706
|
-
userId?: string;
|
|
20707
|
-
/**
|
|
20708
|
-
* Gets or sets the queryable image url.
|
|
20709
|
-
*/
|
|
20710
|
-
imageUrl?: string;
|
|
22389
|
+
getPage({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20711
22390
|
/**
|
|
20712
22391
|
* Gets or sets the page number for paged queries.
|
|
20713
22392
|
*/
|
|
@@ -20752,7 +22431,7 @@ declare class ImageUploadHistoryService {
|
|
|
20752
22431
|
* Gets or sets the sort order direction.
|
|
20753
22432
|
*/
|
|
20754
22433
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
20755
|
-
}): CancelablePromise<
|
|
22434
|
+
}): CancelablePromise<IntegrationCodelocksSettingsPage>;
|
|
20756
22435
|
/**
|
|
20757
22436
|
* Deletes the resource.
|
|
20758
22437
|
* @returns any OK
|
|
@@ -20766,7 +22445,7 @@ declare class ImageUploadHistoryService {
|
|
|
20766
22445
|
}): CancelablePromise<any>;
|
|
20767
22446
|
/**
|
|
20768
22447
|
* Gets the resource by its Id.
|
|
20769
|
-
* @returns
|
|
22448
|
+
* @returns IntegrationCodelocksSettings OK
|
|
20770
22449
|
* @throws ApiError
|
|
20771
22450
|
*/
|
|
20772
22451
|
getObject({ id, }: {
|
|
@@ -20774,7 +22453,7 @@ declare class ImageUploadHistoryService {
|
|
|
20774
22453
|
* The <typeparamref name="TObject" /> id.
|
|
20775
22454
|
*/
|
|
20776
22455
|
id: string;
|
|
20777
|
-
}): CancelablePromise<
|
|
22456
|
+
}): CancelablePromise<IntegrationCodelocksSettings>;
|
|
20778
22457
|
/**
|
|
20779
22458
|
* Returns a value indicating whether the resource is deletable.
|
|
20780
22459
|
* @returns boolean OK
|
|
@@ -20791,15 +22470,7 @@ declare class ImageUploadHistoryService {
|
|
|
20791
22470
|
* @returns boolean OK
|
|
20792
22471
|
* @throws ApiError
|
|
20793
22472
|
*/
|
|
20794
|
-
exists({
|
|
20795
|
-
/**
|
|
20796
|
-
* Gets or sets the queryable user id.
|
|
20797
|
-
*/
|
|
20798
|
-
userId?: string;
|
|
20799
|
-
/**
|
|
20800
|
-
* Gets or sets the queryable image url.
|
|
20801
|
-
*/
|
|
20802
|
-
imageUrl?: string;
|
|
22473
|
+
exists({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20803
22474
|
/**
|
|
20804
22475
|
* Gets or sets the page number for paged queries.
|
|
20805
22476
|
*/
|
|
@@ -20850,15 +22521,7 @@ declare class ImageUploadHistoryService {
|
|
|
20850
22521
|
* @returns number OK
|
|
20851
22522
|
* @throws ApiError
|
|
20852
22523
|
*/
|
|
20853
|
-
count({
|
|
20854
|
-
/**
|
|
20855
|
-
* Gets or sets the queryable user id.
|
|
20856
|
-
*/
|
|
20857
|
-
userId?: string;
|
|
20858
|
-
/**
|
|
20859
|
-
* Gets or sets the queryable image url.
|
|
20860
|
-
*/
|
|
20861
|
-
imageUrl?: string;
|
|
22524
|
+
count({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20862
22525
|
/**
|
|
20863
22526
|
* Gets or sets the page number for paged queries.
|
|
20864
22527
|
*/
|
|
@@ -20906,18 +22569,10 @@ declare class ImageUploadHistoryService {
|
|
|
20906
22569
|
}): CancelablePromise<number>;
|
|
20907
22570
|
/**
|
|
20908
22571
|
* Gets a list of resources unpaged and without references.
|
|
20909
|
-
* @returns
|
|
22572
|
+
* @returns IntegrationCodelocksSettings OK
|
|
20910
22573
|
* @throws ApiError
|
|
20911
22574
|
*/
|
|
20912
|
-
getListWithoutReferences({
|
|
20913
|
-
/**
|
|
20914
|
-
* Gets or sets the queryable user id.
|
|
20915
|
-
*/
|
|
20916
|
-
userId?: string;
|
|
20917
|
-
/**
|
|
20918
|
-
* Gets or sets the queryable image url.
|
|
20919
|
-
*/
|
|
20920
|
-
imageUrl?: string;
|
|
22575
|
+
getListWithoutReferences({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20921
22576
|
/**
|
|
20922
22577
|
* Gets or sets the page number for paged queries.
|
|
20923
22578
|
*/
|
|
@@ -20962,21 +22617,13 @@ declare class ImageUploadHistoryService {
|
|
|
20962
22617
|
* Gets or sets the sort order direction.
|
|
20963
22618
|
*/
|
|
20964
22619
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
20965
|
-
}): CancelablePromise<Array<
|
|
22620
|
+
}): CancelablePromise<Array<IntegrationCodelocksSettings>>;
|
|
20966
22621
|
/**
|
|
20967
22622
|
* Gets a list of resources.
|
|
20968
|
-
* @returns
|
|
22623
|
+
* @returns IntegrationCodelocksSettings OK
|
|
20969
22624
|
* @throws ApiError
|
|
20970
22625
|
*/
|
|
20971
|
-
getListIdName({
|
|
20972
|
-
/**
|
|
20973
|
-
* Gets or sets the queryable user id.
|
|
20974
|
-
*/
|
|
20975
|
-
userId?: string;
|
|
20976
|
-
/**
|
|
20977
|
-
* Gets or sets the queryable image url.
|
|
20978
|
-
*/
|
|
20979
|
-
imageUrl?: string;
|
|
22626
|
+
getListIdName({ pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
20980
22627
|
/**
|
|
20981
22628
|
* Gets or sets the page number for paged queries.
|
|
20982
22629
|
*/
|
|
@@ -21021,7 +22668,7 @@ declare class ImageUploadHistoryService {
|
|
|
21021
22668
|
* Gets or sets the sort order direction.
|
|
21022
22669
|
*/
|
|
21023
22670
|
sortOrderDirection?: SearchSortOrderDirection;
|
|
21024
|
-
}): CancelablePromise<Array<
|
|
22671
|
+
}): CancelablePromise<Array<IntegrationCodelocksSettings>>;
|
|
21025
22672
|
}
|
|
21026
22673
|
|
|
21027
22674
|
/**
|
|
@@ -22413,7 +24060,8 @@ declare class IntegrationDotDigitalSettingsService {
|
|
|
22413
24060
|
* Controls the integration type.
|
|
22414
24061
|
*/
|
|
22415
24062
|
declare enum IntegrationType {
|
|
22416
|
-
DOTDIGITAL_UPSERT_CONTACT = "DotdigitalUpsertContact"
|
|
24063
|
+
DOTDIGITAL_UPSERT_CONTACT = "DotdigitalUpsertContact",
|
|
24064
|
+
CODELOCKS_GENERATE_NET_CODE = "CodelocksGenerateNetCode"
|
|
22417
24065
|
}
|
|
22418
24066
|
|
|
22419
24067
|
/**
|
|
@@ -22465,6 +24113,10 @@ type IntegrationQueue = {
|
|
|
22465
24113
|
* Gets or sets the last error message if any.
|
|
22466
24114
|
*/
|
|
22467
24115
|
lastError?: string | null;
|
|
24116
|
+
/**
|
|
24117
|
+
* Gets or sets the earliest UTC instant when this queue item may be processed (e.g. NetCode T−60m).
|
|
24118
|
+
*/
|
|
24119
|
+
processAfterUtc?: string | null;
|
|
22468
24120
|
};
|
|
22469
24121
|
|
|
22470
24122
|
type IntegrationQueuePage = {
|
|
@@ -22565,7 +24217,7 @@ declare class IntegrationQueueService {
|
|
|
22565
24217
|
* @returns IntegrationQueuePage OK
|
|
22566
24218
|
* @throws ApiError
|
|
22567
24219
|
*/
|
|
22568
|
-
getPage({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24220
|
+
getPage({ processed, errored, processAfterUtcLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22569
24221
|
/**
|
|
22570
24222
|
* Gets or sets the queryable processed status.
|
|
22571
24223
|
*/
|
|
@@ -22574,6 +24226,10 @@ declare class IntegrationQueueService {
|
|
|
22574
24226
|
* Gets or sets the queryable errored status.
|
|
22575
24227
|
*/
|
|
22576
24228
|
errored?: boolean;
|
|
24229
|
+
/**
|
|
24230
|
+
* Gets or sets the upper bound (inclusive) for `process_after_utc`; when set, rows with null `process_after_utc` or `process_after_utc` less than or equal to this instant match (worker readiness).
|
|
24231
|
+
*/
|
|
24232
|
+
processAfterUtcLte?: string;
|
|
22577
24233
|
/**
|
|
22578
24234
|
* Gets or sets the page number for paged queries.
|
|
22579
24235
|
*/
|
|
@@ -22657,7 +24313,7 @@ declare class IntegrationQueueService {
|
|
|
22657
24313
|
* @returns boolean OK
|
|
22658
24314
|
* @throws ApiError
|
|
22659
24315
|
*/
|
|
22660
|
-
exists({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24316
|
+
exists({ processed, errored, processAfterUtcLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22661
24317
|
/**
|
|
22662
24318
|
* Gets or sets the queryable processed status.
|
|
22663
24319
|
*/
|
|
@@ -22666,6 +24322,10 @@ declare class IntegrationQueueService {
|
|
|
22666
24322
|
* Gets or sets the queryable errored status.
|
|
22667
24323
|
*/
|
|
22668
24324
|
errored?: boolean;
|
|
24325
|
+
/**
|
|
24326
|
+
* Gets or sets the upper bound (inclusive) for `process_after_utc`; when set, rows with null `process_after_utc` or `process_after_utc` less than or equal to this instant match (worker readiness).
|
|
24327
|
+
*/
|
|
24328
|
+
processAfterUtcLte?: string;
|
|
22669
24329
|
/**
|
|
22670
24330
|
* Gets or sets the page number for paged queries.
|
|
22671
24331
|
*/
|
|
@@ -22716,7 +24376,7 @@ declare class IntegrationQueueService {
|
|
|
22716
24376
|
* @returns number OK
|
|
22717
24377
|
* @throws ApiError
|
|
22718
24378
|
*/
|
|
22719
|
-
count({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24379
|
+
count({ processed, errored, processAfterUtcLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22720
24380
|
/**
|
|
22721
24381
|
* Gets or sets the queryable processed status.
|
|
22722
24382
|
*/
|
|
@@ -22725,6 +24385,10 @@ declare class IntegrationQueueService {
|
|
|
22725
24385
|
* Gets or sets the queryable errored status.
|
|
22726
24386
|
*/
|
|
22727
24387
|
errored?: boolean;
|
|
24388
|
+
/**
|
|
24389
|
+
* Gets or sets the upper bound (inclusive) for `process_after_utc`; when set, rows with null `process_after_utc` or `process_after_utc` less than or equal to this instant match (worker readiness).
|
|
24390
|
+
*/
|
|
24391
|
+
processAfterUtcLte?: string;
|
|
22728
24392
|
/**
|
|
22729
24393
|
* Gets or sets the page number for paged queries.
|
|
22730
24394
|
*/
|
|
@@ -22775,7 +24439,7 @@ declare class IntegrationQueueService {
|
|
|
22775
24439
|
* @returns IntegrationQueue OK
|
|
22776
24440
|
* @throws ApiError
|
|
22777
24441
|
*/
|
|
22778
|
-
getListWithoutReferences({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24442
|
+
getListWithoutReferences({ processed, errored, processAfterUtcLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22779
24443
|
/**
|
|
22780
24444
|
* Gets or sets the queryable processed status.
|
|
22781
24445
|
*/
|
|
@@ -22784,6 +24448,10 @@ declare class IntegrationQueueService {
|
|
|
22784
24448
|
* Gets or sets the queryable errored status.
|
|
22785
24449
|
*/
|
|
22786
24450
|
errored?: boolean;
|
|
24451
|
+
/**
|
|
24452
|
+
* Gets or sets the upper bound (inclusive) for `process_after_utc`; when set, rows with null `process_after_utc` or `process_after_utc` less than or equal to this instant match (worker readiness).
|
|
24453
|
+
*/
|
|
24454
|
+
processAfterUtcLte?: string;
|
|
22787
24455
|
/**
|
|
22788
24456
|
* Gets or sets the page number for paged queries.
|
|
22789
24457
|
*/
|
|
@@ -22834,7 +24502,7 @@ declare class IntegrationQueueService {
|
|
|
22834
24502
|
* @returns IntegrationQueue OK
|
|
22835
24503
|
* @throws ApiError
|
|
22836
24504
|
*/
|
|
22837
|
-
getListIdName({ processed, errored, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
24505
|
+
getListIdName({ processed, errored, processAfterUtcLte, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
22838
24506
|
/**
|
|
22839
24507
|
* Gets or sets the queryable processed status.
|
|
22840
24508
|
*/
|
|
@@ -22843,6 +24511,10 @@ declare class IntegrationQueueService {
|
|
|
22843
24511
|
* Gets or sets the queryable errored status.
|
|
22844
24512
|
*/
|
|
22845
24513
|
errored?: boolean;
|
|
24514
|
+
/**
|
|
24515
|
+
* Gets or sets the upper bound (inclusive) for `process_after_utc`; when set, rows with null `process_after_utc` or `process_after_utc` less than or equal to this instant match (worker readiness).
|
|
24516
|
+
*/
|
|
24517
|
+
processAfterUtcLte?: string;
|
|
22846
24518
|
/**
|
|
22847
24519
|
* Gets or sets the page number for paged queries.
|
|
22848
24520
|
*/
|
|
@@ -24529,7 +26201,8 @@ declare enum NotificationType {
|
|
|
24529
26201
|
ACTIVITY_PRICE_UPDATED = "ActivityPriceUpdated",
|
|
24530
26202
|
NEW_ACTIVITY = "NewActivity",
|
|
24531
26203
|
PAYMENT_RECIEVED = "PaymentRecieved",
|
|
24532
|
-
POST_COMPLETION_SURVEY_COMPLETED = "PostCompletionSurveyCompleted"
|
|
26204
|
+
POST_COMPLETION_SURVEY_COMPLETED = "PostCompletionSurveyCompleted",
|
|
26205
|
+
CODELOCKS_ACCESS_CODE_READY = "CodelocksAccessCodeReady"
|
|
24533
26206
|
}
|
|
24534
26207
|
|
|
24535
26208
|
/**
|
|
@@ -28412,9 +30085,33 @@ type OrderItemReport = {
|
|
|
28412
30085
|
*/
|
|
28413
30086
|
offerName?: string | null;
|
|
28414
30087
|
/**
|
|
28415
|
-
* Gets or sets the
|
|
30088
|
+
* Gets or sets the unit list price before discount (per unit).
|
|
30089
|
+
*/
|
|
30090
|
+
unitPriceBeforeDiscount?: number | null;
|
|
30091
|
+
/**
|
|
30092
|
+
* Gets or sets the unit price after discount (per unit).
|
|
30093
|
+
*/
|
|
30094
|
+
unitPriceAfterDiscount?: number | null;
|
|
30095
|
+
/**
|
|
30096
|
+
* Gets or sets the order item list line total (offer unit price × quantity).
|
|
28416
30097
|
*/
|
|
28417
30098
|
orderItemValue?: number;
|
|
30099
|
+
/**
|
|
30100
|
+
* Gets or sets the line total after discount (`effective_item_price`).
|
|
30101
|
+
*/
|
|
30102
|
+
orderItemValueAfterDiscount?: number | null;
|
|
30103
|
+
/**
|
|
30104
|
+
* Gets or sets applied deal names (semicolon-separated when multiple).
|
|
30105
|
+
*/
|
|
30106
|
+
dealName?: string | null;
|
|
30107
|
+
/**
|
|
30108
|
+
* Gets or sets discount codes from applied deals (semicolon-separated when multiple).
|
|
30109
|
+
*/
|
|
30110
|
+
discountCode?: string | null;
|
|
30111
|
+
/**
|
|
30112
|
+
* Gets or sets total deal discount value allocated to this line.
|
|
30113
|
+
*/
|
|
30114
|
+
dealValue?: number | null;
|
|
28418
30115
|
/**
|
|
28419
30116
|
* Gets or sets the currency.
|
|
28420
30117
|
*/
|
|
@@ -41089,6 +42786,10 @@ type SellableItemPatch = {
|
|
|
41089
42786
|
* Gets or sets the venue id.
|
|
41090
42787
|
*/
|
|
41091
42788
|
venueId?: string | null;
|
|
42789
|
+
/**
|
|
42790
|
+
* Gets or sets the provider id.
|
|
42791
|
+
*/
|
|
42792
|
+
providerId?: string | null;
|
|
41092
42793
|
/**
|
|
41093
42794
|
* Gets or sets the activity category id.
|
|
41094
42795
|
*/
|
|
@@ -41381,7 +43082,7 @@ declare class PublicSellableItemsService {
|
|
|
41381
43082
|
* @returns SellableItemPage OK
|
|
41382
43083
|
* @throws ApiError
|
|
41383
43084
|
*/
|
|
41384
|
-
getPage({ xTenantSubdomain, ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43085
|
+
getPage({ xTenantSubdomain, ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
41385
43086
|
xTenantSubdomain?: string;
|
|
41386
43087
|
/**
|
|
41387
43088
|
* Gets or sets the queryable ids.
|
|
@@ -41391,6 +43092,10 @@ declare class PublicSellableItemsService {
|
|
|
41391
43092
|
* Gets or sets the queryable Venue Id.
|
|
41392
43093
|
*/
|
|
41393
43094
|
venueId?: string;
|
|
43095
|
+
/**
|
|
43096
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
43097
|
+
*/
|
|
43098
|
+
providerId?: string;
|
|
41394
43099
|
/**
|
|
41395
43100
|
* Gets or sets a value indicating whether return online items.
|
|
41396
43101
|
*/
|
|
@@ -41517,7 +43222,7 @@ declare class PublicSellableItemsService {
|
|
|
41517
43222
|
* @returns boolean OK
|
|
41518
43223
|
* @throws ApiError
|
|
41519
43224
|
*/
|
|
41520
|
-
exists({ xTenantSubdomain, ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
43225
|
+
exists({ xTenantSubdomain, ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
41521
43226
|
/**
|
|
41522
43227
|
* The tenants subdomain.
|
|
41523
43228
|
*/
|
|
@@ -41530,6 +43235,10 @@ declare class PublicSellableItemsService {
|
|
|
41530
43235
|
* Gets or sets the queryable Venue Id.
|
|
41531
43236
|
*/
|
|
41532
43237
|
venueId?: string;
|
|
43238
|
+
/**
|
|
43239
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
43240
|
+
*/
|
|
43241
|
+
providerId?: string;
|
|
41533
43242
|
/**
|
|
41534
43243
|
* Gets or sets a value indicating whether return online items.
|
|
41535
43244
|
*/
|
|
@@ -41751,6 +43460,10 @@ type SessionPatch = {
|
|
|
41751
43460
|
* Gets or sets optional storefront message for pre-registration.
|
|
41752
43461
|
*/
|
|
41753
43462
|
preRegistrationMessage?: string | null;
|
|
43463
|
+
/**
|
|
43464
|
+
* Gets or sets the optional registered Codelocks lock for NetCode access.
|
|
43465
|
+
*/
|
|
43466
|
+
codelocksLockId?: string | null;
|
|
41754
43467
|
emailSettings?: UpdateEmailSettings;
|
|
41755
43468
|
/**
|
|
41756
43469
|
* Gets or sets the session offers.
|
|
@@ -43388,11 +45101,11 @@ type SurveyQuestionOption = {
|
|
|
43388
45101
|
/**
|
|
43389
45102
|
* Gets or sets the survey question id.
|
|
43390
45103
|
*/
|
|
43391
|
-
surveyQuestionId
|
|
45104
|
+
surveyQuestionId: string;
|
|
43392
45105
|
/**
|
|
43393
45106
|
* Gets or sets the survey question option name.
|
|
43394
45107
|
*/
|
|
43395
|
-
name
|
|
45108
|
+
name: string;
|
|
43396
45109
|
/**
|
|
43397
45110
|
* Gets or sets the survey question option sort number.
|
|
43398
45111
|
*/
|
|
@@ -43445,15 +45158,15 @@ type SurveyQuestion = {
|
|
|
43445
45158
|
/**
|
|
43446
45159
|
* Gets or sets the survey id.
|
|
43447
45160
|
*/
|
|
43448
|
-
surveyId
|
|
45161
|
+
surveyId: string;
|
|
43449
45162
|
/**
|
|
43450
45163
|
* Gets or sets the survey question name.
|
|
43451
45164
|
*/
|
|
43452
|
-
name
|
|
45165
|
+
name: string;
|
|
43453
45166
|
/**
|
|
43454
45167
|
* Gets or sets the survey question number.
|
|
43455
45168
|
*/
|
|
43456
|
-
number
|
|
45169
|
+
number: number;
|
|
43457
45170
|
type?: SurveyQuestionType;
|
|
43458
45171
|
/**
|
|
43459
45172
|
* Gets or sets a value indicating whether the question is required.
|
|
@@ -43883,9 +45596,9 @@ type Survey = {
|
|
|
43883
45596
|
/**
|
|
43884
45597
|
* Gets or sets the survey name.
|
|
43885
45598
|
*/
|
|
43886
|
-
name
|
|
43887
|
-
type
|
|
43888
|
-
target
|
|
45599
|
+
name: string;
|
|
45600
|
+
type: SurveyType;
|
|
45601
|
+
target: SurveyQuestionsTarget;
|
|
43889
45602
|
/**
|
|
43890
45603
|
* Gets or sets a value indicating whether the survey is active.
|
|
43891
45604
|
*/
|
|
@@ -50013,7 +51726,7 @@ declare class SellableItemsService {
|
|
|
50013
51726
|
* @returns SellableItemPage OK
|
|
50014
51727
|
* @throws ApiError
|
|
50015
51728
|
*/
|
|
50016
|
-
getPage({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
51729
|
+
getPage({ ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
50017
51730
|
/**
|
|
50018
51731
|
* Gets or sets the queryable ids.
|
|
50019
51732
|
*/
|
|
@@ -50022,6 +51735,10 @@ declare class SellableItemsService {
|
|
|
50022
51735
|
* Gets or sets the queryable Venue Id.
|
|
50023
51736
|
*/
|
|
50024
51737
|
venueId?: string;
|
|
51738
|
+
/**
|
|
51739
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
51740
|
+
*/
|
|
51741
|
+
providerId?: string;
|
|
50025
51742
|
/**
|
|
50026
51743
|
* Gets or sets a value indicating whether return online items.
|
|
50027
51744
|
*/
|
|
@@ -50121,7 +51838,7 @@ declare class SellableItemsService {
|
|
|
50121
51838
|
* @returns boolean OK
|
|
50122
51839
|
* @throws ApiError
|
|
50123
51840
|
*/
|
|
50124
|
-
exists({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
51841
|
+
exists({ ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
50125
51842
|
/**
|
|
50126
51843
|
* Gets or sets the queryable ids.
|
|
50127
51844
|
*/
|
|
@@ -50130,6 +51847,10 @@ declare class SellableItemsService {
|
|
|
50130
51847
|
* Gets or sets the queryable Venue Id.
|
|
50131
51848
|
*/
|
|
50132
51849
|
venueId?: string;
|
|
51850
|
+
/**
|
|
51851
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
51852
|
+
*/
|
|
51853
|
+
providerId?: string;
|
|
50133
51854
|
/**
|
|
50134
51855
|
* Gets or sets a value indicating whether return online items.
|
|
50135
51856
|
*/
|
|
@@ -50196,7 +51917,7 @@ declare class SellableItemsService {
|
|
|
50196
51917
|
* @returns number OK
|
|
50197
51918
|
* @throws ApiError
|
|
50198
51919
|
*/
|
|
50199
|
-
count({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
51920
|
+
count({ ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
50200
51921
|
/**
|
|
50201
51922
|
* Gets or sets the queryable ids.
|
|
50202
51923
|
*/
|
|
@@ -50205,6 +51926,10 @@ declare class SellableItemsService {
|
|
|
50205
51926
|
* Gets or sets the queryable Venue Id.
|
|
50206
51927
|
*/
|
|
50207
51928
|
venueId?: string;
|
|
51929
|
+
/**
|
|
51930
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
51931
|
+
*/
|
|
51932
|
+
providerId?: string;
|
|
50208
51933
|
/**
|
|
50209
51934
|
* Gets or sets a value indicating whether return online items.
|
|
50210
51935
|
*/
|
|
@@ -50271,7 +51996,7 @@ declare class SellableItemsService {
|
|
|
50271
51996
|
* @returns SellableItem OK
|
|
50272
51997
|
* @throws ApiError
|
|
50273
51998
|
*/
|
|
50274
|
-
getListWithoutReferences({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
51999
|
+
getListWithoutReferences({ ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
50275
52000
|
/**
|
|
50276
52001
|
* Gets or sets the queryable ids.
|
|
50277
52002
|
*/
|
|
@@ -50280,6 +52005,10 @@ declare class SellableItemsService {
|
|
|
50280
52005
|
* Gets or sets the queryable Venue Id.
|
|
50281
52006
|
*/
|
|
50282
52007
|
venueId?: string;
|
|
52008
|
+
/**
|
|
52009
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
52010
|
+
*/
|
|
52011
|
+
providerId?: string;
|
|
50283
52012
|
/**
|
|
50284
52013
|
* Gets or sets a value indicating whether return online items.
|
|
50285
52014
|
*/
|
|
@@ -50346,7 +52075,7 @@ declare class SellableItemsService {
|
|
|
50346
52075
|
* @returns SellableItem OK
|
|
50347
52076
|
* @throws ApiError
|
|
50348
52077
|
*/
|
|
50349
|
-
getListIdName({ ids, venueId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
52078
|
+
getListIdName({ ids, venueId, providerId, online, archived, deleted, dashboardRequest, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
50350
52079
|
/**
|
|
50351
52080
|
* Gets or sets the queryable ids.
|
|
50352
52081
|
*/
|
|
@@ -50355,6 +52084,10 @@ declare class SellableItemsService {
|
|
|
50355
52084
|
* Gets or sets the queryable Venue Id.
|
|
50356
52085
|
*/
|
|
50357
52086
|
venueId?: string;
|
|
52087
|
+
/**
|
|
52088
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
52089
|
+
*/
|
|
52090
|
+
providerId?: string;
|
|
50358
52091
|
/**
|
|
50359
52092
|
* Gets or sets a value indicating whether return online items.
|
|
50360
52093
|
*/
|
|
@@ -50558,6 +52291,10 @@ type SessionCreate = {
|
|
|
50558
52291
|
* Gets or sets the session deals.
|
|
50559
52292
|
*/
|
|
50560
52293
|
deals?: Array<CreateDeal> | null;
|
|
52294
|
+
/**
|
|
52295
|
+
* Gets or sets the optional registered Codelocks lock for NetCode access.
|
|
52296
|
+
*/
|
|
52297
|
+
codelocksLockId?: string | null;
|
|
50561
52298
|
};
|
|
50562
52299
|
|
|
50563
52300
|
declare class SessionsService {
|
|
@@ -54645,15 +56382,15 @@ type SurveyAnswer = {
|
|
|
54645
56382
|
/**
|
|
54646
56383
|
* Gets or sets the survey id.
|
|
54647
56384
|
*/
|
|
54648
|
-
surveyId
|
|
56385
|
+
surveyId: string;
|
|
54649
56386
|
/**
|
|
54650
56387
|
* Gets or sets the question id.
|
|
54651
56388
|
*/
|
|
54652
|
-
surveyQuestionId
|
|
56389
|
+
surveyQuestionId: string;
|
|
54653
56390
|
/**
|
|
54654
56391
|
* Gets or sets the order id.
|
|
54655
56392
|
*/
|
|
54656
|
-
orderItemId
|
|
56393
|
+
orderItemId: string;
|
|
54657
56394
|
/**
|
|
54658
56395
|
* Gets or sets the attendee id.
|
|
54659
56396
|
*/
|
|
@@ -54661,7 +56398,7 @@ type SurveyAnswer = {
|
|
|
54661
56398
|
/**
|
|
54662
56399
|
* Gets or sets the survey question answer.
|
|
54663
56400
|
*/
|
|
54664
|
-
answer
|
|
56401
|
+
answer: string;
|
|
54665
56402
|
/**
|
|
54666
56403
|
* Gets or sets the survey question attendee number.
|
|
54667
56404
|
*/
|
|
@@ -70365,6 +72102,7 @@ declare class WalletTransactionsService {
|
|
|
70365
72102
|
|
|
70366
72103
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
70367
72104
|
declare class ApiClient {
|
|
72105
|
+
readonly accessCredentials: AccessCredentialsService;
|
|
70368
72106
|
readonly activity: ActivityService;
|
|
70369
72107
|
readonly activityPerformance: ActivityPerformanceService;
|
|
70370
72108
|
readonly activityTypeCategory: ActivityTypeCategoryService;
|
|
@@ -70374,6 +72112,7 @@ declare class ApiClient {
|
|
|
70374
72112
|
readonly booking: BookingService;
|
|
70375
72113
|
readonly cancellationPolicies: CancellationPoliciesService;
|
|
70376
72114
|
readonly chat: ChatService;
|
|
72115
|
+
readonly codelocksLocks: CodelocksLocksService;
|
|
70377
72116
|
readonly country: CountryService;
|
|
70378
72117
|
readonly courses: CoursesService;
|
|
70379
72118
|
readonly courseSessions: CourseSessionsService;
|
|
@@ -70392,6 +72131,7 @@ declare class ApiClient {
|
|
|
70392
72131
|
readonly englandGolfReport: EnglandGolfReportService;
|
|
70393
72132
|
readonly facilities: FacilitiesService;
|
|
70394
72133
|
readonly facilityIndividuals: FacilityIndividualsService;
|
|
72134
|
+
readonly featureAnnouncements: FeatureAnnouncementsService;
|
|
70395
72135
|
readonly filestack: FilestackService;
|
|
70396
72136
|
readonly genericActivity: GenericActivityService;
|
|
70397
72137
|
readonly geocode: GeocodeService;
|
|
@@ -70401,6 +72141,7 @@ declare class ApiClient {
|
|
|
70401
72141
|
readonly imageLibraryImage: ImageLibraryImageService;
|
|
70402
72142
|
readonly images: ImagesService;
|
|
70403
72143
|
readonly imageUploadHistory: ImageUploadHistoryService;
|
|
72144
|
+
readonly integrationCodelocksSettings: IntegrationCodelocksSettingsService;
|
|
70404
72145
|
readonly integrationDotdigitalFieldMap: IntegrationDotdigitalFieldMapService;
|
|
70405
72146
|
readonly integrationDotdigitalLog: IntegrationDotdigitalLogService;
|
|
70406
72147
|
readonly integrationDotDigitalSettings: IntegrationDotDigitalSettingsService;
|
|
@@ -70630,4 +72371,4 @@ type ValidationResultModel = {
|
|
|
70630
72371
|
readonly errors?: Array<ValidationError> | null;
|
|
70631
72372
|
};
|
|
70632
72373
|
|
|
70633
|
-
export { Activity, ActivityFacet, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivitySearchResponse, ActivityService, ActivityType, ActivityTypeCategory, ActivityTypeCategoryService, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerAuthService, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPortalAccountPatch, CustomerPortalService, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserAccessibleTenantDto, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderActivityLocation, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSellableItemsService, PublicSessionsService, PublicSlotsService, PublicStorefrontStaffPreviewService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, SellableItem, SellableItemPage, SellableItemPatch, SellableItemPost, SellableItemsService, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, SortIndex, Southwest, StorefrontStaffPreviewService, StorefrontStaffPreviewTokenResponse, StorefrontStaffPreviewValidateRequest, StorefrontStaffPreviewValidateResponse, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantStorefrontSettingsPatch, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };
|
|
72374
|
+
export { AccessCredential, AccessCredentialPage, AccessCredentialPatch, AccessCredentialPost, AccessCredentialsService, Activity, ActivityFacet, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivitySearchResponse, ActivityService, ActivityType, ActivityTypeCategory, ActivityTypeCategoryService, AddressBookItem, AddressBooksRequest, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeeWalletDeductionPreview, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, ChoiceMessage, CodelocksLock, CodelocksLockPage, CodelocksLockPatch, CodelocksLockPost, CodelocksLocksService, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CourseEmailWaitlistPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateTemplateFieldPermission, CreateVenue, CustomDateRange, CustomDateRangeOption, CustomFieldDataType, CustomFieldDefinition, CustomFieldDefinitionPage, CustomFieldDefinitionPatch, CustomFieldDefinitionPost, CustomFieldDefinitionWithValue, CustomFieldOption, CustomFieldOptionDto, CustomFieldOptionPost, CustomFieldValueEntityType, CustomFieldValueUpdate, CustomFieldsBulkUpdate, CustomFieldsService, Customer, CustomerAccountInvitePatch, CustomerAuthService, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPortalAccountPatch, CustomerPortalService, CustomerPost, CustomerStats, CustomerType, CustomerWalletDeductionPreview, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, DotdigitalCanonicalField, DotdigitalService, DotdigitalSourceType, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EndUserAccessibleTenantDto, EndUserIdentity, EndUserIdentitySecureToken, EndUserIdentitySecureTokenService, EnglandGolfReportService, EventTiming, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FeatureAnnouncementDismissPost, FeatureAnnouncementForUserDto, FeatureAnnouncementsService, FieldPermission, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, IntegrationCodelocksSettings, IntegrationCodelocksSettingsCreate, IntegrationCodelocksSettingsPage, IntegrationCodelocksSettingsPatch, IntegrationCodelocksSettingsPost, IntegrationCodelocksSettingsService, IntegrationDotDigitalSettingsService, IntegrationDotdigitalFieldMap, IntegrationDotdigitalFieldMapPage, IntegrationDotdigitalFieldMapPatch, IntegrationDotdigitalFieldMapPost, IntegrationDotdigitalFieldMapService, IntegrationDotdigitalLog, IntegrationDotdigitalLogPage, IntegrationDotdigitalLogPatch, IntegrationDotdigitalLogPost, IntegrationDotdigitalLogService, IntegrationDotdigitalLogStatus, IntegrationDotdigitalSettings, IntegrationDotdigitalSettingsCreate, IntegrationDotdigitalSettingsPage, IntegrationDotdigitalSettingsPatch, IntegrationDotdigitalSettingsPost, IntegrationQueue, IntegrationQueuePage, IntegrationQueuePatch, IntegrationQueuePost, IntegrationQueueService, IntegrationType, InviteStatus, LeasingService, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderApplyDiscountCode, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemCodelocksAccess, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemReportSummary, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderActivityLocation, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCalendarService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSellableItemsService, PublicSessionsService, PublicSlotsService, PublicStorefrontStaffPreviewService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenueTypesService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ResolveSecureAccessTokenRequest, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionEmailWaitlistPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, SellableItem, SellableItemPage, SellableItemPatch, SellableItemPost, SellableItemsService, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, SortIndex, Southwest, StorefrontStaffPreviewService, StorefrontStaffPreviewTokenResponse, StorefrontStaffPreviewValidateRequest, StorefrontStaffPreviewValidateResponse, StripeAccount, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, TenantStatus, TenantStorefrontSettingsPatch, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpcomingLayout, UpdateCustomFieldOption, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenueType, VenueTypePage, VenueTypePatch, VenueTypePost, VenueTypeService, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistConversionStatsResponseDto, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService, Wallet, WalletDeductionPreview, WalletPage, WalletPatch, WalletPost, WalletRemoveCreditPost, WalletTopUpPost, WalletTrackingLevel, WalletTransaction, WalletTransactionPage, WalletTransactionPatch, WalletTransactionPost, WalletTransactionType, WalletTransactionsService, WalletsService, WebsiteHomepage };
|