@@ -923,7 +923,6 @@ Return ONLY the query string - no explanations, no quotes around the whole thing
923923 condition : { field : 'operation' , value : 'untrash' } ,
924924 required : true ,
925925 } ,
926- // Export File Fields
927926 {
928927 id : 'exportFileSelector' ,
929928 title : 'Select File to Export' ,
@@ -983,7 +982,6 @@ Return ONLY the query string - no explanations, no quotes around the whole thing
983982 placeholder : 'Optional: Override the exported filename' ,
984983 condition : { field : 'operation' , value : 'export' } ,
985984 } ,
986- // List Revisions Fields
987985 {
988986 id : 'listRevisionsFileSelector' ,
989987 title : 'Select File' ,
@@ -1016,7 +1014,6 @@ Return ONLY the query string - no explanations, no quotes around the whole thing
10161014 mode : 'advanced' ,
10171015 condition : { field : 'operation' , value : 'list_revisions' } ,
10181016 } ,
1019- // Get Revision Fields
10201017 {
10211018 id : 'getRevisionFileSelector' ,
10221019 title : 'Select File' ,
@@ -1049,7 +1046,6 @@ Return ONLY the query string - no explanations, no quotes around the whole thing
10491046 condition : { field : 'operation' , value : 'get_revision' } ,
10501047 required : true ,
10511048 } ,
1052- // List Comments Fields
10531049 {
10541050 id : 'listCommentsFileSelector' ,
10551051 title : 'Select File' ,
@@ -1094,7 +1090,6 @@ Return ONLY the query string - no explanations, no quotes around the whole thing
10941090 mode : 'advanced' ,
10951091 condition : { field : 'operation' , value : 'list_comments' } ,
10961092 } ,
1097- // Create Comment Fields
10981093 {
10991094 id : 'createCommentFileSelector' ,
11001095 title : 'Select File' ,
@@ -1143,7 +1138,6 @@ Return ONLY the comment text - no explanations, no quotes, no extra formatting.`
11431138 mode : 'advanced' ,
11441139 condition : { field : 'operation' , value : 'create_comment' } ,
11451140 } ,
1146- // Delete Comment Fields
11471141 {
11481142 id : 'deleteCommentFileSelector' ,
11491143 title : 'Select File' ,
@@ -1281,7 +1275,6 @@ Return ONLY the comment text - no explanations, no quotes, no extra formatting.`
12811275 shareFileId,
12821276 unshareFileId,
12831277 listPermissionsFileId,
1284- // File canonical params for revisions/comments/export operations
12851278 exportFileId,
12861279 listRevisionsFileId,
12871280 getRevisionFileId,
@@ -1408,7 +1401,6 @@ Return ONLY the comment text - no explanations, no quotes, no extra formatting.`
14081401 const includeRevisionsValue =
14091402 includeRevisions === 'true' ? true : includeRevisions === 'false' ? false : undefined
14101403
1411- // Convert includeDeleted dropdown to boolean
14121404 const includeDeletedValue =
14131405 includeDeleted === 'true' ? true : includeDeleted === 'false' ? false : undefined
14141406
@@ -1470,7 +1462,6 @@ Return ONLY the comment text - no explanations, no quotes, no extra formatting.`
14701462 shareFileId : { type : 'string' , description : 'File to share' } ,
14711463 unshareFileId : { type : 'string' , description : 'File to unshare' } ,
14721464 listPermissionsFileId : { type : 'string' , description : 'File to list permissions for' } ,
1473- // Revisions / comments / export canonical file params (per-operation)
14741465 exportFileId : { type : 'string' , description : 'File to export' } ,
14751466 listRevisionsFileId : { type : 'string' , description : 'File to list revisions for' } ,
14761467 getRevisionFileId : { type : 'string' , description : 'File the revision belongs to' } ,
@@ -1509,12 +1500,9 @@ Return ONLY the comment text - no explanations, no quotes, no extra formatting.`
15091500 emailMessage : { type : 'string' , description : 'Custom notification message' } ,
15101501 // Unshare operation inputs
15111502 permissionId : { type : 'string' , description : 'Permission ID to remove' } ,
1512- // Export operation inputs
15131503 exportMimeType : { type : 'string' , description : 'Target MIME type to export to' } ,
1514- // Revision operation inputs
15151504 revisionId : { type : 'string' , description : 'Revision ID to retrieve' } ,
15161505 revisionsPageSize : { type : 'string' , description : 'Results per page for revisions' } ,
1517- // Comment operation inputs
15181506 commentId : { type : 'string' , description : 'Comment ID to delete' } ,
15191507 anchor : { type : 'string' , description : 'Anchor region for a new comment' } ,
15201508 includeDeleted : { type : 'string' , description : 'Include deleted comments when listing' } ,
0 commit comments