@seamapi/types 1.252.1 → 1.252.2
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 +62 -62
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +364 -364
- package/lib/seam/connect/openapi.d.ts +84 -84
- package/lib/seam/connect/openapi.js +62 -62
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +220 -220
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +62 -62
- package/src/lib/seam/connect/route-types.ts +338 -338
package/dist/connect.cjs
CHANGED
|
@@ -9110,68 +9110,6 @@ var openapi_default = {
|
|
|
9110
9110
|
"x-fern-sdk-return-value": "acs_entrances"
|
|
9111
9111
|
}
|
|
9112
9112
|
},
|
|
9113
|
-
"/acs/credentials/read_card": {
|
|
9114
|
-
post: {
|
|
9115
|
-
operationId: "acsCredentialsReadCardPost",
|
|
9116
|
-
requestBody: {
|
|
9117
|
-
content: {
|
|
9118
|
-
"application/json": {
|
|
9119
|
-
schema: {
|
|
9120
|
-
oneOf: [
|
|
9121
|
-
{
|
|
9122
|
-
properties: {
|
|
9123
|
-
acs_system_id: { format: "uuid", type: "string" },
|
|
9124
|
-
device_name: { type: "string" }
|
|
9125
|
-
},
|
|
9126
|
-
required: ["acs_system_id", "device_name"],
|
|
9127
|
-
type: "object"
|
|
9128
|
-
},
|
|
9129
|
-
{
|
|
9130
|
-
properties: {
|
|
9131
|
-
device_id: { format: "uuid", type: "string" }
|
|
9132
|
-
},
|
|
9133
|
-
required: ["device_id"],
|
|
9134
|
-
type: "object"
|
|
9135
|
-
}
|
|
9136
|
-
]
|
|
9137
|
-
}
|
|
9138
|
-
}
|
|
9139
|
-
}
|
|
9140
|
-
},
|
|
9141
|
-
responses: {
|
|
9142
|
-
200: {
|
|
9143
|
-
content: {
|
|
9144
|
-
"application/json": {
|
|
9145
|
-
schema: {
|
|
9146
|
-
properties: {
|
|
9147
|
-
action_attempt: {
|
|
9148
|
-
$ref: "#/components/schemas/action_attempt"
|
|
9149
|
-
},
|
|
9150
|
-
ok: { type: "boolean" }
|
|
9151
|
-
},
|
|
9152
|
-
required: ["action_attempt", "ok"],
|
|
9153
|
-
type: "object"
|
|
9154
|
-
}
|
|
9155
|
-
}
|
|
9156
|
-
},
|
|
9157
|
-
description: "OK"
|
|
9158
|
-
},
|
|
9159
|
-
400: { description: "Bad Request" },
|
|
9160
|
-
401: { description: "Unauthorized" }
|
|
9161
|
-
},
|
|
9162
|
-
security: [
|
|
9163
|
-
{ pat_with_workspace: [] },
|
|
9164
|
-
{ console_session: [] },
|
|
9165
|
-
{ api_key: [] }
|
|
9166
|
-
],
|
|
9167
|
-
summary: "/acs/credentials/read_card",
|
|
9168
|
-
tags: ["/acs"],
|
|
9169
|
-
"x-fern-sdk-group-name": ["acs", "credentials"],
|
|
9170
|
-
"x-fern-sdk-method-name": "read_card",
|
|
9171
|
-
"x-fern-sdk-return-value": "action_attempt",
|
|
9172
|
-
"x-undocumented": "Reading a card is currently unimplemented."
|
|
9173
|
-
}
|
|
9174
|
-
},
|
|
9175
9113
|
"/acs/credentials/unassign": {
|
|
9176
9114
|
patch: {
|
|
9177
9115
|
operationId: "acsCredentialsUnassignPatch",
|
|
@@ -9707,6 +9645,68 @@ var openapi_default = {
|
|
|
9707
9645
|
"x-fern-sdk-method-name": "update"
|
|
9708
9646
|
}
|
|
9709
9647
|
},
|
|
9648
|
+
"/acs/encoders/read_card": {
|
|
9649
|
+
post: {
|
|
9650
|
+
operationId: "acsEncodersReadCardPost",
|
|
9651
|
+
requestBody: {
|
|
9652
|
+
content: {
|
|
9653
|
+
"application/json": {
|
|
9654
|
+
schema: {
|
|
9655
|
+
oneOf: [
|
|
9656
|
+
{
|
|
9657
|
+
properties: {
|
|
9658
|
+
acs_system_id: { format: "uuid", type: "string" },
|
|
9659
|
+
device_name: { type: "string" }
|
|
9660
|
+
},
|
|
9661
|
+
required: ["acs_system_id", "device_name"],
|
|
9662
|
+
type: "object"
|
|
9663
|
+
},
|
|
9664
|
+
{
|
|
9665
|
+
properties: {
|
|
9666
|
+
device_id: { format: "uuid", type: "string" }
|
|
9667
|
+
},
|
|
9668
|
+
required: ["device_id"],
|
|
9669
|
+
type: "object"
|
|
9670
|
+
}
|
|
9671
|
+
]
|
|
9672
|
+
}
|
|
9673
|
+
}
|
|
9674
|
+
}
|
|
9675
|
+
},
|
|
9676
|
+
responses: {
|
|
9677
|
+
200: {
|
|
9678
|
+
content: {
|
|
9679
|
+
"application/json": {
|
|
9680
|
+
schema: {
|
|
9681
|
+
properties: {
|
|
9682
|
+
action_attempt: {
|
|
9683
|
+
$ref: "#/components/schemas/action_attempt"
|
|
9684
|
+
},
|
|
9685
|
+
ok: { type: "boolean" }
|
|
9686
|
+
},
|
|
9687
|
+
required: ["action_attempt", "ok"],
|
|
9688
|
+
type: "object"
|
|
9689
|
+
}
|
|
9690
|
+
}
|
|
9691
|
+
},
|
|
9692
|
+
description: "OK"
|
|
9693
|
+
},
|
|
9694
|
+
400: { description: "Bad Request" },
|
|
9695
|
+
401: { description: "Unauthorized" }
|
|
9696
|
+
},
|
|
9697
|
+
security: [
|
|
9698
|
+
{ pat_with_workspace: [] },
|
|
9699
|
+
{ console_session: [] },
|
|
9700
|
+
{ api_key: [] }
|
|
9701
|
+
],
|
|
9702
|
+
summary: "/acs/encoders/read_card",
|
|
9703
|
+
tags: ["/acs"],
|
|
9704
|
+
"x-fern-sdk-group-name": ["acs", "encoders"],
|
|
9705
|
+
"x-fern-sdk-method-name": "read_card",
|
|
9706
|
+
"x-fern-sdk-return-value": "action_attempt",
|
|
9707
|
+
"x-undocumented": "Reading a card is currently unimplemented."
|
|
9708
|
+
}
|
|
9709
|
+
},
|
|
9710
9710
|
"/acs/entrances/get": {
|
|
9711
9711
|
post: {
|
|
9712
9712
|
operationId: "acsEntrancesGetPost",
|