"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.WebhookAuthType = exports.SSLCertType = void 0; /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ let WebhookAuthType; exports.WebhookAuthType = WebhookAuthType; (function (WebhookAuthType) { WebhookAuthType["Basic"] = "webhook-authentication-basic"; WebhookAuthType["SSL"] = "webhook-authentication-ssl"; })(WebhookAuthType || (exports.WebhookAuthType = WebhookAuthType = {})); let SSLCertType; exports.SSLCertType = SSLCertType; (function (SSLCertType) { SSLCertType["CRT"] = "ssl-crt-key"; SSLCertType["PFX"] = "ssl-pfx"; })(SSLCertType || (exports.SSLCertType = SSLCertType = {}));