UNPKG

asl-path-validator

Version:

Validates the path expressions for the Amazon States Language

18 lines 852 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ErrorCodes = exports.AslPathContext = void 0; var AslPathContext; (function (AslPathContext) { AslPathContext["PATH"] = "path"; AslPathContext["REFERENCE_PATH"] = "reference_path"; AslPathContext["RESULT_PATH"] = "result_path"; AslPathContext["PAYLOAD_TEMPLATE"] = "payload_template"; })(AslPathContext = exports.AslPathContext || (exports.AslPathContext = {})); var ErrorCodes; (function (ErrorCodes) { ErrorCodes["parse_error"] = "parse_error"; ErrorCodes["exp_has_functions"] = "exp_has_functions"; ErrorCodes["exp_has_variable"] = "exp_has_variable"; ErrorCodes["exp_has_non_reference_path_ops"] = "exp_has_non_reference_path_ops"; })(ErrorCodes = exports.ErrorCodes || (exports.ErrorCodes = {})); //# sourceMappingURL=types.js.map