New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@mattermost/calls-common

Package Overview
Dependencies
Maintainers
11
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mattermost/calls-common - npm Package Compare versions

Comparing version 0.27.0 to 0.27.1

13

lib/types/types.d.ts

@@ -63,2 +63,3 @@ export type EmptyData = Record<string, never>;

hostID: string;
call_id: string;
} & BaseData;

@@ -216,1 +217,13 @@ export type CallJobState = {

};
export type HostControlMsg = {
channel_id: string;
session_id: string;
};
export type HostControlLowerHand = HostControlMsg & {
call_id: string;
host_id: string;
};
export type HostControlRemoved = HostControlMsg & {
call_id: string;
user_id: string;
};

2

package.json
{
"name": "@mattermost/calls-common",
"version": "0.27.0",
"version": "0.27.1",
"description": "Common code shared between calls webapp, desktop, and mobile.",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

@@ -5,2 +5,7 @@ # calls common

Run `make build` before committing, and commit the `lib` directory. CI will fail if the `lib` directory is out of date.
Run `make build` before committing, and commit the `lib` directory. CI will fail if the `lib` directory is out of date.
To publish a new version of the package on npm:
1. Update the package.json version field
2. run `npm publish --dry-run` to see what will be packaged
3. run `npm publish --access=public` to publish

@@ -84,2 +84,3 @@ // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.

hostID: string;
call_id: string;
} & BaseData

@@ -290,1 +291,17 @@

};
export type HostControlMsg = {
channel_id: string;
session_id: string;
}
export type HostControlLowerHand = HostControlMsg & {
call_id: string;
host_id: string;
}
export type HostControlRemoved = HostControlMsg & {
call_id: string;
user_id: string;
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc