chore: NODE-3065 - Generate Schema Files (no-changelog) (#15893)

This commit is contained in:
Jon
2025-06-03 22:17:50 +01:00
committed by GitHub
parent f8c9038c10
commit 7639cfbaa7
76 changed files with 1953 additions and 977 deletions

View File

@@ -1,9 +1,6 @@
{
"type": "object",
"properties": {
"app_id": {
"type": "string"
},
"blocks": {
"type": "array",
"items": {
@@ -27,9 +24,6 @@
},
"type": {
"type": "string"
},
"user_id": {
"type": "string"
}
}
}
@@ -46,49 +40,6 @@
}
}
},
"bot_id": {
"type": "string"
},
"bot_profile": {
"type": "object",
"properties": {
"app_id": {
"type": "string"
},
"deleted": {
"type": "boolean"
},
"icons": {
"type": "object",
"properties": {
"image_36": {
"type": "string"
},
"image_48": {
"type": "string"
},
"image_72": {
"type": "string"
}
}
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"team_id": {
"type": "string"
},
"updated": {
"type": "integer"
},
"user_id": {
"type": "string"
}
}
},
"client_msg_id": {
"type": "string"
},
@@ -108,5 +59,5 @@
"type": "string"
}
},
"version": 3
"version": 4
}

View File

@@ -1,9 +1,175 @@
{
"type": "object",
"properties": {
"member": {
"color": {
"type": "string"
},
"deleted": {
"type": "boolean"
},
"id": {
"type": "string"
},
"is_admin": {
"type": "boolean"
},
"is_app_user": {
"type": "boolean"
},
"is_bot": {
"type": "boolean"
},
"is_email_confirmed": {
"type": "boolean"
},
"is_owner": {
"type": "boolean"
},
"is_primary_owner": {
"type": "boolean"
},
"is_restricted": {
"type": "boolean"
},
"is_ultra_restricted": {
"type": "boolean"
},
"name": {
"type": "string"
},
"profile": {
"type": "object",
"properties": {
"always_active": {
"type": "boolean"
},
"api_app_id": {
"type": "string"
},
"avatar_hash": {
"type": "string"
},
"bot_id": {
"type": "string"
},
"display_name": {
"type": "string"
},
"display_name_normalized": {
"type": "string"
},
"fields": {
"type": "null"
},
"first_name": {
"type": "string"
},
"huddle_state": {
"type": "string"
},
"huddle_state_expiration_ts": {
"type": "integer"
},
"image_1024": {
"type": "string"
},
"image_192": {
"type": "string"
},
"image_24": {
"type": "string"
},
"image_32": {
"type": "string"
},
"image_48": {
"type": "string"
},
"image_512": {
"type": "string"
},
"image_72": {
"type": "string"
},
"image_original": {
"type": "string"
},
"is_custom_image": {
"type": "boolean"
},
"last_name": {
"type": "string"
},
"phone": {
"type": "string"
},
"real_name": {
"type": "string"
},
"real_name_normalized": {
"type": "string"
},
"skype": {
"type": "string"
},
"status_emoji": {
"type": "string"
},
"status_emoji_display_info": {
"type": "array",
"items": {
"type": "object",
"properties": {
"display_url": {
"type": "string"
},
"emoji_name": {
"type": "string"
},
"unicode": {
"type": "string"
}
}
}
},
"status_expiration": {
"type": "integer"
},
"status_text": {
"type": "string"
},
"status_text_canonical": {
"type": "string"
},
"team": {
"type": "string"
},
"title": {
"type": "string"
}
}
},
"real_name": {
"type": "string"
},
"team_id": {
"type": "string"
},
"tz": {
"type": "string"
},
"tz_label": {
"type": "string"
},
"tz_offset": {
"type": "integer"
},
"updated": {
"type": "integer"
},
"who_can_share_contact_card": {
"type": "string"
}
},
"version": 1
"version": 2
}

View File

@@ -97,9 +97,6 @@
},
"updated": {
"type": "integer"
},
"user_id": {
"type": "string"
}
}
},
@@ -127,5 +124,5 @@
"type": "boolean"
}
},
"version": 2
"version": 3
}