@seamapi/types 1.265.0 → 1.266.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 +15 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +18 -0
- package/lib/seam/connect/models/acs/acs-system.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-system.js +11 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +7 -0
- package/lib/seam/connect/openapi.js +7 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +13 -0
- package/src/lib/seam/connect/openapi.ts +8 -0
- package/src/lib/seam/connect/route-types.ts +8 -0
|
@@ -5510,6 +5510,8 @@ export interface Routes {
|
|
|
5510
5510
|
jsonResponse: {
|
|
5511
5511
|
/** Represents an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
5512
5512
|
acs_system: {
|
|
5513
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
5514
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
5513
5515
|
/** ID of the `acs_system`. */
|
|
5514
5516
|
acs_system_id: string;
|
|
5515
5517
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
@@ -5613,6 +5615,8 @@ export interface Routes {
|
|
|
5613
5615
|
formData: {};
|
|
5614
5616
|
jsonResponse: {
|
|
5615
5617
|
acs_systems: Array<{
|
|
5618
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
5619
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
5616
5620
|
/** ID of the `acs_system`. */
|
|
5617
5621
|
acs_system_id: string;
|
|
5618
5622
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
@@ -5716,6 +5720,8 @@ export interface Routes {
|
|
|
5716
5720
|
formData: {};
|
|
5717
5721
|
jsonResponse: {
|
|
5718
5722
|
acs_systems: Array<{
|
|
5723
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
5724
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
5719
5725
|
/** ID of the `acs_system`. */
|
|
5720
5726
|
acs_system_id: string;
|
|
5721
5727
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
@@ -21170,6 +21176,8 @@ export interface Routes {
|
|
|
21170
21176
|
formData: {};
|
|
21171
21177
|
jsonResponse: {
|
|
21172
21178
|
acs_systems: Array<{
|
|
21179
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
21180
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined;
|
|
21173
21181
|
/** ID of the `acs_system`. */
|
|
21174
21182
|
acs_system_id: string;
|
|
21175
21183
|
/** Brand-specific terminology for the `acs_system` type. */
|
package/package.json
CHANGED
|
@@ -156,6 +156,19 @@ export type AcsSystemWarningMap = z.infer<typeof acs_system_warning_map>
|
|
|
156
156
|
|
|
157
157
|
export const acs_system = z
|
|
158
158
|
.object({
|
|
159
|
+
default_credential_manager_acs_system_id: z
|
|
160
|
+
.string()
|
|
161
|
+
.uuid()
|
|
162
|
+
.nullable()
|
|
163
|
+
.optional()
|
|
164
|
+
.describe(
|
|
165
|
+
`
|
|
166
|
+
---
|
|
167
|
+
draft: Needs review
|
|
168
|
+
---
|
|
169
|
+
ID of the default credential manager acs_system for this access control system.
|
|
170
|
+
`,
|
|
171
|
+
),
|
|
159
172
|
acs_system_id: z.string().uuid().describe('ID of the `acs_system`.'),
|
|
160
173
|
external_type: acs_system_external_type
|
|
161
174
|
.describe('Brand-specific terminology for the `acs_system` type.')
|
|
@@ -529,6 +529,14 @@ export default {
|
|
|
529
529
|
format: 'date-time',
|
|
530
530
|
type: 'string',
|
|
531
531
|
},
|
|
532
|
+
default_credential_manager_acs_system_id: {
|
|
533
|
+
description:
|
|
534
|
+
'ID of the default credential manager acs_system for this access control system.',
|
|
535
|
+
format: 'uuid',
|
|
536
|
+
nullable: true,
|
|
537
|
+
type: 'string',
|
|
538
|
+
'x-draft': 'Needs review',
|
|
539
|
+
},
|
|
532
540
|
errors: {
|
|
533
541
|
description: 'Errors associated with the `acs_system`.',
|
|
534
542
|
items: {
|
|
@@ -6463,6 +6463,8 @@ export interface Routes {
|
|
|
6463
6463
|
jsonResponse: {
|
|
6464
6464
|
/** Represents an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
6465
6465
|
acs_system: {
|
|
6466
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
6467
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
6466
6468
|
/** ID of the `acs_system`. */
|
|
6467
6469
|
acs_system_id: string
|
|
6468
6470
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
@@ -6596,6 +6598,8 @@ export interface Routes {
|
|
|
6596
6598
|
formData: {}
|
|
6597
6599
|
jsonResponse: {
|
|
6598
6600
|
acs_systems: Array<{
|
|
6601
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
6602
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
6599
6603
|
/** ID of the `acs_system`. */
|
|
6600
6604
|
acs_system_id: string
|
|
6601
6605
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
@@ -6729,6 +6733,8 @@ export interface Routes {
|
|
|
6729
6733
|
formData: {}
|
|
6730
6734
|
jsonResponse: {
|
|
6731
6735
|
acs_systems: Array<{
|
|
6736
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
6737
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
6732
6738
|
/** ID of the `acs_system`. */
|
|
6733
6739
|
acs_system_id: string
|
|
6734
6740
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
@@ -26858,6 +26864,8 @@ export interface Routes {
|
|
|
26858
26864
|
formData: {}
|
|
26859
26865
|
jsonResponse: {
|
|
26860
26866
|
acs_systems: Array<{
|
|
26867
|
+
/** ID of the default credential manager acs_system for this access control system. */
|
|
26868
|
+
default_credential_manager_acs_system_id?: (string | null) | undefined
|
|
26861
26869
|
/** ID of the `acs_system`. */
|
|
26862
26870
|
acs_system_id: string
|
|
26863
26871
|
/** Brand-specific terminology for the `acs_system` type. */
|