@compassdigital/sdk.typescript 4.468.0 → 4.470.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.468.0",
3
+ "version": "4.470.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
package/src/index.ts CHANGED
@@ -938,9 +938,9 @@ import {
938
938
  PostMenuV4BrandMenuDuplicateResponse,
939
939
  GetMenuV4BrandExportQuery,
940
940
  GetMenuV4BrandExportResponse,
941
- PostMenuV4BrandsFetchQuery,
941
+ PostMenuV4BrandsFetchBody,
942
942
  PostMenuV4BrandsFetchResponse,
943
- PostMenuV4BrandItemsSearchQuery,
943
+ PostMenuV4BrandItemsSearchBody,
944
944
  PostMenuV4BrandItemsSearchResponse,
945
945
  PostMenuV4ItemAttachmentQuery,
946
946
  PostMenuV4ItemAttachmentResponse,
@@ -1028,9 +1028,9 @@ import {
1028
1028
  DeleteMenuV4CategoryDetachItemsResponse,
1029
1029
  GetMenuV4CategoryAttachableItemsQuery,
1030
1030
  GetMenuV4CategoryAttachableItemsResponse,
1031
- PostMenuV4StationsMenusFetchQuery,
1031
+ PostMenuV4StationsMenusFetchBody,
1032
1032
  PostMenuV4StationsMenusFetchResponse,
1033
- PostMenuV4StationItemsSearchQuery,
1033
+ PostMenuV4StationItemsSearchBody,
1034
1034
  PostMenuV4StationItemsSearchResponse,
1035
1035
  GetMenuV3PingResponse,
1036
1036
  GetMenuV3HealthResponse,
@@ -10876,19 +10876,19 @@ export class ServiceClient extends BaseServiceClient {
10876
10876
  /**
10877
10877
  * POST /menu/v4/brands/fetch
10878
10878
  *
10879
+ * @param body
10879
10880
  * @param options - additional request options
10880
10881
  */
10881
10882
  post_menu_v4_brands_fetch(
10882
- options?: {
10883
- query?: PostMenuV4BrandsFetchQuery;
10884
- } & RequestOptions,
10883
+ body: PostMenuV4BrandsFetchBody,
10884
+ options?: RequestOptions,
10885
10885
  ): ResponsePromise<PostMenuV4BrandsFetchResponse> {
10886
10886
  return this.request(
10887
10887
  'menu',
10888
10888
  '/menu/v4/brands/fetch',
10889
10889
  'POST',
10890
10890
  `/menu/v4/brands/fetch`,
10891
- null,
10891
+ body,
10892
10892
  options,
10893
10893
  );
10894
10894
  }
@@ -10896,19 +10896,19 @@ export class ServiceClient extends BaseServiceClient {
10896
10896
  /**
10897
10897
  * POST /menu/v4/brand/items/search
10898
10898
  *
10899
+ * @param body
10899
10900
  * @param options - additional request options
10900
10901
  */
10901
10902
  post_menu_v4_brand_items_search(
10902
- options?: {
10903
- query?: PostMenuV4BrandItemsSearchQuery;
10904
- } & RequestOptions,
10903
+ body: PostMenuV4BrandItemsSearchBody,
10904
+ options?: RequestOptions,
10905
10905
  ): ResponsePromise<PostMenuV4BrandItemsSearchResponse> {
10906
10906
  return this.request(
10907
10907
  'menu',
10908
10908
  '/menu/v4/brand/items/search',
10909
10909
  'POST',
10910
10910
  `/menu/v4/brand/items/search`,
10911
- null,
10911
+ body,
10912
10912
  options,
10913
10913
  );
10914
10914
  }
@@ -11851,19 +11851,19 @@ export class ServiceClient extends BaseServiceClient {
11851
11851
  /**
11852
11852
  * POST /menu/v4/stations/menus/fetch
11853
11853
  *
11854
+ * @param body
11854
11855
  * @param options - additional request options
11855
11856
  */
11856
11857
  post_menu_v4_stations_menus_fetch(
11857
- options?: {
11858
- query?: PostMenuV4StationsMenusFetchQuery;
11859
- } & RequestOptions,
11858
+ body: PostMenuV4StationsMenusFetchBody,
11859
+ options?: RequestOptions,
11860
11860
  ): ResponsePromise<PostMenuV4StationsMenusFetchResponse> {
11861
11861
  return this.request(
11862
11862
  'menu',
11863
11863
  '/menu/v4/stations/menus/fetch',
11864
11864
  'POST',
11865
11865
  `/menu/v4/stations/menus/fetch`,
11866
- null,
11866
+ body,
11867
11867
  options,
11868
11868
  );
11869
11869
  }
@@ -11871,19 +11871,19 @@ export class ServiceClient extends BaseServiceClient {
11871
11871
  /**
11872
11872
  * POST /menu/v4/station/items/search
11873
11873
  *
11874
+ * @param body
11874
11875
  * @param options - additional request options
11875
11876
  */
11876
11877
  post_menu_v4_station_items_search(
11877
- options?: {
11878
- query?: PostMenuV4StationItemsSearchQuery;
11879
- } & RequestOptions,
11878
+ body: PostMenuV4StationItemsSearchBody,
11879
+ options?: RequestOptions,
11880
11880
  ): ResponsePromise<PostMenuV4StationItemsSearchResponse> {
11881
11881
  return this.request(
11882
11882
  'menu',
11883
11883
  '/menu/v4/station/items/search',
11884
11884
  'POST',
11885
11885
  `/menu/v4/station/items/search`,
11886
- null,
11886
+ body,
11887
11887
  options,
11888
11888
  );
11889
11889
  }