Skip to content

Commit

Permalink
Update OpenAPI schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 28, 2024
1 parent 9ff7001 commit 658a516
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions core-api/core-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4369,6 +4369,11 @@
"type": "string",
"description": "Link to teammate's conversations",
"example": "https://yourCompany.api.frontapp.com/teammates/tea_6r55a/conversations"
},
"botSource": {
"type": "string",
"description": "Link to the source resource of the bot (e.g. rule)",
"example": "https://yourCompany.api.frontapp.com/rules/rul_6r55a"
}
}
}
Expand Down Expand Up @@ -4414,6 +4419,19 @@
"description": "Whether or not the teammate account has been blocked",
"example": false
},
"type": {
"type": "string",
"description": "Type of the teammate, normal teammates are denoted as \"user\", while visitors are denoted as \"visitor\".\nBot users are denoted by their parent resource type.\nThe following bot types are available:\n * rule: acting on behalf of a Rule, author of comments and drafts\n * macro: acting on behalf of a Macro, author of comments and drafts\n * API: acting on behalf of OAuth clients\n * integration: acting on behalf of an Integration\n * CSAT: used for authoring CSAT response comments\n",
"enum": [
"user",
"visitor",
"rule",
"macro",
"API",
"integration",
"CSAT"
]
},
"custom_fields": {
"description": "Custom fields for this teammate",
"$ref": "#/components/schemas/CustomFieldParameter"
Expand Down

0 comments on commit 658a516

Please sign in to comment.