@salesforce/lds-adapters-service-einsteinllm 1.260.0 → 1.261.0
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 +4 -4
- package/sfdc/index.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-service-einsteinllm",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.261.0",
|
|
4
4
|
"description": "Connect family for Einstein LLM generations",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/service-einsteinllm.js",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"test:compat": "nx build:karma && karma start --single-run --compat"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@salesforce/lds-bindings": "^1.
|
|
47
|
+
"@salesforce/lds-bindings": "^1.261.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
51
|
-
"@salesforce/lds-karma": "^1.
|
|
50
|
+
"@salesforce/lds-compiler-plugins": "^1.261.0",
|
|
51
|
+
"@salesforce/lds-karma": "^1.261.0"
|
|
52
52
|
},
|
|
53
53
|
"nx": {
|
|
54
54
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -1178,6 +1178,7 @@ const createGenerationsForPromptTemplateAdapterFactory = (luvio) => {
|
|
|
1178
1178
|
let createFeedback;
|
|
1179
1179
|
let createGenerations;
|
|
1180
1180
|
let createGenerationsForPromptTemplate;
|
|
1181
|
+
// Notify Update Available
|
|
1181
1182
|
function bindExportsTo(luvio) {
|
|
1182
1183
|
function unwrapSnapshotData(factory) {
|
|
1183
1184
|
const adapter = factory(luvio);
|
|
@@ -1188,6 +1189,7 @@ function bindExportsTo(luvio) {
|
|
|
1188
1189
|
createGenerations: unwrapSnapshotData(createGenerationsAdapterFactory),
|
|
1189
1190
|
createGenerationsForPromptTemplate: unwrapSnapshotData(createGenerationsForPromptTemplateAdapterFactory),
|
|
1190
1191
|
// Imperative GET Adapters
|
|
1192
|
+
// Notify Update Availables
|
|
1191
1193
|
};
|
|
1192
1194
|
}
|
|
1193
1195
|
withDefaultLuvio((luvio) => {
|
|
@@ -1199,4 +1201,4 @@ withDefaultLuvio((luvio) => {
|
|
|
1199
1201
|
});
|
|
1200
1202
|
|
|
1201
1203
|
export { createFeedback, createGenerations, createGenerationsForPromptTemplate };
|
|
1202
|
-
// version: 1.
|
|
1204
|
+
// version: 1.261.0-10ee630e7
|