@seamapi/types 1.846.0 → 1.847.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 CHANGED
@@ -2656,6 +2656,12 @@ var unmanaged_access_code = access_code.pick({
2656
2656
  status: zod.z.enum(["set", "unset"]).describe(
2657
2657
  "Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device."
2658
2658
  ),
2659
+ cannot_be_managed: zod.z.literal(true).optional().describe(
2660
+ "Indicates that Seam cannot convert this unmanaged access code to a managed access code. Some providers do not support management of unmanaged access codes through API integrations."
2661
+ ),
2662
+ cannot_delete_unmanaged_access_code: zod.z.literal(true).optional().describe(
2663
+ "Indicates that Seam cannot delete this unmanaged access code through the provider. If this access code needs to be deleted, it will only be possible from the manufacturer app."
2664
+ ),
2659
2665
  dormakaba_oracode_metadata: dormakaba_oracode_access_code_metadata.nullable().optional().describe(
2660
2666
  "Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices."
2661
2667
  )
@@ -30828,6 +30834,16 @@ var openapi = {
30828
30834
  format: "uuid",
30829
30835
  type: "string"
30830
30836
  },
30837
+ cannot_be_managed: {
30838
+ description: "Indicates that Seam cannot convert this unmanaged access code to a managed access code. Some providers do not support management of unmanaged access codes through API integrations.",
30839
+ enum: [true],
30840
+ type: "boolean"
30841
+ },
30842
+ cannot_delete_unmanaged_access_code: {
30843
+ description: "Indicates that Seam cannot delete this unmanaged access code through the provider. If this access code needs to be deleted, it will only be possible from the manufacturer app.",
30844
+ enum: [true],
30845
+ type: "boolean"
30846
+ },
30831
30847
  code: {
30832
30848
  description: "Code used for access. Typically, a numeric or alphanumeric string.",
30833
30849
  nullable: true,