@seamapi/types 1.93.0 → 1.94.1
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 +44 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +76 -0
- package/lib/seam/connect/openapi.d.ts +65 -0
- package/lib/seam/connect/openapi.js +44 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +11 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +44 -1
- package/src/lib/seam/connect/route-types.ts +11 -0
package/dist/connect.cjs
CHANGED
|
@@ -8624,7 +8624,7 @@ var openapi_default = {
|
|
|
8624
8624
|
tags: ["/noise_sensors"],
|
|
8625
8625
|
"x-fern-sdk-group-name": ["noise_sensors", "noise_thresholds"],
|
|
8626
8626
|
"x-fern-sdk-method-name": "create",
|
|
8627
|
-
"x-fern-sdk-return-value": "
|
|
8627
|
+
"x-fern-sdk-return-value": "noise_threshold"
|
|
8628
8628
|
}
|
|
8629
8629
|
},
|
|
8630
8630
|
"/noise_sensors/noise_thresholds/delete": {
|
|
@@ -10362,6 +10362,49 @@ var openapi_default = {
|
|
|
10362
10362
|
"x-fern-sdk-method-name": "create"
|
|
10363
10363
|
}
|
|
10364
10364
|
},
|
|
10365
|
+
"/user_identities/delete": {
|
|
10366
|
+
post: {
|
|
10367
|
+
operationId: "userIdentitiesDeletePost",
|
|
10368
|
+
requestBody: {
|
|
10369
|
+
content: {
|
|
10370
|
+
"application/json": {
|
|
10371
|
+
schema: {
|
|
10372
|
+
properties: {
|
|
10373
|
+
user_identity_id: { format: "uuid", type: "string" }
|
|
10374
|
+
},
|
|
10375
|
+
required: ["user_identity_id"],
|
|
10376
|
+
type: "object"
|
|
10377
|
+
}
|
|
10378
|
+
}
|
|
10379
|
+
}
|
|
10380
|
+
},
|
|
10381
|
+
responses: {
|
|
10382
|
+
200: {
|
|
10383
|
+
content: {
|
|
10384
|
+
"application/json": {
|
|
10385
|
+
schema: {
|
|
10386
|
+
properties: { ok: { type: "boolean" } },
|
|
10387
|
+
required: ["ok"],
|
|
10388
|
+
type: "object"
|
|
10389
|
+
}
|
|
10390
|
+
}
|
|
10391
|
+
},
|
|
10392
|
+
description: "OK"
|
|
10393
|
+
},
|
|
10394
|
+
400: { description: "Bad Request" },
|
|
10395
|
+
401: { description: "Unauthorized" }
|
|
10396
|
+
},
|
|
10397
|
+
security: [
|
|
10398
|
+
{ access_token: [], seam_workspace: [] },
|
|
10399
|
+
{ seam_client_session_token: [] },
|
|
10400
|
+
{ client_session_token: [] }
|
|
10401
|
+
],
|
|
10402
|
+
summary: "/user_identities/delete",
|
|
10403
|
+
tags: ["/user_identities"],
|
|
10404
|
+
"x-fern-sdk-group-name": ["user_identities"],
|
|
10405
|
+
"x-fern-sdk-method-name": "delete"
|
|
10406
|
+
}
|
|
10407
|
+
},
|
|
10365
10408
|
"/user_identities/enrollment_automations/get": {
|
|
10366
10409
|
post: {
|
|
10367
10410
|
operationId: "userIdentitiesEnrollmentAutomationsGetPost",
|