39 lines
762 B
TypeScript
39 lines
762 B
TypeScript
import { DocsStructure } from '@/app/types/types';
|
|
|
|
export const versionOne: DocsStructure = {
|
|
version: 'version_001',
|
|
hasSwagger: false,
|
|
docs: [
|
|
{
|
|
title: 'Introduction',
|
|
folder: 'introduction',
|
|
copy: 'copy.md',
|
|
example: 'example.md',
|
|
},
|
|
{
|
|
title: 'Authentication',
|
|
folder: 'authentication',
|
|
copy: 'copy.md',
|
|
example: 'example.md',
|
|
},
|
|
{
|
|
title: 'Data Format',
|
|
folder: 'data_format',
|
|
copy: 'copy.md',
|
|
example: 'example.md',
|
|
},
|
|
{
|
|
title: 'Dates',
|
|
folder: 'dates',
|
|
copy: 'copy.md',
|
|
example: 'example.md',
|
|
},
|
|
{
|
|
title: 'Record Id',
|
|
folder: 'record_id',
|
|
copy: 'copy.md',
|
|
example: 'example.md',
|
|
},
|
|
],
|
|
};
|