@villedemontreal/workit-stepfunction-client
Version:
Camunda BPM client for WorkIt that works with Camunda platform powered by TypeScript
13 lines • 814 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DISABLE_DATETIME_REVIVER = exports.MAX_ERROR_CODE_LENGTH = exports.MAX_PAYLOAD_LENGTH = exports.MAX_ERROR_CAUSE_LENGTH = void 0;
/*
* Copyright (c) 2025 Ville de Montreal. All rights reserved.
* Licensed under the MIT license.
* See LICENSE file in the project root for full license information.
*/
exports.MAX_ERROR_CAUSE_LENGTH = Number(process.env.WORKIT_STEP_FUNCTION_MAX_ERROR_CAUSE_LENGTH) || 32768;
exports.MAX_PAYLOAD_LENGTH = Number(process.env.WORKIT_STEP_FUNCTION_MAX_PAYLOAD_LENGTH) || 262144;
exports.MAX_ERROR_CODE_LENGTH = Number(process.env.WORKIT_STEP_FUNCTION_MAX_ERROR_CODE_LENGTH) || 256;
exports.DISABLE_DATETIME_REVIVER = !!process.env.WORKIT_DISABLE_DATETIME_REVIVER;
//# sourceMappingURL=params.js.map