@compassdigital/sdk.typescript 4.250.0 → 4.252.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.250.0",
3
+ "version": "4.252.0",
4
4
  "description": "Compass Digital Labs TypeScript SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./lib/index.js",
package/src/index.ts CHANGED
@@ -1036,6 +1036,8 @@ import {
1036
1036
  DeleteMenuV4CategoryDetachItemsResponse,
1037
1037
  GetMenuV4CategoryAttachableItemsQuery,
1038
1038
  GetMenuV4CategoryAttachableItemsResponse,
1039
+ GetMenuPingQuery,
1040
+ GetMenuPingResponse,
1039
1041
  } from './interface/menu';
1040
1042
 
1041
1043
  import {
@@ -11343,6 +11345,19 @@ export class ServiceClient extends BaseServiceClient {
11343
11345
  );
11344
11346
  }
11345
11347
 
11348
+ /**
11349
+ * GET /menu/ping
11350
+ *
11351
+ * @param options - additional request options
11352
+ */
11353
+ get_menu_ping(
11354
+ options?: {
11355
+ query?: GetMenuPingQuery;
11356
+ } & RequestOptions,
11357
+ ): ResponsePromise<GetMenuPingResponse> {
11358
+ return this.request('menu', '/menu/ping', 'GET', `/menu/ping`, null, options);
11359
+ }
11360
+
11346
11361
  /**
11347
11362
  * GET /catalog/status - Get the status of the Catalog service
11348
11363
  *
@@ -281,6 +281,7 @@ export interface CentricDiscountStatus {
281
281
  publishedTo3rdParty?: boolean;
282
282
  readyToPublish?: boolean;
283
283
  active?: boolean;
284
+ syncedWith3rdParty?: boolean;
284
285
  incomplete?: boolean;
285
286
  scheduled?: boolean;
286
287
  expired?: boolean;
@@ -10499,3 +10499,20 @@ export interface GetMenuV4CategoryAttachableItemsRequest
10499
10499
  extends BaseRequest,
10500
10500
  RequestQuery<GetMenuV4CategoryAttachableItemsQuery>,
10501
10501
  GetMenuV4CategoryAttachableItemsPath {}
10502
+
10503
+ // GET /menu/ping
10504
+
10505
+ export interface GetMenuPingQuery {
10506
+ // Graphql query string
10507
+ _query?: string;
10508
+ }
10509
+
10510
+ export interface GetMenuPingResponse {
10511
+ status: string;
10512
+ message: string;
10513
+ timestamp: string;
10514
+ service: string;
10515
+ [index: string]: any;
10516
+ }
10517
+
10518
+ export interface GetMenuPingRequest extends BaseRequest, RequestQuery<GetMenuPingQuery> {}