@seamapi/types 1.157.1 → 1.157.2
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/LICENSE.txt +1 -1
- package/dist/connect.cjs +4 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +17 -12
- package/lib/seam/connect/models/devices/managed-device.d.ts +8 -8
- package/lib/seam/connect/openapi.d.ts +17 -12
- package/lib/seam/connect/openapi.js +4 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -8
- package/src/lib/seam/connect/openapi.ts +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seamapi/types",
|
|
3
|
-
"version": "1.157.
|
|
3
|
+
"version": "1.157.2",
|
|
4
4
|
"description": "TypeScript types for the Seam API.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -87,14 +87,8 @@
|
|
|
87
87
|
"npm": ">= 9.0.0"
|
|
88
88
|
},
|
|
89
89
|
"peerDependencies": {
|
|
90
|
-
"type-fest": "^4.3.1",
|
|
91
90
|
"zod": "^3.21.4"
|
|
92
91
|
},
|
|
93
|
-
"peerDependenciesMeta": {
|
|
94
|
-
"type-fest": {
|
|
95
|
-
"optional": true
|
|
96
|
-
}
|
|
97
|
-
},
|
|
98
92
|
"devDependencies": {
|
|
99
93
|
"@types/node": "^20.8.10",
|
|
100
94
|
"concurrently": "^8.2.0",
|
|
@@ -111,7 +105,6 @@
|
|
|
111
105
|
"tsc-alias": "^1.8.2",
|
|
112
106
|
"tsup": "^8.0.1",
|
|
113
107
|
"tsx": "^4.6.2",
|
|
114
|
-
"type-fest": "^4.3.1",
|
|
115
108
|
"typedoc": "^0.25.2",
|
|
116
109
|
"typescript": "^5.1.0",
|
|
117
110
|
"zod": "^3.21.4"
|
|
@@ -6467,9 +6467,10 @@ export default {
|
|
|
6467
6467
|
401: { description: 'Unauthorized' },
|
|
6468
6468
|
},
|
|
6469
6469
|
security: [
|
|
6470
|
-
{
|
|
6471
|
-
{
|
|
6472
|
-
{
|
|
6470
|
+
{ client_session: [] },
|
|
6471
|
+
{ pat_with_workspace: [] },
|
|
6472
|
+
{ console_session: [] },
|
|
6473
|
+
{ api_key: [] },
|
|
6473
6474
|
],
|
|
6474
6475
|
summary: '/connect_webviews/create',
|
|
6475
6476
|
tags: ['/connect_webviews'],
|