@compassdigital/sdk.typescript 4.66.0 → 4.68.0

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 (88) hide show
  1. package/lib/index.d.ts +58 -85
  2. package/lib/index.d.ts.map +1 -1
  3. package/lib/index.js +503 -530
  4. package/lib/index.js.map +1 -1
  5. package/lib/interface/ai.d.ts +1 -1
  6. package/lib/interface/ai.d.ts.map +1 -1
  7. package/lib/interface/announcement.d.ts +1 -1
  8. package/lib/interface/announcement.d.ts.map +1 -1
  9. package/lib/interface/auth.d.ts +3 -3
  10. package/lib/interface/auth.d.ts.map +1 -1
  11. package/lib/interface/calendar.d.ts +2 -2
  12. package/lib/interface/calendar.d.ts.map +1 -1
  13. package/lib/interface/centricos.d.ts +11 -11
  14. package/lib/interface/centricos.d.ts.map +1 -1
  15. package/lib/interface/compassconnect.d.ts +1 -1
  16. package/lib/interface/compassconnect.d.ts.map +1 -1
  17. package/lib/interface/config.d.ts +1 -1
  18. package/lib/interface/config.d.ts.map +1 -1
  19. package/lib/interface/datalake.d.ts +1 -1
  20. package/lib/interface/datalake.d.ts.map +1 -1
  21. package/lib/interface/email.d.ts +1 -1
  22. package/lib/interface/email.d.ts.map +1 -1
  23. package/lib/interface/file.d.ts +2 -2
  24. package/lib/interface/file.d.ts.map +1 -1
  25. package/lib/interface/frictionless.d.ts +9 -9
  26. package/lib/interface/frictionless.d.ts.map +1 -1
  27. package/lib/interface/kds.d.ts +1 -1
  28. package/lib/interface/kds.d.ts.map +1 -1
  29. package/lib/interface/location.d.ts +5 -3
  30. package/lib/interface/location.d.ts.map +1 -1
  31. package/lib/interface/mealplan.d.ts +2 -1
  32. package/lib/interface/mealplan.d.ts.map +1 -1
  33. package/lib/interface/menu.d.ts +149 -109
  34. package/lib/interface/menu.d.ts.map +1 -1
  35. package/lib/interface/notification.d.ts +3 -3
  36. package/lib/interface/notification.d.ts.map +1 -1
  37. package/lib/interface/order.d.ts +7 -7
  38. package/lib/interface/order.d.ts.map +1 -1
  39. package/lib/interface/partner.d.ts +10 -10
  40. package/lib/interface/partner.d.ts.map +1 -1
  41. package/lib/interface/payment.d.ts +3 -3
  42. package/lib/interface/payment.d.ts.map +1 -1
  43. package/lib/interface/promo.d.ts +8 -8
  44. package/lib/interface/promo.d.ts.map +1 -1
  45. package/lib/interface/report.d.ts +10 -10
  46. package/lib/interface/report.d.ts.map +1 -1
  47. package/lib/interface/search.d.ts +8 -8
  48. package/lib/interface/search.d.ts.map +1 -1
  49. package/lib/interface/shoppingcart.d.ts +7 -7
  50. package/lib/interface/shoppingcart.d.ts.map +1 -1
  51. package/lib/interface/task.d.ts +8 -8
  52. package/lib/interface/task.d.ts.map +1 -1
  53. package/lib/interface/tax.d.ts +2 -2
  54. package/lib/interface/tax.d.ts.map +1 -1
  55. package/lib/interface/user.d.ts +16 -16
  56. package/lib/interface/user.d.ts.map +1 -1
  57. package/lib/interface/vendor.d.ts +6 -6
  58. package/lib/interface/vendor.d.ts.map +1 -1
  59. package/manifest.json +0 -4
  60. package/package.json +2 -2
  61. package/src/index.ts +10395 -10464
  62. package/src/interface/ai.ts +22 -22
  63. package/src/interface/announcement.ts +60 -60
  64. package/src/interface/auth.ts +68 -68
  65. package/src/interface/calendar.ts +94 -94
  66. package/src/interface/centricos.ts +145 -145
  67. package/src/interface/compassconnect.ts +59 -59
  68. package/src/interface/config.ts +166 -166
  69. package/src/interface/datalake.ts +13 -13
  70. package/src/interface/email.ts +13 -13
  71. package/src/interface/file.ts +18 -18
  72. package/src/interface/frictionless.ts +177 -177
  73. package/src/interface/kds.ts +49 -49
  74. package/src/interface/location.ts +771 -769
  75. package/src/interface/mealplan.ts +155 -154
  76. package/src/interface/menu.ts +4079 -4018
  77. package/src/interface/notification.ts +51 -51
  78. package/src/interface/order.ts +464 -464
  79. package/src/interface/partner.ts +823 -823
  80. package/src/interface/payment.ts +278 -278
  81. package/src/interface/promo.ts +373 -373
  82. package/src/interface/report.ts +348 -348
  83. package/src/interface/search.ts +135 -135
  84. package/src/interface/shoppingcart.ts +429 -429
  85. package/src/interface/task.ts +212 -212
  86. package/src/interface/tax.ts +69 -69
  87. package/src/interface/user.ts +410 -410
  88. package/src/interface/vendor.ts +215 -215
