Skip to content

Commit f6ac937

Browse files
author
James Criscuolo
committed
dist/ lib/ files for 0.15.0
1 parent 5906df1 commit f6ac937

File tree

539 files changed

+105913
-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.

539 files changed

+105913
-0
lines changed

dist/sip-0.15.0.js

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

dist/sip-0.15.0.min.js

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

dist/sip-api.js

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

dist/sip-api.min.js

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

dist/sip-core.js

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

dist/sip-core.min.js

Lines changed: 1 addition & 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: 21198 additions & 0 deletions
Large diffs are not rendered by default.

dist/sip.min.js

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/ClientContext.d.ts

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
/// <reference types="node" />
2+
import { EventEmitter } from "events";
3+
import { IncomingResponseMessage, Logger, NameAddrHeader, OutgoingRequestMessage, URI } from "./core";
4+
import { TypeStrings } from "./Enums";
5+
import { BodyObj } from "./session-description-handler";
6+
import { UA } from "./UA";
7+
export declare namespace ClientContext {
8+
interface Options {
9+
body?: string;
10+
contentType?: string;
11+
extraHeaders?: Array<string>;
12+
params?: {
13+
fromUri?: string | URI;
14+
toUri?: string | URI;
15+
toDisplayName?: string;
16+
};
17+
}
18+
}
19+
export declare class ClientContext extends EventEmitter {
20+
static initializer(objToConstruct: ClientContext, ua: UA, method: string, originalTarget: string | URI, options?: ClientContext.Options): void;
21+
type: TypeStrings;
22+
data: any;
23+
ua: UA;
24+
logger: Logger;
25+
request: OutgoingRequestMessage;
26+
method: string;
27+
body: BodyObj | undefined;
28+
localIdentity: NameAddrHeader;
29+
remoteIdentity: NameAddrHeader;
30+
constructor(ua: UA, method: string, target: string | URI, options?: ClientContext.Options);
31+
send(): this;
32+
receiveResponse(response: IncomingResponseMessage): void;
33+
onRequestTimeout(): void;
34+
onTransportError(): void;
35+
}
36+
//# sourceMappingURL=ClientContext.d.ts.map

lib/ClientContext.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)