From fb8499a659045655024d562a9c021127a5aa0e58 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Mon, 17 Apr 2023 23:20:04 -0500 Subject: [PATCH] docs: add file sections to doc structure --- src/docs/version_002/docsStructure.ts | 32 +++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/src/docs/version_002/docsStructure.ts b/src/docs/version_002/docsStructure.ts index f048aff..ac2e4a3 100644 --- a/src/docs/version_002/docsStructure.ts +++ b/src/docs/version_002/docsStructure.ts @@ -224,6 +224,38 @@ export const versionTwo: DocsStructure = { }, ], }, + { + title: 'Files', + folder: 'files', + copy: 'copy.md', + example: 'example.md', + children: [ + { + title: 'Get File Info by Id', + folder: 'get_file_info_by_id', + copy: 'copy.md', + example: 'example.md', + }, + { + title: 'Get File by Id', + folder: 'get_file_by_id', + copy: 'copy.md', + example: 'example.md', + }, + { + title: 'Add File', + folder: 'add_file', + copy: 'copy.md', + example: 'example.md', + }, + { + title: 'Delete File by Id', + folder: 'delete_file_by_id', + copy: 'copy.md', + example: 'example.md', + }, + ], + }, ], }, ],