From da649dad933842b5cddb5df3f02585df8ce8ef8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Baumk=C3=B6tter?= Date: Wed, 12 Jul 2023 14:47:04 +0000 Subject: [PATCH] renamed the new endpoints --- reference/SpaceTraders.json | 72 ++++++++++++++++++------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/reference/SpaceTraders.json b/reference/SpaceTraders.json index 4a827aa..e679ca0 100644 --- a/reference/SpaceTraders.json +++ b/reference/SpaceTraders.json @@ -858,6 +858,41 @@ } ] }, + "/my/agent": { + "get": { + "description": "Fetch your agent's details.", + "operationId": "get-my-agent", + "responses": { + "200": { + "content": { + "application/json": { + "schema": { + "properties": { + "data": { + "$ref": "../models/Agent.json" + } + }, + "required": [ + "data" + ], + "type": "object" + } + } + }, + "description": "Successfully fetched agent details." + } + }, + "security": [ + { + "AgentToken": [] + } + ], + "summary": "Get Agent", + "tags": [ + "Agents" + ] + } + }, "/agents": { "get": { "description": "Fetch agents details.", @@ -948,7 +983,7 @@ "description": "Successfully fetched agent details." } }, - "summary": "Get Agent", + "summary": "Get Public Agent", "tags": [ "Agents" ], @@ -972,41 +1007,6 @@ ] } }, - "/my/agent": { - "get": { - "description": "Fetch your agent's details.", - "operationId": "get-my-agent", - "responses": { - "200": { - "content": { - "application/json": { - "schema": { - "properties": { - "data": { - "$ref": "../models/Agent.json" - } - }, - "required": [ - "data" - ], - "type": "object" - } - } - }, - "description": "Successfully fetched agent details." - } - }, - "security": [ - { - "AgentToken": [] - } - ], - "summary": "Get Agent", - "tags": [ - "Agents" - ] - } - }, "/my/contracts": { "get": { "description": "Return a paginated list of all your contracts.",