@seamapi/types 1.77.0 → 1.79.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 +6 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +30 -5
- package/lib/seam/connect/openapi.d.ts +6 -3
- package/lib/seam/connect/openapi.js +5 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +24 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +5 -3
- package/src/lib/seam/connect/route-types.ts +27 -2
package/dist/connect.cjs
CHANGED
|
@@ -6277,9 +6277,9 @@ var openapi_default = {
|
|
|
6277
6277
|
"application/json": {
|
|
6278
6278
|
schema: {
|
|
6279
6279
|
properties: {
|
|
6280
|
-
acs_system_id: { format: "uuid", type: "string" }
|
|
6280
|
+
acs_system_id: { format: "uuid", type: "string" },
|
|
6281
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
6281
6282
|
},
|
|
6282
|
-
required: ["acs_system_id"],
|
|
6283
6283
|
type: "object"
|
|
6284
6284
|
}
|
|
6285
6285
|
}
|
|
@@ -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
|
}
|