@rei-standard/amsg-client 2.3.0-next.2 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -180,7 +180,7 @@ await client.sendInstant({
180
180
  - 传**正则 source**,不要带 `/.../` 也不要尾 flag。`'/foo/i'` 会被当字面量斜杠 + 字面量 `i`,不是大小写不敏感的 `foo`。大小写不敏感请用 `[Aa]` 字符类替代。
181
181
  - 想让分隔符回贴到前一段(默认行为),把分隔符包进 `(...)` 捕获组。库**不会自动包**——传 `'\\n+'` 而不是 `'(\\n+)'` 会得到首尾相连、分隔符丢失的奇怪结果。
182
182
 
183
- ### 本地软清空:`avatarUrl` 与 payload 体积(2.2.4+ / 2.3.0-next.1+)
183
+ ### 本地软清空:`avatarUrl` 与 payload 体积(2.2.4+ / 2.3.0+)
184
184
 
185
185
  `scheduleMessage` / `sendInstant` / `updateMessage` 在发请求**之前**会在本地做两项保护:
186
186
 
@@ -205,7 +205,7 @@ try {
205
205
  }
206
206
  ```
207
207
 
208
- 服务端(`@rei-standard/amsg-instant` 0.7.1+ / 0.8.0-next.1+,`@rei-standard/amsg-server` 2.3.3+ / 2.4.0-next.1+)有同样的软清空二道防线,client 这一道主要省一次远端往返。
208
+ 服务端(`@rei-standard/amsg-instant` 0.7.1+ / 0.8.0+,`@rei-standard/amsg-server` 2.3.3+ / 2.4.0+)有同样的软清空二道防线,client 这一道主要省一次远端往返。
209
209
 
210
210
  ## 导出 API(Exports)
211
211
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rei-standard/amsg-client",
3
- "version": "2.3.0-next.2",
3
+ "version": "2.3.0",
4
4
  "description": "ReiStandard Active Messaging browser client SDK — also re-exports shared push types, builders, and guards from @rei-standard/amsg-shared",
5
5
  "repository": {
6
6
  "type": "git",
@@ -33,7 +33,7 @@
33
33
  "node": ">=20"
34
34
  },
35
35
  "dependencies": {
36
- "@rei-standard/amsg-shared": "0.1.0-next.4"
36
+ "@rei-standard/amsg-shared": "0.1.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "tsup": "^8.0.0",