@grapadigital/shared-app-modules 0.0.59 → 0.0.60

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/action.d.ts CHANGED
@@ -51,6 +51,8 @@ declare interface Attachments {
51
51
  name: string;
52
52
  }
53
53
 
54
+ declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
55
+
54
56
  declare interface Canceled {
55
57
  reason: string;
56
58
  notes: string;
@@ -241,7 +243,7 @@ declare interface LostInterface {
241
243
  }
242
244
 
243
245
  declare interface NegotiationInterface {
244
- calculatorType: "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
246
+ calculatorType: CalculatorType;
245
247
  childPermit?: boolean;
246
248
  childPermitValue?: number;
247
249
  childPermitMethod?: SalePaymentMethod;
package/dist/content.d.ts CHANGED
@@ -51,6 +51,8 @@ declare interface Attachments {
51
51
  name: string;
52
52
  }
53
53
 
54
+ declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
55
+
54
56
  declare interface Canceled {
55
57
  reason: string;
56
58
  notes: string;
@@ -241,7 +243,7 @@ declare interface LostInterface {
241
243
  }
242
244
 
243
245
  declare interface NegotiationInterface {
244
- calculatorType: "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
246
+ calculatorType: CalculatorType;
245
247
  childPermit?: boolean;
246
248
  childPermitValue?: number;
247
249
  childPermitMethod?: SalePaymentMethod;
package/dist/invoice.d.ts CHANGED
@@ -51,6 +51,8 @@ declare interface Attachments {
51
51
  name: string;
52
52
  }
53
53
 
54
+ declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
55
+
54
56
  export declare interface Canceled {
55
57
  reason: string;
56
58
  notes: string;
@@ -241,7 +243,7 @@ declare interface LostInterface {
241
243
  }
242
244
 
243
245
  declare interface NegotiationInterface {
244
- calculatorType: "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
246
+ calculatorType: CalculatorType;
245
247
  childPermit?: boolean;
246
248
  childPermitValue?: number;
247
249
  childPermitMethod?: SalePaymentMethod;
package/dist/payment.d.ts CHANGED
@@ -51,6 +51,8 @@ export declare interface Attachments {
51
51
  name: string;
52
52
  }
53
53
 
54
+ declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
55
+
54
56
  export declare interface Canceled {
55
57
  reason: string;
56
58
  notes: string;
@@ -241,7 +243,7 @@ declare interface LostInterface {
241
243
  }
242
244
 
243
245
  declare interface NegotiationInterface {
244
- calculatorType: "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
246
+ calculatorType: CalculatorType;
245
247
  childPermit?: boolean;
246
248
  childPermitValue?: number;
247
249
  childPermitMethod?: SalePaymentMethod;
@@ -51,6 +51,8 @@ declare interface Attachments {
51
51
  name: string;
52
52
  }
53
53
 
54
+ declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
55
+
54
56
  declare interface Canceled {
55
57
  reason: string;
56
58
  notes: string;
@@ -241,7 +243,7 @@ declare interface LostInterface {
241
243
  }
242
244
 
243
245
  declare interface NegotiationInterface {
244
- calculatorType: "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
246
+ calculatorType: CalculatorType;
245
247
  childPermit?: boolean;
246
248
  childPermitValue?: number;
247
249
  childPermitMethod?: SalePaymentMethod;
package/dist/sale.d.ts CHANGED
@@ -51,6 +51,8 @@ declare interface Attachments {
51
51
  name: string;
52
52
  }
53
53
 
54
+ export declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
55
+
54
56
  declare interface Canceled {
55
57
  reason: string;
56
58
  notes: string;
@@ -241,7 +243,7 @@ export declare interface LostInterface {
241
243
  }
242
244
 
243
245
  export declare interface NegotiationInterface {
244
- calculatorType: "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
246
+ calculatorType: CalculatorType;
245
247
  childPermit?: boolean;
246
248
  childPermitValue?: number;
247
249
  childPermitMethod?: SalePaymentMethod;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@grapadigital/shared-app-modules",
3
3
  "private": false,
4
- "version": "0.0.59",
4
+ "version": "0.0.60",
5
5
  "files": [
6
6
  "dist"
7
7
  ],