@incodetech/core 0.0.0-dev-20260311-e7ef89b → 0.0.0-dev-20260311-358bd51
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/document-capture.d.ts +47 -47
- package/dist/document-upload.d.ts +46 -46
- package/dist/ekyb.d.ts +1 -1
- package/dist/ekyc.d.ts +2 -1
- package/dist/ekyc.esm.js +145 -82
- package/dist/{types-vXjqO0B-.d.ts → types-WhAUdEJw.d.ts} +1 -0
- package/package.json +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { t as Manager } from "./Manager-CVog-etk.js";
|
|
2
2
|
import { t as CameraStream } from "./camera-HI2fNiV5.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as xstate276 from "xstate";
|
|
4
4
|
|
|
5
5
|
//#region src/modules/document-capture/types.d.ts
|
|
6
6
|
type DocumentType = 'addressStatement' | 'otherDocument1' | 'otherDocument2' | 'otherDocument3' | 'v5cMultiPageLogbook' | 'circulationCard' | 'financeSettlement' | 'carInvoice' | 'capture' | 'processPoaOcr' | 'processLoaOcr' | 'processAsylumSeekerVisaZaf' | 'processBankStatementOCR' | 'processBankCheck' | 'processV5CLogbook' | 'processCarInvoice' | 'processCirculationCard' | 'processFinanceSettlement';
|
|
@@ -72,7 +72,7 @@ type DocumentCaptureInput = {
|
|
|
72
72
|
};
|
|
73
73
|
//#endregion
|
|
74
74
|
//#region src/modules/document-capture/documentCaptureStateMachine.d.ts
|
|
75
|
-
declare const documentCaptureMachine:
|
|
75
|
+
declare const documentCaptureMachine: xstate276.StateMachine<DocumentCaptureContext, {
|
|
76
76
|
type: "CAPTURE";
|
|
77
77
|
} | {
|
|
78
78
|
type: "FILE_SELECTED";
|
|
@@ -95,31 +95,43 @@ declare const documentCaptureMachine: xstate212.StateMachine<DocumentCaptureCont
|
|
|
95
95
|
} | {
|
|
96
96
|
type: "CLOSE";
|
|
97
97
|
}, {
|
|
98
|
-
[x: string]:
|
|
98
|
+
[x: string]: xstate276.ActorRefFromLogic<xstate276.PromiseActorLogic<MediaStream, void, xstate276.EventObject>> | xstate276.ActorRefFromLogic<xstate276.PromiseActorLogic<DocumentUploadResponse, {
|
|
99
99
|
capturedDocument: NonNullable<DocumentCaptureContext["capturedDocument"]>;
|
|
100
100
|
processingType: string;
|
|
101
101
|
onProgress: (progress: number) => void;
|
|
102
|
-
},
|
|
103
|
-
},
|
|
102
|
+
}, xstate276.EventObject>> | undefined;
|
|
103
|
+
}, xstate276.Values<{
|
|
104
104
|
initCamera: {
|
|
105
105
|
src: "initCamera";
|
|
106
|
-
logic:
|
|
106
|
+
logic: xstate276.PromiseActorLogic<MediaStream, void, xstate276.EventObject>;
|
|
107
107
|
id: string | undefined;
|
|
108
108
|
};
|
|
109
109
|
uploadDocument: {
|
|
110
110
|
src: "uploadDocument";
|
|
111
|
-
logic:
|
|
111
|
+
logic: xstate276.PromiseActorLogic<DocumentUploadResponse, {
|
|
112
112
|
capturedDocument: NonNullable<DocumentCaptureContext["capturedDocument"]>;
|
|
113
113
|
processingType: string;
|
|
114
114
|
onProgress: (progress: number) => void;
|
|
115
|
-
},
|
|
115
|
+
}, xstate276.EventObject>;
|
|
116
116
|
id: string | undefined;
|
|
117
117
|
};
|
|
118
|
-
}>,
|
|
118
|
+
}>, xstate276.Values<{
|
|
119
119
|
setStream: {
|
|
120
120
|
type: "setStream";
|
|
121
121
|
params: unknown;
|
|
122
122
|
};
|
|
123
|
+
setProgress: {
|
|
124
|
+
type: "setProgress";
|
|
125
|
+
params: unknown;
|
|
126
|
+
};
|
|
127
|
+
clearError: {
|
|
128
|
+
type: "clearError";
|
|
129
|
+
params: unknown;
|
|
130
|
+
};
|
|
131
|
+
stopStream: {
|
|
132
|
+
type: "stopStream";
|
|
133
|
+
params: unknown;
|
|
134
|
+
};
|
|
123
135
|
setCapturedDocument: {
|
|
124
136
|
type: "setCapturedDocument";
|
|
125
137
|
params: unknown;
|
|
@@ -128,10 +140,6 @@ declare const documentCaptureMachine: xstate212.StateMachine<DocumentCaptureCont
|
|
|
128
140
|
type: "setFileTooLargeError";
|
|
129
141
|
params: unknown;
|
|
130
142
|
};
|
|
131
|
-
setProgress: {
|
|
132
|
-
type: "setProgress";
|
|
133
|
-
params: unknown;
|
|
134
|
-
};
|
|
135
143
|
setUploadError: {
|
|
136
144
|
type: "setUploadError";
|
|
137
145
|
params: unknown;
|
|
@@ -160,18 +168,10 @@ declare const documentCaptureMachine: xstate212.StateMachine<DocumentCaptureCont
|
|
|
160
168
|
type: "clearForNextPage";
|
|
161
169
|
params: unknown;
|
|
162
170
|
};
|
|
163
|
-
clearError: {
|
|
164
|
-
type: "clearError";
|
|
165
|
-
params: unknown;
|
|
166
|
-
};
|
|
167
171
|
resetProgress: {
|
|
168
172
|
type: "resetProgress";
|
|
169
173
|
params: unknown;
|
|
170
174
|
};
|
|
171
|
-
stopStream: {
|
|
172
|
-
type: "stopStream";
|
|
173
|
-
params: unknown;
|
|
174
|
-
};
|
|
175
175
|
trackTutorial: {
|
|
176
176
|
type: "trackTutorial";
|
|
177
177
|
params: unknown;
|
|
@@ -196,7 +196,7 @@ declare const documentCaptureMachine: xstate212.StateMachine<DocumentCaptureCont
|
|
|
196
196
|
type: "trackFailure";
|
|
197
197
|
params: unknown;
|
|
198
198
|
};
|
|
199
|
-
}>,
|
|
199
|
+
}>, xstate276.Values<{
|
|
200
200
|
allowSkip: {
|
|
201
201
|
type: "allowSkip";
|
|
202
202
|
params: unknown;
|
|
@@ -229,7 +229,7 @@ declare const documentCaptureMachine: xstate212.StateMachine<DocumentCaptureCont
|
|
|
229
229
|
type: "isPendingNextPage";
|
|
230
230
|
params: unknown;
|
|
231
231
|
};
|
|
232
|
-
}>, never, "
|
|
232
|
+
}>, never, "initCamera" | "capturing" | "closed" | "uploading" | "finished" | "tutorial" | "preview" | "failure" | "success", string, DocumentCaptureInput, xstate276.NonReducibleUnknown, xstate276.EventObject, xstate276.MetaObject, {
|
|
233
233
|
readonly id: "documentCapture";
|
|
234
234
|
readonly initial: "tutorial";
|
|
235
235
|
readonly context: ({
|
|
@@ -238,67 +238,67 @@ declare const documentCaptureMachine: xstate212.StateMachine<DocumentCaptureCont
|
|
|
238
238
|
spawn: {
|
|
239
239
|
<TSrc extends "initCamera" | "uploadDocument">(logic: TSrc, ...[options]: ({
|
|
240
240
|
src: "initCamera";
|
|
241
|
-
logic:
|
|
241
|
+
logic: xstate276.PromiseActorLogic<MediaStream, void, xstate276.EventObject>;
|
|
242
242
|
id: string | undefined;
|
|
243
243
|
} extends infer T ? T extends {
|
|
244
244
|
src: "initCamera";
|
|
245
|
-
logic:
|
|
245
|
+
logic: xstate276.PromiseActorLogic<MediaStream, void, xstate276.EventObject>;
|
|
246
246
|
id: string | undefined;
|
|
247
247
|
} ? T extends {
|
|
248
248
|
src: TSrc;
|
|
249
|
-
} ?
|
|
249
|
+
} ? xstate276.ConditionalRequired<[options?: ({
|
|
250
250
|
id?: T["id"] | undefined;
|
|
251
251
|
systemId?: string;
|
|
252
|
-
input?:
|
|
252
|
+
input?: xstate276.InputFrom<T["logic"]> | undefined;
|
|
253
253
|
syncSnapshot?: boolean;
|
|
254
|
-
} & { [K in
|
|
254
|
+
} & { [K in xstate276.RequiredActorOptions<T>]: unknown }) | undefined], xstate276.IsNotNever<xstate276.RequiredActorOptions<T>>> : never : never : never) | ({
|
|
255
255
|
src: "uploadDocument";
|
|
256
|
-
logic:
|
|
256
|
+
logic: xstate276.PromiseActorLogic<DocumentUploadResponse, {
|
|
257
257
|
capturedDocument: NonNullable<DocumentCaptureContext["capturedDocument"]>;
|
|
258
258
|
processingType: string;
|
|
259
259
|
onProgress: (progress: number) => void;
|
|
260
|
-
},
|
|
260
|
+
}, xstate276.EventObject>;
|
|
261
261
|
id: string | undefined;
|
|
262
262
|
} extends infer T_1 ? T_1 extends {
|
|
263
263
|
src: "uploadDocument";
|
|
264
|
-
logic:
|
|
264
|
+
logic: xstate276.PromiseActorLogic<DocumentUploadResponse, {
|
|
265
265
|
capturedDocument: NonNullable<DocumentCaptureContext["capturedDocument"]>;
|
|
266
266
|
processingType: string;
|
|
267
267
|
onProgress: (progress: number) => void;
|
|
268
|
-
},
|
|
268
|
+
}, xstate276.EventObject>;
|
|
269
269
|
id: string | undefined;
|
|
270
270
|
} ? T_1 extends {
|
|
271
271
|
src: TSrc;
|
|
272
|
-
} ?
|
|
272
|
+
} ? xstate276.ConditionalRequired<[options?: ({
|
|
273
273
|
id?: T_1["id"] | undefined;
|
|
274
274
|
systemId?: string;
|
|
275
|
-
input?:
|
|
275
|
+
input?: xstate276.InputFrom<T_1["logic"]> | undefined;
|
|
276
276
|
syncSnapshot?: boolean;
|
|
277
|
-
} & { [K_1 in
|
|
277
|
+
} & { [K_1 in xstate276.RequiredActorOptions<T_1>]: unknown }) | undefined], xstate276.IsNotNever<xstate276.RequiredActorOptions<T_1>>> : never : never : never)): xstate276.ActorRefFromLogic<xstate276.GetConcreteByKey<xstate276.Values<{
|
|
278
278
|
initCamera: {
|
|
279
279
|
src: "initCamera";
|
|
280
|
-
logic:
|
|
280
|
+
logic: xstate276.PromiseActorLogic<MediaStream, void, xstate276.EventObject>;
|
|
281
281
|
id: string | undefined;
|
|
282
282
|
};
|
|
283
283
|
uploadDocument: {
|
|
284
284
|
src: "uploadDocument";
|
|
285
|
-
logic:
|
|
285
|
+
logic: xstate276.PromiseActorLogic<DocumentUploadResponse, {
|
|
286
286
|
capturedDocument: NonNullable<DocumentCaptureContext["capturedDocument"]>;
|
|
287
287
|
processingType: string;
|
|
288
288
|
onProgress: (progress: number) => void;
|
|
289
|
-
},
|
|
289
|
+
}, xstate276.EventObject>;
|
|
290
290
|
id: string | undefined;
|
|
291
291
|
};
|
|
292
292
|
}>, "src", TSrc>["logic"]>;
|
|
293
|
-
<TLogic extends
|
|
293
|
+
<TLogic extends xstate276.AnyActorLogic>(src: TLogic, ...[options]: xstate276.ConditionalRequired<[options?: ({
|
|
294
294
|
id?: never;
|
|
295
295
|
systemId?: string;
|
|
296
|
-
input?:
|
|
296
|
+
input?: xstate276.InputFrom<TLogic> | undefined;
|
|
297
297
|
syncSnapshot?: boolean;
|
|
298
|
-
} & { [K in
|
|
298
|
+
} & { [K in xstate276.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate276.IsNotNever<xstate276.RequiredLogicInput<TLogic>>>): xstate276.ActorRefFromLogic<TLogic>;
|
|
299
299
|
};
|
|
300
300
|
input: DocumentCaptureInput;
|
|
301
|
-
self:
|
|
301
|
+
self: xstate276.ActorRef<xstate276.MachineSnapshot<DocumentCaptureContext, {
|
|
302
302
|
type: "CAPTURE";
|
|
303
303
|
} | {
|
|
304
304
|
type: "FILE_SELECTED";
|
|
@@ -320,7 +320,7 @@ declare const documentCaptureMachine: xstate212.StateMachine<DocumentCaptureCont
|
|
|
320
320
|
type: "SKIP";
|
|
321
321
|
} | {
|
|
322
322
|
type: "CLOSE";
|
|
323
|
-
}, Record<string,
|
|
323
|
+
}, Record<string, xstate276.AnyActorRef | undefined>, xstate276.StateValue, string, unknown, any, any>, {
|
|
324
324
|
type: "CAPTURE";
|
|
325
325
|
} | {
|
|
326
326
|
type: "FILE_SELECTED";
|
|
@@ -342,7 +342,7 @@ declare const documentCaptureMachine: xstate212.StateMachine<DocumentCaptureCont
|
|
|
342
342
|
type: "SKIP";
|
|
343
343
|
} | {
|
|
344
344
|
type: "CLOSE";
|
|
345
|
-
},
|
|
345
|
+
}, xstate276.AnyEventObject>;
|
|
346
346
|
}) => {
|
|
347
347
|
config: {
|
|
348
348
|
processingType: DocumentType;
|
|
@@ -479,7 +479,7 @@ declare const documentCaptureMachine: xstate212.StateMachine<DocumentCaptureCont
|
|
|
479
479
|
} | {
|
|
480
480
|
type: "CLOSE";
|
|
481
481
|
};
|
|
482
|
-
self:
|
|
482
|
+
self: xstate276.ActorRef<xstate276.MachineSnapshot<DocumentCaptureContext, {
|
|
483
483
|
type: "CAPTURE";
|
|
484
484
|
} | {
|
|
485
485
|
type: "FILE_SELECTED";
|
|
@@ -501,7 +501,7 @@ declare const documentCaptureMachine: xstate212.StateMachine<DocumentCaptureCont
|
|
|
501
501
|
type: "SKIP";
|
|
502
502
|
} | {
|
|
503
503
|
type: "CLOSE";
|
|
504
|
-
}, Record<string,
|
|
504
|
+
}, Record<string, xstate276.AnyActorRef>, xstate276.StateValue, string, unknown, any, any>, {
|
|
505
505
|
type: "CAPTURE";
|
|
506
506
|
} | {
|
|
507
507
|
type: "FILE_SELECTED";
|
|
@@ -523,7 +523,7 @@ declare const documentCaptureMachine: xstate212.StateMachine<DocumentCaptureCont
|
|
|
523
523
|
type: "SKIP";
|
|
524
524
|
} | {
|
|
525
525
|
type: "CLOSE";
|
|
526
|
-
},
|
|
526
|
+
}, xstate276.AnyEventObject>;
|
|
527
527
|
}) => {
|
|
528
528
|
capturedDocument: CapturedDocument;
|
|
529
529
|
processingType: DocumentType;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { t as Manager } from "./Manager-CVog-etk.js";
|
|
2
2
|
import "./camera-HI2fNiV5.js";
|
|
3
3
|
import { n as DocumentUploadContext, r as DocumentUploadInput, t as DocumentUploadConfig } from "./types-B_l5fu_D.js";
|
|
4
|
-
import * as
|
|
4
|
+
import * as xstate0 from "xstate";
|
|
5
5
|
|
|
6
6
|
//#region src/modules/document-upload/documentUploadStateMachine.d.ts
|
|
7
|
-
declare const documentUploadMachine:
|
|
7
|
+
declare const documentUploadMachine: xstate0.StateMachine<DocumentUploadContext, {
|
|
8
8
|
type: "START";
|
|
9
9
|
} | {
|
|
10
10
|
type: "CAPTURE";
|
|
@@ -17,52 +17,52 @@ declare const documentUploadMachine: xstate271.StateMachine<DocumentUploadContex
|
|
|
17
17
|
} | {
|
|
18
18
|
type: "CLOSE";
|
|
19
19
|
}, {
|
|
20
|
-
[x: string]:
|
|
20
|
+
[x: string]: xstate0.ActorRefFromLogic<xstate0.PromiseActorLogic<MediaStream, void, xstate0.EventObject>> | xstate0.ActorRefFromLogic<xstate0.PromiseActorLogic<void, {
|
|
21
21
|
imageBase64: string;
|
|
22
22
|
documentType: string;
|
|
23
23
|
onProgress: (progress: number) => void;
|
|
24
|
-
},
|
|
25
|
-
},
|
|
24
|
+
}, xstate0.EventObject>> | undefined;
|
|
25
|
+
}, xstate0.Values<{
|
|
26
26
|
initCamera: {
|
|
27
27
|
src: "initCamera";
|
|
28
|
-
logic:
|
|
28
|
+
logic: xstate0.PromiseActorLogic<MediaStream, void, xstate0.EventObject>;
|
|
29
29
|
id: string | undefined;
|
|
30
30
|
};
|
|
31
31
|
uploadDocument: {
|
|
32
32
|
src: "uploadDocument";
|
|
33
|
-
logic:
|
|
33
|
+
logic: xstate0.PromiseActorLogic<void, {
|
|
34
34
|
imageBase64: string;
|
|
35
35
|
documentType: string;
|
|
36
36
|
onProgress: (progress: number) => void;
|
|
37
|
-
},
|
|
37
|
+
}, xstate0.EventObject>;
|
|
38
38
|
id: string | undefined;
|
|
39
39
|
};
|
|
40
|
-
}>,
|
|
41
|
-
setError: {
|
|
42
|
-
type: "setError";
|
|
43
|
-
params: xstate271.NonReducibleUnknown;
|
|
44
|
-
};
|
|
40
|
+
}>, xstate0.Values<{
|
|
45
41
|
setStream: {
|
|
46
42
|
type: "setStream";
|
|
47
|
-
params:
|
|
43
|
+
params: xstate0.NonReducibleUnknown;
|
|
44
|
+
};
|
|
45
|
+
setImageAndClearError: {
|
|
46
|
+
type: "setImageAndClearError";
|
|
47
|
+
params: xstate0.NonReducibleUnknown;
|
|
48
48
|
};
|
|
49
49
|
setProgress: {
|
|
50
50
|
type: "setProgress";
|
|
51
|
-
params:
|
|
51
|
+
params: xstate0.NonReducibleUnknown;
|
|
52
|
+
};
|
|
53
|
+
setError: {
|
|
54
|
+
type: "setError";
|
|
55
|
+
params: xstate0.NonReducibleUnknown;
|
|
52
56
|
};
|
|
53
57
|
clearError: {
|
|
54
58
|
type: "clearError";
|
|
55
|
-
params:
|
|
59
|
+
params: xstate0.NonReducibleUnknown;
|
|
56
60
|
};
|
|
57
61
|
stopStream: {
|
|
58
62
|
type: "stopStream";
|
|
59
|
-
params:
|
|
60
|
-
};
|
|
61
|
-
setImageAndClearError: {
|
|
62
|
-
type: "setImageAndClearError";
|
|
63
|
-
params: xstate271.NonReducibleUnknown;
|
|
63
|
+
params: xstate0.NonReducibleUnknown;
|
|
64
64
|
};
|
|
65
|
-
}>, never, never, "error" | "
|
|
65
|
+
}>, never, never, "error" | "initCamera" | "idle" | "capturing" | "closed" | "uploading" | "finished", string, DocumentUploadInput, xstate0.NonReducibleUnknown, xstate0.EventObject, xstate0.MetaObject, {
|
|
66
66
|
readonly id: "documentUpload";
|
|
67
67
|
readonly initial: "idle";
|
|
68
68
|
readonly context: ({
|
|
@@ -71,67 +71,67 @@ declare const documentUploadMachine: xstate271.StateMachine<DocumentUploadContex
|
|
|
71
71
|
spawn: {
|
|
72
72
|
<TSrc extends "initCamera" | "uploadDocument">(logic: TSrc, ...[options]: ({
|
|
73
73
|
src: "initCamera";
|
|
74
|
-
logic:
|
|
74
|
+
logic: xstate0.PromiseActorLogic<MediaStream, void, xstate0.EventObject>;
|
|
75
75
|
id: string | undefined;
|
|
76
76
|
} extends infer T ? T extends {
|
|
77
77
|
src: "initCamera";
|
|
78
|
-
logic:
|
|
78
|
+
logic: xstate0.PromiseActorLogic<MediaStream, void, xstate0.EventObject>;
|
|
79
79
|
id: string | undefined;
|
|
80
80
|
} ? T extends {
|
|
81
81
|
src: TSrc;
|
|
82
|
-
} ?
|
|
82
|
+
} ? xstate0.ConditionalRequired<[options?: ({
|
|
83
83
|
id?: T["id"] | undefined;
|
|
84
84
|
systemId?: string;
|
|
85
|
-
input?:
|
|
85
|
+
input?: xstate0.InputFrom<T["logic"]> | undefined;
|
|
86
86
|
syncSnapshot?: boolean;
|
|
87
|
-
} & { [K in
|
|
87
|
+
} & { [K in xstate0.RequiredActorOptions<T>]: unknown }) | undefined], xstate0.IsNotNever<xstate0.RequiredActorOptions<T>>> : never : never : never) | ({
|
|
88
88
|
src: "uploadDocument";
|
|
89
|
-
logic:
|
|
89
|
+
logic: xstate0.PromiseActorLogic<void, {
|
|
90
90
|
imageBase64: string;
|
|
91
91
|
documentType: string;
|
|
92
92
|
onProgress: (progress: number) => void;
|
|
93
|
-
},
|
|
93
|
+
}, xstate0.EventObject>;
|
|
94
94
|
id: string | undefined;
|
|
95
95
|
} extends infer T_1 ? T_1 extends {
|
|
96
96
|
src: "uploadDocument";
|
|
97
|
-
logic:
|
|
97
|
+
logic: xstate0.PromiseActorLogic<void, {
|
|
98
98
|
imageBase64: string;
|
|
99
99
|
documentType: string;
|
|
100
100
|
onProgress: (progress: number) => void;
|
|
101
|
-
},
|
|
101
|
+
}, xstate0.EventObject>;
|
|
102
102
|
id: string | undefined;
|
|
103
103
|
} ? T_1 extends {
|
|
104
104
|
src: TSrc;
|
|
105
|
-
} ?
|
|
105
|
+
} ? xstate0.ConditionalRequired<[options?: ({
|
|
106
106
|
id?: T_1["id"] | undefined;
|
|
107
107
|
systemId?: string;
|
|
108
|
-
input?:
|
|
108
|
+
input?: xstate0.InputFrom<T_1["logic"]> | undefined;
|
|
109
109
|
syncSnapshot?: boolean;
|
|
110
|
-
} & { [K_1 in
|
|
110
|
+
} & { [K_1 in xstate0.RequiredActorOptions<T_1>]: unknown }) | undefined], xstate0.IsNotNever<xstate0.RequiredActorOptions<T_1>>> : never : never : never)): xstate0.ActorRefFromLogic<xstate0.GetConcreteByKey<xstate0.Values<{
|
|
111
111
|
initCamera: {
|
|
112
112
|
src: "initCamera";
|
|
113
|
-
logic:
|
|
113
|
+
logic: xstate0.PromiseActorLogic<MediaStream, void, xstate0.EventObject>;
|
|
114
114
|
id: string | undefined;
|
|
115
115
|
};
|
|
116
116
|
uploadDocument: {
|
|
117
117
|
src: "uploadDocument";
|
|
118
|
-
logic:
|
|
118
|
+
logic: xstate0.PromiseActorLogic<void, {
|
|
119
119
|
imageBase64: string;
|
|
120
120
|
documentType: string;
|
|
121
121
|
onProgress: (progress: number) => void;
|
|
122
|
-
},
|
|
122
|
+
}, xstate0.EventObject>;
|
|
123
123
|
id: string | undefined;
|
|
124
124
|
};
|
|
125
125
|
}>, "src", TSrc>["logic"]>;
|
|
126
|
-
<TLogic extends
|
|
126
|
+
<TLogic extends xstate0.AnyActorLogic>(src: TLogic, ...[options]: xstate0.ConditionalRequired<[options?: ({
|
|
127
127
|
id?: never;
|
|
128
128
|
systemId?: string;
|
|
129
|
-
input?:
|
|
129
|
+
input?: xstate0.InputFrom<TLogic> | undefined;
|
|
130
130
|
syncSnapshot?: boolean;
|
|
131
|
-
} & { [K in
|
|
131
|
+
} & { [K in xstate0.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate0.IsNotNever<xstate0.RequiredLogicInput<TLogic>>>): xstate0.ActorRefFromLogic<TLogic>;
|
|
132
132
|
};
|
|
133
133
|
input: DocumentUploadInput;
|
|
134
|
-
self:
|
|
134
|
+
self: xstate0.ActorRef<xstate0.MachineSnapshot<DocumentUploadContext, {
|
|
135
135
|
type: "START";
|
|
136
136
|
} | {
|
|
137
137
|
type: "CAPTURE";
|
|
@@ -143,7 +143,7 @@ declare const documentUploadMachine: xstate271.StateMachine<DocumentUploadContex
|
|
|
143
143
|
type: "RETRY";
|
|
144
144
|
} | {
|
|
145
145
|
type: "CLOSE";
|
|
146
|
-
}, Record<string,
|
|
146
|
+
}, Record<string, xstate0.AnyActorRef | undefined>, xstate0.StateValue, string, unknown, any, any>, {
|
|
147
147
|
type: "START";
|
|
148
148
|
} | {
|
|
149
149
|
type: "CAPTURE";
|
|
@@ -155,7 +155,7 @@ declare const documentUploadMachine: xstate271.StateMachine<DocumentUploadContex
|
|
|
155
155
|
type: "RETRY";
|
|
156
156
|
} | {
|
|
157
157
|
type: "CLOSE";
|
|
158
|
-
},
|
|
158
|
+
}, xstate0.AnyEventObject>;
|
|
159
159
|
}) => {
|
|
160
160
|
config: DocumentUploadConfig;
|
|
161
161
|
stream: undefined;
|
|
@@ -225,7 +225,7 @@ declare const documentUploadMachine: xstate271.StateMachine<DocumentUploadContex
|
|
|
225
225
|
} | {
|
|
226
226
|
type: "CLOSE";
|
|
227
227
|
};
|
|
228
|
-
self:
|
|
228
|
+
self: xstate0.ActorRef<xstate0.MachineSnapshot<DocumentUploadContext, {
|
|
229
229
|
type: "START";
|
|
230
230
|
} | {
|
|
231
231
|
type: "CAPTURE";
|
|
@@ -237,7 +237,7 @@ declare const documentUploadMachine: xstate271.StateMachine<DocumentUploadContex
|
|
|
237
237
|
type: "RETRY";
|
|
238
238
|
} | {
|
|
239
239
|
type: "CLOSE";
|
|
240
|
-
}, Record<string,
|
|
240
|
+
}, Record<string, xstate0.AnyActorRef>, xstate0.StateValue, string, unknown, any, any>, {
|
|
241
241
|
type: "START";
|
|
242
242
|
} | {
|
|
243
243
|
type: "CAPTURE";
|
|
@@ -249,7 +249,7 @@ declare const documentUploadMachine: xstate271.StateMachine<DocumentUploadContex
|
|
|
249
249
|
type: "RETRY";
|
|
250
250
|
} | {
|
|
251
251
|
type: "CLOSE";
|
|
252
|
-
},
|
|
252
|
+
}, xstate0.AnyEventObject>;
|
|
253
253
|
}) => {
|
|
254
254
|
imageBase64: string;
|
|
255
255
|
documentType: string;
|
package/dist/ekyb.d.ts
CHANGED
package/dist/ekyc.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as Manager } from "./Manager-CVog-etk.js";
|
|
2
|
-
import { t as FieldDef } from "./types-
|
|
2
|
+
import { t as FieldDef } from "./types-WhAUdEJw.js";
|
|
3
3
|
|
|
4
4
|
//#region src/modules/ekyc/types.d.ts
|
|
5
5
|
type EkycFieldSource = 'user_input' | 'document_scan' | 'poa_document' | 'phone_module_input' | 'email_module_input' | false;
|
|
@@ -99,6 +99,7 @@ type EkycFormState = {
|
|
|
99
99
|
prefilled: Record<string, boolean>;
|
|
100
100
|
hideEmail: boolean;
|
|
101
101
|
fieldsCountry: string;
|
|
102
|
+
submitError: string;
|
|
102
103
|
};
|
|
103
104
|
type EkycSubmittingState = {
|
|
104
105
|
status: 'submitting';
|
package/dist/ekyc.esm.js
CHANGED
|
@@ -9784,6 +9784,90 @@ function isValidPhoneNumber() {
|
|
|
9784
9784
|
return withMetadataArgument(isValidPhoneNumber$1, arguments);
|
|
9785
9785
|
}
|
|
9786
9786
|
|
|
9787
|
+
//#endregion
|
|
9788
|
+
//#region src/modules/ekyc/ekycConsts.ts
|
|
9789
|
+
const COUNTRY_SELECTOR_DISABLED_SOURCES = ["UK_VOTER_REGISTER"];
|
|
9790
|
+
const STATE_CODE_HINTS = {
|
|
9791
|
+
US: "CA, NY",
|
|
9792
|
+
CA: "ON, QC",
|
|
9793
|
+
BR: "RJ, SP",
|
|
9794
|
+
MX: "JAL, NLE",
|
|
9795
|
+
GB: "ENG, SCT",
|
|
9796
|
+
ES: "MD, CT",
|
|
9797
|
+
AR: "B, C, K"
|
|
9798
|
+
};
|
|
9799
|
+
const ADDRESS_FIELDS = [
|
|
9800
|
+
"address",
|
|
9801
|
+
"houseNo",
|
|
9802
|
+
"street",
|
|
9803
|
+
"address2",
|
|
9804
|
+
"city",
|
|
9805
|
+
"state",
|
|
9806
|
+
"postalCode"
|
|
9807
|
+
];
|
|
9808
|
+
const DRIVERS_LICENSE_FIELDS = [
|
|
9809
|
+
"dlNumber",
|
|
9810
|
+
"dlState",
|
|
9811
|
+
"dlExpireAt"
|
|
9812
|
+
];
|
|
9813
|
+
const REQUIRED_ERROR_KEYS = new Set(["verification.errors.required"]);
|
|
9814
|
+
const FIELD_REQUIRED_DISPLAY_KEY = {
|
|
9815
|
+
firstName: "verification.errors.firstNameRequired",
|
|
9816
|
+
surName: "verification.errors.surNameRequired",
|
|
9817
|
+
maternalSurname: "verification.errors.maternalSurnameRequired",
|
|
9818
|
+
dateOfBirth: "verification.errors.dateOfBirthRequired",
|
|
9819
|
+
street: "verification.errors.streetRequired",
|
|
9820
|
+
city: "verification.errors.cityRequired",
|
|
9821
|
+
state: "verification.errors.stateRequired",
|
|
9822
|
+
houseNo: "verification.errors.houseNoRequired",
|
|
9823
|
+
ssn: "verification.errors.ssnRequired",
|
|
9824
|
+
taxId: "verification.errors.taxIdRequired",
|
|
9825
|
+
last4SSN: "verification.errors.last4SSNRequired",
|
|
9826
|
+
nationality: "verification.errors.nationality",
|
|
9827
|
+
phone: "verification.errors.phoneRequired",
|
|
9828
|
+
email: "verification.errors.emailRequired",
|
|
9829
|
+
dlNumber: "verification.errors.dlNumber",
|
|
9830
|
+
dlState: "verification.errors.dlStateRequired",
|
|
9831
|
+
dlExpireAt: "verification.errors.dlExpireAtRequired",
|
|
9832
|
+
idNum: "verification.errors.prcId"
|
|
9833
|
+
};
|
|
9834
|
+
const POSTAL_CODE_FORMAT_ERROR_KEYS = new Set([
|
|
9835
|
+
"verification.errors.zipCodeInvalidFormat",
|
|
9836
|
+
"verification.errors.postalCodeInvalidFormat",
|
|
9837
|
+
"verification.errors.CAPostalCodeInvalidFormat",
|
|
9838
|
+
"verification.errors.ESPostalCodeInvalidFormat",
|
|
9839
|
+
"verification.errors.UKPostalCodeInvalidFormat",
|
|
9840
|
+
"verification.errors.ARPostalCodeInvalidFormat"
|
|
9841
|
+
]);
|
|
9842
|
+
const POSTAL_CODE_MAX_LENGTH_BY_COUNTRY = {
|
|
9843
|
+
US: 10,
|
|
9844
|
+
BR: 9,
|
|
9845
|
+
CA: 7,
|
|
9846
|
+
ES: 5,
|
|
9847
|
+
GB: 8,
|
|
9848
|
+
UK: 8,
|
|
9849
|
+
AR: 8
|
|
9850
|
+
};
|
|
9851
|
+
const DEFAULT_POSTAL_CODE_MAX_LENGTH = 8;
|
|
9852
|
+
const INVALID_CPF_PATTERNS = [
|
|
9853
|
+
"00000000000",
|
|
9854
|
+
"11111111111",
|
|
9855
|
+
"22222222222",
|
|
9856
|
+
"33333333333",
|
|
9857
|
+
"44444444444",
|
|
9858
|
+
"55555555555",
|
|
9859
|
+
"66666666666",
|
|
9860
|
+
"77777777777",
|
|
9861
|
+
"88888888888",
|
|
9862
|
+
"99999999999"
|
|
9863
|
+
];
|
|
9864
|
+
const DOB_OPTIONAL_SOURCES = ["US_TELCO_1", "UK_VOTER_REGISTER"];
|
|
9865
|
+
const ADDRESS_OPTIONAL_SOURCES = ["US_TELCO_1", "UK_VOTER_REGISTER"];
|
|
9866
|
+
const LAST4SSN_OPTIONAL_SOURCES = ["US_TELCO_1"];
|
|
9867
|
+
const DRIVERS_LICENSE_OPTIONAL_SOURCES = ["US_TELCO_1"];
|
|
9868
|
+
const EMAIL_OPTIONAL_SOURCES = ["US_TELCO_1"];
|
|
9869
|
+
const PHONE_OPTIONAL_SOURCES = ["CA_RES_CREDIT", "UK_VOTER_REGISTER"];
|
|
9870
|
+
|
|
9787
9871
|
//#endregion
|
|
9788
9872
|
//#region src/modules/ekyc/ekycUtils.ts
|
|
9789
9873
|
function mapToEKYCvalue(field) {
|
|
@@ -9832,26 +9916,6 @@ function getEKYCCountry(source) {
|
|
|
9832
9916
|
default: return "US";
|
|
9833
9917
|
}
|
|
9834
9918
|
}
|
|
9835
|
-
const ADDRESS_FIELDS = [
|
|
9836
|
-
"address",
|
|
9837
|
-
"houseNo",
|
|
9838
|
-
"street",
|
|
9839
|
-
"address2",
|
|
9840
|
-
"city",
|
|
9841
|
-
"state",
|
|
9842
|
-
"postalCode"
|
|
9843
|
-
];
|
|
9844
|
-
const DRIVERS_LICENSE_FIELDS = [
|
|
9845
|
-
"dlNumber",
|
|
9846
|
-
"dlState",
|
|
9847
|
-
"dlExpireAt"
|
|
9848
|
-
];
|
|
9849
|
-
const DOB_OPTIONAL_SOURCES = ["US_TELCO_1", "UK_VOTER_REGISTER"];
|
|
9850
|
-
const ADDRESS_OPTIONAL_SOURCES = ["US_TELCO_1", "UK_VOTER_REGISTER"];
|
|
9851
|
-
const LAST4SSN_OPTIONAL_SOURCES = ["US_TELCO_1"];
|
|
9852
|
-
const DRIVERS_LICENSE_OPTIONAL_SOURCES = ["US_TELCO_1"];
|
|
9853
|
-
const EMAIL_OPTIONAL_SOURCES = ["US_TELCO_1"];
|
|
9854
|
-
const PHONE_OPTIONAL_SOURCES = ["CA_RES_CREDIT", "UK_VOTER_REGISTER"];
|
|
9855
9919
|
/** Determines if a field is optional given the current config source */
|
|
9856
9920
|
function isFieldOptional(fieldName, configSource) {
|
|
9857
9921
|
if (fieldName === "middleName") return true;
|
|
@@ -9866,18 +9930,6 @@ function isFieldOptional(fieldName, configSource) {
|
|
|
9866
9930
|
|
|
9867
9931
|
//#endregion
|
|
9868
9932
|
//#region src/modules/ekyc/ekycValidators.ts
|
|
9869
|
-
const INVALID_CPF_PATTERNS = [
|
|
9870
|
-
"00000000000",
|
|
9871
|
-
"11111111111",
|
|
9872
|
-
"22222222222",
|
|
9873
|
-
"33333333333",
|
|
9874
|
-
"44444444444",
|
|
9875
|
-
"55555555555",
|
|
9876
|
-
"66666666666",
|
|
9877
|
-
"77777777777",
|
|
9878
|
-
"88888888888",
|
|
9879
|
-
"99999999999"
|
|
9880
|
-
];
|
|
9881
9933
|
/**
|
|
9882
9934
|
* Validates a Brazilian CPF number (11-digit checksum).
|
|
9883
9935
|
* Accepts formatted (000.000.000-00) or unformatted input.
|
|
@@ -9925,7 +9977,6 @@ const CA_POSTAL_CODE_REGEX = /^[A-Za-z]\d[A-Za-z] \d[A-Za-z]\d$/;
|
|
|
9925
9977
|
const ES_POSTAL_CODE_REGEX = /^\d{5}$/;
|
|
9926
9978
|
const UK_POSTAL_CODE_REGEX = /^(?:[A-Z]{2}\d|[A-Z]{2}\d{2}|[A-Z]\d|[A-Z]\d{2}|[A-Z]\d[A-Z]|[A-Z]{2}\d[A-Z]) \d[A-Z]{2}$/;
|
|
9927
9979
|
const AR_POSTAL_CODE_REGEX = /^[A-Za-z]\d{4}[A-Za-z]{3}$/;
|
|
9928
|
-
const DEFAULT_POSTAL_CODE_MAX = 8;
|
|
9929
9980
|
/**
|
|
9930
9981
|
* Validates postal code by country:
|
|
9931
9982
|
* - US: 5-digit, 9-digit, or ZIP+4
|
|
@@ -9945,8 +9996,7 @@ function validatePostalCode(postalCode, country) {
|
|
|
9945
9996
|
if (country === "GB" || country === "UK") return UK_POSTAL_CODE_REGEX.test(postalCode.toUpperCase());
|
|
9946
9997
|
if (country === "AR") return AR_POSTAL_CODE_REGEX.test(postalCode.replace(/\s/g, "").toUpperCase());
|
|
9947
9998
|
const stripped = postalCode.replace(/\D/g, "");
|
|
9948
|
-
|
|
9949
|
-
return /^\d+$/.test(stripped) && [5, maxLen].includes(stripped.length);
|
|
9999
|
+
return /^\d+$/.test(stripped) && [5, DEFAULT_POSTAL_CODE_MAX_LENGTH].includes(stripped.length);
|
|
9950
10000
|
}
|
|
9951
10001
|
/**
|
|
9952
10002
|
* Normalizes ZIP input to digits and an optional dash after 5 digits.
|
|
@@ -9980,7 +10030,7 @@ function formatPostalCode(value, country) {
|
|
|
9980
10030
|
return `${normalized.slice(0, -3)} ${normalized.slice(-3)}`;
|
|
9981
10031
|
}
|
|
9982
10032
|
if (country === "AR") return value.replace(/[^A-Za-z0-9]/g, "").toUpperCase().slice(0, 8);
|
|
9983
|
-
return value.replace(/\D/g, "").slice(0,
|
|
10033
|
+
return value.replace(/\D/g, "").slice(0, DEFAULT_POSTAL_CODE_MAX_LENGTH);
|
|
9984
10034
|
}
|
|
9985
10035
|
/** Validates a phone number using libphonenumber-js country rules */
|
|
9986
10036
|
function validatePhone(phone, country) {
|
|
@@ -10020,27 +10070,15 @@ function parsePrefilledPhone(phone) {
|
|
|
10020
10070
|
|
|
10021
10071
|
//#endregion
|
|
10022
10072
|
//#region src/modules/ekyc/ekycActions.ts
|
|
10023
|
-
|
|
10024
|
-
|
|
10025
|
-
|
|
10026
|
-
|
|
10027
|
-
|
|
10028
|
-
|
|
10029
|
-
|
|
10030
|
-
|
|
10031
|
-
|
|
10032
|
-
};
|
|
10033
|
-
const REQUIRED_ERROR_KEYS = new Set(["verification.errors.required"]);
|
|
10034
|
-
const POSTAL_CODE_MAX_LENGTH_BY_COUNTRY = {
|
|
10035
|
-
US: 10,
|
|
10036
|
-
BR: 9,
|
|
10037
|
-
CA: 7,
|
|
10038
|
-
ES: 5,
|
|
10039
|
-
GB: 8,
|
|
10040
|
-
UK: 8,
|
|
10041
|
-
AR: 8
|
|
10042
|
-
};
|
|
10043
|
-
const DEFAULT_POSTAL_CODE_MAX_LENGTH = 8;
|
|
10073
|
+
function getRequiredDisplayKey(field, country) {
|
|
10074
|
+
if (field === "postalCode") return country === "US" ? "verification.errors.zipCodeRequired" : "verification.errors.postalCodeRequired";
|
|
10075
|
+
else if (field === "ssn") {
|
|
10076
|
+
if (country === "BR") return "verification.errors.taxIdRequired";
|
|
10077
|
+
else if (country === "CN") return "verification.errors.prcId";
|
|
10078
|
+
return "verification.errors.ssnRequired";
|
|
10079
|
+
}
|
|
10080
|
+
return FIELD_REQUIRED_DISPLAY_KEY[field] ?? "verification.errors.required";
|
|
10081
|
+
}
|
|
10044
10082
|
function getPostalCodeMaxLength(country) {
|
|
10045
10083
|
return POSTAL_CODE_MAX_LENGTH_BY_COUNTRY[country] ?? DEFAULT_POSTAL_CODE_MAX_LENGTH;
|
|
10046
10084
|
}
|
|
@@ -10072,7 +10110,8 @@ function buildFieldDefs(fields, configSource, country, enablePhoneRisk = false)
|
|
|
10072
10110
|
});
|
|
10073
10111
|
if (configSource === "US_CREDIT_BUREAU_1" || configSource === "CA_RES_CREDIT") add("middleName", "text", "verification.labels.middleName", fields.name, {
|
|
10074
10112
|
maxLength: 100,
|
|
10075
|
-
placeholder: "verification.placeholder.middleName"
|
|
10113
|
+
placeholder: "verification.placeholder.middleName",
|
|
10114
|
+
optional: true
|
|
10076
10115
|
});
|
|
10077
10116
|
add("surName", "text", country === "US" ? "verification.labels.lastName" : "verification.labels.surName", fields.name, {
|
|
10078
10117
|
maxLength: 100,
|
|
@@ -10176,20 +10215,12 @@ function computeValidation(fields, values, country, configSource) {
|
|
|
10176
10215
|
isValid: Object.keys(errors).length === 0
|
|
10177
10216
|
};
|
|
10178
10217
|
}
|
|
10179
|
-
const POSTAL_CODE_FORMAT_ERROR_KEYS = new Set([
|
|
10180
|
-
"verification.errors.zipCodeInvalidFormat",
|
|
10181
|
-
"verification.errors.postalCodeInvalidFormat",
|
|
10182
|
-
"verification.errors.CAPostalCodeInvalidFormat",
|
|
10183
|
-
"verification.errors.ESPostalCodeInvalidFormat",
|
|
10184
|
-
"verification.errors.UKPostalCodeInvalidFormat",
|
|
10185
|
-
"verification.errors.ARPostalCodeInvalidFormat"
|
|
10186
|
-
]);
|
|
10187
10218
|
function computeDisplayErrors(errors, touched, submitAttempted, country) {
|
|
10188
10219
|
const display = {};
|
|
10189
10220
|
const errorParams = {};
|
|
10190
10221
|
for (const [field, err] of Object.entries(errors)) {
|
|
10191
10222
|
const isRequiredErr = REQUIRED_ERROR_KEYS.has(err);
|
|
10192
|
-
if (isRequiredErr && submitAttempted) display[field] =
|
|
10223
|
+
if (isRequiredErr && (submitAttempted || touched[field])) display[field] = getRequiredDisplayKey(field, country);
|
|
10193
10224
|
else if (!isRequiredErr && touched[field]) display[field] = err;
|
|
10194
10225
|
if (display[field] && field === "postalCode" && POSTAL_CODE_FORMAT_ERROR_KEYS.has(err)) {
|
|
10195
10226
|
let length = getPostalCodeMaxLength(country);
|
|
@@ -10338,12 +10369,6 @@ function fillFromSuggestion(values, touched, suggestion) {
|
|
|
10338
10369
|
};
|
|
10339
10370
|
}
|
|
10340
10371
|
|
|
10341
|
-
//#endregion
|
|
10342
|
-
//#region src/modules/ekyc/ekycGuards.ts
|
|
10343
|
-
const isValidGuard = ({ context }) => context.isValid;
|
|
10344
|
-
const hasFlowIdGuard = ({ context }) => !!context.config.flowId;
|
|
10345
|
-
const hasVerificationFieldsGuard = ({ context }) => !!context.config.verificationFields;
|
|
10346
|
-
|
|
10347
10372
|
//#endregion
|
|
10348
10373
|
//#region src/modules/ekyc/ekycServices.ts
|
|
10349
10374
|
/** Fetches module configuration for EXTERNAL_VERIFICATION */
|
|
@@ -10383,13 +10408,40 @@ async function searchAddress(query, signal) {
|
|
|
10383
10408
|
};
|
|
10384
10409
|
}) } };
|
|
10385
10410
|
}
|
|
10411
|
+
var EkycSubmitError = class extends Error {
|
|
10412
|
+
constructor(status, apiError) {
|
|
10413
|
+
super(`POST ${endpoints.ekycSubmit} failed: ${status} – ${apiError}`);
|
|
10414
|
+
this.name = "EkycSubmitError";
|
|
10415
|
+
this.status = status;
|
|
10416
|
+
this.apiError = apiError;
|
|
10417
|
+
}
|
|
10418
|
+
};
|
|
10386
10419
|
/** Submits eKYC verification */
|
|
10387
10420
|
async function submitEkyc(data, signal) {
|
|
10388
|
-
|
|
10389
|
-
|
|
10390
|
-
|
|
10421
|
+
try {
|
|
10422
|
+
return (await api.post(endpoints.ekycSubmit, data, { signal })).data;
|
|
10423
|
+
} catch (err) {
|
|
10424
|
+
const httpErr = err;
|
|
10425
|
+
if (typeof httpErr.status === "number") {
|
|
10426
|
+
const body = httpErr.data;
|
|
10427
|
+
const apiError = body?.error ?? body?.message ?? String(err);
|
|
10428
|
+
throw new EkycSubmitError(httpErr.status, apiError);
|
|
10429
|
+
}
|
|
10430
|
+
throw err;
|
|
10431
|
+
}
|
|
10391
10432
|
}
|
|
10392
10433
|
|
|
10434
|
+
//#endregion
|
|
10435
|
+
//#region src/modules/ekyc/ekycGuards.ts
|
|
10436
|
+
const isValidGuard = ({ context }) => context.isValid;
|
|
10437
|
+
const hasFlowIdGuard = ({ context }) => !!context.config.flowId;
|
|
10438
|
+
const hasVerificationFieldsGuard = ({ context }) => !!context.config.verificationFields;
|
|
10439
|
+
const COUNTRY_NOT_SUPPORTED_MSG = "Request unsuccessful. Country not supported for EKYC.";
|
|
10440
|
+
const isCountryNotSupportedGuard = ({ event }) => {
|
|
10441
|
+
const err = event.error;
|
|
10442
|
+
return err instanceof EkycSubmitError && err.status === 400 && err.apiError === COUNTRY_NOT_SUPPORTED_MSG;
|
|
10443
|
+
};
|
|
10444
|
+
|
|
10393
10445
|
//#endregion
|
|
10394
10446
|
//#region src/modules/ekyc/ekycActors.ts
|
|
10395
10447
|
const fetchModuleConfigActor = fromPromise(async ({ input, signal }) => fetchModuleConfig(input.flowId, signal));
|
|
@@ -10485,7 +10537,8 @@ const ekycMachine = setup({
|
|
|
10485
10537
|
isValid,
|
|
10486
10538
|
touched: newTouched,
|
|
10487
10539
|
displayErrors,
|
|
10488
|
-
errorParams
|
|
10540
|
+
errorParams,
|
|
10541
|
+
submitError: ""
|
|
10489
10542
|
};
|
|
10490
10543
|
}),
|
|
10491
10544
|
fillAddressFields: assign(({ context, event }) => {
|
|
@@ -10500,12 +10553,15 @@ const ekycMachine = setup({
|
|
|
10500
10553
|
isValid,
|
|
10501
10554
|
touched: newTouched,
|
|
10502
10555
|
displayErrors,
|
|
10503
|
-
errorParams
|
|
10556
|
+
errorParams,
|
|
10557
|
+
submitError: ""
|
|
10504
10558
|
};
|
|
10505
10559
|
}),
|
|
10506
10560
|
setAddressSuggestions: assign(({ event }) => ({ addressSuggestions: event.suggestions })),
|
|
10507
10561
|
setErrorMessage: assign(({ event }) => ({ errorMessage: String(event.error ?? "verification.error") })),
|
|
10508
10562
|
clearErrorMessage: assign({ errorMessage: () => "" }),
|
|
10563
|
+
setSubmitError: assign(() => ({ submitError: "verification.errors.countryNotSupported" })),
|
|
10564
|
+
clearSubmitError: assign({ submitError: () => "" }),
|
|
10509
10565
|
markSubmitAttempted: assign(({ context }) => {
|
|
10510
10566
|
const { displayErrors, errorParams } = computeDisplayErrors(context.errors, context.touched, true, context.fieldsCountry);
|
|
10511
10567
|
return {
|
|
@@ -10552,7 +10608,8 @@ const ekycMachine = setup({
|
|
|
10552
10608
|
guards: {
|
|
10553
10609
|
isValid: isValidGuard,
|
|
10554
10610
|
hasFlowId: hasFlowIdGuard,
|
|
10555
|
-
hasVerificationFields: hasVerificationFieldsGuard
|
|
10611
|
+
hasVerificationFields: hasVerificationFieldsGuard,
|
|
10612
|
+
isCountryNotSupported: isCountryNotSupportedGuard
|
|
10556
10613
|
}
|
|
10557
10614
|
}).createMachine({
|
|
10558
10615
|
id: "ekyc",
|
|
@@ -10573,6 +10630,7 @@ const ekycMachine = setup({
|
|
|
10573
10630
|
prefilled: {},
|
|
10574
10631
|
hideEmail: false,
|
|
10575
10632
|
errorMessage: "",
|
|
10633
|
+
submitError: "",
|
|
10576
10634
|
touched: {},
|
|
10577
10635
|
submitAttempted: false,
|
|
10578
10636
|
_searchQuery: ""
|
|
@@ -10673,10 +10731,14 @@ const ekycMachine = setup({
|
|
|
10673
10731
|
src: "submitEkyc",
|
|
10674
10732
|
input: ({ context }) => buildSubmitPayload(context),
|
|
10675
10733
|
onDone: { target: "success" },
|
|
10676
|
-
onError: {
|
|
10734
|
+
onError: [{
|
|
10735
|
+
target: "form",
|
|
10736
|
+
guard: "isCountryNotSupported",
|
|
10737
|
+
actions: "setSubmitError"
|
|
10738
|
+
}, {
|
|
10677
10739
|
target: "error",
|
|
10678
10740
|
actions: "setErrorMessage"
|
|
10679
|
-
}
|
|
10741
|
+
}]
|
|
10680
10742
|
}
|
|
10681
10743
|
},
|
|
10682
10744
|
success: {
|
|
@@ -10727,7 +10789,8 @@ function mapState(snapshot) {
|
|
|
10727
10789
|
addressSuggestions: context.addressSuggestions,
|
|
10728
10790
|
prefilled: context.prefilled,
|
|
10729
10791
|
hideEmail: context.hideEmail,
|
|
10730
|
-
fieldsCountry: context.fieldsCountry
|
|
10792
|
+
fieldsCountry: context.fieldsCountry,
|
|
10793
|
+
submitError: context.submitError
|
|
10731
10794
|
};
|
|
10732
10795
|
if (typedSnapshot.matches("submitting")) return { status: "submitting" };
|
|
10733
10796
|
if (typedSnapshot.matches("success")) return { status: "success" };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@incodetech/core",
|
|
3
|
-
"version": "0.0.0-dev-20260311-
|
|
3
|
+
"version": "0.0.0-dev-20260311-358bd51",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.esm.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
"tsdown": "^0.16.6",
|
|
83
83
|
"typescript": "^5.9.3",
|
|
84
84
|
"vitest": "^4.0.13",
|
|
85
|
-
"@incodetech/
|
|
86
|
-
"@incodetech/
|
|
85
|
+
"@incodetech/infra": "1.0.0",
|
|
86
|
+
"@incodetech/config": "1.0.0"
|
|
87
87
|
},
|
|
88
88
|
"scripts": {
|
|
89
89
|
"build": "tsdown -c tsdown.config.ts",
|