@atmosx/event-product-parser 2.0.14 → 2.0.15
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/dist/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/package.json +1 -1
- package/src/@parsers/@events/api.ts +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -5874,7 +5874,7 @@ var APIAlerts = class {
|
|
|
5874
5874
|
history: [{
|
|
5875
5875
|
description: (_pa = (_oa = feature == null ? void 0 : feature.properties) == null ? void 0 : _oa.description) != null ? _pa : null,
|
|
5876
5876
|
action: (_ra = (_qa = feature == null ? void 0 : feature.properties) == null ? void 0 : _qa.messageType) != null ? _ra : null,
|
|
5877
|
-
|
|
5877
|
+
issued: ((_sa = feature == null ? void 0 : feature.properties) == null ? void 0 : _sa.sent) ? new Date((_ta = feature == null ? void 0 : feature.properties) == null ? void 0 : _ta.sent).toISOString() : null
|
|
5878
5878
|
}]
|
|
5879
5879
|
}
|
|
5880
5880
|
}
|
package/dist/esm/index.mjs
CHANGED
|
@@ -5862,7 +5862,7 @@ var APIAlerts = class {
|
|
|
5862
5862
|
history: [{
|
|
5863
5863
|
description: (_pa = (_oa = feature == null ? void 0 : feature.properties) == null ? void 0 : _oa.description) != null ? _pa : null,
|
|
5864
5864
|
action: (_ra = (_qa = feature == null ? void 0 : feature.properties) == null ? void 0 : _qa.messageType) != null ? _ra : null,
|
|
5865
|
-
|
|
5865
|
+
issued: ((_sa = feature == null ? void 0 : feature.properties) == null ? void 0 : _sa.sent) ? new Date((_ta = feature == null ? void 0 : feature.properties) == null ? void 0 : _ta.sent).toISOString() : null
|
|
5866
5866
|
}]
|
|
5867
5867
|
}
|
|
5868
5868
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atmosx/event-product-parser",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.015",
|
|
4
4
|
"description": "NOAA Weather Wire & NWS API Parser - Built for standalone and Project AtmosphericX Integration.",
|
|
5
5
|
"main": "dist/cjs/index.cjs",
|
|
6
6
|
"module": "dist/esm/index.mjs",
|
|
@@ -133,7 +133,7 @@ export class APIAlerts {
|
|
|
133
133
|
history: [{
|
|
134
134
|
description: feature?.properties?.description ?? null,
|
|
135
135
|
action: feature?.properties?.messageType ?? null,
|
|
136
|
-
|
|
136
|
+
issued: feature?.properties?.sent ? new Date(feature?.properties?.sent).toISOString() : null
|
|
137
137
|
}],
|
|
138
138
|
},
|
|
139
139
|
},
|