@aws-sdk/client-taxsettings 3.1087.0 → 3.1089.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/TaxSettings.d.ts +52 -60
- package/dist-types/ts3.4/TaxSettingsClient.d.ts +5 -14
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/BatchDeleteTaxRegistrationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchGetTaxExemptionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/BatchPutTaxRegistrationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteSupplementalTaxRegistrationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteTaxRegistrationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetTaxExemptionTypesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetTaxInheritanceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetTaxRegistrationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetTaxRegistrationDocumentCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListSupplementalTaxRegistrationsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTaxExemptionsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTaxRegistrationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/PutSupplementalTaxRegistrationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/PutTaxExemptionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/PutTaxInheritanceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/PutTaxRegistrationCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +8 -16
- package/dist-types/ts3.4/models/errors.d.ts +6 -21
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetTaxInheritanceRequest,
|
|
4
|
-
GetTaxInheritanceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetTaxInheritanceRequest, GetTaxInheritanceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetTaxInheritanceCommandInput
|
|
8
|
-
extends GetTaxInheritanceRequest {}
|
|
4
|
+
export interface GetTaxInheritanceCommandInput extends GetTaxInheritanceRequest {}
|
|
9
5
|
export interface GetTaxInheritanceCommandOutput
|
|
10
|
-
extends GetTaxInheritanceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetTaxInheritanceResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetTaxInheritanceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetTaxInheritanceCommandInput
|
|
9
|
+
input: GetTaxInheritanceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetTaxInheritanceCommandInput,
|
|
17
12
|
GetTaxInheritanceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetTaxRegistrationRequest,
|
|
4
|
-
GetTaxRegistrationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetTaxRegistrationRequest, GetTaxRegistrationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetTaxRegistrationCommandInput
|
|
8
|
-
extends GetTaxRegistrationRequest {}
|
|
4
|
+
export interface GetTaxRegistrationCommandInput extends GetTaxRegistrationRequest {}
|
|
9
5
|
export interface GetTaxRegistrationCommandOutput
|
|
10
|
-
extends GetTaxRegistrationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetTaxRegistrationResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetTaxRegistrationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetTaxRegistrationCommandInput
|
|
9
|
+
input: GetTaxRegistrationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetTaxRegistrationCommandInput,
|
|
17
12
|
GetTaxRegistrationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetTaxRegistrationDocumentResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetTaxRegistrationDocumentCommandInput
|
|
8
|
-
extends GetTaxRegistrationDocumentRequest {}
|
|
7
|
+
export interface GetTaxRegistrationDocumentCommandInput extends GetTaxRegistrationDocumentRequest {}
|
|
9
8
|
export interface GetTaxRegistrationDocumentCommandOutput
|
|
10
|
-
extends GetTaxRegistrationDocumentResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetTaxRegistrationDocumentResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetTaxRegistrationDocumentCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetTaxRegistrationDocumentCommandInput
|
|
12
|
+
input: GetTaxRegistrationDocumentCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetTaxRegistrationDocumentCommandInput,
|
|
17
15
|
GetTaxRegistrationDocumentCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetTaxRegistrationDocumentCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetTaxRegistrationDocumentCommandInput
|
|
21
|
+
input: GetTaxRegistrationDocumentCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetTaxRegistrationDocumentCommandInput,
|
|
26
24
|
GetTaxRegistrationDocumentCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListSupplementalTaxRegistrationsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSupplementalTaxRegistrationsCommandInput
|
|
8
|
-
extends ListSupplementalTaxRegistrationsRequest {}
|
|
7
|
+
export interface ListSupplementalTaxRegistrationsCommandInput extends ListSupplementalTaxRegistrationsRequest {}
|
|
9
8
|
export interface ListSupplementalTaxRegistrationsCommandOutput
|
|
10
|
-
extends ListSupplementalTaxRegistrationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListSupplementalTaxRegistrationsResponse, __MetadataBearer {}
|
|
12
10
|
declare const ListSupplementalTaxRegistrationsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListSupplementalTaxRegistrationsCommandInput
|
|
12
|
+
input: ListSupplementalTaxRegistrationsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListSupplementalTaxRegistrationsCommandInput,
|
|
17
15
|
ListSupplementalTaxRegistrationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTaxExemptionsRequest,
|
|
4
|
-
ListTaxExemptionsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTaxExemptionsRequest, ListTaxExemptionsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTaxExemptionsCommandInput
|
|
8
|
-
extends ListTaxExemptionsRequest {}
|
|
4
|
+
export interface ListTaxExemptionsCommandInput extends ListTaxExemptionsRequest {}
|
|
9
5
|
export interface ListTaxExemptionsCommandOutput
|
|
10
|
-
extends ListTaxExemptionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTaxExemptionsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTaxExemptionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTaxExemptionsCommandInput
|
|
9
|
+
input: ListTaxExemptionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTaxExemptionsCommandInput,
|
|
17
12
|
ListTaxExemptionsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTaxRegistrationsRequest,
|
|
4
|
-
ListTaxRegistrationsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTaxRegistrationsRequest, ListTaxRegistrationsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTaxRegistrationsCommandInput
|
|
8
|
-
extends ListTaxRegistrationsRequest {}
|
|
4
|
+
export interface ListTaxRegistrationsCommandInput extends ListTaxRegistrationsRequest {}
|
|
9
5
|
export interface ListTaxRegistrationsCommandOutput
|
|
10
|
-
extends ListTaxRegistrationsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTaxRegistrationsResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTaxRegistrationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTaxRegistrationsCommandInput
|
|
9
|
+
input: ListTaxRegistrationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTaxRegistrationsCommandInput,
|
|
17
12
|
ListTaxRegistrationsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
PutSupplementalTaxRegistrationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutSupplementalTaxRegistrationCommandInput
|
|
8
|
-
extends PutSupplementalTaxRegistrationRequest {}
|
|
7
|
+
export interface PutSupplementalTaxRegistrationCommandInput extends PutSupplementalTaxRegistrationRequest {}
|
|
9
8
|
export interface PutSupplementalTaxRegistrationCommandOutput
|
|
10
|
-
extends PutSupplementalTaxRegistrationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends PutSupplementalTaxRegistrationResponse, __MetadataBearer {}
|
|
12
10
|
declare const PutSupplementalTaxRegistrationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: PutSupplementalTaxRegistrationCommandInput
|
|
12
|
+
input: PutSupplementalTaxRegistrationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
PutSupplementalTaxRegistrationCommandInput,
|
|
17
15
|
PutSupplementalTaxRegistrationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const PutSupplementalTaxRegistrationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: PutSupplementalTaxRegistrationCommandInput
|
|
21
|
+
input: PutSupplementalTaxRegistrationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
PutSupplementalTaxRegistrationCommandInput,
|
|
26
24
|
PutSupplementalTaxRegistrationCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutTaxExemptionRequest,
|
|
4
|
-
PutTaxExemptionResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutTaxExemptionRequest, PutTaxExemptionResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface PutTaxExemptionCommandInput extends PutTaxExemptionRequest {}
|
|
8
|
-
export interface PutTaxExemptionCommandOutput
|
|
9
|
-
extends PutTaxExemptionResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface PutTaxExemptionCommandOutput extends PutTaxExemptionResponse, __MetadataBearer {}
|
|
11
6
|
declare const PutTaxExemptionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: PutTaxExemptionCommandInput
|
|
8
|
+
input: PutTaxExemptionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
PutTaxExemptionCommandInput,
|
|
16
11
|
PutTaxExemptionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const PutTaxExemptionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: PutTaxExemptionCommandInput
|
|
17
|
+
input: PutTaxExemptionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
PutTaxExemptionCommandInput,
|
|
25
20
|
PutTaxExemptionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutTaxInheritanceRequest,
|
|
4
|
-
PutTaxInheritanceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutTaxInheritanceRequest, PutTaxInheritanceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutTaxInheritanceCommandInput
|
|
8
|
-
extends PutTaxInheritanceRequest {}
|
|
4
|
+
export interface PutTaxInheritanceCommandInput extends PutTaxInheritanceRequest {}
|
|
9
5
|
export interface PutTaxInheritanceCommandOutput
|
|
10
|
-
extends PutTaxInheritanceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PutTaxInheritanceResponse, __MetadataBearer {}
|
|
12
7
|
declare const PutTaxInheritanceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PutTaxInheritanceCommandInput
|
|
9
|
+
input: PutTaxInheritanceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PutTaxInheritanceCommandInput,
|
|
17
12
|
PutTaxInheritanceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutTaxRegistrationRequest,
|
|
4
|
-
PutTaxRegistrationResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutTaxRegistrationRequest, PutTaxRegistrationResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutTaxRegistrationCommandInput
|
|
8
|
-
extends PutTaxRegistrationRequest {}
|
|
4
|
+
export interface PutTaxRegistrationCommandInput extends PutTaxRegistrationRequest {}
|
|
9
5
|
export interface PutTaxRegistrationCommandOutput
|
|
10
|
-
extends PutTaxRegistrationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PutTaxRegistrationResponse, __MetadataBearer {}
|
|
12
7
|
declare const PutTaxRegistrationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PutTaxRegistrationCommandInput
|
|
9
|
+
input: PutTaxRegistrationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PutTaxRegistrationCommandInput,
|
|
17
12
|
PutTaxRegistrationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const PutTaxRegistrationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: PutTaxRegistrationCommandInput
|
|
18
|
+
input: PutTaxRegistrationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PutTaxRegistrationCommandInput,
|
|
26
21
|
PutTaxRegistrationCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface TaxSettingsExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -3,14 +3,12 @@ export declare const AddressRoleType: {
|
|
|
3
3
|
readonly CONTACT_ADDRESS: "ContactAddress";
|
|
4
4
|
readonly TAX_ADDRESS: "TaxAddress";
|
|
5
5
|
};
|
|
6
|
-
export type AddressRoleType =
|
|
7
|
-
(typeof AddressRoleType)[keyof typeof AddressRoleType];
|
|
6
|
+
export type AddressRoleType = (typeof AddressRoleType)[keyof typeof AddressRoleType];
|
|
8
7
|
export declare const ChileDocumentType: {
|
|
9
8
|
readonly INVOICE: "Invoice";
|
|
10
9
|
readonly RECEIPT: "Receipt";
|
|
11
10
|
};
|
|
12
|
-
export type ChileDocumentType =
|
|
13
|
-
(typeof ChileDocumentType)[keyof typeof ChileDocumentType];
|
|
11
|
+
export type ChileDocumentType = (typeof ChileDocumentType)[keyof typeof ChileDocumentType];
|
|
14
12
|
export declare const PersonType: {
|
|
15
13
|
readonly BUSINESS: "Business";
|
|
16
14
|
readonly LEGAL_PERSON: "Legal Person";
|
|
@@ -29,14 +27,12 @@ export declare const IsraelCustomerType: {
|
|
|
29
27
|
readonly BUSINESS: "Business";
|
|
30
28
|
readonly INDIVIDUAL: "Individual";
|
|
31
29
|
};
|
|
32
|
-
export type IsraelCustomerType =
|
|
33
|
-
(typeof IsraelCustomerType)[keyof typeof IsraelCustomerType];
|
|
30
|
+
export type IsraelCustomerType = (typeof IsraelCustomerType)[keyof typeof IsraelCustomerType];
|
|
34
31
|
export declare const IsraelDealerType: {
|
|
35
32
|
readonly AUTHORIZED: "Authorized";
|
|
36
33
|
readonly NON_AUTHORIZED: "Non-authorized";
|
|
37
34
|
};
|
|
38
|
-
export type IsraelDealerType =
|
|
39
|
-
(typeof IsraelDealerType)[keyof typeof IsraelDealerType];
|
|
35
|
+
export type IsraelDealerType = (typeof IsraelDealerType)[keyof typeof IsraelDealerType];
|
|
40
36
|
export declare const CustomerType: {
|
|
41
37
|
readonly BUSINESS: "Business";
|
|
42
38
|
readonly INDIVIDUAL: "Individual";
|
|
@@ -74,8 +70,7 @@ export declare const RegistrationType: {
|
|
|
74
70
|
readonly INTRA_EU: "Intra-EU";
|
|
75
71
|
readonly LOCAL: "Local";
|
|
76
72
|
};
|
|
77
|
-
export type RegistrationType =
|
|
78
|
-
(typeof RegistrationType)[keyof typeof RegistrationType];
|
|
73
|
+
export type RegistrationType = (typeof RegistrationType)[keyof typeof RegistrationType];
|
|
79
74
|
export declare const Industries: {
|
|
80
75
|
readonly BANKS: "Banks";
|
|
81
76
|
readonly CIRCULATING_ORG: "CirculatingOrg";
|
|
@@ -89,8 +84,7 @@ export declare const UkraineTrnType: {
|
|
|
89
84
|
readonly BUSINESS: "Business";
|
|
90
85
|
readonly INDIVIDUAL: "Individual";
|
|
91
86
|
};
|
|
92
|
-
export type UkraineTrnType =
|
|
93
|
-
(typeof UkraineTrnType)[keyof typeof UkraineTrnType];
|
|
87
|
+
export type UkraineTrnType = (typeof UkraineTrnType)[keyof typeof UkraineTrnType];
|
|
94
88
|
export declare const UzbekistanTaxRegistrationNumberType: {
|
|
95
89
|
readonly BUSINESS: "Business";
|
|
96
90
|
readonly INDIVIDUAL: "Individual";
|
|
@@ -108,8 +102,7 @@ export declare const TaxRegistrationType: {
|
|
|
108
102
|
readonly TIN: "TIN";
|
|
109
103
|
readonly VAT: "VAT";
|
|
110
104
|
};
|
|
111
|
-
export type TaxRegistrationType =
|
|
112
|
-
(typeof TaxRegistrationType)[keyof typeof TaxRegistrationType];
|
|
105
|
+
export type TaxRegistrationType = (typeof TaxRegistrationType)[keyof typeof TaxRegistrationType];
|
|
113
106
|
export declare const Sector: {
|
|
114
107
|
readonly BUSINESS: "Business";
|
|
115
108
|
readonly INDIVIDUAL: "Individual";
|
|
@@ -147,8 +140,7 @@ export declare const HeritageStatus: {
|
|
|
147
140
|
readonly OptIn: "OptIn";
|
|
148
141
|
readonly OptOut: "OptOut";
|
|
149
142
|
};
|
|
150
|
-
export type HeritageStatus =
|
|
151
|
-
(typeof HeritageStatus)[keyof typeof HeritageStatus];
|
|
143
|
+
export type HeritageStatus = (typeof HeritageStatus)[keyof typeof HeritageStatus];
|
|
152
144
|
export declare const SupplementalTaxRegistrationType: {
|
|
153
145
|
readonly VAT: "VAT";
|
|
154
146
|
};
|
|
@@ -5,16 +5,12 @@ import { TaxSettingsServiceException as __BaseException } from "./TaxSettingsSer
|
|
|
5
5
|
export declare class AccessDeniedException extends __BaseException {
|
|
6
6
|
readonly name: "AccessDeniedException";
|
|
7
7
|
readonly $fault: "client";
|
|
8
|
-
constructor(
|
|
9
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
-
);
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
11
9
|
}
|
|
12
10
|
export declare class AttachmentUploadException extends __BaseException {
|
|
13
11
|
readonly name: "AttachmentUploadException";
|
|
14
12
|
readonly $fault: "client";
|
|
15
|
-
constructor(
|
|
16
|
-
opts: __ExceptionOptionType<AttachmentUploadException, __BaseException>
|
|
17
|
-
);
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AttachmentUploadException, __BaseException>);
|
|
18
14
|
}
|
|
19
15
|
export declare class ConflictException extends __BaseException {
|
|
20
16
|
readonly name: "ConflictException";
|
|
@@ -26,34 +22,23 @@ export declare class InternalServerException extends __BaseException {
|
|
|
26
22
|
readonly name: "InternalServerException";
|
|
27
23
|
readonly $fault: "server";
|
|
28
24
|
errorCode: string | undefined;
|
|
29
|
-
constructor(
|
|
30
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
31
|
-
);
|
|
25
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
32
26
|
}
|
|
33
27
|
export declare class ValidationException extends __BaseException {
|
|
34
28
|
readonly name: "ValidationException";
|
|
35
29
|
readonly $fault: "client";
|
|
36
30
|
errorCode: ValidationExceptionErrorCode | undefined;
|
|
37
31
|
fieldList?: ValidationExceptionField[] | undefined;
|
|
38
|
-
constructor(
|
|
39
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
40
|
-
);
|
|
32
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
41
33
|
}
|
|
42
34
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
43
35
|
readonly name: "ResourceNotFoundException";
|
|
44
36
|
readonly $fault: "client";
|
|
45
37
|
errorCode: string | undefined;
|
|
46
|
-
constructor(
|
|
47
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
48
|
-
);
|
|
38
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
49
39
|
}
|
|
50
40
|
export declare class CaseCreationLimitExceededException extends __BaseException {
|
|
51
41
|
readonly name: "CaseCreationLimitExceededException";
|
|
52
42
|
readonly $fault: "client";
|
|
53
|
-
constructor(
|
|
54
|
-
opts: __ExceptionOptionType<
|
|
55
|
-
CaseCreationLimitExceededException,
|
|
56
|
-
__BaseException
|
|
57
|
-
>
|
|
58
|
-
);
|
|
43
|
+
constructor(opts: __ExceptionOptionType<CaseCreationLimitExceededException, __BaseException>);
|
|
59
44
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { TaxSettingsClient } from "../TaxSettingsClient";
|
|
3
|
-
export interface TaxSettingsPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface TaxSettingsPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: TaxSettingsClient;
|
|
6
5
|
}
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: TaxSettingsClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: TaxSettingsClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: TaxSettingsClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: TaxSettingsClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: TaxSettingsClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: TaxSettingsClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: TaxSettingsClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: TaxSettingsClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: TaxSettingsClientConfig) => {
|
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
25
|
) => Promise<Uint8Array>;
|
|
30
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: TaxSettingsClientConfig) => {
|
|
|
40
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
41
37
|
profile?: string;
|
|
42
38
|
defaultUserAgentProvider: (
|
|
43
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
44
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
45
41
|
credentialDefaultProvider:
|
|
46
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
47
|
-
| ((
|
|
48
|
-
_: unknown
|
|
49
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
50
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
46
|
logger: import("@smithy/types").Logger;
|
|
53
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
48
|
defaultsMode:
|
|
55
49
|
| import("@smithy/core/client").DefaultsMode
|
|
56
|
-
| import("@smithy/types").Provider<
|
|
57
|
-
import("@smithy/core/client").DefaultsMode
|
|
58
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
59
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?:
|
|
61
|
-
|
|
62
|
-
| undefined
|
|
63
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
67
54
|
endpoint?:
|
|
68
55
|
| ((
|
|
69
56
|
| string
|
|
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: TaxSettingsClientConfig) => {
|
|
|
85
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
86
73
|
context?: {
|
|
87
74
|
logger?: import("@smithy/types").Logger;
|
|
88
|
-
}
|
|
75
|
+
},
|
|
89
76
|
) => import("@smithy/types").EndpointV2;
|
|
90
77
|
tls?: boolean;
|
|
91
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: TaxSettingsClientConfig) => {
|
|
|
98
85
|
signer?:
|
|
99
86
|
| import("@smithy/types").RequestSigner
|
|
100
87
|
| ((
|
|
101
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
102
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
90
|
signingEscapePath?: boolean;
|
|
104
91
|
systemClockOffset?: number;
|
|
105
92
|
signingRegion?: string;
|
|
106
93
|
signerConstructor?: new (
|
|
107
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
96
|
) => import("@smithy/types").RequestSigner;
|
|
110
97
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: TaxSettingsClientConfig) => {
|
|
|
9
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TaxSettingsHttpAuthSchemeProvider;
|