Skip to content

Commit

Permalink
Add missing permissions and fix nesting bug
Browse files Browse the repository at this point in the history
  • Loading branch information
typeofweb committed Dec 20, 2023
1 parent d57400a commit 9520d36
Show file tree
Hide file tree
Showing 8 changed files with 263 additions and 241 deletions.
3 changes: 3 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#"fatal" | "error" | "warn" | "info" | "debug" | "trace"
APP_DEBUG=info
SECRET_KEY=aaaaaaaa

APP_IFRAME_BASE_URL=
APP_API_BASE_URL=
9 changes: 6 additions & 3 deletions graphql/subscriptions/CheckoutFullyPaid.graphql
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
fragment CheckoutFullyPaidEvent on CheckoutFullyPaid {
checkout {
id
}
}
subscription CheckoutFullyPaid {
event {
... on CheckoutFullyPaid {
checkout {
id
}
...CheckoutFullyPaidEvent
}
}
}
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"next": "14.0.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"tsx": "4.6.2",
"tsx": "4.7.0",
"zod": "3.22.4"
},
"devDependencies": {
Expand All @@ -52,15 +52,15 @@
"@graphql-typed-document-node/core": "3.2.0",
"@saleor/json-schema-compiler": "0.1.2",
"@types/bluebird": "3.5.42",
"@types/node": "20.10.4",
"@types/react": "18.2.43",
"@types/react-dom": "18.2.17",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"eslint": "8.55.0",
"@types/node": "20.10.5",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-import": "2.29.1",
"husky": "8.0.3",
"json-schema-to-typescript": "13.1.1",
"lint-staged": "15.2.0",
Expand Down

0 comments on commit 9520d36

Please sign in to comment.