Skip to content

Commit aa6a5ce

Browse files
committed
0.21.0: Internal version release
1 parent 640af77 commit aa6a5ce

File tree

557 files changed

+67951
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

557 files changed

+67951
-0
lines changed

dist/sip-0.20.0.js

Lines changed: 20562 additions & 0 deletions
Large diffs are not rendered by default.

dist/sip-0.20.0.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sip.js

Lines changed: 20562 additions & 0 deletions
Large diffs are not rendered by default.

dist/sip.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sip.min.js.LICENSE.txt

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*!
2+
*
3+
* SIP version 0.20.0
4+
* Copyright (c) 2014-2021 Junction Networks, Inc <http://www.onsip.com>
5+
* Homepage: https://sipjs.com
6+
* License: https://sipjs.com/license/
7+
*
8+
*
9+
* ~~~SIP.js contains substantial portions of JsSIP under the following license~~~
10+
* Homepage: http://jssip.net
11+
* Copyright (c) 2012-2013 José Luis Millán - Versatica <http://www.versatica.com>
12+
*
13+
* Permission is hereby granted, free of charge, to any person obtaining
14+
* a copy of this software and associated documentation files (the
15+
* "Software"), to deal in the Software without restriction, including
16+
* without limitation the rights to use, copy, modify, merge, publish,
17+
* distribute, sublicense, and/or sell copies of the Software, and to
18+
* permit persons to whom the Software is furnished to do so, subject to
19+
* the following conditions:
20+
*
21+
* The above copyright notice and this permission notice shall be
22+
* included in all copies or substantial portions of the Software.
23+
*
24+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25+
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26+
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27+
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28+
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29+
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30+
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31+
*
32+
* ~~~ end JsSIP license ~~~
33+
*
34+
*
35+
*
36+
*
37+
*/

lib/api/ack.d.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { IncomingRequestMessage, IncomingAckRequest } from "../core";
2+
/**
3+
* A request to confirm a {@link Session} (incoming ACK).
4+
* @public
5+
*/
6+
export declare class Ack {
7+
private incomingAckRequest;
8+
/** @internal */
9+
constructor(incomingAckRequest: IncomingAckRequest);
10+
/** Incoming ACK request message. */
11+
get request(): IncomingRequestMessage;
12+
}
13+
//# sourceMappingURL=ack.d.ts.map

lib/api/ack.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/api/ack.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/**
2+
* A request to confirm a {@link Session} (incoming ACK).
3+
* @public
4+
*/
5+
export class Ack {
6+
/** @internal */
7+
constructor(incomingAckRequest) {
8+
this.incomingAckRequest = incomingAckRequest;
9+
}
10+
/** Incoming ACK request message. */
11+
get request() {
12+
return this.incomingAckRequest.message;
13+
}
14+
}

lib/api/bye.d.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { IncomingByeRequest, IncomingRequestMessage, ResponseOptions } from "../core";
2+
/**
3+
* A request to end a {@link Session} (incoming BYE).
4+
* @public
5+
*/
6+
export declare class Bye {
7+
private incomingByeRequest;
8+
/** @internal */
9+
constructor(incomingByeRequest: IncomingByeRequest);
10+
/** Incoming BYE request message. */
11+
get request(): IncomingRequestMessage;
12+
/** Accept the request. */
13+
accept(options?: ResponseOptions): Promise<void>;
14+
/** Reject the request. */
15+
reject(options?: ResponseOptions): Promise<void>;
16+
}
17+
//# sourceMappingURL=bye.d.ts.map

lib/api/bye.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)