diff --git a/api/serializers.py b/api/serializers.py index 6094e600..4bd41fd2 100644 --- a/api/serializers.py +++ b/api/serializers.py @@ -494,7 +494,8 @@ class OrderPublicSerializer(serializers.ModelSerializer): maker_nick = serializers.CharField(required=False) maker_hash_id = serializers.CharField(required=False) maker_status = serializers.CharField( - help_text='Status of the nick - "Active" or "Inactive"', required=False + help_text='Status of the nick - "Active", "Seen Recently" or "Inactive"', + required=False, ) price = serializers.FloatField( help_text="Price in order's fiat currency", required=False diff --git a/docs/assets/schemas/api-latest.yaml b/docs/assets/schemas/api-latest.yaml index c184ac39..afdd9436 100644 --- a/docs/assets/schemas/api-latest.yaml +++ b/docs/assets/schemas/api-latest.yaml @@ -1638,7 +1638,7 @@ components: type: string maker_status: type: string - description: Status of the nick - "Active" or "Inactive" + description: Status of the nick - "Active", "Seen Recently" or "Inactive" price: type: number format: double diff --git a/docs/assets/schemas/api-v0.1.yaml b/docs/assets/schemas/api-v0.1.yaml index 7e6f2ed0..e9b933a0 100644 --- a/docs/assets/schemas/api-v0.1.yaml +++ b/docs/assets/schemas/api-v0.1.yaml @@ -1539,7 +1539,7 @@ components: type: string maker_status: type: string - description: Status of the nick - "Active" or "Inactive" + description: Status of the nick - "Active", "Seen Recently" or "Inactive" price: type: integer description: Price in order's fiat currency diff --git a/docs/assets/schemas/api-v0.5.3.yaml b/docs/assets/schemas/api-v0.5.3.yaml index 51d53a67..d3c21935 100644 --- a/docs/assets/schemas/api-v0.5.3.yaml +++ b/docs/assets/schemas/api-v0.5.3.yaml @@ -1712,7 +1712,7 @@ components: type: string maker_status: type: string - description: Status of the nick - "Active" or "Inactive" + description: Status of the nick - "Active", "Seen Recently" or "Inactive" price: type: number format: double diff --git a/tests/api_specs.yaml b/tests/api_specs.yaml index 3599b2d4..33e66235 100644 --- a/tests/api_specs.yaml +++ b/tests/api_specs.yaml @@ -1734,7 +1734,7 @@ components: type: string maker_status: type: string - description: Status of the nick - "Active" or "Inactive" + description: Status of the nick - "Active", "Seen Recently" or "Inactive" price: type: number format: double