Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
beeman committed Jun 21, 2024
1 parent a5a1fca commit d116544
Show file tree
Hide file tree
Showing 4 changed files with 3,409 additions and 2,788 deletions.
16 changes: 8 additions & 8 deletions libs/sdk/src/generated/graphql-sdk.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// @ts-nocheck
import { z } from 'zod'
import { GraphQLClient } from 'graphql-request'
import { GraphQLClientRequestHeaders } from 'graphql-request/build/cjs/types'
import { GraphQLClient, RequestOptions } from 'graphql-request'
import { GraphQLError, print } from 'graphql'
import gql from 'graphql-tag'
export type Maybe<T> = T | null
Expand All @@ -11,6 +10,7 @@ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?:
export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> }
export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never }
export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }
type GraphQLClientRequestHeaders = RequestOptions['requestHeaders']
/** All built-in and custom scalars, mapped to their actual values */
export type Scalars = {
ID: { input: string; output: string }
Expand Down Expand Up @@ -1127,7 +1127,7 @@ export type SdkFunctionWrapper = <T>(
variables?: any,
) => Promise<T>

const defaultWrapper: SdkFunctionWrapper = (action, _operationName, _operationType, variables) => action()
const defaultWrapper: SdkFunctionWrapper = (action, _operationName, _operationType, _variables) => action()
const LoginDocumentString = print(LoginDocument)
const LogoutDocumentString = print(LogoutDocument)
const RegisterDocumentString = print(RegisterDocument)
Expand Down Expand Up @@ -1686,7 +1686,7 @@ export function IdentityVerifyChallengeInputSchema(): z.ZodObject<Properties<Ide
provider: IdentityProviderSchema,
providerId: z.string(),
signature: z.string(),
useLedger: z.boolean().nullish(),
useLedger: z.boolean().default(false).nullish(),
})
}

Expand All @@ -1713,8 +1713,8 @@ export function UserAdminCreateInputSchema(): z.ZodObject<Properties<UserAdminCr

