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.

24 lines 1.4 kB
"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.AsMessageEndpoint = exports.AsDataEndpoint = exports.AbstractModuleApi = exports.METADATA_DATA_ENDPOINTS = exports.METADATA_MESSAGE_ENDPOINTS = exports.HttpMethod = void 0; var HttpMethod; (function (HttpMethod) { HttpMethod["Get"] = "GET"; HttpMethod["Put"] = "PUT"; HttpMethod["Post"] = "POST"; HttpMethod["Patch"] = "PATCH"; HttpMethod["Delete"] = "DELETE"; })(HttpMethod || (exports.HttpMethod = HttpMethod = {})); exports.METADATA_MESSAGE_ENDPOINTS = 'METADATA_MESSAGE_ENDPOINTS'; exports.METADATA_DATA_ENDPOINTS = 'METADATA_DATA_ENDPOINTS'; var AbstractModuleApi_1 = require("./AbstractModuleApi"); Object.defineProperty(exports, "AbstractModuleApi", { enumerable: true, get: function () { return AbstractModuleApi_1.AbstractModuleApi; } }); var AsDataEndpoint_1 = require("./AsDataEndpoint"); Object.defineProperty(exports, "AsDataEndpoint", { enumerable: true, get: function () { return AsDataEndpoint_1.AsDataEndpoint; } }); var AsMessageEndpoint_1 = require("./AsMessageEndpoint"); Object.defineProperty(exports, "AsMessageEndpoint", { enumerable: true, get: function () { return AsMessageEndpoint_1.AsMessageEndpoint; } }); //# sourceMappingURL=index.js.map