@salesforce/lwc-adapters-uiapi 1.307.0 → 1.308.0-dev2
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 +7 -5
- package/package.json +4 -4
package/dist/main.js
CHANGED
|
@@ -572,7 +572,7 @@ function createResourceParamsImpl(config, configMetadata) {
|
|
|
572
572
|
}
|
|
573
573
|
return resourceParams;
|
|
574
574
|
}
|
|
575
|
-
// engine version: 0.156.
|
|
575
|
+
// engine version: 0.156.4-dev1-8df86bf0
|
|
576
576
|
|
|
577
577
|
/**
|
|
578
578
|
* Returns true if the value acts like a Promise, i.e. has a "then" function,
|
|
@@ -59760,7 +59760,7 @@ const performUpdateRecordQuickAction_ConfigPropertyMetadata = [
|
|
|
59760
59760
|
generateParamConfigMetadata('actionApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
59761
59761
|
generateParamConfigMetadata('allowSaveOnDuplicate', false, 2 /* Body */, 1 /* Boolean */),
|
|
59762
59762
|
generateParamConfigMetadata('apiName', true, 2 /* Body */, 0 /* String */),
|
|
59763
|
-
generateParamConfigMetadata('contextId', false, 2 /* Body */, 0 /* String
|
|
59763
|
+
generateParamConfigMetadata('contextId', false, 2 /* Body */, 0 /* String */, false, getRecordId18),
|
|
59764
59764
|
generateParamConfigMetadata('fields', true, 2 /* Body */, 4 /* Unsupported */),
|
|
59765
59765
|
];
|
|
59766
59766
|
const performUpdateRecordQuickAction_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$8, performUpdateRecordQuickAction_ConfigPropertyMetadata);
|
|
@@ -59809,7 +59809,8 @@ function validateAdapterConfig$b(untrustedConfig, configPropertyNames) {
|
|
|
59809
59809
|
if (process.env.NODE_ENV !== 'production') {
|
|
59810
59810
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
59811
59811
|
}
|
|
59812
|
-
const
|
|
59812
|
+
const coercedConfig = coerceConfig$1(untrustedConfig, performUpdateRecordQuickAction_ConfigPropertyMetadata);
|
|
59813
|
+
const config = typeCheckConfig$d(coercedConfig);
|
|
59813
59814
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
59814
59815
|
return null;
|
|
59815
59816
|
}
|
|
@@ -59888,7 +59889,7 @@ const performQuickAction_ConfigPropertyMetadata = [
|
|
|
59888
59889
|
generateParamConfigMetadata('actionApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
59889
59890
|
generateParamConfigMetadata('allowSaveOnDuplicate', false, 2 /* Body */, 1 /* Boolean */),
|
|
59890
59891
|
generateParamConfigMetadata('apiName', true, 2 /* Body */, 0 /* String */),
|
|
59891
|
-
generateParamConfigMetadata('contextId', false, 2 /* Body */, 0 /* String
|
|
59892
|
+
generateParamConfigMetadata('contextId', false, 2 /* Body */, 0 /* String */, false, getRecordId18),
|
|
59892
59893
|
generateParamConfigMetadata('fields', true, 2 /* Body */, 4 /* Unsupported */),
|
|
59893
59894
|
];
|
|
59894
59895
|
const performQuickAction_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$7, performQuickAction_ConfigPropertyMetadata);
|
|
@@ -59937,7 +59938,8 @@ function validateAdapterConfig$a(untrustedConfig, configPropertyNames) {
|
|
|
59937
59938
|
if (process.env.NODE_ENV !== 'production') {
|
|
59938
59939
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
59939
59940
|
}
|
|
59940
|
-
const
|
|
59941
|
+
const coercedConfig = coerceConfig$1(untrustedConfig, performQuickAction_ConfigPropertyMetadata);
|
|
59942
|
+
const config = typeCheckConfig$c(coercedConfig);
|
|
59941
59943
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
59942
59944
|
return null;
|
|
59943
59945
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lwc-adapters-uiapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.308.0-dev2",
|
|
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.308.0-dev2"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@luvio/lwc-luvio": "0.156.
|
|
38
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
37
|
+
"@luvio/lwc-luvio": "0.156.4-dev1",
|
|
38
|
+
"@salesforce/lds-default-luvio": "^1.308.0-dev2"
|
|
39
39
|
}
|
|
40
40
|
}
|