@seamapi/types 1.63.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 +8 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +34 -24
- package/lib/seam/connect/openapi.d.ts +34 -24
- package/lib/seam/connect/openapi.js +8 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -6
package/package.json
CHANGED
|
@@ -10157,9 +10157,10 @@ export default {
|
|
|
10157
10157
|
401: { description: 'Unauthorized' },
|
|
10158
10158
|
},
|
|
10159
10159
|
security: [
|
|
10160
|
-
{
|
|
10161
|
-
{
|
|
10162
|
-
{
|
|
10160
|
+
{ api_key: [] },
|
|
10161
|
+
{ user_session: [] },
|
|
10162
|
+
{ client_session: [] },
|
|
10163
|
+
{ pat_with_workspace: [] },
|
|
10163
10164
|
],
|
|
10164
10165
|
summary: '/workspaces/get',
|
|
10165
10166
|
tags: ['/workspaces'],
|
|
@@ -10187,9 +10188,10 @@ export default {
|
|
|
10187
10188
|
401: { description: 'Unauthorized' },
|
|
10188
10189
|
},
|
|
10189
10190
|
security: [
|
|
10190
|
-
{
|
|
10191
|
-
{
|
|
10192
|
-
{
|
|
10191
|
+
{ api_key: [] },
|
|
10192
|
+
{ user_session: [] },
|
|
10193
|
+
{ client_session: [] },
|
|
10194
|
+
{ pat_with_workspace: [] },
|
|
10193
10195
|
],
|
|
10194
10196
|
summary: '/workspaces/get',
|
|
10195
10197
|
tags: ['/workspaces'],
|