@infrab4a/connect 5.2.0-beta.0 → 5.2.0-beta.1

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/index.cjs.js CHANGED
@@ -9249,7 +9249,7 @@ class PagarmeV5CardAxiosAdapter {
9249
9249
  state: customer.billingAddress.state,
9250
9250
  country: 'BR',
9251
9251
  },
9252
- birthdate: dateFns.format(customer.birthday, 'MM/dd/yyyy'),
9252
+ birthdate: dateFns.format(new Date(customer.birthday), 'MM/dd/yyyy'),
9253
9253
  phones: {
9254
9254
  home_phone: {
9255
9255
  country_code: '55',
package/index.esm.js CHANGED
@@ -9224,7 +9224,7 @@ class PagarmeV5CardAxiosAdapter {
9224
9224
  state: customer.billingAddress.state,
9225
9225
  country: 'BR',
9226
9226
  },
9227
- birthdate: format(customer.birthday, 'MM/dd/yyyy'),
9227
+ birthdate: format(new Date(customer.birthday), 'MM/dd/yyyy'),
9228
9228
  phones: {
9229
9229
  home_phone: {
9230
9230
  country_code: '55',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infrab4a/connect",
3
- "version": "5.2.0-beta.0",
3
+ "version": "5.2.0-beta.1",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org"
6
6
  },