@looker/sdk 25.0.0 → 25.2.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 +4 -2
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.js +4 -2
- 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 +8 -1
- package/lib/4.0/models.js +1 -0
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.js +4 -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/4.0/funcs.js +4 -2
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +4 -2
- 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 +1 -0
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +4 -2
- 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,20 @@ 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.2.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v25.0.1...sdk-v25.2.0) (2025-02-07)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* generate SDKs for Looker 25.2 ([#1561](https://github.com/looker-open-source/sdk-codegen/issues/1561)) ([8c4ccfa](https://github.com/looker-open-source/sdk-codegen/commit/8c4ccfaf43bacffcfb2b50ddb2f932c48182ff6f))
|
|
14
|
+
|
|
15
|
+
## [25.0.1](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v25.0.0...sdk-v25.0.1) (2025-02-06)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Miscellaneous Chores
|
|
19
|
+
|
|
20
|
+
* **sdk:** Synchronize undefined versions
|
|
21
|
+
|
|
8
22
|
## [25.0.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v24.20.0...sdk-v25.0.0) (2025-01-13)
|
|
9
23
|
|
|
10
24
|
* The `content-validation` endpoint and associated method has a breaking
|
package/lib/4.0/funcs.js
CHANGED
|
@@ -3301,7 +3301,8 @@ var run_query = exports.run_query = function () {
|
|
|
3301
3301
|
path_prefix: request.path_prefix,
|
|
3302
3302
|
rebuild_pdts: request.rebuild_pdts,
|
|
3303
3303
|
server_table_calcs: request.server_table_calcs,
|
|
3304
|
-
source: request.source
|
|
3304
|
+
source: request.source,
|
|
3305
|
+
enable_oauth_error_response: request.enable_oauth_error_response
|
|
3305
3306
|
}, null, options);
|
|
3306
3307
|
});
|
|
3307
3308
|
return function run_query(_x1058, _x1059, _x1060) {
|
|
@@ -3323,7 +3324,8 @@ var run_inline_query = exports.run_inline_query = function () {
|
|
|
3323
3324
|
cache_only: request.cache_only,
|
|
3324
3325
|
path_prefix: request.path_prefix,
|
|
3325
3326
|
rebuild_pdts: request.rebuild_pdts,
|
|
3326
|
-
server_table_calcs: request.server_table_calcs
|
|
3327
|
+
server_table_calcs: request.server_table_calcs,
|
|
3328
|
+
enable_oauth_error_response: request.enable_oauth_error_response
|
|
3327
3329
|
}, request.body, options);
|
|
3328
3330
|
});
|
|
3329
3331
|
return function run_inline_query(_x1061, _x1062, _x1063) {
|