@aws-sdk/client-taxsettings 3.693.0 → 3.699.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.
Files changed (55) hide show
  1. package/README.md +55 -7
  2. package/dist-cjs/TaxSettings.js +12 -0
  3. package/dist-cjs/commands/BatchGetTaxExemptionsCommand.js +26 -0
  4. package/dist-cjs/commands/GetTaxExemptionTypesCommand.js +26 -0
  5. package/dist-cjs/commands/GetTaxInheritanceCommand.js +26 -0
  6. package/dist-cjs/commands/ListTaxExemptionsCommand.js +26 -0
  7. package/dist-cjs/commands/PutTaxExemptionCommand.js +26 -0
  8. package/dist-cjs/commands/PutTaxInheritanceCommand.js +26 -0
  9. package/dist-cjs/commands/index.js +6 -0
  10. package/dist-cjs/models/models_0.js +50 -1
  11. package/dist-cjs/pagination/ListTaxExemptionsPaginator.js +7 -0
  12. package/dist-cjs/pagination/index.js +1 -0
  13. package/dist-cjs/protocols/Aws_restJson1.js +296 -3
  14. package/dist-es/TaxSettings.js +12 -0
  15. package/dist-es/commands/BatchGetTaxExemptionsCommand.js +22 -0
  16. package/dist-es/commands/GetTaxExemptionTypesCommand.js +22 -0
  17. package/dist-es/commands/GetTaxInheritanceCommand.js +22 -0
  18. package/dist-es/commands/ListTaxExemptionsCommand.js +22 -0
  19. package/dist-es/commands/PutTaxExemptionCommand.js +22 -0
  20. package/dist-es/commands/PutTaxInheritanceCommand.js +22 -0
  21. package/dist-es/commands/index.js +6 -0
  22. package/dist-es/models/models_0.js +46 -0
  23. package/dist-es/pagination/ListTaxExemptionsPaginator.js +4 -0
  24. package/dist-es/pagination/index.js +1 -0
  25. package/dist-es/protocols/Aws_restJson1.js +285 -4
  26. package/dist-types/TaxSettings.d.ts +46 -0
  27. package/dist-types/TaxSettingsClient.d.ts +8 -2
  28. package/dist-types/commands/BatchGetTaxExemptionsCommand.d.ts +115 -0
  29. package/dist-types/commands/BatchPutTaxRegistrationCommand.d.ts +4 -0
  30. package/dist-types/commands/GetTaxExemptionTypesCommand.d.ts +91 -0
  31. package/dist-types/commands/GetTaxInheritanceCommand.d.ts +80 -0
  32. package/dist-types/commands/GetTaxRegistrationDocumentCommand.d.ts +1 -0
  33. package/dist-types/commands/ListTaxExemptionsCommand.d.ts +112 -0
  34. package/dist-types/commands/PutTaxExemptionCommand.d.ts +105 -0
  35. package/dist-types/commands/PutTaxInheritanceCommand.d.ts +83 -0
  36. package/dist-types/commands/PutTaxRegistrationCommand.d.ts +4 -0
  37. package/dist-types/commands/index.d.ts +6 -0
  38. package/dist-types/models/models_0.d.ts +404 -19
  39. package/dist-types/pagination/ListTaxExemptionsPaginator.d.ts +7 -0
  40. package/dist-types/pagination/index.d.ts +1 -0
  41. package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
  42. package/dist-types/ts3.4/TaxSettings.d.ts +106 -0
  43. package/dist-types/ts3.4/TaxSettingsClient.d.ts +36 -0
  44. package/dist-types/ts3.4/commands/BatchGetTaxExemptionsCommand.d.ts +51 -0
  45. package/dist-types/ts3.4/commands/GetTaxExemptionTypesCommand.d.ts +51 -0
  46. package/dist-types/ts3.4/commands/GetTaxInheritanceCommand.d.ts +51 -0
  47. package/dist-types/ts3.4/commands/ListTaxExemptionsCommand.d.ts +51 -0
  48. package/dist-types/ts3.4/commands/PutTaxExemptionCommand.d.ts +50 -0
  49. package/dist-types/ts3.4/commands/PutTaxInheritanceCommand.d.ts +51 -0
  50. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  51. package/dist-types/ts3.4/models/models_0.d.ts +117 -10
  52. package/dist-types/ts3.4/pagination/ListTaxExemptionsPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  54. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
  55. package/package.json +35 -35
