@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 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
- ai: AiConfig;
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
- ai: AiConfig;
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boomi/embedkit-sdk",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "Boomi EmbedKit SDK",
5
5
  "author": "Boomi",
6
6
  "license": "BSD-2-Clause",