@taxbit/react-sdk 0.0.14 → 0.0.16

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.
Files changed (72) hide show
  1. package/README.md +88 -10
  2. package/dist/basic.css +21 -2
  3. package/dist/components/Notification/Notification.d.ts +5 -0
  4. package/dist/components/Notification/index.d.ts +1 -0
  5. package/dist/components/Section/Section.d.ts +2 -1
  6. package/dist/components/index.d.ts +1 -0
  7. package/dist/contexts/FormUI/useFormUI.d.ts +9 -2
  8. package/dist/contexts/FormUI/useFormUIContext.d.ts +22 -2
  9. package/dist/contexts/TaxDocumentation/TaxBitFormProvider.d.ts +2 -1
  10. package/dist/contexts/TaxDocumentation/useTaxDocumentation.d.ts +5 -4
  11. package/dist/contexts/TaxDocumentation/useTaxDocumentationContext.d.ts +110 -6
  12. package/dist/entry/index.d.ts +1 -0
  13. package/dist/i18n/i18n.d.ts +1 -1
  14. package/dist/i18n/index.d.ts +1 -1
  15. package/dist/i18n/locales/index.d.ts +1 -0
  16. package/dist/i18n/locales/pt-pt.d.ts +2 -0
  17. package/dist/i18n/types/Locale.d.ts +1 -1
  18. package/dist/i18n/types/LocalizationKey.d.ts +7 -5
  19. package/dist/i18n/types/PropertyFile.d.ts +11 -1
  20. package/dist/i18n/utils/getText.d.ts +5 -2
  21. package/dist/inline.css +21 -3
  22. package/dist/lookups/dayOptions.d.ts +3 -0
  23. package/dist/lookups/foreignAccountHolderAccountTypeOptions.d.ts +2 -0
  24. package/dist/lookups/foreignOtherClassificationOptions.d.ts +17 -0
  25. package/dist/lookups/foreignTrustClassificationOptions.d.ts +9 -0
  26. package/dist/lookups/index.d.ts +5 -2
  27. package/dist/lookups/monthOptions.d.ts +4 -0
  28. package/dist/lookups/usAccountHolderAccountTypeOptions.d.ts +2 -0
  29. package/dist/lookups/usLlcAccountTypeOptions.d.ts +2 -0
  30. package/dist/lookups/yearOptions.d.ts +4 -0
  31. package/dist/minimal.css +3 -0
  32. package/dist/paths/FinancialAccountInput/FinancialAccountInput.d.ts +1 -5
  33. package/dist/paths/ResidenceInput/ResidenceInput.d.ts +5 -2
  34. package/dist/paths/RowInput/CheckBoxRow/CheckBoxRow.d.ts +1 -1
  35. package/dist/paths/RowInput/DateOfBirthRow/DateOfBirthRow.d.ts +10 -0
  36. package/dist/paths/RowInput/DateOfBirthRow/index.d.ts +1 -0
  37. package/dist/paths/RowInput/TextInputRow/TextInputRow.d.ts +1 -1
  38. package/dist/paths/RowInput/VisibleRow/VisibleRow.d.ts +2 -1
  39. package/dist/paths/TaxBitFormUI/TaxBitDAC7FormUI.d.ts +2 -1
  40. package/dist/paths/TaxBitFormUI/TaxBitFormUI.d.ts +2 -1
  41. package/dist/taxbit-react-sdk.es.js +7665 -6509
  42. package/dist/taxbit-react-sdk.umd.js +10 -10
  43. package/dist/types/AccountType.d.ts +3 -3
  44. package/dist/types/MonthCode.d.ts +1 -0
  45. package/dist/types/TaxDocumentation.d.ts +2 -0
  46. package/dist/types/external/ComprehensiveTaxDocumentation.d.ts +69 -63
  47. package/dist/types/index.d.ts +1 -0
  48. package/dist/ui/ActionButton/ActionButton.d.ts +7 -0
  49. package/dist/ui/ActionButton/index.d.ts +1 -0
  50. package/dist/ui/CheckBox/CheckBox.d.ts +2 -1
  51. package/dist/ui/DateOfBirthInput/DateOfBirthInput.d.ts +9 -0
  52. package/dist/ui/DateOfBirthInput/index.d.ts +1 -0
  53. package/dist/ui/TextInput/TextInput.d.ts +3 -1
  54. package/dist/ui/index.d.ts +2 -0
  55. package/dist/utils/getForeignAccountType.d.ts +2 -0
  56. package/dist/utils/getForeignOtherClassification.d.ts +2 -0
  57. package/dist/utils/getForeignTrustClassification.d.ts +2 -0
  58. package/dist/utils/getHintKeyMap.d.ts +2 -0
  59. package/dist/utils/getLLCClassification.d.ts +2 -0
  60. package/dist/utils/getNotifications.d.ts +10 -0
  61. package/dist/utils/getPromptKeyMap.d.ts +2 -0
  62. package/dist/utils/getUsAccountType.d.ts +2 -0
  63. package/dist/utils/index.d.ts +6 -1
  64. package/dist/utils/isBlank.d.ts +2 -2
  65. package/dist/utils/transformInbound.d.ts +2 -1
  66. package/dist/utils/transformOutbound.d.ts +2 -2
  67. package/dist/widgets/TaxBitForm/TaxBitDAC7Form.d.ts +2 -2
  68. package/dist/widgets/TaxBitForm/TaxBitForm.d.ts +3 -2
  69. package/package.json +3 -2
  70. package/dist/lookups/foreignOtherAccountTypeOptions.d.ts +0 -15
  71. package/dist/lookups/foreignTrustAccountTypeOptions.d.ts +0 -7
  72. package/dist/validations/__tests__/validations.test.d.ts +0 -1
