integrate-sdk 0.8.73-dev.0 → 0.8.74-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 +20 -2
- package/dist/adapters/index.js +20 -2
- package/dist/adapters/nextjs.js +20 -2
- package/dist/adapters/node.js +20 -2
- package/dist/adapters/svelte-kit.js +20 -2
- package/dist/adapters/tanstack-start.js +20 -2
- package/dist/index.js +20 -2
- package/dist/oauth.js +20 -2
- package/dist/server.js +20 -2
- package/dist/src/integrations/hubspot-client.d.ts +212 -229
- package/dist/src/integrations/hubspot-client.d.ts.map +1 -1
- package/dist/src/integrations/hubspot.d.ts +1 -1
- package/dist/src/integrations/hubspot.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -3704,7 +3704,9 @@ function hubspotIntegration(config = {}) {
|
|
|
3704
3704
|
"crm.objects.companies.write",
|
|
3705
3705
|
"crm.objects.deals.read",
|
|
3706
3706
|
"crm.objects.deals.write",
|
|
3707
|
-
"tickets"
|
|
3707
|
+
"crm.objects.tickets.read",
|
|
3708
|
+
"crm.objects.tickets.write",
|
|
3709
|
+
"crm.objects.owners.read"
|
|
3708
3710
|
],
|
|
3709
3711
|
redirectUri: config.redirectUri,
|
|
3710
3712
|
config: {
|
|
@@ -3734,14 +3736,30 @@ var init_hubspot = __esm(() => {
|
|
|
3734
3736
|
"hubspot_get_contact",
|
|
3735
3737
|
"hubspot_create_contact",
|
|
3736
3738
|
"hubspot_update_contact",
|
|
3739
|
+
"hubspot_delete_contact",
|
|
3737
3740
|
"hubspot_list_companies",
|
|
3738
3741
|
"hubspot_get_company",
|
|
3739
3742
|
"hubspot_create_company",
|
|
3743
|
+
"hubspot_update_company",
|
|
3744
|
+
"hubspot_delete_company",
|
|
3740
3745
|
"hubspot_list_deals",
|
|
3741
3746
|
"hubspot_get_deal",
|
|
3742
3747
|
"hubspot_create_deal",
|
|
3748
|
+
"hubspot_update_deal",
|
|
3749
|
+
"hubspot_delete_deal",
|
|
3743
3750
|
"hubspot_list_tickets",
|
|
3744
|
-
"hubspot_get_ticket"
|
|
3751
|
+
"hubspot_get_ticket",
|
|
3752
|
+
"hubspot_create_ticket",
|
|
3753
|
+
"hubspot_update_ticket",
|
|
3754
|
+
"hubspot_delete_ticket",
|
|
3755
|
+
"hubspot_search_crm",
|
|
3756
|
+
"hubspot_create_note",
|
|
3757
|
+
"hubspot_create_task",
|
|
3758
|
+
"hubspot_list_owners",
|
|
3759
|
+
"hubspot_get_owner",
|
|
3760
|
+
"hubspot_list_pipelines",
|
|
3761
|
+
"hubspot_list_pipeline_stages",
|
|
3762
|
+
"hubspot_create_association"
|
|
3745
3763
|
];
|
|
3746
3764
|
});
|
|
3747
3765
|
|
package/dist/adapters/index.js
CHANGED
|
@@ -3704,7 +3704,9 @@ function hubspotIntegration(config = {}) {
|
|
|
3704
3704
|
"crm.objects.companies.write",
|
|
3705
3705
|
"crm.objects.deals.read",
|
|
3706
3706
|
"crm.objects.deals.write",
|
|
3707
|
-
"tickets"
|
|
3707
|
+
"crm.objects.tickets.read",
|
|
3708
|
+
"crm.objects.tickets.write",
|
|
3709
|
+
"crm.objects.owners.read"
|
|
3708
3710
|
],
|
|
3709
3711
|
redirectUri: config.redirectUri,
|
|
3710
3712
|
config: {
|
|
@@ -3734,14 +3736,30 @@ var init_hubspot = __esm(() => {
|
|
|
3734
3736
|
"hubspot_get_contact",
|
|
3735
3737
|
"hubspot_create_contact",
|
|
3736
3738
|
"hubspot_update_contact",
|
|
3739
|
+
"hubspot_delete_contact",
|
|
3737
3740
|
"hubspot_list_companies",
|
|
3738
3741
|
"hubspot_get_company",
|
|
3739
3742
|
"hubspot_create_company",
|
|
3743
|
+
"hubspot_update_company",
|
|
3744
|
+
"hubspot_delete_company",
|
|
3740
3745
|
"hubspot_list_deals",
|
|
3741
3746
|
"hubspot_get_deal",
|
|
3742
3747
|
"hubspot_create_deal",
|
|
3748
|
+
"hubspot_update_deal",
|
|
3749
|
+
"hubspot_delete_deal",
|
|
3743
3750
|
"hubspot_list_tickets",
|
|
3744
|
-
"hubspot_get_ticket"
|
|
3751
|
+
"hubspot_get_ticket",
|
|
3752
|
+
"hubspot_create_ticket",
|
|
3753
|
+
"hubspot_update_ticket",
|
|
3754
|
+
"hubspot_delete_ticket",
|
|
3755
|
+
"hubspot_search_crm",
|
|
3756
|
+
"hubspot_create_note",
|
|
3757
|
+
"hubspot_create_task",
|
|
3758
|
+
"hubspot_list_owners",
|
|
3759
|
+
"hubspot_get_owner",
|
|
3760
|
+
"hubspot_list_pipelines",
|
|
3761
|
+
"hubspot_list_pipeline_stages",
|
|
3762
|
+
"hubspot_create_association"
|
|
3745
3763
|
];
|
|
3746
3764
|
});
|
|
3747
3765
|
|
package/dist/adapters/nextjs.js
CHANGED
|
@@ -3704,7 +3704,9 @@ function hubspotIntegration(config = {}) {
|
|
|
3704
3704
|
"crm.objects.companies.write",
|
|
3705
3705
|
"crm.objects.deals.read",
|
|
3706
3706
|
"crm.objects.deals.write",
|
|
3707
|
-
"tickets"
|
|
3707
|
+
"crm.objects.tickets.read",
|
|
3708
|
+
"crm.objects.tickets.write",
|
|
3709
|
+
"crm.objects.owners.read"
|
|
3708
3710
|
],
|
|
3709
3711
|
redirectUri: config.redirectUri,
|
|
3710
3712
|
config: {
|
|
@@ -3734,14 +3736,30 @@ var init_hubspot = __esm(() => {
|
|
|
3734
3736
|
"hubspot_get_contact",
|
|
3735
3737
|
"hubspot_create_contact",
|
|
3736
3738
|
"hubspot_update_contact",
|
|
3739
|
+
"hubspot_delete_contact",
|
|
3737
3740
|
"hubspot_list_companies",
|
|
3738
3741
|
"hubspot_get_company",
|
|
3739
3742
|
"hubspot_create_company",
|
|
3743
|
+
"hubspot_update_company",
|
|
3744
|
+
"hubspot_delete_company",
|
|
3740
3745
|
"hubspot_list_deals",
|
|
3741
3746
|
"hubspot_get_deal",
|
|
3742
3747
|
"hubspot_create_deal",
|
|
3748
|
+
"hubspot_update_deal",
|
|
3749
|
+
"hubspot_delete_deal",
|
|
3743
3750
|
"hubspot_list_tickets",
|
|
3744
|
-
"hubspot_get_ticket"
|
|
3751
|
+
"hubspot_get_ticket",
|
|
3752
|
+
"hubspot_create_ticket",
|
|
3753
|
+
"hubspot_update_ticket",
|
|
3754
|
+
"hubspot_delete_ticket",
|
|
3755
|
+
"hubspot_search_crm",
|
|
3756
|
+
"hubspot_create_note",
|
|
3757
|
+
"hubspot_create_task",
|
|
3758
|
+
"hubspot_list_owners",
|
|
3759
|
+
"hubspot_get_owner",
|
|
3760
|
+
"hubspot_list_pipelines",
|
|
3761
|
+
"hubspot_list_pipeline_stages",
|
|
3762
|
+
"hubspot_create_association"
|
|
3745
3763
|
];
|
|
3746
3764
|
});
|
|
3747
3765
|
|
package/dist/adapters/node.js
CHANGED
|
@@ -3704,7 +3704,9 @@ function hubspotIntegration(config = {}) {
|
|
|
3704
3704
|
"crm.objects.companies.write",
|
|
3705
3705
|
"crm.objects.deals.read",
|
|
3706
3706
|
"crm.objects.deals.write",
|
|
3707
|
-
"tickets"
|
|
3707
|
+
"crm.objects.tickets.read",
|
|
3708
|
+
"crm.objects.tickets.write",
|
|
3709
|
+
"crm.objects.owners.read"
|
|
3708
3710
|
],
|
|
3709
3711
|
redirectUri: config.redirectUri,
|
|
3710
3712
|
config: {
|
|
@@ -3734,14 +3736,30 @@ var init_hubspot = __esm(() => {
|
|
|
3734
3736
|
"hubspot_get_contact",
|
|
3735
3737
|
"hubspot_create_contact",
|
|
3736
3738
|
"hubspot_update_contact",
|
|
3739
|
+
"hubspot_delete_contact",
|
|
3737
3740
|
"hubspot_list_companies",
|
|
3738
3741
|
"hubspot_get_company",
|
|
3739
3742
|
"hubspot_create_company",
|
|
3743
|
+
"hubspot_update_company",
|
|
3744
|
+
"hubspot_delete_company",
|
|
3740
3745
|
"hubspot_list_deals",
|
|
3741
3746
|
"hubspot_get_deal",
|
|
3742
3747
|
"hubspot_create_deal",
|
|
3748
|
+
"hubspot_update_deal",
|
|
3749
|
+
"hubspot_delete_deal",
|
|
3743
3750
|
"hubspot_list_tickets",
|
|
3744
|
-
"hubspot_get_ticket"
|
|
3751
|
+
"hubspot_get_ticket",
|
|
3752
|
+
"hubspot_create_ticket",
|
|
3753
|
+
"hubspot_update_ticket",
|
|
3754
|
+
"hubspot_delete_ticket",
|
|
3755
|
+
"hubspot_search_crm",
|
|
3756
|
+
"hubspot_create_note",
|
|
3757
|
+
"hubspot_create_task",
|
|
3758
|
+
"hubspot_list_owners",
|
|
3759
|
+
"hubspot_get_owner",
|
|
3760
|
+
"hubspot_list_pipelines",
|
|
3761
|
+
"hubspot_list_pipeline_stages",
|
|
3762
|
+
"hubspot_create_association"
|
|
3745
3763
|
];
|
|
3746
3764
|
});
|
|
3747
3765
|
|
|
@@ -3704,7 +3704,9 @@ function hubspotIntegration(config = {}) {
|
|
|
3704
3704
|
"crm.objects.companies.write",
|
|
3705
3705
|
"crm.objects.deals.read",
|
|
3706
3706
|
"crm.objects.deals.write",
|
|
3707
|
-
"tickets"
|
|
3707
|
+
"crm.objects.tickets.read",
|
|
3708
|
+
"crm.objects.tickets.write",
|
|
3709
|
+
"crm.objects.owners.read"
|
|
3708
3710
|
],
|
|
3709
3711
|
redirectUri: config.redirectUri,
|
|
3710
3712
|
config: {
|
|
@@ -3734,14 +3736,30 @@ var init_hubspot = __esm(() => {
|
|
|
3734
3736
|
"hubspot_get_contact",
|
|
3735
3737
|
"hubspot_create_contact",
|
|
3736
3738
|
"hubspot_update_contact",
|
|
3739
|
+
"hubspot_delete_contact",
|
|
3737
3740
|
"hubspot_list_companies",
|
|
3738
3741
|
"hubspot_get_company",
|
|
3739
3742
|
"hubspot_create_company",
|
|
3743
|
+
"hubspot_update_company",
|
|
3744
|
+
"hubspot_delete_company",
|
|
3740
3745
|
"hubspot_list_deals",
|
|
3741
3746
|
"hubspot_get_deal",
|
|
3742
3747
|
"hubspot_create_deal",
|
|
3748
|
+
"hubspot_update_deal",
|
|
3749
|
+
"hubspot_delete_deal",
|
|
3743
3750
|
"hubspot_list_tickets",
|
|
3744
|
-
"hubspot_get_ticket"
|
|
3751
|
+
"hubspot_get_ticket",
|
|
3752
|
+
"hubspot_create_ticket",
|
|
3753
|
+
"hubspot_update_ticket",
|
|
3754
|
+
"hubspot_delete_ticket",
|
|
3755
|
+
"hubspot_search_crm",
|
|
3756
|
+
"hubspot_create_note",
|
|
3757
|
+
"hubspot_create_task",
|
|
3758
|
+
"hubspot_list_owners",
|
|
3759
|
+
"hubspot_get_owner",
|
|
3760
|
+
"hubspot_list_pipelines",
|
|
3761
|
+
"hubspot_list_pipeline_stages",
|
|
3762
|
+
"hubspot_create_association"
|
|
3745
3763
|
];
|
|
3746
3764
|
});
|
|
3747
3765
|
|
|
@@ -3704,7 +3704,9 @@ function hubspotIntegration(config = {}) {
|
|
|
3704
3704
|
"crm.objects.companies.write",
|
|
3705
3705
|
"crm.objects.deals.read",
|
|
3706
3706
|
"crm.objects.deals.write",
|
|
3707
|
-
"tickets"
|
|
3707
|
+
"crm.objects.tickets.read",
|
|
3708
|
+
"crm.objects.tickets.write",
|
|
3709
|
+
"crm.objects.owners.read"
|
|
3708
3710
|
],
|
|
3709
3711
|
redirectUri: config.redirectUri,
|
|
3710
3712
|
config: {
|
|
@@ -3734,14 +3736,30 @@ var init_hubspot = __esm(() => {
|
|
|
3734
3736
|
"hubspot_get_contact",
|
|
3735
3737
|
"hubspot_create_contact",
|
|
3736
3738
|
"hubspot_update_contact",
|
|
3739
|
+
"hubspot_delete_contact",
|
|
3737
3740
|
"hubspot_list_companies",
|
|
3738
3741
|
"hubspot_get_company",
|
|
3739
3742
|
"hubspot_create_company",
|
|
3743
|
+
"hubspot_update_company",
|
|
3744
|
+
"hubspot_delete_company",
|
|
3740
3745
|
"hubspot_list_deals",
|
|
3741
3746
|
"hubspot_get_deal",
|
|
3742
3747
|
"hubspot_create_deal",
|
|
3748
|
+
"hubspot_update_deal",
|
|
3749
|
+
"hubspot_delete_deal",
|
|
3743
3750
|
"hubspot_list_tickets",
|
|
3744
|
-
"hubspot_get_ticket"
|
|
3751
|
+
"hubspot_get_ticket",
|
|
3752
|
+
"hubspot_create_ticket",
|
|
3753
|
+
"hubspot_update_ticket",
|
|
3754
|
+
"hubspot_delete_ticket",
|
|
3755
|
+
"hubspot_search_crm",
|
|
3756
|
+
"hubspot_create_note",
|
|
3757
|
+
"hubspot_create_task",
|
|
3758
|
+
"hubspot_list_owners",
|
|
3759
|
+
"hubspot_get_owner",
|
|
3760
|
+
"hubspot_list_pipelines",
|
|
3761
|
+
"hubspot_list_pipeline_stages",
|
|
3762
|
+
"hubspot_create_association"
|
|
3745
3763
|
];
|
|
3746
3764
|
});
|
|
3747
3765
|
|
package/dist/index.js
CHANGED
|
@@ -4095,7 +4095,9 @@ function hubspotIntegration(config = {}) {
|
|
|
4095
4095
|
"crm.objects.companies.write",
|
|
4096
4096
|
"crm.objects.deals.read",
|
|
4097
4097
|
"crm.objects.deals.write",
|
|
4098
|
-
"tickets"
|
|
4098
|
+
"crm.objects.tickets.read",
|
|
4099
|
+
"crm.objects.tickets.write",
|
|
4100
|
+
"crm.objects.owners.read"
|
|
4099
4101
|
],
|
|
4100
4102
|
redirectUri: config.redirectUri,
|
|
4101
4103
|
config: {
|
|
@@ -4125,14 +4127,30 @@ var init_hubspot = __esm(() => {
|
|
|
4125
4127
|
"hubspot_get_contact",
|
|
4126
4128
|
"hubspot_create_contact",
|
|
4127
4129
|
"hubspot_update_contact",
|
|
4130
|
+
"hubspot_delete_contact",
|
|
4128
4131
|
"hubspot_list_companies",
|
|
4129
4132
|
"hubspot_get_company",
|
|
4130
4133
|
"hubspot_create_company",
|
|
4134
|
+
"hubspot_update_company",
|
|
4135
|
+
"hubspot_delete_company",
|
|
4131
4136
|
"hubspot_list_deals",
|
|
4132
4137
|
"hubspot_get_deal",
|
|
4133
4138
|
"hubspot_create_deal",
|
|
4139
|
+
"hubspot_update_deal",
|
|
4140
|
+
"hubspot_delete_deal",
|
|
4134
4141
|
"hubspot_list_tickets",
|
|
4135
|
-
"hubspot_get_ticket"
|
|
4142
|
+
"hubspot_get_ticket",
|
|
4143
|
+
"hubspot_create_ticket",
|
|
4144
|
+
"hubspot_update_ticket",
|
|
4145
|
+
"hubspot_delete_ticket",
|
|
4146
|
+
"hubspot_search_crm",
|
|
4147
|
+
"hubspot_create_note",
|
|
4148
|
+
"hubspot_create_task",
|
|
4149
|
+
"hubspot_list_owners",
|
|
4150
|
+
"hubspot_get_owner",
|
|
4151
|
+
"hubspot_list_pipelines",
|
|
4152
|
+
"hubspot_list_pipeline_stages",
|
|
4153
|
+
"hubspot_create_association"
|
|
4136
4154
|
];
|
|
4137
4155
|
});
|
|
4138
4156
|
|
package/dist/oauth.js
CHANGED
|
@@ -3917,7 +3917,9 @@ function hubspotIntegration(config = {}) {
|
|
|
3917
3917
|
"crm.objects.companies.write",
|
|
3918
3918
|
"crm.objects.deals.read",
|
|
3919
3919
|
"crm.objects.deals.write",
|
|
3920
|
-
"tickets"
|
|
3920
|
+
"crm.objects.tickets.read",
|
|
3921
|
+
"crm.objects.tickets.write",
|
|
3922
|
+
"crm.objects.owners.read"
|
|
3921
3923
|
],
|
|
3922
3924
|
redirectUri: config.redirectUri,
|
|
3923
3925
|
config: {
|
|
@@ -3947,14 +3949,30 @@ var init_hubspot = __esm(() => {
|
|
|
3947
3949
|
"hubspot_get_contact",
|
|
3948
3950
|
"hubspot_create_contact",
|
|
3949
3951
|
"hubspot_update_contact",
|
|
3952
|
+
"hubspot_delete_contact",
|
|
3950
3953
|
"hubspot_list_companies",
|
|
3951
3954
|
"hubspot_get_company",
|
|
3952
3955
|
"hubspot_create_company",
|
|
3956
|
+
"hubspot_update_company",
|
|
3957
|
+
"hubspot_delete_company",
|
|
3953
3958
|
"hubspot_list_deals",
|
|
3954
3959
|
"hubspot_get_deal",
|
|
3955
3960
|
"hubspot_create_deal",
|
|
3961
|
+
"hubspot_update_deal",
|
|
3962
|
+
"hubspot_delete_deal",
|
|
3956
3963
|
"hubspot_list_tickets",
|
|
3957
|
-
"hubspot_get_ticket"
|
|
3964
|
+
"hubspot_get_ticket",
|
|
3965
|
+
"hubspot_create_ticket",
|
|
3966
|
+
"hubspot_update_ticket",
|
|
3967
|
+
"hubspot_delete_ticket",
|
|
3968
|
+
"hubspot_search_crm",
|
|
3969
|
+
"hubspot_create_note",
|
|
3970
|
+
"hubspot_create_task",
|
|
3971
|
+
"hubspot_list_owners",
|
|
3972
|
+
"hubspot_get_owner",
|
|
3973
|
+
"hubspot_list_pipelines",
|
|
3974
|
+
"hubspot_list_pipeline_stages",
|
|
3975
|
+
"hubspot_create_association"
|
|
3958
3976
|
];
|
|
3959
3977
|
});
|
|
3960
3978
|
|
package/dist/server.js
CHANGED
|
@@ -4510,7 +4510,9 @@ function hubspotIntegration(config = {}) {
|
|
|
4510
4510
|
"crm.objects.companies.write",
|
|
4511
4511
|
"crm.objects.deals.read",
|
|
4512
4512
|
"crm.objects.deals.write",
|
|
4513
|
-
"tickets"
|
|
4513
|
+
"crm.objects.tickets.read",
|
|
4514
|
+
"crm.objects.tickets.write",
|
|
4515
|
+
"crm.objects.owners.read"
|
|
4514
4516
|
],
|
|
4515
4517
|
redirectUri: config.redirectUri,
|
|
4516
4518
|
config: {
|
|
@@ -4540,14 +4542,30 @@ var init_hubspot = __esm(() => {
|
|
|
4540
4542
|
"hubspot_get_contact",
|
|
4541
4543
|
"hubspot_create_contact",
|
|
4542
4544
|
"hubspot_update_contact",
|
|
4545
|
+
"hubspot_delete_contact",
|
|
4543
4546
|
"hubspot_list_companies",
|
|
4544
4547
|
"hubspot_get_company",
|
|
4545
4548
|
"hubspot_create_company",
|
|
4549
|
+
"hubspot_update_company",
|
|
4550
|
+
"hubspot_delete_company",
|
|
4546
4551
|
"hubspot_list_deals",
|
|
4547
4552
|
"hubspot_get_deal",
|
|
4548
4553
|
"hubspot_create_deal",
|
|
4554
|
+
"hubspot_update_deal",
|
|
4555
|
+
"hubspot_delete_deal",
|
|
4549
4556
|
"hubspot_list_tickets",
|
|
4550
|
-
"hubspot_get_ticket"
|
|
4557
|
+
"hubspot_get_ticket",
|
|
4558
|
+
"hubspot_create_ticket",
|
|
4559
|
+
"hubspot_update_ticket",
|
|
4560
|
+
"hubspot_delete_ticket",
|
|
4561
|
+
"hubspot_search_crm",
|
|
4562
|
+
"hubspot_create_note",
|
|
4563
|
+
"hubspot_create_task",
|
|
4564
|
+
"hubspot_list_owners",
|
|
4565
|
+
"hubspot_get_owner",
|
|
4566
|
+
"hubspot_list_pipelines",
|
|
4567
|
+
"hubspot_list_pipeline_stages",
|
|
4568
|
+
"hubspot_create_association"
|
|
4551
4569
|
];
|
|
4552
4570
|
});
|
|
4553
4571
|
|
|
@@ -92,276 +92,259 @@ export interface HubSpotTicket {
|
|
|
92
92
|
updatedAt: string;
|
|
93
93
|
archived: boolean;
|
|
94
94
|
}
|
|
95
|
+
/**
|
|
96
|
+
* HubSpot Owner
|
|
97
|
+
*/
|
|
98
|
+
export interface HubSpotOwner {
|
|
99
|
+
id: string;
|
|
100
|
+
email: string;
|
|
101
|
+
firstName: string;
|
|
102
|
+
lastName: string;
|
|
103
|
+
userId: number;
|
|
104
|
+
createdAt: string;
|
|
105
|
+
updatedAt: string;
|
|
106
|
+
archived: boolean;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* HubSpot Pipeline
|
|
110
|
+
*/
|
|
111
|
+
export interface HubSpotPipeline {
|
|
112
|
+
id: string;
|
|
113
|
+
label: string;
|
|
114
|
+
displayOrder: number;
|
|
115
|
+
stages: HubSpotPipelineStage[];
|
|
116
|
+
createdAt: string;
|
|
117
|
+
updatedAt: string;
|
|
118
|
+
archived: boolean;
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* HubSpot Pipeline Stage
|
|
122
|
+
*/
|
|
123
|
+
export interface HubSpotPipelineStage {
|
|
124
|
+
id: string;
|
|
125
|
+
label: string;
|
|
126
|
+
displayOrder: number;
|
|
127
|
+
metadata: Record<string, string>;
|
|
128
|
+
createdAt: string;
|
|
129
|
+
updatedAt: string;
|
|
130
|
+
archived: boolean;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* HubSpot Note
|
|
134
|
+
*/
|
|
135
|
+
export interface HubSpotNote {
|
|
136
|
+
id: string;
|
|
137
|
+
properties: {
|
|
138
|
+
hs_note_body?: string;
|
|
139
|
+
hs_timestamp?: string;
|
|
140
|
+
hubspot_owner_id?: string;
|
|
141
|
+
[key: string]: any;
|
|
142
|
+
};
|
|
143
|
+
createdAt: string;
|
|
144
|
+
updatedAt: string;
|
|
145
|
+
archived: boolean;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* HubSpot Task
|
|
149
|
+
*/
|
|
150
|
+
export interface HubSpotTask {
|
|
151
|
+
id: string;
|
|
152
|
+
properties: {
|
|
153
|
+
hs_task_subject?: string;
|
|
154
|
+
hs_task_body?: string;
|
|
155
|
+
hs_task_status?: string;
|
|
156
|
+
hs_task_priority?: string;
|
|
157
|
+
hs_task_type?: string;
|
|
158
|
+
hs_timestamp?: string;
|
|
159
|
+
hubspot_owner_id?: string;
|
|
160
|
+
[key: string]: any;
|
|
161
|
+
};
|
|
162
|
+
createdAt: string;
|
|
163
|
+
updatedAt: string;
|
|
164
|
+
archived: boolean;
|
|
165
|
+
}
|
|
166
|
+
/**
|
|
167
|
+
* HubSpot Association
|
|
168
|
+
*/
|
|
169
|
+
export interface HubSpotAssociation {
|
|
170
|
+
from: {
|
|
171
|
+
id: string;
|
|
172
|
+
};
|
|
173
|
+
to: {
|
|
174
|
+
id: string;
|
|
175
|
+
};
|
|
176
|
+
type: string;
|
|
177
|
+
}
|
|
95
178
|
/**
|
|
96
179
|
* HubSpot Integration Client Interface
|
|
97
180
|
* Provides type-safe methods for all HubSpot operations
|
|
98
181
|
*/
|
|
99
182
|
export interface HubSpotIntegrationClient {
|
|
100
|
-
/**
|
|
101
|
-
* List contacts
|
|
102
|
-
*
|
|
103
|
-
* @example
|
|
104
|
-
* ```typescript
|
|
105
|
-
* const contacts = await client.hubspot.listContacts({
|
|
106
|
-
* limit: 50,
|
|
107
|
-
* properties: ["email", "firstname", "lastname"]
|
|
108
|
-
* });
|
|
109
|
-
* ```
|
|
110
|
-
*/
|
|
111
183
|
listContacts(params?: {
|
|
112
|
-
/** Maximum number of results */
|
|
113
184
|
limit?: number;
|
|
114
|
-
/** Pagination cursor */
|
|
115
185
|
after?: string;
|
|
116
|
-
/** Properties to return */
|
|
117
|
-
properties?: string[];
|
|
118
|
-
/** Associations to include */
|
|
119
|
-
associations?: string[];
|
|
120
186
|
}): Promise<MCPToolCallResponse>;
|
|
121
|
-
/**
|
|
122
|
-
* Get contact details
|
|
123
|
-
*
|
|
124
|
-
* @example
|
|
125
|
-
* ```typescript
|
|
126
|
-
* const contact = await client.hubspot.getContact({
|
|
127
|
-
* contact_id: "123456"
|
|
128
|
-
* });
|
|
129
|
-
* ```
|
|
130
|
-
*/
|
|
131
187
|
getContact(params: {
|
|
132
|
-
/** Contact ID */
|
|
133
188
|
contact_id: string;
|
|
134
|
-
/** Properties to return */
|
|
135
|
-
properties?: string[];
|
|
136
|
-
/** Associations to include */
|
|
137
|
-
associations?: string[];
|
|
138
189
|
}): Promise<MCPToolCallResponse>;
|
|
139
|
-
/**
|
|
140
|
-
* Create a new contact
|
|
141
|
-
*
|
|
142
|
-
* @example
|
|
143
|
-
* ```typescript
|
|
144
|
-
* const contact = await client.hubspot.createContact({
|
|
145
|
-
* properties: {
|
|
146
|
-
* email: "user@example.com",
|
|
147
|
-
* firstname: "John",
|
|
148
|
-
* lastname: "Doe"
|
|
149
|
-
* }
|
|
150
|
-
* });
|
|
151
|
-
* ```
|
|
152
|
-
*/
|
|
153
190
|
createContact(params: {
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
website?: string;
|
|
162
|
-
lifecyclestage?: string;
|
|
163
|
-
[key: string]: any;
|
|
164
|
-
};
|
|
191
|
+
email?: string;
|
|
192
|
+
firstname?: string;
|
|
193
|
+
lastname?: string;
|
|
194
|
+
phone?: string;
|
|
195
|
+
company?: string;
|
|
196
|
+
website?: string;
|
|
197
|
+
lifecyclestage?: string;
|
|
165
198
|
}): Promise<MCPToolCallResponse>;
|
|
166
|
-
/**
|
|
167
|
-
* Update a contact
|
|
168
|
-
*
|
|
169
|
-
* @example
|
|
170
|
-
* ```typescript
|
|
171
|
-
* await client.hubspot.updateContact({
|
|
172
|
-
* contact_id: "123456",
|
|
173
|
-
* properties: {
|
|
174
|
-
* phone: "+1234567890"
|
|
175
|
-
* }
|
|
176
|
-
* });
|
|
177
|
-
* ```
|
|
178
|
-
*/
|
|
179
199
|
updateContact(params: {
|
|
180
|
-
/** Contact ID */
|
|
181
200
|
contact_id: string;
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
};
|
|
201
|
+
email?: string;
|
|
202
|
+
firstname?: string;
|
|
203
|
+
lastname?: string;
|
|
204
|
+
phone?: string;
|
|
205
|
+
company?: string;
|
|
206
|
+
website?: string;
|
|
207
|
+
lifecyclestage?: string;
|
|
208
|
+
}): Promise<MCPToolCallResponse>;
|
|
209
|
+
deleteContact(params: {
|
|
210
|
+
contact_id: string;
|
|
193
211
|
}): Promise<MCPToolCallResponse>;
|
|
194
|
-
/**
|
|
195
|
-
* List companies
|
|
196
|
-
*
|
|
197
|
-
* @example
|
|
198
|
-
* ```typescript
|
|
199
|
-
* const companies = await client.hubspot.listCompanies({
|
|
200
|
-
* limit: 50,
|
|
201
|
-
* properties: ["name", "domain"]
|
|
202
|
-
* });
|
|
203
|
-
* ```
|
|
204
|
-
*/
|
|
205
212
|
listCompanies(params?: {
|
|
206
|
-
/** Maximum number of results */
|
|
207
213
|
limit?: number;
|
|
208
|
-
/** Pagination cursor */
|
|
209
214
|
after?: string;
|
|
210
|
-
/** Properties to return */
|
|
211
|
-
properties?: string[];
|
|
212
|
-
/** Associations to include */
|
|
213
|
-
associations?: string[];
|
|
214
215
|
}): Promise<MCPToolCallResponse>;
|
|
215
|
-
/**
|
|
216
|
-
* Get company details
|
|
217
|
-
*
|
|
218
|
-
* @example
|
|
219
|
-
* ```typescript
|
|
220
|
-
* const company = await client.hubspot.getCompany({
|
|
221
|
-
* company_id: "123456"
|
|
222
|
-
* });
|
|
223
|
-
* ```
|
|
224
|
-
*/
|
|
225
216
|
getCompany(params: {
|
|
226
|
-
/** Company ID */
|
|
227
217
|
company_id: string;
|
|
228
|
-
/** Properties to return */
|
|
229
|
-
properties?: string[];
|
|
230
|
-
/** Associations to include */
|
|
231
|
-
associations?: string[];
|
|
232
218
|
}): Promise<MCPToolCallResponse>;
|
|
233
|
-
/**
|
|
234
|
-
* Create a new company
|
|
235
|
-
*
|
|
236
|
-
* @example
|
|
237
|
-
* ```typescript
|
|
238
|
-
* const company = await client.hubspot.createCompany({
|
|
239
|
-
* properties: {
|
|
240
|
-
* name: "Acme Corp",
|
|
241
|
-
* domain: "acme.com"
|
|
242
|
-
* }
|
|
243
|
-
* });
|
|
244
|
-
* ```
|
|
245
|
-
*/
|
|
246
219
|
createCompany(params: {
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
220
|
+
name?: string;
|
|
221
|
+
domain?: string;
|
|
222
|
+
phone?: string;
|
|
223
|
+
city?: string;
|
|
224
|
+
state?: string;
|
|
225
|
+
country?: string;
|
|
226
|
+
industry?: string;
|
|
227
|
+
numberofemployees?: string;
|
|
228
|
+
annualrevenue?: string;
|
|
229
|
+
}): Promise<MCPToolCallResponse>;
|
|
230
|
+
updateCompany(params: {
|
|
231
|
+
company_id: string;
|
|
232
|
+
name?: string;
|
|
233
|
+
domain?: string;
|
|
234
|
+
phone?: string;
|
|
235
|
+
city?: string;
|
|
236
|
+
state?: string;
|
|
237
|
+
country?: string;
|
|
238
|
+
industry?: string;
|
|
239
|
+
numberofemployees?: string;
|
|
240
|
+
annualrevenue?: string;
|
|
241
|
+
}): Promise<MCPToolCallResponse>;
|
|
242
|
+
deleteCompany(params: {
|
|
243
|
+
company_id: string;
|
|
260
244
|
}): Promise<MCPToolCallResponse>;
|
|
261
|
-
/**
|
|
262
|
-
* List deals
|
|
263
|
-
*
|
|
264
|
-
* @example
|
|
265
|
-
* ```typescript
|
|
266
|
-
* const deals = await client.hubspot.listDeals({
|
|
267
|
-
* limit: 50,
|
|
268
|
-
* properties: ["dealname", "amount", "dealstage"]
|
|
269
|
-
* });
|
|
270
|
-
* ```
|
|
271
|
-
*/
|
|
272
245
|
listDeals(params?: {
|
|
273
|
-
/** Maximum number of results */
|
|
274
246
|
limit?: number;
|
|
275
|
-
/** Pagination cursor */
|
|
276
247
|
after?: string;
|
|
277
|
-
/** Properties to return */
|
|
278
|
-
properties?: string[];
|
|
279
|
-
/** Associations to include */
|
|
280
|
-
associations?: string[];
|
|
281
248
|
}): Promise<MCPToolCallResponse>;
|
|
282
|
-
/**
|
|
283
|
-
* Get deal details
|
|
284
|
-
*
|
|
285
|
-
* @example
|
|
286
|
-
* ```typescript
|
|
287
|
-
* const deal = await client.hubspot.getDeal({
|
|
288
|
-
* deal_id: "123456"
|
|
289
|
-
* });
|
|
290
|
-
* ```
|
|
291
|
-
*/
|
|
292
249
|
getDeal(params: {
|
|
293
|
-
/** Deal ID */
|
|
294
250
|
deal_id: string;
|
|
295
|
-
/** Properties to return */
|
|
296
|
-
properties?: string[];
|
|
297
|
-
/** Associations to include */
|
|
298
|
-
associations?: string[];
|
|
299
251
|
}): Promise<MCPToolCallResponse>;
|
|
300
|
-
/**
|
|
301
|
-
* Create a new deal
|
|
302
|
-
*
|
|
303
|
-
* @example
|
|
304
|
-
* ```typescript
|
|
305
|
-
* const deal = await client.hubspot.createDeal({
|
|
306
|
-
* properties: {
|
|
307
|
-
* dealname: "New Deal",
|
|
308
|
-
* amount: "10000",
|
|
309
|
-
* dealstage: "appointmentscheduled"
|
|
310
|
-
* }
|
|
311
|
-
* });
|
|
312
|
-
* ```
|
|
313
|
-
*/
|
|
314
252
|
createDeal(params: {
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
253
|
+
dealname?: string;
|
|
254
|
+
dealstage?: string;
|
|
255
|
+
pipeline?: string;
|
|
256
|
+
amount?: string;
|
|
257
|
+
closedate?: string;
|
|
258
|
+
dealtype?: string;
|
|
259
|
+
description?: string;
|
|
260
|
+
}): Promise<MCPToolCallResponse>;
|
|
261
|
+
updateDeal(params: {
|
|
262
|
+
deal_id: string;
|
|
263
|
+
dealname?: string;
|
|
264
|
+
dealstage?: string;
|
|
265
|
+
pipeline?: string;
|
|
266
|
+
amount?: string;
|
|
267
|
+
closedate?: string;
|
|
268
|
+
dealtype?: string;
|
|
269
|
+
description?: string;
|
|
270
|
+
}): Promise<MCPToolCallResponse>;
|
|
271
|
+
deleteDeal(params: {
|
|
272
|
+
deal_id: string;
|
|
326
273
|
}): Promise<MCPToolCallResponse>;
|
|
327
|
-
/**
|
|
328
|
-
* List support tickets
|
|
329
|
-
*
|
|
330
|
-
* @example
|
|
331
|
-
* ```typescript
|
|
332
|
-
* const tickets = await client.hubspot.listTickets({
|
|
333
|
-
* limit: 50,
|
|
334
|
-
* properties: ["subject", "content", "hs_pipeline_stage"]
|
|
335
|
-
* });
|
|
336
|
-
* ```
|
|
337
|
-
*/
|
|
338
274
|
listTickets(params?: {
|
|
339
|
-
/** Maximum number of results */
|
|
340
275
|
limit?: number;
|
|
341
|
-
/** Pagination cursor */
|
|
342
276
|
after?: string;
|
|
343
|
-
/** Properties to return */
|
|
344
|
-
properties?: string[];
|
|
345
|
-
/** Associations to include */
|
|
346
|
-
associations?: string[];
|
|
347
277
|
}): Promise<MCPToolCallResponse>;
|
|
348
|
-
/**
|
|
349
|
-
* Get ticket details
|
|
350
|
-
*
|
|
351
|
-
* @example
|
|
352
|
-
* ```typescript
|
|
353
|
-
* const ticket = await client.hubspot.getTicket({
|
|
354
|
-
* ticket_id: "123456"
|
|
355
|
-
* });
|
|
356
|
-
* ```
|
|
357
|
-
*/
|
|
358
278
|
getTicket(params: {
|
|
359
|
-
/** Ticket ID */
|
|
360
279
|
ticket_id: string;
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
280
|
+
}): Promise<MCPToolCallResponse>;
|
|
281
|
+
createTicket(params: {
|
|
282
|
+
subject: string;
|
|
283
|
+
content?: string;
|
|
284
|
+
hs_pipeline?: string;
|
|
285
|
+
hs_pipeline_stage?: string;
|
|
286
|
+
hs_ticket_priority?: string;
|
|
287
|
+
hs_ticket_category?: string;
|
|
288
|
+
}): Promise<MCPToolCallResponse>;
|
|
289
|
+
updateTicket(params: {
|
|
290
|
+
ticket_id: string;
|
|
291
|
+
subject?: string;
|
|
292
|
+
content?: string;
|
|
293
|
+
hs_pipeline?: string;
|
|
294
|
+
hs_pipeline_stage?: string;
|
|
295
|
+
hs_ticket_priority?: string;
|
|
296
|
+
hs_ticket_category?: string;
|
|
297
|
+
}): Promise<MCPToolCallResponse>;
|
|
298
|
+
deleteTicket(params: {
|
|
299
|
+
ticket_id: string;
|
|
300
|
+
}): Promise<MCPToolCallResponse>;
|
|
301
|
+
searchCrm(params: {
|
|
302
|
+
object_type: string;
|
|
303
|
+
query?: string;
|
|
304
|
+
filter_property?: string;
|
|
305
|
+
filter_operator?: string;
|
|
306
|
+
filter_value?: string;
|
|
307
|
+
limit?: number;
|
|
308
|
+
after?: string;
|
|
309
|
+
}): Promise<MCPToolCallResponse>;
|
|
310
|
+
createNote(params: {
|
|
311
|
+
body: string;
|
|
312
|
+
timestamp?: string;
|
|
313
|
+
owner_id?: string;
|
|
314
|
+
associated_object_type?: string;
|
|
315
|
+
associated_object_id?: string;
|
|
316
|
+
}): Promise<MCPToolCallResponse>;
|
|
317
|
+
createTask(params: {
|
|
318
|
+
subject: string;
|
|
319
|
+
due_date?: string;
|
|
320
|
+
body?: string;
|
|
321
|
+
status?: string;
|
|
322
|
+
priority?: string;
|
|
323
|
+
task_type?: string;
|
|
324
|
+
owner_id?: string;
|
|
325
|
+
associated_object_type?: string;
|
|
326
|
+
associated_object_id?: string;
|
|
327
|
+
}): Promise<MCPToolCallResponse>;
|
|
328
|
+
listOwners(params?: {
|
|
329
|
+
limit?: number;
|
|
330
|
+
after?: string;
|
|
331
|
+
}): Promise<MCPToolCallResponse>;
|
|
332
|
+
getOwner(params: {
|
|
333
|
+
owner_id: string;
|
|
334
|
+
}): Promise<MCPToolCallResponse>;
|
|
335
|
+
listPipelines(params: {
|
|
336
|
+
object_type: string;
|
|
337
|
+
}): Promise<MCPToolCallResponse>;
|
|
338
|
+
listPipelineStages(params: {
|
|
339
|
+
object_type: string;
|
|
340
|
+
pipeline_id: string;
|
|
341
|
+
}): Promise<MCPToolCallResponse>;
|
|
342
|
+
createAssociation(params: {
|
|
343
|
+
from_object_type: string;
|
|
344
|
+
from_object_id: string;
|
|
345
|
+
to_object_type: string;
|
|
346
|
+
to_object_id: string;
|
|
347
|
+
association_type_id: string;
|
|
365
348
|
}): Promise<MCPToolCallResponse>;
|
|
366
349
|
}
|
|
367
350
|
//# sourceMappingURL=hubspot-client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hubspot-client.d.ts","sourceRoot":"","sources":["../../../src/integrations/hubspot-client.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"hubspot-client.d.ts","sourceRoot":"","sources":["../../../src/integrations/hubspot-client.ts"],"names":[],"mappings":"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"}
|
|
@@ -24,7 +24,7 @@ export interface HubSpotIntegrationConfig {
|
|
|
24
24
|
* Default HubSpot tools that this integration enables
|
|
25
25
|
* These should match the tool names exposed by your MCP server
|
|
26
26
|
*/
|
|
27
|
-
declare const HUBSPOT_TOOLS: readonly ["hubspot_list_contacts", "hubspot_get_contact", "hubspot_create_contact", "hubspot_update_contact", "hubspot_list_companies", "hubspot_get_company", "hubspot_create_company", "hubspot_list_deals", "hubspot_get_deal", "hubspot_create_deal", "hubspot_list_tickets", "hubspot_get_ticket"];
|
|
27
|
+
declare const HUBSPOT_TOOLS: readonly ["hubspot_list_contacts", "hubspot_get_contact", "hubspot_create_contact", "hubspot_update_contact", "hubspot_delete_contact", "hubspot_list_companies", "hubspot_get_company", "hubspot_create_company", "hubspot_update_company", "hubspot_delete_company", "hubspot_list_deals", "hubspot_get_deal", "hubspot_create_deal", "hubspot_update_deal", "hubspot_delete_deal", "hubspot_list_tickets", "hubspot_get_ticket", "hubspot_create_ticket", "hubspot_update_ticket", "hubspot_delete_ticket", "hubspot_search_crm", "hubspot_create_note", "hubspot_create_task", "hubspot_list_owners", "hubspot_get_owner", "hubspot_list_pipelines", "hubspot_list_pipeline_stages", "hubspot_create_association"];
|
|
28
28
|
export declare function hubspotIntegration(config?: HubSpotIntegrationConfig): MCPIntegration<"hubspot">;
|
|
29
29
|
/**
|
|
30
30
|
* Export tool names for type inference
|
|
@@ -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,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,aAAa,
|
|
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,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,CAqCnG;AAED;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,OAAO,aAAa,CAAC,MAAM,CAAC,CAAC;AAExD;;GAEG;AACH,YAAY,EAAE,wBAAwB,EAAE,MAAM,qBAAqB,CAAC"}
|