@incodetech/core 0.0.0-dev-20260327-07875df → 0.0.0-dev-20260330-e91ed6b
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/{addressSearch-B_Vjy2UE.esm.js → addressSearch-CVORoFHv.esm.js} +1 -1
- package/dist/authentication.esm.js +6 -6
- package/dist/{authenticationManager-CoeHnXPS.esm.js → authenticationManager-DMbrmeCK.esm.js} +3 -3
- package/dist/{backCameraStream-jiRgi6k7.esm.js → backCameraStream-CTPugcLL.esm.js} +1 -1
- package/dist/consent.d.ts +50 -50
- package/dist/consent.esm.js +1 -1
- package/dist/curp-validation.esm.js +1 -1
- package/dist/{deepsightLoader-BRQ6an4b.esm.js → deepsightLoader-ZyEiKNss.esm.js} +2 -2
- package/dist/{deepsightService-lTQvj-Wf.esm.js → deepsightService-qolSLlqQ.esm.js} +1 -1
- package/dist/document-capture.d.ts +57 -57
- package/dist/document-capture.esm.js +2 -2
- package/dist/document-upload.d.ts +49 -49
- package/dist/document-upload.esm.js +2 -2
- package/dist/ekyb.esm.js +4 -4
- package/dist/ekyc.esm.js +2 -2
- package/dist/email.esm.js +2 -2
- package/dist/{emailManager-C8EeT_ZS.esm.js → emailManager-bG4KnBIC.esm.js} +1 -1
- package/dist/extensibility.d.ts +27 -1
- package/dist/extensibility.esm.js +12 -12
- package/dist/face-match.esm.js +1 -1
- package/dist/{faceCaptureSetup-CP7WXoGS.esm.js → faceCaptureSetup-Ca7SG6Xe.esm.js} +4 -4
- package/dist/flow.esm.js +3 -3
- package/dist/{flowServices-D4YyGfcD.esm.js → flowServices-C65cm0LX.esm.js} +1 -1
- package/dist/geolocation.esm.js +1 -1
- package/dist/government-validation.esm.js +1 -1
- package/dist/id.esm.js +6 -6
- package/dist/{idCaptureManager-BxlkQJq-.esm.js → idCaptureManager-CDEC7BSu.esm.js} +5 -5
- package/dist/index.esm.js +6 -6
- package/dist/mandatory-consent.d.ts +52 -52
- package/dist/mandatory-consent.esm.js +1 -1
- package/dist/phone.esm.js +2 -2
- package/dist/{phoneManager-Chu-DkAG.esm.js → phoneManager-DES56A95.esm.js} +1 -1
- package/dist/{recordingsRepository-COovU1i4.esm.js → recordingsRepository-IvkvHqPF.esm.js} +1 -1
- package/dist/redirect-to-mobile.esm.js +1 -1
- package/dist/selfie.esm.js +6 -6
- package/dist/{selfieManager-DZTwDE-b.esm.js → selfieManager-BIQkjPBF.esm.js} +2 -2
- package/dist/{session-CRPiwwF-.esm.js → session-CVMjvvmd.esm.js} +9 -2
- package/dist/signature.esm.js +1 -1
- package/dist/{src-DCc0dMkT.esm.js → src-NguNDCeE.esm.js} +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { f as Manager } from "./index-BTaLQSj9.js";
|
|
2
2
|
import { n as DocumentUploadContext, r as DocumentUploadInput, t as DocumentUploadConfig } from "./types-oveF7RrS.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as xstate0 from "xstate";
|
|
4
4
|
|
|
5
5
|
//#region src/modules/document-upload/documentUploadStateMachine.d.ts
|
|
6
|
-
declare const documentUploadMachine:
|
|
6
|
+
declare const documentUploadMachine: xstate0.StateMachine<DocumentUploadContext, {
|
|
7
7
|
type: "START";
|
|
8
8
|
} | {
|
|
9
9
|
type: "CAPTURE";
|
|
@@ -16,52 +16,52 @@ declare const documentUploadMachine: xstate421.StateMachine<DocumentUploadContex
|
|
|
16
16
|
} | {
|
|
17
17
|
type: "CLOSE";
|
|
18
18
|
}, {
|
|
19
|
-
[x: string]:
|
|
19
|
+
[x: string]: xstate0.ActorRefFromLogic<xstate0.PromiseActorLogic<MediaStream, void, xstate0.EventObject>> | xstate0.ActorRefFromLogic<xstate0.PromiseActorLogic<void, {
|
|
20
20
|
imageBase64: string;
|
|
21
21
|
documentType: string;
|
|
22
22
|
onProgress: (progress: number) => void;
|
|
23
|
-
},
|
|
24
|
-
},
|
|
23
|
+
}, xstate0.EventObject>> | undefined;
|
|
24
|
+
}, xstate0.Values<{
|
|
25
25
|
initCamera: {
|
|
26
26
|
src: "initCamera";
|
|
27
|
-
logic:
|
|
27
|
+
logic: xstate0.PromiseActorLogic<MediaStream, void, xstate0.EventObject>;
|
|
28
28
|
id: string | undefined;
|
|
29
29
|
};
|
|
30
30
|
uploadDocument: {
|
|
31
31
|
src: "uploadDocument";
|
|
32
|
-
logic:
|
|
32
|
+
logic: xstate0.PromiseActorLogic<void, {
|
|
33
33
|
imageBase64: string;
|
|
34
34
|
documentType: string;
|
|
35
35
|
onProgress: (progress: number) => void;
|
|
36
|
-
},
|
|
36
|
+
}, xstate0.EventObject>;
|
|
37
37
|
id: string | undefined;
|
|
38
38
|
};
|
|
39
|
-
}>,
|
|
40
|
-
setError: {
|
|
41
|
-
type: "setError";
|
|
42
|
-
params: xstate421.NonReducibleUnknown;
|
|
43
|
-
};
|
|
44
|
-
clearError: {
|
|
45
|
-
type: "clearError";
|
|
46
|
-
params: xstate421.NonReducibleUnknown;
|
|
47
|
-
};
|
|
39
|
+
}>, xstate0.Values<{
|
|
48
40
|
setStream: {
|
|
49
41
|
type: "setStream";
|
|
50
|
-
params:
|
|
42
|
+
params: xstate0.NonReducibleUnknown;
|
|
43
|
+
};
|
|
44
|
+
setImageAndClearError: {
|
|
45
|
+
type: "setImageAndClearError";
|
|
46
|
+
params: xstate0.NonReducibleUnknown;
|
|
51
47
|
};
|
|
52
48
|
setProgress: {
|
|
53
49
|
type: "setProgress";
|
|
54
|
-
params:
|
|
50
|
+
params: xstate0.NonReducibleUnknown;
|
|
51
|
+
};
|
|
52
|
+
setError: {
|
|
53
|
+
type: "setError";
|
|
54
|
+
params: xstate0.NonReducibleUnknown;
|
|
55
|
+
};
|
|
56
|
+
clearError: {
|
|
57
|
+
type: "clearError";
|
|
58
|
+
params: xstate0.NonReducibleUnknown;
|
|
55
59
|
};
|
|
56
60
|
stopStream: {
|
|
57
61
|
type: "stopStream";
|
|
58
|
-
params:
|
|
59
|
-
};
|
|
60
|
-
setImageAndClearError: {
|
|
61
|
-
type: "setImageAndClearError";
|
|
62
|
-
params: xstate421.NonReducibleUnknown;
|
|
62
|
+
params: xstate0.NonReducibleUnknown;
|
|
63
63
|
};
|
|
64
|
-
}>, never, never, "error" | "
|
|
64
|
+
}>, never, never, "error" | "initCamera" | "idle" | "capturing" | "closed" | "uploading" | "finished", string, DocumentUploadInput, xstate0.NonReducibleUnknown, xstate0.EventObject, xstate0.MetaObject, {
|
|
65
65
|
readonly id: "documentUpload";
|
|
66
66
|
readonly initial: "idle";
|
|
67
67
|
readonly context: ({
|
|
@@ -70,67 +70,67 @@ declare const documentUploadMachine: xstate421.StateMachine<DocumentUploadContex
|
|
|
70
70
|
spawn: {
|
|
71
71
|
<TSrc extends "initCamera" | "uploadDocument">(logic: TSrc, ...[options]: ({
|
|
72
72
|
src: "initCamera";
|
|
73
|
-
logic:
|
|
73
|
+
logic: xstate0.PromiseActorLogic<MediaStream, void, xstate0.EventObject>;
|
|
74
74
|
id: string | undefined;
|
|
75
75
|
} extends infer T ? T extends {
|
|
76
76
|
src: "initCamera";
|
|
77
|
-
logic:
|
|
77
|
+
logic: xstate0.PromiseActorLogic<MediaStream, void, xstate0.EventObject>;
|
|
78
78
|
id: string | undefined;
|
|
79
79
|
} ? T extends {
|
|
80
80
|
src: TSrc;
|
|
81
|
-
} ?
|
|
81
|
+
} ? xstate0.ConditionalRequired<[options?: ({
|
|
82
82
|
id?: T["id"] | undefined;
|
|
83
83
|
systemId?: string;
|
|
84
|
-
input?:
|
|
84
|
+
input?: xstate0.InputFrom<T["logic"]> | undefined;
|
|
85
85
|
syncSnapshot?: boolean;
|
|
86
|
-
} & { [K in
|
|
86
|
+
} & { [K in xstate0.RequiredActorOptions<T>]: unknown }) | undefined], xstate0.IsNotNever<xstate0.RequiredActorOptions<T>>> : never : never : never) | ({
|
|
87
87
|
src: "uploadDocument";
|
|
88
|
-
logic:
|
|
88
|
+
logic: xstate0.PromiseActorLogic<void, {
|
|
89
89
|
imageBase64: string;
|
|
90
90
|
documentType: string;
|
|
91
91
|
onProgress: (progress: number) => void;
|
|
92
|
-
},
|
|
92
|
+
}, xstate0.EventObject>;
|
|
93
93
|
id: string | undefined;
|
|
94
94
|
} extends infer T_1 ? T_1 extends {
|
|
95
95
|
src: "uploadDocument";
|
|
96
|
-
logic:
|
|
96
|
+
logic: xstate0.PromiseActorLogic<void, {
|
|
97
97
|
imageBase64: string;
|
|
98
98
|
documentType: string;
|
|
99
99
|
onProgress: (progress: number) => void;
|
|
100
|
-
},
|
|
100
|
+
}, xstate0.EventObject>;
|
|
101
101
|
id: string | undefined;
|
|
102
102
|
} ? T_1 extends {
|
|
103
103
|
src: TSrc;
|
|
104
|
-
} ?
|
|
104
|
+
} ? xstate0.ConditionalRequired<[options?: ({
|
|
105
105
|
id?: T_1["id"] | undefined;
|
|
106
106
|
systemId?: string;
|
|
107
|
-
input?:
|
|
107
|
+
input?: xstate0.InputFrom<T_1["logic"]> | undefined;
|
|
108
108
|
syncSnapshot?: boolean;
|
|
109
|
-
} & { [K_1 in
|
|
109
|
+
} & { [K_1 in xstate0.RequiredActorOptions<T_1>]: unknown }) | undefined], xstate0.IsNotNever<xstate0.RequiredActorOptions<T_1>>> : never : never : never)): xstate0.ActorRefFromLogic<xstate0.GetConcreteByKey<xstate0.Values<{
|
|
110
110
|
initCamera: {
|
|
111
111
|
src: "initCamera";
|
|
112
|
-
logic:
|
|
112
|
+
logic: xstate0.PromiseActorLogic<MediaStream, void, xstate0.EventObject>;
|
|
113
113
|
id: string | undefined;
|
|
114
114
|
};
|
|
115
115
|
uploadDocument: {
|
|
116
116
|
src: "uploadDocument";
|
|
117
|
-
logic:
|
|
117
|
+
logic: xstate0.PromiseActorLogic<void, {
|
|
118
118
|
imageBase64: string;
|
|
119
119
|
documentType: string;
|
|
120
120
|
onProgress: (progress: number) => void;
|
|
121
|
-
},
|
|
121
|
+
}, xstate0.EventObject>;
|
|
122
122
|
id: string | undefined;
|
|
123
123
|
};
|
|
124
124
|
}>, "src", TSrc>["logic"]>;
|
|
125
|
-
<TLogic extends
|
|
125
|
+
<TLogic extends xstate0.AnyActorLogic>(src: TLogic, ...[options]: xstate0.ConditionalRequired<[options?: ({
|
|
126
126
|
id?: never;
|
|
127
127
|
systemId?: string;
|
|
128
|
-
input?:
|
|
128
|
+
input?: xstate0.InputFrom<TLogic> | undefined;
|
|
129
129
|
syncSnapshot?: boolean;
|
|
130
|
-
} & { [K in
|
|
130
|
+
} & { [K in xstate0.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate0.IsNotNever<xstate0.RequiredLogicInput<TLogic>>>): xstate0.ActorRefFromLogic<TLogic>;
|
|
131
131
|
};
|
|
132
132
|
input: DocumentUploadInput;
|
|
133
|
-
self:
|
|
133
|
+
self: xstate0.ActorRef<xstate0.MachineSnapshot<DocumentUploadContext, {
|
|
134
134
|
type: "START";
|
|
135
135
|
} | {
|
|
136
136
|
type: "CAPTURE";
|
|
@@ -142,7 +142,7 @@ declare const documentUploadMachine: xstate421.StateMachine<DocumentUploadContex
|
|
|
142
142
|
type: "RETRY";
|
|
143
143
|
} | {
|
|
144
144
|
type: "CLOSE";
|
|
145
|
-
}, Record<string,
|
|
145
|
+
}, Record<string, xstate0.AnyActorRef | undefined>, xstate0.StateValue, string, unknown, any, any>, {
|
|
146
146
|
type: "START";
|
|
147
147
|
} | {
|
|
148
148
|
type: "CAPTURE";
|
|
@@ -154,7 +154,7 @@ declare const documentUploadMachine: xstate421.StateMachine<DocumentUploadContex
|
|
|
154
154
|
type: "RETRY";
|
|
155
155
|
} | {
|
|
156
156
|
type: "CLOSE";
|
|
157
|
-
},
|
|
157
|
+
}, xstate0.AnyEventObject>;
|
|
158
158
|
}) => {
|
|
159
159
|
config: DocumentUploadConfig;
|
|
160
160
|
stream: undefined;
|
|
@@ -224,7 +224,7 @@ declare const documentUploadMachine: xstate421.StateMachine<DocumentUploadContex
|
|
|
224
224
|
} | {
|
|
225
225
|
type: "CLOSE";
|
|
226
226
|
};
|
|
227
|
-
self:
|
|
227
|
+
self: xstate0.ActorRef<xstate0.MachineSnapshot<DocumentUploadContext, {
|
|
228
228
|
type: "START";
|
|
229
229
|
} | {
|
|
230
230
|
type: "CAPTURE";
|
|
@@ -236,7 +236,7 @@ declare const documentUploadMachine: xstate421.StateMachine<DocumentUploadContex
|
|
|
236
236
|
type: "RETRY";
|
|
237
237
|
} | {
|
|
238
238
|
type: "CLOSE";
|
|
239
|
-
}, Record<string,
|
|
239
|
+
}, Record<string, xstate0.AnyActorRef>, xstate0.StateValue, string, unknown, any, any>, {
|
|
240
240
|
type: "START";
|
|
241
241
|
} | {
|
|
242
242
|
type: "CAPTURE";
|
|
@@ -248,7 +248,7 @@ declare const documentUploadMachine: xstate421.StateMachine<DocumentUploadContex
|
|
|
248
248
|
type: "RETRY";
|
|
249
249
|
} | {
|
|
250
250
|
type: "CLOSE";
|
|
251
|
-
},
|
|
251
|
+
}, xstate0.AnyEventObject>;
|
|
252
252
|
}) => {
|
|
253
253
|
imageBase64: string;
|
|
254
254
|
documentType: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { S as createActor, n as eventModuleNames, o as createManagerInstrumentation, v as setup, x as fromPromise, y as assign } from "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import { t as getBackCameraStream } from "./backCameraStream-
|
|
3
|
-
import { A as stopCameraStream, j as createManager } from "./src-
|
|
2
|
+
import { t as getBackCameraStream } from "./backCameraStream-CTPugcLL.esm.js";
|
|
3
|
+
import { A as stopCameraStream, j as createManager } from "./src-NguNDCeE.esm.js";
|
|
4
4
|
import { t as api } from "./api-G4JA8CXK.esm.js";
|
|
5
5
|
import { t as endpoints } from "./endpoints-CCuj1KZH.esm.js";
|
|
6
6
|
|
package/dist/ekyb.esm.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { S as createActor, n as eventModuleNames, o as createManagerInstrumentation, v as setup, x as fromPromise, y as assign } from "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import { j as createManager } from "./src-
|
|
2
|
+
import { j as createManager } from "./src-NguNDCeE.esm.js";
|
|
3
3
|
import "./browserSimulation-C8gNnn5p.esm.js";
|
|
4
4
|
import { t as api } from "./api-G4JA8CXK.esm.js";
|
|
5
5
|
import { t as endpoints } from "./endpoints-CCuj1KZH.esm.js";
|
|
6
|
-
import "./session-
|
|
7
|
-
import { a as POSTAL_CODE_FORMAT_ERROR_KEYS, c as getPostalCodeMaxLength, i as FIXED_DIGIT_POSTAL_CODE_LENGTH, l as validatePostalCode, n as fillFromSuggestion, o as formatPostalCode, r as DYNAMIC_REQUIRED_KEY, s as getPostalCodeErrorKey, t as debounceSearchActor, u as usStateOptions } from "./addressSearch-
|
|
8
|
-
import { t as getFlow } from "./flowServices-
|
|
6
|
+
import "./session-CVMjvvmd.esm.js";
|
|
7
|
+
import { a as POSTAL_CODE_FORMAT_ERROR_KEYS, c as getPostalCodeMaxLength, i as FIXED_DIGIT_POSTAL_CODE_LENGTH, l as validatePostalCode, n as fillFromSuggestion, o as formatPostalCode, r as DYNAMIC_REQUIRED_KEY, s as getPostalCodeErrorKey, t as debounceSearchActor, u as usStateOptions } from "./addressSearch-CVORoFHv.esm.js";
|
|
8
|
+
import { t as getFlow } from "./flowServices-C65cm0LX.esm.js";
|
|
9
9
|
|
|
10
10
|
//#region src/modules/ekyb/ekybConstants.ts
|
|
11
11
|
const UBO_INPUT_LIMIT = 8;
|
package/dist/ekyc.esm.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { S as createActor, n as eventModuleNames, o as createManagerInstrumentation, v as setup, x as fromPromise, y as assign } from "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import { j as createManager } from "./src-
|
|
2
|
+
import { j as createManager } from "./src-NguNDCeE.esm.js";
|
|
3
3
|
import { t as api } from "./api-G4JA8CXK.esm.js";
|
|
4
4
|
import { t as endpoints } from "./endpoints-CCuj1KZH.esm.js";
|
|
5
|
-
import { a as POSTAL_CODE_FORMAT_ERROR_KEYS, c as getPostalCodeMaxLength, i as FIXED_DIGIT_POSTAL_CODE_LENGTH, l as validatePostalCode, n as fillFromSuggestion, o as formatPostalCode, r as DYNAMIC_REQUIRED_KEY, s as getPostalCodeErrorKey, t as debounceSearchActor, u as usStateOptions } from "./addressSearch-
|
|
5
|
+
import { a as POSTAL_CODE_FORMAT_ERROR_KEYS, c as getPostalCodeMaxLength, i as FIXED_DIGIT_POSTAL_CODE_LENGTH, l as validatePostalCode, n as fillFromSuggestion, o as formatPostalCode, r as DYNAMIC_REQUIRED_KEY, s as getPostalCodeErrorKey, t as debounceSearchActor, u as usStateOptions } from "./addressSearch-CVORoFHv.esm.js";
|
|
6
6
|
|
|
7
7
|
//#region ../../node_modules/.pnpm/libphonenumber-js@1.12.31/node_modules/libphonenumber-js/metadata.min.json.js
|
|
8
8
|
var metadata_min_json_default = {
|
package/dist/email.esm.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import "./src-
|
|
2
|
+
import "./src-NguNDCeE.esm.js";
|
|
3
3
|
import "./api-G4JA8CXK.esm.js";
|
|
4
4
|
import "./endpoints-CCuj1KZH.esm.js";
|
|
5
|
-
import { r as emailMachine, t as createEmailManager } from "./emailManager-
|
|
5
|
+
import { r as emailMachine, t as createEmailManager } from "./emailManager-bG4KnBIC.esm.js";
|
|
6
6
|
|
|
7
7
|
export { createEmailManager, emailMachine };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { S as createActor, b as fromCallback, n as eventModuleNames, o as createManagerInstrumentation, v as setup, x as fromPromise, y as assign } from "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import { _ as BrowserTimerProvider, j as createManager } from "./src-
|
|
2
|
+
import { _ as BrowserTimerProvider, j as createManager } from "./src-NguNDCeE.esm.js";
|
|
3
3
|
import { t as api } from "./api-G4JA8CXK.esm.js";
|
|
4
4
|
import { t as endpoints } from "./endpoints-CCuj1KZH.esm.js";
|
|
5
5
|
|
package/dist/extensibility.d.ts
CHANGED
|
@@ -10,6 +10,29 @@ import { i as createAuthenticationManagerFromActor, n as AuthenticationState, t
|
|
|
10
10
|
import { i as createEmailManagerFromActor, n as EmailState, t as EmailManager } from "./emailManager-vDj9azjD.js";
|
|
11
11
|
import { i as createPhoneManagerFromActor, n as PhoneState, t as PhoneManager } from "./phoneManager-BBEdl-dP.js";
|
|
12
12
|
|
|
13
|
+
//#region ../infra/src/capabilities/IFingerprintCapability.d.ts
|
|
14
|
+
type DeviceFingerprintInfo = {
|
|
15
|
+
device: {
|
|
16
|
+
model?: string;
|
|
17
|
+
};
|
|
18
|
+
os: {
|
|
19
|
+
name?: string;
|
|
20
|
+
version?: string;
|
|
21
|
+
};
|
|
22
|
+
browser: {
|
|
23
|
+
name?: string;
|
|
24
|
+
version?: string;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
type FingerprintResult = {
|
|
28
|
+
visitorId: string;
|
|
29
|
+
ip: string;
|
|
30
|
+
deviceInfo: DeviceFingerprintInfo;
|
|
31
|
+
};
|
|
32
|
+
//#endregion
|
|
33
|
+
//#region ../infra/src/device/getDeviceData.d.ts
|
|
34
|
+
declare function getDeviceFingerprintInfo(): Promise<DeviceFingerprintInfo>;
|
|
35
|
+
//#endregion
|
|
13
36
|
//#region ../infra/src/providers/browser/BrowserStorageProvider.d.ts
|
|
14
37
|
/**
|
|
15
38
|
* Browser-based storage provider wrapping localStorage.
|
|
@@ -89,4 +112,7 @@ type AuthenticationUploadResponse = {
|
|
|
89
112
|
metadata?: string;
|
|
90
113
|
};
|
|
91
114
|
//#endregion
|
|
92
|
-
|
|
115
|
+
//#region src/internal/fingerprint/fingerprintApi.d.ts
|
|
116
|
+
declare function getFingerprint(disableIpify?: boolean): Promise<FingerprintResult>;
|
|
117
|
+
//#endregion
|
|
118
|
+
export { type AuthenticationManager, type AuthenticationState, type AuthenticationUploadResponse, BrowserStorageProvider, type CaptureIdResponse, type DeviceFingerprintInfo, type EmailManager, type EmailState, type FaceCaptureContext, type FaceCaptureEvent, type FaceCaptureInput, type FaceCaptureManager, type FaceCaptureManagerState, type FingerprintResult, type IdCaptureManager, type IdCaptureState, type PhoneManager, type PhoneState, type ProcessFaceResponse, type SelfieManager, type SelfieState, type SendFaceImageResponse, WasmUtilProvider, createActor, createAuthenticationManagerFromActor, createEmailManagerFromActor, createIdCaptureManagerFromActor, createPhoneManagerFromActor, createSelfieManagerFromActor, faceCaptureMachine, fromPromise, getDeviceFingerprintInfo, getFingerprint };
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { S as createActor, x as fromPromise } from "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import "./backCameraStream-
|
|
3
|
-
import { o as WasmUtilProvider, v as BrowserStorageProvider } from "./src-
|
|
4
|
-
import "./recordingsRepository-
|
|
2
|
+
import "./backCameraStream-CTPugcLL.esm.js";
|
|
3
|
+
import { N as getDeviceFingerprintInfo, o as WasmUtilProvider, v as BrowserStorageProvider } from "./src-NguNDCeE.esm.js";
|
|
4
|
+
import "./recordingsRepository-IvkvHqPF.esm.js";
|
|
5
5
|
import "./browserSimulation-C8gNnn5p.esm.js";
|
|
6
6
|
import "./api-G4JA8CXK.esm.js";
|
|
7
7
|
import "./endpoints-CCuj1KZH.esm.js";
|
|
8
|
-
import "./session-
|
|
9
|
-
import { n as createIdCaptureManagerFromActor } from "./idCaptureManager-
|
|
10
|
-
import "./deepsightService-
|
|
8
|
+
import { s as getFingerprint } from "./session-CVMjvvmd.esm.js";
|
|
9
|
+
import { n as createIdCaptureManagerFromActor } from "./idCaptureManager-CDEC7BSu.esm.js";
|
|
10
|
+
import "./deepsightService-qolSLlqQ.esm.js";
|
|
11
11
|
import "./stats-D0m3TvIg.esm.js";
|
|
12
|
-
import { t as faceCaptureMachine } from "./faceCaptureSetup-
|
|
13
|
-
import { n as createAuthenticationManagerFromActor } from "./authenticationManager-
|
|
14
|
-
import { n as createEmailManagerFromActor } from "./emailManager-
|
|
15
|
-
import { n as createSelfieManagerFromActor } from "./selfieManager-
|
|
16
|
-
import { n as createPhoneManagerFromActor } from "./phoneManager-
|
|
12
|
+
import { t as faceCaptureMachine } from "./faceCaptureSetup-Ca7SG6Xe.esm.js";
|
|
13
|
+
import { n as createAuthenticationManagerFromActor } from "./authenticationManager-DMbrmeCK.esm.js";
|
|
14
|
+
import { n as createEmailManagerFromActor } from "./emailManager-bG4KnBIC.esm.js";
|
|
15
|
+
import { n as createSelfieManagerFromActor } from "./selfieManager-BIQkjPBF.esm.js";
|
|
16
|
+
import { n as createPhoneManagerFromActor } from "./phoneManager-DES56A95.esm.js";
|
|
17
17
|
|
|
18
|
-
export { BrowserStorageProvider, WasmUtilProvider, createActor, createAuthenticationManagerFromActor, createEmailManagerFromActor, createIdCaptureManagerFromActor, createPhoneManagerFromActor, createSelfieManagerFromActor, faceCaptureMachine, fromPromise };
|
|
18
|
+
export { BrowserStorageProvider, WasmUtilProvider, createActor, createAuthenticationManagerFromActor, createEmailManagerFromActor, createIdCaptureManagerFromActor, createPhoneManagerFromActor, createSelfieManagerFromActor, faceCaptureMachine, fromPromise, getDeviceFingerprintInfo, getFingerprint };
|
package/dist/face-match.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { S as createActor, n as eventModuleNames, o as createManagerInstrumentation, v as setup, x as fromPromise, y as assign } from "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import { j as createManager } from "./src-
|
|
2
|
+
import { j as createManager } from "./src-NguNDCeE.esm.js";
|
|
3
3
|
import { t as api } from "./api-G4JA8CXK.esm.js";
|
|
4
4
|
import { t as endpoints } from "./endpoints-CCuj1KZH.esm.js";
|
|
5
5
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { b as fromCallback, o as createManagerInstrumentation, v as setup, x as fromPromise, y as assign } from "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import { n as getDesktopCameraStream, t as getBackCameraStream } from "./backCameraStream-
|
|
3
|
-
import { A as stopCameraStream,
|
|
4
|
-
import { a as checkPermission, i as uploadDeepsightVideo, n as startRecording, o as requestPermission, r as stopRecording$1, s as flagFaceManualReview, t as createRecordingSession, u as getDeviceClass } from "./recordingsRepository-
|
|
2
|
+
import { n as getDesktopCameraStream, t as getBackCameraStream } from "./backCameraStream-CTPugcLL.esm.js";
|
|
3
|
+
import { A as stopCameraStream, C as StreamCanvasCapture, R as isDesktop, S as StreamCanvasProcessingSession, V as isIPhone14OrHigher, c as FaceDetectionProvider, f as OpenViduRecordingProvider, j as createManager, k as requestCameraAccess, m as LocalRecordingProvider } from "./src-NguNDCeE.esm.js";
|
|
4
|
+
import { a as checkPermission, i as uploadDeepsightVideo, n as startRecording, o as requestPermission, r as stopRecording$1, s as flagFaceManualReview, t as createRecordingSession, u as getDeviceClass } from "./recordingsRepository-IvkvHqPF.esm.js";
|
|
5
5
|
import { r as getToken, t as api } from "./api-G4JA8CXK.esm.js";
|
|
6
6
|
import { t as endpoints } from "./endpoints-CCuj1KZH.esm.js";
|
|
7
7
|
import { t as addDeviceStats } from "./stats-D0m3TvIg.esm.js";
|
|
@@ -383,7 +383,7 @@ async function stopRecording(session) {
|
|
|
383
383
|
}
|
|
384
384
|
}
|
|
385
385
|
async function initializeDeepsightSession(options) {
|
|
386
|
-
const { loadDeepsightSession } = await import("./deepsightLoader-
|
|
386
|
+
const { loadDeepsightSession } = await import("./deepsightLoader-ZyEiKNss.esm.js");
|
|
387
387
|
return loadDeepsightSession({
|
|
388
388
|
ds: options.ds,
|
|
389
389
|
storage: options.storage
|
package/dist/flow.esm.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { S as createActor, b as fromCallback, o as createManagerInstrumentation, v as setup, x as fromPromise, y as assign } from "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import { j as createManager } from "./src-
|
|
2
|
+
import { j as createManager } from "./src-NguNDCeE.esm.js";
|
|
3
3
|
import "./browserSimulation-C8gNnn5p.esm.js";
|
|
4
4
|
import "./api-G4JA8CXK.esm.js";
|
|
5
5
|
import "./endpoints-CCuj1KZH.esm.js";
|
|
6
|
-
import "./session-
|
|
7
|
-
import { n as getRequiredWasmPipelines, r as normalizeFlowModules, t as getFlow } from "./flowServices-
|
|
6
|
+
import "./session-CVMjvvmd.esm.js";
|
|
7
|
+
import { n as getRequiredWasmPipelines, r as normalizeFlowModules, t as getFlow } from "./flowServices-C65cm0LX.esm.js";
|
|
8
8
|
import { t as getFinishStatus } from "./flowCompletionService-Bkaerugt.esm.js";
|
|
9
9
|
|
|
10
10
|
//#region src/modules/flow/flowStateMachine.ts
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { t as api } from "./api-G4JA8CXK.esm.js";
|
|
2
2
|
import { t as endpoints } from "./endpoints-CCuj1KZH.esm.js";
|
|
3
|
-
import { i as initializeSession, r as getSessionFingerprintResult } from "./session-
|
|
3
|
+
import { i as initializeSession, r as getSessionFingerprintResult } from "./session-CVMjvvmd.esm.js";
|
|
4
4
|
|
|
5
5
|
//#region src/modules/flow/flowUtils.ts
|
|
6
6
|
const WASM_MODULE_PIPELINES = {
|
package/dist/geolocation.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { S as createActor, n as eventModuleNames, o as createManagerInstrumentation, v as setup, x as fromPromise, y as assign } from "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import {
|
|
2
|
+
import { L as isAndroid, j as createManager, x as BrowserGeolocationProvider, z as isIOS } from "./src-NguNDCeE.esm.js";
|
|
3
3
|
import { t as api } from "./api-G4JA8CXK.esm.js";
|
|
4
4
|
import { t as endpoints } from "./endpoints-CCuj1KZH.esm.js";
|
|
5
5
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { S as createActor, b as fromCallback, o as createManagerInstrumentation, v as setup, x as fromPromise, y as assign } from "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import { _ as BrowserTimerProvider, j as createManager } from "./src-
|
|
2
|
+
import { _ as BrowserTimerProvider, j as createManager } from "./src-NguNDCeE.esm.js";
|
|
3
3
|
import { t as api } from "./api-G4JA8CXK.esm.js";
|
|
4
4
|
import { t as endpoints } from "./endpoints-CCuj1KZH.esm.js";
|
|
5
5
|
|
package/dist/id.esm.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import "./backCameraStream-
|
|
3
|
-
import "./src-
|
|
4
|
-
import "./recordingsRepository-
|
|
2
|
+
import "./backCameraStream-CTPugcLL.esm.js";
|
|
3
|
+
import "./src-NguNDCeE.esm.js";
|
|
4
|
+
import "./recordingsRepository-IvkvHqPF.esm.js";
|
|
5
5
|
import "./browserSimulation-C8gNnn5p.esm.js";
|
|
6
6
|
import "./api-G4JA8CXK.esm.js";
|
|
7
7
|
import "./endpoints-CCuj1KZH.esm.js";
|
|
8
|
-
import "./session-
|
|
9
|
-
import { a as initializeIdCapture, c as stopRecording, d as validateUploadResponse, f as ID_ERROR_CODES, i as idCaptureMachine, l as stopStream, o as processId, r as createIdCaptureActor, s as startRecordingSession, t as createIdCaptureManager, u as uploadIdImage } from "./idCaptureManager-
|
|
10
|
-
import "./deepsightService-
|
|
8
|
+
import "./session-CVMjvvmd.esm.js";
|
|
9
|
+
import { a as initializeIdCapture, c as stopRecording, d as validateUploadResponse, f as ID_ERROR_CODES, i as idCaptureMachine, l as stopStream, o as processId, r as createIdCaptureActor, s as startRecordingSession, t as createIdCaptureManager, u as uploadIdImage } from "./idCaptureManager-CDEC7BSu.esm.js";
|
|
10
|
+
import "./deepsightService-qolSLlqQ.esm.js";
|
|
11
11
|
import "./stats-D0m3TvIg.esm.js";
|
|
12
12
|
import "./id-B30uqGbp.esm.js";
|
|
13
13
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { C as revokeObjectURL, S as createActor, b as fromCallback, n as eventModuleNames, o as createManagerInstrumentation, s as getDefaultManagerScreenName, v as setup, x as fromPromise, y as assign } from "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import { t as getBackCameraStream } from "./backCameraStream-
|
|
3
|
-
import { C as StreamCanvasCapture, E as IncodeCanvas,
|
|
4
|
-
import { a as checkPermission, c as flagIdManualReview, n as startRecording, o as requestPermission, r as stopRecording$1, t as createRecordingSession, u as getDeviceClass } from "./recordingsRepository-
|
|
2
|
+
import { t as getBackCameraStream } from "./backCameraStream-CTPugcLL.esm.js";
|
|
3
|
+
import { C as StreamCanvasCapture, E as IncodeCanvas, F as getWindowDimensions, R as isDesktop, S as StreamCanvasProcessingSession, _ as BrowserTimerProvider, a as DEFAULT_ID_CAPTURE_THRESHOLDS, f as OpenViduRecordingProvider, i as DEFAULT_ID_CAPTURE_MODEL_VERSION, j as createManager, s as IdCaptureProvider, v as BrowserStorageProvider } from "./src-NguNDCeE.esm.js";
|
|
4
|
+
import { a as checkPermission, c as flagIdManualReview, n as startRecording, o as requestPermission, r as stopRecording$1, t as createRecordingSession, u as getDeviceClass } from "./recordingsRepository-IvkvHqPF.esm.js";
|
|
5
5
|
import { r as getToken, t as api } from "./api-G4JA8CXK.esm.js";
|
|
6
6
|
import { t as endpoints } from "./endpoints-CCuj1KZH.esm.js";
|
|
7
|
-
import { t as getDisableIpify } from "./session-
|
|
7
|
+
import { t as getDisableIpify } from "./session-CVMjvvmd.esm.js";
|
|
8
8
|
import { t as addDeviceStats } from "./stats-D0m3TvIg.esm.js";
|
|
9
9
|
|
|
10
10
|
//#region src/modules/id/idCaptureHelpers.ts
|
|
@@ -608,7 +608,7 @@ const checkMotionSensorActor = fromCallback(({ input, sendBack }) => {
|
|
|
608
608
|
});
|
|
609
609
|
const initializeDeepsightSessionActor = fromPromise(async ({ input }) => {
|
|
610
610
|
if (!input.dependencies) return;
|
|
611
|
-
const { loadDeepsightSession } = await import("./deepsightLoader-
|
|
611
|
+
const { loadDeepsightSession } = await import("./deepsightLoader-ZyEiKNss.esm.js");
|
|
612
612
|
return loadDeepsightSession({
|
|
613
613
|
ds: input.ds,
|
|
614
614
|
storage: input.dependencies.storage,
|
package/dist/index.esm.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { _ as subscribeEvent, a as videoSelfieEvents, c as captureAttemptFinished, d as moduleOpened, f as screenClosed, g as flushEventQueue, h as addEvent, i as tutorialScreenNamesMapper, l as elementClicked, m as screenOpened, n as eventModuleNames, p as screenEvent, r as eventScreenNames, t as cameraScreenNamesMapper, u as moduleClosed } from "./events-Cc1xUUgF.esm.js";
|
|
2
|
-
import "./backCameraStream-
|
|
3
|
-
import { M as createApi_default, d as ScreenOrientationProvider, l as warmupWasm, n as DEFAULT_WASM_VERSION, o as WasmUtilProvider, r as buildDefaultWasmConfig
|
|
4
|
-
import { a as checkPermission, d as getBrowser, l as createScreenOrientationObserver, o as requestPermission, u as getDeviceClass } from "./recordingsRepository-
|
|
2
|
+
import "./backCameraStream-CTPugcLL.esm.js";
|
|
3
|
+
import { B as isIPad, M as createApi_default, d as ScreenOrientationProvider, l as warmupWasm, n as DEFAULT_WASM_VERSION, o as WasmUtilProvider, r as buildDefaultWasmConfig } from "./src-NguNDCeE.esm.js";
|
|
4
|
+
import { a as checkPermission, d as getBrowser, l as createScreenOrientationObserver, o as requestPermission, u as getDeviceClass } from "./recordingsRepository-IvkvHqPF.esm.js";
|
|
5
5
|
import "./browserSimulation-C8gNnn5p.esm.js";
|
|
6
6
|
import { a as resetApi, n as getApi, o as setClient, s as setToken, t as api } from "./api-G4JA8CXK.esm.js";
|
|
7
7
|
import "./endpoints-CCuj1KZH.esm.js";
|
|
8
|
-
import { a as isSessionInitialized, i as initializeSession, n as getSessionFeatures, o as resetSessionInit,
|
|
9
|
-
import { a as initializeIdCapture, c as stopRecording, d as validateUploadResponse, f as ID_ERROR_CODES, i as idCaptureMachine, l as stopStream, o as processId, r as createIdCaptureActor, s as startRecordingSession, t as createIdCaptureManager, u as uploadIdImage } from "./idCaptureManager-
|
|
10
|
-
import "./deepsightService-
|
|
8
|
+
import { a as isSessionInitialized, c as createSession, i as initializeSession, n as getSessionFeatures, o as resetSessionInit, t as getDisableIpify } from "./session-CVMjvvmd.esm.js";
|
|
9
|
+
import { a as initializeIdCapture, c as stopRecording, d as validateUploadResponse, f as ID_ERROR_CODES, i as idCaptureMachine, l as stopStream, o as processId, r as createIdCaptureActor, s as startRecordingSession, t as createIdCaptureManager, u as uploadIdImage } from "./idCaptureManager-CDEC7BSu.esm.js";
|
|
10
|
+
import "./deepsightService-qolSLlqQ.esm.js";
|
|
11
11
|
import "./stats-D0m3TvIg.esm.js";
|
|
12
12
|
import "./id-B30uqGbp.esm.js";
|
|
13
13
|
|