@compassdigital/sdk.typescript 4.281.0 → 4.283.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/config.d.ts +2 -0
- package/lib/interface/config.d.ts.map +1 -1
- package/lib/interface/menu.d.ts +9 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +21 -0
- package/src/interface/config.ts +2 -0
- package/src/interface/menu.ts +15 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -3059,6 +3059,15 @@ export interface PostMenuV3DraftBrandArchiveResponse {
|
|
|
3059
3059
|
}
|
|
3060
3060
|
export interface PostMenuV3DraftBrandArchiveRequest extends BaseRequest, PostMenuV3DraftBrandArchivePath {
|
|
3061
3061
|
}
|
|
3062
|
+
export interface PostMenuV3DraftBrandUnarchivePath {
|
|
3063
|
+
id: string;
|
|
3064
|
+
}
|
|
3065
|
+
export interface PostMenuV3DraftBrandUnarchiveResponse {
|
|
3066
|
+
brand: Record<string, any>;
|
|
3067
|
+
[index: string]: any;
|
|
3068
|
+
}
|
|
3069
|
+
export interface PostMenuV3DraftBrandUnarchiveRequest extends BaseRequest, PostMenuV3DraftBrandUnarchivePath {
|
|
3070
|
+
}
|
|
3062
3071
|
export interface PostMenuV3BrandQuery {
|
|
3063
3072
|
nocache?: boolean;
|
|
3064
3073
|
}
|