Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions spec3.json
Original file line number Diff line number Diff line change
Expand Up @@ -9764,6 +9764,26 @@
"nullable": true,
"description": "Date and time when this revision was deleted, if applicable.",
"readOnly": true
},
"sourceMetadata": {
"type": "object",
"nullable": true,
"description": "Metadata about the source of this revision, if any.",
"readOnly": true,
"properties": {
"authType": {
"type": "string",
"nullable": true,
"description": "The authentication method used when this revision was created.",
"enum": [
"api",
"app",
"mcp",
"oauth"
],
"readOnly": true
}
}
}
}
},
Expand Down Expand Up @@ -10129,6 +10149,16 @@
"description": "The date and time that this user was deleted, if applicable.",
"readOnly": true,
"format": "date-time"
},
"invitedBy": {
"allOf": [
{
"$ref": "#/components/schemas/User"
}
],
"nullable": true,
"description": "The user who invited this user, if any. Only returned to admins.",
"readOnly": true
}
}
},
Expand Down
23 changes: 23 additions & 0 deletions spec3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6864,6 +6864,22 @@ components:
nullable: true
description: Date and time when this revision was deleted, if applicable.
readOnly: true
sourceMetadata:
type: object
nullable: true
description: Metadata about the source of this revision, if any.
readOnly: true
properties:
authType:
type: string
nullable: true
description: The authentication method used when this revision was created.
enum:
- api
- app
- mcp
- oauth
readOnly: true
RevisionDetail:
allOf:
- "$ref": "#/components/schemas/Revision"
Expand Down Expand Up @@ -7190,6 +7206,13 @@ components:
description: The date and time that this user was deleted, if applicable.
readOnly: true
format: date-time
invitedBy:
allOf:
- "$ref": "#/components/schemas/User"
nullable: true
description:
The user who invited this user, if any. Only returned to admins.
readOnly: true
Invite:
type: object
properties:
Expand Down
Loading