@looker/sdk 21.14.0 → 21.16.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 +20 -0
- package/lib/3.1/funcs.d.ts +2 -2
- package/lib/3.1/funcs.js.map +1 -1
- package/lib/3.1/methods.d.ts +2 -2
- package/lib/3.1/methods.js.map +1 -1
- package/lib/3.1/methodsInterface.d.ts +4 -4
- package/lib/3.1/models.d.ts +2 -0
- package/lib/3.1/models.js.map +1 -1
- package/lib/3.1/streams.d.ts +3 -3
- package/lib/3.1/streams.js.map +1 -1
- package/lib/4.0/funcs.d.ts +7 -5
- package/lib/4.0/funcs.js +1203 -1174
- package/lib/4.0/funcs.js.map +1 -1
- package/lib/4.0/methods.d.ts +7 -5
- package/lib/4.0/methods.js +799 -778
- package/lib/4.0/methods.js.map +1 -1
- package/lib/4.0/methodsInterface.d.ts +9 -7
- package/lib/4.0/models.d.ts +25 -10
- package/lib/4.0/models.js +8 -1
- package/lib/4.0/models.js.map +1 -1
- package/lib/4.0/streams.d.ts +8 -6
- package/lib/4.0/streams.js +799 -778
- 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/3.1/funcs.js.map +1 -1
- package/lib/esm/3.1/methods.js.map +1 -1
- package/lib/esm/3.1/models.js.map +1 -1
- package/lib/esm/3.1/streams.js.map +1 -1
- package/lib/esm/4.0/funcs.js +1191 -1168
- package/lib/esm/4.0/funcs.js.map +1 -1
- package/lib/esm/4.0/methods.js +799 -778
- package/lib/esm/4.0/methods.js.map +1 -1
- package/lib/esm/4.0/models.js +6 -0
- package/lib/esm/4.0/models.js.map +1 -1
- package/lib/esm/4.0/streams.js +799 -778
- 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 +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,26 @@ 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
|
+
## [21.16.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-v21.14.0...sdk-v21.16.0) (2021-10-19)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* 21.16 release ([#859](https://www.github.com/looker-open-source/sdk-codegen/issues/859)) ([0b4385c](https://www.github.com/looker-open-source/sdk-codegen/commit/0b4385c83c5225acf0a9b0c76f9e890600a449af))
|
|
14
|
+
* closest path match for API Explorer ([#811](https://www.github.com/looker-open-source/sdk-codegen/issues/811)) ([45fd26f](https://www.github.com/looker-open-source/sdk-codegen/commit/45fd26fb0f325fa90edfec72f835ed3a79b9afeb))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* intrinsic type params are not Partial<T> ([#819](https://www.github.com/looker-open-source/sdk-codegen/issues/819)) ([4b31490](https://www.github.com/looker-open-source/sdk-codegen/commit/4b31490f7ce5c9593854e56518245c5399ea9548))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Dependencies
|
|
23
|
+
|
|
24
|
+
* The following workspace dependencies were updated
|
|
25
|
+
* dependencies
|
|
26
|
+
* @looker/sdk-rtl bumped from ^21.0.20 to ^21.1.0
|
|
27
|
+
|
|
8
28
|
## [21.14.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-v21.12.0...sdk-v21.14.0) (2021-09-01)
|
|
9
29
|
|
|
10
30
|
|
package/lib/3.1/funcs.d.ts
CHANGED
|
@@ -24,8 +24,8 @@ export declare const update_saml_config: (sdk: IAPIMethods, body: Partial<IWrite
|
|
|
24
24
|
export declare const saml_test_config: (sdk: IAPIMethods, test_slug: string, options?: Partial<ITransportSettings> | undefined) => Promise<SDKResponse<ISamlConfig, IError>>;
|
|
25
25
|
export declare const delete_saml_test_config: (sdk: IAPIMethods, test_slug: string, options?: Partial<ITransportSettings> | undefined) => Promise<SDKResponse<string, IError>>;
|
|
26
26
|
export declare const create_saml_test_config: (sdk: IAPIMethods, body: Partial<IWriteSamlConfig>, options?: Partial<ITransportSettings> | undefined) => Promise<SDKResponse<ISamlConfig, IError | IValidationError>>;
|
|
27
|
-
export declare const parse_saml_idp_metadata: (sdk: IAPIMethods, body:
|
|
28
|
-
export declare const fetch_and_parse_saml_idp_metadata: (sdk: IAPIMethods, body:
|
|
27
|
+
export declare const parse_saml_idp_metadata: (sdk: IAPIMethods, body: string, options?: Partial<ITransportSettings> | undefined) => Promise<SDKResponse<ISamlMetadataParseResult, IError>>;
|
|
28
|
+
export declare const fetch_and_parse_saml_idp_metadata: (sdk: IAPIMethods, body: string, options?: Partial<ITransportSettings> | undefined) => Promise<SDKResponse<ISamlMetadataParseResult, IError>>;
|
|
29
29
|
export declare const session_config: (sdk: IAPIMethods, options?: Partial<ITransportSettings> | undefined) => Promise<SDKResponse<ISessionConfig, IError>>;
|
|
30
30
|
export declare const update_session_config: (sdk: IAPIMethods, body: Partial<IWriteSessionConfig>, options?: Partial<ITransportSettings> | undefined) => Promise<SDKResponse<ISessionConfig, IError | IValidationError>>;
|
|
31
31
|
export declare const all_user_login_lockouts: (sdk: IAPIMethods, fields?: string | undefined, options?: Partial<ITransportSettings> | undefined) => Promise<SDKResponse<IUserLoginLockout[], IError>>;
|