@zennify/sdk-js 1.0.0-beta.28 → 1.0.0-beta.29
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/package.json +1 -1
- package/src/errors.ts +1 -0
- package/translations/en_US.json +4 -0
- package/translations/pt_BR.json +4 -1
- package/types/errors.d.ts +1 -0
package/package.json
CHANGED
package/src/errors.ts
CHANGED
package/translations/en_US.json
CHANGED
|
@@ -295,6 +295,10 @@
|
|
|
295
295
|
"name": "Invalid item cost",
|
|
296
296
|
"message": "It must be between R$ 0.00 and R$ 999,999.00"
|
|
297
297
|
},
|
|
298
|
+
"UNKNOWN_COUPON": {
|
|
299
|
+
"name": "Unknown coupon",
|
|
300
|
+
"message": "Perhaps this coupon no longer exists."
|
|
301
|
+
},
|
|
298
302
|
"INVALID_COUPON_NAME": {
|
|
299
303
|
"name": "Invalid coupon name",
|
|
300
304
|
"message": "Must consist only of letters and numbers"
|
package/translations/pt_BR.json
CHANGED
|
@@ -295,7 +295,10 @@
|
|
|
295
295
|
"name": "O custo do item é inválido",
|
|
296
296
|
"message": "Deve ser entre R$ 0.00 e R$ 999.999,00"
|
|
297
297
|
},
|
|
298
|
-
|
|
298
|
+
"UNKNOWN_COUPON": {
|
|
299
|
+
"name": "Cupom desconhecido",
|
|
300
|
+
"message": "Talvez esse cupom não exista mais."
|
|
301
|
+
},
|
|
299
302
|
"INVALID_COUPON_NAME": {
|
|
300
303
|
"name": "Nome do cupom inválido",
|
|
301
304
|
"message": "Deve ser composto apenas de letras e números"
|
package/types/errors.d.ts
CHANGED