From 93f717c3c18f5294061593e8b351b978bf2fe8bb Mon Sep 17 00:00:00 2001 From: Andy Ford Date: Wed, 14 Aug 2024 14:01:06 +0100 Subject: [PATCH 1/2] chat: add react agent string to agents.json --- protocol/agents.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/protocol/agents.json b/protocol/agents.json index 6932426..3c10619 100644 --- a/protocol/agents.json +++ b/protocol/agents.json @@ -349,6 +349,11 @@ "identifier": "chat-js", "versioned": true, "type": "wrapper" + }, + { + "identifier": "chat-react", + "versioned": true, + "type": "wrapper" } ], "ablyLibMappings": { From 52877dc97f12c2fa65501b962469a8dc32dcb7e1 Mon Sep 17 00:00:00 2001 From: Andy Ford Date: Wed, 14 Aug 2024 14:04:08 +0100 Subject: [PATCH 2/2] chat: add react agent to README.md --- protocol/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/protocol/README.md b/protocol/README.md index 9d17019..a91db64 100644 --- a/protocol/README.md +++ b/protocol/README.md @@ -98,6 +98,7 @@ The following table adds more contextual detail for some agent identifiers, wher | `android` | [ably-java](https://github.com/ably/ably-java), [ably-dotnet](https://github.com/ably/ably-dotnet) | | `browser` | [ably-js](https://github.com/ably/ably-js) | | `chat-js` | [ably-chat-js](https://github.com/ably/ably-chat-js) | +| `chat-react` | [ably-chat-js](https://github.com/ably/ably-chat-js) | | `dart` | [ably-flutter](https://github.com/ably/ably-flutter) | | `darwin` | [ably-go](https://github.com/ably/ably-go) | | `dotnet-framework` | [ably-dotnet](https://github.com/ably/ably-dotnet) |