@cumulus/integration-tests 10.0.0-beta.0 → 10.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.
- package/api/executions.js +2 -2
- package/dist/index.js +2435 -5733
- package/package.json +12 -12
- package/sfnStep.js +2 -2
package/api/executions.js
CHANGED
|
@@ -14,7 +14,7 @@ const executionsApi = require('@cumulus/api-client/executions');
|
|
|
14
14
|
* @returns {Promise<Object>} - the execution fetched by the API
|
|
15
15
|
*/
|
|
16
16
|
const getExecution = async (params) => {
|
|
17
|
-
deprecate('@cumulus/integration-tests/
|
|
17
|
+
deprecate('@cumulus/integration-tests/executions.getExecution', '1.21.0', '@cumulus/api-client/ems.getExecution');
|
|
18
18
|
return await executionsApi.getExecution(params);
|
|
19
19
|
};
|
|
20
20
|
|
|
@@ -43,7 +43,7 @@ const getExecutions = async (params) => {
|
|
|
43
43
|
* @returns {Promise<Object>} - the execution status fetched by the API
|
|
44
44
|
*/
|
|
45
45
|
async function getExecutionStatus(params) {
|
|
46
|
-
deprecate('@cumulus/integration-tests/
|
|
46
|
+
deprecate('@cumulus/integration-tests/executions.getExecutionStatus', '1.21.0', '@cumulus/api-client/executions.getExecutionStatus');
|
|
47
47
|
return await executionsApi.getExecutionStatus(params);
|
|
48
48
|
}
|
|
49
49
|
|