@salesforce/lwc-adapters-uiapi 1.357.0 → 1.358.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/dist/main.js +24 -1
- package/package.json +3 -3
package/dist/main.js
CHANGED
|
@@ -56182,7 +56182,7 @@ function getInContextFragmentType$x(fragment, fragmentMap) {
|
|
|
56182
56182
|
}
|
|
56183
56183
|
|
|
56184
56184
|
const name$f = 'Analytics__AnalyticsRepresentation';
|
|
56185
|
-
const VERSION$t = '
|
|
56185
|
+
const VERSION$t = '97ffe784049254d57e3831a3e3a0b79b';
|
|
56186
56186
|
function keyBuilder$t(luvio, path, data) {
|
|
56187
56187
|
return keyPrefix + '::uiapi::' + name$f + '::' + data.Id; // We're missing idNodeName in the actual key here...
|
|
56188
56188
|
}
|
|
@@ -56345,6 +56345,23 @@ function getTypeCacheKeys$q(cacheKeySink, astNode, state) {
|
|
|
56345
56345
|
getTypeCacheKeys$1s(cacheKeySink, requestedField, NamespacePrefixState);
|
|
56346
56346
|
break;
|
|
56347
56347
|
}
|
|
56348
|
+
case 'StringValue': {
|
|
56349
|
+
const fullPath__RecordOperations = `${rootKey}__${fieldKey}`;
|
|
56350
|
+
for (let i = 0, len = fieldData.length; i < len; i++) {
|
|
56351
|
+
const item = fieldData[i];
|
|
56352
|
+
const itemState = {
|
|
56353
|
+
...state,
|
|
56354
|
+
path: {
|
|
56355
|
+
parent: null,
|
|
56356
|
+
propertyName: null,
|
|
56357
|
+
fullPath: fullPath__RecordOperations + '__' + i
|
|
56358
|
+
},
|
|
56359
|
+
data: item,
|
|
56360
|
+
};
|
|
56361
|
+
getTypeCacheKeys$1s(cacheKeySink, requestedField, itemState);
|
|
56362
|
+
}
|
|
56363
|
+
break;
|
|
56364
|
+
}
|
|
56348
56365
|
case 'Analytics__AnalyticsWorkspaceAssetConnection': {
|
|
56349
56366
|
const AnalyticsWorkspacesState = buildFieldState(state, rootKey + '__' + fieldKey, fieldData);
|
|
56350
56367
|
getTypeCacheKeys$r(cacheKeySink, requestedField, AnalyticsWorkspacesState);
|
|
@@ -56416,6 +56433,12 @@ function getFieldType$v(field) {
|
|
|
56416
56433
|
typename: 'StringValue'
|
|
56417
56434
|
};
|
|
56418
56435
|
}
|
|
56436
|
+
case 'RecordOperations': {
|
|
56437
|
+
return {
|
|
56438
|
+
isArray: true,
|
|
56439
|
+
typename: 'StringValue'
|
|
56440
|
+
};
|
|
56441
|
+
}
|
|
56419
56442
|
case 'AnalyticsWorkspaces': {
|
|
56420
56443
|
return {
|
|
56421
56444
|
isArray: false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lwc-adapters-uiapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.358.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "UIAPI adapters with LWC bindings",
|
|
6
6
|
"module": "dist/main.js",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"clean": "rm -rf dist src/generated"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
34
|
+
"@salesforce/lds-adapters-uiapi": "^1.358.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@luvio/lwc-luvio": "0.156.7",
|
|
38
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
38
|
+
"@salesforce/lds-default-luvio": "^1.358.0"
|
|
39
39
|
}
|
|
40
40
|
}
|