@looker/sdk 26.6.0 → 26.6.1
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 +2 -2
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.js +2 -2
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/streams.js +2 -2
- package/lib/4.0/streams.js.map +1 -1
- package/lib/esm/4.0/funcs.js +2 -2
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +2 -2
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/streams.js +2 -2
- package/lib/esm/4.0/streams.js.map +1 -1
- package/package.json +3 -3
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
|
+
## [26.6.1](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v26.6.0...sdk-v26.6.1) (2026-03-25)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* generate SDKs for Looker 26.6.1 ([#1676](https://github.com/looker-open-source/sdk-codegen/issues/1676)) ([b48b953](https://github.com/looker-open-source/sdk-codegen/commit/b48b953d920463596bb0839cd88fc000c1a4cff3))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
* The following workspace dependencies were updated
|
|
19
|
+
* dependencies
|
|
20
|
+
* @looker/sdk-rtl bumped from 21.6.4 to 21.6.5
|
|
21
|
+
|
|
8
22
|
## [26.6.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v26.4.0...sdk-v26.6.0) (2026-03-20)
|
|
9
23
|
|
|
10
24
|
|
package/lib/4.0/funcs.js
CHANGED
|
@@ -130,10 +130,10 @@ var read_alert_notification = exports.read_alert_notification = function () {
|
|
|
130
130
|
}();
|
|
131
131
|
var login = exports.login = function () {
|
|
132
132
|
var _ref12 = _asyncToGenerator(function* (sdk, request, options) {
|
|
133
|
-
return sdk.post('/login', null, {
|
|
133
|
+
return sdk.post('/login', null, new URLSearchParams({
|
|
134
134
|
client_id: request.client_id,
|
|
135
135
|
client_secret: request.client_secret
|
|
136
|
-
}, options);
|
|
136
|
+
}), options);
|
|
137
137
|
});
|
|
138
138
|
return function login(_x37, _x38, _x39) {
|
|
139
139
|
return _ref12.apply(this, arguments);
|