@verma-consulting/common-library 0.1.33 → 0.1.35
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 +7 -2
- package/dist/index.d.ts +7 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -274,12 +274,17 @@ interface PriceInterface {
|
|
|
274
274
|
lookupKey?: string;
|
|
275
275
|
priceType?: string;
|
|
276
276
|
taxBehavior?: string;
|
|
277
|
-
product?: string;
|
|
278
277
|
currency?: string;
|
|
279
278
|
billingScheme?: string;
|
|
280
279
|
unitAmount?: number;
|
|
281
280
|
unitAmountDecimal?: string;
|
|
282
281
|
recurring?: PriceRecurringInterface;
|
|
282
|
+
productId?: string;
|
|
283
|
+
product?: ProductInterface;
|
|
284
|
+
createdById?: string;
|
|
285
|
+
updatedById?: string;
|
|
286
|
+
createdBy?: UserInterface;
|
|
287
|
+
updatedBy?: UserInterface;
|
|
283
288
|
}
|
|
284
289
|
interface PriceRecurringInterface {
|
|
285
290
|
usageType?: string;
|
|
@@ -2795,7 +2800,7 @@ declare const defaults: {
|
|
|
2795
2800
|
prices: {
|
|
2796
2801
|
active: boolean;
|
|
2797
2802
|
unitAmount: number;
|
|
2798
|
-
unitAmountDecimal:
|
|
2803
|
+
unitAmountDecimal: null;
|
|
2799
2804
|
nickname: string;
|
|
2800
2805
|
lookupKey: string;
|
|
2801
2806
|
priceType: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -274,12 +274,17 @@ interface PriceInterface {
|
|
|
274
274
|
lookupKey?: string;
|
|
275
275
|
priceType?: string;
|
|
276
276
|
taxBehavior?: string;
|
|
277
|
-
product?: string;
|
|
278
277
|
currency?: string;
|
|
279
278
|
billingScheme?: string;
|
|
280
279
|
unitAmount?: number;
|
|
281
280
|
unitAmountDecimal?: string;
|
|
282
281
|
recurring?: PriceRecurringInterface;
|
|
282
|
+
productId?: string;
|
|
283
|
+
product?: ProductInterface;
|
|
284
|
+
createdById?: string;
|
|
285
|
+
updatedById?: string;
|
|
286
|
+
createdBy?: UserInterface;
|
|
287
|
+
updatedBy?: UserInterface;
|
|
283
288
|
}
|
|
284
289
|
interface PriceRecurringInterface {
|
|
285
290
|
usageType?: string;
|
|
@@ -2795,7 +2800,7 @@ declare const defaults: {
|
|
|
2795
2800
|
prices: {
|
|
2796
2801
|
active: boolean;
|
|
2797
2802
|
unitAmount: number;
|
|
2798
|
-
unitAmountDecimal:
|
|
2803
|
+
unitAmountDecimal: null;
|
|
2799
2804
|
nickname: string;
|
|
2800
2805
|
lookupKey: string;
|
|
2801
2806
|
priceType: string;
|