@spytecgps/nova-orm 1.4.30 → 1.4.32

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.
@@ -1,3 +1,5 @@
1
+ declare const basePriceArray: readonly ["original", "calculated"];
2
+ export type BasePrice = typeof basePriceArray[number];
1
3
  export declare class AvalaraQueue {
2
4
  id: number;
3
5
  subscriptionId: string | null;
@@ -5,7 +7,8 @@ export declare class AvalaraQueue {
5
7
  priceIncrease: number | null;
6
8
  priceDecrease: number | null;
7
9
  status: boolean;
8
- processType: 'single' | 'multiple';
10
+ basePrice: BasePrice | null;
9
11
  attempts: number;
10
12
  createdAt: Date;
11
13
  }
14
+ export {};