integrate-sdk 0.8.59-dev.0 → 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 +70 -3
- package/dist/adapters/index.js +70 -3
- package/dist/adapters/nextjs.js +70 -3
- package/dist/adapters/node.js +70 -3
- package/dist/adapters/svelte-kit.js +70 -3
- package/dist/adapters/tanstack-start.js +70 -3
- package/dist/index.js +70 -3
- package/dist/oauth.js +70 -3
- package/dist/server.js +70 -3
- 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/package.json +1 -1
|
@@ -3055,7 +3055,15 @@ function airtableIntegration(config = {}) {
|
|
|
3055
3055
|
provider: "airtable",
|
|
3056
3056
|
clientId: config.clientId ?? getEnv("AIRTABLE_CLIENT_ID"),
|
|
3057
3057
|
clientSecret: config.clientSecret ?? getEnv("AIRTABLE_CLIENT_SECRET"),
|
|
3058
|
-
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
|
+
],
|
|
3059
3067
|
redirectUri: config.redirectUri,
|
|
3060
3068
|
config: {
|
|
3061
3069
|
...config
|
|
@@ -3088,7 +3096,22 @@ var init_airtable = __esm(() => {
|
|
|
3088
3096
|
"airtable_get_record",
|
|
3089
3097
|
"airtable_create_record",
|
|
3090
3098
|
"airtable_update_record",
|
|
3091
|
-
"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"
|
|
3092
3115
|
];
|
|
3093
3116
|
});
|
|
3094
3117
|
|
|
@@ -3184,7 +3207,7 @@ function calcomIntegration(config = {}) {
|
|
|
3184
3207
|
provider: "calcom",
|
|
3185
3208
|
clientId: config.clientId ?? getEnv("CALCOM_CLIENT_ID"),
|
|
3186
3209
|
clientSecret: config.clientSecret ?? getEnv("CALCOM_CLIENT_SECRET"),
|
|
3187
|
-
scopes: config.scopes || ["
|
|
3210
|
+
scopes: config.scopes || ["READ_BOOKING", "WRITE_BOOKING", "READ_PROFILE", "WRITE_PROFILE"],
|
|
3188
3211
|
redirectUri: config.redirectUri,
|
|
3189
3212
|
config: {
|
|
3190
3213
|
apiBaseUrl: config.apiBaseUrl || "https://api.cal.com/v1",
|
|
@@ -3215,9 +3238,53 @@ var init_calcom = __esm(() => {
|
|
|
3215
3238
|
"calcom_create_booking",
|
|
3216
3239
|
"calcom_cancel_booking",
|
|
3217
3240
|
"calcom_reschedule_booking",
|
|
3241
|
+
"calcom_update_booking",
|
|
3242
|
+
"calcom_get_booking_recordings",
|
|
3243
|
+
"calcom_get_booking_transcripts",
|
|
3218
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",
|
|
3219
3250
|
"calcom_get_availability",
|
|
3251
|
+
"calcom_get_availability_rule",
|
|
3252
|
+
"calcom_create_availability_rule",
|
|
3253
|
+
"calcom_update_availability_rule",
|
|
3254
|
+
"calcom_delete_availability_rule",
|
|
3220
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",
|
|
3221
3288
|
"calcom_get_me"
|
|
3222
3289
|
];
|
|
3223
3290
|
});
|
package/dist/adapters/index.js
CHANGED
|
@@ -3055,7 +3055,15 @@ function airtableIntegration(config = {}) {
|
|
|
3055
3055
|
provider: "airtable",
|
|
3056
3056
|
clientId: config.clientId ?? getEnv("AIRTABLE_CLIENT_ID"),
|
|
3057
3057
|
clientSecret: config.clientSecret ?? getEnv("AIRTABLE_CLIENT_SECRET"),
|
|
3058
|
-
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
|
+
],
|
|
3059
3067
|
redirectUri: config.redirectUri,
|
|
3060
3068
|
config: {
|
|
3061
3069
|
...config
|
|
@@ -3088,7 +3096,22 @@ var init_airtable = __esm(() => {
|
|
|
3088
3096
|
"airtable_get_record",
|
|
3089
3097
|
"airtable_create_record",
|
|
3090
3098
|
"airtable_update_record",
|
|
3091
|
-
"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"
|
|
3092
3115
|
];
|
|
3093
3116
|
});
|
|
3094
3117
|
|
|
@@ -3184,7 +3207,7 @@ function calcomIntegration(config = {}) {
|
|
|
3184
3207
|
provider: "calcom",
|
|
3185
3208
|
clientId: config.clientId ?? getEnv("CALCOM_CLIENT_ID"),
|
|
3186
3209
|
clientSecret: config.clientSecret ?? getEnv("CALCOM_CLIENT_SECRET"),
|
|
3187
|
-
scopes: config.scopes || ["
|
|
3210
|
+
scopes: config.scopes || ["READ_BOOKING", "WRITE_BOOKING", "READ_PROFILE", "WRITE_PROFILE"],
|
|
3188
3211
|
redirectUri: config.redirectUri,
|
|
3189
3212
|
config: {
|
|
3190
3213
|
apiBaseUrl: config.apiBaseUrl || "https://api.cal.com/v1",
|
|
@@ -3215,9 +3238,53 @@ var init_calcom = __esm(() => {
|
|
|
3215
3238
|
"calcom_create_booking",
|
|
3216
3239
|
"calcom_cancel_booking",
|
|
3217
3240
|
"calcom_reschedule_booking",
|
|
3241
|
+
"calcom_update_booking",
|
|
3242
|
+
"calcom_get_booking_recordings",
|
|
3243
|
+
"calcom_get_booking_transcripts",
|
|
3218
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",
|
|
3219
3250
|
"calcom_get_availability",
|
|
3251
|
+
"calcom_get_availability_rule",
|
|
3252
|
+
"calcom_create_availability_rule",
|
|
3253
|
+
"calcom_update_availability_rule",
|
|
3254
|
+
"calcom_delete_availability_rule",
|
|
3220
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",
|
|
3221
3288
|
"calcom_get_me"
|
|
3222
3289
|
];
|
|
3223
3290
|
});
|
package/dist/adapters/nextjs.js
CHANGED
|
@@ -3055,7 +3055,15 @@ function airtableIntegration(config = {}) {
|
|
|
3055
3055
|
provider: "airtable",
|
|
3056
3056
|
clientId: config.clientId ?? getEnv("AIRTABLE_CLIENT_ID"),
|
|
3057
3057
|
clientSecret: config.clientSecret ?? getEnv("AIRTABLE_CLIENT_SECRET"),
|
|
3058
|
-
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
|
+
],
|
|
3059
3067
|
redirectUri: config.redirectUri,
|
|
3060
3068
|
config: {
|
|
3061
3069
|
...config
|
|
@@ -3088,7 +3096,22 @@ var init_airtable = __esm(() => {
|
|
|
3088
3096
|
"airtable_get_record",
|
|
3089
3097
|
"airtable_create_record",
|
|
3090
3098
|
"airtable_update_record",
|
|
3091
|
-
"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"
|
|
3092
3115
|
];
|
|
3093
3116
|
});
|
|
3094
3117
|
|
|
@@ -3184,7 +3207,7 @@ function calcomIntegration(config = {}) {
|
|
|
3184
3207
|
provider: "calcom",
|
|
3185
3208
|
clientId: config.clientId ?? getEnv("CALCOM_CLIENT_ID"),
|
|
3186
3209
|
clientSecret: config.clientSecret ?? getEnv("CALCOM_CLIENT_SECRET"),
|
|
3187
|
-
scopes: config.scopes || ["
|
|
3210
|
+
scopes: config.scopes || ["READ_BOOKING", "WRITE_BOOKING", "READ_PROFILE", "WRITE_PROFILE"],
|
|
3188
3211
|
redirectUri: config.redirectUri,
|
|
3189
3212
|
config: {
|
|
3190
3213
|
apiBaseUrl: config.apiBaseUrl || "https://api.cal.com/v1",
|
|
@@ -3215,9 +3238,53 @@ var init_calcom = __esm(() => {
|
|
|
3215
3238
|
"calcom_create_booking",
|
|
3216
3239
|
"calcom_cancel_booking",
|
|
3217
3240
|
"calcom_reschedule_booking",
|
|
3241
|
+
"calcom_update_booking",
|
|
3242
|
+
"calcom_get_booking_recordings",
|
|
3243
|
+
"calcom_get_booking_transcripts",
|
|
3218
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",
|
|
3219
3250
|
"calcom_get_availability",
|
|
3251
|
+
"calcom_get_availability_rule",
|
|
3252
|
+
"calcom_create_availability_rule",
|
|
3253
|
+
"calcom_update_availability_rule",
|
|
3254
|
+
"calcom_delete_availability_rule",
|
|
3220
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",
|
|
3221
3288
|
"calcom_get_me"
|
|
3222
3289
|
];
|
|
3223
3290
|
});
|
package/dist/adapters/node.js
CHANGED
|
@@ -3055,7 +3055,15 @@ function airtableIntegration(config = {}) {
|
|
|
3055
3055
|
provider: "airtable",
|
|
3056
3056
|
clientId: config.clientId ?? getEnv("AIRTABLE_CLIENT_ID"),
|
|
3057
3057
|
clientSecret: config.clientSecret ?? getEnv("AIRTABLE_CLIENT_SECRET"),
|
|
3058
|
-
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
|
+
],
|
|
3059
3067
|
redirectUri: config.redirectUri,
|
|
3060
3068
|
config: {
|
|
3061
3069
|
...config
|
|
@@ -3088,7 +3096,22 @@ var init_airtable = __esm(() => {
|
|
|
3088
3096
|
"airtable_get_record",
|
|
3089
3097
|
"airtable_create_record",
|
|
3090
3098
|
"airtable_update_record",
|
|
3091
|
-
"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"
|
|
3092
3115
|
];
|
|
3093
3116
|
});
|
|
3094
3117
|
|
|
@@ -3184,7 +3207,7 @@ function calcomIntegration(config = {}) {
|
|
|
3184
3207
|
provider: "calcom",
|
|
3185
3208
|
clientId: config.clientId ?? getEnv("CALCOM_CLIENT_ID"),
|
|
3186
3209
|
clientSecret: config.clientSecret ?? getEnv("CALCOM_CLIENT_SECRET"),
|
|
3187
|
-
scopes: config.scopes || ["
|
|
3210
|
+
scopes: config.scopes || ["READ_BOOKING", "WRITE_BOOKING", "READ_PROFILE", "WRITE_PROFILE"],
|
|
3188
3211
|
redirectUri: config.redirectUri,
|
|
3189
3212
|
config: {
|
|
3190
3213
|
apiBaseUrl: config.apiBaseUrl || "https://api.cal.com/v1",
|
|
@@ -3215,9 +3238,53 @@ var init_calcom = __esm(() => {
|
|
|
3215
3238
|
"calcom_create_booking",
|
|
3216
3239
|
"calcom_cancel_booking",
|
|
3217
3240
|
"calcom_reschedule_booking",
|
|
3241
|
+
"calcom_update_booking",
|
|
3242
|
+
"calcom_get_booking_recordings",
|
|
3243
|
+
"calcom_get_booking_transcripts",
|
|
3218
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",
|
|
3219
3250
|
"calcom_get_availability",
|
|
3251
|
+
"calcom_get_availability_rule",
|
|
3252
|
+
"calcom_create_availability_rule",
|
|
3253
|
+
"calcom_update_availability_rule",
|
|
3254
|
+
"calcom_delete_availability_rule",
|
|
3220
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",
|
|
3221
3288
|
"calcom_get_me"
|
|
3222
3289
|
];
|
|
3223
3290
|
});
|
|
@@ -3055,7 +3055,15 @@ function airtableIntegration(config = {}) {
|
|
|
3055
3055
|
provider: "airtable",
|
|
3056
3056
|
clientId: config.clientId ?? getEnv("AIRTABLE_CLIENT_ID"),
|
|
3057
3057
|
clientSecret: config.clientSecret ?? getEnv("AIRTABLE_CLIENT_SECRET"),
|
|
3058
|
-
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
|
+
],
|
|
3059
3067
|
redirectUri: config.redirectUri,
|
|
3060
3068
|
config: {
|
|
3061
3069
|
...config
|
|
@@ -3088,7 +3096,22 @@ var init_airtable = __esm(() => {
|
|
|
3088
3096
|
"airtable_get_record",
|
|
3089
3097
|
"airtable_create_record",
|
|
3090
3098
|
"airtable_update_record",
|
|
3091
|
-
"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"
|
|
3092
3115
|
];
|
|
3093
3116
|
});
|
|
3094
3117
|
|
|
@@ -3184,7 +3207,7 @@ function calcomIntegration(config = {}) {
|
|
|
3184
3207
|
provider: "calcom",
|
|
3185
3208
|
clientId: config.clientId ?? getEnv("CALCOM_CLIENT_ID"),
|
|
3186
3209
|
clientSecret: config.clientSecret ?? getEnv("CALCOM_CLIENT_SECRET"),
|
|
3187
|
-
scopes: config.scopes || ["
|
|
3210
|
+
scopes: config.scopes || ["READ_BOOKING", "WRITE_BOOKING", "READ_PROFILE", "WRITE_PROFILE"],
|
|
3188
3211
|
redirectUri: config.redirectUri,
|
|
3189
3212
|
config: {
|
|
3190
3213
|
apiBaseUrl: config.apiBaseUrl || "https://api.cal.com/v1",
|
|
@@ -3215,9 +3238,53 @@ var init_calcom = __esm(() => {
|
|
|
3215
3238
|
"calcom_create_booking",
|
|
3216
3239
|
"calcom_cancel_booking",
|
|
3217
3240
|
"calcom_reschedule_booking",
|
|
3241
|
+
"calcom_update_booking",
|
|
3242
|
+
"calcom_get_booking_recordings",
|
|
3243
|
+
"calcom_get_booking_transcripts",
|
|
3218
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",
|
|
3219
3250
|
"calcom_get_availability",
|
|
3251
|
+
"calcom_get_availability_rule",
|
|
3252
|
+
"calcom_create_availability_rule",
|
|
3253
|
+
"calcom_update_availability_rule",
|
|
3254
|
+
"calcom_delete_availability_rule",
|
|
3220
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",
|
|
3221
3288
|
"calcom_get_me"
|
|
3222
3289
|
];
|
|
3223
3290
|
});
|
|
@@ -3055,7 +3055,15 @@ function airtableIntegration(config = {}) {
|
|
|
3055
3055
|
provider: "airtable",
|
|
3056
3056
|
clientId: config.clientId ?? getEnv("AIRTABLE_CLIENT_ID"),
|
|
3057
3057
|
clientSecret: config.clientSecret ?? getEnv("AIRTABLE_CLIENT_SECRET"),
|
|
3058
|
-
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
|
+
],
|
|
3059
3067
|
redirectUri: config.redirectUri,
|
|
3060
3068
|
config: {
|
|
3061
3069
|
...config
|
|
@@ -3088,7 +3096,22 @@ var init_airtable = __esm(() => {
|
|
|
3088
3096
|
"airtable_get_record",
|
|
3089
3097
|
"airtable_create_record",
|
|
3090
3098
|
"airtable_update_record",
|
|
3091
|
-
"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"
|
|
3092
3115
|
];
|
|
3093
3116
|
});
|
|
3094
3117
|
|
|
@@ -3184,7 +3207,7 @@ function calcomIntegration(config = {}) {
|
|
|
3184
3207
|
provider: "calcom",
|
|
3185
3208
|
clientId: config.clientId ?? getEnv("CALCOM_CLIENT_ID"),
|
|
3186
3209
|
clientSecret: config.clientSecret ?? getEnv("CALCOM_CLIENT_SECRET"),
|
|
3187
|
-
scopes: config.scopes || ["
|
|
3210
|
+
scopes: config.scopes || ["READ_BOOKING", "WRITE_BOOKING", "READ_PROFILE", "WRITE_PROFILE"],
|
|
3188
3211
|
redirectUri: config.redirectUri,
|
|
3189
3212
|
config: {
|
|
3190
3213
|
apiBaseUrl: config.apiBaseUrl || "https://api.cal.com/v1",
|
|
@@ -3215,9 +3238,53 @@ var init_calcom = __esm(() => {
|
|
|
3215
3238
|
"calcom_create_booking",
|
|
3216
3239
|
"calcom_cancel_booking",
|
|
3217
3240
|
"calcom_reschedule_booking",
|
|
3241
|
+
"calcom_update_booking",
|
|
3242
|
+
"calcom_get_booking_recordings",
|
|
3243
|
+
"calcom_get_booking_transcripts",
|
|
3218
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",
|
|
3219
3250
|
"calcom_get_availability",
|
|
3251
|
+
"calcom_get_availability_rule",
|
|
3252
|
+
"calcom_create_availability_rule",
|
|
3253
|
+
"calcom_update_availability_rule",
|
|
3254
|
+
"calcom_delete_availability_rule",
|
|
3220
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",
|
|
3221
3288
|
"calcom_get_me"
|
|
3222
3289
|
];
|
|
3223
3290
|
});
|