@verma-consulting/common-library 0.1.20 → 0.1.21
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 +13 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2691,14 +2691,26 @@ declare const defaults: {
|
|
|
2691
2691
|
status: string;
|
|
2692
2692
|
paymentStatus: string;
|
|
2693
2693
|
currency: string;
|
|
2694
|
+
receiptEmail: string;
|
|
2695
|
+
receiptNumber: string;
|
|
2696
|
+
receiptUrl: string;
|
|
2697
|
+
setupFutureUsage: string;
|
|
2694
2698
|
amount: number;
|
|
2695
2699
|
amountCapturable: number;
|
|
2696
2700
|
amountReceived: number;
|
|
2697
2701
|
applicationFeeAmount: number;
|
|
2702
|
+
cancellationReason: string;
|
|
2703
|
+
captureMethod: string;
|
|
2704
|
+
confirmationMethod: string;
|
|
2698
2705
|
statementDescriptor: string;
|
|
2699
2706
|
statementDescriptorSuffix: string;
|
|
2707
|
+
calculatedStatementDescriptor: string;
|
|
2708
|
+
confirm: boolean;
|
|
2709
|
+
paid: boolean;
|
|
2710
|
+
captured: boolean;
|
|
2711
|
+
disputed: boolean;
|
|
2712
|
+
refunded: boolean;
|
|
2700
2713
|
livemode: boolean;
|
|
2701
|
-
receiptEmail: string;
|
|
2702
2714
|
client: string;
|
|
2703
2715
|
subscription: string;
|
|
2704
2716
|
invoice: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2691,14 +2691,26 @@ declare const defaults: {
|
|
|
2691
2691
|
status: string;
|
|
2692
2692
|
paymentStatus: string;
|
|
2693
2693
|
currency: string;
|
|
2694
|
+
receiptEmail: string;
|
|
2695
|
+
receiptNumber: string;
|
|
2696
|
+
receiptUrl: string;
|
|
2697
|
+
setupFutureUsage: string;
|
|
2694
2698
|
amount: number;
|
|
2695
2699
|
amountCapturable: number;
|
|
2696
2700
|
amountReceived: number;
|
|
2697
2701
|
applicationFeeAmount: number;
|
|
2702
|
+
cancellationReason: string;
|
|
2703
|
+
captureMethod: string;
|
|
2704
|
+
confirmationMethod: string;
|
|
2698
2705
|
statementDescriptor: string;
|
|
2699
2706
|
statementDescriptorSuffix: string;
|
|
2707
|
+
calculatedStatementDescriptor: string;
|
|
2708
|
+
confirm: boolean;
|
|
2709
|
+
paid: boolean;
|
|
2710
|
+
captured: boolean;
|
|
2711
|
+
disputed: boolean;
|
|
2712
|
+
refunded: boolean;
|
|
2700
2713
|
livemode: boolean;
|
|
2701
|
-
receiptEmail: string;
|
|
2702
2714
|
client: string;
|
|
2703
2715
|
subscription: string;
|
|
2704
2716
|
invoice: string;
|
package/dist/index.js
CHANGED
|
@@ -1864,14 +1864,26 @@ var defaults = {
|
|
|
1864
1864
|
status: "Ready",
|
|
1865
1865
|
paymentStatus: "requires_payment_method",
|
|
1866
1866
|
currency: "usd",
|
|
1867
|
+
receiptEmail: "",
|
|
1868
|
+
receiptNumber: "",
|
|
1869
|
+
receiptUrl: "",
|
|
1870
|
+
setupFutureUsage: "",
|
|
1867
1871
|
amount: 0,
|
|
1868
1872
|
amountCapturable: 0,
|
|
1869
1873
|
amountReceived: 0,
|
|
1870
1874
|
applicationFeeAmount: 0,
|
|
1875
|
+
cancellationReason: "",
|
|
1876
|
+
captureMethod: "",
|
|
1877
|
+
confirmationMethod: "",
|
|
1871
1878
|
statementDescriptor: "",
|
|
1872
1879
|
statementDescriptorSuffix: "",
|
|
1880
|
+
calculatedStatementDescriptor: "",
|
|
1881
|
+
confirm: false,
|
|
1882
|
+
paid: false,
|
|
1883
|
+
captured: false,
|
|
1884
|
+
disputed: false,
|
|
1885
|
+
refunded: false,
|
|
1873
1886
|
livemode: false,
|
|
1874
|
-
receiptEmail: "",
|
|
1875
1887
|
client: "",
|
|
1876
1888
|
subscription: "",
|
|
1877
1889
|
invoice: "",
|