Skip to content

Commit

Permalink
Automated deployment: Wed Aug 2 11:38:49 UTC 2023 b451634
Browse files Browse the repository at this point in the history
  • Loading branch information
Saranya-jena committed Aug 2, 2023
1 parent 6eb10ad commit 1eda189
Show file tree
Hide file tree
Showing 3 changed files with 152 additions and 110 deletions.
58 changes: 50 additions & 8 deletions auth/v3.0.0/auth-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -971,15 +971,39 @@
"responses": {
"200": {
"description": "OK",
"examples": {
"application/json": {
"data": ["0ecf9907-238d-4000-ac2f-3dbe38bc8e64"]
"schema": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/definitions/GetInvitationResponse"
}
}
}
},
}
}
},
"parameters": [],
"produces": ["application/json"]
}
},
"/list_invitations": {
"get": {
"description": "This API is used to list all the pending invitations of the user\n",
"operationId": "listInvitations",
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"type": "string"
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/definitions/Project"
}
}
}
}
}
Expand Down Expand Up @@ -1238,6 +1262,24 @@
}
}
},
"GetInvitationResponse": {
"type": "object",
"properties": {
"projectName": {
"type": "string"
},
"projectID": {
"type": "string"
},
"invitationRole": {
"type": "string",
"enum": ["Owner", "Editor", "Viewer"]
},
"projectOwner": {
"$ref": "#/definitions/ProjectMember"
}
}
},
"Project": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1281,7 +1323,7 @@
{
"type": "object",
"properties": {
"Projects": {
"projects": {
"type": "array",
"items": {
"$ref": "#/definitions/Project"
Expand Down
Loading

0 comments on commit 1eda189

Please sign in to comment.