@salesforce/lds-adapters-industries-filebased-dataimport 1.260.0 → 1.262.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.
|
@@ -18,4 +18,4 @@ declare let getCsvPreviewData_imperative: any;
|
|
|
18
18
|
declare let getDPEDefinitions_imperative: any;
|
|
19
19
|
declare let getFileBasedDataImportById_imperative: any;
|
|
20
20
|
declare let getFileBasedDataImports_imperative: any;
|
|
21
|
-
export { createFileBasedDataImport, deleteFileBasedDataImport, getAllFields, getAllSobjects, getCsvAutoMap, getCsvPreviewData, getDPEDefinitions, getFileBasedDataImportById, getFileBasedDataImportByIdNotifyChange, getFileBasedDataImports, startAdvanceImport, startSimpleImport, updateFileBasedDataImport, getAllFields_imperative, getAllSobjects_imperative, getCsvAutoMap_imperative, getCsvPreviewData_imperative, getDPEDefinitions_imperative, getFileBasedDataImportById_imperative, getFileBasedDataImports_imperative };
|
|
21
|
+
export { createFileBasedDataImport, deleteFileBasedDataImport, getAllFields, getAllSobjects, getCsvAutoMap, getCsvPreviewData, getDPEDefinitions, getFileBasedDataImportById, getFileBasedDataImportByIdNotifyChange, getFileBasedDataImports, startAdvanceImport, startSimpleImport, updateFileBasedDataImport, getAllFields_imperative, getAllSobjects_imperative, getCsvAutoMap_imperative, getCsvPreviewData_imperative, getDPEDefinitions_imperative, getFileBasedDataImportById_imperative, getFileBasedDataImports_imperative, };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-industries-filebased-dataimport",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.262.0",
|
|
4
4
|
"description": "Resource Family for File Based Data Import Use cases",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "dist/es/es2018/industries-filebased-dataimport.js",
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"test:unit": "jest"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@salesforce/lds-bindings": "^1.
|
|
44
|
+
"@salesforce/lds-bindings": "^1.262.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
48
|
-
"@salesforce/lds-karma": "^1.
|
|
47
|
+
"@salesforce/lds-compiler-plugins": "^1.262.0",
|
|
48
|
+
"@salesforce/lds-karma": "^1.262.0"
|
|
49
49
|
},
|
|
50
50
|
"nx": {
|
|
51
51
|
"targets": {
|
package/sfdc/index.js
CHANGED
|
@@ -3818,8 +3818,15 @@ const getAllSobjectsMetadata = { apiFamily: 'fileBaseddataimport', name: 'getAll
|
|
|
3818
3818
|
const getCsvAutoMapMetadata = { apiFamily: 'fileBaseddataimport', name: 'getCsvAutoMap' };
|
|
3819
3819
|
const getCsvPreviewDataMetadata = { apiFamily: 'fileBaseddataimport', name: 'getCsvPreviewData' };
|
|
3820
3820
|
const getDPEDefinitionsMetadata = { apiFamily: 'fileBaseddataimport', name: 'getDPEDefinitions' };
|
|
3821
|
-
const getFileBasedDataImportByIdMetadata = {
|
|
3822
|
-
|
|
3821
|
+
const getFileBasedDataImportByIdMetadata = {
|
|
3822
|
+
apiFamily: 'fileBaseddataimport',
|
|
3823
|
+
name: 'getFileBasedDataImportById',
|
|
3824
|
+
};
|
|
3825
|
+
const getFileBasedDataImportsMetadata = {
|
|
3826
|
+
apiFamily: 'fileBaseddataimport',
|
|
3827
|
+
name: 'getFileBasedDataImports',
|
|
3828
|
+
};
|
|
3829
|
+
// Notify Update Available
|
|
3823
3830
|
function bindExportsTo(luvio) {
|
|
3824
3831
|
// LDS Adapters
|
|
3825
3832
|
const getAllFields_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getAllFields', getAllFieldsAdapterFactory), getAllFieldsMetadata);
|
|
@@ -3831,7 +3838,7 @@ function bindExportsTo(luvio) {
|
|
|
3831
3838
|
const getFileBasedDataImports_ldsAdapter = createInstrumentedAdapter(createLDSAdapter(luvio, 'getFileBasedDataImports', getFileBasedDataImportsAdapterFactory), getFileBasedDataImportsMetadata);
|
|
3832
3839
|
function unwrapSnapshotData(factory) {
|
|
3833
3840
|
const adapter = factory(luvio);
|
|
3834
|
-
return (config) => adapter(config).then(snapshot => snapshot.data);
|
|
3841
|
+
return (config) => adapter(config).then((snapshot) => snapshot.data);
|
|
3835
3842
|
}
|
|
3836
3843
|
return {
|
|
3837
3844
|
createFileBasedDataImport: unwrapSnapshotData(createFileBasedDataImportAdapterFactory),
|
|
@@ -3854,7 +3861,8 @@ function bindExportsTo(luvio) {
|
|
|
3854
3861
|
getCsvPreviewData_imperative: createImperativeAdapter(luvio, getCsvPreviewData_ldsAdapter, getCsvPreviewDataMetadata),
|
|
3855
3862
|
getDPEDefinitions_imperative: createImperativeAdapter(luvio, getDPEDefinitions_ldsAdapter, getDPEDefinitionsMetadata),
|
|
3856
3863
|
getFileBasedDataImportById_imperative: createImperativeAdapter(luvio, getFileBasedDataImportById_ldsAdapter, getFileBasedDataImportByIdMetadata),
|
|
3857
|
-
getFileBasedDataImports_imperative: createImperativeAdapter(luvio, getFileBasedDataImports_ldsAdapter, getFileBasedDataImportsMetadata)
|
|
3864
|
+
getFileBasedDataImports_imperative: createImperativeAdapter(luvio, getFileBasedDataImports_ldsAdapter, getFileBasedDataImportsMetadata),
|
|
3865
|
+
// Notify Update Availables
|
|
3858
3866
|
};
|
|
3859
3867
|
}
|
|
3860
3868
|
withDefaultLuvio((luvio) => {
|
|
@@ -3878,9 +3886,9 @@ withDefaultLuvio((luvio) => {
|
|
|
3878
3886
|
getCsvPreviewData_imperative,
|
|
3879
3887
|
getDPEDefinitions_imperative,
|
|
3880
3888
|
getFileBasedDataImportById_imperative,
|
|
3881
|
-
getFileBasedDataImports_imperative
|
|
3889
|
+
getFileBasedDataImports_imperative,
|
|
3882
3890
|
} = bindExportsTo(luvio));
|
|
3883
3891
|
});
|
|
3884
3892
|
|
|
3885
3893
|
export { createFileBasedDataImport, deleteFileBasedDataImport, getAllFields, getAllFields_imperative, getAllSobjects, getAllSobjects_imperative, getCsvAutoMap, getCsvAutoMap_imperative, getCsvPreviewData, getCsvPreviewData_imperative, getDPEDefinitions, getDPEDefinitions_imperative, getFileBasedDataImportById, getFileBasedDataImportByIdNotifyChange, getFileBasedDataImportById_imperative, getFileBasedDataImports, getFileBasedDataImports_imperative, startAdvanceImport, startSimpleImport, updateFileBasedDataImport };
|
|
3886
|
-
// version: 1.
|
|
3894
|
+
// version: 1.262.0-d3c071fdc
|