@fiado/type-kit 3.342.0 → 3.343.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.
@@ -17,6 +17,16 @@
17
17
  export declare enum OnboardingAccountStatusEnum {
18
18
  IN_PROGRESS = "IN_PROGRESS",
19
19
  UNDER_REVIEW = "UNDER_REVIEW",
20
+ /**
21
+ * El proveedor espera que el usuario conteste las preguntas de validación (OOW, Out of Wallet).
22
+ *
23
+ * Es un caso particular de "en revisión" con estado propio, a pedido de la app: la pantalla
24
+ * rutea a las preguntas por `status` y no por `reason`. Cuando llega este valor, `reason` va en
25
+ * `null` — el estado ya dice todo.
26
+ *
27
+ * Se deriva de `CP_Status === PENDING_OOW_QUESTIONS`.
28
+ */
29
+ PENDING_OOW_QUESTIONS = "PENDING_OOW_QUESTIONS",
20
30
  REJECTED = "REJECTED",
21
31
  OPEN = "OPEN"
22
32
  }
@@ -21,6 +21,16 @@ var OnboardingAccountStatusEnum;
21
21
  (function (OnboardingAccountStatusEnum) {
22
22
  OnboardingAccountStatusEnum["IN_PROGRESS"] = "IN_PROGRESS";
23
23
  OnboardingAccountStatusEnum["UNDER_REVIEW"] = "UNDER_REVIEW";
24
+ /**
25
+ * El proveedor espera que el usuario conteste las preguntas de validación (OOW, Out of Wallet).
26
+ *
27
+ * Es un caso particular de "en revisión" con estado propio, a pedido de la app: la pantalla
28
+ * rutea a las preguntas por `status` y no por `reason`. Cuando llega este valor, `reason` va en
29
+ * `null` — el estado ya dice todo.
30
+ *
31
+ * Se deriva de `CP_Status === PENDING_OOW_QUESTIONS`.
32
+ */
33
+ OnboardingAccountStatusEnum["PENDING_OOW_QUESTIONS"] = "PENDING_OOW_QUESTIONS";
24
34
  OnboardingAccountStatusEnum["REJECTED"] = "REJECTED";
25
35
  OnboardingAccountStatusEnum["OPEN"] = "OPEN";
26
36
  })(OnboardingAccountStatusEnum || (exports.OnboardingAccountStatusEnum = OnboardingAccountStatusEnum = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "3.342.0",
3
+ "version": "3.343.0",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -17,6 +17,16 @@
17
17
  export enum OnboardingAccountStatusEnum {
18
18
  IN_PROGRESS = 'IN_PROGRESS',
19
19
  UNDER_REVIEW = 'UNDER_REVIEW',
20
+ /**
21
+ * El proveedor espera que el usuario conteste las preguntas de validación (OOW, Out of Wallet).
22
+ *
23
+ * Es un caso particular de "en revisión" con estado propio, a pedido de la app: la pantalla
24
+ * rutea a las preguntas por `status` y no por `reason`. Cuando llega este valor, `reason` va en
25
+ * `null` — el estado ya dice todo.
26
+ *
27
+ * Se deriva de `CP_Status === PENDING_OOW_QUESTIONS`.
28
+ */
29
+ PENDING_OOW_QUESTIONS = 'PENDING_OOW_QUESTIONS',
20
30
  REJECTED = 'REJECTED',
21
31
  OPEN = 'OPEN',
22
32
  }