@saber-usa/node-common 1.7.26 → 1.7.28

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/udl.js +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saber-usa/node-common",
3
- "version": "1.7.26",
3
+ "version": "1.7.28",
4
4
  "description": "Common node functions for Saber",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -23,7 +23,7 @@
23
23
  "author": "Saber USA",
24
24
  "license": "ISC",
25
25
  "dependencies": {
26
- "@aws-sdk/client-s3": "^3.1078.0",
26
+ "@aws-sdk/client-s3": "^3.1085.0",
27
27
  "date-fns": "^4.4.0",
28
28
  "lodash": "4.18.1",
29
29
  "mathjs": "^15.2.0",
@@ -41,7 +41,7 @@
41
41
  "@jest/globals": "^30.4.1",
42
42
  "@sonar/scan": "^4.3.8",
43
43
  "cross-env": "^10.1.0",
44
- "eslint": "^10.6.0",
44
+ "eslint": "^10.7.0",
45
45
  "eslint-plugin-jest": "^29.15.4",
46
46
  "globals": "^17.7.0",
47
47
  "jest": "^30.4.2",
package/src/udl.js CHANGED
@@ -121,7 +121,7 @@ const udlToNpsConjunction = (udlRow) => {
121
121
  SatNo1: satno1,
122
122
  SatNo2: satno2,
123
123
  Type: _.get(udlRow, "type", null),
124
- Tca: fixDate(_.get(udlRow, "tca", null)),
124
+ Tca: _.get(udlRow, "tca", null),
125
125
  MissDistance: _.get(udlRow, "missDistance", null),
126
126
  CollisionProb: _.get(udlRow, "collisionProb", null),
127
127
  CollisionProbMethod: _.get(udlRow, "collisionProbMethod", null),
@@ -143,14 +143,14 @@ const udlToNpsConjunction = (udlRow) => {
143
143
  HardBodyRadius: _.get(udlRow, "hardBodyRadius", null),
144
144
  HardBodyRadiusShape: _.get(udlRow, "hardBodyRadiusShape", null),
145
145
  PocDilution: _.get(udlRow, "pocDilution", null),
146
- ScreenEntryTime: fixDate(_.get(udlRow, "screenEntryTime", null)),
147
- ScreenExitTime: fixDate(_.get(udlRow, "screenExitTime", null)),
146
+ ScreenEntryTime: _.get(udlRow, "screenEntryTime", null),
147
+ ScreenExitTime: _.get(udlRow, "screenExitTime", null),
148
148
  ScreenVolumeX: _.get(udlRow, "screenVolumeX", null),
149
149
  ScreenVolumeY: _.get(udlRow, "screenVolumeY", null),
150
150
  ScreenVolumeZ: _.get(udlRow, "screenVolumeZ", null),
151
151
  VolShape: _.get(udlRow, "volShape", null),
152
- VolEntryTime: fixDate(_.get(udlRow, "volEntryTime", null)),
153
- VolExitTime: fixDate(_.get(udlRow, "volExitTime", null)),
152
+ VolEntryTime: _.get(udlRow, "volEntryTime", null),
153
+ VolExitTime: _.get(udlRow, "volExitTime", null),
154
154
  PenetrationLevelSigma: _.get(udlRow, "penetrationLevelSigma", null),
155
155
  CdAoM1: _.get(udlRow, "cdAoM1", null),
156
156
  CrAoM1: _.get(udlRow, "crAoM1", null),