integrate-sdk 0.8.58 → 0.8.60-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/adapters/auto-routes.js +97 -4
- package/dist/adapters/index.js +97 -4
- package/dist/adapters/nextjs.js +97 -4
- package/dist/adapters/node.js +97 -4
- package/dist/adapters/svelte-kit.js +97 -4
- package/dist/adapters/tanstack-start.js +97 -4
- package/dist/index.js +97 -4
- package/dist/oauth.js +97 -4
- package/dist/server.js +97 -4
- package/dist/src/integrations/airtable-client.d.ts +210 -0
- package/dist/src/integrations/airtable-client.d.ts.map +1 -1
- package/dist/src/integrations/airtable.d.ts +2 -2
- package/dist/src/integrations/airtable.d.ts.map +1 -1
- package/dist/src/integrations/calcom-client.d.ts +334 -0
- package/dist/src/integrations/calcom-client.d.ts.map +1 -1
- package/dist/src/integrations/calcom.d.ts +2 -2
- package/dist/src/integrations/calcom.d.ts.map +1 -1
- package/dist/src/integrations/notion-client.d.ts +501 -20
- package/dist/src/integrations/notion-client.d.ts.map +1 -1
- package/dist/src/integrations/notion.d.ts +1 -1
- package/dist/src/integrations/notion.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -2717,7 +2717,33 @@ var init_notion = __esm(() => {
|
|
|
2717
2717
|
logger8 = createLogger("Notion");
|
|
2718
2718
|
NOTION_TOOLS = [
|
|
2719
2719
|
"notion_search",
|
|
2720
|
-
"notion_get_page"
|
|
2720
|
+
"notion_get_page",
|
|
2721
|
+
"notion_create_page",
|
|
2722
|
+
"notion_update_page",
|
|
2723
|
+
"notion_get_page_property",
|
|
2724
|
+
"notion_get_database",
|
|
2725
|
+
"notion_query_database",
|
|
2726
|
+
"notion_create_database",
|
|
2727
|
+
"notion_update_database",
|
|
2728
|
+
"notion_get_block",
|
|
2729
|
+
"notion_get_block_children",
|
|
2730
|
+
"notion_append_blocks",
|
|
2731
|
+
"notion_update_block",
|
|
2732
|
+
"notion_delete_block",
|
|
2733
|
+
"notion_get_user",
|
|
2734
|
+
"notion_get_current_user",
|
|
2735
|
+
"notion_list_users",
|
|
2736
|
+
"notion_create_comment",
|
|
2737
|
+
"notion_list_comments",
|
|
2738
|
+
"notion_move_page",
|
|
2739
|
+
"notion_create_file_upload",
|
|
2740
|
+
"notion_send_file_upload",
|
|
2741
|
+
"notion_complete_file_upload",
|
|
2742
|
+
"notion_get_file_upload",
|
|
2743
|
+
"notion_create_data_source",
|
|
2744
|
+
"notion_get_data_source",
|
|
2745
|
+
"notion_update_data_source",
|
|
2746
|
+
"notion_query_data_source"
|
|
2721
2747
|
];
|
|
2722
2748
|
});
|
|
2723
2749
|
|
|
@@ -3029,7 +3055,15 @@ function airtableIntegration(config = {}) {
|
|
|
3029
3055
|
provider: "airtable",
|
|
3030
3056
|
clientId: config.clientId ?? getEnv("AIRTABLE_CLIENT_ID"),
|
|
3031
3057
|
clientSecret: config.clientSecret ?? getEnv("AIRTABLE_CLIENT_SECRET"),
|
|
3032
|
-
scopes: config.scopes || [
|
|
3058
|
+
scopes: config.scopes || [
|
|
3059
|
+
"data.records:read",
|
|
3060
|
+
"data.records:write",
|
|
3061
|
+
"data.recordComments:read",
|
|
3062
|
+
"data.recordComments:write",
|
|
3063
|
+
"schema.bases:read",
|
|
3064
|
+
"schema.bases:write",
|
|
3065
|
+
"webhook:manage"
|
|
3066
|
+
],
|
|
3033
3067
|
redirectUri: config.redirectUri,
|
|
3034
3068
|
config: {
|
|
3035
3069
|
...config
|
|
@@ -3062,7 +3096,22 @@ var init_airtable = __esm(() => {
|
|
|
3062
3096
|
"airtable_get_record",
|
|
3063
3097
|
"airtable_create_record",
|
|
3064
3098
|
"airtable_update_record",
|
|
3065
|
-
"airtable_search_records"
|
|
3099
|
+
"airtable_search_records",
|
|
3100
|
+
"airtable_delete_record",
|
|
3101
|
+
"airtable_create_base",
|
|
3102
|
+
"airtable_create_table",
|
|
3103
|
+
"airtable_update_table",
|
|
3104
|
+
"airtable_create_field",
|
|
3105
|
+
"airtable_update_field",
|
|
3106
|
+
"airtable_list_comments",
|
|
3107
|
+
"airtable_create_comment",
|
|
3108
|
+
"airtable_update_comment",
|
|
3109
|
+
"airtable_delete_comment",
|
|
3110
|
+
"airtable_list_webhooks",
|
|
3111
|
+
"airtable_create_webhook",
|
|
3112
|
+
"airtable_delete_webhook",
|
|
3113
|
+
"airtable_list_webhook_payloads",
|
|
3114
|
+
"airtable_refresh_webhook"
|
|
3066
3115
|
];
|
|
3067
3116
|
});
|
|
3068
3117
|
|
|
@@ -3158,7 +3207,7 @@ function calcomIntegration(config = {}) {
|
|
|
3158
3207
|
provider: "calcom",
|
|
3159
3208
|
clientId: config.clientId ?? getEnv("CALCOM_CLIENT_ID"),
|
|
3160
3209
|
clientSecret: config.clientSecret ?? getEnv("CALCOM_CLIENT_SECRET"),
|
|
3161
|
-
scopes: config.scopes || ["
|
|
3210
|
+
scopes: config.scopes || ["READ_BOOKING", "WRITE_BOOKING", "READ_PROFILE", "WRITE_PROFILE"],
|
|
3162
3211
|
redirectUri: config.redirectUri,
|
|
3163
3212
|
config: {
|
|
3164
3213
|
apiBaseUrl: config.apiBaseUrl || "https://api.cal.com/v1",
|
|
@@ -3189,9 +3238,53 @@ var init_calcom = __esm(() => {
|
|
|
3189
3238
|
"calcom_create_booking",
|
|
3190
3239
|
"calcom_cancel_booking",
|
|
3191
3240
|
"calcom_reschedule_booking",
|
|
3241
|
+
"calcom_update_booking",
|
|
3242
|
+
"calcom_get_booking_recordings",
|
|
3243
|
+
"calcom_get_booking_transcripts",
|
|
3192
3244
|
"calcom_list_event_types",
|
|
3245
|
+
"calcom_get_event_type",
|
|
3246
|
+
"calcom_create_event_type",
|
|
3247
|
+
"calcom_update_event_type",
|
|
3248
|
+
"calcom_delete_event_type",
|
|
3249
|
+
"calcom_list_team_event_types",
|
|
3193
3250
|
"calcom_get_availability",
|
|
3251
|
+
"calcom_get_availability_rule",
|
|
3252
|
+
"calcom_create_availability_rule",
|
|
3253
|
+
"calcom_update_availability_rule",
|
|
3254
|
+
"calcom_delete_availability_rule",
|
|
3194
3255
|
"calcom_list_schedules",
|
|
3256
|
+
"calcom_get_schedule",
|
|
3257
|
+
"calcom_create_schedule",
|
|
3258
|
+
"calcom_update_schedule",
|
|
3259
|
+
"calcom_delete_schedule",
|
|
3260
|
+
"calcom_get_slots",
|
|
3261
|
+
"calcom_list_attendees",
|
|
3262
|
+
"calcom_get_attendee",
|
|
3263
|
+
"calcom_create_attendee",
|
|
3264
|
+
"calcom_update_attendee",
|
|
3265
|
+
"calcom_delete_attendee",
|
|
3266
|
+
"calcom_list_teams",
|
|
3267
|
+
"calcom_get_team",
|
|
3268
|
+
"calcom_create_team",
|
|
3269
|
+
"calcom_update_team",
|
|
3270
|
+
"calcom_delete_team",
|
|
3271
|
+
"calcom_list_memberships",
|
|
3272
|
+
"calcom_get_membership",
|
|
3273
|
+
"calcom_create_membership",
|
|
3274
|
+
"calcom_update_membership",
|
|
3275
|
+
"calcom_delete_membership",
|
|
3276
|
+
"calcom_list_webhooks",
|
|
3277
|
+
"calcom_get_webhook",
|
|
3278
|
+
"calcom_create_webhook",
|
|
3279
|
+
"calcom_update_webhook",
|
|
3280
|
+
"calcom_delete_webhook",
|
|
3281
|
+
"calcom_list_payments",
|
|
3282
|
+
"calcom_get_payment",
|
|
3283
|
+
"calcom_list_users",
|
|
3284
|
+
"calcom_get_user",
|
|
3285
|
+
"calcom_create_user",
|
|
3286
|
+
"calcom_update_user",
|
|
3287
|
+
"calcom_delete_user",
|
|
3195
3288
|
"calcom_get_me"
|
|
3196
3289
|
];
|
|
3197
3290
|
});
|
package/dist/index.js
CHANGED
|
@@ -3108,7 +3108,33 @@ var init_notion = __esm(() => {
|
|
|
3108
3108
|
logger9 = createLogger("Notion");
|
|
3109
3109
|
NOTION_TOOLS = [
|
|
3110
3110
|
"notion_search",
|
|
3111
|
-
"notion_get_page"
|
|
3111
|
+
"notion_get_page",
|
|
3112
|
+
"notion_create_page",
|
|
3113
|
+
"notion_update_page",
|
|
3114
|
+
"notion_get_page_property",
|
|
3115
|
+
"notion_get_database",
|
|
3116
|
+
"notion_query_database",
|
|
3117
|
+
"notion_create_database",
|
|
3118
|
+
"notion_update_database",
|
|
3119
|
+
"notion_get_block",
|
|
3120
|
+
"notion_get_block_children",
|
|
3121
|
+
"notion_append_blocks",
|
|
3122
|
+
"notion_update_block",
|
|
3123
|
+
"notion_delete_block",
|
|
3124
|
+
"notion_get_user",
|
|
3125
|
+
"notion_get_current_user",
|
|
3126
|
+
"notion_list_users",
|
|
3127
|
+
"notion_create_comment",
|
|
3128
|
+
"notion_list_comments",
|
|
3129
|
+
"notion_move_page",
|
|
3130
|
+
"notion_create_file_upload",
|
|
3131
|
+
"notion_send_file_upload",
|
|
3132
|
+
"notion_complete_file_upload",
|
|
3133
|
+
"notion_get_file_upload",
|
|
3134
|
+
"notion_create_data_source",
|
|
3135
|
+
"notion_get_data_source",
|
|
3136
|
+
"notion_update_data_source",
|
|
3137
|
+
"notion_query_data_source"
|
|
3112
3138
|
];
|
|
3113
3139
|
});
|
|
3114
3140
|
|
|
@@ -3420,7 +3446,15 @@ function airtableIntegration(config = {}) {
|
|
|
3420
3446
|
provider: "airtable",
|
|
3421
3447
|
clientId: config.clientId ?? getEnv("AIRTABLE_CLIENT_ID"),
|
|
3422
3448
|
clientSecret: config.clientSecret ?? getEnv("AIRTABLE_CLIENT_SECRET"),
|
|
3423
|
-
scopes: config.scopes || [
|
|
3449
|
+
scopes: config.scopes || [
|
|
3450
|
+
"data.records:read",
|
|
3451
|
+
"data.records:write",
|
|
3452
|
+
"data.recordComments:read",
|
|
3453
|
+
"data.recordComments:write",
|
|
3454
|
+
"schema.bases:read",
|
|
3455
|
+
"schema.bases:write",
|
|
3456
|
+
"webhook:manage"
|
|
3457
|
+
],
|
|
3424
3458
|
redirectUri: config.redirectUri,
|
|
3425
3459
|
config: {
|
|
3426
3460
|
...config
|
|
@@ -3453,7 +3487,22 @@ var init_airtable = __esm(() => {
|
|
|
3453
3487
|
"airtable_get_record",
|
|
3454
3488
|
"airtable_create_record",
|
|
3455
3489
|
"airtable_update_record",
|
|
3456
|
-
"airtable_search_records"
|
|
3490
|
+
"airtable_search_records",
|
|
3491
|
+
"airtable_delete_record",
|
|
3492
|
+
"airtable_create_base",
|
|
3493
|
+
"airtable_create_table",
|
|
3494
|
+
"airtable_update_table",
|
|
3495
|
+
"airtable_create_field",
|
|
3496
|
+
"airtable_update_field",
|
|
3497
|
+
"airtable_list_comments",
|
|
3498
|
+
"airtable_create_comment",
|
|
3499
|
+
"airtable_update_comment",
|
|
3500
|
+
"airtable_delete_comment",
|
|
3501
|
+
"airtable_list_webhooks",
|
|
3502
|
+
"airtable_create_webhook",
|
|
3503
|
+
"airtable_delete_webhook",
|
|
3504
|
+
"airtable_list_webhook_payloads",
|
|
3505
|
+
"airtable_refresh_webhook"
|
|
3457
3506
|
];
|
|
3458
3507
|
});
|
|
3459
3508
|
|
|
@@ -3549,7 +3598,7 @@ function calcomIntegration(config = {}) {
|
|
|
3549
3598
|
provider: "calcom",
|
|
3550
3599
|
clientId: config.clientId ?? getEnv("CALCOM_CLIENT_ID"),
|
|
3551
3600
|
clientSecret: config.clientSecret ?? getEnv("CALCOM_CLIENT_SECRET"),
|
|
3552
|
-
scopes: config.scopes || ["
|
|
3601
|
+
scopes: config.scopes || ["READ_BOOKING", "WRITE_BOOKING", "READ_PROFILE", "WRITE_PROFILE"],
|
|
3553
3602
|
redirectUri: config.redirectUri,
|
|
3554
3603
|
config: {
|
|
3555
3604
|
apiBaseUrl: config.apiBaseUrl || "https://api.cal.com/v1",
|
|
@@ -3580,9 +3629,53 @@ var init_calcom = __esm(() => {
|
|
|
3580
3629
|
"calcom_create_booking",
|
|
3581
3630
|
"calcom_cancel_booking",
|
|
3582
3631
|
"calcom_reschedule_booking",
|
|
3632
|
+
"calcom_update_booking",
|
|
3633
|
+
"calcom_get_booking_recordings",
|
|
3634
|
+
"calcom_get_booking_transcripts",
|
|
3583
3635
|
"calcom_list_event_types",
|
|
3636
|
+
"calcom_get_event_type",
|
|
3637
|
+
"calcom_create_event_type",
|
|
3638
|
+
"calcom_update_event_type",
|
|
3639
|
+
"calcom_delete_event_type",
|
|
3640
|
+
"calcom_list_team_event_types",
|
|
3584
3641
|
"calcom_get_availability",
|
|
3642
|
+
"calcom_get_availability_rule",
|
|
3643
|
+
"calcom_create_availability_rule",
|
|
3644
|
+
"calcom_update_availability_rule",
|
|
3645
|
+
"calcom_delete_availability_rule",
|
|
3585
3646
|
"calcom_list_schedules",
|
|
3647
|
+
"calcom_get_schedule",
|
|
3648
|
+
"calcom_create_schedule",
|
|
3649
|
+
"calcom_update_schedule",
|
|
3650
|
+
"calcom_delete_schedule",
|
|
3651
|
+
"calcom_get_slots",
|
|
3652
|
+
"calcom_list_attendees",
|
|
3653
|
+
"calcom_get_attendee",
|
|
3654
|
+
"calcom_create_attendee",
|
|
3655
|
+
"calcom_update_attendee",
|
|
3656
|
+
"calcom_delete_attendee",
|
|
3657
|
+
"calcom_list_teams",
|
|
3658
|
+
"calcom_get_team",
|
|
3659
|
+
"calcom_create_team",
|
|
3660
|
+
"calcom_update_team",
|
|
3661
|
+
"calcom_delete_team",
|
|
3662
|
+
"calcom_list_memberships",
|
|
3663
|
+
"calcom_get_membership",
|
|
3664
|
+
"calcom_create_membership",
|
|
3665
|
+
"calcom_update_membership",
|
|
3666
|
+
"calcom_delete_membership",
|
|
3667
|
+
"calcom_list_webhooks",
|
|
3668
|
+
"calcom_get_webhook",
|
|
3669
|
+
"calcom_create_webhook",
|
|
3670
|
+
"calcom_update_webhook",
|
|
3671
|
+
"calcom_delete_webhook",
|
|
3672
|
+
"calcom_list_payments",
|
|
3673
|
+
"calcom_get_payment",
|
|
3674
|
+
"calcom_list_users",
|
|
3675
|
+
"calcom_get_user",
|
|
3676
|
+
"calcom_create_user",
|
|
3677
|
+
"calcom_update_user",
|
|
3678
|
+
"calcom_delete_user",
|
|
3586
3679
|
"calcom_get_me"
|
|
3587
3680
|
];
|
|
3588
3681
|
});
|
package/dist/oauth.js
CHANGED
|
@@ -2930,7 +2930,33 @@ var init_notion = __esm(() => {
|
|
|
2930
2930
|
logger9 = createLogger("Notion");
|
|
2931
2931
|
NOTION_TOOLS = [
|
|
2932
2932
|
"notion_search",
|
|
2933
|
-
"notion_get_page"
|
|
2933
|
+
"notion_get_page",
|
|
2934
|
+
"notion_create_page",
|
|
2935
|
+
"notion_update_page",
|
|
2936
|
+
"notion_get_page_property",
|
|
2937
|
+
"notion_get_database",
|
|
2938
|
+
"notion_query_database",
|
|
2939
|
+
"notion_create_database",
|
|
2940
|
+
"notion_update_database",
|
|
2941
|
+
"notion_get_block",
|
|
2942
|
+
"notion_get_block_children",
|
|
2943
|
+
"notion_append_blocks",
|
|
2944
|
+
"notion_update_block",
|
|
2945
|
+
"notion_delete_block",
|
|
2946
|
+
"notion_get_user",
|
|
2947
|
+
"notion_get_current_user",
|
|
2948
|
+
"notion_list_users",
|
|
2949
|
+
"notion_create_comment",
|
|
2950
|
+
"notion_list_comments",
|
|
2951
|
+
"notion_move_page",
|
|
2952
|
+
"notion_create_file_upload",
|
|
2953
|
+
"notion_send_file_upload",
|
|
2954
|
+
"notion_complete_file_upload",
|
|
2955
|
+
"notion_get_file_upload",
|
|
2956
|
+
"notion_create_data_source",
|
|
2957
|
+
"notion_get_data_source",
|
|
2958
|
+
"notion_update_data_source",
|
|
2959
|
+
"notion_query_data_source"
|
|
2934
2960
|
];
|
|
2935
2961
|
});
|
|
2936
2962
|
|
|
@@ -3242,7 +3268,15 @@ function airtableIntegration(config = {}) {
|
|
|
3242
3268
|
provider: "airtable",
|
|
3243
3269
|
clientId: config.clientId ?? getEnv("AIRTABLE_CLIENT_ID"),
|
|
3244
3270
|
clientSecret: config.clientSecret ?? getEnv("AIRTABLE_CLIENT_SECRET"),
|
|
3245
|
-
scopes: config.scopes || [
|
|
3271
|
+
scopes: config.scopes || [
|
|
3272
|
+
"data.records:read",
|
|
3273
|
+
"data.records:write",
|
|
3274
|
+
"data.recordComments:read",
|
|
3275
|
+
"data.recordComments:write",
|
|
3276
|
+
"schema.bases:read",
|
|
3277
|
+
"schema.bases:write",
|
|
3278
|
+
"webhook:manage"
|
|
3279
|
+
],
|
|
3246
3280
|
redirectUri: config.redirectUri,
|
|
3247
3281
|
config: {
|
|
3248
3282
|
...config
|
|
@@ -3275,7 +3309,22 @@ var init_airtable = __esm(() => {
|
|
|
3275
3309
|
"airtable_get_record",
|
|
3276
3310
|
"airtable_create_record",
|
|
3277
3311
|
"airtable_update_record",
|
|
3278
|
-
"airtable_search_records"
|
|
3312
|
+
"airtable_search_records",
|
|
3313
|
+
"airtable_delete_record",
|
|
3314
|
+
"airtable_create_base",
|
|
3315
|
+
"airtable_create_table",
|
|
3316
|
+
"airtable_update_table",
|
|
3317
|
+
"airtable_create_field",
|
|
3318
|
+
"airtable_update_field",
|
|
3319
|
+
"airtable_list_comments",
|
|
3320
|
+
"airtable_create_comment",
|
|
3321
|
+
"airtable_update_comment",
|
|
3322
|
+
"airtable_delete_comment",
|
|
3323
|
+
"airtable_list_webhooks",
|
|
3324
|
+
"airtable_create_webhook",
|
|
3325
|
+
"airtable_delete_webhook",
|
|
3326
|
+
"airtable_list_webhook_payloads",
|
|
3327
|
+
"airtable_refresh_webhook"
|
|
3279
3328
|
];
|
|
3280
3329
|
});
|
|
3281
3330
|
|
|
@@ -3371,7 +3420,7 @@ function calcomIntegration(config = {}) {
|
|
|
3371
3420
|
provider: "calcom",
|
|
3372
3421
|
clientId: config.clientId ?? getEnv("CALCOM_CLIENT_ID"),
|
|
3373
3422
|
clientSecret: config.clientSecret ?? getEnv("CALCOM_CLIENT_SECRET"),
|
|
3374
|
-
scopes: config.scopes || ["
|
|
3423
|
+
scopes: config.scopes || ["READ_BOOKING", "WRITE_BOOKING", "READ_PROFILE", "WRITE_PROFILE"],
|
|
3375
3424
|
redirectUri: config.redirectUri,
|
|
3376
3425
|
config: {
|
|
3377
3426
|
apiBaseUrl: config.apiBaseUrl || "https://api.cal.com/v1",
|
|
@@ -3402,9 +3451,53 @@ var init_calcom = __esm(() => {
|
|
|
3402
3451
|
"calcom_create_booking",
|
|
3403
3452
|
"calcom_cancel_booking",
|
|
3404
3453
|
"calcom_reschedule_booking",
|
|
3454
|
+
"calcom_update_booking",
|
|
3455
|
+
"calcom_get_booking_recordings",
|
|
3456
|
+
"calcom_get_booking_transcripts",
|
|
3405
3457
|
"calcom_list_event_types",
|
|
3458
|
+
"calcom_get_event_type",
|
|
3459
|
+
"calcom_create_event_type",
|
|
3460
|
+
"calcom_update_event_type",
|
|
3461
|
+
"calcom_delete_event_type",
|
|
3462
|
+
"calcom_list_team_event_types",
|
|
3406
3463
|
"calcom_get_availability",
|
|
3464
|
+
"calcom_get_availability_rule",
|
|
3465
|
+
"calcom_create_availability_rule",
|
|
3466
|
+
"calcom_update_availability_rule",
|
|
3467
|
+
"calcom_delete_availability_rule",
|
|
3407
3468
|
"calcom_list_schedules",
|
|
3469
|
+
"calcom_get_schedule",
|
|
3470
|
+
"calcom_create_schedule",
|
|
3471
|
+
"calcom_update_schedule",
|
|
3472
|
+
"calcom_delete_schedule",
|
|
3473
|
+
"calcom_get_slots",
|
|
3474
|
+
"calcom_list_attendees",
|
|
3475
|
+
"calcom_get_attendee",
|
|
3476
|
+
"calcom_create_attendee",
|
|
3477
|
+
"calcom_update_attendee",
|
|
3478
|
+
"calcom_delete_attendee",
|
|
3479
|
+
"calcom_list_teams",
|
|
3480
|
+
"calcom_get_team",
|
|
3481
|
+
"calcom_create_team",
|
|
3482
|
+
"calcom_update_team",
|
|
3483
|
+
"calcom_delete_team",
|
|
3484
|
+
"calcom_list_memberships",
|
|
3485
|
+
"calcom_get_membership",
|
|
3486
|
+
"calcom_create_membership",
|
|
3487
|
+
"calcom_update_membership",
|
|
3488
|
+
"calcom_delete_membership",
|
|
3489
|
+
"calcom_list_webhooks",
|
|
3490
|
+
"calcom_get_webhook",
|
|
3491
|
+
"calcom_create_webhook",
|
|
3492
|
+
"calcom_update_webhook",
|
|
3493
|
+
"calcom_delete_webhook",
|
|
3494
|
+
"calcom_list_payments",
|
|
3495
|
+
"calcom_get_payment",
|
|
3496
|
+
"calcom_list_users",
|
|
3497
|
+
"calcom_get_user",
|
|
3498
|
+
"calcom_create_user",
|
|
3499
|
+
"calcom_update_user",
|
|
3500
|
+
"calcom_delete_user",
|
|
3408
3501
|
"calcom_get_me"
|
|
3409
3502
|
];
|
|
3410
3503
|
});
|
package/dist/server.js
CHANGED
|
@@ -3509,7 +3509,33 @@ var init_notion = __esm(() => {
|
|
|
3509
3509
|
logger10 = createLogger("Notion");
|
|
3510
3510
|
NOTION_TOOLS = [
|
|
3511
3511
|
"notion_search",
|
|
3512
|
-
"notion_get_page"
|
|
3512
|
+
"notion_get_page",
|
|
3513
|
+
"notion_create_page",
|
|
3514
|
+
"notion_update_page",
|
|
3515
|
+
"notion_get_page_property",
|
|
3516
|
+
"notion_get_database",
|
|
3517
|
+
"notion_query_database",
|
|
3518
|
+
"notion_create_database",
|
|
3519
|
+
"notion_update_database",
|
|
3520
|
+
"notion_get_block",
|
|
3521
|
+
"notion_get_block_children",
|
|
3522
|
+
"notion_append_blocks",
|
|
3523
|
+
"notion_update_block",
|
|
3524
|
+
"notion_delete_block",
|
|
3525
|
+
"notion_get_user",
|
|
3526
|
+
"notion_get_current_user",
|
|
3527
|
+
"notion_list_users",
|
|
3528
|
+
"notion_create_comment",
|
|
3529
|
+
"notion_list_comments",
|
|
3530
|
+
"notion_move_page",
|
|
3531
|
+
"notion_create_file_upload",
|
|
3532
|
+
"notion_send_file_upload",
|
|
3533
|
+
"notion_complete_file_upload",
|
|
3534
|
+
"notion_get_file_upload",
|
|
3535
|
+
"notion_create_data_source",
|
|
3536
|
+
"notion_get_data_source",
|
|
3537
|
+
"notion_update_data_source",
|
|
3538
|
+
"notion_query_data_source"
|
|
3513
3539
|
];
|
|
3514
3540
|
});
|
|
3515
3541
|
|
|
@@ -3821,7 +3847,15 @@ function airtableIntegration(config = {}) {
|
|
|
3821
3847
|
provider: "airtable",
|
|
3822
3848
|
clientId: config.clientId ?? getEnv("AIRTABLE_CLIENT_ID"),
|
|
3823
3849
|
clientSecret: config.clientSecret ?? getEnv("AIRTABLE_CLIENT_SECRET"),
|
|
3824
|
-
scopes: config.scopes || [
|
|
3850
|
+
scopes: config.scopes || [
|
|
3851
|
+
"data.records:read",
|
|
3852
|
+
"data.records:write",
|
|
3853
|
+
"data.recordComments:read",
|
|
3854
|
+
"data.recordComments:write",
|
|
3855
|
+
"schema.bases:read",
|
|
3856
|
+
"schema.bases:write",
|
|
3857
|
+
"webhook:manage"
|
|
3858
|
+
],
|
|
3825
3859
|
redirectUri: config.redirectUri,
|
|
3826
3860
|
config: {
|
|
3827
3861
|
...config
|
|
@@ -3854,7 +3888,22 @@ var init_airtable = __esm(() => {
|
|
|
3854
3888
|
"airtable_get_record",
|
|
3855
3889
|
"airtable_create_record",
|
|
3856
3890
|
"airtable_update_record",
|
|
3857
|
-
"airtable_search_records"
|
|
3891
|
+
"airtable_search_records",
|
|
3892
|
+
"airtable_delete_record",
|
|
3893
|
+
"airtable_create_base",
|
|
3894
|
+
"airtable_create_table",
|
|
3895
|
+
"airtable_update_table",
|
|
3896
|
+
"airtable_create_field",
|
|
3897
|
+
"airtable_update_field",
|
|
3898
|
+
"airtable_list_comments",
|
|
3899
|
+
"airtable_create_comment",
|
|
3900
|
+
"airtable_update_comment",
|
|
3901
|
+
"airtable_delete_comment",
|
|
3902
|
+
"airtable_list_webhooks",
|
|
3903
|
+
"airtable_create_webhook",
|
|
3904
|
+
"airtable_delete_webhook",
|
|
3905
|
+
"airtable_list_webhook_payloads",
|
|
3906
|
+
"airtable_refresh_webhook"
|
|
3858
3907
|
];
|
|
3859
3908
|
});
|
|
3860
3909
|
|
|
@@ -3950,7 +3999,7 @@ function calcomIntegration(config = {}) {
|
|
|
3950
3999
|
provider: "calcom",
|
|
3951
4000
|
clientId: config.clientId ?? getEnv("CALCOM_CLIENT_ID"),
|
|
3952
4001
|
clientSecret: config.clientSecret ?? getEnv("CALCOM_CLIENT_SECRET"),
|
|
3953
|
-
scopes: config.scopes || ["
|
|
4002
|
+
scopes: config.scopes || ["READ_BOOKING", "WRITE_BOOKING", "READ_PROFILE", "WRITE_PROFILE"],
|
|
3954
4003
|
redirectUri: config.redirectUri,
|
|
3955
4004
|
config: {
|
|
3956
4005
|
apiBaseUrl: config.apiBaseUrl || "https://api.cal.com/v1",
|
|
@@ -3981,9 +4030,53 @@ var init_calcom = __esm(() => {
|
|
|
3981
4030
|
"calcom_create_booking",
|
|
3982
4031
|
"calcom_cancel_booking",
|
|
3983
4032
|
"calcom_reschedule_booking",
|
|
4033
|
+
"calcom_update_booking",
|
|
4034
|
+
"calcom_get_booking_recordings",
|
|
4035
|
+
"calcom_get_booking_transcripts",
|
|
3984
4036
|
"calcom_list_event_types",
|
|
4037
|
+
"calcom_get_event_type",
|
|
4038
|
+
"calcom_create_event_type",
|
|
4039
|
+
"calcom_update_event_type",
|
|
4040
|
+
"calcom_delete_event_type",
|
|
4041
|
+
"calcom_list_team_event_types",
|
|
3985
4042
|
"calcom_get_availability",
|
|
4043
|
+
"calcom_get_availability_rule",
|
|
4044
|
+
"calcom_create_availability_rule",
|
|
4045
|
+
"calcom_update_availability_rule",
|
|
4046
|
+
"calcom_delete_availability_rule",
|
|
3986
4047
|
"calcom_list_schedules",
|
|
4048
|
+
"calcom_get_schedule",
|
|
4049
|
+
"calcom_create_schedule",
|
|
4050
|
+
"calcom_update_schedule",
|
|
4051
|
+
"calcom_delete_schedule",
|
|
4052
|
+
"calcom_get_slots",
|
|
4053
|
+
"calcom_list_attendees",
|
|
4054
|
+
"calcom_get_attendee",
|
|
4055
|
+
"calcom_create_attendee",
|
|
4056
|
+
"calcom_update_attendee",
|
|
4057
|
+
"calcom_delete_attendee",
|
|
4058
|
+
"calcom_list_teams",
|
|
4059
|
+
"calcom_get_team",
|
|
4060
|
+
"calcom_create_team",
|
|
4061
|
+
"calcom_update_team",
|
|
4062
|
+
"calcom_delete_team",
|
|
4063
|
+
"calcom_list_memberships",
|
|
4064
|
+
"calcom_get_membership",
|
|
4065
|
+
"calcom_create_membership",
|
|
4066
|
+
"calcom_update_membership",
|
|
4067
|
+
"calcom_delete_membership",
|
|
4068
|
+
"calcom_list_webhooks",
|
|
4069
|
+
"calcom_get_webhook",
|
|
4070
|
+
"calcom_create_webhook",
|
|
4071
|
+
"calcom_update_webhook",
|
|
4072
|
+
"calcom_delete_webhook",
|
|
4073
|
+
"calcom_list_payments",
|
|
4074
|
+
"calcom_get_payment",
|
|
4075
|
+
"calcom_list_users",
|
|
4076
|
+
"calcom_get_user",
|
|
4077
|
+
"calcom_create_user",
|
|
4078
|
+
"calcom_update_user",
|
|
4079
|
+
"calcom_delete_user",
|
|
3987
4080
|
"calcom_get_me"
|
|
3988
4081
|
];
|
|
3989
4082
|
});
|