@salesforce/lds-adapters-industries-featurevalidation 1.215.0 → 1.216.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.
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* For full license text, see the LICENSE.txt file
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { serializeStructuredKey, ingestShape, deepFreeze, StoreKeyMap } from '@luvio/engine';
|
|
7
|
+
import { serializeStructuredKey, ingestShape, deepFreeze, StoreKeyMap, createResourceParams as createResourceParams$1 } from '@luvio/engine';
|
|
8
8
|
|
|
9
9
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
10
10
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
@@ -41,10 +41,13 @@ function untrustedIsObject(untrusted) {
|
|
|
41
41
|
function areRequiredParametersPresent(config, configPropertyNames) {
|
|
42
42
|
return configPropertyNames.parameters.required.every(req => req in config);
|
|
43
43
|
}
|
|
44
|
-
function generateParamConfigMetadata(name, required, coerceFn) {
|
|
44
|
+
function generateParamConfigMetadata(name, required, resourceType, typeCheckShape, isArrayShape = false, coerceFn) {
|
|
45
45
|
return {
|
|
46
46
|
name,
|
|
47
47
|
required,
|
|
48
|
+
resourceType,
|
|
49
|
+
typeCheckShape,
|
|
50
|
+
isArrayShape,
|
|
48
51
|
coerceFn,
|
|
49
52
|
};
|
|
50
53
|
}
|
|
@@ -448,17 +451,10 @@ function createResourceRequest(config) {
|
|
|
448
451
|
|
|
449
452
|
const adapterName = 'featureValidation';
|
|
450
453
|
const featureValidation_ConfigPropertyMetadata = [
|
|
451
|
-
generateParamConfigMetadata('FeatureValidationData', true),
|
|
454
|
+
generateParamConfigMetadata('FeatureValidationData', true, 2 /* Body */, 4 /* Unsupported */),
|
|
452
455
|
];
|
|
453
456
|
const featureValidation_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName, featureValidation_ConfigPropertyMetadata);
|
|
454
|
-
|
|
455
|
-
const resourceParams = {
|
|
456
|
-
body: {
|
|
457
|
-
FeatureValidationData: config.FeatureValidationData
|
|
458
|
-
}
|
|
459
|
-
};
|
|
460
|
-
return resourceParams;
|
|
461
|
-
}
|
|
457
|
+
const createResourceParams = /*#__PURE__*/ createResourceParams$1(featureValidation_ConfigPropertyMetadata);
|
|
462
458
|
function typeCheckConfig(untrustedConfig) {
|
|
463
459
|
const config = {};
|
|
464
460
|
const untrustedConfig_FeatureValidationData = untrustedConfig.FeatureValidationData;
|
|
@@ -57,6 +57,6 @@ export declare const snapshotRefreshOptions: {
|
|
|
57
57
|
export declare function stableJSONStringify(node: any): string | undefined;
|
|
58
58
|
export declare function getFetchResponseStatusText(status: number): string;
|
|
59
59
|
export declare function isUnfulfilledSnapshot<T, U>(snapshot: $64$luvio_engine_Snapshot<T, U>): snapshot is $64$luvio_engine_UnfulfilledSnapshot<T, U>;
|
|
60
|
-
export declare function generateParamConfigMetadata(name: string, required: boolean, coerceFn?: (v: unknown) => unknown): $64$luvio_engine_AdapterConfigMetadata;
|
|
60
|
+
export declare function generateParamConfigMetadata(name: string, required: boolean, resourceType: $64$luvio_engine_AdapterConfigMetadata['resourceType'], typeCheckShape: $64$luvio_engine_AdapterConfigMetadata['typeCheckShape'], isArrayShape?: boolean, coerceFn?: (v: unknown) => unknown): $64$luvio_engine_AdapterConfigMetadata;
|
|
61
61
|
export declare function buildAdapterValidationConfig(displayName: string, paramsMeta: $64$luvio_engine_AdapterConfigMetadata[]): AdapterValidationConfig;
|
|
62
62
|
export declare const keyPrefix = "featurevalidation";
|
|
@@ -9,7 +9,7 @@ export declare const featureValidation_ConfigPropertyNames: adapter$45$utils_Ada
|
|
|
9
9
|
export interface FeatureValidationConfig {
|
|
10
10
|
FeatureValidationData: types_FeatureValidationInputRepresentation_FeatureValidationInputRepresentation;
|
|
11
11
|
}
|
|
12
|
-
export declare
|
|
12
|
+
export declare const createResourceParams: (config: FeatureValidationConfig) => resources_postConnectIndustriesFeatureValidation_ResourceRequestConfig;
|
|
13
13
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<FeatureValidationConfig>): adapter$45$utils_Untrusted<FeatureValidationConfig>;
|
|
14
14
|
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): FeatureValidationConfig | null;
|
|
15
15
|
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: FeatureValidationConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_FeatureValidationOutputRepresentation_FeatureValidationOutputRepresentation, any>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-featurevalidation",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.216.0",
|
|
4
4
|
"description": "Feature validation tool to debug setup issues.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/umd/es2018/industries-featurevalidation.js",
|
package/sfdc/index.js
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
/* proxy-compat-disable */
|
|
15
15
|
import { withDefaultLuvio } from 'force/ldsEngine';
|
|
16
|
-
import { serializeStructuredKey, ingestShape, deepFreeze, StoreKeyMap } from 'force/luvioEngine';
|
|
16
|
+
import { serializeStructuredKey, ingestShape, deepFreeze, StoreKeyMap, createResourceParams as createResourceParams$1 } from 'force/luvioEngine';
|
|
17
17
|
|
|
18
18
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
19
19
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
@@ -50,10 +50,13 @@ function untrustedIsObject(untrusted) {
|
|
|
50
50
|
function areRequiredParametersPresent(config, configPropertyNames) {
|
|
51
51
|
return configPropertyNames.parameters.required.every(req => req in config);
|
|
52
52
|
}
|
|
53
|
-
function generateParamConfigMetadata(name, required, coerceFn) {
|
|
53
|
+
function generateParamConfigMetadata(name, required, resourceType, typeCheckShape, isArrayShape = false, coerceFn) {
|
|
54
54
|
return {
|
|
55
55
|
name,
|
|
56
56
|
required,
|
|
57
|
+
resourceType,
|
|
58
|
+
typeCheckShape,
|
|
59
|
+
isArrayShape,
|
|
57
60
|
coerceFn,
|
|
58
61
|
};
|
|
59
62
|
}
|
|
@@ -457,17 +460,10 @@ function createResourceRequest(config) {
|
|
|
457
460
|
|
|
458
461
|
const adapterName = 'featureValidation';
|
|
459
462
|
const featureValidation_ConfigPropertyMetadata = [
|
|
460
|
-
generateParamConfigMetadata('FeatureValidationData', true),
|
|
463
|
+
generateParamConfigMetadata('FeatureValidationData', true, 2 /* Body */, 4 /* Unsupported */),
|
|
461
464
|
];
|
|
462
465
|
const featureValidation_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName, featureValidation_ConfigPropertyMetadata);
|
|
463
|
-
|
|
464
|
-
const resourceParams = {
|
|
465
|
-
body: {
|
|
466
|
-
FeatureValidationData: config.FeatureValidationData
|
|
467
|
-
}
|
|
468
|
-
};
|
|
469
|
-
return resourceParams;
|
|
470
|
-
}
|
|
466
|
+
const createResourceParams = /*#__PURE__*/ createResourceParams$1(featureValidation_ConfigPropertyMetadata);
|
|
471
467
|
function typeCheckConfig(untrustedConfig) {
|
|
472
468
|
const config = {};
|
|
473
469
|
const untrustedConfig_FeatureValidationData = untrustedConfig.FeatureValidationData;
|
|
@@ -537,4 +533,4 @@ withDefaultLuvio((luvio) => {
|
|
|
537
533
|
});
|
|
538
534
|
|
|
539
535
|
export { featureValidation };
|
|
540
|
-
// version: 1.
|
|
536
|
+
// version: 1.216.0-1d57d45fe
|