@mattermost/calls-common
Advanced tools
Comparing version 0.27.0 to 0.27.1
@@ -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; | ||
}; |
{ | ||
"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; | ||
} | ||
145074
2968
11