@seamapi/types 1.470.0 → 1.472.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.
Files changed (29) hide show
  1. package/dist/connect.cjs +34 -4
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +104 -1
  4. package/dist/index.cjs +34 -4
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-entrance.d.ts +13 -0
  7. package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
  8. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  9. package/lib/seam/connect/models/acs/metadata/dormakaba-ambiance.d.ts +9 -0
  10. package/lib/seam/connect/models/acs/metadata/dormakaba-ambiance.js +9 -0
  11. package/lib/seam/connect/models/acs/metadata/dormakaba-ambiance.js.map +1 -0
  12. package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
  13. package/lib/seam/connect/models/acs/metadata/index.js +1 -0
  14. package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
  15. package/lib/seam/connect/models/batch.d.ts +95 -0
  16. package/lib/seam/connect/models/instant-keys/instant-key.js +1 -2
  17. package/lib/seam/connect/models/instant-keys/instant-key.js.map +1 -1
  18. package/lib/seam/connect/models/phones/phone-session.d.ts +56 -0
  19. package/lib/seam/connect/openapi.d.ts +22 -1
  20. package/lib/seam/connect/openapi.js +23 -2
  21. package/lib/seam/connect/openapi.js.map +1 -1
  22. package/lib/seam/connect/route-types.d.ts +50 -0
  23. package/package.json +1 -1
  24. package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
  25. package/src/lib/seam/connect/models/acs/metadata/dormakaba-ambiance.ts +17 -0
  26. package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
  27. package/src/lib/seam/connect/models/instant-keys/instant-key.ts +1 -2
  28. package/src/lib/seam/connect/openapi.ts +27 -2
  29. package/src/lib/seam/connect/route-types.ts +70 -0
package/dist/connect.cjs CHANGED
@@ -2369,6 +2369,13 @@ var acs_credential_vostio_metadata = zod.z.object({
2369
2369
  }).describe(
2370
2370
  "ASSA ABLOY Vostio-specific metadata associated with the credential."
2371
2371
  );
2372
+ var acs_entrance_dormakaba_ambiance_metadata = zod.z.object({
2373
+ access_point_name: zod.z.string().describe(
2374
+ "Name of the access point in the dormakaba Ambiance access system."
2375
+ )
2376
+ }).describe(
2377
+ "dormakaba Ambiance-specific metadata associated with the entrance."
2378
+ );
2372
2379
  var acs_entrance_dormakaba_community_metadata = zod.z.object({
2373
2380
  access_point_name: zod.z.string().describe(
2374
2381
  "Name of the access point in the dormakaba Community access system."
@@ -2783,6 +2790,9 @@ var acs_entrance = zod.z.object({
2783
2790
  ),
2784
2791
  salto_space_metadata: acs_entrance_salto_space_metadata.optional().describe(
2785
2792
  "Salto Space-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
2793
+ ),
2794
+ dormakaba_ambiance_metadata: acs_entrance_dormakaba_ambiance_metadata.optional().describe(
2795
+ "dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
2786
2796
  )
2787
2797
  }).merge(acs_entrance_capability_flags).describe(`
2788
2798
  ---
@@ -5329,8 +5339,7 @@ var instant_key = zod.z.object({
5329
5339
  expires_at: zod.z.string().datetime().describe("Date and time at which the Instant Key expires.")
5330
5340
  }).describe(`
5331
5341
  ---
5332
- route_path: /user_identities
5333
- undocumented: Unreleased.
5342
+ route_path: /instant_keys
5334
5343
  ---
5335
5344
  Represents a Seam Instant Key. For issuing Bluetooth mobile keys, Instant Keys are the fastest way to share access. With a single API call, you can create a mobile key and send it through text or email or embed it in your own app.
5336
5345
 
@@ -7827,6 +7836,17 @@ var openapi_default = {
7827
7836
  description: "Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
7828
7837
  type: "string"
7829
7838
  },
7839
+ dormakaba_ambiance_metadata: {
7840
+ description: "dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
7841
+ properties: {
7842
+ access_point_name: {
7843
+ description: "Name of the access point in the dormakaba Ambiance access system.",
7844
+ type: "string"
7845
+ }
7846
+ },
7847
+ required: ["access_point_name"],
7848
+ type: "object"
7849
+ },
7830
7850
  dormakaba_community_metadata: {
7831
7851
  description: "dormakaba Community-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
7832
7852
  properties: {
@@ -22576,8 +22596,7 @@ var openapi_default = {
22576
22596
  "expires_at"
22577
22597
  ],
22578
22598
  type: "object",
22579
- "x-route-path": "/user_identities",
22580
- "x-undocumented": "Unreleased."
22599
+ "x-route-path": "/instant_keys"
22581
22600
  },
22582
22601
  location: {
22583
22602
  properties: {
@@ -22990,6 +23009,17 @@ var openapi_default = {
22990
23009
  description: "Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
22991
23010
  type: "string"
22992
23011
  },
23012
+ dormakaba_ambiance_metadata: {
23013
+ description: "dormakaba Ambiance-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
23014
+ properties: {
23015
+ access_point_name: {
23016
+ description: "Name of the access point in the dormakaba Ambiance access system.",
23017
+ type: "string"
23018
+ }
23019
+ },
23020
+ required: ["access_point_name"],
23021
+ type: "object"
23022
+ },
22993
23023
  dormakaba_community_metadata: {
22994
23024
  description: "dormakaba Community-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
22995
23025
  properties: {