From d603d8da4786e34d4d63ef4283d4ba8d841d3f39 Mon Sep 17 00:00:00 2001 From: fragosti Date: Thu, 23 Aug 2018 11:56:08 -0700 Subject: Rename sra-api to sra-spec --- packages/sra-api/src/parameters.ts | 39 -------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 packages/sra-api/src/parameters.ts (limited to 'packages/sra-api/src/parameters.ts') diff --git a/packages/sra-api/src/parameters.ts b/packages/sra-api/src/parameters.ts deleted file mode 100644 index 48ffb036d..000000000 --- a/packages/sra-api/src/parameters.ts +++ /dev/null @@ -1,39 +0,0 @@ -import { ParameterObject } from '@loopback/openapi-v3-types'; -export const paginationParameters: ParameterObject[] = [ - { - name: 'page', - in: 'query', - description: 'The number of the page to request in the collection.', - example: 3, - schema: { - type: 'number', - default: 1, - }, - }, - { - name: 'perPage', - in: 'query', - description: 'The number of records to return per page.', - example: 10, - schema: { - type: 'number', - default: 100, - }, - }, -]; - -export const networkdIdParameter: ParameterObject = { - name: 'networkId', - in: 'query', - description: 'The id of the Ethereum network', - example: 42, - schema: { - type: 'number', - default: 1, - }, -}; - -export const generateParameters = (parameters: ParameterObject[], isPaginated: boolean = false): ParameterObject[] => { - const optionalParameters = isPaginated ? paginationParameters : []; - return [...parameters, networkdIdParameter, ...optionalParameters]; -}; -- cgit v1.2.3