integrate-sdk 0.8.81-dev.0 → 0.9.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 +66 -73
- package/dist/adapters/index.js +66 -73
- package/dist/adapters/nextjs.js +66 -73
- package/dist/adapters/node.js +66 -73
- package/dist/adapters/svelte-kit.js +66 -73
- package/dist/adapters/tanstack-start.js +66 -73
- package/dist/index.js +66 -73
- package/dist/oauth.js +66 -73
- package/dist/server.js +66 -73
- package/dist/src/integrations/airtable.d.ts.map +1 -1
- package/dist/src/integrations/gmail.d.ts.map +1 -1
- package/dist/src/integrations/gworkspace.d.ts.map +1 -1
- package/dist/src/integrations/hubspot.d.ts.map +1 -1
- package/dist/src/integrations/polar.d.ts.map +1 -1
- package/dist/src/integrations/slack-client.d.ts +346 -57
- 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/todoist-client.d.ts +458 -49
- package/dist/src/integrations/todoist-client.d.ts.map +1 -1
- package/dist/src/integrations/todoist.d.ts +1 -1
- package/dist/src/integrations/todoist.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -3446,7 +3446,7 @@ function githubIntegration(config = {}) {
|
|
|
3446
3446
|
provider: "github",
|
|
3447
3447
|
clientId: config.clientId ?? getEnv("GITHUB_CLIENT_ID"),
|
|
3448
3448
|
clientSecret: config.clientSecret ?? getEnv("GITHUB_CLIENT_SECRET"),
|
|
3449
|
-
scopes: config.scopes
|
|
3449
|
+
scopes: config.scopes,
|
|
3450
3450
|
optionalScopes: config.optionalScopes,
|
|
3451
3451
|
redirectUri: config.redirectUri,
|
|
3452
3452
|
config: {
|
|
@@ -3529,12 +3529,7 @@ function gmailIntegration(config = {}) {
|
|
|
3529
3529
|
provider: "gmail",
|
|
3530
3530
|
clientId: config.clientId ?? getEnv("GMAIL_CLIENT_ID"),
|
|
3531
3531
|
clientSecret: config.clientSecret ?? getEnv("GMAIL_CLIENT_SECRET"),
|
|
3532
|
-
scopes: config.scopes
|
|
3533
|
-
"https://www.googleapis.com/auth/gmail.send",
|
|
3534
|
-
"https://www.googleapis.com/auth/gmail.readonly",
|
|
3535
|
-
"https://www.googleapis.com/auth/gmail.modify",
|
|
3536
|
-
"https://www.googleapis.com/auth/gmail.labels"
|
|
3537
|
-
],
|
|
3532
|
+
scopes: config.scopes,
|
|
3538
3533
|
optionalScopes: config.optionalScopes,
|
|
3539
3534
|
redirectUri: config.redirectUri,
|
|
3540
3535
|
config
|
|
@@ -3571,7 +3566,7 @@ function notionIntegration(config = {}) {
|
|
|
3571
3566
|
provider: "notion",
|
|
3572
3567
|
clientId: config.clientId ?? getEnv("NOTION_CLIENT_ID"),
|
|
3573
3568
|
clientSecret: config.clientSecret ?? getEnv("NOTION_CLIENT_SECRET"),
|
|
3574
|
-
scopes:
|
|
3569
|
+
scopes: undefined,
|
|
3575
3570
|
optionalScopes: config.optionalScopes,
|
|
3576
3571
|
redirectUri: config.redirectUri,
|
|
3577
3572
|
config: {
|
|
@@ -3637,7 +3632,7 @@ function slackIntegration(config = {}) {
|
|
|
3637
3632
|
provider: "slack",
|
|
3638
3633
|
clientId: config.clientId ?? getEnv("SLACK_CLIENT_ID"),
|
|
3639
3634
|
clientSecret: config.clientSecret ?? getEnv("SLACK_CLIENT_SECRET"),
|
|
3640
|
-
scopes: config.scopes
|
|
3635
|
+
scopes: config.scopes,
|
|
3641
3636
|
optionalScopes: config.optionalScopes,
|
|
3642
3637
|
redirectUri: config.redirectUri,
|
|
3643
3638
|
config: {
|
|
@@ -3664,14 +3659,30 @@ var init_slack = __esm(() => {
|
|
|
3664
3659
|
logger11 = createLogger("Slack");
|
|
3665
3660
|
SLACK_TOOLS = [
|
|
3666
3661
|
"slack_send_message",
|
|
3662
|
+
"slack_list_messages",
|
|
3663
|
+
"slack_get_thread_replies",
|
|
3664
|
+
"slack_update_message",
|
|
3665
|
+
"slack_delete_message",
|
|
3666
|
+
"slack_schedule_message",
|
|
3667
|
+
"slack_get_permalink",
|
|
3668
|
+
"slack_search_messages",
|
|
3667
3669
|
"slack_list_channels",
|
|
3668
3670
|
"slack_get_channel",
|
|
3671
|
+
"slack_create_channel",
|
|
3672
|
+
"slack_invite_to_channel",
|
|
3673
|
+
"slack_list_channel_members",
|
|
3674
|
+
"slack_set_channel_topic",
|
|
3675
|
+
"slack_archive_channel",
|
|
3669
3676
|
"slack_list_users",
|
|
3670
3677
|
"slack_get_user",
|
|
3671
|
-
"
|
|
3678
|
+
"slack_lookup_user_by_email",
|
|
3672
3679
|
"slack_add_reaction",
|
|
3673
|
-
"
|
|
3674
|
-
"
|
|
3680
|
+
"slack_remove_reaction",
|
|
3681
|
+
"slack_get_reactions",
|
|
3682
|
+
"slack_upload_file",
|
|
3683
|
+
"slack_pin_message",
|
|
3684
|
+
"slack_unpin_message",
|
|
3685
|
+
"slack_list_pins"
|
|
3675
3686
|
];
|
|
3676
3687
|
});
|
|
3677
3688
|
|
|
@@ -3681,7 +3692,7 @@ function linearIntegration(config = {}) {
|
|
|
3681
3692
|
provider: "linear",
|
|
3682
3693
|
clientId: config.clientId ?? getEnv("LINEAR_CLIENT_ID"),
|
|
3683
3694
|
clientSecret: config.clientSecret ?? getEnv("LINEAR_CLIENT_SECRET"),
|
|
3684
|
-
scopes: config.scopes
|
|
3695
|
+
scopes: config.scopes,
|
|
3685
3696
|
optionalScopes: config.optionalScopes,
|
|
3686
3697
|
redirectUri: config.redirectUri,
|
|
3687
3698
|
config: {
|
|
@@ -3749,7 +3760,7 @@ function vercelIntegration(config = {}) {
|
|
|
3749
3760
|
provider: "vercel",
|
|
3750
3761
|
clientId: config.clientId ?? getEnv("VERCEL_CLIENT_ID"),
|
|
3751
3762
|
clientSecret: config.clientSecret ?? getEnv("VERCEL_CLIENT_SECRET"),
|
|
3752
|
-
scopes: config.scopes
|
|
3763
|
+
scopes: config.scopes,
|
|
3753
3764
|
optionalScopes: config.optionalScopes,
|
|
3754
3765
|
redirectUri: config.redirectUri,
|
|
3755
3766
|
config: {
|
|
@@ -3805,7 +3816,7 @@ function zendeskIntegration(config = {}) {
|
|
|
3805
3816
|
provider: "zendesk",
|
|
3806
3817
|
clientId: config.clientId ?? getEnv("ZENDESK_CLIENT_ID"),
|
|
3807
3818
|
clientSecret: config.clientSecret ?? getEnv("ZENDESK_CLIENT_SECRET"),
|
|
3808
|
-
scopes: config.scopes
|
|
3819
|
+
scopes: config.scopes,
|
|
3809
3820
|
optionalScopes: config.optionalScopes,
|
|
3810
3821
|
redirectUri: config.redirectUri,
|
|
3811
3822
|
config: {
|
|
@@ -3867,7 +3878,7 @@ function stripeIntegration(config = {}) {
|
|
|
3867
3878
|
provider: "stripe",
|
|
3868
3879
|
clientId: config.clientId ?? getEnv("STRIPE_CLIENT_ID"),
|
|
3869
3880
|
clientSecret: config.clientSecret ?? getEnv("STRIPE_CLIENT_SECRET"),
|
|
3870
|
-
scopes: config.scopes
|
|
3881
|
+
scopes: config.scopes,
|
|
3871
3882
|
optionalScopes: config.optionalScopes,
|
|
3872
3883
|
redirectUri: config.redirectUri,
|
|
3873
3884
|
config: {
|
|
@@ -3911,7 +3922,7 @@ function gcalIntegration(config = {}) {
|
|
|
3911
3922
|
provider: "gcal",
|
|
3912
3923
|
clientId: config.clientId ?? getEnv("GCAL_CLIENT_ID"),
|
|
3913
3924
|
clientSecret: config.clientSecret ?? getEnv("GCAL_CLIENT_SECRET"),
|
|
3914
|
-
scopes: config.scopes
|
|
3925
|
+
scopes: config.scopes,
|
|
3915
3926
|
optionalScopes: config.optionalScopes,
|
|
3916
3927
|
redirectUri: config.redirectUri,
|
|
3917
3928
|
config: {
|
|
@@ -3955,7 +3966,7 @@ function outlookIntegration(config = {}) {
|
|
|
3955
3966
|
provider: "outlook",
|
|
3956
3967
|
clientId: config.clientId ?? getEnv("OUTLOOK_CLIENT_ID"),
|
|
3957
3968
|
clientSecret: config.clientSecret ?? getEnv("OUTLOOK_CLIENT_SECRET"),
|
|
3958
|
-
scopes: config.scopes
|
|
3969
|
+
scopes: config.scopes,
|
|
3959
3970
|
optionalScopes: config.optionalScopes,
|
|
3960
3971
|
redirectUri: config.redirectUri,
|
|
3961
3972
|
config: {
|
|
@@ -3999,15 +4010,7 @@ function airtableIntegration(config = {}) {
|
|
|
3999
4010
|
provider: "airtable",
|
|
4000
4011
|
clientId: config.clientId ?? getEnv("AIRTABLE_CLIENT_ID"),
|
|
4001
4012
|
clientSecret: config.clientSecret ?? getEnv("AIRTABLE_CLIENT_SECRET"),
|
|
4002
|
-
scopes: config.scopes
|
|
4003
|
-
"data.records:read",
|
|
4004
|
-
"data.records:write",
|
|
4005
|
-
"data.recordComments:read",
|
|
4006
|
-
"data.recordComments:write",
|
|
4007
|
-
"schema.bases:read",
|
|
4008
|
-
"schema.bases:write",
|
|
4009
|
-
"webhook:manage"
|
|
4010
|
-
],
|
|
4013
|
+
scopes: config.scopes,
|
|
4011
4014
|
optionalScopes: config.optionalScopes,
|
|
4012
4015
|
redirectUri: config.redirectUri,
|
|
4013
4016
|
config: {
|
|
@@ -4066,7 +4069,7 @@ function todoistIntegration(config = {}) {
|
|
|
4066
4069
|
provider: "todoist",
|
|
4067
4070
|
clientId: config.clientId ?? getEnv("TODOIST_CLIENT_ID"),
|
|
4068
4071
|
clientSecret: config.clientSecret ?? getEnv("TODOIST_CLIENT_SECRET"),
|
|
4069
|
-
scopes: config.scopes
|
|
4072
|
+
scopes: config.scopes,
|
|
4070
4073
|
optionalScopes: config.optionalScopes,
|
|
4071
4074
|
redirectUri: config.redirectUri,
|
|
4072
4075
|
config: {
|
|
@@ -4095,12 +4098,36 @@ var init_todoist = __esm(() => {
|
|
|
4095
4098
|
"todoist_list_projects",
|
|
4096
4099
|
"todoist_get_project",
|
|
4097
4100
|
"todoist_create_project",
|
|
4101
|
+
"todoist_update_project",
|
|
4102
|
+
"todoist_delete_project",
|
|
4103
|
+
"todoist_archive_project",
|
|
4098
4104
|
"todoist_list_tasks",
|
|
4099
4105
|
"todoist_get_task",
|
|
4100
4106
|
"todoist_create_task",
|
|
4107
|
+
"todoist_update_task",
|
|
4101
4108
|
"todoist_complete_task",
|
|
4109
|
+
"todoist_delete_task",
|
|
4110
|
+
"todoist_reopen_task",
|
|
4111
|
+
"todoist_move_task",
|
|
4112
|
+
"todoist_quick_add_task",
|
|
4113
|
+
"todoist_get_completed_tasks",
|
|
4114
|
+
"todoist_filter_tasks",
|
|
4115
|
+
"todoist_list_sections",
|
|
4116
|
+
"todoist_create_section",
|
|
4117
|
+
"todoist_get_section",
|
|
4118
|
+
"todoist_update_section",
|
|
4119
|
+
"todoist_delete_section",
|
|
4120
|
+
"todoist_list_comments",
|
|
4121
|
+
"todoist_create_comment",
|
|
4122
|
+
"todoist_get_comment",
|
|
4123
|
+
"todoist_update_comment",
|
|
4124
|
+
"todoist_delete_comment",
|
|
4102
4125
|
"todoist_list_labels",
|
|
4103
|
-
"todoist_create_label"
|
|
4126
|
+
"todoist_create_label",
|
|
4127
|
+
"todoist_update_label",
|
|
4128
|
+
"todoist_delete_label",
|
|
4129
|
+
"todoist_list_reminders",
|
|
4130
|
+
"todoist_create_reminder"
|
|
4104
4131
|
];
|
|
4105
4132
|
});
|
|
4106
4133
|
|
|
@@ -4110,7 +4137,7 @@ function whatsappIntegration(config = {}) {
|
|
|
4110
4137
|
provider: "whatsapp",
|
|
4111
4138
|
clientId: config.clientId ?? getEnv("WHATSAPP_CLIENT_ID"),
|
|
4112
4139
|
clientSecret: config.clientSecret ?? getEnv("WHATSAPP_CLIENT_SECRET"),
|
|
4113
|
-
scopes: config.scopes
|
|
4140
|
+
scopes: config.scopes,
|
|
4114
4141
|
optionalScopes: config.optionalScopes,
|
|
4115
4142
|
redirectUri: config.redirectUri,
|
|
4116
4143
|
config: {
|
|
@@ -4154,7 +4181,7 @@ function calcomIntegration(config = {}) {
|
|
|
4154
4181
|
provider: "calcom",
|
|
4155
4182
|
clientId: config.clientId ?? getEnv("CALCOM_CLIENT_ID"),
|
|
4156
4183
|
clientSecret: config.clientSecret ?? getEnv("CALCOM_CLIENT_SECRET"),
|
|
4157
|
-
scopes: config.scopes
|
|
4184
|
+
scopes: config.scopes,
|
|
4158
4185
|
optionalScopes: config.optionalScopes,
|
|
4159
4186
|
redirectUri: config.redirectUri,
|
|
4160
4187
|
config: {
|
|
@@ -4243,7 +4270,7 @@ function rampIntegration(config = {}) {
|
|
|
4243
4270
|
provider: "ramp",
|
|
4244
4271
|
clientId: config.clientId ?? getEnv("RAMP_CLIENT_ID"),
|
|
4245
4272
|
clientSecret: config.clientSecret ?? getEnv("RAMP_CLIENT_SECRET"),
|
|
4246
|
-
scopes: config.scopes
|
|
4273
|
+
scopes: config.scopes,
|
|
4247
4274
|
optionalScopes: config.optionalScopes,
|
|
4248
4275
|
redirectUri: config.redirectUri,
|
|
4249
4276
|
config: {
|
|
@@ -4288,7 +4315,7 @@ function onedriveIntegration(config = {}) {
|
|
|
4288
4315
|
provider: "onedrive",
|
|
4289
4316
|
clientId: config.clientId ?? getEnv("ONEDRIVE_CLIENT_ID"),
|
|
4290
4317
|
clientSecret: config.clientSecret ?? getEnv("ONEDRIVE_CLIENT_SECRET"),
|
|
4291
|
-
scopes: config.scopes
|
|
4318
|
+
scopes: config.scopes,
|
|
4292
4319
|
optionalScopes: config.optionalScopes,
|
|
4293
4320
|
redirectUri: config.redirectUri,
|
|
4294
4321
|
config: {
|
|
@@ -4335,12 +4362,7 @@ function gworkspaceIntegration(config = {}) {
|
|
|
4335
4362
|
provider: "gworkspace",
|
|
4336
4363
|
clientId: config.clientId ?? getEnv("GWORKSPACE_CLIENT_ID"),
|
|
4337
4364
|
clientSecret: config.clientSecret ?? getEnv("GWORKSPACE_CLIENT_SECRET"),
|
|
4338
|
-
scopes: config.scopes
|
|
4339
|
-
"https://www.googleapis.com/auth/spreadsheets",
|
|
4340
|
-
"https://www.googleapis.com/auth/documents",
|
|
4341
|
-
"https://www.googleapis.com/auth/presentations",
|
|
4342
|
-
"https://www.googleapis.com/auth/drive.readonly"
|
|
4343
|
-
],
|
|
4365
|
+
scopes: config.scopes,
|
|
4344
4366
|
optionalScopes: config.optionalScopes,
|
|
4345
4367
|
redirectUri: config.redirectUri,
|
|
4346
4368
|
config: {
|
|
@@ -4387,26 +4409,7 @@ function polarIntegration(config = {}) {
|
|
|
4387
4409
|
provider: "polar",
|
|
4388
4410
|
clientId: config.clientId ?? getEnv("POLAR_CLIENT_ID"),
|
|
4389
4411
|
clientSecret: config.clientSecret ?? getEnv("POLAR_CLIENT_SECRET"),
|
|
4390
|
-
scopes: config.scopes
|
|
4391
|
-
"openid",
|
|
4392
|
-
"products:read",
|
|
4393
|
-
"products:write",
|
|
4394
|
-
"subscriptions:read",
|
|
4395
|
-
"subscriptions:write",
|
|
4396
|
-
"customers:read",
|
|
4397
|
-
"customers:write",
|
|
4398
|
-
"orders:read",
|
|
4399
|
-
"benefits:read",
|
|
4400
|
-
"benefits:write",
|
|
4401
|
-
"license_keys:read",
|
|
4402
|
-
"license_keys:write",
|
|
4403
|
-
"checkout_links:read",
|
|
4404
|
-
"checkout_links:write",
|
|
4405
|
-
"discounts:read",
|
|
4406
|
-
"discounts:write",
|
|
4407
|
-
"metrics:read",
|
|
4408
|
-
"organizations:read"
|
|
4409
|
-
],
|
|
4412
|
+
scopes: config.scopes,
|
|
4410
4413
|
optionalScopes: config.optionalScopes,
|
|
4411
4414
|
redirectUri: config.redirectUri,
|
|
4412
4415
|
config: {
|
|
@@ -4476,7 +4479,7 @@ function figmaIntegration(config = {}) {
|
|
|
4476
4479
|
provider: "figma",
|
|
4477
4480
|
clientId: config.clientId ?? getEnv("FIGMA_CLIENT_ID"),
|
|
4478
4481
|
clientSecret: config.clientSecret ?? getEnv("FIGMA_CLIENT_SECRET"),
|
|
4479
|
-
scopes: config.scopes
|
|
4482
|
+
scopes: config.scopes,
|
|
4480
4483
|
optionalScopes: config.optionalScopes,
|
|
4481
4484
|
redirectUri: config.redirectUri,
|
|
4482
4485
|
config: {
|
|
@@ -4520,7 +4523,7 @@ function intercomIntegration(config = {}) {
|
|
|
4520
4523
|
provider: "intercom",
|
|
4521
4524
|
clientId: config.clientId ?? getEnv("INTERCOM_CLIENT_ID"),
|
|
4522
4525
|
clientSecret: config.clientSecret ?? getEnv("INTERCOM_CLIENT_SECRET"),
|
|
4523
|
-
scopes: config.scopes
|
|
4526
|
+
scopes: config.scopes,
|
|
4524
4527
|
optionalScopes: config.optionalScopes,
|
|
4525
4528
|
redirectUri: config.redirectUri,
|
|
4526
4529
|
config: {
|
|
@@ -4564,17 +4567,7 @@ function hubspotIntegration(config = {}) {
|
|
|
4564
4567
|
provider: "hubspot",
|
|
4565
4568
|
clientId: config.clientId ?? getEnv("HUBSPOT_CLIENT_ID"),
|
|
4566
4569
|
clientSecret: config.clientSecret ?? getEnv("HUBSPOT_CLIENT_SECRET"),
|
|
4567
|
-
scopes: config.scopes
|
|
4568
|
-
"crm.objects.contacts.read",
|
|
4569
|
-
"crm.objects.contacts.write",
|
|
4570
|
-
"crm.objects.companies.read",
|
|
4571
|
-
"crm.objects.companies.write",
|
|
4572
|
-
"crm.objects.deals.read",
|
|
4573
|
-
"crm.objects.deals.write",
|
|
4574
|
-
"crm.objects.tickets.read",
|
|
4575
|
-
"crm.objects.tickets.write",
|
|
4576
|
-
"crm.objects.owners.read"
|
|
4577
|
-
],
|
|
4570
|
+
scopes: config.scopes,
|
|
4578
4571
|
optionalScopes: config.optionalScopes,
|
|
4579
4572
|
redirectUri: config.redirectUri,
|
|
4580
4573
|
config: {
|
|
@@ -4637,7 +4630,7 @@ function youtubeIntegration(config = {}) {
|
|
|
4637
4630
|
provider: "youtube",
|
|
4638
4631
|
clientId: config.clientId ?? getEnv("YOUTUBE_CLIENT_ID"),
|
|
4639
4632
|
clientSecret: config.clientSecret ?? getEnv("YOUTUBE_CLIENT_SECRET"),
|
|
4640
|
-
scopes: config.scopes
|
|
4633
|
+
scopes: config.scopes,
|
|
4641
4634
|
optionalScopes: config.optionalScopes,
|
|
4642
4635
|
redirectUri: config.redirectUri,
|
|
4643
4636
|
config: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"airtable.d.ts","sourceRoot":"","sources":["../../../src/integrations/airtable.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,yBAAyB;IACxC,wEAAwE;IACxE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gFAAgF;IAChF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,2MAA2M;IAC3M,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,cAAc,mnBA4BV,CAAC;AAGX,wBAAgB,mBAAmB,CAAC,MAAM,GAAE,yBAA8B,GAAG,cAAc,CAAC,UAAU,CAAC,
|
|
1
|
+
{"version":3,"file":"airtable.d.ts","sourceRoot":"","sources":["../../../src/integrations/airtable.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,yBAAyB;IACxC,wEAAwE;IACxE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gFAAgF;IAChF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,2MAA2M;IAC3M,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,cAAc,mnBA4BV,CAAC;AAGX,wBAAgB,mBAAmB,CAAC,MAAM,GAAE,yBAA8B,GAAG,cAAc,CAAC,UAAU,CAAC,CA4BtG;AAED;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,OAAO,cAAc,CAAC,MAAM,CAAC,CAAC;AAE1D;;GAEG;AACH,YAAY,EAAE,yBAAyB,EAAE,MAAM,sBAAsB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gmail.d.ts","sourceRoot":"","sources":["../../../src/integrations/gmail.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,sBAAsB;IACrC,mEAAmE;IACnE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,2EAA2E;IAC3E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,0DAA0D;IAC1D,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,WAAW,sGAKP,CAAC;AAEX;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,wBAAgB,gBAAgB,CAAC,MAAM,GAAE,sBAA2B,GAAG,cAAc,CAAC,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"gmail.d.ts","sourceRoot":"","sources":["../../../src/integrations/gmail.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,sBAAsB;IACrC,mEAAmE;IACnE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,2EAA2E;IAC3E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,0DAA0D;IAC1D,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,WAAW,sGAKP,CAAC;AAEX;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,wBAAgB,gBAAgB,CAAC,MAAM,GAAE,sBAA2B,GAAG,cAAc,CAAC,OAAO,CAAC,CA0B7F;AAED;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,OAAO,WAAW,CAAC,MAAM,CAAC,CAAC;AAEpD;;GAEG;AACH,YAAY,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gworkspace.d.ts","sourceRoot":"","sources":["../../../src/integrations/gworkspace.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,2BAA2B;IAC1C,kFAAkF;IAClF,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,0FAA0F;IAC1F,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gGAAgG;IAChG,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,gBAAgB,mVAgBZ,CAAC;AAGX,wBAAgB,qBAAqB,CAAC,MAAM,GAAE,2BAAgC,GAAG,cAAc,CAAC,YAAY,CAAC,
|
|
1
|
+
{"version":3,"file":"gworkspace.d.ts","sourceRoot":"","sources":["../../../src/integrations/gworkspace.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,2BAA2B;IAC1C,kFAAkF;IAClF,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,0FAA0F;IAC1F,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gGAAgG;IAChG,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,gBAAgB,mVAgBZ,CAAC;AAGX,wBAAgB,qBAAqB,CAAC,MAAM,GAAE,2BAAgC,GAAG,cAAc,CAAC,YAAY,CAAC,CA4B5G;AAED;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,OAAO,gBAAgB,CAAC,MAAM,CAAC,CAAC;AAE9D;;GAEG;AACH,YAAY,EAAE,2BAA2B,EAAE,MAAM,wBAAwB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hubspot.d.ts","sourceRoot":"","sources":["../../../src/integrations/hubspot.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,wBAAwB;IACvC,sEAAsE;IACtE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,8EAA8E;IAC9E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,4FAA4F;IAC5F,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,aAAa,wrBAuCT,CAAC;AAGX,wBAAgB,kBAAkB,CAAC,MAAM,GAAE,wBAA6B,GAAG,cAAc,CAAC,SAAS,CAAC,
|
|
1
|
+
{"version":3,"file":"hubspot.d.ts","sourceRoot":"","sources":["../../../src/integrations/hubspot.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,wBAAwB;IACvC,sEAAsE;IACtE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,8EAA8E;IAC9E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,4FAA4F;IAC5F,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,aAAa,wrBAuCT,CAAC;AAGX,wBAAgB,kBAAkB,CAAC,MAAM,GAAE,wBAA6B,GAAG,cAAc,CAAC,SAAS,CAAC,CA4BnG;AAED;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,OAAO,aAAa,CAAC,MAAM,CAAC,CAAC;AAExD;;GAEG;AACH,YAAY,EAAE,wBAAwB,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"polar.d.ts","sourceRoot":"","sources":["../../../src/integrations/polar.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,sBAAsB;IACrC,kEAAkE;IAClE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,0EAA0E;IAC1E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,sLAAsL;IACtL,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,yDAAyD;IACzD,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;GAGG;AACH,QAAA,MAAM,WAAW,43BAuDP,CAAC;AAGX,wBAAgB,gBAAgB,CAAC,MAAM,GAAE,sBAA2B,GAAG,cAAc,CAAC,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"polar.d.ts","sourceRoot":"","sources":["../../../src/integrations/polar.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,sBAAsB;IACrC,kEAAkE;IAClE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,0EAA0E;IAC1E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,sLAAsL;IACtL,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,yDAAyD;IACzD,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;GAGG;AACH,QAAA,MAAM,WAAW,43BAuDP,CAAC;AAGX,wBAAgB,gBAAgB,CAAC,MAAM,GAAE,sBAA2B,GAAG,cAAc,CAAC,OAAO,CAAC,CA4B7F;AAED;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,OAAO,WAAW,CAAC,MAAM,CAAC,CAAC;AAEpD;;GAEG;AACH,YAAY,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC"}
|