@seamapi/types 1.538.0 → 1.540.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 +10 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +23 -23
- package/dist/index.cjs +10 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +21 -22
- package/lib/seam/connect/openapi.js +8 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +10 -6
- package/src/lib/seam/connect/route-types.ts +2 -1
|
@@ -4181,7 +4181,8 @@ export type Routes = {
|
|
|
4181
4181
|
queryParams: {};
|
|
4182
4182
|
jsonBody: {};
|
|
4183
4183
|
commonParams: {
|
|
4184
|
-
|
|
4184
|
+
/** Customer key for which you want to list access codes. */
|
|
4185
|
+
customer_key?: string | undefined;
|
|
4185
4186
|
/** ID of the device for which you want to list access codes. Specify either `device_id` or `access_code_ids`. */
|
|
4186
4187
|
device_id?: string | undefined;
|
|
4187
4188
|
/** IDs of the access codes that you want to retrieve. Specify either `device_id` or `access_code_ids`. */
|
package/package.json
CHANGED
|
@@ -26261,10 +26261,11 @@ export default {
|
|
|
26261
26261
|
parameters: [
|
|
26262
26262
|
{
|
|
26263
26263
|
in: 'query',
|
|
26264
|
-
name: '
|
|
26264
|
+
name: 'customer_key',
|
|
26265
26265
|
schema: {
|
|
26266
|
-
|
|
26267
|
-
|
|
26266
|
+
description:
|
|
26267
|
+
'Customer key for which you want to list access codes.',
|
|
26268
|
+
type: 'string',
|
|
26268
26269
|
},
|
|
26269
26270
|
},
|
|
26270
26271
|
{
|
|
@@ -26371,9 +26372,10 @@ export default {
|
|
|
26371
26372
|
items: { format: 'uuid', type: 'string' },
|
|
26372
26373
|
type: 'array',
|
|
26373
26374
|
},
|
|
26374
|
-
|
|
26375
|
-
|
|
26376
|
-
|
|
26375
|
+
customer_key: {
|
|
26376
|
+
description:
|
|
26377
|
+
'Customer key for which you want to list access codes.',
|
|
26378
|
+
type: 'string',
|
|
26377
26379
|
},
|
|
26378
26380
|
device_id: {
|
|
26379
26381
|
description:
|
|
@@ -50871,6 +50873,7 @@ export default {
|
|
|
50871
50873
|
{ pat_with_workspace: [] },
|
|
50872
50874
|
{ console_session_with_workspace: [] },
|
|
50873
50875
|
{ api_key: [] },
|
|
50876
|
+
{ client_session_with_customer: [] },
|
|
50874
50877
|
],
|
|
50875
50878
|
summary: '/spaces/get',
|
|
50876
50879
|
tags: [],
|
|
@@ -50939,6 +50942,7 @@ export default {
|
|
|
50939
50942
|
{ pat_with_workspace: [] },
|
|
50940
50943
|
{ console_session_with_workspace: [] },
|
|
50941
50944
|
{ api_key: [] },
|
|
50945
|
+
{ client_session_with_customer: [] },
|
|
50942
50946
|
],
|
|
50943
50947
|
summary: '/spaces/get',
|
|
50944
50948
|
tags: [],
|
|
@@ -4716,7 +4716,8 @@ export type Routes = {
|
|
|
4716
4716
|
queryParams: {}
|
|
4717
4717
|
jsonBody: {}
|
|
4718
4718
|
commonParams: {
|
|
4719
|
-
|
|
4719
|
+
/** Customer key for which you want to list access codes. */
|
|
4720
|
+
customer_key?: string | undefined
|
|
4720
4721
|
/** ID of the device for which you want to list access codes. Specify either `device_id` or `access_code_ids`. */
|
|
4721
4722
|
device_id?: string | undefined
|
|
4722
4723
|
/** IDs of the access codes that you want to retrieve. Specify either `device_id` or `access_code_ids`. */
|