@looker/api-explorer 0.9.40 → 0.9.42
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 +39 -1
- package/dist/bundle.js +1 -1
- package/dist/bundle.js.map +1 -1
- package/lib/esm/state/specs/sagas.js +1 -1
- package/lib/esm/state/specs/sagas.js.map +1 -1
- package/lib/esm/utils/adaptorUtils.js.map +1 -1
- package/lib/esm/utils/path.js +2 -1
- package/lib/esm/utils/path.js.map +1 -1
- package/lib/state/specs/sagas.js +1 -1
- package/lib/state/specs/sagas.js.map +1 -1
- package/lib/utils/adaptorUtils.js.map +1 -1
- package/lib/utils/path.js +2 -1
- package/lib/utils/path.js.map +1 -1
- package/package.json +11 -11
- package/src/state/specs/sagas.ts +2 -1
- package/src/utils/adaptorUtils.ts +1 -1
- package/src/utils/path.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,44 @@ 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
|
+
### [0.9.42](https://www.github.com/looker-open-source/sdk-codegen/compare/api-explorer-v0.9.41...api-explorer-v0.9.42) (2022-12-09)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @looker/code-editor bumped from ^0.1.26 to ^0.1.27
|
|
16
|
+
* @looker/extension-utils bumped from ^0.1.18 to ^0.1.19
|
|
17
|
+
* @looker/run-it bumped from ^0.9.41 to ^0.9.42
|
|
18
|
+
* @looker/sdk bumped from ^22.20.0 to ^22.20.1
|
|
19
|
+
* @looker/sdk-codegen bumped from ^21.7.3 to ^21.7.4
|
|
20
|
+
* @looker/sdk-rtl bumped from ^21.4.0 to ^21.5.0
|
|
21
|
+
* devDependencies
|
|
22
|
+
* @looker/sdk-codegen-scripts bumped from ^21.4.7 to ^21.4.8
|
|
23
|
+
* @looker/sdk-node bumped from ^22.20.0 to ^22.20.1
|
|
24
|
+
|
|
25
|
+
### [0.9.41](https://www.github.com/looker-open-source/sdk-codegen/compare/api-explorer-v0.9.40...api-explorer-v0.9.41) (2022-11-10)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* oauth support in APIX when embedded in another app ([#1198](https://www.github.com/looker-open-source/sdk-codegen/issues/1198)) ([c464d2f](https://www.github.com/looker-open-source/sdk-codegen/commit/c464d2f24c7f8e7d282208efd00feaaba216fe3e))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Dependencies
|
|
34
|
+
|
|
35
|
+
* The following workspace dependencies were updated
|
|
36
|
+
* dependencies
|
|
37
|
+
* @looker/code-editor bumped from ^0.1.25 to ^0.1.26
|
|
38
|
+
* @looker/extension-utils bumped from ^0.1.17 to ^0.1.18
|
|
39
|
+
* @looker/run-it bumped from ^0.9.40 to ^0.9.41
|
|
40
|
+
* @looker/sdk bumped from ^22.18.0 to ^22.20.0
|
|
41
|
+
* @looker/sdk-codegen bumped from ^21.7.2 to ^21.7.3
|
|
42
|
+
* devDependencies
|
|
43
|
+
* @looker/sdk-codegen-scripts bumped from ^21.4.6 to ^21.4.7
|
|
44
|
+
* @looker/sdk-node bumped from ^22.18.0 to ^22.20.0
|
|
45
|
+
|
|
8
46
|
### [0.9.40](https://www.github.com/looker-open-source/sdk-codegen/compare/api-explorer-v0.9.39...api-explorer-v0.9.40) (2022-10-17)
|
|
9
47
|
|
|
10
48
|
|
|
@@ -822,4 +860,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
822
860
|
- Response types now have nested types correctly documented
|
|
823
861
|
- The response type processing functions now have arguments for the number of levels to expand nested types
|
|
824
862
|
- API explorer's default expansion depth is one level deep
|
|
825
|
-
- Added [`ExploreType`](src/components/ExploreType/ExploreType.tsx) and [`ExploreProperty`](src/components/ExploreType/ExploreProperty.tsx) components used to display responses and explore the type on the type page
|
|
863
|
+
- Added [`ExploreType`](src/components/ExploreType/ExploreType.tsx) and [`ExploreProperty`](src/components/ExploreType/ExploreProperty.tsx) components used to display responses and explore the type on the type page
|