@seamapi/types 1.594.0 → 1.596.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 +270 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +534 -5
- package/dist/index.cjs +270 -9
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +151 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +13 -0
- package/lib/seam/connect/models/devices/device-metadata.js +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
- package/lib/seam/connect/models/devices/device-provider.js +1 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +19 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +13 -0
- package/lib/seam/connect/openapi.d.ts +341 -0
- package/lib/seam/connect/openapi.js +257 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +122 -5
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +5 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +271 -0
- package/src/lib/seam/connect/route-types.ts +156 -0
|
@@ -11494,6 +11494,17 @@ export default {
|
|
|
11494
11494
|
required: ['device_id', 'device_name'],
|
|
11495
11495
|
type: 'object',
|
|
11496
11496
|
},
|
|
11497
|
+
ultraloq_metadata: {
|
|
11498
|
+
description: 'Metadata for a Ultraloq device.',
|
|
11499
|
+
properties: {
|
|
11500
|
+
device_id: {
|
|
11501
|
+
description: 'Device ID for a Ultraloq device.',
|
|
11502
|
+
type: 'string',
|
|
11503
|
+
},
|
|
11504
|
+
},
|
|
11505
|
+
required: ['device_id'],
|
|
11506
|
+
type: 'object',
|
|
11507
|
+
},
|
|
11497
11508
|
visionline_metadata: {
|
|
11498
11509
|
description:
|
|
11499
11510
|
'Metadata for an ASSA ABLOY Visionline system.',
|
|
@@ -13147,6 +13158,7 @@ export default {
|
|
|
13147
13158
|
'kwikset2',
|
|
13148
13159
|
'keynest',
|
|
13149
13160
|
'dormakaba_ambiance',
|
|
13161
|
+
'ultraloq',
|
|
13150
13162
|
],
|
|
13151
13163
|
type: 'string',
|
|
13152
13164
|
},
|
|
@@ -30149,6 +30161,132 @@ export default {
|
|
|
30149
30161
|
'x-title': 'List Unmanaged Access Grants',
|
|
30150
30162
|
},
|
|
30151
30163
|
},
|
|
30164
|
+
'/access_grants/unmanaged/update': {
|
|
30165
|
+
patch: {
|
|
30166
|
+
description:
|
|
30167
|
+
'Updates an unmanaged Access Grant to make it managed.\n\nThis endpoint can only be used to convert unmanaged access grants to managed ones by setting `is_managed` to `true`. It cannot be used to convert managed access grants back to unmanaged.\n\nWhen converting an unmanaged access grant to managed, all associated access methods will also be converted to managed.',
|
|
30168
|
+
operationId: 'accessGrantsUnmanagedUpdatePatch',
|
|
30169
|
+
requestBody: {
|
|
30170
|
+
content: {
|
|
30171
|
+
'application/json': {
|
|
30172
|
+
schema: {
|
|
30173
|
+
properties: {
|
|
30174
|
+
access_grant_id: {
|
|
30175
|
+
description: 'ID of the unmanaged Access Grant to update.',
|
|
30176
|
+
format: 'uuid',
|
|
30177
|
+
type: 'string',
|
|
30178
|
+
},
|
|
30179
|
+
access_grant_key: {
|
|
30180
|
+
description:
|
|
30181
|
+
'Unique key for the access grant. If not provided, the existing key will be preserved.',
|
|
30182
|
+
type: 'string',
|
|
30183
|
+
},
|
|
30184
|
+
is_managed: {
|
|
30185
|
+
description:
|
|
30186
|
+
'Must be set to true to convert the unmanaged access grant to managed.',
|
|
30187
|
+
enum: [true],
|
|
30188
|
+
type: 'boolean',
|
|
30189
|
+
},
|
|
30190
|
+
},
|
|
30191
|
+
required: ['access_grant_id', 'is_managed'],
|
|
30192
|
+
type: 'object',
|
|
30193
|
+
},
|
|
30194
|
+
},
|
|
30195
|
+
},
|
|
30196
|
+
},
|
|
30197
|
+
responses: {
|
|
30198
|
+
200: {
|
|
30199
|
+
content: {
|
|
30200
|
+
'application/json': {
|
|
30201
|
+
schema: {
|
|
30202
|
+
properties: { ok: { type: 'boolean' } },
|
|
30203
|
+
required: ['ok'],
|
|
30204
|
+
type: 'object',
|
|
30205
|
+
},
|
|
30206
|
+
},
|
|
30207
|
+
},
|
|
30208
|
+
description: 'OK',
|
|
30209
|
+
},
|
|
30210
|
+
400: { description: 'Bad Request' },
|
|
30211
|
+
401: { description: 'Unauthorized' },
|
|
30212
|
+
},
|
|
30213
|
+
security: [
|
|
30214
|
+
{ pat_with_workspace: [] },
|
|
30215
|
+
{ console_session_with_workspace: [] },
|
|
30216
|
+
{ api_key: [] },
|
|
30217
|
+
{ client_session_with_customer: [] },
|
|
30218
|
+
],
|
|
30219
|
+
summary: '/access_grants/unmanaged/update',
|
|
30220
|
+
tags: [],
|
|
30221
|
+
'x-draft': 'Early access.',
|
|
30222
|
+
'x-fern-sdk-group-name': ['access_grants', 'unmanaged'],
|
|
30223
|
+
'x-fern-sdk-method-name': 'update',
|
|
30224
|
+
'x-response-key': null,
|
|
30225
|
+
'x-title': 'Update an Unmanaged Access Grant',
|
|
30226
|
+
},
|
|
30227
|
+
post: {
|
|
30228
|
+
description:
|
|
30229
|
+
'Updates an unmanaged Access Grant to make it managed.\n\nThis endpoint can only be used to convert unmanaged access grants to managed ones by setting `is_managed` to `true`. It cannot be used to convert managed access grants back to unmanaged.\n\nWhen converting an unmanaged access grant to managed, all associated access methods will also be converted to managed.',
|
|
30230
|
+
operationId: 'accessGrantsUnmanagedUpdatePost',
|
|
30231
|
+
requestBody: {
|
|
30232
|
+
content: {
|
|
30233
|
+
'application/json': {
|
|
30234
|
+
schema: {
|
|
30235
|
+
properties: {
|
|
30236
|
+
access_grant_id: {
|
|
30237
|
+
description: 'ID of the unmanaged Access Grant to update.',
|
|
30238
|
+
format: 'uuid',
|
|
30239
|
+
type: 'string',
|
|
30240
|
+
},
|
|
30241
|
+
access_grant_key: {
|
|
30242
|
+
description:
|
|
30243
|
+
'Unique key for the access grant. If not provided, the existing key will be preserved.',
|
|
30244
|
+
type: 'string',
|
|
30245
|
+
},
|
|
30246
|
+
is_managed: {
|
|
30247
|
+
description:
|
|
30248
|
+
'Must be set to true to convert the unmanaged access grant to managed.',
|
|
30249
|
+
enum: [true],
|
|
30250
|
+
type: 'boolean',
|
|
30251
|
+
},
|
|
30252
|
+
},
|
|
30253
|
+
required: ['access_grant_id', 'is_managed'],
|
|
30254
|
+
type: 'object',
|
|
30255
|
+
},
|
|
30256
|
+
},
|
|
30257
|
+
},
|
|
30258
|
+
},
|
|
30259
|
+
responses: {
|
|
30260
|
+
200: {
|
|
30261
|
+
content: {
|
|
30262
|
+
'application/json': {
|
|
30263
|
+
schema: {
|
|
30264
|
+
properties: { ok: { type: 'boolean' } },
|
|
30265
|
+
required: ['ok'],
|
|
30266
|
+
type: 'object',
|
|
30267
|
+
},
|
|
30268
|
+
},
|
|
30269
|
+
},
|
|
30270
|
+
description: 'OK',
|
|
30271
|
+
},
|
|
30272
|
+
400: { description: 'Bad Request' },
|
|
30273
|
+
401: { description: 'Unauthorized' },
|
|
30274
|
+
},
|
|
30275
|
+
security: [
|
|
30276
|
+
{ pat_with_workspace: [] },
|
|
30277
|
+
{ console_session_with_workspace: [] },
|
|
30278
|
+
{ api_key: [] },
|
|
30279
|
+
{ client_session_with_customer: [] },
|
|
30280
|
+
],
|
|
30281
|
+
summary: '/access_grants/unmanaged/update',
|
|
30282
|
+
tags: [],
|
|
30283
|
+
'x-draft': 'Early access.',
|
|
30284
|
+
'x-fern-sdk-group-name': ['access_grants', 'unmanaged'],
|
|
30285
|
+
'x-fern-sdk-method-name': 'update',
|
|
30286
|
+
'x-response-key': null,
|
|
30287
|
+
'x-title': 'Update an Unmanaged Access Grant',
|
|
30288
|
+
},
|
|
30289
|
+
},
|
|
30152
30290
|
'/access_grants/update': {
|
|
30153
30291
|
patch: {
|
|
30154
30292
|
description: "Updates an existing Access Grant's time window.",
|
|
@@ -39328,6 +39466,7 @@ export default {
|
|
|
39328
39466
|
'kwikset2',
|
|
39329
39467
|
'keynest',
|
|
39330
39468
|
'dormakaba_ambiance',
|
|
39469
|
+
'ultraloq',
|
|
39331
39470
|
'yale_access',
|
|
39332
39471
|
'hid_cm',
|
|
39333
39472
|
'google_nest',
|
|
@@ -42993,6 +43132,7 @@ export default {
|
|
|
42993
43132
|
'sensi',
|
|
42994
43133
|
'smartthings',
|
|
42995
43134
|
'keynest',
|
|
43135
|
+
'ultraloq',
|
|
42996
43136
|
],
|
|
42997
43137
|
type: 'string',
|
|
42998
43138
|
},
|
|
@@ -43491,6 +43631,7 @@ export default {
|
|
|
43491
43631
|
'sensi',
|
|
43492
43632
|
'smartthings',
|
|
43493
43633
|
'keynest',
|
|
43634
|
+
'ultraloq',
|
|
43494
43635
|
],
|
|
43495
43636
|
type: 'string',
|
|
43496
43637
|
},
|
|
@@ -44354,6 +44495,7 @@ export default {
|
|
|
44354
44495
|
'sensi',
|
|
44355
44496
|
'smartthings',
|
|
44356
44497
|
'keynest',
|
|
44498
|
+
'ultraloq',
|
|
44357
44499
|
],
|
|
44358
44500
|
type: 'string',
|
|
44359
44501
|
},
|
|
@@ -44850,6 +44992,7 @@ export default {
|
|
|
44850
44992
|
'sensi',
|
|
44851
44993
|
'smartthings',
|
|
44852
44994
|
'keynest',
|
|
44995
|
+
'ultraloq',
|
|
44853
44996
|
],
|
|
44854
44997
|
type: 'string',
|
|
44855
44998
|
},
|
|
@@ -46699,6 +46842,7 @@ export default {
|
|
|
46699
46842
|
'akiles',
|
|
46700
46843
|
'kwikset2',
|
|
46701
46844
|
'smartthings',
|
|
46845
|
+
'ultraloq',
|
|
46702
46846
|
],
|
|
46703
46847
|
type: 'string',
|
|
46704
46848
|
},
|
|
@@ -47120,6 +47264,7 @@ export default {
|
|
|
47120
47264
|
'akiles',
|
|
47121
47265
|
'kwikset2',
|
|
47122
47266
|
'smartthings',
|
|
47267
|
+
'ultraloq',
|
|
47123
47268
|
],
|
|
47124
47269
|
type: 'string',
|
|
47125
47270
|
},
|
|
@@ -61465,6 +61610,132 @@ export default {
|
|
|
61465
61610
|
'x-title': 'List Unmanaged User Identities',
|
|
61466
61611
|
},
|
|
61467
61612
|
},
|
|
61613
|
+
'/user_identities/unmanaged/update': {
|
|
61614
|
+
patch: {
|
|
61615
|
+
description:
|
|
61616
|
+
'Updates an unmanaged [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) to make it managed.\n\nThis endpoint can only be used to convert unmanaged user identities to managed ones by setting `is_managed` to `true`. It cannot be used to convert managed user identities back to unmanaged.',
|
|
61617
|
+
operationId: 'userIdentitiesUnmanagedUpdatePatch',
|
|
61618
|
+
requestBody: {
|
|
61619
|
+
content: {
|
|
61620
|
+
'application/json': {
|
|
61621
|
+
schema: {
|
|
61622
|
+
properties: {
|
|
61623
|
+
is_managed: {
|
|
61624
|
+
description:
|
|
61625
|
+
'Must be set to true to convert the unmanaged user identity to managed.',
|
|
61626
|
+
enum: [true],
|
|
61627
|
+
type: 'boolean',
|
|
61628
|
+
},
|
|
61629
|
+
user_identity_id: {
|
|
61630
|
+
description:
|
|
61631
|
+
'ID of the unmanaged user identity that you want to update.',
|
|
61632
|
+
format: 'uuid',
|
|
61633
|
+
type: 'string',
|
|
61634
|
+
},
|
|
61635
|
+
user_identity_key: {
|
|
61636
|
+
description:
|
|
61637
|
+
'Unique key for the user identity. If not provided, the existing key will be preserved.',
|
|
61638
|
+
type: 'string',
|
|
61639
|
+
},
|
|
61640
|
+
},
|
|
61641
|
+
required: ['user_identity_id', 'is_managed'],
|
|
61642
|
+
type: 'object',
|
|
61643
|
+
},
|
|
61644
|
+
},
|
|
61645
|
+
},
|
|
61646
|
+
},
|
|
61647
|
+
responses: {
|
|
61648
|
+
200: {
|
|
61649
|
+
content: {
|
|
61650
|
+
'application/json': {
|
|
61651
|
+
schema: {
|
|
61652
|
+
properties: { ok: { type: 'boolean' } },
|
|
61653
|
+
required: ['ok'],
|
|
61654
|
+
type: 'object',
|
|
61655
|
+
},
|
|
61656
|
+
},
|
|
61657
|
+
},
|
|
61658
|
+
description: 'OK',
|
|
61659
|
+
},
|
|
61660
|
+
400: { description: 'Bad Request' },
|
|
61661
|
+
401: { description: 'Unauthorized' },
|
|
61662
|
+
},
|
|
61663
|
+
security: [
|
|
61664
|
+
{ api_key: [] },
|
|
61665
|
+
{ client_session: [] },
|
|
61666
|
+
{ pat_with_workspace: [] },
|
|
61667
|
+
{ console_session_with_workspace: [] },
|
|
61668
|
+
],
|
|
61669
|
+
summary: '/user_identities/unmanaged/update',
|
|
61670
|
+
tags: ['/user_identities'],
|
|
61671
|
+
'x-fern-sdk-group-name': ['user_identities', 'unmanaged'],
|
|
61672
|
+
'x-fern-sdk-method-name': 'update',
|
|
61673
|
+
'x-response-key': null,
|
|
61674
|
+
'x-title': 'Update an Unmanaged User Identity',
|
|
61675
|
+
},
|
|
61676
|
+
post: {
|
|
61677
|
+
description:
|
|
61678
|
+
'Updates an unmanaged [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) to make it managed.\n\nThis endpoint can only be used to convert unmanaged user identities to managed ones by setting `is_managed` to `true`. It cannot be used to convert managed user identities back to unmanaged.',
|
|
61679
|
+
operationId: 'userIdentitiesUnmanagedUpdatePost',
|
|
61680
|
+
requestBody: {
|
|
61681
|
+
content: {
|
|
61682
|
+
'application/json': {
|
|
61683
|
+
schema: {
|
|
61684
|
+
properties: {
|
|
61685
|
+
is_managed: {
|
|
61686
|
+
description:
|
|
61687
|
+
'Must be set to true to convert the unmanaged user identity to managed.',
|
|
61688
|
+
enum: [true],
|
|
61689
|
+
type: 'boolean',
|
|
61690
|
+
},
|
|
61691
|
+
user_identity_id: {
|
|
61692
|
+
description:
|
|
61693
|
+
'ID of the unmanaged user identity that you want to update.',
|
|
61694
|
+
format: 'uuid',
|
|
61695
|
+
type: 'string',
|
|
61696
|
+
},
|
|
61697
|
+
user_identity_key: {
|
|
61698
|
+
description:
|
|
61699
|
+
'Unique key for the user identity. If not provided, the existing key will be preserved.',
|
|
61700
|
+
type: 'string',
|
|
61701
|
+
},
|
|
61702
|
+
},
|
|
61703
|
+
required: ['user_identity_id', 'is_managed'],
|
|
61704
|
+
type: 'object',
|
|
61705
|
+
},
|
|
61706
|
+
},
|
|
61707
|
+
},
|
|
61708
|
+
},
|
|
61709
|
+
responses: {
|
|
61710
|
+
200: {
|
|
61711
|
+
content: {
|
|
61712
|
+
'application/json': {
|
|
61713
|
+
schema: {
|
|
61714
|
+
properties: { ok: { type: 'boolean' } },
|
|
61715
|
+
required: ['ok'],
|
|
61716
|
+
type: 'object',
|
|
61717
|
+
},
|
|
61718
|
+
},
|
|
61719
|
+
},
|
|
61720
|
+
description: 'OK',
|
|
61721
|
+
},
|
|
61722
|
+
400: { description: 'Bad Request' },
|
|
61723
|
+
401: { description: 'Unauthorized' },
|
|
61724
|
+
},
|
|
61725
|
+
security: [
|
|
61726
|
+
{ api_key: [] },
|
|
61727
|
+
{ client_session: [] },
|
|
61728
|
+
{ pat_with_workspace: [] },
|
|
61729
|
+
{ console_session_with_workspace: [] },
|
|
61730
|
+
],
|
|
61731
|
+
summary: '/user_identities/unmanaged/update',
|
|
61732
|
+
tags: ['/user_identities'],
|
|
61733
|
+
'x-fern-sdk-group-name': ['user_identities', 'unmanaged'],
|
|
61734
|
+
'x-fern-sdk-method-name': 'update',
|
|
61735
|
+
'x-response-key': null,
|
|
61736
|
+
'x-title': 'Update an Unmanaged User Identity',
|
|
61737
|
+
},
|
|
61738
|
+
},
|
|
61468
61739
|
'/user_identities/update': {
|
|
61469
61740
|
patch: {
|
|
61470
61741
|
description:
|
|
@@ -12085,6 +12085,13 @@ export type Routes = {
|
|
|
12085
12085
|
has_photo?: boolean | undefined
|
|
12086
12086
|
}
|
|
12087
12087
|
| undefined
|
|
12088
|
+
/** Metadata for a Ultraloq device. */
|
|
12089
|
+
ultraloq_metadata?:
|
|
12090
|
+
| {
|
|
12091
|
+
/** Device ID for a Ultraloq device. */
|
|
12092
|
+
device_id: string
|
|
12093
|
+
}
|
|
12094
|
+
| undefined
|
|
12088
12095
|
}) &
|
|
12089
12096
|
({
|
|
12090
12097
|
/** */
|
|
@@ -13752,6 +13759,22 @@ export type Routes = {
|
|
|
13752
13759
|
}[]
|
|
13753
13760
|
}
|
|
13754
13761
|
}
|
|
13762
|
+
'/access_grants/unmanaged/update': {
|
|
13763
|
+
route: '/access_grants/unmanaged/update'
|
|
13764
|
+
method: 'PATCH' | 'POST'
|
|
13765
|
+
queryParams: {}
|
|
13766
|
+
jsonBody: {
|
|
13767
|
+
/** ID of the unmanaged Access Grant to update. */
|
|
13768
|
+
access_grant_id: string
|
|
13769
|
+
/** Must be set to true to convert the unmanaged access grant to managed. */
|
|
13770
|
+
is_managed: true
|
|
13771
|
+
/** Unique key for the access grant. If not provided, the existing key will be preserved. */
|
|
13772
|
+
access_grant_key?: string | undefined
|
|
13773
|
+
}
|
|
13774
|
+
commonParams: {}
|
|
13775
|
+
formData: {}
|
|
13776
|
+
jsonResponse: {}
|
|
13777
|
+
}
|
|
13755
13778
|
'/access_grants/update': {
|
|
13756
13779
|
route: '/access_grants/update'
|
|
13757
13780
|
method: 'POST' | 'PATCH'
|
|
@@ -16151,6 +16174,13 @@ export type Routes = {
|
|
|
16151
16174
|
has_photo?: boolean | undefined
|
|
16152
16175
|
}
|
|
16153
16176
|
| undefined
|
|
16177
|
+
/** Metadata for a Ultraloq device. */
|
|
16178
|
+
ultraloq_metadata?:
|
|
16179
|
+
| {
|
|
16180
|
+
/** Device ID for a Ultraloq device. */
|
|
16181
|
+
device_id: string
|
|
16182
|
+
}
|
|
16183
|
+
| undefined
|
|
16154
16184
|
}) &
|
|
16155
16185
|
({
|
|
16156
16186
|
/** */
|
|
@@ -35678,6 +35708,7 @@ export type Routes = {
|
|
|
35678
35708
|
| 'kwikset2'
|
|
35679
35709
|
| 'keynest'
|
|
35680
35710
|
| 'dormakaba_ambiance'
|
|
35711
|
+
| 'ultraloq'
|
|
35681
35712
|
| 'yale_access'
|
|
35682
35713
|
| 'hid_cm'
|
|
35683
35714
|
| 'google_nest'
|
|
@@ -37984,6 +38015,13 @@ export type Routes = {
|
|
|
37984
38015
|
has_photo?: boolean | undefined
|
|
37985
38016
|
}
|
|
37986
38017
|
| undefined
|
|
38018
|
+
/** Metadata for a Ultraloq device. */
|
|
38019
|
+
ultraloq_metadata?:
|
|
38020
|
+
| {
|
|
38021
|
+
/** Device ID for a Ultraloq device. */
|
|
38022
|
+
device_id: string
|
|
38023
|
+
}
|
|
38024
|
+
| undefined
|
|
37987
38025
|
}) &
|
|
37988
38026
|
({
|
|
37989
38027
|
/** */
|
|
@@ -38921,6 +38959,7 @@ export type Routes = {
|
|
|
38921
38959
|
| 'sensi'
|
|
38922
38960
|
| 'smartthings'
|
|
38923
38961
|
| 'keynest'
|
|
38962
|
+
| 'ultraloq'
|
|
38924
38963
|
)
|
|
38925
38964
|
| undefined
|
|
38926
38965
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -39722,6 +39761,13 @@ export type Routes = {
|
|
|
39722
39761
|
has_photo?: boolean | undefined
|
|
39723
39762
|
}
|
|
39724
39763
|
| undefined
|
|
39764
|
+
/** Metadata for a Ultraloq device. */
|
|
39765
|
+
ultraloq_metadata?:
|
|
39766
|
+
| {
|
|
39767
|
+
/** Device ID for a Ultraloq device. */
|
|
39768
|
+
device_id: string
|
|
39769
|
+
}
|
|
39770
|
+
| undefined
|
|
39725
39771
|
}) &
|
|
39726
39772
|
({
|
|
39727
39773
|
/** */
|
|
@@ -40591,6 +40637,7 @@ export type Routes = {
|
|
|
40591
40637
|
| 'kwikset2'
|
|
40592
40638
|
| 'keynest'
|
|
40593
40639
|
| 'dormakaba_ambiance'
|
|
40640
|
+
| 'ultraloq'
|
|
40594
40641
|
display_name: string
|
|
40595
40642
|
image_url: string
|
|
40596
40643
|
provider_categories: (
|
|
@@ -41331,6 +41378,7 @@ export type Routes = {
|
|
|
41331
41378
|
| 'sensi'
|
|
41332
41379
|
| 'smartthings'
|
|
41333
41380
|
| 'keynest'
|
|
41381
|
+
| 'ultraloq'
|
|
41334
41382
|
)
|
|
41335
41383
|
| undefined
|
|
41336
41384
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -47493,6 +47541,13 @@ export type Routes = {
|
|
|
47493
47541
|
has_photo?: boolean | undefined
|
|
47494
47542
|
}
|
|
47495
47543
|
| undefined
|
|
47544
|
+
/** Metadata for a Ultraloq device. */
|
|
47545
|
+
ultraloq_metadata?:
|
|
47546
|
+
| {
|
|
47547
|
+
/** Device ID for a Ultraloq device. */
|
|
47548
|
+
device_id: string
|
|
47549
|
+
}
|
|
47550
|
+
| undefined
|
|
47496
47551
|
}) &
|
|
47497
47552
|
({
|
|
47498
47553
|
/** */
|
|
@@ -49007,6 +49062,13 @@ export type Routes = {
|
|
|
49007
49062
|
has_photo?: boolean | undefined
|
|
49008
49063
|
}
|
|
49009
49064
|
| undefined
|
|
49065
|
+
/** Metadata for a Ultraloq device. */
|
|
49066
|
+
ultraloq_metadata?:
|
|
49067
|
+
| {
|
|
49068
|
+
/** Device ID for a Ultraloq device. */
|
|
49069
|
+
device_id: string
|
|
49070
|
+
}
|
|
49071
|
+
| undefined
|
|
49010
49072
|
}) &
|
|
49011
49073
|
({
|
|
49012
49074
|
/** */
|
|
@@ -49906,6 +49968,7 @@ export type Routes = {
|
|
|
49906
49968
|
| 'akiles'
|
|
49907
49969
|
| 'kwikset2'
|
|
49908
49970
|
| 'smartthings'
|
|
49971
|
+
| 'ultraloq'
|
|
49909
49972
|
)
|
|
49910
49973
|
| undefined
|
|
49911
49974
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -50707,6 +50770,13 @@ export type Routes = {
|
|
|
50707
50770
|
has_photo?: boolean | undefined
|
|
50708
50771
|
}
|
|
50709
50772
|
| undefined
|
|
50773
|
+
/** Metadata for a Ultraloq device. */
|
|
50774
|
+
ultraloq_metadata?:
|
|
50775
|
+
| {
|
|
50776
|
+
/** Device ID for a Ultraloq device. */
|
|
50777
|
+
device_id: string
|
|
50778
|
+
}
|
|
50779
|
+
| undefined
|
|
50710
50780
|
}) &
|
|
50711
50781
|
({
|
|
50712
50782
|
/** */
|
|
@@ -52220,6 +52290,13 @@ export type Routes = {
|
|
|
52220
52290
|
has_photo?: boolean | undefined
|
|
52221
52291
|
}
|
|
52222
52292
|
| undefined
|
|
52293
|
+
/** Metadata for a Ultraloq device. */
|
|
52294
|
+
ultraloq_metadata?:
|
|
52295
|
+
| {
|
|
52296
|
+
/** Device ID for a Ultraloq device. */
|
|
52297
|
+
device_id: string
|
|
52298
|
+
}
|
|
52299
|
+
| undefined
|
|
52223
52300
|
}) &
|
|
52224
52301
|
({
|
|
52225
52302
|
/** */
|
|
@@ -59623,6 +59700,13 @@ export type Routes = {
|
|
|
59623
59700
|
has_photo?: boolean | undefined
|
|
59624
59701
|
}
|
|
59625
59702
|
| undefined
|
|
59703
|
+
/** Metadata for a Ultraloq device. */
|
|
59704
|
+
ultraloq_metadata?:
|
|
59705
|
+
| {
|
|
59706
|
+
/** Device ID for a Ultraloq device. */
|
|
59707
|
+
device_id: string
|
|
59708
|
+
}
|
|
59709
|
+
| undefined
|
|
59626
59710
|
}) &
|
|
59627
59711
|
({
|
|
59628
59712
|
/** */
|
|
@@ -61136,6 +61220,13 @@ export type Routes = {
|
|
|
61136
61220
|
has_photo?: boolean | undefined
|
|
61137
61221
|
}
|
|
61138
61222
|
| undefined
|
|
61223
|
+
/** Metadata for a Ultraloq device. */
|
|
61224
|
+
ultraloq_metadata?:
|
|
61225
|
+
| {
|
|
61226
|
+
/** Device ID for a Ultraloq device. */
|
|
61227
|
+
device_id: string
|
|
61228
|
+
}
|
|
61229
|
+
| undefined
|
|
61139
61230
|
}) &
|
|
61140
61231
|
({
|
|
61141
61232
|
/** */
|
|
@@ -71618,6 +71709,13 @@ export type Routes = {
|
|
|
71618
71709
|
has_photo?: boolean | undefined
|
|
71619
71710
|
}
|
|
71620
71711
|
| undefined
|
|
71712
|
+
/** Metadata for a Ultraloq device. */
|
|
71713
|
+
ultraloq_metadata?:
|
|
71714
|
+
| {
|
|
71715
|
+
/** Device ID for a Ultraloq device. */
|
|
71716
|
+
device_id: string
|
|
71717
|
+
}
|
|
71718
|
+
| undefined
|
|
71621
71719
|
}) &
|
|
71622
71720
|
({
|
|
71623
71721
|
/** */
|
|
@@ -78232,6 +78330,13 @@ export type Routes = {
|
|
|
78232
78330
|
has_photo?: boolean | undefined
|
|
78233
78331
|
}
|
|
78234
78332
|
| undefined
|
|
78333
|
+
/** Metadata for a Ultraloq device. */
|
|
78334
|
+
ultraloq_metadata?:
|
|
78335
|
+
| {
|
|
78336
|
+
/** Device ID for a Ultraloq device. */
|
|
78337
|
+
device_id: string
|
|
78338
|
+
}
|
|
78339
|
+
| undefined
|
|
78235
78340
|
}) &
|
|
78236
78341
|
({
|
|
78237
78342
|
/** */
|
|
@@ -82778,6 +82883,13 @@ export type Routes = {
|
|
|
82778
82883
|
has_photo?: boolean | undefined
|
|
82779
82884
|
}
|
|
82780
82885
|
| undefined
|
|
82886
|
+
/** Metadata for a Ultraloq device. */
|
|
82887
|
+
ultraloq_metadata?:
|
|
82888
|
+
| {
|
|
82889
|
+
/** Device ID for a Ultraloq device. */
|
|
82890
|
+
device_id: string
|
|
82891
|
+
}
|
|
82892
|
+
| undefined
|
|
82781
82893
|
}) &
|
|
82782
82894
|
({
|
|
82783
82895
|
/** */
|
|
@@ -84291,6 +84403,13 @@ export type Routes = {
|
|
|
84291
84403
|
has_photo?: boolean | undefined
|
|
84292
84404
|
}
|
|
84293
84405
|
| undefined
|
|
84406
|
+
/** Metadata for a Ultraloq device. */
|
|
84407
|
+
ultraloq_metadata?:
|
|
84408
|
+
| {
|
|
84409
|
+
/** Device ID for a Ultraloq device. */
|
|
84410
|
+
device_id: string
|
|
84411
|
+
}
|
|
84412
|
+
| undefined
|
|
84294
84413
|
}) &
|
|
84295
84414
|
({
|
|
84296
84415
|
/** */
|
|
@@ -92555,6 +92674,13 @@ export type Routes = {
|
|
|
92555
92674
|
has_photo?: boolean | undefined
|
|
92556
92675
|
}
|
|
92557
92676
|
| undefined
|
|
92677
|
+
/** Metadata for a Ultraloq device. */
|
|
92678
|
+
ultraloq_metadata?:
|
|
92679
|
+
| {
|
|
92680
|
+
/** Device ID for a Ultraloq device. */
|
|
92681
|
+
device_id: string
|
|
92682
|
+
}
|
|
92683
|
+
| undefined
|
|
92558
92684
|
}) &
|
|
92559
92685
|
({
|
|
92560
92686
|
/** */
|
|
@@ -94070,6 +94196,13 @@ export type Routes = {
|
|
|
94070
94196
|
has_photo?: boolean | undefined
|
|
94071
94197
|
}
|
|
94072
94198
|
| undefined
|
|
94199
|
+
/** Metadata for a Ultraloq device. */
|
|
94200
|
+
ultraloq_metadata?:
|
|
94201
|
+
| {
|
|
94202
|
+
/** Device ID for a Ultraloq device. */
|
|
94203
|
+
device_id: string
|
|
94204
|
+
}
|
|
94205
|
+
| undefined
|
|
94073
94206
|
}) &
|
|
94074
94207
|
({
|
|
94075
94208
|
/** */
|
|
@@ -95445,6 +95578,22 @@ export type Routes = {
|
|
|
95445
95578
|
}[]
|
|
95446
95579
|
}
|
|
95447
95580
|
}
|
|
95581
|
+
'/user_identities/unmanaged/update': {
|
|
95582
|
+
route: '/user_identities/unmanaged/update'
|
|
95583
|
+
method: 'PATCH' | 'POST'
|
|
95584
|
+
queryParams: {}
|
|
95585
|
+
jsonBody: {
|
|
95586
|
+
/** ID of the unmanaged user identity that you want to update. */
|
|
95587
|
+
user_identity_id: string
|
|
95588
|
+
/** Must be set to true to convert the unmanaged user identity to managed. */
|
|
95589
|
+
is_managed: true
|
|
95590
|
+
/** Unique key for the user identity. If not provided, the existing key will be preserved. */
|
|
95591
|
+
user_identity_key?: string | undefined
|
|
95592
|
+
}
|
|
95593
|
+
commonParams: {}
|
|
95594
|
+
formData: {}
|
|
95595
|
+
jsonResponse: {}
|
|
95596
|
+
}
|
|
95448
95597
|
'/user_identities/update': {
|
|
95449
95598
|
route: '/user_identities/update'
|
|
95450
95599
|
method: 'PATCH' | 'POST'
|
|
@@ -96576,6 +96725,13 @@ export type Routes = {
|
|
|
96576
96725
|
has_photo?: boolean | undefined
|
|
96577
96726
|
}
|
|
96578
96727
|
| undefined
|
|
96728
|
+
/** Metadata for a Ultraloq device. */
|
|
96729
|
+
ultraloq_metadata?:
|
|
96730
|
+
| {
|
|
96731
|
+
/** Device ID for a Ultraloq device. */
|
|
96732
|
+
device_id: string
|
|
96733
|
+
}
|
|
96734
|
+
| undefined
|
|
96579
96735
|
}) &
|
|
96580
96736
|
({
|
|
96581
96737
|
/** */
|