@looker/sdk 21.16.0 → 21.18.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 +8 -1
- package/lib/3.1/models.d.ts +5 -0
- package/lib/3.1/models.js.map +1 -1
- package/lib/4.0/funcs.d.ts +2 -2
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +2 -2
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +2 -2
- package/lib/4.0/models.d.ts +35 -21
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +2 -2
- 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/3.1/models.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/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/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
|
+
## [21.18.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-v21.16.0...sdk-v21.18.0) (2021-10-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* Looker 21.18 bindings ([#865](https://www.github.com/looker-open-source/sdk-codegen/issues/865)) ([fa98888](https://www.github.com/looker-open-source/sdk-codegen/commit/fa988886c2d88290044d2818de7f549ca28b49bc))
|
|
14
|
+
|
|
8
15
|
## [21.16.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-v21.14.0...sdk-v21.16.0) (2021-10-19)
|
|
9
16
|
|
|
10
17
|
|
|
@@ -243,4 +250,4 @@ See the [README](README.md#streaming-api-responses) for more information.
|
|
|
243
250
|
|
|
244
251
|
### Added
|
|
245
252
|
|
|
246
|
-
- [Looker 7.16 bindings](https://github.com/looker-open-source/sdk-codegen/pull/348)
|
|
253
|
+
- [Looker 7.16 bindings](https://github.com/looker-open-source/sdk-codegen/pull/348)
|
package/lib/3.1/models.d.ts
CHANGED
|
@@ -373,6 +373,10 @@ export interface IDashboard {
|
|
|
373
373
|
filters_bar_collapsed?: boolean;
|
|
374
374
|
last_accessed_at?: Date;
|
|
375
375
|
last_viewed_at?: Date;
|
|
376
|
+
updated_at?: Date;
|
|
377
|
+
last_updater_id?: number;
|
|
378
|
+
last_updater_name?: string;
|
|
379
|
+
user_name?: string;
|
|
376
380
|
load_configuration?: string;
|
|
377
381
|
lookml_link_id?: string;
|
|
378
382
|
show_filters_bar?: boolean;
|
|
@@ -1652,6 +1656,7 @@ export interface IRenderTask {
|
|
|
1652
1656
|
look_id?: number;
|
|
1653
1657
|
lookml_dashboard_id?: string;
|
|
1654
1658
|
query_id?: number;
|
|
1659
|
+
dashboard_element_id?: string;
|
|
1655
1660
|
query_runtime?: number;
|
|
1656
1661
|
render_runtime?: number;
|
|
1657
1662
|
result_format?: string;
|