@trusted-solutions/sdit.models 0.20.0-alpha.4 → 0.20.0-alpha.5

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.
@@ -1,5 +1,13 @@
1
- import { Override } from '../models';
1
+ import { Override, OverrideEntityType } from '../models';
2
+ import { MultipleItems } from './response';
2
3
  export interface PutOverrideRequest {
3
4
  item: Override;
4
5
  }
5
6
  export declare type PutOverrideResponse = {};
7
+ export interface ListMenuOverridesRequest {
8
+ menuId: string;
9
+ /** 不給就全部Type的都拿 */
10
+ entityTypes?: OverrideEntityType[];
11
+ }
12
+ export interface ListMenuOverridesResponse extends MultipleItems<Override> {
13
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trusted-solutions/sdit.models",
3
- "version": "0.20.0-alpha.4",
3
+ "version": "0.20.0-alpha.5",
4
4
  "description": "TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.",
5
5
  "main": "index.js",
6
6
  "scripts": {