-
- Downloads
Update dependencies and service clients
parent
81e52077
No related branches found
No related tags found
Showing
- index.html 1 addition, 1 deletionindex.html
- package-lock.json 1133 additions, 376 deletionspackage-lock.json
- package.json 41 additions, 40 deletionspackage.json
- src/assets/base.css 0 additions, 2 deletionssrc/assets/base.css
- src/client/auth/core/ApiError.ts 1 addition, 0 deletionssrc/client/auth/core/ApiError.ts
- src/client/auth/core/ApiRequestOptions.ts 1 addition, 0 deletionssrc/client/auth/core/ApiRequestOptions.ts
- src/client/auth/core/ApiResult.ts 1 addition, 0 deletionssrc/client/auth/core/ApiResult.ts
- src/client/auth/core/CancelablePromise.ts 40 additions, 37 deletionssrc/client/auth/core/CancelablePromise.ts
- src/client/auth/core/OpenAPI.ts 6 additions, 5 deletionssrc/client/auth/core/OpenAPI.ts
- src/client/auth/core/request.ts 37 additions, 22 deletionssrc/client/auth/core/request.ts
- src/client/auth/index.ts 1 addition, 0 deletionssrc/client/auth/index.ts
- src/client/auth/models/ErrorDetail.ts 3 additions, 0 deletionssrc/client/auth/models/ErrorDetail.ts
- src/client/auth/models/HTTPValidationError.ts 1 addition, 0 deletionssrc/client/auth/models/HTTPValidationError.ts
- src/client/auth/models/RoleEnum.ts 1 addition, 0 deletionssrc/client/auth/models/RoleEnum.ts
- src/client/auth/models/User.ts 4 additions, 1 deletionsrc/client/auth/models/User.ts
- src/client/auth/models/ValidationError.ts 1 addition, 0 deletionssrc/client/auth/models/ValidationError.ts
- src/client/auth/services/AuthService.ts 1 addition, 0 deletionssrc/client/auth/services/AuthService.ts
- src/client/auth/services/UserService.ts 5 additions, 3 deletionssrc/client/auth/services/UserService.ts
- src/client/s3proxy/core/ApiError.ts 1 addition, 0 deletionssrc/client/s3proxy/core/ApiError.ts
- src/client/s3proxy/core/ApiRequestOptions.ts 1 addition, 0 deletionssrc/client/s3proxy/core/ApiRequestOptions.ts
This diff is collapsed.
... | ... | @@ -8,53 +8,54 @@ |
"build-only": "vite build", | ||
"type-check": "vue-tsc --noEmit", | ||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", | ||
"generate-s3-client": "openapi --input https://clowm-staging.bi.denbi.de/api/s3proxy-service/openapi.json --output src/client/s3proxy --client axios", | ||
"generate-auth-client": "openapi --input https://clowm-staging.bi.denbi.de/api/auth-service/openapi.json --output src/client/auth --client axios", | ||
"generate-workflow-client": "openapi --input https://clowm-staging.bi.denbi.de/api/workflow-service/openapi.json --output src/client/workflow --client axios" | ||
"generate-s3-client": "openapi --input http://localhost:9999/api/s3proxy-service/openapi.json --output src/client/s3proxy --client axios", | ||
"generate-auth-client": "openapi --input http://localhost:9999/api/auth-service/openapi.json --output src/client/auth --client axios", | ||
"generate-workflow-client": "openapi --input http://localhost:9999/api/workflow-service/openapi.json --output src/client/workflow --client axios" | ||
}, | ||
"dependencies": { | ||
"@aws-sdk/client-s3": "^3.379.1", | ||
"@aws-sdk/lib-storage": "^3.379.1", | ||
"@aws-sdk/s3-request-presigner": "^3.379.1", | ||
"@fortawesome/fontawesome-free": "^6.4.0", | ||
"@popperjs/core": "^2.11.8", | ||
"ajv": "^8.12.0", | ||
"bootstrap": "^5.2.3", | ||
"chart.js": "^4.3.2", | ||
"chartjs-plugin-zoom": "^2.0.1", | ||
"dayjs": "^1.11.9", | ||
"dompurify": "^3.0.5", | ||
"filesize": "^10.0.8", | ||
"pinia": "^2.1.6", | ||
"semver": "^7.5.4", | ||
"showdown": "^2.1.0", | ||
"vue": "^3.3.4", | ||
"vue-router": "^4.2.4", | ||
"vue3-cookies": "^1.0.6" | ||
"@fortawesome/fontawesome-free": "~6.4.0", | ||
"@popperjs/core": "~2.11.8", | ||
"ajv": "~8.12.0", | ||
"bootstrap": "~5.3.1", | ||
"chart.js": "~4.3.3", | ||
"chartjs-plugin-zoom": "~2.0.1", | ||
"dayjs": "~1.11.9", | ||
"dompurify": "~3.0.5", | ||
"filesize": "~10.0.12", | ||
"pinia": "~2.1.6", | ||
"semver": "~7.5.4", | ||
"showdown": "~2.1.0", | ||
"vue": "~3.3.4", | ||
"vue-router": "~4.2.4", | ||
"vue3-cookies": "~1.0.6" | ||
}, | ||
"devDependencies": { | ||
"@esbuild-plugins/node-globals-polyfill": "^0.2.3", | ||
"@esbuild-plugins/node-modules-polyfill": "^0.2.2", | ||
"@rushstack/eslint-patch": "^1.2.0", | ||
"@types/bootstrap": "^5.2.6", | ||
"@types/dompurify": "^3.0.2", | ||
"@types/node": "^16.11.45", | ||
"@types/semver": "^7.5.0", | ||
"@types/showdown": "^2.0.1", | ||
"@vitejs/plugin-vue": "^4.2.3", | ||
"@vue/eslint-config-prettier": "^7.1.0", | ||
"@vue/eslint-config-typescript": "^11.0.2", | ||
"@vue/tsconfig": "^0.1.3", | ||
"axios": "^1.4.0", | ||
"eslint": "^8.46.0", | ||
"eslint-plugin-vue": "^9.16.1", | ||
"npm-run-all": "^4.1.5", | ||
"@esbuild-plugins/node-globals-polyfill": "~0.2.3", | ||
"@esbuild-plugins/node-modules-polyfill": "~0.2.2", | ||
"@rushstack/eslint-patch": "~1.2.0", | ||
"@tsconfig/node16": "^16.1.1", | ||
"@types/bootstrap": "~5.2.6", | ||
"@types/dompurify": "~3.0.2", | ||
"@types/node": "^16.18.48", | ||
"@types/semver": "~7.5.1", | ||
"@types/showdown": "~2.0.1", | ||
"@vitejs/plugin-vue": "~4.3.4", | ||
"@vue/eslint-config-prettier": "~8.0.0", | ||
"@vue/eslint-config-typescript": "~11.0.3", | ||
"@vue/tsconfig": "~0.4.0", | ||
"axios": "~1.5.0", | ||
"eslint": "~8.48.0", | ||
"eslint-plugin-vue": "~9.17.0", | ||
"npm-run-all": "~4.1.5", | ||
"openapi-typescript-codegen": "^0.25.0", | ||
"prettier": "^2.8.4", | ||
"rollup-plugin-node-polyfills": "^0.2.1", | ||
"sass": "^1.59.3", | ||
"typescript": "~4.9.5", | ||
"vite": "^4.2.3", | ||
"vue-tsc": "^1.8.8" | ||
"prettier": "~3.0.3", | ||
"rollup-plugin-node-polyfills": "~0.2.1", | ||
"sass": "~1.66.1", | ||
"typescript": "~5.1.6", | ||
"vite": "~4.4.9", | ||
"vue-tsc": "~1.8.10" | ||
} | ||
} |
Please register or sign in to comment