@boomi/embedkit-sdk 1.2.0 → 1.2.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/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -22791,6 +22791,9 @@ type TenantCreds = {
|
|
|
22791
22791
|
oauth2: {
|
|
22792
22792
|
connections: Record<string, OAuth2Connection>;
|
|
22793
22793
|
};
|
|
22794
|
+
listeners: {
|
|
22795
|
+
connections: Record<string, Listener>;
|
|
22796
|
+
};
|
|
22794
22797
|
ai: AiConfig;
|
|
22795
22798
|
};
|
|
22796
22799
|
type AiConfig = {
|
|
@@ -22798,6 +22801,11 @@ type AiConfig = {
|
|
|
22798
22801
|
model?: 'gpt-4.1-2025-04-14' | 'gpt-4o-mini-2024-07-18' | 'gpt-4o-2024-08-06';
|
|
22799
22802
|
apiKey?: string;
|
|
22800
22803
|
};
|
|
22804
|
+
type Listener = {
|
|
22805
|
+
url?: string;
|
|
22806
|
+
userName: string;
|
|
22807
|
+
token: string;
|
|
22808
|
+
};
|
|
22801
22809
|
type OAuth2Connection = {
|
|
22802
22810
|
clientId?: string;
|
|
22803
22811
|
clientSecret?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -22791,6 +22791,9 @@ type TenantCreds = {
|
|
|
22791
22791
|
oauth2: {
|
|
22792
22792
|
connections: Record<string, OAuth2Connection>;
|
|
22793
22793
|
};
|
|
22794
|
+
listeners: {
|
|
22795
|
+
connections: Record<string, Listener>;
|
|
22796
|
+
};
|
|
22794
22797
|
ai: AiConfig;
|
|
22795
22798
|
};
|
|
22796
22799
|
type AiConfig = {
|
|
@@ -22798,6 +22801,11 @@ type AiConfig = {
|
|
|
22798
22801
|
model?: 'gpt-4.1-2025-04-14' | 'gpt-4o-mini-2024-07-18' | 'gpt-4o-2024-08-06';
|
|
22799
22802
|
apiKey?: string;
|
|
22800
22803
|
};
|
|
22804
|
+
type Listener = {
|
|
22805
|
+
url?: string;
|
|
22806
|
+
userName: string;
|
|
22807
|
+
token: string;
|
|
22808
|
+
};
|
|
22801
22809
|
type OAuth2Connection = {
|
|
22802
22810
|
clientId?: string;
|
|
22803
22811
|
clientSecret?: string;
|