From 397886a3bfc2ab3e052818d75d03f4239fbf477b Mon Sep 17 00:00:00 2001 From: koalasat Date: Sun, 27 Apr 2025 19:05:59 +0200 Subject: [PATCH] Fix tests --- api/oas_schemas.py | 4 ++++ docs/assets/schemas/api-latest.yaml | 3 +++ 2 files changed, 7 insertions(+) diff --git a/api/oas_schemas.py b/api/oas_schemas.py index de426b5f..2d28b916 100644 --- a/api/oas_schemas.py +++ b/api/oas_schemas.py @@ -462,6 +462,10 @@ class RobotViewSchema: "type": "string", "description": "Armored ASCII PGP public key block", }, + "nostr_pubkey": { + "type": "string", + "description": "Nostr public key in hex format", + }, "wants_stealth": { "type": "boolean", "default": False, diff --git a/docs/assets/schemas/api-latest.yaml b/docs/assets/schemas/api-latest.yaml index 5bf467a8..0bf41ad0 100644 --- a/docs/assets/schemas/api-latest.yaml +++ b/docs/assets/schemas/api-latest.yaml @@ -846,6 +846,9 @@ paths: public_key: type: string description: Armored ASCII PGP public key block + nostr_pubkey: + type: string + description: Nostr public key in hex format wants_stealth: type: boolean default: false