@@ -1,201 +1,201 @@
1
1
  /* eslint-disable */
2
2
  // THIS FILE IS AUTOMATICALLY GENERATED, DO NOT MODIFY
3
3
 
4
- import { RequestQuery, BaseRequest } from "./util";
4
+ import { RequestQuery, BaseRequest } from './util';
5
5
 
6
6
  export interface Error {
7
- message?: string;
8
- code?: number;
9
- data?: Record<string, any>;
7
+ message?: string;
8
+ code?: number;
9
+ data?: Record<string, any>;
10
10
  }
11
11
 
12
12
  export interface ApplicationPostBody {
13
- name: string;
14
- phone: string;
15
- description?: string;
16
- email: string;
17
- // Property to store any additional data
18
- meta?: {
19
- website?: string;
20
- // Contact info
21
- contact?: {
22
- first_name?: string;
23
- last_name?: string;
24
- phone_number?: string;
25
- };
26
- [index: string]: any;
27
- };
28
- captcha_token: string;
13
+ name: string;
14
+ phone: string;
15
+ description?: string;
16
+ email: string;
17
+ // Property to store any additional data
18
+ meta?: {
19
+ website?: string;
20
+ // Contact info
21
+ contact?: {
22
+ first_name?: string;
23
+ last_name?: string;
24
+ phone_number?: string;
25
+ };
26
+ [index: string]: any;
27
+ };
28
+ captcha_token: string;
29
29
  }
30
30
 
31
31
  export interface ApplicationPatchBody {
32
- // application
33
- id?: string;
34
- name?: string;
35
- description?: string;
36
- email?: string;
37
- phone?: string;
38
- // Property to store any additional data
39
- meta?: {
40
- website?: string;
41
- // Contact info
42
- contact?: {
43
- first_name?: string;
44
- last_name?: string;
45
- phone_number?: string;
46
- };
47
- [index: string]: any;
48
- };
49
- status?: "pending" | "approved" | "rejected";
32
+ // application
33
+ id?: string;
34
+ name?: string;
35
+ description?: string;
36
+ email?: string;
37
+ phone?: string;
38
+ // Property to store any additional data
39
+ meta?: {
40
+ website?: string;
41
+ // Contact info
42
+ contact?: {
43
+ first_name?: string;
44
+ last_name?: string;
45
+ phone_number?: string;
46
+ };
47
+ [index: string]: any;
48
+ };
49
+ status?: 'pending' | 'approved' | 'rejected';
50
50
  }
51
51
 
52
52
  export interface Application {
53
- // application
54
- id?: string;
55
- date_created?: string;
56
- date_modified?: string;
57
- name?: string;
58
- description?: string;
59
- email?: string;
60
- phone?: string;
61
- // Property to store any additional data
62
- meta?: {
63
- website?: string;
64
- // Contact info
65
- contact?: {
66
- first_name?: string;
67
- last_name?: string;
68
- phone_number?: string;
69
- };
70
- // vendor
71
- vendor_id?: string;
72
- [index: string]: any;
73
- };
74
- status?: "pending" | "approved" | "rejected";
53
+ // application
54
+ id?: string;
55
+ date_created?: string;
56
+ date_modified?: string;
57
+ name?: string;
58
+ description?: string;
59
+ email?: string;
60
+ phone?: string;
61
+ // Property to store any additional data
62
+ meta?: {
63
+ website?: string;
64
+ // Contact info
65
+ contact?: {
66
+ first_name?: string;
67
+ last_name?: string;
68
+ phone_number?: string;
69
+ };
70
+ // vendor
71
+ vendor_id?: string;
72
+ [index: string]: any;
73
+ };
74
+ status?: 'pending' | 'approved' | 'rejected';
75
75
  }
