types-magic-api 0.1.27 → 0.1.28

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.
@@ -253,6 +253,7 @@ export interface CreateCartReq {
253
253
  lines: Model.CartLineInput[];
254
254
  note: string | null;
255
255
  discountCodes: string[];
256
+ removeId: boolean | null;
256
257
  }
257
258
  export interface CreateCartRes {
258
259
  id: string;
package/package.json CHANGED
@@ -1,36 +1,36 @@
1
- {
2
- "name": "types-magic-api",
3
- "version": "0.1.27",
4
- "scripts": {
5
- "build": "rimraf dist && tsc",
6
- "prepare": "npm run build"
7
- },
8
- "description": "magic API",
9
- "exports": "./dist/server.js",
10
- "types": "./dist/index.d.ts",
11
- "keywords": [],
12
- "author": "ascent24",
13
- "license": "ISC",
14
- "jest": {
15
- "verbose": true,
16
- "transform": {
17
- "^.+\\.tsx?$": "ts-jest"
18
- },
19
- "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
20
- "moduleFileExtensions": [
21
- "ts",
22
- "tsx",
23
- "js",
24
- "jsx",
25
- "json",
26
- "node"
27
- ]
28
- },
29
- "files": [
30
- "dist/**/*.model.d.ts",
31
- "dist/**/*.entity.d.ts",
32
- "dist/**/*.model.js",
33
- "dist/**/*.model.entity.js"
34
- ],
35
- "type": "module"
1
+ {
2
+ "name": "types-magic-api",
3
+ "version": "0.1.28",
4
+ "scripts": {
5
+ "build": "rimraf dist && tsc",
6
+ "prepare": "npm run build"
7
+ },
8
+ "description": "magic API",
9
+ "exports": "./dist/server.js",
10
+ "types": "./dist/index.d.ts",
11
+ "keywords": [],
12
+ "author": "ascent24",
13
+ "license": "ISC",
14
+ "jest": {
15
+ "verbose": true,
16
+ "transform": {
17
+ "^.+\\.tsx?$": "ts-jest"
18
+ },
19
+ "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
20
+ "moduleFileExtensions": [
21
+ "ts",
22
+ "tsx",
23
+ "js",
24
+ "jsx",
25
+ "json",
26
+ "node"
27
+ ]
28
+ },
29
+ "files": [
30
+ "dist/**/*.model.d.ts",
31
+ "dist/**/*.entity.d.ts",
32
+ "dist/**/*.model.js",
33
+ "dist/**/*.model.entity.js"
34
+ ],
35
+ "type": "module"
36
36
  }