Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 0 additions & 35 deletions .eslintrc.js

This file was deleted.

16 changes: 0 additions & 16 deletions .eslintrc.prepublish.js

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
pull_request:
push:
branches: [main]

permissions:
contents: read

jobs:
validate:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['22.22', '24']
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm install --global npm@11.6.0
- run: npm ci
- run: npm run lint
- run: npm run typecheck
- run: npm test
- run: npm run prerelease
- run: npm audit --omit=dev
- run: npm run check-package
19 changes: 0 additions & 19 deletions .github/workflows/npm-publish.yaml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publish

on:
push:
tags:
- '*.*.*'

permissions:
contents: read

jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: '24'
cache: npm
registry-url: https://registry.npmjs.org
- run: npm install --global npm@11.6.0
- run: npm ci
- run: npm run lint
- run: npm run typecheck
- run: npm test
- run: npm run check-package
- name: Publish with provenance
run: npm publish --provenance --access public
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ node_modules
.tmp
tmp
dist
.cache
npm-debug.log*
5 changes: 5 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
dist
node_modules
.cache
package-lock.json
.agent/PLANS.md
2 changes: 1 addition & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ module.exports = {
quoteProps: 'as-needed',
endOfLine: 'lf',
printWidth: 100,
};
};
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Changelog

All notable changes to this project are documented here.

## 0.3.0 - Unreleased

### Added

- Task Run status and result operations.
- GA Monitor snapshot, immediate trigger, cursor pagination, and explicit nullable-field updates.
- Shared exact-body webhook signature verification and contract fixtures.
- n8n CLI build/lint/prerelease tooling, PR CI, consumer package smoke checks, and provenance-ready publishing.

### Changed

- Migrated Search from `/v1beta/search` to `/v1/search` with GA modes and nested advanced settings.
- Migrated Monitor operations from `/v1alpha/monitors` to `/v1/monitors`.
- Updated Task processor and Chat model choices.
- Preserved n8n input/output pairing for multi-item execution and continue-on-fail output.
- Made webhook signature validation the secure default.

### Fixed

- Added the missing package entry point and synchronized source, lockfile, and package versions.
- Corrected repository metadata, license, API path encoding, response normalization, and release checks.

## 0.2.0 - 2025-08-22

- Added Monitor operations and triggers.
- Added Parallel web chat and async Task webhook support.
31 changes: 31 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Contributing

## Development setup

Use a supported Node version from the CI matrix and install the locked dependency tree:

```bash
npm ci
```

Keep changes focused and preserve the persisted `name`, resource, and operation values used by saved n8n workflows. API-version and legacy-value translations belong in the request-contract boundary rather than being duplicated across actions.

## Validation

Before opening a pull request, run:

```bash
npm run lint
npm run typecheck
npm test
npm run prerelease
npm audit --omit=dev
npm run check-package
git diff --check
```

Tests use Node's built-in test runner against clean compiled output. Add contract fixtures for request-shape, compatibility, webhook, or execution-semantics changes. Do not put credentials or live customer payloads in fixtures.

## Pull requests

Explain the user impact, compatibility boundary, and validation performed. Distinguish fixture/schema validation from authenticated live API validation. Do not publish a package from a pull-request branch.
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025-2026 Parallel Web Systems, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading
Loading