@compassdigital/sdk.typescript 4.686.0 → 4.688.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/lib/base.d.ts +12 -2
- package/lib/base.d.ts.map +1 -1
- package/lib/base.js +18 -7
- package/lib/base.js.map +1 -1
- package/lib/index.d.ts +8 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +9 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/menu.d.ts +16 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/interface/order.d.ts +1 -0
- package/lib/interface/order.d.ts.map +1 -1
- package/package.json +2 -2
- package/pipeline.yml +0 -1
- package/src/base.ts +35 -9
- package/src/index.ts +22 -1
- package/src/interface/menu.ts +20 -0
- package/src/interface/order.ts +2 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -6293,6 +6293,22 @@ export interface GetMenuV4BrandStatusesResponse {
|
|
|
6293
6293
|
}
|
|
6294
6294
|
export interface GetMenuV4BrandStatusesRequest extends BaseRequest, GetMenuV4BrandStatusesPath {
|
|
6295
6295
|
}
|
|
6296
|
+
export interface GetMenuV4BrandParentPath {
|
|
6297
|
+
id: string;
|
|
6298
|
+
}
|
|
6299
|
+
export interface GetMenuV4BrandParentResponse {
|
|
6300
|
+
id: string;
|
|
6301
|
+
name: string;
|
|
6302
|
+
parent_id?: string;
|
|
6303
|
+
global_menu_group_id?: string;
|
|
6304
|
+
frictionless_partner?: string;
|
|
6305
|
+
meta?: BrandMeta;
|
|
6306
|
+
archived_at?: string;
|
|
6307
|
+
attachments?: FileAttachmentsDTO;
|
|
6308
|
+
[index: string]: any;
|
|
6309
|
+
}
|
|
6310
|
+
export interface GetMenuV4BrandParentRequest extends BaseRequest, GetMenuV4BrandParentPath {
|
|
6311
|
+
}
|
|
6296
6312
|
export interface PostMenuV4BrandAttachmentPath {
|
|
6297
6313
|
name: 'thumbnail';
|
|
6298
6314
|
id: string;
|