UNPKG

@azure/data-tables

Version:
19 lines 635 B
"use strict"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. Object.defineProperty(exports, "__esModule", { value: true }); exports.cosmosPatchPolicy = cosmosPatchPolicy; const cosmosPatchPolicyName = "cosmosPatchPolicy"; function cosmosPatchPolicy() { return { name: cosmosPatchPolicyName, sendRequest: (request, next) => { if (request.method === "PATCH") { request.method = "POST"; request.headers.set("X-HTTP-Method", "MERGE"); } return next(request); }, }; } //# sourceMappingURL=cosmosPathPolicy.js.map