@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.
18 lines • 712 B
JavaScript
// Copyright (c) 2023 S44, LLC
// Copyright Contributors to the CitrineOS Project
//
// SPDX-License-Identifier: Apache 2.0
export var HttpMethod;
(function (HttpMethod) {
HttpMethod["Get"] = "GET";
HttpMethod["Put"] = "PUT";
HttpMethod["Post"] = "POST";
HttpMethod["Patch"] = "PATCH";
HttpMethod["Delete"] = "DELETE";
})(HttpMethod || (HttpMethod = {}));
export const METADATA_MESSAGE_ENDPOINTS = 'METADATA_MESSAGE_ENDPOINTS';
export const METADATA_DATA_ENDPOINTS = 'METADATA_DATA_ENDPOINTS';
export { AbstractModuleApi } from './AbstractModuleApi';
export { AsDataEndpoint } from './AsDataEndpoint';
export { AsMessageEndpoint } from './AsMessageEndpoint';
//# sourceMappingURL=index.js.map