@connectedxm/admin 1.2.1 → 1.2.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/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -661,6 +661,10 @@ interface Coupon extends BaseCoupon {
|
|
|
661
661
|
payment: BasePayment;
|
|
662
662
|
createdAt: string;
|
|
663
663
|
updatedAt: string;
|
|
664
|
+
_count: {
|
|
665
|
+
purchases: number;
|
|
666
|
+
uses: number;
|
|
667
|
+
};
|
|
664
668
|
}
|
|
665
669
|
declare enum EmailReceiptStatus {
|
|
666
670
|
pending = "pending",
|
|
@@ -2568,7 +2572,7 @@ interface AccountAddressCreateInputs {
|
|
|
2568
2572
|
zip: string;
|
|
2569
2573
|
}
|
|
2570
2574
|
interface AccountAddressUpdateInputs {
|
|
2571
|
-
primary?:
|
|
2575
|
+
primary?: boolean;
|
|
2572
2576
|
name?: string;
|
|
2573
2577
|
address1?: string;
|
|
2574
2578
|
address2?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -661,6 +661,10 @@ interface Coupon extends BaseCoupon {
|
|
|
661
661
|
payment: BasePayment;
|
|
662
662
|
createdAt: string;
|
|
663
663
|
updatedAt: string;
|
|
664
|
+
_count: {
|
|
665
|
+
purchases: number;
|
|
666
|
+
uses: number;
|
|
667
|
+
};
|
|
664
668
|
}
|
|
665
669
|
declare enum EmailReceiptStatus {
|
|
666
670
|
pending = "pending",
|
|
@@ -2568,7 +2572,7 @@ interface AccountAddressCreateInputs {
|
|
|
2568
2572
|
zip: string;
|
|
2569
2573
|
}
|
|
2570
2574
|
interface AccountAddressUpdateInputs {
|
|
2571
|
-
primary?:
|
|
2575
|
+
primary?: boolean;
|
|
2572
2576
|
name?: string;
|
|
2573
2577
|
address1?: string;
|
|
2574
2578
|
address2?: string;
|