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:
73
packages/nodes-base/nodes/Linear/__schema__/v1.0.0/issue/create.json
vendored
Normal file
73
packages/nodes-base/nodes/Linear/__schema__/v1.0.0/issue/create.json
vendored
Normal file
@@ -0,0 +1,73 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"identifier": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"priority": {
|
||||
"type": "integer"
|
||||
},
|
||||
"archivedAt": {
|
||||
"type": "null"
|
||||
},
|
||||
"state": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"creator": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"displayName"
|
||||
]
|
||||
},
|
||||
"dueDate": {
|
||||
"type": "null"
|
||||
},
|
||||
"cycle": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"identifier",
|
||||
"title",
|
||||
"priority",
|
||||
"archivedAt",
|
||||
"assignee",
|
||||
"state",
|
||||
"createdAt",
|
||||
"creator",
|
||||
"description",
|
||||
"dueDate",
|
||||
"cycle"
|
||||
]
|
||||
}
|
||||
67
packages/nodes-base/nodes/Linear/__schema__/v1.0.0/issue/get.json
vendored
Normal file
67
packages/nodes-base/nodes/Linear/__schema__/v1.0.0/issue/get.json
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"identifier": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"priority": {
|
||||
"type": "integer"
|
||||
},
|
||||
"archivedAt": {
|
||||
"type": "null"
|
||||
},
|
||||
"state": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
},
|
||||
"creator": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"displayName"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"identifier",
|
||||
"title",
|
||||
"priority",
|
||||
"archivedAt",
|
||||
"assignee",
|
||||
"state",
|
||||
"createdAt",
|
||||
"creator",
|
||||
"description",
|
||||
"dueDate",
|
||||
"cycle"
|
||||
]
|
||||
}
|
||||
51
packages/nodes-base/nodes/Linear/__schema__/v1.0.0/issue/getAll.json
vendored
Normal file
51
packages/nodes-base/nodes/Linear/__schema__/v1.0.0/issue/getAll.json
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"identifier": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"priority": {
|
||||
"type": "integer"
|
||||
},
|
||||
"archivedAt": {
|
||||
"type": "null"
|
||||
},
|
||||
"state": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name"
|
||||
]
|
||||
},
|
||||
"createdAt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"title",
|
||||
"priority",
|
||||
"archivedAt",
|
||||
"assignee",
|
||||
"state",
|
||||
"createdAt",
|
||||
"creator",
|
||||
"description",
|
||||
"dueDate",
|
||||
"cycle"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user