Node module for the Affinity CRM.
Supports both V1 and V2 of the Affinity API.
This module is incomplete for V1; not all API endpoints are implemented. It is in active development and the API might change without notice. Contributions welcome.
import { Affinity } from '@planet-a/affinity-node/v1'
const { user } = await new Affinity(YOUR_API_KEY).auth.whoAmI()
console.log(`Hello ${user.firstName}`)
Have a look at the autogenerated docs for examples, etc.
- ✅ Lists
- ✅ List Entries
- ✅ Fields
- ✅ Field Values
- ✅ Field Value Changes
- ✅ Persons
- ✅ Organizations
- ❌ Opportunities
- ❌ Interactions
- ❌ Relationship Strengths
- ✅ Notes
- ✅ Entity Files
- ❌ Reminders
- ❌ Webhooks
- ✅ Whoami
- ✅ Rate Limit
V2 is generated via OpenAPITools/openapi-generator.
The command:
nix develop --command deno task generate-v2-client
will generate an OpenAPI client for Node in Typescript.
Sample usage:
import { AuthApi, createConfiguration } from '@planet-a/affinity-node/v2'
const config = createConfiguration({
authMethods: {
bearerAuth: {
tokenProvider: {
getToken: async () => Promise.resolve('API_KEY'),
},
},
},
})
const authApi = new ObjectAuthApi(config)
const { tenant } = await authApi.getV2AuthWhoami()
console.log(tenant.name)
An up-to-date OpenAPI spec can be downloaded from
here. Drop it
into ./openapi
before you run the command above (remove the old version
beforehand).
This module comes with a pagination helper for the V2 API. Sample usage:
import { CompaniesApi, helpers } from '@planet-a/affinity-node/v2'
const { paginator: { paginated } } = helpers
const companiesApi = new CompaniesApi(config)
for await (
const page of paginated(
companiesApi.getV2Companies.bind(companiesApi),
)({
limit: 10,
})
) {
// Fetch 10 companies at a time, print, repeat
console.log(page)
}
Note on deno: This repository is using Deno heavily for anything dev-related. The resulting node package is meant to be agnostic of the runtime used, so there shouldn't be any deno-specific references. For the tests, etc. Deno-specific APIs, libraries and imports may be used.
- Install nix
- Run
nix develop
- Run any deno task, e.g.
deno task test
Hint: you can do a live run via
API_KEY=<your-api-key> deno task snapshot-update
to update snapshots from your actual Affinity instance during development.
⚠️ Make sure you do not commit any unsanitized data.
This repo is direnv-enabled. If you have Nix and direnv
on your system, you can ignore any nix develop --command
prefixes and just
work in the folder as if you were inside the nix flake environment. This is the
recommended way, as it greatly simplifies the handling of dev tasks and
pre-commit checks.
nix develop --command deno task build
nix develop --command deno task test:coverage
nix develop --command deno task format
nix develop --command deno task lint
nix develop --command deno task docs
open ./docs/index.html
- File names are
snake_case
- Symbols are
camelCase
- Symbols inherited from the Affinity API documentation, such as path and query
parameters adopt the API documentation style,
snake_case
- Enum values are
SNAKE_UPPERCASE
This repo follows the
conventional commits format. Run
nix develop --command cz commit
after staging some changes to be guided
through the process if you're unfamiliar with it.
Pre-commit hooks are managed by Nix. Once you run your commit, it will analyze the changes and run required hooks.