@compassdigital/sdk.typescript 4.729.0 → 4.730.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/interface/menu.d.ts +14 -2
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +16 -2
package/lib/interface/menu.d.ts
CHANGED
|
@@ -2067,6 +2067,12 @@ export interface PartialItemDTO {
|
|
|
2067
2067
|
permissions?: Record<string, any>;
|
|
2068
2068
|
[index: string]: any;
|
|
2069
2069
|
}
|
|
2070
|
+
export interface BulkDeletedItemResultDTO {
|
|
2071
|
+
id: string;
|
|
2072
|
+
brand_id?: string;
|
|
2073
|
+
name?: string;
|
|
2074
|
+
[index: string]: any;
|
|
2075
|
+
}
|
|
2070
2076
|
export interface PartialModifierDTO {
|
|
2071
2077
|
parent?: DraftModifierDTO;
|
|
2072
2078
|
children?: DraftModifierDTO[];
|
|
@@ -2111,6 +2117,12 @@ export interface PartialModifierDTO {
|
|
|
2111
2117
|
permissions?: Record<string, any>;
|
|
2112
2118
|
[index: string]: any;
|
|
2113
2119
|
}
|
|
2120
|
+
export interface BulkDeletedModifierResultDTO {
|
|
2121
|
+
id: string;
|
|
2122
|
+
brand_id?: string;
|
|
2123
|
+
name?: string;
|
|
2124
|
+
[index: string]: any;
|
|
2125
|
+
}
|
|
2114
2126
|
export interface MenuSizeDTO {
|
|
2115
2127
|
format: string;
|
|
2116
2128
|
raw: number;
|
|
@@ -7693,7 +7705,7 @@ export interface DeleteMenuV4ItemsBulkDeleteBody {
|
|
|
7693
7705
|
}
|
|
7694
7706
|
export interface DeleteMenuV4ItemsBulkDeleteResponse {
|
|
7695
7707
|
meta?: Record<string, any>;
|
|
7696
|
-
results?:
|
|
7708
|
+
results?: BulkDeletedItemResultDTO[];
|
|
7697
7709
|
}
|
|
7698
7710
|
export interface DeleteMenuV4ItemsBulkDeleteRequest extends BaseRequest {
|
|
7699
7711
|
body: DeleteMenuV4ItemsBulkDeleteBody;
|
|
@@ -8135,7 +8147,7 @@ export interface DeleteMenuV4ModifiersBulkDeleteBody {
|
|
|
8135
8147
|
}
|
|
8136
8148
|
export interface DeleteMenuV4ModifiersBulkDeleteResponse {
|
|
8137
8149
|
meta?: Record<string, any>;
|
|
8138
|
-
results?:
|
|
8150
|
+
results?: BulkDeletedModifierResultDTO[];
|
|
8139
8151
|
}
|
|
8140
8152
|
export interface DeleteMenuV4ModifiersBulkDeleteRequest extends BaseRequest {
|
|
8141
8153
|
body: DeleteMenuV4ModifiersBulkDeleteBody;
|