mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
chore: NODE-2547 - Generate Schema Files (no-changelog) (#13873)
This commit is contained in:
@@ -114,5 +114,6 @@
|
||||
"priority": {
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -111,11 +111,71 @@
|
||||
"last_set"
|
||||
]
|
||||
},
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"canvas": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"file_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_empty": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"quip_thread_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"file_id",
|
||||
"quip_thread_id"
|
||||
]
|
||||
},
|
||||
"tabs": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"label": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"label",
|
||||
"id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"tabz": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"previous_names": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -129,6 +129,42 @@
|
||||
"quip_thread_id"
|
||||
]
|
||||
},
|
||||
"tabs": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"label": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"label",
|
||||
"id"
|
||||
]
|
||||
}
|
||||
},
|
||||
"tabz": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"use_case": {
|
||||
"type": "string"
|
||||
}
|
||||
@@ -152,5 +188,6 @@
|
||||
"is_org_shared",
|
||||
"context_team_id",
|
||||
"updated"
|
||||
]
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -4,38 +4,20 @@
|
||||
"user": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"ts": {
|
||||
"type": "string"
|
||||
},
|
||||
"thread_ts": {
|
||||
"client_msg_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"reply_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"reply_users_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"latest_reply": {
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"reply_users": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"is_locked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"subscribed": {
|
||||
"type": "boolean"
|
||||
"team": {
|
||||
"type": "string"
|
||||
},
|
||||
"blocks": {
|
||||
"type": "array",
|
||||
@@ -66,6 +48,17 @@
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"style": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"bold": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
@@ -86,11 +79,14 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"client_msg_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"team": {
|
||||
"subtype": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"ts",
|
||||
"text"
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -1,121 +1,9 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"error": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_channel": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_group": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_im": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_mpim": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_private": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"created": {
|
||||
"type": "integer"
|
||||
},
|
||||
"is_archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_general": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"unlinked": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name_normalized": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_shared": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_org_shared": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_pending_ext_shared": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"context_team_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated": {
|
||||
"type": "integer"
|
||||
},
|
||||
"parent_conversation": {
|
||||
"type": "null"
|
||||
},
|
||||
"creator": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_ext_shared": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"shared_team_ids": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"is_member": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"last_read": {
|
||||
"type": "string"
|
||||
},
|
||||
"topic": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"creator": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_set": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"creator",
|
||||
"last_set"
|
||||
]
|
||||
},
|
||||
"purpose": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"creator": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_set": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"creator",
|
||||
"last_set"
|
||||
]
|
||||
},
|
||||
"previous_names": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
|
||||
149
packages/nodes-base/nodes/Slack/__schema__/v2.3.0/channel/join.json
vendored
Normal file
149
packages/nodes-base/nodes/Slack/__schema__/v2.3.0/channel/join.json
vendored
Normal file
@@ -0,0 +1,149 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_channel": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_group": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_im": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_mpim": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_private": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"created": {
|
||||
"type": "integer"
|
||||
},
|
||||
"is_archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_general": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"unlinked": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name_normalized": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_shared": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_org_shared": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_pending_ext_shared": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"context_team_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated": {
|
||||
"type": "integer"
|
||||
},
|
||||
"parent_conversation": {
|
||||
"type": "null"
|
||||
},
|
||||
"creator": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_ext_shared": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"shared_team_ids": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"is_member": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"topic": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"creator": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_set": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"creator",
|
||||
"last_set"
|
||||
]
|
||||
},
|
||||
"purpose": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"creator": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_set": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"creator",
|
||||
"last_set"
|
||||
]
|
||||
},
|
||||
"previous_names": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"is_channel",
|
||||
"is_group",
|
||||
"is_im",
|
||||
"is_mpim",
|
||||
"is_private",
|
||||
"created",
|
||||
"is_archived",
|
||||
"is_general",
|
||||
"unlinked",
|
||||
"name_normalized",
|
||||
"is_shared",
|
||||
"is_org_shared",
|
||||
"is_pending_ext_shared",
|
||||
"pending_shared",
|
||||
"context_team_id",
|
||||
"updated",
|
||||
"parent_conversation",
|
||||
"creator",
|
||||
"is_ext_shared",
|
||||
"shared_team_ids",
|
||||
"pending_connected_team_ids",
|
||||
"is_member",
|
||||
"topic",
|
||||
"purpose",
|
||||
"previous_names",
|
||||
"priority"
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
@@ -1,192 +1,9 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"team_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"color": {
|
||||
"type": "string"
|
||||
},
|
||||
"real_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"tz": {
|
||||
"type": "string"
|
||||
},
|
||||
"tz_label": {
|
||||
"type": "string"
|
||||
},
|
||||
"tz_offset": {
|
||||
"type": "integer"
|
||||
},
|
||||
"profile": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"phone": {
|
||||
"type": "string"
|
||||
},
|
||||
"skype": {
|
||||
"type": "string"
|
||||
},
|
||||
"real_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"real_name_normalized": {
|
||||
"type": "string"
|
||||
},
|
||||
"display_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"display_name_normalized": {
|
||||
"type": "string"
|
||||
},
|
||||
"fields": {
|
||||
"type": "null"
|
||||
},
|
||||
"status_text": {
|
||||
"type": "string"
|
||||
},
|
||||
"status_emoji": {
|
||||
"type": "string"
|
||||
},
|
||||
"status_emoji_display_info": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"emoji_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"display_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"unicode": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"emoji_name",
|
||||
"display_url",
|
||||
"unicode"
|
||||
]
|
||||
}
|
||||
},
|
||||
"status_expiration": {
|
||||
"type": "integer"
|
||||
},
|
||||
"avatar_hash": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"first_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_24": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_32": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_48": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_72": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_192": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_512": {
|
||||
"type": "string"
|
||||
},
|
||||
"status_text_canonical": {
|
||||
"type": "string"
|
||||
},
|
||||
"team": {
|
||||
"type": "string"
|
||||
},
|
||||
"api_app_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"always_active": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"bot_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"title",
|
||||
"phone",
|
||||
"skype",
|
||||
"real_name",
|
||||
"real_name_normalized",
|
||||
"display_name",
|
||||
"display_name_normalized",
|
||||
"fields",
|
||||
"status_text",
|
||||
"status_emoji",
|
||||
"status_emoji_display_info",
|
||||
"status_expiration",
|
||||
"avatar_hash",
|
||||
"first_name",
|
||||
"last_name",
|
||||
"image_24",
|
||||
"image_32",
|
||||
"image_48",
|
||||
"image_72",
|
||||
"image_192",
|
||||
"image_512",
|
||||
"status_text_canonical",
|
||||
"team"
|
||||
]
|
||||
},
|
||||
"is_admin": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_owner": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_primary_owner": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_restricted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_ultra_restricted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_bot": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_app_user": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"updated": {
|
||||
"type": "integer"
|
||||
},
|
||||
"is_email_confirmed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"who_can_share_contact_card": {
|
||||
"member": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"text": {
|
||||
"user": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
@@ -10,9 +10,39 @@
|
||||
"ts": {
|
||||
"type": "string"
|
||||
},
|
||||
"client_msg_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"team": {
|
||||
"type": "string"
|
||||
},
|
||||
"thread_ts": {
|
||||
"type": "string"
|
||||
},
|
||||
"reply_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"reply_users_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"latest_reply": {
|
||||
"type": "string"
|
||||
},
|
||||
"reply_users": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"is_locked": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"subscribed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"blocks": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
@@ -62,14 +92,71 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"user": {
|
||||
"bot_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"client_msg_id": {
|
||||
"app_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"team": {
|
||||
"bot_profile": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"deleted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated": {
|
||||
"type": "integer"
|
||||
},
|
||||
"app_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"icons": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"image_36": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_48": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_72": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"image_36",
|
||||
"image_48",
|
||||
"image_72"
|
||||
]
|
||||
},
|
||||
"team_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"deleted",
|
||||
"name",
|
||||
"updated",
|
||||
"app_id",
|
||||
"icons",
|
||||
"team_id"
|
||||
]
|
||||
},
|
||||
"parent_user_id": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"ts",
|
||||
"text"
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
147
packages/nodes-base/nodes/Slack/__schema__/v2.3.0/channel/setTopic.json
vendored
Normal file
147
packages/nodes-base/nodes/Slack/__schema__/v2.3.0/channel/setTopic.json
vendored
Normal file
@@ -0,0 +1,147 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_channel": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_group": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_im": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_mpim": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_private": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"created": {
|
||||
"type": "integer"
|
||||
},
|
||||
"is_archived": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_general": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"unlinked": {
|
||||
"type": "integer"
|
||||
},
|
||||
"name_normalized": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_shared": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_org_shared": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"is_pending_ext_shared": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"context_team_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"updated": {
|
||||
"type": "integer"
|
||||
},
|
||||
"parent_conversation": {
|
||||
"type": "null"
|
||||
},
|
||||
"creator": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_ext_shared": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"shared_team_ids": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"is_member": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"topic": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"creator": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_set": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"creator",
|
||||
"last_set"
|
||||
]
|
||||
},
|
||||
"purpose": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"creator": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_set": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"creator",
|
||||
"last_set"
|
||||
]
|
||||
},
|
||||
"previous_names": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"is_channel",
|
||||
"is_group",
|
||||
"is_im",
|
||||
"is_mpim",
|
||||
"is_private",
|
||||
"created",
|
||||
"is_archived",
|
||||
"is_general",
|
||||
"unlinked",
|
||||
"name_normalized",
|
||||
"is_shared",
|
||||
"is_org_shared",
|
||||
"is_pending_ext_shared",
|
||||
"pending_shared",
|
||||
"context_team_id",
|
||||
"updated",
|
||||
"parent_conversation",
|
||||
"creator",
|
||||
"is_ext_shared",
|
||||
"shared_team_ids",
|
||||
"pending_connected_team_ids",
|
||||
"is_member",
|
||||
"topic",
|
||||
"purpose"
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
@@ -58,12 +58,32 @@
|
||||
"username": {
|
||||
"type": "string"
|
||||
},
|
||||
"transcription": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"status": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"status"
|
||||
]
|
||||
},
|
||||
"url_private": {
|
||||
"type": "string"
|
||||
},
|
||||
"url_private_download": {
|
||||
"type": "string"
|
||||
},
|
||||
"duration_ms": {
|
||||
"type": "integer"
|
||||
},
|
||||
"audio_wave_samples": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"media_display_type": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -106,5 +126,6 @@
|
||||
"comments_count": {
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -64,6 +64,9 @@
|
||||
"url_private_download": {
|
||||
"type": "string"
|
||||
},
|
||||
"media_display_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"permalink": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -73,6 +76,12 @@
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"groups": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"ims": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
@@ -81,37 +90,7 @@
|
||||
},
|
||||
"comments_count": {
|
||||
"type": "integer"
|
||||
},
|
||||
"media_display_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"created",
|
||||
"timestamp",
|
||||
"name",
|
||||
"title",
|
||||
"mimetype",
|
||||
"filetype",
|
||||
"pretty_type",
|
||||
"user",
|
||||
"user_team",
|
||||
"editable",
|
||||
"size",
|
||||
"mode",
|
||||
"is_external",
|
||||
"external_type",
|
||||
"is_public",
|
||||
"public_url_shared",
|
||||
"display_as_bot",
|
||||
"username",
|
||||
"url_private",
|
||||
"url_private_download",
|
||||
"permalink",
|
||||
"channels",
|
||||
"groups",
|
||||
"ims",
|
||||
"comments_count"
|
||||
]
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -79,6 +79,18 @@
|
||||
"is_starred": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"channels": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"groups": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"has_more_shares": {
|
||||
"type": "boolean"
|
||||
},
|
||||
@@ -88,5 +100,6 @@
|
||||
"file_access": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -10,5 +10,6 @@
|
||||
"message_timestamp": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
|
||||
15
packages/nodes-base/nodes/Slack/__schema__/v2.3.0/message/getPermalink.json
vendored
Normal file
15
packages/nodes-base/nodes/Slack/__schema__/v2.3.0/message/getPermalink.json
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ok": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"permalink": {
|
||||
"type": "string"
|
||||
},
|
||||
"channel": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
@@ -112,9 +112,6 @@
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"style": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -122,6 +119,9 @@
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
@@ -155,10 +155,5 @@
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"ok",
|
||||
"channel",
|
||||
"message",
|
||||
"message_timestamp"
|
||||
]
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -7,9 +7,6 @@
|
||||
"team": {
|
||||
"type": "string"
|
||||
},
|
||||
"score": {
|
||||
"type": "integer"
|
||||
},
|
||||
"channel": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -96,16 +93,10 @@
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"unicode": {
|
||||
"user_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
@@ -137,16 +128,5 @@
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"iid",
|
||||
"team",
|
||||
"score",
|
||||
"channel",
|
||||
"type",
|
||||
"user",
|
||||
"username",
|
||||
"ts",
|
||||
"text",
|
||||
"permalink"
|
||||
]
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -136,22 +136,10 @@
|
||||
"bold": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"italic"
|
||||
]
|
||||
}
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"unicode": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
@@ -174,16 +162,15 @@
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"user",
|
||||
"type",
|
||||
"edited",
|
||||
"text",
|
||||
"team",
|
||||
"blocks"
|
||||
]
|
||||
},
|
||||
"message_timestamp": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -4,5 +4,6 @@
|
||||
"ok": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -13,24 +13,24 @@
|
||||
"user": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"ts": {
|
||||
"type": "string"
|
||||
},
|
||||
"permalink": {
|
||||
"type": "string"
|
||||
},
|
||||
"client_msg_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"team": {
|
||||
"type": "string"
|
||||
},
|
||||
"thread_ts": {
|
||||
"type": "string"
|
||||
},
|
||||
"blocks": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
@@ -58,40 +58,9 @@
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"user_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"elements": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"text": {
|
||||
"type": "string"
|
||||
},
|
||||
"style": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"bold": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"bold"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type"
|
||||
]
|
||||
}
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
@@ -138,27 +107,17 @@
|
||||
"count"
|
||||
]
|
||||
}
|
||||
},
|
||||
"permalink": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"ts",
|
||||
"text",
|
||||
"blocks",
|
||||
"reactions"
|
||||
"type",
|
||||
"ts"
|
||||
]
|
||||
},
|
||||
"channel": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"ok",
|
||||
"type",
|
||||
"message",
|
||||
"channel"
|
||||
]
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -75,8 +75,7 @@
|
||||
},
|
||||
"required": [
|
||||
"emoji_name",
|
||||
"display_url",
|
||||
"unicode"
|
||||
"display_url"
|
||||
]
|
||||
}
|
||||
},
|
||||
@@ -133,12 +132,6 @@
|
||||
},
|
||||
"image_1024": {
|
||||
"type": "string"
|
||||
},
|
||||
"api_app_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"bot_id": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
@@ -205,5 +198,6 @@
|
||||
"is_bot",
|
||||
"is_app_user",
|
||||
"updated"
|
||||
]
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ok": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"presence": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"ok",
|
||||
"presence"
|
||||
]
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ok": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"presence": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"ok",
|
||||
"presence"
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -45,7 +45,8 @@
|
||||
},
|
||||
"required": [
|
||||
"emoji_name",
|
||||
"display_url"
|
||||
"display_url",
|
||||
"unicode"
|
||||
]
|
||||
}
|
||||
},
|
||||
@@ -55,9 +56,21 @@
|
||||
"avatar_hash": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_original": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_custom_image": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"huddle_state": {
|
||||
"type": "string"
|
||||
},
|
||||
"huddle_state_expiration_ts": {
|
||||
"type": "integer"
|
||||
},
|
||||
"first_name": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -82,23 +95,11 @@
|
||||
"image_512": {
|
||||
"type": "string"
|
||||
},
|
||||
"status_text_canonical": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_original": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_custom_image": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"image_1024": {
|
||||
"type": "string"
|
||||
},
|
||||
"huddle_state": {
|
||||
"status_text_canonical": {
|
||||
"type": "string"
|
||||
},
|
||||
"huddle_state_expiration_ts": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
@@ -115,6 +116,8 @@
|
||||
"status_emoji_display_info",
|
||||
"status_expiration",
|
||||
"avatar_hash",
|
||||
"first_name",
|
||||
"last_name",
|
||||
"image_24",
|
||||
"image_32",
|
||||
"image_48",
|
||||
@@ -122,5 +125,6 @@
|
||||
"image_192",
|
||||
"image_512",
|
||||
"status_text_canonical"
|
||||
]
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
@@ -52,9 +52,6 @@
|
||||
"display_name_normalized": {
|
||||
"type": "string"
|
||||
},
|
||||
"fields": {
|
||||
"type": "null"
|
||||
},
|
||||
"status_text": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -95,12 +92,6 @@
|
||||
"is_custom_image": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"huddle_state": {
|
||||
"type": "string"
|
||||
},
|
||||
"huddle_state_expiration_ts": {
|
||||
"type": "integer"
|
||||
},
|
||||
"first_name": {
|
||||
"type": "string"
|
||||
},
|
||||
@@ -149,8 +140,6 @@
|
||||
"status_emoji_display_info",
|
||||
"status_expiration",
|
||||
"avatar_hash",
|
||||
"first_name",
|
||||
"last_name",
|
||||
"image_24",
|
||||
"image_32",
|
||||
"image_48",
|
||||
@@ -188,9 +177,6 @@
|
||||
"is_email_confirmed": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"has_2fa": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"who_can_share_contact_card": {
|
||||
"type": "string"
|
||||
}
|
||||
@@ -204,5 +190,6 @@
|
||||
"is_bot",
|
||||
"is_app_user",
|
||||
"updated"
|
||||
]
|
||||
],
|
||||
"version": 1
|
||||
}
|
||||
|
||||
308
packages/nodes-base/nodes/Slack/__schema__/v2.3.0/user/updateProfile.json
vendored
Normal file
308
packages/nodes-base/nodes/Slack/__schema__/v2.3.0/user/updateProfile.json
vendored
Normal file
@@ -0,0 +1,308 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
"phone": {
|
||||
"type": "string"
|
||||
},
|
||||
"skype": {
|
||||
"type": "string"
|
||||
},
|
||||
"real_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"real_name_normalized": {
|
||||
"type": "string"
|
||||
},
|
||||
"display_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"display_name_normalized": {
|
||||
"type": "string"
|
||||
},
|
||||
"fields": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Xf03UMDX9738": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"alt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"alt"
|
||||
]
|
||||
},
|
||||
"Xf0403NW3YCQ": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"alt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"alt"
|
||||
]
|
||||
},
|
||||
"Xf03UR35L6MT": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"alt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"alt"
|
||||
]
|
||||
},
|
||||
"Xf03UMDX98DC": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"alt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"alt"
|
||||
]
|
||||
},
|
||||
"Xf03V6LREDCZ": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"alt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"alt"
|
||||
]
|
||||
},
|
||||
"Xf03UU2E8W4S": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"alt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"alt"
|
||||
]
|
||||
},
|
||||
"Xf05GWG5K0S0": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"alt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"alt"
|
||||
]
|
||||
},
|
||||
"Xf08BT55JWBG": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"alt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"alt"
|
||||
]
|
||||
},
|
||||
"Xf08BWUCR1LM": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"alt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"alt"
|
||||
]
|
||||
},
|
||||
"Xf03UWFR6VJQ": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"alt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"alt"
|
||||
]
|
||||
},
|
||||
"Xf03UR35L7K7": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"alt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"alt"
|
||||
]
|
||||
},
|
||||
"Xf08FLSF1456": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"alt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"alt"
|
||||
]
|
||||
},
|
||||
"Xf03UTUL86LB": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"value": {
|
||||
"type": "string"
|
||||
},
|
||||
"alt": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"value",
|
||||
"alt"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"status_text": {
|
||||
"type": "string"
|
||||
},
|
||||
"status_emoji": {
|
||||
"type": "string"
|
||||
},
|
||||
"status_emoji_display_info": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"emoji_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"display_url": {
|
||||
"type": "string"
|
||||
},
|
||||
"unicode": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"emoji_name",
|
||||
"display_url"
|
||||
]
|
||||
}
|
||||
},
|
||||
"status_expiration": {
|
||||
"type": "integer"
|
||||
},
|
||||
"avatar_hash": {
|
||||
"type": "string"
|
||||
},
|
||||
"start_date": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_original": {
|
||||
"type": "string"
|
||||
},
|
||||
"is_custom_image": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"huddle_state": {
|
||||
"type": "string"
|
||||
},
|
||||
"huddle_state_expiration_ts": {
|
||||
"type": "integer"
|
||||
},
|
||||
"first_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"last_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_24": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_32": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_48": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_72": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_192": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_512": {
|
||||
"type": "string"
|
||||
},
|
||||
"image_1024": {
|
||||
"type": "string"
|
||||
},
|
||||
"status_text_canonical": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"version": 1
|
||||
}
|
||||
Reference in New Issue
Block a user