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
|
@@ -169,6 +169,7 @@ export class IntegrationQueueService {
|
|
|
169
169
|
public getPage({
|
|
170
170
|
processed,
|
|
171
171
|
errored,
|
|
172
|
+
processAfterUtcLte,
|
|
172
173
|
pageNumber,
|
|
173
174
|
take,
|
|
174
175
|
skip,
|
|
@@ -189,6 +190,10 @@ export class IntegrationQueueService {
|
|
|
189
190
|
* Gets or sets the queryable errored status.
|
|
190
191
|
*/
|
|
191
192
|
errored?: boolean;
|
|
193
|
+
/**
|
|
194
|
+
* 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).
|
|
195
|
+
*/
|
|
196
|
+
processAfterUtcLte?: string;
|
|
192
197
|
/**
|
|
193
198
|
* Gets or sets the page number for paged queries.
|
|
194
199
|
*/
|
|
@@ -240,6 +245,7 @@ export class IntegrationQueueService {
|
|
|
240
245
|
query: {
|
|
241
246
|
Processed: processed,
|
|
242
247
|
Errored: errored,
|
|
248
|
+
ProcessAfterUtcLTE: processAfterUtcLte,
|
|
243
249
|
PageNumber: pageNumber,
|
|
244
250
|
Take: take,
|
|
245
251
|
Skip: skip,
|
|
@@ -349,6 +355,7 @@ export class IntegrationQueueService {
|
|
|
349
355
|
public exists({
|
|
350
356
|
processed,
|
|
351
357
|
errored,
|
|
358
|
+
processAfterUtcLte,
|
|
352
359
|
pageNumber,
|
|
353
360
|
take,
|
|
354
361
|
skip,
|
|
@@ -369,6 +376,10 @@ export class IntegrationQueueService {
|
|
|
369
376
|
* Gets or sets the queryable errored status.
|
|
370
377
|
*/
|
|
371
378
|
errored?: boolean;
|
|
379
|
+
/**
|
|
380
|
+
* 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).
|
|
381
|
+
*/
|
|
382
|
+
processAfterUtcLte?: string;
|
|
372
383
|
/**
|
|
373
384
|
* Gets or sets the page number for paged queries.
|
|
374
385
|
*/
|
|
@@ -420,6 +431,7 @@ export class IntegrationQueueService {
|
|
|
420
431
|
query: {
|
|
421
432
|
Processed: processed,
|
|
422
433
|
Errored: errored,
|
|
434
|
+
ProcessAfterUtcLTE: processAfterUtcLte,
|
|
423
435
|
PageNumber: pageNumber,
|
|
424
436
|
Take: take,
|
|
425
437
|
Skip: skip,
|
|
@@ -448,6 +460,7 @@ export class IntegrationQueueService {
|
|
|
448
460
|
public count({
|
|
449
461
|
processed,
|
|
450
462
|
errored,
|
|
463
|
+
processAfterUtcLte,
|
|
451
464
|
pageNumber,
|
|
452
465
|
take,
|
|
453
466
|
skip,
|
|
@@ -468,6 +481,10 @@ export class IntegrationQueueService {
|
|
|
468
481
|
* Gets or sets the queryable errored status.
|
|
469
482
|
*/
|
|
470
483
|
errored?: boolean;
|
|
484
|
+
/**
|
|
485
|
+
* 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).
|
|
486
|
+
*/
|
|
487
|
+
processAfterUtcLte?: string;
|
|
471
488
|
/**
|
|
472
489
|
* Gets or sets the page number for paged queries.
|
|
473
490
|
*/
|
|
@@ -519,6 +536,7 @@ export class IntegrationQueueService {
|
|
|
519
536
|
query: {
|
|
520
537
|
Processed: processed,
|
|
521
538
|
Errored: errored,
|
|
539
|
+
ProcessAfterUtcLTE: processAfterUtcLte,
|
|
522
540
|
PageNumber: pageNumber,
|
|
523
541
|
Take: take,
|
|
524
542
|
Skip: skip,
|
|
@@ -547,6 +565,7 @@ export class IntegrationQueueService {
|
|
|
547
565
|
public getListWithoutReferences({
|
|
548
566
|
processed,
|
|
549
567
|
errored,
|
|
568
|
+
processAfterUtcLte,
|
|
550
569
|
pageNumber,
|
|
551
570
|
take,
|
|
552
571
|
skip,
|
|
@@ -567,6 +586,10 @@ export class IntegrationQueueService {
|
|
|
567
586
|
* Gets or sets the queryable errored status.
|
|
568
587
|
*/
|
|
569
588
|
errored?: boolean;
|
|
589
|
+
/**
|
|
590
|
+
* 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).
|
|
591
|
+
*/
|
|
592
|
+
processAfterUtcLte?: string;
|
|
570
593
|
/**
|
|
571
594
|
* Gets or sets the page number for paged queries.
|
|
572
595
|
*/
|
|
@@ -618,6 +641,7 @@ export class IntegrationQueueService {
|
|
|
618
641
|
query: {
|
|
619
642
|
Processed: processed,
|
|
620
643
|
Errored: errored,
|
|
644
|
+
ProcessAfterUtcLTE: processAfterUtcLte,
|
|
621
645
|
PageNumber: pageNumber,
|
|
622
646
|
Take: take,
|
|
623
647
|
Skip: skip,
|
|
@@ -646,6 +670,7 @@ export class IntegrationQueueService {
|
|
|
646
670
|
public getListIdName({
|
|
647
671
|
processed,
|
|
648
672
|
errored,
|
|
673
|
+
processAfterUtcLte,
|
|
649
674
|
pageNumber,
|
|
650
675
|
take,
|
|
651
676
|
skip,
|
|
@@ -666,6 +691,10 @@ export class IntegrationQueueService {
|
|
|
666
691
|
* Gets or sets the queryable errored status.
|
|
667
692
|
*/
|
|
668
693
|
errored?: boolean;
|
|
694
|
+
/**
|
|
695
|
+
* 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).
|
|
696
|
+
*/
|
|
697
|
+
processAfterUtcLte?: string;
|
|
669
698
|
/**
|
|
670
699
|
* Gets or sets the page number for paged queries.
|
|
671
700
|
*/
|
|
@@ -717,6 +746,7 @@ export class IntegrationQueueService {
|
|
|
717
746
|
query: {
|
|
718
747
|
Processed: processed,
|
|
719
748
|
Errored: errored,
|
|
749
|
+
ProcessAfterUtcLTE: processAfterUtcLte,
|
|
720
750
|
PageNumber: pageNumber,
|
|
721
751
|
Take: take,
|
|
722
752
|
Skip: skip,
|
|
@@ -85,6 +85,7 @@ export class PublicSellableItemsService {
|
|
|
85
85
|
xTenantSubdomain,
|
|
86
86
|
ids,
|
|
87
87
|
venueId,
|
|
88
|
+
providerId,
|
|
88
89
|
online,
|
|
89
90
|
archived,
|
|
90
91
|
deleted,
|
|
@@ -110,6 +111,10 @@ export class PublicSellableItemsService {
|
|
|
110
111
|
* Gets or sets the queryable Venue Id.
|
|
111
112
|
*/
|
|
112
113
|
venueId?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
116
|
+
*/
|
|
117
|
+
providerId?: string;
|
|
113
118
|
/**
|
|
114
119
|
* Gets or sets a value indicating whether return online items.
|
|
115
120
|
*/
|
|
@@ -180,6 +185,7 @@ export class PublicSellableItemsService {
|
|
|
180
185
|
query: {
|
|
181
186
|
Ids: ids,
|
|
182
187
|
VenueId: venueId,
|
|
188
|
+
ProviderId: providerId,
|
|
183
189
|
Online: online,
|
|
184
190
|
Archived: archived,
|
|
185
191
|
Deleted: deleted,
|
|
@@ -349,6 +355,7 @@ export class PublicSellableItemsService {
|
|
|
349
355
|
xTenantSubdomain,
|
|
350
356
|
ids,
|
|
351
357
|
venueId,
|
|
358
|
+
providerId,
|
|
352
359
|
online,
|
|
353
360
|
archived,
|
|
354
361
|
deleted,
|
|
@@ -377,6 +384,10 @@ export class PublicSellableItemsService {
|
|
|
377
384
|
* Gets or sets the queryable Venue Id.
|
|
378
385
|
*/
|
|
379
386
|
venueId?: string;
|
|
387
|
+
/**
|
|
388
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
389
|
+
*/
|
|
390
|
+
providerId?: string;
|
|
380
391
|
/**
|
|
381
392
|
* Gets or sets a value indicating whether return online items.
|
|
382
393
|
*/
|
|
@@ -447,6 +458,7 @@ export class PublicSellableItemsService {
|
|
|
447
458
|
query: {
|
|
448
459
|
Ids: ids,
|
|
449
460
|
VenueId: venueId,
|
|
461
|
+
ProviderId: providerId,
|
|
450
462
|
Online: online,
|
|
451
463
|
Archived: archived,
|
|
452
464
|
Deleted: deleted,
|
|
@@ -272,6 +272,7 @@ export class SellableItemsService {
|
|
|
272
272
|
public getPage({
|
|
273
273
|
ids,
|
|
274
274
|
venueId,
|
|
275
|
+
providerId,
|
|
275
276
|
online,
|
|
276
277
|
archived,
|
|
277
278
|
deleted,
|
|
@@ -296,6 +297,10 @@ export class SellableItemsService {
|
|
|
296
297
|
* Gets or sets the queryable Venue Id.
|
|
297
298
|
*/
|
|
298
299
|
venueId?: string;
|
|
300
|
+
/**
|
|
301
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
302
|
+
*/
|
|
303
|
+
providerId?: string;
|
|
299
304
|
/**
|
|
300
305
|
* Gets or sets a value indicating whether return online items.
|
|
301
306
|
*/
|
|
@@ -363,6 +368,7 @@ export class SellableItemsService {
|
|
|
363
368
|
query: {
|
|
364
369
|
Ids: ids,
|
|
365
370
|
VenueId: venueId,
|
|
371
|
+
ProviderId: providerId,
|
|
366
372
|
Online: online,
|
|
367
373
|
Archived: archived,
|
|
368
374
|
Deleted: deleted,
|
|
@@ -476,6 +482,7 @@ export class SellableItemsService {
|
|
|
476
482
|
public exists({
|
|
477
483
|
ids,
|
|
478
484
|
venueId,
|
|
485
|
+
providerId,
|
|
479
486
|
online,
|
|
480
487
|
archived,
|
|
481
488
|
deleted,
|
|
@@ -500,6 +507,10 @@ export class SellableItemsService {
|
|
|
500
507
|
* Gets or sets the queryable Venue Id.
|
|
501
508
|
*/
|
|
502
509
|
venueId?: string;
|
|
510
|
+
/**
|
|
511
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
512
|
+
*/
|
|
513
|
+
providerId?: string;
|
|
503
514
|
/**
|
|
504
515
|
* Gets or sets a value indicating whether return online items.
|
|
505
516
|
*/
|
|
@@ -567,6 +578,7 @@ export class SellableItemsService {
|
|
|
567
578
|
query: {
|
|
568
579
|
Ids: ids,
|
|
569
580
|
VenueId: venueId,
|
|
581
|
+
ProviderId: providerId,
|
|
570
582
|
Online: online,
|
|
571
583
|
Archived: archived,
|
|
572
584
|
Deleted: deleted,
|
|
@@ -599,6 +611,7 @@ export class SellableItemsService {
|
|
|
599
611
|
public count({
|
|
600
612
|
ids,
|
|
601
613
|
venueId,
|
|
614
|
+
providerId,
|
|
602
615
|
online,
|
|
603
616
|
archived,
|
|
604
617
|
deleted,
|
|
@@ -623,6 +636,10 @@ export class SellableItemsService {
|
|
|
623
636
|
* Gets or sets the queryable Venue Id.
|
|
624
637
|
*/
|
|
625
638
|
venueId?: string;
|
|
639
|
+
/**
|
|
640
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
641
|
+
*/
|
|
642
|
+
providerId?: string;
|
|
626
643
|
/**
|
|
627
644
|
* Gets or sets a value indicating whether return online items.
|
|
628
645
|
*/
|
|
@@ -690,6 +707,7 @@ export class SellableItemsService {
|
|
|
690
707
|
query: {
|
|
691
708
|
Ids: ids,
|
|
692
709
|
VenueId: venueId,
|
|
710
|
+
ProviderId: providerId,
|
|
693
711
|
Online: online,
|
|
694
712
|
Archived: archived,
|
|
695
713
|
Deleted: deleted,
|
|
@@ -722,6 +740,7 @@ export class SellableItemsService {
|
|
|
722
740
|
public getListWithoutReferences({
|
|
723
741
|
ids,
|
|
724
742
|
venueId,
|
|
743
|
+
providerId,
|
|
725
744
|
online,
|
|
726
745
|
archived,
|
|
727
746
|
deleted,
|
|
@@ -746,6 +765,10 @@ export class SellableItemsService {
|
|
|
746
765
|
* Gets or sets the queryable Venue Id.
|
|
747
766
|
*/
|
|
748
767
|
venueId?: string;
|
|
768
|
+
/**
|
|
769
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
770
|
+
*/
|
|
771
|
+
providerId?: string;
|
|
749
772
|
/**
|
|
750
773
|
* Gets or sets a value indicating whether return online items.
|
|
751
774
|
*/
|
|
@@ -813,6 +836,7 @@ export class SellableItemsService {
|
|
|
813
836
|
query: {
|
|
814
837
|
Ids: ids,
|
|
815
838
|
VenueId: venueId,
|
|
839
|
+
ProviderId: providerId,
|
|
816
840
|
Online: online,
|
|
817
841
|
Archived: archived,
|
|
818
842
|
Deleted: deleted,
|
|
@@ -845,6 +869,7 @@ export class SellableItemsService {
|
|
|
845
869
|
public getListIdName({
|
|
846
870
|
ids,
|
|
847
871
|
venueId,
|
|
872
|
+
providerId,
|
|
848
873
|
online,
|
|
849
874
|
archived,
|
|
850
875
|
deleted,
|
|
@@ -869,6 +894,10 @@ export class SellableItemsService {
|
|
|
869
894
|
* Gets or sets the queryable Venue Id.
|
|
870
895
|
*/
|
|
871
896
|
venueId?: string;
|
|
897
|
+
/**
|
|
898
|
+
* Gets or sets the queryable Provider Id. Filters sellable items owned by the supplied provider.
|
|
899
|
+
*/
|
|
900
|
+
providerId?: string;
|
|
872
901
|
/**
|
|
873
902
|
* Gets or sets a value indicating whether return online items.
|
|
874
903
|
*/
|
|
@@ -936,6 +965,7 @@ export class SellableItemsService {
|
|
|
936
965
|
query: {
|
|
937
966
|
Ids: ids,
|
|
938
967
|
VenueId: venueId,
|
|
968
|
+
ProviderId: providerId,
|
|
939
969
|
Online: online,
|
|
940
970
|
Archived: archived,
|
|
941
971
|
Deleted: deleted,
|