@seamapi/types 1.411.1 → 1.413.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 +139 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +336 -3
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +26 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +26 -0
- package/lib/seam/connect/models/client-sessions/client-session.d.ts +3 -0
- package/lib/seam/connect/models/client-sessions/client-session.js +4 -1
- package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +87 -0
- package/lib/seam/connect/models/devices/device.js +9 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +26 -0
- package/lib/seam/connect/openapi.d.ts +45 -0
- package/lib/seam/connect/openapi.js +125 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +168 -3
- package/package.json +2 -2
- package/src/lib/seam/connect/models/client-sessions/client-session.ts +4 -1
- package/src/lib/seam/connect/models/devices/device.ts +10 -0
- package/src/lib/seam/connect/openapi.ts +138 -3
- package/src/lib/seam/connect/route-types.ts +192 -3
|
@@ -1090,6 +1090,28 @@ export default {
|
|
|
1090
1090
|
],
|
|
1091
1091
|
type: 'object',
|
|
1092
1092
|
},
|
|
1093
|
+
{
|
|
1094
|
+
description:
|
|
1095
|
+
'Lockly lock is not connected to a Wi-Fi bridge.',
|
|
1096
|
+
properties: {
|
|
1097
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
1098
|
+
error_code: {
|
|
1099
|
+
description:
|
|
1100
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
1101
|
+
enum: ['lockly_missing_wifi_bridge'],
|
|
1102
|
+
type: 'string',
|
|
1103
|
+
},
|
|
1104
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
1105
|
+
message: { type: 'string' },
|
|
1106
|
+
},
|
|
1107
|
+
required: [
|
|
1108
|
+
'message',
|
|
1109
|
+
'is_device_error',
|
|
1110
|
+
'created_at',
|
|
1111
|
+
'error_code',
|
|
1112
|
+
],
|
|
1113
|
+
type: 'object',
|
|
1114
|
+
},
|
|
1093
1115
|
{
|
|
1094
1116
|
description: 'Credentials provided were invalid.',
|
|
1095
1117
|
properties: {
|
|
@@ -7315,7 +7337,9 @@ export default {
|
|
|
7315
7337
|
expires_at: { format: 'date-time', type: 'string' },
|
|
7316
7338
|
token: { type: 'string' },
|
|
7317
7339
|
user_identifier_key: { nullable: true, type: 'string' },
|
|
7340
|
+
user_identity_id: { format: 'uuid', type: 'string' },
|
|
7318
7341
|
user_identity_ids: {
|
|
7342
|
+
description: 'deprecated: Use `user_identity_id`.',
|
|
7319
7343
|
items: { format: 'uuid', type: 'string' },
|
|
7320
7344
|
type: 'array',
|
|
7321
7345
|
},
|
|
@@ -8319,6 +8343,28 @@ export default {
|
|
|
8319
8343
|
],
|
|
8320
8344
|
type: 'object',
|
|
8321
8345
|
},
|
|
8346
|
+
{
|
|
8347
|
+
description:
|
|
8348
|
+
'Lockly lock is not connected to a Wi-Fi bridge.',
|
|
8349
|
+
properties: {
|
|
8350
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
8351
|
+
error_code: {
|
|
8352
|
+
description:
|
|
8353
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
8354
|
+
enum: ['lockly_missing_wifi_bridge'],
|
|
8355
|
+
type: 'string',
|
|
8356
|
+
},
|
|
8357
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
8358
|
+
message: { type: 'string' },
|
|
8359
|
+
},
|
|
8360
|
+
required: [
|
|
8361
|
+
'message',
|
|
8362
|
+
'is_device_error',
|
|
8363
|
+
'created_at',
|
|
8364
|
+
'error_code',
|
|
8365
|
+
],
|
|
8366
|
+
type: 'object',
|
|
8367
|
+
},
|
|
8322
8368
|
{
|
|
8323
8369
|
description: 'Credentials provided were invalid.',
|
|
8324
8370
|
properties: {
|
|
@@ -18204,6 +18250,28 @@ export default {
|
|
|
18204
18250
|
],
|
|
18205
18251
|
type: 'object',
|
|
18206
18252
|
},
|
|
18253
|
+
{
|
|
18254
|
+
description:
|
|
18255
|
+
'Lockly lock is not connected to a Wi-Fi bridge.',
|
|
18256
|
+
properties: {
|
|
18257
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
18258
|
+
error_code: {
|
|
18259
|
+
description:
|
|
18260
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
18261
|
+
enum: ['lockly_missing_wifi_bridge'],
|
|
18262
|
+
type: 'string',
|
|
18263
|
+
},
|
|
18264
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
18265
|
+
message: { type: 'string' },
|
|
18266
|
+
},
|
|
18267
|
+
required: [
|
|
18268
|
+
'message',
|
|
18269
|
+
'is_device_error',
|
|
18270
|
+
'created_at',
|
|
18271
|
+
'error_code',
|
|
18272
|
+
],
|
|
18273
|
+
type: 'object',
|
|
18274
|
+
},
|
|
18207
18275
|
{
|
|
18208
18276
|
description: 'Credentials provided were invalid.',
|
|
18209
18277
|
properties: {
|
|
@@ -20163,6 +20231,28 @@ export default {
|
|
|
20163
20231
|
],
|
|
20164
20232
|
type: 'object',
|
|
20165
20233
|
},
|
|
20234
|
+
{
|
|
20235
|
+
description:
|
|
20236
|
+
'Lockly lock is not connected to a Wi-Fi bridge.',
|
|
20237
|
+
properties: {
|
|
20238
|
+
created_at: { format: 'date-time', type: 'string' },
|
|
20239
|
+
error_code: {
|
|
20240
|
+
description:
|
|
20241
|
+
'Unique identifier of the type of error. Enables quick recognition and categorization of the issue.',
|
|
20242
|
+
enum: ['lockly_missing_wifi_bridge'],
|
|
20243
|
+
type: 'string',
|
|
20244
|
+
},
|
|
20245
|
+
is_device_error: { enum: [true], type: 'boolean' },
|
|
20246
|
+
message: { type: 'string' },
|
|
20247
|
+
},
|
|
20248
|
+
required: [
|
|
20249
|
+
'message',
|
|
20250
|
+
'is_device_error',
|
|
20251
|
+
'created_at',
|
|
20252
|
+
'error_code',
|
|
20253
|
+
],
|
|
20254
|
+
type: 'object',
|
|
20255
|
+
},
|
|
20166
20256
|
{
|
|
20167
20257
|
description: 'Credentials provided were invalid.',
|
|
20168
20258
|
properties: {
|
|
@@ -27790,11 +27880,20 @@ export default {
|
|
|
27790
27880
|
minLength: 1,
|
|
27791
27881
|
type: 'string',
|
|
27792
27882
|
},
|
|
27883
|
+
user_identity_id: {
|
|
27884
|
+
description:
|
|
27885
|
+
'ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to create a client session.',
|
|
27886
|
+
type: 'string',
|
|
27887
|
+
},
|
|
27793
27888
|
user_identity_ids: {
|
|
27889
|
+
deprecated: true,
|
|
27794
27890
|
description:
|
|
27795
|
-
'IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity)
|
|
27891
|
+
'IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
27796
27892
|
items: { type: 'string' },
|
|
27893
|
+
maxItems: 1,
|
|
27894
|
+
minItems: 1,
|
|
27797
27895
|
type: 'array',
|
|
27896
|
+
'x-deprecated': 'Use `user_identity_id`.',
|
|
27798
27897
|
},
|
|
27799
27898
|
},
|
|
27800
27899
|
type: 'object',
|
|
@@ -27872,11 +27971,20 @@ export default {
|
|
|
27872
27971
|
minLength: 1,
|
|
27873
27972
|
type: 'string',
|
|
27874
27973
|
},
|
|
27974
|
+
user_identity_id: {
|
|
27975
|
+
description:
|
|
27976
|
+
'ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to create a client session.',
|
|
27977
|
+
type: 'string',
|
|
27978
|
+
},
|
|
27875
27979
|
user_identity_ids: {
|
|
27980
|
+
deprecated: true,
|
|
27876
27981
|
description:
|
|
27877
|
-
'IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity)
|
|
27982
|
+
'IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
27878
27983
|
items: { type: 'string' },
|
|
27984
|
+
maxItems: 1,
|
|
27985
|
+
minItems: 1,
|
|
27879
27986
|
type: 'array',
|
|
27987
|
+
'x-deprecated': 'Use `user_identity_id`.',
|
|
27880
27988
|
},
|
|
27881
27989
|
},
|
|
27882
27990
|
type: 'object',
|
|
@@ -28066,11 +28174,20 @@ export default {
|
|
|
28066
28174
|
minLength: 1,
|
|
28067
28175
|
type: 'string',
|
|
28068
28176
|
},
|
|
28177
|
+
user_identity_id: {
|
|
28178
|
+
description:
|
|
28179
|
+
'ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session (or that are already associated with the existing client session).',
|
|
28180
|
+
type: 'string',
|
|
28181
|
+
},
|
|
28069
28182
|
user_identity_ids: {
|
|
28183
|
+
deprecated: true,
|
|
28070
28184
|
description:
|
|
28071
|
-
'IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session
|
|
28185
|
+
'IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
28072
28186
|
items: { type: 'string' },
|
|
28187
|
+
maxItems: 1,
|
|
28188
|
+
minItems: 1,
|
|
28073
28189
|
type: 'array',
|
|
28190
|
+
'x-deprecated': 'Use `user_identity_id`.',
|
|
28074
28191
|
},
|
|
28075
28192
|
},
|
|
28076
28193
|
type: 'object',
|
|
@@ -28146,11 +28263,20 @@ export default {
|
|
|
28146
28263
|
'Your user ID for the user that you want to associate with the client session.',
|
|
28147
28264
|
type: 'string',
|
|
28148
28265
|
},
|
|
28266
|
+
user_identity_id: {
|
|
28267
|
+
description:
|
|
28268
|
+
'ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
28269
|
+
type: 'string',
|
|
28270
|
+
},
|
|
28149
28271
|
user_identity_ids: {
|
|
28272
|
+
deprecated: true,
|
|
28150
28273
|
description:
|
|
28151
28274
|
'IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
28152
28275
|
items: { type: 'string' },
|
|
28276
|
+
maxItems: 1,
|
|
28277
|
+
minItems: 1,
|
|
28153
28278
|
type: 'array',
|
|
28279
|
+
'x-deprecated': 'Use `user_identity_id`.',
|
|
28154
28280
|
},
|
|
28155
28281
|
},
|
|
28156
28282
|
type: 'object',
|
|
@@ -28221,11 +28347,20 @@ export default {
|
|
|
28221
28347
|
'Your user ID for the user that you want to associate with the client session.',
|
|
28222
28348
|
type: 'string',
|
|
28223
28349
|
},
|
|
28350
|
+
user_identity_id: {
|
|
28351
|
+
description:
|
|
28352
|
+
'ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
28353
|
+
type: 'string',
|
|
28354
|
+
},
|
|
28224
28355
|
user_identity_ids: {
|
|
28356
|
+
deprecated: true,
|
|
28225
28357
|
description:
|
|
28226
28358
|
'IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.',
|
|
28227
28359
|
items: { type: 'string' },
|
|
28360
|
+
maxItems: 1,
|
|
28361
|
+
minItems: 1,
|
|
28228
28362
|
type: 'array',
|
|
28363
|
+
'x-deprecated': 'Use `user_identity_id`.',
|
|
28229
28364
|
},
|
|
28230
28365
|
},
|
|
28231
28366
|
type: 'object',
|
|
@@ -1703,6 +1703,13 @@ export interface Routes {
|
|
|
1703
1703
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1704
1704
|
error_code: 'subscription_required'
|
|
1705
1705
|
}
|
|
1706
|
+
| {
|
|
1707
|
+
message: string
|
|
1708
|
+
is_device_error: true
|
|
1709
|
+
created_at: string
|
|
1710
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1711
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
1712
|
+
}
|
|
1706
1713
|
| {
|
|
1707
1714
|
/** Date and time at which Seam created the error. */
|
|
1708
1715
|
created_at: string
|
|
@@ -2253,6 +2260,13 @@ export interface Routes {
|
|
|
2253
2260
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2254
2261
|
error_code: 'subscription_required'
|
|
2255
2262
|
}
|
|
2263
|
+
| {
|
|
2264
|
+
message: string
|
|
2265
|
+
is_device_error: true
|
|
2266
|
+
created_at: string
|
|
2267
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2268
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
2269
|
+
}
|
|
2256
2270
|
| {
|
|
2257
2271
|
/** Date and time at which Seam created the error. */
|
|
2258
2272
|
created_at: string
|
|
@@ -4112,6 +4126,13 @@ export interface Routes {
|
|
|
4112
4126
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4113
4127
|
error_code: 'subscription_required'
|
|
4114
4128
|
}
|
|
4129
|
+
| {
|
|
4130
|
+
message: string
|
|
4131
|
+
is_device_error: true
|
|
4132
|
+
created_at: string
|
|
4133
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4134
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
4135
|
+
}
|
|
4115
4136
|
| {
|
|
4116
4137
|
/** Date and time at which Seam created the error. */
|
|
4117
4138
|
created_at: string
|
|
@@ -4643,6 +4664,13 @@ export interface Routes {
|
|
|
4643
4664
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4644
4665
|
error_code: 'subscription_required'
|
|
4645
4666
|
}
|
|
4667
|
+
| {
|
|
4668
|
+
message: string
|
|
4669
|
+
is_device_error: true
|
|
4670
|
+
created_at: string
|
|
4671
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4672
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
4673
|
+
}
|
|
4646
4674
|
| {
|
|
4647
4675
|
/** Date and time at which Seam created the error. */
|
|
4648
4676
|
created_at: string
|
|
@@ -5181,6 +5209,13 @@ export interface Routes {
|
|
|
5181
5209
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5182
5210
|
error_code: 'subscription_required'
|
|
5183
5211
|
}
|
|
5212
|
+
| {
|
|
5213
|
+
message: string
|
|
5214
|
+
is_device_error: true
|
|
5215
|
+
created_at: string
|
|
5216
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5217
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
5218
|
+
}
|
|
5184
5219
|
| {
|
|
5185
5220
|
/** Date and time at which Seam created the error. */
|
|
5186
5221
|
created_at: string
|
|
@@ -5697,6 +5732,13 @@ export interface Routes {
|
|
|
5697
5732
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5698
5733
|
error_code: 'subscription_required'
|
|
5699
5734
|
}
|
|
5735
|
+
| {
|
|
5736
|
+
message: string
|
|
5737
|
+
is_device_error: true
|
|
5738
|
+
created_at: string
|
|
5739
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5740
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
5741
|
+
}
|
|
5700
5742
|
| {
|
|
5701
5743
|
/** Date and time at which Seam created the error. */
|
|
5702
5744
|
created_at: string
|
|
@@ -6246,6 +6288,13 @@ export interface Routes {
|
|
|
6246
6288
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6247
6289
|
error_code: 'subscription_required'
|
|
6248
6290
|
}
|
|
6291
|
+
| {
|
|
6292
|
+
message: string
|
|
6293
|
+
is_device_error: true
|
|
6294
|
+
created_at: string
|
|
6295
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6296
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
6297
|
+
}
|
|
6249
6298
|
| {
|
|
6250
6299
|
/** Date and time at which Seam created the error. */
|
|
6251
6300
|
created_at: string
|
|
@@ -8092,6 +8141,13 @@ export interface Routes {
|
|
|
8092
8141
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8093
8142
|
error_code: 'subscription_required'
|
|
8094
8143
|
}
|
|
8144
|
+
| {
|
|
8145
|
+
message: string
|
|
8146
|
+
is_device_error: true
|
|
8147
|
+
created_at: string
|
|
8148
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8149
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
8150
|
+
}
|
|
8095
8151
|
| {
|
|
8096
8152
|
/** Date and time at which Seam created the error. */
|
|
8097
8153
|
created_at: string
|
|
@@ -8598,6 +8654,13 @@ export interface Routes {
|
|
|
8598
8654
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8599
8655
|
error_code: 'subscription_required'
|
|
8600
8656
|
}
|
|
8657
|
+
| {
|
|
8658
|
+
message: string
|
|
8659
|
+
is_device_error: true
|
|
8660
|
+
created_at: string
|
|
8661
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8662
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
8663
|
+
}
|
|
8601
8664
|
| {
|
|
8602
8665
|
/** Date and time at which Seam created the error. */
|
|
8603
8666
|
created_at: string
|
|
@@ -21799,8 +21862,11 @@ export interface Routes {
|
|
|
21799
21862
|
connect_webview_ids?: string[] | undefined
|
|
21800
21863
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) for which you want to create a client session. */
|
|
21801
21864
|
connected_account_ids?: string[] | undefined
|
|
21802
|
-
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity)
|
|
21865
|
+
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.
|
|
21866
|
+
* @deprecated Use `user_identity_id`. */
|
|
21803
21867
|
user_identity_ids?: string[] | undefined
|
|
21868
|
+
/** ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to create a client session. */
|
|
21869
|
+
user_identity_id?: string | undefined
|
|
21804
21870
|
/** Date and time at which the client session should expire, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
21805
21871
|
expires_at?: Date | undefined
|
|
21806
21872
|
}
|
|
@@ -21827,7 +21893,9 @@ export interface Routes {
|
|
|
21827
21893
|
customer_id?: string | undefined
|
|
21828
21894
|
connected_account_ids: string[]
|
|
21829
21895
|
connect_webview_ids: string[]
|
|
21896
|
+
/** deprecated: Use `user_identity_id`. */
|
|
21830
21897
|
user_identity_ids: string[]
|
|
21898
|
+
user_identity_id?: string | undefined
|
|
21831
21899
|
}
|
|
21832
21900
|
}
|
|
21833
21901
|
}
|
|
@@ -21876,7 +21944,9 @@ export interface Routes {
|
|
|
21876
21944
|
customer_id?: string | undefined
|
|
21877
21945
|
connected_account_ids: string[]
|
|
21878
21946
|
connect_webview_ids: string[]
|
|
21947
|
+
/** deprecated: Use `user_identity_id`. */
|
|
21879
21948
|
user_identity_ids: string[]
|
|
21949
|
+
user_identity_id?: string | undefined
|
|
21880
21950
|
}
|
|
21881
21951
|
}
|
|
21882
21952
|
}
|
|
@@ -21891,8 +21961,11 @@ export interface Routes {
|
|
|
21891
21961
|
connect_webview_ids?: string[] | undefined
|
|
21892
21962
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/api/connected_accounts) that you want to associate with the client session (or that are already associated with the existing client session). */
|
|
21893
21963
|
connected_account_ids?: string[] | undefined
|
|
21894
|
-
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session
|
|
21964
|
+
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.
|
|
21965
|
+
* @deprecated Use `user_identity_id`. */
|
|
21895
21966
|
user_identity_ids?: string[] | undefined
|
|
21967
|
+
/** ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session (or that are already associated with the existing client session). */
|
|
21968
|
+
user_identity_id?: string | undefined
|
|
21896
21969
|
/** Date and time at which the client session should expire (or at which the existing client session expires), in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
21897
21970
|
expires_at?: Date | undefined
|
|
21898
21971
|
}
|
|
@@ -21919,7 +21992,9 @@ export interface Routes {
|
|
|
21919
21992
|
customer_id?: string | undefined
|
|
21920
21993
|
connected_account_ids: string[]
|
|
21921
21994
|
connect_webview_ids: string[]
|
|
21995
|
+
/** deprecated: Use `user_identity_id`. */
|
|
21922
21996
|
user_identity_ids: string[]
|
|
21997
|
+
user_identity_id?: string | undefined
|
|
21923
21998
|
}
|
|
21924
21999
|
}
|
|
21925
22000
|
}
|
|
@@ -21937,8 +22012,11 @@ export interface Routes {
|
|
|
21937
22012
|
connected_account_ids?: string[] | undefined
|
|
21938
22013
|
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) that you want to associate with the client session. */
|
|
21939
22014
|
connect_webview_ids?: string[] | undefined
|
|
21940
|
-
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.
|
|
22015
|
+
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.
|
|
22016
|
+
* @deprecated Use `user_identity_id`. */
|
|
21941
22017
|
user_identity_ids?: string[] | undefined
|
|
22018
|
+
/** ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session. */
|
|
22019
|
+
user_identity_id?: string | undefined
|
|
21942
22020
|
}
|
|
21943
22021
|
formData: {}
|
|
21944
22022
|
jsonResponse: {
|
|
@@ -21962,7 +22040,9 @@ export interface Routes {
|
|
|
21962
22040
|
customer_id?: string | undefined
|
|
21963
22041
|
connected_account_ids: string[]
|
|
21964
22042
|
connect_webview_ids: string[]
|
|
22043
|
+
/** deprecated: Use `user_identity_id`. */
|
|
21965
22044
|
user_identity_ids: string[]
|
|
22045
|
+
user_identity_id?: string | undefined
|
|
21966
22046
|
}
|
|
21967
22047
|
}
|
|
21968
22048
|
}
|
|
@@ -21996,7 +22076,9 @@ export interface Routes {
|
|
|
21996
22076
|
customer_id?: string | undefined
|
|
21997
22077
|
connected_account_ids: string[]
|
|
21998
22078
|
connect_webview_ids: string[]
|
|
22079
|
+
/** deprecated: Use `user_identity_id`. */
|
|
21999
22080
|
user_identity_ids: string[]
|
|
22081
|
+
user_identity_id?: string | undefined
|
|
22000
22082
|
}>
|
|
22001
22083
|
}
|
|
22002
22084
|
}
|
|
@@ -24119,6 +24201,13 @@ export interface Routes {
|
|
|
24119
24201
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24120
24202
|
error_code: 'subscription_required'
|
|
24121
24203
|
}
|
|
24204
|
+
| {
|
|
24205
|
+
message: string
|
|
24206
|
+
is_device_error: true
|
|
24207
|
+
created_at: string
|
|
24208
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
24209
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
24210
|
+
}
|
|
24122
24211
|
| {
|
|
24123
24212
|
/** Date and time at which Seam created the error. */
|
|
24124
24213
|
created_at: string
|
|
@@ -25756,6 +25845,13 @@ export interface Routes {
|
|
|
25756
25845
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25757
25846
|
error_code: 'subscription_required'
|
|
25758
25847
|
}
|
|
25848
|
+
| {
|
|
25849
|
+
message: string
|
|
25850
|
+
is_device_error: true
|
|
25851
|
+
created_at: string
|
|
25852
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
25853
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
25854
|
+
}
|
|
25759
25855
|
| {
|
|
25760
25856
|
/** Date and time at which Seam created the error. */
|
|
25761
25857
|
created_at: string
|
|
@@ -26219,6 +26315,13 @@ export interface Routes {
|
|
|
26219
26315
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26220
26316
|
error_code: 'subscription_required'
|
|
26221
26317
|
}
|
|
26318
|
+
| {
|
|
26319
|
+
message: string
|
|
26320
|
+
is_device_error: true
|
|
26321
|
+
created_at: string
|
|
26322
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26323
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
26324
|
+
}
|
|
26222
26325
|
| {
|
|
26223
26326
|
/** Date and time at which Seam created the error. */
|
|
26224
26327
|
created_at: string
|
|
@@ -26800,6 +26903,13 @@ export interface Routes {
|
|
|
26800
26903
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26801
26904
|
error_code: 'subscription_required'
|
|
26802
26905
|
}
|
|
26906
|
+
| {
|
|
26907
|
+
message: string
|
|
26908
|
+
is_device_error: true
|
|
26909
|
+
created_at: string
|
|
26910
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
26911
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
26912
|
+
}
|
|
26803
26913
|
| {
|
|
26804
26914
|
/** Date and time at which Seam created the error. */
|
|
26805
26915
|
created_at: string
|
|
@@ -31579,6 +31689,13 @@ export interface Routes {
|
|
|
31579
31689
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31580
31690
|
error_code: 'subscription_required'
|
|
31581
31691
|
}
|
|
31692
|
+
| {
|
|
31693
|
+
message: string
|
|
31694
|
+
is_device_error: true
|
|
31695
|
+
created_at: string
|
|
31696
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31697
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
31698
|
+
}
|
|
31582
31699
|
| {
|
|
31583
31700
|
/** Date and time at which Seam created the error. */
|
|
31584
31701
|
created_at: string
|
|
@@ -33018,6 +33135,13 @@ export interface Routes {
|
|
|
33018
33135
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
33019
33136
|
error_code: 'subscription_required'
|
|
33020
33137
|
}
|
|
33138
|
+
| {
|
|
33139
|
+
message: string
|
|
33140
|
+
is_device_error: true
|
|
33141
|
+
created_at: string
|
|
33142
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
33143
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
33144
|
+
}
|
|
33021
33145
|
| {
|
|
33022
33146
|
/** Date and time at which Seam created the error. */
|
|
33023
33147
|
created_at: string
|
|
@@ -34620,6 +34744,13 @@ export interface Routes {
|
|
|
34620
34744
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34621
34745
|
error_code: 'subscription_required'
|
|
34622
34746
|
}
|
|
34747
|
+
| {
|
|
34748
|
+
message: string
|
|
34749
|
+
is_device_error: true
|
|
34750
|
+
created_at: string
|
|
34751
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34752
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
34753
|
+
}
|
|
34623
34754
|
| {
|
|
34624
34755
|
/** Date and time at which Seam created the error. */
|
|
34625
34756
|
created_at: string
|
|
@@ -36058,6 +36189,13 @@ export interface Routes {
|
|
|
36058
36189
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36059
36190
|
error_code: 'subscription_required'
|
|
36060
36191
|
}
|
|
36192
|
+
| {
|
|
36193
|
+
message: string
|
|
36194
|
+
is_device_error: true
|
|
36195
|
+
created_at: string
|
|
36196
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36197
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
36198
|
+
}
|
|
36061
36199
|
| {
|
|
36062
36200
|
/** Date and time at which Seam created the error. */
|
|
36063
36201
|
created_at: string
|
|
@@ -42832,6 +42970,13 @@ export interface Routes {
|
|
|
42832
42970
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
42833
42971
|
error_code: 'subscription_required'
|
|
42834
42972
|
}
|
|
42973
|
+
| {
|
|
42974
|
+
message: string
|
|
42975
|
+
is_device_error: true
|
|
42976
|
+
created_at: string
|
|
42977
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
42978
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
42979
|
+
}
|
|
42835
42980
|
| {
|
|
42836
42981
|
/** Date and time at which Seam created the error. */
|
|
42837
42982
|
created_at: string
|
|
@@ -44270,6 +44415,13 @@ export interface Routes {
|
|
|
44270
44415
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44271
44416
|
error_code: 'subscription_required'
|
|
44272
44417
|
}
|
|
44418
|
+
| {
|
|
44419
|
+
message: string
|
|
44420
|
+
is_device_error: true
|
|
44421
|
+
created_at: string
|
|
44422
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
44423
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
44424
|
+
}
|
|
44273
44425
|
| {
|
|
44274
44426
|
/** Date and time at which Seam created the error. */
|
|
44275
44427
|
created_at: string
|
|
@@ -48987,7 +49139,9 @@ export interface Routes {
|
|
|
48987
49139
|
customer_id?: string | undefined
|
|
48988
49140
|
connected_account_ids: string[]
|
|
48989
49141
|
connect_webview_ids: string[]
|
|
49142
|
+
/** deprecated: Use `user_identity_id`. */
|
|
48990
49143
|
user_identity_ids: string[]
|
|
49144
|
+
user_identity_id?: string | undefined
|
|
48991
49145
|
}
|
|
48992
49146
|
}
|
|
48993
49147
|
}
|
|
@@ -54965,6 +55119,13 @@ export interface Routes {
|
|
|
54965
55119
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54966
55120
|
error_code: 'subscription_required'
|
|
54967
55121
|
}
|
|
55122
|
+
| {
|
|
55123
|
+
message: string
|
|
55124
|
+
is_device_error: true
|
|
55125
|
+
created_at: string
|
|
55126
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
55127
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
55128
|
+
}
|
|
54968
55129
|
| {
|
|
54969
55130
|
/** Date and time at which Seam created the error. */
|
|
54970
55131
|
created_at: string
|
|
@@ -59129,6 +59290,13 @@ export interface Routes {
|
|
|
59129
59290
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
59130
59291
|
error_code: 'subscription_required'
|
|
59131
59292
|
}
|
|
59293
|
+
| {
|
|
59294
|
+
message: string
|
|
59295
|
+
is_device_error: true
|
|
59296
|
+
created_at: string
|
|
59297
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
59298
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
59299
|
+
}
|
|
59132
59300
|
| {
|
|
59133
59301
|
/** Date and time at which Seam created the error. */
|
|
59134
59302
|
created_at: string
|
|
@@ -60567,6 +60735,13 @@ export interface Routes {
|
|
|
60567
60735
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
60568
60736
|
error_code: 'subscription_required'
|
|
60569
60737
|
}
|
|
60738
|
+
| {
|
|
60739
|
+
message: string
|
|
60740
|
+
is_device_error: true
|
|
60741
|
+
created_at: string
|
|
60742
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
60743
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
60744
|
+
}
|
|
60570
60745
|
| {
|
|
60571
60746
|
/** Date and time at which Seam created the error. */
|
|
60572
60747
|
created_at: string
|
|
@@ -68526,6 +68701,13 @@ export interface Routes {
|
|
|
68526
68701
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68527
68702
|
error_code: 'subscription_required'
|
|
68528
68703
|
}
|
|
68704
|
+
| {
|
|
68705
|
+
message: string
|
|
68706
|
+
is_device_error: true
|
|
68707
|
+
created_at: string
|
|
68708
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68709
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
68710
|
+
}
|
|
68529
68711
|
| {
|
|
68530
68712
|
/** Date and time at which Seam created the error. */
|
|
68531
68713
|
created_at: string
|
|
@@ -69966,6 +70148,13 @@ export interface Routes {
|
|
|
69966
70148
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
69967
70149
|
error_code: 'subscription_required'
|
|
69968
70150
|
}
|
|
70151
|
+
| {
|
|
70152
|
+
message: string
|
|
70153
|
+
is_device_error: true
|
|
70154
|
+
created_at: string
|
|
70155
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70156
|
+
error_code: 'lockly_missing_wifi_bridge'
|
|
70157
|
+
}
|
|
69969
70158
|
| {
|
|
69970
70159
|
/** Date and time at which Seam created the error. */
|
|
69971
70160
|
created_at: string
|