@salesforce/lwc-adapters-uiapi 1.110.1 → 1.110.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/main.js +9 -9
- package/package.json +3 -3
package/dist/main.js
CHANGED
|
@@ -57174,16 +57174,16 @@ const buildNetworkSnapshot$6 = (luvio, context, config, options) => {
|
|
|
57174
57174
|
trackedFields: optionalFieldsTrie,
|
|
57175
57175
|
serverRequestCount: 1,
|
|
57176
57176
|
}), body);
|
|
57177
|
-
|
|
57178
|
-
|
|
57179
|
-
|
|
57180
|
-
|
|
57181
|
-
|
|
57182
|
-
if (
|
|
57183
|
-
|
|
57184
|
-
throw new Error('Invalid network response. Expected network response to result in Fulfilled snapshot');
|
|
57185
|
-
}
|
|
57177
|
+
const snapshot = buildCachedSnapshot$1(luvio, context, {
|
|
57178
|
+
...config,
|
|
57179
|
+
recordTypeId: responseRecordTypeId,
|
|
57180
|
+
});
|
|
57181
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
57182
|
+
if (snapshot.state !== 'Fulfilled') {
|
|
57183
|
+
throw new Error('Invalid network response. Expected network response to result in Fulfilled snapshot');
|
|
57186
57184
|
}
|
|
57185
|
+
}
|
|
57186
|
+
return luvio.storeBroadcast().then(() => {
|
|
57187
57187
|
return snapshot;
|
|
57188
57188
|
});
|
|
57189
57189
|
}, () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lwc-adapters-uiapi",
|
|
3
|
-
"version": "1.110.
|
|
3
|
+
"version": "1.110.2",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "UIAPI adapters with LWC bindings",
|
|
6
6
|
"module": "dist/main.js",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@luvio/engine": "0.135.4",
|
|
35
|
-
"@salesforce/lds-adapters-uiapi": "^1.110.
|
|
35
|
+
"@salesforce/lds-adapters-uiapi": "^1.110.2"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@luvio/lwc-luvio": "0.135.4",
|
|
39
|
-
"@salesforce/lds-default-luvio": "^1.110.
|
|
39
|
+
"@salesforce/lds-default-luvio": "^1.110.2"
|
|
40
40
|
}
|
|
41
41
|
}
|