@internxt/sdk 1.11.3 → 1.11.4
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/dist/meet/index.test.js +2 -0
- package/dist/meet/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/meet/index.test.js
CHANGED
|
@@ -61,6 +61,7 @@ describe('Meet service tests', function () {
|
|
|
61
61
|
token: 'call-token',
|
|
62
62
|
room: 'room-id',
|
|
63
63
|
paxPerCall: 10,
|
|
64
|
+
appId: 'app-id',
|
|
64
65
|
};
|
|
65
66
|
_a = clientAndHeadersWithToken(), client = _a.client, headers = _a.headers;
|
|
66
67
|
postCall = sinon_1.default.stub(httpClient, 'post').resolves(expectedResponse);
|
|
@@ -101,6 +102,7 @@ describe('Meet service tests', function () {
|
|
|
101
102
|
token: 'join-token',
|
|
102
103
|
room: 'room-id',
|
|
103
104
|
userId: 'user-123',
|
|
105
|
+
appId: 'app-id',
|
|
104
106
|
};
|
|
105
107
|
it('should join a call successfully with token', function () { return __awaiter(void 0, void 0, void 0, function () {
|
|
106
108
|
var _a, client, headers, postCall, response;
|
package/dist/meet/types.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export interface CreateCallResponse {
|
|
|
2
2
|
token: string;
|
|
3
3
|
room: string;
|
|
4
4
|
paxPerCall: number;
|
|
5
|
+
appId: string;
|
|
5
6
|
}
|
|
6
7
|
export interface JoinCallPayload {
|
|
7
8
|
name: string;
|
|
@@ -12,6 +13,7 @@ export interface JoinCallResponse {
|
|
|
12
13
|
token: string;
|
|
13
14
|
room: string;
|
|
14
15
|
userId: string;
|
|
16
|
+
appId: string;
|
|
15
17
|
}
|
|
16
18
|
export interface UsersInCallResponse {
|
|
17
19
|
userId: string;
|