@looker/sdk 25.4.0 → 25.6.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 +7 -0
- package/lib/4.0/funcs.d.ts +3 -1
- package/lib/4.0/funcs.js +430 -407
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +3 -1
- package/lib/4.0/methods.js +287 -268
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +3 -1
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +63 -1
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +3 -1
- package/lib/4.0/streams.js +287 -268
- 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 +425 -402
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +287 -268
- 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 +287 -268
- 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
|
@@ -190,6 +190,46 @@ export declare enum Category {
|
|
|
190
190
|
measure = "measure",
|
|
191
191
|
dimension = "dimension"
|
|
192
192
|
}
|
|
193
|
+
export interface ICIChangeRequest {
|
|
194
|
+
change_request_number?: number | null;
|
|
195
|
+
change_request_url?: string | null;
|
|
196
|
+
change_request_name?: string | null;
|
|
197
|
+
change_request_commits_url?: string | null;
|
|
198
|
+
}
|
|
199
|
+
export interface ICIGitState {
|
|
200
|
+
branch?: string | null;
|
|
201
|
+
repository?: string | null;
|
|
202
|
+
commit_ref?: string | null;
|
|
203
|
+
target?: string | null;
|
|
204
|
+
}
|
|
205
|
+
export interface ICIRun {
|
|
206
|
+
run_id?: string;
|
|
207
|
+
created_at?: Date;
|
|
208
|
+
started_at?: Date | null;
|
|
209
|
+
finished_at?: Date | null;
|
|
210
|
+
status_url?: string;
|
|
211
|
+
status?: string | null;
|
|
212
|
+
git_service?: string | null;
|
|
213
|
+
git_state?: ICIGitState;
|
|
214
|
+
result?: ICIRunResult[] | null;
|
|
215
|
+
schedule?: ICIScheduleTrigger;
|
|
216
|
+
target_branch?: string | null;
|
|
217
|
+
title?: string | null;
|
|
218
|
+
trigger?: string | null;
|
|
219
|
+
change_request?: ICIChangeRequest;
|
|
220
|
+
suite_id?: string;
|
|
221
|
+
username?: string | null;
|
|
222
|
+
}
|
|
223
|
+
export interface ICIRunResult {
|
|
224
|
+
status?: string;
|
|
225
|
+
validator?: string;
|
|
226
|
+
}
|
|
227
|
+
export interface ICIScheduleTrigger {
|
|
228
|
+
enabled?: boolean;
|
|
229
|
+
day?: string;
|
|
230
|
+
hour?: string;
|
|
231
|
+
frequency?: string | null;
|
|
232
|
+
}
|
|
193
233
|
export interface IColorCollection {
|
|
194
234
|
id?: string;
|
|
195
235
|
label?: string;
|
|
@@ -424,6 +464,18 @@ export interface ICostEstimate {
|
|
|
424
464
|
cost_unit?: string;
|
|
425
465
|
message?: string;
|
|
426
466
|
}
|
|
467
|
+
export interface ICreateCIRunRequest {
|
|
468
|
+
suite_id?: string;
|
|
469
|
+
branch?: string | null;
|
|
470
|
+
target?: string;
|
|
471
|
+
commit?: string | null;
|
|
472
|
+
user_attributes?: string[] | null;
|
|
473
|
+
webhooks?: string[] | null;
|
|
474
|
+
}
|
|
475
|
+
export interface ICreateCIRunResponse {
|
|
476
|
+
run_id?: string;
|
|
477
|
+
status?: string;
|
|
478
|
+
}
|
|
427
479
|
export interface ICreateCostEstimate {
|
|
428
480
|
sql?: string;
|
|
429
481
|
}
|
|
@@ -827,6 +879,7 @@ export interface IDBConnection {
|
|
|
827
879
|
username?: string | null;
|
|
828
880
|
password?: string | null;
|
|
829
881
|
uses_oauth?: boolean;
|
|
882
|
+
uses_key_pair_auth?: boolean;
|
|
830
883
|
uses_instance_oauth?: boolean;
|
|
831
884
|
certificate?: string | null;
|
|
832
885
|
file_type?: string | null;
|
|
@@ -954,6 +1007,10 @@ export interface IDialect {
|
|
|
954
1007
|
supports_persistent_derived_tables?: boolean;
|
|
955
1008
|
has_ssl_support?: boolean;
|
|
956
1009
|
}
|
|
1010
|
+
export interface IDialectDriverVersion {
|
|
1011
|
+
name?: string | null;
|
|
1012
|
+
display_name?: string | null;
|
|
1013
|
+
}
|
|
957
1014
|
export interface IDialectInfo {
|
|
958
1015
|
can?: IDictionary<boolean>;
|
|
959
1016
|
default_max_connections?: string | null;
|
|
@@ -964,7 +1021,7 @@ export interface IDialectInfo {
|
|
|
964
1021
|
label_for_schema_equivalent?: string | null;
|
|
965
1022
|
name?: string | null;
|
|
966
1023
|
supported_driver_name?: string | null;
|
|
967
|
-
supported_driver_versions?:
|
|
1024
|
+
supported_driver_versions?: IDialectDriverVersion[] | null;
|
|
968
1025
|
supported_options?: IDialectInfoOptions;
|
|
969
1026
|
}
|
|
970
1027
|
export interface IDialectInfoOptions {
|
|
@@ -2098,6 +2155,9 @@ export interface IProject {
|
|
|
2098
2155
|
is_example?: boolean;
|
|
2099
2156
|
dependency_status?: string | null;
|
|
2100
2157
|
}
|
|
2158
|
+
export interface IProjectCIRun {
|
|
2159
|
+
run?: ICIRun;
|
|
2160
|
+
}
|
|
2101
2161
|
export interface IProjectError {
|
|
2102
2162
|
code?: string | null;
|
|
2103
2163
|
severity?: string | null;
|
|
@@ -2242,6 +2302,7 @@ export interface IReport {
|
|
|
2242
2302
|
last_accessed_at?: Date | null;
|
|
2243
2303
|
deleter_user_id?: string | null;
|
|
2244
2304
|
deleter_user_name?: string | null;
|
|
2305
|
+
schedule_count?: number | null;
|
|
2245
2306
|
}
|
|
2246
2307
|
export interface IRepositoryCredential {
|
|
2247
2308
|
can?: IDictionary<boolean>;
|
|
@@ -3777,6 +3838,7 @@ export interface IWriteDBConnection {
|
|
|
3777
3838
|
port?: string | null;
|
|
3778
3839
|
username?: string | null;
|
|
3779
3840
|
password?: string | null;
|
|
3841
|
+
uses_key_pair_auth?: boolean;
|
|
3780
3842
|
certificate?: string | null;
|
|
3781
3843
|
file_type?: string | null;
|
|
3782
3844
|
database?: string | null;
|