@trusted-solutions/sdit.models 0.20.0-alpha.6 → 0.20.0-alpha.7
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/lambda/override.d.ts +6 -2
- package/package.json +1 -1
package/lambda/override.d.ts
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { Override, OverrideProduct, OverrideProductAttribute } from '../models';
|
|
2
2
|
import { MultipleItems } from './response';
|
|
3
|
-
export interface
|
|
3
|
+
export interface CreateOverrideRequest {
|
|
4
4
|
item: Override;
|
|
5
5
|
}
|
|
6
|
-
export declare type
|
|
6
|
+
export declare type CreateOverrideResponse = Override;
|
|
7
|
+
export interface UpdateOverrideRequest {
|
|
8
|
+
item: Override;
|
|
9
|
+
}
|
|
10
|
+
export declare type UpdateOverrideResponse = Partial<Override>;
|
|
7
11
|
export interface ListMenuProductOverridesRequest {
|
|
8
12
|
menuId: string;
|
|
9
13
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trusted-solutions/sdit.models",
|
|
3
|
-
"version": "0.20.0-alpha.
|
|
3
|
+
"version": "0.20.0-alpha.7",
|
|
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": {
|