@seamapi/types 1.217.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 +12 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -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/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +11 -1
- package/src/lib/seam/connect/route-types.ts +3 -0
|
@@ -2757,6 +2757,7 @@ export interface Routes {
|
|
|
2757
2757
|
queryParams: {};
|
|
2758
2758
|
jsonBody: {};
|
|
2759
2759
|
commonParams: {
|
|
2760
|
+
/** ID of the desired access control system. */
|
|
2760
2761
|
acs_system_id: string;
|
|
2761
2762
|
};
|
|
2762
2763
|
formData: {};
|
|
@@ -5813,6 +5814,7 @@ export interface Routes {
|
|
|
5813
5814
|
workspace_id: string;
|
|
5814
5815
|
created_at: string;
|
|
5815
5816
|
occurred_at: string;
|
|
5817
|
+
event_description: string;
|
|
5816
5818
|
} | undefined;
|
|
5817
5819
|
message?: string | undefined;
|
|
5818
5820
|
};
|
|
@@ -5849,6 +5851,7 @@ export interface Routes {
|
|
|
5849
5851
|
workspace_id: string;
|
|
5850
5852
|
created_at: string;
|
|
5851
5853
|
occurred_at: string;
|
|
5854
|
+
event_description: string;
|
|
5852
5855
|
}>;
|
|
5853
5856
|
};
|
|
5854
5857
|
};
|
package/package.json
CHANGED
|
@@ -3604,6 +3604,7 @@ export default {
|
|
|
3604
3604
|
created_at: { format: 'date-time', type: 'string' },
|
|
3605
3605
|
device_id: { format: 'uuid', type: 'string' },
|
|
3606
3606
|
enrollment_automation_id: { format: 'uuid', type: 'string' },
|
|
3607
|
+
event_description: { type: 'string' },
|
|
3607
3608
|
event_id: { format: 'uuid', type: 'string' },
|
|
3608
3609
|
event_type: { type: 'string' },
|
|
3609
3610
|
occurred_at: { format: 'date-time', type: 'string' },
|
|
@@ -3615,6 +3616,7 @@ export default {
|
|
|
3615
3616
|
'workspace_id',
|
|
3616
3617
|
'created_at',
|
|
3617
3618
|
'occurred_at',
|
|
3619
|
+
'event_description',
|
|
3618
3620
|
],
|
|
3619
3621
|
type: 'object',
|
|
3620
3622
|
},
|
|
@@ -6695,13 +6697,19 @@ export default {
|
|
|
6695
6697
|
},
|
|
6696
6698
|
'/acs/systems/get': {
|
|
6697
6699
|
post: {
|
|
6700
|
+
description:
|
|
6701
|
+
'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.',
|
|
6698
6702
|
operationId: 'acsSystemsGetPost',
|
|
6699
6703
|
requestBody: {
|
|
6700
6704
|
content: {
|
|
6701
6705
|
'application/json': {
|
|
6702
6706
|
schema: {
|
|
6703
6707
|
properties: {
|
|
6704
|
-
acs_system_id: {
|
|
6708
|
+
acs_system_id: {
|
|
6709
|
+
description: 'ID of the desired access control system.',
|
|
6710
|
+
format: 'uuid',
|
|
6711
|
+
type: 'string',
|
|
6712
|
+
},
|
|
6705
6713
|
},
|
|
6706
6714
|
required: ['acs_system_id'],
|
|
6707
6715
|
type: 'object',
|
|
@@ -6738,6 +6746,8 @@ export default {
|
|
|
6738
6746
|
'x-fern-sdk-group-name': ['acs', 'systems'],
|
|
6739
6747
|
'x-fern-sdk-method-name': 'get',
|
|
6740
6748
|
'x-fern-sdk-return-value': 'acs_system',
|
|
6749
|
+
'x-response-key': 'acs_system',
|
|
6750
|
+
'x-title': 'Get an ACS System',
|
|
6741
6751
|
},
|
|
6742
6752
|
},
|
|
6743
6753
|
'/acs/systems/list': {
|
|
@@ -3100,6 +3100,7 @@ export interface Routes {
|
|
|
3100
3100
|
queryParams: {}
|
|
3101
3101
|
jsonBody: {}
|
|
3102
3102
|
commonParams: {
|
|
3103
|
+
/** ID of the desired access control system. */
|
|
3103
3104
|
acs_system_id: string
|
|
3104
3105
|
}
|
|
3105
3106
|
formData: {}
|
|
@@ -7303,6 +7304,7 @@ export interface Routes {
|
|
|
7303
7304
|
workspace_id: string
|
|
7304
7305
|
created_at: string
|
|
7305
7306
|
occurred_at: string
|
|
7307
|
+
event_description: string
|
|
7306
7308
|
}
|
|
7307
7309
|
| undefined
|
|
7308
7310
|
message?: string | undefined
|
|
@@ -7464,6 +7466,7 @@ export interface Routes {
|
|
|
7464
7466
|
workspace_id: string
|
|
7465
7467
|
created_at: string
|
|
7466
7468
|
occurred_at: string
|
|
7469
|
+
event_description: string
|
|
7467
7470
|
}>
|
|
7468
7471
|
}
|
|
7469
7472
|
}
|