@cumulus/hyrax-metadata-updates 22.2.2 → 22.2.4
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/index.js +395 -86
- package/dist/lambda.zip +0 -0
- package/index.js +1 -1
- package/package.json +8 -8
package/dist/lambda.zip
CHANGED
|
Binary file
|
package/index.js
CHANGED
|
@@ -136,7 +136,7 @@ async function getCollectionEntry(config, metadata, isUmmG) {
|
|
|
136
136
|
});
|
|
137
137
|
|
|
138
138
|
// Query CMR for collection and retrieve entry title
|
|
139
|
-
const cmrInstance =
|
|
139
|
+
const cmrInstance = CMR.getInstance(cmrSettings);
|
|
140
140
|
|
|
141
141
|
const searchParams = getCmrSearchParams({
|
|
142
142
|
datasetId,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cumulus/hyrax-metadata-updates",
|
|
3
|
-
"version": "22.2.
|
|
3
|
+
"version": "22.2.4",
|
|
4
4
|
"description": "Update granule metadata with hooks to OPeNDAP URL",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"directories": {
|
|
@@ -41,17 +41,17 @@
|
|
|
41
41
|
"author": "Cumulus Authors",
|
|
42
42
|
"license": "Apache-2.0",
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@cumulus/aws-client": "22.2.
|
|
45
|
-
"@cumulus/cmr-client": "22.2.
|
|
46
|
-
"@cumulus/cmrjs": "22.2.
|
|
47
|
-
"@cumulus/common": "22.2.
|
|
44
|
+
"@cumulus/aws-client": "22.2.4",
|
|
45
|
+
"@cumulus/cmr-client": "22.2.4",
|
|
46
|
+
"@cumulus/cmrjs": "22.2.4",
|
|
47
|
+
"@cumulus/common": "22.2.4",
|
|
48
48
|
"@cumulus/cumulus-message-adapter-js": "2.4.0",
|
|
49
|
-
"@cumulus/errors": "22.2.
|
|
49
|
+
"@cumulus/errors": "22.2.4",
|
|
50
50
|
"lodash": "^4.18.1",
|
|
51
51
|
"xml2js": "0.6.2"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@cumulus/schemas": "22.2.
|
|
54
|
+
"@cumulus/schemas": "22.2.4",
|
|
55
55
|
"jsonwebtoken": "^9.0.0",
|
|
56
56
|
"nock": "^12.0.1",
|
|
57
57
|
"rewire": "^6.0.0"
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"metadata",
|
|
66
66
|
"update"
|
|
67
67
|
],
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "1c5088bdd9271f8d2468503fd74f31e54a79ff13"
|
|
69
69
|
}
|