@seamapi/types 1.265.0 → 1.267.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 +22 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +27 -0
- package/lib/seam/connect/models/acs/acs-system.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-system.js +11 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +14 -0
- package/lib/seam/connect/openapi.js +12 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +15 -0
- package/src/lib/seam/connect/route-types.ts +10 -0
package/dist/connect.cjs
CHANGED
|
@@ -1347,6 +1347,14 @@ zod.z.object({
|
|
|
1347
1347
|
salto_ks_subscription_limit_almost_reached: salto_ks_subscription_limit_almost_reached.optional().nullable()
|
|
1348
1348
|
});
|
|
1349
1349
|
var acs_system = zod.z.object({
|
|
1350
|
+
default_credential_manager_acs_system_id: zod.z.string().uuid().nullable().optional().describe(
|
|
1351
|
+
`
|
|
1352
|
+
---
|
|
1353
|
+
draft: Needs review
|
|
1354
|
+
---
|
|
1355
|
+
ID of the default credential manager acs_system for this access control system.
|
|
1356
|
+
`
|
|
1357
|
+
),
|
|
1350
1358
|
acs_system_id: zod.z.string().uuid().describe("ID of the `acs_system`."),
|
|
1351
1359
|
external_type: acs_system_external_type.describe("Brand-specific terminology for the `acs_system` type.").optional(),
|
|
1352
1360
|
external_type_display_name: zod.z.string().describe(
|
|
@@ -3034,6 +3042,13 @@ var openapi_default = {
|
|
|
3034
3042
|
format: "date-time",
|
|
3035
3043
|
type: "string"
|
|
3036
3044
|
},
|
|
3045
|
+
default_credential_manager_acs_system_id: {
|
|
3046
|
+
description: "ID of the default credential manager acs_system for this access control system.",
|
|
3047
|
+
format: "uuid",
|
|
3048
|
+
nullable: true,
|
|
3049
|
+
type: "string",
|
|
3050
|
+
"x-draft": "Needs review"
|
|
3051
|
+
},
|
|
3037
3052
|
errors: {
|
|
3038
3053
|
description: "Errors associated with the `acs_system`.",
|
|
3039
3054
|
items: {
|
|
@@ -6698,6 +6713,7 @@ var openapi_default = {
|
|
|
6698
6713
|
heating_set_point_fahrenheit: { format: "float", type: "number" },
|
|
6699
6714
|
hvac_mode_setting: { type: "string" },
|
|
6700
6715
|
is_fallback_climate_preset: { type: "boolean" },
|
|
6716
|
+
method: { type: "string" },
|
|
6701
6717
|
occurred_at: { format: "date-time", type: "string" },
|
|
6702
6718
|
thermostat_schedule_id: {
|
|
6703
6719
|
format: "uuid",
|
|
@@ -9302,10 +9318,12 @@ var openapi_default = {
|
|
|
9302
9318
|
],
|
|
9303
9319
|
summary: "/acs/credential_pools/list",
|
|
9304
9320
|
tags: ["/acs"],
|
|
9321
|
+
"x-deprecated": "Use `/user_identities/enrollment_automations/list` instead.",
|
|
9305
9322
|
"x-fern-sdk-group-name": ["acs", "credential_pools"],
|
|
9306
9323
|
"x-fern-sdk-method-name": "list",
|
|
9307
9324
|
"x-fern-sdk-return-value": "acs_credential_pools",
|
|
9308
|
-
"x-response-key": "acs_credential_pools"
|
|
9325
|
+
"x-response-key": "acs_credential_pools",
|
|
9326
|
+
"x-undocumented": "Replaced by enrollment automations."
|
|
9309
9327
|
}
|
|
9310
9328
|
},
|
|
9311
9329
|
"/acs/credential_provisioning_automations/launch": {
|
|
@@ -9365,10 +9383,12 @@ var openapi_default = {
|
|
|
9365
9383
|
],
|
|
9366
9384
|
summary: "/acs/credential_provisioning_automations/launch",
|
|
9367
9385
|
tags: ["/acs"],
|
|
9386
|
+
"x-deprecated": "Use `/user_identities/enrollment_automations/launch` instead.",
|
|
9368
9387
|
"x-fern-sdk-group-name": ["acs", "credential_provisioning_automations"],
|
|
9369
9388
|
"x-fern-sdk-method-name": "launch",
|
|
9370
9389
|
"x-fern-sdk-return-value": "acs_credential_provisioning_automation",
|
|
9371
|
-
"x-response-key": "acs_credential_provisioning_automation"
|
|
9390
|
+
"x-response-key": "acs_credential_provisioning_automation",
|
|
9391
|
+
"x-undocumented": "Replaced by enrollment automations."
|
|
9372
9392
|
}
|
|
9373
9393
|
},
|
|
9374
9394
|
"/acs/credentials/assign": {
|