@looker/api-explorer 0.9.37 → 0.9.39
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@looker/api-explorer",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.39",
|
|
4
4
|
"description": "Looker API Explorer",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/esm/index.js",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@looker/components-test-utils": "^1.5.26",
|
|
36
|
-
"@looker/sdk-codegen-scripts": "^21.4.
|
|
37
|
-
"@looker/sdk-node": "^22.
|
|
36
|
+
"@looker/sdk-codegen-scripts": "^21.4.5",
|
|
37
|
+
"@looker/sdk-node": "^22.16.0",
|
|
38
38
|
"@styled-icons/styled-icon": "^10.6.3",
|
|
39
39
|
"@testing-library/jest-dom": "^5.11.6",
|
|
40
40
|
"@testing-library/react": "^11.2.2",
|
|
@@ -71,11 +71,11 @@
|
|
|
71
71
|
"@looker/code-editor": "^0.1.24",
|
|
72
72
|
"@looker/components": "^3.0.8",
|
|
73
73
|
"@looker/design-tokens": "^2.7.21",
|
|
74
|
-
"@looker/extension-utils": "^0.1.
|
|
74
|
+
"@looker/extension-utils": "^0.1.16",
|
|
75
75
|
"@looker/icons": "^1.5.3",
|
|
76
76
|
"@looker/redux": "0.0.0",
|
|
77
|
-
"@looker/run-it": "^0.9.
|
|
78
|
-
"@looker/sdk": "^22.
|
|
77
|
+
"@looker/run-it": "^0.9.39",
|
|
78
|
+
"@looker/sdk": "^22.16.0",
|
|
79
79
|
"@looker/sdk-codegen": "^21.7.1",
|
|
80
80
|
"@looker/sdk-rtl": "^21.4.0",
|
|
81
81
|
"@reduxjs/toolkit": "^1.6.2",
|
|
@@ -96,5 +96,5 @@
|
|
|
96
96
|
"ts-jest": "^26.2.0",
|
|
97
97
|
"typed-redux-saga": "^1.3.1"
|
|
98
98
|
},
|
|
99
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "2e6e19e72048e88be93af11e6de5e92cee92fed0"
|
|
100
100
|
}
|
|
@@ -33,7 +33,7 @@ import { DocSummaryStatus } from './DocSummaryStatus'
|
|
|
33
33
|
describe('DocMethodSummaryStatus', () => {
|
|
34
34
|
test.each`
|
|
35
35
|
status | method | expectedLabel | expectedContent
|
|
36
|
-
${'beta'} | ${api40.methods.
|
|
36
|
+
${'beta'} | ${api40.methods.invalidate_tokens} | ${'beta item'} | ${'This beta item is under development and subject to change.'}
|
|
37
37
|
${'stable'} | ${api.methods.login} | ${'stable item'} | ${'This item is considered stable for this API version.'}
|
|
38
38
|
${'deprecated'} | ${api.methods.backup_configuration} | ${'deprecated item'} | ${'This item has been deprecated and will be removed in the future.'}
|
|
39
39
|
`(
|
|
@@ -32,7 +32,7 @@ import { DocStatus } from './DocStatus'
|
|
|
32
32
|
|
|
33
33
|
describe('DocStatus', () => {
|
|
34
34
|
test('it renders a badge with the status and a tooltip on hover', async () => {
|
|
35
|
-
renderWithTheme(<DocStatus method={api40.methods.
|
|
35
|
+
renderWithTheme(<DocStatus method={api40.methods.invalidate_tokens} />)
|
|
36
36
|
const badge = screen.getByText('BETA')
|
|
37
37
|
fireEvent.mouseOver(badge)
|
|
38
38
|
await waitFor(() => {
|