Browse Source

Merge pull request #4044 from nocodb/fix/4034-swagger-api-corrections

Fix: Swagger - OpenAPI spec corrections
pull/4035/head
աɨռɢӄաօռɢ 2 years ago committed by GitHub
parent
commit
5166686525
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      packages/nocodb/src/lib/meta/api/swagger/helpers/templates/paths.ts

15
packages/nocodb/src/lib/meta/api/swagger/helpers/templates/paths.ts

@ -28,7 +28,7 @@ export const getModelPaths = async (ctx: {
[`/api/v1/db/data/${ctx.orgs}/${ctx.projectName}/${ctx.tableName}`]: {
get: {
summary: `${ctx.tableName} list`,
operationId: 'db-table-row-list',
operationId: `${ctx.tableName.toLowerCase()}-db-table-row-list`,
description: `List of all rows from ${ctx.tableName} ${ctx.type} and response data fields can be filtered based on query params.`,
tags: [ctx.tableName],
parameters: [
@ -172,7 +172,7 @@ export const getModelPaths = async (ctx: {
{
get: {
summary: `${ctx.tableName} find-one`,
operationId: 'db-table-row-find-one',
operationId: `${ctx.tableName.toLowerCase()}-db-table-row-find-one`,
description: `Find first record matching the conditions.`,
tags: [ctx.tableName],
parameters: [fieldsParam, whereParam, sortParam],
@ -349,13 +349,6 @@ export const getModelPaths = async (ctx: {
},
},
tags: [ctx.tableName],
requestBody: {
content: {
'application/json': {
schema: {},
},
},
},
},
},
@ -464,7 +457,6 @@ export const getModelPaths = async (ctx: {
description:
'Export all the records from a table.Currently we are only supports `csv` export.',
tags: [ctx.tableName],
wrapped: true,
responses: {
'200': {
description: 'OK',
@ -562,7 +554,7 @@ export const getViewPaths = async (ctx: {
schema: {
type: 'object',
properties: {
count: 'number',
count: { type: 'number' },
},
},
},
@ -645,7 +637,6 @@ export const getViewPaths = async (ctx: {
description:
'Export all the records from a table view. Currently we are only supports `csv` export.',
tags: [`${ctx.viewName} ( ${ctx.tableName} grid )`],
wrapped: true,
responses: {
'200': {
description: 'OK',

Loading…
Cancel
Save