@compassdigital/sdk.typescript 4.417.0 → 4.418.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.
- package/lib/index.d.ts +121 -307
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js.map +1 -1
- package/lib/interface/announcement.d.ts +1 -5
- package/lib/interface/announcement.d.ts.map +1 -1
- package/lib/interface/auth.d.ts +0 -8
- package/lib/interface/auth.d.ts.map +1 -1
- package/lib/interface/calendar.d.ts +3 -14
- package/lib/interface/calendar.d.ts.map +1 -1
- package/lib/interface/catalog.d.ts +6 -26
- package/lib/interface/catalog.d.ts.map +1 -1
- package/lib/interface/centricos.d.ts +0 -35
- package/lib/interface/centricos.d.ts.map +1 -1
- package/lib/interface/compassconnect.d.ts +0 -1
- package/lib/interface/compassconnect.d.ts.map +1 -1
- package/lib/interface/config.d.ts +5 -17
- package/lib/interface/config.d.ts.map +1 -1
- package/lib/interface/consumer.d.ts +0 -38
- package/lib/interface/consumer.d.ts.map +1 -1
- package/lib/interface/datalake.d.ts +2 -5
- package/lib/interface/datalake.d.ts.map +1 -1
- package/lib/interface/discount.d.ts +0 -7
- package/lib/interface/discount.d.ts.map +1 -1
- package/lib/interface/forecasting.d.ts +0 -5
- package/lib/interface/forecasting.d.ts.map +1 -1
- package/lib/interface/frictionless.d.ts +0 -15
- package/lib/interface/frictionless.d.ts.map +1 -1
- package/lib/interface/kds.d.ts +1 -5
- package/lib/interface/kds.d.ts.map +1 -1
- package/lib/interface/location.d.ts +2 -25
- package/lib/interface/location.d.ts.map +1 -1
- package/lib/interface/mealplan.d.ts +2 -9
- package/lib/interface/mealplan.d.ts.map +1 -1
- package/lib/interface/menu.d.ts +42 -189
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/interface/notification.d.ts +1 -5
- package/lib/interface/notification.d.ts.map +1 -1
- package/lib/interface/order.d.ts +2 -6
- package/lib/interface/order.d.ts.map +1 -1
- package/lib/interface/partner.d.ts +1 -6
- package/lib/interface/partner.d.ts.map +1 -1
- package/lib/interface/payment.d.ts +1 -8
- package/lib/interface/payment.d.ts.map +1 -1
- package/lib/interface/promo.d.ts +1 -7
- package/lib/interface/promo.d.ts.map +1 -1
- package/lib/interface/report.d.ts +3 -16
- package/lib/interface/report.d.ts.map +1 -1
- package/lib/interface/review.d.ts +0 -4
- package/lib/interface/review.d.ts.map +1 -1
- package/lib/interface/search.d.ts +0 -7
- package/lib/interface/search.d.ts.map +1 -1
- package/lib/interface/shoppingcart.d.ts +4 -16
- package/lib/interface/shoppingcart.d.ts.map +1 -1
- package/lib/interface/task.d.ts +2 -10
- package/lib/interface/task.d.ts.map +1 -1
- package/lib/interface/tax.d.ts +0 -3
- package/lib/interface/tax.d.ts.map +1 -1
- package/lib/interface/timeslots.d.ts +0 -1
- package/lib/interface/timeslots.d.ts.map +1 -1
- package/lib/interface/user.d.ts +3 -18
- package/lib/interface/user.d.ts.map +1 -1
- package/lib/interface/vendor.d.ts +5 -22
- package/lib/interface/vendor.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/index.ts +94 -440
- package/src/interface/announcement.ts +1 -11
- package/src/interface/auth.ts +0 -14
- package/src/interface/calendar.ts +3 -26
- package/src/interface/catalog.ts +6 -47
- package/src/interface/centricos.ts +0 -60
- package/src/interface/compassconnect.ts +0 -2
- package/src/interface/config.ts +4 -32
- package/src/interface/consumer.ts +2 -69
- package/src/interface/datalake.ts +1 -8
- package/src/interface/discount.ts +0 -12
- package/src/interface/forecasting.ts +0 -9
- package/src/interface/frictionless.ts +0 -25
- package/src/interface/kds.ts +1 -8
- package/src/interface/location.ts +0 -46
- package/src/interface/mealplan.ts +2 -19
- package/src/interface/menu.ts +38 -355
- package/src/interface/notification.ts +1 -10
- package/src/interface/order.ts +2 -10
- package/src/interface/partner.ts +1 -12
- package/src/interface/payment.ts +1 -17
- package/src/interface/promo.ts +1 -14
- package/src/interface/report.ts +1 -29
- package/src/interface/review.ts +0 -7
- package/src/interface/search.ts +0 -13
- package/src/interface/shoppingcart.ts +3 -31
- package/src/interface/task.ts +2 -19
- package/src/interface/tax.ts +0 -5
- package/src/interface/timeslots.ts +0 -2
- package/src/interface/user.ts +3 -36
- package/src/interface/vendor.ts +5 -43
package/src/index.ts
CHANGED
|
@@ -25,7 +25,6 @@ import {
|
|
|
25
25
|
GetPaymentMethodsResponse,
|
|
26
26
|
GetPaymentHpcQuery,
|
|
27
27
|
GetPaymentHpcResponse,
|
|
28
|
-
GetPaymentCashlessQuery,
|
|
29
28
|
GetPaymentCashlessResponse,
|
|
30
29
|
PostPaymentCashlessBody,
|
|
31
30
|
PostPaymentCashlessResponse,
|
|
@@ -61,7 +60,6 @@ import {
|
|
|
61
60
|
PatchOrderCancelResponse,
|
|
62
61
|
GetOrderCustomerOrdersQuery,
|
|
63
62
|
GetOrderCustomerOrdersResponse,
|
|
64
|
-
GetOrderCustomerOrdersBrandQuery,
|
|
65
63
|
GetOrderCustomerOrdersBrandResponse,
|
|
66
64
|
GetOrderLocationBrandQuery,
|
|
67
65
|
GetOrderLocationBrandResponse,
|
|
@@ -111,7 +109,6 @@ import {
|
|
|
111
109
|
DeleteLocationGroupResponse,
|
|
112
110
|
PatchLocationGroupBody,
|
|
113
111
|
PatchLocationGroupResponse,
|
|
114
|
-
GetLocationGroupAppThemeQuery,
|
|
115
112
|
GetLocationGroupAppThemeResponse,
|
|
116
113
|
PostLocationGroupBatchGetBody,
|
|
117
114
|
PostLocationGroupBatchGetResponse,
|
|
@@ -174,7 +171,6 @@ import {
|
|
|
174
171
|
DeleteLocationRecordResponse,
|
|
175
172
|
GetLocationV2GroupsQuery,
|
|
176
173
|
GetLocationV2GroupsResponse,
|
|
177
|
-
GetLocationMenuAssociationBrandQuery,
|
|
178
174
|
GetLocationMenuAssociationBrandResponse,
|
|
179
175
|
GetLocationMenuAssociationMenuQuery,
|
|
180
176
|
GetLocationMenuAssociationMenuResponse,
|
|
@@ -188,7 +184,6 @@ import {
|
|
|
188
184
|
PutShoppingcartCartItemsResponse,
|
|
189
185
|
DeleteShoppingcartCartItemsBody,
|
|
190
186
|
DeleteShoppingcartCartItemsResponse,
|
|
191
|
-
GetShoppingcartCartQuery,
|
|
192
187
|
GetShoppingcartCartResponse,
|
|
193
188
|
PatchShoppingcartCartBody,
|
|
194
189
|
PatchShoppingcartCartResponse,
|
|
@@ -197,7 +192,6 @@ import {
|
|
|
197
192
|
DeleteShoppingcartCartPromoResponse,
|
|
198
193
|
PutShoppingcartCartPaymentBody,
|
|
199
194
|
PutShoppingcartCartPaymentResponse,
|
|
200
|
-
GetShoppingcartPaymentMethodsQuery,
|
|
201
195
|
GetShoppingcartPaymentMethodsResponse,
|
|
202
196
|
PutShoppingcartCartOrderBody,
|
|
203
197
|
PutShoppingcartCartOrderResponse,
|
|
@@ -211,9 +205,7 @@ import {
|
|
|
211
205
|
DeleteShoppingcartLockResponse,
|
|
212
206
|
PostShoppingcartBulkBody,
|
|
213
207
|
PostShoppingcartBulkResponse,
|
|
214
|
-
GetShoppingcartPingQuery,
|
|
215
208
|
GetShoppingcartPingResponse,
|
|
216
|
-
GetShoppingcartHealthQuery,
|
|
217
209
|
GetShoppingcartHealthResponse,
|
|
218
210
|
DeleteShoppingcartRecordResponse,
|
|
219
211
|
} from './interface/shoppingcart';
|
|
@@ -221,7 +213,6 @@ import {
|
|
|
221
213
|
import {
|
|
222
214
|
PostPartnerEventBody,
|
|
223
215
|
PostPartnerEventResponse,
|
|
224
|
-
GetPartnerSwaggerQuery,
|
|
225
216
|
GetPartnerSwaggerResponse,
|
|
226
217
|
PostPartnerMenuBody,
|
|
227
218
|
PostPartnerMenuResponse,
|
|
@@ -236,14 +227,12 @@ import { PostEmailBody, PostEmailResponse } from './interface/email';
|
|
|
236
227
|
import {
|
|
237
228
|
PostTaskBody,
|
|
238
229
|
PostTaskResponse,
|
|
239
|
-
GetTaskQuery,
|
|
240
230
|
GetTaskResponse,
|
|
241
231
|
PatchTaskBody,
|
|
242
232
|
PatchTaskResponse,
|
|
243
233
|
DeleteTaskResponse,
|
|
244
234
|
GetTaskOrderQuery,
|
|
245
235
|
GetTaskOrderResponse,
|
|
246
|
-
GetTaskOrderKdsQuery,
|
|
247
236
|
GetTaskOrderKdsResponse,
|
|
248
237
|
PatchTaskOrderKdsBody,
|
|
249
238
|
PatchTaskOrderKdsResponse,
|
|
@@ -264,7 +253,6 @@ import {
|
|
|
264
253
|
PatchKdsDeviceInfoBody,
|
|
265
254
|
PatchKdsDeviceInfoResponse,
|
|
266
255
|
DeleteKdsDeviceInfoResponse,
|
|
267
|
-
GetKdsSwaggerQuery,
|
|
268
256
|
GetKdsSwaggerResponse,
|
|
269
257
|
} from './interface/kds';
|
|
270
258
|
|
|
@@ -280,7 +268,6 @@ import {
|
|
|
280
268
|
PostMealplanCallbackQuery,
|
|
281
269
|
PostMealplanCallbackBody,
|
|
282
270
|
PostMealplanCallbackResponse,
|
|
283
|
-
GetMealplanTenderQuery,
|
|
284
271
|
GetMealplanTenderResponse,
|
|
285
272
|
DeleteMealplanTenderBody,
|
|
286
273
|
DeleteMealplanTenderResponse,
|
|
@@ -297,7 +284,6 @@ import {
|
|
|
297
284
|
PostMealplanInternalTendersResponse,
|
|
298
285
|
PostMealplanInternalDebitBody,
|
|
299
286
|
PostMealplanInternalDebitResponse,
|
|
300
|
-
GetMealplanInstitutionsQuery,
|
|
301
287
|
GetMealplanInstitutionsResponse,
|
|
302
288
|
PostMealplanInternalRefundBody,
|
|
303
289
|
PostMealplanInternalRefundResponse,
|
|
@@ -306,7 +292,6 @@ import {
|
|
|
306
292
|
import {
|
|
307
293
|
PostDatalakeSqlBody,
|
|
308
294
|
PostDatalakeSqlResponse,
|
|
309
|
-
GetDatalakeSwaggerQuery,
|
|
310
295
|
GetDatalakeSwaggerResponse,
|
|
311
296
|
} from './interface/datalake';
|
|
312
297
|
|
|
@@ -346,28 +331,23 @@ import {
|
|
|
346
331
|
PostPromoVoucherReverseStackableResponse,
|
|
347
332
|
PostPromoVoucherifyActivityExecuteBody,
|
|
348
333
|
PostPromoVoucherifyActivityExecuteResponse,
|
|
349
|
-
GetPromoVoucherifyActivityConfigQuery,
|
|
350
334
|
GetPromoVoucherifyActivityConfigResponse,
|
|
351
335
|
} from './interface/promo';
|
|
352
336
|
|
|
353
337
|
import {
|
|
354
|
-
GetConfigAppconfigQuery,
|
|
355
338
|
GetConfigAppconfigResponse,
|
|
356
|
-
GetConfigQuery,
|
|
357
339
|
GetConfigResponse,
|
|
358
340
|
PostConfigBody,
|
|
359
341
|
PostConfigResponse,
|
|
360
342
|
PutConfigBody,
|
|
361
343
|
PutConfigResponse,
|
|
362
344
|
DeleteConfigResponse,
|
|
363
|
-
GetConfigPublicQuery,
|
|
364
345
|
GetConfigPublicResponse,
|
|
365
346
|
PostConfigPublicBody,
|
|
366
347
|
PostConfigPublicResponse,
|
|
367
348
|
PutConfigPublicBody,
|
|
368
349
|
PutConfigPublicResponse,
|
|
369
350
|
DeleteConfigPublicResponse,
|
|
370
|
-
GetConfigPingQuery,
|
|
371
351
|
GetConfigPingResponse,
|
|
372
352
|
} from './interface/config';
|
|
373
353
|
|
|
@@ -377,7 +357,6 @@ import {
|
|
|
377
357
|
PostAnnouncementResponse,
|
|
378
358
|
GetAnnouncementsQuery,
|
|
379
359
|
GetAnnouncementsResponse,
|
|
380
|
-
GetAnnouncementQuery,
|
|
381
360
|
GetAnnouncementResponse,
|
|
382
361
|
PutAnnouncementQuery,
|
|
383
362
|
PutAnnouncementBody,
|
|
@@ -394,7 +373,6 @@ import {
|
|
|
394
373
|
GetReportAnalyticsCombinedGroupResponse,
|
|
395
374
|
GetReportEodGroupQuery,
|
|
396
375
|
GetReportEodGroupResponse,
|
|
397
|
-
GetReportEodGroupSubscribersQuery,
|
|
398
376
|
GetReportEodGroupSubscribersResponse,
|
|
399
377
|
PostReportEodGroupSubscribersBody,
|
|
400
378
|
PostReportEodGroupSubscribersResponse,
|
|
@@ -405,10 +383,8 @@ import {
|
|
|
405
383
|
GetReportEodGroupItemsResponse,
|
|
406
384
|
PutReportGroupConfigBody,
|
|
407
385
|
PutReportGroupConfigResponse,
|
|
408
|
-
GetReportGroupConfigQuery,
|
|
409
386
|
GetReportGroupConfigResponse,
|
|
410
387
|
DeleteReportGroupConfigResponse,
|
|
411
|
-
GetReportGroupConfigDefaultQuery,
|
|
412
388
|
GetReportGroupConfigDefaultResponse,
|
|
413
389
|
} from './interface/report';
|
|
414
390
|
|
|
@@ -424,7 +400,6 @@ import {
|
|
|
424
400
|
PostUserQuery,
|
|
425
401
|
PostUserBody,
|
|
426
402
|
PostUserResponse,
|
|
427
|
-
GetUserQuery,
|
|
428
403
|
GetUserResponse,
|
|
429
404
|
PutUserQuery,
|
|
430
405
|
PutUserBody,
|
|
@@ -445,7 +420,6 @@ import {
|
|
|
445
420
|
DeleteUserLogoutResponse,
|
|
446
421
|
PostUserAddSecretBody,
|
|
447
422
|
PostUserAddSecretResponse,
|
|
448
|
-
GetUserSecretQuery,
|
|
449
423
|
GetUserSecretResponse,
|
|
450
424
|
PostUserResetPasswordQuery,
|
|
451
425
|
PostUserResetPasswordBody,
|
|
@@ -455,7 +429,6 @@ import {
|
|
|
455
429
|
PostUserResetPasswordTokenResponse,
|
|
456
430
|
GetUserRealmUsersQuery,
|
|
457
431
|
GetUserRealmUsersResponse,
|
|
458
|
-
GetUserPermissionsQuery,
|
|
459
432
|
GetUserPermissionsResponse,
|
|
460
433
|
PutUserPermissionsBody,
|
|
461
434
|
PutUserPermissionsResponse,
|
|
@@ -486,12 +459,9 @@ import {
|
|
|
486
459
|
DeleteCalendarResponse,
|
|
487
460
|
GetCalendarCdlQuery,
|
|
488
461
|
GetCalendarCdlResponse,
|
|
489
|
-
GetCalendarSwaggerQuery,
|
|
490
462
|
GetCalendarSwaggerResponse,
|
|
491
463
|
PostCalendarSyncResponse,
|
|
492
|
-
GetCalendarPingQuery,
|
|
493
464
|
GetCalendarPingResponse,
|
|
494
|
-
GetCalendarHealthQuery,
|
|
495
465
|
GetCalendarHealthResponse,
|
|
496
466
|
} from './interface/calendar';
|
|
497
467
|
|
|
@@ -527,22 +497,16 @@ import {
|
|
|
527
497
|
GetMenuItemsResponse,
|
|
528
498
|
PostMenuRecommendedBody,
|
|
529
499
|
PostMenuRecommendedResponse,
|
|
530
|
-
GetSectorMenusQuery,
|
|
531
500
|
GetSectorMenusResponse,
|
|
532
|
-
GetCompanyMenusQuery,
|
|
533
501
|
GetCompanyMenusResponse,
|
|
534
502
|
CreateModifierGroupBody,
|
|
535
503
|
CreateModifierGroupResponse,
|
|
536
|
-
GetModifierGroupQuery,
|
|
537
504
|
GetModifierGroupResponse,
|
|
538
505
|
UpdateModifierGroupBody,
|
|
539
506
|
UpdateModifierGroupResponse,
|
|
540
507
|
DeleteModifierGroupResponse,
|
|
541
|
-
GetCompanyModifierGroupsQuery,
|
|
542
508
|
GetCompanyModifierGroupsResponse,
|
|
543
|
-
GetCompanyModifierGroupsExportQuery,
|
|
544
509
|
GetCompanyModifierGroupsExportResponse,
|
|
545
|
-
GetMenuExportQuery,
|
|
546
510
|
GetMenuExportResponse,
|
|
547
511
|
GetMenuPartialGroupsQuery,
|
|
548
512
|
GetMenuPartialGroupsResponse,
|
|
@@ -551,9 +515,7 @@ import {
|
|
|
551
515
|
PostMenuPartialGroupItemOptionsQuery,
|
|
552
516
|
PostMenuPartialGroupItemOptionsBody,
|
|
553
517
|
PostMenuPartialGroupItemOptionsResponse,
|
|
554
|
-
PingQuery,
|
|
555
518
|
PingResponse$0,
|
|
556
|
-
HealthQuery,
|
|
557
519
|
HealthResponse$0,
|
|
558
520
|
PostMenuV3LocalMenuGroupBody,
|
|
559
521
|
PostMenuV3LocalMenuGroupResponse,
|
|
@@ -584,15 +546,12 @@ import {
|
|
|
584
546
|
PostMenuV4LocalMenuGroupImportBrandsQuery,
|
|
585
547
|
PostMenuV4LocalMenuGroupImportBrandsBody,
|
|
586
548
|
PostMenuV4LocalMenuGroupImportBrandsResponse,
|
|
587
|
-
GetMenuV3LocalMenuGroupSiteQuery,
|
|
588
549
|
GetMenuV3LocalMenuGroupSiteResponse,
|
|
589
|
-
GetMenuV3LocalMenuGroupMenuGroupQuery,
|
|
590
550
|
GetMenuV3LocalMenuGroupMenuGroupResponse,
|
|
591
551
|
PostMenuV3LocalMenuGroupsSiteGroupsBody,
|
|
592
552
|
PostMenuV3LocalMenuGroupsSiteGroupsResponse,
|
|
593
553
|
DeleteMenuV3LocalMenuGroupsSiteGroupsBody,
|
|
594
554
|
DeleteMenuV3LocalMenuGroupsSiteGroupsResponse,
|
|
595
|
-
GetMenuV3LocalMenuGroupExportSolutionsQuery,
|
|
596
555
|
GetMenuV3LocalMenuGroupExportSolutionsResponse,
|
|
597
556
|
GetMenuV3LocalMenuGroupExportSolutionQuery,
|
|
598
557
|
GetMenuV3LocalMenuGroupExportSolutionResponse,
|
|
@@ -646,9 +605,7 @@ import {
|
|
|
646
605
|
GetMenuV3DraftBrandItemsReportingCategoriesResponse,
|
|
647
606
|
GetMenuV3DraftBrandModifiersReportingCategoriesQuery,
|
|
648
607
|
GetMenuV3DraftBrandModifiersReportingCategoriesResponse,
|
|
649
|
-
GetMenuV3DraftBrandItemsTagsQuery,
|
|
650
608
|
GetMenuV3DraftBrandItemsTagsResponse,
|
|
651
|
-
GetMenuV3DraftBrandModifiersTagsQuery,
|
|
652
609
|
GetMenuV3DraftBrandModifiersTagsResponse,
|
|
653
610
|
PostMenuV3DraftBrandPublishQuery,
|
|
654
611
|
PostMenuV3DraftBrandPublishResponse,
|
|
@@ -661,10 +618,8 @@ import {
|
|
|
661
618
|
PostMenuV3DraftBrandAttachmentResponse,
|
|
662
619
|
GetMenuV3DraftBrandExportQuery,
|
|
663
620
|
GetMenuV3DraftBrandExportResponse,
|
|
664
|
-
GetMenuV3DraftBrandImportLinkQuery,
|
|
665
621
|
GetMenuV3DraftBrandImportLinkResponse,
|
|
666
622
|
PostMenuV3DraftBrandImportResponse,
|
|
667
|
-
GetMenuV3DraftBrandVerifyPublishQuery,
|
|
668
623
|
GetMenuV3DraftBrandVerifyPublishResponse,
|
|
669
624
|
PostMenuV3DraftBrandArchiveResponse,
|
|
670
625
|
PostMenuV3DraftBrandUnarchiveResponse,
|
|
@@ -933,7 +888,6 @@ import {
|
|
|
933
888
|
GetMenuV3UniversalItemsResponse,
|
|
934
889
|
PutMenuV3UniversalItemsBody,
|
|
935
890
|
PutMenuV3UniversalItemsResponse,
|
|
936
|
-
GetMenuV3UniversalItemQuery,
|
|
937
891
|
GetMenuV3UniversalItemResponse,
|
|
938
892
|
PatchMenuV3UniversalItemBody,
|
|
939
893
|
PatchMenuV3UniversalItemResponse,
|
|
@@ -1064,20 +1018,14 @@ import {
|
|
|
1064
1018
|
DeleteMenuV4CategoryDetachItemsResponse,
|
|
1065
1019
|
GetMenuV4CategoryAttachableItemsQuery,
|
|
1066
1020
|
GetMenuV4CategoryAttachableItemsResponse,
|
|
1067
|
-
GetMenuV3PingQuery,
|
|
1068
1021
|
GetMenuV3PingResponse,
|
|
1069
|
-
GetMenuV3HealthQuery,
|
|
1070
1022
|
GetMenuV3HealthResponse,
|
|
1071
1023
|
} from './interface/menu';
|
|
1072
1024
|
|
|
1073
1025
|
import {
|
|
1074
|
-
GetCatalogPingQuery,
|
|
1075
1026
|
GetCatalogPingResponse,
|
|
1076
|
-
GetCatalogHealthQuery,
|
|
1077
1027
|
GetCatalogHealthResponse,
|
|
1078
|
-
GetCatalogStatusQuery,
|
|
1079
1028
|
GetCatalogStatusResponse,
|
|
1080
|
-
GetCatalogConnectionsStatusQuery,
|
|
1081
1029
|
GetCatalogConnectionsStatusResponse,
|
|
1082
1030
|
PostCatalogBody,
|
|
1083
1031
|
PostCatalogResponse,
|
|
@@ -1103,10 +1051,8 @@ import {
|
|
|
1103
1051
|
PostCloneCatalogResponse,
|
|
1104
1052
|
PostCatalogBaseItemBody,
|
|
1105
1053
|
PostCatalogBaseItemResponse,
|
|
1106
|
-
GetCatalogBaseItemsQuery,
|
|
1107
1054
|
GetCatalogBaseItemsBody,
|
|
1108
1055
|
GetCatalogBaseItemsResponse,
|
|
1109
|
-
GetCatalogBaseItemQuery,
|
|
1110
1056
|
GetCatalogBaseItemResponse,
|
|
1111
1057
|
} from './interface/catalog';
|
|
1112
1058
|
|
|
@@ -1124,7 +1070,6 @@ import {
|
|
|
1124
1070
|
PostNotificationDevicePushResponse,
|
|
1125
1071
|
PostNotificationBatchDevicePushBody,
|
|
1126
1072
|
PostNotificationBatchDevicePushResponse,
|
|
1127
|
-
GetNotificationSwaggerQuery,
|
|
1128
1073
|
GetNotificationSwaggerResponse,
|
|
1129
1074
|
} from './interface/notification';
|
|
1130
1075
|
|
|
@@ -1138,7 +1083,6 @@ import {
|
|
|
1138
1083
|
PostVendorApplicationResponse,
|
|
1139
1084
|
GetVendorApplicationsQuery,
|
|
1140
1085
|
GetVendorApplicationsResponse,
|
|
1141
|
-
GetVendorApplicationQuery,
|
|
1142
1086
|
GetVendorApplicationResponse,
|
|
1143
1087
|
PatchVendorApplicationBody,
|
|
1144
1088
|
PatchVendorApplicationResponse,
|
|
@@ -1146,20 +1090,16 @@ import {
|
|
|
1146
1090
|
PostVendorQuery,
|
|
1147
1091
|
PostVendorBody,
|
|
1148
1092
|
PostVendorResponse,
|
|
1149
|
-
GetVendorsQuery,
|
|
1150
1093
|
GetVendorsResponse,
|
|
1151
|
-
GetVendorQuery,
|
|
1152
1094
|
GetVendorResponse,
|
|
1153
1095
|
PatchVendorBody,
|
|
1154
1096
|
PatchVendorResponse,
|
|
1155
1097
|
DeleteVendorResponse,
|
|
1156
|
-
GetVendorAuthQuery,
|
|
1157
1098
|
GetVendorAuthResponse,
|
|
1158
1099
|
GetVendorKeysQuery,
|
|
1159
1100
|
GetVendorKeysResponse,
|
|
1160
1101
|
PostVendorKeyBody,
|
|
1161
1102
|
PostVendorKeyResponse,
|
|
1162
|
-
GetVendorKeyQuery,
|
|
1163
1103
|
GetVendorKeyResponse,
|
|
1164
1104
|
PatchVendorKeyBody,
|
|
1165
1105
|
PatchVendorKeyResponse,
|
|
@@ -1171,17 +1111,12 @@ import {
|
|
|
1171
1111
|
} from './interface/vendor';
|
|
1172
1112
|
|
|
1173
1113
|
import {
|
|
1174
|
-
GetFrictionlessBrandFrictionlessStatusQuery,
|
|
1175
1114
|
GetFrictionlessBrandFrictionlessStatusResponse,
|
|
1176
1115
|
PostFrictionlessQrCodeBody,
|
|
1177
1116
|
PostFrictionlessQrCodeResponse,
|
|
1178
|
-
GetFrictionlessCheckinStatusQuery,
|
|
1179
1117
|
GetFrictionlessCheckinStatusResponse,
|
|
1180
|
-
GetFrictionlessCheckinQuery,
|
|
1181
1118
|
GetFrictionlessCheckinResponse,
|
|
1182
|
-
GetFrictionlessUsersPaymentIssuesQuery,
|
|
1183
1119
|
GetFrictionlessUsersPaymentIssuesResponse,
|
|
1184
|
-
GetFrictionlessFailedCheckinsQuery,
|
|
1185
1120
|
GetFrictionlessFailedCheckinsResponse,
|
|
1186
1121
|
PostFrictionlessCheckinsReprocessResponse,
|
|
1187
1122
|
PostFrictionlessCheckinReprocessPaymentBody,
|
|
@@ -1193,7 +1128,6 @@ import {
|
|
|
1193
1128
|
} from './interface/frictionless';
|
|
1194
1129
|
|
|
1195
1130
|
import {
|
|
1196
|
-
HealthCheckControllerExecuteQuery,
|
|
1197
1131
|
HealthCheckControllerExecuteResponse,
|
|
1198
1132
|
GetPaymentListByBrandQuery,
|
|
1199
1133
|
GetPaymentListByBrandResponse,
|
|
@@ -1207,7 +1141,6 @@ import {
|
|
|
1207
1141
|
PostReviewOrderItemsResponse,
|
|
1208
1142
|
GetConsumerHomePageQuery,
|
|
1209
1143
|
GetConsumerHomePageResponse,
|
|
1210
|
-
GetConsumerFrictionlessCheckinQuery,
|
|
1211
1144
|
GetConsumerFrictionlessCheckinResponse,
|
|
1212
1145
|
PostFrictionlessQrcodeBody,
|
|
1213
1146
|
PostFrictionlessQrcodeResponse,
|
|
@@ -1223,7 +1156,6 @@ import {
|
|
|
1223
1156
|
GetConsumerActiveMenusResponse,
|
|
1224
1157
|
GetConsumerMenuRecommendedItemsQuery,
|
|
1225
1158
|
GetConsumerMenuRecommendedItemsResponse$0,
|
|
1226
|
-
GetConsumerMenuQuery,
|
|
1227
1159
|
GetConsumerMenuResponse,
|
|
1228
1160
|
GetConsumerMenuItemsQuery,
|
|
1229
1161
|
GetConsumerMenuItemsResponse$0,
|
|
@@ -1237,7 +1169,6 @@ import {
|
|
|
1237
1169
|
PutConsumerUserResponse$0,
|
|
1238
1170
|
PatchConsumerUserBody,
|
|
1239
1171
|
PatchConsumerUserResponse$0,
|
|
1240
|
-
GetConsumerUserQuery,
|
|
1241
1172
|
GetConsumerUserResponse$0,
|
|
1242
1173
|
DeleteConsumerLogoutResponse,
|
|
1243
1174
|
PostConsumerChangePasswordBody,
|
|
@@ -1246,7 +1177,6 @@ import {
|
|
|
1246
1177
|
GetPaymentCashlessConsumerResponse,
|
|
1247
1178
|
GetPaymentClienttokenConsumerQuery,
|
|
1248
1179
|
GetPaymentClienttokenConsumerResponse,
|
|
1249
|
-
GetConsumerShoppingcartQuery,
|
|
1250
1180
|
GetConsumerShoppingcartResponse,
|
|
1251
1181
|
PutConsumerShoppingcartBody,
|
|
1252
1182
|
PutConsumerShoppingcartResponse,
|
|
@@ -1263,7 +1193,6 @@ import {
|
|
|
1263
1193
|
PostConsumerPromoRedeemBody,
|
|
1264
1194
|
PostConsumerPromoRedeemResponse,
|
|
1265
1195
|
PutConsumerUserMealplanResponse,
|
|
1266
|
-
GetMealplanConsumerQuery,
|
|
1267
1196
|
GetMealplanConsumerResponse,
|
|
1268
1197
|
PostMealplanConsumerBody,
|
|
1269
1198
|
PostMealplanConsumerResponse,
|
|
@@ -1271,16 +1200,13 @@ import {
|
|
|
1271
1200
|
PutConsumerMealplanResponse,
|
|
1272
1201
|
PostMealplanVerifyConsumerBody,
|
|
1273
1202
|
PostMealplanVerifyConsumerResponse,
|
|
1274
|
-
GetConsumerConfigAppconfigQuery,
|
|
1275
1203
|
GetConsumerConfigAppconfigResponse,
|
|
1276
1204
|
PatchCheckinConsumerOrderResponse,
|
|
1277
|
-
GetConsumerAppThemeQuery,
|
|
1278
1205
|
GetConsumerAppThemeResponse,
|
|
1279
1206
|
GetConsumerBrandMenuTimeslotsQuery,
|
|
1280
1207
|
GetConsumerBrandMenuTimeslotsResponse,
|
|
1281
1208
|
GetConsumerBrandMenuDeliveryTimeslotsQuery,
|
|
1282
1209
|
GetConsumerBrandMenuDeliveryTimeslotsResponse,
|
|
1283
|
-
GetConsumerConfigPublicQuery,
|
|
1284
1210
|
GetConsumerConfigPublicResponse$0,
|
|
1285
1211
|
PutConsumerShoppingcartPaymentBody,
|
|
1286
1212
|
PutConsumerShoppingcartPaymentResponse,
|
|
@@ -1288,7 +1214,6 @@ import {
|
|
|
1288
1214
|
PutConsumerShoppingcartPromoResponse,
|
|
1289
1215
|
DeleteConsumerShoppingcartPromoResponse,
|
|
1290
1216
|
PutConsumerShoppingcartCheckoutResponse,
|
|
1291
|
-
GetConsumerStationDiscountsQuery,
|
|
1292
1217
|
GetConsumerStationDiscountsResponse,
|
|
1293
1218
|
PostConsumerShoppingcartCloneBody,
|
|
1294
1219
|
PostConsumerShoppingcartCloneResponse,
|
|
@@ -1325,52 +1250,37 @@ import {
|
|
|
1325
1250
|
PostCentricosAiItemImageResponse,
|
|
1326
1251
|
PostCentricosOrdersExportQuery,
|
|
1327
1252
|
PostCentricosOrdersExportResponse,
|
|
1328
|
-
GetCentricosReportGroupConfigQuery,
|
|
1329
1253
|
GetCentricosReportGroupConfigResponse,
|
|
1330
1254
|
PutCentricosReportGroupConfigBody,
|
|
1331
1255
|
PutCentricosReportGroupConfigResponse,
|
|
1332
1256
|
DeleteCentricosReportGroupConfigResponse,
|
|
1333
|
-
GetCentricosReportConfigDefaultQuery,
|
|
1334
1257
|
GetCentricosReportConfigDefaultResponse,
|
|
1335
1258
|
GetCentricosLookerEmbedurlQuery,
|
|
1336
1259
|
GetCentricosLookerEmbedurlResponse,
|
|
1337
|
-
GetSiteDevicesQuery,
|
|
1338
1260
|
GetSiteDevicesResponse,
|
|
1339
1261
|
GetCentricosSitesQuery,
|
|
1340
1262
|
GetCentricosSitesResponse,
|
|
1341
1263
|
GetSitesFromPriceLevelQuery,
|
|
1342
1264
|
GetSitesFromPriceLevelResponse,
|
|
1343
|
-
GetReviewOrderItemsQuery,
|
|
1344
1265
|
GetReviewOrderItemsResponse,
|
|
1345
|
-
GetYesterdaysSnapshotQuery,
|
|
1346
1266
|
GetYesterdaysSnapshotResponse,
|
|
1347
|
-
GetCentricosStationQuery,
|
|
1348
1267
|
GetCentricosStationResponse,
|
|
1349
1268
|
PutCentricosDiscountVoucherifyBody,
|
|
1350
1269
|
PutCentricosDiscountVoucherifyResponse,
|
|
1351
1270
|
PutCentricosDiscountVoucherifyPublishResponse,
|
|
1352
1271
|
DeleteCentricosDiscountsVoucherifyResponse,
|
|
1353
|
-
GetCentricosDiscountQuery,
|
|
1354
1272
|
GetCentricosDiscountResponse,
|
|
1355
|
-
GetCentricosDiscountAllQuery,
|
|
1356
1273
|
GetCentricosDiscountAllResponse,
|
|
1357
1274
|
PostDiscountActiveBody,
|
|
1358
1275
|
PostDiscountActiveResponse,
|
|
1359
1276
|
GetCentricosDiscountsQuery,
|
|
1360
1277
|
GetCentricosDiscountsResponse,
|
|
1361
|
-
GetRecommendationsBySiteQuery,
|
|
1362
1278
|
GetRecommendationsBySiteResponse,
|
|
1363
|
-
GetRecommendationsBySiteV2Query,
|
|
1364
1279
|
GetRecommendationsBySiteV2Response,
|
|
1365
1280
|
PostCentricosBusinessUnitValidateVertexResponse,
|
|
1366
1281
|
} from './interface/centricos';
|
|
1367
1282
|
|
|
1368
|
-
import {
|
|
1369
|
-
TaxHealthCheckQuery,
|
|
1370
|
-
TaxHealthCheckResponse,
|
|
1371
|
-
PostQuoteTaxBody,
|
|
1372
|
-
PostQuoteTaxResponse,
|
|
1373
|
-
} from './interface/tax';
|
|
1283
|
+
import { TaxHealthCheckResponse, PostQuoteTaxBody, PostQuoteTaxResponse } from './interface/tax';
|
|
1374
1284
|
|
|
1375
1285
|
import {
|
|
1376
1286
|
GetSearchOrderQuery,
|
|
@@ -1379,7 +1289,6 @@ import {
|
|
|
1379
1289
|
GetSearchLocationResponse,
|
|
1380
1290
|
GetSearchUserQuery,
|
|
1381
1291
|
GetSearchUserResponse,
|
|
1382
|
-
GetSearchDiscountByIdQuery,
|
|
1383
1292
|
GetSearchDiscountByIdResponse,
|
|
1384
1293
|
GetSearchDiscountsQuery,
|
|
1385
1294
|
GetSearchDiscountsResponse,
|
|
@@ -1390,7 +1299,6 @@ import {
|
|
|
1390
1299
|
PostAuthFlowResponse,
|
|
1391
1300
|
GetAuthSsoConfigQuery,
|
|
1392
1301
|
GetAuthSsoConfigResponse,
|
|
1393
|
-
GetAuthSsoConfigsQuery,
|
|
1394
1302
|
GetAuthSsoConfigsResponse,
|
|
1395
1303
|
PostAuthSsoConfigBody,
|
|
1396
1304
|
PostAuthSsoConfigResponse,
|
|
@@ -1405,7 +1313,6 @@ import {
|
|
|
1405
1313
|
GetAuthSsoExchangeResponse,
|
|
1406
1314
|
PostAuthJwtAssertionBody,
|
|
1407
1315
|
PostAuthJwtAssertionResponse,
|
|
1408
|
-
GetAuthJwtAssertionJwkQuery,
|
|
1409
1316
|
GetAuthJwtAssertionJwkResponse,
|
|
1410
1317
|
} from './interface/auth';
|
|
1411
1318
|
|
|
@@ -1414,20 +1321,17 @@ import {
|
|
|
1414
1321
|
GetReviewsResponse,
|
|
1415
1322
|
PostReviewBody,
|
|
1416
1323
|
PostReviewResponse,
|
|
1417
|
-
GetReviewQuery,
|
|
1418
1324
|
GetReviewResponse,
|
|
1419
1325
|
DeleteReviewResponse,
|
|
1420
1326
|
} from './interface/review';
|
|
1421
1327
|
|
|
1422
1328
|
import {
|
|
1423
1329
|
DeleteDiscountResponse,
|
|
1424
|
-
GetDiscountQuery,
|
|
1425
1330
|
GetDiscountResponse,
|
|
1426
1331
|
PatchDiscountBody,
|
|
1427
1332
|
PatchDiscountResponse,
|
|
1428
1333
|
PutDiscountBody,
|
|
1429
1334
|
PutDiscountResponse,
|
|
1430
|
-
GetDiscountsAllQuery,
|
|
1431
1335
|
GetDiscountsAllResponse,
|
|
1432
1336
|
GetDiscountsQuery,
|
|
1433
1337
|
GetDiscountsResponse,
|
|
@@ -1464,7 +1368,6 @@ import {
|
|
|
1464
1368
|
ProductionSheetControllerSendChatFeedbackResponse,
|
|
1465
1369
|
ProductionSheetControllerGetForecastMetaDataQuery,
|
|
1466
1370
|
ProductionSheetControllerGetForecastMetaDataResponse,
|
|
1467
|
-
ProductionSheetControllerServiceStatusQuery,
|
|
1468
1371
|
ProductionSheetControllerServiceStatusResponse,
|
|
1469
1372
|
ProductionSheetControllerChatStreamBody,
|
|
1470
1373
|
ProductionSheetControllerChatStreamResponse,
|
|
@@ -1690,9 +1593,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
1690
1593
|
*/
|
|
1691
1594
|
get_payment_cashless(
|
|
1692
1595
|
id: string,
|
|
1693
|
-
options?:
|
|
1694
|
-
query?: GetPaymentCashlessQuery;
|
|
1695
|
-
} & RequestOptions,
|
|
1596
|
+
options?: RequestOptions,
|
|
1696
1597
|
): ResponsePromise<GetPaymentCashlessResponse> {
|
|
1697
1598
|
return this.request(
|
|
1698
1599
|
'payment',
|
|
@@ -1982,9 +1883,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
1982
1883
|
get_order_customer_orders_brand(
|
|
1983
1884
|
id: string,
|
|
1984
1885
|
location_brand: string,
|
|
1985
|
-
options?:
|
|
1986
|
-
query?: GetOrderCustomerOrdersBrandQuery;
|
|
1987
|
-
} & RequestOptions,
|
|
1886
|
+
options?: RequestOptions,
|
|
1988
1887
|
): ResponsePromise<GetOrderCustomerOrdersBrandResponse> {
|
|
1989
1888
|
return this.request(
|
|
1990
1889
|
'order',
|
|
@@ -2468,9 +2367,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
2468
2367
|
*/
|
|
2469
2368
|
get_location_group_app_theme(
|
|
2470
2369
|
id: string,
|
|
2471
|
-
options?:
|
|
2472
|
-
query?: GetLocationGroupAppThemeQuery;
|
|
2473
|
-
} & RequestOptions,
|
|
2370
|
+
options?: RequestOptions,
|
|
2474
2371
|
): ResponsePromise<GetLocationGroupAppThemeResponse> {
|
|
2475
2372
|
return this.request(
|
|
2476
2373
|
'location',
|
|
@@ -3120,9 +3017,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
3120
3017
|
*/
|
|
3121
3018
|
get_location_menu_association_brand(
|
|
3122
3019
|
id: string,
|
|
3123
|
-
options?:
|
|
3124
|
-
query?: GetLocationMenuAssociationBrandQuery;
|
|
3125
|
-
} & RequestOptions,
|
|
3020
|
+
options?: RequestOptions,
|
|
3126
3021
|
): ResponsePromise<GetLocationMenuAssociationBrandResponse> {
|
|
3127
3022
|
return this.request(
|
|
3128
3023
|
'location',
|
|
@@ -3230,9 +3125,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
3230
3125
|
*/
|
|
3231
3126
|
get_shoppingcart_cart(
|
|
3232
3127
|
id: string,
|
|
3233
|
-
options?:
|
|
3234
|
-
query?: GetShoppingcartCartQuery;
|
|
3235
|
-
} & RequestOptions,
|
|
3128
|
+
options?: RequestOptions,
|
|
3236
3129
|
): ResponsePromise<GetShoppingcartCartResponse> {
|
|
3237
3130
|
return this.request(
|
|
3238
3131
|
'shoppingcart',
|
|
@@ -3338,9 +3231,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
3338
3231
|
*/
|
|
3339
3232
|
get_shoppingcart_payment_methods(
|
|
3340
3233
|
id: string,
|
|
3341
|
-
options?:
|
|
3342
|
-
query?: GetShoppingcartPaymentMethodsQuery;
|
|
3343
|
-
} & RequestOptions,
|
|
3234
|
+
options?: RequestOptions,
|
|
3344
3235
|
): ResponsePromise<GetShoppingcartPaymentMethodsResponse> {
|
|
3345
3236
|
return this.request(
|
|
3346
3237
|
'shoppingcart',
|
|
@@ -3487,11 +3378,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
3487
3378
|
*
|
|
3488
3379
|
* @param options - additional request options
|
|
3489
3380
|
*/
|
|
3490
|
-
get_shoppingcart_ping(
|
|
3491
|
-
options?: {
|
|
3492
|
-
query?: GetShoppingcartPingQuery;
|
|
3493
|
-
} & RequestOptions,
|
|
3494
|
-
): ResponsePromise<GetShoppingcartPingResponse> {
|
|
3381
|
+
get_shoppingcart_ping(options?: RequestOptions): ResponsePromise<GetShoppingcartPingResponse> {
|
|
3495
3382
|
return this.request(
|
|
3496
3383
|
'shoppingcart',
|
|
3497
3384
|
'/shoppingcart/ping',
|
|
@@ -3508,9 +3395,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
3508
3395
|
* @param options - additional request options
|
|
3509
3396
|
*/
|
|
3510
3397
|
get_shoppingcart_health(
|
|
3511
|
-
options?:
|
|
3512
|
-
query?: GetShoppingcartHealthQuery;
|
|
3513
|
-
} & RequestOptions,
|
|
3398
|
+
options?: RequestOptions,
|
|
3514
3399
|
): ResponsePromise<GetShoppingcartHealthResponse> {
|
|
3515
3400
|
return this.request(
|
|
3516
3401
|
'shoppingcart',
|
|
@@ -3569,11 +3454,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
3569
3454
|
*
|
|
3570
3455
|
* @param options - additional request options
|
|
3571
3456
|
*/
|
|
3572
|
-
get_partner_swagger(
|
|
3573
|
-
options?: {
|
|
3574
|
-
query?: GetPartnerSwaggerQuery;
|
|
3575
|
-
} & RequestOptions,
|
|
3576
|
-
): ResponsePromise<GetPartnerSwaggerResponse> {
|
|
3457
|
+
get_partner_swagger(options?: RequestOptions): ResponsePromise<GetPartnerSwaggerResponse> {
|
|
3577
3458
|
return this.request(
|
|
3578
3459
|
'partner',
|
|
3579
3460
|
'/partner/swagger.json',
|
|
@@ -3676,12 +3557,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
3676
3557
|
* @param id - Task ID
|
|
3677
3558
|
* @param options - additional request options
|
|
3678
3559
|
*/
|
|
3679
|
-
get_task(
|
|
3680
|
-
id: string,
|
|
3681
|
-
options?: {
|
|
3682
|
-
query?: GetTaskQuery;
|
|
3683
|
-
} & RequestOptions,
|
|
3684
|
-
): ResponsePromise<GetTaskResponse> {
|
|
3560
|
+
get_task(id: string, options?: RequestOptions): ResponsePromise<GetTaskResponse> {
|
|
3685
3561
|
return this.request('task', '/task/{id}', 'GET', `/task/${id}`, null, options);
|
|
3686
3562
|
}
|
|
3687
3563
|
|
|
@@ -3733,9 +3609,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
3733
3609
|
*/
|
|
3734
3610
|
get_task_order_kds(
|
|
3735
3611
|
id: string,
|
|
3736
|
-
options?:
|
|
3737
|
-
query?: GetTaskOrderKdsQuery;
|
|
3738
|
-
} & RequestOptions,
|
|
3612
|
+
options?: RequestOptions,
|
|
3739
3613
|
): ResponsePromise<GetTaskOrderKdsResponse> {
|
|
3740
3614
|
return this.request(
|
|
3741
3615
|
'task',
|
|
@@ -3928,11 +3802,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
3928
3802
|
*
|
|
3929
3803
|
* @param options - additional request options
|
|
3930
3804
|
*/
|
|
3931
|
-
get_kds_swagger(
|
|
3932
|
-
options?: {
|
|
3933
|
-
query?: GetKdsSwaggerQuery;
|
|
3934
|
-
} & RequestOptions,
|
|
3935
|
-
): ResponsePromise<GetKdsSwaggerResponse> {
|
|
3805
|
+
get_kds_swagger(options?: RequestOptions): ResponsePromise<GetKdsSwaggerResponse> {
|
|
3936
3806
|
return this.request('kds', '/kds/swagger.json', 'GET', `/kds/swagger.json`, null, options);
|
|
3937
3807
|
}
|
|
3938
3808
|
|
|
@@ -4037,9 +3907,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
4037
3907
|
get_mealplan_tender(
|
|
4038
3908
|
id: string,
|
|
4039
3909
|
tender: string,
|
|
4040
|
-
options?:
|
|
4041
|
-
query?: GetMealplanTenderQuery;
|
|
4042
|
-
} & RequestOptions,
|
|
3910
|
+
options?: RequestOptions,
|
|
4043
3911
|
): ResponsePromise<GetMealplanTenderResponse> {
|
|
4044
3912
|
return this.request(
|
|
4045
3913
|
'mealplan',
|
|
@@ -4217,9 +4085,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
4217
4085
|
* @param options - additional request options
|
|
4218
4086
|
*/
|
|
4219
4087
|
get_mealplan_institutions(
|
|
4220
|
-
options?:
|
|
4221
|
-
query?: GetMealplanInstitutionsQuery;
|
|
4222
|
-
} & RequestOptions,
|
|
4088
|
+
options?: RequestOptions,
|
|
4223
4089
|
): ResponsePromise<GetMealplanInstitutionsResponse> {
|
|
4224
4090
|
return this.request(
|
|
4225
4091
|
'mealplan',
|
|
@@ -4271,11 +4137,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
4271
4137
|
*
|
|
4272
4138
|
* @param options - additional request options
|
|
4273
4139
|
*/
|
|
4274
|
-
get_datalake_swagger(
|
|
4275
|
-
options?: {
|
|
4276
|
-
query?: GetDatalakeSwaggerQuery;
|
|
4277
|
-
} & RequestOptions,
|
|
4278
|
-
): ResponsePromise<GetDatalakeSwaggerResponse> {
|
|
4140
|
+
get_datalake_swagger(options?: RequestOptions): ResponsePromise<GetDatalakeSwaggerResponse> {
|
|
4279
4141
|
return this.request('datalake', '/swagger.json', 'GET', `/swagger.json`, null, options);
|
|
4280
4142
|
}
|
|
4281
4143
|
|
|
@@ -4599,9 +4461,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
4599
4461
|
* @param options - additional request options
|
|
4600
4462
|
*/
|
|
4601
4463
|
get_promo_voucherify_activity_config(
|
|
4602
|
-
options?:
|
|
4603
|
-
query?: GetPromoVoucherifyActivityConfigQuery;
|
|
4604
|
-
} & RequestOptions,
|
|
4464
|
+
options?: RequestOptions,
|
|
4605
4465
|
): ResponsePromise<GetPromoVoucherifyActivityConfigResponse> {
|
|
4606
4466
|
return this.request(
|
|
4607
4467
|
'promo',
|
|
@@ -4618,11 +4478,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
4618
4478
|
*
|
|
4619
4479
|
* @param options - additional request options
|
|
4620
4480
|
*/
|
|
4621
|
-
get_config_appconfig(
|
|
4622
|
-
options?: {
|
|
4623
|
-
query?: GetConfigAppconfigQuery;
|
|
4624
|
-
} & RequestOptions,
|
|
4625
|
-
): ResponsePromise<GetConfigAppconfigResponse> {
|
|
4481
|
+
get_config_appconfig(options?: RequestOptions): ResponsePromise<GetConfigAppconfigResponse> {
|
|
4626
4482
|
return this.request(
|
|
4627
4483
|
'config',
|
|
4628
4484
|
'/config/appconfig',
|
|
@@ -4639,12 +4495,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
4639
4495
|
* @param key - configuration key
|
|
4640
4496
|
* @param options - additional request options
|
|
4641
4497
|
*/
|
|
4642
|
-
get_config(
|
|
4643
|
-
key: string,
|
|
4644
|
-
options?: {
|
|
4645
|
-
query?: GetConfigQuery;
|
|
4646
|
-
} & RequestOptions,
|
|
4647
|
-
): ResponsePromise<GetConfigResponse> {
|
|
4498
|
+
get_config(key: string, options?: RequestOptions): ResponsePromise<GetConfigResponse> {
|
|
4648
4499
|
return this.request('config', '/config/{key}', 'GET', `/config/${key}`, null, options);
|
|
4649
4500
|
}
|
|
4650
4501
|
|
|
@@ -4696,9 +4547,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
4696
4547
|
*/
|
|
4697
4548
|
get_config_public(
|
|
4698
4549
|
key: string,
|
|
4699
|
-
options?:
|
|
4700
|
-
query?: GetConfigPublicQuery;
|
|
4701
|
-
} & RequestOptions,
|
|
4550
|
+
options?: RequestOptions,
|
|
4702
4551
|
): ResponsePromise<GetConfigPublicResponse> {
|
|
4703
4552
|
return this.request(
|
|
4704
4553
|
'config',
|
|
@@ -4779,11 +4628,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
4779
4628
|
*
|
|
4780
4629
|
* @param options - additional request options
|
|
4781
4630
|
*/
|
|
4782
|
-
get_config_ping(
|
|
4783
|
-
options?: {
|
|
4784
|
-
query?: GetConfigPingQuery;
|
|
4785
|
-
} & RequestOptions,
|
|
4786
|
-
): ResponsePromise<GetConfigPingResponse> {
|
|
4631
|
+
get_config_ping(options?: RequestOptions): ResponsePromise<GetConfigPingResponse> {
|
|
4787
4632
|
return this.request('config', '/ping', 'GET', `/ping`, null, options);
|
|
4788
4633
|
}
|
|
4789
4634
|
|
|
@@ -4830,9 +4675,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
4830
4675
|
*/
|
|
4831
4676
|
get_announcement(
|
|
4832
4677
|
id: string,
|
|
4833
|
-
options?:
|
|
4834
|
-
query?: GetAnnouncementQuery;
|
|
4835
|
-
} & RequestOptions,
|
|
4678
|
+
options?: RequestOptions,
|
|
4836
4679
|
): ResponsePromise<GetAnnouncementResponse> {
|
|
4837
4680
|
return this.request(
|
|
4838
4681
|
'announcement',
|
|
@@ -4986,9 +4829,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
4986
4829
|
*/
|
|
4987
4830
|
get_report_eod_group_subscribers(
|
|
4988
4831
|
id: string,
|
|
4989
|
-
options?:
|
|
4990
|
-
query?: GetReportEodGroupSubscribersQuery;
|
|
4991
|
-
} & RequestOptions,
|
|
4832
|
+
options?: RequestOptions,
|
|
4992
4833
|
): ResponsePromise<GetReportEodGroupSubscribersResponse> {
|
|
4993
4834
|
return this.request(
|
|
4994
4835
|
'report',
|
|
@@ -5116,9 +4957,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
5116
4957
|
*/
|
|
5117
4958
|
get_report_group_config(
|
|
5118
4959
|
location_group: string,
|
|
5119
|
-
options?:
|
|
5120
|
-
query?: GetReportGroupConfigQuery;
|
|
5121
|
-
} & RequestOptions,
|
|
4960
|
+
options?: RequestOptions,
|
|
5122
4961
|
): ResponsePromise<GetReportGroupConfigResponse> {
|
|
5123
4962
|
return this.request(
|
|
5124
4963
|
'report',
|
|
@@ -5158,9 +4997,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
5158
4997
|
*/
|
|
5159
4998
|
get_report_group_config_default(
|
|
5160
4999
|
location_group: string,
|
|
5161
|
-
options?:
|
|
5162
|
-
query?: GetReportGroupConfigDefaultQuery;
|
|
5163
|
-
} & RequestOptions,
|
|
5000
|
+
options?: RequestOptions,
|
|
5164
5001
|
): ResponsePromise<GetReportGroupConfigDefaultResponse> {
|
|
5165
5002
|
return this.request(
|
|
5166
5003
|
'report',
|
|
@@ -5245,12 +5082,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
5245
5082
|
* @param id - User ID
|
|
5246
5083
|
* @param options - additional request options
|
|
5247
5084
|
*/
|
|
5248
|
-
get_user(
|
|
5249
|
-
id: string,
|
|
5250
|
-
options?: {
|
|
5251
|
-
query?: GetUserQuery;
|
|
5252
|
-
} & RequestOptions,
|
|
5253
|
-
): ResponsePromise<GetUserResponse> {
|
|
5085
|
+
get_user(id: string, options?: RequestOptions): ResponsePromise<GetUserResponse> {
|
|
5254
5086
|
return this.request('user', '/user/{id}', 'GET', `/user/${id}`, null, options);
|
|
5255
5087
|
}
|
|
5256
5088
|
|
|
@@ -5438,9 +5270,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
5438
5270
|
get_user_secret(
|
|
5439
5271
|
id: string,
|
|
5440
5272
|
key: string,
|
|
5441
|
-
options?:
|
|
5442
|
-
query?: GetUserSecretQuery;
|
|
5443
|
-
} & RequestOptions,
|
|
5273
|
+
options?: RequestOptions,
|
|
5444
5274
|
): ResponsePromise<GetUserSecretResponse> {
|
|
5445
5275
|
return this.request(
|
|
5446
5276
|
'user',
|
|
@@ -5528,9 +5358,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
5528
5358
|
*/
|
|
5529
5359
|
get_user_permissions(
|
|
5530
5360
|
id: string,
|
|
5531
|
-
options?:
|
|
5532
|
-
query?: GetUserPermissionsQuery;
|
|
5533
|
-
} & RequestOptions,
|
|
5361
|
+
options?: RequestOptions,
|
|
5534
5362
|
): ResponsePromise<GetUserPermissionsResponse> {
|
|
5535
5363
|
return this.request(
|
|
5536
5364
|
'user',
|
|
@@ -5810,11 +5638,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
5810
5638
|
*
|
|
5811
5639
|
* @param options - additional request options
|
|
5812
5640
|
*/
|
|
5813
|
-
get_calendar_swagger(
|
|
5814
|
-
options?: {
|
|
5815
|
-
query?: GetCalendarSwaggerQuery;
|
|
5816
|
-
} & RequestOptions,
|
|
5817
|
-
): ResponsePromise<GetCalendarSwaggerResponse> {
|
|
5641
|
+
get_calendar_swagger(options?: RequestOptions): ResponsePromise<GetCalendarSwaggerResponse> {
|
|
5818
5642
|
return this.request(
|
|
5819
5643
|
'calendar',
|
|
5820
5644
|
'/calendar/swagger.json',
|
|
@@ -5850,11 +5674,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
5850
5674
|
*
|
|
5851
5675
|
* @param options - additional request options
|
|
5852
5676
|
*/
|
|
5853
|
-
get_calendar_ping(
|
|
5854
|
-
options?: {
|
|
5855
|
-
query?: GetCalendarPingQuery;
|
|
5856
|
-
} & RequestOptions,
|
|
5857
|
-
): ResponsePromise<GetCalendarPingResponse> {
|
|
5677
|
+
get_calendar_ping(options?: RequestOptions): ResponsePromise<GetCalendarPingResponse> {
|
|
5858
5678
|
return this.request('calendar', '/calendar/ping', 'GET', `/calendar/ping`, null, options);
|
|
5859
5679
|
}
|
|
5860
5680
|
|
|
@@ -5863,11 +5683,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
5863
5683
|
*
|
|
5864
5684
|
* @param options - additional request options
|
|
5865
5685
|
*/
|
|
5866
|
-
get_calendar_health(
|
|
5867
|
-
options?: {
|
|
5868
|
-
query?: GetCalendarHealthQuery;
|
|
5869
|
-
} & RequestOptions,
|
|
5870
|
-
): ResponsePromise<GetCalendarHealthResponse> {
|
|
5686
|
+
get_calendar_health(options?: RequestOptions): ResponsePromise<GetCalendarHealthResponse> {
|
|
5871
5687
|
return this.request(
|
|
5872
5688
|
'calendar',
|
|
5873
5689
|
'/calendar/health',
|
|
@@ -6079,9 +5895,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
6079
5895
|
*/
|
|
6080
5896
|
get_sector_menus(
|
|
6081
5897
|
sector: string,
|
|
6082
|
-
options?:
|
|
6083
|
-
query?: GetSectorMenusQuery;
|
|
6084
|
-
} & RequestOptions,
|
|
5898
|
+
options?: RequestOptions,
|
|
6085
5899
|
): ResponsePromise<GetSectorMenusResponse> {
|
|
6086
5900
|
return this.request(
|
|
6087
5901
|
'menu',
|
|
@@ -6101,9 +5915,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
6101
5915
|
*/
|
|
6102
5916
|
get_company_menus(
|
|
6103
5917
|
company: string,
|
|
6104
|
-
options?:
|
|
6105
|
-
query?: GetCompanyMenusQuery;
|
|
6106
|
-
} & RequestOptions,
|
|
5918
|
+
options?: RequestOptions,
|
|
6107
5919
|
): ResponsePromise<GetCompanyMenusResponse> {
|
|
6108
5920
|
return this.request(
|
|
6109
5921
|
'menu',
|
|
@@ -6143,9 +5955,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
6143
5955
|
*/
|
|
6144
5956
|
get_modifier_group(
|
|
6145
5957
|
id: string,
|
|
6146
|
-
options?:
|
|
6147
|
-
query?: GetModifierGroupQuery;
|
|
6148
|
-
} & RequestOptions,
|
|
5958
|
+
options?: RequestOptions,
|
|
6149
5959
|
): ResponsePromise<GetModifierGroupResponse> {
|
|
6150
5960
|
return this.request(
|
|
6151
5961
|
'menu',
|
|
@@ -6207,9 +6017,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
6207
6017
|
*/
|
|
6208
6018
|
get_company_modifier_groups(
|
|
6209
6019
|
company: string,
|
|
6210
|
-
options?:
|
|
6211
|
-
query?: GetCompanyModifierGroupsQuery;
|
|
6212
|
-
} & RequestOptions,
|
|
6020
|
+
options?: RequestOptions,
|
|
6213
6021
|
): ResponsePromise<GetCompanyModifierGroupsResponse> {
|
|
6214
6022
|
return this.request(
|
|
6215
6023
|
'menu',
|
|
@@ -6229,9 +6037,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
6229
6037
|
*/
|
|
6230
6038
|
get_company_modifier_groups_export(
|
|
6231
6039
|
company: string,
|
|
6232
|
-
options?:
|
|
6233
|
-
query?: GetCompanyModifierGroupsExportQuery;
|
|
6234
|
-
} & RequestOptions,
|
|
6040
|
+
options?: RequestOptions,
|
|
6235
6041
|
): ResponsePromise<GetCompanyModifierGroupsExportResponse> {
|
|
6236
6042
|
return this.request(
|
|
6237
6043
|
'menu',
|
|
@@ -6249,12 +6055,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
6249
6055
|
* @param id - menu
|
|
6250
6056
|
* @param options - additional request options
|
|
6251
6057
|
*/
|
|
6252
|
-
get_menu_export(
|
|
6253
|
-
id: string,
|
|
6254
|
-
options?: {
|
|
6255
|
-
query?: GetMenuExportQuery;
|
|
6256
|
-
} & RequestOptions,
|
|
6257
|
-
): ResponsePromise<GetMenuExportResponse> {
|
|
6058
|
+
get_menu_export(id: string, options?: RequestOptions): ResponsePromise<GetMenuExportResponse> {
|
|
6258
6059
|
return this.request(
|
|
6259
6060
|
'menu',
|
|
6260
6061
|
'/menu/{id}/export',
|
|
@@ -6342,11 +6143,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
6342
6143
|
*
|
|
6343
6144
|
* @param options - additional request options
|
|
6344
6145
|
*/
|
|
6345
|
-
ping(
|
|
6346
|
-
options?: {
|
|
6347
|
-
query?: PingQuery;
|
|
6348
|
-
} & RequestOptions,
|
|
6349
|
-
): ResponsePromise<PingResponse$0> {
|
|
6146
|
+
ping(options?: RequestOptions): ResponsePromise<PingResponse$0> {
|
|
6350
6147
|
return this.request('menu', '/menu/ping', 'GET', `/menu/ping`, null, options);
|
|
6351
6148
|
}
|
|
6352
6149
|
|
|
@@ -6355,11 +6152,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
6355
6152
|
*
|
|
6356
6153
|
* @param options - additional request options
|
|
6357
6154
|
*/
|
|
6358
|
-
health(
|
|
6359
|
-
options?: {
|
|
6360
|
-
query?: HealthQuery;
|
|
6361
|
-
} & RequestOptions,
|
|
6362
|
-
): ResponsePromise<HealthResponse$0> {
|
|
6155
|
+
health(options?: RequestOptions): ResponsePromise<HealthResponse$0> {
|
|
6363
6156
|
return this.request('menu', '/menu/health', 'GET', `/menu/health`, null, options);
|
|
6364
6157
|
}
|
|
6365
6158
|
|
|
@@ -6673,9 +6466,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
6673
6466
|
*/
|
|
6674
6467
|
get_menu_v3_local_menu_group_site(
|
|
6675
6468
|
id: string,
|
|
6676
|
-
options?:
|
|
6677
|
-
query?: GetMenuV3LocalMenuGroupSiteQuery;
|
|
6678
|
-
} & RequestOptions,
|
|
6469
|
+
options?: RequestOptions,
|
|
6679
6470
|
): ResponsePromise<GetMenuV3LocalMenuGroupSiteResponse> {
|
|
6680
6471
|
return this.request(
|
|
6681
6472
|
'menu',
|
|
@@ -6695,9 +6486,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
6695
6486
|
*/
|
|
6696
6487
|
get_menu_v3_local_menu_group_menu_group(
|
|
6697
6488
|
id: string,
|
|
6698
|
-
options?:
|
|
6699
|
-
query?: GetMenuV3LocalMenuGroupMenuGroupQuery;
|
|
6700
|
-
} & RequestOptions,
|
|
6489
|
+
options?: RequestOptions,
|
|
6701
6490
|
): ResponsePromise<GetMenuV3LocalMenuGroupMenuGroupResponse> {
|
|
6702
6491
|
return this.request(
|
|
6703
6492
|
'menu',
|
|
@@ -6755,9 +6544,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
6755
6544
|
* @param options - additional request options
|
|
6756
6545
|
*/
|
|
6757
6546
|
get_menu_v3_local_menu_group_export_solutions(
|
|
6758
|
-
options?:
|
|
6759
|
-
query?: GetMenuV3LocalMenuGroupExportSolutionsQuery;
|
|
6760
|
-
} & RequestOptions,
|
|
6547
|
+
options?: RequestOptions,
|
|
6761
6548
|
): ResponsePromise<GetMenuV3LocalMenuGroupExportSolutionsResponse> {
|
|
6762
6549
|
return this.request(
|
|
6763
6550
|
'menu',
|
|
@@ -7353,9 +7140,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
7353
7140
|
*/
|
|
7354
7141
|
get_menu_v3_draft_brand_items_tags(
|
|
7355
7142
|
id: string,
|
|
7356
|
-
options?:
|
|
7357
|
-
query?: GetMenuV3DraftBrandItemsTagsQuery;
|
|
7358
|
-
} & RequestOptions,
|
|
7143
|
+
options?: RequestOptions,
|
|
7359
7144
|
): ResponsePromise<GetMenuV3DraftBrandItemsTagsResponse> {
|
|
7360
7145
|
return this.request(
|
|
7361
7146
|
'menu',
|
|
@@ -7375,9 +7160,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
7375
7160
|
*/
|
|
7376
7161
|
get_menu_v3_draft_brand_modifiers_tags(
|
|
7377
7162
|
id: string,
|
|
7378
|
-
options?:
|
|
7379
|
-
query?: GetMenuV3DraftBrandModifiersTagsQuery;
|
|
7380
|
-
} & RequestOptions,
|
|
7163
|
+
options?: RequestOptions,
|
|
7381
7164
|
): ResponsePromise<GetMenuV3DraftBrandModifiersTagsResponse> {
|
|
7382
7165
|
return this.request(
|
|
7383
7166
|
'menu',
|
|
@@ -7529,9 +7312,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
7529
7312
|
*/
|
|
7530
7313
|
get_menu_v3_draft_brand_import_link(
|
|
7531
7314
|
id: string,
|
|
7532
|
-
options?:
|
|
7533
|
-
query?: GetMenuV3DraftBrandImportLinkQuery;
|
|
7534
|
-
} & RequestOptions,
|
|
7315
|
+
options?: RequestOptions,
|
|
7535
7316
|
): ResponsePromise<GetMenuV3DraftBrandImportLinkResponse> {
|
|
7536
7317
|
return this.request(
|
|
7537
7318
|
'menu',
|
|
@@ -7571,9 +7352,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
7571
7352
|
*/
|
|
7572
7353
|
get_menu_v3_draft_brand_verify_publish(
|
|
7573
7354
|
id: string,
|
|
7574
|
-
options?:
|
|
7575
|
-
query?: GetMenuV3DraftBrandVerifyPublishQuery;
|
|
7576
|
-
} & RequestOptions,
|
|
7355
|
+
options?: RequestOptions,
|
|
7577
7356
|
): ResponsePromise<GetMenuV3DraftBrandVerifyPublishResponse> {
|
|
7578
7357
|
return this.request(
|
|
7579
7358
|
'menu',
|
|
@@ -10456,9 +10235,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
10456
10235
|
*/
|
|
10457
10236
|
get_menu_v3_universal_item(
|
|
10458
10237
|
barcode: string,
|
|
10459
|
-
options?:
|
|
10460
|
-
query?: GetMenuV3UniversalItemQuery;
|
|
10461
|
-
} & RequestOptions,
|
|
10238
|
+
options?: RequestOptions,
|
|
10462
10239
|
): ResponsePromise<GetMenuV3UniversalItemResponse> {
|
|
10463
10240
|
return this.request(
|
|
10464
10241
|
'menu',
|
|
@@ -11931,11 +11708,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
11931
11708
|
*
|
|
11932
11709
|
* @param options - additional request options
|
|
11933
11710
|
*/
|
|
11934
|
-
get_menu_v3_ping(
|
|
11935
|
-
options?: {
|
|
11936
|
-
query?: GetMenuV3PingQuery;
|
|
11937
|
-
} & RequestOptions,
|
|
11938
|
-
): ResponsePromise<GetMenuV3PingResponse> {
|
|
11711
|
+
get_menu_v3_ping(options?: RequestOptions): ResponsePromise<GetMenuV3PingResponse> {
|
|
11939
11712
|
return this.request('menu', '/menu/v3/ping', 'GET', `/menu/v3/ping`, null, options);
|
|
11940
11713
|
}
|
|
11941
11714
|
|
|
@@ -11944,11 +11717,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
11944
11717
|
*
|
|
11945
11718
|
* @param options - additional request options
|
|
11946
11719
|
*/
|
|
11947
|
-
get_menu_v3_health(
|
|
11948
|
-
options?: {
|
|
11949
|
-
query?: GetMenuV3HealthQuery;
|
|
11950
|
-
} & RequestOptions,
|
|
11951
|
-
): ResponsePromise<GetMenuV3HealthResponse> {
|
|
11720
|
+
get_menu_v3_health(options?: RequestOptions): ResponsePromise<GetMenuV3HealthResponse> {
|
|
11952
11721
|
return this.request('menu', '/menu/v3/health', 'GET', `/menu/v3/health`, null, options);
|
|
11953
11722
|
}
|
|
11954
11723
|
|
|
@@ -11957,11 +11726,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
11957
11726
|
*
|
|
11958
11727
|
* @param options - additional request options
|
|
11959
11728
|
*/
|
|
11960
|
-
get_catalog_ping(
|
|
11961
|
-
options?: {
|
|
11962
|
-
query?: GetCatalogPingQuery;
|
|
11963
|
-
} & RequestOptions,
|
|
11964
|
-
): ResponsePromise<GetCatalogPingResponse> {
|
|
11729
|
+
get_catalog_ping(options?: RequestOptions): ResponsePromise<GetCatalogPingResponse> {
|
|
11965
11730
|
return this.request('catalog', '/catalog/ping', 'GET', `/catalog/ping`, null, options);
|
|
11966
11731
|
}
|
|
11967
11732
|
|
|
@@ -11970,11 +11735,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
11970
11735
|
*
|
|
11971
11736
|
* @param options - additional request options
|
|
11972
11737
|
*/
|
|
11973
|
-
get_catalog_health(
|
|
11974
|
-
options?: {
|
|
11975
|
-
query?: GetCatalogHealthQuery;
|
|
11976
|
-
} & RequestOptions,
|
|
11977
|
-
): ResponsePromise<GetCatalogHealthResponse> {
|
|
11738
|
+
get_catalog_health(options?: RequestOptions): ResponsePromise<GetCatalogHealthResponse> {
|
|
11978
11739
|
return this.request('catalog', '/catalog/health', 'GET', `/catalog/health`, null, options);
|
|
11979
11740
|
}
|
|
11980
11741
|
|
|
@@ -11983,11 +11744,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
11983
11744
|
*
|
|
11984
11745
|
* @param options - additional request options
|
|
11985
11746
|
*/
|
|
11986
|
-
get_catalog_status(
|
|
11987
|
-
options?: {
|
|
11988
|
-
query?: GetCatalogStatusQuery;
|
|
11989
|
-
} & RequestOptions,
|
|
11990
|
-
): ResponsePromise<GetCatalogStatusResponse> {
|
|
11747
|
+
get_catalog_status(options?: RequestOptions): ResponsePromise<GetCatalogStatusResponse> {
|
|
11991
11748
|
return this.request('catalog', '/catalog/status', 'GET', `/catalog/status`, null, options);
|
|
11992
11749
|
}
|
|
11993
11750
|
|
|
@@ -11997,9 +11754,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
11997
11754
|
* @param options - additional request options
|
|
11998
11755
|
*/
|
|
11999
11756
|
get_catalog_connections_status(
|
|
12000
|
-
options?:
|
|
12001
|
-
query?: GetCatalogConnectionsStatusQuery;
|
|
12002
|
-
} & RequestOptions,
|
|
11757
|
+
options?: RequestOptions,
|
|
12003
11758
|
): ResponsePromise<GetCatalogConnectionsStatusResponse> {
|
|
12004
11759
|
return this.request(
|
|
12005
11760
|
'catalog',
|
|
@@ -12298,9 +12053,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
12298
12053
|
*/
|
|
12299
12054
|
get_catalog_base_items(
|
|
12300
12055
|
body: GetCatalogBaseItemsBody,
|
|
12301
|
-
options?:
|
|
12302
|
-
query?: GetCatalogBaseItemsQuery;
|
|
12303
|
-
} & RequestOptions,
|
|
12056
|
+
options?: RequestOptions,
|
|
12304
12057
|
): ResponsePromise<GetCatalogBaseItemsResponse> {
|
|
12305
12058
|
return this.request(
|
|
12306
12059
|
'catalog',
|
|
@@ -12320,9 +12073,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
12320
12073
|
*/
|
|
12321
12074
|
get_catalog_base_item(
|
|
12322
12075
|
id: string,
|
|
12323
|
-
options?:
|
|
12324
|
-
query?: GetCatalogBaseItemQuery;
|
|
12325
|
-
} & RequestOptions,
|
|
12076
|
+
options?: RequestOptions,
|
|
12326
12077
|
): ResponsePromise<GetCatalogBaseItemResponse> {
|
|
12327
12078
|
return this.request(
|
|
12328
12079
|
'catalog',
|
|
@@ -12477,9 +12228,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
12477
12228
|
* @param options - additional request options
|
|
12478
12229
|
*/
|
|
12479
12230
|
get_notification_swagger(
|
|
12480
|
-
options?:
|
|
12481
|
-
query?: GetNotificationSwaggerQuery;
|
|
12482
|
-
} & RequestOptions,
|
|
12231
|
+
options?: RequestOptions,
|
|
12483
12232
|
): ResponsePromise<GetNotificationSwaggerResponse> {
|
|
12484
12233
|
return this.request(
|
|
12485
12234
|
'notification',
|
|
@@ -12559,9 +12308,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
12559
12308
|
*/
|
|
12560
12309
|
get_vendor_application(
|
|
12561
12310
|
id: string,
|
|
12562
|
-
options?:
|
|
12563
|
-
query?: GetVendorApplicationQuery;
|
|
12564
|
-
} & RequestOptions,
|
|
12311
|
+
options?: RequestOptions,
|
|
12565
12312
|
): ResponsePromise<GetVendorApplicationResponse> {
|
|
12566
12313
|
return this.request(
|
|
12567
12314
|
'vendor',
|
|
@@ -12635,11 +12382,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
12635
12382
|
*
|
|
12636
12383
|
* @param options - additional request options
|
|
12637
12384
|
*/
|
|
12638
|
-
get_vendors(
|
|
12639
|
-
options?: {
|
|
12640
|
-
query?: GetVendorsQuery;
|
|
12641
|
-
} & RequestOptions,
|
|
12642
|
-
): ResponsePromise<GetVendorsResponse> {
|
|
12385
|
+
get_vendors(options?: RequestOptions): ResponsePromise<GetVendorsResponse> {
|
|
12643
12386
|
return this.request('vendor', '/vendor', 'GET', `/vendor`, null, options);
|
|
12644
12387
|
}
|
|
12645
12388
|
|
|
@@ -12649,12 +12392,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
12649
12392
|
* @param id - vendor
|
|
12650
12393
|
* @param options - additional request options
|
|
12651
12394
|
*/
|
|
12652
|
-
get_vendor(
|
|
12653
|
-
id: string,
|
|
12654
|
-
options?: {
|
|
12655
|
-
query?: GetVendorQuery;
|
|
12656
|
-
} & RequestOptions,
|
|
12657
|
-
): ResponsePromise<GetVendorResponse> {
|
|
12395
|
+
get_vendor(id: string, options?: RequestOptions): ResponsePromise<GetVendorResponse> {
|
|
12658
12396
|
return this.request('vendor', '/vendor/{id}', 'GET', `/vendor/${id}`, null, options);
|
|
12659
12397
|
}
|
|
12660
12398
|
|
|
@@ -12688,11 +12426,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
12688
12426
|
*
|
|
12689
12427
|
* @param options - additional request options
|
|
12690
12428
|
*/
|
|
12691
|
-
get_vendor_auth(
|
|
12692
|
-
options?: {
|
|
12693
|
-
query?: GetVendorAuthQuery;
|
|
12694
|
-
} & RequestOptions,
|
|
12695
|
-
): ResponsePromise<GetVendorAuthResponse> {
|
|
12429
|
+
get_vendor_auth(options?: RequestOptions): ResponsePromise<GetVendorAuthResponse> {
|
|
12696
12430
|
return this.request('vendor', '/vendor/auth', 'GET', `/vendor/auth`, null, options);
|
|
12697
12431
|
}
|
|
12698
12432
|
|
|
@@ -12750,9 +12484,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
12750
12484
|
get_vendor_key(
|
|
12751
12485
|
id: string,
|
|
12752
12486
|
key: string,
|
|
12753
|
-
options?:
|
|
12754
|
-
query?: GetVendorKeyQuery;
|
|
12755
|
-
} & RequestOptions,
|
|
12487
|
+
options?: RequestOptions,
|
|
12756
12488
|
): ResponsePromise<GetVendorKeyResponse> {
|
|
12757
12489
|
return this.request(
|
|
12758
12490
|
'vendor',
|
|
@@ -12864,9 +12596,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
12864
12596
|
*/
|
|
12865
12597
|
get_frictionless_brand_frictionless_status(
|
|
12866
12598
|
id_brand: string,
|
|
12867
|
-
options?:
|
|
12868
|
-
query?: GetFrictionlessBrandFrictionlessStatusQuery;
|
|
12869
|
-
} & RequestOptions,
|
|
12599
|
+
options?: RequestOptions,
|
|
12870
12600
|
): ResponsePromise<GetFrictionlessBrandFrictionlessStatusResponse> {
|
|
12871
12601
|
return this.request(
|
|
12872
12602
|
'frictionless',
|
|
@@ -12906,9 +12636,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
12906
12636
|
*/
|
|
12907
12637
|
get_frictionless_checkin_status(
|
|
12908
12638
|
id_checkin: string,
|
|
12909
|
-
options?:
|
|
12910
|
-
query?: GetFrictionlessCheckinStatusQuery;
|
|
12911
|
-
} & RequestOptions,
|
|
12639
|
+
options?: RequestOptions,
|
|
12912
12640
|
): ResponsePromise<GetFrictionlessCheckinStatusResponse> {
|
|
12913
12641
|
return this.request(
|
|
12914
12642
|
'frictionless',
|
|
@@ -12928,9 +12656,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
12928
12656
|
*/
|
|
12929
12657
|
get_frictionless_checkin(
|
|
12930
12658
|
id_checkin: string,
|
|
12931
|
-
options?:
|
|
12932
|
-
query?: GetFrictionlessCheckinQuery;
|
|
12933
|
-
} & RequestOptions,
|
|
12659
|
+
options?: RequestOptions,
|
|
12934
12660
|
): ResponsePromise<GetFrictionlessCheckinResponse> {
|
|
12935
12661
|
return this.request(
|
|
12936
12662
|
'frictionless',
|
|
@@ -12950,9 +12676,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
12950
12676
|
*/
|
|
12951
12677
|
get_frictionless_users_payment_issues(
|
|
12952
12678
|
user_id: string,
|
|
12953
|
-
options?:
|
|
12954
|
-
query?: GetFrictionlessUsersPaymentIssuesQuery;
|
|
12955
|
-
} & RequestOptions,
|
|
12679
|
+
options?: RequestOptions,
|
|
12956
12680
|
): ResponsePromise<GetFrictionlessUsersPaymentIssuesResponse> {
|
|
12957
12681
|
return this.request(
|
|
12958
12682
|
'frictionless',
|
|
@@ -12970,9 +12694,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
12970
12694
|
* @param options - additional request options
|
|
12971
12695
|
*/
|
|
12972
12696
|
get_frictionless_failed_checkins(
|
|
12973
|
-
options?:
|
|
12974
|
-
query?: GetFrictionlessFailedCheckinsQuery;
|
|
12975
|
-
} & RequestOptions,
|
|
12697
|
+
options?: RequestOptions,
|
|
12976
12698
|
): ResponsePromise<GetFrictionlessFailedCheckinsResponse> {
|
|
12977
12699
|
return this.request(
|
|
12978
12700
|
'frictionless',
|
|
@@ -13072,9 +12794,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
13072
12794
|
* @param options - additional request options
|
|
13073
12795
|
*/
|
|
13074
12796
|
HealthCheckController_execute(
|
|
13075
|
-
options?:
|
|
13076
|
-
query?: HealthCheckControllerExecuteQuery;
|
|
13077
|
-
} & RequestOptions,
|
|
12797
|
+
options?: RequestOptions,
|
|
13078
12798
|
): ResponsePromise<HealthCheckControllerExecuteResponse> {
|
|
13079
12799
|
return this.request(
|
|
13080
12800
|
'consumer',
|
|
@@ -13220,9 +12940,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
13220
12940
|
*/
|
|
13221
12941
|
get_consumer_frictionless_checkin(
|
|
13222
12942
|
id: string,
|
|
13223
|
-
options?:
|
|
13224
|
-
query?: GetConsumerFrictionlessCheckinQuery;
|
|
13225
|
-
} & RequestOptions,
|
|
12943
|
+
options?: RequestOptions,
|
|
13226
12944
|
): ResponsePromise<GetConsumerFrictionlessCheckinResponse> {
|
|
13227
12945
|
return this.request(
|
|
13228
12946
|
'consumer',
|
|
@@ -13394,9 +13112,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
13394
13112
|
*/
|
|
13395
13113
|
get_consumer_menu(
|
|
13396
13114
|
id: string,
|
|
13397
|
-
options?:
|
|
13398
|
-
query?: GetConsumerMenuQuery;
|
|
13399
|
-
} & RequestOptions,
|
|
13115
|
+
options?: RequestOptions,
|
|
13400
13116
|
): ResponsePromise<GetConsumerMenuResponse> {
|
|
13401
13117
|
return this.request(
|
|
13402
13118
|
'consumer',
|
|
@@ -13544,9 +13260,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
13544
13260
|
*/
|
|
13545
13261
|
get_consumer_user(
|
|
13546
13262
|
id: string,
|
|
13547
|
-
options?:
|
|
13548
|
-
query?: GetConsumerUserQuery;
|
|
13549
|
-
} & RequestOptions,
|
|
13263
|
+
options?: RequestOptions,
|
|
13550
13264
|
): ResponsePromise<GetConsumerUserResponse$0> {
|
|
13551
13265
|
return this.request(
|
|
13552
13266
|
'consumer',
|
|
@@ -13650,9 +13364,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
13650
13364
|
*/
|
|
13651
13365
|
get_consumer_shoppingcart(
|
|
13652
13366
|
id: string,
|
|
13653
|
-
options?:
|
|
13654
|
-
query?: GetConsumerShoppingcartQuery;
|
|
13655
|
-
} & RequestOptions,
|
|
13367
|
+
options?: RequestOptions,
|
|
13656
13368
|
): ResponsePromise<GetConsumerShoppingcartResponse> {
|
|
13657
13369
|
return this.request(
|
|
13658
13370
|
'consumer',
|
|
@@ -13840,9 +13552,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
13840
13552
|
*/
|
|
13841
13553
|
get_mealplan_consumer(
|
|
13842
13554
|
mealplanId: string,
|
|
13843
|
-
options?:
|
|
13844
|
-
query?: GetMealplanConsumerQuery;
|
|
13845
|
-
} & RequestOptions,
|
|
13555
|
+
options?: RequestOptions,
|
|
13846
13556
|
): ResponsePromise<GetMealplanConsumerResponse> {
|
|
13847
13557
|
return this.request(
|
|
13848
13558
|
'consumer',
|
|
@@ -13930,9 +13640,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
13930
13640
|
get_consumer_config_appconfig(
|
|
13931
13641
|
xCdlPlatform: string,
|
|
13932
13642
|
app: string,
|
|
13933
|
-
options?:
|
|
13934
|
-
query?: GetConsumerConfigAppconfigQuery;
|
|
13935
|
-
} & RequestOptions,
|
|
13643
|
+
options?: RequestOptions,
|
|
13936
13644
|
): ResponsePromise<GetConsumerConfigAppconfigResponse> {
|
|
13937
13645
|
return this.request(
|
|
13938
13646
|
'consumer',
|
|
@@ -13972,9 +13680,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
13972
13680
|
*/
|
|
13973
13681
|
get_consumer_app_theme(
|
|
13974
13682
|
siteId: string,
|
|
13975
|
-
options?:
|
|
13976
|
-
query?: GetConsumerAppThemeQuery;
|
|
13977
|
-
} & RequestOptions,
|
|
13683
|
+
options?: RequestOptions,
|
|
13978
13684
|
): ResponsePromise<GetConsumerAppThemeResponse> {
|
|
13979
13685
|
return this.request(
|
|
13980
13686
|
'consumer',
|
|
@@ -14042,9 +13748,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14042
13748
|
*/
|
|
14043
13749
|
get_consumer_config_public(
|
|
14044
13750
|
id: string,
|
|
14045
|
-
options?:
|
|
14046
|
-
query?: GetConsumerConfigPublicQuery;
|
|
14047
|
-
} & RequestOptions,
|
|
13751
|
+
options?: RequestOptions,
|
|
14048
13752
|
): ResponsePromise<GetConsumerConfigPublicResponse$0> {
|
|
14049
13753
|
return this.request(
|
|
14050
13754
|
'consumer',
|
|
@@ -14148,9 +13852,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14148
13852
|
*/
|
|
14149
13853
|
get_consumer_station_discounts(
|
|
14150
13854
|
siteId: string,
|
|
14151
|
-
options?:
|
|
14152
|
-
query?: GetConsumerStationDiscountsQuery;
|
|
14153
|
-
} & RequestOptions,
|
|
13855
|
+
options?: RequestOptions,
|
|
14154
13856
|
): ResponsePromise<GetConsumerStationDiscountsResponse> {
|
|
14155
13857
|
return this.request(
|
|
14156
13858
|
'consumer',
|
|
@@ -14453,9 +14155,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14453
14155
|
*/
|
|
14454
14156
|
get_centricos_report_group_config(
|
|
14455
14157
|
location_group: string,
|
|
14456
|
-
options?:
|
|
14457
|
-
query?: GetCentricosReportGroupConfigQuery;
|
|
14458
|
-
} & RequestOptions,
|
|
14158
|
+
options?: RequestOptions,
|
|
14459
14159
|
): ResponsePromise<GetCentricosReportGroupConfigResponse> {
|
|
14460
14160
|
return this.request(
|
|
14461
14161
|
'centricos',
|
|
@@ -14517,9 +14217,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14517
14217
|
*/
|
|
14518
14218
|
get_centricos_report_config_default(
|
|
14519
14219
|
location_group: string,
|
|
14520
|
-
options?:
|
|
14521
|
-
query?: GetCentricosReportConfigDefaultQuery;
|
|
14522
|
-
} & RequestOptions,
|
|
14220
|
+
options?: RequestOptions,
|
|
14523
14221
|
): ResponsePromise<GetCentricosReportConfigDefaultResponse> {
|
|
14524
14222
|
return this.request(
|
|
14525
14223
|
'centricos',
|
|
@@ -14559,9 +14257,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14559
14257
|
*/
|
|
14560
14258
|
get_site_devices(
|
|
14561
14259
|
site_id: string,
|
|
14562
|
-
options?:
|
|
14563
|
-
query?: GetSiteDevicesQuery;
|
|
14564
|
-
} & RequestOptions,
|
|
14260
|
+
options?: RequestOptions,
|
|
14565
14261
|
): ResponsePromise<GetSiteDevicesResponse> {
|
|
14566
14262
|
return this.request(
|
|
14567
14263
|
'centricos',
|
|
@@ -14623,9 +14319,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14623
14319
|
*/
|
|
14624
14320
|
get_review_order_items(
|
|
14625
14321
|
orderId: string,
|
|
14626
|
-
options?:
|
|
14627
|
-
query?: GetReviewOrderItemsQuery;
|
|
14628
|
-
} & RequestOptions,
|
|
14322
|
+
options?: RequestOptions,
|
|
14629
14323
|
): ResponsePromise<GetReviewOrderItemsResponse> {
|
|
14630
14324
|
return this.request(
|
|
14631
14325
|
'centricos',
|
|
@@ -14645,9 +14339,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14645
14339
|
*/
|
|
14646
14340
|
get_yesterdays_snapshot(
|
|
14647
14341
|
siteId: string,
|
|
14648
|
-
options?:
|
|
14649
|
-
query?: GetYesterdaysSnapshotQuery;
|
|
14650
|
-
} & RequestOptions,
|
|
14342
|
+
options?: RequestOptions,
|
|
14651
14343
|
): ResponsePromise<GetYesterdaysSnapshotResponse> {
|
|
14652
14344
|
return this.request(
|
|
14653
14345
|
'centricos',
|
|
@@ -14667,9 +14359,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14667
14359
|
*/
|
|
14668
14360
|
get_centricos_station(
|
|
14669
14361
|
station_id: string,
|
|
14670
|
-
options?:
|
|
14671
|
-
query?: GetCentricosStationQuery;
|
|
14672
|
-
} & RequestOptions,
|
|
14362
|
+
options?: RequestOptions,
|
|
14673
14363
|
): ResponsePromise<GetCentricosStationResponse> {
|
|
14674
14364
|
return this.request(
|
|
14675
14365
|
'centricos',
|
|
@@ -14749,9 +14439,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14749
14439
|
*/
|
|
14750
14440
|
get_centricos_discount(
|
|
14751
14441
|
id: string,
|
|
14752
|
-
options?:
|
|
14753
|
-
query?: GetCentricosDiscountQuery;
|
|
14754
|
-
} & RequestOptions,
|
|
14442
|
+
options?: RequestOptions,
|
|
14755
14443
|
): ResponsePromise<GetCentricosDiscountResponse> {
|
|
14756
14444
|
return this.request(
|
|
14757
14445
|
'centricos',
|
|
@@ -14769,9 +14457,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14769
14457
|
* @param options - additional request options
|
|
14770
14458
|
*/
|
|
14771
14459
|
get_centricos_discount_all(
|
|
14772
|
-
options?:
|
|
14773
|
-
query?: GetCentricosDiscountAllQuery;
|
|
14774
|
-
} & RequestOptions,
|
|
14460
|
+
options?: RequestOptions,
|
|
14775
14461
|
): ResponsePromise<GetCentricosDiscountAllResponse> {
|
|
14776
14462
|
return this.request(
|
|
14777
14463
|
'centricos',
|
|
@@ -14833,9 +14519,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14833
14519
|
*/
|
|
14834
14520
|
get_recommendations_by_site(
|
|
14835
14521
|
siteId: string,
|
|
14836
|
-
options?:
|
|
14837
|
-
query?: GetRecommendationsBySiteQuery;
|
|
14838
|
-
} & RequestOptions,
|
|
14522
|
+
options?: RequestOptions,
|
|
14839
14523
|
): ResponsePromise<GetRecommendationsBySiteResponse> {
|
|
14840
14524
|
return this.request(
|
|
14841
14525
|
'centricos',
|
|
@@ -14855,9 +14539,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14855
14539
|
*/
|
|
14856
14540
|
get_recommendations_by_site_v2(
|
|
14857
14541
|
siteId: string,
|
|
14858
|
-
options?:
|
|
14859
|
-
query?: GetRecommendationsBySiteV2Query;
|
|
14860
|
-
} & RequestOptions,
|
|
14542
|
+
options?: RequestOptions,
|
|
14861
14543
|
): ResponsePromise<GetRecommendationsBySiteV2Response> {
|
|
14862
14544
|
return this.request(
|
|
14863
14545
|
'centricos',
|
|
@@ -14894,11 +14576,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14894
14576
|
*
|
|
14895
14577
|
* @param options - additional request options
|
|
14896
14578
|
*/
|
|
14897
|
-
tax_health_check(
|
|
14898
|
-
options?: {
|
|
14899
|
-
query?: TaxHealthCheckQuery;
|
|
14900
|
-
} & RequestOptions,
|
|
14901
|
-
): ResponsePromise<TaxHealthCheckResponse> {
|
|
14579
|
+
tax_health_check(options?: RequestOptions): ResponsePromise<TaxHealthCheckResponse> {
|
|
14902
14580
|
return this.request(
|
|
14903
14581
|
'tax',
|
|
14904
14582
|
'/tax/v1/health-check',
|
|
@@ -14969,9 +14647,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
14969
14647
|
*/
|
|
14970
14648
|
get_search_discount_by_id(
|
|
14971
14649
|
id: string,
|
|
14972
|
-
options?:
|
|
14973
|
-
query?: GetSearchDiscountByIdQuery;
|
|
14974
|
-
} & RequestOptions,
|
|
14650
|
+
options?: RequestOptions,
|
|
14975
14651
|
): ResponsePromise<GetSearchDiscountByIdResponse> {
|
|
14976
14652
|
return this.request(
|
|
14977
14653
|
'search',
|
|
@@ -15043,11 +14719,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
15043
14719
|
*
|
|
15044
14720
|
* @param options - additional request options
|
|
15045
14721
|
*/
|
|
15046
|
-
get_auth_sso_configs(
|
|
15047
|
-
options?: {
|
|
15048
|
-
query?: GetAuthSsoConfigsQuery;
|
|
15049
|
-
} & RequestOptions,
|
|
15050
|
-
): ResponsePromise<GetAuthSsoConfigsResponse> {
|
|
14722
|
+
get_auth_sso_configs(options?: RequestOptions): ResponsePromise<GetAuthSsoConfigsResponse> {
|
|
15051
14723
|
return this.request('auth', '/auth/sso-configs', 'GET', `/auth/sso-configs`, null, options);
|
|
15052
14724
|
}
|
|
15053
14725
|
|
|
@@ -15179,9 +14851,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
15179
14851
|
* @param options - additional request options
|
|
15180
14852
|
*/
|
|
15181
14853
|
get_auth_jwt_assertion_jwk(
|
|
15182
|
-
options?:
|
|
15183
|
-
query?: GetAuthJwtAssertionJwkQuery;
|
|
15184
|
-
} & RequestOptions,
|
|
14854
|
+
options?: RequestOptions,
|
|
15185
14855
|
): ResponsePromise<GetAuthJwtAssertionJwkResponse> {
|
|
15186
14856
|
return this.request(
|
|
15187
14857
|
'auth',
|
|
@@ -15225,12 +14895,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
15225
14895
|
* @param id
|
|
15226
14896
|
* @param options - additional request options
|
|
15227
14897
|
*/
|
|
15228
|
-
get_review(
|
|
15229
|
-
id: string,
|
|
15230
|
-
options?: {
|
|
15231
|
-
query?: GetReviewQuery;
|
|
15232
|
-
} & RequestOptions,
|
|
15233
|
-
): ResponsePromise<GetReviewResponse> {
|
|
14898
|
+
get_review(id: string, options?: RequestOptions): ResponsePromise<GetReviewResponse> {
|
|
15234
14899
|
return this.request('review', '/review/{id}', 'GET', `/review/${id}`, null, options);
|
|
15235
14900
|
}
|
|
15236
14901
|
|
|
@@ -15267,12 +14932,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
15267
14932
|
* @param id - Discount ID
|
|
15268
14933
|
* @param options - additional request options
|
|
15269
14934
|
*/
|
|
15270
|
-
get_discount(
|
|
15271
|
-
id: string,
|
|
15272
|
-
options?: {
|
|
15273
|
-
query?: GetDiscountQuery;
|
|
15274
|
-
} & RequestOptions,
|
|
15275
|
-
): ResponsePromise<GetDiscountResponse> {
|
|
14935
|
+
get_discount(id: string, options?: RequestOptions): ResponsePromise<GetDiscountResponse> {
|
|
15276
14936
|
return this.request('discount', '/discount/{id}', 'GET', `/discount/${id}`, null, options);
|
|
15277
14937
|
}
|
|
15278
14938
|
|
|
@@ -15318,11 +14978,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
15318
14978
|
*
|
|
15319
14979
|
* @param options - additional request options
|
|
15320
14980
|
*/
|
|
15321
|
-
get_discounts_all(
|
|
15322
|
-
options?: {
|
|
15323
|
-
query?: GetDiscountsAllQuery;
|
|
15324
|
-
} & RequestOptions,
|
|
15325
|
-
): ResponsePromise<GetDiscountsAllResponse> {
|
|
14981
|
+
get_discounts_all(options?: RequestOptions): ResponsePromise<GetDiscountsAllResponse> {
|
|
15326
14982
|
return this.request('discount', '/discount/all', 'GET', `/discount/all`, null, options);
|
|
15327
14983
|
}
|
|
15328
14984
|
|
|
@@ -15606,9 +15262,7 @@ export class ServiceClient extends BaseServiceClient {
|
|
|
15606
15262
|
* @param options - additional request options
|
|
15607
15263
|
*/
|
|
15608
15264
|
ProductionSheetController_serviceStatus(
|
|
15609
|
-
options?:
|
|
15610
|
-
query?: ProductionSheetControllerServiceStatusQuery;
|
|
15611
|
-
} & RequestOptions,
|
|
15265
|
+
options?: RequestOptions,
|
|
15612
15266
|
): ResponsePromise<ProductionSheetControllerServiceStatusResponse> {
|
|
15613
15267
|
return this.request(
|
|
15614
15268
|
'forecasting',
|