76
76
 
77
77
  export interface Applications {
78
- last_evaluated_key?: string;
79
- applications: Application[];
78
+ last_evaluated_key?: string;
79
+ applications: Application[];
80
80
  }
81
81
 
82
82
  export interface Vendor {
83
- // vendor
84
- id?: string;
85
- name?: string;
86
- description?: string;
87
- email?: string;
88
- phone?: string;
89
- // Property to store any additional data
90
- meta?: {
91
- legacy_token?: {
92
- dev?: string;
93
- staging?: string;
94
- v1?: string;
95
- };
96
- website?: string;
97
- // Contact info
98
- contact?: {
99
- first_name?: string;
100
- last_name?: string;
101
- phone_number?: string;
102
- };
103
- reset_token?: string;
104
- [index: string]: any;
105
- };
106
- domain?: string;
83
+ // vendor
84
+ id?: string;
85
+ name?: string;
86
+ description?: string;
87
+ email?: string;
88
+ phone?: string;
89
+ // Property to store any additional data
90
+ meta?: {
91
+ legacy_token?: {
92
+ dev?: string;
93
+ staging?: string;
94
+ v1?: string;
95
+ };
96
+ website?: string;
97
+ // Contact info
98
+ contact?: {
99
+ first_name?: string;
100
+ last_name?: string;
101
+ phone_number?: string;
102
+ };
103
+ reset_token?: string;
104
+ [index: string]: any;
105
+ };
106
+ domain?: string;
107
107
  }
108
108
 
109
109
  export interface VendorPostBody {
110
- name: string;
111
- description?: string;
112
- email: string;
113
- domain?: string;
114
- phone?: string;
115
- // Property to store any additional data
116
- meta?: {
117
- legacy_token?: {
118
- dev?: string;
119
- staging?: string;
120
- v1?: string;
121
- };
122
- website?: string;
123
- reset_token?: string;
124
- // Contact info
125
- contact?: {
126
- first_name?: string;
127
- last_name?: string;
128
- phone_number?: string;
129
- };
130
- [index: string]: any;
131
- };
110
+ name: string;
111
+ description?: string;
112
+ email: string;
113
+ domain?: string;
114
+ phone?: string;
115
+ // Property to store any additional data
116
+ meta?: {
117
+ legacy_token?: {
118
+ dev?: string;
119
+ staging?: string;
120
+ v1?: string;
121
+ };
122
+ website?: string;
123
+ reset_token?: string;
124
+ // Contact info
125
+ contact?: {
126
+ first_name?: string;
127
+ last_name?: string;
128
+ phone_number?: string;
129
+ };
130
+ [index: string]: any;
131
+ };
132
132
  }
133
133
 
134
134
  export interface Vendors {
135
- vendors: Vendor[];
135
+ vendors: Vendor[];
136
136
  }
137
137
 
138
138
  export interface Key {
139
- // key
140
- id: string;
141
- date_created?: string;
142
- date_modified?: string;
143
- // Unique client id for this key. Will remain same on rotation
144
- client_id?: string;
145
- // Unique password for this key.
146
- client_password?: string;
147
- // Date the key becomes expired
148
- date_expires?: string;
149
- environment?: "dev" | "staging" | "v1";
150
- permissions?: string[];
151
- // Flag identifying if the key is latest
152
- active?: boolean;
153
- domain?: string;
139
+ // key
140
+ id: string;
141
+ date_created?: string;
142
+ date_modified?: string;
143
+ // Unique client id for this key. Will remain same on rotation
144
+ client_id?: string;
145
+ // Unique password for this key.
146
+ client_password?: string;
147
+ // Date the key becomes expired
148
+ date_expires?: string;
149
+ environment?: 'dev' | 'staging' | 'v1';
150
+ permissions?: string[];
151
+ // Flag identifying if the key is latest
152
+ active?: boolean;
153
+ domain?: string;
154
154
  }
