@wmfs/statebox
Version:
Orchestrate Node functions using Amazon States Language
29 lines (28 loc) • 2.38 kB
JavaScript
module.exports = {
pass: require('./pass.json'),
passWithResult: require('./pass-with-result.json'),
passWithResultPath: require('./pass-with-result-path.json'),
passWithResultAndResultPath: require('./pass-with-result-and-result-path.json'),
passWithResultAndNullResultPath: require('./pass-with-result-and-null-result-path.json'),
passWithInputPath: require('./pass-with-input-path.json'),
passWithInputPathAndResultPath: require('./pass-with-input-path-and-result-path'),
passWithNullInputPath: require('./pass-with-null-input-path.json'),
passWithNullInputPathAndResultPath: require('./pass-with-null-input-path-and-result-path.json'),
passWithResultAndNullOutputPath: require('./pass-with-result-and-null-output-path'),
passWithResultResultPathAndOutputPath: require('./pass-with-result-result-path-and-output-path'),
passWithFixedParameters: require('./pass-with-fixed-parameters'),
passWithFixedParametersAndNullOutputPath: require('./pass-with-fixed-parameters-and-null-output-path'),
passWithFixedParametersAndResult: require('./pass-with-fixed-parameters-and-result'),
passWithFixedParametersAndResultPath: require('./pass-with-fixed-parameters-and-result-path'),
passWithFixedParametersAndResultResultPath: require('./pass-with-fixed-parameters-and-result-result-path'),
passWithFixedParametersResultPathAndOutputPath: require('./pass-with-fixed-parameters-result-path-and-output-path'),
passWithFixedParametersResultResultPathAndOutputPath: require('./pass-with-fixed-parameters-result-result-path-and-output-path'),
passWithDynamicParameters: require('./pass-with-dynamic-parameters'),
passWithDynamicParametersAndNullOutputPath: require('./pass-with-dynamic-parameters-and-null-output-path'),
passWithDynamicParametersAndResult: require('./pass-with-dynamic-parameters-and-result'),
passWithDynamicParametersAndResultPath: require('./pass-with-dynamic-parameters-and-result-path'),
passWithDynamicParametersAndResultResultPath: require('./pass-with-dynamic-parameters-and-result-result-path'),
passWithDynamicParametersResultPathAndOutputPath: require('./pass-with-dynamic-parameters-result-path-and-output-path'),
passWithDynamicParametersResultResultPathAndOutputPath: require('./pass-with-dynamic-parameters-result-result-path-and-output-path'),
parametersSpecExample: require('./parameters-spec-example')
}