@gooddata/api-client-tiger 11.32.0-alpha.4 → 11.32.0-alpha.5

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.
@@ -1,4 +1,4 @@
1
- export declare const LIB_VERSION = "11.32.0-alpha.4";
1
+ export declare const LIB_VERSION = "11.32.0-alpha.5";
2
2
  export declare const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
3
3
  export declare const LIB_NAME = "@gooddata/api-client-tiger";
4
4
  //# sourceMappingURL=__version.d.ts.map
package/esm/__version.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // (C) 2021 GoodData Corporation
2
2
  // DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
3
- export const LIB_VERSION = "11.32.0-alpha.4";
3
+ export const LIB_VERSION = "11.32.0-alpha.5";
4
4
  export const LIB_DESCRIPTION = "API Client for GoodData Cloud and GoodData.CN";
5
5
  export const LIB_NAME = "@gooddata/api-client-tiger";
6
6
  //# sourceMappingURL=__version.js.map
@@ -87981,6 +87981,20 @@ export declare interface ScanSqlResponse {
87981
87981
  'dataPreview'?: Array<Array<string | null>>;
87982
87982
  }
87983
87983
 
87984
+ /**
87985
+ * Structured error, present when the search could not run (e.g. metadata sync in progress). Absent on success.
87986
+ */
87987
+ export declare interface SearchErrorInfo {
87988
+ /**
87989
+ * HTTP-like semantic status (e.g. 503 when the workspace is still syncing).
87990
+ */
87991
+ 'statusCode': number;
87992
+ /**
87993
+ * Stable machine-readable error code. Switch on this for localized client messages.
87994
+ */
87995
+ 'reason': string;
87996
+ }
87997
+
87984
87998
  export declare interface SearchRelationshipObject {
87985
87999
  /**
87986
88000
  * Source workspace ID. If relationship is dashboard->visualization, this is the workspace where the dashboard is located.
@@ -88072,6 +88086,7 @@ export declare interface SearchResult {
88072
88086
  * DEPRECATED: Use top-level reasoning.steps instead. If something is not working properly this field will contain explanation.
88073
88087
  */
88074
88088
  'reasoning': string;
88089
+ 'error'?: SearchErrorInfo;
88075
88090
  }
88076
88091
 
88077
88092
  export declare interface SearchResultObject {
@@ -898,7 +898,7 @@ export interface CompoundMeasureValueFilterCompoundMeasureValueFilter {
898
898
  */
899
899
  export interface CreatePipeTableRequest {
900
900
  /**
901
- * Name of the OLAP table to create. Must match ^[a-z][a-z0-9_]{0,62}$
901
+ * Name of the OLAP table to create. Must match ^[a-z][a-z0-9_-]{0,62}$
902
902
  */
903
903
  'tableName': string;
904
904
  /**
@@ -1050,6 +1050,14 @@ export interface DatabaseInstance {
1050
1050
  * Set of ids of the storage instances this database instance should access.
1051
1051
  */
1052
1052
  'storageIds': Array<string>;
1053
+ /**
1054
+ * Identifier of the data source created in metadata-api.
1055
+ */
1056
+ 'dataSourceId'?: string;
1057
+ /**
1058
+ * Display name of the data source created in metadata-api.
1059
+ */
1060
+ 'dataSourceName'?: string;
1053
1061
  }
1054
1062
  export interface DateAbsoluteFilter {
1055
1063
  'using': string;
@@ -1253,6 +1261,19 @@ export interface ElementsResponse {
1253
1261
  'cacheId'?: string;
1254
1262
  }
1255
1263
  export type ElementsResponseGranularityEnum = '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';
1264
+ /**
1265
+ * Structured error, present when the search could not run (e.g. metadata sync in progress). Absent on success.
1266
+ */
1267
+ export interface ErrorInfo {
1268
+ /**
1269
+ * HTTP-like semantic status (e.g. 503 when the workspace is still syncing).
1270
+ */
1271
+ 'statusCode': number;
1272
+ /**
1273
+ * Stable machine-readable error code. Switch on this for localized client messages.
1274
+ */
1275
+ 'reason': string;
1276
+ }
1256
1277
  /**
1257
1278
  * Links to the execution result.
1258
1279
  */
@@ -2270,6 +2291,14 @@ export interface ProvisionDatabaseInstanceRequest {
2270
2291
  * Set of ids of the storage instances this database instance should access.
2271
2292
  */
2272
2293
  'storageIds': Array<string>;
2294
+ /**
2295
+ * Identifier for the data source created in metadata-api. Defaults to the database name.
2296
+ */
2297
+ 'dataSourceId'?: string;
2298
+ /**
2299
+ * Display name for the data source created in metadata-api. Defaults to the database name.
2300
+ */
2301
+ 'dataSourceName'?: string;
2273
2302
  }
2274
2303
  /**
2275
2304
  * List of quality issues (available when status is COMPLETED)
@@ -2685,6 +2714,7 @@ export interface SearchResult {
2685
2714
  * DEPRECATED: Use top-level reasoning.steps instead. If something is not working properly this field will contain explanation.
2686
2715
  */
2687
2716
  'reasoning': string;
2717
+ 'error'?: ErrorInfo;
2688
2718
  }
2689
2719
  export interface SearchResultObject {
2690
2720
  /**