@compassdigital/sdk.typescript 3.0.0-beta.8 → 3.0.0-beta.9

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.js CHANGED
@@ -32,7 +32,7 @@ var ServiceClient = /** @class */ (function (_super) {
32
32
  * @param options - additional request options
33
33
  */
34
34
  ServiceClient.prototype.post_payment_transaction = function (id, body, options) {
35
- return this.request("post", "/payment/" + id + "/transaction", body, options);
35
+ return this.request("payment", "post_payment_transaction", "post", "/payment/" + id + "/transaction", body, options);
36
36
  };
37
37
  /**
38
38
  * POST /payment/{id}/transaction/{transaction_id}/refund
@@ -43,7 +43,7 @@ var ServiceClient = /** @class */ (function (_super) {
43
43
  * @param options - additional request options
44
44
  */
45
45
  ServiceClient.prototype.post_payment_transaction_refund = function (id, transaction_id, body, options) {
46
- return this.request("post", "/payment/" + id + "/transaction/" + transaction_id + "/refund", body, options);
46
+ return this.request("payment", "post_payment_transaction_refund", "post", "/payment/" + id + "/transaction/" + transaction_id + "/refund", body, options);
47
47
  };
48
48
  /**
49
49
  * GET /payment/{id}/clienttoken
@@ -52,7 +52,7 @@ var ServiceClient = /** @class */ (function (_super) {
52
52
  * @param options - additional request options
53
53
  */
54
54
  ServiceClient.prototype.get_payment_clienttoken = function (id, options) {
55
- return this.request("get", "/payment/" + id + "/clienttoken", null, options);
55
+ return this.request("payment", "get_payment_clienttoken", "get", "/payment/" + id + "/clienttoken", null, options);
56
56
  };
57
57
  /**
58
58
  * POST /payment/{id}/paymenttoken
@@ -62,7 +62,7 @@ var ServiceClient = /** @class */ (function (_super) {
62
62
  * @param options - additional request options
63
63
  */
64
64
  ServiceClient.prototype.post_payment_paymenttoken = function (id, body, options) {
65
- return this.request("post", "/payment/" + id + "/paymenttoken", body, options);
65
+ return this.request("payment", "post_payment_paymenttoken", "post", "/payment/" + id + "/paymenttoken", body, options);
66
66
  };
67
67
  /**
68
68
  * POST /payment/consumer
@@ -71,7 +71,7 @@ var ServiceClient = /** @class */ (function (_super) {
71
71
  * @param options - additional request options
72
72
  */
73
73
  ServiceClient.prototype.post_payment_consumer = function (body, options) {
74
- return this.request("post", "/payment/consumer", body, options);
74
+ return this.request("payment", "post_payment_consumer", "post", "/payment/consumer", body, options);
75
75
  };
76
76
  /**
77
77
  * POST /payment/method
@@ -80,7 +80,7 @@ var ServiceClient = /** @class */ (function (_super) {
80
80
  * @param options - additional request options
81
81
  */
82
82
  ServiceClient.prototype.post_payment_method = function (body, options) {
83
- return this.request("post", "/payment/method", body, options);
83
+ return this.request("payment", "post_payment_method", "post", "/payment/method", body, options);
84
84
  };
85
85
  /**
86
86
  * GET /payment/{id}/method - Get a users available payment methods
@@ -89,7 +89,7 @@ var ServiceClient = /** @class */ (function (_super) {
89
89
  * @param options - additional request options
90
90
  */
91
91
  ServiceClient.prototype.get_payment_method = function (id, options) {
92
- return this.request("get", "/payment/" + id + "/method", null, options);
92
+ return this.request("payment", "get_payment_method", "get", "/payment/" + id + "/method", null, options);
93
93
  };
94
94
  /**
95
95
  * DELETE /payment/{id}/method/{method_id}
@@ -100,7 +100,7 @@ var ServiceClient = /** @class */ (function (_super) {
100
100
  * @param options - additional request options
101
101
  */
102
102
  ServiceClient.prototype.delete_payment_method = function (id, method_id, body, options) {
103
- return this.request("delete", "/payment/" + id + "/method/" + method_id, body, options);
103
+ return this.request("payment", "delete_payment_method", "delete", "/payment/" + id + "/method/" + method_id, body, options);
104
104
  };
105
105
  /**
106
106
  * GET /payment/token
@@ -108,7 +108,7 @@ var ServiceClient = /** @class */ (function (_super) {
108
108
  * @param options - additional request options
109
109
  */
110
110
  ServiceClient.prototype.get_payment_token = function (options) {
111
- return this.request("get", "/payment/token", null, options);
111
+ return this.request("payment", "get_payment_token", "get", "/payment/token", null, options);
112
112
  };
113
113
  /**
114
114
  * POST /payment/token
@@ -117,7 +117,7 @@ var ServiceClient = /** @class */ (function (_super) {
117
117
  * @param options - additional request options
118
118
  */
119
119
  ServiceClient.prototype.post_payment_token = function (body, options) {
120
- return this.request("post", "/payment/token", body, options);
120
+ return this.request("payment", "post_payment_token", "post", "/payment/token", body, options);
121
121
  };
122
122
  /**
123
123
  * PUT /payment/token
@@ -126,7 +126,7 @@ var ServiceClient = /** @class */ (function (_super) {
126
126
  * @param options - additional request options
127
127
  */
128
128
  ServiceClient.prototype.put_payment_token = function (body, options) {
129
- return this.request("put", "/payment/token", body, options);
129
+ return this.request("payment", "put_payment_token", "put", "/payment/token", body, options);
130
130
  };
131
131
  /**
132
132
  * DELETE /payment/token
@@ -135,7 +135,7 @@ var ServiceClient = /** @class */ (function (_super) {
135
135
  * @param options - additional request options
136
136
  */
137
137
  ServiceClient.prototype.delete_payment_token = function (body, options) {
138
- return this.request("delete", "/payment/token", body, options);
138
+ return this.request("payment", "delete_payment_token", "delete", "/payment/token", body, options);
139
139
  };
140
140
  /**
141
141
  * GET /payment/methods
@@ -143,7 +143,7 @@ var ServiceClient = /** @class */ (function (_super) {
143
143
  * @param options - additional request options
144
144
  */
145
145
  ServiceClient.prototype.get_payment_methods = function (options) {
146
- return this.request("get", "/payment/methods", null, options);
146
+ return this.request("payment", "get_payment_methods", "get", "/payment/methods", null, options);
147
147
  };
148
148
  /**
149
149
  * GET /payment/hpc
@@ -151,7 +151,7 @@ var ServiceClient = /** @class */ (function (_super) {
151
151
  * @param options - additional request options
152
152
  */
153
153
  ServiceClient.prototype.get_payment_hpc = function (options) {
154
- return this.request("get", "/payment/hpc", null, options);
154
+ return this.request("payment", "get_payment_hpc", "get", "/payment/hpc", null, options);
155
155
  };
156
156
  /**
157
157
  * POST /order - Create an Order
@@ -160,7 +160,7 @@ var ServiceClient = /** @class */ (function (_super) {
160
160
  * @param options - additional request options
161
161
  */
162
162
  ServiceClient.prototype.post_order = function (body, options) {
163
- return this.request("post", "/order", body, options);
163
+ return this.request("order", "post_order", "post", "/order", body, options);
164
164
  };
165
165
  /**
166
166
  * GET /order/{id} - Get an individual order
@@ -169,7 +169,7 @@ var ServiceClient = /** @class */ (function (_super) {
169
169
  * @param options - additional request options
170
170
  */
171
171
  ServiceClient.prototype.get_order = function (id, options) {
172
- return this.request("get", "/order/" + id, null, options);
172
+ return this.request("order", "get_order", "get", "/order/" + id, null, options);
173
173
  };
174
174
  /**
175
175
  * PUT /order/{id} - Update an individual order
@@ -178,7 +178,7 @@ var ServiceClient = /** @class */ (function (_super) {
178
178
  * @param options - additional request options
179
179
  */
180
180
  ServiceClient.prototype.put_order = function (id, options) {
181
- return this.request("put", "/order/" + id, null, options);
181
+ return this.request("order", "put_order", "put", "/order/" + id, null, options);
182
182
  };
183
183
  /**
184
184
  * PATCH /order/{id} - Update an existing order
@@ -188,7 +188,7 @@ var ServiceClient = /** @class */ (function (_super) {
188
188
  * @param options - additional request options
189
189
  */
190
190
  ServiceClient.prototype.patch_order = function (id, body, options) {
191
- return this.request("patch", "/order/" + id, body, options);
191
+ return this.request("order", "patch_order", "patch", "/order/" + id, body, options);
192
192
  };
193
193
  /**
194
194
  * POST /order/{id}/issue - Create an issue with an order
@@ -198,7 +198,7 @@ var ServiceClient = /** @class */ (function (_super) {
198
198
  * @param options - additional request options
199
199
  */
200
200
  ServiceClient.prototype.post_order_issue = function (id, body, options) {
201
- return this.request("post", "/order/" + id + "/issue", body, options);
201
+ return this.request("order", "post_order_issue", "post", "/order/" + id + "/issue", body, options);
202
202
  };
203
203
  /**
204
204
  * PATCH /order/{id}/refund - Issue a refund on an existing order
@@ -208,7 +208,7 @@ var ServiceClient = /** @class */ (function (_super) {
208
208
  * @param options - additional request options
209
209
  */
210
210
  ServiceClient.prototype.patch_order_refund = function (id, body, options) {
211
- return this.request("patch", "/order/" + id + "/refund", body, options);
211
+ return this.request("order", "patch_order_refund", "patch", "/order/" + id + "/refund", body, options);
212
212
  };
213
213
  /**
214
214
  * GET /order/customer/{id} - Get all orders for a Customer
@@ -217,7 +217,7 @@ var ServiceClient = /** @class */ (function (_super) {
217
217
  * @param options - additional request options
218
218
  */
219
219
  ServiceClient.prototype.get_order_customer_orders = function (id, options) {
220
- return this.request("get", "/order/customer/" + id, null, options);
220
+ return this.request("order", "get_order_customer_orders", "get", "/order/customer/" + id, null, options);
221
221
  };
222
222
  /**
223
223
  * GET /order/customer/{id}/location/brand/{location_brand} - Get all orders for a Customer for a specific Location Brand
@@ -227,7 +227,7 @@ var ServiceClient = /** @class */ (function (_super) {
227
227
  * @param options - additional request options
228
228
  */
229
229
  ServiceClient.prototype.get_order_customer_orders_brand = function (id, location_brand, options) {
230
- return this.request("get", "/order/customer/" + id + "/location/brand/" + location_brand, null, options);
230
+ return this.request("order", "get_order_customer_orders_brand", "get", "/order/customer/" + id + "/location/brand/" + location_brand, null, options);
231
231
  };
232
232
  /**
233
233
  * GET /order/location/brand/{id} - Get all orders for a location Brand
@@ -236,7 +236,7 @@ var ServiceClient = /** @class */ (function (_super) {
236
236
  * @param options - additional request options
237
237
  */
238
238
  ServiceClient.prototype.get_order_brand_orders = function (id, options) {
239
- return this.request("get", "/order/location/brand/" + id, null, options);
239
+ return this.request("order", "get_order_brand_orders", "get", "/order/location/brand/" + id, null, options);
240
240
  };
241
241
  /**
242
242
  * GET /order/location/{id} - Get all orders for a location
@@ -245,7 +245,7 @@ var ServiceClient = /** @class */ (function (_super) {
245
245
  * @param options - additional request options
246
246
  */
247
247
  ServiceClient.prototype.get_order_location_orders = function (id, options) {
248
- return this.request("get", "/order/location/" + id, null, options);
248
+ return this.request("order", "get_order_location_orders", "get", "/order/location/" + id, null, options);
249
249
  };
250
250
  /**
251
251
  * GET /order/location/group/{id} - Get all orders for a location group
@@ -254,7 +254,7 @@ var ServiceClient = /** @class */ (function (_super) {
254
254
  * @param options - additional request options
255
255
  */
256
256
  ServiceClient.prototype.get_order_group_orders = function (id, options) {
257
- return this.request("get", "/order/location/group/" + id, null, options);
257
+ return this.request("order", "get_order_group_orders", "get", "/order/location/group/" + id, null, options);
258
258
  };
259
259
  /**
260
260
  * POST /location - Create a new location
@@ -263,7 +263,7 @@ var ServiceClient = /** @class */ (function (_super) {
263
263
  * @param options - additional request options
264
264
  */
265
265
  ServiceClient.prototype.post_location = function (body, options) {
266
- return this.request("post", "/location", body, options);
266
+ return this.request("location", "post_location", "post", "/location", body, options);
267
267
  };
268
268
  /**
269
269
  * GET /location - Get all location
@@ -271,7 +271,7 @@ var ServiceClient = /** @class */ (function (_super) {
271
271
  * @param options - additional request options
272
272
  */
273
273
  ServiceClient.prototype.get_locations = function (options) {
274
- return this.request("get", "/location", null, options);
274
+ return this.request("location", "get_locations", "get", "/location", null, options);
275
275
  };
276
276
  /**
277
277
  * GET /location/search - Gets Location within a radius of the provided point
@@ -279,7 +279,7 @@ var ServiceClient = /** @class */ (function (_super) {
279
279
  * @param options - additional request options
280
280
  */
281
281
  ServiceClient.prototype.get_location_search = function (options) {
282
- return this.request("get", "/location/search", null, options);
282
+ return this.request("location", "get_location_search", "get", "/location/search", null, options);
283
283
  };
284
284
  /**
285
285
  * GET /location/{id} - Get an individual Location
@@ -288,7 +288,7 @@ var ServiceClient = /** @class */ (function (_super) {
288
288
  * @param options - additional request options
289
289
  */
290
290
  ServiceClient.prototype.get_location = function (id, options) {
291
- return this.request("get", "/location/" + id, null, options);
291
+ return this.request("location", "get_location", "get", "/location/" + id, null, options);
292
292
  };
293
293
  /**
294
294
  * PUT /location/{id} - Override a complete Location
@@ -298,7 +298,7 @@ var ServiceClient = /** @class */ (function (_super) {
298
298
  * @param options - additional request options
299
299
  */
300
300
  ServiceClient.prototype.put_location = function (id, body, options) {
301
- return this.request("put", "/location/" + id, body, options);
301
+ return this.request("location", "put_location", "put", "/location/" + id, body, options);
302
302
  };
303
303
  /**
304
304
  * DELETE /location/{id} - Delete brands from a Location
@@ -308,7 +308,7 @@ var ServiceClient = /** @class */ (function (_super) {
308
308
  * @param options - additional request options
309
309
  */
310
310
  ServiceClient.prototype.delete_location = function (id, body, options) {
311
- return this.request("delete", "/location/" + id, body, options);
311
+ return this.request("location", "delete_location", "delete", "/location/" + id, body, options);
312
312
  };
313
313
  /**
314
314
  * PATCH /location/{id} - Update a Location
@@ -318,7 +318,7 @@ var ServiceClient = /** @class */ (function (_super) {
318
318
  * @param options - additional request options
319
319
  */
320
320
  ServiceClient.prototype.patch_location = function (id, body, options) {
321
- return this.request("patch", "/location/" + id, body, options);
321
+ return this.request("location", "patch_location", "patch", "/location/" + id, body, options);
322
322
  };
323
323
  /**
324
324
  * GET /location/pos/{id} - Get information about a POS
@@ -327,7 +327,7 @@ var ServiceClient = /** @class */ (function (_super) {
327
327
  * @param options - additional request options
328
328
  */
329
329
  ServiceClient.prototype.get_location_pos = function (id, options) {
330
- return this.request("get", "/location/pos/" + id, null, options);
330
+ return this.request("location", "get_location_pos", "get", "/location/pos/" + id, null, options);
331
331
  };
332
332
  /**
333
333
  * PUT /location/pos/{id} - Set information about a POS
@@ -337,7 +337,7 @@ var ServiceClient = /** @class */ (function (_super) {
337
337
  * @param options - additional request options
338
338
  */
339
339
  ServiceClient.prototype.put_location_pos = function (id, body, options) {
340
- return this.request("put", "/location/pos/" + id, body, options);
340
+ return this.request("location", "put_location_pos", "put", "/location/pos/" + id, body, options);
341
341
  };
342
342
  /**
343
343
  * GET /location/multigroup - Get all the top level multigroups
@@ -345,7 +345,7 @@ var ServiceClient = /** @class */ (function (_super) {
345
345
  * @param options - additional request options
346
346
  */
347
347
  ServiceClient.prototype.get_location_multigroups = function (options) {
348
- return this.request("get", "/location/multigroup", null, options);
348
+ return this.request("location", "get_location_multigroups", "get", "/location/multigroup", null, options);
349
349
  };
350
350
  /**
351
351
  * POST /location/multigroup - Create a new multigroup
@@ -354,7 +354,7 @@ var ServiceClient = /** @class */ (function (_super) {
354
354
  * @param options - additional request options
355
355
  */
356
356
  ServiceClient.prototype.post_location_multigroup = function (body, options) {
357
- return this.request("post", "/location/multigroup", body, options);
357
+ return this.request("location", "post_location_multigroup", "post", "/location/multigroup", body, options);
358
358
  };
359
359
  /**
360
360
  * GET /location/multigroup/{id} - Get a multigroup
@@ -363,7 +363,7 @@ var ServiceClient = /** @class */ (function (_super) {
363
363
  * @param options - additional request options
364
364
  */
365
365
  ServiceClient.prototype.get_location_multigroup = function (id, options) {
366
- return this.request("get", "/location/multigroup/" + id, null, options);
366
+ return this.request("location", "get_location_multigroup", "get", "/location/multigroup/" + id, null, options);
367
367
  };
368
368
  /**
369
369
  * PUT /location/multigroup/{id} - Override a complete multigroup
@@ -373,7 +373,7 @@ var ServiceClient = /** @class */ (function (_super) {
373
373
  * @param options - additional request options
374
374
  */
375
375
  ServiceClient.prototype.put_location_multigroup = function (id, body, options) {
376
- return this.request("put", "/location/multigroup/" + id, body, options);
376
+ return this.request("location", "put_location_multigroup", "put", "/location/multigroup/" + id, body, options);
377
377
  };
378
378
  /**
379
379
  * DELETE /location/multigroup/{id} - Delete groups from a multigroup
@@ -383,7 +383,7 @@ var ServiceClient = /** @class */ (function (_super) {
383
383
  * @param options - additional request options
384
384
  */
385
385
  ServiceClient.prototype.delete_location_multigroup = function (id, body, options) {
386
- return this.request("delete", "/location/multigroup/" + id, body, options);
386
+ return this.request("location", "delete_location_multigroup", "delete", "/location/multigroup/" + id, body, options);
387
387
  };
388
388
  /**
389
389
  * PATCH /location/multigroup/{id} - Update a multigroup
@@ -393,7 +393,7 @@ var ServiceClient = /** @class */ (function (_super) {
393
393
  * @param options - additional request options
394
394
  */
395
395
  ServiceClient.prototype.patch_location_multigroup = function (id, body, options) {
396
- return this.request("patch", "/location/multigroup/" + id, body, options);
396
+ return this.request("location", "patch_location_multigroup", "patch", "/location/multigroup/" + id, body, options);
397
397
  };
398
398
  /**
399
399
  * GET /location/multigroup/{id}/user/{user_id} - Get all the groups in a multigroup specific to user permissions
@@ -403,7 +403,7 @@ var ServiceClient = /** @class */ (function (_super) {
403
403
  * @param options - additional request options
404
404
  */
405
405
  ServiceClient.prototype.get_location_user_multigroup = function (id, user_id, options) {
406
- return this.request("get", "/location/multigroup/" + id + "/user/" + user_id, null, options);
406
+ return this.request("location", "get_location_user_multigroup", "get", "/location/multigroup/" + id + "/user/" + user_id, null, options);
407
407
  };
408
408
  /**
409
409
  * POST /location/group - Create a new group
@@ -412,7 +412,7 @@ var ServiceClient = /** @class */ (function (_super) {
412
412
  * @param options - additional request options
413
413
  */
414
414
  ServiceClient.prototype.post_location_group = function (body, options) {
415
- return this.request("post", "/location/group", body, options);
415
+ return this.request("location", "post_location_group", "post", "/location/group", body, options);
416
416
  };
417
417
  /**
418
418
  * GET /location/group/{id} - Get an individual Group based on id or latitude/longitude
@@ -421,7 +421,7 @@ var ServiceClient = /** @class */ (function (_super) {
421
421
  * @param options - additional request options
422
422
  */
423
423
  ServiceClient.prototype.get_location_group = function (id, options) {
424
- return this.request("get", "/location/group/" + id, null, options);
424
+ return this.request("location", "get_location_group", "get", "/location/group/" + id, null, options);
425
425
  };
426
426
  /**
427
427
  * PUT /location/group/{id} - Override a complete Group
@@ -431,7 +431,7 @@ var ServiceClient = /** @class */ (function (_super) {
431
431
  * @param options - additional request options
432
432
  */
433
433
  ServiceClient.prototype.put_location_group = function (id, body, options) {
434
- return this.request("put", "/location/group/" + id, body, options);
434
+ return this.request("location", "put_location_group", "put", "/location/group/" + id, body, options);
435
435
  };
436
436
  /**
437
437
  * DELETE /location/group/{id} - Delete locations from a Group
@@ -441,7 +441,7 @@ var ServiceClient = /** @class */ (function (_super) {
441
441
  * @param options - additional request options
442
442
  */
443
443
  ServiceClient.prototype.delete_location_group = function (id, body, options) {
444
- return this.request("delete", "/location/group/" + id, body, options);
444
+ return this.request("location", "delete_location_group", "delete", "/location/group/" + id, body, options);
445
445
  };
446
446
  /**
447
447
  * PATCH /location/group/{id} - Update a Group
@@ -451,7 +451,7 @@ var ServiceClient = /** @class */ (function (_super) {
451
451
  * @param options - additional request options
452
452
  */
453
453
  ServiceClient.prototype.patch_location_group = function (id, body, options) {
454
- return this.request("patch", "/location/group/" + id, body, options);
454
+ return this.request("location", "patch_location_group", "patch", "/location/group/" + id, body, options);
455
455
  };
456
456
  /**
457
457
  * GET /location/group/{id}/deliverydestination - Get all delivery destinations for group
@@ -460,7 +460,7 @@ var ServiceClient = /** @class */ (function (_super) {
460
460
  * @param options - additional request options
461
461
  */
462
462
  ServiceClient.prototype.get_location_group_deliverydestinations = function (id, options) {
463
- return this.request("get", "/location/group/" + id + "/deliverydestination", null, options);
463
+ return this.request("location", "get_location_group_deliverydestinations", "get", "/location/group/" + id + "/deliverydestination", null, options);
464
464
  };
465
465
  /**
466
466
  * POST /location/group/{id}/deliverydestination - Create a new location group delivery destination
@@ -470,7 +470,7 @@ var ServiceClient = /** @class */ (function (_super) {
470
470
  * @param options - additional request options
471
471
  */
472
472
  ServiceClient.prototype.post_location_group_deliverydestination = function (id, body, options) {
473
- return this.request("post", "/location/group/" + id + "/deliverydestination", body, options);
473
+ return this.request("location", "post_location_group_deliverydestination", "post", "/location/group/" + id + "/deliverydestination", body, options);
474
474
  };
475
475
  /**
476
476
  * GET /location/group/{id}/deliverydestination/{delivery_destination} - Get a delivery destination
@@ -480,7 +480,7 @@ var ServiceClient = /** @class */ (function (_super) {
480
480
  * @param options - additional request options
481
481
  */
482
482
  ServiceClient.prototype.get_location_group_deliverydestination = function (id, delivery_destination, options) {
483
- return this.request("get", "/location/group/" + id + "/deliverydestination/" + delivery_destination, null, options);
483
+ return this.request("location", "get_location_group_deliverydestination", "get", "/location/group/" + id + "/deliverydestination/" + delivery_destination, null, options);
484
484
  };
485
485
  /**
486
486
  * PATCH /location/group/{id}/deliverydestination/{delivery_destination} - Patch a delivery destination
@@ -491,7 +491,7 @@ var ServiceClient = /** @class */ (function (_super) {
491
491
  * @param options - additional request options
492
492
  */
493
493
  ServiceClient.prototype.patch_location_group_deliverydestination = function (id, delivery_destination, body, options) {
494
- return this.request("patch", "/location/group/" + id + "/deliverydestination/" + delivery_destination, body, options);
494
+ return this.request("location", "patch_location_group_deliverydestination", "patch", "/location/group/" + id + "/deliverydestination/" + delivery_destination, body, options);
495
495
  };
496
496
  /**
497
497
  * DELETE /location/group/{id}/deliverydestination/{delivery_destination} - Delete a delivery destination
@@ -501,7 +501,7 @@ var ServiceClient = /** @class */ (function (_super) {
501
501
  * @param options - additional request options
502
502
  */
503
503
  ServiceClient.prototype.delete_location_group_deliverydestination = function (id, delivery_destination, options) {
504
- return this.request("delete", "/location/group/" + id + "/deliverydestination/" + delivery_destination, null, options);
504
+ return this.request("location", "delete_location_group_deliverydestination", "delete", "/location/group/" + id + "/deliverydestination/" + delivery_destination, null, options);
505
505
  };
506
506
  /**
507
507
  * GET /location/group/{id}/user/{user_id} - Get a location group info specific to user read permissions
@@ -511,7 +511,7 @@ var ServiceClient = /** @class */ (function (_super) {
511
511
  * @param options - additional request options
512
512
  */
513
513
  ServiceClient.prototype.get_location_user_group = function (id, user_id, options) {
514
- return this.request("get", "/location/group/" + id + "/user/" + user_id, null, options);
514
+ return this.request("location", "get_location_user_group", "get", "/location/group/" + id + "/user/" + user_id, null, options);
515
515
  };
516
516
  /**
517
517
  * GET /location/brands - Get all location brands
@@ -519,7 +519,7 @@ var ServiceClient = /** @class */ (function (_super) {
519
519
  * @param options - additional request options
520
520
  */
521
521
  ServiceClient.prototype.get_location_brands = function (options) {
522
- return this.request("get", "/location/brands", null, options);
522
+ return this.request("location", "get_location_brands", "get", "/location/brands", null, options);
523
523
  };
524
524
  /**
525
525
  * GET /location/brand/{id}/deliverydestinations - Get delivery destinations for a brand
@@ -528,7 +528,7 @@ var ServiceClient = /** @class */ (function (_super) {
528
528
  * @param options - additional request options
529
529
  */
530
530
  ServiceClient.prototype.get_location_brand_destinations = function (id, options) {
531
- return this.request("get", "/location/brand/" + id + "/deliverydestinations", null, options);
531
+ return this.request("location", "get_location_brand_destinations", "get", "/location/brand/" + id + "/deliverydestinations", null, options);
532
532
  };
533
533
  /**
534
534
  * POST /location/brand/{id}/document - Attach document to a brand
@@ -538,7 +538,7 @@ var ServiceClient = /** @class */ (function (_super) {
538
538
  * @param options - additional request options
539
539
  */
540
540
  ServiceClient.prototype.post_location_brand_document = function (id, body, options) {
541
- return this.request("post", "/location/brand/" + id + "/document", body, options);
541
+ return this.request("location", "post_location_brand_document", "post", "/location/brand/" + id + "/document", body, options);
542
542
  };
543
543
  /**
544
544
  * PATCH /location/brand/{id}/document - Edit location document
@@ -547,7 +547,7 @@ var ServiceClient = /** @class */ (function (_super) {
547
547
  * @param options - additional request options
548
548
  */
549
549
  ServiceClient.prototype.patch_location_brand_document = function (id, options) {
550
- return this.request("patch", "/location/brand/" + id + "/document", null, options);
550
+ return this.request("location", "patch_location_brand_document", "patch", "/location/brand/" + id + "/document", null, options);
551
551
  };
552
552
  /**
553
553
  * DELETE /location/brand/{id}/document - Deleted brand document
@@ -556,7 +556,7 @@ var ServiceClient = /** @class */ (function (_super) {
556
556
  * @param options - additional request options
557
557
  */
558
558
  ServiceClient.prototype.delete_location_brand_document = function (id, options) {
559
- return this.request("delete", "/location/brand/" + id + "/document", null, options);
559
+ return this.request("location", "delete_location_brand_document", "delete", "/location/brand/" + id + "/document", null, options);
560
560
  };
561
561
  /**
562
562
  * GET /location/brand/{id}/documents - Get location brand attached documents
@@ -565,7 +565,7 @@ var ServiceClient = /** @class */ (function (_super) {
565
565
  * @param options - additional request options
566
566
  */
567
567
  ServiceClient.prototype.get_location_brand_documents = function (id, options) {
568
- return this.request("get", "/location/brand/" + id + "/documents", null, options);
568
+ return this.request("location", "get_location_brand_documents", "get", "/location/brand/" + id + "/documents", null, options);
569
569
  };
570
570
  /**
571
571
  * GET /location/brand/{id}/timeslots - Get location brand timeslots
@@ -574,7 +574,7 @@ var ServiceClient = /** @class */ (function (_super) {
574
574
  * @param options - additional request options
575
575
  */
576
576
  ServiceClient.prototype.get_location_brand_timeslots = function (id, options) {
577
- return this.request("get", "/location/brand/" + id + "/timeslots", null, options);
577
+ return this.request("location", "get_location_brand_timeslots", "get", "/location/brand/" + id + "/timeslots", null, options);
578
578
  };
579
579
  /**
580
580
  * POST /location/marketplace/timeslots - Get Market Place timeslots
@@ -583,7 +583,7 @@ var ServiceClient = /** @class */ (function (_super) {
583
583
  * @param options - additional request options
584
584
  */
585
585
  ServiceClient.prototype.post_location_marketplace_timeslots = function (body, options) {
586
- return this.request("post", "/location/marketplace/timeslots", body, options);
586
+ return this.request("location", "post_location_marketplace_timeslots", "post", "/location/marketplace/timeslots", body, options);
587
587
  };
588
588
  /**
589
589
  * POST /location/marketplace/timeslots/delivery - Get Marketplace delivery timeslots
@@ -592,7 +592,7 @@ var ServiceClient = /** @class */ (function (_super) {
592
592
  * @param options - additional request options
593
593
  */
594
594
  ServiceClient.prototype.post_location_marketplace_timeslots_delivery = function (body, options) {
595
- return this.request("post", "/location/marketplace/timeslots/delivery", body, options);
595
+ return this.request("location", "post_location_marketplace_timeslots_delivery", "post", "/location/marketplace/timeslots/delivery", body, options);
596
596
  };
597
597
  /**
598
598
  * GET /location/brand/{id}/timeslots/menu/{menu} - Get location brand timeslots for menu
@@ -602,7 +602,7 @@ var ServiceClient = /** @class */ (function (_super) {
602
602
  * @param options - additional request options
603
603
  */
604
604
  ServiceClient.prototype.get_location_brand_menu_timeslots = function (id, menu, options) {
605
- return this.request("get", "/location/brand/" + id + "/timeslots/menu/" + menu, null, options);
605
+ return this.request("location", "get_location_brand_menu_timeslots", "get", "/location/brand/" + id + "/timeslots/menu/" + menu, null, options);
606
606
  };
607
607
  /**
608
608
  * GET /location/brand/{id}/timeslots/delivery - Get location brand delivery timeslots
@@ -611,7 +611,7 @@ var ServiceClient = /** @class */ (function (_super) {
611
611
  * @param options - additional request options
612
612
  */
613
613
  ServiceClient.prototype.get_location_brand_delivery_timeslots = function (id, options) {
614
- return this.request("get", "/location/brand/" + id + "/timeslots/delivery", null, options);
614
+ return this.request("location", "get_location_brand_delivery_timeslots", "get", "/location/brand/" + id + "/timeslots/delivery", null, options);
615
615
  };
616
616
  /**
617
617
  * GET /location/brand/{id}/timeslots/delivery/menu/{menu} - Get location brand delivery timeslots for menu
@@ -621,7 +621,7 @@ var ServiceClient = /** @class */ (function (_super) {
621
621
  * @param options - additional request options
622
622
  */
623
623
  ServiceClient.prototype.get_location_brand_menu_delivery_timeslosts = function (id, menu, options) {
624
- return this.request("get", "/location/brand/" + id + "/timeslots/delivery/menu/" + menu, null, options);
624
+ return this.request("location", "get_location_brand_menu_delivery_timeslosts", "get", "/location/brand/" + id + "/timeslots/delivery/menu/" + menu, null, options);
625
625
  };
626
626
  /**
627
627
  * POST /location/brand - Create a new Brand
@@ -630,7 +630,7 @@ var ServiceClient = /** @class */ (function (_super) {
630
630
  * @param options - additional request options
631
631
  */
632
632
  ServiceClient.prototype.post_location_brand = function (body, options) {
633
- return this.request("post", "/location/brand", body, options);
633
+ return this.request("location", "post_location_brand", "post", "/location/brand", body, options);
634
634
  };
635
635
  /**
636
636
  * GET /location/brand/{id} - Get location brand
@@ -639,7 +639,7 @@ var ServiceClient = /** @class */ (function (_super) {
639
639
  * @param options - additional request options
640
640
  */
641
641
  ServiceClient.prototype.get_location_brand = function (id, options) {
642
- return this.request("get", "/location/brand/" + id, null, options);
642
+ return this.request("location", "get_location_brand", "get", "/location/brand/" + id, null, options);
643
643
  };
644
644
  /**
645
645
  * PATCH /location/brand/{id} - Update location brand
@@ -649,7 +649,7 @@ var ServiceClient = /** @class */ (function (_super) {
649
649
  * @param options - additional request options
650
650
  */
651
651
  ServiceClient.prototype.patch_location_brand = function (id, body, options) {
652
- return this.request("patch", "/location/brand/" + id, body, options);
652
+ return this.request("location", "patch_location_brand", "patch", "/location/brand/" + id, body, options);
653
653
  };
654
654
  /**
655
655
  * DELETE /location/brand/{id} - Delete data from a Brand
@@ -659,7 +659,7 @@ var ServiceClient = /** @class */ (function (_super) {
659
659
  * @param options - additional request options
660
660
  */
661
661
  ServiceClient.prototype.delete_location_brand = function (id, body, options) {
662
- return this.request("delete", "/location/brand/" + id, body, options);
662
+ return this.request("location", "delete_location_brand", "delete", "/location/brand/" + id, body, options);
663
663
  };
664
664
  /**
665
665
  * PUT /location/brand/{id} - Update location brand
@@ -669,7 +669,7 @@ var ServiceClient = /** @class */ (function (_super) {
669
669
  * @param options - additional request options
670
670
  */
671
671
  ServiceClient.prototype.put_location_brand = function (id, body, options) {
672
- return this.request("put", "/location/brand/" + id, body, options);
672
+ return this.request("location", "put_location_brand", "put", "/location/brand/" + id, body, options);
673
673
  };
674
674
  /**
675
675
  * GET /location/sector - Get list of all the sectors
@@ -677,7 +677,7 @@ var ServiceClient = /** @class */ (function (_super) {
677
677
  * @param options - additional request options
678
678
  */
679
679
  ServiceClient.prototype.get_location_sectors = function (options) {
680
- return this.request("get", "/location/sector", null, options);
680
+ return this.request("location", "get_location_sectors", "get", "/location/sector", null, options);
681
681
  };
682
682
  /**
683
683
  * POST /location/sector - Create a new sector
@@ -686,7 +686,7 @@ var ServiceClient = /** @class */ (function (_super) {
686
686
  * @param options - additional request options
687
687
  */
688
688
  ServiceClient.prototype.post_location_sector = function (body, options) {
689
- return this.request("post", "/location/sector", body, options);
689
+ return this.request("location", "post_location_sector", "post", "/location/sector", body, options);
690
690
  };
691
691
  /**
692
692
  * GET /location/sector/{id} - Get a sector
@@ -695,7 +695,7 @@ var ServiceClient = /** @class */ (function (_super) {
695
695
  * @param options - additional request options
696
696
  */
697
697
  ServiceClient.prototype.get_location_sector = function (id, options) {
698
- return this.request("get", "/location/sector/" + id, null, options);
698
+ return this.request("location", "get_location_sector", "get", "/location/sector/" + id, null, options);
699
699
  };
700
700
  /**
701
701
  * PATCH /location/sector/{id} - Update a sector
@@ -705,7 +705,7 @@ var ServiceClient = /** @class */ (function (_super) {
705
705
  * @param options - additional request options
706
706
  */
707
707
  ServiceClient.prototype.patch_location_sector = function (id, body, options) {
708
- return this.request("patch", "/location/sector/" + id, body, options);
708
+ return this.request("location", "patch_location_sector", "patch", "/location/sector/" + id, body, options);
709
709
  };
710
710
  /**
711
711
  * POST /location/company - Create a new company
@@ -714,7 +714,7 @@ var ServiceClient = /** @class */ (function (_super) {
714
714
  * @param options - additional request options
715
715
  */
716
716
  ServiceClient.prototype.post_location_company = function (body, options) {
717
- return this.request("post", "/location/company", body, options);
717
+ return this.request("location", "post_location_company", "post", "/location/company", body, options);
718
718
  };
719
719
  /**
720
720
  * GET /location/company/{id} - Get a company within sector
@@ -723,7 +723,7 @@ var ServiceClient = /** @class */ (function (_super) {
723
723
  * @param options - additional request options
724
724
  */
725
725
  ServiceClient.prototype.get_location_company = function (id, options) {
726
- return this.request("get", "/location/company/" + id, null, options);
726
+ return this.request("location", "get_location_company", "get", "/location/company/" + id, null, options);
727
727
  };
728
728
  /**
729
729
  * PATCH /location/company/{id} - Update a company
@@ -733,7 +733,7 @@ var ServiceClient = /** @class */ (function (_super) {
733
733
  * @param options - additional request options
734
734
  */
735
735
  ServiceClient.prototype.patch_location_company = function (id, body, options) {
736
- return this.request("patch", "/location/company/" + id, body, options);
736
+ return this.request("location", "patch_location_company", "patch", "/location/company/" + id, body, options);
737
737
  };
738
738
  /**
739
739
  * POST /shoppingcart/ - Create a new ShoppingCart
@@ -742,7 +742,7 @@ var ServiceClient = /** @class */ (function (_super) {
742
742
  * @param options - additional request options
743
743
  */
744
744
  ServiceClient.prototype.post_shoppingcart_cart = function (body, options) {
745
- return this.request("post", "/shoppingcart/", body, options);
745
+ return this.request("shoppingcart", "post_shoppingcart_cart", "post", "/shoppingcart/", body, options);
746
746
  };
747
747
  /**
748
748
  * PUT /shoppingcart/{id} - Put a menu item into a ShoppingCart
@@ -752,7 +752,7 @@ var ServiceClient = /** @class */ (function (_super) {
752
752
  * @param options - additional request options
753
753
  */
754
754
  ServiceClient.prototype.put_shoppingcart_cart_items = function (id, body, options) {
755
- return this.request("put", "/shoppingcart/" + id, body, options);
755
+ return this.request("shoppingcart", "put_shoppingcart_cart_items", "put", "/shoppingcart/" + id, body, options);
756
756
  };
757
757
  /**
758
758
  * DELETE /shoppingcart/{id} - Delete a menu item from a ShoppingCart
@@ -762,7 +762,7 @@ var ServiceClient = /** @class */ (function (_super) {
762
762
  * @param options - additional request options
763
763
  */
764
764
  ServiceClient.prototype.delete_shoppingcart_cart_items = function (id, body, options) {
765
- return this.request("delete", "/shoppingcart/" + id, body, options);
765
+ return this.request("shoppingcart", "delete_shoppingcart_cart_items", "delete", "/shoppingcart/" + id, body, options);
766
766
  };
767
767
  /**
768
768
  * GET /shoppingcart/{id} - Get an individual ShoppingCart
@@ -771,7 +771,7 @@ var ServiceClient = /** @class */ (function (_super) {
771
771
  * @param options - additional request options
772
772
  */
773
773
  ServiceClient.prototype.get_shoppingcart_cart = function (id, options) {
774
- return this.request("get", "/shoppingcart/" + id, null, options);
774
+ return this.request("shoppingcart", "get_shoppingcart_cart", "get", "/shoppingcart/" + id, null, options);
775
775
  };
776
776
  /**
777
777
  * PATCH /shoppingcart/{id} - Update a ShoppingCart
@@ -780,7 +780,7 @@ var ServiceClient = /** @class */ (function (_super) {
780
780
  * @param options - additional request options
781
781
  */
782
782
  ServiceClient.prototype.patch_shoppingcart_cart = function (id, options) {
783
- return this.request("patch", "/shoppingcart/" + id, null, options);
783
+ return this.request("shoppingcart", "patch_shoppingcart_cart", "patch", "/shoppingcart/" + id, null, options);
784
784
  };
785
785
  /**
786
786
  * PUT /shoppingcart/{id}/promo - Put a promo in a ShoppingCart
@@ -790,7 +790,7 @@ var ServiceClient = /** @class */ (function (_super) {
790
790
  * @param options - additional request options
791
791
  */
792
792
  ServiceClient.prototype.put_shoppingcart_cart_promo = function (id, body, options) {
793
- return this.request("put", "/shoppingcart/" + id + "/promo", body, options);
793
+ return this.request("shoppingcart", "put_shoppingcart_cart_promo", "put", "/shoppingcart/" + id + "/promo", body, options);
794
794
  };
795
795
  /**
796
796
  * DELETE /shoppingcart/{id}/promo - Delete the promo in a ShoppingCart
@@ -799,7 +799,7 @@ var ServiceClient = /** @class */ (function (_super) {
799
799
  * @param options - additional request options
800
800
  */
801
801
  ServiceClient.prototype.delete_shoppingcart_cart_promo = function (id, options) {
802
- return this.request("delete", "/shoppingcart/" + id + "/promo", null, options);
802
+ return this.request("shoppingcart", "delete_shoppingcart_cart_promo", "delete", "/shoppingcart/" + id + "/promo", null, options);
803
803
  };
804
804
  /**
805
805
  * PUT /shoppingcart/{id}/paymentmethod/ - Change payment method used in shopping cart
@@ -809,7 +809,7 @@ var ServiceClient = /** @class */ (function (_super) {
809
809
  * @param options - additional request options
810
810
  */
811
811
  ServiceClient.prototype.put_shoppingcart_cart_payment = function (id, body, options) {
812
- return this.request("put", "/shoppingcart/" + id + "/paymentmethod/", body, options);
812
+ return this.request("shoppingcart", "put_shoppingcart_cart_payment", "put", "/shoppingcart/" + id + "/paymentmethod/", body, options);
813
813
  };
814
814
  /**
815
815
  * PUT /shoppingcart/{id}/order/ - Store information about the order created with this shopping cart
@@ -819,7 +819,7 @@ var ServiceClient = /** @class */ (function (_super) {
819
819
  * @param options - additional request options
820
820
  */
821
821
  ServiceClient.prototype.put_shoppingcart_cart_order = function (id, body, options) {
822
- return this.request("put", "/shoppingcart/" + id + "/order/", body, options);
822
+ return this.request("shoppingcart", "put_shoppingcart_cart_order", "put", "/shoppingcart/" + id + "/order/", body, options);
823
823
  };
824
824
  /**
825
825
  * PUT /shoppingcart/{id}/loyalty/{user_id} - Apply a loyalty coupon in a ShoppingCart
@@ -830,7 +830,7 @@ var ServiceClient = /** @class */ (function (_super) {
830
830
  * @param options - additional request options
831
831
  */
832
832
  ServiceClient.prototype.put_shoppingcart_cart_loyalty = function (id, user_id, body, options) {
833
- return this.request("put", "/shoppingcart/" + id + "/loyalty/" + user_id, body, options);
833
+ return this.request("shoppingcart", "put_shoppingcart_cart_loyalty", "put", "/shoppingcart/" + id + "/loyalty/" + user_id, body, options);
834
834
  };
835
835
  /**
836
836
  * DELETE /shoppingcart/{id}/loyalty/{user_id} - Delete loyalty coupon in shoppingCart
@@ -840,7 +840,7 @@ var ServiceClient = /** @class */ (function (_super) {
840
840
  * @param options - additional request options
841
841
  */
842
842
  ServiceClient.prototype.delete_shoppingcart_cart_loyalty = function (id, user_id, options) {
843
- return this.request("delete", "/shoppingcart/" + id + "/loyalty/" + user_id, null, options);
843
+ return this.request("shoppingcart", "delete_shoppingcart_cart_loyalty", "delete", "/shoppingcart/" + id + "/loyalty/" + user_id, null, options);
844
844
  };
845
845
  /**
846
846
  * POST /shoppingcart/{id}/clone - Create a shopping cart from existing shopping cart
@@ -850,7 +850,7 @@ var ServiceClient = /** @class */ (function (_super) {
850
850
  * @param options - additional request options
851
851
  */
852
852
  ServiceClient.prototype.post_shoppingcart_clone_cart = function (id, body, options) {
853
- return this.request("post", "/shoppingcart/" + id + "/clone", body, options);
853
+ return this.request("shoppingcart", "post_shoppingcart_clone_cart", "post", "/shoppingcart/" + id + "/clone", body, options);
854
854
  };
855
855
  /**
856
856
  * POST /shoppingcart/bulk - Get multiple ShoppingCarts
@@ -859,7 +859,7 @@ var ServiceClient = /** @class */ (function (_super) {
859
859
  * @param options - additional request options
860
860
  */
861
861
  ServiceClient.prototype.post_shoppingcart_bulk = function (body, options) {
862
- return this.request("post", "/shoppingcart/bulk", body, options);
862
+ return this.request("shoppingcart", "post_shoppingcart_bulk", "post", "/shoppingcart/bulk", body, options);
863
863
  };
864
864
  /**
865
865
  * POST /partner/standardcognition/shoppingcart - Calculates a shoppingcart
@@ -868,7 +868,7 @@ var ServiceClient = /** @class */ (function (_super) {
868
868
  * @param options - additional request options
869
869
  */
870
870
  ServiceClient.prototype.post_partner_standardcognition_shoppingcart = function (body, options) {
871
- return this.request("post", "/partner/standardcognition/shoppingcart", body, options);
871
+ return this.request("partner", "post_partner_standardcognition_shoppingcart", "post", "/partner/standardcognition/shoppingcart", body, options);
872
872
  };
873
873
  /**
874
874
  * GET /partner/standardcognition/locations - Gets the locations where Standard Cognition is available
@@ -876,7 +876,7 @@ var ServiceClient = /** @class */ (function (_super) {
876
876
  * @param options - additional request options
877
877
  */
878
878
  ServiceClient.prototype.get_partner_standardcognition_locations = function (options) {
879
- return this.request("get", "/partner/standardcognition/locations", null, options);
879
+ return this.request("partner", "get_partner_standardcognition_locations", "get", "/partner/standardcognition/locations", null, options);
880
880
  };
881
881
  /**
882
882
  * GET /partner/coolr/locations - Gets the locations where Coolr is available
@@ -884,7 +884,7 @@ var ServiceClient = /** @class */ (function (_super) {
884
884
  * @param options - additional request options
885
885
  */
886
886
  ServiceClient.prototype.get_partner_coolr_locations = function (options) {
887
- return this.request("get", "/partner/coolr/locations", null, options);
887
+ return this.request("partner", "get_partner_coolr_locations", "get", "/partner/coolr/locations", null, options);
888
888
  };
889
889
  /**
890
890
  * GET /partner/coolr/{id}/images - Gets the latest images for Coolr Location AssetID
@@ -893,7 +893,7 @@ var ServiceClient = /** @class */ (function (_super) {
893
893
  * @param options - additional request options
894
894
  */
895
895
  ServiceClient.prototype.get_partner_coolr_images = function (id, options) {
896
- return this.request("get", "/partner/coolr/" + id + "/images", null, options);
896
+ return this.request("partner", "get_partner_coolr_images", "get", "/partner/coolr/" + id + "/images", null, options);
897
897
  };
898
898
  /**
899
899
  * GET /partner/swagger.json
@@ -901,7 +901,7 @@ var ServiceClient = /** @class */ (function (_super) {
901
901
  * @param options - additional request options
902
902
  */
903
903
  ServiceClient.prototype.get_partner_swagger = function (options) {
904
- return this.request("get", "/partner/swagger.json", null, options);
904
+ return this.request("partner", "get_partner_swagger", "get", "/partner/swagger.json", null, options);
905
905
  };
906
906
  /**
907
907
  * POST /task/ - Create new Task
@@ -910,7 +910,7 @@ var ServiceClient = /** @class */ (function (_super) {
910
910
  * @param options - additional request options
911
911
  */
912
912
  ServiceClient.prototype.post_task = function (body, options) {
913
- return this.request("post", "/task/", body, options);
913
+ return this.request("task", "post_task", "post", "/task/", body, options);
914
914
  };
915
915
  /**
916
916
  * GET /task/{id} - Get task based on passed ID
@@ -919,7 +919,7 @@ var ServiceClient = /** @class */ (function (_super) {
919
919
  * @param options - additional request options
920
920
  */
921
921
  ServiceClient.prototype.get_task = function (id, options) {
922
- return this.request("get", "/task/" + id, null, options);
922
+ return this.request("task", "get_task", "get", "/task/" + id, null, options);
923
923
  };
924
924
  /**
925
925
  * PATCH /task/{id} - Update Task
@@ -929,7 +929,7 @@ var ServiceClient = /** @class */ (function (_super) {
929
929
  * @param options - additional request options
930
930
  */
931
931
  ServiceClient.prototype.patch_task = function (id, body, options) {
932
- return this.request("patch", "/task/" + id, body, options);
932
+ return this.request("task", "patch_task", "patch", "/task/" + id, body, options);
933
933
  };
934
934
  /**
935
935
  * DELETE /task/{id} - Delete Task
@@ -938,7 +938,7 @@ var ServiceClient = /** @class */ (function (_super) {
938
938
  * @param options - additional request options
939
939
  */
940
940
  ServiceClient.prototype.delete_task = function (id, options) {
941
- return this.request("delete", "/task/" + id, null, options);
941
+ return this.request("task", "delete_task", "delete", "/task/" + id, null, options);
942
942
  };
943
943
  /**
944
944
  * GET /task/order/{id} - Get task based on passed order ID
@@ -947,7 +947,7 @@ var ServiceClient = /** @class */ (function (_super) {
947
947
  * @param options - additional request options
948
948
  */
949
949
  ServiceClient.prototype.get_task_order = function (id, options) {
950
- return this.request("get", "/task/order/" + id, null, options);
950
+ return this.request("task", "get_task_order", "get", "/task/order/" + id, null, options);
951
951
  };
952
952
  /**
953
953
  * GET /task/order/{id}/kds - Get KDS tasks based on passed order ID
@@ -956,7 +956,7 @@ var ServiceClient = /** @class */ (function (_super) {
956
956
  * @param options - additional request options
957
957
  */
958
958
  ServiceClient.prototype.get_task_order_kds = function (id, options) {
959
- return this.request("get", "/task/order/" + id + "/kds", null, options);
959
+ return this.request("task", "get_task_order_kds", "get", "/task/order/" + id + "/kds", null, options);
960
960
  };
961
961
  /**
962
962
  * PATCH /task/order/{id}/kds - Update an order and its associated tasks
@@ -966,7 +966,7 @@ var ServiceClient = /** @class */ (function (_super) {
966
966
  * @param options - additional request options
967
967
  */
968
968
  ServiceClient.prototype.patch_task_order_kds = function (id, body, options) {
969
- return this.request("patch", "/task/order/" + id + "/kds", body, options);
969
+ return this.request("task", "patch_task_order_kds", "patch", "/task/order/" + id + "/kds", body, options);
970
970
  };
971
971
  /**
972
972
  * GET /task/assignee/{id} - Get Assignee tasks
@@ -975,7 +975,7 @@ var ServiceClient = /** @class */ (function (_super) {
975
975
  * @param options - additional request options
976
976
  */
977
977
  ServiceClient.prototype.get_task_assignee = function (id, options) {
978
- return this.request("get", "/task/assignee/" + id, null, options);
978
+ return this.request("task", "get_task_assignee", "get", "/task/assignee/" + id, null, options);
979
979
  };
980
980
  /**
981
981
  * GET /task/location/brand/{id} - Get location brand tasks
@@ -984,7 +984,7 @@ var ServiceClient = /** @class */ (function (_super) {
984
984
  * @param options - additional request options
985
985
  */
986
986
  ServiceClient.prototype.get_task_location_brand = function (id, options) {
987
- return this.request("get", "/task/location/brand/" + id, null, options);
987
+ return this.request("task", "get_task_location_brand", "get", "/task/location/brand/" + id, null, options);
988
988
  };
989
989
  /**
990
990
  * GET /task/location/group/{id} - Get location group tasks
@@ -993,7 +993,7 @@ var ServiceClient = /** @class */ (function (_super) {
993
993
  * @param options - additional request options
994
994
  */
995
995
  ServiceClient.prototype.get_task_location_group = function (id, options) {
996
- return this.request("get", "/task/location/group/" + id, null, options);
996
+ return this.request("task", "get_task_location_group", "get", "/task/location/group/" + id, null, options);
997
997
  };
998
998
  /**
999
999
  * GET /kds/devices - Get kds devices for a specified unit number
@@ -1001,7 +1001,7 @@ var ServiceClient = /** @class */ (function (_super) {
1001
1001
  * @param options - additional request options
1002
1002
  */
1003
1003
  ServiceClient.prototype.get_kds_devices = function (options) {
1004
- return this.request("get", "/kds/devices", null, options);
1004
+ return this.request("kds", "get_kds_devices", "get", "/kds/devices", null, options);
1005
1005
  };
1006
1006
  /**
1007
1007
  * POST /kds/device/auth - Get auth token for a device
@@ -1010,7 +1010,7 @@ var ServiceClient = /** @class */ (function (_super) {
1010
1010
  * @param options - additional request options
1011
1011
  */
1012
1012
  ServiceClient.prototype.post_kds_device_auth = function (body, options) {
1013
- return this.request("post", "/kds/device/auth", body, options);
1013
+ return this.request("kds", "post_kds_device_auth", "post", "/kds/device/auth", body, options);
1014
1014
  };
1015
1015
  /**
1016
1016
  * DELETE /kds/device/auth/{device_id} - Delete authorization for specified serial_number
@@ -1019,7 +1019,7 @@ var ServiceClient = /** @class */ (function (_super) {
1019
1019
  * @param options - additional request options
1020
1020
  */
1021
1021
  ServiceClient.prototype.delete_kds_device_auth = function (device_id, options) {
1022
- return this.request("delete", "/kds/device/auth/" + device_id, null, options);
1022
+ return this.request("kds", "delete_kds_device_auth", "delete", "/kds/device/auth/" + device_id, null, options);
1023
1023
  };
1024
1024
  /**
1025
1025
  * GET /kds/swagger.json - Get a swagger for kds service
@@ -1027,7 +1027,7 @@ var ServiceClient = /** @class */ (function (_super) {
1027
1027
  * @param options - additional request options
1028
1028
  */
1029
1029
  ServiceClient.prototype.get_kds_swagger = function (options) {
1030
- return this.request("get", "/kds/swagger.json", null, options);
1030
+ return this.request("kds", "get_kds_swagger", "get", "/kds/swagger.json", null, options);
1031
1031
  };
1032
1032
  /**
1033
1033
  * POST /mealplan/{id} - Authenticate against the meal plan provider
@@ -1037,7 +1037,7 @@ var ServiceClient = /** @class */ (function (_super) {
1037
1037
  * @param options - additional request options
1038
1038
  */
1039
1039
  ServiceClient.prototype.post_mealplan = function (id, body, options) {
1040
- return this.request("post", "/mealplan/" + id, body, options);
1040
+ return this.request("mealplan", "post_mealplan", "post", "/mealplan/" + id, body, options);
1041
1041
  };
1042
1042
  /**
1043
1043
  * PUT /mealplan/{id} - Save a token for access to the meal plan
@@ -1047,7 +1047,7 @@ var ServiceClient = /** @class */ (function (_super) {
1047
1047
  * @param options - additional request options
1048
1048
  */
1049
1049
  ServiceClient.prototype.put_mealplan = function (id, body, options) {
1050
- return this.request("put", "/mealplan/" + id, body, options);
1050
+ return this.request("mealplan", "put_mealplan", "put", "/mealplan/" + id, body, options);
1051
1051
  };
1052
1052
  /**
1053
1053
  * GET /mealplan/{id} - Check the user's meal plan tenders and get the authentication configuration
@@ -1056,7 +1056,7 @@ var ServiceClient = /** @class */ (function (_super) {
1056
1056
  * @param options - additional request options
1057
1057
  */
1058
1058
  ServiceClient.prototype.get_mealplan = function (id, options) {
1059
- return this.request("get", "/mealplan/" + id, null, options);
1059
+ return this.request("mealplan", "get_mealplan", "get", "/mealplan/" + id, null, options);
1060
1060
  };
1061
1061
  /**
1062
1062
  * DELETE /mealplan/{id} - Delete a mealplan or a tender from the user's account
@@ -1066,7 +1066,7 @@ var ServiceClient = /** @class */ (function (_super) {
1066
1066
  * @param options - additional request options
1067
1067
  */
1068
1068
  ServiceClient.prototype.delete_mealplan = function (id, body, options) {
1069
- return this.request("delete", "/mealplan/" + id, body, options);
1069
+ return this.request("mealplan", "delete_mealplan", "delete", "/mealplan/" + id, body, options);
1070
1070
  };
1071
1071
  /**
1072
1072
  * POST /mealplan/{id}/callback - Callback endpoint for meal plans that make a call back from a webview workflow
@@ -1075,7 +1075,7 @@ var ServiceClient = /** @class */ (function (_super) {
1075
1075
  * @param options - additional request options
1076
1076
  */
1077
1077
  ServiceClient.prototype.post_mealplan_callback = function (id, options) {
1078
- return this.request("post", "/mealplan/" + id + "/callback", null, options);
1078
+ return this.request("mealplan", "post_mealplan_callback", "post", "/mealplan/" + id + "/callback", null, options);
1079
1079
  };
1080
1080
  /**
1081
1081
  * GET /mealplan/{id}/tender/{tender} - Check the user's tender balance
@@ -1085,7 +1085,7 @@ var ServiceClient = /** @class */ (function (_super) {
1085
1085
  * @param options - additional request options
1086
1086
  */
1087
1087
  ServiceClient.prototype.get_mealplan_tender = function (id, tender, options) {
1088
- return this.request("get", "/mealplan/" + id + "/tender/" + tender, null, options);
1088
+ return this.request("mealplan", "get_mealplan_tender", "get", "/mealplan/" + id + "/tender/" + tender, null, options);
1089
1089
  };
1090
1090
  /**
1091
1091
  * DELETE /mealplan/{id}/tender/{tender} - Debit an amount from the tender balance
@@ -1095,7 +1095,7 @@ var ServiceClient = /** @class */ (function (_super) {
1095
1095
  * @param options - additional request options
1096
1096
  */
1097
1097
  ServiceClient.prototype.delete_mealplan_tender = function (id, tender, options) {
1098
- return this.request("delete", "/mealplan/" + id + "/tender/" + tender, null, options);
1098
+ return this.request("mealplan", "delete_mealplan_tender", "delete", "/mealplan/" + id + "/tender/" + tender, null, options);
1099
1099
  };
1100
1100
  /**
1101
1101
  * PATCH /mealplan/{id}/tender/{tender} - Refund an amount to the tender balance
@@ -1106,7 +1106,7 @@ var ServiceClient = /** @class */ (function (_super) {
1106
1106
  * @param options - additional request options
1107
1107
  */
1108
1108
  ServiceClient.prototype.patch_mealplan_tender = function (id, tender, body, options) {
1109
- return this.request("patch", "/mealplan/" + id + "/tender/" + tender, body, options);
1109
+ return this.request("mealplan", "patch_mealplan_tender", "patch", "/mealplan/" + id + "/tender/" + tender, body, options);
1110
1110
  };
1111
1111
  /**
1112
1112
  * POST /mealplan/{id}/verify - Send verification email to user linking a mealplan
@@ -1116,7 +1116,7 @@ var ServiceClient = /** @class */ (function (_super) {
1116
1116
  * @param options - additional request options
1117
1117
  */
1118
1118
  ServiceClient.prototype.post_mealplan_verify = function (id, body, options) {
1119
- return this.request("post", "/mealplan/" + id + "/verify", body, options);
1119
+ return this.request("mealplan", "post_mealplan_verify", "post", "/mealplan/" + id + "/verify", body, options);
1120
1120
  };
1121
1121
  /**
1122
1122
  * PUT /mealplan/{id}/verify - Verify email address using provided payload
@@ -1126,7 +1126,7 @@ var ServiceClient = /** @class */ (function (_super) {
1126
1126
  * @param options - additional request options
1127
1127
  */
1128
1128
  ServiceClient.prototype.put_mealplan_verify = function (id, body, options) {
1129
- return this.request("put", "/mealplan/" + id + "/verify", body, options);
1129
+ return this.request("mealplan", "put_mealplan_verify", "put", "/mealplan/" + id + "/verify", body, options);
1130
1130
  };
1131
1131
  /**
1132
1132
  * POST /mealplan/{id}/authorize - Authorize Transaction
@@ -1136,7 +1136,7 @@ var ServiceClient = /** @class */ (function (_super) {
1136
1136
  * @param options - additional request options
1137
1137
  */
1138
1138
  ServiceClient.prototype.post_mealplan_authorize = function (id, body, options) {
1139
- return this.request("post", "/mealplan/" + id + "/authorize", body, options);
1139
+ return this.request("mealplan", "post_mealplan_authorize", "post", "/mealplan/" + id + "/authorize", body, options);
1140
1140
  };
1141
1141
  /**
1142
1142
  * POST /datalake/sql - Query datalake for data
@@ -1145,7 +1145,7 @@ var ServiceClient = /** @class */ (function (_super) {
1145
1145
  * @param options - additional request options
1146
1146
  */
1147
1147
  ServiceClient.prototype.post_datalake_sql = function (body, options) {
1148
- return this.request("post", "/datalake/sql", body, options);
1148
+ return this.request("datalake", "post_datalake_sql", "post", "/datalake/sql", body, options);
1149
1149
  };
1150
1150
  /**
1151
1151
  * GET /swagger.json
@@ -1153,7 +1153,7 @@ var ServiceClient = /** @class */ (function (_super) {
1153
1153
  * @param options - additional request options
1154
1154
  */
1155
1155
  ServiceClient.prototype.get_swagger = function (options) {
1156
- return this.request("get", "/swagger.json", null, options);
1156
+ return this.request("datalake", "get_swagger", "get", "/swagger.json", null, options);
1157
1157
  };
1158
1158
  /**
1159
1159
  * POST /promo - Create a new promotion
@@ -1162,7 +1162,7 @@ var ServiceClient = /** @class */ (function (_super) {
1162
1162
  * @param options - additional request options
1163
1163
  */
1164
1164
  ServiceClient.prototype.post_promo = function (body, options) {
1165
- return this.request("post", "/promo", body, options);
1165
+ return this.request("promo", "post_promo", "post", "/promo", body, options);
1166
1166
  };
1167
1167
  /**
1168
1168
  * GET /promo - Get all promotions
@@ -1170,7 +1170,7 @@ var ServiceClient = /** @class */ (function (_super) {
1170
1170
  * @param options - additional request options
1171
1171
  */
1172
1172
  ServiceClient.prototype.get_promos = function (options) {
1173
- return this.request("get", "/promo", null, options);
1173
+ return this.request("promo", "get_promos", "get", "/promo", null, options);
1174
1174
  };
1175
1175
  /**
1176
1176
  * GET /promo/{id} - Get an individual promotion
@@ -1179,7 +1179,7 @@ var ServiceClient = /** @class */ (function (_super) {
1179
1179
  * @param options - additional request options
1180
1180
  */
1181
1181
  ServiceClient.prototype.get_promo = function (id, options) {
1182
- return this.request("get", "/promo/" + id, null, options);
1182
+ return this.request("promo", "get_promo", "get", "/promo/" + id, null, options);
1183
1183
  };
1184
1184
  /**
1185
1185
  * PUT /promo/{id} - Update a promotion
@@ -1189,7 +1189,7 @@ var ServiceClient = /** @class */ (function (_super) {
1189
1189
  * @param options - additional request options
1190
1190
  */
1191
1191
  ServiceClient.prototype.put_promo = function (id, body, options) {
1192
- return this.request("put", "/promo/" + id, body, options);
1192
+ return this.request("promo", "put_promo", "put", "/promo/" + id, body, options);
1193
1193
  };
1194
1194
  /**
1195
1195
  * DELETE /promo/{id} - Delete promotion
@@ -1198,7 +1198,7 @@ var ServiceClient = /** @class */ (function (_super) {
1198
1198
  * @param options - additional request options
1199
1199
  */
1200
1200
  ServiceClient.prototype.delete_promo = function (id, options) {
1201
- return this.request("delete", "/promo/" + id, null, options);
1201
+ return this.request("promo", "delete_promo", "delete", "/promo/" + id, null, options);
1202
1202
  };
1203
1203
  /**
1204
1204
  * GET /promo/company/{company}/location/group/{location_group} - Get all promotions within company for a location group
@@ -1208,7 +1208,7 @@ var ServiceClient = /** @class */ (function (_super) {
1208
1208
  * @param options - additional request options
1209
1209
  */
1210
1210
  ServiceClient.prototype.get_promo_company_location_group = function (company, location_group, options) {
1211
- return this.request("get", "/promo/company/" + company + "/location/group/" + location_group, null, options);
1211
+ return this.request("promo", "get_promo_company_location_group", "get", "/promo/company/" + company + "/location/group/" + location_group, null, options);
1212
1212
  };
1213
1213
  /**
1214
1214
  * POST /promo/validate/voucher - Validate a promo voucher
@@ -1217,7 +1217,7 @@ var ServiceClient = /** @class */ (function (_super) {
1217
1217
  * @param options - additional request options
1218
1218
  */
1219
1219
  ServiceClient.prototype.post_promo_validate_voucher = function (body, options) {
1220
- return this.request("post", "/promo/validate/voucher", body, options);
1220
+ return this.request("promo", "post_promo_validate_voucher", "post", "/promo/validate/voucher", body, options);
1221
1221
  };
1222
1222
  /**
1223
1223
  * POST /promo/redeem/voucher - Redeem a promo voucher
@@ -1226,7 +1226,7 @@ var ServiceClient = /** @class */ (function (_super) {
1226
1226
  * @param options - additional request options
1227
1227
  */
1228
1228
  ServiceClient.prototype.post_promo_redeem_voucher = function (body, options) {
1229
- return this.request("post", "/promo/redeem/voucher", body, options);
1229
+ return this.request("promo", "post_promo_redeem_voucher", "post", "/promo/redeem/voucher", body, options);
1230
1230
  };
1231
1231
  /**
1232
1232
  * POST /promo/voucher - Create new voucher
@@ -1235,7 +1235,7 @@ var ServiceClient = /** @class */ (function (_super) {
1235
1235
  * @param options - additional request options
1236
1236
  */
1237
1237
  ServiceClient.prototype.post_promo_voucher = function (body, options) {
1238
- return this.request("post", "/promo/voucher", body, options);
1238
+ return this.request("promo", "post_promo_voucher", "post", "/promo/voucher", body, options);
1239
1239
  };
1240
1240
  /**
1241
1241
  * PUT /promo/voucher/{id} - Update voucher
@@ -1245,7 +1245,7 @@ var ServiceClient = /** @class */ (function (_super) {
1245
1245
  * @param options - additional request options
1246
1246
  */
1247
1247
  ServiceClient.prototype.put_promo_voucher = function (id, body, options) {
1248
- return this.request("put", "/promo/voucher/" + id, body, options);
1248
+ return this.request("promo", "put_promo_voucher", "put", "/promo/voucher/" + id, body, options);
1249
1249
  };
1250
1250
  /**
1251
1251
  * DELETE /promo/voucher/{id} - Delete voucher
@@ -1254,7 +1254,7 @@ var ServiceClient = /** @class */ (function (_super) {
1254
1254
  * @param options - additional request options
1255
1255
  */
1256
1256
  ServiceClient.prototype.delete_promo_voucher = function (id, options) {
1257
- return this.request("delete", "/promo/voucher/" + id, null, options);
1257
+ return this.request("promo", "delete_promo_voucher", "delete", "/promo/voucher/" + id, null, options);
1258
1258
  };
1259
1259
  /**
1260
1260
  * POST /promo/customer/ - Add user to voucherify
@@ -1263,7 +1263,7 @@ var ServiceClient = /** @class */ (function (_super) {
1263
1263
  * @param options - additional request options
1264
1264
  */
1265
1265
  ServiceClient.prototype.post_promo_customer = function (body, options) {
1266
- return this.request("post", "/promo/customer/", body, options);
1266
+ return this.request("promo", "post_promo_customer", "post", "/promo/customer/", body, options);
1267
1267
  };
1268
1268
  /**
1269
1269
  * DELETE /promo/customer/ - Delete user from voucherify
@@ -1272,7 +1272,7 @@ var ServiceClient = /** @class */ (function (_super) {
1272
1272
  * @param options - additional request options
1273
1273
  */
1274
1274
  ServiceClient.prototype.delete_promo_customer = function (body, options) {
1275
- return this.request("delete", "/promo/customer/", body, options);
1275
+ return this.request("promo", "delete_promo_customer", "delete", "/promo/customer/", body, options);
1276
1276
  };
1277
1277
  /**
1278
1278
  * POST /promo/voucher/{id}/reverse - Reverse a redemption from a promo voucher
@@ -1282,7 +1282,7 @@ var ServiceClient = /** @class */ (function (_super) {
1282
1282
  * @param options - additional request options
1283
1283
  */
1284
1284
  ServiceClient.prototype.post_promo_voucher_reverse = function (id, body, options) {
1285
- return this.request("post", "/promo/voucher/" + id + "/reverse", body, options);
1285
+ return this.request("promo", "post_promo_voucher_reverse", "post", "/promo/voucher/" + id + "/reverse", body, options);
1286
1286
  };
1287
1287
  /**
1288
1288
  * POST /promo/voucherify/activity/execute - Execute a Journey custom Activity request
@@ -1291,7 +1291,7 @@ var ServiceClient = /** @class */ (function (_super) {
1291
1291
  * @param options - additional request options
1292
1292
  */
1293
1293
  ServiceClient.prototype.post_promo_voucherify_activity_execute = function (body, options) {
1294
- return this.request("post", "/promo/voucherify/activity/execute", body, options);
1294
+ return this.request("promo", "post_promo_voucherify_activity_execute", "post", "/promo/voucherify/activity/execute", body, options);
1295
1295
  };
1296
1296
  /**
1297
1297
  * GET /promo/voucherify/activity/config.json - Get SFMC Journey Custom Activity configuration
@@ -1299,7 +1299,7 @@ var ServiceClient = /** @class */ (function (_super) {
1299
1299
  * @param options - additional request options
1300
1300
  */
1301
1301
  ServiceClient.prototype.get_promo_voucherify_activity_config = function (options) {
1302
- return this.request("get", "/promo/voucherify/activity/config.json", null, options);
1302
+ return this.request("promo", "get_promo_voucherify_activity_config", "get", "/promo/voucherify/activity/config.json", null, options);
1303
1303
  };
1304
1304
  /**
1305
1305
  * POST /dh/sql
@@ -1307,7 +1307,7 @@ var ServiceClient = /** @class */ (function (_super) {
1307
1307
  * @param options - additional request options
1308
1308
  */
1309
1309
  ServiceClient.prototype.post_dh_sql = function (options) {
1310
- return this.request("post", "/dh/sql", null, options);
1310
+ return this.request("dh", "post_dh_sql", "post", "/dh/sql", null, options);
1311
1311
  };
1312
1312
  /**
1313
1313
  * GET /config/{key} - get a configuration
@@ -1316,7 +1316,7 @@ var ServiceClient = /** @class */ (function (_super) {
1316
1316
  * @param options - additional request options
1317
1317
  */
1318
1318
  ServiceClient.prototype.get_config = function (key, options) {
1319
- return this.request("get", "/config/" + key, null, options);
1319
+ return this.request("config", "get_config", "get", "/config/" + key, null, options);
1320
1320
  };
1321
1321
  /**
1322
1322
  * POST /config/{key} - Create a configuration
@@ -1326,7 +1326,7 @@ var ServiceClient = /** @class */ (function (_super) {
1326
1326
  * @param options - additional request options
1327
1327
  */
1328
1328
  ServiceClient.prototype.post_config = function (key, body, options) {
1329
- return this.request("post", "/config/" + key, body, options);
1329
+ return this.request("config", "post_config", "post", "/config/" + key, body, options);
1330
1330
  };
1331
1331
  /**
1332
1332
  * PUT /config/{key} - Update a configuration
@@ -1336,7 +1336,7 @@ var ServiceClient = /** @class */ (function (_super) {
1336
1336
  * @param options - additional request options
1337
1337
  */
1338
1338
  ServiceClient.prototype.put_config = function (key, body, options) {
1339
- return this.request("put", "/config/" + key, body, options);
1339
+ return this.request("config", "put_config", "put", "/config/" + key, body, options);
1340
1340
  };
1341
1341
  /**
1342
1342
  * DELETE /config/{key} - Delete a configuration
@@ -1345,7 +1345,7 @@ var ServiceClient = /** @class */ (function (_super) {
1345
1345
  * @param options - additional request options
1346
1346
  */
1347
1347
  ServiceClient.prototype.delete_config = function (key, options) {
1348
- return this.request("delete", "/config/" + key, null, options);
1348
+ return this.request("config", "delete_config", "delete", "/config/" + key, null, options);
1349
1349
  };
1350
1350
  /**
1351
1351
  * GET /config/public/{key} - get a public configuration
@@ -1354,7 +1354,7 @@ var ServiceClient = /** @class */ (function (_super) {
1354
1354
  * @param options - additional request options
1355
1355
  */
1356
1356
  ServiceClient.prototype.get_config_public = function (key, options) {
1357
- return this.request("get", "/config/public/" + key, null, options);
1357
+ return this.request("config", "get_config_public", "get", "/config/public/" + key, null, options);
1358
1358
  };
1359
1359
  /**
1360
1360
  * POST /config/public/{key} - Create a public configuration
@@ -1364,7 +1364,7 @@ var ServiceClient = /** @class */ (function (_super) {
1364
1364
  * @param options - additional request options
1365
1365
  */
1366
1366
  ServiceClient.prototype.post_config_public = function (key, body, options) {
1367
- return this.request("post", "/config/public/" + key, body, options);
1367
+ return this.request("config", "post_config_public", "post", "/config/public/" + key, body, options);
1368
1368
  };
1369
1369
  /**
1370
1370
  * PUT /config/public/{key} - Update a public configuration
@@ -1374,7 +1374,7 @@ var ServiceClient = /** @class */ (function (_super) {
1374
1374
  * @param options - additional request options
1375
1375
  */
1376
1376
  ServiceClient.prototype.put_config_public = function (key, body, options) {
1377
- return this.request("put", "/config/public/" + key, body, options);
1377
+ return this.request("config", "put_config_public", "put", "/config/public/" + key, body, options);
1378
1378
  };
1379
1379
  /**
1380
1380
  * DELETE /config/public/{key} - Delete a public configuration
@@ -1383,7 +1383,7 @@ var ServiceClient = /** @class */ (function (_super) {
1383
1383
  * @param options - additional request options
1384
1384
  */
1385
1385
  ServiceClient.prototype.delete_config_public = function (key, options) {
1386
- return this.request("delete", "/config/public/" + key, null, options);
1386
+ return this.request("config", "delete_config_public", "delete", "/config/public/" + key, null, options);
1387
1387
  };
1388
1388
  /**
1389
1389
  * POST /announcement - Create Announcement
@@ -1392,7 +1392,7 @@ var ServiceClient = /** @class */ (function (_super) {
1392
1392
  * @param options - additional request options
1393
1393
  */
1394
1394
  ServiceClient.prototype.post_announcement = function (body, options) {
1395
- return this.request("post", "/announcement", body, options);
1395
+ return this.request("announcement", "post_announcement", "post", "/announcement", body, options);
1396
1396
  };
1397
1397
  /**
1398
1398
  * GET /announcement/resource/{id} - Get Announcements for a specific entity
@@ -1401,7 +1401,7 @@ var ServiceClient = /** @class */ (function (_super) {
1401
1401
  * @param options - additional request options
1402
1402
  */
1403
1403
  ServiceClient.prototype.get_announcement_resource = function (id, options) {
1404
- return this.request("get", "/announcement/resource/" + id, null, options);
1404
+ return this.request("announcement", "get_announcement_resource", "get", "/announcement/resource/" + id, null, options);
1405
1405
  };
1406
1406
  /**
1407
1407
  * GET /announcement/resource - Get Announcements
@@ -1409,7 +1409,7 @@ var ServiceClient = /** @class */ (function (_super) {
1409
1409
  * @param options - additional request options
1410
1410
  */
1411
1411
  ServiceClient.prototype.get_announcement_resources = function (options) {
1412
- return this.request("get", "/announcement/resource", null, options);
1412
+ return this.request("announcement", "get_announcement_resources", "get", "/announcement/resource", null, options);
1413
1413
  };
1414
1414
  /**
1415
1415
  * GET /announcement/{id} - Get Announcement
@@ -1418,7 +1418,7 @@ var ServiceClient = /** @class */ (function (_super) {
1418
1418
  * @param options - additional request options
1419
1419
  */
1420
1420
  ServiceClient.prototype.get_announcement = function (id, options) {
1421
- return this.request("get", "/announcement/" + id, null, options);
1421
+ return this.request("announcement", "get_announcement", "get", "/announcement/" + id, null, options);
1422
1422
  };
1423
1423
  /**
1424
1424
  * PUT /announcement/{id} - Update Announcement
@@ -1428,7 +1428,7 @@ var ServiceClient = /** @class */ (function (_super) {
1428
1428
  * @param options - additional request options
1429
1429
  */
1430
1430
  ServiceClient.prototype.put_announcement = function (id, body, options) {
1431
- return this.request("put", "/announcement/" + id, body, options);
1431
+ return this.request("announcement", "put_announcement", "put", "/announcement/" + id, body, options);
1432
1432
  };
1433
1433
  /**
1434
1434
  * DELETE /announcement/{id} - Delete announcement item
@@ -1437,7 +1437,7 @@ var ServiceClient = /** @class */ (function (_super) {
1437
1437
  * @param options - additional request options
1438
1438
  */
1439
1439
  ServiceClient.prototype.delete_announcement = function (id, options) {
1440
- return this.request("delete", "/announcement/" + id, null, options);
1440
+ return this.request("announcement", "delete_announcement", "delete", "/announcement/" + id, null, options);
1441
1441
  };
1442
1442
  /**
1443
1443
  * GET /report/analytics/group/{location_group}/{report_type}
@@ -1447,7 +1447,7 @@ var ServiceClient = /** @class */ (function (_super) {
1447
1447
  * @param options - additional request options
1448
1448
  */
1449
1449
  ServiceClient.prototype.get_report_analytics_group = function (location_group, report_type, options) {
1450
- return this.request("get", "/report/analytics/group/" + location_group + "/" + report_type, null, options);
1450
+ return this.request("report", "get_report_analytics_group", "get", "/report/analytics/group/" + location_group + "/" + report_type, null, options);
1451
1451
  };
1452
1452
  /**
1453
1453
  * GET /report/analytics/combined/group/{location_group}
@@ -1456,7 +1456,7 @@ var ServiceClient = /** @class */ (function (_super) {
1456
1456
  * @param options - additional request options
1457
1457
  */
1458
1458
  ServiceClient.prototype.get_report_analytics_combined_group = function (location_group, options) {
1459
- return this.request("get", "/report/analytics/combined/group/" + location_group, null, options);
1459
+ return this.request("report", "get_report_analytics_combined_group", "get", "/report/analytics/combined/group/" + location_group, null, options);
1460
1460
  };
1461
1461
  /**
1462
1462
  * GET /report/analytics/exactmobile/totals
@@ -1464,7 +1464,7 @@ var ServiceClient = /** @class */ (function (_super) {
1464
1464
  * @param options - additional request options
1465
1465
  */
1466
1466
  ServiceClient.prototype.get_report_analytics_exactmobile_totals = function (options) {
1467
- return this.request("get", "/report/analytics/exactmobile/totals", null, options);
1467
+ return this.request("report", "get_report_analytics_exactmobile_totals", "get", "/report/analytics/exactmobile/totals", null, options);
1468
1468
  };
1469
1469
  /**
1470
1470
  * GET /report/analytics/exactmobile/transactions
@@ -1472,7 +1472,7 @@ var ServiceClient = /** @class */ (function (_super) {
1472
1472
  * @param options - additional request options
1473
1473
  */
1474
1474
  ServiceClient.prototype.get_report_analytics_exactmobile_transactions = function (options) {
1475
- return this.request("get", "/report/analytics/exactmobile/transactions", null, options);
1475
+ return this.request("report", "get_report_analytics_exactmobile_transactions", "get", "/report/analytics/exactmobile/transactions", null, options);
1476
1476
  };
1477
1477
  /**
1478
1478
  * GET /report/analytics/exactmobile/discrepancies
@@ -1480,7 +1480,7 @@ var ServiceClient = /** @class */ (function (_super) {
1480
1480
  * @param options - additional request options
1481
1481
  */
1482
1482
  ServiceClient.prototype.get_report_analytics_exactmobile_discrepancies = function (options) {
1483
- return this.request("get", "/report/analytics/exactmobile/discrepancies", null, options);
1483
+ return this.request("report", "get_report_analytics_exactmobile_discrepancies", "get", "/report/analytics/exactmobile/discrepancies", null, options);
1484
1484
  };
1485
1485
  /**
1486
1486
  * GET /report/analytics/tracker/report/{id}
@@ -1489,7 +1489,7 @@ var ServiceClient = /** @class */ (function (_super) {
1489
1489
  * @param options - additional request options
1490
1490
  */
1491
1491
  ServiceClient.prototype.get_report_analytics_tracker_report = function (id, options) {
1492
- return this.request("get", "/report/analytics/tracker/report/" + id, null, options);
1492
+ return this.request("report", "get_report_analytics_tracker_report", "get", "/report/analytics/tracker/report/" + id, null, options);
1493
1493
  };
1494
1494
  /**
1495
1495
  * GET /report/eod/group/{id} - Get reports for selected location group
@@ -1498,7 +1498,7 @@ var ServiceClient = /** @class */ (function (_super) {
1498
1498
  * @param options - additional request options
1499
1499
  */
1500
1500
  ServiceClient.prototype.get_report_eod_group = function (id, options) {
1501
- return this.request("get", "/report/eod/group/" + id, null, options);
1501
+ return this.request("report", "get_report_eod_group", "get", "/report/eod/group/" + id, null, options);
1502
1502
  };
1503
1503
  /**
1504
1504
  * GET /report/eod/group/{id}/subscribers - Get reports for selected location group
@@ -1507,7 +1507,7 @@ var ServiceClient = /** @class */ (function (_super) {
1507
1507
  * @param options - additional request options
1508
1508
  */
1509
1509
  ServiceClient.prototype.get_report_eod_group_subscribers = function (id, options) {
1510
- return this.request("get", "/report/eod/group/" + id + "/subscribers", null, options);
1510
+ return this.request("report", "get_report_eod_group_subscribers", "get", "/report/eod/group/" + id + "/subscribers", null, options);
1511
1511
  };
1512
1512
  /**
1513
1513
  * POST /report/eod/group/{id}/subscribers - Add emails to selected location group
@@ -1517,7 +1517,7 @@ var ServiceClient = /** @class */ (function (_super) {
1517
1517
  * @param options - additional request options
1518
1518
  */
1519
1519
  ServiceClient.prototype.post_report_eod_group_subscribers = function (id, body, options) {
1520
- return this.request("post", "/report/eod/group/" + id + "/subscribers", body, options);
1520
+ return this.request("report", "post_report_eod_group_subscribers", "post", "/report/eod/group/" + id + "/subscribers", body, options);
1521
1521
  };
1522
1522
  /**
1523
1523
  * DELETE /report/eod/group/{id}/subscribers - deletes subscribers from selected group
@@ -1526,7 +1526,7 @@ var ServiceClient = /** @class */ (function (_super) {
1526
1526
  * @param options - additional request options
1527
1527
  */
1528
1528
  ServiceClient.prototype.delete_report_eod_group_subscribers = function (id, options) {
1529
- return this.request("delete", "/report/eod/group/" + id + "/subscribers", null, options);
1529
+ return this.request("report", "delete_report_eod_group_subscribers", "delete", "/report/eod/group/" + id + "/subscribers", null, options);
1530
1530
  };
1531
1531
  /**
1532
1532
  * PUT /report/eod/group/{id}/subscribers - replace all subscribers from selected location group with payload
@@ -1536,7 +1536,7 @@ var ServiceClient = /** @class */ (function (_super) {
1536
1536
  * @param options - additional request options
1537
1537
  */
1538
1538
  ServiceClient.prototype.put_report_eod_group_subscribers = function (id, body, options) {
1539
- return this.request("put", "/report/eod/group/" + id + "/subscribers", body, options);
1539
+ return this.request("report", "put_report_eod_group_subscribers", "put", "/report/eod/group/" + id + "/subscribers", body, options);
1540
1540
  };
1541
1541
  /**
1542
1542
  * GET /report/discrepancy/subscribers - Get subscribers for discrepency widget
@@ -1544,7 +1544,7 @@ var ServiceClient = /** @class */ (function (_super) {
1544
1544
  * @param options - additional request options
1545
1545
  */
1546
1546
  ServiceClient.prototype.get_report_discrepancy_subscribers = function (options) {
1547
- return this.request("get", "/report/discrepancy/subscribers", null, options);
1547
+ return this.request("report", "get_report_discrepancy_subscribers", "get", "/report/discrepancy/subscribers", null, options);
1548
1548
  };
1549
1549
  /**
1550
1550
  * DELETE /report/discrepancy/subscribers - deletes subscriber from discrepency
@@ -1552,7 +1552,7 @@ var ServiceClient = /** @class */ (function (_super) {
1552
1552
  * @param options - additional request options
1553
1553
  */
1554
1554
  ServiceClient.prototype.delete_report_discrepancy_subscribers = function (options) {
1555
- return this.request("delete", "/report/discrepancy/subscribers", null, options);
1555
+ return this.request("report", "delete_report_discrepancy_subscribers", "delete", "/report/discrepancy/subscribers", null, options);
1556
1556
  };
1557
1557
  /**
1558
1558
  * POST /report/discrepancy/subscribers - Create new discrepancy subscriber
@@ -1561,7 +1561,7 @@ var ServiceClient = /** @class */ (function (_super) {
1561
1561
  * @param options - additional request options
1562
1562
  */
1563
1563
  ServiceClient.prototype.post_report_discrepancy_subscribers = function (body, options) {
1564
- return this.request("post", "/report/discrepancy/subscribers", body, options);
1564
+ return this.request("report", "post_report_discrepancy_subscribers", "post", "/report/discrepancy/subscribers", body, options);
1565
1565
  };
1566
1566
  /**
1567
1567
  * GET /user/auth - Gets the JWT token for a user
@@ -1569,7 +1569,7 @@ var ServiceClient = /** @class */ (function (_super) {
1569
1569
  * @param options - additional request options
1570
1570
  */
1571
1571
  ServiceClient.prototype.get_user_auth = function (options) {
1572
- return this.request("get", "/user/auth", null, options);
1572
+ return this.request("user", "get_user_auth", "get", "/user/auth", null, options);
1573
1573
  };
1574
1574
  /**
1575
1575
  * POST /user/auth - Use refresh token to generate a new access token and refresh token
@@ -1578,7 +1578,7 @@ var ServiceClient = /** @class */ (function (_super) {
1578
1578
  * @param options - additional request options
1579
1579
  */
1580
1580
  ServiceClient.prototype.post_user_auth = function (body, options) {
1581
- return this.request("post", "/user/auth", body, options);
1581
+ return this.request("user", "post_user_auth", "post", "/user/auth", body, options);
1582
1582
  };
1583
1583
  /**
1584
1584
  * GET /user/zendesk - Get zendesk JWT token to allow web widget to search restricted articles
@@ -1586,7 +1586,7 @@ var ServiceClient = /** @class */ (function (_super) {
1586
1586
  * @param options - additional request options
1587
1587
  */
1588
1588
  ServiceClient.prototype.get_user_zendesk = function (options) {
1589
- return this.request("get", "/user/zendesk", null, options);
1589
+ return this.request("user", "get_user_zendesk", "get", "/user/zendesk", null, options);
1590
1590
  };
1591
1591
  /**
1592
1592
  * POST /user - Create an User
@@ -1595,7 +1595,7 @@ var ServiceClient = /** @class */ (function (_super) {
1595
1595
  * @param options - additional request options
1596
1596
  */
1597
1597
  ServiceClient.prototype.post_user = function (body, options) {
1598
- return this.request("post", "/user", body, options);
1598
+ return this.request("user", "post_user", "post", "/user", body, options);
1599
1599
  };
1600
1600
  /**
1601
1601
  * GET /user/{id} - Get an individual user
@@ -1604,7 +1604,7 @@ var ServiceClient = /** @class */ (function (_super) {
1604
1604
  * @param options - additional request options
1605
1605
  */
1606
1606
  ServiceClient.prototype.get_user = function (id, options) {
1607
- return this.request("get", "/user/" + id, null, options);
1607
+ return this.request("user", "get_user", "get", "/user/" + id, null, options);
1608
1608
  };
1609
1609
  /**
1610
1610
  * PUT /user/{id} - Update an individual user
@@ -1614,7 +1614,7 @@ var ServiceClient = /** @class */ (function (_super) {
1614
1614
  * @param options - additional request options
1615
1615
  */
1616
1616
  ServiceClient.prototype.put_user = function (id, body, options) {
1617
- return this.request("put", "/user/" + id, body, options);
1617
+ return this.request("user", "put_user", "put", "/user/" + id, body, options);
1618
1618
  };
1619
1619
  /**
1620
1620
  * PATCH /user/{id} - Update an individual user
@@ -1624,7 +1624,7 @@ var ServiceClient = /** @class */ (function (_super) {
1624
1624
  * @param options - additional request options
1625
1625
  */
1626
1626
  ServiceClient.prototype.patch_user = function (id, body, options) {
1627
- return this.request("patch", "/user/" + id, body, options);
1627
+ return this.request("user", "patch_user", "patch", "/user/" + id, body, options);
1628
1628
  };
1629
1629
  /**
1630
1630
  * DELETE /user/{id} - delete an individual user
@@ -1633,7 +1633,7 @@ var ServiceClient = /** @class */ (function (_super) {
1633
1633
  * @param options - additional request options
1634
1634
  */
1635
1635
  ServiceClient.prototype.delete_user = function (id, options) {
1636
- return this.request("delete", "/user/" + id, null, options);
1636
+ return this.request("user", "delete_user", "delete", "/user/" + id, null, options);
1637
1637
  };
1638
1638
  /**
1639
1639
  * POST /user/device/auth - Endpoint for generating/retrieving KDS device token
@@ -1642,7 +1642,7 @@ var ServiceClient = /** @class */ (function (_super) {
1642
1642
  * @param options - additional request options
1643
1643
  */
1644
1644
  ServiceClient.prototype.post_user_kds_token = function (body, options) {
1645
- return this.request("post", "/user/device/auth", body, options);
1645
+ return this.request("user", "post_user_kds_token", "post", "/user/device/auth", body, options);
1646
1646
  };
1647
1647
  /**
1648
1648
  * GET /user/device/auth - Endpoint retrieving KDS device token
@@ -1650,7 +1650,7 @@ var ServiceClient = /** @class */ (function (_super) {
1650
1650
  * @param options - additional request options
1651
1651
  */
1652
1652
  ServiceClient.prototype.get_user_kds_token = function (options) {
1653
- return this.request("get", "/user/device/auth", null, options);
1653
+ return this.request("user", "get_user_kds_token", "get", "/user/device/auth", null, options);
1654
1654
  };
1655
1655
  /**
1656
1656
  * DELETE /user/device/auth/{device_id} - Endpoint for deleting a device by specified device_id
@@ -1659,7 +1659,7 @@ var ServiceClient = /** @class */ (function (_super) {
1659
1659
  * @param options - additional request options
1660
1660
  */
1661
1661
  ServiceClient.prototype.delete_user_device_auth = function (device_id, options) {
1662
- return this.request("delete", "/user/device/auth/" + device_id, null, options);
1662
+ return this.request("user", "delete_user_device_auth", "delete", "/user/device/auth/" + device_id, null, options);
1663
1663
  };
1664
1664
  /**
1665
1665
  * PATCH /user/device/auth/{device_id} - Endpoint for authorizing device to retrieve valid kds token
@@ -1668,7 +1668,7 @@ var ServiceClient = /** @class */ (function (_super) {
1668
1668
  * @param options - additional request options
1669
1669
  */
1670
1670
  ServiceClient.prototype.patch_user_auth_kds = function (device_id, options) {
1671
- return this.request("patch", "/user/device/auth/" + device_id, null, options);
1671
+ return this.request("user", "patch_user_auth_kds", "patch", "/user/device/auth/" + device_id, null, options);
1672
1672
  };
1673
1673
  /**
1674
1674
  * POST /user/{id}/changepassword - Change the users password
@@ -1678,7 +1678,7 @@ var ServiceClient = /** @class */ (function (_super) {
1678
1678
  * @param options - additional request options
1679
1679
  */
1680
1680
  ServiceClient.prototype.post_user_change_password = function (id, body, options) {
1681
- return this.request("post", "/user/" + id + "/changepassword", body, options);
1681
+ return this.request("user", "post_user_change_password", "post", "/user/" + id + "/changepassword", body, options);
1682
1682
  };
1683
1683
  /**
1684
1684
  * DELETE /user/logout - Logs out current user
@@ -1686,7 +1686,7 @@ var ServiceClient = /** @class */ (function (_super) {
1686
1686
  * @param options - additional request options
1687
1687
  */
1688
1688
  ServiceClient.prototype.delete_user_logout = function (options) {
1689
- return this.request("delete", "/user/logout", null, options);
1689
+ return this.request("user", "delete_user_logout", "delete", "/user/logout", null, options);
1690
1690
  };
1691
1691
  /**
1692
1692
  * POST /user/{id}/secret/{key} - Add a secret key
@@ -1697,7 +1697,7 @@ var ServiceClient = /** @class */ (function (_super) {
1697
1697
  * @param options - additional request options
1698
1698
  */
1699
1699
  ServiceClient.prototype.post_user_add_secret = function (id, key, body, options) {
1700
- return this.request("post", "/user/" + id + "/secret/" + key, body, options);
1700
+ return this.request("user", "post_user_add_secret", "post", "/user/" + id + "/secret/" + key, body, options);
1701
1701
  };
1702
1702
  /**
1703
1703
  * GET /user/{id}/secret/{key} - Get back a secret key
@@ -1707,7 +1707,7 @@ var ServiceClient = /** @class */ (function (_super) {
1707
1707
  * @param options - additional request options
1708
1708
  */
1709
1709
  ServiceClient.prototype.get_user_secret = function (id, key, options) {
1710
- return this.request("get", "/user/" + id + "/secret/" + key, null, options);
1710
+ return this.request("user", "get_user_secret", "get", "/user/" + id + "/secret/" + key, null, options);
1711
1711
  };
1712
1712
  /**
1713
1713
  * POST /user/forgotpassword - Reset the users password
@@ -1716,7 +1716,7 @@ var ServiceClient = /** @class */ (function (_super) {
1716
1716
  * @param options - additional request options
1717
1717
  */
1718
1718
  ServiceClient.prototype.post_user_reset_password = function (body, options) {
1719
- return this.request("post", "/user/forgotpassword", body, options);
1719
+ return this.request("user", "post_user_reset_password", "post", "/user/forgotpassword", body, options);
1720
1720
  };
1721
1721
  /**
1722
1722
  * POST /user/{id}/resetpassword - Reset the users password using a reset token
@@ -1726,7 +1726,7 @@ var ServiceClient = /** @class */ (function (_super) {
1726
1726
  * @param options - additional request options
1727
1727
  */
1728
1728
  ServiceClient.prototype.post_user_reset_password_token = function (id, body, options) {
1729
- return this.request("post", "/user/" + id + "/resetpassword", body, options);
1729
+ return this.request("user", "post_user_reset_password_token", "post", "/user/" + id + "/resetpassword", body, options);
1730
1730
  };
1731
1731
  /**
1732
1732
  * GET /user/realm/{realm} - Get all the users in a realm
@@ -1735,7 +1735,7 @@ var ServiceClient = /** @class */ (function (_super) {
1735
1735
  * @param options - additional request options
1736
1736
  */
1737
1737
  ServiceClient.prototype.get_user_realm_users = function (realm, options) {
1738
- return this.request("get", "/user/realm/" + realm, null, options);
1738
+ return this.request("user", "get_user_realm_users", "get", "/user/realm/" + realm, null, options);
1739
1739
  };
1740
1740
  /**
1741
1741
  * GET /user/{id}/permissions - Get user permissions
@@ -1744,7 +1744,7 @@ var ServiceClient = /** @class */ (function (_super) {
1744
1744
  * @param options - additional request options
1745
1745
  */
1746
1746
  ServiceClient.prototype.get_user_permissions = function (id, options) {
1747
- return this.request("get", "/user/" + id + "/permissions", null, options);
1747
+ return this.request("user", "get_user_permissions", "get", "/user/" + id + "/permissions", null, options);
1748
1748
  };
1749
1749
  /**
1750
1750
  * PUT /user/{id}/permissions - Update user permissions
@@ -1754,7 +1754,7 @@ var ServiceClient = /** @class */ (function (_super) {
1754
1754
  * @param options - additional request options
1755
1755
  */
1756
1756
  ServiceClient.prototype.put_user_permissions = function (id, body, options) {
1757
- return this.request("put", "/user/" + id + "/permissions", body, options);
1757
+ return this.request("user", "put_user_permissions", "put", "/user/" + id + "/permissions", body, options);
1758
1758
  };
1759
1759
  /**
1760
1760
  * POST /user/{id}/checkin - Create check-in for user
@@ -1764,7 +1764,7 @@ var ServiceClient = /** @class */ (function (_super) {
1764
1764
  * @param options - additional request options
1765
1765
  */
1766
1766
  ServiceClient.prototype.post_user_check_in = function (id, body, options) {
1767
- return this.request("post", "/user/" + id + "/checkin", body, options);
1767
+ return this.request("user", "post_user_check_in", "post", "/user/" + id + "/checkin", body, options);
1768
1768
  };
1769
1769
  /**
1770
1770
  * PATCH /user/{id}/checkin/{checkin_id} - Update check-in
@@ -1775,7 +1775,7 @@ var ServiceClient = /** @class */ (function (_super) {
1775
1775
  * @param options - additional request options
1776
1776
  */
1777
1777
  ServiceClient.prototype.patch_user_checkin = function (id, checkin_id, body, options) {
1778
- return this.request("patch", "/user/" + id + "/checkin/" + checkin_id, body, options);
1778
+ return this.request("user", "patch_user_checkin", "patch", "/user/" + id + "/checkin/" + checkin_id, body, options);
1779
1779
  };
1780
1780
  /**
1781
1781
  * GET /user/checkin/search - Search check-in
@@ -1783,7 +1783,7 @@ var ServiceClient = /** @class */ (function (_super) {
1783
1783
  * @param options - additional request options
1784
1784
  */
1785
1785
  ServiceClient.prototype.get_user_search_check_in = function (options) {
1786
- return this.request("get", "/user/checkin/search", null, options);
1786
+ return this.request("user", "get_user_search_check_in", "get", "/user/checkin/search", null, options);
1787
1787
  };
1788
1788
  /**
1789
1789
  * POST /user/{id}/verification - Send email verification to user
@@ -1792,7 +1792,7 @@ var ServiceClient = /** @class */ (function (_super) {
1792
1792
  * @param options - additional request options
1793
1793
  */
1794
1794
  ServiceClient.prototype.post_user_send_email_verification = function (id, options) {
1795
- return this.request("post", "/user/" + id + "/verification", null, options);
1795
+ return this.request("user", "post_user_send_email_verification", "post", "/user/" + id + "/verification", null, options);
1796
1796
  };
1797
1797
  /**
1798
1798
  * PUT /user/{id}/verification/confirm - Verify a users email
@@ -1802,7 +1802,7 @@ var ServiceClient = /** @class */ (function (_super) {
1802
1802
  * @param options - additional request options
1803
1803
  */
1804
1804
  ServiceClient.prototype.put_user_verify_user_email = function (id, body, options) {
1805
- return this.request("put", "/user/" + id + "/verification/confirm", body, options);
1805
+ return this.request("user", "put_user_verify_user_email", "put", "/user/" + id + "/verification/confirm", body, options);
1806
1806
  };
1807
1807
  /**
1808
1808
  * POST /loyalty/{id}/enroll/{user_id} - Enroll logged in user in Loyalty program
@@ -1812,7 +1812,7 @@ var ServiceClient = /** @class */ (function (_super) {
1812
1812
  * @param options - additional request options
1813
1813
  */
1814
1814
  ServiceClient.prototype.post_loyalty_enroll = function (id, user_id, options) {
1815
- return this.request("post", "/loyalty/" + id + "/enroll/" + user_id, null, options);
1815
+ return this.request("loyalty", "post_loyalty_enroll", "post", "/loyalty/" + id + "/enroll/" + user_id, null, options);
1816
1816
  };
1817
1817
  /**
1818
1818
  * GET /loyalty/{id}/points - Get potential points user could earn from certain event in Loyalty program
@@ -1821,7 +1821,7 @@ var ServiceClient = /** @class */ (function (_super) {
1821
1821
  * @param options - additional request options
1822
1822
  */
1823
1823
  ServiceClient.prototype.get_loyalty_points = function (id, options) {
1824
- return this.request("get", "/loyalty/" + id + "/points", null, options);
1824
+ return this.request("loyalty", "get_loyalty_points", "get", "/loyalty/" + id + "/points", null, options);
1825
1825
  };
1826
1826
  /**
1827
1827
  * GET /loyalty/{id}/offers/{user_id} - Get offers for the logged in user
@@ -1831,7 +1831,7 @@ var ServiceClient = /** @class */ (function (_super) {
1831
1831
  * @param options - additional request options
1832
1832
  */
1833
1833
  ServiceClient.prototype.get_loyalty_offers = function (id, user_id, options) {
1834
- return this.request("get", "/loyalty/" + id + "/offers/" + user_id, null, options);
1834
+ return this.request("loyalty", "get_loyalty_offers", "get", "/loyalty/" + id + "/offers/" + user_id, null, options);
1835
1835
  };
1836
1836
  /**
1837
1837
  * GET /loyalty/{id}/enrollmentstatus/{user_id} - Get enrollment status for logged in user
@@ -1841,7 +1841,7 @@ var ServiceClient = /** @class */ (function (_super) {
1841
1841
  * @param options - additional request options
1842
1842
  */
1843
1843
  ServiceClient.prototype.get_loyalty_enrollmentstatus = function (id, user_id, options) {
1844
- return this.request("get", "/loyalty/" + id + "/enrollmentstatus/" + user_id, null, options);
1844
+ return this.request("loyalty", "get_loyalty_enrollmentstatus", "get", "/loyalty/" + id + "/enrollmentstatus/" + user_id, null, options);
1845
1845
  };
1846
1846
  /**
1847
1847
  * GET /loyalty/{id}/balance/{user_id} - Get loyalty point balance for logged in user
@@ -1851,7 +1851,7 @@ var ServiceClient = /** @class */ (function (_super) {
1851
1851
  * @param options - additional request options
1852
1852
  */
1853
1853
  ServiceClient.prototype.get_loyalty_balance = function (id, user_id, options) {
1854
- return this.request("get", "/loyalty/" + id + "/balance/" + user_id, null, options);
1854
+ return this.request("loyalty", "get_loyalty_balance", "get", "/loyalty/" + id + "/balance/" + user_id, null, options);
1855
1855
  };
1856
1856
  /**
1857
1857
  * GET /loyalty/{id}/opportunities/{user_id} - Get earning opportunities for the logged in user
@@ -1861,7 +1861,7 @@ var ServiceClient = /** @class */ (function (_super) {
1861
1861
  * @param options - additional request options
1862
1862
  */
1863
1863
  ServiceClient.prototype.get_loyalty_opportunities = function (id, user_id, options) {
1864
- return this.request("get", "/loyalty/" + id + "/opportunities/" + user_id, null, options);
1864
+ return this.request("loyalty", "get_loyalty_opportunities", "get", "/loyalty/" + id + "/opportunities/" + user_id, null, options);
1865
1865
  };
1866
1866
  /**
1867
1867
  * POST /loyalty/{id}/opportunities/{user_id} - Record an event for the logged in user
@@ -1871,7 +1871,7 @@ var ServiceClient = /** @class */ (function (_super) {
1871
1871
  * @param options - additional request options
1872
1872
  */
1873
1873
  ServiceClient.prototype.post_loyalty_opportunities = function (id, user_id, options) {
1874
- return this.request("post", "/loyalty/" + id + "/opportunities/" + user_id, null, options);
1874
+ return this.request("loyalty", "post_loyalty_opportunities", "post", "/loyalty/" + id + "/opportunities/" + user_id, null, options);
1875
1875
  };
1876
1876
  /**
1877
1877
  * GET /loyalty/{id}/rewards/{user_id} - Get rewards available for the logged in user
@@ -1881,7 +1881,7 @@ var ServiceClient = /** @class */ (function (_super) {
1881
1881
  * @param options - additional request options
1882
1882
  */
1883
1883
  ServiceClient.prototype.get_loyalty_rewards = function (id, user_id, options) {
1884
- return this.request("get", "/loyalty/" + id + "/rewards/" + user_id, null, options);
1884
+ return this.request("loyalty", "get_loyalty_rewards", "get", "/loyalty/" + id + "/rewards/" + user_id, null, options);
1885
1885
  };
1886
1886
  /**
1887
1887
  * GET /loyalty/{id}/coupons/{user_id} - Get coupons available for the logged in user
@@ -1891,7 +1891,7 @@ var ServiceClient = /** @class */ (function (_super) {
1891
1891
  * @param options - additional request options
1892
1892
  */
1893
1893
  ServiceClient.prototype.get_loyalty_coupons = function (id, user_id, options) {
1894
- return this.request("get", "/loyalty/" + id + "/coupons/" + user_id, null, options);
1894
+ return this.request("loyalty", "get_loyalty_coupons", "get", "/loyalty/" + id + "/coupons/" + user_id, null, options);
1895
1895
  };
1896
1896
  /**
1897
1897
  * GET /loyalty/{id}/orderpoints/{user_id} - Get potential loyalty point points for an order based on amount.
@@ -1901,7 +1901,7 @@ var ServiceClient = /** @class */ (function (_super) {
1901
1901
  * @param options - additional request options
1902
1902
  */
1903
1903
  ServiceClient.prototype.get_loyalty_orderpoints = function (id, user_id, options) {
1904
- return this.request("get", "/loyalty/" + id + "/orderpoints/" + user_id, null, options);
1904
+ return this.request("loyalty", "get_loyalty_orderpoints", "get", "/loyalty/" + id + "/orderpoints/" + user_id, null, options);
1905
1905
  };
1906
1906
  /**
1907
1907
  * POST /loyalty/{id}/orderpoints/{user_id} - Get potential loyalty point points for a order based on amount and items
@@ -1912,7 +1912,7 @@ var ServiceClient = /** @class */ (function (_super) {
1912
1912
  * @param options - additional request options
1913
1913
  */
1914
1914
  ServiceClient.prototype.post_loyalty_orderpoints = function (id, user_id, body, options) {
1915
- return this.request("post", "/loyalty/" + id + "/orderpoints/" + user_id, body, options);
1915
+ return this.request("loyalty", "post_loyalty_orderpoints", "post", "/loyalty/" + id + "/orderpoints/" + user_id, body, options);
1916
1916
  };
1917
1917
  /**
1918
1918
  * POST /loyalty/{id}/purchase/{user_id} - Record purchase event
@@ -1923,7 +1923,7 @@ var ServiceClient = /** @class */ (function (_super) {
1923
1923
  * @param options - additional request options
1924
1924
  */
1925
1925
  ServiceClient.prototype.post_loyalty_purchase = function (id, user_id, body, options) {
1926
- return this.request("post", "/loyalty/" + id + "/purchase/" + user_id, body, options);
1926
+ return this.request("loyalty", "post_loyalty_purchase", "post", "/loyalty/" + id + "/purchase/" + user_id, body, options);
1927
1927
  };
1928
1928
  /**
1929
1929
  * POST /loyalty/{id}/buyreward/{user_id} - Redeem rewards to coupons
@@ -1934,7 +1934,7 @@ var ServiceClient = /** @class */ (function (_super) {
1934
1934
  * @param options - additional request options
1935
1935
  */
1936
1936
  ServiceClient.prototype.post_loyalty_buyreward = function (id, user_id, body, options) {
1937
- return this.request("post", "/loyalty/" + id + "/buyreward/" + user_id, body, options);
1937
+ return this.request("loyalty", "post_loyalty_buyreward", "post", "/loyalty/" + id + "/buyreward/" + user_id, body, options);
1938
1938
  };
1939
1939
  /**
1940
1940
  * GET /loyalty/{id}/history/{user_id} - Get history of loyalty transactions for user
@@ -1944,7 +1944,7 @@ var ServiceClient = /** @class */ (function (_super) {
1944
1944
  * @param options - additional request options
1945
1945
  */
1946
1946
  ServiceClient.prototype.get_loyalty_history = function (id, user_id, options) {
1947
- return this.request("get", "/loyalty/" + id + "/history/" + user_id, null, options);
1947
+ return this.request("loyalty", "get_loyalty_history", "get", "/loyalty/" + id + "/history/" + user_id, null, options);
1948
1948
  };
1949
1949
  /**
1950
1950
  * GET /loyalty/{id}/coupon/{user_id}/{coupon_id} - get coupon's information
@@ -1955,7 +1955,7 @@ var ServiceClient = /** @class */ (function (_super) {
1955
1955
  * @param options - additional request options
1956
1956
  */
1957
1957
  ServiceClient.prototype.get_loyalty_coupon = function (id, user_id, coupon_id, options) {
1958
- return this.request("get", "/loyalty/" + id + "/coupon/" + user_id + "/" + coupon_id, null, options);
1958
+ return this.request("loyalty", "get_loyalty_coupon", "get", "/loyalty/" + id + "/coupon/" + user_id + "/" + coupon_id, null, options);
1959
1959
  };
1960
1960
  /**
1961
1961
  * PATCH /loyalty/{id}/coupon/{user_id}/{coupon_id} - Update coupon's status
@@ -1967,7 +1967,7 @@ var ServiceClient = /** @class */ (function (_super) {
1967
1967
  * @param options - additional request options
1968
1968
  */
1969
1969
  ServiceClient.prototype.patch_loyalty_coupon = function (id, user_id, coupon_id, body, options) {
1970
- return this.request("patch", "/loyalty/" + id + "/coupon/" + user_id + "/" + coupon_id, body, options);
1970
+ return this.request("loyalty", "patch_loyalty_coupon", "patch", "/loyalty/" + id + "/coupon/" + user_id + "/" + coupon_id, body, options);
1971
1971
  };
1972
1972
  /**
1973
1973
  * GET /loyalty/{id}/search - Search CDL user id by internal 500friends id
@@ -1976,7 +1976,7 @@ var ServiceClient = /** @class */ (function (_super) {
1976
1976
  * @param options - additional request options
1977
1977
  */
1978
1978
  ServiceClient.prototype.get_loyalty_search = function (id, options) {
1979
- return this.request("get", "/loyalty/" + id + "/search", null, options);
1979
+ return this.request("loyalty", "get_loyalty_search", "get", "/loyalty/" + id + "/search", null, options);
1980
1980
  };
1981
1981
  /**
1982
1982
  * GET /loyalty/{id}/users - Get all loyalty users updated after specific date
@@ -1985,7 +1985,7 @@ var ServiceClient = /** @class */ (function (_super) {
1985
1985
  * @param options - additional request options
1986
1986
  */
1987
1987
  ServiceClient.prototype.get_loyalty_users = function (id, options) {
1988
- return this.request("get", "/loyalty/" + id + "/users", null, options);
1988
+ return this.request("loyalty", "get_loyalty_users", "get", "/loyalty/" + id + "/users", null, options);
1989
1989
  };
1990
1990
  /**
1991
1991
  * GET /loyalty/{id}/events - Get all loyalty events updated after specific date
@@ -1994,7 +1994,7 @@ var ServiceClient = /** @class */ (function (_super) {
1994
1994
  * @param options - additional request options
1995
1995
  */
1996
1996
  ServiceClient.prototype.get_loyalty_events = function (id, options) {
1997
- return this.request("get", "/loyalty/" + id + "/events", null, options);
1997
+ return this.request("loyalty", "get_loyalty_events", "get", "/loyalty/" + id + "/events", null, options);
1998
1998
  };
1999
1999
  /**
2000
2000
  * GET /brand/{id}
@@ -2003,7 +2003,7 @@ var ServiceClient = /** @class */ (function (_super) {
2003
2003
  * @param options - additional request options
2004
2004
  */
2005
2005
  ServiceClient.prototype.get_brand = function (id, options) {
2006
- return this.request("get", "/brand/" + id, null, options);
2006
+ return this.request("brand", "get_brand", "get", "/brand/" + id, null, options);
2007
2007
  };
2008
2008
  /**
2009
2009
  * GET /brand
@@ -2011,7 +2011,7 @@ var ServiceClient = /** @class */ (function (_super) {
2011
2011
  * @param options - additional request options
2012
2012
  */
2013
2013
  ServiceClient.prototype.get_brands = function (options) {
2014
- return this.request("get", "/brand", null, options);
2014
+ return this.request("brand", "get_brands", "get", "/brand", null, options);
2015
2015
  };
2016
2016
  /**
2017
2017
  * GET /calendar/{id}
@@ -2020,7 +2020,7 @@ var ServiceClient = /** @class */ (function (_super) {
2020
2020
  * @param options - additional request options
2021
2021
  */
2022
2022
  ServiceClient.prototype.get_calendar = function (id, options) {
2023
- return this.request("get", "/calendar/" + id, null, options);
2023
+ return this.request("calendar", "get_calendar", "get", "/calendar/" + id, null, options);
2024
2024
  };
2025
2025
  /**
2026
2026
  * PUT /calendar/{id} - Set the calendar for an id. Overrides previous record
@@ -2030,7 +2030,7 @@ var ServiceClient = /** @class */ (function (_super) {
2030
2030
  * @param options - additional request options
2031
2031
  */
2032
2032
  ServiceClient.prototype.put_calendar = function (id, body, options) {
2033
- return this.request("put", "/calendar/" + id, body, options);
2033
+ return this.request("calendar", "put_calendar", "put", "/calendar/" + id, body, options);
2034
2034
  };
2035
2035
  /**
2036
2036
  * GET /calendar/{id}/cdl - Get the calendar events in a CDL compatible format for next 7 days
@@ -2039,7 +2039,7 @@ var ServiceClient = /** @class */ (function (_super) {
2039
2039
  * @param options - additional request options
2040
2040
  */
2041
2041
  ServiceClient.prototype.get_calendar_cdl = function (id, options) {
2042
- return this.request("get", "/calendar/" + id + "/cdl", null, options);
2042
+ return this.request("calendar", "get_calendar_cdl", "get", "/calendar/" + id + "/cdl", null, options);
2043
2043
  };
2044
2044
  /**
2045
2045
  * GET /calendar/swagger.json
@@ -2047,7 +2047,7 @@ var ServiceClient = /** @class */ (function (_super) {
2047
2047
  * @param options - additional request options
2048
2048
  */
2049
2049
  ServiceClient.prototype.get_calendar_swagger = function (options) {
2050
- return this.request("get", "/calendar/swagger.json", null, options);
2050
+ return this.request("calendar", "get_calendar_swagger", "get", "/calendar/swagger.json", null, options);
2051
2051
  };
2052
2052
  /**
2053
2053
  * POST /calendar/{id}/sync - Trigger synchronization of calendar to location API
@@ -2056,7 +2056,7 @@ var ServiceClient = /** @class */ (function (_super) {
2056
2056
  * @param options - additional request options
2057
2057
  */
2058
2058
  ServiceClient.prototype.post_calendar_sync = function (id, options) {
2059
- return this.request("post", "/calendar/" + id + "/sync", null, options);
2059
+ return this.request("calendar", "post_calendar_sync", "post", "/calendar/" + id + "/sync", null, options);
2060
2060
  };
2061
2061
  /**
2062
2062
  * POST /delivery/order - make reservation
@@ -2065,7 +2065,7 @@ var ServiceClient = /** @class */ (function (_super) {
2065
2065
  * @param options - additional request options
2066
2066
  */
2067
2067
  ServiceClient.prototype.post_delivery_order = function (body, options) {
2068
- return this.request("post", "/delivery/order", body, options);
2068
+ return this.request("delivery", "post_delivery_order", "post", "/delivery/order", body, options);
2069
2069
  };
2070
2070
  /**
2071
2071
  * PATCH /delivery/order/{order_id} - confirm order
@@ -2074,7 +2074,7 @@ var ServiceClient = /** @class */ (function (_super) {
2074
2074
  * @param options - additional request options
2075
2075
  */
2076
2076
  ServiceClient.prototype.patch_delivery_order = function (order_id, options) {
2077
- return this.request("patch", "/delivery/order/" + order_id, null, options);
2077
+ return this.request("delivery", "patch_delivery_order", "patch", "/delivery/order/" + order_id, null, options);
2078
2078
  };
2079
2079
  /**
2080
2080
  * GET /delivery/order/{order_id} - get order
@@ -2083,7 +2083,7 @@ var ServiceClient = /** @class */ (function (_super) {
2083
2083
  * @param options - additional request options
2084
2084
  */
2085
2085
  ServiceClient.prototype.get_delivery_order = function (order_id, options) {
2086
- return this.request("get", "/delivery/order/" + order_id, null, options);
2086
+ return this.request("delivery", "get_delivery_order", "get", "/delivery/order/" + order_id, null, options);
2087
2087
  };
2088
2088
  /**
2089
2089
  * POST /schedule - Create a new schedule
@@ -2092,7 +2092,7 @@ var ServiceClient = /** @class */ (function (_super) {
2092
2092
  * @param options - additional request options
2093
2093
  */
2094
2094
  ServiceClient.prototype.post_schedule = function (body, options) {
2095
- return this.request("post", "/schedule", body, options);
2095
+ return this.request("schedule", "post_schedule", "post", "/schedule", body, options);
2096
2096
  };
2097
2097
  /**
2098
2098
  * GET /schedule - Get schedule
@@ -2100,7 +2100,7 @@ var ServiceClient = /** @class */ (function (_super) {
2100
2100
  * @param options - additional request options
2101
2101
  */
2102
2102
  ServiceClient.prototype.get_schedules = function (options) {
2103
- return this.request("get", "/schedule", null, options);
2103
+ return this.request("schedule", "get_schedules", "get", "/schedule", null, options);
2104
2104
  };
2105
2105
  /**
2106
2106
  * GET /schedule/{id} - Get an individual schedule
@@ -2109,7 +2109,7 @@ var ServiceClient = /** @class */ (function (_super) {
2109
2109
  * @param options - additional request options
2110
2110
  */
2111
2111
  ServiceClient.prototype.get_schedule = function (id, options) {
2112
- return this.request("get", "/schedule/" + id, null, options);
2112
+ return this.request("schedule", "get_schedule", "get", "/schedule/" + id, null, options);
2113
2113
  };
2114
2114
  /**
2115
2115
  * PUT /schedule/{id} - Update a schedule
@@ -2119,7 +2119,7 @@ var ServiceClient = /** @class */ (function (_super) {
2119
2119
  * @param options - additional request options
2120
2120
  */
2121
2121
  ServiceClient.prototype.put_schedule = function (id, body, options) {
2122
- return this.request("put", "/schedule/" + id, body, options);
2122
+ return this.request("schedule", "put_schedule", "put", "/schedule/" + id, body, options);
2123
2123
  };
2124
2124
  /**
2125
2125
  * DELETE /schedule/{id} - Delete schedule
@@ -2128,7 +2128,7 @@ var ServiceClient = /** @class */ (function (_super) {
2128
2128
  * @param options - additional request options
2129
2129
  */
2130
2130
  ServiceClient.prototype.delete_schedule = function (id, options) {
2131
- return this.request("delete", "/schedule/" + id, null, options);
2131
+ return this.request("schedule", "delete_schedule", "delete", "/schedule/" + id, null, options);
2132
2132
  };
2133
2133
  /**
2134
2134
  * POST /vote - Submit a vote for an item
@@ -2137,7 +2137,7 @@ var ServiceClient = /** @class */ (function (_super) {
2137
2137
  * @param options - additional request options
2138
2138
  */
2139
2139
  ServiceClient.prototype.post_vote = function (body, options) {
2140
- return this.request("post", "/vote", body, options);
2140
+ return this.request("vote", "post_vote", "post", "/vote", body, options);
2141
2141
  };
2142
2142
  /**
2143
2143
  * GET /vote/idfa/{idfa} - Get votes for an idfa
@@ -2146,7 +2146,7 @@ var ServiceClient = /** @class */ (function (_super) {
2146
2146
  * @param options - additional request options
2147
2147
  */
2148
2148
  ServiceClient.prototype.get_vote_idfa = function (idfa, options) {
2149
- return this.request("get", "/vote/idfa/" + idfa, null, options);
2149
+ return this.request("vote", "get_vote_idfa", "get", "/vote/idfa/" + idfa, null, options);
2150
2150
  };
2151
2151
  /**
2152
2152
  * POST /file - Upload a file to CDL S3
@@ -2155,7 +2155,7 @@ var ServiceClient = /** @class */ (function (_super) {
2155
2155
  * @param options - additional request options
2156
2156
  */
2157
2157
  ServiceClient.prototype.post_file = function (body, options) {
2158
- return this.request("post", "/file", body, options);
2158
+ return this.request("file", "post_file", "post", "/file", body, options);
2159
2159
  };
2160
2160
  /**
2161
2161
  * POST /message - Create a Message
@@ -2164,7 +2164,7 @@ var ServiceClient = /** @class */ (function (_super) {
2164
2164
  * @param options - additional request options
2165
2165
  */
2166
2166
  ServiceClient.prototype.post_message = function (body, options) {
2167
- return this.request("post", "/message", body, options);
2167
+ return this.request("message", "post_message", "post", "/message", body, options);
2168
2168
  };
2169
2169
  /**
2170
2170
  * GET /message/{id} - Get a Message
@@ -2173,7 +2173,7 @@ var ServiceClient = /** @class */ (function (_super) {
2173
2173
  * @param options - additional request options
2174
2174
  */
2175
2175
  ServiceClient.prototype.get_message = function (id, options) {
2176
- return this.request("get", "/message/" + id, null, options);
2176
+ return this.request("message", "get_message", "get", "/message/" + id, null, options);
2177
2177
  };
2178
2178
  /**
2179
2179
  * GET /logger/{id}/brand/status - Get status changes of all brands
@@ -2182,7 +2182,7 @@ var ServiceClient = /** @class */ (function (_super) {
2182
2182
  * @param options - additional request options
2183
2183
  */
2184
2184
  ServiceClient.prototype.get_logger_brand_status = function (id, options) {
2185
- return this.request("get", "/logger/" + id + "/brand/status", null, options);
2185
+ return this.request("logger", "get_logger_brand_status", "get", "/logger/" + id + "/brand/status", null, options);
2186
2186
  };
2187
2187
  return ServiceClient;
2188
2188
  }(base_1.BaseServiceClient));