@gooddata/api-client-tiger 11.52.0-alpha.6 → 11.52.0-alpha.7
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.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +165 -133
- package/esm/generated/afm-rest-api/api.d.ts +176 -152
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +20 -20
- package/esm/generated/auth-json-api/api.d.ts +0 -511
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +0 -650
- package/esm/generated/automation-json-api/api.d.ts +31 -23
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.d.ts +17 -3
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +121 -51
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +120 -2
- package/esm/generated/result-json-api/base.d.ts.map +1 -1
- package/esm/generated/result-json-api/base.js +1 -1
- package/esm/generated/scan-json-api/api.d.ts +1 -1
- package/esm/generated/scan-json-api/api.d.ts.map +1 -1
- package/esm/index.d.ts +4 -4
- package/esm/index.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -419,7 +419,7 @@ export interface AttributeItem {
|
|
|
419
419
|
'showAllValues'?: boolean;
|
|
420
420
|
}
|
|
421
421
|
export interface AutomationAlert {
|
|
422
|
-
'condition':
|
|
422
|
+
'condition': AlertCondition;
|
|
423
423
|
'execution': AlertAfm;
|
|
424
424
|
/**
|
|
425
425
|
* Date granularity for the interval of ONCE_PER_INTERVAL trigger. Supported granularities: DAY, WEEK, MONTH, QUARTER, YEAR.
|
|
@@ -432,10 +432,6 @@ export interface AutomationAlert {
|
|
|
432
432
|
}
|
|
433
433
|
export type AutomationAlertIntervalEnum = 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR';
|
|
434
434
|
export type AutomationAlertTriggerEnum = 'ALWAYS' | 'ONCE' | 'ONCE_PER_INTERVAL';
|
|
435
|
-
/**
|
|
436
|
-
* @type AutomationAlertCondition
|
|
437
|
-
*/
|
|
438
|
-
export type AutomationAlertCondition = AnomalyDetectionWrapper | ComparisonWrapper | RangeWrapper | RelativeWrapper;
|
|
439
435
|
export interface AutomationDashboardTabularExport {
|
|
440
436
|
'requestPayload': DashboardTabularExportRequestV2;
|
|
441
437
|
}
|
|
@@ -727,7 +723,7 @@ export interface CompoundMeasureValueFilterCompoundMeasureValueFilter {
|
|
|
727
723
|
/**
|
|
728
724
|
* List of conditions to apply. Conditions are combined with OR logic. Each condition can be either a comparison (e.g., > 100) or a range (e.g., BETWEEN 10 AND 50). If empty, no filtering is applied and all rows are returned.
|
|
729
725
|
*/
|
|
730
|
-
'conditions'
|
|
726
|
+
'conditions'?: Array<MeasureValueCondition>;
|
|
731
727
|
/**
|
|
732
728
|
* References to the attributes to be used when filtering.
|
|
733
729
|
*/
|
|
@@ -763,6 +759,7 @@ export interface CoverSlideTemplate {
|
|
|
763
759
|
* Calendar backed by custom fiscal calendar tables defined per data source.
|
|
764
760
|
*/
|
|
765
761
|
export interface CustomCalendarDefinition {
|
|
762
|
+
'type': CustomCalendarDefinitionTypeEnum;
|
|
766
763
|
/**
|
|
767
764
|
* Custom fiscal calendar table per data source ID.
|
|
768
765
|
*/
|
|
@@ -770,6 +767,7 @@ export interface CustomCalendarDefinition {
|
|
|
770
767
|
[key: string]: CalendarTableReference;
|
|
771
768
|
};
|
|
772
769
|
}
|
|
770
|
+
export type CustomCalendarDefinitionTypeEnum = 'custom';
|
|
773
771
|
/**
|
|
774
772
|
* Custom label object override.
|
|
775
773
|
*/
|
|
@@ -929,7 +927,7 @@ export interface DashboardMeasureValueFilter {
|
|
|
929
927
|
'dashboardMeasureValueFilter': DashboardMeasureValueFilterDashboardMeasureValueFilter;
|
|
930
928
|
}
|
|
931
929
|
export interface DashboardMeasureValueFilterDashboardMeasureValueFilter {
|
|
932
|
-
'conditions'
|
|
930
|
+
'conditions'?: Array<DashboardCompoundConditionItem>;
|
|
933
931
|
'dimensionality'?: Array<IdentifierRef>;
|
|
934
932
|
'localIdentifier'?: string;
|
|
935
933
|
'measure': IdentifierRef;
|
|
@@ -998,6 +996,7 @@ export interface DashboardTabularExportRequestV2 {
|
|
|
998
996
|
'dashboardTabsParametersOverrides'?: {
|
|
999
997
|
[key: string]: Array<ParameterValue>;
|
|
1000
998
|
};
|
|
999
|
+
'executionSettings'?: ExecutionSettings;
|
|
1001
1000
|
/**
|
|
1002
1001
|
* Filename of downloaded file without extension.
|
|
1003
1002
|
*/
|
|
@@ -1490,7 +1489,7 @@ export type DeclarativeAutomationStateEnum = 'ACTIVE' | 'PAUSED';
|
|
|
1490
1489
|
* A custom fiscal calendar definition.
|
|
1491
1490
|
*/
|
|
1492
1491
|
export interface DeclarativeCalendar {
|
|
1493
|
-
'definition':
|
|
1492
|
+
'definition': CalendarDefinition;
|
|
1494
1493
|
/**
|
|
1495
1494
|
* Calendar description.
|
|
1496
1495
|
*/
|
|
@@ -1504,10 +1503,6 @@ export interface DeclarativeCalendar {
|
|
|
1504
1503
|
*/
|
|
1505
1504
|
'name': string;
|
|
1506
1505
|
}
|
|
1507
|
-
/**
|
|
1508
|
-
* @type DeclarativeCalendarDefinition
|
|
1509
|
-
*/
|
|
1510
|
-
export type DeclarativeCalendarDefinition = CustomCalendarDefinition | FiscalYearCalendarDefinition;
|
|
1511
1506
|
/**
|
|
1512
1507
|
* Color palette and its properties.
|
|
1513
1508
|
*/
|
|
@@ -1645,7 +1640,7 @@ export interface DeclarativeDataSource {
|
|
|
1645
1640
|
* Type of authentication used to connect to the database.
|
|
1646
1641
|
*/
|
|
1647
1642
|
'authenticationType'?: DeclarativeDataSourceAuthenticationTypeEnum | null;
|
|
1648
|
-
'cacheRetention'?:
|
|
1643
|
+
'cacheRetention'?: CacheRetention | null;
|
|
1649
1644
|
/**
|
|
1650
1645
|
* Determines how the results coming from a particular datasource should be cached. - ALWAYS: The results from the datasource should be cached normally (the default). - NEVER: The results from the datasource should never be cached.
|
|
1651
1646
|
*/
|
|
@@ -1709,11 +1704,7 @@ export interface DeclarativeDataSource {
|
|
|
1709
1704
|
export type DeclarativeDataSourceAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'OIDC_PASSTHROUGH';
|
|
1710
1705
|
export type DeclarativeDataSourceCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
1711
1706
|
export type DeclarativeDataSourceDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
1712
|
-
export type DeclarativeDataSourceTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
1713
|
-
/**
|
|
1714
|
-
* @type DeclarativeDataSourceCacheRetention
|
|
1715
|
-
*/
|
|
1716
|
-
export type DeclarativeDataSourceCacheRetention = IndefiniteCacheRetention | ScheduleCacheRetention | ValidityPeriodCacheRetention;
|
|
1707
|
+
export type DeclarativeDataSourceTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
1717
1708
|
export interface DeclarativeDataSourcePermission {
|
|
1718
1709
|
'assignee': AssigneeIdentifier;
|
|
1719
1710
|
/**
|
|
@@ -1866,7 +1857,7 @@ export interface DeclarativeExportDefinition {
|
|
|
1866
1857
|
*/
|
|
1867
1858
|
'modifiedAt'?: string | null;
|
|
1868
1859
|
'modifiedBy'?: DeclarativeUserIdentifier;
|
|
1869
|
-
'requestPayload'?:
|
|
1860
|
+
'requestPayload'?: ExportRequest;
|
|
1870
1861
|
/**
|
|
1871
1862
|
* A list of tags.
|
|
1872
1863
|
*/
|
|
@@ -1890,10 +1881,6 @@ export interface DeclarativeExportDefinitionIdentifier {
|
|
|
1890
1881
|
'type': DeclarativeExportDefinitionIdentifierTypeEnum;
|
|
1891
1882
|
}
|
|
1892
1883
|
export type DeclarativeExportDefinitionIdentifierTypeEnum = 'exportDefinition';
|
|
1893
|
-
/**
|
|
1894
|
-
* @type DeclarativeExportDefinitionRequestPayload
|
|
1895
|
-
*/
|
|
1896
|
-
export type DeclarativeExportDefinitionRequestPayload = TabularExportRequest | VisualExportRequest;
|
|
1897
1884
|
/**
|
|
1898
1885
|
* A declarative form of a particular export template.
|
|
1899
1886
|
*/
|
|
@@ -2318,7 +2305,7 @@ export interface DeclarativeNotificationChannel {
|
|
|
2318
2305
|
* Description of a notification channel.
|
|
2319
2306
|
*/
|
|
2320
2307
|
'description'?: string;
|
|
2321
|
-
'destination'?:
|
|
2308
|
+
'destination'?: NotificationChannelDestination;
|
|
2322
2309
|
'destinationType'?: DeclarativeNotificationChannelDestinationTypeEnum | null;
|
|
2323
2310
|
/**
|
|
2324
2311
|
* Identifier of a notification channel
|
|
@@ -2341,10 +2328,6 @@ export type DeclarativeNotificationChannelAllowedRecipientsEnum = 'CREATOR' | 'I
|
|
|
2341
2328
|
export type DeclarativeNotificationChannelDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
|
|
2342
2329
|
export type DeclarativeNotificationChannelDestinationTypeEnum = 'WEBHOOK' | 'SMTP' | 'DEFAULT_SMTP' | 'IN_PLATFORM';
|
|
2343
2330
|
export type DeclarativeNotificationChannelInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
|
|
2344
|
-
/**
|
|
2345
|
-
* @type DeclarativeNotificationChannelDestination
|
|
2346
|
-
*/
|
|
2347
|
-
export type DeclarativeNotificationChannelDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
2348
2331
|
/**
|
|
2349
2332
|
* A notification channel identifier.
|
|
2350
2333
|
*/
|
|
@@ -2440,7 +2423,7 @@ export interface DeclarativeOrganizationPermission {
|
|
|
2440
2423
|
}
|
|
2441
2424
|
export type DeclarativeOrganizationPermissionNameEnum = 'MANAGE' | 'SELF_CREATE_TOKEN' | 'BASE_UI_ACCESS';
|
|
2442
2425
|
export interface DeclarativeParameter {
|
|
2443
|
-
'content':
|
|
2426
|
+
'content': ParameterDefinition;
|
|
2444
2427
|
/**
|
|
2445
2428
|
* Time of the entity creation.
|
|
2446
2429
|
*/
|
|
@@ -2468,14 +2451,6 @@ export interface DeclarativeParameter {
|
|
|
2468
2451
|
*/
|
|
2469
2452
|
'title': string;
|
|
2470
2453
|
}
|
|
2471
|
-
/**
|
|
2472
|
-
* @type DeclarativeParameterContent
|
|
2473
|
-
*/
|
|
2474
|
-
export type DeclarativeParameterContent = ({
|
|
2475
|
-
type: 'NUMBER';
|
|
2476
|
-
} & NumberParameterDefinition) | ({
|
|
2477
|
-
type: 'STRING';
|
|
2478
|
-
} & StringParameterDefinition);
|
|
2479
2454
|
/**
|
|
2480
2455
|
* A dataset reference.
|
|
2481
2456
|
*/
|
|
@@ -3215,11 +3190,13 @@ export type FilterDefinitionForSimpleMeasure = AttributeFilter | DateFilter;
|
|
|
3215
3190
|
* Algorithmic fiscal calendar derived by shifting the Gregorian year start.
|
|
3216
3191
|
*/
|
|
3217
3192
|
export interface FiscalYearCalendarDefinition {
|
|
3193
|
+
'type': FiscalYearCalendarDefinitionTypeEnum;
|
|
3218
3194
|
/**
|
|
3219
3195
|
* Number of months the fiscal year start is shifted relative to the Gregorian year.
|
|
3220
3196
|
*/
|
|
3221
3197
|
'monthOffset': number;
|
|
3222
3198
|
}
|
|
3199
|
+
export type FiscalYearCalendarDefinitionTypeEnum = 'fiscalYear';
|
|
3223
3200
|
/**
|
|
3224
3201
|
* A request containing all information needed for generation of logical model.
|
|
3225
3202
|
*/
|
|
@@ -3379,7 +3356,7 @@ export interface IdentifierDuplications {
|
|
|
3379
3356
|
}
|
|
3380
3357
|
export type IdentifierDuplicationsTypeEnum = 'analyticalDashboard' | 'attribute' | 'dashboardPlugin' | 'dataset' | 'fact' | 'label' | 'metric' | 'prompt' | 'visualizationObject' | 'filterContext' | 'workspaceDataFilter' | 'workspaceDataFilterSettings';
|
|
3381
3358
|
export interface IdentifierRef {
|
|
3382
|
-
'identifier'
|
|
3359
|
+
'identifier': IdentifierRefIdentifier;
|
|
3383
3360
|
}
|
|
3384
3361
|
export interface IdentifierRefIdentifier {
|
|
3385
3362
|
'id': string;
|
|
@@ -3406,6 +3383,10 @@ export interface ImageExportRequest {
|
|
|
3406
3383
|
* Free-form JSON object
|
|
3407
3384
|
*/
|
|
3408
3385
|
'metadata'?: object | null;
|
|
3386
|
+
/**
|
|
3387
|
+
* Time zone the export should be rendered in, as an IANA identifier (e.g. \'Asia/Kolkata\') or a GMT offset (e.g. \'GMT+01:00\'). When omitted, the workspace time zone setting is used.
|
|
3388
|
+
*/
|
|
3389
|
+
'timezoneId'?: string | null;
|
|
3409
3390
|
/**
|
|
3410
3391
|
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
3411
3392
|
*/
|
|
@@ -5835,7 +5816,7 @@ export interface JsonApiDataSourceIdentifierOutAttributes {
|
|
|
5835
5816
|
'schema': string;
|
|
5836
5817
|
'type': JsonApiDataSourceIdentifierOutAttributesTypeEnum;
|
|
5837
5818
|
}
|
|
5838
|
-
export type JsonApiDataSourceIdentifierOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
5819
|
+
export type JsonApiDataSourceIdentifierOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
5839
5820
|
export interface JsonApiDataSourceIdentifierOutDocument {
|
|
5840
5821
|
'data': JsonApiDataSourceIdentifierOut;
|
|
5841
5822
|
'links'?: ObjectLinks;
|
|
@@ -5957,7 +5938,7 @@ export interface JsonApiDataSourceInAttributes {
|
|
|
5957
5938
|
export type JsonApiDataSourceInAttributesAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'OIDC_PASSTHROUGH';
|
|
5958
5939
|
export type JsonApiDataSourceInAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
5959
5940
|
export type JsonApiDataSourceInAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
5960
|
-
export type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
5941
|
+
export type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
5961
5942
|
/**
|
|
5962
5943
|
* @type JsonApiDataSourceInAttributesCacheRetention
|
|
5963
5944
|
* Determines when the cached results coming from a particular data source expire. When unset, the cache is kept per cacheStrategy and invalidated only explicitly.
|
|
@@ -6044,7 +6025,7 @@ export interface JsonApiDataSourceOutAttributes {
|
|
|
6044
6025
|
export type JsonApiDataSourceOutAttributesAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'OIDC_PASSTHROUGH';
|
|
6045
6026
|
export type JsonApiDataSourceOutAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
6046
6027
|
export type JsonApiDataSourceOutAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
6047
|
-
export type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
6028
|
+
export type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
6048
6029
|
/**
|
|
6049
6030
|
* @type JsonApiDataSourceOutAttributesCacheRetention
|
|
6050
6031
|
* Determines when the cached results coming from a particular data source expire. When unset, the cache is kept per cacheStrategy and invalidated only explicitly.
|
|
@@ -6179,7 +6160,7 @@ export interface JsonApiDataSourcePatchAttributes {
|
|
|
6179
6160
|
export type JsonApiDataSourcePatchAttributesAuthenticationTypeEnum = 'USERNAME_PASSWORD' | 'TOKEN' | 'KEY_PAIR' | 'CLIENT_SECRET' | 'OIDC_PASSTHROUGH';
|
|
6180
6161
|
export type JsonApiDataSourcePatchAttributesCacheStrategyEnum = 'ALWAYS' | 'NEVER';
|
|
6181
6162
|
export type JsonApiDataSourcePatchAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
6182
|
-
export type JsonApiDataSourcePatchAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
6163
|
+
export type JsonApiDataSourcePatchAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
6183
6164
|
/**
|
|
6184
6165
|
* @type JsonApiDataSourcePatchAttributesCacheRetention
|
|
6185
6166
|
* Determines when the cached results coming from a particular data source expire. When unset, the cache is kept per cacheStrategy and invalidated only explicitly.
|
|
@@ -12585,9 +12566,6 @@ export interface LiveFeatures {
|
|
|
12585
12566
|
'context': FeatureFlagsContext;
|
|
12586
12567
|
'configuration': LiveFeatureFlagConfiguration;
|
|
12587
12568
|
}
|
|
12588
|
-
export interface LlmProviderAuth {
|
|
12589
|
-
'type': string;
|
|
12590
|
-
}
|
|
12591
12569
|
export interface LocalIdentifier {
|
|
12592
12570
|
/**
|
|
12593
12571
|
* Metric format.
|
|
@@ -12790,7 +12768,7 @@ export interface Note {
|
|
|
12790
12768
|
}
|
|
12791
12769
|
export type NoteAppliesToEnum = 'SOURCE' | 'TARGET';
|
|
12792
12770
|
export interface Notes {
|
|
12793
|
-
'note'
|
|
12771
|
+
'note': Array<Note>;
|
|
12794
12772
|
}
|
|
12795
12773
|
/**
|
|
12796
12774
|
* @type NotificationChannelDestination
|
|
@@ -13540,6 +13518,10 @@ export interface SlidesExportRequest {
|
|
|
13540
13518
|
* Export template identifier.
|
|
13541
13519
|
*/
|
|
13542
13520
|
'templateId'?: string | null;
|
|
13521
|
+
/**
|
|
13522
|
+
* Time zone the export should be rendered in, as an IANA identifier (e.g. \'Asia/Kolkata\') or a GMT offset (e.g. \'GMT+01:00\'). When omitted, the workspace time zone setting is used.
|
|
13523
|
+
*/
|
|
13524
|
+
'timezoneId'?: string | null;
|
|
13543
13525
|
/**
|
|
13544
13526
|
* List of visualization ids to be exported. Note that only one visualization is currently supported.
|
|
13545
13527
|
*/
|
|
@@ -13699,6 +13681,7 @@ export interface TabularExportRequest {
|
|
|
13699
13681
|
* Execution result identifier.
|
|
13700
13682
|
*/
|
|
13701
13683
|
'executionResult'?: string;
|
|
13684
|
+
'executionSettings'?: ExecutionSettings;
|
|
13702
13685
|
/**
|
|
13703
13686
|
* Pre-executed layers for multi-layer geo visualizations. When provided, this is the canonical source of the exported layers and takes precedence over the top-level executionResult and customOverride, which are ignored. Index 0 is the main layer; each layer carries its own executionResult and customOverride.
|
|
13704
13687
|
*/
|
|
@@ -13979,6 +13962,10 @@ export interface VisualExportRequest {
|
|
|
13979
13962
|
* Metadata definition in free-form JSON format.
|
|
13980
13963
|
*/
|
|
13981
13964
|
'metadata'?: object;
|
|
13965
|
+
/**
|
|
13966
|
+
* Time zone the export should be rendered in, as an IANA identifier (e.g. \'Asia/Kolkata\') or a GMT offset (e.g. \'GMT+01:00\'). When omitted, the workspace time zone setting is used.
|
|
13967
|
+
*/
|
|
13968
|
+
'timezoneId'?: string | null;
|
|
13982
13969
|
}
|
|
13983
13970
|
/**
|
|
13984
13971
|
* Webhook destination for notifications. The property url is required on create and update.
|
|
@@ -14128,7 +14115,7 @@ export interface WorkspaceWidgetSlidesTemplate {
|
|
|
14128
14115
|
}
|
|
14129
14116
|
export type WorkspaceWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
14130
14117
|
export interface Xliff {
|
|
14131
|
-
'file'
|
|
14118
|
+
'file': Array<any>;
|
|
14132
14119
|
'otherAttributes'?: {
|
|
14133
14120
|
[key: string]: string;
|
|
14134
14121
|
};
|
|
@@ -16600,7 +16587,7 @@ export declare function ActionsApiAxiosParamCreator_ListWorkspaceUserGroups(work
|
|
|
16600
16587
|
* @param {string} workspaceId
|
|
16601
16588
|
* @param {number} [page] Zero-based page index (0..N)
|
|
16602
16589
|
* @param {number} [size] The size of the page to be returned.
|
|
16603
|
-
* @param {string} [name] Filter by user name. Note that
|
|
16590
|
+
* @param {string} [name] Filter by user name, email or login (user ID). Note that the filter is case insensitive.
|
|
16604
16591
|
* @param {*} [options] Override http request option.
|
|
16605
16592
|
* @param {Configuration} [configuration] Optional configuration.
|
|
16606
16593
|
* @throws {RequiredError}
|
|
@@ -16848,6 +16835,14 @@ export declare function ActionsApiAxiosParamCreator_SetTranslations(workspaceId:
|
|
|
16848
16835
|
* @throws {RequiredError}
|
|
16849
16836
|
*/
|
|
16850
16837
|
export declare function ActionsApiAxiosParamCreator_SwitchActiveIdentityProvider(switchIdentityProviderRequest: SwitchIdentityProviderRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
16838
|
+
/**
|
|
16839
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
16840
|
+
* @summary Trigger metadata synchronization
|
|
16841
|
+
* @param {*} [options] Override http request option.
|
|
16842
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
16843
|
+
* @throws {RequiredError}
|
|
16844
|
+
*/
|
|
16845
|
+
export declare function ActionsApiAxiosParamCreator_SyncMetadata(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
16851
16846
|
/**
|
|
16852
16847
|
* Returns a list of tags for this workspace
|
|
16853
16848
|
* @summary Get Analytics Catalog Tags
|
|
@@ -17433,6 +17428,16 @@ export declare function ActionsApi_SetTranslations(axios: AxiosInstance, basePat
|
|
|
17433
17428
|
* @throws {RequiredError}
|
|
17434
17429
|
*/
|
|
17435
17430
|
export declare function ActionsApi_SwitchActiveIdentityProvider(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
17431
|
+
/**
|
|
17432
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
17433
|
+
* @summary Trigger metadata synchronization
|
|
17434
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
17435
|
+
* @param {string} basePath Base path.
|
|
17436
|
+
* @param {*} [options] Override http request option.
|
|
17437
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
17438
|
+
* @throws {RequiredError}
|
|
17439
|
+
*/
|
|
17440
|
+
export declare function ActionsApi_SyncMetadata(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
17436
17441
|
/**
|
|
17437
17442
|
* Returns a list of tags for this workspace
|
|
17438
17443
|
* @summary Get Analytics Catalog Tags
|
|
@@ -17948,6 +17953,14 @@ export interface ActionsApiInterface {
|
|
|
17948
17953
|
* @memberof ActionsApiInterface
|
|
17949
17954
|
*/
|
|
17950
17955
|
switchActiveIdentityProvider(requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
17956
|
+
/**
|
|
17957
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
17958
|
+
* @summary Trigger metadata synchronization
|
|
17959
|
+
* @param {*} [options] Override http request option.
|
|
17960
|
+
* @throws {RequiredError}
|
|
17961
|
+
* @memberof ActionsApiInterface
|
|
17962
|
+
*/
|
|
17963
|
+
syncMetadata(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
17951
17964
|
/**
|
|
17952
17965
|
* Returns a list of tags for this workspace
|
|
17953
17966
|
* @summary Get Analytics Catalog Tags
|
|
@@ -18381,7 +18394,7 @@ export interface ActionsApiListWorkspaceUsersRequest {
|
|
|
18381
18394
|
*/
|
|
18382
18395
|
readonly size?: number;
|
|
18383
18396
|
/**
|
|
18384
|
-
* Filter by user name. Note that
|
|
18397
|
+
* Filter by user name, email or login (user ID). Note that the filter is case insensitive.
|
|
18385
18398
|
* @type {string}
|
|
18386
18399
|
* @memberof ActionsApiListWorkspaceUsers
|
|
18387
18400
|
*/
|
|
@@ -19360,6 +19373,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
19360
19373
|
* @memberof ActionsApi
|
|
19361
19374
|
*/
|
|
19362
19375
|
switchActiveIdentityProvider(requestParameters: ActionsApiSwitchActiveIdentityProviderRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
19376
|
+
/**
|
|
19377
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
19378
|
+
* @summary Trigger metadata synchronization
|
|
19379
|
+
* @param {*} [options] Override http request option.
|
|
19380
|
+
* @throws {RequiredError}
|
|
19381
|
+
* @memberof ActionsApi
|
|
19382
|
+
*/
|
|
19383
|
+
syncMetadata(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
19363
19384
|
/**
|
|
19364
19385
|
* Returns a list of tags for this workspace
|
|
19365
19386
|
* @summary Get Analytics Catalog Tags
|
|
@@ -71292,6 +71313,55 @@ export declare class MemoryItemControllerApi extends BaseAPI implements MemoryIt
|
|
|
71292
71313
|
*/
|
|
71293
71314
|
updateEntityMemoryItems(requestParameters: MemoryItemControllerApiUpdateEntityMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiMemoryItemOutDocument>;
|
|
71294
71315
|
}
|
|
71316
|
+
/**
|
|
71317
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
71318
|
+
* @summary Trigger metadata synchronization
|
|
71319
|
+
* @param {*} [options] Override http request option.
|
|
71320
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
71321
|
+
* @throws {RequiredError}
|
|
71322
|
+
*/
|
|
71323
|
+
export declare function MetadataSynchronizationApiAxiosParamCreator_SyncMetadata(options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
71324
|
+
/**
|
|
71325
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
71326
|
+
* @summary Trigger metadata synchronization
|
|
71327
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
71328
|
+
* @param {string} basePath Base path.
|
|
71329
|
+
* @param {*} [options] Override http request option.
|
|
71330
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
71331
|
+
* @throws {RequiredError}
|
|
71332
|
+
*/
|
|
71333
|
+
export declare function MetadataSynchronizationApi_SyncMetadata(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<void>;
|
|
71334
|
+
/**
|
|
71335
|
+
* MetadataSynchronizationApi - interface
|
|
71336
|
+
* @export
|
|
71337
|
+
* @interface MetadataSynchronizationApi
|
|
71338
|
+
*/
|
|
71339
|
+
export interface MetadataSynchronizationApiInterface {
|
|
71340
|
+
/**
|
|
71341
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
71342
|
+
* @summary Trigger metadata synchronization
|
|
71343
|
+
* @param {*} [options] Override http request option.
|
|
71344
|
+
* @throws {RequiredError}
|
|
71345
|
+
* @memberof MetadataSynchronizationApiInterface
|
|
71346
|
+
*/
|
|
71347
|
+
syncMetadata(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
71348
|
+
}
|
|
71349
|
+
/**
|
|
71350
|
+
* MetadataSynchronizationApi - object-oriented interface
|
|
71351
|
+
* @export
|
|
71352
|
+
* @class MetadataSynchronizationApi
|
|
71353
|
+
* @extends {BaseAPI}
|
|
71354
|
+
*/
|
|
71355
|
+
export declare class MetadataSynchronizationApi extends BaseAPI implements MetadataSynchronizationApiInterface {
|
|
71356
|
+
/**
|
|
71357
|
+
* Enqueues an organization-scoped metadata resync, fanning out the organization\'s current metadata to GenAI, GW Forge, and Automations. Requires organization MANAGE permission. Requests are deduplicated while a resync session is pending for the organization.
|
|
71358
|
+
* @summary Trigger metadata synchronization
|
|
71359
|
+
* @param {*} [options] Override http request option.
|
|
71360
|
+
* @throws {RequiredError}
|
|
71361
|
+
* @memberof MetadataSynchronizationApi
|
|
71362
|
+
*/
|
|
71363
|
+
syncMetadata(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
71364
|
+
}
|
|
71295
71365
|
/**
|
|
71296
71366
|
*
|
|
71297
71367
|
* @summary Post Metrics
|
|
@@ -82631,7 +82701,7 @@ export declare function UserManagementApiAxiosParamCreator_ListWorkspaceUserGrou
|
|
|
82631
82701
|
* @param {string} workspaceId
|
|
82632
82702
|
* @param {number} [page] Zero-based page index (0..N)
|
|
82633
82703
|
* @param {number} [size] The size of the page to be returned.
|
|
82634
|
-
* @param {string} [name] Filter by user name. Note that
|
|
82704
|
+
* @param {string} [name] Filter by user name, email or login (user ID). Note that the filter is case insensitive.
|
|
82635
82705
|
* @param {*} [options] Override http request option.
|
|
82636
82706
|
* @param {Configuration} [configuration] Optional configuration.
|
|
82637
82707
|
* @throws {RequiredError}
|
|
@@ -83158,7 +83228,7 @@ export interface UserManagementApiListWorkspaceUsersRequest {
|
|
|
83158
83228
|
*/
|
|
83159
83229
|
readonly size?: number;
|
|
83160
83230
|
/**
|
|
83161
|
-
* Filter by user name. Note that
|
|
83231
|
+
* Filter by user name, email or login (user ID). Note that the filter is case insensitive.
|
|
83162
83232
|
* @type {string}
|
|
83163
83233
|
* @memberof UserManagementApiListWorkspaceUsers
|
|
83164
83234
|
*/
|