feat: introduce REQUEST_TYPES constant and update item deletion logic (#6244)

- Added REQUEST_TYPES constant to centralize request type definitions.
- Updated deleteItem action to filter items based on REQUEST_TYPES and folders.
- Modified collection.js to handle REQUEST_TYPES during file resequence operations.
This commit is contained in:
Abhishek S Lal
2025-12-03 16:07:38 +05:30
committed by GitHub
parent 9caef9e573
commit a3d2d35d2e
4 changed files with 8 additions and 2 deletions

View File

@@ -0,0 +1 @@
export const REQUEST_TYPES = ['http-request', 'graphql-request', 'grpc-request', 'ws-request'];