@seamapi/types 1.305.0 → 1.306.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/dist/connect.cjs +14 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +43 -4
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +40 -2
- package/lib/seam/connect/openapi.js +9 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +9 -1
- package/src/lib/seam/connect/route-types.ts +2 -0
package/dist/connect.cjs
CHANGED
|
@@ -959,7 +959,8 @@ var DEVICE_PROVIDERS = {
|
|
|
959
959
|
LATCH: "latch",
|
|
960
960
|
AKILES: "akiles",
|
|
961
961
|
VOSTIO: "assa_abloy_vostio",
|
|
962
|
-
ASSA_ABLOY_VOSTIO_CREDENTIAL_SERVICE: "assa_abloy_vostio_credential_service"
|
|
962
|
+
ASSA_ABLOY_VOSTIO_CREDENTIAL_SERVICE: "assa_abloy_vostio_credential_service",
|
|
963
|
+
TADO: "tado"
|
|
963
964
|
};
|
|
964
965
|
var ALL_DEVICE_PROVIDERS = Object.values(DEVICE_PROVIDERS);
|
|
965
966
|
var PROVIDER_CATEGORY_MAP = {
|
|
@@ -8347,7 +8348,8 @@ var openapi_default = {
|
|
|
8347
8348
|
"latch",
|
|
8348
8349
|
"akiles",
|
|
8349
8350
|
"assa_abloy_vostio",
|
|
8350
|
-
"assa_abloy_vostio_credential_service"
|
|
8351
|
+
"assa_abloy_vostio_credential_service",
|
|
8352
|
+
"tado"
|
|
8351
8353
|
],
|
|
8352
8354
|
type: "string"
|
|
8353
8355
|
},
|
|
@@ -15671,6 +15673,7 @@ var openapi_default = {
|
|
|
15671
15673
|
"akiles",
|
|
15672
15674
|
"assa_abloy_vostio",
|
|
15673
15675
|
"assa_abloy_vostio_credential_service",
|
|
15676
|
+
"tado",
|
|
15674
15677
|
"yale_access",
|
|
15675
15678
|
"hid_cm",
|
|
15676
15679
|
"google_nest"
|
|
@@ -22264,7 +22267,11 @@ var openapi_default = {
|
|
|
22264
22267
|
400: { description: "Bad Request" },
|
|
22265
22268
|
401: { description: "Unauthorized" }
|
|
22266
22269
|
},
|
|
22267
|
-
security: [
|
|
22270
|
+
security: [
|
|
22271
|
+
{ pat_without_workspace: [] },
|
|
22272
|
+
{ console_session: [] },
|
|
22273
|
+
{ user_session_without_workspace: [] }
|
|
22274
|
+
],
|
|
22268
22275
|
summary: "/workspaces/create",
|
|
22269
22276
|
tags: ["/workspaces"],
|
|
22270
22277
|
"x-fern-sdk-group-name": ["workspaces"],
|
|
@@ -22372,7 +22379,8 @@ var openapi_default = {
|
|
|
22372
22379
|
{ user_session: [] },
|
|
22373
22380
|
{ user_session_without_workspace: [] },
|
|
22374
22381
|
{ api_key: [] },
|
|
22375
|
-
{ client_session: [] }
|
|
22382
|
+
{ client_session: [] },
|
|
22383
|
+
{ console_session: [] }
|
|
22376
22384
|
],
|
|
22377
22385
|
summary: "/workspaces/list",
|
|
22378
22386
|
tags: ["/workspaces"],
|
|
@@ -22409,7 +22417,8 @@ var openapi_default = {
|
|
|
22409
22417
|
{ user_session: [] },
|
|
22410
22418
|
{ user_session_without_workspace: [] },
|
|
22411
22419
|
{ api_key: [] },
|
|
22412
|
-
{ client_session: [] }
|
|
22420
|
+
{ client_session: [] },
|
|
22421
|
+
{ console_session: [] }
|
|
22413
22422
|
],
|
|
22414
22423
|
summary: "/workspaces/list",
|
|
22415
22424
|
tags: ["/workspaces"],
|