@seamapi/types 1.339.0 → 1.340.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 +96 -0
- 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/openapi.d.ts +19 -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 +45 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/phone-properties.ts +6 -0
- package/src/lib/seam/connect/openapi.ts +12 -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
|
|
|
@@ -9141,6 +9144,13 @@ var openapi_default = {
|
|
|
9141
9144
|
},
|
|
9142
9145
|
required: ["has_active_endpoint", "endpoints"],
|
|
9143
9146
|
type: "object"
|
|
9147
|
+
},
|
|
9148
|
+
salto_space_credential_service_metadata: {
|
|
9149
|
+
properties: {
|
|
9150
|
+
has_active_phone: { type: "boolean" }
|
|
9151
|
+
},
|
|
9152
|
+
required: ["has_active_phone"],
|
|
9153
|
+
type: "object"
|
|
9144
9154
|
}
|
|
9145
9155
|
},
|
|
9146
9156
|
type: "object"
|
|
@@ -14857,6 +14867,11 @@ var openapi_default = {
|
|
|
14857
14867
|
},
|
|
14858
14868
|
required: ["has_active_endpoint", "endpoints"],
|
|
14859
14869
|
type: "object"
|
|
14870
|
+
},
|
|
14871
|
+
salto_space_credential_service_metadata: {
|
|
14872
|
+
properties: { has_active_phone: { type: "boolean" } },
|
|
14873
|
+
required: ["has_active_phone"],
|
|
14874
|
+
type: "object"
|
|
14860
14875
|
}
|
|
14861
14876
|
},
|
|
14862
14877
|
type: "object"
|