2023-04-09 00:24:42 -05:00
|
|
|
import { DocsStructure } from '@/app/types/types';
|
|
|
|
|
|
2023-04-09 14:50:50 -05:00
|
|
|
export const versionTwo: DocsStructure = {
|
|
|
|
|
version: 'version_002',
|
|
|
|
|
docs: [
|
|
|
|
|
{
|
|
|
|
|
title: 'Introduction',
|
|
|
|
|
folder: 'introduction',
|
|
|
|
|
copy: 'copy.md',
|
|
|
|
|
example: 'example.md',
|
|
|
|
|
children: [],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'Authentication',
|
|
|
|
|
folder: 'authentication',
|
|
|
|
|
copy: 'copy.md',
|
|
|
|
|
example: 'example.md',
|
|
|
|
|
children: [],
|
|
|
|
|
},
|
2023-04-11 15:52:48 -05:00
|
|
|
{
|
|
|
|
|
title: 'Resources',
|
|
|
|
|
folder: 'resources',
|
|
|
|
|
children: [
|
|
|
|
|
{
|
|
|
|
|
title: 'Records',
|
|
|
|
|
folder: 'resources/records',
|
|
|
|
|
copy: 'copy.md',
|
|
|
|
|
example: 'example.md',
|
|
|
|
|
children: [
|
2023-04-12 10:54:07 -05:00
|
|
|
{
|
|
|
|
|
title: 'Field Values',
|
|
|
|
|
folder: 'resources/records/field_values',
|
|
|
|
|
copy: 'copy.md',
|
|
|
|
|
example: 'example.md',
|
|
|
|
|
},
|
2023-04-11 15:52:48 -05:00
|
|
|
{
|
|
|
|
|
title: 'Get Records by App',
|
|
|
|
|
folder:
|
|
|
|
|
'resources/records/get_records_by_app',
|
|
|
|
|
copy: 'copy.md',
|
|
|
|
|
example: 'example.md',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
2023-04-09 14:50:50 -05:00
|
|
|
],
|
|
|
|
|
};
|