zod 4.6.3 → 4.6.4

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.
Files changed (231) hide show
  1. package/package.json +1 -1
  2. package/src/v4/classic/schemas.ts +9 -4
  3. package/src/v4/classic/tests/assignability.test.ts +1 -0
  4. package/src/v4/classic/tests/instance-footprint.test.ts +22 -0
  5. package/src/v4/classic/tests/number.test.ts +39 -0
  6. package/src/v4/classic/tests/string.test.ts +70 -1
  7. package/src/v4/classic/tests/to-json-schema.test.ts +87 -35
  8. package/src/v4/core/api.ts +17 -22
  9. package/src/v4/core/compile.ts +27 -6
  10. package/src/v4/core/core.ts +1 -3
  11. package/src/v4/core/json-schema-processors.ts +9 -13
  12. package/src/v4/core/regexes.ts +4 -0
  13. package/src/v4/core/schemas.ts +35 -11
  14. package/src/v4/core/tests/compile-differential.test.ts +35 -0
  15. package/src/v4/core/tests/compile.test.ts +177 -0
  16. package/src/v4/core/tests/url-no-canparse.test.ts +118 -16
  17. package/src/v4/core/versions.ts +1 -1
  18. package/src/v4/locales/ar.ts +1 -0
  19. package/src/v4/locales/az.ts +1 -0
  20. package/src/v4/locales/be.ts +1 -0
  21. package/src/v4/locales/bg.ts +1 -0
  22. package/src/v4/locales/bn.ts +1 -0
  23. package/src/v4/locales/ca.ts +1 -0
  24. package/src/v4/locales/ckb.ts +1 -0
  25. package/src/v4/locales/cs.ts +1 -0
  26. package/src/v4/locales/da.ts +1 -0
  27. package/src/v4/locales/de.ts +1 -0
  28. package/src/v4/locales/el.ts +1 -0
  29. package/src/v4/locales/en.ts +1 -0
  30. package/src/v4/locales/eo.ts +1 -0
  31. package/src/v4/locales/es.ts +1 -0
  32. package/src/v4/locales/fa.ts +1 -0
  33. package/src/v4/locales/fi.ts +1 -0
  34. package/src/v4/locales/fr-CA.ts +1 -0
  35. package/src/v4/locales/fr.ts +1 -0
  36. package/src/v4/locales/gu.ts +1 -0
  37. package/src/v4/locales/he.ts +1 -0
  38. package/src/v4/locales/hi.ts +1 -0
  39. package/src/v4/locales/hr.ts +1 -0
  40. package/src/v4/locales/hu.ts +1 -0
  41. package/src/v4/locales/hy.ts +1 -0
  42. package/src/v4/locales/id.ts +1 -0
  43. package/src/v4/locales/is.ts +1 -0
  44. package/src/v4/locales/it.ts +1 -0
  45. package/src/v4/locales/ja.ts +1 -0
  46. package/src/v4/locales/ka.ts +1 -0
  47. package/src/v4/locales/km.ts +1 -0
  48. package/src/v4/locales/kn.ts +1 -0
  49. package/src/v4/locales/ko.ts +1 -0
  50. package/src/v4/locales/lt.ts +1 -0
  51. package/src/v4/locales/mk.ts +1 -0
  52. package/src/v4/locales/ms.ts +1 -0
  53. package/src/v4/locales/ne.ts +1 -0
  54. package/src/v4/locales/nl.ts +1 -0
  55. package/src/v4/locales/nn.ts +1 -0
  56. package/src/v4/locales/no.ts +1 -0
  57. package/src/v4/locales/ota.ts +1 -0
  58. package/src/v4/locales/pl.ts +1 -0
  59. package/src/v4/locales/ps.ts +1 -0
  60. package/src/v4/locales/pt-BR.ts +1 -0
  61. package/src/v4/locales/pt.ts +1 -0
  62. package/src/v4/locales/ro.ts +1 -0
  63. package/src/v4/locales/ru.ts +1 -0
  64. package/src/v4/locales/sk.ts +1 -0
  65. package/src/v4/locales/sl.ts +1 -0
  66. package/src/v4/locales/sv.ts +1 -0
  67. package/src/v4/locales/ta.ts +1 -0
  68. package/src/v4/locales/tg.ts +1 -0
  69. package/src/v4/locales/th.ts +1 -0
  70. package/src/v4/locales/tk.ts +1 -0
  71. package/src/v4/locales/tr.ts +1 -0
  72. package/src/v4/locales/uk.ts +1 -0
  73. package/src/v4/locales/ur.ts +1 -0
  74. package/src/v4/locales/uz.ts +1 -0
  75. package/src/v4/locales/vi.ts +1 -0
  76. package/src/v4/locales/yo.ts +1 -0
  77. package/src/v4/locales/zh-CN.ts +1 -0
  78. package/src/v4/locales/zh-TW.ts +1 -0
  79. package/src/v4/mini/schemas.ts +12 -4
  80. package/src/v4/mini/tests/index.test.ts +56 -0
  81. package/src/v4/mini/tests/string.test.ts +7 -0
  82. package/v4/classic/schemas.cjs +9 -4
  83. package/v4/classic/schemas.d.cts +1 -0
  84. package/v4/classic/schemas.d.ts +1 -0
  85. package/v4/classic/schemas.js +8 -4
  86. package/v4/core/api.cjs +9 -20
  87. package/v4/core/api.d.cts +6 -2
  88. package/v4/core/api.d.ts +6 -2
  89. package/v4/core/api.js +9 -20
  90. package/v4/core/compile.cjs +7 -6
  91. package/v4/core/compile.js +8 -7
  92. package/v4/core/core.cjs +1 -1
  93. package/v4/core/core.js +1 -1
  94. package/v4/core/json-schema-processors.cjs +7 -10
  95. package/v4/core/json-schema-processors.js +7 -10
  96. package/v4/core/regexes.cjs +4 -2
  97. package/v4/core/regexes.d.cts +1 -0
  98. package/v4/core/regexes.d.ts +1 -0
  99. package/v4/core/regexes.js +2 -0
  100. package/v4/core/schemas.cjs +32 -11
  101. package/v4/core/schemas.d.cts +5 -3
  102. package/v4/core/schemas.d.ts +5 -3
  103. package/v4/core/schemas.js +30 -11
  104. package/v4/core/versions.cjs +1 -1
  105. package/v4/core/versions.js +1 -1
  106. package/v4/locales/ar.cjs +1 -0
  107. package/v4/locales/ar.js +1 -0
  108. package/v4/locales/az.cjs +1 -0
  109. package/v4/locales/az.js +1 -0
  110. package/v4/locales/be.cjs +1 -0
  111. package/v4/locales/be.js +1 -0
  112. package/v4/locales/bg.cjs +1 -0
  113. package/v4/locales/bg.js +1 -0
  114. package/v4/locales/bn.cjs +1 -0
  115. package/v4/locales/bn.js +1 -0
  116. package/v4/locales/ca.cjs +1 -0
  117. package/v4/locales/ca.js +1 -0
  118. package/v4/locales/ckb.cjs +1 -0
  119. package/v4/locales/ckb.js +1 -0
  120. package/v4/locales/cs.cjs +1 -0
  121. package/v4/locales/cs.js +1 -0
  122. package/v4/locales/da.cjs +1 -0
  123. package/v4/locales/da.js +1 -0
  124. package/v4/locales/de.cjs +1 -0
  125. package/v4/locales/de.js +1 -0
  126. package/v4/locales/el.cjs +1 -0
  127. package/v4/locales/el.js +1 -0
  128. package/v4/locales/en.cjs +1 -0
  129. package/v4/locales/en.js +1 -0
  130. package/v4/locales/eo.cjs +1 -0
  131. package/v4/locales/eo.js +1 -0
  132. package/v4/locales/es.cjs +1 -0
  133. package/v4/locales/es.js +1 -0
  134. package/v4/locales/fa.cjs +1 -0
  135. package/v4/locales/fa.js +1 -0
  136. package/v4/locales/fi.cjs +1 -0
  137. package/v4/locales/fi.js +1 -0
  138. package/v4/locales/fr-CA.cjs +1 -0
  139. package/v4/locales/fr-CA.js +1 -0
  140. package/v4/locales/fr.cjs +1 -0
  141. package/v4/locales/fr.js +1 -0
  142. package/v4/locales/gu.cjs +1 -0
  143. package/v4/locales/gu.js +1 -0
  144. package/v4/locales/he.cjs +1 -0
  145. package/v4/locales/he.js +1 -0
  146. package/v4/locales/hi.cjs +1 -0
  147. package/v4/locales/hi.js +1 -0
  148. package/v4/locales/hr.cjs +1 -0
  149. package/v4/locales/hr.js +1 -0
  150. package/v4/locales/hu.cjs +1 -0
  151. package/v4/locales/hu.js +1 -0
  152. package/v4/locales/hy.cjs +1 -0
  153. package/v4/locales/hy.js +1 -0
  154. package/v4/locales/id.cjs +1 -0
  155. package/v4/locales/id.js +1 -0
  156. package/v4/locales/is.cjs +1 -0
  157. package/v4/locales/is.js +1 -0
  158. package/v4/locales/it.cjs +1 -0
  159. package/v4/locales/it.js +1 -0
  160. package/v4/locales/ja.cjs +1 -0
  161. package/v4/locales/ja.js +1 -0
  162. package/v4/locales/ka.cjs +1 -0
  163. package/v4/locales/ka.js +1 -0
  164. package/v4/locales/km.cjs +1 -0
  165. package/v4/locales/km.js +1 -0
  166. package/v4/locales/kn.cjs +1 -0
  167. package/v4/locales/kn.js +1 -0
  168. package/v4/locales/ko.cjs +1 -0
  169. package/v4/locales/ko.js +1 -0
  170. package/v4/locales/lt.cjs +1 -0
  171. package/v4/locales/lt.js +1 -0
  172. package/v4/locales/mk.cjs +1 -0
  173. package/v4/locales/mk.js +1 -0
  174. package/v4/locales/ms.cjs +1 -0
  175. package/v4/locales/ms.js +1 -0
  176. package/v4/locales/ne.cjs +1 -0
  177. package/v4/locales/ne.js +1 -0
  178. package/v4/locales/nl.cjs +1 -0
  179. package/v4/locales/nl.js +1 -0
  180. package/v4/locales/nn.cjs +1 -0
  181. package/v4/locales/nn.js +1 -0
  182. package/v4/locales/no.cjs +1 -0
  183. package/v4/locales/no.js +1 -0
  184. package/v4/locales/ota.cjs +1 -0
  185. package/v4/locales/ota.js +1 -0
  186. package/v4/locales/pl.cjs +1 -0
  187. package/v4/locales/pl.js +1 -0
  188. package/v4/locales/ps.cjs +1 -0
  189. package/v4/locales/ps.js +1 -0
  190. package/v4/locales/pt-BR.cjs +1 -0
  191. package/v4/locales/pt-BR.js +1 -0
  192. package/v4/locales/pt.cjs +1 -0
  193. package/v4/locales/pt.js +1 -0
  194. package/v4/locales/ro.cjs +1 -0
  195. package/v4/locales/ro.js +1 -0
  196. package/v4/locales/ru.cjs +1 -0
  197. package/v4/locales/ru.js +1 -0
  198. package/v4/locales/sk.cjs +1 -0
  199. package/v4/locales/sk.js +1 -0
  200. package/v4/locales/sl.cjs +1 -0
  201. package/v4/locales/sl.js +1 -0
  202. package/v4/locales/sv.cjs +1 -0
  203. package/v4/locales/sv.js +1 -0
  204. package/v4/locales/ta.cjs +1 -0
  205. package/v4/locales/ta.js +1 -0
  206. package/v4/locales/tg.cjs +1 -0
  207. package/v4/locales/tg.js +1 -0
  208. package/v4/locales/th.cjs +1 -0
  209. package/v4/locales/th.js +1 -0
  210. package/v4/locales/tk.cjs +1 -0
  211. package/v4/locales/tk.js +1 -0
  212. package/v4/locales/tr.cjs +1 -0
  213. package/v4/locales/tr.js +1 -0
  214. package/v4/locales/uk.cjs +1 -0
  215. package/v4/locales/uk.js +1 -0
  216. package/v4/locales/ur.cjs +1 -0
  217. package/v4/locales/ur.js +1 -0
  218. package/v4/locales/uz.cjs +1 -0
  219. package/v4/locales/uz.js +1 -0
  220. package/v4/locales/vi.cjs +1 -0
  221. package/v4/locales/vi.js +1 -0
  222. package/v4/locales/yo.cjs +1 -0
  223. package/v4/locales/yo.js +1 -0
  224. package/v4/locales/zh-CN.cjs +1 -0
  225. package/v4/locales/zh-CN.js +1 -0
  226. package/v4/locales/zh-TW.cjs +1 -0
  227. package/v4/locales/zh-TW.js +1 -0
  228. package/v4/mini/schemas.cjs +10 -4
  229. package/v4/mini/schemas.d.cts +1 -0
  230. package/v4/mini/schemas.d.ts +1 -0
  231. package/v4/mini/schemas.js +9 -4
