@looker/sdk 24.4.0 → 24.8.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.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [24.8.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v24.4.0...sdk-v24.8.0) (2024-05-07)
9
+
10
+
11
+ ### Features
12
+
13
+ * generate SDKs for Looker 24.8 ([#1462](https://github.com/looker-open-source/sdk-codegen/issues/1462)) ([79228ad](https://github.com/looker-open-source/sdk-codegen/commit/79228adaff67bde216383801711c8cd7a2464edf))
14
+
8
15
  ## [24.4.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v24.2.1...sdk-v24.4.0) (2024-04-05)
9
16
 
10
17
 
@@ -836,6 +836,7 @@ export interface IDBConnection {
836
836
  always_retry_failed_builds?: boolean | null;
837
837
  cost_estimate_enabled?: boolean | null;
838
838
  pdt_api_control_enabled?: boolean | null;
839
+ connection_pooling?: boolean;
839
840
  }
840
841
  export interface IDBConnectionBase {
841
842
  can?: IDictionary<boolean>;
@@ -936,6 +937,7 @@ export interface IDialectInfoOptions {
936
937
  tns?: boolean;
937
938
  username?: boolean;
938
939
  username_required?: boolean;
940
+ supports_connection_pooling?: boolean;
939
941
  }
940
942
  export interface IDigestEmails {
941
943
  is_enabled?: boolean;
@@ -1317,6 +1319,7 @@ export interface IJsonBiFields {
1317
1319
  dimensions: IJsonBiField[];
1318
1320
  measures: IJsonBiField[];
1319
1321
  pivots: IJsonBiField[];
1322
+ table_calculations?: IJsonBiTableCalc[];
1320
1323
  }
1321
1324
  export interface IJsonBiMetadata {
1322
1325
  big_query_metadata: IJsonBiBigQueryMetadata;
@@ -1335,6 +1338,14 @@ export interface IJsonBiPivots {
1335
1338
  sort_values: IDictionary<string>;
1336
1339
  is_total: boolean;
1337
1340
  }
1341
+ export interface IJsonBiTableCalc {
1342
+ name: string | null;
1343
+ label: string | null;
1344
+ align: string | null;
1345
+ expression: string | null;
1346
+ value_format: string | null;
1347
+ measure: boolean | null;
1348
+ }
1338
1349
  export interface ILDAPConfig {
1339
1350
  can?: IDictionary<boolean>;
1340
1351
  alternate_email_login_allowed?: boolean;
@@ -3668,6 +3679,7 @@ export interface IWriteDBConnection {
3668
3679
  always_retry_failed_builds?: boolean | null;
3669
3680
  cost_estimate_enabled?: boolean | null;
3670
3681
  pdt_api_control_enabled?: boolean | null;
3682
+ connection_pooling?: boolean;
3671
3683
  }
3672
3684
  export interface IWriteDBConnectionOverride {
3673
3685
  context?: string;