@@ -453,8 +453,10 @@ export interface components {
453453 | components [ "schemas" ] [ "SelectParameterModel" ]
454454 | components [ "schemas" ] [ "DataParameterModel" ]
455455 | components [ "schemas" ] [ "DataCollectionParameterModel" ]
456+ | components [ "schemas" ] [ "DataColumnParameterModel" ]
456457 | components [ "schemas" ] [ "DirectoryUriParameterModel" ]
457458 | components [ "schemas" ] [ "RulesParameterModel" ]
459+ | components [ "schemas" ] [ "DrillDownParameterModel" ]
458460 | components [ "schemas" ] [ "ColorParameterModel" ]
459461 | components [ "schemas" ] [ "ConditionalParameterModel" ]
460462 | components [ "schemas" ] [ "RepeatParameterModel" ]
@@ -689,6 +691,39 @@ export interface components {
689691 */
690692 parameter_type ?: "gx_data_collection"
691693 }
694+ /** DataColumnParameterModel */
695+ DataColumnParameterModel : {
696+ /** Argument */
697+ argument ?: string | null
698+ /** Help */
699+ help ?: string | null
700+ /**
701+ * Hidden
702+ * @default false
703+ */
704+ hidden ?: boolean
705+ /**
706+ * Is Dynamic
707+ * @default false
708+ */
709+ is_dynamic ?: boolean
710+ /** Label */
711+ label ?: string | null
712+ /** Name */
713+ name : string
714+ /**
715+ * Optional
716+ * @default false
717+ */
718+ optional ?: boolean
719+ /**
720+ * Parameter Type
721+ * @default gx_data_column
722+ * @constant
723+ * @enum {string}
724+ */
725+ parameter_type ?: "gx_data_column"
726+ }
692727 /** DataParameterModel */
693728 DataParameterModel : {
694729 /** Argument */
@@ -815,6 +850,59 @@ export interface components {
815850 /** Value */
816851 value : string | null
817852 }
853+ /** DrillDownOptionsDict */
854+ DrillDownOptionsDict : {
855+ /** Name */
856+ name : string | null
857+ /** Options */
858+ options : components [ "schemas" ] [ "DrillDownOptionsDict" ] [ ]
859+ /** Selected */
860+ selected : boolean
861+ /** Value */
862+ value : string
863+ }
864+ /** DrillDownParameterModel */
865+ DrillDownParameterModel : {
866+ /** Argument */
867+ argument ?: string | null
868+ /** Help */
869+ help ?: string | null
870+ /**
871+ * Hidden
872+ * @default false
873+ */
874+ hidden ?: boolean
875+ /**
876+ * Hierarchy
877+ * @enum {string}
878+ */
879+ hierarchy : "recurse" | "exact"
880+ /**
881+ * Is Dynamic
882+ * @default false
883+ */
884+ is_dynamic ?: boolean
885+ /** Label */
886+ label ?: string | null
887+ /** Multiple */
888+ multiple : boolean
889+ /** Name */
890+ name : string
891+ /**
892+ * Optional
893+ * @default false
894+ */
895+ optional ?: boolean
896+ /** Options */
897+ options ?: components [ "schemas" ] [ "DrillDownOptionsDict" ] [ ] | null
898+ /**
899+ * Parameter Type
900+ * @default gx_drill_down
901+ * @constant
902+ * @enum {string}
903+ */
904+ parameter_type ?: "gx_drill_down"
905+ }
818906 /** FailedRepositoryUpdateMessage */
819907 FailedRepositoryUpdateMessage : {
820908 /** Err Msg */
@@ -1062,8 +1150,10 @@ export interface components {
10621150 | components [ "schemas" ] [ "SelectParameterModel" ]
10631151 | components [ "schemas" ] [ "DataParameterModel" ]
10641152 | components [ "schemas" ] [ "DataCollectionParameterModel" ]
1153+ | components [ "schemas" ] [ "DataColumnParameterModel" ]
10651154 | components [ "schemas" ] [ "DirectoryUriParameterModel" ]
10661155 | components [ "schemas" ] [ "RulesParameterModel" ]
1156+ | components [ "schemas" ] [ "DrillDownParameterModel" ]
10671157 | components [ "schemas" ] [ "ColorParameterModel" ]
10681158 | components [ "schemas" ] [ "ConditionalParameterModel" ]
10691159 | components [ "schemas" ] [ "RepeatParameterModel" ]
@@ -1143,8 +1233,10 @@ export interface components {
11431233 | components [ "schemas" ] [ "SelectParameterModel" ]
11441234 | components [ "schemas" ] [ "DataParameterModel" ]
11451235 | components [ "schemas" ] [ "DataCollectionParameterModel" ]
1236+ | components [ "schemas" ] [ "DataColumnParameterModel" ]
11461237 | components [ "schemas" ] [ "DirectoryUriParameterModel" ]
11471238 | components [ "schemas" ] [ "RulesParameterModel" ]
1239+ | components [ "schemas" ] [ "DrillDownParameterModel" ]
11481240 | components [ "schemas" ] [ "ColorParameterModel" ]
11491241 | components [ "schemas" ] [ "ConditionalParameterModel" ]
11501242 | components [ "schemas" ] [ "RepeatParameterModel" ]
@@ -1489,8 +1581,10 @@ export interface components {
14891581 | components [ "schemas" ] [ "SelectParameterModel" ]
14901582 | components [ "schemas" ] [ "DataParameterModel" ]
14911583 | components [ "schemas" ] [ "DataCollectionParameterModel" ]
1584+ | components [ "schemas" ] [ "DataColumnParameterModel" ]
14921585 | components [ "schemas" ] [ "DirectoryUriParameterModel" ]
14931586 | components [ "schemas" ] [ "RulesParameterModel" ]
1587+ | components [ "schemas" ] [ "DrillDownParameterModel" ]
14941588 | components [ "schemas" ] [ "ColorParameterModel" ]
14951589 | components [ "schemas" ] [ "ConditionalParameterModel" ]
14961590 | components [ "schemas" ] [ "RepeatParameterModel" ]
0 commit comments