@velocitycareerlabs/data-loader 1.22.0-dev-build.17674a107 → 1.22.0-dev-build.14af17404

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@velocitycareerlabs/data-loader",
3
- "version": "1.22.0-dev-build.17674a107",
3
+ "version": "1.22.0-dev-build.14af17404",
4
4
  "description": "A tool for uploading data to the different target systems.",
5
5
  "repository": "https://github.com/velocitycareerlabs/packages",
6
6
  "main": "src/index.js",
@@ -30,7 +30,7 @@
30
30
  "prettier": "2.8.8"
31
31
  },
32
32
  "dependencies": {
33
- "chalk": "~5.3.0",
33
+ "chalk": "~4.1.2",
34
34
  "commander": "~12.1.0",
35
35
  "csv-parser": "~3.0.0",
36
36
  "date-fns": "3.6.0",
@@ -41,5 +41,5 @@
41
41
  "nanoid": "3.3.7",
42
42
  "strip-bom-stream": "^4.0.0"
43
43
  },
44
- "gitHead": "77cd0c44b84fbf18ad1bf78b24cf0fe3faee55b9"
44
+ "gitHead": "1b51fbb5f78357b41ac265f5aa039dadb931372f"
45
45
  }
@@ -36,14 +36,14 @@ program
36
36
  For example this should be the email column if matching against an Email credential type, or the phone number if
37
37
  matching against a Phone credential type. Accepts header name or index. Default is 0.`,
38
38
  parseColumn,
39
- '0'
39
+ 0
40
40
  )
41
41
  .option(
42
42
  '-u --vendor-userid-column <vendorUseridColumn>',
43
43
  `the column from the CSV that is users id. Value is made available as "vendorUserId" in the offer template. Accepts
44
44
  header name or index. Default is 0.`,
45
45
  parseColumn,
46
- '0'
46
+ 0
47
47
  )
48
48
  .option(
49
49
  '-e, --endpoint <url>',