Skip to content

Commit

Permalink
v
Browse files Browse the repository at this point in the history
  • Loading branch information
julianbenegas committed Dec 19, 2024
1 parent ac475da commit 6d93473
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .changeset/forty-bees-wash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
"basehub": patch
---
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"dry-timers-poke",
"eleven-donuts-yell",
"fluffy-sloths-admire",
"forty-bees-wash",
"good-worms-jam",
"great-flies-wonder",
"khaki-ghosts-call",
Expand Down
6 changes: 6 additions & 0 deletions packages/basehub/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# basehub

## 8.0.0-canary.32

### Patch Changes

-

## 8.0.0-canary.31

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/basehub/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "basehub",
"description": "A very fast Headless CMS.",
"author": "JB <[email protected]>",
"version": "8.0.0-canary.31",
"version": "8.0.0-canary.32",
"license": "MIT",
"repository": "basehub-ai/basehub",
"bugs": "https://github.com/basehub-ai/basehub/issues",
Expand Down
6 changes: 3 additions & 3 deletions packages/basehub/src/bin/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,16 +243,16 @@ export const main = async (
schemaFileContents = schemaFileContents.replace(
"mutation<R extends MutationGenqlSelection>",
`mutation<
R extends Omit<MutationGenqlSelection, "transaction" | "transactionAwaitable"> & {
R extends Omit<MutationGenqlSelection, "transaction" | "transactionAsync"> & {
transaction?: {
__args: Omit<
NonNullable<MutationGenqlSelection["transaction"]>["__args"],
"data"
> & { data: Transaction | string };
};
transactionAwaitable?: TransactionStatusGenqlSelection & {
transactionAsync?: TransactionStatusGenqlSelection & {
__args: Omit<
NonNullable<MutationGenqlSelection["transactionAwaitable"]>["__args"],
NonNullable<MutationGenqlSelection["transactionAsync"]>["__args"],
"data"
> & { data: Transaction | string };
};
Expand Down
7 changes: 7 additions & 0 deletions playground/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# playground

## 0.0.164-canary.32

### Patch Changes

- Updated dependencies
- [email protected]

## 0.0.164-canary.31

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "playground",
"private": true,
"version": "0.0.164-canary.31",
"version": "0.0.164-canary.32",
"scripts": {
"dev": "basehub dev & next dev --port 3003",
"build": "basehub && next build",
Expand Down

0 comments on commit 6d93473

Please sign in to comment.