@looker/sdk 25.18.0 → 25.20.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.js +2 -1
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.js +2 -1
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/models.d.ts +45 -12
- package/lib/4.0/models.js +6 -1
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.js +2 -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 +2 -1
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +2 -1
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/models.js +5 -0
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +2 -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
|
+
## [25.20.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v25.18.0...sdk-v25.20.0) (2025-11-05)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* generate SDKs for Looker 25.20 ([#1612](https://github.com/looker-open-source/sdk-codegen/issues/1612)) ([89c707d](https://github.com/looker-open-source/sdk-codegen/commit/89c707da1c5aeac8df305f5460618f31f524f722))
|
|
14
|
+
|
|
8
15
|
## [25.18.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v25.16.0...sdk-v25.18.0) (2025-10-28)
|
|
9
16
|
|
|
10
17
|
|
package/lib/4.0/funcs.js
CHANGED
|
@@ -2746,7 +2746,8 @@ var all_lookml_models = exports.all_lookml_models = function () {
|
|
|
2746
2746
|
offset: request.offset,
|
|
2747
2747
|
exclude_empty: request.exclude_empty,
|
|
2748
2748
|
exclude_hidden: request.exclude_hidden,
|
|
2749
|
-
include_internal: request.include_internal
|
|
2749
|
+
include_internal: request.include_internal,
|
|
2750
|
+
include_self_service: request.include_self_service
|
|
2750
2751
|
}, null, options);
|
|
2751
2752
|
});
|
|
2752
2753
|
return function all_lookml_models(_x876, _x877, _x878) {
|