Fixing action execution timeout bug which was defaulting the execution timeout to 0 instead of 10.
See merge request theappsmith/internal-tools-server!89
Use page and application names instead of ids
Fixes#85
We now introduce the ability to fetch application & page details via their names and not just with the ids. This is to ensure that the frontend can navigate through pages and applications using just the name. It's a lot more user friendly.
See merge request theappsmith/internal-tools-server!81
Feature/plugin execution timeout
Action execution timeout can now be configured inside actionConfiguration. If the execution takes longer than the configured value (or default 10s) an error with message "Plugin Execution timed out." is returned.
Fixes#61
See merge request theappsmith/internal-tools-server!88
Drafts in API Pane
Closes: #285#223#142#224#231#176#198#249#98#248#237#233#276#178#281
* #223, #142: Added feature to save drafts of apis which are indicated by an orange dot next to it
* #285#224: Added better routing in the api pane to save last visited api and selecting by default
* #231: Fixed button disabled state
* #176: Adding 2 headers and param rows by default
* #198#98: Adding a default name for api `Action{Number}`
* #249: Fixed multiple scrolls in the response view
* #248#237#233#276 : Fixed validations
* #178: Disable post body in GET
* #281: Disable Code Editor context menu
See merge request theappsmith/internal-tools-client!158
Move to absolute paths for all files
Closes#279
This changes all relative updates to absolute for better refactoring
See merge request theappsmith/internal-tools-client!163
Use applicationId and pageId to render pages
The builder and viewer are orchestrated using `applicationId` and `pageId`
- Fixes#256 The application builder and application viewer both now work based on the `applicationId` and `pageId` in the URL.
- Fixes#177 There are placeholders and loading indications, now, in the application viewer.
See merge request theappsmith/internal-tools-client!151
Validation parse widget property
Closes: #298
* Added functionality in validators to provide a parsed value to be used by widgets
* Added validation to (almost) all properties of the widgets
See merge request theappsmith/internal-tools-client!160
Fixes for dry run
Closes#261, #260, #129
By using dirty check, we choose to execute the api with an id or the whole action object. This also checks for new dynamic bindings and values. Also separated out the loading of widget and api pane.
See merge request theappsmith/internal-tools-client!156
Widget loading state.
Implements #297
Widgets have Dynamic properties can be bound to actions. ex: tableData: {{Users}}
Now when a bound action goes into running state, we put the corresponding widget also in a loading state.
See merge request theappsmith/internal-tools-client!152
Revamp widget property validation
Closes#290, #280
Moved to a architecture where a widget defines its validation and we pass safe values to the widget always. Property pane gets the store value and field level validation info
See merge request theappsmith/internal-tools-client!150