@@ -3,6 +3,10 @@ import {
3
3
  BatchDeleteTaxRegistrationCommandInput,
4
4
  BatchDeleteTaxRegistrationCommandOutput,
5
5
  } from "./commands/BatchDeleteTaxRegistrationCommand";
6
+ import {
7
+ BatchGetTaxExemptionsCommandInput,
8
+ BatchGetTaxExemptionsCommandOutput,
9
+ } from "./commands/BatchGetTaxExemptionsCommand";
6
10
  import {
7
11
  BatchPutTaxRegistrationCommandInput,
8
12
  BatchPutTaxRegistrationCommandOutput,
@@ -15,6 +19,14 @@ import {
15
19
  DeleteTaxRegistrationCommandInput,
16
20
  DeleteTaxRegistrationCommandOutput,
17
21
  } from "./commands/DeleteTaxRegistrationCommand";
22
+ import {
23
+ GetTaxExemptionTypesCommandInput,
24
+ GetTaxExemptionTypesCommandOutput,
25
+ } from "./commands/GetTaxExemptionTypesCommand";
26
+ import {
27
+ GetTaxInheritanceCommandInput,
28
+ GetTaxInheritanceCommandOutput,
29
+ } from "./commands/GetTaxInheritanceCommand";
18
30
  import {
19
31
  GetTaxRegistrationCommandInput,
20
32
  GetTaxRegistrationCommandOutput,
@@ -27,6 +39,10 @@ import {
27
39
  ListSupplementalTaxRegistrationsCommandInput,
28
40
  ListSupplementalTaxRegistrationsCommandOutput,
29
41
  } from "./commands/ListSupplementalTaxRegistrationsCommand";
42
+ import {
43
+ ListTaxExemptionsCommandInput,
44
+ ListTaxExemptionsCommandOutput,
45
+ } from "./commands/ListTaxExemptionsCommand";
30
46
  import {
31
47
  ListTaxRegistrationsCommandInput,
32
48
  ListTaxRegistrationsCommandOutput,
@@ -35,6 +51,14 @@ import {
35
51
  PutSupplementalTaxRegistrationCommandInput,
36
52
  PutSupplementalTaxRegistrationCommandOutput,
37
53
  } from "./commands/PutSupplementalTaxRegistrationCommand";
54
+ import {
55
+ PutTaxExemptionCommandInput,
56
+ PutTaxExemptionCommandOutput,
57
+ } from "./commands/PutTaxExemptionCommand";
58
+ import {
59
+ PutTaxInheritanceCommandInput,
60
+ PutTaxInheritanceCommandOutput,
61
+ } from "./commands/PutTaxInheritanceCommand";
38
62
  import {
39
63
  PutTaxRegistrationCommandInput,
40
64
  PutTaxRegistrationCommandOutput,
@@ -54,6 +78,19 @@ export interface TaxSettings {
54
78
  options: __HttpHandlerOptions,
55
79
  cb: (err: any, data?: BatchDeleteTaxRegistrationCommandOutput) => void
56
80
  ): void;
81
+ batchGetTaxExemptions(
82
+ args: BatchGetTaxExemptionsCommandInput,
83
+ options?: __HttpHandlerOptions
84
+ ): Promise<BatchGetTaxExemptionsCommandOutput>;
85
+ batchGetTaxExemptions(
86
+ args: BatchGetTaxExemptionsCommandInput,
87
+ cb: (err: any, data?: BatchGetTaxExemptionsCommandOutput) => void
88
+ ): void;
89
+ batchGetTaxExemptions(
90
+ args: BatchGetTaxExemptionsCommandInput,
91
+ options: __HttpHandlerOptions,
92
+ cb: (err: any, data?: BatchGetTaxExemptionsCommandOutput) => void
93
+ ): void;
57
94
  batchPutTaxRegistration(
58
95
  args: BatchPutTaxRegistrationCommandInput,
59
96
  options?: __HttpHandlerOptions
@@ -100,6 +137,34 @@ export interface TaxSettings {
100
137
  options: __HttpHandlerOptions,
101
138
  cb: (err: any, data?: DeleteTaxRegistrationCommandOutput) => void
102
139
  ): void;
140
+ getTaxExemptionTypes(): Promise<GetTaxExemptionTypesCommandOutput>;
141
+ getTaxExemptionTypes(
142
+ args: GetTaxExemptionTypesCommandInput,
143
+ options?: __HttpHandlerOptions
144
+ ): Promise<GetTaxExemptionTypesCommandOutput>;
145
+ getTaxExemptionTypes(
146
+ args: GetTaxExemptionTypesCommandInput,
147
+ cb: (err: any, data?: GetTaxExemptionTypesCommandOutput) => void
148
+ ): void;
149
+ getTaxExemptionTypes(
150
+ args: GetTaxExemptionTypesCommandInput,
151
+ options: __HttpHandlerOptions,
152
+ cb: (err: any, data?: GetTaxExemptionTypesCommandOutput) => void
153
+ ): void;
154
+ getTaxInheritance(): Promise<GetTaxInheritanceCommandOutput>;
155
+ getTaxInheritance(
156
+ args: GetTaxInheritanceCommandInput,
157
+ options?: __HttpHandlerOptions
158
+ ): Promise<GetTaxInheritanceCommandOutput>;
159
+ getTaxInheritance(
160
+ args: GetTaxInheritanceCommandInput,
161
+ cb: (err: any, data?: GetTaxInheritanceCommandOutput) => void
162
+ ): void;
163
+ getTaxInheritance(
164
+ args: GetTaxInheritanceCommandInput,
165
+ options: __HttpHandlerOptions,
166
+ cb: (err: any, data?: GetTaxInheritanceCommandOutput) => void
167
+ ): void;
103
168
  getTaxRegistration(): Promise<GetTaxRegistrationCommandOutput>;
104
169
  getTaxRegistration(
105
170
  args: GetTaxRegistrationCommandInput,
@@ -141,6 +206,20 @@ export interface TaxSettings {
141
206
  options: __HttpHandlerOptions,
142
207
  cb: (err: any, data?: ListSupplementalTaxRegistrationsCommandOutput) => void
143
208
  ): void;
209
+ listTaxExemptions(): Promise<ListTaxExemptionsCommandOutput>;
210
+ listTaxExemptions(
211
+ args: ListTaxExemptionsCommandInput,
212
+ options?: __HttpHandlerOptions
213
+ ): Promise<ListTaxExemptionsCommandOutput>;
214
+ listTaxExemptions(
215
+ args: ListTaxExemptionsCommandInput,
216
+ cb: (err: any, data?: ListTaxExemptionsCommandOutput) => void
217
+ ): void;
218
+ listTaxExemptions(
219
+ args: ListTaxExemptionsCommandInput,
220
+ options: __HttpHandlerOptions,
221
+ cb: (err: any, data?: ListTaxExemptionsCommandOutput) => void
222
+ ): void;
144
223
  listTaxRegistrations(): Promise<ListTaxRegistrationsCommandOutput>;
145
224
  listTaxRegistrations(
146
225
  args: ListTaxRegistrationsCommandInput,
@@ -168,6 +247,33 @@ export interface TaxSettings {
168
247
  options: __HttpHandlerOptions,
169
248
  cb: (err: any, data?: PutSupplementalTaxRegistrationCommandOutput) => void
170
249
  ): void;
250
+ putTaxExemption(
251
+ args: PutTaxExemptionCommandInput,
252
+ options?: __HttpHandlerOptions
253
+ ): Promise<PutTaxExemptionCommandOutput>;
254
+ putTaxExemption(
255
+ args: PutTaxExemptionCommandInput,
256
+ cb: (err: any, data?: PutTaxExemptionCommandOutput) => void
257
+ ): void;
258
+ putTaxExemption(
259
+ args: PutTaxExemptionCommandInput,
260
+ options: __HttpHandlerOptions,
261
+ cb: (err: any, data?: PutTaxExemptionCommandOutput) => void
262
+ ): void;
263
+ putTaxInheritance(): Promise<PutTaxInheritanceCommandOutput>;
264
+ putTaxInheritance(
265
+ args: PutTaxInheritanceCommandInput,
266
+ options?: __HttpHandlerOptions
267
+ ): Promise<PutTaxInheritanceCommandOutput>;
268
+ putTaxInheritance(
269
+ args: PutTaxInheritanceCommandInput,
270
+ cb: (err: any, data?: PutTaxInheritanceCommandOutput) => void
271
+ ): void;
272
+ putTaxInheritance(
273
+ args: PutTaxInheritanceCommandInput,
274
+ options: __HttpHandlerOptions,
275
+ cb: (err: any, data?: PutTaxInheritanceCommandOutput) => void
276
+ ): void;
171
277
  putTaxRegistration(
172
278
  args: PutTaxRegistrationCommandInput,
173
279
  options?: __HttpHandlerOptions
@@ -49,6 +49,10 @@ import {
49
49
  BatchDeleteTaxRegistrationCommandInput,
50
50
  BatchDeleteTaxRegistrationCommandOutput,
51
51
  } from "./commands/BatchDeleteTaxRegistrationCommand";
52
+ import {
53
+ BatchGetTaxExemptionsCommandInput,
54
+ BatchGetTaxExemptionsCommandOutput,
55
+ } from "./commands/BatchGetTaxExemptionsCommand";
52
56
  import {
53
57
  BatchPutTaxRegistrationCommandInput,
54
58
  BatchPutTaxRegistrationCommandOutput,
@@ -61,6 +65,14 @@ import {
61
65
  DeleteTaxRegistrationCommandInput,
62
66
  DeleteTaxRegistrationCommandOutput,
63
67
  } from "./commands/DeleteTaxRegistrationCommand";
68
+ import {
69
+ GetTaxExemptionTypesCommandInput,
70
+ GetTaxExemptionTypesCommandOutput,
71
+ } from "./commands/GetTaxExemptionTypesCommand";
72
+ import {
73
+ GetTaxInheritanceCommandInput,
74
+ GetTaxInheritanceCommandOutput,
75
+ } from "./commands/GetTaxInheritanceCommand";
64
76
  import {
65
77
  GetTaxRegistrationCommandInput,
66
78
  GetTaxRegistrationCommandOutput,
@@ -73,6 +85,10 @@ import {
73
85
  ListSupplementalTaxRegistrationsCommandInput,
74
86
  ListSupplementalTaxRegistrationsCommandOutput,
75
87
  } from "./commands/ListSupplementalTaxRegistrationsCommand";
88
+ import {
89
+ ListTaxExemptionsCommandInput,
90
+ ListTaxExemptionsCommandOutput,
91
+ } from "./commands/ListTaxExemptionsCommand";
76
92
  import {
77
93
  ListTaxRegistrationsCommandInput,
78
94
  ListTaxRegistrationsCommandOutput,
@@ -81,6 +97,14 @@ import {
81
97
  PutSupplementalTaxRegistrationCommandInput,
82
98
  PutSupplementalTaxRegistrationCommandOutput,
83
99
  } from "./commands/PutSupplementalTaxRegistrationCommand";
100
+ import {
101
+ PutTaxExemptionCommandInput,
102
+ PutTaxExemptionCommandOutput,
103
+ } from "./commands/PutTaxExemptionCommand";
104
+ import {
105
+ PutTaxInheritanceCommandInput,
106
+ PutTaxInheritanceCommandOutput,
107
+ } from "./commands/PutTaxInheritanceCommand";
84
108
  import {
85
109
  PutTaxRegistrationCommandInput,
86
110
  PutTaxRegistrationCommandOutput,
@@ -94,25 +118,37 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
94
118
  export { __Client };
95
119
  export type ServiceInputTypes =
96
120
  | BatchDeleteTaxRegistrationCommandInput
121
+ | BatchGetTaxExemptionsCommandInput
97
122
  | BatchPutTaxRegistrationCommandInput
98
123
  | DeleteSupplementalTaxRegistrationCommandInput
99
124
  | DeleteTaxRegistrationCommandInput
125
+ | GetTaxExemptionTypesCommandInput
126
+ | GetTaxInheritanceCommandInput
100
127
  | GetTaxRegistrationCommandInput
101
128
  | GetTaxRegistrationDocumentCommandInput
102
129
  | ListSupplementalTaxRegistrationsCommandInput
130
+ | ListTaxExemptionsCommandInput
103
131
  | ListTaxRegistrationsCommandInput
104
132
  | PutSupplementalTaxRegistrationCommandInput
133
+ | PutTaxExemptionCommandInput
134
+ | PutTaxInheritanceCommandInput
105
135
  | PutTaxRegistrationCommandInput;
106
136
  export type ServiceOutputTypes =
107
137
  | BatchDeleteTaxRegistrationCommandOutput
138
+ | BatchGetTaxExemptionsCommandOutput
108
139
  | BatchPutTaxRegistrationCommandOutput
109
140
  | DeleteSupplementalTaxRegistrationCommandOutput
110
141
  | DeleteTaxRegistrationCommandOutput
142
+ | GetTaxExemptionTypesCommandOutput
143
+ | GetTaxInheritanceCommandOutput
111
144
  | GetTaxRegistrationCommandOutput
112
145
  | GetTaxRegistrationDocumentCommandOutput
113
146
  | ListSupplementalTaxRegistrationsCommandOutput
147
+ | ListTaxExemptionsCommandOutput
114
148
  | ListTaxRegistrationsCommandOutput
115
149
  | PutSupplementalTaxRegistrationCommandOutput
150
+ | PutTaxExemptionCommandOutput
151
+ | PutTaxInheritanceCommandOutput
116
152
  | PutTaxRegistrationCommandOutput;
117
153
  export interface ClientDefaults
118
154
  extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BatchGetTaxExemptionsRequest,
5
+ BatchGetTaxExemptionsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TaxSettingsClientResolvedConfig,
11
+ } from "../TaxSettingsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface BatchGetTaxExemptionsCommandInput
15
+ extends BatchGetTaxExemptionsRequest {}
16
+ export interface BatchGetTaxExemptionsCommandOutput
17
+ extends BatchGetTaxExemptionsResponse,
18
+ __MetadataBearer {}
19
+ declare const BatchGetTaxExemptionsCommand_base: {
20
+ new (
21
+ input: BatchGetTaxExemptionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ BatchGetTaxExemptionsCommandInput,
24
+ BatchGetTaxExemptionsCommandOutput,
25
+ TaxSettingsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: BatchGetTaxExemptionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ BatchGetTaxExemptionsCommandInput,
33
+ BatchGetTaxExemptionsCommandOutput,
34
+ TaxSettingsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class BatchGetTaxExemptionsCommand extends BatchGetTaxExemptionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: BatchGetTaxExemptionsRequest;
44
+ output: BatchGetTaxExemptionsResponse;
45
+ };
46
+ sdk: {
47
+ input: BatchGetTaxExemptionsCommandInput;
48
+ output: BatchGetTaxExemptionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetTaxExemptionTypesRequest,
5
+ GetTaxExemptionTypesResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TaxSettingsClientResolvedConfig,
11
+ } from "../TaxSettingsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTaxExemptionTypesCommandInput
15
+ extends GetTaxExemptionTypesRequest {}
16
+ export interface GetTaxExemptionTypesCommandOutput
17
+ extends GetTaxExemptionTypesResponse,
18
+ __MetadataBearer {}
19
+ declare const GetTaxExemptionTypesCommand_base: {
20
+ new (
21
+ input: GetTaxExemptionTypesCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetTaxExemptionTypesCommandInput,
24
+ GetTaxExemptionTypesCommandOutput,
25
+ TaxSettingsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [GetTaxExemptionTypesCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetTaxExemptionTypesCommandInput,
33
+ GetTaxExemptionTypesCommandOutput,
34
+ TaxSettingsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetTaxExemptionTypesCommand extends GetTaxExemptionTypesCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: {};
44
+ output: GetTaxExemptionTypesResponse;
45
+ };
46
+ sdk: {
47
+ input: GetTaxExemptionTypesCommandInput;
48
+ output: GetTaxExemptionTypesCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetTaxInheritanceRequest,
5
+ GetTaxInheritanceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TaxSettingsClientResolvedConfig,
11
+ } from "../TaxSettingsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTaxInheritanceCommandInput
15
+ extends GetTaxInheritanceRequest {}
16
+ export interface GetTaxInheritanceCommandOutput
17
+ extends GetTaxInheritanceResponse,
18
+ __MetadataBearer {}
19
+ declare const GetTaxInheritanceCommand_base: {
20
+ new (
21
+ input: GetTaxInheritanceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetTaxInheritanceCommandInput,
24
+ GetTaxInheritanceCommandOutput,
25
+ TaxSettingsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [GetTaxInheritanceCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetTaxInheritanceCommandInput,
33
+ GetTaxInheritanceCommandOutput,
34
+ TaxSettingsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetTaxInheritanceCommand extends GetTaxInheritanceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: {};
44
+ output: GetTaxInheritanceResponse;
45
+ };
46
+ sdk: {
47
+ input: GetTaxInheritanceCommandInput;
48
+ output: GetTaxInheritanceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListTaxExemptionsRequest,
5
+ ListTaxExemptionsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TaxSettingsClientResolvedConfig,
11
+ } from "../TaxSettingsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTaxExemptionsCommandInput
15
+ extends ListTaxExemptionsRequest {}
16
+ export interface ListTaxExemptionsCommandOutput
17
+ extends ListTaxExemptionsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListTaxExemptionsCommand_base: {
20
+ new (
21
+ input: ListTaxExemptionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListTaxExemptionsCommandInput,
24
+ ListTaxExemptionsCommandOutput,
25
+ TaxSettingsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListTaxExemptionsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListTaxExemptionsCommandInput,
33
+ ListTaxExemptionsCommandOutput,
34
+ TaxSettingsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListTaxExemptionsCommand extends ListTaxExemptionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTaxExemptionsRequest;
44
+ output: ListTaxExemptionsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTaxExemptionsCommandInput;
48
+ output: ListTaxExemptionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ PutTaxExemptionRequest,
5
+ PutTaxExemptionResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TaxSettingsClientResolvedConfig,
11
+ } from "../TaxSettingsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface PutTaxExemptionCommandInput extends PutTaxExemptionRequest {}
15
+ export interface PutTaxExemptionCommandOutput
16
+ extends PutTaxExemptionResponse,
17
+ __MetadataBearer {}
18
+ declare const PutTaxExemptionCommand_base: {
19
+ new (
20
+ input: PutTaxExemptionCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ PutTaxExemptionCommandInput,
23
+ PutTaxExemptionCommandOutput,
24
+ TaxSettingsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: PutTaxExemptionCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ PutTaxExemptionCommandInput,
32
+ PutTaxExemptionCommandOutput,
33
+ TaxSettingsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class PutTaxExemptionCommand extends PutTaxExemptionCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: PutTaxExemptionRequest;
43
+ output: PutTaxExemptionResponse;
44
+ };
45
+ sdk: {
46
+ input: PutTaxExemptionCommandInput;
47
+ output: PutTaxExemptionCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ PutTaxInheritanceRequest,
5
+ PutTaxInheritanceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TaxSettingsClientResolvedConfig,
11
+ } from "../TaxSettingsClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface PutTaxInheritanceCommandInput
15
+ extends PutTaxInheritanceRequest {}
16
+ export interface PutTaxInheritanceCommandOutput
17
+ extends PutTaxInheritanceResponse,
18
+ __MetadataBearer {}
19
+ declare const PutTaxInheritanceCommand_base: {
20
+ new (
21
+ input: PutTaxInheritanceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ PutTaxInheritanceCommandInput,
24
+ PutTaxInheritanceCommandOutput,
25
+ TaxSettingsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [PutTaxInheritanceCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ PutTaxInheritanceCommandInput,
33
+ PutTaxInheritanceCommandOutput,
34
+ TaxSettingsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class PutTaxInheritanceCommand extends PutTaxInheritanceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: PutTaxInheritanceRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: PutTaxInheritanceCommandInput;
48
+ output: PutTaxInheritanceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -1,10 +1,16 @@
1
1
  export * from "./BatchDeleteTaxRegistrationCommand";
2
+ export * from "./BatchGetTaxExemptionsCommand";
2
3
  export * from "./BatchPutTaxRegistrationCommand";
3
4
  export * from "./DeleteSupplementalTaxRegistrationCommand";
4
5
  export * from "./DeleteTaxRegistrationCommand";
6
+ export * from "./GetTaxExemptionTypesCommand";
7
+ export * from "./GetTaxInheritanceCommand";
5
8
  export * from "./GetTaxRegistrationCommand";
6
9
  export * from "./GetTaxRegistrationDocumentCommand";
7
10
  export * from "./ListSupplementalTaxRegistrationsCommand";
11
+ export * from "./ListTaxExemptionsCommand";
8
12
  export * from "./ListTaxRegistrationsCommand";
9
13
  export * from "./PutSupplementalTaxRegistrationCommand";
14
+ export * from "./PutTaxExemptionCommand";
15
+ export * from "./PutTaxInheritanceCommand";
10
16
  export * from "./PutTaxRegistrationCommand";