ToolJet/plugins/packages/minioapi/lib/operations.json
Arpit 3a62ac9820
[improvement] Query panel redesign (#1947)
* query panel headers styles

* create query button style update

* create query button style update

* create query button style update: mixins

* querypanel header nav-links updated

* querypanel header buttons

* restapi: url hinter styles

* fixes querypane header width, undo prev styles applied

* querypanel header icons margin fix

* restapi: header tab

* restapi: params tab

* restapi: body tab

* base url style fixed

* added alert component to @/_ui

* adds margin top to query-panel tabs

* bumped font weight of preview

* on hover query style updated

* selected query style update and along with dark themed

* adds new searchbox component, added search queries

* fixes query panel query lists icons margin

* query selected hover bg

* back icon should not be render if callback is a function

* airtable: queries redesigned

* stripe: queries redesigned

* fixed query-pane header responsiveness

* fixes tab title typo

* undp/redo select datasource only when mode='create'

* removes comments

* refactor restapi url codehinter styles

* fixes white spaces in query pane and query pane header

* minor updates for restapi query options styles

* removes tool-tip for lens svg icon for search: query-pane header

* adds button loading spinner with primary color

* fixes hover bg color for queries

* update: query hover bg color to lighter tint

* update query list icons: trash and play svgs

* adds icons to the selection component

* fixes tabs alignments restapi

* fixes codehonter text margin: restapi url

* fixes advanced-options-container margintop

* new UI query: dynamodb

* new UI query: elasticsearch

* new UI query: firestore

* new UI query: mongodb

* new UI query: mysql

* new UI query: psql

* new UI query: typesenseapi

* new UI query: gsheet

* new UI query: sendgrid

* new UI query: twillio

* new UI query: gcs

* new UI query: minio

* new UI query: aws

* update query bg color and hover bg color

* fixes run query icon for dark theme

* fixes input query title text alignment

* update query header title

* adds search queries placeholder and add icon when search box is displayed

* updated No results query text

* undo/redo rest-api tabs: fixes whote spaces

* undo/redo: rest-api tabs conde hinter placeholder paddinleft

* adding new queries when search box component is mounted:fix

* fixes creating a new query after filtering queries

* fixes dark theme for select search components

* reverts query pane header search box with add icon

* fixes input left margin

* fixes bottom padding rest api tabs

* fixes toggle button:not selected in dark theme

* fixes typos

* fixes preview button spinner size

* undo/redo: query-trash-icon.svg for queries and trash.svg for components

* query icons badge bg update[options]

* icon badge fix

* move static styles to theme.scss

* restapi: url field height increment

* fixes query name when adding a new query with filtered querylist

* fixes alignment issues of the query header icon

* revert back to 32px code hinter height

* adds apdding to code mirror line

* updates to react-select

* remove component unmounts and mounts side effect
2022-02-02 22:29:57 +05:30

198 lines
No EOL
5.2 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/operations.schema.json",
"title": "Minio datasource",
"description": "A schema defining minio datasource",
"type": "api",
"defaults": {},
"properties": {
"operation": {
"label": "Operation",
"key": "operation",
"type": "dropdown-component-flip",
"description": "Single select dropdown for operation",
"list": [
{
"value": "get_object",
"name": "Read object"
},
{
"value": "put_object",
"name": "Put object"
},
{
"value": "list_buckets",
"name": "List buckets"
},
{
"value": "list_objects",
"name": "List objects in a bucket"
},
{
"value": "signed_url_for_get",
"name": "Presigned url for download"
},
{
"value": "signed_url_for_put",
"name": "Presigned url for upload"
}
]
},
"get_object": {
"bucket": {
"label": "Bucket",
"key": "bucket",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter bucket",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins",
"placeholder": "Enter bucket"
},
"key": {
"label": "Object Name",
"key": "objectName",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter object name",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
}
},
"put_object": {
"bucket": {
"label": "Bucket",
"key": "bucket",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter bucket",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins",
"placeholder": "Enter bucket"
},
"key": {
"label": "Object Name",
"key": "objectName",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter object name",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
},
"contentType": {
"label": "Content Type",
"key": "contentType",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter content type",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
},
"data": {
"label": "Upload data",
"key": "data",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter upload data",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
}
},
"list_objects": {
"bucket": {
"label": "Bucket",
"key": "bucket",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter bucket",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins",
"placeholder": "Enter bucket"
},
"prefix": {
"label": "Prefix",
"key": "prefix",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter prefix",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
}
},
"signed_url_for_get": {
"bucket": {
"label": "Bucket",
"key": "bucket",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter bucket",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins",
"placeholder": "Enter bucket"
},
"key": {
"label": "Object Name",
"key": "objectName",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter key",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
},
"expiresIn": {
"label": "Expires in",
"key": "expiresIn",
"type": "codehinter",
"lineNumbers": false,
"initialValue": "86400",
"description": "Enter expires in",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
}
},
"signed_url_for_put": {
"bucket": {
"label": "Bucket",
"key": "bucket",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter bucket",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins",
"placeholder": "Enter bucket"
},
"key": {
"label": "Object Name",
"key": "objectName",
"type": "codehinter",
"lineNumbers": false,
"description": "Enter key",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
},
"expiresIn": {
"label": "Expires in",
"key": "expiresIn",
"type": "codehinter",
"initialValue": "86400",
"lineNumbers": false,
"description": "Enter expires in",
"width": "320px",
"height": "36px",
"className": "codehinter-plugins"
}
}
}
}