@salesforce/lds-adapters-sfap-einstein-ai-gateway 1.261.0 → 1.262.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/package.json +3 -3
- package/sfdc/index.js +3 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-sfap-einstein-ai-gateway",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.1",
|
|
4
4
|
"description": "LLM Gateway API's",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/sfap-einstein-ai-gateway.js",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"test:unit": "jest"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@salesforce/lds-bindings": "^1.
|
|
43
|
+
"@salesforce/lds-bindings": "^1.262.1"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
+
"@salesforce/lds-compiler-plugins": "^1.262.1"
|
|
47
47
|
},
|
|
48
48
|
"nx": {
|
|
49
49
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1131,7 +1131,7 @@ function bindExportsTo(luvio) {
|
|
|
1131
1131
|
const getGenerations_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getGenerations', getGenerationsAdapterFactory), getGenerationsMetadata);
|
|
1132
1132
|
function unwrapSnapshotData(factory) {
|
|
1133
1133
|
const adapter = factory(luvio);
|
|
1134
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
1134
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
1135
1135
|
}
|
|
1136
1136
|
return {
|
|
1137
1137
|
getGenerations: createWireAdapterConstructor(luvio, getGenerations_ldsAdapter, getGenerationsMetadata),
|
|
@@ -1142,12 +1142,8 @@ function bindExportsTo(luvio) {
|
|
|
1142
1142
|
};
|
|
1143
1143
|
}
|
|
1144
1144
|
withDefaultLuvio((luvio) => {
|
|
1145
|
-
({
|
|
1146
|
-
getGenerations,
|
|
1147
|
-
registerFeedback,
|
|
1148
|
-
getGenerations_imperative,
|
|
1149
|
-
} = bindExportsTo(luvio));
|
|
1145
|
+
({ getGenerations, registerFeedback, getGenerations_imperative } = bindExportsTo(luvio));
|
|
1150
1146
|
});
|
|
1151
1147
|
|
|
1152
1148
|
export { getGenerations, getGenerations_imperative, registerFeedback };
|
|
1153
|
-
// version: 1.
|
|
1149
|
+
// version: 1.262.1-9a1924e93
|