Files
onspring-api-docs/src/docs/version_002/docsStructure.ts
T

77 lines
1.7 KiB
TypeScript
Raw Normal View History

import { DocsStructure } from '@/app/types/types';
2023-04-09 14:50:50 -05:00
export const versionTwo: DocsStructure = {
version: 'version_002',
2023-04-13 17:22:28 -05:00
hasSwagger: true,
2023-04-09 14:50:50 -05:00
docs: [
{
title: 'Introduction',
folder: 'introduction',
copy: 'copy.md',
example: 'example.md',
},
{
title: 'Authentication',
folder: 'authentication',
copy: 'copy.md',
example: 'example.md',
},
2023-04-13 18:26:33 -05:00
{
title: 'Data Format',
folder: 'data_format',
copy: 'copy.md',
example: 'example.md',
},
2023-04-13 17:22:28 -05:00
{
title: 'Pagination',
folder: 'pagination',
copy: 'copy.md',
example: 'example.md',
},
2023-04-13 21:34:11 -05:00
{
title: 'Error Handling',
folder: 'error_handling',
copy: 'copy.md',
example: 'example.md',
},
{
title: 'Resources',
folder: 'resources',
children: [
{
title: 'Records',
2023-04-13 20:29:27 -05:00
folder: 'records',
copy: 'copy.md',
example: 'example.md',
children: [
2023-04-12 10:54:07 -05:00
{
title: 'Field Values',
2023-04-13 20:29:27 -05:00
folder: 'field_values',
2023-04-12 10:54:07 -05:00
copy: 'copy.md',
example: 'example.md',
},
{
title: 'Get Records by App',
2023-04-13 20:29:27 -05:00
folder: 'get_records_by_app',
copy: 'copy.md',
example: 'example.md',
},
2023-04-13 23:38:07 -05:00
{
title: 'Get Record by Id',
folder: 'get_record_by_id',
copy: 'copy.md',
example: 'example.md',
},
2023-04-14 21:28:36 -05:00
{
title: 'Get Records by Ids',
folder: 'get_records_by_ids',
copy: 'copy.md',
example: 'example.md',
},
],
},
],
},
2023-04-09 14:50:50 -05:00
],
};