@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.
- package/README.md +55 -7
- package/dist-cjs/TaxSettings.js +12 -0
- package/dist-cjs/commands/BatchGetTaxExemptionsCommand.js +26 -0
- package/dist-cjs/commands/GetTaxExemptionTypesCommand.js +26 -0
- package/dist-cjs/commands/GetTaxInheritanceCommand.js +26 -0
- package/dist-cjs/commands/ListTaxExemptionsCommand.js +26 -0
- package/dist-cjs/commands/PutTaxExemptionCommand.js +26 -0
- package/dist-cjs/commands/PutTaxInheritanceCommand.js +26 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +50 -1
- package/dist-cjs/pagination/ListTaxExemptionsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +296 -3
- package/dist-es/TaxSettings.js +12 -0
- package/dist-es/commands/BatchGetTaxExemptionsCommand.js +22 -0
- package/dist-es/commands/GetTaxExemptionTypesCommand.js +22 -0
- package/dist-es/commands/GetTaxInheritanceCommand.js +22 -0
- package/dist-es/commands/ListTaxExemptionsCommand.js +22 -0
- package/dist-es/commands/PutTaxExemptionCommand.js +22 -0
- package/dist-es/commands/PutTaxInheritanceCommand.js +22 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +46 -0
- package/dist-es/pagination/ListTaxExemptionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +285 -4
- package/dist-types/TaxSettings.d.ts +46 -0
- package/dist-types/TaxSettingsClient.d.ts +8 -2
- package/dist-types/commands/BatchGetTaxExemptionsCommand.d.ts +115 -0
- package/dist-types/commands/BatchPutTaxRegistrationCommand.d.ts +4 -0
- package/dist-types/commands/GetTaxExemptionTypesCommand.d.ts +91 -0
- package/dist-types/commands/GetTaxInheritanceCommand.d.ts +80 -0
- package/dist-types/commands/GetTaxRegistrationDocumentCommand.d.ts +1 -0
- package/dist-types/commands/ListTaxExemptionsCommand.d.ts +112 -0
- package/dist-types/commands/PutTaxExemptionCommand.d.ts +105 -0
- package/dist-types/commands/PutTaxInheritanceCommand.d.ts +83 -0
- package/dist-types/commands/PutTaxRegistrationCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +404 -19
- package/dist-types/pagination/ListTaxExemptionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/TaxSettings.d.ts +106 -0
- package/dist-types/ts3.4/TaxSettingsClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/BatchGetTaxExemptionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTaxExemptionTypesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTaxInheritanceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTaxExemptionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutTaxExemptionCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PutTaxInheritanceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +117 -10
- package/dist-types/ts3.4/pagination/ListTaxExemptionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +35 -35
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { TaxSettingsServiceException as __BaseException } from "./TaxSettingsServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
3
10
|
export interface Address {
|
|
4
11
|
addressLine1: string | undefined;
|
|
5
12
|
addressLine2?: string | undefined;
|
|
@@ -236,6 +243,17 @@ export interface AdditionalInfoRequest {
|
|
|
236
243
|
polandAdditionalInfo?: PolandAdditionalInfo | undefined;
|
|
237
244
|
saudiArabiaAdditionalInfo?: SaudiArabiaAdditionalInfo | undefined;
|
|
238
245
|
}
|
|
246
|
+
export declare class AttachmentUploadException extends __BaseException {
|
|
247
|
+
readonly name: "AttachmentUploadException";
|
|
248
|
+
readonly $fault: "client";
|
|
249
|
+
constructor(
|
|
250
|
+
opts: __ExceptionOptionType<AttachmentUploadException, __BaseException>
|
|
251
|
+
);
|
|
252
|
+
}
|
|
253
|
+
export interface Authority {
|
|
254
|
+
country: string | undefined;
|
|
255
|
+
state?: string | undefined;
|
|
256
|
+
}
|
|
239
257
|
export interface BatchDeleteTaxRegistrationRequest {
|
|
240
258
|
accountIds: string[] | undefined;
|
|
241
259
|
}
|
|
@@ -282,12 +300,59 @@ export declare class ValidationException extends __BaseException {
|
|
|
282
300
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
283
301
|
);
|
|
284
302
|
}
|
|
303
|
+
export interface BatchGetTaxExemptionsRequest {
|
|
304
|
+
accountIds: string[] | undefined;
|
|
305
|
+
}
|
|
306
|
+
export declare const EntityExemptionAccountStatus: {
|
|
307
|
+
readonly Expired: "Expired";
|
|
308
|
+
readonly None: "None";
|
|
309
|
+
readonly Pending: "Pending";
|
|
310
|
+
readonly Valid: "Valid";
|
|
311
|
+
};
|
|
312
|
+
export type EntityExemptionAccountStatus =
|
|
313
|
+
(typeof EntityExemptionAccountStatus)[keyof typeof EntityExemptionAccountStatus];
|
|
314
|
+
export interface TaxExemptionType {
|
|
315
|
+
displayName?: string | undefined;
|
|
316
|
+
description?: string | undefined;
|
|
317
|
+
applicableJurisdictions?: Authority[] | undefined;
|
|
318
|
+
}
|
|
319
|
+
export interface TaxExemption {
|
|
320
|
+
authority: Authority | undefined;
|
|
321
|
+
taxExemptionType: TaxExemptionType | undefined;
|
|
322
|
+
effectiveDate?: Date | undefined;
|
|
323
|
+
expirationDate?: Date | undefined;
|
|
324
|
+
systemEffectiveDate?: Date | undefined;
|
|
325
|
+
status?: EntityExemptionAccountStatus | undefined;
|
|
326
|
+
}
|
|
327
|
+
export interface TaxExemptionDetails {
|
|
328
|
+
taxExemptions?: TaxExemption[] | undefined;
|
|
329
|
+
heritageObtainedDetails?: boolean | undefined;
|
|
330
|
+
heritageObtainedParentEntity?: string | undefined;
|
|
331
|
+
heritageObtainedReason?: string | undefined;
|
|
332
|
+
}
|
|
333
|
+
export interface BatchGetTaxExemptionsResponse {
|
|
334
|
+
taxExemptionDetailsMap?: Record<string, TaxExemptionDetails> | undefined;
|
|
335
|
+
failedAccounts?: string[] | undefined;
|
|
336
|
+
}
|
|
337
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
338
|
+
readonly name: "ResourceNotFoundException";
|
|
339
|
+
readonly $fault: "client";
|
|
340
|
+
errorCode: string | undefined;
|
|
341
|
+
constructor(
|
|
342
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
343
|
+
);
|
|
344
|
+
}
|
|
345
|
+
export interface TaxRegistrationDocFile {
|
|
346
|
+
fileName: string | undefined;
|
|
347
|
+
fileContent: Uint8Array | undefined;
|
|
348
|
+
}
|
|
285
349
|
export interface SourceS3Location {
|
|
286
350
|
bucket: string | undefined;
|
|
287
351
|
key: string | undefined;
|
|
288
352
|
}
|
|
289
353
|
export interface TaxRegistrationDocument {
|
|
290
|
-
s3Location
|
|
354
|
+
s3Location?: SourceS3Location | undefined;
|
|
355
|
+
file?: TaxRegistrationDocFile | undefined;
|
|
291
356
|
}
|
|
292
357
|
export interface VerificationDetails {
|
|
293
358
|
dateOfBirth?: string | undefined;
|
|
@@ -316,18 +381,20 @@ export interface BatchPutTaxRegistrationResponse {
|
|
|
316
381
|
status?: TaxRegistrationStatus | undefined;
|
|
317
382
|
errors: BatchPutTaxRegistrationError[] | undefined;
|
|
318
383
|
}
|
|
319
|
-
export
|
|
320
|
-
|
|
321
|
-
}
|
|
322
|
-
export interface DeleteSupplementalTaxRegistrationResponse {}
|
|
323
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
324
|
-
readonly name: "ResourceNotFoundException";
|
|
384
|
+
export declare class CaseCreationLimitExceededException extends __BaseException {
|
|
385
|
+
readonly name: "CaseCreationLimitExceededException";
|
|
325
386
|
readonly $fault: "client";
|
|
326
|
-
errorCode: string | undefined;
|
|
327
387
|
constructor(
|
|
328
|
-
opts: __ExceptionOptionType<
|
|
388
|
+
opts: __ExceptionOptionType<
|
|
389
|
+
CaseCreationLimitExceededException,
|
|
390
|
+
__BaseException
|
|
391
|
+
>
|
|
329
392
|
);
|
|
330
393
|
}
|
|
394
|
+
export interface DeleteSupplementalTaxRegistrationRequest {
|
|
395
|
+
authorityId: string | undefined;
|
|
396
|
+
}
|
|
397
|
+
export interface DeleteSupplementalTaxRegistrationResponse {}
|
|
331
398
|
export interface DeleteTaxRegistrationRequest {
|
|
332
399
|
accountId?: string | undefined;
|
|
333
400
|
}
|
|
@@ -336,6 +403,24 @@ export interface DestinationS3Location {
|
|
|
336
403
|
bucket: string | undefined;
|
|
337
404
|
prefix?: string | undefined;
|
|
338
405
|
}
|
|
406
|
+
export interface ExemptionCertificate {
|
|
407
|
+
documentName: string | undefined;
|
|
408
|
+
documentFile: Uint8Array | undefined;
|
|
409
|
+
}
|
|
410
|
+
export interface GetTaxExemptionTypesRequest {}
|
|
411
|
+
export interface GetTaxExemptionTypesResponse {
|
|
412
|
+
taxExemptionTypes?: TaxExemptionType[] | undefined;
|
|
413
|
+
}
|
|
414
|
+
export interface GetTaxInheritanceRequest {}
|
|
415
|
+
export declare const HeritageStatus: {
|
|
416
|
+
readonly OptIn: "OptIn";
|
|
417
|
+
readonly OptOut: "OptOut";
|
|
418
|
+
};
|
|
419
|
+
export type HeritageStatus =
|
|
420
|
+
(typeof HeritageStatus)[keyof typeof HeritageStatus];
|
|
421
|
+
export interface GetTaxInheritanceResponse {
|
|
422
|
+
heritageStatus?: HeritageStatus | undefined;
|
|
423
|
+
}
|
|
339
424
|
export interface GetTaxRegistrationRequest {
|
|
340
425
|
accountId?: string | undefined;
|
|
341
426
|
}
|
|
@@ -354,11 +439,12 @@ export interface GetTaxRegistrationResponse {
|
|
|
354
439
|
taxRegistration?: TaxRegistration | undefined;
|
|
355
440
|
}
|
|
356
441
|
export interface GetTaxRegistrationDocumentRequest {
|
|
357
|
-
destinationS3Location
|
|
442
|
+
destinationS3Location?: DestinationS3Location | undefined;
|
|
358
443
|
taxDocumentMetadata: TaxDocumentMetadata | undefined;
|
|
359
444
|
}
|
|
360
445
|
export interface GetTaxRegistrationDocumentResponse {
|
|
361
446
|
destinationFilePath?: string | undefined;
|
|
447
|
+
presignedS3Url?: string | undefined;
|
|
362
448
|
}
|
|
363
449
|
export interface ListSupplementalTaxRegistrationsRequest {
|
|
364
450
|
maxResults?: number | undefined;
|
|
@@ -381,6 +467,14 @@ export interface ListSupplementalTaxRegistrationsResponse {
|
|
|
381
467
|
taxRegistrations: SupplementalTaxRegistration[] | undefined;
|
|
382
468
|
nextToken?: string | undefined;
|
|
383
469
|
}
|
|
470
|
+
export interface ListTaxExemptionsRequest {
|
|
471
|
+
maxResults?: number | undefined;
|
|
472
|
+
nextToken?: string | undefined;
|
|
473
|
+
}
|
|
474
|
+
export interface ListTaxExemptionsResponse {
|
|
475
|
+
nextToken?: string | undefined;
|
|
476
|
+
taxExemptionDetailsMap?: Record<string, TaxExemptionDetails> | undefined;
|
|
477
|
+
}
|
|
384
478
|
export interface ListTaxRegistrationsRequest {
|
|
385
479
|
maxResults?: number | undefined;
|
|
386
480
|
nextToken?: string | undefined;
|
|
@@ -402,6 +496,19 @@ export interface PutSupplementalTaxRegistrationResponse {
|
|
|
402
496
|
authorityId: string | undefined;
|
|
403
497
|
status: TaxRegistrationStatus | undefined;
|
|
404
498
|
}
|
|
499
|
+
export interface PutTaxExemptionRequest {
|
|
500
|
+
accountIds: string[] | undefined;
|
|
501
|
+
authority: Authority | undefined;
|
|
502
|
+
exemptionType: string | undefined;
|
|
503
|
+
exemptionCertificate: ExemptionCertificate | undefined;
|
|
504
|
+
}
|
|
505
|
+
export interface PutTaxExemptionResponse {
|
|
506
|
+
caseId?: string | undefined;
|
|
507
|
+
}
|
|
508
|
+
export interface PutTaxInheritanceRequest {
|
|
509
|
+
heritageStatus?: HeritageStatus | undefined;
|
|
510
|
+
}
|
|
511
|
+
export interface PutTaxInheritanceResponse {}
|
|
405
512
|
export interface PutTaxRegistrationRequest {
|
|
406
513
|
accountId?: string | undefined;
|
|
407
514
|
taxRegistrationEntry: TaxRegistrationEntry | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTaxExemptionsCommandInput,
|
|
4
|
+
ListTaxExemptionsCommandOutput,
|
|
5
|
+
} from "../commands/ListTaxExemptionsCommand";
|
|
6
|
+
import { TaxSettingsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListTaxExemptions: (
|
|
8
|
+
config: TaxSettingsPaginationConfiguration,
|
|
9
|
+
input: ListTaxExemptionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTaxExemptionsCommandOutput>;
|
|
@@ -7,6 +7,10 @@ import {
|
|
|
7
7
|
BatchDeleteTaxRegistrationCommandInput,
|
|
8
8
|
BatchDeleteTaxRegistrationCommandOutput,
|
|
9
9
|
} from "../commands/BatchDeleteTaxRegistrationCommand";
|
|
10
|
+
import {
|
|
11
|
+
BatchGetTaxExemptionsCommandInput,
|
|
12
|
+
BatchGetTaxExemptionsCommandOutput,
|
|
13
|
+
} from "../commands/BatchGetTaxExemptionsCommand";
|
|
10
14
|
import {
|
|
11
15
|
BatchPutTaxRegistrationCommandInput,
|
|
12
16
|
BatchPutTaxRegistrationCommandOutput,
|
|
@@ -19,6 +23,14 @@ import {
|
|
|
19
23
|
DeleteTaxRegistrationCommandInput,
|
|
20
24
|
DeleteTaxRegistrationCommandOutput,
|
|
21
25
|
} from "../commands/DeleteTaxRegistrationCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetTaxExemptionTypesCommandInput,
|
|
28
|
+
GetTaxExemptionTypesCommandOutput,
|
|
29
|
+
} from "../commands/GetTaxExemptionTypesCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetTaxInheritanceCommandInput,
|
|
32
|
+
GetTaxInheritanceCommandOutput,
|
|
33
|
+
} from "../commands/GetTaxInheritanceCommand";
|
|
22
34
|
import {
|
|
23
35
|
GetTaxRegistrationCommandInput,
|
|
24
36
|
GetTaxRegistrationCommandOutput,
|
|
@@ -31,6 +43,10 @@ import {
|
|
|
31
43
|
ListSupplementalTaxRegistrationsCommandInput,
|
|
32
44
|
ListSupplementalTaxRegistrationsCommandOutput,
|
|
33
45
|
} from "../commands/ListSupplementalTaxRegistrationsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListTaxExemptionsCommandInput,
|
|
48
|
+
ListTaxExemptionsCommandOutput,
|
|
49
|
+
} from "../commands/ListTaxExemptionsCommand";
|
|
34
50
|
import {
|
|
35
51
|
ListTaxRegistrationsCommandInput,
|
|
36
52
|
ListTaxRegistrationsCommandOutput,
|
|
@@ -39,6 +55,14 @@ import {
|
|
|
39
55
|
PutSupplementalTaxRegistrationCommandInput,
|
|
40
56
|
PutSupplementalTaxRegistrationCommandOutput,
|
|
41
57
|
} from "../commands/PutSupplementalTaxRegistrationCommand";
|
|
58
|
+
import {
|
|
59
|
+
PutTaxExemptionCommandInput,
|
|
60
|
+
PutTaxExemptionCommandOutput,
|
|
61
|
+
} from "../commands/PutTaxExemptionCommand";
|
|
62
|
+
import {
|
|
63
|
+
PutTaxInheritanceCommandInput,
|
|
64
|
+
PutTaxInheritanceCommandOutput,
|
|
65
|
+
} from "../commands/PutTaxInheritanceCommand";
|
|
42
66
|
import {
|
|
43
67
|
PutTaxRegistrationCommandInput,
|
|
44
68
|
PutTaxRegistrationCommandOutput,
|
|
@@ -47,6 +71,10 @@ export declare const se_BatchDeleteTaxRegistrationCommand: (
|
|
|
47
71
|
input: BatchDeleteTaxRegistrationCommandInput,
|
|
48
72
|
context: __SerdeContext
|
|
49
73
|
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const se_BatchGetTaxExemptionsCommand: (
|
|
75
|
+
input: BatchGetTaxExemptionsCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
50
78
|
export declare const se_BatchPutTaxRegistrationCommand: (
|
|
51
79
|
input: BatchPutTaxRegistrationCommandInput,
|
|
52
80
|
context: __SerdeContext
|
|
@@ -59,6 +87,14 @@ export declare const se_DeleteTaxRegistrationCommand: (
|
|
|
59
87
|
input: DeleteTaxRegistrationCommandInput,
|
|
60
88
|
context: __SerdeContext
|
|
61
89
|
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const se_GetTaxExemptionTypesCommand: (
|
|
91
|
+
input: GetTaxExemptionTypesCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const se_GetTaxInheritanceCommand: (
|
|
95
|
+
input: GetTaxInheritanceCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
62
98
|
export declare const se_GetTaxRegistrationCommand: (
|
|
63
99
|
input: GetTaxRegistrationCommandInput,
|
|
64
100
|
context: __SerdeContext
|
|
@@ -71,6 +107,10 @@ export declare const se_ListSupplementalTaxRegistrationsCommand: (
|
|
|
71
107
|
input: ListSupplementalTaxRegistrationsCommandInput,
|
|
72
108
|
context: __SerdeContext
|
|
73
109
|
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const se_ListTaxExemptionsCommand: (
|
|
111
|
+
input: ListTaxExemptionsCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
74
114
|
export declare const se_ListTaxRegistrationsCommand: (
|
|
75
115
|
input: ListTaxRegistrationsCommandInput,
|
|
76
116
|
context: __SerdeContext
|
|
@@ -79,6 +119,14 @@ export declare const se_PutSupplementalTaxRegistrationCommand: (
|
|
|
79
119
|
input: PutSupplementalTaxRegistrationCommandInput,
|
|
80
120
|
context: __SerdeContext
|
|
81
121
|
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const se_PutTaxExemptionCommand: (
|
|
123
|
+
input: PutTaxExemptionCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const se_PutTaxInheritanceCommand: (
|
|
127
|
+
input: PutTaxInheritanceCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
82
130
|
export declare const se_PutTaxRegistrationCommand: (
|
|
83
131
|
input: PutTaxRegistrationCommandInput,
|
|
84
132
|
context: __SerdeContext
|
|
@@ -87,6 +135,10 @@ export declare const de_BatchDeleteTaxRegistrationCommand: (
|
|
|
87
135
|
output: __HttpResponse,
|
|
88
136
|
context: __SerdeContext
|
|
89
137
|
) => Promise<BatchDeleteTaxRegistrationCommandOutput>;
|
|
138
|
+
export declare const de_BatchGetTaxExemptionsCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<BatchGetTaxExemptionsCommandOutput>;
|
|
90
142
|
export declare const de_BatchPutTaxRegistrationCommand: (
|
|
91
143
|
output: __HttpResponse,
|
|
92
144
|
context: __SerdeContext
|
|
@@ -99,6 +151,14 @@ export declare const de_DeleteTaxRegistrationCommand: (
|
|
|
99
151
|
output: __HttpResponse,
|
|
100
152
|
context: __SerdeContext
|
|
101
153
|
) => Promise<DeleteTaxRegistrationCommandOutput>;
|
|
154
|
+
export declare const de_GetTaxExemptionTypesCommand: (
|
|
155
|
+
output: __HttpResponse,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<GetTaxExemptionTypesCommandOutput>;
|
|
158
|
+
export declare const de_GetTaxInheritanceCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<GetTaxInheritanceCommandOutput>;
|
|
102
162
|
export declare const de_GetTaxRegistrationCommand: (
|
|
103
163
|
output: __HttpResponse,
|
|
104
164
|
context: __SerdeContext
|
|
@@ -111,6 +171,10 @@ export declare const de_ListSupplementalTaxRegistrationsCommand: (
|
|
|
111
171
|
output: __HttpResponse,
|
|
112
172
|
context: __SerdeContext
|
|
113
173
|
) => Promise<ListSupplementalTaxRegistrationsCommandOutput>;
|
|
174
|
+
export declare const de_ListTaxExemptionsCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<ListTaxExemptionsCommandOutput>;
|
|
114
178
|
export declare const de_ListTaxRegistrationsCommand: (
|
|
115
179
|
output: __HttpResponse,
|
|
116
180
|
context: __SerdeContext
|
|
@@ -119,6 +183,14 @@ export declare const de_PutSupplementalTaxRegistrationCommand: (
|
|
|
119
183
|
output: __HttpResponse,
|
|
120
184
|
context: __SerdeContext
|
|
121
185
|
) => Promise<PutSupplementalTaxRegistrationCommandOutput>;
|
|
186
|
+
export declare const de_PutTaxExemptionCommand: (
|
|
187
|
+
output: __HttpResponse,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<PutTaxExemptionCommandOutput>;
|
|
190
|
+
export declare const de_PutTaxInheritanceCommand: (
|
|
191
|
+
output: __HttpResponse,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<PutTaxInheritanceCommandOutput>;
|
|
122
194
|
export declare const de_PutTaxRegistrationCommand: (
|
|
123
195
|
output: __HttpResponse,
|
|
124
196
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-taxsettings",
|
|
3
3
|
"description": "AWS SDK for JavaScript Taxsettings Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.699.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^3.0.
|
|
37
|
-
"@smithy/core": "^2.5.
|
|
38
|
-
"@smithy/fetch-http-handler": "^4.1.
|
|
39
|
-
"@smithy/hash-node": "^3.0.
|
|
40
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
44
|
-
"@smithy/middleware-serde": "^3.0.
|
|
45
|
-
"@smithy/middleware-stack": "^3.0.
|
|
46
|
-
"@smithy/node-config-provider": "^3.1.
|
|
47
|
-
"@smithy/node-http-handler": "^3.3.
|
|
48
|
-
"@smithy/protocol-http": "^4.1.
|
|
49
|
-
"@smithy/smithy-client": "^3.4.
|
|
50
|
-
"@smithy/types": "^3.7.
|
|
51
|
-
"@smithy/url-parser": "^3.0.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.699.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.699.0",
|
|
25
|
+
"@aws-sdk/core": "3.696.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.699.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.696.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.696.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.696.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.696.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.696.0",
|
|
32
|
+
"@aws-sdk/types": "3.696.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.696.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.696.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.696.0",
|
|
36
|
+
"@smithy/config-resolver": "^3.0.12",
|
|
37
|
+
"@smithy/core": "^2.5.3",
|
|
38
|
+
"@smithy/fetch-http-handler": "^4.1.1",
|
|
39
|
+
"@smithy/hash-node": "^3.0.10",
|
|
40
|
+
"@smithy/invalid-dependency": "^3.0.10",
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.12",
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.3",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.27",
|
|
44
|
+
"@smithy/middleware-serde": "^3.0.10",
|
|
45
|
+
"@smithy/middleware-stack": "^3.0.10",
|
|
46
|
+
"@smithy/node-config-provider": "^3.1.11",
|
|
47
|
+
"@smithy/node-http-handler": "^3.3.1",
|
|
48
|
+
"@smithy/protocol-http": "^4.1.7",
|
|
49
|
+
"@smithy/smithy-client": "^3.4.4",
|
|
50
|
+
"@smithy/types": "^3.7.1",
|
|
51
|
+
"@smithy/url-parser": "^3.0.10",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
57
|
-
"@smithy/util-endpoints": "^2.1.
|
|
58
|
-
"@smithy/util-middleware": "^3.0.
|
|
59
|
-
"@smithy/util-retry": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.27",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.27",
|
|
57
|
+
"@smithy/util-endpoints": "^2.1.6",
|
|
58
|
+
"@smithy/util-middleware": "^3.0.10",
|
|
59
|
+
"@smithy/util-retry": "^3.0.10",
|
|
60
60
|
"@smithy/util-utf8": "^3.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|