@rebilly/instruments 9.75.1 → 9.75.3

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/CHANGELOG.md CHANGED
@@ -1 +1,6 @@
1
- ## [9.75.1](https://github.com/Rebilly/rebilly/compare/instruments/core-v9.75.0...instruments/core-v9.75.1) (2024-08-27)
1
+ ## [9.75.3](https://github.com/Rebilly/rebilly/compare/instruments/core-v9.75.2...instruments/core-v9.75.3) (2024-08-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **instruments:** Modify subtotal label ([#7311](https://github.com/Rebilly/rebilly/issues/7311)) ([6e1c53a](https://github.com/Rebilly/rebilly/commit/6e1c53a0ee19ea5ed07803aab8ff4673c4ba0431))
package/dist/index.js CHANGED
@@ -1681,7 +1681,7 @@ var merge_1 = merge$1;
1681
1681
  const merge$2 = /* @__PURE__ */ getDefaultExportFromCjs(merge_1);
1682
1682
  const en$2 = {
1683
1683
  summary: {
1684
- subTotal: "Sub Total",
1684
+ subTotal: "Subtotal",
1685
1685
  discounts: "Discounts",
1686
1686
  taxes: "Taxes",
1687
1687
  shipping: "Shipping",
@@ -1722,7 +1722,7 @@ const en$3 = {
1722
1722
  };
1723
1723
  const es$1 = {
1724
1724
  summary: {
1725
- subTotal: "Sub Total",
1725
+ subTotal: "Subtotal",
1726
1726
  discounts: "Descuentos",
1727
1727
  taxes: "Impuestos",
1728
1728
  shipping: "Envío",
@@ -16475,7 +16475,6 @@ class AddressModel {
16475
16475
  emails = [],
16476
16476
  phoneNumbers = []
16477
16477
  } = {}) {
16478
- var _a, _b;
16479
16478
  this.firstName = firstName;
16480
16479
  this.lastName = lastName;
16481
16480
  this.organization = organization;
@@ -16485,8 +16484,8 @@ class AddressModel {
16485
16484
  this.region = region;
16486
16485
  this.country = country;
16487
16486
  this.postalCode = postalCode;
16488
- this.email = ((_a = emails.find((v2) => v2.primary)) == null ? void 0 : _a.value) || null;
16489
- this.phoneNumber = ((_b = phoneNumbers.find((v2) => v2.primary)) == null ? void 0 : _b.value) || null;
16487
+ this.emails = emails;
16488
+ this.phoneNumbers = phoneNumbers;
16490
16489
  }
16491
16490
  }
16492
16491
  class AccountModel extends BaseModel {