Update dependencies

This commit is contained in:
Piotr Rogowski 2023-07-12 17:04:07 +02:00
parent 5ab491ee91
commit d577b82174
No known key found for this signature in database
GPG Key ID: 4A842D702D9C6F8F
3 changed files with 875 additions and 919 deletions

1759
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -24,42 +24,42 @@
"@hyper-tuner/ini": "git+https://github.com/hyper-tuner/ini.git",
"@hyper-tuner/types": "git+https://github.com/hyper-tuner/types.git",
"@reduxjs/toolkit": "^1.9.5",
"@sentry/react": "^7.54.0",
"@sentry/tracing": "^7.54.0",
"antd": "^4.24.10",
"@sentry/react": "^7.57.0",
"@sentry/tracing": "^7.57.0",
"antd": "^4.24.12",
"kbar": "^0.1.0-beta.40",
"lodash.debounce": "^4.0.8",
"mlg-converter": "^0.9.0",
"nanoid": "^4.0.2",
"pako": "^2.1.0",
"pocketbase": "^0.15.1",
"pocketbase": "^0.15.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-markdown": "^8.0.7",
"react-perfect-scrollbar": "^1.5.8",
"react-redux": "^8.0.7",
"react-router-dom": "^6.11.2",
"react-redux": "^8.1.1",
"react-router-dom": "^6.14.1",
"uplot": "^1.6.24",
"uplot-react": "^1.1.4",
"vite": "^4.3.9"
"vite": "^4.4.3"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.4.2",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^20.2.5",
"@types/node": "^20.4.1",
"@types/pako": "^2.0.0",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react-redux": "^7.1.25",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^4.0.0",
"@vitejs/plugin-react": "^4.0.3",
"less": "^4.1.3",
"pocketbase-typegen": "^1.1.9",
"rollup-plugin-visualizer": "^5.9.0",
"pocketbase-typegen": "^1.1.11",
"rollup-plugin-visualizer": "^5.9.2",
"rome": "^12.1.3",
"typescript": "^5.1.3",
"typescript": "^5.1.6",
"vite-plugin-html": "^3.2.0",
"vite-plugin-pwa": "^0.16.3"
"vite-plugin-pwa": "^0.16.4"
}
}

View File

@ -104,11 +104,12 @@ export type UsersRecord = {
};
// Response types include system fields and match responses from the PocketBase API
export type IniFilesResponse = Required<IniFilesRecord> & BaseSystemFields;
export type IniFilesResponse<Texpand = unknown> = Required<IniFilesRecord> &
BaseSystemFields<Texpand>;
export type StargazersResponse<Texpand = unknown> = Required<StargazersRecord> &
BaseSystemFields<Texpand>;
export type TunesResponse<Texpand = unknown> = Required<TunesRecord> & BaseSystemFields<Texpand>;
export type UsersResponse = Required<UsersRecord> & AuthSystemFields;
export type UsersResponse<Texpand = unknown> = Required<UsersRecord> & AuthSystemFields<Texpand>;
// Types containing all Records and Responses, useful for creating typing helper functions