@cumulus/integration-tests 20.2.1 → 21.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.
Files changed (4) hide show
  1. package/cmr.js +74 -24
  2. package/dist/index.js +175 -73
  3. package/index.js +2 -1
  4. package/package.json +12 -12
package/index.js CHANGED
@@ -349,7 +349,7 @@ const providerExists = async (stackName, id) => {
349
349
  });
350
350
  } catch (error) {
351
351
  if (error.statusCode === 404) {
352
- console.log(`Error: ${error}. Failed to get provider with ID ${id}`);
352
+ console.log(`Error: ${JSON.stringify(error)}. Failed to get provider with ID ${id}`);
353
353
  return false;
354
354
  }
355
355
  throw error;
@@ -801,6 +801,7 @@ module.exports = {
801
801
  getExecutions,
802
802
  getExecutionInputObject,
803
803
  getOnlineResources: cmr.getOnlineResources,
804
+ getCmrMetadata: cmr.getCmrMetadata,
804
805
  getProviderHost,
805
806
  getProviderPort,
806
807
  granulesApi,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cumulus/integration-tests",
3
- "version": "20.2.1",
3
+ "version": "21.0.0",
4
4
  "description": "Integration tests",
5
5
  "bin": {
6
6
  "cumulus-test": "./bin/cli.js"
@@ -31,16 +31,16 @@
31
31
  "license": "Apache-2.0",
32
32
  "dependencies": {
33
33
  "@aws-sdk/client-lambda": "^3.621.0",
34
- "@cumulus/api": "20.2.1",
35
- "@cumulus/api-client": "20.2.1",
36
- "@cumulus/aws-client": "20.2.1",
37
- "@cumulus/cmr-client": "20.2.1",
38
- "@cumulus/cmrjs": "20.2.1",
39
- "@cumulus/common": "20.2.1",
40
- "@cumulus/launchpad-auth": "20.2.1",
41
- "@cumulus/logger": "20.2.1",
42
- "@cumulus/message": "20.2.1",
43
- "@cumulus/oauth-client": "20.2.1",
34
+ "@cumulus/api": "21.0.0",
35
+ "@cumulus/api-client": "21.0.0",
36
+ "@cumulus/aws-client": "21.0.0",
37
+ "@cumulus/cmr-client": "21.0.0",
38
+ "@cumulus/cmrjs": "21.0.0",
39
+ "@cumulus/common": "21.0.0",
40
+ "@cumulus/launchpad-auth": "21.0.0",
41
+ "@cumulus/logger": "21.0.0",
42
+ "@cumulus/message": "21.0.0",
43
+ "@cumulus/oauth-client": "21.0.0",
44
44
  "base-64": "^0.1.0",
45
45
  "commander": "^2.15.0",
46
46
  "dotenv": "^8.2.0",
@@ -57,5 +57,5 @@
57
57
  "uuid": "^3.2.1",
58
58
  "xml2js": "0.5.0"
59
59
  },
60
- "gitHead": "8aeab83b5fd9f7e1818d4631e1e36535e443ae90"
60
+ "gitHead": "19bb3477969662a9e0b300f10f6df23b6c0654db"
61
61
  }