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/adapters/index.js
CHANGED
|
@@ -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/adapters/nextjs.js
CHANGED
|
@@ -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/adapters/node.js
CHANGED
|
@@ -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
|
});
|
|
@@ -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
|
});
|