-
Notifications
You must be signed in to change notification settings - Fork 1
App info localization #9
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
Conversation
appstoreconnect/api.py
Outdated
| def modify_app_info(self, app_information: AppInfo, args): | ||
| """ | ||
| :reference: https://developer.apple.com/documentation/appstoreconnectapi/modify_an_app_info | ||
| :return: an iterator over AppInfo resources | ||
| """ | ||
| return self._modify_resource(app_information, args) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Il faudrait faire comme dans les autres fonctions de modify ( cf ce que j'ai fait sur modify_app_store_version ) et mettre des arguments ( ceux dont on a besoin pour le moment ).
Idéalement faudrait tous les mettre, mais ça n'est pas ce qui est fait dans l'API aujoud'hui. Peut etre que j'ouvrirai une discussion pour demander au dev originel si on devrait pas mettre tous les params possibles ou à défaut un dict générique supplémentaire pour pallier ce manquement.
appstoreconnect/api.py
Outdated
| def modify_app_store_info_localization(self, AppInfoLocalization, attributes): | ||
| """ | ||
| :reference: https://developer.apple.com/documentation/appstoreconnectapi/modify_an_app_info_localization | ||
| :return: an iterator over AppInfoLocalization resources | ||
| """ | ||
| return self._modify_resource(AppInfoLocalization, attributes) | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
même remarque pour que pour l'autre fonction modify
appstoreconnect/api.py
Outdated
| """ | ||
| return self._get_resource(Build, build_id) | ||
|
|
||
| def read_app_category_info(self, app_category_id): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
les fonctions sont regroupés en dessous de commentaires #
…ly ) added copyroth parameters form create and modify app store version functions
Change localisation of functions
…ion_localization parameters - add reference for list_app_store_version_localizations and list_app_store_info_localizations
Refactor app info localization
Generate token after 15 minutes
No description provided.