Skip to content

Commit

Permalink
Release 4.64.1
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 10, 2023
1 parent 0708220 commit 1556824
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 12 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

## [4.64.0](https://github.com/open-wa/wa-automate-nodejs/compare/4.63.0...4.64.0)
## [4.64.1](https://github.com/open-wa/wa-automate-nodejs/compare/4.64.0...4.64.1)

### Commits

- 🐛 improve message preprocessing #3100 [`0708220`](https://github.com/open-wa/wa-automate-nodejs/commit/07082200f3d80ad39ef4d0ff428271c03fae0126)
- updated types-only package [`0a43644`](https://github.com/open-wa/wa-automate-nodejs/commit/0a436448b9bfc081e3b1725cef2db8c2a3c4c0ab)

## [4.64.0](https://github.com/open-wa/wa-automate-nodejs/compare/4.63.0...4.64.0) - 2023-04-08

### Commits

- ✨ feat: `client.getBusinessProfile(...)` #3309 [`2a76c3d`](https://github.com/open-wa/wa-automate-nodejs/commit/2a76c3db13dea432b472526b9cdf8de0f6604436)
- Release 4.64.0 [`4e5f522`](https://github.com/open-wa/wa-automate-nodejs/commit/4e5f5227b3050b767001639bd858b067315084ad)
- 📝 docs: added button/list limitation warnings [`49350e4`](https://github.com/open-wa/wa-automate-nodejs/commit/49350e4dacc02095f0386053797c3c8b656461b2)
- 🐛 fix `client.getGptArray` #3090 [`ec539d7`](https://github.com/open-wa/wa-automate-nodejs/commit/ec539d7c4bb5f1a6dc64eea0fd36fbfcf9dbd942)
- updated types-only package [`e8b4285`](https://github.com/open-wa/wa-automate-nodejs/commit/e8b4285049175067d740d9e411a49b13df2015ef)
Expand Down
2 changes: 1 addition & 1 deletion bin/oas-type-schemas.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs-v3/docs/api/reference
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
id: "reference"
title: "@open-wa/wa-automate - v4.64.0"
title: "@open-wa/wa-automate - v4.64.1"
sidebar_label: "Readme"
sidebar_position: 0
custom_edit_url: null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,21 @@ custom_edit_url: null

[structures/preProcessors](/api/modules/structures_preProcessors.md).MessagePreProcessor

Ƭ **MessagePreProcessor**: (`message`: [`Message`](/api/interfaces/api_model_message.Message.md), `client?`: [`Client`](/api/classes/api_Client.Client.md)) => `Promise`<[`Message`](/api/interfaces/api_model_message.Message.md)\>
Ƭ **MessagePreProcessor**: (`message`: [`Message`](/api/interfaces/api_model_message.Message.md), `client?`: [`Client`](/api/classes/api_Client.Client.md), `alreadyProcessed?`: `boolean`) => `Promise`<[`Message`](/api/interfaces/api_model_message.Message.md)\>

#### Type declaration

▸ (`message`, `client?`): `Promise`<[`Message`](/api/interfaces/api_model_message.Message.md)\>
▸ (`message`, `client?`, `alreadyProcessed?`): `Promise`<[`Message`](/api/interfaces/api_model_message.Message.md)\>

A function that takes a message and returns a message.

##### Parameters

| Name | Type |
| :------ | :------ |
| `message` | [`Message`](/api/interfaces/api_model_message.Message.md) |
| `client?` | [`Client`](/api/classes/api_Client.Client.md) |
| Name | Type | Description |
| :------ | :------ | :------ |
| `message` | [`Message`](/api/interfaces/api_model_message.Message.md) | The message to be processed |
| `client?` | [`Client`](/api/classes/api_Client.Client.md) | The client that received the message |
| `alreadyProcessed?` | `boolean` | Whether the message has already been processed by another preprocessor. (This is useful in cases where you want to mutate the message for both onMessage and onAnyMessage events but only want to do the actual process, like uploading to s3, once.) |

##### Returns

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@open-wa/wa-automate",
"version": "4.64.0",
"version": "4.64.1",
"licenseCheckUrl": "https://funcs.openwa.dev/license-check",
"brokenMethodReportUrl": "https://funcs.openwa.dev/report-bm",
"patches": "https://cdn.openwa.dev/patches.json",
Expand Down
Binary file modified release.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1556824

Please sign in to comment.