cloudflare
Version:
The official TypeScript library for the Cloudflare API
21 lines • 835 B
JavaScript
;
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
Object.defineProperty(exports, "__esModule", { value: true });
exports.Miscategorizations = void 0;
const resource_1 = require("cloudflare/resource");
class Miscategorizations extends resource_1.APIResource {
/**
* Create Miscategorization
*/
create(params, options) {
const { account_id, ...body } = params;
return this._client.post(`/accounts/${account_id}/intel/miscategorization`, {
body,
...options,
})._thenUnwrap((obj) => obj.result);
}
}
exports.Miscategorizations = Miscategorizations;
(function (Miscategorizations) {
})(Miscategorizations = exports.Miscategorizations || (exports.Miscategorizations = {}));
//# sourceMappingURL=miscategorizations.js.map