Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EW-1060 redirected the common cartridge export to the cc-microservice #3457

Merged
merged 35 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
f088756
EW-1060 added generate script for new common cartridge
Fshmit Nov 14, 2024
76459a0
EW-1060: Generate client.
mkreuzkam-cap Nov 15, 2024
bfb8619
EW-1060 changed endpoint of export to microservice
Fshmit Nov 15, 2024
19b137a
EW-1060 fixed export in a index file
Fshmit Nov 15, 2024
f1984e3
EW-1060 genereated the client of common cartridge new
Fshmit Nov 15, 2024
04297c4
EW-1060 changed a import in a index file
Fshmit Nov 15, 2024
9b2b73e
EW-1060 generated api client again after deleting the old export endp…
Fshmit Nov 15, 2024
5f74164
Merge branch 'main' into EW-1060
Fshmit Nov 21, 2024
d325a89
EW-1060 deleted options info point 2
Fshmit Nov 21, 2024
08ef9af
Merge branch 'main' into EW-1060
Fshmit Nov 22, 2024
878ed26
Merge branch 'main' into EW-1060
Fshmit Dec 10, 2024
5969f04
Merge branch 'main' into EW-1060
Fshmit Dec 11, 2024
eec722c
EW-1060 modifed download common cartridge test
Fshmit Dec 11, 2024
fa2d825
changing client generation
psachmann Dec 13, 2024
65e754f
Merge branch 'main' into EW-1060
Fshmit Dec 16, 2024
479db89
updating eslint config
psachmann Dec 16, 2024
1040c1b
Merge branch 'main' into EW-1060
psachmann Dec 16, 2024
e11da22
updating unit tests
psachmann Dec 16, 2024
178bc97
changing rimraf version
psachmann Dec 16, 2024
8d10d62
adding dev dependency
psachmann Dec 16, 2024
81d4faa
updating package.json
psachmann Dec 16, 2024
0578f51
fixing unit tests
psachmann Dec 16, 2024
fb8f5a7
updating sonarcloud properties
psachmann Dec 16, 2024
b6e402b
working on test coverage
psachmann Dec 17, 2024
4990c62
Merge branch 'main' into EW-1060
psachmann Dec 17, 2024
82ef11c
removing comments
psachmann Dec 17, 2024
055c627
updating sonar properties
psachmann Dec 17, 2024
1b8d184
Merge branch 'main' into EW-1060
Fshmit Dec 17, 2024
d9bfe2d
some logging
psachmann Dec 17, 2024
7e3b37f
adding some logging
psachmann Dec 17, 2024
4d93f64
try getter
Fshmit Dec 17, 2024
db92381
Merge branch 'EW-1060' of https://github.com/hpi-schul-cloud/nuxt-cli…
Fshmit Dec 17, 2024
7a62ddc
changing openapi generator version
psachmann Dec 18, 2024
9f15e8f
fixing unit tests
psachmann Dec 18, 2024
dd29b17
EW-1060 removed console logs
Fshmit Dec 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion openapitools.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@
"$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
"spaces": 2,
"generator-cli": {
"version": "5.1.0"
"version": "7.6.0",
"generators": {
"common-cartridge-api": {
"generatorName": "typescript-axios",
"inputSpec": "http://localhost:3350/api/v3/docs-json/",
"output": "./src/commonCartridgeApi/v3",
"skipValidateSpec": true,
"enablePostProcessFile": true,
"additionalProperties": {
"apiPackage": "api",
"enumNameSuffix": "",
"enumPropertyNaming": "UPPERCASE",
"modelPackage": "models",
"supportsES6": true,
"withInterfaces": true,
"withSeparateModelsAndApi": true
}
}
}
}
}
Loading
Loading