@simplysm/service-common 13.0.95 → 13.0.96

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 +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -133,7 +133,7 @@ type ServiceClientMessage =
133
133
  | 타입 | name 필드 | 방향 | 설명 |
134
134
  |------|-----------|------|------|
135
135
  | `ServiceRequestMessage` | `` `${service}.${method}` `` | C->S | RPC 호출. body: `unknown[]` (파라미터 배열) |
136
- | `ServiceResponseMessage` | `"response"` | S->C | RPC 응답. body: `unknown` (결과값) |
136
+ | `ServiceResponseMessage` | `"response"` | S->C | RPC 응답. body?: `unknown` (결과값, 선택) |
137
137
  | `ServiceErrorMessage` | `"error"` | S->C | 에러. body: `{ name, message, code, stack?, detail?, cause? }` |
138
138
  | `ServiceAuthMessage` | `"auth"` | C->S | 인증. body: `string` (Bearer 토큰) |
139
139
  | `ServiceProgressMessage` | `"progress"` | 양방향 | 청크 진행률. body: `{ totalSize, completedSize }` |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplysm/service-common",
3
- "version": "13.0.95",
3
+ "version": "13.0.96",
4
4
  "description": "Simplysm package - Service module (common)",
5
5
  "author": "simplysm",
6
6
  "license": "Apache-2.0",
@@ -19,7 +19,7 @@
19
19
  ],
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@simplysm/core-common": "13.0.95",
23
- "@simplysm/orm-common": "13.0.95"
22
+ "@simplysm/orm-common": "13.0.96",
23
+ "@simplysm/core-common": "13.0.96"
24
24
  }
25
25
  }