sf-data-extractor 1.0.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.
@@ -0,0 +1,28 @@
1
+ [
2
+ {
3
+ "object": "Account",
4
+ "compositeKeys": [
5
+ "Id"
6
+ ],
7
+ "query": "SELECT Name, Industry FROM Account",
8
+ "fieldMappings": {
9
+ "Name": "Name",
10
+ "Industry": "Industry",
11
+ "Id": "Id"
12
+ }
13
+ },
14
+
15
+
16
+ {
17
+ "object": "Opportunity",
18
+ "compositeKeys": [
19
+ "Id"
20
+ ],
21
+ "query": "SELECT Name, Amount FROM Opportunity",
22
+ "fieldMappings": {
23
+ "Name": "Name",
24
+ "Id": "Id",
25
+ "Amount": "Amount"
26
+ }
27
+ }
28
+ ]
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "sf-data-extractor",
3
+ "version": "1.0.0",
4
+ "description": "Extract Salesforce data based on load plan and generate beautiful HTML reports",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "sf-data-extractor": "./index.js"
8
+ },
9
+ "scripts": {
10
+ "start": "node index.js",
11
+ "test": "echo \"Error: no test specified\" && exit 1"
12
+ },
13
+ "keywords": [
14
+ "salesforce",
15
+ "data-extraction",
16
+ "cli",
17
+ "reporting",
18
+ "soql"
19
+ ],
20
+ "author": "Mohan Chinnappan",
21
+ "license": "MIT",
22
+ "dependencies": {
23
+ "archiver": "^6.0.1",
24
+ "commander": "^11.1.0",
25
+ "open-resource": "^1.0.2"
26
+ },
27
+ "engines": {
28
+ "node": ">=14.0.0"
29
+ }
30
+ }