Skip to content
Merged
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
319 changes: 203 additions & 116 deletions README.md

Large diffs are not rendered by default.

1,248 changes: 1,193 additions & 55 deletions dist/nodes/OpenWa/OpenWa.node.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/nodes/OpenWa/OpenWa.node.js.map

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions dist/nodes/OpenWa/handlers/automationRule.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import type { IExecuteFunctions } from 'n8n-workflow';
import type { RequestSpec } from './types';
/**
* Autoreply rules: the gateway answers matching inbound messages itself, without
* a round trip through n8n. Useful for an out-of-hours acknowledgement that must
* go out even when the workflow is not running.
*/
export declare function buildAutomationRuleRequest(this: IExecuteFunctions, operation: string, itemIndex: number): Promise<RequestSpec | null>;
97 changes: 97 additions & 0 deletions dist/nodes/OpenWa/handlers/automationRule.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/nodes/OpenWa/handlers/automationRule.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions dist/nodes/OpenWa/handlers/call.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { IExecuteFunctions } from 'n8n-workflow';
import type { RequestSpec } from './types';
/**
* Incoming calls. Only rejection is exposed by the API — pair this with the
* Trigger's `call.received` event to auto-decline calls.
* Calls. Reject declines a ringing call, which pairs with the Trigger's
* `call.received` event to auto-decline; Create Link produces a shareable
* WhatsApp call link that anyone can join.
*/
export declare function buildCallRequest(this: IExecuteFunctions, operation: string, itemIndex: number): Promise<RequestSpec | null>;
40 changes: 29 additions & 11 deletions dist/nodes/OpenWa/handlers/call.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/nodes/OpenWa/handlers/call.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions dist/nodes/OpenWa/handlers/catalog.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import type { IExecuteFunctions } from 'n8n-workflow';
import type { RequestSpec } from './types';
/**
* The WhatsApp Business catalog attached to the account.
*
* Baileys only: whatsapp-web.js answers 501 on every route here, because the
* library parses inbound product messages but exposes no catalog reads. These
* exist mainly to find the product id that Message > Send Product needs.
*/
export declare function buildCatalogRequest(this: IExecuteFunctions, operation: string, itemIndex: number): Promise<RequestSpec | null>;
35 changes: 35 additions & 0 deletions dist/nodes/OpenWa/handlers/catalog.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/nodes/OpenWa/handlers/catalog.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 41 additions & 0 deletions dist/nodes/OpenWa/handlers/channel.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading