-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[v8] code block + rich text nits; auto infer draft mode for nextjs (#120
) * code block + rich text nits; auto infer draft mode for nextjs * store selected branch in cookie to make the queries server side (when in draft) * also make it work in basehub() * v * v * handle new event api * upd * v * v * fix ref bug * improve * r * v * branch switcher stuff * v * v * r * events: getEvents function * update query events url * fix build * release * fix * typed response * r * filter and orderBy types * update types to match responses with select * base response on selected fields * fix filters * fix some branch switcher styles * v * fix: don't require data argument for type never * types update * feat: migrate to /events - update/delete functions * fix * fix lock * publish preview workflow * fixes * fix workflow * fix DELETE handler * array filtering for select multiple * Form Builder (#122) * FormBuilder * exports * fix * fix * submission * fix handler * hidden type * unstable and stuff * upgrade genql * update workflows * lockfile * fix * fix * fix * nit * revert? * Update sdk-preview.yml * client export * Revert "client export" This reverts commit 94cd6d6. * test * SVG comp * Fixes * Correct parse of the style tag * incr default api version * Keys in map * Support for filters and defs * Adding `supportedSvgTags` to the export * release * Remove schema import * dts * fix * v * v * changeset * nit * release * use kebab-case for query ranges * fix: events return type * fix: don't group time series response count in labeled objects * fix pump types * send commitId and branch to the events api * fix * update link primitives * update pump endpoint * test fix * lint * ignore types * fix * v * pass stuff through body to improve preflight caching * v * upgrade mutation-api-helpers * v * v * fix * fix * add Language type to schema * v * v * release * Support for server side in svg renderer * Rolling back dependency changes * Rollback finalcomponents * Rollback playground json * Rollback playground json * release * . * fix * upd * upd * `parseFormData` (#129) * wip * overhaul * fixes * fix * use key to parse type * fix build * fix fix fix * fix? * fix build * safe return * . * ? * revert * revert unstable_Form to not depend on EventKeys and parseFormData * fix * nit --------- Co-authored-by: Julian Benegas <[email protected]> * publish parseFormData * r * upd * v * fix signing * make 'first' and 'skip' non required * out of canary --------- Co-authored-by: Joaquin Montes <[email protected]> Co-authored-by: moransantiago <[email protected]> Co-authored-by: Fabroos <[email protected]>
- Loading branch information
1 parent
fc506ba
commit 342e4cc
Showing
52 changed files
with
2,832 additions
and
457 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Publish SDK Preview | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- run: corepack enable | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
cache: "pnpm" | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- name: Build | ||
run: pnpm build | ||
|
||
- run: pnpx pkg-pr-new publish './packages/basehub' --comment=update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/* eslint-disable import/no-unresolved */ | ||
export * from "./dist/generated-client/events"; |
Oops, something went wrong.