Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: keep all body parameters toggle in API Explorer requests #1245

Merged
merged 36 commits into from
Feb 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
d8c8501
feat: allow sending request body as is in APIX
jkaster Jan 26, 2023
73a078f
WIP keep body checkbox
jkaster Jan 26, 2023
88767ba
WIP keep body checkbox
jkaster Jan 26, 2023
b5c7067
WIP badly broken branch
jkaster Jan 28, 2023
2b6f66d
WIP currently 11 build errors
jkaster Jan 30, 2023
1db4030
WIP currently 10 build errors
jkaster Jan 30, 2023
fc5f145
WIP currently 5 build errors
jkaster Jan 31, 2023
99a74a0
WIP then there were 4
jkaster Jan 31, 2023
4f6798c
WIP now 3
jkaster Jan 31, 2023
b953356
wip: address @looker/redux build errors
josephaxisa Jan 31, 2023
c317aa7
added bin/rebuild script for web stack
jkaster Feb 1, 2023
9ade3cb
added bin/rebuild script for web stack
jkaster Feb 1, 2023
a658ddc
cleaned up some build
jkaster Feb 1, 2023
f5772e1
still stuck on markdown, but moving foward
jkaster Feb 1, 2023
e00d738
update webpack-cli and webpack-dev-server
josephaxisa Feb 1, 2023
c2315da
fix: type issue with MDParagraph
josephaxisa Feb 1, 2023
0e01190
fixing sdk calls tab for keepBody
jkaster Feb 2, 2023
d0626f5
updated ts-node
jkaster Feb 2, 2023
29c13dd
fix build?
bryans99 Feb 2, 2023
7b94d5e
makeTheCall now preserves empty objects
jkaster Feb 4, 2023
ff571d1
Merge remote-tracking branch 'origin/main' into jk/keep_body
jkaster Feb 6, 2023
88d5097
linty fresh
jkaster Feb 6, 2023
a0f8f80
jest updates
jkaster Feb 6, 2023
6b7cf16
update temporal yarn.lock changes
jkaster Feb 14, 2023
b65ee64
Merge remote-tracking branch 'origin/main' into jk/keep_body
jkaster Feb 14, 2023
7b4c305
update temporal yarn.lock changes
jkaster Feb 14, 2023
64de7e5
Updated typescript -> 4.6.3 and added d3-color to babel ownModules
jeremytchang Feb 14, 2023
10e7e1a
lots of dependency updates
jkaster Feb 14, 2023
fdfb788
Merge remote-tracking branch 'origin/jk/keep_body' into jk/keep_body
jkaster Feb 14, 2023
86fadd4
fix `yarn lint` errors
jkaster Feb 15, 2023
ec230d9
fewer test errors
jkaster Feb 16, 2023
c3527a1
fewer test errors
jkaster Feb 16, 2023
360c21e
test:apix should pass now
jkaster Feb 16, 2023
3887b0c
test:sdk should pass now
jkaster Feb 17, 2023
5a0e6f2
yarn dedupe:dev needed again
jkaster Feb 17, 2023
a224710
failConnection -> mockFailConnection fix
jkaster Feb 17, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/codegen-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ jobs:
if: failure()

- name: Run unit tests
# TODO can we use yarn test:gen with the reporters option added to it here?
run: yarn jest "packages/sdk-codegen(|-utils|-scripts)/src" --reporters=default --reporters=jest-junit

- name: Delete looker.ini mock
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/hackathon-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: Hackathon CI
on:
pull_request:
paths:
- packages/wholly-sheet/**
- packages/wholly-artifact/**
- packages/hackathon/**

push:
branches:
- main
paths:
- packages/wholly-sheet/**
- packages/wholly-artifact/**
- packages/hackathon/**

workflow_dispatch:
Expand Down
2 changes: 2 additions & 0 deletions babel.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ const ownModules = [
'@looker/components',
'@looker/icons',
'@looker/design-tokens',
'd3-color',
'uuid',
]

const excludeNodeModulesExceptRegExp = excludeNodeModuleExcept([...ownModules])
Expand Down
11 changes: 6 additions & 5 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,16 @@ module.exports = (api) => {
const ignore = isTest ? [] : ['node_modules', ...testIgnore]

return {
sourceType: 'unambiguous',
env: {
build: {
ignore: [
'**/*.d.ts',
'__snapshots__',
'__tests__',
'**/testUtils',
'**/test-data',
...testIgnore,
// '__tests__',
// '**/testUtils',
// '**/test-data',
// ...testIgnore,
],
},
},
Expand All @@ -71,7 +72,7 @@ module.exports = (api) => {
esmodules: true,
},
useBuiltIns: false,
modules: process.env.BABEL_ENV === 'build_cjs' ? 'auto' : false,
// modules: process.env.BABEL_ENV === 'build_cjs' ? 'auto' : false,
},
],
[
Expand Down
4 changes: 2 additions & 2 deletions bin/looker-resources-index/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"author": "Looker",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.13",
"typescript": "^4.5.4"
"@types/node": "^14.18.36",
"typescript": "4.6.3"
}
}
13 changes: 0 additions & 13 deletions bin/looker-resources-index/yarn.lock

This file was deleted.

9 changes: 9 additions & 0 deletions bin/rebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh
# clear all web stack artifacts and rebuild

cd "$(dirname "$0")"/.. || exit
rm -rf ./**/node_modules
rm yarn.lock
yarn install
yarn build
yarn dedupe:dev
3 changes: 0 additions & 3 deletions examples/access-token-server/.gitignore

This file was deleted.

12 changes: 0 additions & 12 deletions examples/access-token-server/Dockerfile

This file was deleted.

94 changes: 0 additions & 94 deletions examples/access-token-server/README.md

This file was deleted.

2 changes: 0 additions & 2 deletions examples/access-token-server/docker-build.sh

This file was deleted.

3 changes: 0 additions & 3 deletions examples/access-token-server/docker-run.sh

This file was deleted.

3 changes: 0 additions & 3 deletions examples/access-token-server/docker-stop.sh

This file was deleted.

6 changes: 0 additions & 6 deletions examples/access-token-server/jest.config.js

This file was deleted.

43 changes: 0 additions & 43 deletions examples/access-token-server/package.json

This file was deleted.

46 changes: 0 additions & 46 deletions examples/access-token-server/script/create_status_json.ts

This file was deleted.

34 changes: 0 additions & 34 deletions examples/access-token-server/script/encode_credentials.ts

This file was deleted.

Loading