@looker/sdk 24.12.0 → 24.14.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.d.ts +1 -0
- package/lib/4.0/funcs.js +902 -893
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +1 -0
- package/lib/4.0/methods.js +601 -594
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +1 -0
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +22 -0
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +1 -0
- package/lib/4.0/streams.js +601 -594
- 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 +900 -891
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +601 -594
- 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 +601 -594
- 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
|
+
## [24.14.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v24.12.1...sdk-v24.14.0) (2024-08-12)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* generate SDKs for Looker 24.14 ([#1490](https://github.com/looker-open-source/sdk-codegen/issues/1490)) ([1d72127](https://github.com/looker-open-source/sdk-codegen/commit/1d72127cebab0d1d9f03acc8281e3b14a16e8437))
|
|
14
|
+
|
|
15
|
+
## [24.12.1](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v24.12.0...sdk-v24.12.1) (2024-07-29)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Miscellaneous Chores
|
|
19
|
+
|
|
20
|
+
* **sdk:** Synchronize undefined versions
|
|
21
|
+
|
|
8
22
|
## [24.12.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v24.10.0...sdk-v24.12.0) (2024-07-15)
|
|
9
23
|
|
|
10
24
|
|
package/lib/4.0/funcs.d.ts
CHANGED
|
@@ -137,6 +137,7 @@ export declare const test_connection_config: (sdk: IAPIMethods, body: Partial<IW
|
|
|
137
137
|
export declare const all_dialect_infos: (sdk: IAPIMethods, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IDialectInfo[], IError>>;
|
|
138
138
|
export declare const all_external_oauth_applications: (sdk: IAPIMethods, request: IRequestAllExternalOauthApplications, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IExternalOauthApplication[], IError>>;
|
|
139
139
|
export declare const create_external_oauth_application: (sdk: IAPIMethods, body: Partial<IWriteExternalOauthApplication>, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IExternalOauthApplication, IError | IValidationError>>;
|
|
140
|
+
export declare const update_external_oauth_application: (sdk: IAPIMethods, client_id: string, body: Partial<IWriteExternalOauthApplication>, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IExternalOauthApplication, IError | IValidationError>>;
|
|
140
141
|
export declare const create_oauth_application_user_state: (sdk: IAPIMethods, body: Partial<ICreateOAuthApplicationUserStateRequest>, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ICreateOAuthApplicationUserStateResponse, IError | IValidationError>>;
|
|
141
142
|
export declare const all_ssh_servers: (sdk: IAPIMethods, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ISshServer[], IError>>;
|
|
142
143
|
export declare const create_ssh_server: (sdk: IAPIMethods, body: Partial<IWriteSshServer>, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ISshServer, IError | IValidationError>>;
|