@seamapi/types 1.94.0 → 1.95.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 +19 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +30 -26
- package/lib/seam/connect/openapi.d.ts +25 -23
- package/lib/seam/connect/openapi.js +18 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -3
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +18 -10
- package/src/lib/seam/connect/route-types.ts +9 -3
package/dist/connect.cjs
CHANGED
|
@@ -3982,11 +3982,6 @@ var openapi_default = {
|
|
|
3982
3982
|
type: "string"
|
|
3983
3983
|
},
|
|
3984
3984
|
acs_user_id: { format: "uuid", type: "string" },
|
|
3985
|
-
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
3986
|
-
format: "uuid",
|
|
3987
|
-
type: "string"
|
|
3988
|
-
},
|
|
3989
|
-
card_format: { enum: ["TLCode", "rfid48"], type: "string" },
|
|
3990
3985
|
code: { pattern: "^\\d+$", type: "string" },
|
|
3991
3986
|
ends_at: { format: "date-time", type: "string" },
|
|
3992
3987
|
external_type: {
|
|
@@ -3999,8 +3994,21 @@ var openapi_default = {
|
|
|
3999
3994
|
type: "string"
|
|
4000
3995
|
},
|
|
4001
3996
|
is_multi_phone_sync_credential: { type: "boolean" },
|
|
4002
|
-
|
|
4003
|
-
|
|
3997
|
+
starts_at: { format: "date-time", type: "string" },
|
|
3998
|
+
visionline_metadata: {
|
|
3999
|
+
properties: {
|
|
4000
|
+
assa_abloy_credential_service_mobile_endpoint_id: {
|
|
4001
|
+
format: "uuid",
|
|
4002
|
+
type: "string"
|
|
4003
|
+
},
|
|
4004
|
+
card_format: {
|
|
4005
|
+
enum: ["TLCode", "rfid48"],
|
|
4006
|
+
type: "string"
|
|
4007
|
+
},
|
|
4008
|
+
is_override_key: { type: "boolean" }
|
|
4009
|
+
},
|
|
4010
|
+
type: "object"
|
|
4011
|
+
}
|
|
4004
4012
|
},
|
|
4005
4013
|
required: ["acs_user_id", "access_method"],
|
|
4006
4014
|
type: "object"
|
|
@@ -8624,7 +8632,7 @@ var openapi_default = {
|
|
|
8624
8632
|
tags: ["/noise_sensors"],
|
|
8625
8633
|
"x-fern-sdk-group-name": ["noise_sensors", "noise_thresholds"],
|
|
8626
8634
|
"x-fern-sdk-method-name": "create",
|
|
8627
|
-
"x-fern-sdk-return-value": "
|
|
8635
|
+
"x-fern-sdk-return-value": "noise_threshold"
|
|
8628
8636
|
}
|
|
8629
8637
|
},
|
|
8630
8638
|
"/noise_sensors/noise_thresholds/delete": {
|
|
@@ -10395,9 +10403,9 @@ var openapi_default = {
|
|
|
10395
10403
|
401: { description: "Unauthorized" }
|
|
10396
10404
|
},
|
|
10397
10405
|
security: [
|
|
10398
|
-
{
|
|
10399
|
-
{
|
|
10400
|
-
{
|
|
10406
|
+
{ api_key: [] },
|
|
10407
|
+
{ pat_with_workspace: [] },
|
|
10408
|
+
{ console_session: [] }
|
|
10401
10409
|
],
|
|
10402
10410
|
summary: "/user_identities/delete",
|
|
10403
10411
|
tags: ["/user_identities"],
|