@salesforce/lds-adapters-industries-audit-trail-export 1.207.0 → 1.208.1
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, deepFreeze, StoreKeyMap } from '@luvio/engine';
|
|
7
|
+
import { serializeStructuredKey, deepFreeze, StoreKeyMap, typeCheckScalars } from '@luvio/engine';
|
|
8
8
|
|
|
9
9
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
10
10
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
@@ -598,10 +598,9 @@ function createResourceParams$1(config) {
|
|
|
598
598
|
}
|
|
599
599
|
function typeCheckConfig$1(untrustedConfig) {
|
|
600
600
|
const config = {};
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
}
|
|
601
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
602
|
+
requestIdentifier: 0 /* String */,
|
|
603
|
+
});
|
|
605
604
|
return config;
|
|
606
605
|
}
|
|
607
606
|
function validateAdapterConfig$1(untrustedConfig, configPropertyNames) {
|
|
@@ -851,10 +850,9 @@ function keyBuilder(luvio, config) {
|
|
|
851
850
|
}
|
|
852
851
|
function typeCheckConfig(untrustedConfig) {
|
|
853
852
|
const config = {};
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
}
|
|
853
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
854
|
+
requestIdentifier: 0 /* String */,
|
|
855
|
+
});
|
|
858
856
|
return config;
|
|
859
857
|
}
|
|
860
858
|
function validateAdapterConfig(untrustedConfig, configPropertyNames) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-audit-trail-export",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.208.1",
|
|
4
4
|
"description": "contains end points for audit trail file export",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/umd/es2018/industries-audit-trail-export.js",
|
package/sfdc/index.js
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
/* proxy-compat-disable */
|
|
15
15
|
import { createInstrumentedAdapter, createLDSAdapter, createWireAdapterConstructor, createImperativeAdapter } from 'force/ldsBindings';
|
|
16
16
|
import { withDefaultLuvio } from 'force/ldsEngine';
|
|
17
|
-
import { serializeStructuredKey, deepFreeze, StoreKeyMap } from 'force/luvioEngine';
|
|
17
|
+
import { serializeStructuredKey, deepFreeze, StoreKeyMap, typeCheckScalars } from 'force/luvioEngine';
|
|
18
18
|
|
|
19
19
|
const { hasOwnProperty: ObjectPrototypeHasOwnProperty } = Object.prototype;
|
|
20
20
|
const { keys: ObjectKeys, create: ObjectCreate } = Object;
|
|
@@ -371,10 +371,9 @@ function createResourceParams$2(config) {
|
|
|
371
371
|
}
|
|
372
372
|
function typeCheckConfig$2(untrustedConfig) {
|
|
373
373
|
const config = {};
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
}
|
|
374
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
375
|
+
requestIdentifier: 0 /* String */,
|
|
376
|
+
});
|
|
378
377
|
return config;
|
|
379
378
|
}
|
|
380
379
|
function validateAdapterConfig$2(untrustedConfig, configPropertyNames) {
|
|
@@ -624,10 +623,9 @@ function keyBuilder$2(luvio, config) {
|
|
|
624
623
|
}
|
|
625
624
|
function typeCheckConfig$1(untrustedConfig) {
|
|
626
625
|
const config = {};
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
}
|
|
626
|
+
typeCheckScalars(untrustedConfig, config, {
|
|
627
|
+
requestIdentifier: 0 /* String */,
|
|
628
|
+
});
|
|
631
629
|
return config;
|
|
632
630
|
}
|
|
633
631
|
function validateAdapterConfig$1(untrustedConfig, configPropertyNames) {
|
|
@@ -991,4 +989,4 @@ withDefaultLuvio((luvio) => {
|
|
|
991
989
|
});
|
|
992
990
|
|
|
993
991
|
export { createAuditTrailFileExport, deleteAuditTrailFileExport, getAuditTrailFileExport, getAuditTrailFileExport_imperative, getAuditTrailFileExports, getAuditTrailFileExports_imperative };
|
|
994
|
-
// version: 1.
|
|
992
|
+
// version: 1.208.1-9aaa359ad
|