reach-api-sdk 1.0.49 → 1.0.50

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.
@@ -12644,7 +12644,7 @@ declare class OpportunityRegisterService {
12644
12644
  * @returns boolean Success
12645
12645
  * @throws ApiError
12646
12646
  */
12647
- exists({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12647
+ exists({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, moved, movedFrom, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12648
12648
  /**
12649
12649
  * Gets or sets the queryable order item id.
12650
12650
  */
@@ -12673,6 +12673,14 @@ declare class OpportunityRegisterService {
12673
12673
  * Gets or sets the queryable attendee checked in value.
12674
12674
  */
12675
12675
  checkedIn?: boolean;
12676
+ /**
12677
+ * Gets or sets the queryable attendee moved value.
12678
+ */
12679
+ moved?: boolean;
12680
+ /**
12681
+ * Gets or sets the queryable opportunity register that the attendee was moved from.
12682
+ */
12683
+ movedFrom?: string;
12676
12684
  /**
12677
12685
  * Gets or sets the page number for paged queries.
12678
12686
  */
@@ -12719,7 +12727,7 @@ declare class OpportunityRegisterService {
12719
12727
  * @returns OpportunityRegisterPage Success
12720
12728
  * @throws ApiError
12721
12729
  */
12722
- getPage({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12730
+ getPage({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, moved, movedFrom, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12723
12731
  /**
12724
12732
  * Gets or sets the queryable order item id.
12725
12733
  */
@@ -12748,6 +12756,14 @@ declare class OpportunityRegisterService {
12748
12756
  * Gets or sets the queryable attendee checked in value.
12749
12757
  */
12750
12758
  checkedIn?: boolean;
12759
+ /**
12760
+ * Gets or sets the queryable attendee moved value.
12761
+ */
12762
+ moved?: boolean;
12763
+ /**
12764
+ * Gets or sets the queryable opportunity register that the attendee was moved from.
12765
+ */
12766
+ movedFrom?: string;
12751
12767
  /**
12752
12768
  * Gets or sets the page number for paged queries.
12753
12769
  */
@@ -12805,7 +12821,7 @@ declare class OpportunityRegisterService {
12805
12821
  * @returns OpportunityRegister Success
12806
12822
  * @throws ApiError
12807
12823
  */
12808
- getListIdName({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12824
+ getListIdName({ orderItemId, orderItemIds, attendeeId, scheduledSessionId, courseId, confirmed, checkedIn, moved, movedFrom, pageNumber, take, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
12809
12825
  /**
12810
12826
  * Gets or sets the queryable order item id.
12811
12827
  */
@@ -12834,6 +12850,14 @@ declare class OpportunityRegisterService {
12834
12850
  * Gets or sets the queryable attendee checked in value.
12835
12851
  */
12836
12852
  checkedIn?: boolean;
12853
+ /**
12854
+ * Gets or sets the queryable attendee moved value.
12855
+ */
12856
+ moved?: boolean;
12857
+ /**
12858
+ * Gets or sets the queryable opportunity register that the attendee was moved from.
12859
+ */
12860
+ movedFrom?: string;
12837
12861
  /**
12838
12862
  * Gets or sets the page number for paged queries.
12839
12863
  */
@@ -13325,33 +13349,45 @@ declare class OrdersService {
13325
13349
  * @returns Order Success
13326
13350
  * @throws ApiError
13327
13351
  */
13328
- cancel({ id, }: {
13352
+ cancel({ id, requestBody, }: {
13329
13353
  /**
13330
13354
  * The Order id.
13331
13355
  */
13332
13356
  id: string;
13357
+ /**
13358
+ * The order items in the case of a partial refund.
13359
+ */
13360
+ requestBody?: Array<string>;
13333
13361
  }): CancelablePromise<Order>;
13334
13362
  /**
13335
13363
  * Requests a refund for the order.
13336
13364
  * @returns Order Success
13337
13365
  * @throws ApiError
13338
13366
  */
13339
- refund({ id, }: {
13367
+ refund({ id, requestBody, }: {
13340
13368
  /**
13341
13369
  * The Order id.
13342
13370
  */
13343
13371
  id: string;
13372
+ /**
13373
+ * The order items in the case of a partial refund.
13374
+ */
13375
+ requestBody?: Array<string>;
13344
13376
  }): CancelablePromise<Order>;
13345
13377
  /**
13346
13378
  * Cancels the order and requests a refund.
13347
13379
  * @returns Order Success
13348
13380
  * @throws ApiError
13349
13381
  */
13350
- cancelWithRefund({ id, }: {
13382
+ cancelWithRefund({ id, requestBody, }: {
13351
13383
  /**
13352
13384
  * The Order id.
13353
13385
  */
13354
13386
  id: string;
13387
+ /**
13388
+ * The order items in the case of a partial refund.
13389
+ */
13390
+ requestBody?: Array<string>;
13355
13391
  }): CancelablePromise<Order>;
13356
13392
  /**
13357
13393
  * Cancels the order.
package/dist/reach-sdk.js CHANGED
@@ -7791,6 +7791,8 @@ const request = (config, options, axiosClient = axios) => {
7791
7791
  courseId,
7792
7792
  confirmed,
7793
7793
  checkedIn,
7794
+ moved,
7795
+ movedFrom,
7794
7796
  pageNumber,
7795
7797
  take,
7796
7798
  limitListRequests,
@@ -7813,6 +7815,8 @@ const request = (config, options, axiosClient = axios) => {
7813
7815
  CourseId: courseId,
7814
7816
  Confirmed: confirmed,
7815
7817
  CheckedIn: checkedIn,
7818
+ Moved: moved,
7819
+ MovedFrom: movedFrom,
7816
7820
  PageNumber: pageNumber,
7817
7821
  Take: take,
7818
7822
  LimitListRequests: limitListRequests,
@@ -7844,6 +7848,8 @@ const request = (config, options, axiosClient = axios) => {
7844
7848
  courseId,
7845
7849
  confirmed,
7846
7850
  checkedIn,
7851
+ moved,
7852
+ movedFrom,
7847
7853
  pageNumber,
7848
7854
  take,
7849
7855
  limitListRequests,
@@ -7866,6 +7872,8 @@ const request = (config, options, axiosClient = axios) => {
7866
7872
  CourseId: courseId,
7867
7873
  Confirmed: confirmed,
7868
7874
  CheckedIn: checkedIn,
7875
+ Moved: moved,
7876
+ MovedFrom: movedFrom,
7869
7877
  PageNumber: pageNumber,
7870
7878
  Take: take,
7871
7879
  LimitListRequests: limitListRequests,
@@ -7917,6 +7925,8 @@ const request = (config, options, axiosClient = axios) => {
7917
7925
  courseId,
7918
7926
  confirmed,
7919
7927
  checkedIn,
7928
+ moved,
7929
+ movedFrom,
7920
7930
  pageNumber,
7921
7931
  take,
7922
7932
  limitListRequests,
@@ -7939,6 +7949,8 @@ const request = (config, options, axiosClient = axios) => {
7939
7949
  CourseId: courseId,
7940
7950
  Confirmed: confirmed,
7941
7951
  CheckedIn: checkedIn,
7952
+ Moved: moved,
7953
+ MovedFrom: movedFrom,
7942
7954
  PageNumber: pageNumber,
7943
7955
  Take: take,
7944
7956
  LimitListRequests: limitListRequests,
@@ -8394,7 +8406,8 @@ const request = (config, options, axiosClient = axios) => {
8394
8406
  * @throws ApiError
8395
8407
  */
8396
8408
  cancel({
8397
- id
8409
+ id,
8410
+ requestBody
8398
8411
  }) {
8399
8412
  return this.httpRequest.request({
8400
8413
  method: "POST",
@@ -8402,6 +8415,8 @@ const request = (config, options, axiosClient = axios) => {
8402
8415
  path: {
8403
8416
  id
8404
8417
  },
8418
+ body: requestBody,
8419
+ mediaType: "application/json",
8405
8420
  errors: {
8406
8421
  400: `Bad Request`,
8407
8422
  422: `Client Error`,
@@ -8415,7 +8430,8 @@ const request = (config, options, axiosClient = axios) => {
8415
8430
  * @throws ApiError
8416
8431
  */
8417
8432
  refund({
8418
- id
8433
+ id,
8434
+ requestBody
8419
8435
  }) {
8420
8436
  return this.httpRequest.request({
8421
8437
  method: "POST",
@@ -8423,6 +8439,8 @@ const request = (config, options, axiosClient = axios) => {
8423
8439
  path: {
8424
8440
  id
8425
8441
  },
8442
+ body: requestBody,
8443
+ mediaType: "application/json",
8426
8444
  errors: {
8427
8445
  400: `Bad Request`,
8428
8446
  422: `Client Error`,
@@ -8436,7 +8454,8 @@ const request = (config, options, axiosClient = axios) => {
8436
8454
  * @throws ApiError
8437
8455
  */
8438
8456
  cancelWithRefund({
8439
- id
8457
+ id,
8458
+ requestBody
8440
8459
  }) {
8441
8460
  return this.httpRequest.request({
8442
8461
  method: "POST",
@@ -8444,6 +8463,8 @@ const request = (config, options, axiosClient = axios) => {
8444
8463
  path: {
8445
8464
  id
8446
8465
  },
8466
+ body: requestBody,
8467
+ mediaType: "application/json",
8447
8468
  errors: {
8448
8469
  400: `Bad Request`,
8449
8470
  422: `Client Error`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reach-api-sdk",
3
- "version": "1.0.49",
3
+ "version": "1.0.50",
4
4
  "description": "sdk for reach api",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -22351,6 +22351,17 @@ paths:
22351
22351
  description: Gets or sets the queryable attendee checked in value.
22352
22352
  schema:
22353
22353
  type: boolean
22354
+ - name: Moved
22355
+ in: query
22356
+ description: Gets or sets the queryable attendee moved value.
22357
+ schema:
22358
+ type: boolean
22359
+ - name: MovedFrom
22360
+ in: query
22361
+ description: Gets or sets the queryable opportunity register that the attendee was moved from.
22362
+ schema:
22363
+ type: string
22364
+ format: uuid
22354
22365
  - name: PageNumber
22355
22366
  in: query
22356
22367
  description: Gets or sets the page number for paged queries.
@@ -22508,6 +22519,17 @@ paths:
22508
22519
  description: Gets or sets the queryable attendee checked in value.
22509
22520
  schema:
22510
22521
  type: boolean
22522
+ - name: Moved
22523
+ in: query
22524
+ description: Gets or sets the queryable attendee moved value.
22525
+ schema:
22526
+ type: boolean
22527
+ - name: MovedFrom
22528
+ in: query
22529
+ description: Gets or sets the queryable opportunity register that the attendee was moved from.
22530
+ schema:
22531
+ type: string
22532
+ format: uuid
22511
22533
  - name: PageNumber
22512
22534
  in: query
22513
22535
  description: Gets or sets the page number for paged queries.
@@ -22721,6 +22743,17 @@ paths:
22721
22743
  description: Gets or sets the queryable attendee checked in value.
22722
22744
  schema:
22723
22745
  type: boolean
22746
+ - name: Moved
22747
+ in: query
22748
+ description: Gets or sets the queryable attendee moved value.
22749
+ schema:
22750
+ type: boolean
22751
+ - name: MovedFrom
22752
+ in: query
22753
+ description: Gets or sets the queryable opportunity register that the attendee was moved from.
22754
+ schema:
22755
+ type: string
22756
+ format: uuid
22724
22757
  - name: PageNumber
22725
22758
  in: query
22726
22759
  description: Gets or sets the page number for paged queries.
@@ -24187,6 +24220,27 @@ paths:
24187
24220
  schema:
24188
24221
  type: string
24189
24222
  format: uuid
24223
+ requestBody:
24224
+ description: The order items in the case of a partial refund.
24225
+ content:
24226
+ application/json:
24227
+ schema:
24228
+ type: array
24229
+ items:
24230
+ type: string
24231
+ format: uuid
24232
+ text/json:
24233
+ schema:
24234
+ type: array
24235
+ items:
24236
+ type: string
24237
+ format: uuid
24238
+ application/*+json:
24239
+ schema:
24240
+ type: array
24241
+ items:
24242
+ type: string
24243
+ format: uuid
24190
24244
  responses:
24191
24245
  '200':
24192
24246
  description: Success
@@ -24250,6 +24304,27 @@ paths:
24250
24304
  schema:
24251
24305
  type: string
24252
24306
  format: uuid
24307
+ requestBody:
24308
+ description: The order items in the case of a partial refund.
24309
+ content:
24310
+ application/json:
24311
+ schema:
24312
+ type: array
24313
+ items:
24314
+ type: string
24315
+ format: uuid
24316
+ text/json:
24317
+ schema:
24318
+ type: array
24319
+ items:
24320
+ type: string
24321
+ format: uuid
24322
+ application/*+json:
24323
+ schema:
24324
+ type: array
24325
+ items:
24326
+ type: string
24327
+ format: uuid
24253
24328
  responses:
24254
24329
  '200':
24255
24330
  description: Success
@@ -24313,6 +24388,27 @@ paths:
24313
24388
  schema:
24314
24389
  type: string
24315
24390
  format: uuid
24391
+ requestBody:
24392
+ description: The order items in the case of a partial refund.
24393
+ content:
24394
+ application/json:
24395
+ schema:
24396
+ type: array
24397
+ items:
24398
+ type: string
24399
+ format: uuid
24400
+ text/json:
24401
+ schema:
24402
+ type: array
24403
+ items:
24404
+ type: string
24405
+ format: uuid
24406
+ application/*+json:
24407
+ schema:
24408
+ type: array
24409
+ items:
24410
+ type: string
24411
+ format: uuid
24316
24412
  responses:
24317
24413
  '200':
24318
24414
  description: Success
@@ -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`,