mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat: Generate Schema Files - 18113073 (no-changelog) (#12927)
Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
17
packages/nodes-base/nodes/Twitter/__schema__/v2.0.0/tweet/create.json
vendored
Normal file
17
packages/nodes-base/nodes/Twitter/__schema__/v2.0.0/tweet/create.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"edit_history_tweet_ids": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
8
packages/nodes-base/nodes/Twitter/__schema__/v2.0.0/tweet/delete.json
vendored
Normal file
8
packages/nodes-base/nodes/Twitter/__schema__/v2.0.0/tweet/delete.json
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"deleted": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
||||
56
packages/nodes-base/nodes/Twitter/__schema__/v2.0.0/tweet/search.json
vendored
Normal file
56
packages/nodes-base/nodes/Twitter/__schema__/v2.0.0/tweet/search.json
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"edit_history_tweet_ids": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"public_metrics": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"retweet_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"reply_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"like_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"quote_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"bookmark_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"impression_count": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"retweet_count",
|
||||
"reply_count",
|
||||
"like_count",
|
||||
"quote_count",
|
||||
"bookmark_count",
|
||||
"impression_count"
|
||||
]
|
||||
},
|
||||
"author_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"edit_history_tweet_ids",
|
||||
"text"
|
||||
]
|
||||
}
|
||||
14
packages/nodes-base/nodes/Twitter/__schema__/v2.0.0/user/searchUser.json
vendored
Normal file
14
packages/nodes-base/nodes/Twitter/__schema__/v2.0.0/user/searchUser.json
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user