12345678910111213141516171819202122232425262728 |
- #!/usr/bin/env bash
- function mobile {
- rm -rf ../mobile/openapi
- cd ./openapi-generator/templates/serialization/native
- wget -O native_class.mustache https://raw.githubusercontent.com/OpenAPITools/openapi-generator/master/modules/openapi-generator/src/main/resources/dart2/serialization/native/native_class.mustache
- patch -u native_class.mustache <native_class.mustache.patch
- cd ../../../..
- npx openapi-generator-cli generate -g dart -i ./immich-openapi-specs.json -o ../mobile/openapi -t ./openapi-generator/templates
- # Post generate patches
- patch --no-backup-if-mismatch -u ../mobile/openapi/lib/api_client.dart <./openapi-generator/patch/api_client.dart.patch
- patch --no-backup-if-mismatch -u ../mobile/openapi/lib/api.dart <./openapi-generator/patch/api.dart.patch
- }
- function web {
- rm -rf ../web/src/api/open-api
- npx openapi-generator-cli generate -g typescript-axios -i ./immich-openapi-specs.json -o ../web/src/api/open-api
- }
- if [[ $1 == 'mobile' ]]; then
- mobile
- elif [[ $1 == 'web' ]]; then
- web
- else
- mobile
- web
- fi
|