@seamapi/types 1.119.0 → 1.120.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 +33 -23
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +52 -38
- package/lib/seam/connect/openapi.d.ts +49 -37
- package/lib/seam/connect/openapi.js +33 -23
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +33 -23
- package/src/lib/seam/connect/route-types.ts +4 -1
package/dist/connect.cjs
CHANGED
|
@@ -4459,34 +4459,44 @@ var openapi_default = {
|
|
|
4459
4459
|
content: {
|
|
4460
4460
|
"application/json": {
|
|
4461
4461
|
schema: {
|
|
4462
|
-
|
|
4463
|
-
{
|
|
4464
|
-
properties: {
|
|
4465
|
-
acs_user_id: { format: "uuid", type: "string" }
|
|
4466
|
-
},
|
|
4467
|
-
required: ["acs_user_id"],
|
|
4468
|
-
type: "object"
|
|
4469
|
-
},
|
|
4470
|
-
{
|
|
4471
|
-
properties: {
|
|
4472
|
-
acs_system_id: { format: "uuid", type: "string" }
|
|
4473
|
-
},
|
|
4474
|
-
required: ["acs_system_id"],
|
|
4475
|
-
type: "object"
|
|
4476
|
-
},
|
|
4462
|
+
allOf: [
|
|
4477
4463
|
{
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
4482
|
-
|
|
4483
|
-
|
|
4464
|
+
oneOf: [
|
|
4465
|
+
{
|
|
4466
|
+
properties: {
|
|
4467
|
+
acs_user_id: { format: "uuid", type: "string" }
|
|
4468
|
+
},
|
|
4469
|
+
required: ["acs_user_id"],
|
|
4470
|
+
type: "object"
|
|
4471
|
+
},
|
|
4472
|
+
{
|
|
4473
|
+
properties: {
|
|
4474
|
+
acs_system_id: { format: "uuid", type: "string" }
|
|
4475
|
+
},
|
|
4476
|
+
required: ["acs_system_id"],
|
|
4477
|
+
type: "object"
|
|
4478
|
+
},
|
|
4479
|
+
{
|
|
4480
|
+
properties: {
|
|
4481
|
+
acs_system_id: { format: "uuid", type: "string" },
|
|
4482
|
+
acs_user_id: { format: "uuid", type: "string" }
|
|
4483
|
+
},
|
|
4484
|
+
required: ["acs_user_id", "acs_system_id"],
|
|
4485
|
+
type: "object"
|
|
4486
|
+
},
|
|
4487
|
+
{
|
|
4488
|
+
properties: {
|
|
4489
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
4490
|
+
},
|
|
4491
|
+
required: ["user_identity_id"],
|
|
4492
|
+
type: "object"
|
|
4493
|
+
}
|
|
4494
|
+
]
|
|
4484
4495
|
},
|
|
4485
4496
|
{
|
|
4486
4497
|
properties: {
|
|
4487
|
-
|
|
4498
|
+
is_multi_phone_sync_credential: { type: "boolean" }
|
|
4488
4499
|
},
|
|
4489
|
-
required: ["user_identity_id"],
|
|
4490
4500
|
type: "object"
|
|
4491
4501
|
}
|
|
4492
4502
|
]
|