@seamapi/types 1.172.0 → 1.173.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 +50 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +105 -0
- package/lib/seam/connect/openapi.d.ts +69 -0
- package/lib/seam/connect/openapi.js +50 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +36 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +50 -0
- package/src/lib/seam/connect/route-types.ts +43 -0
package/dist/connect.cjs
CHANGED
|
@@ -5082,6 +5082,56 @@ var openapi_default = {
|
|
|
5082
5082
|
"x-fern-sdk-return-value": "acs_credentials"
|
|
5083
5083
|
}
|
|
5084
5084
|
},
|
|
5085
|
+
"/acs/credentials/list_accessible_entrances": {
|
|
5086
|
+
post: {
|
|
5087
|
+
operationId: "acsCredentialsListAccessibleEntrancesPost",
|
|
5088
|
+
requestBody: {
|
|
5089
|
+
content: {
|
|
5090
|
+
"application/json": {
|
|
5091
|
+
schema: {
|
|
5092
|
+
properties: {
|
|
5093
|
+
acs_credential_id: { format: "uuid", type: "string" }
|
|
5094
|
+
},
|
|
5095
|
+
required: ["acs_credential_id"],
|
|
5096
|
+
type: "object"
|
|
5097
|
+
}
|
|
5098
|
+
}
|
|
5099
|
+
}
|
|
5100
|
+
},
|
|
5101
|
+
responses: {
|
|
5102
|
+
200: {
|
|
5103
|
+
content: {
|
|
5104
|
+
"application/json": {
|
|
5105
|
+
schema: {
|
|
5106
|
+
properties: {
|
|
5107
|
+
acs_entrances: {
|
|
5108
|
+
items: { $ref: "#/components/schemas/acs_entrance" },
|
|
5109
|
+
type: "array"
|
|
5110
|
+
},
|
|
5111
|
+
ok: { type: "boolean" }
|
|
5112
|
+
},
|
|
5113
|
+
required: ["acs_entrances", "ok"],
|
|
5114
|
+
type: "object"
|
|
5115
|
+
}
|
|
5116
|
+
}
|
|
5117
|
+
},
|
|
5118
|
+
description: "OK"
|
|
5119
|
+
},
|
|
5120
|
+
400: { description: "Bad Request" },
|
|
5121
|
+
401: { description: "Unauthorized" }
|
|
5122
|
+
},
|
|
5123
|
+
security: [
|
|
5124
|
+
{ api_key: [] },
|
|
5125
|
+
{ pat_with_workspace: [] },
|
|
5126
|
+
{ console_session: [] }
|
|
5127
|
+
],
|
|
5128
|
+
summary: "/acs/credentials/list_accessible_entrances",
|
|
5129
|
+
tags: ["/acs"],
|
|
5130
|
+
"x-fern-sdk-group-name": ["acs", "credentials"],
|
|
5131
|
+
"x-fern-sdk-method-name": "list_accessible_entrances",
|
|
5132
|
+
"x-fern-sdk-return-value": "acs_entrances"
|
|
5133
|
+
}
|
|
5134
|
+
},
|
|
5085
5135
|
"/acs/credentials/unassign": {
|
|
5086
5136
|
patch: {
|
|
5087
5137
|
operationId: "acsCredentialsUnassignPatch",
|