@adonoustech/bacon-core 6.23.0 → 6.24.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adonoustech/bacon-core",
3
- "version": "6.23.0",
3
+ "version": "6.24.0",
4
4
  "scripts": {
5
5
  "build:cjs": "tsc -p tsconfig.cjs.json",
6
6
  "build:es": "tsc -p tsconfig.es.json",
@@ -39,5 +39,5 @@
39
39
  "bugs": {
40
40
  "url": "https://github.com/AdonousTech/bacon-core/issues"
41
41
  },
42
- "gitHead": "8d23f5e42274de1a5519ee48a58472028cb192f3"
42
+ "gitHead": "ffe3b6f970aeda8956df572fab2839af1a146b67"
43
43
  }
@@ -72,6 +72,18 @@ export interface IAdminClientTableRow {
72
72
  /** Last modified timestamp */
73
73
  lastModified?: string;
74
74
 
75
+ /** Business address - street */
76
+ addressStreet?: string;
77
+
78
+ /** Business address - city */
79
+ addressCity?: string;
80
+
81
+ /** Business address - state (2-letter code) */
82
+ addressState?: string;
83
+
84
+ /** Business address - ZIP code */
85
+ addressZip?: string;
86
+
75
87
  /** Reference to the original full client data */
76
88
  _raw?: IAdminClient;
77
89
  }
@@ -1,4 +1,5 @@
1
1
  import { ClientAcctIntakeBusinessEntityTypes } from "../enums/client-acct-intake-business-entity-types";
2
+ import { IMailingAddress } from "./i-client-tax-info";
2
3
 
3
4
  /**
4
5
  * Business information section of the client accounting intake form
@@ -20,4 +21,6 @@ export interface IClientAcctBusinessInfo {
20
21
  stateOfIncorporation: string;
21
22
  /** State Tax ID - optional */
22
23
  stateTaxId: string;
24
+ /** Business mailing address */
25
+ address?: IMailingAddress;
23
26
  }
@@ -69,6 +69,12 @@ export interface IClientTaxInfo {
69
69
  signerTitle?: string;
70
70
  /** ISO timestamp when tax info was last updated */
71
71
  lastModified?: string;
72
+ /** Include Schedule C (Profit or Loss from Business) - 1040 only */
73
+ includeScheduleC?: boolean;
74
+ /** Include Schedule E (Supplemental Income and Loss) - 1040 only */
75
+ includeScheduleE?: boolean;
76
+ /** Source of the mailing address: business, personal, or manually entered */
77
+ addressSource?: 'business' | 'personal' | 'manual';
72
78
  }
73
79
 
74
80
  /**