@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
package/dist/connect.d.cts
CHANGED
|
@@ -94588,15 +94588,23 @@ declare const _default: {
|
|
|
94588
94588
|
};
|
|
94589
94589
|
};
|
|
94590
94590
|
security: ({
|
|
94591
|
+
client_session_with_customer: never[];
|
|
94592
|
+
pat_with_workspace?: never;
|
|
94593
|
+
console_session_with_workspace?: never;
|
|
94594
|
+
api_key?: never;
|
|
94595
|
+
} | {
|
|
94591
94596
|
pat_with_workspace: never[];
|
|
94597
|
+
client_session_with_customer?: never;
|
|
94592
94598
|
console_session_with_workspace?: never;
|
|
94593
94599
|
api_key?: never;
|
|
94594
94600
|
} | {
|
|
94595
94601
|
console_session_with_workspace: never[];
|
|
94602
|
+
client_session_with_customer?: never;
|
|
94596
94603
|
pat_with_workspace?: never;
|
|
94597
94604
|
api_key?: never;
|
|
94598
94605
|
} | {
|
|
94599
94606
|
api_key: never[];
|
|
94607
|
+
client_session_with_customer?: never;
|
|
94600
94608
|
pat_with_workspace?: never;
|
|
94601
94609
|
console_session_with_workspace?: never;
|
|
94602
94610
|
})[];
|
|
@@ -94719,15 +94727,23 @@ declare const _default: {
|
|
|
94719
94727
|
};
|
|
94720
94728
|
};
|
|
94721
94729
|
security: ({
|
|
94730
|
+
client_session_with_customer: never[];
|
|
94731
|
+
pat_with_workspace?: never;
|
|
94732
|
+
console_session_with_workspace?: never;
|
|
94733
|
+
api_key?: never;
|
|
94734
|
+
} | {
|
|
94722
94735
|
pat_with_workspace: never[];
|
|
94736
|
+
client_session_with_customer?: never;
|
|
94723
94737
|
console_session_with_workspace?: never;
|
|
94724
94738
|
api_key?: never;
|
|
94725
94739
|
} | {
|
|
94726
94740
|
console_session_with_workspace: never[];
|
|
94741
|
+
client_session_with_customer?: never;
|
|
94727
94742
|
pat_with_workspace?: never;
|
|
94728
94743
|
api_key?: never;
|
|
94729
94744
|
} | {
|
|
94730
94745
|
api_key: never[];
|
|
94746
|
+
client_session_with_customer?: never;
|
|
94731
94747
|
pat_with_workspace?: never;
|
|
94732
94748
|
console_session_with_workspace?: never;
|
|
94733
94749
|
})[];
|
package/dist/index.cjs
CHANGED
|
@@ -53850,6 +53850,7 @@ var openapi_default = {
|
|
|
53850
53850
|
401: { description: "Unauthorized" }
|
|
53851
53851
|
},
|
|
53852
53852
|
security: [
|
|
53853
|
+
{ client_session_with_customer: [] },
|
|
53853
53854
|
{ pat_with_workspace: [] },
|
|
53854
53855
|
{ console_session_with_workspace: [] },
|
|
53855
53856
|
{ api_key: [] }
|
|
@@ -53963,6 +53964,7 @@ var openapi_default = {
|
|
|
53963
53964
|
401: { description: "Unauthorized" }
|
|
53964
53965
|
},
|
|
53965
53966
|
security: [
|
|
53967
|
+
{ client_session_with_customer: [] },
|
|
53966
53968
|
{ pat_with_workspace: [] },
|
|
53967
53969
|
{ console_session_with_workspace: [] },
|
|
53968
53970
|
{ api_key: [] }
|