@ingestkorea/client-sens
Version:
INGESTKOREA SDK Naver Cloud Platform SENS Client for Node.js.
13 lines (12 loc) • 513 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.middlewareIngestkoreaMetadata = void 0;
const constants_js_1 = require("./constants.js");
const middlewareIngestkoreaMetadata = (next) => async (input, context) => {
input.request.headers = {
...input.request.headers,
[constants_js_1.INGESTKOREA_USER_AGENT]: "@ingestkorea/client-sens/1.10.x",
};
return next(input, context);
};
exports.middlewareIngestkoreaMetadata = middlewareIngestkoreaMetadata;