@adonoustech/bacon-core 6.24.0 → 6.25.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.24.0",
3
+ "version": "6.25.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": "ffe3b6f970aeda8956df572fab2839af1a146b67"
42
+ "gitHead": "2aed986336936e2837904e200c0f3573fee84eb7"
43
43
  }
@@ -3,6 +3,7 @@ import { IClientAcctBusinessOwner } from "./i-client-acct-business-owner";
3
3
  import { IAdminClientActionItem, IAdminClientService } from "./i-admin-client";
4
4
  import { IActionItemV2 } from "./i-action-item-v2";
5
5
  import { IClientMessage } from "./i-client-message";
6
+ import { IMailingAddress } from "./i-client-tax-info";
6
7
 
7
8
  /**
8
9
  * Business information structure for client detail view
@@ -24,6 +25,8 @@ export interface IAdminClientDetailBusinessInfo {
24
25
  stateTaxId?: string;
25
26
  /** Client acquisition date - ISO date string */
26
27
  clientAcquisitionDate?: string;
28
+ /** Business mailing address */
29
+ address?: IMailingAddress;
27
30
  }
28
31
 
29
32
  /**