@seamapi/types 1.865.0 → 1.866.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 +22 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -0
- package/dist/index.cjs +22 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +22 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +10 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +26 -0
- package/src/lib/seam/connect/route-types.ts +14 -0
|
@@ -23553,6 +23553,11 @@ export type Routes = {
|
|
|
23553
23553
|
commonParams: {
|
|
23554
23554
|
/** ID of the encoder to use for the scan. */
|
|
23555
23555
|
acs_encoder_id: string;
|
|
23556
|
+
/** Salto KS-specific metadata for the scan action. */
|
|
23557
|
+
salto_ks_metadata?: {
|
|
23558
|
+
/** When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false. */
|
|
23559
|
+
detect_new_tags?: boolean;
|
|
23560
|
+
} | undefined;
|
|
23556
23561
|
};
|
|
23557
23562
|
formData: {};
|
|
23558
23563
|
jsonResponse: {
|
|
@@ -25071,6 +25076,11 @@ export type Routes = {
|
|
|
25071
25076
|
acs_user_id?: string | undefined;
|
|
25072
25077
|
/** ID of the `user_identity` to assign the scanned credential to. If the ACS system contains an ACS user linked to this user identity, it is used. Otherwise, one is created. */
|
|
25073
25078
|
user_identity_id?: string | undefined;
|
|
25079
|
+
/** Salto KS-specific metadata for the scan action. */
|
|
25080
|
+
salto_ks_metadata?: {
|
|
25081
|
+
/** When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false. */
|
|
25082
|
+
detect_new_tags?: boolean;
|
|
25083
|
+
} | undefined;
|
|
25074
25084
|
};
|
|
25075
25085
|
formData: {};
|
|
25076
25086
|
jsonResponse: {
|
package/package.json
CHANGED
|
@@ -45754,6 +45754,19 @@ const openapi: OpenAPISpec = {
|
|
|
45754
45754
|
format: 'uuid',
|
|
45755
45755
|
type: 'string',
|
|
45756
45756
|
},
|
|
45757
|
+
salto_ks_metadata: {
|
|
45758
|
+
description:
|
|
45759
|
+
'Salto KS-specific metadata for the scan action.',
|
|
45760
|
+
properties: {
|
|
45761
|
+
detect_new_tags: {
|
|
45762
|
+
default: false,
|
|
45763
|
+
description:
|
|
45764
|
+
'When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false.',
|
|
45765
|
+
type: 'boolean',
|
|
45766
|
+
},
|
|
45767
|
+
},
|
|
45768
|
+
type: 'object',
|
|
45769
|
+
},
|
|
45757
45770
|
},
|
|
45758
45771
|
required: ['acs_encoder_id'],
|
|
45759
45772
|
type: 'object',
|
|
@@ -45819,6 +45832,19 @@ const openapi: OpenAPISpec = {
|
|
|
45819
45832
|
format: 'uuid',
|
|
45820
45833
|
type: 'string',
|
|
45821
45834
|
},
|
|
45835
|
+
salto_ks_metadata: {
|
|
45836
|
+
description:
|
|
45837
|
+
'Salto KS-specific metadata for the scan action.',
|
|
45838
|
+
properties: {
|
|
45839
|
+
detect_new_tags: {
|
|
45840
|
+
default: false,
|
|
45841
|
+
description:
|
|
45842
|
+
'When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false.',
|
|
45843
|
+
type: 'boolean',
|
|
45844
|
+
},
|
|
45845
|
+
},
|
|
45846
|
+
type: 'object',
|
|
45847
|
+
},
|
|
45822
45848
|
user_identity_id: {
|
|
45823
45849
|
description:
|
|
45824
45850
|
'ID of the `user_identity` to assign the scanned credential to. If the ACS system contains an ACS user linked to this user identity, it is used. Otherwise, one is created.',
|
|
@@ -27330,6 +27330,13 @@ export type Routes = {
|
|
|
27330
27330
|
commonParams: {
|
|
27331
27331
|
/** ID of the encoder to use for the scan. */
|
|
27332
27332
|
acs_encoder_id: string
|
|
27333
|
+
/** Salto KS-specific metadata for the scan action. */
|
|
27334
|
+
salto_ks_metadata?:
|
|
27335
|
+
| {
|
|
27336
|
+
/** When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false. */
|
|
27337
|
+
detect_new_tags?: boolean
|
|
27338
|
+
}
|
|
27339
|
+
| undefined
|
|
27333
27340
|
}
|
|
27334
27341
|
formData: {}
|
|
27335
27342
|
jsonResponse: {
|
|
@@ -29100,6 +29107,13 @@ export type Routes = {
|
|
|
29100
29107
|
acs_user_id?: string | undefined
|
|
29101
29108
|
/** ID of the `user_identity` to assign the scanned credential to. If the ACS system contains an ACS user linked to this user identity, it is used. Otherwise, one is created. */
|
|
29102
29109
|
user_identity_id?: string | undefined
|
|
29110
|
+
/** Salto KS-specific metadata for the scan action. */
|
|
29111
|
+
salto_ks_metadata?:
|
|
29112
|
+
| {
|
|
29113
|
+
/** When true, activates tag registration mode on the encoder to detect new, unregistered tags. When false, only detects existing tags already registered in the system. Defaults to false. */
|
|
29114
|
+
detect_new_tags?: boolean
|
|
29115
|
+
}
|
|
29116
|
+
| undefined
|
|
29103
29117
|
}
|
|
29104
29118
|
formData: {}
|
|
29105
29119
|
jsonResponse: {
|