@compassdigital/sdk.typescript 4.283.0 → 4.284.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 +80 -2
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +80 -2
package/package.json
CHANGED
package/src/interface/menu.ts
CHANGED
|
@@ -4035,7 +4035,46 @@ export interface PostMenuV3DraftBrandArchivePath {
|
|
|
4035
4035
|
}
|
|
4036
4036
|
|
|
4037
4037
|
export interface PostMenuV3DraftBrandArchiveResponse {
|
|
4038
|
-
|
|
4038
|
+
parent?: DraftBrandDTO;
|
|
4039
|
+
children?: DraftBrandDTO[];
|
|
4040
|
+
menus?: DraftMenuDTO[];
|
|
4041
|
+
categories?: DraftCategoryDTO[];
|
|
4042
|
+
category_to_item_relationships?: DraftCategoryToItemRelationshipDTO[];
|
|
4043
|
+
items?: DraftItemDTO[];
|
|
4044
|
+
item_to_modifier_group_relationships?: DraftItemToModifierGroupRelationshipDTO[];
|
|
4045
|
+
modifier_groups?: DraftModifierGroupDTO[];
|
|
4046
|
+
modifier_group_to_modifier_relationships?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
4047
|
+
modifiers?: DraftModifierDTO[];
|
|
4048
|
+
statuses?: BrandStatusDTO[];
|
|
4049
|
+
audit_logs?: AuditDTO[];
|
|
4050
|
+
catalog_id?: number;
|
|
4051
|
+
published_catalog_id?: number;
|
|
4052
|
+
stocks?: StockDTO[];
|
|
4053
|
+
id: string;
|
|
4054
|
+
created_at?: string;
|
|
4055
|
+
updated_at?: string;
|
|
4056
|
+
deleted_at?: string;
|
|
4057
|
+
name: string;
|
|
4058
|
+
description?: string;
|
|
4059
|
+
is_active?: boolean;
|
|
4060
|
+
type?: 'global' | 'local';
|
|
4061
|
+
parent_id?: string;
|
|
4062
|
+
local_menu_group_id?: string;
|
|
4063
|
+
global_menu_group_id?: string;
|
|
4064
|
+
posid_segment?: string;
|
|
4065
|
+
auto_push_to_local?: boolean;
|
|
4066
|
+
frictionless_partner?: string;
|
|
4067
|
+
meta?: BrandMeta;
|
|
4068
|
+
supported_languages?: SupportedLanguages;
|
|
4069
|
+
archived_at?: string;
|
|
4070
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
4071
|
+
version?: number;
|
|
4072
|
+
changes?: BrandChangeDTO[];
|
|
4073
|
+
local_menu_group?: LocalMenuGroupDTO;
|
|
4074
|
+
global_menu_group?: GlobalMenuGroupDTO;
|
|
4075
|
+
vendor_metadata?: VendorMetadataDTO[];
|
|
4076
|
+
attachments?: FileAttachmentsDTO;
|
|
4077
|
+
permissions?: Record<string, any>;
|
|
4039
4078
|
[index: string]: any;
|
|
4040
4079
|
}
|
|
4041
4080
|
|
|
@@ -4050,7 +4089,46 @@ export interface PostMenuV3DraftBrandUnarchivePath {
|
|
|
4050
4089
|
}
|
|
4051
4090
|
|
|
4052
4091
|
export interface PostMenuV3DraftBrandUnarchiveResponse {
|
|
4053
|
-
|
|
4092
|
+
parent?: DraftBrandDTO;
|
|
4093
|
+
children?: DraftBrandDTO[];
|
|
4094
|
+
menus?: DraftMenuDTO[];
|
|
4095
|
+
categories?: DraftCategoryDTO[];
|
|
4096
|
+
category_to_item_relationships?: DraftCategoryToItemRelationshipDTO[];
|
|
4097
|
+
items?: DraftItemDTO[];
|
|
4098
|
+
item_to_modifier_group_relationships?: DraftItemToModifierGroupRelationshipDTO[];
|
|
4099
|
+
modifier_groups?: DraftModifierGroupDTO[];
|
|
4100
|
+
modifier_group_to_modifier_relationships?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
4101
|
+
modifiers?: DraftModifierDTO[];
|
|
4102
|
+
statuses?: BrandStatusDTO[];
|
|
4103
|
+
audit_logs?: AuditDTO[];
|
|
4104
|
+
catalog_id?: number;
|
|
4105
|
+
published_catalog_id?: number;
|
|
4106
|
+
stocks?: StockDTO[];
|
|
4107
|
+
id: string;
|
|
4108
|
+
created_at?: string;
|
|
4109
|
+
updated_at?: string;
|
|
4110
|
+
deleted_at?: string;
|
|
4111
|
+
name: string;
|
|
4112
|
+
description?: string;
|
|
4113
|
+
is_active?: boolean;
|
|
4114
|
+
type?: 'global' | 'local';
|
|
4115
|
+
parent_id?: string;
|
|
4116
|
+
local_menu_group_id?: string;
|
|
4117
|
+
global_menu_group_id?: string;
|
|
4118
|
+
posid_segment?: string;
|
|
4119
|
+
auto_push_to_local?: boolean;
|
|
4120
|
+
frictionless_partner?: string;
|
|
4121
|
+
meta?: BrandMeta;
|
|
4122
|
+
supported_languages?: SupportedLanguages;
|
|
4123
|
+
archived_at?: string;
|
|
4124
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
4125
|
+
version?: number;
|
|
4126
|
+
changes?: BrandChangeDTO[];
|
|
4127
|
+
local_menu_group?: LocalMenuGroupDTO;
|
|
4128
|
+
global_menu_group?: GlobalMenuGroupDTO;
|
|
4129
|
+
vendor_metadata?: VendorMetadataDTO[];
|
|
4130
|
+
attachments?: FileAttachmentsDTO;
|
|
4131
|
+
permissions?: Record<string, any>;
|
|
4054
4132
|
[index: string]: any;
|
|
4055
4133
|
}
|
|
4056
4134
|
|