@seamapi/types 1.52.0 → 1.52.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 +4 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +17 -12
- package/lib/seam/connect/openapi.d.ts +17 -12
- package/lib/seam/connect/openapi.js +4 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4 -3
package/dist/connect.d.cts
CHANGED
|
@@ -5387,20 +5387,25 @@ declare const _default: {
|
|
|
5387
5387
|
};
|
|
5388
5388
|
};
|
|
5389
5389
|
security: ({
|
|
5390
|
-
|
|
5391
|
-
|
|
5392
|
-
|
|
5393
|
-
|
|
5390
|
+
api_key: never[];
|
|
5391
|
+
client_session?: never;
|
|
5392
|
+
pat_with_workspace?: never;
|
|
5393
|
+
console_session?: never;
|
|
5394
5394
|
} | {
|
|
5395
|
-
|
|
5396
|
-
|
|
5397
|
-
|
|
5398
|
-
|
|
5395
|
+
client_session: never[];
|
|
5396
|
+
api_key?: never;
|
|
5397
|
+
pat_with_workspace?: never;
|
|
5398
|
+
console_session?: never;
|
|
5399
5399
|
} | {
|
|
5400
|
-
|
|
5401
|
-
|
|
5402
|
-
|
|
5403
|
-
|
|
5400
|
+
pat_with_workspace: never[];
|
|
5401
|
+
api_key?: never;
|
|
5402
|
+
client_session?: never;
|
|
5403
|
+
console_session?: never;
|
|
5404
|
+
} | {
|
|
5405
|
+
console_session: never[];
|
|
5406
|
+
api_key?: never;
|
|
5407
|
+
client_session?: never;
|
|
5408
|
+
pat_with_workspace?: never;
|
|
5404
5409
|
})[];
|
|
5405
5410
|
summary: string;
|
|
5406
5411
|
tags: never[];
|
|
@@ -5310,20 +5310,25 @@ declare const _default: {
|
|
|
5310
5310
|
};
|
|
5311
5311
|
};
|
|
5312
5312
|
security: ({
|
|
5313
|
-
|
|
5314
|
-
|
|
5315
|
-
|
|
5316
|
-
|
|
5313
|
+
api_key: never[];
|
|
5314
|
+
client_session?: never;
|
|
5315
|
+
pat_with_workspace?: never;
|
|
5316
|
+
console_session?: never;
|
|
5317
5317
|
} | {
|
|
5318
|
-
|
|
5319
|
-
|
|
5320
|
-
|
|
5321
|
-
|
|
5318
|
+
client_session: never[];
|
|
5319
|
+
api_key?: never;
|
|
5320
|
+
pat_with_workspace?: never;
|
|
5321
|
+
console_session?: never;
|
|
5322
5322
|
} | {
|
|
5323
|
-
|
|
5324
|
-
|
|
5325
|
-
|
|
5326
|
-
|
|
5323
|
+
pat_with_workspace: never[];
|
|
5324
|
+
api_key?: never;
|
|
5325
|
+
client_session?: never;
|
|
5326
|
+
console_session?: never;
|
|
5327
|
+
} | {
|
|
5328
|
+
console_session: never[];
|
|
5329
|
+
api_key?: never;
|
|
5330
|
+
client_session?: never;
|
|
5331
|
+
pat_with_workspace?: never;
|
|
5327
5332
|
})[];
|
|
5328
5333
|
summary: string;
|
|
5329
5334
|
tags: never[];
|
|
@@ -3841,9 +3841,10 @@ export default {
|
|
|
3841
3841
|
401: { description: 'Unauthorized' },
|
|
3842
3842
|
},
|
|
3843
3843
|
security: [
|
|
3844
|
-
{
|
|
3845
|
-
{
|
|
3846
|
-
{
|
|
3844
|
+
{ api_key: [] },
|
|
3845
|
+
{ client_session: [] },
|
|
3846
|
+
{ pat_with_workspace: [] },
|
|
3847
|
+
{ console_session: [] },
|
|
3847
3848
|
],
|
|
3848
3849
|
summary: '/acs/credentials/list',
|
|
3849
3850
|
tags: [],
|