@incodetech/core 0.0.0-dev-20260402-0dc2fb9 → 0.0.0-dev-20260402-728ce7f
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/{Manager-B-qS9P9T.esm.js → Manager-9L3Rmc6X.esm.js} +14 -2
- package/dist/{addressSearch-CmmLAvRi.esm.js → addressSearch-uoJHvUT9.esm.js} +1 -1
- package/dist/authentication.esm.js +3 -3
- package/dist/{authenticationManager-BzsB0zC8.esm.js → authenticationManager-xQrUkboA.esm.js} +2 -2
- package/dist/consent.d.ts +50 -50
- package/dist/consent.esm.js +1 -1
- package/dist/curp-validation.esm.js +1 -1
- package/dist/document-capture.d.ts +76 -76
- package/dist/document-capture.esm.js +1 -1
- package/dist/document-upload.d.ts +46 -46
- package/dist/document-upload.esm.js +1 -1
- package/dist/ekyb.esm.js +4 -4
- package/dist/ekyc.esm.js +2 -2
- package/dist/email.esm.js +2 -2
- package/dist/{emailManager-E3Cr6KIG.esm.js → emailManager-JowzcrAP.esm.js} +1 -1
- package/dist/extensibility.esm.js +15 -8
- package/dist/face-match.esm.js +1 -1
- package/dist/{faceCaptureSetup-Bc7QPf-C.esm.js → faceCaptureSetup-Bq4TPX5D.esm.js} +1 -1
- package/dist/flow.esm.js +3 -3
- package/dist/{flowServices-GUqxIdRY.esm.js → flowServices-Bi3F1654.esm.js} +1 -1
- package/dist/geolocation.esm.js +1 -1
- package/dist/government-validation.esm.js +1 -1
- package/dist/id.esm.js +3 -3
- package/dist/{idCaptureManager-1x6DxWdp.esm.js → idCaptureManager-DlZXRwne.esm.js} +72 -25
- package/dist/index.esm.js +3 -3
- package/dist/mandatory-consent.d.ts +50 -50
- package/dist/mandatory-consent.esm.js +1 -1
- package/dist/phone.esm.js +2 -2
- package/dist/{phoneManager-B0ZiIWOO.esm.js → phoneManager-zIENJkK4.esm.js} +1 -1
- package/dist/redirect-to-mobile.esm.js +1 -1
- package/dist/selfie.esm.js +3 -3
- package/dist/{selfieManager-CtfKnz4C.esm.js → selfieManager-DSEpKb7Q.esm.js} +2 -2
- package/dist/{session-CIxnj9Wm.esm.js → session-Cr89qxxK.esm.js} +2 -9
- package/dist/signature.esm.js +1 -1
- package/package.json +1 -1
|
@@ -3271,6 +3271,17 @@ function revokeObjectURL(url) {
|
|
|
3271
3271
|
|
|
3272
3272
|
//#endregion
|
|
3273
3273
|
//#region src/internal/events/addEvent.ts
|
|
3274
|
+
const INTERVIEW_EVENTS_MAX_SCREEN_LENGTH = 50;
|
|
3275
|
+
function normalizeScreenForInterviewEventsApi(screenValue) {
|
|
3276
|
+
const limit = INTERVIEW_EVENTS_MAX_SCREEN_LENGTH;
|
|
3277
|
+
if (screenValue.length <= limit) return screenValue;
|
|
3278
|
+
const head = screenValue.slice(0, limit);
|
|
3279
|
+
const lastDot = head.lastIndexOf(".");
|
|
3280
|
+
const lastPlus = head.lastIndexOf("+");
|
|
3281
|
+
const lastBoundary = Math.max(lastDot, lastPlus);
|
|
3282
|
+
if (lastBoundary > 0) return head.slice(0, lastBoundary);
|
|
3283
|
+
return head;
|
|
3284
|
+
}
|
|
3274
3285
|
const eventsQueue = [];
|
|
3275
3286
|
const eventSubscribers = [];
|
|
3276
3287
|
/**
|
|
@@ -3316,10 +3327,11 @@ function addEvent(event) {
|
|
|
3316
3327
|
eventsQueue.push(event);
|
|
3317
3328
|
return;
|
|
3318
3329
|
}
|
|
3330
|
+
const screenForApi = event.screen !== void 0 ? normalizeScreenForInterviewEventsApi(event.screen) : void 0;
|
|
3319
3331
|
api.post(endpoints.events, [{
|
|
3320
3332
|
code: event.code,
|
|
3321
3333
|
module: event.module,
|
|
3322
|
-
screen:
|
|
3334
|
+
screen: screenForApi,
|
|
3323
3335
|
clientTimestamp: event.clientTimestamp ?? getTimestamp(),
|
|
3324
3336
|
payload: event.payload ?? {}
|
|
3325
3337
|
}]).catch(() => {});
|
|
@@ -3752,4 +3764,4 @@ function createManager(options) {
|
|
|
3752
3764
|
}
|
|
3753
3765
|
|
|
3754
3766
|
//#endregion
|
|
3755
|
-
export {
|
|
3767
|
+
export { createActor as C, fromPromise as S, subscribeEvent as _, tutorialScreenNamesMapper as a, assign as b, captureAttemptFinished as c, moduleOpened as d, screenClosed as f, flushEventQueue as g, addEvent as h, eventScreenNames as i, elementClicked as l, screenOpened as m, cameraScreenNamesMapper as n, videoSelfieEvents as o, screenEvent as p, eventModuleNames as r, createManagerInstrumentation as s, createManager as t, moduleClosed as u, revokeObjectURL as v, fromCallback as x, setup as y };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as api } from "./api-3fZO5bmj.esm.js";
|
|
2
|
-
import {
|
|
2
|
+
import { x as fromCallback } from "./Manager-9L3Rmc6X.esm.js";
|
|
3
3
|
import { t as endpoints } from "./endpoints-DEXxYYFi.esm.js";
|
|
4
4
|
import { t as BrowserTimerProvider } from "./BrowserTimerProvider-CRhCvln7.esm.js";
|
|
5
5
|
|
|
@@ -3,13 +3,13 @@ import "./BaseWasmProvider-BFXU7jj8.esm.js";
|
|
|
3
3
|
import "./StreamCanvasCapture-BowJVbkC.esm.js";
|
|
4
4
|
import "./browserSimulation-zWJAZ1vA.esm.js";
|
|
5
5
|
import "./api-3fZO5bmj.esm.js";
|
|
6
|
-
import "./Manager-
|
|
6
|
+
import "./Manager-9L3Rmc6X.esm.js";
|
|
7
7
|
import "./endpoints-DEXxYYFi.esm.js";
|
|
8
8
|
import "./camera-D-MPXRbZ.esm.js";
|
|
9
9
|
import "./stats-D4C7iDy1.esm.js";
|
|
10
10
|
import "./backCameraStream-BJwEXNl4.esm.js";
|
|
11
11
|
import "./WasmUtilProvider-DctESPCy.esm.js";
|
|
12
|
-
import "./faceCaptureSetup-
|
|
13
|
-
import { i as authenticationMachine, r as createAuthenticationActor, t as createAuthenticationManager } from "./authenticationManager-
|
|
12
|
+
import "./faceCaptureSetup-Bq4TPX5D.esm.js";
|
|
13
|
+
import { i as authenticationMachine, r as createAuthenticationActor, t as createAuthenticationManager } from "./authenticationManager-xQrUkboA.esm.js";
|
|
14
14
|
|
|
15
15
|
export { authenticationMachine, createAuthenticationActor, createAuthenticationManager };
|
package/dist/{authenticationManager-BzsB0zC8.esm.js → authenticationManager-xQrUkboA.esm.js}
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { f as BrowserStorageProvider, p as getDeviceClass } from "./StreamCanvasCapture-BowJVbkC.esm.js";
|
|
2
2
|
import { t as api } from "./api-3fZO5bmj.esm.js";
|
|
3
|
-
import { C as
|
|
3
|
+
import { C as createActor, S as fromPromise, b as assign, r as eventModuleNames } from "./Manager-9L3Rmc6X.esm.js";
|
|
4
4
|
import { t as endpoints } from "./endpoints-DEXxYYFi.esm.js";
|
|
5
5
|
import { t as WasmUtilProvider } from "./WasmUtilProvider-DctESPCy.esm.js";
|
|
6
|
-
import { a as createFaceCaptureManagerFromActor, i as FACE_ERROR_CODES, t as faceCaptureMachine } from "./faceCaptureSetup-
|
|
6
|
+
import { a as createFaceCaptureManagerFromActor, i as FACE_ERROR_CODES, t as faceCaptureMachine } from "./faceCaptureSetup-Bq4TPX5D.esm.js";
|
|
7
7
|
|
|
8
8
|
//#region src/modules/authentication/authenticationErrorUtils.ts
|
|
9
9
|
const AUTH_ERROR_MAP = {
|
package/dist/consent.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "./Actor-phIcsUhv.js";
|
|
2
2
|
import { t as Manager } from "./Manager-BndLda4_.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as xstate96 from "xstate";
|
|
4
4
|
|
|
5
5
|
//#region src/modules/consent/types.d.ts
|
|
6
6
|
type ConsentConfig = {
|
|
@@ -36,7 +36,7 @@ type ConsentContext = {
|
|
|
36
36
|
type ConsentInput = {
|
|
37
37
|
config: ConsentConfig;
|
|
38
38
|
};
|
|
39
|
-
declare const consentMachine:
|
|
39
|
+
declare const consentMachine: xstate96.StateMachine<ConsentContext, {
|
|
40
40
|
type: "LOAD";
|
|
41
41
|
} | {
|
|
42
42
|
type: "TOGGLE_CHECKBOX";
|
|
@@ -48,53 +48,53 @@ declare const consentMachine: xstate63.StateMachine<ConsentContext, {
|
|
|
48
48
|
} | {
|
|
49
49
|
type: "RESET";
|
|
50
50
|
}, {
|
|
51
|
-
[x: string]:
|
|
51
|
+
[x: string]: xstate96.ActorRefFromLogic<xstate96.PromiseActorLogic<FetchCombinedConsentResponse, {
|
|
52
52
|
consentId: string;
|
|
53
|
-
},
|
|
53
|
+
}, xstate96.EventObject>> | xstate96.ActorRefFromLogic<xstate96.PromiseActorLogic<void, {
|
|
54
54
|
languageConsentId: string;
|
|
55
55
|
checkboxes: ConsentCheckbox[];
|
|
56
|
-
},
|
|
57
|
-
},
|
|
56
|
+
}, xstate96.EventObject>> | undefined;
|
|
57
|
+
}, xstate96.Values<{
|
|
58
58
|
fetchConsent: {
|
|
59
59
|
src: "fetchConsent";
|
|
60
|
-
logic:
|
|
60
|
+
logic: xstate96.PromiseActorLogic<FetchCombinedConsentResponse, {
|
|
61
61
|
consentId: string;
|
|
62
|
-
},
|
|
62
|
+
}, xstate96.EventObject>;
|
|
63
63
|
id: string | undefined;
|
|
64
64
|
};
|
|
65
65
|
submitConsent: {
|
|
66
66
|
src: "submitConsent";
|
|
67
|
-
logic:
|
|
67
|
+
logic: xstate96.PromiseActorLogic<void, {
|
|
68
68
|
languageConsentId: string;
|
|
69
69
|
checkboxes: ConsentCheckbox[];
|
|
70
|
-
},
|
|
70
|
+
}, xstate96.EventObject>;
|
|
71
71
|
id: string | undefined;
|
|
72
72
|
};
|
|
73
|
-
}>,
|
|
74
|
-
setError: {
|
|
75
|
-
type: "setError";
|
|
76
|
-
params: xstate63.NonReducibleUnknown;
|
|
77
|
-
};
|
|
73
|
+
}>, xstate96.Values<{
|
|
78
74
|
clearError: {
|
|
79
75
|
type: "clearError";
|
|
80
|
-
params:
|
|
76
|
+
params: xstate96.NonReducibleUnknown;
|
|
81
77
|
};
|
|
82
78
|
setConsentData: {
|
|
83
79
|
type: "setConsentData";
|
|
84
|
-
params:
|
|
80
|
+
params: xstate96.NonReducibleUnknown;
|
|
85
81
|
};
|
|
86
82
|
toggleCheckbox: {
|
|
87
83
|
type: "toggleCheckbox";
|
|
88
|
-
params:
|
|
84
|
+
params: xstate96.NonReducibleUnknown;
|
|
85
|
+
};
|
|
86
|
+
setError: {
|
|
87
|
+
type: "setError";
|
|
88
|
+
params: xstate96.NonReducibleUnknown;
|
|
89
89
|
};
|
|
90
90
|
resetContext: {
|
|
91
91
|
type: "resetContext";
|
|
92
|
-
params:
|
|
92
|
+
params: xstate96.NonReducibleUnknown;
|
|
93
93
|
};
|
|
94
94
|
}>, {
|
|
95
95
|
type: "canSubmit";
|
|
96
96
|
params: unknown;
|
|
97
|
-
}, never, "error" | "
|
|
97
|
+
}, never, "error" | "finished" | "idle" | "loading" | "display" | "submitting", string, ConsentInput, xstate96.NonReducibleUnknown, xstate96.EventObject, xstate96.MetaObject, {
|
|
98
98
|
readonly id: "consent";
|
|
99
99
|
readonly initial: "idle";
|
|
100
100
|
readonly context: ({
|
|
@@ -103,70 +103,70 @@ declare const consentMachine: xstate63.StateMachine<ConsentContext, {
|
|
|
103
103
|
spawn: {
|
|
104
104
|
<TSrc extends "fetchConsent" | "submitConsent">(logic: TSrc, ...[options]: ({
|
|
105
105
|
src: "fetchConsent";
|
|
106
|
-
logic:
|
|
106
|
+
logic: xstate96.PromiseActorLogic<FetchCombinedConsentResponse, {
|
|
107
107
|
consentId: string;
|
|
108
|
-
},
|
|
108
|
+
}, xstate96.EventObject>;
|
|
109
109
|
id: string | undefined;
|
|
110
110
|
} extends infer T ? T extends {
|
|
111
111
|
src: "fetchConsent";
|
|
112
|
-
logic:
|
|
112
|
+
logic: xstate96.PromiseActorLogic<FetchCombinedConsentResponse, {
|
|
113
113
|
consentId: string;
|
|
114
|
-
},
|
|
114
|
+
}, xstate96.EventObject>;
|
|
115
115
|
id: string | undefined;
|
|
116
116
|
} ? T extends {
|
|
117
117
|
src: TSrc;
|
|
118
|
-
} ?
|
|
118
|
+
} ? xstate96.ConditionalRequired<[options?: ({
|
|
119
119
|
id?: T["id"] | undefined;
|
|
120
120
|
systemId?: string;
|
|
121
|
-
input?:
|
|
121
|
+
input?: xstate96.InputFrom<T["logic"]> | undefined;
|
|
122
122
|
syncSnapshot?: boolean;
|
|
123
|
-
} & { [K in
|
|
123
|
+
} & { [K in xstate96.RequiredActorOptions<T>]: unknown }) | undefined], xstate96.IsNotNever<xstate96.RequiredActorOptions<T>>> : never : never : never) | ({
|
|
124
124
|
src: "submitConsent";
|
|
125
|
-
logic:
|
|
125
|
+
logic: xstate96.PromiseActorLogic<void, {
|
|
126
126
|
languageConsentId: string;
|
|
127
127
|
checkboxes: ConsentCheckbox[];
|
|
128
|
-
},
|
|
128
|
+
}, xstate96.EventObject>;
|
|
129
129
|
id: string | undefined;
|
|
130
130
|
} extends infer T_1 ? T_1 extends {
|
|
131
131
|
src: "submitConsent";
|
|
132
|
-
logic:
|
|
132
|
+
logic: xstate96.PromiseActorLogic<void, {
|
|
133
133
|
languageConsentId: string;
|
|
134
134
|
checkboxes: ConsentCheckbox[];
|
|
135
|
-
},
|
|
135
|
+
}, xstate96.EventObject>;
|
|
136
136
|
id: string | undefined;
|
|
137
137
|
} ? T_1 extends {
|
|
138
138
|
src: TSrc;
|
|
139
|
-
} ?
|
|
139
|
+
} ? xstate96.ConditionalRequired<[options?: ({
|
|
140
140
|
id?: T_1["id"] | undefined;
|
|
141
141
|
systemId?: string;
|
|
142
|
-
input?:
|
|
142
|
+
input?: xstate96.InputFrom<T_1["logic"]> | undefined;
|
|
143
143
|
syncSnapshot?: boolean;
|
|
144
|
-
} & { [K_1 in
|
|
144
|
+
} & { [K_1 in xstate96.RequiredActorOptions<T_1>]: unknown }) | undefined], xstate96.IsNotNever<xstate96.RequiredActorOptions<T_1>>> : never : never : never)): xstate96.ActorRefFromLogic<xstate96.GetConcreteByKey<xstate96.Values<{
|
|
145
145
|
fetchConsent: {
|
|
146
146
|
src: "fetchConsent";
|
|
147
|
-
logic:
|
|
147
|
+
logic: xstate96.PromiseActorLogic<FetchCombinedConsentResponse, {
|
|
148
148
|
consentId: string;
|
|
149
|
-
},
|
|
149
|
+
}, xstate96.EventObject>;
|
|
150
150
|
id: string | undefined;
|
|
151
151
|
};
|
|
152
152
|
submitConsent: {
|
|
153
153
|
src: "submitConsent";
|
|
154
|
-
logic:
|
|
154
|
+
logic: xstate96.PromiseActorLogic<void, {
|
|
155
155
|
languageConsentId: string;
|
|
156
156
|
checkboxes: ConsentCheckbox[];
|
|
157
|
-
},
|
|
157
|
+
}, xstate96.EventObject>;
|
|
158
158
|
id: string | undefined;
|
|
159
159
|
};
|
|
160
160
|
}>, "src", TSrc>["logic"]>;
|
|
161
|
-
<TLogic extends
|
|
161
|
+
<TLogic extends xstate96.AnyActorLogic>(src: TLogic, ...[options]: xstate96.ConditionalRequired<[options?: ({
|
|
162
162
|
id?: never;
|
|
163
163
|
systemId?: string;
|
|
164
|
-
input?:
|
|
164
|
+
input?: xstate96.InputFrom<TLogic> | undefined;
|
|
165
165
|
syncSnapshot?: boolean;
|
|
166
|
-
} & { [K in
|
|
166
|
+
} & { [K in xstate96.RequiredLogicInput<TLogic>]: unknown }) | undefined], xstate96.IsNotNever<xstate96.RequiredLogicInput<TLogic>>>): xstate96.ActorRefFromLogic<TLogic>;
|
|
167
167
|
};
|
|
168
168
|
input: ConsentInput;
|
|
169
|
-
self:
|
|
169
|
+
self: xstate96.ActorRef<xstate96.MachineSnapshot<ConsentContext, {
|
|
170
170
|
type: "LOAD";
|
|
171
171
|
} | {
|
|
172
172
|
type: "TOGGLE_CHECKBOX";
|
|
@@ -177,7 +177,7 @@ declare const consentMachine: xstate63.StateMachine<ConsentContext, {
|
|
|
177
177
|
type: "RETRY";
|
|
178
178
|
} | {
|
|
179
179
|
type: "RESET";
|
|
180
|
-
}, Record<string,
|
|
180
|
+
}, Record<string, xstate96.AnyActorRef | undefined>, xstate96.StateValue, string, unknown, any, any>, {
|
|
181
181
|
type: "LOAD";
|
|
182
182
|
} | {
|
|
183
183
|
type: "TOGGLE_CHECKBOX";
|
|
@@ -188,7 +188,7 @@ declare const consentMachine: xstate63.StateMachine<ConsentContext, {
|
|
|
188
188
|
type: "RETRY";
|
|
189
189
|
} | {
|
|
190
190
|
type: "RESET";
|
|
191
|
-
},
|
|
191
|
+
}, xstate96.AnyEventObject>;
|
|
192
192
|
}) => {
|
|
193
193
|
config: ConsentConfig;
|
|
194
194
|
title: string;
|
|
@@ -226,7 +226,7 @@ declare const consentMachine: xstate63.StateMachine<ConsentContext, {
|
|
|
226
226
|
} | {
|
|
227
227
|
type: "RESET";
|
|
228
228
|
};
|
|
229
|
-
self:
|
|
229
|
+
self: xstate96.ActorRef<xstate96.MachineSnapshot<ConsentContext, {
|
|
230
230
|
type: "LOAD";
|
|
231
231
|
} | {
|
|
232
232
|
type: "TOGGLE_CHECKBOX";
|
|
@@ -237,7 +237,7 @@ declare const consentMachine: xstate63.StateMachine<ConsentContext, {
|
|
|
237
237
|
type: "RETRY";
|
|
238
238
|
} | {
|
|
239
239
|
type: "RESET";
|
|
240
|
-
}, Record<string,
|
|
240
|
+
}, Record<string, xstate96.AnyActorRef>, xstate96.StateValue, string, unknown, any, any>, {
|
|
241
241
|
type: "LOAD";
|
|
242
242
|
} | {
|
|
243
243
|
type: "TOGGLE_CHECKBOX";
|
|
@@ -248,7 +248,7 @@ declare const consentMachine: xstate63.StateMachine<ConsentContext, {
|
|
|
248
248
|
type: "RETRY";
|
|
249
249
|
} | {
|
|
250
250
|
type: "RESET";
|
|
251
|
-
},
|
|
251
|
+
}, xstate96.AnyEventObject>;
|
|
252
252
|
}) => {
|
|
253
253
|
consentId: string;
|
|
254
254
|
};
|
|
@@ -297,7 +297,7 @@ declare const consentMachine: xstate63.StateMachine<ConsentContext, {
|
|
|
297
297
|
} | {
|
|
298
298
|
type: "RESET";
|
|
299
299
|
};
|
|
300
|
-
self:
|
|
300
|
+
self: xstate96.ActorRef<xstate96.MachineSnapshot<ConsentContext, {
|
|
301
301
|
type: "LOAD";
|
|
302
302
|
} | {
|
|
303
303
|
type: "TOGGLE_CHECKBOX";
|
|
@@ -308,7 +308,7 @@ declare const consentMachine: xstate63.StateMachine<ConsentContext, {
|
|
|
308
308
|
type: "RETRY";
|
|
309
309
|
} | {
|
|
310
310
|
type: "RESET";
|
|
311
|
-
}, Record<string,
|
|
311
|
+
}, Record<string, xstate96.AnyActorRef>, xstate96.StateValue, string, unknown, any, any>, {
|
|
312
312
|
type: "LOAD";
|
|
313
313
|
} | {
|
|
314
314
|
type: "TOGGLE_CHECKBOX";
|
|
@@ -319,7 +319,7 @@ declare const consentMachine: xstate63.StateMachine<ConsentContext, {
|
|
|
319
319
|
type: "RETRY";
|
|
320
320
|
} | {
|
|
321
321
|
type: "RESET";
|
|
322
|
-
},
|
|
322
|
+
}, xstate96.AnyEventObject>;
|
|
323
323
|
}) => {
|
|
324
324
|
languageConsentId: string;
|
|
325
325
|
checkboxes: ConsentCheckbox[];
|
package/dist/consent.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as api } from "./api-3fZO5bmj.esm.js";
|
|
2
|
-
import { C as fromPromise, b as
|
|
2
|
+
import { C as createActor, S as fromPromise, b as assign, r as eventModuleNames, s as createManagerInstrumentation, t as createManager, y as setup } from "./Manager-9L3Rmc6X.esm.js";
|
|
3
3
|
import { t as endpoints } from "./endpoints-DEXxYYFi.esm.js";
|
|
4
4
|
|
|
5
5
|
//#region src/modules/consent/consentServices.ts
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as api } from "./api-3fZO5bmj.esm.js";
|
|
2
|
-
import { C as fromPromise, b as
|
|
2
|
+
import { C as createActor, S as fromPromise, b as assign, r as eventModuleNames, s as createManagerInstrumentation, t as createManager, y as setup } from "./Manager-9L3Rmc6X.esm.js";
|
|
3
3
|
import { t as endpoints } from "./endpoints-DEXxYYFi.esm.js";
|
|
4
4
|
|
|
5
5
|
//#region src/modules/curp-validation/curpValidationUtils.ts
|