@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.
@@ -89187,6 +89187,11 @@ type Routes = {
89187
89187
  commonParams: {
89188
89188
  /** ID of the encoder to use for the scan. */
89189
89189
  acs_encoder_id: string;
89190
+ /** Salto KS-specific metadata for the scan action. */
89191
+ salto_ks_metadata?: {
89192
+ /** 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. */
89193
+ detect_new_tags?: boolean;
89194
+ } | undefined;
89190
89195
  };
89191
89196
  formData: {};
89192
89197
  jsonResponse: {
@@ -90705,6 +90710,11 @@ type Routes = {
90705
90710
  acs_user_id?: string | undefined;
90706
90711
  /** 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. */
90707
90712
  user_identity_id?: string | undefined;
90713
+ /** Salto KS-specific metadata for the scan action. */
90714
+ salto_ks_metadata?: {
90715
+ /** 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. */
90716
+ detect_new_tags?: boolean;
90717
+ } | undefined;
90708
90718
  };
90709
90719
  formData: {};
90710
90720
  jsonResponse: {
package/dist/index.cjs CHANGED
@@ -48342,6 +48342,17 @@ var openapi = {
48342
48342
  description: "ID of the encoder to use for the scan.",
48343
48343
  format: "uuid",
48344
48344
  type: "string"
48345
+ },
48346
+ salto_ks_metadata: {
48347
+ description: "Salto KS-specific metadata for the scan action.",
48348
+ properties: {
48349
+ detect_new_tags: {
48350
+ default: false,
48351
+ description: "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.",
48352
+ type: "boolean"
48353
+ }
48354
+ },
48355
+ type: "object"
48345
48356
  }
48346
48357
  },
48347
48358
  required: ["acs_encoder_id"],
@@ -48405,6 +48416,17 @@ var openapi = {
48405
48416
  format: "uuid",
48406
48417
  type: "string"
48407
48418
  },
48419
+ salto_ks_metadata: {
48420
+ description: "Salto KS-specific metadata for the scan action.",
48421
+ properties: {
48422
+ detect_new_tags: {
48423
+ default: false,
48424
+ description: "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.",
48425
+ type: "boolean"
48426
+ }
48427
+ },
48428
+ type: "object"
48429
+ },
48408
48430
  user_identity_id: {
48409
48431
  description: "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.",
48410
48432
  format: "uuid",