@compassdigital/sdk.typescript 4.422.0 → 4.423.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@compassdigital/sdk.typescript",
3
- "version": "4.422.0",
3
+ "version": "4.423.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
package/src/index.ts CHANGED
@@ -1009,8 +1009,8 @@ import {
1009
1009
  GetMenuV4MenuResponse,
1010
1010
  PostMenuV4MenuAttachmentQuery,
1011
1011
  PostMenuV4MenuAttachmentResponse,
1012
- GetMenuV4SizeQuery,
1013
- GetMenuV4SizeResponse,
1012
+ GetMenuV4MenuSizeQuery,
1013
+ GetMenuV4MenuSizeResponse,
1014
1014
  GetMenuV4CategoryQuery,
1015
1015
  GetMenuV4CategoryResponse,
1016
1016
  PostMenuV4CategoryAttachmentQuery,
@@ -11617,22 +11617,22 @@ export class ServiceClient extends BaseServiceClient {
11617
11617
  }
11618
11618
 
11619
11619
  /**
11620
- * GET /menu/v4/{id}/size
11620
+ * GET /menu/v4/menu/{id}/size
11621
11621
  *
11622
11622
  * @param id
11623
11623
  * @param options - additional request options
11624
11624
  */
11625
- get_menu_v4_size(
11625
+ get_menu_v4_menu_size(
11626
11626
  id: string,
11627
11627
  options?: {
11628
- query?: GetMenuV4SizeQuery;
11628
+ query?: GetMenuV4MenuSizeQuery;
11629
11629
  } & RequestOptions,
11630
- ): ResponsePromise<GetMenuV4SizeResponse> {
11630
+ ): ResponsePromise<GetMenuV4MenuSizeResponse> {
11631
11631
  return this.request(
11632
11632
  'menu',
11633
- '/menu/v4/{id}/size',
11633
+ '/menu/v4/menu/{id}/size',
11634
11634
  'GET',
11635
- `/menu/v4/${id}/size`,
11635
+ `/menu/v4/menu/${id}/size`,
11636
11636
  null,
11637
11637
  options,
11638
11638
  );
@@ -10483,27 +10483,27 @@ export interface PostMenuV4MenuAttachmentRequest
10483
10483
  RequestQuery<PostMenuV4MenuAttachmentQuery>,
10484
10484
  PostMenuV4MenuAttachmentPath {}
10485
10485
 
10486
- // GET /menu/v4/{id}/size
10486
+ // GET /menu/v4/menu/{id}/size
10487
10487
 
10488
- export interface GetMenuV4SizePath {
10488
+ export interface GetMenuV4MenuSizePath {
10489
10489
  id: string;
10490
10490
  }
10491
10491
 
10492
- export interface GetMenuV4SizeQuery {
10492
+ export interface GetMenuV4MenuSizeQuery {
10493
10493
  with_parent?: boolean;
10494
10494
  }
10495
10495
 
10496
- export interface GetMenuV4SizeResponse {
10496
+ export interface GetMenuV4MenuSizeResponse {
10497
10497
  id: string;
10498
10498
  name: string;
10499
10499
  size: MenuSizeDTO;
10500
10500
  [index: string]: any;
10501
10501
  }
10502
10502
 
10503
- export interface GetMenuV4SizeRequest
10503
+ export interface GetMenuV4MenuSizeRequest
10504
10504
  extends BaseRequest,
10505
- RequestQuery<GetMenuV4SizeQuery>,
10506
- GetMenuV4SizePath {}
10505
+ RequestQuery<GetMenuV4MenuSizeQuery>,
10506
+ GetMenuV4MenuSizePath {}
10507
10507
 
10508
10508
  // GET /menu/v4/category/{id}
10509
10509