@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.
- package/README.md +88 -10
- package/dist/basic.css +21 -2
- package/dist/components/Notification/Notification.d.ts +5 -0
- package/dist/components/Notification/index.d.ts +1 -0
- package/dist/components/Section/Section.d.ts +2 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/contexts/FormUI/useFormUI.d.ts +9 -2
- package/dist/contexts/FormUI/useFormUIContext.d.ts +22 -2
- package/dist/contexts/TaxDocumentation/TaxBitFormProvider.d.ts +2 -1
- package/dist/contexts/TaxDocumentation/useTaxDocumentation.d.ts +5 -4
- package/dist/contexts/TaxDocumentation/useTaxDocumentationContext.d.ts +110 -6
- package/dist/entry/index.d.ts +1 -0
- package/dist/i18n/i18n.d.ts +1 -1
- package/dist/i18n/index.d.ts +1 -1
- package/dist/i18n/locales/index.d.ts +1 -0
- package/dist/i18n/locales/pt-pt.d.ts +2 -0
- package/dist/i18n/types/Locale.d.ts +1 -1
- package/dist/i18n/types/LocalizationKey.d.ts +7 -5
- package/dist/i18n/types/PropertyFile.d.ts +11 -1
- package/dist/i18n/utils/getText.d.ts +5 -2
- package/dist/inline.css +21 -3
- package/dist/lookups/dayOptions.d.ts +3 -0
- package/dist/lookups/foreignAccountHolderAccountTypeOptions.d.ts +2 -0
- package/dist/lookups/foreignOtherClassificationOptions.d.ts +17 -0
- package/dist/lookups/foreignTrustClassificationOptions.d.ts +9 -0
- package/dist/lookups/index.d.ts +5 -2
- package/dist/lookups/monthOptions.d.ts +4 -0
- package/dist/lookups/usAccountHolderAccountTypeOptions.d.ts +2 -0
- package/dist/lookups/usLlcAccountTypeOptions.d.ts +2 -0
- package/dist/lookups/yearOptions.d.ts +4 -0
- package/dist/minimal.css +3 -0
- package/dist/paths/FinancialAccountInput/FinancialAccountInput.d.ts +1 -5
- package/dist/paths/ResidenceInput/ResidenceInput.d.ts +5 -2
- package/dist/paths/RowInput/CheckBoxRow/CheckBoxRow.d.ts +1 -1
- package/dist/paths/RowInput/DateOfBirthRow/DateOfBirthRow.d.ts +10 -0
- package/dist/paths/RowInput/DateOfBirthRow/index.d.ts +1 -0
- package/dist/paths/RowInput/TextInputRow/TextInputRow.d.ts +1 -1
- package/dist/paths/RowInput/VisibleRow/VisibleRow.d.ts +2 -1
- package/dist/paths/TaxBitFormUI/TaxBitDAC7FormUI.d.ts +2 -1
- package/dist/paths/TaxBitFormUI/TaxBitFormUI.d.ts +2 -1
- package/dist/taxbit-react-sdk.es.js +7665 -6509
- package/dist/taxbit-react-sdk.umd.js +10 -10
- package/dist/types/AccountType.d.ts +3 -3
- package/dist/types/MonthCode.d.ts +1 -0
- package/dist/types/TaxDocumentation.d.ts +2 -0
- package/dist/types/external/ComprehensiveTaxDocumentation.d.ts +69 -63
- package/dist/types/index.d.ts +1 -0
- package/dist/ui/ActionButton/ActionButton.d.ts +7 -0
- package/dist/ui/ActionButton/index.d.ts +1 -0
- package/dist/ui/CheckBox/CheckBox.d.ts +2 -1
- package/dist/ui/DateOfBirthInput/DateOfBirthInput.d.ts +9 -0
- package/dist/ui/DateOfBirthInput/index.d.ts +1 -0
- package/dist/ui/TextInput/TextInput.d.ts +3 -1
- package/dist/ui/index.d.ts +2 -0
- package/dist/utils/getForeignAccountType.d.ts +2 -0
- package/dist/utils/getForeignOtherClassification.d.ts +2 -0
- package/dist/utils/getForeignTrustClassification.d.ts +2 -0
- package/dist/utils/getHintKeyMap.d.ts +2 -0
- package/dist/utils/getLLCClassification.d.ts +2 -0
- package/dist/utils/getNotifications.d.ts +10 -0
- package/dist/utils/getPromptKeyMap.d.ts +2 -0
- package/dist/utils/getUsAccountType.d.ts +2 -0
- package/dist/utils/index.d.ts +6 -1
- package/dist/utils/isBlank.d.ts +2 -2
- package/dist/utils/transformInbound.d.ts +2 -1
- package/dist/utils/transformOutbound.d.ts +2 -2
- package/dist/widgets/TaxBitForm/TaxBitDAC7Form.d.ts +2 -2
- package/dist/widgets/TaxBitForm/TaxBitForm.d.ts +3 -2
- package/package.json +3 -2
- package/dist/lookups/foreignOtherAccountTypeOptions.d.ts +0 -15
- package/dist/lookups/foreignTrustAccountTypeOptions.d.ts +0 -7
- package/dist/validations/__tests__/validations.test.d.ts +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { usAccountHolderAccountTypeOptions, usLlcAccountTypeOptions, foreignAccountHolderAccountTypeOptions,
|
|
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
|
|
6
|
-
export type ForeignOtherAccountType = (typeof
|
|
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
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
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 {};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -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;
|
package/dist/ui/index.d.ts
CHANGED
|
@@ -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,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;
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -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";
|
package/dist/utils/isBlank.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const isBlank: (value: string | undefined) =>
|
|
2
|
-
export declare const isPresent: (value: string | undefined) =>
|
|
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
|
-
|
|
2
|
+
import { ClientTaxDocumentation } from "../types/external";
|
|
3
|
+
export declare const transformInbound: (data: ClientTaxDocumentation) => TaxDocumentation;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { SignedComprehensiveTaxDocumentation } from "../types/external";
|
|
2
2
|
import { TaxDocumentation } from "../types";
|
|
3
|
-
export declare const transformOutbound: (data: TaxDocumentation) =>
|
|
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 {
|
|
3
|
+
import { ClientTaxDocumentation } from "../../types/external";
|
|
4
4
|
type TaxBitDAC7FormProps = {
|
|
5
|
-
data?:
|
|
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
|
|
3
|
+
import { TaxForm } from "../../types";
|
|
4
|
+
import { ClientTaxDocumentation } from "../../types/external";
|
|
4
5
|
type TaxBitFormProps = {
|
|
5
|
-
data?:
|
|
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.
|
|
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 +0,0 @@
|
|
|
1
|
-
export {};
|