@seamapi/types 1.864.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.
@@ -79707,6 +79707,8 @@ type Routes = {
79707
79707
  acs_system_id?: string | undefined;
79708
79708
  /** ID of the entrance by which you want to filter the list of Access Grants. */
79709
79709
  acs_entrance_id?: string | undefined;
79710
+ /** ID of the device by which you want to filter the list of Access Grants. */
79711
+ device_id?: string | undefined;
79710
79712
  /**
79711
79713
  * @deprecated Use `space_id`.*/
79712
79714
  location_id?: string | undefined;
@@ -89185,6 +89187,11 @@ type Routes = {
89185
89187
  commonParams: {
89186
89188
  /** ID of the encoder to use for the scan. */
89187
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;
89188
89195
  };
89189
89196
  formData: {};
89190
89197
  jsonResponse: {
@@ -90703,6 +90710,11 @@ type Routes = {
90703
90710
  acs_user_id?: string | undefined;
90704
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. */
90705
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;
90706
90718
  };
90707
90719
  formData: {};
90708
90720
  jsonResponse: {
package/dist/index.cjs CHANGED
@@ -39908,6 +39908,15 @@ var openapi = {
39908
39908
  type: "string"
39909
39909
  }
39910
39910
  },
39911
+ {
39912
+ in: "query",
39913
+ name: "device_id",
39914
+ schema: {
39915
+ description: "ID of the device by which you want to filter the list of Access Grants.",
39916
+ format: "uuid",
39917
+ type: "string"
39918
+ }
39919
+ },
39911
39920
  {
39912
39921
  in: "query",
39913
39922
  name: "location_id",
@@ -40028,6 +40037,11 @@ var openapi = {
40028
40037
  description: "Customer key for which you want to list access grants.",
40029
40038
  type: "string"
40030
40039
  },
40040
+ device_id: {
40041
+ description: "ID of the device by which you want to filter the list of Access Grants.",
40042
+ format: "uuid",
40043
+ type: "string"
40044
+ },
40031
40045
  limit: {
40032
40046
  default: 500,
40033
40047
  description: "Numerical limit on the number of access grants to return.",
@@ -48328,6 +48342,17 @@ var openapi = {
48328
48342
  description: "ID of the encoder to use for the scan.",
48329
48343
  format: "uuid",
48330
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"
48331
48356
  }
48332
48357
  },
48333
48358
  required: ["acs_encoder_id"],
@@ -48391,6 +48416,17 @@ var openapi = {
48391
48416
  format: "uuid",
48392
48417
  type: "string"
48393
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
+ },
48394
48430
  user_identity_id: {
48395
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.",
48396
48432
  format: "uuid",