import { HttpMethod } from '../../../index.js';

export const httpMethodDropdownItems = [
  {
    text: HttpMethod.CUSTOM,
    value: HttpMethod.CUSTOM,
  },
  {
    text: HttpMethod.GET,
    value: HttpMethod.GET,
  },
  {
    text: HttpMethod.POST,
    value: HttpMethod.POST,
  },
  {
    text: HttpMethod.PUT,
    value: HttpMethod.PUT,
  },
  {
    text: HttpMethod.DELETE,
    value: HttpMethod.DELETE,
  },
  {
    text: HttpMethod.PATCH,
    value: HttpMethod.PATCH,
  },
  {
    text: HttpMethod.HEAD,
    value: HttpMethod.HEAD,
  },
];

export type IStatusPattern = {
  pattern: string;
};
