@seamapi/types 1.451.0 → 1.453.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 +103 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +211 -4
- package/dist/index.cjs +103 -14
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +3 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +4 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +171 -2
- package/lib/seam/connect/openapi.js +93 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +37 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +104 -4
- package/src/lib/seam/connect/route-types.ts +37 -2
|
@@ -1614,6 +1614,11 @@ export default {
|
|
|
1614
1614
|
type: 'array',
|
|
1615
1615
|
'x-deprecated': 'Use `space_ids`.',
|
|
1616
1616
|
},
|
|
1617
|
+
name: {
|
|
1618
|
+
description: 'Name of the Access Grant. If not provided, the display name will be computed.',
|
|
1619
|
+
nullable: true,
|
|
1620
|
+
type: 'string',
|
|
1621
|
+
},
|
|
1617
1622
|
requested_access_methods: {
|
|
1618
1623
|
description: 'Access methods that the user requested for the Access Grant.',
|
|
1619
1624
|
items: {
|
|
@@ -1677,6 +1682,7 @@ export default {
|
|
|
1677
1682
|
'space_ids',
|
|
1678
1683
|
'requested_access_methods',
|
|
1679
1684
|
'access_method_ids',
|
|
1685
|
+
'name',
|
|
1680
1686
|
'display_name',
|
|
1681
1687
|
'created_at',
|
|
1682
1688
|
],
|
|
@@ -23942,6 +23948,27 @@ export default {
|
|
|
23942
23948
|
type: 'string',
|
|
23943
23949
|
},
|
|
23944
23950
|
},
|
|
23951
|
+
{
|
|
23952
|
+
in: 'query',
|
|
23953
|
+
name: 'limit',
|
|
23954
|
+
required: false,
|
|
23955
|
+
schema: {
|
|
23956
|
+
default: 300000,
|
|
23957
|
+
description: 'Numerical limit on the number of unmanaged access codes to return.',
|
|
23958
|
+
format: 'float',
|
|
23959
|
+
type: 'number',
|
|
23960
|
+
},
|
|
23961
|
+
},
|
|
23962
|
+
{
|
|
23963
|
+
in: 'query',
|
|
23964
|
+
name: 'page_cursor',
|
|
23965
|
+
required: false,
|
|
23966
|
+
schema: {
|
|
23967
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
23968
|
+
nullable: true,
|
|
23969
|
+
type: 'string',
|
|
23970
|
+
},
|
|
23971
|
+
},
|
|
23945
23972
|
],
|
|
23946
23973
|
responses: {
|
|
23947
23974
|
200: {
|
|
@@ -23956,8 +23983,9 @@ export default {
|
|
|
23956
23983
|
type: 'array',
|
|
23957
23984
|
},
|
|
23958
23985
|
ok: { type: 'boolean' },
|
|
23986
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
23959
23987
|
},
|
|
23960
|
-
required: ['access_codes', 'ok'],
|
|
23988
|
+
required: ['access_codes', 'pagination', 'ok'],
|
|
23961
23989
|
type: 'object',
|
|
23962
23990
|
},
|
|
23963
23991
|
},
|
|
@@ -23994,6 +24022,17 @@ export default {
|
|
|
23994
24022
|
format: 'uuid',
|
|
23995
24023
|
type: 'string',
|
|
23996
24024
|
},
|
|
24025
|
+
limit: {
|
|
24026
|
+
default: 300000,
|
|
24027
|
+
description: 'Numerical limit on the number of unmanaged access codes to return.',
|
|
24028
|
+
format: 'float',
|
|
24029
|
+
type: 'number',
|
|
24030
|
+
},
|
|
24031
|
+
page_cursor: {
|
|
24032
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
24033
|
+
nullable: true,
|
|
24034
|
+
type: 'string',
|
|
24035
|
+
},
|
|
23997
24036
|
user_identifier_key: {
|
|
23998
24037
|
description: 'Your user ID for the user by which to filter unmanaged access codes.',
|
|
23999
24038
|
type: 'string',
|
|
@@ -24018,8 +24057,9 @@ export default {
|
|
|
24018
24057
|
type: 'array',
|
|
24019
24058
|
},
|
|
24020
24059
|
ok: { type: 'boolean' },
|
|
24060
|
+
pagination: { $ref: '#/components/schemas/pagination' },
|
|
24021
24061
|
},
|
|
24022
|
-
required: ['access_codes', 'ok'],
|
|
24062
|
+
required: ['access_codes', 'pagination', 'ok'],
|
|
24023
24063
|
type: 'object',
|
|
24024
24064
|
},
|
|
24025
24065
|
},
|
|
@@ -24812,6 +24852,11 @@ export default {
|
|
|
24812
24852
|
type: 'array',
|
|
24813
24853
|
'x-deprecated': 'Use `space_ids`.',
|
|
24814
24854
|
},
|
|
24855
|
+
name: {
|
|
24856
|
+
description: 'Name for the access grant.',
|
|
24857
|
+
nullable: true,
|
|
24858
|
+
type: 'string',
|
|
24859
|
+
},
|
|
24815
24860
|
requested_access_methods: {
|
|
24816
24861
|
items: {
|
|
24817
24862
|
properties: {
|
|
@@ -25282,6 +25327,11 @@ export default {
|
|
|
25282
25327
|
nullable: true,
|
|
25283
25328
|
type: 'string',
|
|
25284
25329
|
},
|
|
25330
|
+
name: {
|
|
25331
|
+
description: 'Display name for the access grant.',
|
|
25332
|
+
nullable: true,
|
|
25333
|
+
type: 'string',
|
|
25334
|
+
},
|
|
25285
25335
|
starts_at: {
|
|
25286
25336
|
description: 'Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
25287
25337
|
format: 'date-time',
|
|
@@ -25344,6 +25394,11 @@ export default {
|
|
|
25344
25394
|
nullable: true,
|
|
25345
25395
|
type: 'string',
|
|
25346
25396
|
},
|
|
25397
|
+
name: {
|
|
25398
|
+
description: 'Display name for the access grant.',
|
|
25399
|
+
nullable: true,
|
|
25400
|
+
type: 'string',
|
|
25401
|
+
},
|
|
25347
25402
|
starts_at: {
|
|
25348
25403
|
description: 'Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
25349
25404
|
format: 'date-time',
|
|
@@ -29238,6 +29293,7 @@ export default {
|
|
|
29238
29293
|
{ client_session: [] },
|
|
29239
29294
|
{ pat_with_workspace: [] },
|
|
29240
29295
|
{ console_session_with_workspace: [] },
|
|
29296
|
+
{ client_session_with_customer: [] },
|
|
29241
29297
|
],
|
|
29242
29298
|
summary: '/acs/entrances/list',
|
|
29243
29299
|
tags: ['/acs'],
|
|
@@ -29335,6 +29391,7 @@ export default {
|
|
|
29335
29391
|
{ client_session: [] },
|
|
29336
29392
|
{ pat_with_workspace: [] },
|
|
29337
29393
|
{ console_session_with_workspace: [] },
|
|
29394
|
+
{ client_session_with_customer: [] },
|
|
29338
29395
|
],
|
|
29339
29396
|
summary: '/acs/entrances/list',
|
|
29340
29397
|
tags: ['/acs'],
|
|
@@ -43871,6 +43928,7 @@ export default {
|
|
|
43871
43928
|
{ pat_with_workspace: [] },
|
|
43872
43929
|
{ console_session_with_workspace: [] },
|
|
43873
43930
|
{ api_key: [] },
|
|
43931
|
+
{ client_session_with_customer: [] },
|
|
43874
43932
|
],
|
|
43875
43933
|
summary: '/spaces/remove_acs_entrances',
|
|
43876
43934
|
tags: [],
|
|
@@ -43925,6 +43983,7 @@ export default {
|
|
|
43925
43983
|
{ pat_with_workspace: [] },
|
|
43926
43984
|
{ console_session_with_workspace: [] },
|
|
43927
43985
|
{ api_key: [] },
|
|
43986
|
+
{ client_session_with_customer: [] },
|
|
43928
43987
|
],
|
|
43929
43988
|
summary: '/spaces/remove_acs_entrances',
|
|
43930
43989
|
tags: [],
|
|
@@ -43981,6 +44040,7 @@ export default {
|
|
|
43981
44040
|
{ pat_with_workspace: [] },
|
|
43982
44041
|
{ console_session_with_workspace: [] },
|
|
43983
44042
|
{ api_key: [] },
|
|
44043
|
+
{ client_session_with_customer: [] },
|
|
43984
44044
|
],
|
|
43985
44045
|
summary: '/spaces/remove_devices',
|
|
43986
44046
|
tags: [],
|
|
@@ -44035,6 +44095,7 @@ export default {
|
|
|
44035
44095
|
{ pat_with_workspace: [] },
|
|
44036
44096
|
{ console_session_with_workspace: [] },
|
|
44037
44097
|
{ api_key: [] },
|
|
44098
|
+
{ client_session_with_customer: [] },
|
|
44038
44099
|
],
|
|
44039
44100
|
summary: '/spaces/remove_devices',
|
|
44040
44101
|
tags: [],
|
|
@@ -44054,14 +44115,27 @@ export default {
|
|
|
44054
44115
|
'application/json': {
|
|
44055
44116
|
schema: {
|
|
44056
44117
|
properties: {
|
|
44118
|
+
acs_entrance_ids: {
|
|
44119
|
+
description: 'IDs of the entrances that you want to set for the space. If specified, this will replace all existing entrances.',
|
|
44120
|
+
items: { format: 'uuid', type: 'string' },
|
|
44121
|
+
type: 'array',
|
|
44122
|
+
},
|
|
44123
|
+
device_ids: {
|
|
44124
|
+
description: 'IDs of the devices that you want to set for the space. If specified, this will replace all existing devices.',
|
|
44125
|
+
items: { format: 'uuid', type: 'string' },
|
|
44126
|
+
type: 'array',
|
|
44127
|
+
},
|
|
44057
44128
|
name: { description: 'Name of the space.', type: 'string' },
|
|
44058
44129
|
space_id: {
|
|
44059
44130
|
description: 'ID of the space that you want to update.',
|
|
44060
44131
|
format: 'uuid',
|
|
44061
44132
|
type: 'string',
|
|
44062
44133
|
},
|
|
44134
|
+
space_key: {
|
|
44135
|
+
description: 'Unique key of the space that you want to update.',
|
|
44136
|
+
type: 'string',
|
|
44137
|
+
},
|
|
44063
44138
|
},
|
|
44064
|
-
required: ['space_id'],
|
|
44065
44139
|
type: 'object',
|
|
44066
44140
|
},
|
|
44067
44141
|
},
|
|
@@ -44090,6 +44164,7 @@ export default {
|
|
|
44090
44164
|
{ pat_with_workspace: [] },
|
|
44091
44165
|
{ console_session_with_workspace: [] },
|
|
44092
44166
|
{ api_key: [] },
|
|
44167
|
+
{ client_session_with_customer: [] },
|
|
44093
44168
|
],
|
|
44094
44169
|
summary: '/spaces/update',
|
|
44095
44170
|
tags: [],
|
|
@@ -44108,14 +44183,27 @@ export default {
|
|
|
44108
44183
|
'application/json': {
|
|
44109
44184
|
schema: {
|
|
44110
44185
|
properties: {
|
|
44186
|
+
acs_entrance_ids: {
|
|
44187
|
+
description: 'IDs of the entrances that you want to set for the space. If specified, this will replace all existing entrances.',
|
|
44188
|
+
items: { format: 'uuid', type: 'string' },
|
|
44189
|
+
type: 'array',
|
|
44190
|
+
},
|
|
44191
|
+
device_ids: {
|
|
44192
|
+
description: 'IDs of the devices that you want to set for the space. If specified, this will replace all existing devices.',
|
|
44193
|
+
items: { format: 'uuid', type: 'string' },
|
|
44194
|
+
type: 'array',
|
|
44195
|
+
},
|
|
44111
44196
|
name: { description: 'Name of the space.', type: 'string' },
|
|
44112
44197
|
space_id: {
|
|
44113
44198
|
description: 'ID of the space that you want to update.',
|
|
44114
44199
|
format: 'uuid',
|
|
44115
44200
|
type: 'string',
|
|
44116
44201
|
},
|
|
44202
|
+
space_key: {
|
|
44203
|
+
description: 'Unique key of the space that you want to update.',
|
|
44204
|
+
type: 'string',
|
|
44205
|
+
},
|
|
44117
44206
|
},
|
|
44118
|
-
required: ['space_id'],
|
|
44119
44207
|
type: 'object',
|
|
44120
44208
|
},
|
|
44121
44209
|
},
|
|
@@ -44144,6 +44232,7 @@ export default {
|
|
|
44144
44232
|
{ pat_with_workspace: [] },
|
|
44145
44233
|
{ console_session_with_workspace: [] },
|
|
44146
44234
|
{ api_key: [] },
|
|
44235
|
+
{ client_session_with_customer: [] },
|
|
44147
44236
|
],
|
|
44148
44237
|
summary: '/spaces/update',
|
|
44149
44238
|
tags: [],
|