@seamapi/types 1.402.0 → 1.403.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 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +11 -4
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -2
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +5 -0
- package/lib/seam/connect/openapi.js +10 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +6 -4
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +11 -5
- package/src/lib/seam/connect/route-types.ts +6 -4
package/dist/connect.cjs
CHANGED
|
@@ -1349,6 +1349,7 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
1349
1349
|
"yale",
|
|
1350
1350
|
"nuki",
|
|
1351
1351
|
"salto",
|
|
1352
|
+
"salto_space",
|
|
1352
1353
|
"controlbyweb",
|
|
1353
1354
|
"minut",
|
|
1354
1355
|
"my_2n",
|
|
@@ -1368,7 +1369,8 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
1368
1369
|
"assa_abloy_credential_service",
|
|
1369
1370
|
"latch",
|
|
1370
1371
|
"akiles",
|
|
1371
|
-
"sensi"
|
|
1372
|
+
"sensi",
|
|
1373
|
+
"assa_abloy_vostio"
|
|
1372
1374
|
],
|
|
1373
1375
|
consumer_smartlocks: [
|
|
1374
1376
|
"akiles",
|
|
@@ -1393,8 +1395,7 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
1393
1395
|
"latch",
|
|
1394
1396
|
"salto_ks",
|
|
1395
1397
|
"assa_abloy_vostio",
|
|
1396
|
-
"salto_space"
|
|
1397
|
-
"assa_abloy_vostio"
|
|
1398
|
+
"salto_space"
|
|
1398
1399
|
],
|
|
1399
1400
|
internal_beta: ALL_DEVICE_PROVIDERS
|
|
1400
1401
|
};
|
|
@@ -26673,12 +26674,17 @@ var openapi_default = {
|
|
|
26673
26674
|
type: "string"
|
|
26674
26675
|
},
|
|
26675
26676
|
acs_user_id: {
|
|
26676
|
-
description: "ID of the access system user to whom you want to grant access to an entrance.",
|
|
26677
|
+
description: "ID of the access system user to whom you want to grant access to an entrance. You can only provide one of acs_user_id or user_identity_id.",
|
|
26678
|
+
format: "uuid",
|
|
26679
|
+
type: "string"
|
|
26680
|
+
},
|
|
26681
|
+
user_identity_id: {
|
|
26682
|
+
description: "ID of the user identity to whom you want to grant access to an entrance. You can only provide one of acs_user_id or user_identity_id. If the ACS system contains an ACS user with the same `email_address` or `phone_number` as the user identity that you specify, they are linked, and the access group membership belongs to the ACS user. If the ACS system does not have a corresponding ACS user, one is created.",
|
|
26677
26683
|
format: "uuid",
|
|
26678
26684
|
type: "string"
|
|
26679
26685
|
}
|
|
26680
26686
|
},
|
|
26681
|
-
required: ["acs_entrance_id"
|
|
26687
|
+
required: ["acs_entrance_id"],
|
|
26682
26688
|
type: "object"
|
|
26683
26689
|
}
|
|
26684
26690
|
}
|
|
@@ -34009,7 +34015,7 @@ var openapi_default = {
|
|
|
34009
34015
|
type: "array"
|
|
34010
34016
|
}
|
|
34011
34017
|
},
|
|
34012
|
-
required: ["device_id", "periods"],
|
|
34018
|
+
required: ["device_id", "name", "periods"],
|
|
34013
34019
|
type: "object"
|
|
34014
34020
|
}
|
|
34015
34021
|
}
|
|
@@ -34198,7 +34204,7 @@ var openapi_default = {
|
|
|
34198
34204
|
type: "string"
|
|
34199
34205
|
}
|
|
34200
34206
|
},
|
|
34201
|
-
required: ["thermostat_daily_program_id", "periods"],
|
|
34207
|
+
required: ["thermostat_daily_program_id", "name", "periods"],
|
|
34202
34208
|
type: "object"
|
|
34203
34209
|
}
|
|
34204
34210
|
}
|
|
@@ -34276,7 +34282,7 @@ var openapi_default = {
|
|
|
34276
34282
|
type: "string"
|
|
34277
34283
|
}
|
|
34278
34284
|
},
|
|
34279
|
-
required: ["thermostat_daily_program_id", "periods"],
|
|
34285
|
+
required: ["thermostat_daily_program_id", "name", "periods"],
|
|
34280
34286
|
type: "object"
|
|
34281
34287
|
}
|
|
34282
34288
|
}
|