@@ -1,6 +1,6 @@
1
- import { usAccountHolderAccountTypeOptions, usLlcAccountTypeOptions, foreignAccountHolderAccountTypeOptions, foreignTrustAccountTypeOptions, foreignOtherAccountTypeOptions } from "lookups";
1
+ import { usAccountHolderAccountTypeOptions, usLlcAccountTypeOptions, foreignAccountHolderAccountTypeOptions, foreignTrustClassificationOptions, foreignOtherClassificationOptions } from "lookups";
2
2
  export type UsAccountType = (typeof usAccountHolderAccountTypeOptions)[number]["value"];
3
3
  export type UsLlcAccountType = (typeof usLlcAccountTypeOptions)[number]["value"];
4
4
  export type ForeignAccountType = (typeof foreignAccountHolderAccountTypeOptions)[number]["value"];
5
- export type ForeignTrustAccountType = (typeof foreignTrustAccountTypeOptions)[number]["value"];
6
- export type ForeignOtherAccountType = (typeof foreignOtherAccountTypeOptions)[number]["value"];
5
+ export type ForeignTrustAccountType = (typeof foreignTrustClassificationOptions)[number]["value"];
6
+ export type ForeignOtherAccountType = (typeof foreignOtherClassificationOptions)[number]["value"];
@@ -0,0 +1 @@
1
+ export type MonthCode = "01" | "02" | "03" | "04" | "05" | "06" | "07" | "08" | "09" | "10" | "11" | "12";
@@ -38,6 +38,7 @@ export type AccountHolderContactData = {
38
38
  export type AccountHolderTaxData = {
39
39
  accountHolderFinancialAccountIdentifier?: string;
40
40
  accountHolderFinancialAccountName?: string;
41
+ accountHolderFinancialAccountNameSameAsAccountHolderName?: Yes;
41
42
  accountHolderForeignTin?: string;
42
43
  accountHolderForeignTinIsNotRequired?: Yes;
43
44
  accountHolderTaxResidenceCountry1?: string;
@@ -61,6 +62,7 @@ export type AccountHolderTaxData = {
61
62
  accountHolderShowTaxResidence5?: YesNo;
62
63
  accountHolderUsTin?: string;
63
64
  accountHolderVatIdentificationNumber?: string;
65
+ accountHolderVatIdentificationNumberIsNotRequired?: Yes;
64
66
  accountHolderVatCountry?: string;
65
67
  };
66
68
  export type RegardedOwnerClassificationData = {
@@ -1,3 +1,4 @@
1
+ import type { CamelCasedPropertiesDeep } from "type-fest";
1
2
  type Address = {
2
3
  city?: string;
3
4
  country?: string;
@@ -6,71 +7,76 @@ type Address = {
6
7
  second_line?: string;
7
8
  postal_code?: string;
8
9
  };
9
- export type ComprehensiveTaxDocumentation = {
10
- account_holder?: {
11
- address?: Address;
12
- country_of_citizenship?: string;
13
- date_of_birth?: string;
14
- dba_name?: string;
15
- mailing_address?: Address;
16
- mailing_address_is_different?: true;
17
- name?: string;
18
- city_of_birth?: string;
19
- country_of_birth?: string;
20
- business_registration_number?: string;
21
- financial_account_identifier?: string;
22
- financial_account_name?: string;
23
- ftin?: string;
24
- ftin_not_legally_required?: true;
25
- tax_residences: {
26
- country?: string;
27
- tin?: string;
28
- tin_not_required?: boolean;
29
- }[];
30
- show_tax_residence?: boolean[];
10
+ type AccountHolderTaxDocumentation = {
11
+ address?: Address;
12
+ country_of_citizenship?: string;
13
+ date_of_birth?: string;
14
+ dba_name?: string;
15
+ mailing_address?: Address;
16
+ mailing_address_is_different?: boolean;
17
+ name?: string;
18
+ city_of_birth?: string;
19
+ country_of_birth?: string;
20
+ business_registration_number?: string;
21
+ financial_account_identifier?: string;
22
+ financial_account_name?: string;
23
+ ftin?: string;
24
+ ftin_not_legally_required?: boolean;
25
+ tax_residences?: {
26
+ country?: string;
31
27
  tin?: string;
32
- vat_id?: string;
33
- vat_country?: string;
34
- exempt_fatca_code?: string;
35
- exempt_payee_code?: string;
36
- is_individual?: boolean;
37
- is_eu_resident?: boolean;
38
- is_us_person?: boolean;
39
- us_account_type?: string;
40
- us_smllc_election?: boolean;
41
- us_llc_classification?: string;
42
- other_classification?: string;
43
- us_trust_estate_ein?: boolean;
44
- foreign_account_type?: string;
45
- foreign_trust_classification?: string;
46
- foreign_other_classification?: string;
47
- };
48
- regarded_owner?: {
49
- address?: Address;
50
- country_of_citizenship?: string;
51
- date_of_birth?: string;
52
- dba_name?: string;
53
- mailing_address?: Address;
54
- mailing_address_is_different?: true;
55
- name?: string;
56
- ftin?: string;
57
- ftin_not_legally_required?: true;
58
- tin?: string;
59
- exempt_fatca_code?: string;
60
- exempt_payee_code?: string;
61
- is_us_person?: boolean;
62
- us_account_type?: string;
63
- us_llc_classification?: string;
64
- other_classification?: string;
65
- us_trust_estate_ein?: boolean;
66
- foreign_account_type?: string;
67
- foreign_trust_classification?: string;
68
- foreign_other_classification?: string;
69
- };
70
- document_type: "COMPREHENSIVE";
71
- signature?: string;
72
- signature_date?: string;
28
+ tin_not_required?: boolean;
29
+ }[];
30
+ show_tax_residence?: boolean[];
31
+ tin?: string;
32
+ vatin?: string;
33
+ vatin_country?: string;
34
+ vatin_not_required?: boolean;
35
+ exempt_fatca_code?: string;
36
+ exempt_payee_code?: string;
37
+ is_individual?: boolean;
38
+ is_eu_resident?: boolean;
39
+ is_us_person?: boolean;
40
+ us_account_type?: string;
41
+ us_smllc_election?: boolean;
42
+ us_llc_classification?: string;
43
+ us_other_classification?: string;
44
+ us_trust_estate_ein?: boolean;
45
+ foreign_account_type?: string;
46
+ foreign_trust_classification?: string;
47
+ foreign_other_classification?: string;
48
+ };
49
+ type RegardedOwnerTaxDocumentation = {
50
+ address?: Address;
51
+ country_of_citizenship?: string;
52
+ date_of_birth?: string;
53
+ dba_name?: string;
54
+ mailing_address?: Address;
55
+ mailing_address_is_different?: boolean;
56
+ name?: string;
57
+ ftin?: string;
58
+ ftin_not_legally_required?: boolean;
59
+ tin?: string;
60
+ exempt_fatca_code?: string;
61
+ exempt_payee_code?: string;
62
+ is_us_person?: boolean;
63
+ us_account_type?: string;
64
+ us_llc_classification?: string;
65
+ other_classification?: string;
66
+ us_trust_estate_ein?: boolean;
67
+ foreign_account_type?: string;
68
+ foreign_trust_classification?: string;
69
+ foreign_other_classification?: string;
70
+ };
71
+ export type SignedComprehensiveTaxDocumentation = {
72
+ account_holder?: AccountHolderTaxDocumentation;
73
+ } & {
74
+ regarded_owner?: RegardedOwnerTaxDocumentation;
75
+ } & {
73
76
  has_certified?: boolean;
74
77
  is_not_subject_backup_withholding?: boolean;
78
+ signature: string;
79
+ document_type: "COMPREHENSIVE";
75
80
  };
81
+ export type ClientTaxDocumentation = CamelCasedPropertiesDeep<AccountHolderTaxDocumentation>;
76
82
  export {};
@@ -1,6 +1,7 @@
1
1
  export * from "./AccountType";
2
2
  export * from "./CaProvinceCode";
3
3
  export * from "./CountryCode";
4
+ export * from "./MonthCode";
4
5
  export * from "./TaxForm";
5
6
  export * from "./TaxDocumentation";
6
7
  export * from "./UsStateCode";
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import { TaxDocumentationKey } from "types/TaxDocumentation";
3
+ export type ActionButtonProps = {
4
+ name: TaxDocumentationKey;
5
+ onClick: () => void;
6
+ };
7
+ export declare const ActionButton: ({ name, onClick }: ActionButtonProps) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from "./ActionButton.tsx";
@@ -4,5 +4,6 @@ export type CheckBoxProps = {
4
4
  label: boolean;
5
5
  subLabel?: boolean;
6
6
  name: TaxDocumentationKey;
7
+ onClick?: (val: string | undefined) => void;
7
8
  };
8
- export declare const CheckBox: ({ label, subLabel, name }: CheckBoxProps) => React.JSX.Element;
9
+ export declare const CheckBox: ({ label, subLabel, name, onClick }: CheckBoxProps) => React.JSX.Element;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { TaxDocumentationKey } from "types/TaxDocumentation";
3
+ export type DateOfBirthInputProps = {
4
+ name: TaxDocumentationKey;
5
+ className?: string;
6
+ hint?: true;
7
+ children?: React.ReactNode;
8
+ };
9
+ export declare const DateOfBirthInput: ({ name, className, hint, children, }: DateOfBirthInputProps) => React.JSX.Element;
@@ -0,0 +1 @@
1
+ export * from "./DateOfBirthInput.tsx";
@@ -5,5 +5,7 @@ export type TextInputProps = {
5
5
  className?: string;
6
6
  onChange?: (val: string) => string;
7
7
  hint?: true;
8
+ disabled?: boolean;
9
+ children?: React.ReactNode;
8
10
  };
9
- export declare const TextInput: ({ name, className, onChange, hint, }: TextInputProps) => React.JSX.Element;
11
+ export declare const TextInput: ({ name, className, onChange, hint, children, disabled, }: TextInputProps) => React.JSX.Element;
@@ -1,5 +1,7 @@
1
1
  export * from "./Actions";
2
+ export * from "./ActionButton";
2
3
  export * from "./CheckBox";
4
+ export * from "./DateOfBirthInput";
3
5
  export * from "./RadioButtons";
4
6
  export * from "./Select";
5
7
  export * from "./TextInput";
@@ -0,0 +1,2 @@
1
+ import { type ForeignAccountHolderAccountType } from "lookups";
2
+ export declare const getForeignAccountType: (accountType: string | undefined) => ForeignAccountHolderAccountType | undefined;
@@ -0,0 +1,2 @@
1
+ import { type ForeignOtherClassification } from "lookups";
2
+ export declare const getForeignOtherClassification: (classification: string | undefined) => ForeignOtherClassification | undefined;
@@ -0,0 +1,2 @@
1
+ import { type ForeignTrustClassification } from "lookups";
2
+ export declare const getForeignTrustClassification: (classification: string | undefined) => ForeignTrustClassification | undefined;
@@ -38,6 +38,7 @@ export declare const getHintKeyMap: () => {
38
38
  accountHolderName?: "dateOfBirth" | undefined;
39
39
  accountHolderFinancialAccountIdentifier?: "dateOfBirth" | undefined;
40
40
  accountHolderFinancialAccountName?: "dateOfBirth" | undefined;
41
+ accountHolderFinancialAccountNameSameAsAccountHolderName?: "dateOfBirth" | undefined;
41
42
  accountHolderForeignTin?: "dateOfBirth" | undefined;
42
43
  accountHolderForeignTinIsNotRequired?: "dateOfBirth" | undefined;
43
44
  accountHolderTaxResidenceCountry1?: "dateOfBirth" | undefined;
@@ -61,6 +62,7 @@ export declare const getHintKeyMap: () => {
61
62
  accountHolderShowTaxResidence5?: "dateOfBirth" | undefined;
62
63
  accountHolderUsTin?: "dateOfBirth" | undefined;
63
64
  accountHolderVatIdentificationNumber?: "dateOfBirth" | undefined;
65
+ accountHolderVatIdentificationNumberIsNotRequired?: "dateOfBirth" | undefined;
64
66
  accountHolderVatCountry?: "dateOfBirth" | undefined;
65
67
  accountHolderIsIndividual?: "dateOfBirth" | undefined;
66
68
  accountHolderIsEuResident?: "dateOfBirth" | undefined;
@@ -0,0 +1,2 @@
1
+ import { type UsLLCAccountType } from "lookups";
2
+ export declare const getLLCClassification: (accountType: string | undefined) => UsLLCAccountType | undefined;
@@ -0,0 +1,10 @@
1
+ import { TaxDocumentation, TaxDocumentationKey } from "../types";
2
+ import { NotificationKey } from "../i18n/types";
3
+ export type NotificationRule = ((value: string | undefined, fields: TaxDocumentation) => NotificationKey | undefined) | ((value: string | undefined) => NotificationKey | undefined);
4
+ export type Notifications = {
5
+ [key in TaxDocumentationKey]?: NotificationKey;
6
+ };
7
+ export type NotificationRules = {
8
+ [key in TaxDocumentationKey]?: NotificationRule;
9
+ };
10
+ export declare const getNotifications: (shownFields: Set<TaxDocumentationKey>, fields: TaxDocumentation) => Notifications;
@@ -38,6 +38,7 @@ export declare const getPromptKeyMap: (data: TaxDocumentation) => {
38
38
  accountHolderName?: PromptKey | undefined;
39
39
  accountHolderFinancialAccountIdentifier?: PromptKey | undefined;
40
40
  accountHolderFinancialAccountName?: PromptKey | undefined;
41
+ accountHolderFinancialAccountNameSameAsAccountHolderName?: PromptKey | undefined;
41
42
  accountHolderForeignTin?: PromptKey | undefined;
42
43
  accountHolderForeignTinIsNotRequired?: PromptKey | undefined;
43
44
  accountHolderTaxResidenceCountry1?: PromptKey | undefined;
@@ -61,6 +62,7 @@ export declare const getPromptKeyMap: (data: TaxDocumentation) => {
61
62
  accountHolderShowTaxResidence5?: PromptKey | undefined;
62
63
  accountHolderUsTin?: PromptKey | undefined;
63
64
  accountHolderVatIdentificationNumber?: PromptKey | undefined;
65
+ accountHolderVatIdentificationNumberIsNotRequired?: PromptKey | undefined;
64
66
  accountHolderVatCountry?: PromptKey | undefined;
65
67
  accountHolderIsIndividual?: PromptKey | undefined;
66
68
  accountHolderIsEuResident?: PromptKey | undefined;
@@ -0,0 +1,2 @@
1
+ import { type UsAccountHolderAccountType } from "lookups";
2
+ export declare const getUsAccountType: (accountType: string | undefined) => UsAccountHolderAccountType | undefined;
@@ -1,9 +1,14 @@
1
1
  export * from "./cx";
2
2
  export * from "./date";
3
- export * from "./isBlank";
4
3
  export * from "./getFieldsState";
4
+ export * from "./getForeignAccountType";
5
+ export * from "./getForeignOtherClassification";
6
+ export * from "./getForeignTrustClassification";
7
+ export * from "./getLLCClassification.ts";
5
8
  export * from "./getPromptKeyMap";
6
9
  export * from "./getSupportedFields";
10
+ export * from "./getUsAccountType";
7
11
  export * from "./getVisibleQuestions";
12
+ export * from "./isBlank";
8
13
  export * from "./transformInbound";
9
14
  export * from "./transformOutbound";
@@ -1,2 +1,2 @@
1
- export declare const isBlank: (value: string | undefined) => boolean;
2
- export declare const isPresent: (value: string | undefined) => boolean;
1
+ export declare const isBlank: (value: string | undefined) => value is undefined;
2
+ export declare const isPresent: (value: string | undefined) => value is string;
@@ -1,2 +1,3 @@
1
1
  import { TaxDocumentation } from "types";
2
- export declare const transformInbound: (data: TaxDocumentation) => TaxDocumentation;
2
+ import { ClientTaxDocumentation } from "../types/external";
3
+ export declare const transformInbound: (data: ClientTaxDocumentation) => TaxDocumentation;
@@ -1,3 +1,3 @@
1
- import { ComprehensiveTaxDocumentation } from "../types/external";
1
+ import { SignedComprehensiveTaxDocumentation } from "../types/external";
2
2
  import { TaxDocumentation } from "../types";
3
- export declare const transformOutbound: (data: TaxDocumentation) => ComprehensiveTaxDocumentation;
3
+ export declare const transformOutbound: (data: TaxDocumentation) => SignedComprehensiveTaxDocumentation;
@@ -1,8 +1,8 @@
1
1
  import React from "react";
2
2
  import type { Locale } from "../../i18n";
3
- import { TaxDocumentation } from "../../types";
3
+ import { ClientTaxDocumentation } from "../../types/external";
4
4
  type TaxBitDAC7FormProps = {
5
- data?: TaxDocumentation;
5
+ data?: ClientTaxDocumentation;
6
6
  bearerToken: string;
7
7
  language?: Locale;
8
8
  staging?: true;
@@ -1,8 +1,9 @@
1
1
  import React from "react";
2
2
  import type { Locale } from "../../i18n";
3
- import { TaxForm, TaxDocumentation } from "../../types";
3
+ import { TaxForm } from "../../types";
4
+ import { ClientTaxDocumentation } from "../../types/external";
4
5
  type TaxBitFormProps = {
5
- data?: TaxDocumentation;
6
+ data?: ClientTaxDocumentation;
6
7
  staging?: true;
7
8
  bearerToken: string;
8
9
  language?: Locale;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taxbit/react-sdk",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "description": "TaxBit Tax Documentation",
5
5
  "author": "TaxBit",
6
6
  "type": "module",
@@ -33,7 +33,8 @@
33
33
  "dependencies": {
34
34
  "react": "^18.2.0",
35
35
  "react-dom": "^18.2.0",
36
- "react-input-mask": "^2.0.4"
36
+ "react-input-mask": "^2.0.4",
37
+ "type-fest": "^4.3.2"
37
38
  },
38
39
  "devDependencies": {
39
40
  "@types/node": "^18.17.0",
@@ -1,15 +0,0 @@
1
- export declare const foreignOtherAccountTypeOptions: readonly [{
2
- readonly value: "taxExemptOrganization";
3
- }, {
4
- readonly value: "privateFoundation";
5
- }, {
6
- readonly value: "internationalOrganization";
7
- }, {
8
- readonly value: "centralBankOfIssue";
9
- }, {
10
- readonly value: "foreignGovernmentControlledEntity";
11
- }, {
12
- readonly value: "foreignGovernmentIntegralPart";
13
- }, {
14
- readonly value: "estate";
15
- }];
@@ -1,7 +0,0 @@
1
- export declare const foreignTrustAccountTypeOptions: readonly [{
2
- readonly value: "simpleTrust";
3
- }, {
4
- readonly value: "complexTrust";
5
- }, {
6
- readonly value: "grantorTrust";
7
- }];
@@ -1 +0,0 @@
1
- export {};