@seamapi/types 1.568.0 → 1.569.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 +2 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16 -0
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +2 -0
|
@@ -43214,15 +43214,23 @@ declare const _default: {
|
|
|
43214
43214
|
};
|
|
43215
43215
|
};
|
|
43216
43216
|
security: ({
|
|
43217
|
+
client_session_with_customer: never[];
|
|
43218
|
+
pat_with_workspace?: never;
|
|
43219
|
+
console_session_with_workspace?: never;
|
|
43220
|
+
api_key?: never;
|
|
43221
|
+
} | {
|
|
43217
43222
|
pat_with_workspace: never[];
|
|
43223
|
+
client_session_with_customer?: never;
|
|
43218
43224
|
console_session_with_workspace?: never;
|
|
43219
43225
|
api_key?: never;
|
|
43220
43226
|
} | {
|
|
43221
43227
|
console_session_with_workspace: never[];
|
|
43228
|
+
client_session_with_customer?: never;
|
|
43222
43229
|
pat_with_workspace?: never;
|
|
43223
43230
|
api_key?: never;
|
|
43224
43231
|
} | {
|
|
43225
43232
|
api_key: never[];
|
|
43233
|
+
client_session_with_customer?: never;
|
|
43226
43234
|
pat_with_workspace?: never;
|
|
43227
43235
|
console_session_with_workspace?: never;
|
|
43228
43236
|
})[];
|
|
@@ -43345,15 +43353,23 @@ declare const _default: {
|
|
|
43345
43353
|
};
|
|
43346
43354
|
};
|
|
43347
43355
|
security: ({
|
|
43356
|
+
client_session_with_customer: never[];
|
|
43357
|
+
pat_with_workspace?: never;
|
|
43358
|
+
console_session_with_workspace?: never;
|
|
43359
|
+
api_key?: never;
|
|
43360
|
+
} | {
|
|
43348
43361
|
pat_with_workspace: never[];
|
|
43362
|
+
client_session_with_customer?: never;
|
|
43349
43363
|
console_session_with_workspace?: never;
|
|
43350
43364
|
api_key?: never;
|
|
43351
43365
|
} | {
|
|
43352
43366
|
console_session_with_workspace: never[];
|
|
43367
|
+
client_session_with_customer?: never;
|
|
43353
43368
|
pat_with_workspace?: never;
|
|
43354
43369
|
api_key?: never;
|
|
43355
43370
|
} | {
|
|
43356
43371
|
api_key: never[];
|
|
43372
|
+
client_session_with_customer?: never;
|
|
43357
43373
|
pat_with_workspace?: never;
|
|
43358
43374
|
console_session_with_workspace?: never;
|
|
43359
43375
|
})[];
|
|
@@ -48156,6 +48156,7 @@ export default {
|
|
|
48156
48156
|
401: { description: 'Unauthorized' },
|
|
48157
48157
|
},
|
|
48158
48158
|
security: [
|
|
48159
|
+
{ client_session_with_customer: [] },
|
|
48159
48160
|
{ pat_with_workspace: [] },
|
|
48160
48161
|
{ console_session_with_workspace: [] },
|
|
48161
48162
|
{ api_key: [] },
|
|
@@ -48269,6 +48270,7 @@ export default {
|
|
|
48269
48270
|
401: { description: 'Unauthorized' },
|
|
48270
48271
|
},
|
|
48271
48272
|
security: [
|
|
48273
|
+
{ client_session_with_customer: [] },
|
|
48272
48274
|
{ pat_with_workspace: [] },
|
|
48273
48275
|
{ console_session_with_workspace: [] },
|
|
48274
48276
|
{ api_key: [] },
|