Update specification.json

This commit is contained in:
Kamigen
2024-04-28 19:27:16 -04:00
parent 04f1ac1f60
commit 3a9dbf42a1

View File

@@ -26,6 +26,39 @@
} }
} }
}, },
"/api/Google": {
"post": {
"tags": [
"Google"
],
"operationId": "CreateGoogleUser",
"requestBody": {
"x-name": "command",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateGoogleUserCommand"
}
}
},
"required": true,
"x-position": 1
},
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "string",
"format": "guid"
}
}
}
}
}
}
},
"/api/JoinUs": { "/api/JoinUs": {
"get": { "get": {
"tags": [ "tags": [
@@ -649,6 +682,15 @@
} }
} }
}, },
"CreateGoogleUserCommand": {
"type": "object",
"additionalProperties": false,
"properties": {
"accessToken": {
"type": "string"
}
}
},
"PaginatedListOfFutureCreatorListDto": { "PaginatedListOfFutureCreatorListDto": {
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,