Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
65 commits
Select commit Hold shift + click to select a range
6413cfb
remove gcs from maybeRewriteToDuckDb
lovincyrus Sep 24, 2025
a196cd8
init spec change
lovincyrus Sep 24, 2025
3ca2320
file input for big query
lovincyrus Sep 24, 2025
e01f7c9
working
lovincyrus Sep 24, 2025
d2d3e69
revert and new file input component
lovincyrus Sep 30, 2025
f730f17
swap spec bigquery sequence
lovincyrus Sep 30, 2025
a34deb1
clean up credentials input, restrict to credentials file type
lovincyrus Sep 30, 2025
d785bdc
add input label to credentials input
lovincyrus Sep 30, 2025
bb1ea57
css tweaks
lovincyrus Sep 30, 2025
a734c57
css tweaks
lovincyrus Sep 30, 2025
fc62fef
clean up config properties
lovincyrus Sep 30, 2025
0158ce2
lint
lovincyrus Oct 7, 2025
107b093
lint
lovincyrus Oct 7, 2025
7e43b62
auth method radio
lovincyrus Oct 7, 2025
73ca1fb
prettier
lovincyrus Oct 7, 2025
6332926
rearrange, styles
lovincyrus Oct 7, 2025
e2c7de5
ui tweaks
lovincyrus Oct 7, 2025
6c63268
extract project_id from credentials JSON
lovincyrus Oct 7, 2025
b402450
external link
lovincyrus Oct 7, 2025
2245bf3
custom slot to support nested
lovincyrus Oct 7, 2025
bad00cc
copy and clear credentials on method change
lovincyrus Oct 7, 2025
e70b9b2
hide content when switching option
lovincyrus Oct 7, 2025
5fd1cb7
trash icon to remove uploaded credentials
lovincyrus Oct 7, 2025
dc36998
icon buttno
lovincyrus Oct 7, 2025
11217f3
copy command interaction
lovincyrus Oct 7, 2025
12e67c6
include bigquery as part of form height
lovincyrus Oct 8, 2025
1ec41a9
hide credentials input when inferred is selected
lovincyrus Oct 8, 2025
5166e88
radio style tweaks
lovincyrus Oct 8, 2025
2679086
credentials first
lovincyrus Oct 8, 2025
999b496
refine custom slot for credentials option
lovincyrus Oct 8, 2025
2715f75
style tweaks for code copy block
lovincyrus Oct 8, 2025
5f23a06
style
lovincyrus Oct 9, 2025
c9f1d2c
persist credentials input filename
lovincyrus Oct 9, 2025
d4632e2
copy update
lovincyrus Oct 9, 2025
10b7230
bump link
lovincyrus Oct 9, 2025
0df9456
inital
lovincyrus Oct 17, 2025
46c1064
revert and remove bigquery auth options
lovincyrus Oct 17, 2025
600fab4
revert
lovincyrus Oct 17, 2025
7581225
remove source properties from gcs
lovincyrus Oct 17, 2025
7c043a9
specify gcs in the connector type
lovincyrus Oct 17, 2025
5775236
clean up
lovincyrus Oct 17, 2025
3888638
clean up
lovincyrus Oct 17, 2025
e83aa9c
clean up
lovincyrus Oct 17, 2025
5805ecf
remove special gcs form display for path and name
lovincyrus Oct 21, 2025
eb50021
attempt to fix e2e
lovincyrus Oct 21, 2025
1a299e5
Merge branch 'main' into cyrus/gcs-form
lovincyrus Oct 21, 2025
ee90035
secret key id
lovincyrus Oct 21, 2025
6391f09
re-add source props path and name
lovincyrus Oct 22, 2025
adf20a2
gcs: connector + model
lovincyrus Oct 22, 2025
3b36438
multi step connectors
lovincyrus Oct 22, 2025
5f03180
centralize connector step store
lovincyrus Oct 22, 2025
051c2c7
hoist form height
lovincyrus Oct 22, 2025
fae03c4
add e2e for multi step
lovincyrus Oct 22, 2025
a592954
lint
lovincyrus Oct 22, 2025
7ea4d31
tweak multi step connectors
lovincyrus Oct 22, 2025
177f46f
filter out connector properties from step 2
lovincyrus Oct 22, 2025
b751326
hide back btn in step 2
lovincyrus Oct 22, 2025
174b89f
add skip button for multi step connector
lovincyrus Oct 23, 2025
c6db81e
reset connector step when closing modal
lovincyrus Oct 23, 2025
50567b0
hmac key id secret
lovincyrus Oct 24, 2025
e1ae60f
path validaton yupschema
lovincyrus Oct 24, 2025
ac0b883
fix handle back logic
lovincyrus Oct 24, 2025
9ab46f6
initial break down AddDataForm
lovincyrus Oct 28, 2025
6a64725
lint
lovincyrus Oct 28, 2025
47b65e0
clean up
lovincyrus Oct 28, 2025
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
Prev Previous commit
Next Next commit
prettier
  • Loading branch information
lovincyrus committed Oct 10, 2025
commit 73ca1fb56acebfe0743476c92f8756bdd5b192f4
6 changes: 4 additions & 2 deletions web-common/src/features/sources/modal/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,15 @@ export const BIGQUERY_AUTH_OPTIONS: {
{
value: "inferred",
label: "Use inferred credentials",
description: "Automatically use credentials from your environment or service account.",
description:
"Automatically use credentials from your environment or service account.",
hint: "Run code below to setup first",
},
{
value: "credentials",
label: "GCP credentials",
description: "Upload a JSON key file for a service account with BigQuery access.",
description:
"Upload a JSON key file for a service account with BigQuery access.",
},
];

Expand Down