@seamapi/types 1.480.0 → 1.482.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 +24 -16
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +24 -82
- package/dist/index.cjs +24 -16
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +24 -82
- package/lib/seam/connect/openapi.js +24 -16
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +24 -16
package/package.json
CHANGED
|
@@ -36033,13 +36033,14 @@ export default {
|
|
|
36033
36033
|
user_identity_id: {
|
|
36034
36034
|
description:
|
|
36035
36035
|
'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.',
|
|
36036
|
+
format: 'uuid',
|
|
36036
36037
|
type: 'string',
|
|
36037
36038
|
},
|
|
36038
36039
|
user_identity_ids: {
|
|
36039
36040
|
deprecated: true,
|
|
36040
36041
|
description:
|
|
36041
36042
|
'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.',
|
|
36042
|
-
items: { type: 'string' },
|
|
36043
|
+
items: { format: 'uuid', type: 'string' },
|
|
36043
36044
|
maxItems: 1,
|
|
36044
36045
|
minItems: 1,
|
|
36045
36046
|
type: 'array',
|
|
@@ -36132,13 +36133,14 @@ export default {
|
|
|
36132
36133
|
user_identity_id: {
|
|
36133
36134
|
description:
|
|
36134
36135
|
'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.',
|
|
36136
|
+
format: 'uuid',
|
|
36135
36137
|
type: 'string',
|
|
36136
36138
|
},
|
|
36137
36139
|
user_identity_ids: {
|
|
36138
36140
|
deprecated: true,
|
|
36139
36141
|
description:
|
|
36140
36142
|
'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.',
|
|
36141
|
-
items: { type: 'string' },
|
|
36143
|
+
items: { format: 'uuid', type: 'string' },
|
|
36142
36144
|
maxItems: 1,
|
|
36143
36145
|
minItems: 1,
|
|
36144
36146
|
type: 'array',
|
|
@@ -36293,6 +36295,7 @@ export default {
|
|
|
36293
36295
|
name: 'client_session_id',
|
|
36294
36296
|
schema: {
|
|
36295
36297
|
description: 'ID of the client session that you want to get.',
|
|
36298
|
+
format: 'uuid',
|
|
36296
36299
|
type: 'string',
|
|
36297
36300
|
},
|
|
36298
36301
|
},
|
|
@@ -36353,6 +36356,7 @@ export default {
|
|
|
36353
36356
|
client_session_id: {
|
|
36354
36357
|
description:
|
|
36355
36358
|
'ID of the client session that you want to get.',
|
|
36359
|
+
format: 'uuid',
|
|
36356
36360
|
type: 'string',
|
|
36357
36361
|
},
|
|
36358
36362
|
user_identifier_key: {
|
|
@@ -36439,13 +36443,14 @@ export default {
|
|
|
36439
36443
|
user_identity_id: {
|
|
36440
36444
|
description:
|
|
36441
36445
|
'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).',
|
|
36446
|
+
format: 'uuid',
|
|
36442
36447
|
type: 'string',
|
|
36443
36448
|
},
|
|
36444
36449
|
user_identity_ids: {
|
|
36445
36450
|
deprecated: true,
|
|
36446
36451
|
description:
|
|
36447
36452
|
'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.',
|
|
36448
|
-
items: { type: 'string' },
|
|
36453
|
+
items: { format: 'uuid', type: 'string' },
|
|
36449
36454
|
maxItems: 1,
|
|
36450
36455
|
minItems: 1,
|
|
36451
36456
|
type: 'array',
|
|
@@ -47916,7 +47921,11 @@ export default {
|
|
|
47916
47921
|
in: 'query',
|
|
47917
47922
|
name: 'customer_portal_id',
|
|
47918
47923
|
required: true,
|
|
47919
|
-
schema: {
|
|
47924
|
+
schema: {
|
|
47925
|
+
description: 'Customer portal ID.',
|
|
47926
|
+
format: 'uuid',
|
|
47927
|
+
type: 'string',
|
|
47928
|
+
},
|
|
47920
47929
|
},
|
|
47921
47930
|
],
|
|
47922
47931
|
responses: {
|
|
@@ -48005,6 +48014,7 @@ export default {
|
|
|
48005
48014
|
properties: {
|
|
48006
48015
|
customer_portal_id: {
|
|
48007
48016
|
description: 'Customer portal ID.',
|
|
48017
|
+
format: 'uuid',
|
|
48008
48018
|
type: 'string',
|
|
48009
48019
|
},
|
|
48010
48020
|
},
|
|
@@ -48523,7 +48533,10 @@ export default {
|
|
|
48523
48533
|
acs_entrances: {
|
|
48524
48534
|
items: {
|
|
48525
48535
|
properties: {
|
|
48526
|
-
acs_entrance_id: {
|
|
48536
|
+
acs_entrance_id: {
|
|
48537
|
+
format: 'uuid',
|
|
48538
|
+
type: 'string',
|
|
48539
|
+
},
|
|
48527
48540
|
name: { type: 'string' },
|
|
48528
48541
|
},
|
|
48529
48542
|
required: ['acs_entrance_id', 'name'],
|
|
@@ -48534,7 +48547,7 @@ export default {
|
|
|
48534
48547
|
devices: {
|
|
48535
48548
|
items: {
|
|
48536
48549
|
properties: {
|
|
48537
|
-
device_id: { type: 'string' },
|
|
48550
|
+
device_id: { format: 'uuid', type: 'string' },
|
|
48538
48551
|
device_type: {
|
|
48539
48552
|
enum: ['lock', 'thermostat', 'sensor'],
|
|
48540
48553
|
type: 'string',
|
|
@@ -48620,7 +48633,10 @@ export default {
|
|
|
48620
48633
|
acs_entrances: {
|
|
48621
48634
|
items: {
|
|
48622
48635
|
properties: {
|
|
48623
|
-
acs_entrance_id: {
|
|
48636
|
+
acs_entrance_id: {
|
|
48637
|
+
format: 'uuid',
|
|
48638
|
+
type: 'string',
|
|
48639
|
+
},
|
|
48624
48640
|
name: { type: 'string' },
|
|
48625
48641
|
},
|
|
48626
48642
|
required: ['acs_entrance_id', 'name'],
|
|
@@ -48631,7 +48647,7 @@ export default {
|
|
|
48631
48647
|
devices: {
|
|
48632
48648
|
items: {
|
|
48633
48649
|
properties: {
|
|
48634
|
-
device_id: { type: 'string' },
|
|
48650
|
+
device_id: { format: 'uuid', type: 'string' },
|
|
48635
48651
|
device_type: {
|
|
48636
48652
|
enum: ['lock', 'thermostat', 'sensor'],
|
|
48637
48653
|
type: 'string',
|
|
@@ -56128,7 +56144,6 @@ export default {
|
|
|
56128
56144
|
401: { description: 'Unauthorized' },
|
|
56129
56145
|
},
|
|
56130
56146
|
security: [
|
|
56131
|
-
{ client_session: [] },
|
|
56132
56147
|
{ client_session_with_customer: [] },
|
|
56133
56148
|
{ pat_with_workspace: [] },
|
|
56134
56149
|
{ console_session_with_workspace: [] },
|
|
@@ -56200,7 +56215,6 @@ export default {
|
|
|
56200
56215
|
401: { description: 'Unauthorized' },
|
|
56201
56216
|
},
|
|
56202
56217
|
security: [
|
|
56203
|
-
{ client_session: [] },
|
|
56204
56218
|
{ client_session_with_customer: [] },
|
|
56205
56219
|
{ pat_with_workspace: [] },
|
|
56206
56220
|
{ console_session_with_workspace: [] },
|
|
@@ -56275,7 +56289,6 @@ export default {
|
|
|
56275
56289
|
401: { description: 'Unauthorized' },
|
|
56276
56290
|
},
|
|
56277
56291
|
security: [
|
|
56278
|
-
{ client_session: [] },
|
|
56279
56292
|
{ client_session_with_customer: [] },
|
|
56280
56293
|
{ pat_with_workspace: [] },
|
|
56281
56294
|
{ console_session_with_workspace: [] },
|
|
@@ -56342,7 +56355,6 @@ export default {
|
|
|
56342
56355
|
401: { description: 'Unauthorized' },
|
|
56343
56356
|
},
|
|
56344
56357
|
security: [
|
|
56345
|
-
{ client_session: [] },
|
|
56346
56358
|
{ client_session_with_customer: [] },
|
|
56347
56359
|
{ pat_with_workspace: [] },
|
|
56348
56360
|
{ console_session_with_workspace: [] },
|
|
@@ -56407,7 +56419,6 @@ export default {
|
|
|
56407
56419
|
401: { description: 'Unauthorized' },
|
|
56408
56420
|
},
|
|
56409
56421
|
security: [
|
|
56410
|
-
{ client_session: [] },
|
|
56411
56422
|
{ client_session_with_customer: [] },
|
|
56412
56423
|
{ pat_with_workspace: [] },
|
|
56413
56424
|
{ console_session_with_workspace: [] },
|
|
@@ -56460,7 +56471,6 @@ export default {
|
|
|
56460
56471
|
401: { description: 'Unauthorized' },
|
|
56461
56472
|
},
|
|
56462
56473
|
security: [
|
|
56463
|
-
{ client_session: [] },
|
|
56464
56474
|
{ client_session_with_customer: [] },
|
|
56465
56475
|
{ pat_with_workspace: [] },
|
|
56466
56476
|
{ console_session_with_workspace: [] },
|
|
@@ -56510,7 +56520,6 @@ export default {
|
|
|
56510
56520
|
401: { description: 'Unauthorized' },
|
|
56511
56521
|
},
|
|
56512
56522
|
security: [
|
|
56513
|
-
{ client_session: [] },
|
|
56514
56523
|
{ client_session_with_customer: [] },
|
|
56515
56524
|
{ pat_with_workspace: [] },
|
|
56516
56525
|
{ console_session_with_workspace: [] },
|
|
@@ -56546,7 +56555,6 @@ export default {
|
|
|
56546
56555
|
401: { description: 'Unauthorized' },
|
|
56547
56556
|
},
|
|
56548
56557
|
security: [
|
|
56549
|
-
{ client_session: [] },
|
|
56550
56558
|
{ client_session_with_customer: [] },
|
|
56551
56559
|
{ pat_with_workspace: [] },
|
|
56552
56560
|
{ console_session_with_workspace: [] },
|