Skip to content

Commit

Permalink
bump 1.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-albert committed Feb 25, 2025
1 parent 557315b commit 01fd367
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 3 deletions.
2 changes: 1 addition & 1 deletion c8oProject.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
contextTimeout: ${lib_baserow.context_timout=3600}
corsOrigin: =Origin
httpSessionTimeout: ${lib_baserow.session_timout=3600}
version: 1.1.11
version: 1.1.12
↓Baserow_API_spec [connectors.HttpConnector]: 🗏 connectors/Baserow_API_spec.yaml
↓c8oforms_fs [connectors.FullSyncConnector]: 🗏 connectors/c8oforms_fs.yaml
↓c8oforms_response_fs [connectors.FullSyncConnector]: 🗏 connectors/c8oforms_response_fs.yaml
Expand Down
74 changes: 72 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ For more technical informations : [documentation](./project.md)

- [Installation](#installation)
- [Sequences](#sequences)
- [_disabled_formssource_GetSelectDataOld](#_disabled_formssource_getselectdataold)
- [_disabled_formssource_GetTableDataOld](#_disabled_formssource_gettabledataold)
- [AdminLogin](#adminlogin)
- [AdminUserCreate](#adminusercreate)
- [AdminUserDelete](#adminuserdelete)
Expand All @@ -45,6 +47,7 @@ For more technical informations : [documentation](./project.md)
- [TableBulkExportWaitFInished](#tablebulkexportwaitfinished)
- [TableBulkImportFromCSV](#tablebulkimportfromcsv)
- [TableBulkUpdateFromCSV](#tablebulkupdatefromcsv)
- [TableCreateColumn](#tablecreatecolumn)
- [TableCreateRow](#tablecreaterow)
- [TableCreateRowApiKey](#tablecreaterowapikey)
- [TableCreateRows](#tablecreaterows)
Expand Down Expand Up @@ -93,6 +96,52 @@ For more technical informations : [documentation](./project.md)
## Sequences
### _disabled_formssource_GetSelectDataOld
Get data from a Baserow table. You will be able to choose the Baserow columns for the names to be displayed in the select dropdown list and the column for the values of each name.
**variables**
<table>
<tr>
<th>name</th><th>comment</th>
</tr>
<tr>
<td>forms_config</td><td>Choose a table in Baserow</td>
</tr>
<tr>
<td>forms_filter</td><td>Filters
</td>
</tr>
<tr>
<td>forms_Filter</td><td>Define a filter to apply to Baserow table</td>
</tr>
<tr>
<td>model</td><td>If true, just return one line of data so that No Code studio can compte the table model</td>
</tr>
</table>
### _disabled_formssource_GetTableDataOld
Get data from a Baserow table for a data grid. Each column of the Baserow table will be displayed as the same column in the data grid
**variables**
<table>
<tr>
<th>name</th><th>comment</th>
</tr>
<tr>
<td>forms_config</td><td>Choose a table in Baserow</td>
</tr>
<tr>
<td>forms_tableFilter</td><td>Define a filter to apply to Baserow table</td>
</tr>
<tr>
<td>model</td><td>If true, just return one line of data so that No Code studio can compte the table model</td>
</tr>
</table>
### AdminLogin
Establishes a session with Baserow. Must be called before any other API
Expand Down Expand Up @@ -239,7 +288,7 @@ Lists all the fields in a baserow table
### forms_AddRow
Add or update a row to a Baserow table. Each column of the table must have the same name as the technicalID of a field on the form. Forms fields can be any type, but usually select lists are mapped on Baserow Linked Columns.
Add or update a row in a Baserow table. If a column in the table has the same name as the technical ID of a form field, the data will be inserted into that column. If the 'Columns creation' option is enabled, a column will be created when the technical ID of a form field does not match any column in the form. Form fields can be of any type, but typically, selection lists are mapped to linked columns in Baserow.
**variables**
Expand All @@ -254,6 +303,9 @@ Add or update a row to a Baserow table. Each column of the table must have the s
<td>forms_config</td><td>Choose a table in Baserow</td>
</tr>
<tr>
<td>forms_createColumn</td><td>Create a column if a field identifier does not match any column in the table</td>
</tr>
<tr>
<td>forms_id</td><td>The Identifier of the row to update. If not set, the action will add a row. If set, all row's columns identified by the 'technicalID' will be updated</td>
</tr>
<tr>
Expand Down Expand Up @@ -317,7 +369,7 @@ Lists all applications (databases) in baserow
### formssource_GetFieldValues
Get all possible values for a given field to feed a Select
Retrieve all possible values from a dropdown list.
**variables**
Expand Down Expand Up @@ -536,6 +588,24 @@ Updates or inserts data in a Table from a CSV file. Given a list of column names
</tr>
</table>
### TableCreateColumn
Creates a row in a table
**variables**
<table>
<tr>
<th>name</th><th>comment</th>
</tr>
<tr>
<td>data</td><td>A JSON object with each field name and value</td>
</tr>
<tr>
<td>table_id</td><td>Insert row in this table_id</td>
</tr>
</table>
### TableCreateRow
Creates a row in a table
Expand Down

0 comments on commit 01fd367

Please sign in to comment.