@seamapi/types 1.416.2 → 1.417.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 +15 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +25 -0
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +16 -0
- package/lib/seam/connect/openapi.d.ts +10 -0
- package/lib/seam/connect/openapi.js +12 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +14 -0
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.cjs
CHANGED
|
@@ -2733,6 +2733,9 @@ var acs_entrance = zod.z.object({
|
|
|
2733
2733
|
display_name: zod.z.string().describe(
|
|
2734
2734
|
"Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
|
|
2735
2735
|
),
|
|
2736
|
+
connected_account_id: zod.z.string().uuid().describe(
|
|
2737
|
+
"ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
|
|
2738
|
+
),
|
|
2736
2739
|
errors: zod.z.array(
|
|
2737
2740
|
zod.z.object({
|
|
2738
2741
|
error_code: zod.z.string().describe(
|
|
@@ -7611,6 +7614,11 @@ var openapi_default = {
|
|
|
7611
7614
|
required: ["door_type", "door_name"],
|
|
7612
7615
|
type: "object"
|
|
7613
7616
|
},
|
|
7617
|
+
connected_account_id: {
|
|
7618
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
7619
|
+
format: "uuid",
|
|
7620
|
+
type: "string"
|
|
7621
|
+
},
|
|
7614
7622
|
created_at: {
|
|
7615
7623
|
description: "Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created.",
|
|
7616
7624
|
format: "date-time",
|
|
@@ -7790,6 +7798,7 @@ var openapi_default = {
|
|
|
7790
7798
|
"acs_entrance_id",
|
|
7791
7799
|
"created_at",
|
|
7792
7800
|
"display_name",
|
|
7801
|
+
"connected_account_id",
|
|
7793
7802
|
"errors"
|
|
7794
7803
|
],
|
|
7795
7804
|
type: "object",
|
|
@@ -21867,6 +21876,11 @@ var openapi_default = {
|
|
|
21867
21876
|
required: ["door_type", "door_name"],
|
|
21868
21877
|
type: "object"
|
|
21869
21878
|
},
|
|
21879
|
+
connected_account_id: {
|
|
21880
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
21881
|
+
format: "uuid",
|
|
21882
|
+
type: "string"
|
|
21883
|
+
},
|
|
21870
21884
|
created_at: {
|
|
21871
21885
|
description: "Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created.",
|
|
21872
21886
|
format: "date-time",
|
|
@@ -22046,6 +22060,7 @@ var openapi_default = {
|
|
|
22046
22060
|
"acs_entrance_id",
|
|
22047
22061
|
"created_at",
|
|
22048
22062
|
"display_name",
|
|
22063
|
+
"connected_account_id",
|
|
22049
22064
|
"errors"
|
|
22050
22065
|
],
|
|
22051
22066
|
type: "object",
|