@commandable/integration-data 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/credentials-index.d.ts +30 -0
- package/dist/credentials-index.d.ts.map +1 -0
- package/dist/credentials-index.js +292 -0
- package/dist/credentials-index.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/dist/loader.d.ts +69 -0
- package/dist/loader.d.ts.map +1 -0
- package/dist/loader.js +164 -0
- package/dist/loader.js.map +1 -0
- package/integrations/README.md +52 -0
- package/integrations/airtable/__tests__/get_handlers.test.ts +137 -0
- package/integrations/airtable/__tests__/usage_parity.test.ts +35 -0
- package/integrations/airtable/__tests__/write_and_admin_handlers.test.ts +113 -0
- package/integrations/airtable/credentials.json +20 -0
- package/integrations/airtable/credentials_hint.md +4 -0
- package/integrations/airtable/handlers/create_record.js +12 -0
- package/integrations/airtable/handlers/delete_record.js +7 -0
- package/integrations/airtable/handlers/get_record.js +4 -0
- package/integrations/airtable/handlers/get_table_schema.js +6 -0
- package/integrations/airtable/handlers/list_bases.js +4 -0
- package/integrations/airtable/handlers/list_records.js +25 -0
- package/integrations/airtable/handlers/list_table_fields.js +6 -0
- package/integrations/airtable/handlers/list_tables.js +4 -0
- package/integrations/airtable/handlers/list_views.js +6 -0
- package/integrations/airtable/handlers/search_records.js +6 -0
- package/integrations/airtable/handlers/update_record.js +11 -0
- package/integrations/airtable/manifest.json +83 -0
- package/integrations/airtable/schemas/create_record.json +12 -0
- package/integrations/airtable/schemas/delete_record.json +11 -0
- package/integrations/airtable/schemas/empty.json +6 -0
- package/integrations/airtable/schemas/get_record.json +11 -0
- package/integrations/airtable/schemas/id_base.json +9 -0
- package/integrations/airtable/schemas/id_base_table.json +10 -0
- package/integrations/airtable/schemas/list_records.json +26 -0
- package/integrations/airtable/schemas/search_records.json +12 -0
- package/integrations/airtable/schemas/update_record.json +13 -0
- package/integrations/github/__tests__/get_handlers.test.ts +117 -0
- package/integrations/github/__tests__/usage_parity.test.ts +34 -0
- package/integrations/github/__tests__/write_handlers.test.ts +311 -0
- package/integrations/github/credentials.json +20 -0
- package/integrations/github/credentials_hint.md +7 -0
- package/integrations/github/handlers/add_labels_to_issue.js +12 -0
- package/integrations/github/handlers/close_issue.js +5 -0
- package/integrations/github/handlers/comment_on_issue.js +5 -0
- package/integrations/github/handlers/create_branch.js +33 -0
- package/integrations/github/handlers/create_commit.js +91 -0
- package/integrations/github/handlers/create_issue.js +10 -0
- package/integrations/github/handlers/create_or_update_file.js +21 -0
- package/integrations/github/handlers/create_pull_request.js +16 -0
- package/integrations/github/handlers/create_repo.js +11 -0
- package/integrations/github/handlers/delete_repo.js +6 -0
- package/integrations/github/handlers/get_issue.js +4 -0
- package/integrations/github/handlers/get_repo.js +4 -0
- package/integrations/github/handlers/list_branches.js +4 -0
- package/integrations/github/handlers/list_commits.js +12 -0
- package/integrations/github/handlers/list_issues.js +12 -0
- package/integrations/github/handlers/list_pull_requests.js +8 -0
- package/integrations/github/handlers/list_repos_install.js +4 -0
- package/integrations/github/handlers/list_repos_user.js +4 -0
- package/integrations/github/handlers/merge_pull_request.js +14 -0
- package/integrations/github/handlers/update_issue.js +15 -0
- package/integrations/github/manifest.json +26 -0
- package/integrations/github/schemas/add_labels_to_issue.json +12 -0
- package/integrations/github/schemas/close_issue.json +10 -0
- package/integrations/github/schemas/comment_on_issue.json +11 -0
- package/integrations/github/schemas/create_branch.json +12 -0
- package/integrations/github/schemas/create_commit.json +25 -0
- package/integrations/github/schemas/create_issue.json +13 -0
- package/integrations/github/schemas/create_or_update_file.json +15 -0
- package/integrations/github/schemas/create_pull_request.json +15 -0
- package/integrations/github/schemas/create_repo.json +12 -0
- package/integrations/github/schemas/delete_repo.json +10 -0
- package/integrations/github/schemas/empty.json +5 -0
- package/integrations/github/schemas/get_issue.json +10 -0
- package/integrations/github/schemas/get_repo.json +9 -0
- package/integrations/github/schemas/list_commits.json +12 -0
- package/integrations/github/schemas/list_issues.json +12 -0
- package/integrations/github/schemas/list_pull_requests.json +10 -0
- package/integrations/github/schemas/merge_pull_request.json +14 -0
- package/integrations/github/schemas/owner_repo.json +9 -0
- package/integrations/github/schemas/update_issue.json +15 -0
- package/integrations/google-calendar/__tests__/get_handlers.test.ts +112 -0
- package/integrations/google-calendar/__tests__/usage_parity.test.ts +34 -0
- package/integrations/google-calendar/__tests__/write_and_admin_handlers.test.ts +161 -0
- package/integrations/google-calendar/credentials.json +36 -0
- package/integrations/google-calendar/credentials_hint.md +9 -0
- package/integrations/google-calendar/handlers/create_event.js +6 -0
- package/integrations/google-calendar/handlers/delete_acl.js +6 -0
- package/integrations/google-calendar/handlers/delete_event.js +7 -0
- package/integrations/google-calendar/handlers/freebusy_query.js +4 -0
- package/integrations/google-calendar/handlers/get_acl.js +5 -0
- package/integrations/google-calendar/handlers/get_calendar.js +4 -0
- package/integrations/google-calendar/handlers/get_event.js +5 -0
- package/integrations/google-calendar/handlers/insert_acl.js +6 -0
- package/integrations/google-calendar/handlers/list_acl.js +5 -0
- package/integrations/google-calendar/handlers/list_calendars.js +4 -0
- package/integrations/google-calendar/handlers/list_colors.js +4 -0
- package/integrations/google-calendar/handlers/list_events.js +21 -0
- package/integrations/google-calendar/handlers/list_settings.js +4 -0
- package/integrations/google-calendar/handlers/move_event.js +6 -0
- package/integrations/google-calendar/handlers/patch_event.js +5 -0
- package/integrations/google-calendar/handlers/quick_add.js +6 -0
- package/integrations/google-calendar/handlers/update_acl.js +7 -0
- package/integrations/google-calendar/handlers/update_event.js +5 -0
- package/integrations/google-calendar/manifest.json +26 -0
- package/integrations/google-calendar/schemas/create_event.json +34 -0
- package/integrations/google-calendar/schemas/delete_acl.json +9 -0
- package/integrations/google-calendar/schemas/empty.json +1 -0
- package/integrations/google-calendar/schemas/freebusy_query.json +13 -0
- package/integrations/google-calendar/schemas/get_acl.json +9 -0
- package/integrations/google-calendar/schemas/id_calendar.json +8 -0
- package/integrations/google-calendar/schemas/id_calendar_event.json +9 -0
- package/integrations/google-calendar/schemas/insert_acl.json +18 -0
- package/integrations/google-calendar/schemas/list_events.json +15 -0
- package/integrations/google-calendar/schemas/move_event.json +10 -0
- package/integrations/google-calendar/schemas/patch_event.json +10 -0
- package/integrations/google-calendar/schemas/quick_add.json +9 -0
- package/integrations/google-calendar/schemas/update_acl.json +10 -0
- package/integrations/google-calendar/schemas/update_event.json +10 -0
- package/integrations/google-docs/__tests__/get_handlers.test.ts +72 -0
- package/integrations/google-docs/__tests__/usage_parity.test.ts +34 -0
- package/integrations/google-docs/__tests__/write_handlers.test.ts +249 -0
- package/integrations/google-docs/credentials.json +36 -0
- package/integrations/google-docs/credentials_hint.md +9 -0
- package/integrations/google-docs/handlers/append_text.js +12 -0
- package/integrations/google-docs/handlers/batch_update.js +13 -0
- package/integrations/google-docs/handlers/create_document.js +9 -0
- package/integrations/google-docs/handlers/delete_first_match.js +50 -0
- package/integrations/google-docs/handlers/get_document.js +12 -0
- package/integrations/google-docs/handlers/get_document_structured.js +6 -0
- package/integrations/google-docs/handlers/get_document_text.js +17 -0
- package/integrations/google-docs/handlers/insert_inline_image_after_first_match.js +41 -0
- package/integrations/google-docs/handlers/insert_page_break_after_first_match.js +49 -0
- package/integrations/google-docs/handlers/insert_table_after_first_match.js +49 -0
- package/integrations/google-docs/handlers/insert_text_after_first_match.js +51 -0
- package/integrations/google-docs/handlers/replace_all_text.js +8 -0
- package/integrations/google-docs/handlers/style_first_match.js +42 -0
- package/integrations/google-docs/handlers/update_document_style.js +8 -0
- package/integrations/google-docs/handlers/update_paragraph_style_for_first_match.js +48 -0
- package/integrations/google-docs/manifest.json +58 -0
- package/integrations/google-docs/schemas/append_text.json +10 -0
- package/integrations/google-docs/schemas/apply_text_style.json +13 -0
- package/integrations/google-docs/schemas/batch_update.json +16 -0
- package/integrations/google-docs/schemas/create_document.json +8 -0
- package/integrations/google-docs/schemas/delete_content_range.json +11 -0
- package/integrations/google-docs/schemas/delete_first_match.json +10 -0
- package/integrations/google-docs/schemas/get_document.json +11 -0
- package/integrations/google-docs/schemas/get_document_structured.json +9 -0
- package/integrations/google-docs/schemas/get_document_text.json +9 -0
- package/integrations/google-docs/schemas/insert_inline_image.json +12 -0
- package/integrations/google-docs/schemas/insert_inline_image_after_first_match.json +13 -0
- package/integrations/google-docs/schemas/insert_page_break.json +10 -0
- package/integrations/google-docs/schemas/insert_page_break_after_first_match.json +11 -0
- package/integrations/google-docs/schemas/insert_table.json +12 -0
- package/integrations/google-docs/schemas/insert_table_after_first_match.json +13 -0
- package/integrations/google-docs/schemas/insert_text_after_first_match.json +12 -0
- package/integrations/google-docs/schemas/insert_text_at.json +11 -0
- package/integrations/google-docs/schemas/replace_all_text.json +12 -0
- package/integrations/google-docs/schemas/style_first_match.json +12 -0
- package/integrations/google-docs/schemas/update_document_style.json +11 -0
- package/integrations/google-docs/schemas/update_paragraph_style.json +13 -0
- package/integrations/google-docs/schemas/update_paragraph_style_for_first_match.json +12 -0
- package/integrations/google-sheet/__tests__/get_handlers.test.ts +129 -0
- package/integrations/google-sheet/__tests__/usage_parity.test.ts +35 -0
- package/integrations/google-sheet/__tests__/write_handlers.test.ts +171 -0
- package/integrations/google-sheet/credentials.json +36 -0
- package/integrations/google-sheet/credentials_hint.md +9 -0
- package/integrations/google-sheet/handlers/append_values.js +18 -0
- package/integrations/google-sheet/handlers/batch_clear_values.js +6 -0
- package/integrations/google-sheet/handlers/batch_clear_values_by_data_filter.js +6 -0
- package/integrations/google-sheet/handlers/batch_get_values.js +16 -0
- package/integrations/google-sheet/handlers/batch_update.js +14 -0
- package/integrations/google-sheet/handlers/batch_update_values.js +16 -0
- package/integrations/google-sheet/handlers/batch_update_values_by_data_filter.js +16 -0
- package/integrations/google-sheet/handlers/clear_values.js +6 -0
- package/integrations/google-sheet/handlers/copy_to_spreadsheet.js +6 -0
- package/integrations/google-sheet/handlers/create_spreadsheet.js +5 -0
- package/integrations/google-sheet/handlers/get_developer_metadata.js +6 -0
- package/integrations/google-sheet/handlers/get_spreadsheet.js +12 -0
- package/integrations/google-sheet/handlers/get_spreadsheet_by_data_filter.js +10 -0
- package/integrations/google-sheet/handlers/get_values.js +14 -0
- package/integrations/google-sheet/handlers/get_values_by_data_filter.js +14 -0
- package/integrations/google-sheet/handlers/search_developer_metadata.js +7 -0
- package/integrations/google-sheet/handlers/update_values.js +16 -0
- package/integrations/google-sheet/manifest.json +125 -0
- package/integrations/google-sheet/schemas/append_values.json +16 -0
- package/integrations/google-sheet/schemas/batch_clear_values.json +10 -0
- package/integrations/google-sheet/schemas/batch_clear_values_by_data_filter.json +10 -0
- package/integrations/google-sheet/schemas/batch_get_values.json +13 -0
- package/integrations/google-sheet/schemas/batch_update.json +13 -0
- package/integrations/google-sheet/schemas/batch_update_values.json +25 -0
- package/integrations/google-sheet/schemas/batch_update_values_by_data_filter.json +25 -0
- package/integrations/google-sheet/schemas/clear_values.json +10 -0
- package/integrations/google-sheet/schemas/copy_to_spreadsheet.json +11 -0
- package/integrations/google-sheet/schemas/create_spreadsheet.json +11 -0
- package/integrations/google-sheet/schemas/get_developer_metadata.json +10 -0
- package/integrations/google-sheet/schemas/get_spreadsheet.json +15 -0
- package/integrations/google-sheet/schemas/get_spreadsheet_by_data_filter.json +11 -0
- package/integrations/google-sheet/schemas/get_values.json +13 -0
- package/integrations/google-sheet/schemas/get_values_by_data_filter.json +17 -0
- package/integrations/google-sheet/schemas/search_developer_metadata.json +14 -0
- package/integrations/google-sheet/schemas/update_values.json +15 -0
- package/integrations/google-slides/__tests__/get_handlers.test.ts +69 -0
- package/integrations/google-slides/__tests__/usage_parity.test.ts +34 -0
- package/integrations/google-slides/__tests__/write_handlers.test.ts +125 -0
- package/integrations/google-slides/credentials.json +36 -0
- package/integrations/google-slides/credentials_hint.md +9 -0
- package/integrations/google-slides/handlers/append_text_to_title_of_first_slide.js +17 -0
- package/integrations/google-slides/handlers/batch_update.js +15 -0
- package/integrations/google-slides/handlers/create_presentation.js +8 -0
- package/integrations/google-slides/handlers/create_slide_after_first_match.js +20 -0
- package/integrations/google-slides/handlers/get_page_thumbnail.js +12 -0
- package/integrations/google-slides/handlers/get_presentation.js +6 -0
- package/integrations/google-slides/handlers/insert_image_after_first_match.js +19 -0
- package/integrations/google-slides/handlers/insert_shape_after_first_match.js +21 -0
- package/integrations/google-slides/handlers/replace_text_first_match.js +9 -0
- package/integrations/google-slides/handlers/set_background_color_for_slide_index.js +15 -0
- package/integrations/google-slides/handlers/style_text_first_match.js +48 -0
- package/integrations/google-slides/manifest.json +41 -0
- package/integrations/google-slides/schemas/append_text_to_title_of_first_slide.json +11 -0
- package/integrations/google-slides/schemas/batch_update.json +13 -0
- package/integrations/google-slides/schemas/create_presentation.json +8 -0
- package/integrations/google-slides/schemas/create_slide_after_first_match.json +11 -0
- package/integrations/google-slides/schemas/get_page_thumbnail.json +12 -0
- package/integrations/google-slides/schemas/get_presentation.json +9 -0
- package/integrations/google-slides/schemas/insert_image_after_first_match.json +13 -0
- package/integrations/google-slides/schemas/insert_shape_after_first_match.json +13 -0
- package/integrations/google-slides/schemas/replace_text_first_match.json +12 -0
- package/integrations/google-slides/schemas/set_background_color_for_slide_index.json +11 -0
- package/integrations/google-slides/schemas/style_text_first_match.json +12 -0
- package/integrations/new_integration_prompt.md +41 -0
- package/integrations/notion/__tests__/get_handlers.test.ts +153 -0
- package/integrations/notion/__tests__/usage_parity.test.ts +34 -0
- package/integrations/notion/__tests__/write_and_admin_handlers.test.ts +190 -0
- package/integrations/notion/credentials.json +21 -0
- package/integrations/notion/credentials_hint.md +5 -0
- package/integrations/notion/handlers/append_block_children.js +7 -0
- package/integrations/notion/handlers/create_comment.js +10 -0
- package/integrations/notion/handlers/create_database.js +11 -0
- package/integrations/notion/handlers/create_page.js +13 -0
- package/integrations/notion/handlers/delete_block.js +8 -0
- package/integrations/notion/handlers/get_me.js +4 -0
- package/integrations/notion/handlers/list_block_children.js +10 -0
- package/integrations/notion/handlers/list_comments.js +14 -0
- package/integrations/notion/handlers/list_users.js +10 -0
- package/integrations/notion/handlers/query_database.js +10 -0
- package/integrations/notion/handlers/retrieve_block.js +4 -0
- package/integrations/notion/handlers/retrieve_database.js +4 -0
- package/integrations/notion/handlers/retrieve_page.js +4 -0
- package/integrations/notion/handlers/retrieve_page_property_item.js +10 -0
- package/integrations/notion/handlers/retrieve_user.js +4 -0
- package/integrations/notion/handlers/search.js +11 -0
- package/integrations/notion/handlers/update_block.js +7 -0
- package/integrations/notion/handlers/update_database.js +10 -0
- package/integrations/notion/handlers/update_page_properties.js +10 -0
- package/integrations/notion/manifest.json +139 -0
- package/integrations/notion/prompt.md +26 -0
- package/integrations/notion/schemas/append_block_children.json +10 -0
- package/integrations/notion/schemas/create_comment.json +18 -0
- package/integrations/notion/schemas/create_database.json +18 -0
- package/integrations/notion/schemas/create_page.json +22 -0
- package/integrations/notion/schemas/delete_block.json +9 -0
- package/integrations/notion/schemas/empty.json +6 -0
- package/integrations/notion/schemas/id_block.json +9 -0
- package/integrations/notion/schemas/id_database.json +9 -0
- package/integrations/notion/schemas/id_page.json +9 -0
- package/integrations/notion/schemas/id_user.json +9 -0
- package/integrations/notion/schemas/list_block_children.json +11 -0
- package/integrations/notion/schemas/list_comments.json +15 -0
- package/integrations/notion/schemas/list_users.json +9 -0
- package/integrations/notion/schemas/query_database.json +13 -0
- package/integrations/notion/schemas/retrieve_page_property_item.json +12 -0
- package/integrations/notion/schemas/search.json +27 -0
- package/integrations/notion/schemas/update_block.json +10 -0
- package/integrations/notion/schemas/update_database.json +13 -0
- package/integrations/notion/schemas/update_page_properties.json +13 -0
- package/integrations/trello/__tests__/get_handlers.test.ts +240 -0
- package/integrations/trello/__tests__/usage_parity.test.ts +34 -0
- package/integrations/trello/__tests__/write_and_admin_handlers.test.ts +189 -0
- package/integrations/trello/credentials.json +26 -0
- package/integrations/trello/credentials_hint.md +4 -0
- package/integrations/trello/handlers/add_checklist_to_card.js +5 -0
- package/integrations/trello/handlers/add_member_to_card.js +5 -0
- package/integrations/trello/handlers/archive_list.js +5 -0
- package/integrations/trello/handlers/create_card.js +13 -0
- package/integrations/trello/handlers/create_list.js +7 -0
- package/integrations/trello/handlers/delete_card.js +9 -0
- package/integrations/trello/handlers/get_board.js +4 -0
- package/integrations/trello/handlers/get_board_cards.js +4 -0
- package/integrations/trello/handlers/get_board_custom_fields.js +4 -0
- package/integrations/trello/handlers/get_board_labels.js +4 -0
- package/integrations/trello/handlers/get_board_lists.js +4 -0
- package/integrations/trello/handlers/get_board_members.js +4 -0
- package/integrations/trello/handlers/get_board_memberships.js +4 -0
- package/integrations/trello/handlers/get_card.js +4 -0
- package/integrations/trello/handlers/get_card_actions.js +4 -0
- package/integrations/trello/handlers/get_card_attachments.js +4 -0
- package/integrations/trello/handlers/get_card_checklists.js +4 -0
- package/integrations/trello/handlers/get_card_custom_field_items.js +4 -0
- package/integrations/trello/handlers/get_card_members.js +4 -0
- package/integrations/trello/handlers/get_list.js +4 -0
- package/integrations/trello/handlers/get_list_cards.js +4 -0
- package/integrations/trello/handlers/get_member.js +4 -0
- package/integrations/trello/handlers/get_member_boards.js +4 -0
- package/integrations/trello/handlers/get_member_organizations.js +4 -0
- package/integrations/trello/handlers/get_organization.js +4 -0
- package/integrations/trello/handlers/get_organization_boards.js +4 -0
- package/integrations/trello/handlers/move_card_to_list.js +5 -0
- package/integrations/trello/handlers/remove_member_from_card.js +9 -0
- package/integrations/trello/handlers/search.js +5 -0
- package/integrations/trello/handlers/update_card.js +19 -0
- package/integrations/trello/handlers/update_list.js +11 -0
- package/integrations/trello/manifest.json +231 -0
- package/integrations/trello/schemas/add_checklist_to_card.json +10 -0
- package/integrations/trello/schemas/add_member_to_card.json +10 -0
- package/integrations/trello/schemas/archive_list.json +9 -0
- package/integrations/trello/schemas/create_card.json +13 -0
- package/integrations/trello/schemas/create_list.json +11 -0
- package/integrations/trello/schemas/delete_card.json +9 -0
- package/integrations/trello/schemas/display_trello_cards.json +45 -0
- package/integrations/trello/schemas/empty.json +5 -0
- package/integrations/trello/schemas/get_member.json +5 -0
- package/integrations/trello/schemas/id_board.json +8 -0
- package/integrations/trello/schemas/id_card.json +8 -0
- package/integrations/trello/schemas/id_list.json +8 -0
- package/integrations/trello/schemas/id_org.json +8 -0
- package/integrations/trello/schemas/move_card_to_list.json +10 -0
- package/integrations/trello/schemas/remove_member_from_card.json +10 -0
- package/integrations/trello/schemas/search.json +8 -0
- package/integrations/trello/schemas/update_card.json +16 -0
- package/integrations/trello/schemas/update_list.json +12 -0
- package/package.json +45 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"required": ["parent", "title", "properties"],
|
|
5
|
+
"additionalProperties": false,
|
|
6
|
+
"properties": {
|
|
7
|
+
"parent": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"description": "Parent page where the database will be created.",
|
|
10
|
+
"additionalProperties": false,
|
|
11
|
+
"properties": {
|
|
12
|
+
"page_id": { "type": "string" }
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"title": { "type": "array", "items": { "type": "object" } },
|
|
16
|
+
"properties": { "type": "object" }
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"required": ["parent", "properties"],
|
|
5
|
+
"additionalProperties": false,
|
|
6
|
+
"properties": {
|
|
7
|
+
"parent": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"description": "Parent object specifying database_id or page_id.",
|
|
10
|
+
"additionalProperties": false,
|
|
11
|
+
"properties": {
|
|
12
|
+
"database_id": { "type": "string" },
|
|
13
|
+
"page_id": { "type": "string" },
|
|
14
|
+
"type": { "type": "string" }
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"properties": { "type": "object", "description": "Page properties map per Notion API." },
|
|
18
|
+
"children": { "type": "array", "items": { "type": "object" } },
|
|
19
|
+
"icon": { "type": ["object", "null"] },
|
|
20
|
+
"cover": { "type": ["object", "null"] }
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"required": ["block_id"],
|
|
5
|
+
"properties": {
|
|
6
|
+
"block_id": { "type": "string" },
|
|
7
|
+
"start_cursor": { "type": "string" },
|
|
8
|
+
"page_size": { "type": "number", "minimum": 1, "maximum": 100 }
|
|
9
|
+
},
|
|
10
|
+
"additionalProperties": false
|
|
11
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"properties": {
|
|
5
|
+
"block_id": { "type": "string" },
|
|
6
|
+
"discussion_id": { "type": "string" },
|
|
7
|
+
"start_cursor": { "type": "string" },
|
|
8
|
+
"page_size": { "type": "number", "minimum": 1, "maximum": 100 }
|
|
9
|
+
},
|
|
10
|
+
"anyOf": [
|
|
11
|
+
{ "required": ["block_id"] },
|
|
12
|
+
{ "required": ["discussion_id"] }
|
|
13
|
+
],
|
|
14
|
+
"additionalProperties": false
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"required": ["database_id"],
|
|
5
|
+
"properties": {
|
|
6
|
+
"database_id": { "type": "string" },
|
|
7
|
+
"filter": { "type": ["object", "null"] },
|
|
8
|
+
"sorts": { "type": ["array", "null"], "items": { "type": "object" } },
|
|
9
|
+
"start_cursor": { "type": "string" },
|
|
10
|
+
"page_size": { "type": "number", "minimum": 1, "maximum": 100 }
|
|
11
|
+
},
|
|
12
|
+
"additionalProperties": false
|
|
13
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"required": ["page_id", "property_id"],
|
|
5
|
+
"properties": {
|
|
6
|
+
"page_id": { "type": "string" },
|
|
7
|
+
"property_id": { "type": "string" },
|
|
8
|
+
"start_cursor": { "type": "string" },
|
|
9
|
+
"page_size": { "type": "number", "minimum": 1, "maximum": 100 }
|
|
10
|
+
},
|
|
11
|
+
"additionalProperties": false
|
|
12
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"required": ["query"],
|
|
5
|
+
"properties": {
|
|
6
|
+
"query": { "type": "string" },
|
|
7
|
+
"filter": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {
|
|
10
|
+
"value": { "type": "string", "enum": ["page", "database"] },
|
|
11
|
+
"property": { "type": "string", "enum": ["object"] }
|
|
12
|
+
},
|
|
13
|
+
"additionalProperties": false
|
|
14
|
+
},
|
|
15
|
+
"sort": {
|
|
16
|
+
"type": "object",
|
|
17
|
+
"properties": {
|
|
18
|
+
"direction": { "type": "string", "enum": ["ascending", "descending"] },
|
|
19
|
+
"timestamp": { "type": "string", "enum": ["last_edited_time"] }
|
|
20
|
+
},
|
|
21
|
+
"additionalProperties": false
|
|
22
|
+
},
|
|
23
|
+
"start_cursor": { "type": "string" },
|
|
24
|
+
"page_size": { "type": "number", "minimum": 1, "maximum": 100 }
|
|
25
|
+
},
|
|
26
|
+
"additionalProperties": false
|
|
27
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"required": ["database_id"],
|
|
5
|
+
"additionalProperties": false,
|
|
6
|
+
"properties": {
|
|
7
|
+
"database_id": { "type": "string" },
|
|
8
|
+
"title": { "type": ["array", "null"], "items": { "type": "object" } },
|
|
9
|
+
"description": { "type": ["array", "null"], "items": { "type": "object" } },
|
|
10
|
+
"properties": { "type": ["object", "null"] },
|
|
11
|
+
"archived": { "type": ["boolean", "null"] }
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"required": ["page_id", "properties"],
|
|
5
|
+
"additionalProperties": false,
|
|
6
|
+
"properties": {
|
|
7
|
+
"page_id": { "type": "string" },
|
|
8
|
+
"properties": { "type": "object" },
|
|
9
|
+
"archived": { "type": ["boolean", "null"] },
|
|
10
|
+
"icon": { "type": ["object", "null"] },
|
|
11
|
+
"cover": { "type": ["object", "null"] }
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
import { beforeAll, describe, expect, it } from 'vitest'
|
|
2
|
+
import { IntegrationProxy } from '../../../../server/src/integrations/proxy.js'
|
|
3
|
+
import { loadIntegrationTools } from '../../../../server/src/integrations/dataLoader.js'
|
|
4
|
+
|
|
5
|
+
// This is a LIVE integration test suite that hits Trello using managed OAuth.
|
|
6
|
+
// Required env vars:
|
|
7
|
+
// - COMMANDABLE_MANAGED_OAUTH_BASE_URL
|
|
8
|
+
// - COMMANDABLE_MANAGED_OAUTH_SECRET_KEY
|
|
9
|
+
// - TRELLO_API_KEY
|
|
10
|
+
// - TRELLO_TEST_CONNECTION_ID (an existing managed OAuth connectionId for provider 'trello')
|
|
11
|
+
|
|
12
|
+
interface Ids {
|
|
13
|
+
boardId?: string
|
|
14
|
+
listId?: string
|
|
15
|
+
cardId?: string
|
|
16
|
+
orgId?: string
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
const env = process.env as Record<string, string>
|
|
20
|
+
const hasEnv = (...keys: string[]) => keys.every(k => !!env[k] && env[k].trim().length > 0)
|
|
21
|
+
const suite = hasEnv(
|
|
22
|
+
'COMMANDABLE_MANAGED_OAUTH_BASE_URL',
|
|
23
|
+
'COMMANDABLE_MANAGED_OAUTH_SECRET_KEY',
|
|
24
|
+
'TRELLO_API_KEY',
|
|
25
|
+
'TRELLO_TEST_CONNECTION_ID',
|
|
26
|
+
)
|
|
27
|
+
? describe
|
|
28
|
+
: describe.skip
|
|
29
|
+
|
|
30
|
+
suite('trello read handlers (live)', () => {
|
|
31
|
+
const ids: Ids = {}
|
|
32
|
+
|
|
33
|
+
let buildHandler: (name: string) => ((input: any) => Promise<any>)
|
|
34
|
+
|
|
35
|
+
beforeAll(async () => {
|
|
36
|
+
const { COMMANDABLE_MANAGED_OAUTH_BASE_URL, COMMANDABLE_MANAGED_OAUTH_SECRET_KEY, TRELLO_API_KEY, TRELLO_TEST_CONNECTION_ID } = env
|
|
37
|
+
|
|
38
|
+
const proxy = new IntegrationProxy({
|
|
39
|
+
managedOAuthBaseUrl: COMMANDABLE_MANAGED_OAUTH_BASE_URL,
|
|
40
|
+
managedOAuthSecretKey: COMMANDABLE_MANAGED_OAUTH_SECRET_KEY,
|
|
41
|
+
trelloApiKey: TRELLO_API_KEY,
|
|
42
|
+
})
|
|
43
|
+
const integrationNode = { id: 'node-trello', type: 'trello', label: 'Trello', connectionId: TRELLO_TEST_CONNECTION_ID } as any
|
|
44
|
+
|
|
45
|
+
const tools = loadIntegrationTools('trello')
|
|
46
|
+
expect(tools).toBeTruthy()
|
|
47
|
+
|
|
48
|
+
buildHandler = (name: string) => {
|
|
49
|
+
const tool = tools!.read.find(t => t.name === name)
|
|
50
|
+
expect(tool, `tool ${name} exists`).toBeTruthy()
|
|
51
|
+
const integration = {
|
|
52
|
+
fetch: (path: string, init?: RequestInit) => proxy.call(integrationNode, path, init),
|
|
53
|
+
}
|
|
54
|
+
const build = new Function('integration', `return (${tool!.handlerCode});`)
|
|
55
|
+
return build(integration) as (input: any) => Promise<any>
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// Discover a board, list, card, and org for subsequent tests
|
|
59
|
+
const get_member_boards = buildHandler('get_member_boards')
|
|
60
|
+
const boards = await get_member_boards({})
|
|
61
|
+
expect(Array.isArray(boards)).toBe(true)
|
|
62
|
+
ids.boardId = boards[0]?.id
|
|
63
|
+
|
|
64
|
+
if (ids.boardId) {
|
|
65
|
+
const get_board_lists = buildHandler('get_board_lists')
|
|
66
|
+
const lists = await get_board_lists({ boardId: ids.boardId })
|
|
67
|
+
ids.listId = lists[0]?.id
|
|
68
|
+
|
|
69
|
+
const get_board_cards = buildHandler('get_board_cards')
|
|
70
|
+
const cards = await get_board_cards({ boardId: ids.boardId })
|
|
71
|
+
ids.cardId = cards[0]?.id
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
const get_member_organizations = buildHandler('get_member_organizations')
|
|
75
|
+
const orgs = await get_member_organizations({})
|
|
76
|
+
ids.orgId = orgs[0]?.id
|
|
77
|
+
}, 60000)
|
|
78
|
+
|
|
79
|
+
it('get_member returns current member', async () => {
|
|
80
|
+
const handler = buildHandler('get_member')
|
|
81
|
+
const result = await handler({})
|
|
82
|
+
expect(result).toBeTruthy()
|
|
83
|
+
expect(typeof result.id).toBe('string')
|
|
84
|
+
expect(typeof result.username).toBe('string')
|
|
85
|
+
}, 30000)
|
|
86
|
+
|
|
87
|
+
it('get_member_boards returns an array', async () => {
|
|
88
|
+
const handler = buildHandler('get_member_boards')
|
|
89
|
+
const result = await handler({})
|
|
90
|
+
expect(Array.isArray(result)).toBe(true)
|
|
91
|
+
}, 30000)
|
|
92
|
+
|
|
93
|
+
it('get_member_organizations returns an array', async () => {
|
|
94
|
+
const handler = buildHandler('get_member_organizations')
|
|
95
|
+
const result = await handler({})
|
|
96
|
+
expect(Array.isArray(result)).toBe(true)
|
|
97
|
+
}, 30000)
|
|
98
|
+
|
|
99
|
+
it('get_board works with boardId', async () => {
|
|
100
|
+
if (!ids.boardId)
|
|
101
|
+
return expect(true).toBe(true)
|
|
102
|
+
const handler = buildHandler('get_board')
|
|
103
|
+
const result = await handler({ boardId: ids.boardId })
|
|
104
|
+
expect(result?.id).toBe(ids.boardId)
|
|
105
|
+
}, 30000)
|
|
106
|
+
|
|
107
|
+
it('get_board_lists returns lists', async () => {
|
|
108
|
+
if (!ids.boardId)
|
|
109
|
+
return expect(true).toBe(true)
|
|
110
|
+
const handler = buildHandler('get_board_lists')
|
|
111
|
+
const result = await handler({ boardId: ids.boardId })
|
|
112
|
+
expect(Array.isArray(result)).toBe(true)
|
|
113
|
+
}, 30000)
|
|
114
|
+
|
|
115
|
+
it('get_board_cards returns cards', async () => {
|
|
116
|
+
if (!ids.boardId)
|
|
117
|
+
return expect(true).toBe(true)
|
|
118
|
+
const handler = buildHandler('get_board_cards')
|
|
119
|
+
const result = await handler({ boardId: ids.boardId })
|
|
120
|
+
expect(Array.isArray(result)).toBe(true)
|
|
121
|
+
}, 30000)
|
|
122
|
+
|
|
123
|
+
it('get_board_members returns members', async () => {
|
|
124
|
+
if (!ids.boardId)
|
|
125
|
+
return expect(true).toBe(true)
|
|
126
|
+
const handler = buildHandler('get_board_members')
|
|
127
|
+
const result = await handler({ boardId: ids.boardId })
|
|
128
|
+
expect(Array.isArray(result)).toBe(true)
|
|
129
|
+
}, 30000)
|
|
130
|
+
|
|
131
|
+
it('get_board_labels returns labels', async () => {
|
|
132
|
+
if (!ids.boardId)
|
|
133
|
+
return expect(true).toBe(true)
|
|
134
|
+
const handler = buildHandler('get_board_labels')
|
|
135
|
+
const result = await handler({ boardId: ids.boardId })
|
|
136
|
+
expect(Array.isArray(result)).toBe(true)
|
|
137
|
+
}, 30000)
|
|
138
|
+
|
|
139
|
+
it('get_board_custom_fields returns custom fields', async () => {
|
|
140
|
+
if (!ids.boardId)
|
|
141
|
+
return expect(true).toBe(true)
|
|
142
|
+
const handler = buildHandler('get_board_custom_fields')
|
|
143
|
+
const result = await handler({ boardId: ids.boardId })
|
|
144
|
+
expect(Array.isArray(result)).toBe(true)
|
|
145
|
+
}, 30000)
|
|
146
|
+
|
|
147
|
+
it('get_board_memberships returns memberships', async () => {
|
|
148
|
+
if (!ids.boardId)
|
|
149
|
+
return expect(true).toBe(true)
|
|
150
|
+
const handler = buildHandler('get_board_memberships')
|
|
151
|
+
const result = await handler({ boardId: ids.boardId })
|
|
152
|
+
expect(Array.isArray(result)).toBe(true)
|
|
153
|
+
}, 30000)
|
|
154
|
+
|
|
155
|
+
it('get_list returns a list', async () => {
|
|
156
|
+
if (!ids.listId)
|
|
157
|
+
return expect(true).toBe(true)
|
|
158
|
+
const handler = buildHandler('get_list')
|
|
159
|
+
const result = await handler({ listId: ids.listId })
|
|
160
|
+
expect(result?.id).toBe(ids.listId)
|
|
161
|
+
}, 30000)
|
|
162
|
+
|
|
163
|
+
it('get_list_cards returns cards in a list', async () => {
|
|
164
|
+
if (!ids.listId)
|
|
165
|
+
return expect(true).toBe(true)
|
|
166
|
+
const handler = buildHandler('get_list_cards')
|
|
167
|
+
const result = await handler({ listId: ids.listId })
|
|
168
|
+
expect(Array.isArray(result)).toBe(true)
|
|
169
|
+
}, 30000)
|
|
170
|
+
|
|
171
|
+
it('get_card returns a card', async () => {
|
|
172
|
+
if (!ids.cardId)
|
|
173
|
+
return expect(true).toBe(true)
|
|
174
|
+
const handler = buildHandler('get_card')
|
|
175
|
+
const result = await handler({ cardId: ids.cardId })
|
|
176
|
+
expect(result?.id).toBe(ids.cardId)
|
|
177
|
+
}, 30000)
|
|
178
|
+
|
|
179
|
+
it('get_card_members returns members for a card', async () => {
|
|
180
|
+
if (!ids.cardId)
|
|
181
|
+
return expect(true).toBe(true)
|
|
182
|
+
const handler = buildHandler('get_card_members')
|
|
183
|
+
const result = await handler({ cardId: ids.cardId })
|
|
184
|
+
expect(Array.isArray(result)).toBe(true)
|
|
185
|
+
}, 30000)
|
|
186
|
+
|
|
187
|
+
it('get_card_attachments returns attachments for a card', async () => {
|
|
188
|
+
if (!ids.cardId)
|
|
189
|
+
return expect(true).toBe(true)
|
|
190
|
+
const handler = buildHandler('get_card_attachments')
|
|
191
|
+
const result = await handler({ cardId: ids.cardId })
|
|
192
|
+
expect(Array.isArray(result)).toBe(true)
|
|
193
|
+
}, 30000)
|
|
194
|
+
|
|
195
|
+
it('get_card_actions returns actions for a card', async () => {
|
|
196
|
+
if (!ids.cardId)
|
|
197
|
+
return expect(true).toBe(true)
|
|
198
|
+
const handler = buildHandler('get_card_actions')
|
|
199
|
+
const result = await handler({ cardId: ids.cardId })
|
|
200
|
+
expect(Array.isArray(result)).toBe(true)
|
|
201
|
+
}, 30000)
|
|
202
|
+
|
|
203
|
+
it('get_card_checklists returns checklists for a card', async () => {
|
|
204
|
+
if (!ids.cardId)
|
|
205
|
+
return expect(true).toBe(true)
|
|
206
|
+
const handler = buildHandler('get_card_checklists')
|
|
207
|
+
const result = await handler({ cardId: ids.cardId })
|
|
208
|
+
expect(Array.isArray(result)).toBe(true)
|
|
209
|
+
}, 30000)
|
|
210
|
+
|
|
211
|
+
it('get_card_custom_field_items returns custom field items', async () => {
|
|
212
|
+
if (!ids.cardId)
|
|
213
|
+
return expect(true).toBe(true)
|
|
214
|
+
const handler = buildHandler('get_card_custom_field_items')
|
|
215
|
+
const result = await handler({ cardId: ids.cardId })
|
|
216
|
+
expect(Array.isArray(result)).toBe(true)
|
|
217
|
+
}, 30000)
|
|
218
|
+
|
|
219
|
+
it('get_organization returns an organization', async () => {
|
|
220
|
+
if (!ids.orgId)
|
|
221
|
+
return expect(true).toBe(true)
|
|
222
|
+
const handler = buildHandler('get_organization')
|
|
223
|
+
const result = await handler({ orgId: ids.orgId })
|
|
224
|
+
expect(result?.id).toBe(ids.orgId)
|
|
225
|
+
}, 30000)
|
|
226
|
+
|
|
227
|
+
it('get_organization_boards returns boards in an org', async () => {
|
|
228
|
+
if (!ids.orgId)
|
|
229
|
+
return expect(true).toBe(true)
|
|
230
|
+
const handler = buildHandler('get_organization_boards')
|
|
231
|
+
const result = await handler({ orgId: ids.orgId })
|
|
232
|
+
expect(Array.isArray(result)).toBe(true)
|
|
233
|
+
}, 30000)
|
|
234
|
+
|
|
235
|
+
it('search returns results for a generic query', async () => {
|
|
236
|
+
const handler = buildHandler('search')
|
|
237
|
+
const result = await handler({ query: 'test' })
|
|
238
|
+
expect(result).toBeTruthy()
|
|
239
|
+
}, 30000)
|
|
240
|
+
})
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { existsSync, readdirSync, readFileSync } from 'node:fs'
|
|
2
|
+
import { resolve } from 'node:path'
|
|
3
|
+
import { fileURLToPath } from 'node:url'
|
|
4
|
+
import { describe, expect, it } from 'vitest'
|
|
5
|
+
import { loadIntegrationManifest } from '../../../src/integrations/dataLoader.js'
|
|
6
|
+
|
|
7
|
+
function escapeRegExp(str: string): string {
|
|
8
|
+
return str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
describe('trello static usage parity', () => {
|
|
12
|
+
it('every manifest tool is referenced in tests via build*(name)', () => {
|
|
13
|
+
const manifest = loadIntegrationManifest('trello')!
|
|
14
|
+
const toolNames = (manifest.tools as any[]).map(t => t.name)
|
|
15
|
+
|
|
16
|
+
const testsDir = fileURLToPath(new URL('.', import.meta.url))
|
|
17
|
+
expect(existsSync(testsDir)).toBe(true)
|
|
18
|
+
const testFiles = readdirSync(testsDir)
|
|
19
|
+
.filter(f => /\.test\.(t|j)s$/.test(f) && !f.includes('usage_parity.test'))
|
|
20
|
+
.map(f => resolve(testsDir, f))
|
|
21
|
+
|
|
22
|
+
const fileContents = testFiles.map(f => readFileSync(f, 'utf8'))
|
|
23
|
+
|
|
24
|
+
const missing: string[] = []
|
|
25
|
+
for (const name of toolNames) {
|
|
26
|
+
const nameRe = new RegExp(`build(?:Read|Write|Admin)?(?:Handler)?\\(\\s*['\"\`]${escapeRegExp(name)}['\"\`]\\s*\\)`, 'm')
|
|
27
|
+
const found = fileContents.some(src => nameRe.test(src))
|
|
28
|
+
if (!found)
|
|
29
|
+
missing.push(name)
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
expect(missing, `Missing handler usages in tests: ${missing.join(', ')}`).toEqual([])
|
|
33
|
+
})
|
|
34
|
+
})
|