@compassdigital/sdk.typescript 4.576.0 → 4.577.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/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 +22 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +21 -0
- package/src/interface/menu.ts +27 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -1799,6 +1799,20 @@ export interface PutUniversalItemEntity {
|
|
|
1799
1799
|
metadata?: Record<string, any>;
|
|
1800
1800
|
price?: number;
|
|
1801
1801
|
}
|
|
1802
|
+
export interface BrandStatusEntityDTO {
|
|
1803
|
+
brand_id: string;
|
|
1804
|
+
type: string;
|
|
1805
|
+
status: string;
|
|
1806
|
+
metadata?: Record<string, any>;
|
|
1807
|
+
id: string;
|
|
1808
|
+
created_at?: string;
|
|
1809
|
+
updated_at?: string;
|
|
1810
|
+
deleted_at?: string;
|
|
1811
|
+
version?: number;
|
|
1812
|
+
brand?: DraftBrandDTO;
|
|
1813
|
+
permissions?: Record<string, any>;
|
|
1814
|
+
[index: string]: any;
|
|
1815
|
+
}
|
|
1802
1816
|
export interface DraftModifierGroupEntityDTO {
|
|
1803
1817
|
parent?: DraftModifierGroupDTO;
|
|
1804
1818
|
children?: DraftModifierGroupDTO[];
|
|
@@ -6181,6 +6195,14 @@ export interface DeleteMenuV4BrandResponse {
|
|
|
6181
6195
|
}
|
|
6182
6196
|
export interface DeleteMenuV4BrandRequest extends BaseRequest, DeleteMenuV4BrandPath {
|
|
6183
6197
|
}
|
|
6198
|
+
export interface GetMenuV4BrandStatusesPath {
|
|
6199
|
+
id: string;
|
|
6200
|
+
}
|
|
6201
|
+
export interface GetMenuV4BrandStatusesResponse {
|
|
6202
|
+
results?: BrandStatusEntityDTO[];
|
|
6203
|
+
}
|
|
6204
|
+
export interface GetMenuV4BrandStatusesRequest extends BaseRequest, GetMenuV4BrandStatusesPath {
|
|
6205
|
+
}
|
|
6184
6206
|
export interface PostMenuV4BrandAttachmentPath {
|
|
6185
6207
|
name: 'thumbnail';
|
|
6186
6208
|
id: string;
|