@seamapi/types 1.717.0 → 1.719.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 +19 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +36 -6
- package/dist/index.cjs +19 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +4 -3
- package/lib/seam/connect/models/devices/device-provider.js +2 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +28 -0
- package/lib/seam/connect/openapi.js +18 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +20 -0
- package/src/lib/seam/connect/route-types.ts +5 -0
package/dist/connect.cjs
CHANGED
|
@@ -1946,6 +1946,7 @@ var PROVIDER_CATEGORY_MAP = {
|
|
|
1946
1946
|
"lockly",
|
|
1947
1947
|
"tedee"
|
|
1948
1948
|
],
|
|
1949
|
+
beta: ["korelock"],
|
|
1949
1950
|
thermostats: ["ecobee", "nest", "sensi", "honeywell_resideo"],
|
|
1950
1951
|
noise_sensors: ["minut", "noiseaware"],
|
|
1951
1952
|
access_control_systems: [
|
|
@@ -18141,6 +18142,7 @@ var openapi_default = {
|
|
|
18141
18142
|
enum: [
|
|
18142
18143
|
"stable",
|
|
18143
18144
|
"consumer_smartlocks",
|
|
18145
|
+
"beta",
|
|
18144
18146
|
"thermostats",
|
|
18145
18147
|
"noise_sensors",
|
|
18146
18148
|
"access_control_systems"
|
|
@@ -43337,6 +43339,7 @@ var openapi_default = {
|
|
|
43337
43339
|
enum: [
|
|
43338
43340
|
"stable",
|
|
43339
43341
|
"consumer_smartlocks",
|
|
43342
|
+
"beta",
|
|
43340
43343
|
"thermostats",
|
|
43341
43344
|
"noise_sensors",
|
|
43342
43345
|
"access_control_systems",
|
|
@@ -47593,6 +47596,7 @@ var openapi_default = {
|
|
|
47593
47596
|
enum: [
|
|
47594
47597
|
"stable",
|
|
47595
47598
|
"consumer_smartlocks",
|
|
47599
|
+
"beta",
|
|
47596
47600
|
"thermostats",
|
|
47597
47601
|
"noise_sensors",
|
|
47598
47602
|
"access_control_systems"
|
|
@@ -47650,6 +47654,7 @@ var openapi_default = {
|
|
|
47650
47654
|
enum: [
|
|
47651
47655
|
"stable",
|
|
47652
47656
|
"consumer_smartlocks",
|
|
47657
|
+
"beta",
|
|
47653
47658
|
"thermostats",
|
|
47654
47659
|
"noise_sensors",
|
|
47655
47660
|
"access_control_systems"
|
|
@@ -67414,6 +67419,15 @@ var openapi_default = {
|
|
|
67414
67419
|
description: "Returns a list of all [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity).",
|
|
67415
67420
|
operationId: "userIdentitiesListGet",
|
|
67416
67421
|
parameters: [
|
|
67422
|
+
{
|
|
67423
|
+
in: "query",
|
|
67424
|
+
name: "user_identity_ids",
|
|
67425
|
+
schema: {
|
|
67426
|
+
description: "Array of user identity IDs by which to filter the list of user identities.",
|
|
67427
|
+
items: { format: "uuid", type: "string" },
|
|
67428
|
+
type: "array"
|
|
67429
|
+
}
|
|
67430
|
+
},
|
|
67417
67431
|
{
|
|
67418
67432
|
in: "query",
|
|
67419
67433
|
name: "search",
|
|
@@ -67531,6 +67545,11 @@ var openapi_default = {
|
|
|
67531
67545
|
search: {
|
|
67532
67546
|
description: "String for which to search. Filters returned user identities to include all records that satisfy a partial match using `full_name`, `phone_number`, `email_address` or `user_identity_id`.",
|
|
67533
67547
|
type: "string"
|
|
67548
|
+
},
|
|
67549
|
+
user_identity_ids: {
|
|
67550
|
+
description: "Array of user identity IDs by which to filter the list of user identities.",
|
|
67551
|
+
items: { format: "uuid", type: "string" },
|
|
67552
|
+
type: "array"
|
|
67534
67553
|
}
|
|
67535
67554
|
},
|
|
67536
67555
|
type: "object"
|