@myinterview/widget-react 1.1.30 → 1.1.31-development-cd7dc2a
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/cjs/index.js +6 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/configInterface.d.ts +1 -0
- package/dist/cjs/interfaces/videoInterface.d.ts +1 -0
- package/dist/esm/index.js +6 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/configInterface.d.ts +1 -0
- package/dist/esm/interfaces/videoInterface.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -167,6 +167,7 @@ interface IVideo {
|
|
|
167
167
|
source: number;
|
|
168
168
|
};
|
|
169
169
|
region?: 'us' | 'eu' | 'au' | 'london';
|
|
170
|
+
widget_version?: string;
|
|
170
171
|
}
|
|
171
172
|
|
|
172
173
|
type IMessageType = 'completed' | 'deadline' | 'applied' | 'inactiveJob';
|
|
@@ -176,6 +177,7 @@ interface IOnFinish {
|
|
|
176
177
|
}
|
|
177
178
|
interface IOnError {
|
|
178
179
|
messageType: IMessageType;
|
|
180
|
+
messageInfo?: string;
|
|
179
181
|
}
|
|
180
182
|
type IEnv = 'dev' | 'staging' | 'production' | 'development' | 'local';
|
|
181
183
|
type IViews = 'desktop' | 'mobile';
|