@seamapi/types 1.606.0 → 1.608.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 +11 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +36 -0
- package/dist/index.cjs +11 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credentials/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/acs-credentials/index.js +2 -0
- package/lib/seam/connect/models/acs/acs-credentials/index.js.map +1 -0
- package/lib/seam/connect/models/acs/acs-credentials/pending-mutations.d.ts +83 -0
- package/lib/seam/connect/models/acs/acs-credentials/pending-mutations.js +28 -0
- package/lib/seam/connect/models/acs/acs-credentials/pending-mutations.js.map +1 -0
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +6 -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/acs/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/index.js +1 -0
- package/lib/seam/connect/models/acs/index.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +25 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +16 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +20 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credentials/index.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-credentials/pending-mutations.ts +51 -0
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/models/acs/index.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +10 -0
- package/src/lib/seam/connect/route-types.ts +20 -0
package/dist/connect.cjs
CHANGED
|
@@ -2945,6 +2945,9 @@ var acs_entrance_capability_flags = zod.z.object({
|
|
|
2945
2945
|
),
|
|
2946
2946
|
can_unlock_with_code: zod.z.boolean().optional().describe(
|
|
2947
2947
|
"Indicates whether the ACS entrance can be unlocked with pin codes."
|
|
2948
|
+
),
|
|
2949
|
+
can_belong_to_reservation: zod.z.boolean().optional().describe(
|
|
2950
|
+
"Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key."
|
|
2948
2951
|
)
|
|
2949
2952
|
});
|
|
2950
2953
|
var acs_entrance = zod.z.object({
|
|
@@ -8262,6 +8265,10 @@ var openapi_default = {
|
|
|
8262
8265
|
required: ["door_type", "door_name"],
|
|
8263
8266
|
type: "object"
|
|
8264
8267
|
},
|
|
8268
|
+
can_belong_to_reservation: {
|
|
8269
|
+
description: "Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key.",
|
|
8270
|
+
type: "boolean"
|
|
8271
|
+
},
|
|
8265
8272
|
can_unlock_with_card: {
|
|
8266
8273
|
description: "Indicates whether the ACS entrance can be unlocked with card credentials.",
|
|
8267
8274
|
type: "boolean"
|
|
@@ -23689,6 +23696,10 @@ var openapi_default = {
|
|
|
23689
23696
|
required: ["door_type", "door_name"],
|
|
23690
23697
|
type: "object"
|
|
23691
23698
|
},
|
|
23699
|
+
can_belong_to_reservation: {
|
|
23700
|
+
description: "Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key.",
|
|
23701
|
+
type: "boolean"
|
|
23702
|
+
},
|
|
23692
23703
|
can_unlock_with_card: {
|
|
23693
23704
|
description: "Indicates whether the ACS entrance can be unlocked with card credentials.",
|
|
23694
23705
|
type: "boolean"
|