@rocket.chat/core-typings 6.3.0-rc.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/CHANGELOG.md +11 -0
  2. package/package.json +32 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,11 @@
1
+ # @rocket.chat/core-typings
2
+
3
+ ## 6.3.0-rc.0
4
+
5
+ ### Patch Changes
6
+
7
+ - e14ec50816: Added and Improved Custom Fields form to Registration Flow
8
+ - 9da856cc67: fix: Resume on-hold chat not working with max-chat's allowed per agent config
9
+ - 12d97e16c2: feat: Allow Incoming Webhooks to override destination channel
10
+
11
+ ## 6.2.6
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@rocket.chat/core-typings",
3
+ "version": "6.3.0-rc.0",
4
+ "devDependencies": {
5
+ "@rocket.chat/eslint-config": "^0.5.0",
6
+ "eslint": "~8.43.0",
7
+ "mongodb": "^4.12.1",
8
+ "prettier": "~2.8.8",
9
+ "typescript": "~5.1.3"
10
+ },
11
+ "scripts": {
12
+ "lint": "eslint --ext .js,.jsx,.ts,.tsx .",
13
+ "lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
14
+ "test": "echo \"Error: no test specified\" && exit 1",
15
+ "dev": "tsc --watch --preserveWatchOutput -p tsconfig.json",
16
+ "build": "rm -rf dist && tsc -p tsconfig.json"
17
+ },
18
+ "main": "./dist/index.js",
19
+ "typings": "./dist/index.d.ts",
20
+ "files": [
21
+ "/dist"
22
+ ],
23
+ "dependencies": {
24
+ "@rocket.chat/apps-engine": "1.39.1",
25
+ "@rocket.chat/icons": "next",
26
+ "@rocket.chat/message-parser": "next",
27
+ "@rocket.chat/ui-kit": "next"
28
+ },
29
+ "volta": {
30
+ "extends": "../../package.json"
31
+ }
32
+ }