teableio/teable

View on GitHub
packages/openapi/src/space/get-base-list.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { RouteConfig } from '@asteasolutions/zod-to-openapi';
import { axios } from '../axios';
import type { IGetBaseAllVo } from '../base';
import { getBaseItemSchema } from '../base';
import { registerRoute, urlBuilder } from '../utils';
import { z } from '../zod';

export const GET_BASE_LIST = '/space/{spaceId}/base';

export const getBaseListRoSchema = z.object({
  spaceId: z.string(),
});

export type IGetBasesListRo = z.infer<typeof getBaseListRoSchema>;

export const GetBaseListRoute: RouteConfig = registerRoute({
  method: 'get',
  path: GET_BASE_LIST,
  description: 'Get base list by query',
  request: {
    params: getBaseListRoSchema,
  },
  responses: {
    200: {
      description: 'Returns the list of base.',
      content: {
        'application/json': {
          schema: z.array(getBaseItemSchema),
        },
      },
    },
  },
  tags: ['base'],
});

export const getBaseList = async (query: IGetBasesListRo) => {
  return axios.get<IGetBaseAllVo>(urlBuilder(GET_BASE_LIST, query));
};