@seamapi/types 1.216.0 → 1.218.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 +32 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +50 -0
- package/dist/devicedb.cjs +20 -4
- package/dist/devicedb.cjs.map +1 -1
- package/dist/devicedb.d.cts +192 -4
- package/lib/seam/connect/models/devices/device-provider.d.ts +12 -0
- package/lib/seam/connect/models/devices/device.d.ts +24 -0
- package/lib/seam/connect/models/devices/phone.d.ts +12 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +16 -0
- package/lib/seam/connect/openapi.d.ts +7 -0
- package/lib/seam/connect/openapi.js +10 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -0
- package/lib/seam/devicedb/models/device-capability.d.ts +24 -0
- package/lib/seam/devicedb/models/device-capability.js +8 -0
- package/lib/seam/devicedb/models/device-capability.js.map +1 -1
- package/lib/seam/devicedb/models/device-model.d.ts +66 -2
- package/lib/seam/devicedb/models/device-model.js +8 -0
- package/lib/seam/devicedb/models/device-model.js.map +1 -1
- package/lib/seam/devicedb/route-specs.d.ts +98 -2
- package/lib/seam/devicedb/route-types.d.ts +16 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +11 -1
- package/src/lib/seam/connect/route-types.ts +3 -0
- package/src/lib/seam/devicedb/models/device-capability.ts +8 -0
- package/src/lib/seam/devicedb/models/device-model.ts +8 -0
- package/src/lib/seam/devicedb/route-types.ts +16 -0
|
@@ -3045,6 +3045,9 @@ declare const _default: {
|
|
|
3045
3045
|
format: string;
|
|
3046
3046
|
type: string;
|
|
3047
3047
|
};
|
|
3048
|
+
event_description: {
|
|
3049
|
+
type: string;
|
|
3050
|
+
};
|
|
3048
3051
|
event_id: {
|
|
3049
3052
|
format: string;
|
|
3050
3053
|
type: string;
|
|
@@ -7404,6 +7407,7 @@ declare const _default: {
|
|
|
7404
7407
|
};
|
|
7405
7408
|
'/acs/systems/get': {
|
|
7406
7409
|
post: {
|
|
7410
|
+
description: string;
|
|
7407
7411
|
operationId: string;
|
|
7408
7412
|
requestBody: {
|
|
7409
7413
|
content: {
|
|
@@ -7411,6 +7415,7 @@ declare const _default: {
|
|
|
7411
7415
|
schema: {
|
|
7412
7416
|
properties: {
|
|
7413
7417
|
acs_system_id: {
|
|
7418
|
+
description: string;
|
|
7414
7419
|
format: string;
|
|
7415
7420
|
type: string;
|
|
7416
7421
|
};
|
|
@@ -7466,6 +7471,8 @@ declare const _default: {
|
|
|
7466
7471
|
'x-fern-sdk-group-name': string[];
|
|
7467
7472
|
'x-fern-sdk-method-name': string;
|
|
7468
7473
|
'x-fern-sdk-return-value': string;
|
|
7474
|
+
'x-response-key': string;
|
|
7475
|
+
'x-title': string;
|
|
7469
7476
|
};
|
|
7470
7477
|
};
|
|
7471
7478
|
'/acs/systems/list': {
|
|
@@ -3537,6 +3537,7 @@ export default {
|
|
|
3537
3537
|
created_at: { format: 'date-time', type: 'string' },
|
|
3538
3538
|
device_id: { format: 'uuid', type: 'string' },
|
|
3539
3539
|
enrollment_automation_id: { format: 'uuid', type: 'string' },
|
|
3540
|
+
event_description: { type: 'string' },
|
|
3540
3541
|
event_id: { format: 'uuid', type: 'string' },
|
|
3541
3542
|
event_type: { type: 'string' },
|
|
3542
3543
|
occurred_at: { format: 'date-time', type: 'string' },
|
|
@@ -3548,6 +3549,7 @@ export default {
|
|
|
3548
3549
|
'workspace_id',
|
|
3549
3550
|
'created_at',
|
|
3550
3551
|
'occurred_at',
|
|
3552
|
+
'event_description',
|
|
3551
3553
|
],
|
|
3552
3554
|
type: 'object',
|
|
3553
3555
|
},
|
|
@@ -6596,13 +6598,18 @@ export default {
|
|
|
6596
6598
|
},
|
|
6597
6599
|
'/acs/systems/get': {
|
|
6598
6600
|
post: {
|
|
6601
|
+
description: 'Returns a specified [access control system](https://docs.seam.co/latest/capability-guides/access-systems).\n\nSpecify the desired access control system by including the corresponding `acs_system_id` in the request body.',
|
|
6599
6602
|
operationId: 'acsSystemsGetPost',
|
|
6600
6603
|
requestBody: {
|
|
6601
6604
|
content: {
|
|
6602
6605
|
'application/json': {
|
|
6603
6606
|
schema: {
|
|
6604
6607
|
properties: {
|
|
6605
|
-
acs_system_id: {
|
|
6608
|
+
acs_system_id: {
|
|
6609
|
+
description: 'ID of the desired access control system.',
|
|
6610
|
+
format: 'uuid',
|
|
6611
|
+
type: 'string',
|
|
6612
|
+
},
|
|
6606
6613
|
},
|
|
6607
6614
|
required: ['acs_system_id'],
|
|
6608
6615
|
type: 'object',
|
|
@@ -6639,6 +6646,8 @@ export default {
|
|
|
6639
6646
|
'x-fern-sdk-group-name': ['acs', 'systems'],
|
|
6640
6647
|
'x-fern-sdk-method-name': 'get',
|
|
6641
6648
|
'x-fern-sdk-return-value': 'acs_system',
|
|
6649
|
+
'x-response-key': 'acs_system',
|
|
6650
|
+
'x-title': 'Get an ACS System',
|
|
6642
6651
|
},
|
|
6643
6652
|
},
|
|
6644
6653
|
'/acs/systems/list': {
|