@seamapi/types 1.143.0 → 1.145.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 +13 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +59 -24
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +1 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/managed-device.d.ts +9 -0
- package/lib/seam/connect/openapi.d.ts +41 -24
- package/lib/seam/connect/openapi.js +13 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +18 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +13 -6
- package/src/lib/seam/connect/route-types.ts +18 -0
package/dist/connect.cjs
CHANGED
|
@@ -1206,6 +1206,7 @@ var openapi_default = {
|
|
|
1206
1206
|
device_id: { type: "number" },
|
|
1207
1207
|
device_model: { type: "string" },
|
|
1208
1208
|
device_name: { type: "string" },
|
|
1209
|
+
keypad_id: { type: "number" },
|
|
1209
1210
|
serial_number: { type: "string" }
|
|
1210
1211
|
},
|
|
1211
1212
|
required: [
|
|
@@ -4244,6 +4245,10 @@ var openapi_default = {
|
|
|
4244
4245
|
},
|
|
4245
4246
|
acs_user_id: { format: "uuid", type: "string" },
|
|
4246
4247
|
code: { pattern: "^\\d+$", type: "string" },
|
|
4248
|
+
credential_manager_acs_system_id: {
|
|
4249
|
+
format: "uuid",
|
|
4250
|
+
type: "string"
|
|
4251
|
+
},
|
|
4247
4252
|
ends_at: { format: "date-time", type: "string" },
|
|
4248
4253
|
is_multi_phone_sync_credential: {
|
|
4249
4254
|
default: false,
|
|
@@ -7961,9 +7966,10 @@ var openapi_default = {
|
|
|
7961
7966
|
401: { description: "Unauthorized" }
|
|
7962
7967
|
},
|
|
7963
7968
|
security: [
|
|
7964
|
-
{
|
|
7965
|
-
{
|
|
7966
|
-
{
|
|
7969
|
+
{ client_session: [] },
|
|
7970
|
+
{ pat_with_workspace: [] },
|
|
7971
|
+
{ console_session: [] },
|
|
7972
|
+
{ api_key: [] }
|
|
7967
7973
|
],
|
|
7968
7974
|
summary: "/devices/list",
|
|
7969
7975
|
tags: ["/devices"],
|
|
@@ -8019,9 +8025,10 @@ var openapi_default = {
|
|
|
8019
8025
|
401: { description: "Unauthorized" }
|
|
8020
8026
|
},
|
|
8021
8027
|
security: [
|
|
8022
|
-
{
|
|
8023
|
-
{
|
|
8024
|
-
{
|
|
8028
|
+
{ client_session: [] },
|
|
8029
|
+
{ pat_with_workspace: [] },
|
|
8030
|
+
{ console_session: [] },
|
|
8031
|
+
{ api_key: [] }
|
|
8025
8032
|
],
|
|
8026
8033
|
summary: "/devices/list_device_providers",
|
|
8027
8034
|
tags: ["/devices"],
|