@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/lib/interface/menu.d.ts
CHANGED
|
@@ -3054,7 +3054,46 @@ export interface PostMenuV3DraftBrandArchivePath {
|
|
|
3054
3054
|
id: string;
|
|
3055
3055
|
}
|
|
3056
3056
|
export interface PostMenuV3DraftBrandArchiveResponse {
|
|
3057
|
-
|
|
3057
|
+
parent?: DraftBrandDTO;
|
|
3058
|
+
children?: DraftBrandDTO[];
|
|
3059
|
+
menus?: DraftMenuDTO[];
|
|
3060
|
+
categories?: DraftCategoryDTO[];
|
|
3061
|
+
category_to_item_relationships?: DraftCategoryToItemRelationshipDTO[];
|
|
3062
|
+
items?: DraftItemDTO[];
|
|
3063
|
+
item_to_modifier_group_relationships?: DraftItemToModifierGroupRelationshipDTO[];
|
|
3064
|
+
modifier_groups?: DraftModifierGroupDTO[];
|
|
3065
|
+
modifier_group_to_modifier_relationships?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
3066
|
+
modifiers?: DraftModifierDTO[];
|
|
3067
|
+
statuses?: BrandStatusDTO[];
|
|
3068
|
+
audit_logs?: AuditDTO[];
|
|
3069
|
+
catalog_id?: number;
|
|
3070
|
+
published_catalog_id?: number;
|
|
3071
|
+
stocks?: StockDTO[];
|
|
3072
|
+
id: string;
|
|
3073
|
+
created_at?: string;
|
|
3074
|
+
updated_at?: string;
|
|
3075
|
+
deleted_at?: string;
|
|
3076
|
+
name: string;
|
|
3077
|
+
description?: string;
|
|
3078
|
+
is_active?: boolean;
|
|
3079
|
+
type?: 'global' | 'local';
|
|
3080
|
+
parent_id?: string;
|
|
3081
|
+
local_menu_group_id?: string;
|
|
3082
|
+
global_menu_group_id?: string;
|
|
3083
|
+
posid_segment?: string;
|
|
3084
|
+
auto_push_to_local?: boolean;
|
|
3085
|
+
frictionless_partner?: string;
|
|
3086
|
+
meta?: BrandMeta;
|
|
3087
|
+
supported_languages?: SupportedLanguages;
|
|
3088
|
+
archived_at?: string;
|
|
3089
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3090
|
+
version?: number;
|
|
3091
|
+
changes?: BrandChangeDTO[];
|
|
3092
|
+
local_menu_group?: LocalMenuGroupDTO;
|
|
3093
|
+
global_menu_group?: GlobalMenuGroupDTO;
|
|
3094
|
+
vendor_metadata?: VendorMetadataDTO[];
|
|
3095
|
+
attachments?: FileAttachmentsDTO;
|
|
3096
|
+
permissions?: Record<string, any>;
|
|
3058
3097
|
[index: string]: any;
|
|
3059
3098
|
}
|
|
3060
3099
|
export interface PostMenuV3DraftBrandArchiveRequest extends BaseRequest, PostMenuV3DraftBrandArchivePath {
|
|
@@ -3063,7 +3102,46 @@ export interface PostMenuV3DraftBrandUnarchivePath {
|
|
|
3063
3102
|
id: string;
|
|
3064
3103
|
}
|
|
3065
3104
|
export interface PostMenuV3DraftBrandUnarchiveResponse {
|
|
3066
|
-
|
|
3105
|
+
parent?: DraftBrandDTO;
|
|
3106
|
+
children?: DraftBrandDTO[];
|
|
3107
|
+
menus?: DraftMenuDTO[];
|
|
3108
|
+
categories?: DraftCategoryDTO[];
|
|
3109
|
+
category_to_item_relationships?: DraftCategoryToItemRelationshipDTO[];
|
|
3110
|
+
items?: DraftItemDTO[];
|
|
3111
|
+
item_to_modifier_group_relationships?: DraftItemToModifierGroupRelationshipDTO[];
|
|
3112
|
+
modifier_groups?: DraftModifierGroupDTO[];
|
|
3113
|
+
modifier_group_to_modifier_relationships?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
3114
|
+
modifiers?: DraftModifierDTO[];
|
|
3115
|
+
statuses?: BrandStatusDTO[];
|
|
3116
|
+
audit_logs?: AuditDTO[];
|
|
3117
|
+
catalog_id?: number;
|
|
3118
|
+
published_catalog_id?: number;
|
|
3119
|
+
stocks?: StockDTO[];
|
|
3120
|
+
id: string;
|
|
3121
|
+
created_at?: string;
|
|
3122
|
+
updated_at?: string;
|
|
3123
|
+
deleted_at?: string;
|
|
3124
|
+
name: string;
|
|
3125
|
+
description?: string;
|
|
3126
|
+
is_active?: boolean;
|
|
3127
|
+
type?: 'global' | 'local';
|
|
3128
|
+
parent_id?: string;
|
|
3129
|
+
local_menu_group_id?: string;
|
|
3130
|
+
global_menu_group_id?: string;
|
|
3131
|
+
posid_segment?: string;
|
|
3132
|
+
auto_push_to_local?: boolean;
|
|
3133
|
+
frictionless_partner?: string;
|
|
3134
|
+
meta?: BrandMeta;
|
|
3135
|
+
supported_languages?: SupportedLanguages;
|
|
3136
|
+
archived_at?: string;
|
|
3137
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3138
|
+
version?: number;
|
|
3139
|
+
changes?: BrandChangeDTO[];
|
|
3140
|
+
local_menu_group?: LocalMenuGroupDTO;
|
|
3141
|
+
global_menu_group?: GlobalMenuGroupDTO;
|
|
3142
|
+
vendor_metadata?: VendorMetadataDTO[];
|
|
3143
|
+
attachments?: FileAttachmentsDTO;
|
|
3144
|
+
permissions?: Record<string, any>;
|
|
3067
3145
|
[index: string]: any;
|
|
3068
3146
|
}
|
|
3069
3147
|
export interface PostMenuV3DraftBrandUnarchiveRequest extends BaseRequest, PostMenuV3DraftBrandUnarchivePath {
|