@looker/sdk 24.8.0 → 24.12.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 +14 -0
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +9 -1
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.js.map +1 -1
- package/lib/constants.d.ts +1 -1
- package/lib/constants.js +1 -1
- package/lib/constants.js.map +1 -1
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/methodsInterface.js.map +1 -1
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js.map +1 -1
- package/lib/esm/constants.js +1 -1
- package/lib/esm/constants.js.map +1 -1
- package/package.json +2 -2
package/lib/4.0/models.d.ts
CHANGED
|
@@ -912,6 +912,7 @@ export interface IDialectInfo {
|
|
|
912
912
|
installed?: boolean;
|
|
913
913
|
label?: string | null;
|
|
914
914
|
label_for_database_equivalent?: string | null;
|
|
915
|
+
label_for_schema_equivalent?: string | null;
|
|
915
916
|
name?: string | null;
|
|
916
917
|
supported_options?: IDialectInfoOptions;
|
|
917
918
|
}
|
|
@@ -1048,6 +1049,7 @@ export interface IExternalOauthApplication {
|
|
|
1048
1049
|
name?: string;
|
|
1049
1050
|
client_id?: string;
|
|
1050
1051
|
client_secret?: string;
|
|
1052
|
+
tenant_id?: string | null;
|
|
1051
1053
|
dialect_name?: string | null;
|
|
1052
1054
|
created_at?: Date;
|
|
1053
1055
|
}
|
|
@@ -1226,6 +1228,10 @@ export interface IImportedProject {
|
|
|
1226
1228
|
ref?: string | null;
|
|
1227
1229
|
is_remote?: boolean;
|
|
1228
1230
|
}
|
|
1231
|
+
export interface IInstanceConfig {
|
|
1232
|
+
feature_flags?: IDictionary<boolean>;
|
|
1233
|
+
license_features?: IDictionary<boolean>;
|
|
1234
|
+
}
|
|
1229
1235
|
export interface IIntegration {
|
|
1230
1236
|
can?: IDictionary<boolean>;
|
|
1231
1237
|
id?: string;
|
|
@@ -1319,7 +1325,7 @@ export interface IJsonBiFields {
|
|
|
1319
1325
|
dimensions: IJsonBiField[];
|
|
1320
1326
|
measures: IJsonBiField[];
|
|
1321
1327
|
pivots: IJsonBiField[];
|
|
1322
|
-
table_calculations
|
|
1328
|
+
table_calculations: IJsonBiTableCalc[];
|
|
1323
1329
|
}
|
|
1324
1330
|
export interface IJsonBiMetadata {
|
|
1325
1331
|
big_query_metadata: IJsonBiBigQueryMetadata;
|
|
@@ -3055,6 +3061,7 @@ export interface ISessionConfig {
|
|
|
3055
3061
|
track_session_location?: boolean;
|
|
3056
3062
|
}
|
|
3057
3063
|
export interface ISetting {
|
|
3064
|
+
instance_config?: IInstanceConfig;
|
|
3058
3065
|
extension_framework_enabled?: boolean;
|
|
3059
3066
|
extension_load_url_enabled?: boolean;
|
|
3060
3067
|
marketplace_auto_install_enabled?: boolean;
|
|
@@ -3703,6 +3710,7 @@ export interface IWriteExternalOauthApplication {
|
|
|
3703
3710
|
name?: string;
|
|
3704
3711
|
client_id?: string;
|
|
3705
3712
|
client_secret?: string;
|
|
3713
|
+
tenant_id?: string | null;
|
|
3706
3714
|
dialect_name?: string | null;
|
|
3707
3715
|
}
|
|
3708
3716
|
export interface IWriteFolderBase {
|