@verma-consulting/common-library 0.1.32 → 0.1.34
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 +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -272,7 +272,7 @@ interface PriceInterface {
|
|
|
272
272
|
stripeId?: string;
|
|
273
273
|
active?: boolean;
|
|
274
274
|
lookupKey?: string;
|
|
275
|
-
|
|
275
|
+
priceType?: string;
|
|
276
276
|
taxBehavior?: string;
|
|
277
277
|
product?: string;
|
|
278
278
|
currency?: string;
|
|
@@ -2796,8 +2796,9 @@ declare const defaults: {
|
|
|
2796
2796
|
active: boolean;
|
|
2797
2797
|
unitAmount: number;
|
|
2798
2798
|
unitAmountDecimal: null;
|
|
2799
|
+
nickname: string;
|
|
2799
2800
|
lookupKey: string;
|
|
2800
|
-
|
|
2801
|
+
priceType: string;
|
|
2801
2802
|
taxBehavior: string;
|
|
2802
2803
|
currency: string;
|
|
2803
2804
|
billingScheme: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -272,7 +272,7 @@ interface PriceInterface {
|
|
|
272
272
|
stripeId?: string;
|
|
273
273
|
active?: boolean;
|
|
274
274
|
lookupKey?: string;
|
|
275
|
-
|
|
275
|
+
priceType?: string;
|
|
276
276
|
taxBehavior?: string;
|
|
277
277
|
product?: string;
|
|
278
278
|
currency?: string;
|
|
@@ -2796,8 +2796,9 @@ declare const defaults: {
|
|
|
2796
2796
|
active: boolean;
|
|
2797
2797
|
unitAmount: number;
|
|
2798
2798
|
unitAmountDecimal: null;
|
|
2799
|
+
nickname: string;
|
|
2799
2800
|
lookupKey: string;
|
|
2800
|
-
|
|
2801
|
+
priceType: string;
|
|
2801
2802
|
taxBehavior: string;
|
|
2802
2803
|
currency: string;
|
|
2803
2804
|
billingScheme: string;
|
package/dist/index.js
CHANGED
|
@@ -987,6 +987,7 @@ var constants = {
|
|
|
987
987
|
"annualRevenue",
|
|
988
988
|
"balance",
|
|
989
989
|
"amount",
|
|
990
|
+
"unitAmount",
|
|
990
991
|
"expectedRevenue",
|
|
991
992
|
"actualCost",
|
|
992
993
|
"amountDue",
|
|
@@ -2208,11 +2209,12 @@ var defaults = {
|
|
|
2208
2209
|
active: true,
|
|
2209
2210
|
unitAmount: 0,
|
|
2210
2211
|
unitAmountDecimal: null,
|
|
2212
|
+
nickname: "",
|
|
2211
2213
|
lookupKey: "",
|
|
2212
|
-
|
|
2214
|
+
priceType: "one_time",
|
|
2213
2215
|
taxBehavior: "unspecified",
|
|
2214
2216
|
currency: "usd",
|
|
2215
|
-
billingScheme: "",
|
|
2217
|
+
billingScheme: "per_unit",
|
|
2216
2218
|
recurring: {
|
|
2217
2219
|
intervalCount: 0,
|
|
2218
2220
|
interval: "",
|