@seamapi/types 1.285.0 → 1.286.1
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 +8 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +44 -1
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/models/acs/acs-encoder.d.ts +39 -0
- package/lib/seam/connect/models/acs/acs-encoder.js +22 -0
- package/lib/seam/connect/models/acs/acs-encoder.js.map +1 -0
- package/lib/seam/connect/models/acs/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/index.js +1 -0
- package/lib/seam/connect/models/acs/index.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +4 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/model-types.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-encoder.ts +30 -0
- package/src/lib/seam/connect/models/acs/index.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +6 -0
package/package.json
CHANGED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { z } from 'zod'
|
|
2
|
+
|
|
3
|
+
export const acs_encoder = z.object({
|
|
4
|
+
acs_encoder_id: z.string().uuid().describe('ID of the `acs_encoder`.'),
|
|
5
|
+
acs_system_id: z
|
|
6
|
+
.string()
|
|
7
|
+
.uuid()
|
|
8
|
+
.describe(
|
|
9
|
+
'ID of the access control system that contains the `acs_encoder`.',
|
|
10
|
+
),
|
|
11
|
+
workspace_id: z
|
|
12
|
+
.string()
|
|
13
|
+
.uuid()
|
|
14
|
+
.describe(
|
|
15
|
+
'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`.',
|
|
16
|
+
),
|
|
17
|
+
errors: z.array(
|
|
18
|
+
z.object({
|
|
19
|
+
error_code: z.string(),
|
|
20
|
+
message: z.string(),
|
|
21
|
+
}),
|
|
22
|
+
),
|
|
23
|
+
created_at: z
|
|
24
|
+
.string()
|
|
25
|
+
.datetime()
|
|
26
|
+
.describe('Date and time at which the `acs_encoder` was created.'),
|
|
27
|
+
display_name: z.string().describe('Display name for the `acs_encoder`.'),
|
|
28
|
+
})
|
|
29
|
+
|
|
30
|
+
export type AcsEncoder = z.infer<typeof acs_encoder>
|
|
@@ -2,6 +2,7 @@ export * from './acs-access-group.js'
|
|
|
2
2
|
export * from './acs-credential.js'
|
|
3
3
|
export * from './acs-credential-pool.js'
|
|
4
4
|
export * from './acs-credential-provisioning-automation.js'
|
|
5
|
+
export * from './acs-encoder.js'
|
|
5
6
|
export * from './acs-entrance.js'
|
|
6
7
|
export * from './acs-system.js'
|
|
7
8
|
export * from './acs-user.js'
|
|
@@ -7600,6 +7600,8 @@ export default {
|
|
|
7600
7600
|
'x-fern-sdk-method-name': 'get',
|
|
7601
7601
|
'x-fern-sdk-return-value': 'acs_access_group',
|
|
7602
7602
|
'x-response-key': 'acs_access_group',
|
|
7603
|
+
'x-undocumented':
|
|
7604
|
+
'No unmanaged access groups are currently implemented.',
|
|
7603
7605
|
},
|
|
7604
7606
|
},
|
|
7605
7607
|
'/acs/access_groups/unmanaged/list': {
|
|
@@ -7741,6 +7743,8 @@ export default {
|
|
|
7741
7743
|
'x-fern-sdk-method-name': 'list',
|
|
7742
7744
|
'x-fern-sdk-return-value': 'acs_access_groups',
|
|
7743
7745
|
'x-response-key': 'acs_access_groups',
|
|
7746
|
+
'x-undocumented':
|
|
7747
|
+
'No unmanaged access groups are currently implemented.',
|
|
7744
7748
|
},
|
|
7745
7749
|
},
|
|
7746
7750
|
'/acs/credential_pools/list': {
|
|
@@ -8760,6 +8764,7 @@ export default {
|
|
|
8760
8764
|
'x-fern-sdk-return-value': 'acs_credential',
|
|
8761
8765
|
'x-response-key': 'acs_credential',
|
|
8762
8766
|
'x-title': 'Get an Unmanaged Credential',
|
|
8767
|
+
'x-undocumented': 'No unmanaged credentials are currently implemented.',
|
|
8763
8768
|
},
|
|
8764
8769
|
},
|
|
8765
8770
|
'/acs/credentials/unmanaged/list': {
|
|
@@ -9039,6 +9044,7 @@ export default {
|
|
|
9039
9044
|
'x-fern-sdk-return-value': 'acs_credentials',
|
|
9040
9045
|
'x-response-key': 'acs_credentials',
|
|
9041
9046
|
'x-title': 'List Unmanaged Credentials',
|
|
9047
|
+
'x-undocumented': 'No unmanaged credentials are currently implemented.',
|
|
9042
9048
|
},
|
|
9043
9049
|
},
|
|
9044
9050
|
'/acs/credentials/update': {
|