@seamapi/types 1.157.1 → 1.158.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/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/dist/devicedb.cjs +12 -1
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +587 -22
- 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/lib/seam/devicedb/models/device-model.d.ts +110 -0
- package/lib/seam/devicedb/models/manufacturer.d.ts +33 -0
- package/lib/seam/devicedb/models/manufacturer.js +11 -0
- package/lib/seam/devicedb/models/manufacturer.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +378 -0
- package/lib/seam/devicedb/route-types.d.ts +44 -0
- package/package.json +1 -8
- package/src/lib/seam/connect/openapi.ts +4 -3
- package/src/lib/seam/devicedb/models/manufacturer.ts +11 -0
- package/src/lib/seam/devicedb/route-types.ts +44 -0
package/LICENSE.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2021-
|
|
3
|
+
Copyright (c) 2021-2024 Seam Labs, Inc.
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
6
|
this software and associated documentation files (the "Software"), to deal in
|
package/dist/connect.cjs
CHANGED
|
@@ -6444,9 +6444,10 @@ var openapi_default = {
|
|
|
6444
6444
|
401: { description: "Unauthorized" }
|
|
6445
6445
|
},
|
|
6446
6446
|
security: [
|
|
6447
|
-
{
|
|
6448
|
-
{
|
|
6449
|
-
{
|
|
6447
|
+
{ client_session: [] },
|
|
6448
|
+
{ pat_with_workspace: [] },
|
|
6449
|
+
{ console_session: [] },
|
|
6450
|
+
{ api_key: [] }
|
|
6450
6451
|
],
|
|
6451
6452
|
summary: "/connect_webviews/create",
|
|
6452
6453
|
tags: ["/connect_webviews"],
|