npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-team-dynamix

v0.1.6

Published

n8n community node for TeamDynamix API

Downloads

535

Readme

n8n-nodes-team-dynamix

An n8n community node package providing integration with the TeamDynamix API for ticket management and knowledge base operations.

Status: n8n Community Node Package | Node Type: Integration | License: MIT

For developers and collaborators: This repository follows n8n community node standards and publishing requirements. See N8N_COMMUNITY_NODE_REQUIREMENTS.md and CONTRIBUTING.md for detailed information.

Features

  • TeamDynamix API Credential - Multiple authentication modes (User Login, Admin Login, Token)
  • Ticket Operations:
    • Create tickets
    • Get many tickets (with filtering and pagination)
    • Update tickets
    • Delete tickets
    • Add feed entries to tickets
  • Knowledge Base Operations: KB article access
  • Automatic Publishing: CI/CD pipeline publishes to npm after main updates
  • Manual Versioning Control: package.json version is intentionally managed by maintainers via develop -> main PRs

Installation

From npm (for n8n users)

Follow the n8n community node installation guide:

  • https://docs.n8n.io/integrations/community-nodes/installation/

Package name:

n8n-nodes-team-dynamix

For local development

npm install

Local Development

Start n8n with this node loaded and hot-reloaded:

npm run dev

Useful commands:

npm run lint
npm run lint:fix
npm run build

Docker Development

Run the development environment in Docker:

# Build and start the container
npm run docker:dev

# Or run in detached mode (background)
npm run docker:dev:detached

# View logs
npm run docker:logs

# Stop the container
npm run docker:stop

The n8n instance will be available at: http://localhost:5678

Docker setup includes:

  • Automatic hot-reload for code changes
  • Persistent n8n data volume
  • Debug logging enabled

Credentials

Credential type: TeamDynamix API (teamDynamixApi)

Supported auth modes:

  • User Login
  • Admin Login
  • Existing Token (Manual)

Configure your TeamDynamix base URL and whichever auth fields apply to your mode.

Operations

Resource: Ticket

  • Create
    • Mode: Guided Fields or Raw JSON
    • Endpoint: POST /tickets
  • Get Many
    • Endpoint: POST /tickets/search
    • Uses Search Data JSON body to refine results
  • Update
    • Endpoint: PUT /tickets/{ticketId}
  • Delete
    • Endpoint: DELETE /tickets/{ticketId}
  • Add Feed
    • Endpoint: POST /tickets/{ticketId}/feed

Resource: KB Article

  • Get Many
    • Endpoint: POST /knowledgebase/articles/search
    • Uses KB Search Data JSON body to refine results

Example KB Search Data payload:

{
	"StatusIDs": [],
	"SearchText": "onboarding",
	"MaxResults": 25
}

All requests are made against your configured credential baseUrl.

Compatibility

  • Node.js 22+
  • Built with @n8n/node-cli

Contributing

We welcome contributions! Before contributing, please see:

Quick Setup for Development

npm install                # Install dependencies
npm run dev               # Start with hot reload
npm run lint             # Check code quality
npm run build            # Build distribution

Publishing

This package is automatically published to npm on pushes to main via GitHub Actions.

Version numbers are not auto-bumped by workflows. Maintainers must manually update package.json before merge, and PR checks enforce that the version is increased for develop -> main pull requests.

Setup required: Configure npm Trusted Publisher (OIDC) for this repository and workflow.

Important: All n8n community nodes must follow publishing requirements, including:

  • ✅ Automatic linting and building on all commits
  • ✅ Publishing to npm registry with proper authentication
  • ✅ Publishing with GitHub Actions and provenance statement

See N8N_COMMUNITY_NODE_REQUIREMENTS.md for full publishing standards.

Required for n8n Submission

Before submitting this package to the n8n Creator Portal, confirm:

  • ✅ Package name follows n8n-nodes-* convention
  • ✅ Includes n8n-community-node-package keyword
  • package.json includes valid n8n configuration
  • ✅ No runtime dependencies (devDependencies only)
  • npm run lint and npm run build both pass
  • ✅ Published to npm via GitHub Actions with provenance
  • ✅ README includes installation, credentials, and operations details

Submission details: https://creators.n8n.io/nodes

Resources

  • N8N Documentation: https://docs.n8n.io/integrations/creating-nodes/
  • N8N Community Nodes: https://docs.n8n.io/integrations/community-nodes/
  • N8N Creator Portal (Submission): https://creators.n8n.io/nodes
  • TeamDynamix API Docs: https://solutions.teamdynamix.com/TDWebApi/
  • NPM Package: https://www.npmjs.com/package/n8n-nodes-team-dynamix

License

MIT