[
  {
    "id": "cred_internal_api",
    "name": "COD Internal API Bearer",
    "type": "httpHeaderAuth",
    "data": {
      "name": "Authorization",
      "value": "Bearer ${INTERNAL_API_TOKEN}"
    }
  },
  {
    "id": "cred_telegram",
    "name": "COD Telegram Bot",
    "type": "telegramApi",
    "data": {
      "accessToken": "${TELEGRAM_BOT_TOKEN}",
      "baseUrl": "${TELEGRAM_API_BASE_URL}"
    }
  },
  {
    "id": "cred_smtp",
    "name": "COD SMTP",
    "type": "smtp",
    "data": {
      "user": "${SMTP_USER}",
      "password": "${SMTP_PASS}",
      "host": "${SMTP_HOST}",
      "port": "${SMTP_PORT}",
      "secure": false
    }
  },
  {
    "id": "cred_openai",
    "name": "COD OpenAI",
    "type": "openAiApi",
    "data": {
      "apiKey": "${OPENAI_API_KEY}"
    }
  },
  {
    "id": "cred_webhook_key",
    "name": "COD Public Webhook Key",
    "type": "httpHeaderAuth",
    "data": {
      "name": "X-Api-Key",
      "value": "${ORDER_WEBHOOK_KEY}"
    }
  },
  {
    "id": "cred_internal_token",
    "name": "COD Dashboard Event Token",
    "type": "httpHeaderAuth",
    "data": {
      "name": "X-Internal-Token",
      "value": "${INTERNAL_API_TOKEN}"
    }
  }
]