155
155
 
156
156
  export interface KeyPostBody {
157
- // vendor
158
- vendor_id: string;
159
- // Date the key becomes expired
160
- date_expires: string;
161
- environment: "dev" | "staging" | "v1";
162
- permissions: string[];
157
+ // vendor
158
+ vendor_id: string;
159
+ // Date the key becomes expired
160
+ date_expires: string;
161
+ environment: 'dev' | 'staging' | 'v1';
162
+ permissions: string[];
163
163
  }
164
164
 
165
165
  export interface KeyPatchBody {
166
- // Date the key becomes expired
167
- date_expires?: string;
168
- permissions?: string[];
166
+ // Date the key becomes expired
167
+ date_expires?: string;
168
+ permissions?: string[];
169
169
  }
170
170
 
171
171
  export interface Keys {
172
- last_evaluated_key?: string;
173
- keys: Key[];
172
+ last_evaluated_key?: string;
173
+ keys: Key[];
174
174
  }
175
175
 
176
176
  export interface Success {
177
- success?: boolean;
177
+ success?: boolean;
178
178
  }
179
179
 
180
180
  export interface Auth {
181
- access: {
182
- token?: string;
183
- expires?: string;
184
- };
185
- refresh: {
186
- token?: string;
187
- expires?: string;
188
- };
181
+ access: {
182
+ token?: string;
183
+ expires?: string;
184
+ };
185
+ refresh: {
186
+ token?: string;
187
+ expires?: string;
188
+ };
189
189
  }
190
190
 
191
191
  export interface RefreshPayload {
192
- access_token: string;
193
- refresh_token: string;
192
+ access_token: string;
193
+ refresh_token: string;
194
194
  }
195
195
 
196
196
  export interface ResetPassword {
197
- reset_token: string;
198
- password: string;
197
+ reset_token: string;
198
+ password: string;
199
199
  }
200
200
 
201
201
  // POST /vendor/application - Create a new application for review
@@ -205,29 +205,29 @@ export type PostVendorApplicationBody = ApplicationPostBody;
205
205
  export type PostVendorApplicationResponse = Application;
206
206
 
207
207
  export interface PostVendorApplicationRequest extends BaseRequest {
208
- body: PostVendorApplicationBody;
208
+ body: PostVendorApplicationBody;
209
209
  }
210
210
 
211
211
  // GET /vendor/application - Get a list of all applications
212
212
 
213
213
  export interface GetVendorApplicationQuery {
214
- status?: "pending" | "approved" | "rejected";
215
- // Pagination token to start query from
216
- last_evaluated_key?: string;
217
- // Graphql query string
218
- _query?: string;
214
+ status?: 'pending' | 'approved' | 'rejected';
215
+ // Pagination token to start query from
216
+ last_evaluated_key?: string;
217
+ // Graphql query string
218
+ _query?: string;
219
219
  }
220
220
 
221
221
  export type GetVendorApplicationResponse = Applications;
222
222
 
223
223
  export interface GetVendorApplicationRequest
224
- extends BaseRequest,
225
- RequestQuery<GetVendorApplicationQuery> {}
224
+ extends BaseRequest,
225
+ RequestQuery<GetVendorApplicationQuery> {}
226
226
 
227
227
  // PATCH /vendor/application/{id} - Update an application (or update status)
228
228
 
229
229
  export interface PatchVendorApplicationPath {
230
- id: string;
230
+ id: string;
231
231
  }
232
232
 
233
233
  export type PatchVendorApplicationBody = ApplicationPatchBody;
@@ -235,7 +235,7 @@ export type PatchVendorApplicationBody = ApplicationPatchBody;
235
235
  export type PatchVendorApplicationResponse = Application;
236
236
 
237
237
  export interface PatchVendorApplicationRequest extends BaseRequest, PatchVendorApplicationPath {
238
- body: PatchVendorApplicationBody;
238
+ body: PatchVendorApplicationBody;
239
239
  }
240
240
 
241
241
  // POST /vendor - Create new vendor
@@ -245,14 +245,14 @@ export type PostVendorBody = VendorPostBody;
245
245
  export type PostVendorResponse = Vendor;
246
246
 
