Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/hubspot

package.json

64 lines · 2.1 KB · JSON
{
	"name": "@kody/hubspot",
	"version": "1.0.0",
	"description": "Read HubSpot contacts, companies, deals, and tickets, with dry-run writes and generic CRM object reads.",
	"type": "module",
	"license": "MIT",
	"private": false,
	"exports": {
		".": "./src/index.ts",
		"./accounts": "./src/accounts.ts",
		"./account": "./src/account.ts",
		"./request": "./src/request.ts",
		"./smoke-test": "./src/smoke-test.ts",
		"./objects": "./src/objects.ts",
		"./list-objects": "./src/list-objects.ts",
		"./get-object": "./src/get-object.ts",
		"./search-objects": "./src/search-objects.ts",
		"./list-contacts": "./src/list-contacts.ts",
		"./get-contact": "./src/get-contact.ts",
		"./search-contacts": "./src/search-contacts.ts",
		"./create-contact": "./src/create-contact.ts",
		"./update-contact": "./src/update-contact.ts",
		"./list-companies": "./src/list-companies.ts",
		"./get-company": "./src/get-company.ts",
		"./search-companies": "./src/search-companies.ts",
		"./create-company": "./src/create-company.ts",
		"./update-company": "./src/update-company.ts",
		"./list-deals": "./src/list-deals.ts",
		"./get-deal": "./src/get-deal.ts",
		"./search-deals": "./src/search-deals.ts",
		"./create-deal": "./src/create-deal.ts",
		"./update-deal": "./src/update-deal.ts",
		"./list-tickets": "./src/list-tickets.ts",
		"./get-ticket": "./src/get-ticket.ts",
		"./search-tickets": "./src/search-tickets.ts",
		"./create-ticket": "./src/create-ticket.ts",
		"./update-ticket": "./src/update-ticket.ts",
		"./types": "./src/types.ts"
	},
	"files": [
		"src",
		"README.md",
		"LICENSE",
		"community-icon.svg"
	],
	"kody": {
		"id": "hubspot",
		"name": "HubSpot",
		"description": "Read HubSpot contacts, companies, deals, and tickets, with dry-run writes and generic CRM object reads.",
		"tags": [
			"hubspot",
			"crm",
			"contacts",
			"companies",
			"deals",
			"tickets",
			"objects",
			"oauth",
			"private-app",
			"multi-account"
		],
		"searchText": "hubspot crm contacts companies deals tickets custom objects oauth private app token dryRun confirm multi-account api.hubapi.com generic CRM helpers"
	}
}