@boomi/embedkit-sdk 1.2.4 → 1.2.6
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -22799,6 +22799,9 @@ type AiConfig = {
|
|
|
22799
22799
|
enabled?: boolean;
|
|
22800
22800
|
model?: 'gpt-4.1-2025-04-14' | 'gpt-4o-mini-2024-07-18' | 'gpt-4o-2024-08-06';
|
|
22801
22801
|
apiKey?: string;
|
|
22802
|
+
url?: string;
|
|
22803
|
+
userName?: string;
|
|
22804
|
+
userToken?: string;
|
|
22802
22805
|
};
|
|
22803
22806
|
type Listener = {
|
|
22804
22807
|
url?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -22799,6 +22799,9 @@ type AiConfig = {
|
|
|
22799
22799
|
enabled?: boolean;
|
|
22800
22800
|
model?: 'gpt-4.1-2025-04-14' | 'gpt-4o-mini-2024-07-18' | 'gpt-4o-2024-08-06';
|
|
22801
22801
|
apiKey?: string;
|
|
22802
|
+
url?: string;
|
|
22803
|
+
userName?: string;
|
|
22804
|
+
userToken?: string;
|
|
22802
22805
|
};
|
|
22803
22806
|
type Listener = {
|
|
22804
22807
|
url?: string;
|
package/dist/index.js
CHANGED
|
@@ -4373,7 +4373,7 @@ async function fetchEnvironmentExtensions(httpRequest, requestBody) {
|
|
|
4373
4373
|
async function fetchExtensionsForPair(httpRequest, processId, envId, isSingleInstall) {
|
|
4374
4374
|
let extensionFilter;
|
|
4375
4375
|
if (isSingleInstall) {
|
|
4376
|
-
|
|
4376
|
+
extensionFilter = queryFilter(
|
|
4377
4377
|
"environmentId",
|
|
4378
4378
|
"EQUALS",
|
|
4379
4379
|
[envId]
|