@looker/sdk 24.18.1 → 24.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.d.ts +1 -1
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +1 -1
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +1 -1
- package/lib/4.0/methodsInterface.js.map +1 -1
- package/lib/4.0/models.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.map +1 -1
- 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/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
|
+
## [24.20.0](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v24.18.1...sdk-v24.20.0) (2024-11-07)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* generate SDKs for Looker 24_20 ([#1537](https://github.com/looker-open-source/sdk-codegen/issues/1537)) ([7544a37](https://github.com/looker-open-source/sdk-codegen/commit/7544a37694d3b64d49116bf69d5e5c5c8dd5db19))
|
|
14
|
+
|
|
8
15
|
## [24.18.1](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v24.18.0...sdk-v24.18.1) (2024-10-21)
|
|
9
16
|
|
|
10
17
|
|
package/lib/4.0/funcs.d.ts
CHANGED
|
@@ -421,7 +421,7 @@ export declare const delete_user_session: (sdk: IAPIMethods, user_id: string, se
|
|
|
421
421
|
export declare const all_user_sessions: (sdk: IAPIMethods, user_id: string, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ISession[], IError>>;
|
|
422
422
|
export declare const create_user_credentials_email_password_reset: (sdk: IAPIMethods, request: IRequestCreateUserCredentialsEmailPasswordReset, options?: Partial<ITransportSettings>) => Promise<SDKResponse<ICredentialsEmail, IError>>;
|
|
423
423
|
export declare const user_roles: (sdk: IAPIMethods, request: IRequestUserRoles, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IRole[], IError>>;
|
|
424
|
-
export declare const set_user_roles: (sdk: IAPIMethods, user_id: string, body: Partial<string[]>, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IRole[], IError>>;
|
|
424
|
+
export declare const set_user_roles: (sdk: IAPIMethods, user_id: string, body: Partial<string[]>, fields?: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IRole[], IError | IValidationError>>;
|
|
425
425
|
export declare const user_attribute_user_values: (sdk: IAPIMethods, request: IRequestUserAttributeUserValues, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IUserAttributeWithValue[], IError>>;
|
|
426
426
|
export declare const set_user_attribute_user_value: (sdk: IAPIMethods, user_id: string, user_attribute_id: string, body: Partial<IWriteUserAttributeWithValue>, options?: Partial<ITransportSettings>) => Promise<SDKResponse<IUserAttributeWithValue, IError | IValidationError>>;
|
|
427
427
|
export declare const delete_user_attribute_user_value: (sdk: IAPIMethods, user_id: string, user_attribute_id: string, options?: Partial<ITransportSettings>) => Promise<SDKResponse<void, IError>>;
|