@nodeswork/applet
Version:
Nodeswork Applet Framework
28 lines (27 loc) • 1.1 kB
TypeScript
export declare namespace constants {
namespace environmentValues {
const NODE_ENV_PRODUCTION = "production";
const NODE_ENV_DEVELOPMENT = "dev";
const NODE_ENV_TEST = "test";
}
namespace environmentKeys {
const NA_TYPE = "NW_NA_TYPE";
const NA_VERSION = "NW_NA_VERSION";
const PACKAGE_NAME = "NW_PACKAGE_NAME";
const PACKAGE_VERSION = "NW_PACKAGE_VERSION";
const APPLET_ID = "NW_APPLET_ID";
const APPLET_TOKEN = "NW_APPLET_TOKEN";
}
namespace headers.request {
const APPLET_ID = "Nodeswork-Applet-Id";
const APPLET_TOKEN = "Nodeswork-Applet-Token";
const ACCOUNT_ID = "Nodeswork-Account-Id";
const ACCOUNT_TOKEN = "Nodeswork-Account-Token";
const EXECUTION_ID = "Nodeswork-Execution-Id";
const NA_TYPE = "Nodeswork-Na-Type";
const NA_VERSION = "Nodeswork-Na-Version";
const PACKAGE_NAME = "Nodeswork-Package-Name";
const PACKAGE_VERSION = "Nodeswork-Package-Version";
const USER_APPLET_ID = "Nodeswork-User-Applet-Id";
}
}