@compassdigital/sdk.typescript 4.746.0 → 4.748.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.746.0",
3
+ "version": "4.748.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
@@ -62,7 +62,7 @@
62
62
  "@swc/core": "^1.4.1",
63
63
  "@swc/jest": "^0.2.36",
64
64
  "@types/jest": "^30.0.0",
65
- "@types/node": "^25.5.2",
65
+ "@types/node": "^26.1.2",
66
66
  "esbuild": "^0.25.2",
67
67
  "jest": "^30.1.2",
68
68
  "rimraf": "^6.0.1",
@@ -4710,6 +4710,12 @@ export interface GetConsumerHomePageV3Query {
4710
4710
  appName?: string;
4711
4711
  // reorder eligible
4712
4712
  reorderEligible: boolean;
4713
+ // Client slug whose nearest sites are added to the response (needs latitude and longitude to sort)
4714
+ client?: string;
4715
+ // Latitude used to sort the client nearest sites
4716
+ latitude?: number;
4717
+ // Longitude used to sort the client nearest sites
4718
+ longitude?: number;
4713
4719
  }
4714
4720
 
4715
4721
  export type GetConsumerHomePageV3Response = HomePageResponse;
@@ -4130,6 +4130,7 @@ export interface GetMenuV3DraftBrandItemsPath {
4130
4130
  }
4131
4131
 
4132
4132
  export interface GetMenuV3DraftBrandItemsQuery {
4133
+ attached_to_menu?: boolean;
4133
4134
  // If specified, only the selected fields will be returned
4134
4135
  select?: string[];
4135
4136
  // List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
@@ -4863,6 +4864,7 @@ export interface GetMenuV3BrandItemsPath {
4863
4864
  }
4864
4865
 
4865
4866
  export interface GetMenuV3BrandItemsQuery {
4867
+ attached_to_menu?: boolean;
4866
4868
  // If specified, only the selected fields will be returned
4867
4869
  select?: string[];
4868
4870
  // List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'
@@ -8723,6 +8725,7 @@ export interface GetMenuV4BrandItemsPath {
8723
8725
 
8724
8726
  export interface GetMenuV4BrandItemsQuery {
8725
8727
  filter?: string[];
8728
+ attached_to_menu?: boolean;
8726
8729
  // If specified, only the selected fields will be returned
8727
8730
  select?: string[];
8728
8731
  // List of relationships to load alongside this entity. Can load nested relationships using the pattern 'children.grand_children.foo'