reach-api-sdk 1.0.210 → 1.0.211

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.
Files changed (42) hide show
  1. package/dist/reach-sdk.d.ts +2228 -169
  2. package/dist/reach-sdk.js +2618 -935
  3. package/package.json +1 -1
  4. package/src/apiClient.ts +15 -0
  5. package/src/definition/swagger.yaml +6733 -1147
  6. package/src/index.ts +28 -0
  7. package/src/models/AddressBookItem.ts +26 -0
  8. package/src/models/AddressBooksRequest.ts +22 -0
  9. package/src/models/DotdigitalCanonicalField.ts +17 -0
  10. package/src/models/DotdigitalSourceType.ts +15 -0
  11. package/src/models/IntegrationDotdigitalFieldMap.ts +55 -0
  12. package/src/models/IntegrationDotdigitalFieldMapPage.ts +12 -0
  13. package/src/models/IntegrationDotdigitalFieldMapPatch.ts +18 -0
  14. package/src/models/IntegrationDotdigitalFieldMapPost.ts +14 -0
  15. package/src/models/IntegrationDotdigitalLog.ts +65 -0
  16. package/src/models/IntegrationDotdigitalLogPage.ts +12 -0
  17. package/src/models/IntegrationDotdigitalLogPatch.ts +18 -0
  18. package/src/models/IntegrationDotdigitalLogPost.ts +14 -0
  19. package/src/models/IntegrationDotdigitalLogStatus.ts +13 -0
  20. package/src/models/IntegrationDotdigitalSettings.ts +66 -0
  21. package/src/models/IntegrationDotdigitalSettingsCreate.ts +38 -0
  22. package/src/models/IntegrationDotdigitalSettingsPage.ts +12 -0
  23. package/src/models/IntegrationDotdigitalSettingsPatch.ts +18 -0
  24. package/src/models/IntegrationDotdigitalSettingsPost.ts +14 -0
  25. package/src/models/IntegrationQueue.ts +57 -0
  26. package/src/models/IntegrationQueuePage.ts +12 -0
  27. package/src/models/IntegrationQueuePatch.ts +18 -0
  28. package/src/models/IntegrationQueuePost.ts +14 -0
  29. package/src/models/IntegrationType.ts +11 -0
  30. package/src/models/OrderItemReport.ts +4 -0
  31. package/src/services/CourseSessionsService.ts +30 -0
  32. package/src/services/DotdigitalService.ts +39 -0
  33. package/src/services/IntegrationDotDigitalSettingsService.ts +708 -0
  34. package/src/services/IntegrationDotdigitalFieldMapService.ts +662 -0
  35. package/src/services/IntegrationDotdigitalLogService.ts +662 -0
  36. package/src/services/IntegrationQueueService.ts +739 -0
  37. package/src/services/PublicCalendarService.ts +6 -0
  38. package/src/services/PublicScheduledSessionsService.ts +12 -0
  39. package/src/services/PublicSessionsService.ts +6 -0
  40. package/src/services/PublicVenuesService.ts +48 -0
  41. package/src/services/ScheduledSessionsService.ts +30 -0
  42. package/src/services/VenuesService.ts +60 -0
