@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 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: number;
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: number;
2803
+ unitAmountDecimal: null;
2799
2804
  nickname: string;
2800
2805
  lookupKey: string;
2801
2806
  priceType: string;
package/dist/index.js CHANGED
@@ -2208,7 +2208,7 @@ var defaults = {
2208
2208
  prices: {
2209
2209
  active: true,
2210
2210
  unitAmount: 0,
2211
- unitAmountDecimal: 0,
2211
+ unitAmountDecimal: null,
2212
2212
  nickname: "",
2213
2213
  lookupKey: "",
2214
2214
  priceType: "one_time",