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