@salesforce/lds-adapters-industries-materialityassessment 1.214.2 → 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,
|
|
7
|
+
import { serializeStructuredKey, ingestShape, deepFreeze, StoreKeyMap, createResourceParams as createResourceParams$1, typeCheckConfig as typeCheckConfig$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
|
}
|
|
@@ -177,22 +180,13 @@ function createResourceRequest(config) {
|
|
|
177
180
|
|
|
178
181
|
const adapterName = 'postPerformCalculation';
|
|
179
182
|
const postPerformCalculation_ConfigPropertyMetadata = [
|
|
180
|
-
generateParamConfigMetadata('materialityAssessmentId', true),
|
|
183
|
+
generateParamConfigMetadata('materialityAssessmentId', true, 0 /* UrlParameter */, 0 /* String */),
|
|
181
184
|
];
|
|
182
185
|
const postPerformCalculation_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName, postPerformCalculation_ConfigPropertyMetadata);
|
|
183
|
-
|
|
184
|
-
const resourceParams = {
|
|
185
|
-
urlParams: {
|
|
186
|
-
materialityAssessmentId: config.materialityAssessmentId
|
|
187
|
-
}
|
|
188
|
-
};
|
|
189
|
-
return resourceParams;
|
|
190
|
-
}
|
|
186
|
+
const createResourceParams = /*#__PURE__*/ createResourceParams$1(postPerformCalculation_ConfigPropertyMetadata);
|
|
191
187
|
function typeCheckConfig(untrustedConfig) {
|
|
192
188
|
const config = {};
|
|
193
|
-
|
|
194
|
-
materialityAssessmentId: 0 /* String */,
|
|
195
|
-
});
|
|
189
|
+
typeCheckConfig$1(untrustedConfig, config, postPerformCalculation_ConfigPropertyMetadata);
|
|
196
190
|
return config;
|
|
197
191
|
}
|
|
198
192
|
function validateAdapterConfig(untrustedConfig, configPropertyNames) {
|
|
@@ -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 = "MaterialityAssessment";
|
|
@@ -8,7 +8,7 @@ export declare const postPerformCalculation_ConfigPropertyNames: adapter$45$util
|
|
|
8
8
|
export interface PostPerformCalculationConfig {
|
|
9
9
|
materialityAssessmentId: string;
|
|
10
10
|
}
|
|
11
|
-
export declare
|
|
11
|
+
export declare const createResourceParams: (config: PostPerformCalculationConfig) => resources_postConnectMaterialityassessmentCalculateByMaterialityAssessmentId_ResourceRequestConfig;
|
|
12
12
|
export declare function typeCheckConfig(untrustedConfig: adapter$45$utils_Untrusted<PostPerformCalculationConfig>): adapter$45$utils_Untrusted<PostPerformCalculationConfig>;
|
|
13
13
|
export declare function validateAdapterConfig(untrustedConfig: unknown, configPropertyNames: adapter$45$utils_AdapterValidationConfig): PostPerformCalculationConfig | null;
|
|
14
14
|
export declare function buildNetworkSnapshot(luvio: $64$luvio_engine_Luvio, config: PostPerformCalculationConfig, options?: $64$luvio_engine_DispatchResourceRequestContext): Promise<import("@luvio/engine").FulfilledSnapshot<types_PerformCalculationDetailRepresentation_PerformCalculationDetailRepresentation, {}> | import("@luvio/engine").StaleSnapshot<types_PerformCalculationDetailRepresentation_PerformCalculationDetailRepresentation, {}> | import("@luvio/engine").PendingSnapshot<types_PerformCalculationDetailRepresentation_PerformCalculationDetailRepresentation, any>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-materialityassessment",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.216.0",
|
|
4
4
|
"description": "connect endpoints for materiality assessment",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/industries-materialityassessment.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,
|
|
16
|
+
import { serializeStructuredKey, ingestShape, deepFreeze, StoreKeyMap, createResourceParams as createResourceParams$1, typeCheckConfig as typeCheckConfig$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
|
}
|
|
@@ -186,22 +189,13 @@ function createResourceRequest(config) {
|
|
|
186
189
|
|
|
187
190
|
const adapterName = 'postPerformCalculation';
|
|
188
191
|
const postPerformCalculation_ConfigPropertyMetadata = [
|
|
189
|
-
generateParamConfigMetadata('materialityAssessmentId', true),
|
|
192
|
+
generateParamConfigMetadata('materialityAssessmentId', true, 0 /* UrlParameter */, 0 /* String */),
|
|
190
193
|
];
|
|
191
194
|
const postPerformCalculation_ConfigPropertyNames = /*#__PURE__*/ buildAdapterValidationConfig(adapterName, postPerformCalculation_ConfigPropertyMetadata);
|
|
192
|
-
|
|
193
|
-
const resourceParams = {
|
|
194
|
-
urlParams: {
|
|
195
|
-
materialityAssessmentId: config.materialityAssessmentId
|
|
196
|
-
}
|
|
197
|
-
};
|
|
198
|
-
return resourceParams;
|
|
199
|
-
}
|
|
195
|
+
const createResourceParams = /*#__PURE__*/ createResourceParams$1(postPerformCalculation_ConfigPropertyMetadata);
|
|
200
196
|
function typeCheckConfig(untrustedConfig) {
|
|
201
197
|
const config = {};
|
|
202
|
-
|
|
203
|
-
materialityAssessmentId: 0 /* String */,
|
|
204
|
-
});
|
|
198
|
+
typeCheckConfig$1(untrustedConfig, config, postPerformCalculation_ConfigPropertyMetadata);
|
|
205
199
|
return config;
|
|
206
200
|
}
|
|
207
201
|
function validateAdapterConfig(untrustedConfig, configPropertyNames) {
|
|
@@ -264,4 +258,4 @@ withDefaultLuvio((luvio) => {
|
|
|
264
258
|
});
|
|
265
259
|
|
|
266
260
|
export { postPerformCalculation };
|
|
267
|
-
// version: 1.
|
|
261
|
+
// version: 1.216.0-1d57d45fe
|