@seamapi/types 1.481.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 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +24 -2
- package/dist/index.cjs +24 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +24 -2
- package/lib/seam/connect/openapi.js +24 -8
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +24 -8
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',
|