reach-api-sdk 1.0.49 → 1.0.51
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 +68 -12
- package/dist/reach-sdk.js +31 -4
- package/package.json +1 -1
- package/src/definition/swagger.yaml +129 -4
- package/src/models/Attendee.ts +4 -0
- package/src/models/AttendeePost.ts +6 -2
- package/src/models/SurveySubmit.ts +1 -1
- package/src/services/AttendeesService.ts +18 -0
- package/src/services/OpportunityRegisterService.ts +36 -0
- package/src/services/OrdersService.ts +22 -1
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -299,6 +299,10 @@ type Attendee = {
|
|
|
299
299
|
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
300
300
|
*/
|
|
301
301
|
isLive: boolean;
|
|
302
|
+
/**
|
|
303
|
+
* Gets or sets the venue id.
|
|
304
|
+
*/
|
|
305
|
+
venueId: string;
|
|
302
306
|
/**
|
|
303
307
|
* Gets or sets the customer id.
|
|
304
308
|
*/
|
|
@@ -373,11 +377,15 @@ type AttendeePost = {
|
|
|
373
377
|
/**
|
|
374
378
|
* Gets or sets the attendee first name.
|
|
375
379
|
*/
|
|
376
|
-
firstName
|
|
380
|
+
firstName: string;
|
|
377
381
|
/**
|
|
378
382
|
* Gets or sets the attendee last name.
|
|
379
383
|
*/
|
|
380
|
-
lastName
|
|
384
|
+
lastName: string;
|
|
385
|
+
/**
|
|
386
|
+
* Gets or sets the attendee last name.
|
|
387
|
+
*/
|
|
388
|
+
customerId: string;
|
|
381
389
|
};
|
|
382
390
|
|
|
383
391
|
declare class AttendeesService {
|
|
@@ -410,7 +418,11 @@ declare class AttendeesService {
|
|
|
410
418
|
* @returns boolean Success
|
|
411
419
|
* @throws ApiError
|
|
412
420
|
*/
|
|
413
|
-
exists({ customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
421
|
+
exists({ venueId, customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
422
|
+
/**
|
|
423
|
+
* Gets or sets the queryable venue id.
|
|
424
|
+
*/
|
|
425
|
+
venueId?: string;
|
|
414
426
|
/**
|
|
415
427
|
* Gets or sets the queryable customer id.
|
|
416
428
|
*/
|
|
@@ -469,7 +481,11 @@ declare class AttendeesService {
|
|
|
469
481
|
* @returns AttendeePage Success
|
|
470
482
|
* @throws ApiError
|
|
471
483
|
*/
|
|
472
|
-
getPage({ customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
484
|
+
getPage({ venueId, customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
485
|
+
/**
|
|
486
|
+
* Gets or sets the queryable venue id.
|
|
487
|
+
*/
|
|
488
|
+
venueId?: string;
|
|
473
489
|
/**
|
|
474
490
|
* Gets or sets the queryable customer id.
|
|
475
491
|
*/
|
|
@@ -539,7 +555,11 @@ declare class AttendeesService {
|
|
|
539
555
|
* @returns Attendee Success
|
|
540
556
|
* @throws ApiError
|
|
541
557
|
*/
|
|
542
|
-
getListIdName({ customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
558
|
+
getListIdName({ venueId, customerId, firstName, lastName, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
559
|
+
/**
|
|
560
|
+
* Gets or sets the queryable venue id.
|
|
561
|
+
*/
|
|
562
|
+
venueId?: string;
|
|
543
563
|
/**
|
|
544
564
|
* Gets or sets the queryable customer id.
|
|
545
565
|
*/
|
|
@@ -12644,7 +12664,7 @@ declare class OpportunityRegisterService {
|
|
|
12644
12664
|
* @returns boolean Success
|
|
12645
12665
|
* @throws ApiError
|
|
12646
12666
|
*/
|
|
12647
|
-
exists({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12667
|
+
exists({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, moved, movedFrom, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12648
12668
|
/**
|
|
12649
12669
|
* Gets or sets the queryable order item id.
|
|
12650
12670
|
*/
|
|
@@ -12673,6 +12693,14 @@ declare class OpportunityRegisterService {
|
|
|
12673
12693
|
* Gets or sets the queryable attendee checked in value.
|
|
12674
12694
|
*/
|
|
12675
12695
|
checkedIn?: boolean;
|
|
12696
|
+
/**
|
|
12697
|
+
* Gets or sets the queryable attendee moved value.
|
|
12698
|
+
*/
|
|
12699
|
+
moved?: boolean;
|
|
12700
|
+
/**
|
|
12701
|
+
* Gets or sets the queryable opportunity register that the attendee was moved from.
|
|
12702
|
+
*/
|
|
12703
|
+
movedFrom?: string;
|
|
12676
12704
|
/**
|
|
12677
12705
|
* Gets or sets the page number for paged queries.
|
|
12678
12706
|
*/
|
|
@@ -12719,7 +12747,7 @@ declare class OpportunityRegisterService {
|
|
|
12719
12747
|
* @returns OpportunityRegisterPage Success
|
|
12720
12748
|
* @throws ApiError
|
|
12721
12749
|
*/
|
|
12722
|
-
getPage({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12750
|
+
getPage({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, moved, movedFrom, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12723
12751
|
/**
|
|
12724
12752
|
* Gets or sets the queryable order item id.
|
|
12725
12753
|
*/
|
|
@@ -12748,6 +12776,14 @@ declare class OpportunityRegisterService {
|
|
|
12748
12776
|
* Gets or sets the queryable attendee checked in value.
|
|
12749
12777
|
*/
|
|
12750
12778
|
checkedIn?: boolean;
|
|
12779
|
+
/**
|
|
12780
|
+
* Gets or sets the queryable attendee moved value.
|
|
12781
|
+
*/
|
|
12782
|
+
moved?: boolean;
|
|
12783
|
+
/**
|
|
12784
|
+
* Gets or sets the queryable opportunity register that the attendee was moved from.
|
|
12785
|
+
*/
|
|
12786
|
+
movedFrom?: string;
|
|
12751
12787
|
/**
|
|
12752
12788
|
* Gets or sets the page number for paged queries.
|
|
12753
12789
|
*/
|
|
@@ -12805,7 +12841,7 @@ declare class OpportunityRegisterService {
|
|
|
12805
12841
|
* @returns OpportunityRegister Success
|
|
12806
12842
|
* @throws ApiError
|
|
12807
12843
|
*/
|
|
12808
|
-
getListIdName({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12844
|
+
getListIdName({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, moved, movedFrom, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12809
12845
|
/**
|
|
12810
12846
|
* Gets or sets the queryable order item id.
|
|
12811
12847
|
*/
|
|
@@ -12834,6 +12870,14 @@ declare class OpportunityRegisterService {
|
|
|
12834
12870
|
* Gets or sets the queryable attendee checked in value.
|
|
12835
12871
|
*/
|
|
12836
12872
|
checkedIn?: boolean;
|
|
12873
|
+
/**
|
|
12874
|
+
* Gets or sets the queryable attendee moved value.
|
|
12875
|
+
*/
|
|
12876
|
+
moved?: boolean;
|
|
12877
|
+
/**
|
|
12878
|
+
* Gets or sets the queryable opportunity register that the attendee was moved from.
|
|
12879
|
+
*/
|
|
12880
|
+
movedFrom?: string;
|
|
12837
12881
|
/**
|
|
12838
12882
|
* Gets or sets the page number for paged queries.
|
|
12839
12883
|
*/
|
|
@@ -13325,33 +13369,45 @@ declare class OrdersService {
|
|
|
13325
13369
|
* @returns Order Success
|
|
13326
13370
|
* @throws ApiError
|
|
13327
13371
|
*/
|
|
13328
|
-
cancel({ id, }: {
|
|
13372
|
+
cancel({ id, requestBody, }: {
|
|
13329
13373
|
/**
|
|
13330
13374
|
* The Order id.
|
|
13331
13375
|
*/
|
|
13332
13376
|
id: string;
|
|
13377
|
+
/**
|
|
13378
|
+
* The order items in the case of a partial refund.
|
|
13379
|
+
*/
|
|
13380
|
+
requestBody?: Array<string>;
|
|
13333
13381
|
}): CancelablePromise<Order>;
|
|
13334
13382
|
/**
|
|
13335
13383
|
* Requests a refund for the order.
|
|
13336
13384
|
* @returns Order Success
|
|
13337
13385
|
* @throws ApiError
|
|
13338
13386
|
*/
|
|
13339
|
-
refund({ id, }: {
|
|
13387
|
+
refund({ id, requestBody, }: {
|
|
13340
13388
|
/**
|
|
13341
13389
|
* The Order id.
|
|
13342
13390
|
*/
|
|
13343
13391
|
id: string;
|
|
13392
|
+
/**
|
|
13393
|
+
* The order items in the case of a partial refund.
|
|
13394
|
+
*/
|
|
13395
|
+
requestBody?: Array<string>;
|
|
13344
13396
|
}): CancelablePromise<Order>;
|
|
13345
13397
|
/**
|
|
13346
13398
|
* Cancels the order and requests a refund.
|
|
13347
13399
|
* @returns Order Success
|
|
13348
13400
|
* @throws ApiError
|
|
13349
13401
|
*/
|
|
13350
|
-
cancelWithRefund({ id, }: {
|
|
13402
|
+
cancelWithRefund({ id, requestBody, }: {
|
|
13351
13403
|
/**
|
|
13352
13404
|
* The Order id.
|
|
13353
13405
|
*/
|
|
13354
13406
|
id: string;
|
|
13407
|
+
/**
|
|
13408
|
+
* The order items in the case of a partial refund.
|
|
13409
|
+
*/
|
|
13410
|
+
requestBody?: Array<string>;
|
|
13355
13411
|
}): CancelablePromise<Order>;
|
|
13356
13412
|
/**
|
|
13357
13413
|
* Cancels the order.
|
|
@@ -20055,7 +20111,7 @@ type SurveySubmit = {
|
|
|
20055
20111
|
/**
|
|
20056
20112
|
* Gets or sets the survey id.
|
|
20057
20113
|
*/
|
|
20058
|
-
surveyId
|
|
20114
|
+
surveyId?: string;
|
|
20059
20115
|
/**
|
|
20060
20116
|
* Gets or sets the order item id.
|
|
20061
20117
|
*/
|
package/dist/reach-sdk.js
CHANGED
|
@@ -540,6 +540,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
540
540
|
* @throws ApiError
|
|
541
541
|
*/
|
|
542
542
|
exists({
|
|
543
|
+
venueId,
|
|
543
544
|
customerId,
|
|
544
545
|
firstName,
|
|
545
546
|
lastName,
|
|
@@ -558,6 +559,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
558
559
|
method: "GET",
|
|
559
560
|
url: "/api/attendees/exists",
|
|
560
561
|
query: {
|
|
562
|
+
VenueId: venueId,
|
|
561
563
|
CustomerId: customerId,
|
|
562
564
|
FirstName: firstName,
|
|
563
565
|
LastName: lastName,
|
|
@@ -585,6 +587,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
585
587
|
* @throws ApiError
|
|
586
588
|
*/
|
|
587
589
|
getPage({
|
|
590
|
+
venueId,
|
|
588
591
|
customerId,
|
|
589
592
|
firstName,
|
|
590
593
|
lastName,
|
|
@@ -603,6 +606,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
603
606
|
method: "GET",
|
|
604
607
|
url: "/api/attendees",
|
|
605
608
|
query: {
|
|
609
|
+
VenueId: venueId,
|
|
606
610
|
CustomerId: customerId,
|
|
607
611
|
FirstName: firstName,
|
|
608
612
|
LastName: lastName,
|
|
@@ -650,6 +654,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
650
654
|
* @throws ApiError
|
|
651
655
|
*/
|
|
652
656
|
getListIdName({
|
|
657
|
+
venueId,
|
|
653
658
|
customerId,
|
|
654
659
|
firstName,
|
|
655
660
|
lastName,
|
|
@@ -668,6 +673,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
668
673
|
method: "GET",
|
|
669
674
|
url: "/api/attendees/id-name",
|
|
670
675
|
query: {
|
|
676
|
+
VenueId: venueId,
|
|
671
677
|
CustomerId: customerId,
|
|
672
678
|
FirstName: firstName,
|
|
673
679
|
LastName: lastName,
|
|
@@ -7791,6 +7797,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7791
7797
|
courseId,
|
|
7792
7798
|
confirmed,
|
|
7793
7799
|
checkedIn,
|
|
7800
|
+
moved,
|
|
7801
|
+
movedFrom,
|
|
7794
7802
|
pageNumber,
|
|
7795
7803
|
take,
|
|
7796
7804
|
limitListRequests,
|
|
@@ -7813,6 +7821,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7813
7821
|
CourseId: courseId,
|
|
7814
7822
|
Confirmed: confirmed,
|
|
7815
7823
|
CheckedIn: checkedIn,
|
|
7824
|
+
Moved: moved,
|
|
7825
|
+
MovedFrom: movedFrom,
|
|
7816
7826
|
PageNumber: pageNumber,
|
|
7817
7827
|
Take: take,
|
|
7818
7828
|
LimitListRequests: limitListRequests,
|
|
@@ -7844,6 +7854,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7844
7854
|
courseId,
|
|
7845
7855
|
confirmed,
|
|
7846
7856
|
checkedIn,
|
|
7857
|
+
moved,
|
|
7858
|
+
movedFrom,
|
|
7847
7859
|
pageNumber,
|
|
7848
7860
|
take,
|
|
7849
7861
|
limitListRequests,
|
|
@@ -7866,6 +7878,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7866
7878
|
CourseId: courseId,
|
|
7867
7879
|
Confirmed: confirmed,
|
|
7868
7880
|
CheckedIn: checkedIn,
|
|
7881
|
+
Moved: moved,
|
|
7882
|
+
MovedFrom: movedFrom,
|
|
7869
7883
|
PageNumber: pageNumber,
|
|
7870
7884
|
Take: take,
|
|
7871
7885
|
LimitListRequests: limitListRequests,
|
|
@@ -7917,6 +7931,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7917
7931
|
courseId,
|
|
7918
7932
|
confirmed,
|
|
7919
7933
|
checkedIn,
|
|
7934
|
+
moved,
|
|
7935
|
+
movedFrom,
|
|
7920
7936
|
pageNumber,
|
|
7921
7937
|
take,
|
|
7922
7938
|
limitListRequests,
|
|
@@ -7939,6 +7955,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
7939
7955
|
CourseId: courseId,
|
|
7940
7956
|
Confirmed: confirmed,
|
|
7941
7957
|
CheckedIn: checkedIn,
|
|
7958
|
+
Moved: moved,
|
|
7959
|
+
MovedFrom: movedFrom,
|
|
7942
7960
|
PageNumber: pageNumber,
|
|
7943
7961
|
Take: take,
|
|
7944
7962
|
LimitListRequests: limitListRequests,
|
|
@@ -8394,7 +8412,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8394
8412
|
* @throws ApiError
|
|
8395
8413
|
*/
|
|
8396
8414
|
cancel({
|
|
8397
|
-
id
|
|
8415
|
+
id,
|
|
8416
|
+
requestBody
|
|
8398
8417
|
}) {
|
|
8399
8418
|
return this.httpRequest.request({
|
|
8400
8419
|
method: "POST",
|
|
@@ -8402,6 +8421,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8402
8421
|
path: {
|
|
8403
8422
|
id
|
|
8404
8423
|
},
|
|
8424
|
+
body: requestBody,
|
|
8425
|
+
mediaType: "application/json",
|
|
8405
8426
|
errors: {
|
|
8406
8427
|
400: `Bad Request`,
|
|
8407
8428
|
422: `Client Error`,
|
|
@@ -8415,7 +8436,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8415
8436
|
* @throws ApiError
|
|
8416
8437
|
*/
|
|
8417
8438
|
refund({
|
|
8418
|
-
id
|
|
8439
|
+
id,
|
|
8440
|
+
requestBody
|
|
8419
8441
|
}) {
|
|
8420
8442
|
return this.httpRequest.request({
|
|
8421
8443
|
method: "POST",
|
|
@@ -8423,6 +8445,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8423
8445
|
path: {
|
|
8424
8446
|
id
|
|
8425
8447
|
},
|
|
8448
|
+
body: requestBody,
|
|
8449
|
+
mediaType: "application/json",
|
|
8426
8450
|
errors: {
|
|
8427
8451
|
400: `Bad Request`,
|
|
8428
8452
|
422: `Client Error`,
|
|
@@ -8436,7 +8460,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8436
8460
|
* @throws ApiError
|
|
8437
8461
|
*/
|
|
8438
8462
|
cancelWithRefund({
|
|
8439
|
-
id
|
|
8463
|
+
id,
|
|
8464
|
+
requestBody
|
|
8440
8465
|
}) {
|
|
8441
8466
|
return this.httpRequest.request({
|
|
8442
8467
|
method: "POST",
|
|
@@ -8444,6 +8469,8 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8444
8469
|
path: {
|
|
8445
8470
|
id
|
|
8446
8471
|
},
|
|
8472
|
+
body: requestBody,
|
|
8473
|
+
mediaType: "application/json",
|
|
8447
8474
|
errors: {
|
|
8448
8475
|
400: `Bad Request`,
|
|
8449
8476
|
422: `Client Error`,
|
|
@@ -8527,7 +8554,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
8527
8554
|
}) {
|
|
8528
8555
|
return this.httpRequest.request({
|
|
8529
8556
|
method: "GET",
|
|
8530
|
-
url: "/api/orders/{id}/send-make-payment",
|
|
8557
|
+
url: "/api/orders/v2-temporary-route/{id}/send-make-payment",
|
|
8531
8558
|
path: {
|
|
8532
8559
|
id
|
|
8533
8560
|
},
|
package/package.json
CHANGED
|
@@ -502,6 +502,12 @@ paths:
|
|
|
502
502
|
summary: Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
503
503
|
operationId: Exists
|
|
504
504
|
parameters:
|
|
505
|
+
- name: VenueId
|
|
506
|
+
in: query
|
|
507
|
+
description: Gets or sets the queryable venue id.
|
|
508
|
+
schema:
|
|
509
|
+
type: string
|
|
510
|
+
format: uuid
|
|
505
511
|
- name: CustomerId
|
|
506
512
|
in: query
|
|
507
513
|
description: Gets or sets the queryable customer id.
|
|
@@ -633,6 +639,12 @@ paths:
|
|
|
633
639
|
summary: Gets a list of resources.
|
|
634
640
|
operationId: GetPage
|
|
635
641
|
parameters:
|
|
642
|
+
- name: VenueId
|
|
643
|
+
in: query
|
|
644
|
+
description: Gets or sets the queryable venue id.
|
|
645
|
+
schema:
|
|
646
|
+
type: string
|
|
647
|
+
format: uuid
|
|
636
648
|
- name: CustomerId
|
|
637
649
|
in: query
|
|
638
650
|
description: Gets or sets the queryable customer id.
|
|
@@ -820,6 +832,12 @@ paths:
|
|
|
820
832
|
summary: Gets a list of resources.
|
|
821
833
|
operationId: GetListIdName
|
|
822
834
|
parameters:
|
|
835
|
+
- name: VenueId
|
|
836
|
+
in: query
|
|
837
|
+
description: Gets or sets the queryable venue id.
|
|
838
|
+
schema:
|
|
839
|
+
type: string
|
|
840
|
+
format: uuid
|
|
823
841
|
- name: CustomerId
|
|
824
842
|
in: query
|
|
825
843
|
description: Gets or sets the queryable customer id.
|
|
@@ -22351,6 +22369,17 @@ paths:
|
|
|
22351
22369
|
description: Gets or sets the queryable attendee checked in value.
|
|
22352
22370
|
schema:
|
|
22353
22371
|
type: boolean
|
|
22372
|
+
- name: Moved
|
|
22373
|
+
in: query
|
|
22374
|
+
description: Gets or sets the queryable attendee moved value.
|
|
22375
|
+
schema:
|
|
22376
|
+
type: boolean
|
|
22377
|
+
- name: MovedFrom
|
|
22378
|
+
in: query
|
|
22379
|
+
description: Gets or sets the queryable opportunity register that the attendee was moved from.
|
|
22380
|
+
schema:
|
|
22381
|
+
type: string
|
|
22382
|
+
format: uuid
|
|
22354
22383
|
- name: PageNumber
|
|
22355
22384
|
in: query
|
|
22356
22385
|
description: Gets or sets the page number for paged queries.
|
|
@@ -22508,6 +22537,17 @@ paths:
|
|
|
22508
22537
|
description: Gets or sets the queryable attendee checked in value.
|
|
22509
22538
|
schema:
|
|
22510
22539
|
type: boolean
|
|
22540
|
+
- name: Moved
|
|
22541
|
+
in: query
|
|
22542
|
+
description: Gets or sets the queryable attendee moved value.
|
|
22543
|
+
schema:
|
|
22544
|
+
type: boolean
|
|
22545
|
+
- name: MovedFrom
|
|
22546
|
+
in: query
|
|
22547
|
+
description: Gets or sets the queryable opportunity register that the attendee was moved from.
|
|
22548
|
+
schema:
|
|
22549
|
+
type: string
|
|
22550
|
+
format: uuid
|
|
22511
22551
|
- name: PageNumber
|
|
22512
22552
|
in: query
|
|
22513
22553
|
description: Gets or sets the page number for paged queries.
|
|
@@ -22721,6 +22761,17 @@ paths:
|
|
|
22721
22761
|
description: Gets or sets the queryable attendee checked in value.
|
|
22722
22762
|
schema:
|
|
22723
22763
|
type: boolean
|
|
22764
|
+
- name: Moved
|
|
22765
|
+
in: query
|
|
22766
|
+
description: Gets or sets the queryable attendee moved value.
|
|
22767
|
+
schema:
|
|
22768
|
+
type: boolean
|
|
22769
|
+
- name: MovedFrom
|
|
22770
|
+
in: query
|
|
22771
|
+
description: Gets or sets the queryable opportunity register that the attendee was moved from.
|
|
22772
|
+
schema:
|
|
22773
|
+
type: string
|
|
22774
|
+
format: uuid
|
|
22724
22775
|
- name: PageNumber
|
|
22725
22776
|
in: query
|
|
22726
22777
|
description: Gets or sets the page number for paged queries.
|
|
@@ -24187,6 +24238,27 @@ paths:
|
|
|
24187
24238
|
schema:
|
|
24188
24239
|
type: string
|
|
24189
24240
|
format: uuid
|
|
24241
|
+
requestBody:
|
|
24242
|
+
description: The order items in the case of a partial refund.
|
|
24243
|
+
content:
|
|
24244
|
+
application/json:
|
|
24245
|
+
schema:
|
|
24246
|
+
type: array
|
|
24247
|
+
items:
|
|
24248
|
+
type: string
|
|
24249
|
+
format: uuid
|
|
24250
|
+
text/json:
|
|
24251
|
+
schema:
|
|
24252
|
+
type: array
|
|
24253
|
+
items:
|
|
24254
|
+
type: string
|
|
24255
|
+
format: uuid
|
|
24256
|
+
application/*+json:
|
|
24257
|
+
schema:
|
|
24258
|
+
type: array
|
|
24259
|
+
items:
|
|
24260
|
+
type: string
|
|
24261
|
+
format: uuid
|
|
24190
24262
|
responses:
|
|
24191
24263
|
'200':
|
|
24192
24264
|
description: Success
|
|
@@ -24250,6 +24322,27 @@ paths:
|
|
|
24250
24322
|
schema:
|
|
24251
24323
|
type: string
|
|
24252
24324
|
format: uuid
|
|
24325
|
+
requestBody:
|
|
24326
|
+
description: The order items in the case of a partial refund.
|
|
24327
|
+
content:
|
|
24328
|
+
application/json:
|
|
24329
|
+
schema:
|
|
24330
|
+
type: array
|
|
24331
|
+
items:
|
|
24332
|
+
type: string
|
|
24333
|
+
format: uuid
|
|
24334
|
+
text/json:
|
|
24335
|
+
schema:
|
|
24336
|
+
type: array
|
|
24337
|
+
items:
|
|
24338
|
+
type: string
|
|
24339
|
+
format: uuid
|
|
24340
|
+
application/*+json:
|
|
24341
|
+
schema:
|
|
24342
|
+
type: array
|
|
24343
|
+
items:
|
|
24344
|
+
type: string
|
|
24345
|
+
format: uuid
|
|
24253
24346
|
responses:
|
|
24254
24347
|
'200':
|
|
24255
24348
|
description: Success
|
|
@@ -24313,6 +24406,27 @@ paths:
|
|
|
24313
24406
|
schema:
|
|
24314
24407
|
type: string
|
|
24315
24408
|
format: uuid
|
|
24409
|
+
requestBody:
|
|
24410
|
+
description: The order items in the case of a partial refund.
|
|
24411
|
+
content:
|
|
24412
|
+
application/json:
|
|
24413
|
+
schema:
|
|
24414
|
+
type: array
|
|
24415
|
+
items:
|
|
24416
|
+
type: string
|
|
24417
|
+
format: uuid
|
|
24418
|
+
text/json:
|
|
24419
|
+
schema:
|
|
24420
|
+
type: array
|
|
24421
|
+
items:
|
|
24422
|
+
type: string
|
|
24423
|
+
format: uuid
|
|
24424
|
+
application/*+json:
|
|
24425
|
+
schema:
|
|
24426
|
+
type: array
|
|
24427
|
+
items:
|
|
24428
|
+
type: string
|
|
24429
|
+
format: uuid
|
|
24316
24430
|
responses:
|
|
24317
24431
|
'200':
|
|
24318
24432
|
description: Success
|
|
@@ -24553,7 +24667,7 @@ paths:
|
|
|
24553
24667
|
text/json:
|
|
24554
24668
|
schema:
|
|
24555
24669
|
$ref: '#/components/schemas/ValidationResultModel'
|
|
24556
|
-
'/api/orders/{id}/send-make-payment':
|
|
24670
|
+
'/api/orders/v2-temporary-route/{id}/send-make-payment':
|
|
24557
24671
|
get:
|
|
24558
24672
|
tags:
|
|
24559
24673
|
- Orders
|
|
@@ -69357,6 +69471,7 @@ components:
|
|
|
69357
69471
|
- lastName
|
|
69358
69472
|
- nameAbbreviation
|
|
69359
69473
|
- tenantId
|
|
69474
|
+
- venueId
|
|
69360
69475
|
type: object
|
|
69361
69476
|
properties:
|
|
69362
69477
|
id:
|
|
@@ -69384,6 +69499,10 @@ components:
|
|
|
69384
69499
|
type: boolean
|
|
69385
69500
|
description: Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
69386
69501
|
default: false
|
|
69502
|
+
venueId:
|
|
69503
|
+
type: string
|
|
69504
|
+
description: Gets or sets the venue id.
|
|
69505
|
+
format: uuid
|
|
69387
69506
|
customerId:
|
|
69388
69507
|
type: string
|
|
69389
69508
|
description: Gets or sets the customer id.
|
|
@@ -69440,6 +69559,9 @@ components:
|
|
|
69440
69559
|
description: Post model for attendee updates.
|
|
69441
69560
|
AttendeePost:
|
|
69442
69561
|
required:
|
|
69562
|
+
- customerId
|
|
69563
|
+
- firstName
|
|
69564
|
+
- lastName
|
|
69443
69565
|
- tenantId
|
|
69444
69566
|
type: object
|
|
69445
69567
|
properties:
|
|
@@ -69448,13 +69570,17 @@ components:
|
|
|
69448
69570
|
description: Gets or sets the tenant Id.
|
|
69449
69571
|
format: uuid
|
|
69450
69572
|
firstName:
|
|
69573
|
+
minLength: 1
|
|
69451
69574
|
type: string
|
|
69452
69575
|
description: Gets or sets the attendee first name.
|
|
69453
|
-
nullable: true
|
|
69454
69576
|
lastName:
|
|
69577
|
+
minLength: 1
|
|
69455
69578
|
type: string
|
|
69456
69579
|
description: Gets or sets the attendee last name.
|
|
69457
|
-
|
|
69580
|
+
customerId:
|
|
69581
|
+
type: string
|
|
69582
|
+
description: Gets or sets the attendee last name.
|
|
69583
|
+
format: uuid
|
|
69458
69584
|
additionalProperties: false
|
|
69459
69585
|
description: Post model for attendee inserts.
|
|
69460
69586
|
AutoCompleteResponseModel:
|
|
@@ -77098,7 +77224,6 @@ components:
|
|
|
77098
77224
|
required:
|
|
77099
77225
|
- attendees
|
|
77100
77226
|
- orderItemId
|
|
77101
|
-
- surveyId
|
|
77102
77227
|
- tenantId
|
|
77103
77228
|
type: object
|
|
77104
77229
|
properties:
|
package/src/models/Attendee.ts
CHANGED
|
@@ -31,6 +31,10 @@ export type Attendee = {
|
|
|
31
31
|
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
32
32
|
*/
|
|
33
33
|
isLive: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* Gets or sets the venue id.
|
|
36
|
+
*/
|
|
37
|
+
venueId: string;
|
|
34
38
|
/**
|
|
35
39
|
* Gets or sets the customer id.
|
|
36
40
|
*/
|
|
@@ -14,9 +14,13 @@ export type AttendeePost = {
|
|
|
14
14
|
/**
|
|
15
15
|
* Gets or sets the attendee first name.
|
|
16
16
|
*/
|
|
17
|
-
firstName
|
|
17
|
+
firstName: string;
|
|
18
18
|
/**
|
|
19
19
|
* Gets or sets the attendee last name.
|
|
20
20
|
*/
|
|
21
|
-
lastName
|
|
21
|
+
lastName: string;
|
|
22
|
+
/**
|
|
23
|
+
* Gets or sets the attendee last name.
|
|
24
|
+
*/
|
|
25
|
+
customerId: string;
|
|
22
26
|
};
|
|
@@ -74,6 +74,7 @@ export class AttendeesService {
|
|
|
74
74
|
* @throws ApiError
|
|
75
75
|
*/
|
|
76
76
|
public exists({
|
|
77
|
+
venueId,
|
|
77
78
|
customerId,
|
|
78
79
|
firstName,
|
|
79
80
|
lastName,
|
|
@@ -88,6 +89,10 @@ export class AttendeesService {
|
|
|
88
89
|
isLive,
|
|
89
90
|
sortOrderDirection,
|
|
90
91
|
}: {
|
|
92
|
+
/**
|
|
93
|
+
* Gets or sets the queryable venue id.
|
|
94
|
+
*/
|
|
95
|
+
venueId?: string;
|
|
91
96
|
/**
|
|
92
97
|
* Gets or sets the queryable customer id.
|
|
93
98
|
*/
|
|
@@ -145,6 +150,7 @@ export class AttendeesService {
|
|
|
145
150
|
method: 'GET',
|
|
146
151
|
url: '/api/attendees/exists',
|
|
147
152
|
query: {
|
|
153
|
+
VenueId: venueId,
|
|
148
154
|
CustomerId: customerId,
|
|
149
155
|
FirstName: firstName,
|
|
150
156
|
LastName: lastName,
|
|
@@ -173,6 +179,7 @@ export class AttendeesService {
|
|
|
173
179
|
* @throws ApiError
|
|
174
180
|
*/
|
|
175
181
|
public getPage({
|
|
182
|
+
venueId,
|
|
176
183
|
customerId,
|
|
177
184
|
firstName,
|
|
178
185
|
lastName,
|
|
@@ -187,6 +194,10 @@ export class AttendeesService {
|
|
|
187
194
|
isLive,
|
|
188
195
|
sortOrderDirection,
|
|
189
196
|
}: {
|
|
197
|
+
/**
|
|
198
|
+
* Gets or sets the queryable venue id.
|
|
199
|
+
*/
|
|
200
|
+
venueId?: string;
|
|
190
201
|
/**
|
|
191
202
|
* Gets or sets the queryable customer id.
|
|
192
203
|
*/
|
|
@@ -244,6 +255,7 @@ export class AttendeesService {
|
|
|
244
255
|
method: 'GET',
|
|
245
256
|
url: '/api/attendees',
|
|
246
257
|
query: {
|
|
258
|
+
VenueId: venueId,
|
|
247
259
|
CustomerId: customerId,
|
|
248
260
|
FirstName: firstName,
|
|
249
261
|
LastName: lastName,
|
|
@@ -298,6 +310,7 @@ export class AttendeesService {
|
|
|
298
310
|
* @throws ApiError
|
|
299
311
|
*/
|
|
300
312
|
public getListIdName({
|
|
313
|
+
venueId,
|
|
301
314
|
customerId,
|
|
302
315
|
firstName,
|
|
303
316
|
lastName,
|
|
@@ -312,6 +325,10 @@ export class AttendeesService {
|
|
|
312
325
|
isLive,
|
|
313
326
|
sortOrderDirection,
|
|
314
327
|
}: {
|
|
328
|
+
/**
|
|
329
|
+
* Gets or sets the queryable venue id.
|
|
330
|
+
*/
|
|
331
|
+
venueId?: string;
|
|
315
332
|
/**
|
|
316
333
|
* Gets or sets the queryable customer id.
|
|
317
334
|
*/
|
|
@@ -369,6 +386,7 @@ export class AttendeesService {
|
|
|
369
386
|
method: 'GET',
|
|
370
387
|
url: '/api/attendees/id-name',
|
|
371
388
|
query: {
|
|
389
|
+
VenueId: venueId,
|
|
372
390
|
CustomerId: customerId,
|
|
373
391
|
FirstName: firstName,
|
|
374
392
|
LastName: lastName,
|
|
@@ -114,6 +114,8 @@ export class OpportunityRegisterService {
|
|
|
114
114
|
courseId,
|
|
115
115
|
confirmed,
|
|
116
116
|
checkedIn,
|
|
117
|
+
moved,
|
|
118
|
+
movedFrom,
|
|
117
119
|
pageNumber,
|
|
118
120
|
take,
|
|
119
121
|
limitListRequests,
|
|
@@ -153,6 +155,14 @@ export class OpportunityRegisterService {
|
|
|
153
155
|
* Gets or sets the queryable attendee checked in value.
|
|
154
156
|
*/
|
|
155
157
|
checkedIn?: boolean;
|
|
158
|
+
/**
|
|
159
|
+
* Gets or sets the queryable attendee moved value.
|
|
160
|
+
*/
|
|
161
|
+
moved?: boolean;
|
|
162
|
+
/**
|
|
163
|
+
* Gets or sets the queryable opportunity register that the attendee was moved from.
|
|
164
|
+
*/
|
|
165
|
+
movedFrom?: string;
|
|
156
166
|
/**
|
|
157
167
|
* Gets or sets the page number for paged queries.
|
|
158
168
|
*/
|
|
@@ -205,6 +215,8 @@ export class OpportunityRegisterService {
|
|
|
205
215
|
CourseId: courseId,
|
|
206
216
|
Confirmed: confirmed,
|
|
207
217
|
CheckedIn: checkedIn,
|
|
218
|
+
Moved: moved,
|
|
219
|
+
MovedFrom: movedFrom,
|
|
208
220
|
PageNumber: pageNumber,
|
|
209
221
|
Take: take,
|
|
210
222
|
LimitListRequests: limitListRequests,
|
|
@@ -237,6 +249,8 @@ export class OpportunityRegisterService {
|
|
|
237
249
|
courseId,
|
|
238
250
|
confirmed,
|
|
239
251
|
checkedIn,
|
|
252
|
+
moved,
|
|
253
|
+
movedFrom,
|
|
240
254
|
pageNumber,
|
|
241
255
|
take,
|
|
242
256
|
limitListRequests,
|
|
@@ -276,6 +290,14 @@ export class OpportunityRegisterService {
|
|
|
276
290
|
* Gets or sets the queryable attendee checked in value.
|
|
277
291
|
*/
|
|
278
292
|
checkedIn?: boolean;
|
|
293
|
+
/**
|
|
294
|
+
* Gets or sets the queryable attendee moved value.
|
|
295
|
+
*/
|
|
296
|
+
moved?: boolean;
|
|
297
|
+
/**
|
|
298
|
+
* Gets or sets the queryable opportunity register that the attendee was moved from.
|
|
299
|
+
*/
|
|
300
|
+
movedFrom?: string;
|
|
279
301
|
/**
|
|
280
302
|
* Gets or sets the page number for paged queries.
|
|
281
303
|
*/
|
|
@@ -328,6 +350,8 @@ export class OpportunityRegisterService {
|
|
|
328
350
|
CourseId: courseId,
|
|
329
351
|
Confirmed: confirmed,
|
|
330
352
|
CheckedIn: checkedIn,
|
|
353
|
+
Moved: moved,
|
|
354
|
+
MovedFrom: movedFrom,
|
|
331
355
|
PageNumber: pageNumber,
|
|
332
356
|
Take: take,
|
|
333
357
|
LimitListRequests: limitListRequests,
|
|
@@ -386,6 +410,8 @@ export class OpportunityRegisterService {
|
|
|
386
410
|
courseId,
|
|
387
411
|
confirmed,
|
|
388
412
|
checkedIn,
|
|
413
|
+
moved,
|
|
414
|
+
movedFrom,
|
|
389
415
|
pageNumber,
|
|
390
416
|
take,
|
|
391
417
|
limitListRequests,
|
|
@@ -425,6 +451,14 @@ export class OpportunityRegisterService {
|
|
|
425
451
|
* Gets or sets the queryable attendee checked in value.
|
|
426
452
|
*/
|
|
427
453
|
checkedIn?: boolean;
|
|
454
|
+
/**
|
|
455
|
+
* Gets or sets the queryable attendee moved value.
|
|
456
|
+
*/
|
|
457
|
+
moved?: boolean;
|
|
458
|
+
/**
|
|
459
|
+
* Gets or sets the queryable opportunity register that the attendee was moved from.
|
|
460
|
+
*/
|
|
461
|
+
movedFrom?: string;
|
|
428
462
|
/**
|
|
429
463
|
* Gets or sets the page number for paged queries.
|
|
430
464
|
*/
|
|
@@ -477,6 +511,8 @@ export class OpportunityRegisterService {
|
|
|
477
511
|
CourseId: courseId,
|
|
478
512
|
Confirmed: confirmed,
|
|
479
513
|
CheckedIn: checkedIn,
|
|
514
|
+
Moved: moved,
|
|
515
|
+
MovedFrom: movedFrom,
|
|
480
516
|
PageNumber: pageNumber,
|
|
481
517
|
Take: take,
|
|
482
518
|
LimitListRequests: limitListRequests,
|
|
@@ -23,11 +23,16 @@ export class OrdersService {
|
|
|
23
23
|
*/
|
|
24
24
|
public cancel({
|
|
25
25
|
id,
|
|
26
|
+
requestBody,
|
|
26
27
|
}: {
|
|
27
28
|
/**
|
|
28
29
|
* The Order id.
|
|
29
30
|
*/
|
|
30
31
|
id: string;
|
|
32
|
+
/**
|
|
33
|
+
* The order items in the case of a partial refund.
|
|
34
|
+
*/
|
|
35
|
+
requestBody?: Array<string>;
|
|
31
36
|
}): CancelablePromise<Order> {
|
|
32
37
|
return this.httpRequest.request({
|
|
33
38
|
method: 'POST',
|
|
@@ -35,6 +40,8 @@ export class OrdersService {
|
|
|
35
40
|
path: {
|
|
36
41
|
id: id,
|
|
37
42
|
},
|
|
43
|
+
body: requestBody,
|
|
44
|
+
mediaType: 'application/json',
|
|
38
45
|
errors: {
|
|
39
46
|
400: `Bad Request`,
|
|
40
47
|
422: `Client Error`,
|
|
@@ -50,11 +57,16 @@ export class OrdersService {
|
|
|
50
57
|
*/
|
|
51
58
|
public refund({
|
|
52
59
|
id,
|
|
60
|
+
requestBody,
|
|
53
61
|
}: {
|
|
54
62
|
/**
|
|
55
63
|
* The Order id.
|
|
56
64
|
*/
|
|
57
65
|
id: string;
|
|
66
|
+
/**
|
|
67
|
+
* The order items in the case of a partial refund.
|
|
68
|
+
*/
|
|
69
|
+
requestBody?: Array<string>;
|
|
58
70
|
}): CancelablePromise<Order> {
|
|
59
71
|
return this.httpRequest.request({
|
|
60
72
|
method: 'POST',
|
|
@@ -62,6 +74,8 @@ export class OrdersService {
|
|
|
62
74
|
path: {
|
|
63
75
|
id: id,
|
|
64
76
|
},
|
|
77
|
+
body: requestBody,
|
|
78
|
+
mediaType: 'application/json',
|
|
65
79
|
errors: {
|
|
66
80
|
400: `Bad Request`,
|
|
67
81
|
422: `Client Error`,
|
|
@@ -77,11 +91,16 @@ export class OrdersService {
|
|
|
77
91
|
*/
|
|
78
92
|
public cancelWithRefund({
|
|
79
93
|
id,
|
|
94
|
+
requestBody,
|
|
80
95
|
}: {
|
|
81
96
|
/**
|
|
82
97
|
* The Order id.
|
|
83
98
|
*/
|
|
84
99
|
id: string;
|
|
100
|
+
/**
|
|
101
|
+
* The order items in the case of a partial refund.
|
|
102
|
+
*/
|
|
103
|
+
requestBody?: Array<string>;
|
|
85
104
|
}): CancelablePromise<Order> {
|
|
86
105
|
return this.httpRequest.request({
|
|
87
106
|
method: 'POST',
|
|
@@ -89,6 +108,8 @@ export class OrdersService {
|
|
|
89
108
|
path: {
|
|
90
109
|
id: id,
|
|
91
110
|
},
|
|
111
|
+
body: requestBody,
|
|
112
|
+
mediaType: 'application/json',
|
|
92
113
|
errors: {
|
|
93
114
|
400: `Bad Request`,
|
|
94
115
|
422: `Client Error`,
|
|
@@ -200,7 +221,7 @@ export class OrdersService {
|
|
|
200
221
|
}): CancelablePromise<any> {
|
|
201
222
|
return this.httpRequest.request({
|
|
202
223
|
method: 'GET',
|
|
203
|
-
url: '/api/orders/{id}/send-make-payment',
|
|
224
|
+
url: '/api/orders/v2-temporary-route/{id}/send-make-payment',
|
|
204
225
|
path: {
|
|
205
226
|
id: id,
|
|
206
227
|
},
|