feat: Criado um novo grupo de rotas (business) para tratar dos catalogos de produtos e Coleções evitando alterações desnecessárias em arquivos do repositório

This commit is contained in:
Wayre Avelar
2025-02-06 19:04:28 -03:00
parent 9a72b90ab2
commit 6c1355b64b
12 changed files with 121 additions and 79 deletions

View File

@@ -315,21 +315,3 @@ export const profileSchema: JSONSchema7 = {
isBusiness: { type: 'boolean' },
},
};
export const catalogSchema: JSONSchema7 = {
type: 'object',
properties: {
number: { type: 'string' },
limit: { type: 'number' },
cursor: { type: 'string' },
},
};
export const collectionsSchema: JSONSchema7 = {
type: 'object',
properties: {
number: { type: 'string' },
limit: { type: 'number' },
cursor: { type: 'string' },
},
};