@looker/sdk 25.18.0 → 26.0.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 +3 -1
- package/lib/4.0/funcs.js +954 -934
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +3 -1
- package/lib/4.0/methods.js +638 -622
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +3 -1
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.d.ts +78 -12
- package/lib/4.0/models.js +6 -1
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +3 -1
- package/lib/4.0/streams.js +638 -622
- 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 +950 -930
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +638 -622
- 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 +5 -0
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +638 -622
- 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
|
+
## [26.0.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v25.20.0...sdk-v26.0.0) (2026-02-02)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* generate SDKs for Looker 26.0 ([#1631](https://github.com/looker-open-source/sdk-codegen/issues/1631)) ([3b36a3c](https://github.com/looker-open-source/sdk-codegen/commit/3b36a3c7f6eb488b72993891b4ed05a99194f61e))
|
|
14
|
+
|
|
15
|
+
## [25.20.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v25.18.0...sdk-v25.20.0) (2025-11-05)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
|
|
20
|
+
* 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))
|
|
21
|
+
|
|
8
22
|
## [25.18.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v25.16.0...sdk-v25.18.0) (2025-10-28)
|
|
9
23
|
|
|
10
24
|
|
package/lib/4.0/funcs.d.ts
CHANGED
|
@@ -138,6 +138,7 @@ export declare const all_dialect_infos: (sdk: IAPIMethods, fields?: string, opti
|
|
|
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
140
|
export declare const update_external_oauth_application: (sdk: IAPIMethods, client_id: string, body: Partial<IWriteExternalOauthApplication>, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IExternalOauthApplication, IError | IValidationError>>;
|
|
141
|
+
export declare const delete_external_oauth_application: (sdk: IAPIMethods, client_id: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<string, IError>>;
|
|
141
142
|
export declare const create_oauth_application_user_state: (sdk: IAPIMethods, body: Partial<ICreateOAuthApplicationUserStateRequest>, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ICreateOAuthApplicationUserStateResponse, IError | IValidationError>>;
|
|
142
143
|
export declare const all_ssh_servers: (sdk: IAPIMethods, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ISshServer[], IError>>;
|
|
143
144
|
export declare const create_ssh_server: (sdk: IAPIMethods, body: Partial<IWriteSshServer>, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ISshServer, IError | IValidationError>>;
|
|
@@ -397,6 +398,8 @@ export declare const user: (sdk: IAPIMethods, user_id: string, fields?: string,
|
|
|
397
398
|
export declare const update_user: (sdk: IAPIMethods, user_id: string, body: Partial<IWriteUser>, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IUser, IError | IValidationError>>;
|
|
398
399
|
export declare const delete_user: (sdk: IAPIMethods, user_id: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<string, IError>>;
|
|
399
400
|
export declare const user_for_credential: (sdk: IAPIMethods, credential_type: string, credential_id: string, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IUser, IError>>;
|
|
401
|
+
export declare const update_service_account: (sdk: IAPIMethods, user_id: string, body: Partial<IWriteServiceAccount>, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IServiceAccount, IError | IValidationError>>;
|
|
402
|
+
export declare const delete_service_account: (sdk: IAPIMethods, user_id: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<string, IError>>;
|
|
400
403
|
export declare const user_credentials_email: (sdk: IAPIMethods, user_id: string, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ICredentialsEmail, IError>>;
|
|
401
404
|
export declare const create_user_credentials_email: (sdk: IAPIMethods, user_id: string, body: Partial<IWriteCredentialsEmail>, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ICredentialsEmail, IError | IValidationError>>;
|
|
402
405
|
export declare const update_user_credentials_email: (sdk: IAPIMethods, user_id: string, body: Partial<IWriteCredentialsEmail>, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ICredentialsEmail, IError | IValidationError>>;
|
|
@@ -435,7 +438,6 @@ export declare const send_user_credentials_email_password_reset: (sdk: IAPIMetho
|
|
|
435
438
|
export declare const wipeout_user_emails: (sdk: IAPIMethods, user_id: string, body: Partial<IUserEmailOnly>, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IUser, IError | IValidationError>>;
|
|
436
439
|
export declare const create_embed_user: (sdk: IAPIMethods, body: Partial<ICreateEmbedUserRequest>, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IUserPublic, IError>>;
|
|
437
440
|
export declare const create_service_account: (sdk: IAPIMethods, body: Partial<IWriteServiceAccount>, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IServiceAccount, IError | IValidationError>>;
|
|
438
|
-
export declare const update_service_account: (sdk: IAPIMethods, user_id: string, body: Partial<IWriteServiceAccount>, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IServiceAccount, IError | IValidationError>>;
|
|
439
441
|
export declare const all_user_attributes: (sdk: IAPIMethods, request: IRequestAllUserAttributes, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IUserAttribute[], IError>>;
|
|
440
442
|
export declare const create_user_attribute: (sdk: IAPIMethods, body: Partial<IWriteUserAttribute>, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IUserAttribute, IError | IValidationError>>;
|
|
441
443
|
export declare const user_attribute: (sdk: IAPIMethods, user_attribute_id: string, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IUserAttribute, IError>>;
|