integrate-sdk 0.9.23-dev.0 → 0.9.24-dev.0
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/index.js +101 -7
- package/dist/server.js +101 -7
- package/dist/src/integrations/figma-client.d.ts +673 -101
- package/dist/src/integrations/figma-client.d.ts.map +1 -1
- package/dist/src/integrations/figma.d.ts +1 -1
- package/dist/src/integrations/figma.d.ts.map +1 -1
- package/dist/src/integrations/outlook-client.d.ts +381 -188
- package/dist/src/integrations/outlook-client.d.ts.map +1 -1
- package/dist/src/integrations/outlook.d.ts +1 -1
- package/dist/src/integrations/outlook.d.ts.map +1 -1
- package/dist/src/integrations/slack-client.d.ts +236 -0
- package/dist/src/integrations/slack-client.d.ts.map +1 -1
- package/dist/src/integrations/slack.d.ts +1 -1
- package/dist/src/integrations/slack.d.ts.map +1 -1
- package/dist/src/integrations/stripe-client.d.ts +376 -17
- package/dist/src/integrations/stripe-client.d.ts.map +1 -1
- package/dist/src/integrations/stripe.d.ts +1 -1
- package/dist/src/integrations/stripe.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3992,7 +3992,25 @@ var SLACK_TOOLS = [
|
|
|
3992
3992
|
"slack_upload_file",
|
|
3993
3993
|
"slack_pin_message",
|
|
3994
3994
|
"slack_unpin_message",
|
|
3995
|
-
"slack_list_pins"
|
|
3995
|
+
"slack_list_pins",
|
|
3996
|
+
"slack_set_channel_purpose",
|
|
3997
|
+
"slack_rename_channel",
|
|
3998
|
+
"slack_join_channel",
|
|
3999
|
+
"slack_leave_channel",
|
|
4000
|
+
"slack_kick_from_channel",
|
|
4001
|
+
"slack_unarchive_channel",
|
|
4002
|
+
"slack_open_dm",
|
|
4003
|
+
"slack_get_user_presence",
|
|
4004
|
+
"slack_get_dnd_info",
|
|
4005
|
+
"slack_list_files",
|
|
4006
|
+
"slack_get_file",
|
|
4007
|
+
"slack_delete_file",
|
|
4008
|
+
"slack_get_team_info",
|
|
4009
|
+
"slack_list_bookmarks",
|
|
4010
|
+
"slack_add_bookmark",
|
|
4011
|
+
"slack_list_reminders",
|
|
4012
|
+
"slack_add_reminder",
|
|
4013
|
+
"slack_list_usergroups"
|
|
3996
4014
|
];
|
|
3997
4015
|
function slackIntegration(config = {}) {
|
|
3998
4016
|
const oauth = {
|
|
@@ -4197,12 +4215,37 @@ var STRIPE_TOOLS = [
|
|
|
4197
4215
|
"stripe_list_customers",
|
|
4198
4216
|
"stripe_get_customer",
|
|
4199
4217
|
"stripe_create_customer",
|
|
4218
|
+
"stripe_update_customer",
|
|
4219
|
+
"stripe_delete_customer",
|
|
4220
|
+
"stripe_search_customers",
|
|
4200
4221
|
"stripe_list_payments",
|
|
4201
4222
|
"stripe_get_payment",
|
|
4202
4223
|
"stripe_create_payment",
|
|
4203
|
-
"
|
|
4224
|
+
"stripe_cancel_payment",
|
|
4225
|
+
"stripe_capture_payment",
|
|
4204
4226
|
"stripe_list_subscriptions",
|
|
4205
|
-
"
|
|
4227
|
+
"stripe_get_subscription",
|
|
4228
|
+
"stripe_create_subscription",
|
|
4229
|
+
"stripe_update_subscription",
|
|
4230
|
+
"stripe_cancel_subscription",
|
|
4231
|
+
"stripe_list_invoices",
|
|
4232
|
+
"stripe_create_invoice",
|
|
4233
|
+
"stripe_finalize_invoice",
|
|
4234
|
+
"stripe_pay_invoice",
|
|
4235
|
+
"stripe_void_invoice",
|
|
4236
|
+
"stripe_list_products",
|
|
4237
|
+
"stripe_get_product",
|
|
4238
|
+
"stripe_create_product",
|
|
4239
|
+
"stripe_list_prices",
|
|
4240
|
+
"stripe_get_price",
|
|
4241
|
+
"stripe_create_price",
|
|
4242
|
+
"stripe_list_refunds",
|
|
4243
|
+
"stripe_get_refund",
|
|
4244
|
+
"stripe_create_refund",
|
|
4245
|
+
"stripe_get_balance",
|
|
4246
|
+
"stripe_list_events",
|
|
4247
|
+
"stripe_get_event",
|
|
4248
|
+
"stripe_list_payment_methods"
|
|
4206
4249
|
];
|
|
4207
4250
|
function stripeIntegration(config = {}) {
|
|
4208
4251
|
const oauth = {
|
|
@@ -4275,12 +4318,28 @@ var OUTLOOK_TOOLS = [
|
|
|
4275
4318
|
"outlook_list_messages",
|
|
4276
4319
|
"outlook_get_message",
|
|
4277
4320
|
"outlook_send_message",
|
|
4321
|
+
"outlook_search_messages",
|
|
4322
|
+
"outlook_reply_message",
|
|
4323
|
+
"outlook_reply_all_message",
|
|
4324
|
+
"outlook_forward_message",
|
|
4325
|
+
"outlook_delete_message",
|
|
4326
|
+
"outlook_move_message",
|
|
4327
|
+
"outlook_mark_message_read",
|
|
4328
|
+
"outlook_create_draft",
|
|
4329
|
+
"outlook_list_mail_folders",
|
|
4278
4330
|
"outlook_list_events",
|
|
4279
4331
|
"outlook_get_event",
|
|
4280
4332
|
"outlook_create_event",
|
|
4333
|
+
"outlook_update_event",
|
|
4334
|
+
"outlook_delete_event",
|
|
4335
|
+
"outlook_list_calendars",
|
|
4336
|
+
"outlook_accept_event",
|
|
4337
|
+
"outlook_decline_event",
|
|
4338
|
+
"outlook_tentatively_accept_event",
|
|
4339
|
+
"outlook_find_meeting_times",
|
|
4340
|
+
"outlook_get_schedule",
|
|
4281
4341
|
"outlook_list_contacts",
|
|
4282
|
-
"outlook_get_contact"
|
|
4283
|
-
"outlook_search"
|
|
4342
|
+
"outlook_get_contact"
|
|
4284
4343
|
];
|
|
4285
4344
|
function outlookIntegration(config = {}) {
|
|
4286
4345
|
const oauth = {
|
|
@@ -4742,13 +4801,48 @@ var logger27 = createLogger("Figma");
|
|
|
4742
4801
|
var FIGMA_TOOLS = [
|
|
4743
4802
|
"figma_get_file",
|
|
4744
4803
|
"figma_get_file_nodes",
|
|
4804
|
+
"figma_get_file_meta",
|
|
4805
|
+
"figma_get_image_fills",
|
|
4745
4806
|
"figma_get_images",
|
|
4807
|
+
"figma_get_file_versions",
|
|
4808
|
+
"figma_get_oembed",
|
|
4809
|
+
"figma_get_me",
|
|
4746
4810
|
"figma_get_comments",
|
|
4747
4811
|
"figma_post_comment",
|
|
4812
|
+
"figma_delete_comment",
|
|
4813
|
+
"figma_get_comment_reactions",
|
|
4814
|
+
"figma_post_comment_reaction",
|
|
4815
|
+
"figma_delete_comment_reaction",
|
|
4748
4816
|
"figma_list_projects",
|
|
4749
4817
|
"figma_get_project_files",
|
|
4750
|
-
"
|
|
4751
|
-
"
|
|
4818
|
+
"figma_get_team_components",
|
|
4819
|
+
"figma_get_file_components",
|
|
4820
|
+
"figma_get_component",
|
|
4821
|
+
"figma_get_team_component_sets",
|
|
4822
|
+
"figma_get_file_component_sets",
|
|
4823
|
+
"figma_get_component_set",
|
|
4824
|
+
"figma_get_team_styles",
|
|
4825
|
+
"figma_get_file_styles",
|
|
4826
|
+
"figma_get_style",
|
|
4827
|
+
"figma_list_webhooks",
|
|
4828
|
+
"figma_create_webhook",
|
|
4829
|
+
"figma_get_webhook",
|
|
4830
|
+
"figma_update_webhook",
|
|
4831
|
+
"figma_delete_webhook",
|
|
4832
|
+
"figma_get_team_webhooks",
|
|
4833
|
+
"figma_get_webhook_requests",
|
|
4834
|
+
"figma_get_local_variables",
|
|
4835
|
+
"figma_get_published_variables",
|
|
4836
|
+
"figma_post_variables",
|
|
4837
|
+
"figma_get_dev_resources",
|
|
4838
|
+
"figma_post_dev_resources",
|
|
4839
|
+
"figma_put_dev_resources",
|
|
4840
|
+
"figma_delete_dev_resource",
|
|
4841
|
+
"figma_get_payments",
|
|
4842
|
+
"figma_get_library_analytics_component_actions",
|
|
4843
|
+
"figma_get_library_analytics_component_usages",
|
|
4844
|
+
"figma_get_library_analytics_style_actions",
|
|
4845
|
+
"figma_get_library_analytics_style_usages"
|
|
4752
4846
|
];
|
|
4753
4847
|
function figmaIntegration(config = {}) {
|
|
4754
4848
|
const oauth = {
|
package/dist/server.js
CHANGED
|
@@ -4826,7 +4826,25 @@ var SLACK_TOOLS = [
|
|
|
4826
4826
|
"slack_upload_file",
|
|
4827
4827
|
"slack_pin_message",
|
|
4828
4828
|
"slack_unpin_message",
|
|
4829
|
-
"slack_list_pins"
|
|
4829
|
+
"slack_list_pins",
|
|
4830
|
+
"slack_set_channel_purpose",
|
|
4831
|
+
"slack_rename_channel",
|
|
4832
|
+
"slack_join_channel",
|
|
4833
|
+
"slack_leave_channel",
|
|
4834
|
+
"slack_kick_from_channel",
|
|
4835
|
+
"slack_unarchive_channel",
|
|
4836
|
+
"slack_open_dm",
|
|
4837
|
+
"slack_get_user_presence",
|
|
4838
|
+
"slack_get_dnd_info",
|
|
4839
|
+
"slack_list_files",
|
|
4840
|
+
"slack_get_file",
|
|
4841
|
+
"slack_delete_file",
|
|
4842
|
+
"slack_get_team_info",
|
|
4843
|
+
"slack_list_bookmarks",
|
|
4844
|
+
"slack_add_bookmark",
|
|
4845
|
+
"slack_list_reminders",
|
|
4846
|
+
"slack_add_reminder",
|
|
4847
|
+
"slack_list_usergroups"
|
|
4830
4848
|
];
|
|
4831
4849
|
function slackIntegration(config = {}) {
|
|
4832
4850
|
const oauth = {
|
|
@@ -5035,12 +5053,37 @@ var STRIPE_TOOLS = [
|
|
|
5035
5053
|
"stripe_list_customers",
|
|
5036
5054
|
"stripe_get_customer",
|
|
5037
5055
|
"stripe_create_customer",
|
|
5056
|
+
"stripe_update_customer",
|
|
5057
|
+
"stripe_delete_customer",
|
|
5058
|
+
"stripe_search_customers",
|
|
5038
5059
|
"stripe_list_payments",
|
|
5039
5060
|
"stripe_get_payment",
|
|
5040
5061
|
"stripe_create_payment",
|
|
5041
|
-
"
|
|
5062
|
+
"stripe_cancel_payment",
|
|
5063
|
+
"stripe_capture_payment",
|
|
5042
5064
|
"stripe_list_subscriptions",
|
|
5043
|
-
"
|
|
5065
|
+
"stripe_get_subscription",
|
|
5066
|
+
"stripe_create_subscription",
|
|
5067
|
+
"stripe_update_subscription",
|
|
5068
|
+
"stripe_cancel_subscription",
|
|
5069
|
+
"stripe_list_invoices",
|
|
5070
|
+
"stripe_create_invoice",
|
|
5071
|
+
"stripe_finalize_invoice",
|
|
5072
|
+
"stripe_pay_invoice",
|
|
5073
|
+
"stripe_void_invoice",
|
|
5074
|
+
"stripe_list_products",
|
|
5075
|
+
"stripe_get_product",
|
|
5076
|
+
"stripe_create_product",
|
|
5077
|
+
"stripe_list_prices",
|
|
5078
|
+
"stripe_get_price",
|
|
5079
|
+
"stripe_create_price",
|
|
5080
|
+
"stripe_list_refunds",
|
|
5081
|
+
"stripe_get_refund",
|
|
5082
|
+
"stripe_create_refund",
|
|
5083
|
+
"stripe_get_balance",
|
|
5084
|
+
"stripe_list_events",
|
|
5085
|
+
"stripe_get_event",
|
|
5086
|
+
"stripe_list_payment_methods"
|
|
5044
5087
|
];
|
|
5045
5088
|
function stripeIntegration(config = {}) {
|
|
5046
5089
|
const oauth = {
|
|
@@ -5115,12 +5158,28 @@ var OUTLOOK_TOOLS = [
|
|
|
5115
5158
|
"outlook_list_messages",
|
|
5116
5159
|
"outlook_get_message",
|
|
5117
5160
|
"outlook_send_message",
|
|
5161
|
+
"outlook_search_messages",
|
|
5162
|
+
"outlook_reply_message",
|
|
5163
|
+
"outlook_reply_all_message",
|
|
5164
|
+
"outlook_forward_message",
|
|
5165
|
+
"outlook_delete_message",
|
|
5166
|
+
"outlook_move_message",
|
|
5167
|
+
"outlook_mark_message_read",
|
|
5168
|
+
"outlook_create_draft",
|
|
5169
|
+
"outlook_list_mail_folders",
|
|
5118
5170
|
"outlook_list_events",
|
|
5119
5171
|
"outlook_get_event",
|
|
5120
5172
|
"outlook_create_event",
|
|
5173
|
+
"outlook_update_event",
|
|
5174
|
+
"outlook_delete_event",
|
|
5175
|
+
"outlook_list_calendars",
|
|
5176
|
+
"outlook_accept_event",
|
|
5177
|
+
"outlook_decline_event",
|
|
5178
|
+
"outlook_tentatively_accept_event",
|
|
5179
|
+
"outlook_find_meeting_times",
|
|
5180
|
+
"outlook_get_schedule",
|
|
5121
5181
|
"outlook_list_contacts",
|
|
5122
|
-
"outlook_get_contact"
|
|
5123
|
-
"outlook_search"
|
|
5182
|
+
"outlook_get_contact"
|
|
5124
5183
|
];
|
|
5125
5184
|
function outlookIntegration(config = {}) {
|
|
5126
5185
|
const oauth = {
|
|
@@ -5591,13 +5650,48 @@ var logger26 = createLogger("Figma");
|
|
|
5591
5650
|
var FIGMA_TOOLS = [
|
|
5592
5651
|
"figma_get_file",
|
|
5593
5652
|
"figma_get_file_nodes",
|
|
5653
|
+
"figma_get_file_meta",
|
|
5654
|
+
"figma_get_image_fills",
|
|
5594
5655
|
"figma_get_images",
|
|
5656
|
+
"figma_get_file_versions",
|
|
5657
|
+
"figma_get_oembed",
|
|
5658
|
+
"figma_get_me",
|
|
5595
5659
|
"figma_get_comments",
|
|
5596
5660
|
"figma_post_comment",
|
|
5661
|
+
"figma_delete_comment",
|
|
5662
|
+
"figma_get_comment_reactions",
|
|
5663
|
+
"figma_post_comment_reaction",
|
|
5664
|
+
"figma_delete_comment_reaction",
|
|
5597
5665
|
"figma_list_projects",
|
|
5598
5666
|
"figma_get_project_files",
|
|
5599
|
-
"
|
|
5600
|
-
"
|
|
5667
|
+
"figma_get_team_components",
|
|
5668
|
+
"figma_get_file_components",
|
|
5669
|
+
"figma_get_component",
|
|
5670
|
+
"figma_get_team_component_sets",
|
|
5671
|
+
"figma_get_file_component_sets",
|
|
5672
|
+
"figma_get_component_set",
|
|
5673
|
+
"figma_get_team_styles",
|
|
5674
|
+
"figma_get_file_styles",
|
|
5675
|
+
"figma_get_style",
|
|
5676
|
+
"figma_list_webhooks",
|
|
5677
|
+
"figma_create_webhook",
|
|
5678
|
+
"figma_get_webhook",
|
|
5679
|
+
"figma_update_webhook",
|
|
5680
|
+
"figma_delete_webhook",
|
|
5681
|
+
"figma_get_team_webhooks",
|
|
5682
|
+
"figma_get_webhook_requests",
|
|
5683
|
+
"figma_get_local_variables",
|
|
5684
|
+
"figma_get_published_variables",
|
|
5685
|
+
"figma_post_variables",
|
|
5686
|
+
"figma_get_dev_resources",
|
|
5687
|
+
"figma_post_dev_resources",
|
|
5688
|
+
"figma_put_dev_resources",
|
|
5689
|
+
"figma_delete_dev_resource",
|
|
5690
|
+
"figma_get_payments",
|
|
5691
|
+
"figma_get_library_analytics_component_actions",
|
|
5692
|
+
"figma_get_library_analytics_component_usages",
|
|
5693
|
+
"figma_get_library_analytics_style_actions",
|
|
5694
|
+
"figma_get_library_analytics_style_usages"
|
|
5601
5695
|
];
|
|
5602
5696
|
function figmaIntegration(config = {}) {
|
|
5603
5697
|
const oauth = {
|