@salesforce/lwc-adapters-uiapi 1.308.0 → 1.310.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 +6 -4
- package/package.json +3 -3
package/dist/main.js
CHANGED
|
@@ -61439,7 +61439,7 @@ const performUpdateRecordQuickAction_ConfigPropertyMetadata = [
|
|
|
61439
61439
|
generateParamConfigMetadata('actionApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
61440
61440
|
generateParamConfigMetadata('allowSaveOnDuplicate', false, 2 /* Body */, 1 /* Boolean */),
|
|
61441
61441
|
generateParamConfigMetadata('apiName', true, 2 /* Body */, 0 /* String */),
|
|
61442
|
-
generateParamConfigMetadata('contextId', false, 2 /* Body */, 0 /* String
|
|
61442
|
+
generateParamConfigMetadata('contextId', false, 2 /* Body */, 0 /* String */, false, getRecordId18),
|
|
61443
61443
|
generateParamConfigMetadata('fields', true, 2 /* Body */, 4 /* Unsupported */),
|
|
61444
61444
|
];
|
|
61445
61445
|
const performUpdateRecordQuickAction_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$8, performUpdateRecordQuickAction_ConfigPropertyMetadata);
|
|
@@ -61488,7 +61488,8 @@ function validateAdapterConfig$b(untrustedConfig, configPropertyNames) {
|
|
|
61488
61488
|
if (process.env.NODE_ENV !== 'production') {
|
|
61489
61489
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
61490
61490
|
}
|
|
61491
|
-
const
|
|
61491
|
+
const coercedConfig = coerceConfig$1(untrustedConfig, performUpdateRecordQuickAction_ConfigPropertyMetadata);
|
|
61492
|
+
const config = typeCheckConfig$d(coercedConfig);
|
|
61492
61493
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
61493
61494
|
return null;
|
|
61494
61495
|
}
|
|
@@ -61567,7 +61568,7 @@ const performQuickAction_ConfigPropertyMetadata = [
|
|
|
61567
61568
|
generateParamConfigMetadata('actionApiName', true, 0 /* UrlParameter */, 0 /* String */),
|
|
61568
61569
|
generateParamConfigMetadata('allowSaveOnDuplicate', false, 2 /* Body */, 1 /* Boolean */),
|
|
61569
61570
|
generateParamConfigMetadata('apiName', true, 2 /* Body */, 0 /* String */),
|
|
61570
|
-
generateParamConfigMetadata('contextId', false, 2 /* Body */, 0 /* String
|
|
61571
|
+
generateParamConfigMetadata('contextId', false, 2 /* Body */, 0 /* String */, false, getRecordId18),
|
|
61571
61572
|
generateParamConfigMetadata('fields', true, 2 /* Body */, 4 /* Unsupported */),
|
|
61572
61573
|
];
|
|
61573
61574
|
const performQuickAction_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName$7, performQuickAction_ConfigPropertyMetadata);
|
|
@@ -61616,7 +61617,8 @@ function validateAdapterConfig$a(untrustedConfig, configPropertyNames) {
|
|
|
61616
61617
|
if (process.env.NODE_ENV !== 'production') {
|
|
61617
61618
|
validateConfig(untrustedConfig, configPropertyNames);
|
|
61618
61619
|
}
|
|
61619
|
-
const
|
|
61620
|
+
const coercedConfig = coerceConfig$1(untrustedConfig, performQuickAction_ConfigPropertyMetadata);
|
|
61621
|
+
const config = typeCheckConfig$c(coercedConfig);
|
|
61620
61622
|
if (!areRequiredParametersPresent(config, configPropertyNames)) {
|
|
61621
61623
|
return null;
|
|
61622
61624
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lwc-adapters-uiapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.310.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.310.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@luvio/lwc-luvio": "0.156.3",
|
|
38
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
38
|
+
"@salesforce/lds-default-luvio": "^1.310.0"
|
|
39
39
|
}
|
|
40
40
|
}
|