UNPKG

@citrineos/base

Version:

The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.

20 lines 706 B
"use strict"; // Copyright (c) 2023 S44, LLC // Copyright Contributors to the CitrineOS Project // // SPDX-License-Identifier: Apache 2.0 Object.defineProperty(exports, "__esModule", { value: true }); exports.CacheNamespace = void 0; /** * Cache namespace, used for grouping cache entries */ var CacheNamespace; (function (CacheNamespace) { CacheNamespace["CentralSystem"] = "csms"; CacheNamespace["ChargingStation"] = "cs"; CacheNamespace["Transactions"] = "tx"; CacheNamespace["Connections"] = "conn"; CacheNamespace["Protocol"] = "prtcl"; CacheNamespace["Other"] = "other"; })(CacheNamespace || (exports.CacheNamespace = CacheNamespace = {})); //# sourceMappingURL=types.js.map