@gooddata/api-client-tiger 11.35.0-alpha.6 → 11.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -183,6 +183,27 @@ export interface AllTimeDateFilterAllTimeDateFilter {
183
183
  }
184
184
  export type AllTimeDateFilterAllTimeDateFilterEmptyValueHandlingEnum = 'INCLUDE' | 'EXCLUDE' | 'ONLY';
185
185
  export type AllTimeDateFilterAllTimeDateFilterGranularityEnum = 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR' | 'MINUTE_OF_HOUR' | 'HOUR_OF_DAY' | 'DAY_OF_WEEK' | 'DAY_OF_MONTH' | 'DAY_OF_QUARTER' | 'DAY_OF_YEAR' | 'WEEK_OF_YEAR' | 'MONTH_OF_YEAR' | 'QUARTER_OF_YEAR' | 'FISCAL_MONTH' | 'FISCAL_QUARTER' | 'FISCAL_YEAR';
186
+ /**
187
+ * Amplitude service.
188
+ */
189
+ export interface AmplitudeService {
190
+ /**
191
+ * API key for AI project - intended for frontend use.
192
+ */
193
+ 'aiProjectApiKey': string;
194
+ /**
195
+ * API key for GoodData common project - used by backend.
196
+ */
197
+ 'gdCommonApiKey': string;
198
+ /**
199
+ * Amplitude endpoint URL.
200
+ */
201
+ 'endpoint': string;
202
+ /**
203
+ * Optional reporting endpoint for proxying telemetry events.
204
+ */
205
+ 'reportingEndpoint'?: string;
206
+ }
186
207
  export interface AnomalyDetection {
187
208
  'measure': LocalIdentifier;
188
209
  /**
@@ -650,6 +671,27 @@ export interface DashboardAttributeFilterAttributeFilter {
650
671
  'localIdentifier'?: string;
651
672
  }
652
673
  export type DashboardAttributeFilterAttributeFilterSelectionModeEnum = 'single' | 'multi';
674
+ export interface DashboardCompoundComparisonCondition {
675
+ 'comparison': DashboardCompoundComparisonConditionComparison;
676
+ }
677
+ export interface DashboardCompoundComparisonConditionComparison {
678
+ 'operator': DashboardCompoundComparisonConditionComparisonOperatorEnum;
679
+ 'value': number;
680
+ }
681
+ export type DashboardCompoundComparisonConditionComparisonOperatorEnum = 'GREATER_THAN' | 'GREATER_THAN_OR_EQUAL_TO' | 'LESS_THAN' | 'LESS_THAN_OR_EQUAL_TO' | 'EQUAL_TO' | 'NOT_EQUAL_TO';
682
+ /**
683
+ * @type DashboardCompoundConditionItem
684
+ */
685
+ export type DashboardCompoundConditionItem = DashboardCompoundComparisonCondition | DashboardCompoundRangeCondition;
686
+ export interface DashboardCompoundRangeCondition {
687
+ 'range': DashboardCompoundRangeConditionRange;
688
+ }
689
+ export interface DashboardCompoundRangeConditionRange {
690
+ 'operator': DashboardCompoundRangeConditionRangeOperatorEnum;
691
+ 'from': number;
692
+ 'to': number;
693
+ }
694
+ export type DashboardCompoundRangeConditionRangeOperatorEnum = 'BETWEEN' | 'NOT_BETWEEN';
653
695
  export interface DashboardDateFilter {
654
696
  'dateFilter': DashboardDateFilterDateFilter;
655
697
  }
@@ -697,7 +739,7 @@ export type DashboardExportSettingsPageOrientationEnum = 'PORTRAIT' | 'LANDSCAPE
697
739
  /**
698
740
  * @type DashboardFilter
699
741
  */
700
- export type DashboardFilter = DashboardArbitraryAttributeFilter | DashboardAttributeFilter | DashboardDateFilter | DashboardMatchAttributeFilter;
742
+ export type DashboardFilter = DashboardArbitraryAttributeFilter | DashboardAttributeFilter | DashboardDateFilter | DashboardMatchAttributeFilter | DashboardMeasureValueFilter;
701
743
  export interface DashboardMatchAttributeFilter {
702
744
  'matchAttributeFilter': DashboardMatchAttributeFilterMatchAttributeFilter;
703
745
  }
@@ -711,6 +753,15 @@ export interface DashboardMatchAttributeFilterMatchAttributeFilter {
711
753
  'localIdentifier'?: string;
712
754
  }
713
755
  export type DashboardMatchAttributeFilterMatchAttributeFilterOperatorEnum = 'contains' | 'startsWith' | 'endsWith';
756
+ export interface DashboardMeasureValueFilter {
757
+ 'dashboardMeasureValueFilter': DashboardMeasureValueFilterDashboardMeasureValueFilter;
758
+ }
759
+ export interface DashboardMeasureValueFilterDashboardMeasureValueFilter {
760
+ 'measure': IdentifierRef;
761
+ 'conditions': Array<DashboardCompoundConditionItem>;
762
+ 'title'?: string;
763
+ 'localIdentifier'?: string;
764
+ }
714
765
  export interface DashboardPermissions {
715
766
  /**
716
767
  * List of rules
@@ -794,7 +845,7 @@ export interface DataSourceStatisticsResponse {
794
845
  'tables': Array<TableStatisticsEntry>;
795
846
  }
796
847
  /**
797
- * An id of the table. Including ID of data source.
848
+ * An id of the table. Including ID of data source. Must NOT be set on AUXILIARY datasets.
798
849
  */
799
850
  export interface DataSourceTableIdentifier {
800
851
  /**
@@ -878,7 +929,7 @@ export interface DeclarativeAgent {
878
929
  /**
879
930
  * List of custom skills when skillsMode is CUSTOM.
880
931
  */
881
- 'customSkills'?: Array<DeclarativeAgentCustomSkillsEnum | null> | null;
932
+ 'customSkills'?: Array<DeclarativeAgentCustomSkillsEnum>;
882
933
  /**
883
934
  * Whether AI knowledge is enabled.
884
935
  */
@@ -903,7 +954,7 @@ export interface DeclarativeAgent {
903
954
  'modifiedBy'?: DeclarativeUserIdentifier;
904
955
  }
905
956
  export type DeclarativeAgentSkillsModeEnum = 'all' | 'custom';
906
- export type DeclarativeAgentCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'what_if_analysis' | 'knowledge';
957
+ export type DeclarativeAgentCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'dashboard_summary' | 'what_if_analysis' | 'knowledge';
907
958
  /**
908
959
  * AI agent configurations.
909
960
  */
@@ -1264,7 +1315,7 @@ export interface DeclarativeColorPalette {
1264
1315
  */
1265
1316
  export interface DeclarativeColumn {
1266
1317
  /**
1267
- * Column name
1318
+ * Column name. Must not contain NUL (0x00) characters.
1268
1319
  */
1269
1320
  'name': string;
1270
1321
  /**
@@ -1494,11 +1545,11 @@ export interface DeclarativeDataset {
1494
1545
  */
1495
1546
  'facts'?: Array<DeclarativeFact>;
1496
1547
  /**
1497
- * An array of aggregated facts.
1548
+ * An array of aggregated facts. Presence makes the dataset a pre-aggregation dataset, which requires `precedence > 0` and must NOT be set on AUXILIARY datasets.
1498
1549
  */
1499
1550
  'aggregatedFacts'?: Array<DeclarativeAggregatedFact>;
1500
1551
  /**
1501
- * An array of references.
1552
+ * An array of references. The semantics of `sources` depends on the dataset shape: for NORMAL→NORMAL references, `sources` is a compound foreign key to the target dataset\'s grain (one source per grain component, dataType-matched). For pre-aggregation datasets (NORMAL with `aggregatedFacts`), `sources` is reinterpreted as independent column→attribute mappings — one entry per source — and targets are NOT required to be grain components.
1502
1553
  */
1503
1554
  'references': Array<DeclarativeReference>;
1504
1555
  'dataSourceTableId'?: DataSourceTableIdentifier;
@@ -1512,15 +1563,15 @@ export interface DeclarativeDataset {
1512
1563
  */
1513
1564
  'workspaceDataFilterColumns'?: Array<DeclarativeWorkspaceDataFilterColumn>;
1514
1565
  /**
1515
- * An array of explicit workspace data filters.
1566
+ * An array of explicit workspace data filters. Must NOT be set on AUXILIARY datasets.
1516
1567
  */
1517
1568
  'workspaceDataFilterReferences'?: Array<DeclarativeWorkspaceDataFilterReferences>;
1518
1569
  /**
1519
- * Precedence used in aggregate awareness.
1570
+ * Precedence used in aggregate awareness. Pre-aggregation datasets (NORMAL with `aggregatedFacts`) MUST set `precedence > 0`; non-pre-aggregation datasets MUST leave it null. Must NOT be set on AUXILIARY datasets.
1520
1571
  */
1521
1572
  'precedence'?: number;
1522
1573
  /**
1523
- * Dataset type
1574
+ * Dataset type. NORMAL is the standard fact/dim dataset. AUXILIARY denotes a synthetic dataset used as a reference target by pre-aggregation datasets (keystone of the aggregate-awareness design); AUX datasets must not carry `aggregatedFacts`, `sql`, `dataSourceTableId`, `workspaceDataFilterReferences` or `precedence`. Date datasets use a separate schema and are not represented by this enum.
1524
1575
  */
1525
1576
  'type'?: DeclarativeDatasetTypeEnum;
1526
1577
  }
@@ -1539,7 +1590,7 @@ export interface DeclarativeDatasetExtension {
1539
1590
  'workspaceDataFilterReferences'?: Array<DeclarativeWorkspaceDataFilterReferences>;
1540
1591
  }
1541
1592
  /**
1542
- * SQL defining this dataset.
1593
+ * SQL defining this dataset. Must NOT be set on AUXILIARY datasets.
1543
1594
  */
1544
1595
  export interface DeclarativeDatasetSql {
1545
1596
  /**
@@ -1801,6 +1852,27 @@ export interface DeclarativeIdentityProviderIdentifier {
1801
1852
  'type': DeclarativeIdentityProviderIdentifierTypeEnum;
1802
1853
  }
1803
1854
  export type DeclarativeIdentityProviderIdentifierTypeEnum = 'identityProvider';
1855
+ /**
1856
+ * A declarative form of an IP allowlist policy.
1857
+ */
1858
+ export interface DeclarativeIpAllowlistPolicy {
1859
+ /**
1860
+ * Identifier of an IP allowlist policy.
1861
+ */
1862
+ 'id': string;
1863
+ /**
1864
+ * Allowed source IP addresses or CIDR ranges.
1865
+ */
1866
+ 'allowedSources': Array<string>;
1867
+ /**
1868
+ * Target users this policy applies to.
1869
+ */
1870
+ 'users'?: Array<DeclarativeUserIdentifier>;
1871
+ /**
1872
+ * Target user groups this policy applies to.
1873
+ */
1874
+ 'userGroups'?: Array<DeclarativeUserGroupIdentifier>;
1875
+ }
1804
1876
  /**
1805
1877
  * A declarative form of the JWK.
1806
1878
  */
@@ -2076,6 +2148,7 @@ export interface DeclarativeOrganization {
2076
2148
  'organization': DeclarativeOrganizationInfo;
2077
2149
  'users'?: Array<DeclarativeUser>;
2078
2150
  'userGroups'?: Array<DeclarativeUserGroup>;
2151
+ 'ipAllowlistPolicies'?: Array<DeclarativeIpAllowlistPolicy>;
2079
2152
  'dataSources'?: Array<DeclarativeDataSource>;
2080
2153
  'workspaces'?: Array<DeclarativeWorkspace>;
2081
2154
  'workspaceDataFilters'?: Array<DeclarativeWorkspaceDataFilter>;
@@ -2155,7 +2228,7 @@ export interface DeclarativeParameter {
2155
2228
  * Parameter description.
2156
2229
  */
2157
2230
  'description'?: string;
2158
- 'content': NumberParameterDefinition;
2231
+ 'content': DeclarativeParameterContent;
2159
2232
  /**
2160
2233
  * A list of tags.
2161
2234
  */
@@ -2171,6 +2244,10 @@ export interface DeclarativeParameter {
2171
2244
  */
2172
2245
  'createdAt'?: string | null;
2173
2246
  }
2247
+ /**
2248
+ * @type DeclarativeParameterContent
2249
+ */
2250
+ export type DeclarativeParameterContent = NumberParameterDefinition | StringParameterDefinition;
2174
2251
  /**
2175
2252
  * A dataset reference.
2176
2253
  */
@@ -2276,7 +2353,7 @@ export interface DeclarativeSetting {
2276
2353
  */
2277
2354
  'type'?: DeclarativeSettingTypeEnum;
2278
2355
  }
2279
- export type DeclarativeSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS';
2356
+ export type DeclarativeSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
2280
2357
  export interface DeclarativeSingleWorkspacePermission {
2281
2358
  /**
2282
2359
  * Permission name.
@@ -2725,6 +2802,9 @@ export interface DependentEntitiesGraph {
2725
2802
  }
2726
2803
  export interface DependentEntitiesNode {
2727
2804
  'id': string;
2805
+ /**
2806
+ * Object type in the graph.
2807
+ */
2728
2808
  'type': DependentEntitiesNodeTypeEnum;
2729
2809
  'title'?: string;
2730
2810
  }
@@ -2749,9 +2829,12 @@ export interface EntityIdentifier {
2749
2829
  * Object identifier.
2750
2830
  */
2751
2831
  'id': string;
2832
+ /**
2833
+ * Object type in the graph.
2834
+ */
2752
2835
  'type': EntityIdentifierTypeEnum;
2753
2836
  }
2754
- export type EntityIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'label' | 'metric' | 'userDataFilter' | 'automation' | 'knowledgeRecommendation' | 'visualizationObject' | 'filterContext' | 'filterView';
2837
+ export type EntityIdentifierTypeEnum = 'analyticalDashboard' | 'attribute' | 'attributeHierarchy' | 'dashboardPlugin' | 'dataset' | 'fact' | 'label' | 'metric' | 'userDataFilter' | 'parameter' | 'automation' | 'memoryItem' | 'knowledgeRecommendation' | 'visualizationObject' | 'filterContext' | 'filterView';
2755
2838
  /**
2756
2839
  * Request body for entity search operations
2757
2840
  */
@@ -2819,6 +2902,16 @@ export interface ExecutionSettings {
2819
2902
  * JSON content to be used as export request payload for /export/tabular and /export/visual endpoints.
2820
2903
  */
2821
2904
  export type ExportRequest = TabularExportRequest | VisualExportRequest;
2905
+ export interface FeatureFlagsContext {
2906
+ 'earlyAccessValues': Array<string>;
2907
+ 'earlyAccess': string;
2908
+ }
2909
+ /**
2910
+ * Base Structure for feature flags
2911
+ */
2912
+ export interface Features {
2913
+ 'context': FeatureFlagsContext;
2914
+ }
2822
2915
  /**
2823
2916
  * @type FilterDefinition
2824
2917
  * Abstract filter definition type
@@ -3098,7 +3191,7 @@ export interface JsonApiAgentInAttributes {
3098
3191
  'isPreview'?: boolean;
3099
3192
  }
3100
3193
  export type JsonApiAgentInAttributesSkillsModeEnum = 'all' | 'custom';
3101
- export type JsonApiAgentInAttributesCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'what_if_analysis' | 'knowledge';
3194
+ export type JsonApiAgentInAttributesCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'dashboard_summary' | 'what_if_analysis' | 'knowledge';
3102
3195
  export interface JsonApiAgentInDocument {
3103
3196
  'data': JsonApiAgentIn;
3104
3197
  }
@@ -3132,7 +3225,7 @@ export interface JsonApiAgentOutAttributes {
3132
3225
  'modifiedAt'?: string;
3133
3226
  }
3134
3227
  export type JsonApiAgentOutAttributesSkillsModeEnum = 'all' | 'custom';
3135
- export type JsonApiAgentOutAttributesCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'what_if_analysis' | 'knowledge';
3228
+ export type JsonApiAgentOutAttributesCustomSkillsEnum = 'alert' | 'anomaly_detection' | 'clustering' | 'forecasting' | 'key_driver_analysis' | 'metric' | 'schedule_export' | 'visualization' | 'visualization_summary' | 'dashboard_summary' | 'what_if_analysis' | 'knowledge';
3136
3229
  export interface JsonApiAgentOutDocument {
3137
3230
  'data': JsonApiAgentOut;
3138
3231
  'links'?: ObjectLinks;
@@ -3377,7 +3470,7 @@ export interface JsonApiAnalyticalDashboardOutDocument {
3377
3470
  /**
3378
3471
  * @type JsonApiAnalyticalDashboardOutIncludes
3379
3472
  */
3380
- export type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiDashboardPluginOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFilterContextOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiVisualizationObjectOutWithLinks;
3473
+ export type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDashboardOutWithLinks | JsonApiDashboardPluginOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFilterContextOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiParameterOutWithLinks | JsonApiUserIdentifierOutWithLinks | JsonApiVisualizationObjectOutWithLinks;
3381
3474
  /**
3382
3475
  * A JSON:API document with a list of resources
3383
3476
  */
@@ -3424,6 +3517,7 @@ export interface JsonApiAnalyticalDashboardOutRelationships {
3424
3517
  'analyticalDashboards'?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
3425
3518
  'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
3426
3519
  'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
3520
+ 'parameters'?: JsonApiAnalyticalDashboardOutRelationshipsParameters;
3427
3521
  'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
3428
3522
  'filterContexts'?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
3429
3523
  'dashboardPlugins'?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
@@ -3464,6 +3558,12 @@ export interface JsonApiAnalyticalDashboardOutRelationshipsMetrics {
3464
3558
  */
3465
3559
  'data': Array<JsonApiMetricLinkage>;
3466
3560
  }
3561
+ export interface JsonApiAnalyticalDashboardOutRelationshipsParameters {
3562
+ /**
3563
+ * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
3564
+ */
3565
+ 'data': Array<JsonApiParameterLinkage>;
3566
+ }
3467
3567
  export interface JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects {
3468
3568
  /**
3469
3569
  * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
@@ -4234,9 +4334,16 @@ export interface JsonApiCookieSecurityConfigurationIn {
4234
4334
  * API identifier of an object
4235
4335
  */
4236
4336
  'id': string;
4237
- 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
4337
+ 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
4238
4338
  }
4239
4339
  export type JsonApiCookieSecurityConfigurationInTypeEnum = 'cookieSecurityConfiguration';
4340
+ export interface JsonApiCookieSecurityConfigurationInAttributes {
4341
+ 'lastRotation'?: string;
4342
+ /**
4343
+ * Length of interval between automatic rotations expressed in format of ISO 8601 duration
4344
+ */
4345
+ 'rotationInterval'?: string;
4346
+ }
4240
4347
  export interface JsonApiCookieSecurityConfigurationInDocument {
4241
4348
  'data': JsonApiCookieSecurityConfigurationIn;
4242
4349
  }
@@ -4252,7 +4359,7 @@ export interface JsonApiCookieSecurityConfigurationOut {
4252
4359
  * API identifier of an object
4253
4360
  */
4254
4361
  'id': string;
4255
- 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
4362
+ 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
4256
4363
  }
4257
4364
  export type JsonApiCookieSecurityConfigurationOutTypeEnum = 'cookieSecurityConfiguration';
4258
4365
  export interface JsonApiCookieSecurityConfigurationOutDocument {
@@ -4271,16 +4378,9 @@ export interface JsonApiCookieSecurityConfigurationPatch {
4271
4378
  * API identifier of an object
4272
4379
  */
4273
4380
  'id': string;
4274
- 'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
4381
+ 'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
4275
4382
  }
4276
4383
  export type JsonApiCookieSecurityConfigurationPatchTypeEnum = 'cookieSecurityConfiguration';
4277
- export interface JsonApiCookieSecurityConfigurationPatchAttributes {
4278
- 'lastRotation'?: string;
4279
- /**
4280
- * Length of interval between automatic rotations expressed in format of ISO 8601 duration
4281
- */
4282
- 'rotationInterval'?: string;
4283
- }
4284
4384
  export interface JsonApiCookieSecurityConfigurationPatchDocument {
4285
4385
  'data': JsonApiCookieSecurityConfigurationPatch;
4286
4386
  }
@@ -4556,6 +4656,93 @@ export type JsonApiCustomGeoCollectionPatchTypeEnum = 'customGeoCollection';
4556
4656
  export interface JsonApiCustomGeoCollectionPatchDocument {
4557
4657
  'data': JsonApiCustomGeoCollectionPatch;
4558
4658
  }
4659
+ /**
4660
+ * JSON:API representation of customUserApplicationSetting entity.
4661
+ */
4662
+ export interface JsonApiCustomUserApplicationSettingIn {
4663
+ /**
4664
+ * Object type
4665
+ */
4666
+ 'type': JsonApiCustomUserApplicationSettingInTypeEnum;
4667
+ /**
4668
+ * API identifier of an object
4669
+ */
4670
+ 'id': string;
4671
+ 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
4672
+ }
4673
+ export type JsonApiCustomUserApplicationSettingInTypeEnum = 'customUserApplicationSetting';
4674
+ export interface JsonApiCustomUserApplicationSettingInDocument {
4675
+ 'data': JsonApiCustomUserApplicationSettingIn;
4676
+ }
4677
+ /**
4678
+ * JSON:API representation of customUserApplicationSetting entity.
4679
+ */
4680
+ export interface JsonApiCustomUserApplicationSettingOut {
4681
+ /**
4682
+ * Object type
4683
+ */
4684
+ 'type': JsonApiCustomUserApplicationSettingOutTypeEnum;
4685
+ /**
4686
+ * API identifier of an object
4687
+ */
4688
+ 'id': string;
4689
+ 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
4690
+ }
4691
+ export type JsonApiCustomUserApplicationSettingOutTypeEnum = 'customUserApplicationSetting';
4692
+ export interface JsonApiCustomUserApplicationSettingOutDocument {
4693
+ 'data': JsonApiCustomUserApplicationSettingOut;
4694
+ 'links'?: ObjectLinks;
4695
+ }
4696
+ /**
4697
+ * A JSON:API document with a list of resources
4698
+ */
4699
+ export interface JsonApiCustomUserApplicationSettingOutList {
4700
+ 'data': Array<JsonApiCustomUserApplicationSettingOutWithLinks>;
4701
+ 'links'?: ListLinks;
4702
+ 'meta'?: JsonApiAgentOutListMeta;
4703
+ }
4704
+ export interface JsonApiCustomUserApplicationSettingOutWithLinks {
4705
+ /**
4706
+ * Object type
4707
+ */
4708
+ 'type': JsonApiCustomUserApplicationSettingOutWithLinksTypeEnum;
4709
+ /**
4710
+ * API identifier of an object
4711
+ */
4712
+ 'id': string;
4713
+ 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
4714
+ 'links'?: ObjectLinks;
4715
+ }
4716
+ export type JsonApiCustomUserApplicationSettingOutWithLinksTypeEnum = 'customUserApplicationSetting';
4717
+ /**
4718
+ * JSON:API representation of customUserApplicationSetting entity.
4719
+ */
4720
+ export interface JsonApiCustomUserApplicationSettingPostOptionalId {
4721
+ /**
4722
+ * Object type
4723
+ */
4724
+ 'type': JsonApiCustomUserApplicationSettingPostOptionalIdTypeEnum;
4725
+ /**
4726
+ * API identifier of an object
4727
+ */
4728
+ 'id'?: string;
4729
+ 'attributes': JsonApiCustomUserApplicationSettingPostOptionalIdAttributes;
4730
+ }
4731
+ export type JsonApiCustomUserApplicationSettingPostOptionalIdTypeEnum = 'customUserApplicationSetting';
4732
+ export interface JsonApiCustomUserApplicationSettingPostOptionalIdAttributes {
4733
+ 'applicationName': string;
4734
+ /**
4735
+ * Free-form JSON content. Maximum supported length is 250000 characters.
4736
+ */
4737
+ 'content': object;
4738
+ /**
4739
+ * Workspace scope for this setting. Must reference an existing workspace the caller has at least VIEW access to. Null means user-level (no workspace scope).
4740
+ */
4741
+ 'workspaceId'?: string | null;
4742
+ }
4743
+ export interface JsonApiCustomUserApplicationSettingPostOptionalIdDocument {
4744
+ 'data': JsonApiCustomUserApplicationSettingPostOptionalId;
4745
+ }
4559
4746
  /**
4560
4747
  * JSON:API representation of dashboardPlugin entity.
4561
4748
  */
@@ -4830,7 +5017,7 @@ export interface JsonApiDataSourceInAttributes {
4830
5017
  */
4831
5018
  'alternativeDataSourceId'?: string | null;
4832
5019
  /**
4833
- * Determines how datetime values are interpreted in data sources without native support for specifying this.
5020
+ * Determines how datetime values are interpreted in data sources without native support for specifying this. Only StarRocks and AI Lakehouse data sources currently support this.
4834
5021
  */
4835
5022
  'dateTimeSemantics'?: JsonApiDataSourceInAttributesDateTimeSemanticsEnum | null;
4836
5023
  }
@@ -4906,7 +5093,7 @@ export interface JsonApiDataSourceOutAttributes {
4906
5093
  */
4907
5094
  'alternativeDataSourceId'?: string | null;
4908
5095
  /**
4909
- * Determines how datetime values are interpreted in data sources without native support for specifying this.
5096
+ * Determines how datetime values are interpreted in data sources without native support for specifying this. Only StarRocks and AI Lakehouse data sources currently support this.
4910
5097
  */
4911
5098
  'dateTimeSemantics'?: JsonApiDataSourceOutAttributesDateTimeSemanticsEnum | null;
4912
5099
  }
@@ -5013,7 +5200,7 @@ export interface JsonApiDataSourcePatchAttributes {
5013
5200
  */
5014
5201
  'alternativeDataSourceId'?: string | null;
5015
5202
  /**
5016
- * Determines how datetime values are interpreted in data sources without native support for specifying this.
5203
+ * Determines how datetime values are interpreted in data sources without native support for specifying this. Only StarRocks and AI Lakehouse data sources currently support this.
5017
5204
  */
5018
5205
  'dateTimeSemantics'?: JsonApiDataSourcePatchAttributesDateTimeSemanticsEnum | null;
5019
5206
  }
@@ -5781,31 +5968,13 @@ export interface JsonApiFilterViewIn {
5781
5968
  * API identifier of an object
5782
5969
  */
5783
5970
  'id': string;
5784
- 'attributes': JsonApiFilterViewInAttributes;
5785
- 'relationships'?: JsonApiFilterViewInRelationships;
5971
+ 'attributes': JsonApiFilterViewOutAttributes;
5972
+ 'relationships'?: JsonApiFilterViewOutRelationships;
5786
5973
  }
5787
5974
  export type JsonApiFilterViewInTypeEnum = 'filterView';
5788
- export interface JsonApiFilterViewInAttributes {
5789
- 'title': string;
5790
- 'description'?: string;
5791
- 'tags'?: Array<string>;
5792
- 'areRelationsValid'?: boolean;
5793
- /**
5794
- * Indicator whether the filter view should by applied by default.
5795
- */
5796
- 'isDefault'?: boolean;
5797
- /**
5798
- * The respective filter context.
5799
- */
5800
- 'content': object;
5801
- }
5802
5975
  export interface JsonApiFilterViewInDocument {
5803
5976
  'data': JsonApiFilterViewIn;
5804
5977
  }
5805
- export interface JsonApiFilterViewInRelationships {
5806
- 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
5807
- 'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
5808
- }
5809
5978
  /**
5810
5979
  * JSON:API representation of filterView entity.
5811
5980
  */
@@ -5818,10 +5987,24 @@ export interface JsonApiFilterViewOut {
5818
5987
  * API identifier of an object
5819
5988
  */
5820
5989
  'id': string;
5821
- 'attributes': JsonApiFilterViewInAttributes;
5822
- 'relationships'?: JsonApiFilterViewInRelationships;
5990
+ 'attributes': JsonApiFilterViewOutAttributes;
5991
+ 'relationships'?: JsonApiFilterViewOutRelationships;
5823
5992
  }
5824
5993
  export type JsonApiFilterViewOutTypeEnum = 'filterView';
5994
+ export interface JsonApiFilterViewOutAttributes {
5995
+ 'title': string;
5996
+ 'description'?: string;
5997
+ 'tags'?: Array<string>;
5998
+ 'areRelationsValid'?: boolean;
5999
+ /**
6000
+ * Indicator whether the filter view should by applied by default.
6001
+ */
6002
+ 'isDefault'?: boolean;
6003
+ /**
6004
+ * The respective filter context.
6005
+ */
6006
+ 'content': object;
6007
+ }
5825
6008
  export interface JsonApiFilterViewOutDocument {
5826
6009
  'data': JsonApiFilterViewOut;
5827
6010
  'links'?: ObjectLinks;
@@ -5846,6 +6029,10 @@ export interface JsonApiFilterViewOutList {
5846
6029
  */
5847
6030
  'included'?: Array<JsonApiFilterViewOutIncludes>;
5848
6031
  }
6032
+ export interface JsonApiFilterViewOutRelationships {
6033
+ 'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
6034
+ 'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
6035
+ }
5849
6036
  export interface JsonApiFilterViewOutWithLinks {
5850
6037
  /**
5851
6038
  * Object type
@@ -5855,8 +6042,8 @@ export interface JsonApiFilterViewOutWithLinks {
5855
6042
  * API identifier of an object
5856
6043
  */
5857
6044
  'id': string;
5858
- 'attributes': JsonApiFilterViewInAttributes;
5859
- 'relationships'?: JsonApiFilterViewInRelationships;
6045
+ 'attributes': JsonApiFilterViewOutAttributes;
6046
+ 'relationships'?: JsonApiFilterViewOutRelationships;
5860
6047
  'links'?: ObjectLinks;
5861
6048
  }
5862
6049
  export type JsonApiFilterViewOutWithLinksTypeEnum = 'filterView';
@@ -5873,7 +6060,7 @@ export interface JsonApiFilterViewPatch {
5873
6060
  */
5874
6061
  'id': string;
5875
6062
  'attributes': JsonApiFilterViewPatchAttributes;
5876
- 'relationships'?: JsonApiFilterViewInRelationships;
6063
+ 'relationships'?: JsonApiFilterViewOutRelationships;
5877
6064
  }
5878
6065
  export type JsonApiFilterViewPatchTypeEnum = 'filterView';
5879
6066
  export interface JsonApiFilterViewPatchAttributes {
@@ -6083,12 +6270,9 @@ export interface JsonApiJwkIn {
6083
6270
  * API identifier of an object
6084
6271
  */
6085
6272
  'id': string;
6086
- 'attributes'?: JsonApiJwkInAttributes;
6273
+ 'attributes'?: JsonApiJwkOutAttributes;
6087
6274
  }
6088
6275
  export type JsonApiJwkInTypeEnum = 'jwk';
6089
- export interface JsonApiJwkInAttributes {
6090
- 'content'?: RsaSpecification;
6091
- }
6092
6276
  export interface JsonApiJwkInDocument {
6093
6277
  'data': JsonApiJwkIn;
6094
6278
  }
@@ -6104,9 +6288,12 @@ export interface JsonApiJwkOut {
6104
6288
  * API identifier of an object
6105
6289
  */
6106
6290
  'id': string;
6107
- 'attributes'?: JsonApiJwkInAttributes;
6291
+ 'attributes'?: JsonApiJwkOutAttributes;
6108
6292
  }
6109
6293
  export type JsonApiJwkOutTypeEnum = 'jwk';
6294
+ export interface JsonApiJwkOutAttributes {
6295
+ 'content'?: RsaSpecification;
6296
+ }
6110
6297
  export interface JsonApiJwkOutDocument {
6111
6298
  'data': JsonApiJwkOut;
6112
6299
  'links'?: ObjectLinks;
@@ -6128,7 +6315,7 @@ export interface JsonApiJwkOutWithLinks {
6128
6315
  * API identifier of an object
6129
6316
  */
6130
6317
  'id': string;
6131
- 'attributes'?: JsonApiJwkInAttributes;
6318
+ 'attributes'?: JsonApiJwkOutAttributes;
6132
6319
  'links'?: ObjectLinks;
6133
6320
  }
6134
6321
  export type JsonApiJwkOutWithLinksTypeEnum = 'jwk';
@@ -6144,7 +6331,7 @@ export interface JsonApiJwkPatch {
6144
6331
  * API identifier of an object
6145
6332
  */
6146
6333
  'id': string;
6147
- 'attributes'?: JsonApiJwkInAttributes;
6334
+ 'attributes'?: JsonApiJwkOutAttributes;
6148
6335
  }
6149
6336
  export type JsonApiJwkPatchTypeEnum = 'jwk';
6150
6337
  export interface JsonApiJwkPatchDocument {
@@ -6759,10 +6946,28 @@ export interface JsonApiLlmProviderIn {
6759
6946
  * API identifier of an object
6760
6947
  */
6761
6948
  'id': string;
6762
- 'attributes'?: JsonApiLlmProviderInAttributes;
6949
+ 'attributes'?: JsonApiLlmProviderOutAttributes;
6763
6950
  }
6764
6951
  export type JsonApiLlmProviderInTypeEnum = 'llmProvider';
6765
- export interface JsonApiLlmProviderInAttributes {
6952
+ export interface JsonApiLlmProviderInDocument {
6953
+ 'data': JsonApiLlmProviderIn;
6954
+ }
6955
+ /**
6956
+ * LLM Provider configuration for connecting to LLM services.
6957
+ */
6958
+ export interface JsonApiLlmProviderOut {
6959
+ /**
6960
+ * Object type
6961
+ */
6962
+ 'type': JsonApiLlmProviderOutTypeEnum;
6963
+ /**
6964
+ * API identifier of an object
6965
+ */
6966
+ 'id': string;
6967
+ 'attributes'?: JsonApiLlmProviderOutAttributes;
6968
+ }
6969
+ export type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
6970
+ export interface JsonApiLlmProviderOutAttributes {
6766
6971
  'name'?: string | null;
6767
6972
  /**
6768
6973
  * Description of the LLM Provider.
@@ -6772,16 +6977,16 @@ export interface JsonApiLlmProviderInAttributes {
6772
6977
  * Required ID of the default model to use from the models list.
6773
6978
  */
6774
6979
  'defaultModelId'?: string | null;
6775
- 'providerConfig'?: JsonApiLlmProviderInAttributesProviderConfig | null;
6980
+ 'providerConfig'?: JsonApiLlmProviderOutAttributesProviderConfig | null;
6776
6981
  /**
6777
6982
  * List of LLM models available for this provider.
6778
6983
  */
6779
- 'models'?: Array<JsonApiLlmProviderInAttributesModelsInner> | null;
6984
+ 'models'?: Array<JsonApiLlmProviderOutAttributesModelsInner> | null;
6780
6985
  }
6781
6986
  /**
6782
6987
  * LLM Model configuration (id, family) within a provider.
6783
6988
  */
6784
- export interface JsonApiLlmProviderInAttributesModelsInner {
6989
+ export interface JsonApiLlmProviderOutAttributesModelsInner {
6785
6990
  /**
6786
6991
  * Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
6787
6992
  */
@@ -6789,32 +6994,14 @@ export interface JsonApiLlmProviderInAttributesModelsInner {
6789
6994
  /**
6790
6995
  * Family of LLM models.
6791
6996
  */
6792
- 'family': JsonApiLlmProviderInAttributesModelsInnerFamilyEnum;
6997
+ 'family': JsonApiLlmProviderOutAttributesModelsInnerFamilyEnum;
6793
6998
  }
6794
- export type JsonApiLlmProviderInAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
6999
+ export type JsonApiLlmProviderOutAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
6795
7000
  /**
6796
- * @type JsonApiLlmProviderInAttributesProviderConfig
7001
+ * @type JsonApiLlmProviderOutAttributesProviderConfig
6797
7002
  * Provider-specific configuration including authentication.
6798
7003
  */
6799
- export type JsonApiLlmProviderInAttributesProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
6800
- export interface JsonApiLlmProviderInDocument {
6801
- 'data': JsonApiLlmProviderIn;
6802
- }
6803
- /**
6804
- * LLM Provider configuration for connecting to LLM services.
6805
- */
6806
- export interface JsonApiLlmProviderOut {
6807
- /**
6808
- * Object type
6809
- */
6810
- 'type': JsonApiLlmProviderOutTypeEnum;
6811
- /**
6812
- * API identifier of an object
6813
- */
6814
- 'id': string;
6815
- 'attributes'?: JsonApiLlmProviderInAttributes;
6816
- }
6817
- export type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
7004
+ export type JsonApiLlmProviderOutAttributesProviderConfig = AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
6818
7005
  export interface JsonApiLlmProviderOutDocument {
6819
7006
  'data': JsonApiLlmProviderOut;
6820
7007
  'links'?: ObjectLinks;
@@ -6836,7 +7023,7 @@ export interface JsonApiLlmProviderOutWithLinks {
6836
7023
  * API identifier of an object
6837
7024
  */
6838
7025
  'id': string;
6839
- 'attributes'?: JsonApiLlmProviderInAttributes;
7026
+ 'attributes'?: JsonApiLlmProviderOutAttributes;
6840
7027
  'links'?: ObjectLinks;
6841
7028
  }
6842
7029
  export type JsonApiLlmProviderOutWithLinksTypeEnum = 'llmProvider';
@@ -6852,7 +7039,7 @@ export interface JsonApiLlmProviderPatch {
6852
7039
  * API identifier of an object
6853
7040
  */
6854
7041
  'id': string;
6855
- 'attributes'?: JsonApiLlmProviderInAttributes;
7042
+ 'attributes'?: JsonApiLlmProviderOutAttributes;
6856
7043
  }
6857
7044
  export type JsonApiLlmProviderPatchTypeEnum = 'llmProvider';
6858
7045
  export interface JsonApiLlmProviderPatchDocument {
@@ -7159,13 +7346,7 @@ export interface JsonApiMetricOutRelationships {
7159
7346
  'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
7160
7347
  'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
7161
7348
  'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
7162
- 'parameters'?: JsonApiMetricOutRelationshipsParameters;
7163
- }
7164
- export interface JsonApiMetricOutRelationshipsParameters {
7165
- /**
7166
- * References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
7167
- */
7168
- 'data': Array<JsonApiParameterLinkage>;
7349
+ 'parameters'?: JsonApiAnalyticalDashboardOutRelationshipsParameters;
7169
7350
  }
7170
7351
  export interface JsonApiMetricOutWithLinks {
7171
7352
  /**
@@ -7331,7 +7512,7 @@ export type JsonApiNotificationChannelOutTypeEnum = 'notificationChannel';
7331
7512
  export interface JsonApiNotificationChannelOutAttributes {
7332
7513
  'name'?: string | null;
7333
7514
  'description'?: string | null;
7334
- 'destination'?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
7515
+ 'destination'?: JsonApiNotificationChannelOutAttributesDestination;
7335
7516
  'destinationType'?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
7336
7517
  /**
7337
7518
  * Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
@@ -7358,6 +7539,11 @@ export type JsonApiNotificationChannelOutAttributesDestinationTypeEnum = 'WEBHOO
7358
7539
  export type JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
7359
7540
  export type JsonApiNotificationChannelOutAttributesAllowedRecipientsEnum = 'CREATOR' | 'INTERNAL' | 'EXTERNAL';
7360
7541
  export type JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
7542
+ /**
7543
+ * @type JsonApiNotificationChannelOutAttributesDestination
7544
+ * The destination where the notifications are to be sent.
7545
+ */
7546
+ export type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
7361
7547
  export interface JsonApiNotificationChannelOutDocument {
7362
7548
  'data': JsonApiNotificationChannelOut;
7363
7549
  'links'?: ObjectLinks;
@@ -7419,7 +7605,7 @@ export type JsonApiNotificationChannelPostOptionalIdTypeEnum = 'notificationChan
7419
7605
  export interface JsonApiNotificationChannelPostOptionalIdAttributes {
7420
7606
  'name'?: string | null;
7421
7607
  'description'?: string | null;
7422
- 'destination'?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
7608
+ 'destination'?: JsonApiNotificationChannelOutAttributesDestination;
7423
7609
  /**
7424
7610
  * Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
7425
7611
  */
@@ -7444,11 +7630,6 @@ export interface JsonApiNotificationChannelPostOptionalIdAttributes {
7444
7630
  export type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
7445
7631
  export type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = 'CREATOR' | 'INTERNAL' | 'EXTERNAL';
7446
7632
  export type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
7447
- /**
7448
- * @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
7449
- * The destination where the notifications are to be sent.
7450
- */
7451
- export type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
7452
7633
  export interface JsonApiNotificationChannelPostOptionalIdDocument {
7453
7634
  'data': JsonApiNotificationChannelPostOptionalId;
7454
7635
  }
@@ -7464,13 +7645,30 @@ export interface JsonApiOrganizationIn {
7464
7645
  * API identifier of an object
7465
7646
  */
7466
7647
  'id': string;
7467
- 'attributes'?: JsonApiOrganizationPatchAttributes;
7468
- 'relationships'?: JsonApiOrganizationPatchRelationships;
7648
+ 'attributes'?: JsonApiOrganizationInAttributes;
7649
+ 'relationships'?: JsonApiOrganizationInRelationships;
7469
7650
  }
7470
7651
  export type JsonApiOrganizationInTypeEnum = 'organization';
7652
+ export interface JsonApiOrganizationInAttributes {
7653
+ 'name'?: string | null;
7654
+ 'hostname'?: string;
7655
+ 'allowedOrigins'?: Array<string>;
7656
+ /**
7657
+ * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
7658
+ * @deprecated
7659
+ */
7660
+ 'earlyAccess'?: string | null;
7661
+ /**
7662
+ * The early access feature identifiers. They are used to enable experimental features.
7663
+ */
7664
+ 'earlyAccessValues'?: Array<string> | null;
7665
+ }
7471
7666
  export interface JsonApiOrganizationInDocument {
7472
7667
  'data': JsonApiOrganizationIn;
7473
7668
  }
7669
+ export interface JsonApiOrganizationInRelationships {
7670
+ 'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
7671
+ }
7474
7672
  /**
7475
7673
  * JSON:API representation of organization entity.
7476
7674
  */
@@ -7538,7 +7736,7 @@ export type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF_CREATE_
7538
7736
  export interface JsonApiOrganizationOutRelationships {
7539
7737
  'bootstrapUser'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
7540
7738
  'bootstrapUserGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
7541
- 'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
7739
+ 'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
7542
7740
  }
7543
7741
  export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
7544
7742
  'data': JsonApiUserLinkage | null;
@@ -7546,6 +7744,9 @@ export interface JsonApiOrganizationOutRelationshipsBootstrapUser {
7546
7744
  export interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
7547
7745
  'data': JsonApiUserGroupLinkage | null;
7548
7746
  }
7747
+ export interface JsonApiOrganizationOutRelationshipsIdentityProvider {
7748
+ 'data': JsonApiIdentityProviderLinkage | null;
7749
+ }
7549
7750
  /**
7550
7751
  * JSON:API representation of patching organization entity.
7551
7752
  */
@@ -7558,33 +7759,13 @@ export interface JsonApiOrganizationPatch {
7558
7759
  * API identifier of an object
7559
7760
  */
7560
7761
  'id': string;
7561
- 'attributes'?: JsonApiOrganizationPatchAttributes;
7562
- 'relationships'?: JsonApiOrganizationPatchRelationships;
7762
+ 'attributes'?: JsonApiOrganizationInAttributes;
7763
+ 'relationships'?: JsonApiOrganizationInRelationships;
7563
7764
  }
7564
7765
  export type JsonApiOrganizationPatchTypeEnum = 'organization';
7565
- export interface JsonApiOrganizationPatchAttributes {
7566
- 'name'?: string | null;
7567
- 'hostname'?: string;
7568
- 'allowedOrigins'?: Array<string>;
7569
- /**
7570
- * The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
7571
- * @deprecated
7572
- */
7573
- 'earlyAccess'?: string | null;
7574
- /**
7575
- * The early access feature identifiers. They are used to enable experimental features.
7576
- */
7577
- 'earlyAccessValues'?: Array<string> | null;
7578
- }
7579
7766
  export interface JsonApiOrganizationPatchDocument {
7580
7767
  'data': JsonApiOrganizationPatch;
7581
7768
  }
7582
- export interface JsonApiOrganizationPatchRelationships {
7583
- 'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
7584
- }
7585
- export interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
7586
- 'data': JsonApiIdentityProviderLinkage | null;
7587
- }
7588
7769
  /**
7589
7770
  * JSON:API representation of organizationSetting entity.
7590
7771
  */
@@ -7597,9 +7778,17 @@ export interface JsonApiOrganizationSettingIn {
7597
7778
  * API identifier of an object
7598
7779
  */
7599
7780
  'id': string;
7600
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
7781
+ 'attributes'?: JsonApiOrganizationSettingInAttributes;
7601
7782
  }
7602
7783
  export type JsonApiOrganizationSettingInTypeEnum = 'organizationSetting';
7784
+ export interface JsonApiOrganizationSettingInAttributes {
7785
+ /**
7786
+ * Free-form JSON content. Maximum supported length is 15000 characters.
7787
+ */
7788
+ 'content'?: object;
7789
+ 'type'?: JsonApiOrganizationSettingInAttributesTypeEnum;
7790
+ }
7791
+ export type JsonApiOrganizationSettingInAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
7603
7792
  export interface JsonApiOrganizationSettingInDocument {
7604
7793
  'data': JsonApiOrganizationSettingIn;
7605
7794
  }
@@ -7615,17 +7804,9 @@ export interface JsonApiOrganizationSettingOut {
7615
7804
  * API identifier of an object
7616
7805
  */
7617
7806
  'id': string;
7618
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
7807
+ 'attributes'?: JsonApiOrganizationSettingInAttributes;
7619
7808
  }
7620
7809
  export type JsonApiOrganizationSettingOutTypeEnum = 'organizationSetting';
7621
- export interface JsonApiOrganizationSettingOutAttributes {
7622
- /**
7623
- * Free-form JSON content. Maximum supported length is 15000 characters.
7624
- */
7625
- 'content'?: object;
7626
- 'type'?: JsonApiOrganizationSettingOutAttributesTypeEnum;
7627
- }
7628
- export type JsonApiOrganizationSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS';
7629
7810
  export interface JsonApiOrganizationSettingOutDocument {
7630
7811
  'data': JsonApiOrganizationSettingOut;
7631
7812
  'links'?: ObjectLinks;
@@ -7647,7 +7828,7 @@ export interface JsonApiOrganizationSettingOutWithLinks {
7647
7828
  * API identifier of an object
7648
7829
  */
7649
7830
  'id': string;
7650
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
7831
+ 'attributes'?: JsonApiOrganizationSettingInAttributes;
7651
7832
  'links'?: ObjectLinks;
7652
7833
  }
7653
7834
  export type JsonApiOrganizationSettingOutWithLinksTypeEnum = 'organizationSetting';
@@ -7663,7 +7844,7 @@ export interface JsonApiOrganizationSettingPatch {
7663
7844
  * API identifier of an object
7664
7845
  */
7665
7846
  'id': string;
7666
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
7847
+ 'attributes'?: JsonApiOrganizationSettingInAttributes;
7667
7848
  }
7668
7849
  export type JsonApiOrganizationSettingPatchTypeEnum = 'organizationSetting';
7669
7850
  export interface JsonApiOrganizationSettingPatchDocument {
@@ -7717,7 +7898,7 @@ export interface JsonApiParameterOutAttributes {
7717
7898
  'description'?: string;
7718
7899
  'tags'?: Array<string>;
7719
7900
  'areRelationsValid'?: boolean;
7720
- 'definition': NumberParameterDefinition;
7901
+ 'definition': JsonApiParameterOutAttributesDefinition;
7721
7902
  /**
7722
7903
  * Time of the entity creation.
7723
7904
  */
@@ -7727,6 +7908,10 @@ export interface JsonApiParameterOutAttributes {
7727
7908
  */
7728
7909
  'modifiedAt'?: string | null;
7729
7910
  }
7911
+ /**
7912
+ * @type JsonApiParameterOutAttributesDefinition
7913
+ */
7914
+ export type JsonApiParameterOutAttributesDefinition = NumberParameterDefinition | StringParameterDefinition;
7730
7915
  export interface JsonApiParameterOutDocument {
7731
7916
  'data': JsonApiParameterOut;
7732
7917
  'links'?: ObjectLinks;
@@ -7782,7 +7967,7 @@ export interface JsonApiParameterPatchAttributes {
7782
7967
  'description'?: string;
7783
7968
  'tags'?: Array<string>;
7784
7969
  'areRelationsValid'?: boolean;
7785
- 'definition'?: NumberParameterDefinition;
7970
+ 'definition'?: JsonApiParameterOutAttributesDefinition;
7786
7971
  }
7787
7972
  export interface JsonApiParameterPatchDocument {
7788
7973
  'data': JsonApiParameterPatch;
@@ -7807,7 +7992,7 @@ export interface JsonApiParameterPostOptionalIdAttributes {
7807
7992
  'description'?: string;
7808
7993
  'tags'?: Array<string>;
7809
7994
  'areRelationsValid'?: boolean;
7810
- 'definition': NumberParameterDefinition;
7995
+ 'definition': JsonApiParameterOutAttributesDefinition;
7811
7996
  }
7812
7997
  export interface JsonApiParameterPostOptionalIdDocument {
7813
7998
  'data': JsonApiParameterPostOptionalId;
@@ -7900,7 +8085,7 @@ export interface JsonApiUserDataFilterIn {
7900
8085
  * API identifier of an object
7901
8086
  */
7902
8087
  'id': string;
7903
- 'attributes': JsonApiUserDataFilterOutAttributes;
8088
+ 'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
7904
8089
  'relationships'?: JsonApiUserDataFilterPostOptionalIdRelationships;
7905
8090
  }
7906
8091
  export type JsonApiUserDataFilterInTypeEnum = 'userDataFilter';
@@ -7920,17 +8105,10 @@ export interface JsonApiUserDataFilterOut {
7920
8105
  */
7921
8106
  'id': string;
7922
8107
  'meta'?: JsonApiExportDefinitionOutMeta;
7923
- 'attributes': JsonApiUserDataFilterOutAttributes;
8108
+ 'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
7924
8109
  'relationships'?: JsonApiUserDataFilterOutRelationships;
7925
8110
  }
7926
8111
  export type JsonApiUserDataFilterOutTypeEnum = 'userDataFilter';
7927
- export interface JsonApiUserDataFilterOutAttributes {
7928
- 'title'?: string;
7929
- 'description'?: string;
7930
- 'tags'?: Array<string>;
7931
- 'areRelationsValid'?: boolean;
7932
- 'maql': string;
7933
- }
7934
8112
  export interface JsonApiUserDataFilterOutDocument {
7935
8113
  'data': JsonApiUserDataFilterOut;
7936
8114
  'links'?: ObjectLinks;
@@ -7963,7 +8141,7 @@ export interface JsonApiUserDataFilterOutRelationships {
7963
8141
  'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
7964
8142
  'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
7965
8143
  'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
7966
- 'parameters'?: JsonApiMetricOutRelationshipsParameters;
8144
+ 'parameters'?: JsonApiAnalyticalDashboardOutRelationshipsParameters;
7967
8145
  }
7968
8146
  export interface JsonApiUserDataFilterOutWithLinks {
7969
8147
  /**
@@ -7975,7 +8153,7 @@ export interface JsonApiUserDataFilterOutWithLinks {
7975
8153
  */
7976
8154
  'id': string;
7977
8155
  'meta'?: JsonApiExportDefinitionOutMeta;
7978
- 'attributes': JsonApiUserDataFilterOutAttributes;
8156
+ 'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
7979
8157
  'relationships'?: JsonApiUserDataFilterOutRelationships;
7980
8158
  'links'?: ObjectLinks;
7981
8159
  }
@@ -8018,10 +8196,17 @@ export interface JsonApiUserDataFilterPostOptionalId {
8018
8196
  * API identifier of an object
8019
8197
  */
8020
8198
  'id'?: string;
8021
- 'attributes': JsonApiUserDataFilterOutAttributes;
8199
+ 'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
8022
8200
  'relationships'?: JsonApiUserDataFilterPostOptionalIdRelationships;
8023
8201
  }
8024
8202
  export type JsonApiUserDataFilterPostOptionalIdTypeEnum = 'userDataFilter';
8203
+ export interface JsonApiUserDataFilterPostOptionalIdAttributes {
8204
+ 'title'?: string;
8205
+ 'description'?: string;
8206
+ 'tags'?: Array<string>;
8207
+ 'areRelationsValid'?: boolean;
8208
+ 'maql': string;
8209
+ }
8025
8210
  export interface JsonApiUserDataFilterPostOptionalIdDocument {
8026
8211
  'data': JsonApiUserDataFilterPostOptionalId;
8027
8212
  }
@@ -8307,7 +8492,7 @@ export interface JsonApiUserSettingIn {
8307
8492
  * API identifier of an object
8308
8493
  */
8309
8494
  'id': string;
8310
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
8495
+ 'attributes'?: JsonApiOrganizationSettingInAttributes;
8311
8496
  }
8312
8497
  export type JsonApiUserSettingInTypeEnum = 'userSetting';
8313
8498
  export interface JsonApiUserSettingInDocument {
@@ -8325,7 +8510,7 @@ export interface JsonApiUserSettingOut {
8325
8510
  * API identifier of an object
8326
8511
  */
8327
8512
  'id': string;
8328
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
8513
+ 'attributes'?: JsonApiOrganizationSettingInAttributes;
8329
8514
  }
8330
8515
  export type JsonApiUserSettingOutTypeEnum = 'userSetting';
8331
8516
  export interface JsonApiUserSettingOutDocument {
@@ -8349,7 +8534,7 @@ export interface JsonApiUserSettingOutWithLinks {
8349
8534
  * API identifier of an object
8350
8535
  */
8351
8536
  'id': string;
8352
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
8537
+ 'attributes'?: JsonApiOrganizationSettingInAttributes;
8353
8538
  'links'?: ObjectLinks;
8354
8539
  }
8355
8540
  export type JsonApiUserSettingOutWithLinksTypeEnum = 'userSetting';
@@ -8434,12 +8619,8 @@ export interface JsonApiVisualizationObjectOutDocument {
8434
8619
  /**
8435
8620
  * Included resources
8436
8621
  */
8437
- 'included'?: Array<JsonApiVisualizationObjectOutIncludes>;
8622
+ 'included'?: Array<JsonApiMetricOutIncludes>;
8438
8623
  }
8439
- /**
8440
- * @type JsonApiVisualizationObjectOutIncludes
8441
- */
8442
- export type JsonApiVisualizationObjectOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiUserIdentifierOutWithLinks;
8443
8624
  /**
8444
8625
  * A JSON:API document with a list of resources
8445
8626
  */
@@ -8450,7 +8631,7 @@ export interface JsonApiVisualizationObjectOutList {
8450
8631
  /**
8451
8632
  * Included resources
8452
8633
  */
8453
- 'included'?: Array<JsonApiVisualizationObjectOutIncludes>;
8634
+ 'included'?: Array<JsonApiMetricOutIncludes>;
8454
8635
  }
8455
8636
  export interface JsonApiVisualizationObjectOutRelationships {
8456
8637
  'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
@@ -8460,6 +8641,7 @@ export interface JsonApiVisualizationObjectOutRelationships {
8460
8641
  'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
8461
8642
  'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
8462
8643
  'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
8644
+ 'parameters'?: JsonApiAnalyticalDashboardOutRelationshipsParameters;
8463
8645
  'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
8464
8646
  }
8465
8647
  export interface JsonApiVisualizationObjectOutWithLinks {
@@ -9116,7 +9298,7 @@ export interface JsonApiWorkspaceSettingIn {
9116
9298
  * API identifier of an object
9117
9299
  */
9118
9300
  'id': string;
9119
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
9301
+ 'attributes'?: JsonApiOrganizationSettingInAttributes;
9120
9302
  }
9121
9303
  export type JsonApiWorkspaceSettingInTypeEnum = 'workspaceSetting';
9122
9304
  export interface JsonApiWorkspaceSettingInDocument {
@@ -9135,7 +9317,7 @@ export interface JsonApiWorkspaceSettingOut {
9135
9317
  */
9136
9318
  'id': string;
9137
9319
  'meta'?: JsonApiExportDefinitionOutMeta;
9138
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
9320
+ 'attributes'?: JsonApiOrganizationSettingInAttributes;
9139
9321
  }
9140
9322
  export type JsonApiWorkspaceSettingOutTypeEnum = 'workspaceSetting';
9141
9323
  export interface JsonApiWorkspaceSettingOutDocument {
@@ -9160,7 +9342,7 @@ export interface JsonApiWorkspaceSettingOutWithLinks {
9160
9342
  */
9161
9343
  'id': string;
9162
9344
  'meta'?: JsonApiExportDefinitionOutMeta;
9163
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
9345
+ 'attributes'?: JsonApiOrganizationSettingInAttributes;
9164
9346
  'links'?: ObjectLinks;
9165
9347
  }
9166
9348
  export type JsonApiWorkspaceSettingOutWithLinksTypeEnum = 'workspaceSetting';
@@ -9176,7 +9358,7 @@ export interface JsonApiWorkspaceSettingPatch {
9176
9358
  * API identifier of an object
9177
9359
  */
9178
9360
  'id': string;
9179
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
9361
+ 'attributes'?: JsonApiOrganizationSettingInAttributes;
9180
9362
  }
9181
9363
  export type JsonApiWorkspaceSettingPatchTypeEnum = 'workspaceSetting';
9182
9364
  export interface JsonApiWorkspaceSettingPatchDocument {
@@ -9194,7 +9376,7 @@ export interface JsonApiWorkspaceSettingPostOptionalId {
9194
9376
  * API identifier of an object
9195
9377
  */
9196
9378
  'id'?: string;
9197
- 'attributes'?: JsonApiOrganizationSettingOutAttributes;
9379
+ 'attributes'?: JsonApiOrganizationSettingInAttributes;
9198
9380
  }
9199
9381
  export type JsonApiWorkspaceSettingPostOptionalIdTypeEnum = 'workspaceSetting';
9200
9382
  export interface JsonApiWorkspaceSettingPostOptionalIdDocument {
@@ -9224,6 +9406,17 @@ export interface ListLinks {
9224
9406
  */
9225
9407
  'next'?: string;
9226
9408
  }
9409
+ export interface LiveFeatureFlagConfiguration {
9410
+ 'host': string;
9411
+ 'key': string;
9412
+ }
9413
+ /**
9414
+ * Structure for featureHub
9415
+ */
9416
+ export interface LiveFeatures {
9417
+ 'context': FeatureFlagsContext;
9418
+ 'configuration': LiveFeatureFlagConfiguration;
9419
+ }
9227
9420
  export interface LlmProviderAuth {
9228
9421
  'type': string;
9229
9422
  }
@@ -9279,6 +9472,23 @@ export interface MatchAttributeFilterMatchAttributeFilter {
9279
9472
  'label': AfmIdentifier;
9280
9473
  }
9281
9474
  export type MatchAttributeFilterMatchAttributeFilterMatchTypeEnum = 'STARTS_WITH' | 'ENDS_WITH' | 'CONTAINS';
9475
+ /**
9476
+ * Matomo service.
9477
+ */
9478
+ export interface MatomoService {
9479
+ /**
9480
+ * Telemetry host to send events to.
9481
+ */
9482
+ 'host': string;
9483
+ /**
9484
+ * Site ID on telemetry server.
9485
+ */
9486
+ 'siteId': number;
9487
+ /**
9488
+ * Optional reporting endpoint for proxying telemetry events.
9489
+ */
9490
+ 'reportingEndpoint'?: string;
9491
+ }
9282
9492
  /**
9283
9493
  * @type MeasureDefinition
9284
9494
  * Abstract metric definition type
@@ -9417,6 +9627,15 @@ export interface OpenAiApiKeyAuth {
9417
9627
  'type': OpenAiApiKeyAuthTypeEnum;
9418
9628
  }
9419
9629
  export type OpenAiApiKeyAuthTypeEnum = 'API_KEY';
9630
+ /**
9631
+ * OpenTelemetry service.
9632
+ */
9633
+ export interface OpenTelemetryService {
9634
+ /**
9635
+ * Telemetry host to send events to.
9636
+ */
9637
+ 'host': string;
9638
+ }
9420
9639
  export interface OrganizationAutomationIdentifier {
9421
9640
  'id': string;
9422
9641
  'workspaceId': string;
@@ -9457,6 +9676,11 @@ export interface Parameter {
9457
9676
  'name': string;
9458
9677
  'value': string;
9459
9678
  }
9679
+ /**
9680
+ * @type ParameterDefinition
9681
+ * Parameter content (type-discriminated).
9682
+ */
9683
+ export type ParameterDefinition = NumberParameterDefinition | StringParameterDefinition;
9460
9684
  /**
9461
9685
  * (EXPERIMENTAL) Parameter value for this execution.
9462
9686
  */
@@ -9623,6 +9847,30 @@ export interface PositiveAttributeFilterPositiveAttributeFilter {
9623
9847
  'usesArbitraryValues'?: boolean;
9624
9848
  'label': AfmIdentifier;
9625
9849
  }
9850
+ export interface Profile {
9851
+ 'organizationId': string;
9852
+ 'organizationName': string;
9853
+ 'name'?: string;
9854
+ 'userId': string;
9855
+ 'permissions': Array<ProfilePermissionsEnum>;
9856
+ 'telemetryConfig': TelemetryConfig;
9857
+ 'links': ProfileLinks;
9858
+ 'features': ProfileFeatures;
9859
+ /**
9860
+ * Defines entitlements for given organization.
9861
+ */
9862
+ 'entitlements': Array<ApiEntitlement>;
9863
+ }
9864
+ export type ProfilePermissionsEnum = 'MANAGE' | 'SELF_CREATE_TOKEN' | 'BASE_UI_ACCESS';
9865
+ /**
9866
+ * @type ProfileFeatures
9867
+ */
9868
+ export type ProfileFeatures = LiveFeatures | StaticFeatures;
9869
+ export interface ProfileLinks {
9870
+ 'self': string;
9871
+ 'organization': string;
9872
+ 'user': string;
9873
+ }
9626
9874
  export interface Range {
9627
9875
  'operator': RangeOperatorEnum;
9628
9876
  'measure': LocalIdentifier;
@@ -9852,7 +10100,7 @@ export interface ResolvedSetting {
9852
10100
  */
9853
10101
  'type'?: ResolvedSettingTypeEnum;
9854
10102
  }
9855
- export type ResolvedSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS';
10103
+ export type ResolvedSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_ENDPOINT' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
9856
10104
  export interface RsaSpecification {
9857
10105
  'kty': RsaSpecificationKtyEnum;
9858
10106
  'alg': RsaSpecificationAlgEnum;
@@ -10106,6 +10354,28 @@ export interface SqlColumn {
10106
10354
  'dataType': SqlColumnDataTypeEnum;
10107
10355
  }
10108
10356
  export type SqlColumnDataTypeEnum = 'INT' | 'STRING' | 'DATE' | 'NUMERIC' | 'TIMESTAMP' | 'TIMESTAMP_TZ' | 'BOOLEAN' | 'HLL';
10357
+ /**
10358
+ * Structure for offline feature flag
10359
+ */
10360
+ export interface StaticFeatures {
10361
+ 'context': FeatureFlagsContext;
10362
+ 'items': {
10363
+ [key: string]: string;
10364
+ };
10365
+ }
10366
+ export interface StringConstraints {
10367
+ 'minLength'?: number;
10368
+ 'maxLength'?: number;
10369
+ }
10370
+ export interface StringParameterDefinition {
10371
+ 'defaultValue': string;
10372
+ 'constraints'?: StringConstraints;
10373
+ /**
10374
+ * The parameter type.
10375
+ */
10376
+ 'type': StringParameterDefinitionTypeEnum;
10377
+ }
10378
+ export type StringParameterDefinitionTypeEnum = 'STRING';
10109
10379
  export interface SwitchIdentityProviderRequest {
10110
10380
  /**
10111
10381
  * Identity provider ID to set as active for the organization.
@@ -10174,6 +10444,38 @@ export interface TabularExportRequest {
10174
10444
  'metadata'?: object | null;
10175
10445
  }
10176
10446
  export type TabularExportRequestFormatEnum = 'CSV' | 'XLSX' | 'HTML' | 'PDF';
10447
+ /**
10448
+ * Telemetry-related configuration.
10449
+ */
10450
+ export interface TelemetryConfig {
10451
+ 'context': TelemetryContext;
10452
+ 'services': TelemetryServices;
10453
+ }
10454
+ /**
10455
+ * The telemetry context.
10456
+ */
10457
+ export interface TelemetryContext {
10458
+ /**
10459
+ * Identification of the deployment.
10460
+ */
10461
+ 'deploymentId': string;
10462
+ /**
10463
+ * Organization hash.
10464
+ */
10465
+ 'organizationHash': string;
10466
+ /**
10467
+ * User hash.
10468
+ */
10469
+ 'userHash': string;
10470
+ }
10471
+ /**
10472
+ * Available telemetry services.
10473
+ */
10474
+ export interface TelemetryServices {
10475
+ 'matomo'?: MatomoService;
10476
+ 'openTelemetry'?: OpenTelemetryService;
10477
+ 'amplitude'?: AmplitudeService;
10478
+ }
10177
10479
  /**
10178
10480
  * List of users
10179
10481
  */
@@ -12647,6 +12949,15 @@ export declare function ActionsApiAxiosParamCreator_PauseWorkspaceAutomations(wo
12647
12949
  * @throws {RequiredError}
12648
12950
  */
12649
12951
  export declare function ActionsApiAxiosParamCreator_RegisterUploadNotification(dataSourceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
12952
+ /**
12953
+ * Notification sets up all reports to be computed again with new data.
12954
+ * @summary Register an upload notification
12955
+ * @param {string} workspaceId
12956
+ * @param {*} [options] Override http request option.
12957
+ * @param {Configuration} [configuration] Optional configuration.
12958
+ * @throws {RequiredError}
12959
+ */
12960
+ export declare function ActionsApiAxiosParamCreator_RegisterWorkspaceUploadNotification(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
12650
12961
  /**
12651
12962
  * Resolves values of available entitlements for the organization.
12652
12963
  * @summary Values for all public entitlements.
@@ -13090,6 +13401,17 @@ export declare function ActionsApi_PauseWorkspaceAutomations(axios: AxiosInstanc
13090
13401
  * @throws {RequiredError}
13091
13402
  */
13092
13403
  export declare function ActionsApi_RegisterUploadNotification(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiRegisterUploadNotificationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
13404
+ /**
13405
+ * Notification sets up all reports to be computed again with new data.
13406
+ * @summary Register an upload notification
13407
+ * @param {AxiosInstance} axios Axios instance.
13408
+ * @param {string} basePath Base path.
13409
+ * @param {ActionsApiRegisterWorkspaceUploadNotificationRequest} requestParameters Request parameters.
13410
+ * @param {*} [options] Override http request option.
13411
+ * @param {Configuration} [configuration] Optional configuration.
13412
+ * @throws {RequiredError}
13413
+ */
13414
+ export declare function ActionsApi_RegisterWorkspaceUploadNotification(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiRegisterWorkspaceUploadNotificationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
13093
13415
  /**
13094
13416
  * Resolves values of available entitlements for the organization.
13095
13417
  * @summary Values for all public entitlements.
@@ -13511,6 +13833,15 @@ export interface ActionsApiInterface {
13511
13833
  * @memberof ActionsApiInterface
13512
13834
  */
13513
13835
  registerUploadNotification(requestParameters: ActionsApiRegisterUploadNotificationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
13836
+ /**
13837
+ * Notification sets up all reports to be computed again with new data.
13838
+ * @summary Register an upload notification
13839
+ * @param {ActionsApiRegisterWorkspaceUploadNotificationRequest} requestParameters Request parameters.
13840
+ * @param {*} [options] Override http request option.
13841
+ * @throws {RequiredError}
13842
+ * @memberof ActionsApiInterface
13843
+ */
13844
+ registerWorkspaceUploadNotification(requestParameters: ActionsApiRegisterWorkspaceUploadNotificationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
13514
13845
  /**
13515
13846
  * Resolves values of available entitlements for the organization.
13516
13847
  * @summary Values for all public entitlements.
@@ -14083,6 +14414,19 @@ export interface ActionsApiRegisterUploadNotificationRequest {
14083
14414
  */
14084
14415
  readonly dataSourceId: string;
14085
14416
  }
14417
+ /**
14418
+ * Request parameters for registerWorkspaceUploadNotification operation in ActionsApi.
14419
+ * @export
14420
+ * @interface ActionsApiRegisterWorkspaceUploadNotificationRequest
14421
+ */
14422
+ export interface ActionsApiRegisterWorkspaceUploadNotificationRequest {
14423
+ /**
14424
+ *
14425
+ * @type {string}
14426
+ * @memberof ActionsApiRegisterWorkspaceUploadNotification
14427
+ */
14428
+ readonly workspaceId: string;
14429
+ }
14086
14430
  /**
14087
14431
  * Request parameters for resolveAllSettingsWithoutWorkspace operation in ActionsApi.
14088
14432
  * @export
@@ -14575,6 +14919,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
14575
14919
  * @memberof ActionsApi
14576
14920
  */
14577
14921
  registerUploadNotification(requestParameters: ActionsApiRegisterUploadNotificationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
14922
+ /**
14923
+ * Notification sets up all reports to be computed again with new data.
14924
+ * @summary Register an upload notification
14925
+ * @param {ActionsApiRegisterWorkspaceUploadNotificationRequest} requestParameters Request parameters.
14926
+ * @param {*} [options] Override http request option.
14927
+ * @throws {RequiredError}
14928
+ * @memberof ActionsApi
14929
+ */
14930
+ registerWorkspaceUploadNotification(requestParameters: ActionsApiRegisterWorkspaceUploadNotificationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
14578
14931
  /**
14579
14932
  * Resolves values of available entitlements for the organization.
14580
14933
  * @summary Values for all public entitlements.
@@ -15431,13 +15784,13 @@ export declare class AggregatedFactControllerApi extends BaseAPI implements Aggr
15431
15784
  * @summary Post Dashboards
15432
15785
  * @param {string} workspaceId
15433
15786
  * @param {JsonApiAnalyticalDashboardPostOptionalIdDocument} jsonApiAnalyticalDashboardPostOptionalIdDocument
15434
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15787
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15435
15788
  * @param {Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
15436
15789
  * @param {*} [options] Override http request option.
15437
15790
  * @param {Configuration} [configuration] Optional configuration.
15438
15791
  * @throws {RequiredError}
15439
15792
  */
15440
- export declare function AnalyticalDashboardControllerApiAxiosParamCreator_CreateEntityAnalyticalDashboards(workspaceId: string, jsonApiAnalyticalDashboardPostOptionalIdDocument: JsonApiAnalyticalDashboardPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
15793
+ export declare function AnalyticalDashboardControllerApiAxiosParamCreator_CreateEntityAnalyticalDashboards(workspaceId: string, jsonApiAnalyticalDashboardPostOptionalIdDocument: JsonApiAnalyticalDashboardPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
15441
15794
  /**
15442
15795
  *
15443
15796
  * @summary Delete a Dashboard
@@ -15454,7 +15807,7 @@ export declare function AnalyticalDashboardControllerApiAxiosParamCreator_Delete
15454
15807
  * @param {string} workspaceId
15455
15808
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
15456
15809
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
15457
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15810
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15458
15811
  * @param {number} [page] Zero-based page index (0..N)
15459
15812
  * @param {number} [size] The size of the page to be returned
15460
15813
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -15464,21 +15817,21 @@ export declare function AnalyticalDashboardControllerApiAxiosParamCreator_Delete
15464
15817
  * @param {Configuration} [configuration] Optional configuration.
15465
15818
  * @throws {RequiredError}
15466
15819
  */
15467
- export declare function AnalyticalDashboardControllerApiAxiosParamCreator_GetAllEntitiesAnalyticalDashboards(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
15820
+ export declare function AnalyticalDashboardControllerApiAxiosParamCreator_GetAllEntitiesAnalyticalDashboards(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
15468
15821
  /**
15469
15822
  *
15470
15823
  * @summary Get a Dashboard
15471
15824
  * @param {string} workspaceId
15472
15825
  * @param {string} objectId
15473
15826
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
15474
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15827
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15475
15828
  * @param {boolean} [xGDCVALIDATERELATIONS]
15476
15829
  * @param {Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
15477
15830
  * @param {*} [options] Override http request option.
15478
15831
  * @param {Configuration} [configuration] Optional configuration.
15479
15832
  * @throws {RequiredError}
15480
15833
  */
15481
- export declare function AnalyticalDashboardControllerApiAxiosParamCreator_GetEntityAnalyticalDashboards(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
15834
+ export declare function AnalyticalDashboardControllerApiAxiosParamCreator_GetEntityAnalyticalDashboards(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
15482
15835
  /**
15483
15836
  *
15484
15837
  * @summary Patch a Dashboard
@@ -15486,12 +15839,12 @@ export declare function AnalyticalDashboardControllerApiAxiosParamCreator_GetEnt
15486
15839
  * @param {string} objectId
15487
15840
  * @param {JsonApiAnalyticalDashboardPatchDocument} jsonApiAnalyticalDashboardPatchDocument
15488
15841
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
15489
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15842
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15490
15843
  * @param {*} [options] Override http request option.
15491
15844
  * @param {Configuration} [configuration] Optional configuration.
15492
15845
  * @throws {RequiredError}
15493
15846
  */
15494
- export declare function AnalyticalDashboardControllerApiAxiosParamCreator_PatchEntityAnalyticalDashboards(workspaceId: string, objectId: string, jsonApiAnalyticalDashboardPatchDocument: JsonApiAnalyticalDashboardPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
15847
+ export declare function AnalyticalDashboardControllerApiAxiosParamCreator_PatchEntityAnalyticalDashboards(workspaceId: string, objectId: string, jsonApiAnalyticalDashboardPatchDocument: JsonApiAnalyticalDashboardPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
15495
15848
  /**
15496
15849
  *
15497
15850
  * @summary The search endpoint (beta)
@@ -15511,12 +15864,12 @@ export declare function AnalyticalDashboardControllerApiAxiosParamCreator_Search
15511
15864
  * @param {string} objectId
15512
15865
  * @param {JsonApiAnalyticalDashboardInDocument} jsonApiAnalyticalDashboardInDocument
15513
15866
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
15514
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15867
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15515
15868
  * @param {*} [options] Override http request option.
15516
15869
  * @param {Configuration} [configuration] Optional configuration.
15517
15870
  * @throws {RequiredError}
15518
15871
  */
15519
- export declare function AnalyticalDashboardControllerApiAxiosParamCreator_UpdateEntityAnalyticalDashboards(workspaceId: string, objectId: string, jsonApiAnalyticalDashboardInDocument: JsonApiAnalyticalDashboardInDocument, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
15872
+ export declare function AnalyticalDashboardControllerApiAxiosParamCreator_UpdateEntityAnalyticalDashboards(workspaceId: string, objectId: string, jsonApiAnalyticalDashboardInDocument: JsonApiAnalyticalDashboardInDocument, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
15520
15873
  /**
15521
15874
  *
15522
15875
  * @summary Post Dashboards
@@ -15684,10 +16037,10 @@ export interface AnalyticalDashboardControllerApiCreateEntityAnalyticalDashboard
15684
16037
  readonly jsonApiAnalyticalDashboardPostOptionalIdDocument: JsonApiAnalyticalDashboardPostOptionalIdDocument;
15685
16038
  /**
15686
16039
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15687
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
16040
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
15688
16041
  * @memberof AnalyticalDashboardControllerApiCreateEntityAnalyticalDashboards
15689
16042
  */
15690
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
16043
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
15691
16044
  /**
15692
16045
  * Include Meta objects.
15693
16046
  * @type {Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>}
@@ -15740,10 +16093,10 @@ export interface AnalyticalDashboardControllerApiGetAllEntitiesAnalyticalDashboa
15740
16093
  readonly filter?: string;
15741
16094
  /**
15742
16095
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15743
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
16096
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
15744
16097
  * @memberof AnalyticalDashboardControllerApiGetAllEntitiesAnalyticalDashboards
15745
16098
  */
15746
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
16099
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
15747
16100
  /**
15748
16101
  * Zero-based page index (0..N)
15749
16102
  * @type {number}
@@ -15801,10 +16154,10 @@ export interface AnalyticalDashboardControllerApiGetEntityAnalyticalDashboardsRe
15801
16154
  readonly filter?: string;
15802
16155
  /**
15803
16156
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15804
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
16157
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
15805
16158
  * @memberof AnalyticalDashboardControllerApiGetEntityAnalyticalDashboards
15806
16159
  */
15807
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
16160
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
15808
16161
  /**
15809
16162
  *
15810
16163
  * @type {boolean}
@@ -15850,10 +16203,10 @@ export interface AnalyticalDashboardControllerApiPatchEntityAnalyticalDashboards
15850
16203
  readonly filter?: string;
15851
16204
  /**
15852
16205
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15853
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
16206
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
15854
16207
  * @memberof AnalyticalDashboardControllerApiPatchEntityAnalyticalDashboards
15855
16208
  */
15856
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
16209
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
15857
16210
  }
15858
16211
  /**
15859
16212
  * Request parameters for searchEntitiesAnalyticalDashboards operation in AnalyticalDashboardControllerApi.
@@ -15918,10 +16271,10 @@ export interface AnalyticalDashboardControllerApiUpdateEntityAnalyticalDashboard
15918
16271
  readonly filter?: string;
15919
16272
  /**
15920
16273
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
15921
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
16274
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
15922
16275
  * @memberof AnalyticalDashboardControllerApiUpdateEntityAnalyticalDashboards
15923
16276
  */
15924
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
16277
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
15925
16278
  }
15926
16279
  /**
15927
16280
  * AnalyticalDashboardControllerApi - object-oriented interface
@@ -19014,6 +19367,55 @@ export declare class AttributesApi extends BaseAPI implements AttributesApiInter
19014
19367
  */
19015
19368
  searchEntitiesAttributes(requestParameters: AttributesApiSearchEntitiesAttributesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiAttributeOutList>;
19016
19369
  }
19370
+ /**
19371
+ * Returns a Profile including Organization and Current User Information.
19372
+ * @summary Get Profile
19373
+ * @param {*} [options] Override http request option.
19374
+ * @param {Configuration} [configuration] Optional configuration.
19375
+ * @throws {RequiredError}
19376
+ */
19377
+ export declare function AuthenticationApiAxiosParamCreator_GetProfile(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
19378
+ /**
19379
+ * Returns a Profile including Organization and Current User Information.
19380
+ * @summary Get Profile
19381
+ * @param {AxiosInstance} axios Axios instance.
19382
+ * @param {string} basePath Base path.
19383
+ * @param {*} [options] Override http request option.
19384
+ * @param {Configuration} [configuration] Optional configuration.
19385
+ * @throws {RequiredError}
19386
+ */
19387
+ export declare function AuthenticationApi_GetProfile(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<Profile>;
19388
+ /**
19389
+ * AuthenticationApi - interface
19390
+ * @export
19391
+ * @interface AuthenticationApi
19392
+ */
19393
+ export interface AuthenticationApiInterface {
19394
+ /**
19395
+ * Returns a Profile including Organization and Current User Information.
19396
+ * @summary Get Profile
19397
+ * @param {*} [options] Override http request option.
19398
+ * @throws {RequiredError}
19399
+ * @memberof AuthenticationApiInterface
19400
+ */
19401
+ getProfile(options?: AxiosRequestConfig): AxiosPromise<Profile>;
19402
+ }
19403
+ /**
19404
+ * AuthenticationApi - object-oriented interface
19405
+ * @export
19406
+ * @class AuthenticationApi
19407
+ * @extends {BaseAPI}
19408
+ */
19409
+ export declare class AuthenticationApi extends BaseAPI implements AuthenticationApiInterface {
19410
+ /**
19411
+ * Returns a Profile including Organization and Current User Information.
19412
+ * @summary Get Profile
19413
+ * @param {*} [options] Override http request option.
19414
+ * @throws {RequiredError}
19415
+ * @memberof AuthenticationApi
19416
+ */
19417
+ getProfile(options?: AxiosRequestConfig): AxiosPromise<Profile>;
19418
+ }
19017
19419
  /**
19018
19420
  *
19019
19421
  * @summary Post Automations
@@ -23794,6 +24196,360 @@ export declare class CustomGeoCollectionControllerApi extends BaseAPI implements
23794
24196
  */
23795
24197
  updateEntityCustomGeoCollections(requestParameters: CustomGeoCollectionControllerApiUpdateEntityCustomGeoCollectionsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomGeoCollectionOutDocument>;
23796
24198
  }
24199
+ /**
24200
+ *
24201
+ * @summary Post a new custom application setting for the user
24202
+ * @param {string} userId
24203
+ * @param {JsonApiCustomUserApplicationSettingPostOptionalIdDocument} jsonApiCustomUserApplicationSettingPostOptionalIdDocument
24204
+ * @param {*} [options] Override http request option.
24205
+ * @param {Configuration} [configuration] Optional configuration.
24206
+ * @throws {RequiredError}
24207
+ */
24208
+ export declare function CustomUserApplicationSettingControllerApiAxiosParamCreator_CreateEntityCustomUserApplicationSettings(userId: string, jsonApiCustomUserApplicationSettingPostOptionalIdDocument: JsonApiCustomUserApplicationSettingPostOptionalIdDocument, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
24209
+ /**
24210
+ *
24211
+ * @summary Delete a custom application setting for a user
24212
+ * @param {string} userId
24213
+ * @param {string} id
24214
+ * @param {*} [options] Override http request option.
24215
+ * @param {Configuration} [configuration] Optional configuration.
24216
+ * @throws {RequiredError}
24217
+ */
24218
+ export declare function CustomUserApplicationSettingControllerApiAxiosParamCreator_DeleteEntityCustomUserApplicationSettings(userId: string, id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
24219
+ /**
24220
+ *
24221
+ * @summary List all custom application settings for a user
24222
+ * @param {string} userId
24223
+ * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
24224
+ * @param {number} [page] Zero-based page index (0..N)
24225
+ * @param {number} [size] The size of the page to be returned
24226
+ * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
24227
+ * @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
24228
+ * @param {*} [options] Override http request option.
24229
+ * @param {Configuration} [configuration] Optional configuration.
24230
+ * @throws {RequiredError}
24231
+ */
24232
+ export declare function CustomUserApplicationSettingControllerApiAxiosParamCreator_GetAllEntitiesCustomUserApplicationSettings(userId: string, filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
24233
+ /**
24234
+ *
24235
+ * @summary Get a custom application setting for a user
24236
+ * @param {string} userId
24237
+ * @param {string} id
24238
+ * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
24239
+ * @param {*} [options] Override http request option.
24240
+ * @param {Configuration} [configuration] Optional configuration.
24241
+ * @throws {RequiredError}
24242
+ */
24243
+ export declare function CustomUserApplicationSettingControllerApiAxiosParamCreator_GetEntityCustomUserApplicationSettings(userId: string, id: string, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
24244
+ /**
24245
+ *
24246
+ * @summary Put a custom application setting for the user
24247
+ * @param {string} userId
24248
+ * @param {string} id
24249
+ * @param {JsonApiCustomUserApplicationSettingInDocument} jsonApiCustomUserApplicationSettingInDocument
24250
+ * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
24251
+ * @param {*} [options] Override http request option.
24252
+ * @param {Configuration} [configuration] Optional configuration.
24253
+ * @throws {RequiredError}
24254
+ */
24255
+ export declare function CustomUserApplicationSettingControllerApiAxiosParamCreator_UpdateEntityCustomUserApplicationSettings(userId: string, id: string, jsonApiCustomUserApplicationSettingInDocument: JsonApiCustomUserApplicationSettingInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
24256
+ /**
24257
+ *
24258
+ * @summary Post a new custom application setting for the user
24259
+ * @param {AxiosInstance} axios Axios instance.
24260
+ * @param {string} basePath Base path.
24261
+ * @param {CustomUserApplicationSettingControllerApiCreateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24262
+ * @param {*} [options] Override http request option.
24263
+ * @param {Configuration} [configuration] Optional configuration.
24264
+ * @throws {RequiredError}
24265
+ */
24266
+ export declare function CustomUserApplicationSettingControllerApi_CreateEntityCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: CustomUserApplicationSettingControllerApiCreateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
24267
+ /**
24268
+ *
24269
+ * @summary Delete a custom application setting for a user
24270
+ * @param {AxiosInstance} axios Axios instance.
24271
+ * @param {string} basePath Base path.
24272
+ * @param {CustomUserApplicationSettingControllerApiDeleteEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24273
+ * @param {*} [options] Override http request option.
24274
+ * @param {Configuration} [configuration] Optional configuration.
24275
+ * @throws {RequiredError}
24276
+ */
24277
+ export declare function CustomUserApplicationSettingControllerApi_DeleteEntityCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: CustomUserApplicationSettingControllerApiDeleteEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
24278
+ /**
24279
+ *
24280
+ * @summary List all custom application settings for a user
24281
+ * @param {AxiosInstance} axios Axios instance.
24282
+ * @param {string} basePath Base path.
24283
+ * @param {CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24284
+ * @param {*} [options] Override http request option.
24285
+ * @param {Configuration} [configuration] Optional configuration.
24286
+ * @throws {RequiredError}
24287
+ */
24288
+ export declare function CustomUserApplicationSettingControllerApi_GetAllEntitiesCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomUserApplicationSettingOutList>;
24289
+ /**
24290
+ *
24291
+ * @summary Get a custom application setting for a user
24292
+ * @param {AxiosInstance} axios Axios instance.
24293
+ * @param {string} basePath Base path.
24294
+ * @param {CustomUserApplicationSettingControllerApiGetEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24295
+ * @param {*} [options] Override http request option.
24296
+ * @param {Configuration} [configuration] Optional configuration.
24297
+ * @throws {RequiredError}
24298
+ */
24299
+ export declare function CustomUserApplicationSettingControllerApi_GetEntityCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: CustomUserApplicationSettingControllerApiGetEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
24300
+ /**
24301
+ *
24302
+ * @summary Put a custom application setting for the user
24303
+ * @param {AxiosInstance} axios Axios instance.
24304
+ * @param {string} basePath Base path.
24305
+ * @param {CustomUserApplicationSettingControllerApiUpdateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24306
+ * @param {*} [options] Override http request option.
24307
+ * @param {Configuration} [configuration] Optional configuration.
24308
+ * @throws {RequiredError}
24309
+ */
24310
+ export declare function CustomUserApplicationSettingControllerApi_UpdateEntityCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: CustomUserApplicationSettingControllerApiUpdateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
24311
+ /**
24312
+ * CustomUserApplicationSettingControllerApi - interface
24313
+ * @export
24314
+ * @interface CustomUserApplicationSettingControllerApi
24315
+ */
24316
+ export interface CustomUserApplicationSettingControllerApiInterface {
24317
+ /**
24318
+ *
24319
+ * @summary Post a new custom application setting for the user
24320
+ * @param {CustomUserApplicationSettingControllerApiCreateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24321
+ * @param {*} [options] Override http request option.
24322
+ * @throws {RequiredError}
24323
+ * @memberof CustomUserApplicationSettingControllerApiInterface
24324
+ */
24325
+ createEntityCustomUserApplicationSettings(requestParameters: CustomUserApplicationSettingControllerApiCreateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
24326
+ /**
24327
+ *
24328
+ * @summary Delete a custom application setting for a user
24329
+ * @param {CustomUserApplicationSettingControllerApiDeleteEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24330
+ * @param {*} [options] Override http request option.
24331
+ * @throws {RequiredError}
24332
+ * @memberof CustomUserApplicationSettingControllerApiInterface
24333
+ */
24334
+ deleteEntityCustomUserApplicationSettings(requestParameters: CustomUserApplicationSettingControllerApiDeleteEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
24335
+ /**
24336
+ *
24337
+ * @summary List all custom application settings for a user
24338
+ * @param {CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24339
+ * @param {*} [options] Override http request option.
24340
+ * @throws {RequiredError}
24341
+ * @memberof CustomUserApplicationSettingControllerApiInterface
24342
+ */
24343
+ getAllEntitiesCustomUserApplicationSettings(requestParameters: CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutList>;
24344
+ /**
24345
+ *
24346
+ * @summary Get a custom application setting for a user
24347
+ * @param {CustomUserApplicationSettingControllerApiGetEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24348
+ * @param {*} [options] Override http request option.
24349
+ * @throws {RequiredError}
24350
+ * @memberof CustomUserApplicationSettingControllerApiInterface
24351
+ */
24352
+ getEntityCustomUserApplicationSettings(requestParameters: CustomUserApplicationSettingControllerApiGetEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
24353
+ /**
24354
+ *
24355
+ * @summary Put a custom application setting for the user
24356
+ * @param {CustomUserApplicationSettingControllerApiUpdateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24357
+ * @param {*} [options] Override http request option.
24358
+ * @throws {RequiredError}
24359
+ * @memberof CustomUserApplicationSettingControllerApiInterface
24360
+ */
24361
+ updateEntityCustomUserApplicationSettings(requestParameters: CustomUserApplicationSettingControllerApiUpdateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
24362
+ }
24363
+ /**
24364
+ * Request parameters for createEntityCustomUserApplicationSettings operation in CustomUserApplicationSettingControllerApi.
24365
+ * @export
24366
+ * @interface CustomUserApplicationSettingControllerApiCreateEntityCustomUserApplicationSettingsRequest
24367
+ */
24368
+ export interface CustomUserApplicationSettingControllerApiCreateEntityCustomUserApplicationSettingsRequest {
24369
+ /**
24370
+ *
24371
+ * @type {string}
24372
+ * @memberof CustomUserApplicationSettingControllerApiCreateEntityCustomUserApplicationSettings
24373
+ */
24374
+ readonly userId: string;
24375
+ /**
24376
+ *
24377
+ * @type {JsonApiCustomUserApplicationSettingPostOptionalIdDocument}
24378
+ * @memberof CustomUserApplicationSettingControllerApiCreateEntityCustomUserApplicationSettings
24379
+ */
24380
+ readonly jsonApiCustomUserApplicationSettingPostOptionalIdDocument: JsonApiCustomUserApplicationSettingPostOptionalIdDocument;
24381
+ }
24382
+ /**
24383
+ * Request parameters for deleteEntityCustomUserApplicationSettings operation in CustomUserApplicationSettingControllerApi.
24384
+ * @export
24385
+ * @interface CustomUserApplicationSettingControllerApiDeleteEntityCustomUserApplicationSettingsRequest
24386
+ */
24387
+ export interface CustomUserApplicationSettingControllerApiDeleteEntityCustomUserApplicationSettingsRequest {
24388
+ /**
24389
+ *
24390
+ * @type {string}
24391
+ * @memberof CustomUserApplicationSettingControllerApiDeleteEntityCustomUserApplicationSettings
24392
+ */
24393
+ readonly userId: string;
24394
+ /**
24395
+ *
24396
+ * @type {string}
24397
+ * @memberof CustomUserApplicationSettingControllerApiDeleteEntityCustomUserApplicationSettings
24398
+ */
24399
+ readonly id: string;
24400
+ }
24401
+ /**
24402
+ * Request parameters for getAllEntitiesCustomUserApplicationSettings operation in CustomUserApplicationSettingControllerApi.
24403
+ * @export
24404
+ * @interface CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettingsRequest
24405
+ */
24406
+ export interface CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettingsRequest {
24407
+ /**
24408
+ *
24409
+ * @type {string}
24410
+ * @memberof CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettings
24411
+ */
24412
+ readonly userId: string;
24413
+ /**
24414
+ * Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
24415
+ * @type {string}
24416
+ * @memberof CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettings
24417
+ */
24418
+ readonly filter?: string;
24419
+ /**
24420
+ * Zero-based page index (0..N)
24421
+ * @type {number}
24422
+ * @memberof CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettings
24423
+ */
24424
+ readonly page?: number;
24425
+ /**
24426
+ * The size of the page to be returned
24427
+ * @type {number}
24428
+ * @memberof CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettings
24429
+ */
24430
+ readonly size?: number;
24431
+ /**
24432
+ * Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
24433
+ * @type {Array<string>}
24434
+ * @memberof CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettings
24435
+ */
24436
+ readonly sort?: Array<string>;
24437
+ /**
24438
+ * Include Meta objects.
24439
+ * @type {Array<'page' | 'all' | 'ALL'>}
24440
+ * @memberof CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettings
24441
+ */
24442
+ readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
24443
+ }
24444
+ /**
24445
+ * Request parameters for getEntityCustomUserApplicationSettings operation in CustomUserApplicationSettingControllerApi.
24446
+ * @export
24447
+ * @interface CustomUserApplicationSettingControllerApiGetEntityCustomUserApplicationSettingsRequest
24448
+ */
24449
+ export interface CustomUserApplicationSettingControllerApiGetEntityCustomUserApplicationSettingsRequest {
24450
+ /**
24451
+ *
24452
+ * @type {string}
24453
+ * @memberof CustomUserApplicationSettingControllerApiGetEntityCustomUserApplicationSettings
24454
+ */
24455
+ readonly userId: string;
24456
+ /**
24457
+ *
24458
+ * @type {string}
24459
+ * @memberof CustomUserApplicationSettingControllerApiGetEntityCustomUserApplicationSettings
24460
+ */
24461
+ readonly id: string;
24462
+ /**
24463
+ * Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
24464
+ * @type {string}
24465
+ * @memberof CustomUserApplicationSettingControllerApiGetEntityCustomUserApplicationSettings
24466
+ */
24467
+ readonly filter?: string;
24468
+ }
24469
+ /**
24470
+ * Request parameters for updateEntityCustomUserApplicationSettings operation in CustomUserApplicationSettingControllerApi.
24471
+ * @export
24472
+ * @interface CustomUserApplicationSettingControllerApiUpdateEntityCustomUserApplicationSettingsRequest
24473
+ */
24474
+ export interface CustomUserApplicationSettingControllerApiUpdateEntityCustomUserApplicationSettingsRequest {
24475
+ /**
24476
+ *
24477
+ * @type {string}
24478
+ * @memberof CustomUserApplicationSettingControllerApiUpdateEntityCustomUserApplicationSettings
24479
+ */
24480
+ readonly userId: string;
24481
+ /**
24482
+ *
24483
+ * @type {string}
24484
+ * @memberof CustomUserApplicationSettingControllerApiUpdateEntityCustomUserApplicationSettings
24485
+ */
24486
+ readonly id: string;
24487
+ /**
24488
+ *
24489
+ * @type {JsonApiCustomUserApplicationSettingInDocument}
24490
+ * @memberof CustomUserApplicationSettingControllerApiUpdateEntityCustomUserApplicationSettings
24491
+ */
24492
+ readonly jsonApiCustomUserApplicationSettingInDocument: JsonApiCustomUserApplicationSettingInDocument;
24493
+ /**
24494
+ * Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
24495
+ * @type {string}
24496
+ * @memberof CustomUserApplicationSettingControllerApiUpdateEntityCustomUserApplicationSettings
24497
+ */
24498
+ readonly filter?: string;
24499
+ }
24500
+ /**
24501
+ * CustomUserApplicationSettingControllerApi - object-oriented interface
24502
+ * @export
24503
+ * @class CustomUserApplicationSettingControllerApi
24504
+ * @extends {BaseAPI}
24505
+ */
24506
+ export declare class CustomUserApplicationSettingControllerApi extends BaseAPI implements CustomUserApplicationSettingControllerApiInterface {
24507
+ /**
24508
+ *
24509
+ * @summary Post a new custom application setting for the user
24510
+ * @param {CustomUserApplicationSettingControllerApiCreateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24511
+ * @param {*} [options] Override http request option.
24512
+ * @throws {RequiredError}
24513
+ * @memberof CustomUserApplicationSettingControllerApi
24514
+ */
24515
+ createEntityCustomUserApplicationSettings(requestParameters: CustomUserApplicationSettingControllerApiCreateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
24516
+ /**
24517
+ *
24518
+ * @summary Delete a custom application setting for a user
24519
+ * @param {CustomUserApplicationSettingControllerApiDeleteEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24520
+ * @param {*} [options] Override http request option.
24521
+ * @throws {RequiredError}
24522
+ * @memberof CustomUserApplicationSettingControllerApi
24523
+ */
24524
+ deleteEntityCustomUserApplicationSettings(requestParameters: CustomUserApplicationSettingControllerApiDeleteEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
24525
+ /**
24526
+ *
24527
+ * @summary List all custom application settings for a user
24528
+ * @param {CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24529
+ * @param {*} [options] Override http request option.
24530
+ * @throws {RequiredError}
24531
+ * @memberof CustomUserApplicationSettingControllerApi
24532
+ */
24533
+ getAllEntitiesCustomUserApplicationSettings(requestParameters: CustomUserApplicationSettingControllerApiGetAllEntitiesCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutList>;
24534
+ /**
24535
+ *
24536
+ * @summary Get a custom application setting for a user
24537
+ * @param {CustomUserApplicationSettingControllerApiGetEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24538
+ * @param {*} [options] Override http request option.
24539
+ * @throws {RequiredError}
24540
+ * @memberof CustomUserApplicationSettingControllerApi
24541
+ */
24542
+ getEntityCustomUserApplicationSettings(requestParameters: CustomUserApplicationSettingControllerApiGetEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
24543
+ /**
24544
+ *
24545
+ * @summary Put a custom application setting for the user
24546
+ * @param {CustomUserApplicationSettingControllerApiUpdateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
24547
+ * @param {*} [options] Override http request option.
24548
+ * @throws {RequiredError}
24549
+ * @memberof CustomUserApplicationSettingControllerApi
24550
+ */
24551
+ updateEntityCustomUserApplicationSettings(requestParameters: CustomUserApplicationSettingControllerApiUpdateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
24552
+ }
23797
24553
  /**
23798
24554
  *
23799
24555
  * @summary Post Plugins
@@ -24367,13 +25123,13 @@ export declare class DashboardPluginControllerApi extends BaseAPI implements Das
24367
25123
  * @summary Post Dashboards
24368
25124
  * @param {string} workspaceId
24369
25125
  * @param {JsonApiAnalyticalDashboardPostOptionalIdDocument} jsonApiAnalyticalDashboardPostOptionalIdDocument
24370
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
25126
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
24371
25127
  * @param {Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
24372
25128
  * @param {*} [options] Override http request option.
24373
25129
  * @param {Configuration} [configuration] Optional configuration.
24374
25130
  * @throws {RequiredError}
24375
25131
  */
24376
- export declare function DashboardsApiAxiosParamCreator_CreateEntityAnalyticalDashboards(workspaceId: string, jsonApiAnalyticalDashboardPostOptionalIdDocument: JsonApiAnalyticalDashboardPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
25132
+ export declare function DashboardsApiAxiosParamCreator_CreateEntityAnalyticalDashboards(workspaceId: string, jsonApiAnalyticalDashboardPostOptionalIdDocument: JsonApiAnalyticalDashboardPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
24377
25133
  /**
24378
25134
  *
24379
25135
  * @summary Delete a Dashboard
@@ -24390,7 +25146,7 @@ export declare function DashboardsApiAxiosParamCreator_DeleteEntityAnalyticalDas
24390
25146
  * @param {string} workspaceId
24391
25147
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
24392
25148
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
24393
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
25149
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
24394
25150
  * @param {number} [page] Zero-based page index (0..N)
24395
25151
  * @param {number} [size] The size of the page to be returned
24396
25152
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -24400,21 +25156,21 @@ export declare function DashboardsApiAxiosParamCreator_DeleteEntityAnalyticalDas
24400
25156
  * @param {Configuration} [configuration] Optional configuration.
24401
25157
  * @throws {RequiredError}
24402
25158
  */
24403
- export declare function DashboardsApiAxiosParamCreator_GetAllEntitiesAnalyticalDashboards(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
25159
+ export declare function DashboardsApiAxiosParamCreator_GetAllEntitiesAnalyticalDashboards(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
24404
25160
  /**
24405
25161
  *
24406
25162
  * @summary Get a Dashboard
24407
25163
  * @param {string} workspaceId
24408
25164
  * @param {string} objectId
24409
25165
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
24410
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
25166
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
24411
25167
  * @param {boolean} [xGDCVALIDATERELATIONS]
24412
25168
  * @param {Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
24413
25169
  * @param {*} [options] Override http request option.
24414
25170
  * @param {Configuration} [configuration] Optional configuration.
24415
25171
  * @throws {RequiredError}
24416
25172
  */
24417
- export declare function DashboardsApiAxiosParamCreator_GetEntityAnalyticalDashboards(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
25173
+ export declare function DashboardsApiAxiosParamCreator_GetEntityAnalyticalDashboards(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
24418
25174
  /**
24419
25175
  *
24420
25176
  * @summary Patch a Dashboard
@@ -24422,12 +25178,12 @@ export declare function DashboardsApiAxiosParamCreator_GetEntityAnalyticalDashbo
24422
25178
  * @param {string} objectId
24423
25179
  * @param {JsonApiAnalyticalDashboardPatchDocument} jsonApiAnalyticalDashboardPatchDocument
24424
25180
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
24425
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
25181
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
24426
25182
  * @param {*} [options] Override http request option.
24427
25183
  * @param {Configuration} [configuration] Optional configuration.
24428
25184
  * @throws {RequiredError}
24429
25185
  */
24430
- export declare function DashboardsApiAxiosParamCreator_PatchEntityAnalyticalDashboards(workspaceId: string, objectId: string, jsonApiAnalyticalDashboardPatchDocument: JsonApiAnalyticalDashboardPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
25186
+ export declare function DashboardsApiAxiosParamCreator_PatchEntityAnalyticalDashboards(workspaceId: string, objectId: string, jsonApiAnalyticalDashboardPatchDocument: JsonApiAnalyticalDashboardPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
24431
25187
  /**
24432
25188
  *
24433
25189
  * @summary The search endpoint (beta)
@@ -24447,12 +25203,12 @@ export declare function DashboardsApiAxiosParamCreator_SearchEntitiesAnalyticalD
24447
25203
  * @param {string} objectId
24448
25204
  * @param {JsonApiAnalyticalDashboardInDocument} jsonApiAnalyticalDashboardInDocument
24449
25205
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
24450
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
25206
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
24451
25207
  * @param {*} [options] Override http request option.
24452
25208
  * @param {Configuration} [configuration] Optional configuration.
24453
25209
  * @throws {RequiredError}
24454
25210
  */
24455
- export declare function DashboardsApiAxiosParamCreator_UpdateEntityAnalyticalDashboards(workspaceId: string, objectId: string, jsonApiAnalyticalDashboardInDocument: JsonApiAnalyticalDashboardInDocument, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
25211
+ export declare function DashboardsApiAxiosParamCreator_UpdateEntityAnalyticalDashboards(workspaceId: string, objectId: string, jsonApiAnalyticalDashboardInDocument: JsonApiAnalyticalDashboardInDocument, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
24456
25212
  /**
24457
25213
  *
24458
25214
  * @summary Post Dashboards
@@ -24620,10 +25376,10 @@ export interface DashboardsApiCreateEntityAnalyticalDashboardsRequest {
24620
25376
  readonly jsonApiAnalyticalDashboardPostOptionalIdDocument: JsonApiAnalyticalDashboardPostOptionalIdDocument;
24621
25377
  /**
24622
25378
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
24623
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
25379
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
24624
25380
  * @memberof DashboardsApiCreateEntityAnalyticalDashboards
24625
25381
  */
24626
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
25382
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
24627
25383
  /**
24628
25384
  * Include Meta objects.
24629
25385
  * @type {Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>}
@@ -24676,10 +25432,10 @@ export interface DashboardsApiGetAllEntitiesAnalyticalDashboardsRequest {
24676
25432
  readonly filter?: string;
24677
25433
  /**
24678
25434
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
24679
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
25435
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
24680
25436
  * @memberof DashboardsApiGetAllEntitiesAnalyticalDashboards
24681
25437
  */
24682
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
25438
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
24683
25439
  /**
24684
25440
  * Zero-based page index (0..N)
24685
25441
  * @type {number}
@@ -24737,10 +25493,10 @@ export interface DashboardsApiGetEntityAnalyticalDashboardsRequest {
24737
25493
  readonly filter?: string;
24738
25494
  /**
24739
25495
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
24740
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
25496
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
24741
25497
  * @memberof DashboardsApiGetEntityAnalyticalDashboards
24742
25498
  */
24743
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
25499
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
24744
25500
  /**
24745
25501
  *
24746
25502
  * @type {boolean}
@@ -24786,10 +25542,10 @@ export interface DashboardsApiPatchEntityAnalyticalDashboardsRequest {
24786
25542
  readonly filter?: string;
24787
25543
  /**
24788
25544
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
24789
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
25545
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
24790
25546
  * @memberof DashboardsApiPatchEntityAnalyticalDashboards
24791
25547
  */
24792
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
25548
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
24793
25549
  }
24794
25550
  /**
24795
25551
  * Request parameters for searchEntitiesAnalyticalDashboards operation in DashboardsApi.
@@ -24854,10 +25610,10 @@ export interface DashboardsApiUpdateEntityAnalyticalDashboardsRequest {
24854
25610
  readonly filter?: string;
24855
25611
  /**
24856
25612
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
24857
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
25613
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
24858
25614
  * @memberof DashboardsApiUpdateEntityAnalyticalDashboards
24859
25615
  */
24860
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
25616
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
24861
25617
  }
24862
25618
  /**
24863
25619
  * DashboardsApi - object-oriented interface
@@ -28934,13 +29690,13 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityAgents(jsonApiA
28934
29690
  * @summary Post Dashboards
28935
29691
  * @param {string} workspaceId
28936
29692
  * @param {JsonApiAnalyticalDashboardPostOptionalIdDocument} jsonApiAnalyticalDashboardPostOptionalIdDocument
28937
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29693
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
28938
29694
  * @param {Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
28939
29695
  * @param {*} [options] Override http request option.
28940
29696
  * @param {Configuration} [configuration] Optional configuration.
28941
29697
  * @throws {RequiredError}
28942
29698
  */
28943
- export declare function EntitiesApiAxiosParamCreator_CreateEntityAnalyticalDashboards(workspaceId: string, jsonApiAnalyticalDashboardPostOptionalIdDocument: JsonApiAnalyticalDashboardPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
29699
+ export declare function EntitiesApiAxiosParamCreator_CreateEntityAnalyticalDashboards(workspaceId: string, jsonApiAnalyticalDashboardPostOptionalIdDocument: JsonApiAnalyticalDashboardPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
28944
29700
  /**
28945
29701
  *
28946
29702
  * @summary Post a new API token for the user
@@ -29013,6 +29769,16 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityCustomApplicati
29013
29769
  * @throws {RequiredError}
29014
29770
  */
29015
29771
  export declare function EntitiesApiAxiosParamCreator_CreateEntityCustomGeoCollections(jsonApiCustomGeoCollectionInDocument: JsonApiCustomGeoCollectionInDocument, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
29772
+ /**
29773
+ *
29774
+ * @summary Post a new custom application setting for the user
29775
+ * @param {string} userId
29776
+ * @param {JsonApiCustomUserApplicationSettingPostOptionalIdDocument} jsonApiCustomUserApplicationSettingPostOptionalIdDocument
29777
+ * @param {*} [options] Override http request option.
29778
+ * @param {Configuration} [configuration] Optional configuration.
29779
+ * @throws {RequiredError}
29780
+ */
29781
+ export declare function EntitiesApiAxiosParamCreator_CreateEntityCustomUserApplicationSettings(userId: string, jsonApiCustomUserApplicationSettingPostOptionalIdDocument: JsonApiCustomUserApplicationSettingPostOptionalIdDocument, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
29016
29782
  /**
29017
29783
  *
29018
29784
  * @summary Post Plugins
@@ -29237,13 +30003,13 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityUsers(jsonApiUs
29237
30003
  * @summary Post Visualization Objects
29238
30004
  * @param {string} workspaceId
29239
30005
  * @param {JsonApiVisualizationObjectPostOptionalIdDocument} jsonApiVisualizationObjectPostOptionalIdDocument
29240
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
30006
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29241
30007
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
29242
30008
  * @param {*} [options] Override http request option.
29243
30009
  * @param {Configuration} [configuration] Optional configuration.
29244
30010
  * @throws {RequiredError}
29245
30011
  */
29246
- export declare function EntitiesApiAxiosParamCreator_CreateEntityVisualizationObjects(workspaceId: string, jsonApiVisualizationObjectPostOptionalIdDocument: JsonApiVisualizationObjectPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
30012
+ export declare function EntitiesApiAxiosParamCreator_CreateEntityVisualizationObjects(workspaceId: string, jsonApiVisualizationObjectPostOptionalIdDocument: JsonApiVisualizationObjectPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
29247
30013
  /**
29248
30014
  *
29249
30015
  * @summary Post Settings for Workspace Data Filters
@@ -29376,6 +30142,16 @@ export declare function EntitiesApiAxiosParamCreator_DeleteEntityCustomApplicati
29376
30142
  * @throws {RequiredError}
29377
30143
  */
29378
30144
  export declare function EntitiesApiAxiosParamCreator_DeleteEntityCustomGeoCollections(id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
30145
+ /**
30146
+ *
30147
+ * @summary Delete a custom application setting for a user
30148
+ * @param {string} userId
30149
+ * @param {string} id
30150
+ * @param {*} [options] Override http request option.
30151
+ * @param {Configuration} [configuration] Optional configuration.
30152
+ * @throws {RequiredError}
30153
+ */
30154
+ export declare function EntitiesApiAxiosParamCreator_DeleteEntityCustomUserApplicationSettings(userId: string, id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
29379
30155
  /**
29380
30156
  *
29381
30157
  * @summary Delete a Plugin
@@ -29675,7 +30451,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesAggregatedFac
29675
30451
  * @param {string} workspaceId
29676
30452
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
29677
30453
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
29678
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
30454
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
29679
30455
  * @param {number} [page] Zero-based page index (0..N)
29680
30456
  * @param {number} [size] The size of the page to be returned
29681
30457
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -29685,7 +30461,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesAggregatedFac
29685
30461
  * @param {Configuration} [configuration] Optional configuration.
29686
30462
  * @throws {RequiredError}
29687
30463
  */
29688
- export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesAnalyticalDashboards(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
30464
+ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesAnalyticalDashboards(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
29689
30465
  /**
29690
30466
  *
29691
30467
  * @summary List all api tokens for a user
@@ -29806,6 +30582,20 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesCustomApplica
29806
30582
  * @throws {RequiredError}
29807
30583
  */
29808
30584
  export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesCustomGeoCollections(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
30585
+ /**
30586
+ *
30587
+ * @summary List all custom application settings for a user
30588
+ * @param {string} userId
30589
+ * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
30590
+ * @param {number} [page] Zero-based page index (0..N)
30591
+ * @param {number} [size] The size of the page to be returned
30592
+ * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
30593
+ * @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
30594
+ * @param {*} [options] Override http request option.
30595
+ * @param {Configuration} [configuration] Optional configuration.
30596
+ * @throws {RequiredError}
30597
+ */
30598
+ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesCustomUserApplicationSettings(userId: string, filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
29809
30599
  /**
29810
30600
  *
29811
30601
  * @summary Get all Plugins
@@ -30227,7 +31017,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesUsers(filter?
30227
31017
  * @param {string} workspaceId
30228
31018
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
30229
31019
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
30230
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
31020
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
30231
31021
  * @param {number} [page] Zero-based page index (0..N)
30232
31022
  * @param {number} [size] The size of the page to be returned
30233
31023
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -30237,7 +31027,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesUsers(filter?
30237
31027
  * @param {Configuration} [configuration] Optional configuration.
30238
31028
  * @throws {RequiredError}
30239
31029
  */
30240
- export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesVisualizationObjects(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
31030
+ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesVisualizationObjects(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
30241
31031
  /**
30242
31032
  *
30243
31033
  * @summary Get all Settings for Workspace Data Filters
@@ -30349,14 +31139,14 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityAggregatedFacts(wo
30349
31139
  * @param {string} workspaceId
30350
31140
  * @param {string} objectId
30351
31141
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
30352
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
31142
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
30353
31143
  * @param {boolean} [xGDCVALIDATERELATIONS]
30354
31144
  * @param {Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
30355
31145
  * @param {*} [options] Override http request option.
30356
31146
  * @param {Configuration} [configuration] Optional configuration.
30357
31147
  * @throws {RequiredError}
30358
31148
  */
30359
- export declare function EntitiesApiAxiosParamCreator_GetEntityAnalyticalDashboards(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
31149
+ export declare function EntitiesApiAxiosParamCreator_GetEntityAnalyticalDashboards(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
30360
31150
  /**
30361
31151
  *
30362
31152
  * @summary Get an API Token for a user
@@ -30463,6 +31253,17 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityCustomApplicationS
30463
31253
  * @throws {RequiredError}
30464
31254
  */
30465
31255
  export declare function EntitiesApiAxiosParamCreator_GetEntityCustomGeoCollections(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
31256
+ /**
31257
+ *
31258
+ * @summary Get a custom application setting for a user
31259
+ * @param {string} userId
31260
+ * @param {string} id
31261
+ * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
31262
+ * @param {*} [options] Override http request option.
31263
+ * @param {Configuration} [configuration] Optional configuration.
31264
+ * @throws {RequiredError}
31265
+ */
31266
+ export declare function EntitiesApiAxiosParamCreator_GetEntityCustomUserApplicationSettings(userId: string, id: string, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
30466
31267
  /**
30467
31268
  *
30468
31269
  * @summary Get a Plugin
@@ -30813,14 +31614,14 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityUsers(id: string,
30813
31614
  * @param {string} workspaceId
30814
31615
  * @param {string} objectId
30815
31616
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
30816
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
31617
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
30817
31618
  * @param {boolean} [xGDCVALIDATERELATIONS]
30818
31619
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
30819
31620
  * @param {*} [options] Override http request option.
30820
31621
  * @param {Configuration} [configuration] Optional configuration.
30821
31622
  * @throws {RequiredError}
30822
31623
  */
30823
- export declare function EntitiesApiAxiosParamCreator_GetEntityVisualizationObjects(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
31624
+ export declare function EntitiesApiAxiosParamCreator_GetEntityVisualizationObjects(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
30824
31625
  /**
30825
31626
  *
30826
31627
  * @summary Get a Setting for Workspace Data Filter
@@ -30902,12 +31703,12 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityAgents(id: strin
30902
31703
  * @param {string} objectId
30903
31704
  * @param {JsonApiAnalyticalDashboardPatchDocument} jsonApiAnalyticalDashboardPatchDocument
30904
31705
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
30905
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
31706
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
30906
31707
  * @param {*} [options] Override http request option.
30907
31708
  * @param {Configuration} [configuration] Optional configuration.
30908
31709
  * @throws {RequiredError}
30909
31710
  */
30910
- export declare function EntitiesApiAxiosParamCreator_PatchEntityAnalyticalDashboards(workspaceId: string, objectId: string, jsonApiAnalyticalDashboardPatchDocument: JsonApiAnalyticalDashboardPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
31711
+ export declare function EntitiesApiAxiosParamCreator_PatchEntityAnalyticalDashboards(workspaceId: string, objectId: string, jsonApiAnalyticalDashboardPatchDocument: JsonApiAnalyticalDashboardPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
30911
31712
  /**
30912
31713
  *
30913
31714
  * @summary Patch an Attribute Hierarchy
@@ -31301,12 +32102,12 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityUsers(id: string
31301
32102
  * @param {string} objectId
31302
32103
  * @param {JsonApiVisualizationObjectPatchDocument} jsonApiVisualizationObjectPatchDocument
31303
32104
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
31304
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
32105
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
31305
32106
  * @param {*} [options] Override http request option.
31306
32107
  * @param {Configuration} [configuration] Optional configuration.
31307
32108
  * @throws {RequiredError}
31308
32109
  */
31309
- export declare function EntitiesApiAxiosParamCreator_PatchEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectPatchDocument: JsonApiVisualizationObjectPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
32110
+ export declare function EntitiesApiAxiosParamCreator_PatchEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectPatchDocument: JsonApiVisualizationObjectPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
31310
32111
  /**
31311
32112
  *
31312
32113
  * @summary Patch a Settings for Workspace Data Filter
@@ -31357,17 +32158,6 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityWorkspaceSetting
31357
32158
  * @throws {RequiredError}
31358
32159
  */
31359
32160
  export declare function EntitiesApiAxiosParamCreator_PatchEntityWorkspaces(id: string, jsonApiWorkspacePatchDocument: JsonApiWorkspacePatchDocument, filter?: string, include?: Array<'workspaces' | 'parent' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
31360
- /**
31361
- * Notification sets up all reports to be computed again with new data.
31362
- * @summary Register an upload notification
31363
- * @param {string} workspaceId
31364
- * @param {Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
31365
- * @param {object} [body] Request body
31366
- * @param {*} [options] Override http request option.
31367
- * @param {Configuration} [configuration] Optional configuration.
31368
- * @throws {RequiredError}
31369
- */
31370
- export declare function EntitiesApiAxiosParamCreator_RegisterUploadNotificationWorkspaces(workspaceId: string, metaInclude?: Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>, body?: object, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
31371
32161
  /**
31372
32162
  *
31373
32163
  * @summary The search endpoint (beta)
@@ -31663,12 +32453,12 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityAgents(id: stri
31663
32453
  * @param {string} objectId
31664
32454
  * @param {JsonApiAnalyticalDashboardInDocument} jsonApiAnalyticalDashboardInDocument
31665
32455
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
31666
- * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
32456
+ * @param {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
31667
32457
  * @param {*} [options] Override http request option.
31668
32458
  * @param {Configuration} [configuration] Optional configuration.
31669
32459
  * @throws {RequiredError}
31670
32460
  */
31671
- export declare function EntitiesApiAxiosParamCreator_UpdateEntityAnalyticalDashboards(workspaceId: string, objectId: string, jsonApiAnalyticalDashboardInDocument: JsonApiAnalyticalDashboardInDocument, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
32461
+ export declare function EntitiesApiAxiosParamCreator_UpdateEntityAnalyticalDashboards(workspaceId: string, objectId: string, jsonApiAnalyticalDashboardInDocument: JsonApiAnalyticalDashboardInDocument, filter?: string, include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
31672
32462
  /**
31673
32463
  *
31674
32464
  * @summary Put an Attribute Hierarchy
@@ -31751,6 +32541,18 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityCustomApplicati
31751
32541
  * @throws {RequiredError}
31752
32542
  */
31753
32543
  export declare function EntitiesApiAxiosParamCreator_UpdateEntityCustomGeoCollections(id: string, jsonApiCustomGeoCollectionInDocument: JsonApiCustomGeoCollectionInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
32544
+ /**
32545
+ *
32546
+ * @summary Put a custom application setting for the user
32547
+ * @param {string} userId
32548
+ * @param {string} id
32549
+ * @param {JsonApiCustomUserApplicationSettingInDocument} jsonApiCustomUserApplicationSettingInDocument
32550
+ * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
32551
+ * @param {*} [options] Override http request option.
32552
+ * @param {Configuration} [configuration] Optional configuration.
32553
+ * @throws {RequiredError}
32554
+ */
32555
+ export declare function EntitiesApiAxiosParamCreator_UpdateEntityCustomUserApplicationSettings(userId: string, id: string, jsonApiCustomUserApplicationSettingInDocument: JsonApiCustomUserApplicationSettingInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
31754
32556
  /**
31755
32557
  *
31756
32558
  * @summary Put a Plugin
@@ -32022,12 +32824,12 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityUsers(id: strin
32022
32824
  * @param {string} objectId
32023
32825
  * @param {JsonApiVisualizationObjectInDocument} jsonApiVisualizationObjectInDocument
32024
32826
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
32025
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
32827
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
32026
32828
  * @param {*} [options] Override http request option.
32027
32829
  * @param {Configuration} [configuration] Optional configuration.
32028
32830
  * @throws {RequiredError}
32029
32831
  */
32030
- export declare function EntitiesApiAxiosParamCreator_UpdateEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectInDocument: JsonApiVisualizationObjectInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
32832
+ export declare function EntitiesApiAxiosParamCreator_UpdateEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectInDocument: JsonApiVisualizationObjectInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
32031
32833
  /**
32032
32834
  *
32033
32835
  * @summary Put a Settings for Workspace Data Filter
@@ -32177,6 +32979,17 @@ export declare function EntitiesApi_CreateEntityCustomApplicationSettings(axios:
32177
32979
  * @throws {RequiredError}
32178
32980
  */
32179
32981
  export declare function EntitiesApi_CreateEntityCustomGeoCollections(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityCustomGeoCollectionsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomGeoCollectionOutDocument>;
32982
+ /**
32983
+ *
32984
+ * @summary Post a new custom application setting for the user
32985
+ * @param {AxiosInstance} axios Axios instance.
32986
+ * @param {string} basePath Base path.
32987
+ * @param {EntitiesApiCreateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
32988
+ * @param {*} [options] Override http request option.
32989
+ * @param {Configuration} [configuration] Optional configuration.
32990
+ * @throws {RequiredError}
32991
+ */
32992
+ export declare function EntitiesApi_CreateEntityCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
32180
32993
  /**
32181
32994
  *
32182
32995
  * @summary Post Plugins
@@ -32562,6 +33375,17 @@ export declare function EntitiesApi_DeleteEntityCustomApplicationSettings(axios:
32562
33375
  * @throws {RequiredError}
32563
33376
  */
32564
33377
  export declare function EntitiesApi_DeleteEntityCustomGeoCollections(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityCustomGeoCollectionsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
33378
+ /**
33379
+ *
33380
+ * @summary Delete a custom application setting for a user
33381
+ * @param {AxiosInstance} axios Axios instance.
33382
+ * @param {string} basePath Base path.
33383
+ * @param {EntitiesApiDeleteEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
33384
+ * @param {*} [options] Override http request option.
33385
+ * @param {Configuration} [configuration] Optional configuration.
33386
+ * @throws {RequiredError}
33387
+ */
33388
+ export declare function EntitiesApi_DeleteEntityCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
32565
33389
  /**
32566
33390
  *
32567
33391
  * @summary Delete a Plugin
@@ -32980,6 +33804,17 @@ export declare function EntitiesApi_GetAllEntitiesCustomApplicationSettings(axio
32980
33804
  * @throws {RequiredError}
32981
33805
  */
32982
33806
  export declare function EntitiesApi_GetAllEntitiesCustomGeoCollections(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesCustomGeoCollectionsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomGeoCollectionOutList>;
33807
+ /**
33808
+ *
33809
+ * @summary List all custom application settings for a user
33810
+ * @param {AxiosInstance} axios Axios instance.
33811
+ * @param {string} basePath Base path.
33812
+ * @param {EntitiesApiGetAllEntitiesCustomUserApplicationSettingsRequest} requestParameters Request parameters.
33813
+ * @param {*} [options] Override http request option.
33814
+ * @param {Configuration} [configuration] Optional configuration.
33815
+ * @throws {RequiredError}
33816
+ */
33817
+ export declare function EntitiesApi_GetAllEntitiesCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomUserApplicationSettingOutList>;
32983
33818
  /**
32984
33819
  *
32985
33820
  * @summary Get all Plugins
@@ -33497,6 +34332,17 @@ export declare function EntitiesApi_GetEntityCustomApplicationSettings(axios: Ax
33497
34332
  * @throws {RequiredError}
33498
34333
  */
33499
34334
  export declare function EntitiesApi_GetEntityCustomGeoCollections(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityCustomGeoCollectionsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomGeoCollectionOutDocument>;
34335
+ /**
34336
+ *
34337
+ * @summary Get a custom application setting for a user
34338
+ * @param {AxiosInstance} axios Axios instance.
34339
+ * @param {string} basePath Base path.
34340
+ * @param {EntitiesApiGetEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
34341
+ * @param {*} [options] Override http request option.
34342
+ * @param {Configuration} [configuration] Optional configuration.
34343
+ * @throws {RequiredError}
34344
+ */
34345
+ export declare function EntitiesApi_GetEntityCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
33500
34346
  /**
33501
34347
  *
33502
34348
  * @summary Get a Plugin
@@ -34311,17 +35157,6 @@ export declare function EntitiesApi_PatchEntityWorkspaceSettings(axios: AxiosIns
34311
35157
  * @throws {RequiredError}
34312
35158
  */
34313
35159
  export declare function EntitiesApi_PatchEntityWorkspaces(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityWorkspacesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceOutDocument>;
34314
- /**
34315
- * Notification sets up all reports to be computed again with new data.
34316
- * @summary Register an upload notification
34317
- * @param {AxiosInstance} axios Axios instance.
34318
- * @param {string} basePath Base path.
34319
- * @param {EntitiesApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
34320
- * @param {*} [options] Override http request option.
34321
- * @param {Configuration} [configuration] Optional configuration.
34322
- * @throws {RequiredError}
34323
- */
34324
- export declare function EntitiesApi_RegisterUploadNotificationWorkspaces(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceOutDocument>;
34325
35160
  /**
34326
35161
  *
34327
35162
  * @summary The search endpoint (beta)
@@ -34674,6 +35509,17 @@ export declare function EntitiesApi_UpdateEntityCustomApplicationSettings(axios:
34674
35509
  * @throws {RequiredError}
34675
35510
  */
34676
35511
  export declare function EntitiesApi_UpdateEntityCustomGeoCollections(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityCustomGeoCollectionsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomGeoCollectionOutDocument>;
35512
+ /**
35513
+ *
35514
+ * @summary Put a custom application setting for the user
35515
+ * @param {AxiosInstance} axios Axios instance.
35516
+ * @param {string} basePath Base path.
35517
+ * @param {EntitiesApiUpdateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
35518
+ * @param {*} [options] Override http request option.
35519
+ * @param {Configuration} [configuration] Optional configuration.
35520
+ * @throws {RequiredError}
35521
+ */
35522
+ export declare function EntitiesApi_UpdateEntityCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
34677
35523
  /**
34678
35524
  *
34679
35525
  * @summary Put a Plugin
@@ -35058,6 +35904,15 @@ export interface EntitiesApiInterface {
35058
35904
  * @memberof EntitiesApiInterface
35059
35905
  */
35060
35906
  createEntityCustomGeoCollections(requestParameters: EntitiesApiCreateEntityCustomGeoCollectionsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomGeoCollectionOutDocument>;
35907
+ /**
35908
+ *
35909
+ * @summary Post a new custom application setting for the user
35910
+ * @param {EntitiesApiCreateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
35911
+ * @param {*} [options] Override http request option.
35912
+ * @throws {RequiredError}
35913
+ * @memberof EntitiesApiInterface
35914
+ */
35915
+ createEntityCustomUserApplicationSettings(requestParameters: EntitiesApiCreateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
35061
35916
  /**
35062
35917
  *
35063
35918
  * @summary Post Plugins
@@ -35374,6 +36229,15 @@ export interface EntitiesApiInterface {
35374
36229
  * @memberof EntitiesApiInterface
35375
36230
  */
35376
36231
  deleteEntityCustomGeoCollections(requestParameters: EntitiesApiDeleteEntityCustomGeoCollectionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
36232
+ /**
36233
+ *
36234
+ * @summary Delete a custom application setting for a user
36235
+ * @param {EntitiesApiDeleteEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
36236
+ * @param {*} [options] Override http request option.
36237
+ * @throws {RequiredError}
36238
+ * @memberof EntitiesApiInterface
36239
+ */
36240
+ deleteEntityCustomUserApplicationSettings(requestParameters: EntitiesApiDeleteEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
35377
36241
  /**
35378
36242
  *
35379
36243
  * @summary Delete a Plugin
@@ -35717,6 +36581,15 @@ export interface EntitiesApiInterface {
35717
36581
  * @memberof EntitiesApiInterface
35718
36582
  */
35719
36583
  getAllEntitiesCustomGeoCollections(requestParameters: EntitiesApiGetAllEntitiesCustomGeoCollectionsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomGeoCollectionOutList>;
36584
+ /**
36585
+ *
36586
+ * @summary List all custom application settings for a user
36587
+ * @param {EntitiesApiGetAllEntitiesCustomUserApplicationSettingsRequest} requestParameters Request parameters.
36588
+ * @param {*} [options] Override http request option.
36589
+ * @throws {RequiredError}
36590
+ * @memberof EntitiesApiInterface
36591
+ */
36592
+ getAllEntitiesCustomUserApplicationSettings(requestParameters: EntitiesApiGetAllEntitiesCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutList>;
35720
36593
  /**
35721
36594
  *
35722
36595
  * @summary Get all Plugins
@@ -36141,6 +37014,15 @@ export interface EntitiesApiInterface {
36141
37014
  * @memberof EntitiesApiInterface
36142
37015
  */
36143
37016
  getEntityCustomGeoCollections(requestParameters: EntitiesApiGetEntityCustomGeoCollectionsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomGeoCollectionOutDocument>;
37017
+ /**
37018
+ *
37019
+ * @summary Get a custom application setting for a user
37020
+ * @param {EntitiesApiGetEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
37021
+ * @param {*} [options] Override http request option.
37022
+ * @throws {RequiredError}
37023
+ * @memberof EntitiesApiInterface
37024
+ */
37025
+ getEntityCustomUserApplicationSettings(requestParameters: EntitiesApiGetEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
36144
37026
  /**
36145
37027
  *
36146
37028
  * @summary Get a Plugin
@@ -36809,15 +37691,6 @@ export interface EntitiesApiInterface {
36809
37691
  * @memberof EntitiesApiInterface
36810
37692
  */
36811
37693
  patchEntityWorkspaces(requestParameters: EntitiesApiPatchEntityWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
36812
- /**
36813
- * Notification sets up all reports to be computed again with new data.
36814
- * @summary Register an upload notification
36815
- * @param {EntitiesApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
36816
- * @param {*} [options] Override http request option.
36817
- * @throws {RequiredError}
36818
- * @memberof EntitiesApiInterface
36819
- */
36820
- registerUploadNotificationWorkspaces(requestParameters: EntitiesApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
36821
37694
  /**
36822
37695
  *
36823
37696
  * @summary The search endpoint (beta)
@@ -37106,6 +37979,15 @@ export interface EntitiesApiInterface {
37106
37979
  * @memberof EntitiesApiInterface
37107
37980
  */
37108
37981
  updateEntityCustomGeoCollections(requestParameters: EntitiesApiUpdateEntityCustomGeoCollectionsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomGeoCollectionOutDocument>;
37982
+ /**
37983
+ *
37984
+ * @summary Put a custom application setting for the user
37985
+ * @param {EntitiesApiUpdateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
37986
+ * @param {*} [options] Override http request option.
37987
+ * @throws {RequiredError}
37988
+ * @memberof EntitiesApiInterface
37989
+ */
37990
+ updateEntityCustomUserApplicationSettings(requestParameters: EntitiesApiUpdateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
37109
37991
  /**
37110
37992
  *
37111
37993
  * @summary Put a Plugin
@@ -37390,10 +38272,10 @@ export interface EntitiesApiCreateEntityAnalyticalDashboardsRequest {
37390
38272
  readonly jsonApiAnalyticalDashboardPostOptionalIdDocument: JsonApiAnalyticalDashboardPostOptionalIdDocument;
37391
38273
  /**
37392
38274
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
37393
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
38275
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
37394
38276
  * @memberof EntitiesApiCreateEntityAnalyticalDashboards
37395
38277
  */
37396
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
38278
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
37397
38279
  /**
37398
38280
  * Include Meta objects.
37399
38281
  * @type {Array<'permissions' | 'origin' | 'accessInfo' | 'all' | 'ALL'>}
@@ -37546,6 +38428,25 @@ export interface EntitiesApiCreateEntityCustomGeoCollectionsRequest {
37546
38428
  */
37547
38429
  readonly jsonApiCustomGeoCollectionInDocument: JsonApiCustomGeoCollectionInDocument;
37548
38430
  }
38431
+ /**
38432
+ * Request parameters for createEntityCustomUserApplicationSettings operation in EntitiesApi.
38433
+ * @export
38434
+ * @interface EntitiesApiCreateEntityCustomUserApplicationSettingsRequest
38435
+ */
38436
+ export interface EntitiesApiCreateEntityCustomUserApplicationSettingsRequest {
38437
+ /**
38438
+ *
38439
+ * @type {string}
38440
+ * @memberof EntitiesApiCreateEntityCustomUserApplicationSettings
38441
+ */
38442
+ readonly userId: string;
38443
+ /**
38444
+ *
38445
+ * @type {JsonApiCustomUserApplicationSettingPostOptionalIdDocument}
38446
+ * @memberof EntitiesApiCreateEntityCustomUserApplicationSettings
38447
+ */
38448
+ readonly jsonApiCustomUserApplicationSettingPostOptionalIdDocument: JsonApiCustomUserApplicationSettingPostOptionalIdDocument;
38449
+ }
37549
38450
  /**
37550
38451
  * Request parameters for createEntityDashboardPlugins operation in EntitiesApi.
37551
38452
  * @export
@@ -38019,10 +38920,10 @@ export interface EntitiesApiCreateEntityVisualizationObjectsRequest {
38019
38920
  readonly jsonApiVisualizationObjectPostOptionalIdDocument: JsonApiVisualizationObjectPostOptionalIdDocument;
38020
38921
  /**
38021
38922
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
38022
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
38923
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
38023
38924
  * @memberof EntitiesApiCreateEntityVisualizationObjects
38024
38925
  */
38025
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
38926
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
38026
38927
  /**
38027
38928
  * Include Meta objects.
38028
38929
  * @type {Array<'origin' | 'all' | 'ALL'>}
@@ -38289,6 +39190,25 @@ export interface EntitiesApiDeleteEntityCustomGeoCollectionsRequest {
38289
39190
  */
38290
39191
  readonly id: string;
38291
39192
  }
39193
+ /**
39194
+ * Request parameters for deleteEntityCustomUserApplicationSettings operation in EntitiesApi.
39195
+ * @export
39196
+ * @interface EntitiesApiDeleteEntityCustomUserApplicationSettingsRequest
39197
+ */
39198
+ export interface EntitiesApiDeleteEntityCustomUserApplicationSettingsRequest {
39199
+ /**
39200
+ *
39201
+ * @type {string}
39202
+ * @memberof EntitiesApiDeleteEntityCustomUserApplicationSettings
39203
+ */
39204
+ readonly userId: string;
39205
+ /**
39206
+ *
39207
+ * @type {string}
39208
+ * @memberof EntitiesApiDeleteEntityCustomUserApplicationSettings
39209
+ */
39210
+ readonly id: string;
39211
+ }
38292
39212
  /**
38293
39213
  * Request parameters for deleteEntityDashboardPlugins operation in EntitiesApi.
38294
39214
  * @export
@@ -38884,10 +39804,10 @@ export interface EntitiesApiGetAllEntitiesAnalyticalDashboardsRequest {
38884
39804
  readonly filter?: string;
38885
39805
  /**
38886
39806
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
38887
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
39807
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
38888
39808
  * @memberof EntitiesApiGetAllEntitiesAnalyticalDashboards
38889
39809
  */
38890
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
39810
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
38891
39811
  /**
38892
39812
  * Zero-based page index (0..N)
38893
39813
  * @type {number}
@@ -39311,6 +40231,49 @@ export interface EntitiesApiGetAllEntitiesCustomGeoCollectionsRequest {
39311
40231
  */
39312
40232
  readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
39313
40233
  }
40234
+ /**
40235
+ * Request parameters for getAllEntitiesCustomUserApplicationSettings operation in EntitiesApi.
40236
+ * @export
40237
+ * @interface EntitiesApiGetAllEntitiesCustomUserApplicationSettingsRequest
40238
+ */
40239
+ export interface EntitiesApiGetAllEntitiesCustomUserApplicationSettingsRequest {
40240
+ /**
40241
+ *
40242
+ * @type {string}
40243
+ * @memberof EntitiesApiGetAllEntitiesCustomUserApplicationSettings
40244
+ */
40245
+ readonly userId: string;
40246
+ /**
40247
+ * Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
40248
+ * @type {string}
40249
+ * @memberof EntitiesApiGetAllEntitiesCustomUserApplicationSettings
40250
+ */
40251
+ readonly filter?: string;
40252
+ /**
40253
+ * Zero-based page index (0..N)
40254
+ * @type {number}
40255
+ * @memberof EntitiesApiGetAllEntitiesCustomUserApplicationSettings
40256
+ */
40257
+ readonly page?: number;
40258
+ /**
40259
+ * The size of the page to be returned
40260
+ * @type {number}
40261
+ * @memberof EntitiesApiGetAllEntitiesCustomUserApplicationSettings
40262
+ */
40263
+ readonly size?: number;
40264
+ /**
40265
+ * Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
40266
+ * @type {Array<string>}
40267
+ * @memberof EntitiesApiGetAllEntitiesCustomUserApplicationSettings
40268
+ */
40269
+ readonly sort?: Array<string>;
40270
+ /**
40271
+ * Include Meta objects.
40272
+ * @type {Array<'page' | 'all' | 'ALL'>}
40273
+ * @memberof EntitiesApiGetAllEntitiesCustomUserApplicationSettings
40274
+ */
40275
+ readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
40276
+ }
39314
40277
  /**
39315
40278
  * Request parameters for getAllEntitiesDashboardPlugins operation in EntitiesApi.
39316
40279
  * @export
@@ -40679,10 +41642,10 @@ export interface EntitiesApiGetAllEntitiesVisualizationObjectsRequest {
40679
41642
  readonly filter?: string;
40680
41643
  /**
40681
41644
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
40682
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
41645
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
40683
41646
  * @memberof EntitiesApiGetAllEntitiesVisualizationObjects
40684
41647
  */
40685
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
41648
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
40686
41649
  /**
40687
41650
  * Zero-based page index (0..N)
40688
41651
  * @type {number}
@@ -41028,10 +41991,10 @@ export interface EntitiesApiGetEntityAnalyticalDashboardsRequest {
41028
41991
  readonly filter?: string;
41029
41992
  /**
41030
41993
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
41031
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
41994
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
41032
41995
  * @memberof EntitiesApiGetEntityAnalyticalDashboards
41033
41996
  */
41034
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
41997
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
41035
41998
  /**
41036
41999
  *
41037
42000
  * @type {boolean}
@@ -41312,6 +42275,31 @@ export interface EntitiesApiGetEntityCustomGeoCollectionsRequest {
41312
42275
  */
41313
42276
  readonly filter?: string;
41314
42277
  }
42278
+ /**
42279
+ * Request parameters for getEntityCustomUserApplicationSettings operation in EntitiesApi.
42280
+ * @export
42281
+ * @interface EntitiesApiGetEntityCustomUserApplicationSettingsRequest
42282
+ */
42283
+ export interface EntitiesApiGetEntityCustomUserApplicationSettingsRequest {
42284
+ /**
42285
+ *
42286
+ * @type {string}
42287
+ * @memberof EntitiesApiGetEntityCustomUserApplicationSettings
42288
+ */
42289
+ readonly userId: string;
42290
+ /**
42291
+ *
42292
+ * @type {string}
42293
+ * @memberof EntitiesApiGetEntityCustomUserApplicationSettings
42294
+ */
42295
+ readonly id: string;
42296
+ /**
42297
+ * Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
42298
+ * @type {string}
42299
+ * @memberof EntitiesApiGetEntityCustomUserApplicationSettings
42300
+ */
42301
+ readonly filter?: string;
42302
+ }
41315
42303
  /**
41316
42304
  * Request parameters for getEntityDashboardPlugins operation in EntitiesApi.
41317
42305
  * @export
@@ -42213,10 +43201,10 @@ export interface EntitiesApiGetEntityVisualizationObjectsRequest {
42213
43201
  readonly filter?: string;
42214
43202
  /**
42215
43203
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
42216
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
43204
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
42217
43205
  * @memberof EntitiesApiGetEntityVisualizationObjects
42218
43206
  */
42219
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
43207
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
42220
43208
  /**
42221
43209
  *
42222
43210
  * @type {boolean}
@@ -42460,10 +43448,10 @@ export interface EntitiesApiPatchEntityAnalyticalDashboardsRequest {
42460
43448
  readonly filter?: string;
42461
43449
  /**
42462
43450
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
42463
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
43451
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
42464
43452
  * @memberof EntitiesApiPatchEntityAnalyticalDashboards
42465
43453
  */
42466
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
43454
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
42467
43455
  }
42468
43456
  /**
42469
43457
  * Request parameters for patchEntityAttributeHierarchies operation in EntitiesApi.
@@ -43501,10 +44489,10 @@ export interface EntitiesApiPatchEntityVisualizationObjectsRequest {
43501
44489
  readonly filter?: string;
43502
44490
  /**
43503
44491
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
43504
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
44492
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
43505
44493
  * @memberof EntitiesApiPatchEntityVisualizationObjects
43506
44494
  */
43507
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
44495
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
43508
44496
  }
43509
44497
  /**
43510
44498
  * Request parameters for patchEntityWorkspaceDataFilterSettings operation in EntitiesApi.
@@ -43642,31 +44630,6 @@ export interface EntitiesApiPatchEntityWorkspacesRequest {
43642
44630
  */
43643
44631
  readonly include?: Array<'workspaces' | 'parent' | 'ALL'>;
43644
44632
  }
43645
- /**
43646
- * Request parameters for registerUploadNotificationWorkspaces operation in EntitiesApi.
43647
- * @export
43648
- * @interface EntitiesApiRegisterUploadNotificationWorkspacesRequest
43649
- */
43650
- export interface EntitiesApiRegisterUploadNotificationWorkspacesRequest {
43651
- /**
43652
- *
43653
- * @type {string}
43654
- * @memberof EntitiesApiRegisterUploadNotificationWorkspaces
43655
- */
43656
- readonly workspaceId: string;
43657
- /**
43658
- * Include Meta objects.
43659
- * @type {Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>}
43660
- * @memberof EntitiesApiRegisterUploadNotificationWorkspaces
43661
- */
43662
- readonly metaInclude?: Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>;
43663
- /**
43664
- * Request body
43665
- * @type {object}
43666
- * @memberof EntitiesApiRegisterUploadNotificationWorkspaces
43667
- */
43668
- readonly body?: object;
43669
- }
43670
44633
  /**
43671
44634
  * Request parameters for searchEntitiesAggregatedFacts operation in EntitiesApi.
43672
44635
  * @export
@@ -44443,10 +45406,10 @@ export interface EntitiesApiUpdateEntityAnalyticalDashboardsRequest {
44443
45406
  readonly filter?: string;
44444
45407
  /**
44445
45408
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
44446
- * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
45409
+ * @type {Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
44447
45410
  * @memberof EntitiesApiUpdateEntityAnalyticalDashboards
44448
45411
  */
44449
- readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
45412
+ readonly include?: Array<'userIdentifiers' | 'visualizationObjects' | 'analyticalDashboards' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'filterContexts' | 'dashboardPlugins' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
44450
45413
  }
44451
45414
  /**
44452
45415
  * Request parameters for updateEntityAttributeHierarchies operation in EntitiesApi.
@@ -44653,6 +45616,37 @@ export interface EntitiesApiUpdateEntityCustomGeoCollectionsRequest {
44653
45616
  */
44654
45617
  readonly filter?: string;
44655
45618
  }
45619
+ /**
45620
+ * Request parameters for updateEntityCustomUserApplicationSettings operation in EntitiesApi.
45621
+ * @export
45622
+ * @interface EntitiesApiUpdateEntityCustomUserApplicationSettingsRequest
45623
+ */
45624
+ export interface EntitiesApiUpdateEntityCustomUserApplicationSettingsRequest {
45625
+ /**
45626
+ *
45627
+ * @type {string}
45628
+ * @memberof EntitiesApiUpdateEntityCustomUserApplicationSettings
45629
+ */
45630
+ readonly userId: string;
45631
+ /**
45632
+ *
45633
+ * @type {string}
45634
+ * @memberof EntitiesApiUpdateEntityCustomUserApplicationSettings
45635
+ */
45636
+ readonly id: string;
45637
+ /**
45638
+ *
45639
+ * @type {JsonApiCustomUserApplicationSettingInDocument}
45640
+ * @memberof EntitiesApiUpdateEntityCustomUserApplicationSettings
45641
+ */
45642
+ readonly jsonApiCustomUserApplicationSettingInDocument: JsonApiCustomUserApplicationSettingInDocument;
45643
+ /**
45644
+ * Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
45645
+ * @type {string}
45646
+ * @memberof EntitiesApiUpdateEntityCustomUserApplicationSettings
45647
+ */
45648
+ readonly filter?: string;
45649
+ }
44656
45650
  /**
44657
45651
  * Request parameters for updateEntityDashboardPlugins operation in EntitiesApi.
44658
45652
  * @export
@@ -45367,10 +46361,10 @@ export interface EntitiesApiUpdateEntityVisualizationObjectsRequest {
45367
46361
  readonly filter?: string;
45368
46362
  /**
45369
46363
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
45370
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
46364
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
45371
46365
  * @memberof EntitiesApiUpdateEntityVisualizationObjects
45372
46366
  */
45373
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
46367
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
45374
46368
  }
45375
46369
  /**
45376
46370
  * Request parameters for updateEntityWorkspaceDataFilterSettings operation in EntitiesApi.
@@ -45596,6 +46590,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
45596
46590
  * @memberof EntitiesApi
45597
46591
  */
45598
46592
  createEntityCustomGeoCollections(requestParameters: EntitiesApiCreateEntityCustomGeoCollectionsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomGeoCollectionOutDocument>;
46593
+ /**
46594
+ *
46595
+ * @summary Post a new custom application setting for the user
46596
+ * @param {EntitiesApiCreateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
46597
+ * @param {*} [options] Override http request option.
46598
+ * @throws {RequiredError}
46599
+ * @memberof EntitiesApi
46600
+ */
46601
+ createEntityCustomUserApplicationSettings(requestParameters: EntitiesApiCreateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
45599
46602
  /**
45600
46603
  *
45601
46604
  * @summary Post Plugins
@@ -45912,6 +46915,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
45912
46915
  * @memberof EntitiesApi
45913
46916
  */
45914
46917
  deleteEntityCustomGeoCollections(requestParameters: EntitiesApiDeleteEntityCustomGeoCollectionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
46918
+ /**
46919
+ *
46920
+ * @summary Delete a custom application setting for a user
46921
+ * @param {EntitiesApiDeleteEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
46922
+ * @param {*} [options] Override http request option.
46923
+ * @throws {RequiredError}
46924
+ * @memberof EntitiesApi
46925
+ */
46926
+ deleteEntityCustomUserApplicationSettings(requestParameters: EntitiesApiDeleteEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
45915
46927
  /**
45916
46928
  *
45917
46929
  * @summary Delete a Plugin
@@ -46255,6 +47267,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
46255
47267
  * @memberof EntitiesApi
46256
47268
  */
46257
47269
  getAllEntitiesCustomGeoCollections(requestParameters?: EntitiesApiGetAllEntitiesCustomGeoCollectionsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomGeoCollectionOutList>;
47270
+ /**
47271
+ *
47272
+ * @summary List all custom application settings for a user
47273
+ * @param {EntitiesApiGetAllEntitiesCustomUserApplicationSettingsRequest} requestParameters Request parameters.
47274
+ * @param {*} [options] Override http request option.
47275
+ * @throws {RequiredError}
47276
+ * @memberof EntitiesApi
47277
+ */
47278
+ getAllEntitiesCustomUserApplicationSettings(requestParameters: EntitiesApiGetAllEntitiesCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutList>;
46258
47279
  /**
46259
47280
  *
46260
47281
  * @summary Get all Plugins
@@ -46679,6 +47700,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
46679
47700
  * @memberof EntitiesApi
46680
47701
  */
46681
47702
  getEntityCustomGeoCollections(requestParameters: EntitiesApiGetEntityCustomGeoCollectionsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomGeoCollectionOutDocument>;
47703
+ /**
47704
+ *
47705
+ * @summary Get a custom application setting for a user
47706
+ * @param {EntitiesApiGetEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
47707
+ * @param {*} [options] Override http request option.
47708
+ * @throws {RequiredError}
47709
+ * @memberof EntitiesApi
47710
+ */
47711
+ getEntityCustomUserApplicationSettings(requestParameters: EntitiesApiGetEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
46682
47712
  /**
46683
47713
  *
46684
47714
  * @summary Get a Plugin
@@ -47347,15 +48377,6 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
47347
48377
  * @memberof EntitiesApi
47348
48378
  */
47349
48379
  patchEntityWorkspaces(requestParameters: EntitiesApiPatchEntityWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
47350
- /**
47351
- * Notification sets up all reports to be computed again with new data.
47352
- * @summary Register an upload notification
47353
- * @param {EntitiesApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
47354
- * @param {*} [options] Override http request option.
47355
- * @throws {RequiredError}
47356
- * @memberof EntitiesApi
47357
- */
47358
- registerUploadNotificationWorkspaces(requestParameters: EntitiesApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
47359
48380
  /**
47360
48381
  *
47361
48382
  * @summary The search endpoint (beta)
@@ -47644,6 +48665,15 @@ export declare class EntitiesApi extends BaseAPI implements EntitiesApiInterface
47644
48665
  * @memberof EntitiesApi
47645
48666
  */
47646
48667
  updateEntityCustomGeoCollections(requestParameters: EntitiesApiUpdateEntityCustomGeoCollectionsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomGeoCollectionOutDocument>;
48668
+ /**
48669
+ *
48670
+ * @summary Put a custom application setting for the user
48671
+ * @param {EntitiesApiUpdateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
48672
+ * @param {*} [options] Override http request option.
48673
+ * @throws {RequiredError}
48674
+ * @memberof EntitiesApi
48675
+ */
48676
+ updateEntityCustomUserApplicationSettings(requestParameters: EntitiesApiUpdateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
47647
48677
  /**
47648
48678
  *
47649
48679
  * @summary Put a Plugin
@@ -55125,13 +56155,11 @@ export declare function InvalidateCacheApiAxiosParamCreator_RegisterUploadNotifi
55125
56155
  * Notification sets up all reports to be computed again with new data.
55126
56156
  * @summary Register an upload notification
55127
56157
  * @param {string} workspaceId
55128
- * @param {Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
55129
- * @param {object} [body] Request body
55130
56158
  * @param {*} [options] Override http request option.
55131
56159
  * @param {Configuration} [configuration] Optional configuration.
55132
56160
  * @throws {RequiredError}
55133
56161
  */
55134
- export declare function InvalidateCacheApiAxiosParamCreator_RegisterUploadNotificationWorkspaces(workspaceId: string, metaInclude?: Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>, body?: object, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
56162
+ export declare function InvalidateCacheApiAxiosParamCreator_RegisterWorkspaceUploadNotification(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
55135
56163
  /**
55136
56164
  * Notification sets up all reports to be computed again with new data.
55137
56165
  * @summary Register an upload notification
@@ -55148,12 +56176,12 @@ export declare function InvalidateCacheApi_RegisterUploadNotification(axios: Axi
55148
56176
  * @summary Register an upload notification
55149
56177
  * @param {AxiosInstance} axios Axios instance.
55150
56178
  * @param {string} basePath Base path.
55151
- * @param {InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
56179
+ * @param {InvalidateCacheApiRegisterWorkspaceUploadNotificationRequest} requestParameters Request parameters.
55152
56180
  * @param {*} [options] Override http request option.
55153
56181
  * @param {Configuration} [configuration] Optional configuration.
55154
56182
  * @throws {RequiredError}
55155
56183
  */
55156
- export declare function InvalidateCacheApi_RegisterUploadNotificationWorkspaces(axios: AxiosInstance, basePath: string, requestParameters: InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceOutDocument>;
56184
+ export declare function InvalidateCacheApi_RegisterWorkspaceUploadNotification(axios: AxiosInstance, basePath: string, requestParameters: InvalidateCacheApiRegisterWorkspaceUploadNotificationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
55157
56185
  /**
55158
56186
  * InvalidateCacheApi - interface
55159
56187
  * @export
@@ -55172,12 +56200,12 @@ export interface InvalidateCacheApiInterface {
55172
56200
  /**
55173
56201
  * Notification sets up all reports to be computed again with new data.
55174
56202
  * @summary Register an upload notification
55175
- * @param {InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
56203
+ * @param {InvalidateCacheApiRegisterWorkspaceUploadNotificationRequest} requestParameters Request parameters.
55176
56204
  * @param {*} [options] Override http request option.
55177
56205
  * @throws {RequiredError}
55178
56206
  * @memberof InvalidateCacheApiInterface
55179
56207
  */
55180
- registerUploadNotificationWorkspaces(requestParameters: InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
56208
+ registerWorkspaceUploadNotification(requestParameters: InvalidateCacheApiRegisterWorkspaceUploadNotificationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
55181
56209
  }
55182
56210
  /**
55183
56211
  * Request parameters for registerUploadNotification operation in InvalidateCacheApi.
@@ -55193,29 +56221,17 @@ export interface InvalidateCacheApiRegisterUploadNotificationRequest {
55193
56221
  readonly dataSourceId: string;
55194
56222
  }
55195
56223
  /**
55196
- * Request parameters for registerUploadNotificationWorkspaces operation in InvalidateCacheApi.
56224
+ * Request parameters for registerWorkspaceUploadNotification operation in InvalidateCacheApi.
55197
56225
  * @export
55198
- * @interface InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest
56226
+ * @interface InvalidateCacheApiRegisterWorkspaceUploadNotificationRequest
55199
56227
  */
55200
- export interface InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest {
56228
+ export interface InvalidateCacheApiRegisterWorkspaceUploadNotificationRequest {
55201
56229
  /**
55202
56230
  *
55203
56231
  * @type {string}
55204
- * @memberof InvalidateCacheApiRegisterUploadNotificationWorkspaces
56232
+ * @memberof InvalidateCacheApiRegisterWorkspaceUploadNotification
55205
56233
  */
55206
56234
  readonly workspaceId: string;
55207
- /**
55208
- * Include Meta objects.
55209
- * @type {Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>}
55210
- * @memberof InvalidateCacheApiRegisterUploadNotificationWorkspaces
55211
- */
55212
- readonly metaInclude?: Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>;
55213
- /**
55214
- * Request body
55215
- * @type {object}
55216
- * @memberof InvalidateCacheApiRegisterUploadNotificationWorkspaces
55217
- */
55218
- readonly body?: object;
55219
56235
  }
55220
56236
  /**
55221
56237
  * InvalidateCacheApi - object-oriented interface
@@ -55236,12 +56252,12 @@ export declare class InvalidateCacheApi extends BaseAPI implements InvalidateCac
55236
56252
  /**
55237
56253
  * Notification sets up all reports to be computed again with new data.
55238
56254
  * @summary Register an upload notification
55239
- * @param {InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
56255
+ * @param {InvalidateCacheApiRegisterWorkspaceUploadNotificationRequest} requestParameters Request parameters.
55240
56256
  * @param {*} [options] Override http request option.
55241
56257
  * @throws {RequiredError}
55242
56258
  * @memberof InvalidateCacheApi
55243
56259
  */
55244
- registerUploadNotificationWorkspaces(requestParameters: InvalidateCacheApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
56260
+ registerWorkspaceUploadNotification(requestParameters: InvalidateCacheApiRegisterWorkspaceUploadNotificationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
55245
56261
  }
55246
56262
  /**
55247
56263
  * Creates JSON web key - used to verify JSON web tokens (Jwts)
@@ -69583,6 +70599,55 @@ export declare class UsageApi extends BaseAPI implements UsageApiInterface {
69583
70599
  */
69584
70600
  particularPlatformUsage(requestParameters: UsageApiParticularPlatformUsageRequest, options?: AxiosRequestConfig): AxiosPromise<PlatformUsage[]>;
69585
70601
  }
70602
+ /**
70603
+ * Returns a Profile including Organization and Current User Information.
70604
+ * @summary Get Profile
70605
+ * @param {*} [options] Override http request option.
70606
+ * @param {Configuration} [configuration] Optional configuration.
70607
+ * @throws {RequiredError}
70608
+ */
70609
+ export declare function UserAuthorizationApiAxiosParamCreator_GetProfile(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
70610
+ /**
70611
+ * Returns a Profile including Organization and Current User Information.
70612
+ * @summary Get Profile
70613
+ * @param {AxiosInstance} axios Axios instance.
70614
+ * @param {string} basePath Base path.
70615
+ * @param {*} [options] Override http request option.
70616
+ * @param {Configuration} [configuration] Optional configuration.
70617
+ * @throws {RequiredError}
70618
+ */
70619
+ export declare function UserAuthorizationApi_GetProfile(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<Profile>;
70620
+ /**
70621
+ * UserAuthorizationApi - interface
70622
+ * @export
70623
+ * @interface UserAuthorizationApi
70624
+ */
70625
+ export interface UserAuthorizationApiInterface {
70626
+ /**
70627
+ * Returns a Profile including Organization and Current User Information.
70628
+ * @summary Get Profile
70629
+ * @param {*} [options] Override http request option.
70630
+ * @throws {RequiredError}
70631
+ * @memberof UserAuthorizationApiInterface
70632
+ */
70633
+ getProfile(options?: AxiosRequestConfig): AxiosPromise<Profile>;
70634
+ }
70635
+ /**
70636
+ * UserAuthorizationApi - object-oriented interface
70637
+ * @export
70638
+ * @class UserAuthorizationApi
70639
+ * @extends {BaseAPI}
70640
+ */
70641
+ export declare class UserAuthorizationApi extends BaseAPI implements UserAuthorizationApiInterface {
70642
+ /**
70643
+ * Returns a Profile including Organization and Current User Information.
70644
+ * @summary Get Profile
70645
+ * @param {*} [options] Override http request option.
70646
+ * @throws {RequiredError}
70647
+ * @memberof UserAuthorizationApi
70648
+ */
70649
+ getProfile(options?: AxiosRequestConfig): AxiosPromise<Profile>;
70650
+ }
69586
70651
  /**
69587
70652
  * User - represents entity interacting with platform
69588
70653
  * @summary Post User entities
@@ -73181,6 +74246,16 @@ export declare class UserSettingControllerApi extends BaseAPI implements UserSet
73181
74246
  */
73182
74247
  updateEntityUserSettings(requestParameters: UserSettingControllerApiUpdateEntityUserSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiUserSettingOutDocument>;
73183
74248
  }
74249
+ /**
74250
+ *
74251
+ * @summary Post a new custom application setting for the user
74252
+ * @param {string} userId
74253
+ * @param {JsonApiCustomUserApplicationSettingPostOptionalIdDocument} jsonApiCustomUserApplicationSettingPostOptionalIdDocument
74254
+ * @param {*} [options] Override http request option.
74255
+ * @param {Configuration} [configuration] Optional configuration.
74256
+ * @throws {RequiredError}
74257
+ */
74258
+ export declare function UserSettingsApiAxiosParamCreator_CreateEntityCustomUserApplicationSettings(userId: string, jsonApiCustomUserApplicationSettingPostOptionalIdDocument: JsonApiCustomUserApplicationSettingPostOptionalIdDocument, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
73184
74259
  /**
73185
74260
  *
73186
74261
  * @summary Post new user settings for the user
@@ -73191,6 +74266,16 @@ export declare class UserSettingControllerApi extends BaseAPI implements UserSet
73191
74266
  * @throws {RequiredError}
73192
74267
  */
73193
74268
  export declare function UserSettingsApiAxiosParamCreator_CreateEntityUserSettings(userId: string, jsonApiUserSettingInDocument: JsonApiUserSettingInDocument, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74269
+ /**
74270
+ *
74271
+ * @summary Delete a custom application setting for a user
74272
+ * @param {string} userId
74273
+ * @param {string} id
74274
+ * @param {*} [options] Override http request option.
74275
+ * @param {Configuration} [configuration] Optional configuration.
74276
+ * @throws {RequiredError}
74277
+ */
74278
+ export declare function UserSettingsApiAxiosParamCreator_DeleteEntityCustomUserApplicationSettings(userId: string, id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
73194
74279
  /**
73195
74280
  *
73196
74281
  * @summary Delete a setting for a user
@@ -73201,6 +74286,20 @@ export declare function UserSettingsApiAxiosParamCreator_CreateEntityUserSetting
73201
74286
  * @throws {RequiredError}
73202
74287
  */
73203
74288
  export declare function UserSettingsApiAxiosParamCreator_DeleteEntityUserSettings(userId: string, id: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74289
+ /**
74290
+ *
74291
+ * @summary List all custom application settings for a user
74292
+ * @param {string} userId
74293
+ * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74294
+ * @param {number} [page] Zero-based page index (0..N)
74295
+ * @param {number} [size] The size of the page to be returned
74296
+ * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
74297
+ * @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
74298
+ * @param {*} [options] Override http request option.
74299
+ * @param {Configuration} [configuration] Optional configuration.
74300
+ * @throws {RequiredError}
74301
+ */
74302
+ export declare function UserSettingsApiAxiosParamCreator_GetAllEntitiesCustomUserApplicationSettings(userId: string, filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
73204
74303
  /**
73205
74304
  *
73206
74305
  * @summary List all settings for a user
@@ -73215,6 +74314,17 @@ export declare function UserSettingsApiAxiosParamCreator_DeleteEntityUserSetting
73215
74314
  * @throws {RequiredError}
73216
74315
  */
73217
74316
  export declare function UserSettingsApiAxiosParamCreator_GetAllEntitiesUserSettings(userId: string, filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74317
+ /**
74318
+ *
74319
+ * @summary Get a custom application setting for a user
74320
+ * @param {string} userId
74321
+ * @param {string} id
74322
+ * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74323
+ * @param {*} [options] Override http request option.
74324
+ * @param {Configuration} [configuration] Optional configuration.
74325
+ * @throws {RequiredError}
74326
+ */
74327
+ export declare function UserSettingsApiAxiosParamCreator_GetEntityCustomUserApplicationSettings(userId: string, id: string, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
73218
74328
  /**
73219
74329
  *
73220
74330
  * @summary Get a setting for a user
@@ -73226,6 +74336,18 @@ export declare function UserSettingsApiAxiosParamCreator_GetAllEntitiesUserSetti
73226
74336
  * @throws {RequiredError}
73227
74337
  */
73228
74338
  export declare function UserSettingsApiAxiosParamCreator_GetEntityUserSettings(userId: string, id: string, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74339
+ /**
74340
+ *
74341
+ * @summary Put a custom application setting for the user
74342
+ * @param {string} userId
74343
+ * @param {string} id
74344
+ * @param {JsonApiCustomUserApplicationSettingInDocument} jsonApiCustomUserApplicationSettingInDocument
74345
+ * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74346
+ * @param {*} [options] Override http request option.
74347
+ * @param {Configuration} [configuration] Optional configuration.
74348
+ * @throws {RequiredError}
74349
+ */
74350
+ export declare function UserSettingsApiAxiosParamCreator_UpdateEntityCustomUserApplicationSettings(userId: string, id: string, jsonApiCustomUserApplicationSettingInDocument: JsonApiCustomUserApplicationSettingInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
73229
74351
  /**
73230
74352
  *
73231
74353
  * @summary Put new user settings for the user
@@ -73238,6 +74360,17 @@ export declare function UserSettingsApiAxiosParamCreator_GetEntityUserSettings(u
73238
74360
  * @throws {RequiredError}
73239
74361
  */
73240
74362
  export declare function UserSettingsApiAxiosParamCreator_UpdateEntityUserSettings(userId: string, id: string, jsonApiUserSettingInDocument: JsonApiUserSettingInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74363
+ /**
74364
+ *
74365
+ * @summary Post a new custom application setting for the user
74366
+ * @param {AxiosInstance} axios Axios instance.
74367
+ * @param {string} basePath Base path.
74368
+ * @param {UserSettingsApiCreateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74369
+ * @param {*} [options] Override http request option.
74370
+ * @param {Configuration} [configuration] Optional configuration.
74371
+ * @throws {RequiredError}
74372
+ */
74373
+ export declare function UserSettingsApi_CreateEntityCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: UserSettingsApiCreateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
73241
74374
  /**
73242
74375
  *
73243
74376
  * @summary Post new user settings for the user
@@ -73249,6 +74382,17 @@ export declare function UserSettingsApiAxiosParamCreator_UpdateEntityUserSetting
73249
74382
  * @throws {RequiredError}
73250
74383
  */
73251
74384
  export declare function UserSettingsApi_CreateEntityUserSettings(axios: AxiosInstance, basePath: string, requestParameters: UserSettingsApiCreateEntityUserSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiUserSettingOutDocument>;
74385
+ /**
74386
+ *
74387
+ * @summary Delete a custom application setting for a user
74388
+ * @param {AxiosInstance} axios Axios instance.
74389
+ * @param {string} basePath Base path.
74390
+ * @param {UserSettingsApiDeleteEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74391
+ * @param {*} [options] Override http request option.
74392
+ * @param {Configuration} [configuration] Optional configuration.
74393
+ * @throws {RequiredError}
74394
+ */
74395
+ export declare function UserSettingsApi_DeleteEntityCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: UserSettingsApiDeleteEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
73252
74396
  /**
73253
74397
  *
73254
74398
  * @summary Delete a setting for a user
@@ -73260,6 +74404,17 @@ export declare function UserSettingsApi_CreateEntityUserSettings(axios: AxiosIns
73260
74404
  * @throws {RequiredError}
73261
74405
  */
73262
74406
  export declare function UserSettingsApi_DeleteEntityUserSettings(axios: AxiosInstance, basePath: string, requestParameters: UserSettingsApiDeleteEntityUserSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
74407
+ /**
74408
+ *
74409
+ * @summary List all custom application settings for a user
74410
+ * @param {AxiosInstance} axios Axios instance.
74411
+ * @param {string} basePath Base path.
74412
+ * @param {UserSettingsApiGetAllEntitiesCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74413
+ * @param {*} [options] Override http request option.
74414
+ * @param {Configuration} [configuration] Optional configuration.
74415
+ * @throws {RequiredError}
74416
+ */
74417
+ export declare function UserSettingsApi_GetAllEntitiesCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: UserSettingsApiGetAllEntitiesCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomUserApplicationSettingOutList>;
73263
74418
  /**
73264
74419
  *
73265
74420
  * @summary List all settings for a user
@@ -73271,6 +74426,17 @@ export declare function UserSettingsApi_DeleteEntityUserSettings(axios: AxiosIns
73271
74426
  * @throws {RequiredError}
73272
74427
  */
73273
74428
  export declare function UserSettingsApi_GetAllEntitiesUserSettings(axios: AxiosInstance, basePath: string, requestParameters: UserSettingsApiGetAllEntitiesUserSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiUserSettingOutList>;
74429
+ /**
74430
+ *
74431
+ * @summary Get a custom application setting for a user
74432
+ * @param {AxiosInstance} axios Axios instance.
74433
+ * @param {string} basePath Base path.
74434
+ * @param {UserSettingsApiGetEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74435
+ * @param {*} [options] Override http request option.
74436
+ * @param {Configuration} [configuration] Optional configuration.
74437
+ * @throws {RequiredError}
74438
+ */
74439
+ export declare function UserSettingsApi_GetEntityCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: UserSettingsApiGetEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
73274
74440
  /**
73275
74441
  *
73276
74442
  * @summary Get a setting for a user
@@ -73282,6 +74448,17 @@ export declare function UserSettingsApi_GetAllEntitiesUserSettings(axios: AxiosI
73282
74448
  * @throws {RequiredError}
73283
74449
  */
73284
74450
  export declare function UserSettingsApi_GetEntityUserSettings(axios: AxiosInstance, basePath: string, requestParameters: UserSettingsApiGetEntityUserSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiUserSettingOutDocument>;
74451
+ /**
74452
+ *
74453
+ * @summary Put a custom application setting for the user
74454
+ * @param {AxiosInstance} axios Axios instance.
74455
+ * @param {string} basePath Base path.
74456
+ * @param {UserSettingsApiUpdateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74457
+ * @param {*} [options] Override http request option.
74458
+ * @param {Configuration} [configuration] Optional configuration.
74459
+ * @throws {RequiredError}
74460
+ */
74461
+ export declare function UserSettingsApi_UpdateEntityCustomUserApplicationSettings(axios: AxiosInstance, basePath: string, requestParameters: UserSettingsApiUpdateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
73285
74462
  /**
73286
74463
  *
73287
74464
  * @summary Put new user settings for the user
@@ -73299,6 +74476,15 @@ export declare function UserSettingsApi_UpdateEntityUserSettings(axios: AxiosIns
73299
74476
  * @interface UserSettingsApi
73300
74477
  */
73301
74478
  export interface UserSettingsApiInterface {
74479
+ /**
74480
+ *
74481
+ * @summary Post a new custom application setting for the user
74482
+ * @param {UserSettingsApiCreateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74483
+ * @param {*} [options] Override http request option.
74484
+ * @throws {RequiredError}
74485
+ * @memberof UserSettingsApiInterface
74486
+ */
74487
+ createEntityCustomUserApplicationSettings(requestParameters: UserSettingsApiCreateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
73302
74488
  /**
73303
74489
  *
73304
74490
  * @summary Post new user settings for the user
@@ -73308,6 +74494,15 @@ export interface UserSettingsApiInterface {
73308
74494
  * @memberof UserSettingsApiInterface
73309
74495
  */
73310
74496
  createEntityUserSettings(requestParameters: UserSettingsApiCreateEntityUserSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiUserSettingOutDocument>;
74497
+ /**
74498
+ *
74499
+ * @summary Delete a custom application setting for a user
74500
+ * @param {UserSettingsApiDeleteEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74501
+ * @param {*} [options] Override http request option.
74502
+ * @throws {RequiredError}
74503
+ * @memberof UserSettingsApiInterface
74504
+ */
74505
+ deleteEntityCustomUserApplicationSettings(requestParameters: UserSettingsApiDeleteEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
73311
74506
  /**
73312
74507
  *
73313
74508
  * @summary Delete a setting for a user
@@ -73317,6 +74512,15 @@ export interface UserSettingsApiInterface {
73317
74512
  * @memberof UserSettingsApiInterface
73318
74513
  */
73319
74514
  deleteEntityUserSettings(requestParameters: UserSettingsApiDeleteEntityUserSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
74515
+ /**
74516
+ *
74517
+ * @summary List all custom application settings for a user
74518
+ * @param {UserSettingsApiGetAllEntitiesCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74519
+ * @param {*} [options] Override http request option.
74520
+ * @throws {RequiredError}
74521
+ * @memberof UserSettingsApiInterface
74522
+ */
74523
+ getAllEntitiesCustomUserApplicationSettings(requestParameters: UserSettingsApiGetAllEntitiesCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutList>;
73320
74524
  /**
73321
74525
  *
73322
74526
  * @summary List all settings for a user
@@ -73326,6 +74530,15 @@ export interface UserSettingsApiInterface {
73326
74530
  * @memberof UserSettingsApiInterface
73327
74531
  */
73328
74532
  getAllEntitiesUserSettings(requestParameters: UserSettingsApiGetAllEntitiesUserSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiUserSettingOutList>;
74533
+ /**
74534
+ *
74535
+ * @summary Get a custom application setting for a user
74536
+ * @param {UserSettingsApiGetEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74537
+ * @param {*} [options] Override http request option.
74538
+ * @throws {RequiredError}
74539
+ * @memberof UserSettingsApiInterface
74540
+ */
74541
+ getEntityCustomUserApplicationSettings(requestParameters: UserSettingsApiGetEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
73329
74542
  /**
73330
74543
  *
73331
74544
  * @summary Get a setting for a user
@@ -73335,6 +74548,15 @@ export interface UserSettingsApiInterface {
73335
74548
  * @memberof UserSettingsApiInterface
73336
74549
  */
73337
74550
  getEntityUserSettings(requestParameters: UserSettingsApiGetEntityUserSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiUserSettingOutDocument>;
74551
+ /**
74552
+ *
74553
+ * @summary Put a custom application setting for the user
74554
+ * @param {UserSettingsApiUpdateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74555
+ * @param {*} [options] Override http request option.
74556
+ * @throws {RequiredError}
74557
+ * @memberof UserSettingsApiInterface
74558
+ */
74559
+ updateEntityCustomUserApplicationSettings(requestParameters: UserSettingsApiUpdateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
73338
74560
  /**
73339
74561
  *
73340
74562
  * @summary Put new user settings for the user
@@ -73345,6 +74567,25 @@ export interface UserSettingsApiInterface {
73345
74567
  */
73346
74568
  updateEntityUserSettings(requestParameters: UserSettingsApiUpdateEntityUserSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiUserSettingOutDocument>;
73347
74569
  }
74570
+ /**
74571
+ * Request parameters for createEntityCustomUserApplicationSettings operation in UserSettingsApi.
74572
+ * @export
74573
+ * @interface UserSettingsApiCreateEntityCustomUserApplicationSettingsRequest
74574
+ */
74575
+ export interface UserSettingsApiCreateEntityCustomUserApplicationSettingsRequest {
74576
+ /**
74577
+ *
74578
+ * @type {string}
74579
+ * @memberof UserSettingsApiCreateEntityCustomUserApplicationSettings
74580
+ */
74581
+ readonly userId: string;
74582
+ /**
74583
+ *
74584
+ * @type {JsonApiCustomUserApplicationSettingPostOptionalIdDocument}
74585
+ * @memberof UserSettingsApiCreateEntityCustomUserApplicationSettings
74586
+ */
74587
+ readonly jsonApiCustomUserApplicationSettingPostOptionalIdDocument: JsonApiCustomUserApplicationSettingPostOptionalIdDocument;
74588
+ }
73348
74589
  /**
73349
74590
  * Request parameters for createEntityUserSettings operation in UserSettingsApi.
73350
74591
  * @export
@@ -73364,6 +74605,25 @@ export interface UserSettingsApiCreateEntityUserSettingsRequest {
73364
74605
  */
73365
74606
  readonly jsonApiUserSettingInDocument: JsonApiUserSettingInDocument;
73366
74607
  }
74608
+ /**
74609
+ * Request parameters for deleteEntityCustomUserApplicationSettings operation in UserSettingsApi.
74610
+ * @export
74611
+ * @interface UserSettingsApiDeleteEntityCustomUserApplicationSettingsRequest
74612
+ */
74613
+ export interface UserSettingsApiDeleteEntityCustomUserApplicationSettingsRequest {
74614
+ /**
74615
+ *
74616
+ * @type {string}
74617
+ * @memberof UserSettingsApiDeleteEntityCustomUserApplicationSettings
74618
+ */
74619
+ readonly userId: string;
74620
+ /**
74621
+ *
74622
+ * @type {string}
74623
+ * @memberof UserSettingsApiDeleteEntityCustomUserApplicationSettings
74624
+ */
74625
+ readonly id: string;
74626
+ }
73367
74627
  /**
73368
74628
  * Request parameters for deleteEntityUserSettings operation in UserSettingsApi.
73369
74629
  * @export
@@ -73383,6 +74643,49 @@ export interface UserSettingsApiDeleteEntityUserSettingsRequest {
73383
74643
  */
73384
74644
  readonly id: string;
73385
74645
  }
74646
+ /**
74647
+ * Request parameters for getAllEntitiesCustomUserApplicationSettings operation in UserSettingsApi.
74648
+ * @export
74649
+ * @interface UserSettingsApiGetAllEntitiesCustomUserApplicationSettingsRequest
74650
+ */
74651
+ export interface UserSettingsApiGetAllEntitiesCustomUserApplicationSettingsRequest {
74652
+ /**
74653
+ *
74654
+ * @type {string}
74655
+ * @memberof UserSettingsApiGetAllEntitiesCustomUserApplicationSettings
74656
+ */
74657
+ readonly userId: string;
74658
+ /**
74659
+ * Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74660
+ * @type {string}
74661
+ * @memberof UserSettingsApiGetAllEntitiesCustomUserApplicationSettings
74662
+ */
74663
+ readonly filter?: string;
74664
+ /**
74665
+ * Zero-based page index (0..N)
74666
+ * @type {number}
74667
+ * @memberof UserSettingsApiGetAllEntitiesCustomUserApplicationSettings
74668
+ */
74669
+ readonly page?: number;
74670
+ /**
74671
+ * The size of the page to be returned
74672
+ * @type {number}
74673
+ * @memberof UserSettingsApiGetAllEntitiesCustomUserApplicationSettings
74674
+ */
74675
+ readonly size?: number;
74676
+ /**
74677
+ * Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
74678
+ * @type {Array<string>}
74679
+ * @memberof UserSettingsApiGetAllEntitiesCustomUserApplicationSettings
74680
+ */
74681
+ readonly sort?: Array<string>;
74682
+ /**
74683
+ * Include Meta objects.
74684
+ * @type {Array<'page' | 'all' | 'ALL'>}
74685
+ * @memberof UserSettingsApiGetAllEntitiesCustomUserApplicationSettings
74686
+ */
74687
+ readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
74688
+ }
73386
74689
  /**
73387
74690
  * Request parameters for getAllEntitiesUserSettings operation in UserSettingsApi.
73388
74691
  * @export
@@ -73426,6 +74729,31 @@ export interface UserSettingsApiGetAllEntitiesUserSettingsRequest {
73426
74729
  */
73427
74730
  readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
73428
74731
  }
74732
+ /**
74733
+ * Request parameters for getEntityCustomUserApplicationSettings operation in UserSettingsApi.
74734
+ * @export
74735
+ * @interface UserSettingsApiGetEntityCustomUserApplicationSettingsRequest
74736
+ */
74737
+ export interface UserSettingsApiGetEntityCustomUserApplicationSettingsRequest {
74738
+ /**
74739
+ *
74740
+ * @type {string}
74741
+ * @memberof UserSettingsApiGetEntityCustomUserApplicationSettings
74742
+ */
74743
+ readonly userId: string;
74744
+ /**
74745
+ *
74746
+ * @type {string}
74747
+ * @memberof UserSettingsApiGetEntityCustomUserApplicationSettings
74748
+ */
74749
+ readonly id: string;
74750
+ /**
74751
+ * Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74752
+ * @type {string}
74753
+ * @memberof UserSettingsApiGetEntityCustomUserApplicationSettings
74754
+ */
74755
+ readonly filter?: string;
74756
+ }
73429
74757
  /**
73430
74758
  * Request parameters for getEntityUserSettings operation in UserSettingsApi.
73431
74759
  * @export
@@ -73451,6 +74779,37 @@ export interface UserSettingsApiGetEntityUserSettingsRequest {
73451
74779
  */
73452
74780
  readonly filter?: string;
73453
74781
  }
74782
+ /**
74783
+ * Request parameters for updateEntityCustomUserApplicationSettings operation in UserSettingsApi.
74784
+ * @export
74785
+ * @interface UserSettingsApiUpdateEntityCustomUserApplicationSettingsRequest
74786
+ */
74787
+ export interface UserSettingsApiUpdateEntityCustomUserApplicationSettingsRequest {
74788
+ /**
74789
+ *
74790
+ * @type {string}
74791
+ * @memberof UserSettingsApiUpdateEntityCustomUserApplicationSettings
74792
+ */
74793
+ readonly userId: string;
74794
+ /**
74795
+ *
74796
+ * @type {string}
74797
+ * @memberof UserSettingsApiUpdateEntityCustomUserApplicationSettings
74798
+ */
74799
+ readonly id: string;
74800
+ /**
74801
+ *
74802
+ * @type {JsonApiCustomUserApplicationSettingInDocument}
74803
+ * @memberof UserSettingsApiUpdateEntityCustomUserApplicationSettings
74804
+ */
74805
+ readonly jsonApiCustomUserApplicationSettingInDocument: JsonApiCustomUserApplicationSettingInDocument;
74806
+ /**
74807
+ * Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74808
+ * @type {string}
74809
+ * @memberof UserSettingsApiUpdateEntityCustomUserApplicationSettings
74810
+ */
74811
+ readonly filter?: string;
74812
+ }
73454
74813
  /**
73455
74814
  * Request parameters for updateEntityUserSettings operation in UserSettingsApi.
73456
74815
  * @export
@@ -73489,6 +74848,15 @@ export interface UserSettingsApiUpdateEntityUserSettingsRequest {
73489
74848
  * @extends {BaseAPI}
73490
74849
  */
73491
74850
  export declare class UserSettingsApi extends BaseAPI implements UserSettingsApiInterface {
74851
+ /**
74852
+ *
74853
+ * @summary Post a new custom application setting for the user
74854
+ * @param {UserSettingsApiCreateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74855
+ * @param {*} [options] Override http request option.
74856
+ * @throws {RequiredError}
74857
+ * @memberof UserSettingsApi
74858
+ */
74859
+ createEntityCustomUserApplicationSettings(requestParameters: UserSettingsApiCreateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
73492
74860
  /**
73493
74861
  *
73494
74862
  * @summary Post new user settings for the user
@@ -73498,6 +74866,15 @@ export declare class UserSettingsApi extends BaseAPI implements UserSettingsApiI
73498
74866
  * @memberof UserSettingsApi
73499
74867
  */
73500
74868
  createEntityUserSettings(requestParameters: UserSettingsApiCreateEntityUserSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiUserSettingOutDocument>;
74869
+ /**
74870
+ *
74871
+ * @summary Delete a custom application setting for a user
74872
+ * @param {UserSettingsApiDeleteEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74873
+ * @param {*} [options] Override http request option.
74874
+ * @throws {RequiredError}
74875
+ * @memberof UserSettingsApi
74876
+ */
74877
+ deleteEntityCustomUserApplicationSettings(requestParameters: UserSettingsApiDeleteEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
73501
74878
  /**
73502
74879
  *
73503
74880
  * @summary Delete a setting for a user
@@ -73507,6 +74884,15 @@ export declare class UserSettingsApi extends BaseAPI implements UserSettingsApiI
73507
74884
  * @memberof UserSettingsApi
73508
74885
  */
73509
74886
  deleteEntityUserSettings(requestParameters: UserSettingsApiDeleteEntityUserSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
74887
+ /**
74888
+ *
74889
+ * @summary List all custom application settings for a user
74890
+ * @param {UserSettingsApiGetAllEntitiesCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74891
+ * @param {*} [options] Override http request option.
74892
+ * @throws {RequiredError}
74893
+ * @memberof UserSettingsApi
74894
+ */
74895
+ getAllEntitiesCustomUserApplicationSettings(requestParameters: UserSettingsApiGetAllEntitiesCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutList>;
73510
74896
  /**
73511
74897
  *
73512
74898
  * @summary List all settings for a user
@@ -73516,6 +74902,15 @@ export declare class UserSettingsApi extends BaseAPI implements UserSettingsApiI
73516
74902
  * @memberof UserSettingsApi
73517
74903
  */
73518
74904
  getAllEntitiesUserSettings(requestParameters: UserSettingsApiGetAllEntitiesUserSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiUserSettingOutList>;
74905
+ /**
74906
+ *
74907
+ * @summary Get a custom application setting for a user
74908
+ * @param {UserSettingsApiGetEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74909
+ * @param {*} [options] Override http request option.
74910
+ * @throws {RequiredError}
74911
+ * @memberof UserSettingsApi
74912
+ */
74913
+ getEntityCustomUserApplicationSettings(requestParameters: UserSettingsApiGetEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
73519
74914
  /**
73520
74915
  *
73521
74916
  * @summary Get a setting for a user
@@ -73525,6 +74920,15 @@ export declare class UserSettingsApi extends BaseAPI implements UserSettingsApiI
73525
74920
  * @memberof UserSettingsApi
73526
74921
  */
73527
74922
  getEntityUserSettings(requestParameters: UserSettingsApiGetEntityUserSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiUserSettingOutDocument>;
74923
+ /**
74924
+ *
74925
+ * @summary Put a custom application setting for the user
74926
+ * @param {UserSettingsApiUpdateEntityCustomUserApplicationSettingsRequest} requestParameters Request parameters.
74927
+ * @param {*} [options] Override http request option.
74928
+ * @throws {RequiredError}
74929
+ * @memberof UserSettingsApi
74930
+ */
74931
+ updateEntityCustomUserApplicationSettings(requestParameters: UserSettingsApiUpdateEntityCustomUserApplicationSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiCustomUserApplicationSettingOutDocument>;
73528
74932
  /**
73529
74933
  *
73530
74934
  * @summary Put new user settings for the user
@@ -74059,13 +75463,13 @@ export declare class UsersEntityAPIsApi extends BaseAPI implements UsersEntityAP
74059
75463
  * @summary Post Visualization Objects
74060
75464
  * @param {string} workspaceId
74061
75465
  * @param {JsonApiVisualizationObjectPostOptionalIdDocument} jsonApiVisualizationObjectPostOptionalIdDocument
74062
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
75466
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74063
75467
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
74064
75468
  * @param {*} [options] Override http request option.
74065
75469
  * @param {Configuration} [configuration] Optional configuration.
74066
75470
  * @throws {RequiredError}
74067
75471
  */
74068
- export declare function VisualizationObjectApiAxiosParamCreator_CreateEntityVisualizationObjects(workspaceId: string, jsonApiVisualizationObjectPostOptionalIdDocument: JsonApiVisualizationObjectPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
75472
+ export declare function VisualizationObjectApiAxiosParamCreator_CreateEntityVisualizationObjects(workspaceId: string, jsonApiVisualizationObjectPostOptionalIdDocument: JsonApiVisualizationObjectPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74069
75473
  /**
74070
75474
  *
74071
75475
  * @summary Delete a Visualization Object
@@ -74082,7 +75486,7 @@ export declare function VisualizationObjectApiAxiosParamCreator_DeleteEntityVisu
74082
75486
  * @param {string} workspaceId
74083
75487
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
74084
75488
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74085
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
75489
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74086
75490
  * @param {number} [page] Zero-based page index (0..N)
74087
75491
  * @param {number} [size] The size of the page to be returned
74088
75492
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -74092,21 +75496,21 @@ export declare function VisualizationObjectApiAxiosParamCreator_DeleteEntityVisu
74092
75496
  * @param {Configuration} [configuration] Optional configuration.
74093
75497
  * @throws {RequiredError}
74094
75498
  */
74095
- export declare function VisualizationObjectApiAxiosParamCreator_GetAllEntitiesVisualizationObjects(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
75499
+ export declare function VisualizationObjectApiAxiosParamCreator_GetAllEntitiesVisualizationObjects(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74096
75500
  /**
74097
75501
  *
74098
75502
  * @summary Get a Visualization Object
74099
75503
  * @param {string} workspaceId
74100
75504
  * @param {string} objectId
74101
75505
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74102
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
75506
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74103
75507
  * @param {boolean} [xGDCVALIDATERELATIONS]
74104
75508
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
74105
75509
  * @param {*} [options] Override http request option.
74106
75510
  * @param {Configuration} [configuration] Optional configuration.
74107
75511
  * @throws {RequiredError}
74108
75512
  */
74109
- export declare function VisualizationObjectApiAxiosParamCreator_GetEntityVisualizationObjects(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
75513
+ export declare function VisualizationObjectApiAxiosParamCreator_GetEntityVisualizationObjects(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74110
75514
  /**
74111
75515
  *
74112
75516
  * @summary Patch a Visualization Object
@@ -74114,12 +75518,12 @@ export declare function VisualizationObjectApiAxiosParamCreator_GetEntityVisuali
74114
75518
  * @param {string} objectId
74115
75519
  * @param {JsonApiVisualizationObjectPatchDocument} jsonApiVisualizationObjectPatchDocument
74116
75520
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74117
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
75521
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74118
75522
  * @param {*} [options] Override http request option.
74119
75523
  * @param {Configuration} [configuration] Optional configuration.
74120
75524
  * @throws {RequiredError}
74121
75525
  */
74122
- export declare function VisualizationObjectApiAxiosParamCreator_PatchEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectPatchDocument: JsonApiVisualizationObjectPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
75526
+ export declare function VisualizationObjectApiAxiosParamCreator_PatchEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectPatchDocument: JsonApiVisualizationObjectPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74123
75527
  /**
74124
75528
  *
74125
75529
  * @summary The search endpoint (beta)
@@ -74139,12 +75543,12 @@ export declare function VisualizationObjectApiAxiosParamCreator_SearchEntitiesVi
74139
75543
  * @param {string} objectId
74140
75544
  * @param {JsonApiVisualizationObjectInDocument} jsonApiVisualizationObjectInDocument
74141
75545
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74142
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
75546
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74143
75547
  * @param {*} [options] Override http request option.
74144
75548
  * @param {Configuration} [configuration] Optional configuration.
74145
75549
  * @throws {RequiredError}
74146
75550
  */
74147
- export declare function VisualizationObjectApiAxiosParamCreator_UpdateEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectInDocument: JsonApiVisualizationObjectInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
75551
+ export declare function VisualizationObjectApiAxiosParamCreator_UpdateEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectInDocument: JsonApiVisualizationObjectInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74148
75552
  /**
74149
75553
  *
74150
75554
  * @summary Post Visualization Objects
@@ -74312,10 +75716,10 @@ export interface VisualizationObjectApiCreateEntityVisualizationObjectsRequest {
74312
75716
  readonly jsonApiVisualizationObjectPostOptionalIdDocument: JsonApiVisualizationObjectPostOptionalIdDocument;
74313
75717
  /**
74314
75718
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74315
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
75719
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
74316
75720
  * @memberof VisualizationObjectApiCreateEntityVisualizationObjects
74317
75721
  */
74318
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
75722
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
74319
75723
  /**
74320
75724
  * Include Meta objects.
74321
75725
  * @type {Array<'origin' | 'all' | 'ALL'>}
@@ -74368,10 +75772,10 @@ export interface VisualizationObjectApiGetAllEntitiesVisualizationObjectsRequest
74368
75772
  readonly filter?: string;
74369
75773
  /**
74370
75774
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74371
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
75775
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
74372
75776
  * @memberof VisualizationObjectApiGetAllEntitiesVisualizationObjects
74373
75777
  */
74374
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
75778
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
74375
75779
  /**
74376
75780
  * Zero-based page index (0..N)
74377
75781
  * @type {number}
@@ -74429,10 +75833,10 @@ export interface VisualizationObjectApiGetEntityVisualizationObjectsRequest {
74429
75833
  readonly filter?: string;
74430
75834
  /**
74431
75835
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74432
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
75836
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
74433
75837
  * @memberof VisualizationObjectApiGetEntityVisualizationObjects
74434
75838
  */
74435
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
75839
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
74436
75840
  /**
74437
75841
  *
74438
75842
  * @type {boolean}
@@ -74478,10 +75882,10 @@ export interface VisualizationObjectApiPatchEntityVisualizationObjectsRequest {
74478
75882
  readonly filter?: string;
74479
75883
  /**
74480
75884
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74481
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
75885
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
74482
75886
  * @memberof VisualizationObjectApiPatchEntityVisualizationObjects
74483
75887
  */
74484
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
75888
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
74485
75889
  }
74486
75890
  /**
74487
75891
  * Request parameters for searchEntitiesVisualizationObjects operation in VisualizationObjectApi.
@@ -74546,10 +75950,10 @@ export interface VisualizationObjectApiUpdateEntityVisualizationObjectsRequest {
74546
75950
  readonly filter?: string;
74547
75951
  /**
74548
75952
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74549
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
75953
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
74550
75954
  * @memberof VisualizationObjectApiUpdateEntityVisualizationObjects
74551
75955
  */
74552
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
75956
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
74553
75957
  }
74554
75958
  /**
74555
75959
  * VisualizationObjectApi - object-oriented interface
@@ -74627,13 +76031,13 @@ export declare class VisualizationObjectApi extends BaseAPI implements Visualiza
74627
76031
  * @summary Post Visualization Objects
74628
76032
  * @param {string} workspaceId
74629
76033
  * @param {JsonApiVisualizationObjectPostOptionalIdDocument} jsonApiVisualizationObjectPostOptionalIdDocument
74630
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
76034
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74631
76035
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
74632
76036
  * @param {*} [options] Override http request option.
74633
76037
  * @param {Configuration} [configuration] Optional configuration.
74634
76038
  * @throws {RequiredError}
74635
76039
  */
74636
- export declare function VisualizationObjectControllerApiAxiosParamCreator_CreateEntityVisualizationObjects(workspaceId: string, jsonApiVisualizationObjectPostOptionalIdDocument: JsonApiVisualizationObjectPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
76040
+ export declare function VisualizationObjectControllerApiAxiosParamCreator_CreateEntityVisualizationObjects(workspaceId: string, jsonApiVisualizationObjectPostOptionalIdDocument: JsonApiVisualizationObjectPostOptionalIdDocument, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74637
76041
  /**
74638
76042
  *
74639
76043
  * @summary Delete a Visualization Object
@@ -74650,7 +76054,7 @@ export declare function VisualizationObjectControllerApiAxiosParamCreator_Delete
74650
76054
  * @param {string} workspaceId
74651
76055
  * @param {'ALL' | 'PARENTS' | 'NATIVE'} [origin]
74652
76056
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74653
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
76057
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74654
76058
  * @param {number} [page] Zero-based page index (0..N)
74655
76059
  * @param {number} [size] The size of the page to be returned
74656
76060
  * @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
@@ -74660,21 +76064,21 @@ export declare function VisualizationObjectControllerApiAxiosParamCreator_Delete
74660
76064
  * @param {Configuration} [configuration] Optional configuration.
74661
76065
  * @throws {RequiredError}
74662
76066
  */
74663
- export declare function VisualizationObjectControllerApiAxiosParamCreator_GetAllEntitiesVisualizationObjects(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
76067
+ export declare function VisualizationObjectControllerApiAxiosParamCreator_GetAllEntitiesVisualizationObjects(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74664
76068
  /**
74665
76069
  *
74666
76070
  * @summary Get a Visualization Object
74667
76071
  * @param {string} workspaceId
74668
76072
  * @param {string} objectId
74669
76073
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74670
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
76074
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74671
76075
  * @param {boolean} [xGDCVALIDATERELATIONS]
74672
76076
  * @param {Array<'origin' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
74673
76077
  * @param {*} [options] Override http request option.
74674
76078
  * @param {Configuration} [configuration] Optional configuration.
74675
76079
  * @throws {RequiredError}
74676
76080
  */
74677
- export declare function VisualizationObjectControllerApiAxiosParamCreator_GetEntityVisualizationObjects(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
76081
+ export declare function VisualizationObjectControllerApiAxiosParamCreator_GetEntityVisualizationObjects(workspaceId: string, objectId: string, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74678
76082
  /**
74679
76083
  *
74680
76084
  * @summary Patch a Visualization Object
@@ -74682,12 +76086,12 @@ export declare function VisualizationObjectControllerApiAxiosParamCreator_GetEnt
74682
76086
  * @param {string} objectId
74683
76087
  * @param {JsonApiVisualizationObjectPatchDocument} jsonApiVisualizationObjectPatchDocument
74684
76088
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74685
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
76089
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74686
76090
  * @param {*} [options] Override http request option.
74687
76091
  * @param {Configuration} [configuration] Optional configuration.
74688
76092
  * @throws {RequiredError}
74689
76093
  */
74690
- export declare function VisualizationObjectControllerApiAxiosParamCreator_PatchEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectPatchDocument: JsonApiVisualizationObjectPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
76094
+ export declare function VisualizationObjectControllerApiAxiosParamCreator_PatchEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectPatchDocument: JsonApiVisualizationObjectPatchDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74691
76095
  /**
74692
76096
  *
74693
76097
  * @summary The search endpoint (beta)
@@ -74707,12 +76111,12 @@ export declare function VisualizationObjectControllerApiAxiosParamCreator_Search
74707
76111
  * @param {string} objectId
74708
76112
  * @param {JsonApiVisualizationObjectInDocument} jsonApiVisualizationObjectInDocument
74709
76113
  * @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title&#x3D;&#x3D;\&#39;Some Title\&#39;;description&#x3D;&#x3D;\&#39;desc\&#39;). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty&#x3D;&#x3D;\&#39;Value 123\&#39;).
74710
- * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
76114
+ * @param {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>} [include] Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74711
76115
  * @param {*} [options] Override http request option.
74712
76116
  * @param {Configuration} [configuration] Optional configuration.
74713
76117
  * @throws {RequiredError}
74714
76118
  */
74715
- export declare function VisualizationObjectControllerApiAxiosParamCreator_UpdateEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectInDocument: JsonApiVisualizationObjectInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
76119
+ export declare function VisualizationObjectControllerApiAxiosParamCreator_UpdateEntityVisualizationObjects(workspaceId: string, objectId: string, jsonApiVisualizationObjectInDocument: JsonApiVisualizationObjectInDocument, filter?: string, include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
74716
76120
  /**
74717
76121
  *
74718
76122
  * @summary Post Visualization Objects
@@ -74880,10 +76284,10 @@ export interface VisualizationObjectControllerApiCreateEntityVisualizationObject
74880
76284
  readonly jsonApiVisualizationObjectPostOptionalIdDocument: JsonApiVisualizationObjectPostOptionalIdDocument;
74881
76285
  /**
74882
76286
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74883
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
76287
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
74884
76288
  * @memberof VisualizationObjectControllerApiCreateEntityVisualizationObjects
74885
76289
  */
74886
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
76290
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
74887
76291
  /**
74888
76292
  * Include Meta objects.
74889
76293
  * @type {Array<'origin' | 'all' | 'ALL'>}
@@ -74936,10 +76340,10 @@ export interface VisualizationObjectControllerApiGetAllEntitiesVisualizationObje
74936
76340
  readonly filter?: string;
74937
76341
  /**
74938
76342
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
74939
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
76343
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
74940
76344
  * @memberof VisualizationObjectControllerApiGetAllEntitiesVisualizationObjects
74941
76345
  */
74942
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
76346
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
74943
76347
  /**
74944
76348
  * Zero-based page index (0..N)
74945
76349
  * @type {number}
@@ -74997,10 +76401,10 @@ export interface VisualizationObjectControllerApiGetEntityVisualizationObjectsRe
74997
76401
  readonly filter?: string;
74998
76402
  /**
74999
76403
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
75000
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
76404
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
75001
76405
  * @memberof VisualizationObjectControllerApiGetEntityVisualizationObjects
75002
76406
  */
75003
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
76407
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
75004
76408
  /**
75005
76409
  *
75006
76410
  * @type {boolean}
@@ -75046,10 +76450,10 @@ export interface VisualizationObjectControllerApiPatchEntityVisualizationObjects
75046
76450
  readonly filter?: string;
75047
76451
  /**
75048
76452
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
75049
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
76453
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
75050
76454
  * @memberof VisualizationObjectControllerApiPatchEntityVisualizationObjects
75051
76455
  */
75052
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
76456
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
75053
76457
  }
75054
76458
  /**
75055
76459
  * Request parameters for searchEntitiesVisualizationObjects operation in VisualizationObjectControllerApi.
@@ -75114,10 +76518,10 @@ export interface VisualizationObjectControllerApiUpdateEntityVisualizationObject
75114
76518
  readonly filter?: string;
75115
76519
  /**
75116
76520
  * Array of included collections or individual relationships. Includes are separated by commas (e.g. include&#x3D;entity1s,entity2s). Collection include represents the inclusion of every relationship between this entity and the given collection. Relationship include represents the inclusion of the particular relationships only. If single parameter \&quot;ALL\&quot; is present, all possible includes are used (include&#x3D;ALL). __WARNING:__ Individual include types (collection, relationship or ALL) cannot be combined together.
75117
- * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
76521
+ * @type {Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>}
75118
76522
  * @memberof VisualizationObjectControllerApiUpdateEntityVisualizationObjects
75119
76523
  */
75120
- readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
76524
+ readonly include?: Array<'userIdentifiers' | 'facts' | 'attributes' | 'labels' | 'metrics' | 'parameters' | 'datasets' | 'createdBy' | 'modifiedBy' | 'certifiedBy' | 'ALL'>;
75121
76525
  }
75122
76526
  /**
75123
76527
  * VisualizationObjectControllerApi - object-oriented interface
@@ -75248,17 +76652,6 @@ export declare function WorkspaceControllerApiAxiosParamCreator_GetEntityWorkspa
75248
76652
  * @throws {RequiredError}
75249
76653
  */
75250
76654
  export declare function WorkspaceControllerApiAxiosParamCreator_PatchEntityWorkspaces(id: string, jsonApiWorkspacePatchDocument: JsonApiWorkspacePatchDocument, filter?: string, include?: Array<'workspaces' | 'parent' | 'ALL'>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
75251
- /**
75252
- * Notification sets up all reports to be computed again with new data.
75253
- * @summary Register an upload notification
75254
- * @param {string} workspaceId
75255
- * @param {Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
75256
- * @param {object} [body] Request body
75257
- * @param {*} [options] Override http request option.
75258
- * @param {Configuration} [configuration] Optional configuration.
75259
- * @throws {RequiredError}
75260
- */
75261
- export declare function WorkspaceControllerApiAxiosParamCreator_RegisterUploadNotificationWorkspaces(workspaceId: string, metaInclude?: Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>, body?: object, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
75262
76655
  /**
75263
76656
  * Space of the shared interest
75264
76657
  * @summary Put Workspace entity
@@ -75326,17 +76719,6 @@ export declare function WorkspaceControllerApi_GetEntityWorkspaces(axios: AxiosI
75326
76719
  * @throws {RequiredError}
75327
76720
  */
75328
76721
  export declare function WorkspaceControllerApi_PatchEntityWorkspaces(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceControllerApiPatchEntityWorkspacesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceOutDocument>;
75329
- /**
75330
- * Notification sets up all reports to be computed again with new data.
75331
- * @summary Register an upload notification
75332
- * @param {AxiosInstance} axios Axios instance.
75333
- * @param {string} basePath Base path.
75334
- * @param {WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
75335
- * @param {*} [options] Override http request option.
75336
- * @param {Configuration} [configuration] Optional configuration.
75337
- * @throws {RequiredError}
75338
- */
75339
- export declare function WorkspaceControllerApi_RegisterUploadNotificationWorkspaces(axios: AxiosInstance, basePath: string, requestParameters: WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<JsonApiWorkspaceOutDocument>;
75340
76722
  /**
75341
76723
  * Space of the shared interest
75342
76724
  * @summary Put Workspace entity
@@ -75399,15 +76781,6 @@ export interface WorkspaceControllerApiInterface {
75399
76781
  * @memberof WorkspaceControllerApiInterface
75400
76782
  */
75401
76783
  patchEntityWorkspaces(requestParameters: WorkspaceControllerApiPatchEntityWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
75402
- /**
75403
- * Notification sets up all reports to be computed again with new data.
75404
- * @summary Register an upload notification
75405
- * @param {WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
75406
- * @param {*} [options] Override http request option.
75407
- * @throws {RequiredError}
75408
- * @memberof WorkspaceControllerApiInterface
75409
- */
75410
- registerUploadNotificationWorkspaces(requestParameters: WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
75411
76784
  /**
75412
76785
  * Space of the shared interest
75413
76786
  * @summary Put Workspace entity
@@ -75561,31 +76934,6 @@ export interface WorkspaceControllerApiPatchEntityWorkspacesRequest {
75561
76934
  */
75562
76935
  readonly include?: Array<'workspaces' | 'parent' | 'ALL'>;
75563
76936
  }
75564
- /**
75565
- * Request parameters for registerUploadNotificationWorkspaces operation in WorkspaceControllerApi.
75566
- * @export
75567
- * @interface WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest
75568
- */
75569
- export interface WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest {
75570
- /**
75571
- *
75572
- * @type {string}
75573
- * @memberof WorkspaceControllerApiRegisterUploadNotificationWorkspaces
75574
- */
75575
- readonly workspaceId: string;
75576
- /**
75577
- * Include Meta objects.
75578
- * @type {Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>}
75579
- * @memberof WorkspaceControllerApiRegisterUploadNotificationWorkspaces
75580
- */
75581
- readonly metaInclude?: Array<'config' | 'permissions' | 'hierarchy' | 'dataModelDatasets' | 'all' | 'ALL'>;
75582
- /**
75583
- * Request body
75584
- * @type {object}
75585
- * @memberof WorkspaceControllerApiRegisterUploadNotificationWorkspaces
75586
- */
75587
- readonly body?: object;
75588
- }
75589
76937
  /**
75590
76938
  * Request parameters for updateEntityWorkspaces operation in WorkspaceControllerApi.
75591
76939
  * @export
@@ -75669,15 +77017,6 @@ export declare class WorkspaceControllerApi extends BaseAPI implements Workspace
75669
77017
  * @memberof WorkspaceControllerApi
75670
77018
  */
75671
77019
  patchEntityWorkspaces(requestParameters: WorkspaceControllerApiPatchEntityWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
75672
- /**
75673
- * Notification sets up all reports to be computed again with new data.
75674
- * @summary Register an upload notification
75675
- * @param {WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest} requestParameters Request parameters.
75676
- * @param {*} [options] Override http request option.
75677
- * @throws {RequiredError}
75678
- * @memberof WorkspaceControllerApi
75679
- */
75680
- registerUploadNotificationWorkspaces(requestParameters: WorkspaceControllerApiRegisterUploadNotificationWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
75681
77020
  /**
75682
77021
  * Space of the shared interest
75683
77022
  * @summary Put Workspace entity