declarations.ts 249 B

12345678910111213141516
  1. export type CreateExternalAPIReq = {
  2. name: string
  3. settings: {
  4. endpoint: string
  5. api_key: string
  6. }
  7. }
  8. export type FormSchema = {
  9. variable: string
  10. type: 'text' | 'secret'
  11. label: {
  12. [key: string]: string
  13. }
  14. required: boolean
  15. }