package/v4/locales/bg.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON низ",
66
66
  e164: "E.164 номер",
67
67
  credit_card: "номер на кредитна карта",
68
+ currency_code: "код на валута",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "вход",
package/v4/locales/bg.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON низ",
40
40
  e164: "E.164 номер",
41
41
  credit_card: "номер на кредитна карта",
42
+ currency_code: "код на валута",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "вход",
package/v4/locales/bn.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON স্ট্রিং",
66
66
  e164: "E.164 নম্বর",
67
67
  credit_card: "ক্রেডিট কার্ড নম্বর",
68
+ currency_code: "মুদ্রা কোড",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "ইনপুট",
package/v4/locales/bn.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON স্ট্রিং",
40
40
  e164: "E.164 নম্বর",
41
41
  credit_card: "ক্রেডিট কার্ড নম্বর",
42
+ currency_code: "মুদ্রা কোড",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "ইনপুট",
package/v4/locales/ca.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "cadena JSON",
66
66
  e164: "número E.164",
67
67
  credit_card: "número de targeta de crèdit",
68
+ currency_code: "codi de moneda",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "entrada",
package/v4/locales/ca.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "cadena JSON",
40
40
  e164: "número E.164",
41
41
  credit_card: "número de targeta de crèdit",
42
+ currency_code: "codi de moneda",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "entrada",
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "دەقی JSON",
66
66
  e164: "ژمارەی E.164",
