@fiado/type-kit 3.380.0 → 3.381.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.
@@ -49,8 +49,12 @@ export interface StorePolicyResponse {
49
49
  targetLevels: CreditPlanLevelEnum[] | null;
50
50
  /** ALCANCE. `null` = todos los SKUs. */
51
51
  targetSkus: string[] | null;
52
- /** ALCANCE. `null` = todos los segmentos. Un cliente puede estar en varios a la vez. */
53
- segmentIds: string[] | null;
52
+ /**
53
+ * ALCANCE. `null` = todos los segmentos. Un cliente puede estar en varios a la vez.
54
+ * Opcional hasta que todos los productores lo emitan: obligatorio rompe a quien construya la
55
+ * respuesta y todavía no lo llene.
56
+ */
57
+ segmentIds?: string[] | null;
54
58
  validFrom: string | null;
55
59
  validUntil: string | null;
56
60
  reason: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fiado/type-kit",
3
- "version": "3.380.0",
3
+ "version": "3.381.0",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",
@@ -54,8 +54,12 @@ export interface StorePolicyResponse {
54
54
  targetLevels: CreditPlanLevelEnum[] | null;
55
55
  /** ALCANCE. `null` = todos los SKUs. */
56
56
  targetSkus: string[] | null;
57
- /** ALCANCE. `null` = todos los segmentos. Un cliente puede estar en varios a la vez. */
58
- segmentIds: string[] | null;
57
+ /**
58
+ * ALCANCE. `null` = todos los segmentos. Un cliente puede estar en varios a la vez.
59
+ * Opcional hasta que todos los productores lo emitan: obligatorio rompe a quien construya la
60
+ * respuesta y todavía no lo llene.
61
+ */
62
+ segmentIds?: string[] | null;
59
63
  validFrom: string | null;
60
64
  validUntil: string | null;
61
65
  reason: string | null;