mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat: Generate Schema Files - 18113073 (no-changelog) (#12927)
Co-authored-by: Elias Meire <elias@meire.dev>
This commit is contained in:
38
packages/nodes-base/nodes/Gitlab/__schema__/v1.0.0/file/get.json
vendored
Normal file
38
packages/nodes-base/nodes/Gitlab/__schema__/v1.0.0/file/get.json
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"file_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"file_path": {
|
||||
"type": "string"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer"
|
||||
},
|
||||
"encoding": {
|
||||
"type": "string"
|
||||
},
|
||||
"content_sha256": {
|
||||
"type": "string"
|
||||
},
|
||||
"ref": {
|
||||
"type": "string"
|
||||
},
|
||||
"blob_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"commit_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_commit_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"execute_filemode": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"content": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
27
packages/nodes-base/nodes/Gitlab/__schema__/v1.0.0/file/list.json
vendored
Normal file
27
packages/nodes-base/nodes/Gitlab/__schema__/v1.0.0/file/list.json
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"path": {
|
||||
"type": "string"
|
||||
},
|
||||
"mode": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"type",
|
||||
"path",
|
||||
"mode"
|
||||
]
|
||||
}
|
||||
255
packages/nodes-base/nodes/Gitlab/__schema__/v1.0.0/issue/create.json
vendored
Normal file
255
packages/nodes-base/nodes/Gitlab/__schema__/v1.0.0/issue/create.json
vendored
Normal file
@@ -0,0 +1,255 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"iid": {
|
||||
"type": "integer"
|
||||
},
|
||||
"project_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"closed_at": {
|
||||
"type": "null"
|
||||
},
|
||||
"closed_by": {
|
||||
"type": "null"
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"milestone": {
|
||||
"type": "null"
|
||||
},
|
||||
"assignees": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"locked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"web_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"name",
|
||||
"state",
|
||||
"locked",
|
||||
"avatar_url",
|
||||
"web_url"
|
||||
]
|
||||
}
|
||||
},
|
||||
"author": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"locked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"web_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"name",
|
||||
"state",
|
||||
"locked",
|
||||
"avatar_url",
|
||||
"web_url"
|
||||
]
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_notes_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"merge_requests_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"upvotes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"downvotes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"confidential": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"discussion_locked": {
|
||||
"type": "null"
|
||||
},
|
||||
"issue_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"web_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"time_stats": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"time_estimate": {
|
||||
"type": "integer"
|
||||
},
|
||||
"total_time_spent": {
|
||||
"type": "integer"
|
||||
},
|
||||
"human_time_estimate": {
|
||||
"type": "null"
|
||||
},
|
||||
"human_total_time_spent": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"time_estimate",
|
||||
"total_time_spent",
|
||||
"human_time_estimate",
|
||||
"human_total_time_spent"
|
||||
]
|
||||
},
|
||||
"task_completion_status": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"completed_count": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"count",
|
||||
"completed_count"
|
||||
]
|
||||
},
|
||||
"weight": {
|
||||
"type": "null"
|
||||
},
|
||||
"blocking_issues_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"has_tasks": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"task_status": {
|
||||
"type": "string"
|
||||
},
|
||||
"_links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"self": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"award_emoji": {
|
||||
"type": "string"
|
||||
},
|
||||
"project": {
|
||||
"type": "string"
|
||||
},
|
||||
"closed_as_duplicate_of": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"self",
|
||||
"notes",
|
||||
"award_emoji",
|
||||
"project",
|
||||
"closed_as_duplicate_of"
|
||||
]
|
||||
},
|
||||
"references": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"short": {
|
||||
"type": "string"
|
||||
},
|
||||
"relative": {
|
||||
"type": "string"
|
||||
},
|
||||
"full": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"short",
|
||||
"relative",
|
||||
"full"
|
||||
]
|
||||
},
|
||||
"severity": {
|
||||
"type": "string"
|
||||
},
|
||||
"subscribed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"moved_to_id": {
|
||||
"type": "null"
|
||||
},
|
||||
"service_desk_reply_to": {
|
||||
"type": "null"
|
||||
},
|
||||
"epic_iid": {
|
||||
"type": "null"
|
||||
},
|
||||
"epic": {
|
||||
"type": "null"
|
||||
},
|
||||
"iteration": {
|
||||
"type": "null"
|
||||
}
|
||||
}
|
||||
}
|
||||
270
packages/nodes-base/nodes/Gitlab/__schema__/v1.0.0/issue/get.json
vendored
Normal file
270
packages/nodes-base/nodes/Gitlab/__schema__/v1.0.0/issue/get.json
vendored
Normal file
@@ -0,0 +1,270 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"iid": {
|
||||
"type": "integer"
|
||||
},
|
||||
"project_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"assignees": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"locked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"web_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"name",
|
||||
"state",
|
||||
"locked",
|
||||
"avatar_url",
|
||||
"web_url"
|
||||
]
|
||||
}
|
||||
},
|
||||
"author": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"locked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"web_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"name",
|
||||
"state",
|
||||
"locked",
|
||||
"avatar_url",
|
||||
"web_url"
|
||||
]
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_notes_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"merge_requests_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"upvotes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"downvotes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"confidential": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"issue_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"web_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"time_stats": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"time_estimate": {
|
||||
"type": "integer"
|
||||
},
|
||||
"total_time_spent": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"time_estimate",
|
||||
"total_time_spent",
|
||||
"human_time_estimate",
|
||||
"human_total_time_spent"
|
||||
]
|
||||
},
|
||||
"task_completion_status": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"completed_count": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"count",
|
||||
"completed_count"
|
||||
]
|
||||
},
|
||||
"blocking_issues_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"has_tasks": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"task_status": {
|
||||
"type": "string"
|
||||
},
|
||||
"_links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"self": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"award_emoji": {
|
||||
"type": "string"
|
||||
},
|
||||
"project": {
|
||||
"type": "string"
|
||||
},
|
||||
"closed_as_duplicate_of": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"self",
|
||||
"notes",
|
||||
"award_emoji",
|
||||
"project",
|
||||
"closed_as_duplicate_of"
|
||||
]
|
||||
},
|
||||
"references": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"short": {
|
||||
"type": "string"
|
||||
},
|
||||
"relative": {
|
||||
"type": "string"
|
||||
},
|
||||
"full": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"short",
|
||||
"relative",
|
||||
"full"
|
||||
]
|
||||
},
|
||||
"severity": {
|
||||
"type": "string"
|
||||
},
|
||||
"moved_to_id": {
|
||||
"type": "null"
|
||||
},
|
||||
"imported": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"imported_from": {
|
||||
"type": "string"
|
||||
},
|
||||
"service_desk_reply_to": {
|
||||
"type": "null"
|
||||
},
|
||||
"subscribed": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"iid",
|
||||
"project_id",
|
||||
"title",
|
||||
"description",
|
||||
"state",
|
||||
"created_at",
|
||||
"updated_at",
|
||||
"closed_at",
|
||||
"closed_by",
|
||||
"labels",
|
||||
"milestone",
|
||||
"assignees",
|
||||
"author",
|
||||
"type",
|
||||
"assignee",
|
||||
"user_notes_count",
|
||||
"merge_requests_count",
|
||||
"upvotes",
|
||||
"downvotes",
|
||||
"due_date",
|
||||
"confidential",
|
||||
"discussion_locked",
|
||||
"issue_type",
|
||||
"web_url",
|
||||
"time_stats",
|
||||
"task_completion_status",
|
||||
"blocking_issues_count",
|
||||
"has_tasks",
|
||||
"_links",
|
||||
"references",
|
||||
"severity",
|
||||
"moved_to_id",
|
||||
"service_desk_reply_to"
|
||||
]
|
||||
}
|
||||
410
packages/nodes-base/nodes/Gitlab/__schema__/v1.0.0/repository/get.json
vendored
Normal file
410
packages/nodes-base/nodes/Gitlab/__schema__/v1.0.0/repository/get.json
vendored
Normal file
@@ -0,0 +1,410 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"name_with_namespace": {
|
||||
"type": "string"
|
||||
},
|
||||
"path": {
|
||||
"type": "string"
|
||||
},
|
||||
"path_with_namespace": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"default_branch": {
|
||||
"type": "string"
|
||||
},
|
||||
"ssh_url_to_repo": {
|
||||
"type": "string"
|
||||
},
|
||||
"http_url_to_repo": {
|
||||
"type": "string"
|
||||
},
|
||||
"web_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"readme_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"forks_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"star_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"last_activity_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"namespace": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"path": {
|
||||
"type": "string"
|
||||
},
|
||||
"kind": {
|
||||
"type": "string"
|
||||
},
|
||||
"full_path": {
|
||||
"type": "string"
|
||||
},
|
||||
"web_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"path",
|
||||
"kind",
|
||||
"full_path",
|
||||
"parent_id",
|
||||
"avatar_url",
|
||||
"web_url"
|
||||
]
|
||||
},
|
||||
"container_registry_image_prefix": {
|
||||
"type": "string"
|
||||
},
|
||||
"_links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"self": {
|
||||
"type": "string"
|
||||
},
|
||||
"issues": {
|
||||
"type": "string"
|
||||
},
|
||||
"merge_requests": {
|
||||
"type": "string"
|
||||
},
|
||||
"repo_branches": {
|
||||
"type": "string"
|
||||
},
|
||||
"labels": {
|
||||
"type": "string"
|
||||
},
|
||||
"events": {
|
||||
"type": "string"
|
||||
},
|
||||
"members": {
|
||||
"type": "string"
|
||||
},
|
||||
"cluster_agents": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"self"
|
||||
]
|
||||
},
|
||||
"packages_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"empty_repo": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"visibility": {
|
||||
"type": "string"
|
||||
},
|
||||
"resolve_outdated_diff_discussions": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"container_expiration_policy": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"cadence": {
|
||||
"type": "string"
|
||||
},
|
||||
"enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"older_than": {
|
||||
"type": "string"
|
||||
},
|
||||
"name_regex": {
|
||||
"type": "string"
|
||||
},
|
||||
"name_regex_keep": {
|
||||
"type": "null"
|
||||
},
|
||||
"next_run_at": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"cadence",
|
||||
"enabled",
|
||||
"keep_n",
|
||||
"older_than",
|
||||
"name_regex",
|
||||
"name_regex_keep",
|
||||
"next_run_at"
|
||||
]
|
||||
},
|
||||
"repository_object_format": {
|
||||
"type": "string"
|
||||
},
|
||||
"issues_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"merge_requests_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"wiki_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"jobs_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"snippets_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"container_registry_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"service_desk_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"can_create_merge_request_in": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"issues_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"repository_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"merge_requests_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"forking_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"wiki_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"builds_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"snippets_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"pages_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"analytics_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"container_registry_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"security_and_compliance_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"releases_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"environments_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"feature_flags_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"infrastructure_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"monitor_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"model_experiments_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"model_registry_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"emails_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"shared_runners_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"lfs_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"creator_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"import_status": {
|
||||
"type": "string"
|
||||
},
|
||||
"import_error": {
|
||||
"type": "null"
|
||||
},
|
||||
"open_issues_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"description_html": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"ci_delete_pipelines_in_seconds": {
|
||||
"type": "null"
|
||||
},
|
||||
"ci_forward_deployment_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ci_forward_deployment_rollback_allowed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ci_job_token_scope_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ci_separated_caches": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ci_allow_fork_pipelines_to_run_in_parent_project": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ci_id_token_sub_claim_components": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"build_git_strategy": {
|
||||
"type": "string"
|
||||
},
|
||||
"keep_latest_artifact": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"restrict_user_defined_variables": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ci_pipeline_variables_minimum_override_role": {
|
||||
"type": "string"
|
||||
},
|
||||
"runner_token_expiration_interval": {
|
||||
"type": "null"
|
||||
},
|
||||
"group_runners_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"auto_cancel_pending_pipelines": {
|
||||
"type": "string"
|
||||
},
|
||||
"build_timeout": {
|
||||
"type": "integer"
|
||||
},
|
||||
"auto_devops_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"auto_devops_deploy_strategy": {
|
||||
"type": "string"
|
||||
},
|
||||
"ci_push_repository_for_job_token_allowed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"public_jobs": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"shared_with_groups": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"group_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"group_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"group_full_path": {
|
||||
"type": "string"
|
||||
},
|
||||
"group_access_level": {
|
||||
"type": "integer"
|
||||
},
|
||||
"expires_at": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"group_id",
|
||||
"group_name",
|
||||
"group_full_path",
|
||||
"group_access_level",
|
||||
"expires_at"
|
||||
]
|
||||
}
|
||||
},
|
||||
"only_allow_merge_if_pipeline_succeeds": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"request_access_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"only_allow_merge_if_all_discussions_are_resolved": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"remove_source_branch_after_merge": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"printing_merge_request_link_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"merge_method": {
|
||||
"type": "string"
|
||||
},
|
||||
"squash_option": {
|
||||
"type": "string"
|
||||
},
|
||||
"enforce_auth_checks_on_uploads": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"squash_commit_template": {
|
||||
"type": "null"
|
||||
},
|
||||
"warn_about_potentially_unwanted_characters": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"autoclose_referenced_issues": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"requirements_enabled": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"requirements_access_level": {
|
||||
"type": "string"
|
||||
},
|
||||
"security_and_compliance_enabled": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"description",
|
||||
"created_at",
|
||||
"web_url",
|
||||
"_links",
|
||||
"updated_at"
|
||||
]
|
||||
}
|
||||
258
packages/nodes-base/nodes/Gitlab/__schema__/v1.0.0/repository/getIssues.json
vendored
Normal file
258
packages/nodes-base/nodes/Gitlab/__schema__/v1.0.0/repository/getIssues.json
vendored
Normal file
@@ -0,0 +1,258 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"iid": {
|
||||
"type": "integer"
|
||||
},
|
||||
"project_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"created_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated_at": {
|
||||
"type": "string"
|
||||
},
|
||||
"labels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"assignees": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"web_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"name",
|
||||
"state",
|
||||
"avatar_url",
|
||||
"web_url"
|
||||
]
|
||||
}
|
||||
},
|
||||
"author": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"state": {
|
||||
"type": "string"
|
||||
},
|
||||
"avatar_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"web_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"username",
|
||||
"name",
|
||||
"state",
|
||||
"avatar_url",
|
||||
"web_url"
|
||||
]
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_notes_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"merge_requests_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"upvotes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"downvotes": {
|
||||
"type": "integer"
|
||||
},
|
||||
"confidential": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"discussion_locked": {
|
||||
"type": "null"
|
||||
},
|
||||
"issue_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"web_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"time_stats": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"time_estimate": {
|
||||
"type": "integer"
|
||||
},
|
||||
"total_time_spent": {
|
||||
"type": "integer"
|
||||
},
|
||||
"human_time_estimate": {
|
||||
"type": "null"
|
||||
},
|
||||
"human_total_time_spent": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"time_estimate",
|
||||
"total_time_spent",
|
||||
"human_time_estimate",
|
||||
"human_total_time_spent"
|
||||
]
|
||||
},
|
||||
"task_completion_status": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"completed_count": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"count",
|
||||
"completed_count"
|
||||
]
|
||||
},
|
||||
"has_tasks": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"task_status": {
|
||||
"type": "string"
|
||||
},
|
||||
"_links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"self": {
|
||||
"type": "string"
|
||||
},
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
"award_emoji": {
|
||||
"type": "string"
|
||||
},
|
||||
"project": {
|
||||
"type": "string"
|
||||
},
|
||||
"closed_as_duplicate_of": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"self",
|
||||
"notes",
|
||||
"award_emoji",
|
||||
"project",
|
||||
"closed_as_duplicate_of"
|
||||
]
|
||||
},
|
||||
"references": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"short": {
|
||||
"type": "string"
|
||||
},
|
||||
"relative": {
|
||||
"type": "string"
|
||||
},
|
||||
"full": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"short",
|
||||
"relative",
|
||||
"full"
|
||||
]
|
||||
},
|
||||
"severity": {
|
||||
"type": "string"
|
||||
},
|
||||
"moved_to_id": {
|
||||
"type": "null"
|
||||
},
|
||||
"service_desk_reply_to": {
|
||||
"type": "null"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"iid",
|
||||
"project_id",
|
||||
"title",
|
||||
"description",
|
||||
"state",
|
||||
"created_at",
|
||||
"updated_at",
|
||||
"closed_at",
|
||||
"closed_by",
|
||||
"labels",
|
||||
"milestone",
|
||||
"assignees",
|
||||
"author",
|
||||
"type",
|
||||
"assignee",
|
||||
"user_notes_count",
|
||||
"merge_requests_count",
|
||||
"upvotes",
|
||||
"downvotes",
|
||||
"due_date",
|
||||
"confidential",
|
||||
"discussion_locked",
|
||||
"issue_type",
|
||||
"web_url",
|
||||
"time_stats",
|
||||
"task_completion_status",
|
||||
"has_tasks",
|
||||
"_links",
|
||||
"references",
|
||||
"severity",
|
||||
"moved_to_id",
|
||||
"service_desk_reply_to"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user