67
67
  credit_card: "ژمارەی کارتی کرێدیت",
68
+ currency_code: "کۆدی دراو",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "تێکردە",
package/v4/locales/ckb.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "دەقی JSON",
40
40
  e164: "ژمارەی E.164",
41
41
  credit_card: "ژمارەی کارتی کرێدیت",
42
+ currency_code: "کۆدی دراو",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "تێکردە",
package/v4/locales/cs.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "řetězec ve formátu JSON",
66
66
  e164: "číslo E.164",
67
67
  credit_card: "číslo kreditní karty",
68
+ currency_code: "kód měny",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "vstup",
package/v4/locales/cs.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "řetězec ve formátu JSON",
40
40
  e164: "číslo E.164",
41
41
  credit_card: "číslo kreditní karty",
42
+ currency_code: "kód měny",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "vstup",
package/v4/locales/da.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON-streng",
66
66
  e164: "E.164-nummer",
67
67
  credit_card: "kreditkortnummer",
68
+ currency_code: "valutakode",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "input",
package/v4/locales/da.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON-streng",
40
40
  e164: "E.164-nummer",
41
41
  credit_card: "kreditkortnummer",
42
+ currency_code: "valutakode",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "input",
package/v4/locales/de.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON-String",
66
66
  e164: "E.164-Nummer",
