@seamapi/types 1.552.0 → 1.553.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 +1 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -0
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +10 -0
- package/lib/seam/connect/openapi.js +1 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +1 -0
package/dist/connect.d.cts
CHANGED
|
@@ -66558,22 +66558,32 @@ declare const _default: {
|
|
|
66558
66558
|
};
|
|
66559
66559
|
security: ({
|
|
66560
66560
|
client_session: never[];
|
|
66561
|
+
client_session_with_customer?: never;
|
|
66562
|
+
pat_with_workspace?: never;
|
|
66563
|
+
console_session_with_workspace?: never;
|
|
66564
|
+
api_key?: never;
|
|
66565
|
+
} | {
|
|
66566
|
+
client_session_with_customer: never[];
|
|
66567
|
+
client_session?: never;
|
|
66561
66568
|
pat_with_workspace?: never;
|
|
66562
66569
|
console_session_with_workspace?: never;
|
|
66563
66570
|
api_key?: never;
|
|
66564
66571
|
} | {
|
|
66565
66572
|
pat_with_workspace: never[];
|
|
66566
66573
|
client_session?: never;
|
|
66574
|
+
client_session_with_customer?: never;
|
|
66567
66575
|
console_session_with_workspace?: never;
|
|
66568
66576
|
api_key?: never;
|
|
66569
66577
|
} | {
|
|
66570
66578
|
console_session_with_workspace: never[];
|
|
66571
66579
|
client_session?: never;
|
|
66580
|
+
client_session_with_customer?: never;
|
|
66572
66581
|
pat_with_workspace?: never;
|
|
66573
66582
|
api_key?: never;
|
|
66574
66583
|
} | {
|
|
66575
66584
|
api_key: never[];
|
|
66576
66585
|
client_session?: never;
|
|
66586
|
+
client_session_with_customer?: never;
|
|
66577
66587
|
pat_with_workspace?: never;
|
|
66578
66588
|
console_session_with_workspace?: never;
|
|
66579
66589
|
})[];
|
package/dist/index.cjs
CHANGED
|
@@ -29512,6 +29512,7 @@ var openapi_default = {
|
|
|
29512
29512
|
},
|
|
29513
29513
|
security: [
|
|
29514
29514
|
{ client_session: [] },
|
|
29515
|
+
{ client_session_with_customer: [] },
|
|
29515
29516
|
{ pat_with_workspace: [] },
|
|
29516
29517
|
{ console_session_with_workspace: [] },
|
|
29517
29518
|
{ api_key: [] }
|