@seamapi/types 1.339.0 → 1.340.1
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 +23 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +96 -87
- package/lib/seam/connect/models/devices/device.d.ts +19 -0
- package/lib/seam/connect/models/devices/phone-properties.d.ts +13 -0
- package/lib/seam/connect/models/devices/phone-properties.js +5 -0
- package/lib/seam/connect/models/devices/phone-properties.js.map +1 -1
- package/lib/seam/connect/models/devices/phone.d.ts +32 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +13 -0
- package/lib/seam/connect/models/events/acs/credentials.js +7 -4
- package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +19 -87
- package/lib/seam/connect/openapi.js +13 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +45 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/phone-properties.ts +6 -0
- package/src/lib/seam/connect/models/events/acs/credentials.ts +8 -7
- package/src/lib/seam/connect/openapi.ts +13 -0
- package/src/lib/seam/connect/route-types.ts +114 -0
package/dist/connect.cjs
CHANGED
|
@@ -811,6 +811,9 @@ var phone_specific_properties = zod.z.object({
|
|
|
811
811
|
is_active: zod.z.boolean()
|
|
812
812
|
})
|
|
813
813
|
)
|
|
814
|
+
}).optional(),
|
|
815
|
+
salto_space_credential_service_metadata: zod.z.object({
|
|
816
|
+
has_active_phone: zod.z.boolean()
|
|
814
817
|
}).optional()
|
|
815
818
|
});
|
|
816
819
|
|
|
@@ -2777,9 +2780,12 @@ var acs_credential_issued = acs_credential_event.extend({
|
|
|
2777
2780
|
`);
|
|
2778
2781
|
var acs_credential_reissued = acs_credential_event.extend({
|
|
2779
2782
|
event_type: zod.z.literal("acs_credential.reissued")
|
|
2780
|
-
}).describe(
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
+
}).describe(`
|
|
2784
|
+
---
|
|
2785
|
+
route_path: /acs/credentials
|
|
2786
|
+
---
|
|
2787
|
+
An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was reissued.
|
|
2788
|
+
`);
|
|
2783
2789
|
var acs_credential_events = [
|
|
2784
2790
|
acs_credential_deleted_event,
|
|
2785
2791
|
acs_credential_issued,
|
|
@@ -9141,6 +9147,13 @@ var openapi_default = {
|
|
|
9141
9147
|
},
|
|
9142
9148
|
required: ["has_active_endpoint", "endpoints"],
|
|
9143
9149
|
type: "object"
|
|
9150
|
+
},
|
|
9151
|
+
salto_space_credential_service_metadata: {
|
|
9152
|
+
properties: {
|
|
9153
|
+
has_active_phone: { type: "boolean" }
|
|
9154
|
+
},
|
|
9155
|
+
required: ["has_active_phone"],
|
|
9156
|
+
type: "object"
|
|
9144
9157
|
}
|
|
9145
9158
|
},
|
|
9146
9159
|
type: "object"
|
|
@@ -11759,7 +11772,8 @@ var openapi_default = {
|
|
|
11759
11772
|
"acs_credential_id",
|
|
11760
11773
|
"event_type"
|
|
11761
11774
|
],
|
|
11762
|
-
type: "object"
|
|
11775
|
+
type: "object",
|
|
11776
|
+
"x-route-path": "/acs/credentials"
|
|
11763
11777
|
},
|
|
11764
11778
|
{
|
|
11765
11779
|
description: "An [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was deleted.",
|
|
@@ -14857,6 +14871,11 @@ var openapi_default = {
|
|
|
14857
14871
|
},
|
|
14858
14872
|
required: ["has_active_endpoint", "endpoints"],
|
|
14859
14873
|
type: "object"
|
|
14874
|
+
},
|
|
14875
|
+
salto_space_credential_service_metadata: {
|
|
14876
|
+
properties: { has_active_phone: { type: "boolean" } },
|
|
14877
|
+
required: ["has_active_phone"],
|
|
14878
|
+
type: "object"
|
|
14860
14879
|
}
|
|
14861
14880
|
},
|
|
14862
14881
|
type: "object"
|