@rocket.chat/core-typings 6.10.1 → 6.10.3

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # @rocket.chat/core-typings
2
2
 
3
+ ## 6.10.3
4
+
5
+ ## 6.10.2
6
+
7
+ ### Patch Changes
8
+
9
+ - ([#32935](https://github.com/RocketChat/Rocket.Chat/pull/32935)) Fixed an issue that prevented apps from being updated or uninstalled in some cases
10
+
11
+ - ([#32935](https://github.com/RocketChat/Rocket.Chat/pull/32935)) Fixed an issue that prevented apps from handling errors during execution in some cases
12
+
13
+ - ([#32935](https://github.com/RocketChat/Rocket.Chat/pull/32935)) Improved Apps-Engine installation to prevent start up errors on manual installation setups
14
+
15
+ - ([#32935](https://github.com/RocketChat/Rocket.Chat/pull/32935)) Fixed an issue that caused the video conference button on rooms to not recognize a video conference provider app in some cases
16
+
3
17
  ## 6.10.1
4
18
 
5
19
  ## 6.10.0
@@ -1,3 +1,4 @@
1
+ import type { Request } from 'express';
1
2
  type ServiceMedia = {
2
3
  url: string;
3
4
  contentType: string;
@@ -28,6 +29,7 @@ export interface ISMSProviderConstructor {
28
29
  }
29
30
  export interface ISMSProvider {
30
31
  parse(data: unknown): ServiceData;
32
+ validateRequest(request: Request): boolean;
31
33
  sendBatch?(from: string, to: string[], message: string): Promise<SMSProviderResult>;
32
34
  response(): SMSProviderResponse;
33
35
  send(fromNumber: string, toNumber: string, message: string, extraData?: {
@@ -1 +1 @@
1
- {"version":3,"file":"sms.js","sourceRoot":"","sources":["../../src/omnichannel/sms.ts"],"names":[],"mappings":";;;AA8CO,MAAM,aAAa,GAAG,CAAC,IAAa,EAAuB,EAAE;IACnE,IAAI,OAAO,IAAI,KAAK,QAAQ,IAAI,IAAI,KAAK,IAAI,EAAE,CAAC;QAC/C,OAAO,KAAK,CAAC;IACd,CAAC;IAED,MAAM,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,IAA+B,CAAC;IAE3D,OAAO,OAAO,IAAI,KAAK,QAAQ,IAAI,OAAO,EAAE,KAAK,QAAQ,IAAI,OAAO,IAAI,KAAK,QAAQ,CAAC;AACvF,CAAC,CAAC;AARW,QAAA,aAAa,iBAQxB"}
1
+ {"version":3,"file":"sms.js","sourceRoot":"","sources":["../../src/omnichannel/sms.ts"],"names":[],"mappings":";;;AAiDO,MAAM,aAAa,GAAG,CAAC,IAAa,EAAuB,EAAE;IACnE,IAAI,OAAO,IAAI,KAAK,QAAQ,IAAI,IAAI,KAAK,IAAI,EAAE,CAAC;QAC/C,OAAO,KAAK,CAAC;IACd,CAAC;IAED,MAAM,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,IAA+B,CAAC;IAE3D,OAAO,OAAO,IAAI,KAAK,QAAQ,IAAI,OAAO,EAAE,KAAK,QAAQ,IAAI,OAAO,IAAI,KAAK,QAAQ,CAAC;AACvF,CAAC,CAAC;AARW,QAAA,aAAa,iBAQxB"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@rocket.chat/core-typings",
4
- "version": "6.10.1",
4
+ "version": "6.10.3",
5
5
  "devDependencies": {
6
6
  "@rocket.chat/eslint-config": "^0.7.0",
7
7
  "eslint": "~8.45.0",
@@ -22,10 +22,11 @@
22
22
  "/dist"
23
23
  ],
24
24
  "dependencies": {
25
- "@rocket.chat/apps-engine": "1.43.0",
25
+ "@rocket.chat/apps-engine": "1.43.1",
26
26
  "@rocket.chat/icons": "^0.36.0",
27
27
  "@rocket.chat/message-parser": "^0.31.29",
28
- "@rocket.chat/ui-kit": "~0.35.0"
28
+ "@rocket.chat/ui-kit": "~0.35.0",
29
+ "@types/express": "^4.17.21"
29
30
  },
30
31
  "volta": {
31
32
  "extends": "../../package.json"