mirror of
https://github.com/immich-app/immich.git
synced 2025-07-13 20:38:46 +02:00
chore(mobile): properly patch openapi with custom response dto (#11753)
This commit is contained in:
parent
fdf0b16fe3
commit
5ec407b57c
12 changed files with 312 additions and 7 deletions
open-api/bin
|
@ -8,12 +8,18 @@ function dart {
|
|||
cd ./templates/mobile/serialization/native
|
||||
wget -O native_class.mustache https://raw.githubusercontent.com/OpenAPITools/openapi-generator/$OPENAPI_GENERATOR_VERSION/modules/openapi-generator/src/main/resources/dart2/serialization/native/native_class.mustache
|
||||
patch --no-backup-if-mismatch -u native_class.mustache <native_class.mustache.patch
|
||||
cd ../../../..
|
||||
|
||||
cd ../../
|
||||
wget -O api_client.mustache https://raw.githubusercontent.com/OpenAPITools/openapi-generator/$OPENAPI_GENERATOR_VERSION/modules/openapi-generator/src/main/resources/dart2/api_client.mustache
|
||||
patch --no-backup-if-mismatch -u api_client.mustache <api_client.mustache.patch
|
||||
|
||||
cd ../../
|
||||
npx --yes @openapitools/openapi-generator-cli generate -g dart -i ./immich-openapi-specs.json -o ../mobile/openapi -t ./templates/mobile
|
||||
|
||||
# Post generate patches
|
||||
patch --no-backup-if-mismatch -u ../mobile/openapi/lib/api_client.dart <./patch/api_client.dart.patch
|
||||
patch --no-backup-if-mismatch -u ../mobile/openapi/lib/api.dart <./patch/api.dart.patch
|
||||
patch --no-backup-if-mismatch -u ../mobile/openapi/pubspec.yaml <./patch/pubspec_immich_mobile.yaml.patch
|
||||
# Don't include analysis_options.yaml for the generated openapi files
|
||||
# so that language servers can properly exclude the mobile/openapi directory
|
||||
rm ../mobile/openapi/analysis_options.yaml
|
||||
|
@ -34,4 +40,4 @@ elif [[ $1 == 'typescript' ]]; then
|
|||
else
|
||||
dart
|
||||
typescript
|
||||
fi
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue