@fluojs/slack 1.0.0-beta.1 → 1.0.0-beta.2

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.
package/README.ko.md CHANGED
@@ -126,6 +126,7 @@ Behavioral contract 메모:
126
126
 
127
127
  - `SlackService.send(...)`는 전달 전에 `defaultChannel`을 해석합니다.
128
128
  - 서비스는 모듈 bootstrap 시 transport를 초기화하고, factory가 소유한 리소스만 애플리케이션 shutdown 시 닫습니다.
129
+ - `SlackService.createPlatformStatusSnapshot()`은 호출자가 내부 옵션에 접근하지 않아도 lifecycle, readiness, transport 소유권을 보고합니다.
129
130
  - 이 패키지는 절대로 `process.env`를 직접 읽지 않습니다. 모든 설정은 명시적인 옵션 또는 DI를 통해 들어와야 합니다.
130
131
 
131
132
  ### `@fluojs/notifications`와의 통합
package/README.md CHANGED
@@ -126,6 +126,7 @@ Behavioral contract notes:
126
126
 
127
127
  - `SlackService.send(...)` resolves `defaultChannel` before delivery.
128
128
  - The service initializes the configured transport during module bootstrap and closes factory-owned resources during application shutdown.
129
+ - `SlackService.createPlatformStatusSnapshot()` reports lifecycle, readiness, and transport ownership without requiring callers to reach into internal options.
129
130
  - The package never reads `process.env` directly. All configuration must enter through explicit options or DI.
130
131
 
131
132
  ### Integration with `@fluojs/notifications`
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "portable",
10
10
  "fetch"
11
11
  ],
12
- "version": "1.0.0-beta.1",
12
+ "version": "1.0.0-beta.2",
13
13
  "private": false,
14
14
  "license": "MIT",
15
15
  "repository": {
@@ -37,9 +37,9 @@
37
37
  ],
38
38
  "dependencies": {
39
39
  "@fluojs/core": "^1.0.0-beta.1",
40
- "@fluojs/runtime": "^1.0.0-beta.1",
41
- "@fluojs/di": "^1.0.0-beta.1",
42
- "@fluojs/notifications": "^1.0.0-beta.1"
40
+ "@fluojs/di": "^1.0.0-beta.2",
41
+ "@fluojs/notifications": "^1.0.0-beta.2",
42
+ "@fluojs/runtime": "^1.0.0-beta.2"
43
43
  },
44
44
  "devDependencies": {
45
45
  "vitest": "^3.2.4"