@seamapi/types 1.115.0 → 1.117.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 +17 -68
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +23 -91
- package/lib/seam/connect/openapi.d.ts +16 -90
- package/lib/seam/connect/openapi.js +13 -64
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +7 -1
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +28 -22
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.js +3 -1
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +13 -64
- package/src/lib/seam/connect/route-types.ts +7 -1
- package/src/lib/seam/connect/unstable/models/devices/unmanaged-device.ts +3 -0
package/dist/connect.cjs
CHANGED
|
@@ -2003,6 +2003,8 @@ var openapi_default = {
|
|
|
2003
2003
|
},
|
|
2004
2004
|
unmanaged_device: {
|
|
2005
2005
|
properties: {
|
|
2006
|
+
can_program_online_access_codes: { type: "boolean" },
|
|
2007
|
+
can_remotely_unlock: { type: "boolean" },
|
|
2006
2008
|
capabilities_supported: {
|
|
2007
2009
|
description: 'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
|
|
2008
2010
|
items: {
|
|
@@ -11512,76 +11514,23 @@ var openapi_default = {
|
|
|
11512
11514
|
}
|
|
11513
11515
|
},
|
|
11514
11516
|
"/user_identities/list": {
|
|
11515
|
-
get: {
|
|
11516
|
-
operationId: "userIdentitiesListGet",
|
|
11517
|
-
responses: {
|
|
11518
|
-
200: {
|
|
11519
|
-
content: {
|
|
11520
|
-
"application/json": {
|
|
11521
|
-
schema: {
|
|
11522
|
-
properties: {
|
|
11523
|
-
ok: { type: "boolean" },
|
|
11524
|
-
user_identities: {
|
|
11525
|
-
items: {
|
|
11526
|
-
properties: {
|
|
11527
|
-
created_at: { format: "date-time", type: "string" },
|
|
11528
|
-
display_name: { minLength: 1, type: "string" },
|
|
11529
|
-
email_address: {
|
|
11530
|
-
format: "email",
|
|
11531
|
-
nullable: true,
|
|
11532
|
-
type: "string"
|
|
11533
|
-
},
|
|
11534
|
-
full_name: {
|
|
11535
|
-
minLength: 1,
|
|
11536
|
-
nullable: true,
|
|
11537
|
-
type: "string"
|
|
11538
|
-
},
|
|
11539
|
-
phone_number: { nullable: true, type: "string" },
|
|
11540
|
-
user_identity_id: { format: "uuid", type: "string" },
|
|
11541
|
-
user_identity_key: {
|
|
11542
|
-
minLength: 1,
|
|
11543
|
-
nullable: true,
|
|
11544
|
-
type: "string"
|
|
11545
|
-
},
|
|
11546
|
-
workspace_id: { format: "uuid", type: "string" }
|
|
11547
|
-
},
|
|
11548
|
-
required: [
|
|
11549
|
-
"user_identity_id",
|
|
11550
|
-
"user_identity_key",
|
|
11551
|
-
"email_address",
|
|
11552
|
-
"phone_number",
|
|
11553
|
-
"display_name",
|
|
11554
|
-
"full_name",
|
|
11555
|
-
"created_at",
|
|
11556
|
-
"workspace_id"
|
|
11557
|
-
],
|
|
11558
|
-
type: "object"
|
|
11559
|
-
},
|
|
11560
|
-
type: "array"
|
|
11561
|
-
}
|
|
11562
|
-
},
|
|
11563
|
-
required: ["user_identities", "ok"],
|
|
11564
|
-
type: "object"
|
|
11565
|
-
}
|
|
11566
|
-
}
|
|
11567
|
-
},
|
|
11568
|
-
description: "OK"
|
|
11569
|
-
},
|
|
11570
|
-
400: { description: "Bad Request" },
|
|
11571
|
-
401: { description: "Unauthorized" }
|
|
11572
|
-
},
|
|
11573
|
-
security: [
|
|
11574
|
-
{ api_key: [] },
|
|
11575
|
-
{ client_session: [] },
|
|
11576
|
-
{ pat_with_workspace: [] },
|
|
11577
|
-
{ console_session: [] }
|
|
11578
|
-
],
|
|
11579
|
-
summary: "/user_identities/list",
|
|
11580
|
-
tags: ["/user_identities"],
|
|
11581
|
-
"x-fern-ignore": true
|
|
11582
|
-
},
|
|
11583
11517
|
post: {
|
|
11584
11518
|
operationId: "userIdentitiesListPost",
|
|
11519
|
+
requestBody: {
|
|
11520
|
+
content: {
|
|
11521
|
+
"application/json": {
|
|
11522
|
+
schema: {
|
|
11523
|
+
properties: {
|
|
11524
|
+
credential_manager_acs_system_id: {
|
|
11525
|
+
format: "uuid",
|
|
11526
|
+
type: "string"
|
|
11527
|
+
}
|
|
11528
|
+
},
|
|
11529
|
+
type: "object"
|
|
11530
|
+
}
|
|
11531
|
+
}
|
|
11532
|
+
}
|
|
11533
|
+
},
|
|
11585
11534
|
responses: {
|
|
11586
11535
|
200: {
|
|
11587
11536
|
content: {
|