@seamapi/types 1.15.0 → 1.16.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/devicedb.d.ts +1 -0
- package/devicedb.js +2 -0
- package/devicedb.js.map +1 -0
- package/dist/devicedb.cjs +7725 -0
- package/dist/devicedb.cjs.map +1 -0
- package/dist/devicedb.d.cts +2 -0
- package/lib/seam/devicedb/index.d.ts +1 -0
- package/lib/seam/devicedb/index.js +2 -0
- package/lib/seam/devicedb/index.js.map +1 -0
- package/package.json +18 -6
- package/src/devicedb.ts +1 -0
- package/src/lib/seam/devicedb/index.ts +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const routes: {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/seam/devicedb/index.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,MAAM,GAAG,EAAE,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/types",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "TypeScript types for the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -15,6 +15,11 @@
|
|
|
15
15
|
"import": "./connect.js",
|
|
16
16
|
"require": "./dist/connect.cjs",
|
|
17
17
|
"types": "./connect.d.ts"
|
|
18
|
+
},
|
|
19
|
+
"./devicedb": {
|
|
20
|
+
"import": "./devicedb.js",
|
|
21
|
+
"require": "./dist/devicedb.cjs",
|
|
22
|
+
"types": "./devicedb.d.ts"
|
|
18
23
|
}
|
|
19
24
|
},
|
|
20
25
|
"module": "index.js",
|
|
@@ -37,18 +42,21 @@
|
|
|
37
42
|
"connect.js",
|
|
38
43
|
"connect.js.map",
|
|
39
44
|
"connect.d.ts",
|
|
45
|
+
"devicedb.js",
|
|
46
|
+
"devicedb.js.map",
|
|
47
|
+
"devicedb.d.ts",
|
|
40
48
|
"dist",
|
|
41
49
|
"lib",
|
|
42
50
|
"src"
|
|
43
51
|
],
|
|
44
52
|
"scripts": {
|
|
45
53
|
"build": "npm run build:entrypoints",
|
|
46
|
-
"prebuild": "concurrently --raw --group 'tsx src/index.ts' 'tsx src/connect.ts'",
|
|
47
|
-
"postbuild": "concurrently --raw --group 'node ./index.js' 'node ./connect.js'",
|
|
54
|
+
"prebuild": "concurrently --raw --group 'tsx src/index.ts' 'tsx src/connect.ts' 'tsx src/devicedb.ts'",
|
|
55
|
+
"postbuild": "concurrently --raw --group 'node ./index.js' 'node ./connect.js' 'node ./devicedb.js'",
|
|
48
56
|
"build:entrypoints": "npm run build:ts",
|
|
49
57
|
"postbuild:entrypoints": "tsup",
|
|
50
58
|
"build:ts": "tsc --project tsconfig.build.json",
|
|
51
|
-
"prebuild:ts": "del 'index.*' 'connect.*' 'lib'",
|
|
59
|
+
"prebuild:ts": "del 'index.*' 'connect.*' 'devicedb.*' 'lib'",
|
|
52
60
|
"postbuild:ts": "tsc-alias --project tsconfig.build.json",
|
|
53
61
|
"typecheck": "tsc",
|
|
54
62
|
"lint": "eslint --ignore-path .gitignore .",
|
|
@@ -63,10 +71,13 @@
|
|
|
63
71
|
"npm": ">= 8.1.0"
|
|
64
72
|
},
|
|
65
73
|
"peerDependencies": {
|
|
74
|
+
"type-fest": "^4.3.1",
|
|
66
75
|
"zod": "^3.21.4"
|
|
67
76
|
},
|
|
68
|
-
"
|
|
69
|
-
"type-fest":
|
|
77
|
+
"peerDependenciesMeta": {
|
|
78
|
+
"type-fest": {
|
|
79
|
+
"optional": true
|
|
80
|
+
}
|
|
70
81
|
},
|
|
71
82
|
"devDependencies": {
|
|
72
83
|
"@types/node": "^18.11.18",
|
|
@@ -84,6 +95,7 @@
|
|
|
84
95
|
"tsc-alias": "^1.8.2",
|
|
85
96
|
"tsup": "^7.1.0",
|
|
86
97
|
"tsx": "^3.12.1",
|
|
98
|
+
"type-fest": "^4.3.1",
|
|
87
99
|
"typescript": "^5.0.2",
|
|
88
100
|
"zod": "^3.21.4"
|
|
89
101
|
}
|
package/src/devicedb.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/seam/connect/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const routes = {}
|