export function UserAdminFindManyInputSchema(): z.ZodObject<Properties<UserAdminFindManyInput>> {
return z.object({
limit: z.number().nullish(),
page: z.number().nullish(),
limit: z.number().default(10).nullish(),
page: z.number().default(1).nullish(),
role: UserRoleSchema.nullish(),
search: z.string().nullish(),
status: UserStatusSchema.nullish(),
Expand All @@ -1734,8 +1734,8 @@ export function UserAdminUpdateInputSchema(): z.ZodObject<Properties<UserAdminUp

export function UserUserFindManyInputSchema(): z.ZodObject<Properties<UserUserFindManyInput>> {
return z.object({
limit: z.number().nullish(),
page: z.number().nullish(),
limit: z.number().default(10).nullish(),
page: z.number().default(1).nullish(),
search: z.string().nullish(),
})
}
Expand Down
6 changes: 3 additions & 3 deletions libs/tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"dependencies": {
"@nx/devkit": "19.3.0",
"@clack/prompts": "^0.7.0",
"@mrleebo/prisma-ast": "^0.8.0",
"@mrleebo/prisma-ast": "^0.12.0",
"@nx/nest": "19.3.0",
"@nx/react": "19.3.0",
"dotenv": "16.3.1",
"dotenv": "^16.4.5",
"pg": "^8.11.2",
"pluralize": "^8.0.0",
"ts-morph": "^21.0.1",
"ts-morph": "^22.0.0",
"tslib": "^2.3.0",
"@nx/eslint": "19.3.0",
"@nx/js": "19.3.0"
Expand Down
142 changes: 71 additions & 71 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,89 +30,89 @@
},
"private": true,
"dependencies": {
"@apollo/server": "^4.10.0",
"@apollo/server": "^4.10.4",
"@clack/prompts": "^0.7.0",
"@coral-xyz/anchor": "^0.29.0",
"@mantine/core": "^7.4.1",
"@mantine/dates": "^7.4.1",
"@mantine/form": "^7.4.1",
"@mantine/hooks": "^7.4.1",
"@mantine/modals": "^7.4.1",
"@mantine/notifications": "^7.4.1",
"@mrleebo/prisma-ast": "^0.8.0",
"@nestjs/apollo": "^12.0.11",
"@nestjs/common": "10.3.0",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "10.3.0",
"@mantine/core": "^7.10.2",
"@mantine/dates": "^7.10.2",
"@mantine/form": "^7.10.2",
"@mantine/hooks": "^7.10.2",
"@mantine/modals": "^7.10.2",
"@mantine/notifications": "^7.10.2",
"@mrleebo/prisma-ast": "^0.12.0",
"@nestjs/apollo": "^12.1.0",
"@nestjs/common": "10.3.9",
"@nestjs/config": "^3.2.2",
"@nestjs/core": "10.3.9",
"@nestjs/event-emitter": "^2.0.4",
"@nestjs/graphql": "^12.0.11",
"@nestjs/graphql": "^12.1.1",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "10.3.0",
"@nestjs/schedule": "^4.0.0",
"@nestjs/serve-static": "^4.0.0",
"@nestjs/platform-express": "10.3.9",
"@nestjs/schedule": "^4.0.2",
"@nestjs/serve-static": "^4.0.2",
"@nx/devkit": "19.3.0",
"@prisma/client": "5.8.0",
"@prisma/client": "5.15.1",
"@pubkey-ui/core": "^1.7.0",
"@pubkey-ui/generators": "^1.7.0",
"@pubkeyapp/solana-verify-wallet": "^1.3.3",
"@pubkeyapp/wallet-adapter-mantine-ui": "^2.3.0",
"@solana/spl-token": "^0.3.11",
"@solana/spl-token": "^0.4.6",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/web3.js": "^1.88.0",
"@solana/web3.js": "^1.93.0",
"@swc/helpers": "0.5.11",
"@tabler/icons-react": "^2.45.0",
"@tanstack/react-query": "^5.17.9",
"@tabler/icons-react": "^2.47.0",
"@tanstack/react-query": "^5.45.1",
"axios": "1.7.2",
"bcrypt": "^5.1.1",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"clsx": "2.1.0",
"clsx": "2.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-serve-static-core": "^0.1.1",
"express-session": "^1.17.3",
"graphql": "^16.8.1",
"graphql-codegen-typescript-validation-schema": "^0.12.1",
"graphql-scalars": "^1.22.4",
"joi": "^17.11.0",
"jotai": "^2.6.1",
"express-session": "^1.18.0",
"graphql": "^16.9.0",
"graphql-codegen-typescript-validation-schema": "^0.15.0",
"graphql-scalars": "^1.23.0",
"joi": "^17.13.3",
"jotai": "^2.8.3",
"linkify-react": "^4.1.3",
"linkifyjs": "^4.1.3",
"mantine-datatable": "^7.4.1",
"mantine-datatable": "^7.10.3",
"passport": "^0.7.0",
"passport-discord": "^0.1.4",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-twitter": "^1.0.4",
"prisma-extension-pagination": "^0.6.0",
"prisma-extension-pagination": "^0.7.4",
"prisma-field-encryption": "^1.5.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.21.1",
"reflect-metadata": "^0.1.13",
"react-router-dom": "6.23.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"slugify": "^1.6.6",
"timeago-react": "^3.0.6",
"tslib": "^2.6.2",
"tslib": "^2.6.3",
"tweetnacl": "^1.0.3",
"zod": "^3.22.4"
"zod": "^3.23.8"
},
"devDependencies": {
"@47ng/cloak": "^1.1.0",
"@babel/core": "^7.23.7",
"@babel/preset-react": "^7.23.3",
"@graphql-codegen/add": "^5.0.0",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-document-nodes": "4.0.1",
"@graphql-codegen/typescript-graphql-request": "^6.1.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@nestjs/schematics": "10.1.0",
"@nestjs/testing": "10.3.0",
"@babel/core": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/typescript": "4.0.7",
"@graphql-codegen/typescript-document-nodes": "4.0.7",
"@graphql-codegen/typescript-graphql-request": "^6.2.0",
"@graphql-codegen/typescript-operations": "^4.2.1",
"@nestjs/schematics": "10.1.1",
"@nestjs/testing": "10.3.9",
"@nx/cypress": "19.3.0",
"@nx/eslint": "19.3.0",
"@nx/eslint-plugin": "19.3.0",
Expand All @@ -125,33 +125,33 @@
"@nx/rollup": "19.3.0",
"@nx/webpack": "19.3.0",
"@nx/workspace": "19.3.0",
"@parcel/watcher": "^2.3.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@solana-developers/preset-anchor": "2.0.0",
"@parcel/watcher": "^2.4.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@solana-developers/preset-anchor": "3.0.1",
"@svgr/webpack": "8.1.0",
"@swc-node/register": "1.9.2",
"@swc/cli": "0.3.12",
"@swc/core": "1.5.7",
"@swc/core": "1.6.3",
"@swc/jest": "0.2.36",
"@testing-library/react": "15.0.6",
"@testing-library/react": "16.0.0",
"@types/bcrypt": "^5.0.2",
"@types/jest": "^29.5.11",
"@types/node": "18.16.9",
"@types/passport-discord": "^0.1.11",
"@types/jest": "^29.5.12",
"@types/node": "20.14.7",
"@types/passport-discord": "^0.1.13",
"@types/passport-github": "^1.1.12",
"@types/passport-google-oauth20": "^2.0.14",
"@types/passport-jwt": "^4.0.0",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-jwt": "^4.0.1",
"@types/passport-twitter": "^1.0.40",
"@types/pluralize": "^0.0.33",
"@types/react": "18.3.1",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"babel-jest": "^29.7.0",
"commander": "^12.0.0",
"core-js": "3.36.1",
"cypress": "13.9.0",
"dayjs": "^1.11.10",
"commander": "^12.1.0",
"core-js": "3.37.1",
"cypress": "13.12.0",
"dayjs": "^1.11.11",
"en-inflectors": "^1.0.12",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
Expand All @@ -162,27 +162,27 @@
"eslint-plugin-react-hooks": "4.6.0",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6",
"husky": "^8.0.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"json-schema-to-typescript": "^13.1.2",
"lint-staged": "^15.2.0",
"json-schema-to-typescript": "^14.0.5",
"lint-staged": "^15.2.7",
"nx": "19.3.0",
"pg": "^8.11.3",
"pg": "^8.12.0",
"pluralize": "^8.0.0",
"postcss": "8.4.38",
"postcss-preset-mantine": "^1.12.3",
"postcss-preset-mantine": "^1.15.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^2.8.8",
"prisma": "^5.8.0",
"react-refresh": "^0.14.0",
"ts-jest": "^29.1.1",
"ts-morph": "^21.0.1",
"prisma": "^5.15.1",
"react-refresh": "^0.14.2",
"ts-jest": "^29.1.5",
"ts-morph": "^22.0.0",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"url-loader": "^4.1.1",
"webpack": "^5.89.0"
"webpack": "^5.92.1"
},
"lint-staged": {
"*.{js,json,css,scss,md,ts,tsx,html,graphql}": [
Expand Down
Loading

0 comments on commit d116544

Please sign in to comment.