@capgo/cli 4.10.0 → 4.10.1
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 +7 -0
- package/dist/index.js +2 -1
- package/package.json +1 -1
- package/src/channel/delete.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [4.10.1](https://github.com/Cap-go/CLI/compare/v4.10.0...v4.10.1) (2024-05-14)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* add missing new userID in logsnag ([0dcf806](https://github.com/Cap-go/CLI/commit/0dcf8063e8819fc3cd0c623f7f761025216d7558))
|
|
11
|
+
|
|
5
12
|
## [4.10.0](https://github.com/Cap-go/CLI/compare/v4.9.3...v4.10.0) (2024-05-14)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.js
CHANGED
|
@@ -109783,7 +109783,7 @@ async function getUserId(options) {
|
|
|
109783
109783
|
// package.json
|
|
109784
109784
|
var package_default = {
|
|
109785
109785
|
name: "@capgo/cli",
|
|
109786
|
-
version: "4.10.
|
|
109786
|
+
version: "4.10.1",
|
|
109787
109787
|
description: "A CLI to upload to capgo servers",
|
|
109788
109788
|
author: "github.com/riderx",
|
|
109789
109789
|
license: "Apache 2.0",
|
|
@@ -112108,6 +112108,7 @@ async function deleteChannel(channelId, appId, options) {
|
|
|
112108
112108
|
channel: "channel",
|
|
112109
112109
|
event: "Delete channel",
|
|
112110
112110
|
icon: "\u2705",
|
|
112111
|
+
user_id: userId,
|
|
112111
112112
|
tags: {
|
|
112112
112113
|
"user-id": userId,
|
|
112113
112114
|
"app-id": appId,
|
package/package.json
CHANGED