247
247
  export interface PostVendorRequest extends BaseRequest {
248
- body: PostVendorBody;
248
+ body: PostVendorBody;
249
249
  }
250
250
 
251
251
  // GET /vendor - Get all Vendors
252
252
 
253
253
  export interface GetVendorsQuery {
254
- // Graphql query string
255
- _query?: string;
254
+ // Graphql query string
255
+ _query?: string;
256
256
  }
257
257
 
258
258
  export type GetVendorsResponse = Vendors;
@@ -262,27 +262,27 @@ export interface GetVendorsRequest extends BaseRequest, RequestQuery<GetVendorsQ
262
262
  // GET /vendor/{id} - Get info about the Vendor
263
263
 
264
264
  export interface GetVendorPath {
265
- // vendor
266
- id: string;
265
+ // vendor
266
+ id: string;
267
267
  }
268
268
 
269
269
  export interface GetVendorQuery {
270
- // Graphql query string
271
- _query?: string;
270
+ // Graphql query string
271
+ _query?: string;
272
272
  }
273
273
 
274
274
  export type GetVendorResponse = Vendor;
275
275
 
276
276
  export interface GetVendorRequest
277
- extends BaseRequest,
278
- RequestQuery<GetVendorQuery>,
279
- GetVendorPath {}
277
+ extends BaseRequest,
278
+ RequestQuery<GetVendorQuery>,
279
+ GetVendorPath {}
280
280
 
281
281
  // PATCH /vendor/{id} - Update info about the Vendor
282
282
 
283
283
  export interface PatchVendorPath {
284
- // vendor
285
- id: string;
284
+ // vendor
285
+ id: string;
286
286
  }
287
287
 
288
288
  export type PatchVendorBody = Vendor;
@@ -290,14 +290,14 @@ export type PatchVendorBody = Vendor;
290
290
  export type PatchVendorResponse = Vendor;
291
291
 
292
292
  export interface PatchVendorRequest extends BaseRequest, PatchVendorPath {
293
- body: PatchVendorBody;
293
+ body: PatchVendorBody;
294
294
  }
295
295
 
296
296
  // GET /vendor/auth - Get access/refresh tokens for accessing our APIs
297
297
 
298
298
  export interface GetVendorAuthQuery {
299
- // Graphql query string
300
- _query?: string;
299
+ // Graphql query string
300
+ _query?: string;
301
301
  }
302
302
 
303
303
  export type GetVendorAuthResponse = Auth;
@@ -311,33 +311,33 @@ export type PostVendorAuthBody = RefreshPayload;
311
311
  export type PostVendorAuthResponse = Auth;
312
312
 
313
313
  export interface PostVendorAuthRequest extends BaseRequest {
314
- body: PostVendorAuthBody;
314
+ body: PostVendorAuthBody;
315
315
  }
316
316
 
317
317
  // GET /vendor/{id}/key - Get list of Vendor keys
318
318
 
319
319
  export interface GetVendorKeysPath {
320
- // vendor
321
- id: string;
320
+ // vendor
321
+ id: string;
322
322
  }
323
323
 
324
324
  export interface GetVendorKeysQuery {
325
- // Graphql query string
326
- _query?: string;
325
+ // Graphql query string
326
+ _query?: string;
327
327
  }
328
328
 
329
329
  export type GetVendorKeysResponse = Keys;
330
330
 
331
331
  export interface GetVendorKeysRequest
332
- extends BaseRequest,
333
- RequestQuery<GetVendorKeysQuery>,
334
- GetVendorKeysPath {}
332
+ extends BaseRequest,
333
+ RequestQuery<GetVendorKeysQuery>,
334
+ GetVendorKeysPath {}
335
335
 
336
336
  // POST /vendor/{id}/key - Create new key for the vendor
337
337
 
338
338
  export interface PostVendorKeyPath {
339
- // vendor
340
- id: string;
339
+ // vendor
340
+ id: string;
341
341
  }
342
342
 
343
343
  export type PostVendorKeyBody = KeyPostBody;
@@ -345,39 +345,39 @@ export type PostVendorKeyBody = KeyPostBody;
345
345
  export type PostVendorKeyResponse = Key;
346
346
 
347
347
  export interface PostVendorKeyRequest extends BaseRequest, PostVendorKeyPath {
348
- body: PostVendorKeyBody;
348
+ body: PostVendorKeyBody;
349
349
  }