@@ -0,0 +1,739 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { IntegrationQueue } from '../models/IntegrationQueue';
6
+ import type { IntegrationQueuePage } from '../models/IntegrationQueuePage';
7
+ import type { IntegrationQueuePatch } from '../models/IntegrationQueuePatch';
8
+ import type { IntegrationQueuePost } from '../models/IntegrationQueuePost';
9
+ import type { SearchSortOrderDirection } from '../models/SearchSortOrderDirection';
10
+
11
+ import type { CancelablePromise } from '../core/CancelablePromise';
12
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
13
+
14
+ export class IntegrationQueueService {
15
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
16
+
17
+ /**
18
+ * Processes the OA intermediates table.
19
+ * @returns number OK
20
+ * @throws ApiError
21
+ */
22
+ public process(): CancelablePromise<number> {
23
+ return this.httpRequest.request({
24
+ method: 'GET',
25
+ url: '/api/integration-queue/process',
26
+ errors: {
27
+ 400: `Bad Request`,
28
+ 422: `Unprocessable Content`,
29
+ 500: `Internal Server Error`,
30
+ },
31
+ });
32
+ }
33
+
34
+ /**
35
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
36
+ * @returns IntegrationQueue OK
37
+ * @throws ApiError
38
+ */
39
+ public post({
40
+ requestBody,
41
+ }: {
42
+ /**
43
+ * The <typeparamref name="TObject" /> model.
44
+ */
45
+ requestBody?: IntegrationQueuePost;
46
+ }): CancelablePromise<IntegrationQueue> {
47
+ return this.httpRequest.request({
48
+ method: 'POST',
49
+ url: '/api/integration-queue/v2-temporary-route',
50
+ body: requestBody,
51
+ mediaType: 'application/json',
52
+ errors: {
53
+ 400: `Bad Request`,
54
+ 422: `Unprocessable Content`,
55
+ 500: `Internal Server Error`,
56
+ },
57
+ });
58
+ }
59
+
60
+ /**
61
+ * Patches the resource.
62
+ * @returns IntegrationQueue OK
63
+ * @throws ApiError
64
+ */
65
+ public patch({
66
+ requestBody,
67
+ }: {
68
+ /**
69
+ * The <typeparamref name="TObject" /> model.
70
+ */
71
+ requestBody?: IntegrationQueuePatch;
72
+ }): CancelablePromise<IntegrationQueue> {
73
+ return this.httpRequest.request({
74
+ method: 'PATCH',
75
+ url: '/api/integration-queue/v2-temporary-route',
76
+ body: requestBody,
77
+ mediaType: 'application/json',
78
+ errors: {
79
+ 400: `Bad Request`,
80
+ 422: `Unprocessable Content`,
81
+ 500: `Internal Server Error`,
82
+ },
83
+ });
84
+ }
85
+
86
+ /**
87
+ * Inserts a list of resources.
88
+ * @returns IntegrationQueue OK
89
+ * @throws ApiError
90
+ */
91
+ public postList({
92
+ requestBody,
93
+ }: {
94
+ /**
95
+ * The list of <typeparamref name="TObject" />.
96
+ */
97
+ requestBody?: Array<IntegrationQueuePost>;
98
+ }): CancelablePromise<Array<IntegrationQueue>> {
99
+ return this.httpRequest.request({
100
+ method: 'POST',
101
+ url: '/api/integration-queue/v2-temporary-route/list',
102
+ body: requestBody,
103
+ mediaType: 'application/json',
104
+ errors: {
105
+ 400: `Bad Request`,
106
+ 422: `Unprocessable Content`,
107
+ 500: `Internal Server Error`,
108
+ },
109
+ });
110
+ }
111
+
112
+ /**
113
+ * Patches the resource.
114
+ * @returns IntegrationQueue OK
115
+ * @throws ApiError
116
+ */
117
+ public patchWithReferences({
118
+ requestBody,
119
+ }: {
120
+ /**
121
+ * The <typeparamref name="TObject" /> model.
122
+ */
123
+ requestBody?: IntegrationQueuePatch;
124
+ }): CancelablePromise<IntegrationQueue> {
125
+ return this.httpRequest.request({
126
+ method: 'PATCH',
127
+ url: '/api/integration-queue/v2-temporary-route/with-references',
128
+ body: requestBody,
129
+ mediaType: 'application/json',
130
+ errors: {
131
+ 400: `Bad Request`,
132
+ 422: `Unprocessable Content`,
133
+ 500: `Internal Server Error`,
134
+ },
135
+ });
136
+ }
137
+
138
+ /**
139
+ * Deletes the resource.
140
+ * @returns any OK
141
+ * @throws ApiError
142
+ */
143
+ public deleteByObject({
144
+ requestBody,
145
+ }: {
146
+ /**
147
+ * The <typeparamref name="TObject" /> model.
148
+ */
149
+ requestBody?: IntegrationQueue;
150
+ }): CancelablePromise<any> {
151
+ return this.httpRequest.request({
152
+ method: 'DELETE',
153
+ url: '/api/integration-queue',
154
+ body: requestBody,
155
+ mediaType: 'application/json',
156
+ errors: {
157
+ 400: `Bad Request`,
158
+ 422: `Unprocessable Content`,
159
+ 500: `Internal Server Error`,
160
+ },
161
+ });
162
+ }
163
+
164
+ /**
165
+ * Gets a list of resources.
166
+ * @returns IntegrationQueuePage OK
167
+ * @throws ApiError
168
+ */
169
+ public getPage({
170
+ processed,
171
+ errored,
172
+ pageNumber,
173
+ take,
174
+ skip,
175
+ limitListRequests,
176
+ tenantId,
177
+ modifiedById,
178
+ modifiedByIds,
179
+ dateCreatedGte,
180
+ dateCreatedLte,
181
+ isLive,
182
+ sortOrderDirection,
183
+ }: {
184
+ /**
185
+ * Gets or sets the queryable processed status.
186
+ */
187
+ processed?: boolean;
188
+ /**
189
+ * Gets or sets the queryable errored status.
190
+ */
191
+ errored?: boolean;
192
+ /**
193
+ * Gets or sets the page number for paged queries.
194
+ */
195
+ pageNumber?: number;
196
+ /**
197
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
198
+ */
199
+ take?: number;
200
+ /**
201
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
202
+ */
203
+ skip?: number;
204
+ /**
205
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
206
+ */
207
+ limitListRequests?: boolean;
208
+ /**
209
+ * Gets or sets the Tenant Id.
210
+ */
211
+ tenantId?: string;
212
+ /**
213
+ * Gets or sets the Modifed By Id.
214
+ */
215
+ modifiedById?: string;
216
+ /**
217
+ * Gets or sets the Modifed By Ids.
218
+ */
219
+ modifiedByIds?: Array<string>;
220
+ /**
221
+ * Gets or sets the Date Created greater than equal to.
222
+ */
223
+ dateCreatedGte?: string;
224
+ /**
225
+ * Gets or sets the Date Created less than equal to.
226
+ */
227
+ dateCreatedLte?: string;
228
+ /**
229
+ * Gets or sets the queryable only is live status.
230
+ */
231
+ isLive?: boolean;
232
+ /**
233
+ * Gets or sets the sort order direction.
234
+ */
235
+ sortOrderDirection?: SearchSortOrderDirection;
236
+ }): CancelablePromise<IntegrationQueuePage> {
237
+ return this.httpRequest.request({
238
+ method: 'GET',
239
+ url: '/api/integration-queue',
240
+ query: {
241
+ Processed: processed,
242
+ Errored: errored,
243
+ PageNumber: pageNumber,
244
+ Take: take,
245
+ Skip: skip,
246
+ LimitListRequests: limitListRequests,
247
+ TenantId: tenantId,
248
+ ModifiedById: modifiedById,
249
+ ModifiedByIds: modifiedByIds,
250
+ DateCreatedGTE: dateCreatedGte,
251
+ DateCreatedLTE: dateCreatedLte,
252
+ IsLive: isLive,
253
+ SortOrderDirection: sortOrderDirection,
254
+ },
255
+ errors: {
256
+ 400: `Bad Request`,
257
+ 422: `Unprocessable Content`,
258
+ 500: `Internal Server Error`,
259
+ },
260
+ });
261
+ }
262
+
263
+ /**
264
+ * Deletes the resource.
265
+ * @returns any OK
266
+ * @throws ApiError
267
+ */
268
+ public deleteById({
269
+ id,
270
+ }: {
271
+ /**
272
+ * The <typeparamref name="TObject" /> id.
273
+ */
274
+ id: string;
275
+ }): CancelablePromise<any> {
276
+ return this.httpRequest.request({
277
+ method: 'DELETE',
278
+ url: '/api/integration-queue/{id}',
279
+ path: {
280
+ id: id,
281
+ },
282
+ errors: {
283
+ 400: `Bad Request`,
284
+ 422: `Unprocessable Content`,
285
+ 500: `Internal Server Error`,
286
+ },
287
+ });
288
+ }
289
+
290
+ /**
291
+ * Gets the resource by its Id.
292
+ * @returns IntegrationQueue OK
293
+ * @throws ApiError
294
+ */
295
+ public getObject({
296
+ id,
297
+ }: {
298
+ /**
299
+ * The <typeparamref name="TObject" /> id.
300
+ */
301
+ id: string;
302
+ }): CancelablePromise<IntegrationQueue> {
303
+ return this.httpRequest.request({
304
+ method: 'GET',
305
+ url: '/api/integration-queue/{id}',
306
+ path: {
307
+ id: id,
308
+ },
309
+ errors: {
310
+ 400: `Bad Request`,
311
+ 422: `Unprocessable Content`,
312
+ 500: `Internal Server Error`,
313
+ },
314
+ });
315
+ }
316
+
317
+ /**
318
+ * Returns a value indicating whether the resource is deletable.
319
+ * @returns boolean OK
320
+ * @throws ApiError
321
+ */
322
+ public canDelete({
323
+ id,
324
+ }: {
325
+ /**
326
+ * The <typeparamref name="TObject" /> id.
327
+ */
328
+ id: string;
329
+ }): CancelablePromise<boolean> {
330
+ return this.httpRequest.request({
331
+ method: 'GET',
332
+ url: '/api/integration-queue/{id}/deletable',
333
+ path: {
334
+ id: id,
335
+ },
336
+ errors: {
337
+ 400: `Bad Request`,
338
+ 422: `Unprocessable Content`,
339
+ 500: `Internal Server Error`,
340
+ },
341
+ });
342
+ }
343
+
344
+ /**
345
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
346
+ * @returns boolean OK
347
+ * @throws ApiError
348
+ */
349
+ public exists({
350
+ processed,
351
+ errored,
352
+ pageNumber,
353
+ take,
354
+ skip,
355
+ limitListRequests,
356
+ tenantId,
357
+ modifiedById,
358
+ modifiedByIds,
359
+ dateCreatedGte,
360
+ dateCreatedLte,
361
+ isLive,
362
+ sortOrderDirection,
363
+ }: {
364
+ /**
365
+ * Gets or sets the queryable processed status.
366
+ */
367
+ processed?: boolean;
368
+ /**
369
+ * Gets or sets the queryable errored status.
370
+ */
371
+ errored?: boolean;
372
+ /**
373
+ * Gets or sets the page number for paged queries.
374
+ */
375
+ pageNumber?: number;
376
+ /**
377
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
378
+ */
379
+ take?: number;
380
+ /**
381
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
382
+ */
383
+ skip?: number;
384
+ /**
385
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
386
+ */
387
+ limitListRequests?: boolean;
388
+ /**
389
+ * Gets or sets the Tenant Id.
390
+ */
391
+ tenantId?: string;
392
+ /**
393
+ * Gets or sets the Modifed By Id.
394
+ */
395
+ modifiedById?: string;
396
+ /**
397
+ * Gets or sets the Modifed By Ids.
398
+ */
399
+ modifiedByIds?: Array<string>;
400
+ /**
401
+ * Gets or sets the Date Created greater than equal to.
402
+ */
403
+ dateCreatedGte?: string;
404
+ /**
405
+ * Gets or sets the Date Created less than equal to.
406
+ */
407
+ dateCreatedLte?: string;
408
+ /**
409
+ * Gets or sets the queryable only is live status.
410
+ */
411
+ isLive?: boolean;
412
+ /**
413
+ * Gets or sets the sort order direction.
414
+ */
415
+ sortOrderDirection?: SearchSortOrderDirection;
416
+ }): CancelablePromise<boolean> {
417
+ return this.httpRequest.request({
418
+ method: 'GET',
419
+ url: '/api/integration-queue/exists',
420
+ query: {
421
+ Processed: processed,
422
+ Errored: errored,
423
+ PageNumber: pageNumber,
424
+ Take: take,
425
+ Skip: skip,
426
+ LimitListRequests: limitListRequests,
427
+ TenantId: tenantId,
428
+ ModifiedById: modifiedById,
429
+ ModifiedByIds: modifiedByIds,
430
+ DateCreatedGTE: dateCreatedGte,
431
+ DateCreatedLTE: dateCreatedLte,
432
+ IsLive: isLive,
433
+ SortOrderDirection: sortOrderDirection,
434
+ },
435
+ errors: {
436
+ 400: `Bad Request`,
437
+ 422: `Unprocessable Content`,
438
+ 500: `Internal Server Error`,
439
+ },
440
+ });
441
+ }
442
+
443
+ /**
444
+ * Returns the number of results in the database given the provided search params.
445
+ * @returns number OK
446
+ * @throws ApiError
447
+ */
448
+ public count({
449
+ processed,
450
+ errored,
451
+ pageNumber,
452
+ take,
453
+ skip,
454
+ limitListRequests,
455
+ tenantId,
456
+ modifiedById,
457
+ modifiedByIds,
458
+ dateCreatedGte,
459
+ dateCreatedLte,
460
+ isLive,
461
+ sortOrderDirection,
462
+ }: {
463
+ /**
464
+ * Gets or sets the queryable processed status.
465
+ */
466
+ processed?: boolean;
467
+ /**
468
+ * Gets or sets the queryable errored status.
469
+ */
470
+ errored?: boolean;
471
+ /**
472
+ * Gets or sets the page number for paged queries.
473
+ */
474
+ pageNumber?: number;
475
+ /**
476
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
477
+ */
478
+ take?: number;
479
+ /**
480
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
481
+ */
482
+ skip?: number;
483
+ /**
484
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
485
+ */
486
+ limitListRequests?: boolean;
487
+ /**
488
+ * Gets or sets the Tenant Id.
489
+ */
490
+ tenantId?: string;
491
+ /**
492
+ * Gets or sets the Modifed By Id.
493
+ */
494
+ modifiedById?: string;
495
+ /**
496
+ * Gets or sets the Modifed By Ids.
497
+ */
498
+ modifiedByIds?: Array<string>;
499
+ /**
500
+ * Gets or sets the Date Created greater than equal to.
501
+ */
502
+ dateCreatedGte?: string;
503
+ /**
504
+ * Gets or sets the Date Created less than equal to.
505
+ */
506
+ dateCreatedLte?: string;
507
+ /**
508
+ * Gets or sets the queryable only is live status.
509
+ */
510
+ isLive?: boolean;
511
+ /**
512
+ * Gets or sets the sort order direction.
513
+ */
514
+ sortOrderDirection?: SearchSortOrderDirection;
515
+ }): CancelablePromise<number> {
516
+ return this.httpRequest.request({
517
+ method: 'GET',
518
+ url: '/api/integration-queue/count',
519
+ query: {
520
+ Processed: processed,
521
+ Errored: errored,
522
+ PageNumber: pageNumber,
523
+ Take: take,
524
+ Skip: skip,
525
+ LimitListRequests: limitListRequests,
526
+ TenantId: tenantId,
527
+ ModifiedById: modifiedById,
528
+ ModifiedByIds: modifiedByIds,
529
+ DateCreatedGTE: dateCreatedGte,
530
+ DateCreatedLTE: dateCreatedLte,
531
+ IsLive: isLive,
532
+ SortOrderDirection: sortOrderDirection,
533
+ },
534
+ errors: {
535
+ 400: `Bad Request`,
536
+ 422: `Unprocessable Content`,
537
+ 500: `Internal Server Error`,
538
+ },
539
+ });
540
+ }
541
+
542
+ /**
543
+ * Gets a list of resources unpaged and without references.
544
+ * @returns IntegrationQueue OK
545
+ * @throws ApiError
546
+ */
547
+ public getListWithoutReferences({
548
+ processed,
549
+ errored,
550
+ pageNumber,
551
+ take,
552
+ skip,
553
+ limitListRequests,
554
+ tenantId,
555
+ modifiedById,
556
+ modifiedByIds,
557
+ dateCreatedGte,
558
+ dateCreatedLte,
559
+ isLive,
560
+ sortOrderDirection,
561
+ }: {
562
+ /**
563
+ * Gets or sets the queryable processed status.
564
+ */
565
+ processed?: boolean;
566
+ /**
567
+ * Gets or sets the queryable errored status.
568
+ */
569
+ errored?: boolean;
570
+ /**
571
+ * Gets or sets the page number for paged queries.
572
+ */
573
+ pageNumber?: number;
574
+ /**
575
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
576
+ */
577
+ take?: number;
578
+ /**
579
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
580
+ */
581
+ skip?: number;
582
+ /**
583
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
584
+ */
585
+ limitListRequests?: boolean;
586
+ /**
587
+ * Gets or sets the Tenant Id.
588
+ */
589
+ tenantId?: string;
590
+ /**
591
+ * Gets or sets the Modifed By Id.
592
+ */
593
+ modifiedById?: string;
594
+ /**
595
+ * Gets or sets the Modifed By Ids.
596
+ */
597
+ modifiedByIds?: Array<string>;
598
+ /**
599
+ * Gets or sets the Date Created greater than equal to.
600
+ */
601
+ dateCreatedGte?: string;
602
+ /**
603
+ * Gets or sets the Date Created less than equal to.
604
+ */
605
+ dateCreatedLte?: string;
606
+ /**
607
+ * Gets or sets the queryable only is live status.
608
+ */
609
+ isLive?: boolean;
610
+ /**
611
+ * Gets or sets the sort order direction.
612
+ */
613
+ sortOrderDirection?: SearchSortOrderDirection;
614
+ }): CancelablePromise<Array<IntegrationQueue>> {
615
+ return this.httpRequest.request({
616
+ method: 'GET',
617
+ url: '/api/integration-queue/without-references',
618
+ query: {
619
+ Processed: processed,
620
+ Errored: errored,
621
+ PageNumber: pageNumber,
622
+ Take: take,
623
+ Skip: skip,
624
+ LimitListRequests: limitListRequests,
625
+ TenantId: tenantId,
626
+ ModifiedById: modifiedById,
627
+ ModifiedByIds: modifiedByIds,
628
+ DateCreatedGTE: dateCreatedGte,
629
+ DateCreatedLTE: dateCreatedLte,
630
+ IsLive: isLive,
631
+ SortOrderDirection: sortOrderDirection,
632
+ },
633
+ errors: {
634
+ 400: `Bad Request`,
635
+ 422: `Unprocessable Content`,
636
+ 500: `Internal Server Error`,
637
+ },
638
+ });
639
+ }
640
+
641
+ /**
642
+ * Gets a list of resources.
643
+ * @returns IntegrationQueue OK
644
+ * @throws ApiError
645
+ */
646
+ public getListIdName({
647
+ processed,
648
+ errored,
649
+ pageNumber,
650
+ take,
651
+ skip,
652
+ limitListRequests,
653
+ tenantId,
654
+ modifiedById,
655
+ modifiedByIds,
656
+ dateCreatedGte,
657
+ dateCreatedLte,
658
+ isLive,
659
+ sortOrderDirection,
660
+ }: {
661
+ /**
662
+ * Gets or sets the queryable processed status.
663
+ */
664
+ processed?: boolean;
665
+ /**
666
+ * Gets or sets the queryable errored status.
667
+ */
668
+ errored?: boolean;
669
+ /**
670
+ * Gets or sets the page number for paged queries.
671
+ */
672
+ pageNumber?: number;
673
+ /**
674
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
675
+ */
676
+ take?: number;
677
+ /**
678
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
679
+ */
680
+ skip?: number;
681
+ /**
682
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
683
+ */
684
+ limitListRequests?: boolean;
685
+ /**
686
+ * Gets or sets the Tenant Id.
687
+ */
688
+ tenantId?: string;
689
+ /**
690
+ * Gets or sets the Modifed By Id.
691
+ */
692
+ modifiedById?: string;
693
+ /**
694
+ * Gets or sets the Modifed By Ids.
695
+ */
696
+ modifiedByIds?: Array<string>;
697
+ /**
698
+ * Gets or sets the Date Created greater than equal to.
699
+ */
700
+ dateCreatedGte?: string;
701
+ /**
702
+ * Gets or sets the Date Created less than equal to.
703
+ */
704
+ dateCreatedLte?: string;
705
+ /**
706
+ * Gets or sets the queryable only is live status.
707
+ */
708
+ isLive?: boolean;
709
+ /**
710
+ * Gets or sets the sort order direction.
711
+ */
712
+ sortOrderDirection?: SearchSortOrderDirection;
713
+ }): CancelablePromise<Array<IntegrationQueue>> {
714
+ return this.httpRequest.request({
715
+ method: 'GET',
716
+ url: '/api/integration-queue/id-name',
717
+ query: {
718
+ Processed: processed,
719
+ Errored: errored,
720
+ PageNumber: pageNumber,
721
+ Take: take,
722
+ Skip: skip,
723
+ LimitListRequests: limitListRequests,
724
+ TenantId: tenantId,
725
+ ModifiedById: modifiedById,
726
+ ModifiedByIds: modifiedByIds,
727
+ DateCreatedGTE: dateCreatedGte,
728
+ DateCreatedLTE: dateCreatedLte,
729
+ IsLive: isLive,
730
+ SortOrderDirection: sortOrderDirection,
731
+ },
732
+ errors: {
733
+ 400: `Bad Request`,
734
+ 422: `Unprocessable Content`,
735
+ 500: `Internal Server Error`,
736
+ },
737
+ });
738
+ }
739
+ }