@voicenter-team/opensips-js 1.0.80 → 1.0.82
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/index.d.ts +7 -1
- package/dist/opensips-js.cjs.js +2 -2
- package/dist/opensips-js.es.js +18 -12
- package/dist/opensips-js.iife.js +2 -2
- package/dist/opensips-js.umd.js +2 -2
- package/package.json +1 -1
- package/src/types/rtc.d.ts +1 -1
package/package.json
CHANGED
package/src/types/rtc.d.ts
CHANGED
@@ -135,7 +135,6 @@ export type IOpenSIPSConfiguration = Omit<UAConfiguration, 'sockets'>
|
|
135
135
|
|
136
136
|
export interface IOpenSIPSJSOptions {
|
137
137
|
configuration: IOpenSIPSConfiguration
|
138
|
-
pnExtraHeaders: ExtraContactParams
|
139
138
|
socketInterfaces: [ string ]
|
140
139
|
sipDomain: string
|
141
140
|
sipOptions: {
|
@@ -144,6 +143,7 @@ export interface IOpenSIPSJSOptions {
|
|
144
143
|
pcConfig: RTCConfiguration
|
145
144
|
},
|
146
145
|
modules: Array<Modules>
|
146
|
+
pnExtraHeaders?: ExtraContactParams
|
147
147
|
}
|
148
148
|
|
149
149
|
export interface TriggerListenerOptions {
|