350
350
 
351
351
  // GET /vendor/{id}/key/{key} - Get info about vendor key
352
352
 
353
353
  export interface GetVendorKeyPath {
354
- // vendor
355
- id: string;
356
- // key
357
- key: string;
354
+ // vendor
355
+ id: string;
356
+ // key
357
+ key: string;
358
358
  }
359
359
 
360
360
  export interface GetVendorKeyQuery {
361
- // Pagination token to start query from
362
- last_evaluated_key?: string;
363
- // Graphql query string
364
- _query?: string;
361
+ // Pagination token to start query from
362
+ last_evaluated_key?: string;
363
+ // Graphql query string
364
+ _query?: string;
365
365
  }
366
366
 
367
367
  export type GetVendorKeyResponse = Key;
368
368
 
369
369
  export interface GetVendorKeyRequest
370
- extends BaseRequest,
371
- RequestQuery<GetVendorKeyQuery>,
372
- GetVendorKeyPath {}
370
+ extends BaseRequest,
371
+ RequestQuery<GetVendorKeyQuery>,
372
+ GetVendorKeyPath {}
373
373
 
374
374
  // PATCH /vendor/{id}/key/{key} - Update info for vendor key
375
375
 
376
376
  export interface PatchVendorKeyPath {
377
- // vendor
378
- id: string;
379
- // key
380
- key: string;
377
+ // vendor
378
+ id: string;
379
+ // key
380
+ key: string;
381
381
  }
382
382
 
383
383
  export type PatchVendorKeyBody = KeyPatchBody;
@@ -385,16 +385,16 @@ export type PatchVendorKeyBody = KeyPatchBody;
385
385
  export type PatchVendorKeyResponse = Key;
386
386
 
387
387
  export interface PatchVendorKeyRequest extends BaseRequest, PatchVendorKeyPath {
388
- body: PatchVendorKeyBody;
388
+ body: PatchVendorKeyBody;
389
389
  }
390
390
 
391
391
  // DELETE /vendor/{id}/key/{key} - Mark key as expired
392
392
 
393
393
  export interface DeleteVendorKeyPath {
394
- // vendor
395
- id: string;
396
- // key
397
- key: string;
394
+ // vendor
395
+ id: string;
396
+ // key
397
+ key: string;
398
398
  }
399
399
 
400
400
  export type DeleteVendorKeyResponse = Key;
@@ -404,28 +404,28 @@ export interface DeleteVendorKeyRequest extends BaseRequest, DeleteVendorKeyPath
404
404
  // POST /vendor/{id}/key/{key}/rotate - Rotate vendor key
405
405
 
406
406
  export interface PostVendorKeyRotatePath {
407
- // vendor
408
- id: string;
409
- // key
410
- key: string;
407
+ // vendor
408
+ id: string;
409
+ // key
410
+ key: string;
411
411
  }
412
412
 
413
413
  export interface PostVendorKeyRotateQuery {
414
- date_expires?: string;
414
+ date_expires?: string;
415
415
  }
416
416
 
417
417
  export type PostVendorKeyRotateResponse = Success;
418
418
 
419
419
  export interface PostVendorKeyRotateRequest
420
- extends BaseRequest,
421
- RequestQuery<PostVendorKeyRotateQuery>,
422
- PostVendorKeyRotatePath {}
420
+ extends BaseRequest,
421
+ RequestQuery<PostVendorKeyRotateQuery>,
422
+ PostVendorKeyRotatePath {}
423
423
 
424
424
  // POST /vendor/{id}/reset/password - Reset the existing password for vendor
425
425
 
426
426
  export interface PostVendorResetPasswordPath {
427
- // vendor
428
- id: string;
427
+ // vendor
428
+ id: string;
429
429
  }
430
430
 
431
431
  export type PostVendorResetPasswordBody = ResetPassword;
@@ -433,5 +433,5 @@ export type PostVendorResetPasswordBody = ResetPassword;
433
433
  export type PostVendorResetPasswordResponse = Success;
434
434
 
435
435
  export interface PostVendorResetPasswordRequest extends BaseRequest, PostVendorResetPasswordPath {
436
- body: PostVendorResetPasswordBody;
436
+ body: PostVendorResetPasswordBody;
437
437
  }