@villedemontreal/workit
Version:
Worker for Node.js system with pluggable clients that works with both AWS Step function and Camunda platform powered by TypeScript
31 lines • 1.08 kB
JavaScript
;
/*
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SERVICE_IDENTIFIER = void 0;
const workit_bpm_client_1 = require("@villedemontreal/workit-bpm-client");
const workit_stepfunction_client_1 = require("@villedemontreal/workit-stepfunction-client");
exports.SERVICE_IDENTIFIER = {
...workit_stepfunction_client_1.SERVICE_IDENTIFIER,
...workit_bpm_client_1.SERVICE_IDENTIFIER,
/**
* Bind the Generic Camunda client you want to use
*/
camunda_client: Symbol('camunda_client'),
/**
* Bind your own generic client [[Client<IClient>]]
*/
client: Symbol('client'),
/**
* Bind your own client manager [[ClientManager<IClient>]]
*/
client_manager: Symbol('client_manager'),
/**
* Bind your own config for Camunda system
*/
camunda_config: Symbol('camunda_config'),
};
//# sourceMappingURL=identifiers.js.map