Skip to content

Commit

Permalink
Update tool shed client API schema
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed Aug 8, 2024
1 parent 20401f4 commit d69629e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/tool_shed/webapp/frontend/src/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1198,12 +1198,12 @@ export interface components {
* Hidden
* @default false
*/
hidden?: boolean
hidden: boolean
/**
* Is Dynamic
* @default false
*/
is_dynamic?: boolean
is_dynamic: boolean
/** Label */
label?: string | null
/** Name */
Expand All @@ -1212,14 +1212,14 @@ export interface components {
* Optional
* @default false
*/
optional?: boolean
optional: boolean
/**
* Parameter Type
* @default gx_data_column
* @constant
* @enum {string}
*/
parameter_type?: "gx_data_column"
parameter_type: "gx_data_column"
}
/** DataParameterModel */
DataParameterModel: {
Expand Down Expand Up @@ -1368,7 +1368,7 @@ export interface components {
* Hidden
* @default false
*/
hidden?: boolean
hidden: boolean
/**
* Hierarchy
* @enum {string}
Expand All @@ -1378,7 +1378,7 @@ export interface components {
* Is Dynamic
* @default false
*/
is_dynamic?: boolean
is_dynamic: boolean
/** Label */
label?: string | null
/** Multiple */
Expand All @@ -1389,7 +1389,7 @@ export interface components {
* Optional
* @default false
*/
optional?: boolean
optional: boolean
/** Options */
options?: components["schemas"]["DrillDownOptionsDict"][] | null
/**
Expand All @@ -1398,7 +1398,7 @@ export interface components {
* @constant
* @enum {string}
*/
parameter_type?: "gx_drill_down"
parameter_type: "gx_drill_down"
}
/** FailedRepositoryUpdateMessage */
FailedRepositoryUpdateMessage: {
Expand Down

0 comments on commit d69629e

Please sign in to comment.