Johannes Schwenk
Johannes Schwenk
Hi, at first: Thank you for this great API wrapper, it saved me a lot of time. I have one issue: I get no price for a product, when I...
I have one site with HTML strings, where I have really slow extraction times (~60 seconds). I just call `extruct.extract` with this string: https://pastebin.com/QJbUdaA6 Other strings work in times like...
Hi, I`m using firebase analytics in my Web / Native iOs / Native Android App. Now I would like to set the same screen name for all platforms, to have...
I got an email from Google that there is a new AD_ID permission handling needed for Android 13. https://support.google.com/admob/answer/11402075 I'm not quite sure what this means for me as a...
ListField with DictField as child created invalid TypeScript code I have this field in my django response serializer fields: detailpage_elements = serializers.ListField( required=False, child=serializers.DictField() ) in swagger.json it is shown...
I have this parameter in my `swagger.json` . `required` is set to false "parameters":[ { "name":"token_types", "in":"query", "description":"Token types", "required":false, "type":"array", "items":{ "type":"string", "enum":[ "option_a", "option_b", "option_c", ] } }...
# Bug Report ## Description When I define serializers.ChoiceField(choices=...) in MyResponseSerializer, the enum for the choices are outputted to Swagger schema. When I use ChoiceField in MyQuerySerializer, this is not...
This is not a feature request. It`s a question regarding the package. I can not find infos about it in the docs. I`m using [@capacitor-community/firebase-analytics](https://www.npmjs.com/package/@capacitor-community/firebase-analytics) to include Google Analytics 4...
When I call `FirebaseAnalytics.initializeFirebase` before `this.applicationRef.isStable` observable becomes true, then it takes 30 seconds or so to get stable. Is there a timeout or something in this function, which prevents...
When executing `collectstatic` django-pipeline does not raise an error if a file defined in PIPELINE config is not found. Is this on purpose? Do I miss a settings? I would...