@seamapi/types 1.77.0 → 1.78.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 +4 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +24 -3
- package/lib/seam/connect/openapi.d.ts +2 -2
- package/lib/seam/connect/openapi.js +4 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +22 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4 -2
- package/src/lib/seam/connect/route-types.ts +25 -1
package/dist/connect.cjs
CHANGED
|
@@ -12178,10 +12178,12 @@ var openapi_default = {
|
|
|
12178
12178
|
"application/json": {
|
|
12179
12179
|
schema: {
|
|
12180
12180
|
properties: {
|
|
12181
|
-
|
|
12181
|
+
action_attempt: {
|
|
12182
|
+
$ref: "#/components/schemas/action_attempt"
|
|
12183
|
+
},
|
|
12182
12184
|
ok: { type: "boolean" }
|
|
12183
12185
|
},
|
|
12184
|
-
required: ["
|
|
12186
|
+
required: ["action_attempt", "ok"],
|
|
12185
12187
|
type: "object"
|
|
12186
12188
|
}
|
|
12187
12189
|
}
|