@fiado/type-kit 3.233.0 → 3.234.0
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.
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
* ACTIVE - Sesión en curso.
|
|
5
5
|
* PAUSED_EXTERNAL_REFERRAL - Pausada por derivación a proveedor externo.
|
|
6
6
|
* PAUSED_NO_TOPUP - El cliente salió sin recarga de bienvenida (M1 §1087).
|
|
7
|
+
* PAUSED_CURP_CONFLICT - El CURP verificado ya pertenece a otro cliente del silo. La identidad es
|
|
8
|
+
* única por CURP, así que la sesión no puede continuar hasta que alguien resuelva a quién
|
|
9
|
+
* corresponde. No es una cancelación (el cliente es válido) ni una falla del sistema.
|
|
7
10
|
* COMPLETED - Venta cerrada.
|
|
8
11
|
* EXPIRED - Expiró por inactividad (TTL DDB ~24h).
|
|
9
12
|
* CANCELLED - Cancelada (incluye KYC PLD).
|
|
@@ -12,6 +15,7 @@ export declare enum WizardStateEnum {
|
|
|
12
15
|
ACTIVE = "ACTIVE",
|
|
13
16
|
PAUSED_EXTERNAL_REFERRAL = "PAUSED_EXTERNAL_REFERRAL",
|
|
14
17
|
PAUSED_NO_TOPUP = "PAUSED_NO_TOPUP",
|
|
18
|
+
PAUSED_CURP_CONFLICT = "PAUSED_CURP_CONFLICT",
|
|
15
19
|
COMPLETED = "COMPLETED",
|
|
16
20
|
EXPIRED = "EXPIRED",
|
|
17
21
|
CANCELLED = "CANCELLED"
|
|
@@ -7,6 +7,9 @@ exports.WizardStateEnum = void 0;
|
|
|
7
7
|
* ACTIVE - Sesión en curso.
|
|
8
8
|
* PAUSED_EXTERNAL_REFERRAL - Pausada por derivación a proveedor externo.
|
|
9
9
|
* PAUSED_NO_TOPUP - El cliente salió sin recarga de bienvenida (M1 §1087).
|
|
10
|
+
* PAUSED_CURP_CONFLICT - El CURP verificado ya pertenece a otro cliente del silo. La identidad es
|
|
11
|
+
* única por CURP, así que la sesión no puede continuar hasta que alguien resuelva a quién
|
|
12
|
+
* corresponde. No es una cancelación (el cliente es válido) ni una falla del sistema.
|
|
10
13
|
* COMPLETED - Venta cerrada.
|
|
11
14
|
* EXPIRED - Expiró por inactividad (TTL DDB ~24h).
|
|
12
15
|
* CANCELLED - Cancelada (incluye KYC PLD).
|
|
@@ -16,6 +19,7 @@ var WizardStateEnum;
|
|
|
16
19
|
WizardStateEnum["ACTIVE"] = "ACTIVE";
|
|
17
20
|
WizardStateEnum["PAUSED_EXTERNAL_REFERRAL"] = "PAUSED_EXTERNAL_REFERRAL";
|
|
18
21
|
WizardStateEnum["PAUSED_NO_TOPUP"] = "PAUSED_NO_TOPUP";
|
|
22
|
+
WizardStateEnum["PAUSED_CURP_CONFLICT"] = "PAUSED_CURP_CONFLICT";
|
|
19
23
|
WizardStateEnum["COMPLETED"] = "COMPLETED";
|
|
20
24
|
WizardStateEnum["EXPIRED"] = "EXPIRED";
|
|
21
25
|
WizardStateEnum["CANCELLED"] = "CANCELLED";
|
package/package.json
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
* ACTIVE - Sesión en curso.
|
|
5
5
|
* PAUSED_EXTERNAL_REFERRAL - Pausada por derivación a proveedor externo.
|
|
6
6
|
* PAUSED_NO_TOPUP - El cliente salió sin recarga de bienvenida (M1 §1087).
|
|
7
|
+
* PAUSED_CURP_CONFLICT - El CURP verificado ya pertenece a otro cliente del silo. La identidad es
|
|
8
|
+
* única por CURP, así que la sesión no puede continuar hasta que alguien resuelva a quién
|
|
9
|
+
* corresponde. No es una cancelación (el cliente es válido) ni una falla del sistema.
|
|
7
10
|
* COMPLETED - Venta cerrada.
|
|
8
11
|
* EXPIRED - Expiró por inactividad (TTL DDB ~24h).
|
|
9
12
|
* CANCELLED - Cancelada (incluye KYC PLD).
|
|
@@ -12,6 +15,7 @@ export enum WizardStateEnum {
|
|
|
12
15
|
ACTIVE = 'ACTIVE',
|
|
13
16
|
PAUSED_EXTERNAL_REFERRAL = 'PAUSED_EXTERNAL_REFERRAL',
|
|
14
17
|
PAUSED_NO_TOPUP = 'PAUSED_NO_TOPUP',
|
|
18
|
+
PAUSED_CURP_CONFLICT = 'PAUSED_CURP_CONFLICT',
|
|
15
19
|
COMPLETED = 'COMPLETED',
|
|
16
20
|
EXPIRED = 'EXPIRED',
|
|
17
21
|
CANCELLED = 'CANCELLED',
|