spartaxx.businessmodels 1.0.325 → 1.0.327

Sign up to get free protection for your applications and to get access to all the features.
@@ -83,10 +83,7 @@ function createDefaultAccountInfo() {
83
83
  ReasonCode: "",
84
84
  AccountStateId: 0,
85
85
  CountyStateName: "",
86
- selectedOption: {
87
- value: "",
88
- label: ""
89
- }
86
+ selectedOption: null
90
87
  };
91
88
  });
92
89
  }
@@ -72,7 +72,7 @@ export interface AccountInfo {
72
72
  ReasonCode?: string;
73
73
  AccountStateId?: number;
74
74
  CountyStateName?: string;
75
- selectedOption?: { value: string; label: string };
75
+ selectedOption?: { value: string; label: string } | null;
76
76
  }
77
77
 
78
78
  export async function createDefaultAccountInfo(): Promise<AccountInfo> {
@@ -149,9 +149,6 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
149
149
  ReasonCode: "",
150
150
  AccountStateId: 0,
151
151
  CountyStateName: "",
152
- selectedOption: {
153
- value: "",
154
- label: ""
155
- }
152
+ selectedOption: null
156
153
  };
157
154
  }
@@ -9,4 +9,5 @@ export interface ConciergeBlastInfo {
9
9
  AppointmentLocation?: string;
10
10
  Remarks?: string;
11
11
  AccountId?: number;
12
+ AccountNumber?: string;
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.325",
3
+ "version": "1.0.327",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {