@eliya-oss/agent-slack 0.1.11 → 0.1.12
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/CHANGELOG.md +8 -0
- package/dist/main.js +26937 -18
- package/package.json +6 -6
- package/dist/adapters/catalog/BundledMethodCatalog.js +0 -53
- package/dist/adapters/http-file-downloader/HttpFileDownloader.js +0 -20
- package/dist/adapters/keychain/KeychainTokenStore.js +0 -152
- package/dist/adapters/live.js +0 -17
- package/dist/adapters/localhost-oauth/NodeLocalhostOAuthFlow.js +0 -232
- package/dist/adapters/profile-file/FileTokenStore.js +0 -67
- package/dist/adapters/slack-sdk/SlackSdkWebApi.js +0 -48
- package/dist/application/auth.js +0 -35
- package/dist/application/commands.js +0 -699
- package/dist/application/execute.js +0 -36
- package/dist/application/payload.js +0 -40
- package/dist/application/services.js +0 -1
- package/dist/application/slack-call.js +0 -62
- package/dist/cli/args.js +0 -74
- package/dist/cli/metadata.js +0 -374
- package/dist/cli/types.js +0 -1
- package/dist/domain/errors.js +0 -68
- package/dist/domain/ids.js +0 -31
- package/dist/domain/slack.js +0 -1
- package/dist/output/envelope.js +0 -65
- package/dist/output/human.js +0 -302
- package/dist/output/normalize.js +0 -154
- package/dist/output/projection.js +0 -55
- package/dist/ports/FileDownloader.js +0 -1
- package/dist/ports/MethodCatalog.js +0 -1
- package/dist/ports/OAuthFlow.js +0 -1
- package/dist/ports/SlackWebApi.js +0 -1
- package/dist/ports/TokenStore.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @eliya-oss/agent-slack
|
|
2
2
|
|
|
3
|
+
## 0.1.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c48375b: The CLI now starts far faster. Every invocation used to load hundreds of separate module files, dominating the run time of even quick commands like `auth status`. The CLI now ships as a single bundled file, cutting cold start from over a second to about 45ms on a typical machine.
|
|
8
|
+
|
|
9
|
+
No commands or output change.
|
|
10
|
+
|
|
3
11
|
## 0.1.11
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|