@seamapi/types 1.62.0 → 1.63.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 +53 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +120 -24
- package/lib/seam/connect/openapi.d.ts +108 -24
- package/lib/seam/connect/openapi.js +53 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +53 -6
- package/src/lib/seam/connect/route-types.ts +12 -0
package/dist/connect.cjs
CHANGED
|
@@ -4473,6 +4473,51 @@ var openapi_default = {
|
|
|
4473
4473
|
"x-fern-sdk-method-name": "get"
|
|
4474
4474
|
}
|
|
4475
4475
|
},
|
|
4476
|
+
"/acs/entrances/grant_access": {
|
|
4477
|
+
post: {
|
|
4478
|
+
operationId: "acsEntrancesGrantAccessPost",
|
|
4479
|
+
requestBody: {
|
|
4480
|
+
content: {
|
|
4481
|
+
"application/json": {
|
|
4482
|
+
schema: {
|
|
4483
|
+
properties: {
|
|
4484
|
+
acs_entrance_id: { format: "uuid", type: "string" },
|
|
4485
|
+
acs_user_id: { format: "uuid", type: "string" }
|
|
4486
|
+
},
|
|
4487
|
+
required: ["acs_entrance_id", "acs_user_id"],
|
|
4488
|
+
type: "object"
|
|
4489
|
+
}
|
|
4490
|
+
}
|
|
4491
|
+
}
|
|
4492
|
+
},
|
|
4493
|
+
responses: {
|
|
4494
|
+
200: {
|
|
4495
|
+
content: {
|
|
4496
|
+
"application/json": {
|
|
4497
|
+
schema: {
|
|
4498
|
+
properties: { ok: { type: "boolean" } },
|
|
4499
|
+
required: ["ok"],
|
|
4500
|
+
type: "object"
|
|
4501
|
+
}
|
|
4502
|
+
}
|
|
4503
|
+
},
|
|
4504
|
+
description: "OK"
|
|
4505
|
+
},
|
|
4506
|
+
400: { description: "Bad Request" },
|
|
4507
|
+
401: { description: "Unauthorized" }
|
|
4508
|
+
},
|
|
4509
|
+
security: [
|
|
4510
|
+
{ api_key: [] },
|
|
4511
|
+
{ client_session: [] },
|
|
4512
|
+
{ pat_with_workspace: [] },
|
|
4513
|
+
{ console_session: [] }
|
|
4514
|
+
],
|
|
4515
|
+
summary: "/acs/entrances/grant_access",
|
|
4516
|
+
tags: [],
|
|
4517
|
+
"x-fern-sdk-group-name": ["acs", "entrances"],
|
|
4518
|
+
"x-fern-sdk-method-name": "grant_access"
|
|
4519
|
+
}
|
|
4520
|
+
},
|
|
4476
4521
|
"/acs/entrances/list": {
|
|
4477
4522
|
post: {
|
|
4478
4523
|
operationId: "acsEntrancesListPost",
|
|
@@ -10093,9 +10138,10 @@ var openapi_default = {
|
|
|
10093
10138
|
401: { description: "Unauthorized" }
|
|
10094
10139
|
},
|
|
10095
10140
|
security: [
|
|
10096
|
-
{
|
|
10097
|
-
{
|
|
10098
|
-
{
|
|
10141
|
+
{ api_key: [] },
|
|
10142
|
+
{ user_session: [] },
|
|
10143
|
+
{ client_session: [] },
|
|
10144
|
+
{ pat_with_workspace: [] }
|
|
10099
10145
|
],
|
|
10100
10146
|
summary: "/workspaces/get",
|
|
10101
10147
|
tags: ["/workspaces"],
|
|
@@ -10123,9 +10169,10 @@ var openapi_default = {
|
|
|
10123
10169
|
401: { description: "Unauthorized" }
|
|
10124
10170
|
},
|
|
10125
10171
|
security: [
|
|
10126
|
-
{
|
|
10127
|
-
{
|
|
10128
|
-
{
|
|
10172
|
+
{ api_key: [] },
|
|
10173
|
+
{ user_session: [] },
|
|
10174
|
+
{ client_session: [] },
|
|
10175
|
+
{ pat_with_workspace: [] }
|
|
10129
10176
|
],
|
|
10130
10177
|
summary: "/workspaces/get",
|
|
10131
10178
|
tags: ["/workspaces"],
|