@seamapi/types 1.119.0 → 1.121.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 +39 -25
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +54 -40
- package/lib/seam/connect/openapi.d.ts +49 -37
- package/lib/seam/connect/openapi.js +37 -23
- 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 +37 -23
- package/src/lib/seam/connect/route-types.ts +8 -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
|
]
|
|
@@ -8424,7 +8434,9 @@ var openapi_default = {
|
|
|
8424
8434
|
"connected_account.completed_first_sync",
|
|
8425
8435
|
"connected_account.completed_first_sync_after_reconnection",
|
|
8426
8436
|
"noise_sensor.noise_threshold_triggered",
|
|
8427
|
-
"access_code.backup_access_code_pulled"
|
|
8437
|
+
"access_code.backup_access_code_pulled",
|
|
8438
|
+
"acs_user.deleted",
|
|
8439
|
+
"acs_credential.deleted"
|
|
8428
8440
|
],
|
|
8429
8441
|
type: "string"
|
|
8430
8442
|
},
|
|
@@ -8476,7 +8488,9 @@ var openapi_default = {
|
|
|
8476
8488
|
"connected_account.completed_first_sync",
|
|
8477
8489
|
"connected_account.completed_first_sync_after_reconnection",
|
|
8478
8490
|
"noise_sensor.noise_threshold_triggered",
|
|
8479
|
-
"access_code.backup_access_code_pulled"
|
|
8491
|
+
"access_code.backup_access_code_pulled",
|
|
8492
|
+
"acs_user.deleted",
|
|
8493
|
+
"acs_credential.deleted"
|
|
8480
8494
|
],
|
|
8481
8495
|
type: "string"
|
|
8482
8496
|
},
|