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