67
67
  credit_card: "Kreditkartennummer",
68
+ currency_code: "Währungscode",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "Eingabe",
package/v4/locales/de.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON-String",
40
40
  e164: "E.164-Nummer",
41
41
  credit_card: "Kreditkartennummer",
42
+ currency_code: "Währungscode",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "Eingabe",
package/v4/locales/el.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "συμβολοσειρά JSON",
66
66
  e164: "αριθμός E.164",
67
67
  credit_card: "αριθμός πιστωτικής κάρτας",
68
+ currency_code: "κωδικός νομίσματος",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "είσοδος",
package/v4/locales/el.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "συμβολοσειρά JSON",
40
40
  e164: "αριθμός E.164",
41
41
  credit_card: "αριθμός πιστωτικής κάρτας",
42
+ currency_code: "κωδικός νομίσματος",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "είσοδος",
package/v4/locales/en.cjs CHANGED
@@ -64,6 +64,7 @@ const error = () => {
64
64
  base64url: "base64url-encoded string",
65
65
  json_string: "JSON string",
66
66
  e164: "E.164 number",
67
+ currency_code: "currency code",
67
68
  credit_card: "credit card number",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
package/v4/locales/en.js CHANGED
@@ -38,6 +38,7 @@ const error = () => {
38
38
  base64url: "base64url-encoded string",
39
39
  json_string: "JSON string",
40
40
  e164: "E.164 number",
41
+ currency_code: "currency code",
41
42
  credit_card: "credit card number",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
package/v4/locales/eo.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON-karaktraro",
66
66
  e164: "E.164-nombro",
67
67
  credit_card: "kreditkarta numero",
68
+ currency_code: "valuta kodo",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "enigo",
package/v4/locales/eo.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON-karaktraro",
40
40
  e164: "E.164-nombro",
41
41
  credit_card: "kreditkarta numero",
42
+ currency_code: "valuta kodo",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "enigo",
package/v4/locales/es.cjs CHANGED
@@ -64,6 +64,7 @@ const error = () => {
64
64
  json_string: "cadena JSON",
65
65
  e164: "número E.164",
66
66
  credit_card: "número de tarjeta de crédito",
67
+ currency_code: "código de moneda",
67
68
  iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "entrada",
package/v4/locales/es.js CHANGED
@@ -38,6 +38,7 @@ const error = () => {
38
38
  json_string: "cadena JSON",
39
39
  e164: "número E.164",
40
40
  credit_card: "número de tarjeta de crédito",
41
+ currency_code: "código de moneda",
41
42
  iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "entrada",
package/v4/locales/fa.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON رشته",
66
66
  e164: "E.164 عدد",
67
67
  credit_card: "شماره کارت اعتباری",
68
+ currency_code: "کد ارز",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "ورودی",
package/v4/locales/fa.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON رشته",
40
40
  e164: "E.164 عدد",
41
41
  credit_card: "شماره کارت اعتباری",
42
+ currency_code: "کد ارز",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "ورودی",
package/v4/locales/fi.cjs CHANGED
@@ -69,6 +69,7 @@ const error = () => {
69
69
  json_string: "JSON-merkkijono",
70
70
  e164: "E.164-luku",
71
71
  credit_card: "luottokortin numero",
72
+ currency_code: "valuuttakoodi",
72
73
  iban: "IBAN",
73
74
  jwt: "JWT",
74
75
  template_literal: "templaattimerkkijono",
package/v4/locales/fi.js CHANGED
@@ -43,6 +43,7 @@ const error = () => {
43
43
  json_string: "JSON-merkkijono",
44
44
  e164: "E.164-luku",
45
45
  credit_card: "luottokortin numero",
46
+ currency_code: "valuuttakoodi",
46
47
  iban: "IBAN",
47
48
  jwt: "JWT",
48
49
  template_literal: "templaattimerkkijono",
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "chaîne JSON",
66
66
  e164: "numéro E.164",
67
67
  credit_card: "numéro de carte de crédit",
68
+ currency_code: "code de devise",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "entrée",
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "chaîne JSON",
40
40
  e164: "numéro E.164",
41
41
  credit_card: "numéro de carte de crédit",
42
+ currency_code: "code de devise",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "entrée",
package/v4/locales/fr.cjs CHANGED
@@ -64,6 +64,7 @@ const error = () => {
64
64
  json_string: "chaîne de caractères JSON",
65
65
  e164: "numéro au format E.164",
66
66
  credit_card: "numéro de carte de crédit",
67
+ currency_code: "code de devise",
67
68
  iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "entrée",
package/v4/locales/fr.js CHANGED
@@ -38,6 +38,7 @@ const error = () => {
38
38
  json_string: "chaîne de caractères JSON",
39
39
  e164: "numéro au format E.164",
40
40
  credit_card: "numéro de carte de crédit",
41
+ currency_code: "code de devise",
41
42
  iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "entrée",
package/v4/locales/gu.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON સ્ટ્રિંગ",
66
66
  e164: "E.164 નંબર",
67
67
  credit_card: "ક્રેડિટ કાર્ડ નંબર",
68
+ currency_code: "ચલણ કોડ",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "ઇનપુટ",
package/v4/locales/gu.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON સ્ટ્રિંગ",
40
40
  e164: "E.164 નંબર",
41
41
  credit_card: "ક્રેડિટ કાર્ડ નંબર",
42
+ currency_code: "ચલણ કોડ",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "ઇનપુટ",
package/v4/locales/he.cjs CHANGED
@@ -104,6 +104,7 @@ const error = () => {
104
104
  json_string: { label: "מחרוזת JSON", gender: "f" },
105
105
  e164: { label: "מספר E.164", gender: "m" },
106
106
  credit_card: { label: "מספר כרטיס אשראי", gender: "m" },
107
+ currency_code: { label: "קוד מטבע", gender: "m" },
107
108
  iban: { label: "IBAN", gender: "m" },
108
109
  jwt: { label: "JWT", gender: "m" },
109
110
  template_literal: { label: "קלט", gender: "m" },
package/v4/locales/he.js CHANGED
@@ -78,6 +78,7 @@ const error = () => {
78
78
  json_string: { label: "מחרוזת JSON", gender: "f" },
79
79
  e164: { label: "מספר E.164", gender: "m" },
80
80
  credit_card: { label: "מספר כרטיס אשראי", gender: "m" },
81
+ currency_code: { label: "קוד מטבע", gender: "m" },
81
82
  iban: { label: "IBAN", gender: "m" },
82
83
  jwt: { label: "JWT", gender: "m" },
83
84
  template_literal: { label: "קלט", gender: "m" },
package/v4/locales/hi.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON स्ट्रिंग",
66
66
  e164: "E.164 संख्या",
67
67
  credit_card: "क्रेडिट कार्ड संख्या",
68
+ currency_code: "मुद्रा कोड",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "इनपुट",
package/v4/locales/hi.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON स्ट्रिंग",
40
40
  e164: "E.164 संख्या",
41
41
  credit_card: "क्रेडिट कार्ड संख्या",
42
+ currency_code: "मुद्रा कोड",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "इनपुट",
package/v4/locales/hr.cjs CHANGED
@@ -64,6 +64,7 @@ const error = () => {
64
64
  json_string: "JSON tekst",
65
65
  e164: "E.164 broj",
66
66
  credit_card: "broj kreditne kartice",
67
+ currency_code: "kod valute",
67
68
  iban: "IBAN",
68
69
  jwt: "JWT",
69
70
  template_literal: "unos",
package/v4/locales/hr.js CHANGED
@@ -38,6 +38,7 @@ const error = () => {
38
38
  json_string: "JSON tekst",
39
39
  e164: "E.164 broj",
40
40
  credit_card: "broj kreditne kartice",
41
+ currency_code: "kod valute",
41
42
  iban: "IBAN",
42
43
  jwt: "JWT",
43
44
  template_literal: "unos",
package/v4/locales/hu.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON string",
66
66
  e164: "E.164 szám",
67
67
  credit_card: "hitelkártyaszám",
68
+ currency_code: "pénznemkód",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "bemenet",
package/v4/locales/hu.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON string",
40
40
  e164: "E.164 szám",
41
41
  credit_card: "hitelkártyaszám",
42
+ currency_code: "pénznemkód",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "bemenet",
package/v4/locales/hy.cjs CHANGED
@@ -105,6 +105,7 @@ const error = () => {
105
105
  json_string: "JSON տող",
106
106
  e164: "E.164 համար",
107
107
  credit_card: "կրեդիտ քարտի համար",
108
+ currency_code: "արժույթի կոդ",
108
109
  iban: "IBAN",
109
110
  jwt: "JWT",
110
111
  template_literal: "մուտք",
package/v4/locales/hy.js CHANGED
@@ -79,6 +79,7 @@ const error = () => {
79
79
  json_string: "JSON տող",
80
80
  e164: "E.164 համար",
81
81
  credit_card: "կրեդիտ քարտի համար",
82
+ currency_code: "արժույթի կոդ",
82
83
  iban: "IBAN",
83
84
  jwt: "JWT",
84
85
  template_literal: "մուտք",
package/v4/locales/id.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "string JSON",
66
66
  e164: "angka E.164",
67
67
  credit_card: "nomor kartu kredit",
68
+ currency_code: "kode mata uang",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "input",
package/v4/locales/id.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "string JSON",
40
40
  e164: "angka E.164",
41
41
  credit_card: "nomor kartu kredit",
42
+ currency_code: "kode mata uang",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "input",
package/v4/locales/is.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON strengur",
66
66
  e164: "E.164 tölugildi",
67
67
  credit_card: "kreditkortanúmer",
68
+ currency_code: "gjaldmiðilskóði",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "gildi",
package/v4/locales/is.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON strengur",
40
40
  e164: "E.164 tölugildi",
41
41
  credit_card: "kreditkortanúmer",
42
+ currency_code: "gjaldmiðilskóði",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "gildi",
package/v4/locales/it.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "stringa JSON",
66
66
  e164: "numero E.164",
67
67
  credit_card: "numero di carta di credito",
68
+ currency_code: "codice valuta",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "input",
package/v4/locales/it.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "stringa JSON",
40
40
  e164: "numero E.164",
41
41
  credit_card: "numero di carta di credito",
42
+ currency_code: "codice valuta",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "input",
package/v4/locales/ja.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON文字列",
66
66
  e164: "E.164番号",
67
67
  credit_card: "クレジットカード番号",
68
+ currency_code: "通貨コード",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "入力値",
package/v4/locales/ja.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON文字列",
40
40
  e164: "E.164番号",
41
41
  credit_card: "クレジットカード番号",
42
+ currency_code: "通貨コード",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "入力値",
package/v4/locales/ka.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON ველი",
66
66
  e164: "E.164 ნომერი",
67
67
  credit_card: "საკრედიტო ბარათის ნომერი",
68
+ currency_code: "ვალუტის კოდი",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "შეყვანა",
package/v4/locales/ka.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON ველი",
40
40
  e164: "E.164 ნომერი",
41
41
  credit_card: "საკრედიტო ბარათის ნომერი",
42
+ currency_code: "ვალუტის კოდი",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "შეყვანა",
package/v4/locales/km.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "ខ្សែអក្សរ JSON",
66
66
  e164: "លេខ E.164",
67
67
  credit_card: "លេខប័ណ្ណឥណទាន",
68
+ currency_code: "កូដរូបិយប័ណ្ណ",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "ទិន្នន័យបញ្ចូល",
package/v4/locales/km.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "ខ្សែអក្សរ JSON",
40
40
  e164: "លេខ E.164",
41
41
  credit_card: "លេខប័ណ្ណឥណទាន",
42
+ currency_code: "កូដរូបិយប័ណ្ណ",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "ទិន្នន័យបញ្ចូល",
package/v4/locales/kn.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSONಸ್ಟ್ರಿಂಗ್",
66
66
  e164: "E.164 ಸಂಖ್ಯೆ",
67
67
  credit_card: "ಕ್ರೆಡಿಟ್ ಕಾರ್ಡ್ ಸಂಖ್ಯೆ",
68
+ currency_code: "ಕರೆನ್ಸಿ ಕೋಡ್",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "ಇನ್ಪುಟ್",
package/v4/locales/kn.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSONಸ್ಟ್ರಿಂಗ್",
40
40
  e164: "E.164 ಸಂಖ್ಯೆ",
41
41
  credit_card: "ಕ್ರೆಡಿಟ್ ಕಾರ್ಡ್ ಸಂಖ್ಯೆ",
42
+ currency_code: "ಕರೆನ್ಸಿ ಕೋಡ್",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "ಇನ್ಪುಟ್",
package/v4/locales/ko.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON 문자열",
66
66
  e164: "E.164 번호",
67
67
  credit_card: "신용카드 번호",
68
+ currency_code: "통화 코드",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "입력",
package/v4/locales/ko.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON 문자열",
40
40
  e164: "E.164 번호",
41
41
  credit_card: "신용카드 번호",
42
+ currency_code: "통화 코드",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "입력",
package/v4/locales/lt.cjs CHANGED
@@ -147,6 +147,7 @@ const error = () => {
147
147
  json_string: "JSON eilutė",
148
148
  e164: "E.164 numeris",
149
149
  credit_card: "kredito kortelės numeris",
150
+ currency_code: "valiutos kodas",
150
151
  iban: "IBAN",
151
152
  jwt: "JWT",
152
153
  template_literal: "įvestis",
package/v4/locales/lt.js CHANGED
@@ -121,6 +121,7 @@ const error = () => {
121
121
  json_string: "JSON eilutė",
122
122
  e164: "E.164 numeris",
123
123
  credit_card: "kredito kortelės numeris",
124
+ currency_code: "valiutos kodas",
124
125
  iban: "IBAN",
125
126
  jwt: "JWT",
126
127
  template_literal: "įvestis",
package/v4/locales/mk.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON низа",
66
66
  e164: "E.164 број",
67
67
  credit_card: "број на кредитна картичка",
68
+ currency_code: "код на валута",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "внес",
package/v4/locales/mk.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON низа",
40
40
  e164: "E.164 број",
41
41
  credit_card: "број на кредитна картичка",
42
+ currency_code: "код на валута",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "внес",
package/v4/locales/ms.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "string JSON",
66
66
  e164: "nombor E.164",
67
67
  credit_card: "nombor kad kredit",
68
+ currency_code: "kod mata wang",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "input",
package/v4/locales/ms.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "string JSON",
40
40
  e164: "nombor E.164",
41
41
  credit_card: "nombor kad kredit",
42
+ currency_code: "kod mata wang",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "input",
package/v4/locales/ne.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON स्ट्रिङ",
66
66
  e164: "E.164 नम्बर",
67
67
  credit_card: "क्रेडिट कार्ड नम्बर",
68
+ currency_code: "मुद्रा कोड",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "इनपुट",
package/v4/locales/ne.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON स्ट्रिङ",
40
40
  e164: "E.164 नम्बर",
41
41
  credit_card: "क्रेडिट कार्ड नम्बर",
42
+ currency_code: "मुद्रा कोड",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "इनपुट",
package/v4/locales/nl.cjs CHANGED
@@ -65,6 +65,7 @@ const error = () => {
65
65
  json_string: "JSON string",
66
66
  e164: "E.164-nummer",
67
67
  credit_card: "creditcardnummer",
68
+ currency_code: "valutacode",
68
69
  iban: "IBAN",
69
70
  jwt: "JWT",
70
71
  template_literal: "invoer",
package/v4/locales/nl.js CHANGED
@@ -39,6 +39,7 @@ const error = () => {
39
39
  json_string: "JSON string",
40
40
  e164: "E.164-nummer",
41
41
  credit_card: "creditcardnummer",
42
+ currency_code: "valutacode",
42
43
  iban: "IBAN",
43
44
  jwt: "JWT",
44
45
  template_literal: "invoer",