@seamapi/types 1.402.0 → 1.404.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 +25 -10
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +27 -7
- 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 +15 -1
- package/lib/seam/connect/openapi.js +21 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -6
- package/package.json +2 -2
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +24 -7
- package/src/lib/seam/connect/route-types.ts +12 -6
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
|
}
|
|
@@ -27430,13 +27436,22 @@ var openapi_default = {
|
|
|
27430
27436
|
"application/json": {
|
|
27431
27437
|
schema: {
|
|
27432
27438
|
properties: {
|
|
27439
|
+
acs_system_id: {
|
|
27440
|
+
description: "ID of the access system for which you want to list accessible entrances. You can only provide acs_system_id with user_identity_id.",
|
|
27441
|
+
format: "uuid",
|
|
27442
|
+
type: "string"
|
|
27443
|
+
},
|
|
27433
27444
|
acs_user_id: {
|
|
27434
|
-
description: "ID of the access system user for whom you want to list accessible entrances.",
|
|
27445
|
+
description: "ID of the access system user for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id.",
|
|
27446
|
+
format: "uuid",
|
|
27447
|
+
type: "string"
|
|
27448
|
+
},
|
|
27449
|
+
user_identity_id: {
|
|
27450
|
+
description: "ID of the user identity for whom you want to list accessible entrances. You can only provide acs_user_id or user_identity_id.",
|
|
27435
27451
|
format: "uuid",
|
|
27436
27452
|
type: "string"
|
|
27437
27453
|
}
|
|
27438
27454
|
},
|
|
27439
|
-
required: ["acs_user_id"],
|
|
27440
27455
|
type: "object"
|
|
27441
27456
|
}
|
|
27442
27457
|
}
|
|
@@ -34009,7 +34024,7 @@ var openapi_default = {
|
|
|
34009
34024
|
type: "array"
|
|
34010
34025
|
}
|
|
34011
34026
|
},
|
|
34012
|
-
required: ["device_id", "periods"],
|
|
34027
|
+
required: ["device_id", "name", "periods"],
|
|
34013
34028
|
type: "object"
|
|
34014
34029
|
}
|
|
34015
34030
|
}
|
|
@@ -34198,7 +34213,7 @@ var openapi_default = {
|
|
|
34198
34213
|
type: "string"
|
|
34199
34214
|
}
|
|
34200
34215
|
},
|
|
34201
|
-
required: ["thermostat_daily_program_id", "periods"],
|
|
34216
|
+
required: ["thermostat_daily_program_id", "name", "periods"],
|
|
34202
34217
|
type: "object"
|
|
34203
34218
|
}
|
|
34204
34219
|
}
|
|
@@ -34276,7 +34291,7 @@ var openapi_default = {
|
|
|
34276
34291
|
type: "string"
|
|
34277
34292
|
}
|
|
34278
34293
|
},
|
|
34279
|
-
required: ["thermostat_daily_program_id", "periods"],
|
|
34294
|
+
required: ["thermostat_daily_program_id", "name", "periods"],
|
|
34280
34295
|
type: "object"
|
|
34281
34296
|
}
|
|
34282
34297
|
}
|