ckarli

Results 8 issues of ckarli

I didn't extend AbstractUser model. Instead I've created a Profile model and connected it to User model with a foreign key. How can I use the phone_number field I've created...

**Describe the bug** Types can't be extracted from newly added GeneratedField. Field must be added explicitly to the serializer with the correct type as defined in the "output_field". Otherwise it...

bug
enhancement

FilterSets can be added to querylist dict in 'filterset_class' key

An array of literal strings like this ![image](https://github.com/hosseinmd/swagger-typescript/assets/87313837/df53f7d9-b00b-481a-8e27-f89d0e7be473) generates a type like this ` state?: "CANCEL" | "OUT" | "PAID" | "PORTFOLIO" | "RETURNOUT" | "UNDEFINED"[];` but it should generate...

After upgrading to 5.0, I am getting this error in translated models. I am using django-model-utils==5.0.0 django-modeltranslation==0.19.9 My model ``` class ParameterModel(UUIDModel, SoftDeletableModelMixin): value = models.CharField(verbose_name=_("value"), max_length=255) sort_order = models.IntegerField(default=0)...

After upgrading to 5.0, I am getting this error in translated models. I am using django-model-utils==5.0.0 django-modeltranslation==0.19.9 My model ``` class ParameterModel(UUIDModel, SoftDeletableModelMixin): value = models.CharField(verbose_name=_("value"), max_length=255) sort_order = models.IntegerField(default=0)...

Enums with integer keys gives an error during generation. export enum VatRatioChoices {0=0,1=1,8=8,10=10,18=18,20=20} SyntaxError: An enum member cannot have a numeric name.