@aws-sdk/client-taxsettings 3.1062.0 → 3.1064.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 (32) hide show
  1. package/README.md +1 -12
  2. package/dist-cjs/index.js +20 -0
  3. package/dist-cjs/schemas/schemas_0.js +54 -20
  4. package/dist-es/models/enums.js +17 -0
  5. package/dist-es/schemas/schemas_0.js +51 -17
  6. package/dist-types/TaxSettings.d.ts +1 -12
  7. package/dist-types/TaxSettingsClient.d.ts +1 -12
  8. package/dist-types/commands/BatchDeleteTaxRegistrationCommand.d.ts +2 -7
  9. package/dist-types/commands/BatchGetTaxExemptionsCommand.d.ts +2 -4
  10. package/dist-types/commands/BatchPutTaxRegistrationCommand.d.ts +21 -211
  11. package/dist-types/commands/DeleteSupplementalTaxRegistrationCommand.d.ts +2 -5
  12. package/dist-types/commands/DeleteTaxRegistrationCommand.d.ts +2 -6
  13. package/dist-types/commands/GetTaxExemptionTypesCommand.d.ts +2 -4
  14. package/dist-types/commands/GetTaxInheritanceCommand.d.ts +2 -4
  15. package/dist-types/commands/GetTaxRegistrationCommand.d.ts +20 -5
  16. package/dist-types/commands/GetTaxRegistrationDocumentCommand.d.ts +2 -4
  17. package/dist-types/commands/ListSupplementalTaxRegistrationsCommand.d.ts +4 -7
  18. package/dist-types/commands/ListTaxExemptionsCommand.d.ts +1 -2
  19. package/dist-types/commands/ListTaxRegistrationsCommand.d.ts +21 -8
  20. package/dist-types/commands/PutSupplementalTaxRegistrationCommand.d.ts +4 -7
  21. package/dist-types/commands/PutTaxExemptionCommand.d.ts +5 -10
  22. package/dist-types/commands/PutTaxInheritanceCommand.d.ts +2 -4
  23. package/dist-types/commands/PutTaxRegistrationCommand.d.ts +21 -210
  24. package/dist-types/index.d.ts +1 -12
  25. package/dist-types/models/enums.d.ts +41 -0
  26. package/dist-types/models/errors.d.ts +4 -8
  27. package/dist-types/models/models_0.d.ts +267 -445
  28. package/dist-types/schemas/schemas_0.d.ts +4 -0
  29. package/dist-types/ts3.4/models/enums.d.ts +22 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +29 -2
  31. package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
  32. package/package.json +6 -6
package/README.md CHANGED
@@ -6,18 +6,7 @@
6
6
 
7
7
  AWS SDK for JavaScript TaxSettings Client for Node.js, Browser and React Native.
8
8
 
9
- <p>You can use the tax setting API to programmatically set, modify, and delete the tax
10
- registration number (TRN), associated business legal name, and address (Collectively referred
11
- to as "TRN information"). You can also programmatically view TRN information and tax addresses
12
- ("Tax profiles"). </p>
13
- <p>You can use this API to automate your TRN information settings instead of manually using
14
- the console.</p>
15
- <p>Service Endpoint</p>
16
- <ul>
17
- <li>
18
- <p>https://tax.us-east-1.amazonaws.com</p>
19
- </li>
20
- </ul>
9
+ <p>You can use the tax setting API to programmatically set, modify, and delete the tax registration number (TRN), associated business legal name, and address (Collectively referred to as "TRN information"). You can also programmatically view TRN information and tax addresses ("Tax profiles"). </p> <p>You can use this API to automate your TRN information settings instead of manually using the console.</p> <p>Service Endpoint</p> <ul> <li> <p>https://tax.us-east-1.amazonaws.com</p> </li> </ul>
21
10
 
22
11
  ## Installing
23
12
 
package/dist-cjs/index.js CHANGED
@@ -338,6 +338,10 @@ const AddressRoleType = {
338
338
  CONTACT_ADDRESS: "ContactAddress",
339
339
  TAX_ADDRESS: "TaxAddress",
340
340
  };
341
+ const ChileDocumentType = {
342
+ INVOICE: "Invoice",
343
+ RECEIPT: "Receipt",
344
+ };
341
345
  const PersonType = {
342
346
  BUSINESS: "Business",
343
347
  LEGAL_PERSON: "Legal Person",
@@ -357,12 +361,21 @@ const IsraelDealerType = {
357
361
  AUTHORIZED: "Authorized",
358
362
  NON_AUTHORIZED: "Non-authorized",
359
363
  };
364
+ const CustomerType = {
365
+ BUSINESS: "Business",
366
+ INDIVIDUAL: "Individual",
367
+ };
360
368
  const MalaysiaServiceTaxCode = {
361
369
  CONSULTANCY: "Consultancy",
362
370
  DIGITAL_SVC_ELECTRONIC_MEDIUM: "Digital Service And Electronic Medium",
363
371
  IT_SERVICES: "IT Services",
364
372
  TRAINING_OR_COACHING: "Training Or Coaching",
365
373
  };
374
+ const PolandTaxRegistrationNumberType = {
375
+ EU_TAX_REGISTRATION_NUMBER: "EUTaxRegistrationNumber",
376
+ LOCAL_REGISTRATION_NUMBER: "LocalRegistrationNumber",
377
+ LOCAL_TAX_REGISTRATION_NUMBER: "LocalTaxRegistrationNumber",
378
+ };
366
379
  const TaxRegistrationNumberType = {
367
380
  LOCAL_REGISTRATION_NUMBER: "LocalRegistrationNumber",
368
381
  TAX_REGISTRATION_NUMBER: "TaxRegistrationNumber",
@@ -396,7 +409,9 @@ const TaxRegistrationType = {
396
409
  CNPJ: "CNPJ",
397
410
  CPF: "CPF",
398
411
  GST: "GST",
412
+ NIP: "NIP",
399
413
  NRIC: "NRIC",
414
+ PAN: "PAN",
400
415
  SST: "SST",
401
416
  TIN: "TIN",
402
417
  VAT: "VAT",
@@ -415,9 +430,11 @@ const TaxRegistrationStatus = {
415
430
  const ValidationExceptionErrorCode = {
416
431
  EXPIRED_TOKEN: "ExpiredToken",
417
432
  FIELD_VALIDATION_FAILED: "FieldValidationFailed",
433
+ GST_EXISTENCE_BLOCK_SET_PAN: "GSTExistenceBlockSetPAN",
418
434
  INVALID_TOKEN: "InvalidToken",
419
435
  MALFORMED_TOKEN: "MalformedToken",
420
436
  MISSING_INPUT: "MissingInput",
437
+ NON_INDIA_CUSTOMER_CAN_NOT_SET_PAN: "NonIndiaCustomerCanNotSetPAN",
421
438
  };
422
439
  const EntityExemptionAccountStatus = {
423
440
  Expired: "Expired",
@@ -440,6 +457,8 @@ exports.AddressRoleType = AddressRoleType;
440
457
  exports.BatchDeleteTaxRegistrationCommand = BatchDeleteTaxRegistrationCommand;
441
458
  exports.BatchGetTaxExemptionsCommand = BatchGetTaxExemptionsCommand;
442
459
  exports.BatchPutTaxRegistrationCommand = BatchPutTaxRegistrationCommand;
460
+ exports.ChileDocumentType = ChileDocumentType;
461
+ exports.CustomerType = CustomerType;
443
462
  exports.DeleteSupplementalTaxRegistrationCommand = DeleteSupplementalTaxRegistrationCommand;
444
463
  exports.DeleteTaxRegistrationCommand = DeleteTaxRegistrationCommand;
445
464
  exports.EntityExemptionAccountStatus = EntityExemptionAccountStatus;
@@ -457,6 +476,7 @@ exports.ListTaxExemptionsCommand = ListTaxExemptionsCommand;
457
476
  exports.ListTaxRegistrationsCommand = ListTaxRegistrationsCommand;
458
477
  exports.MalaysiaServiceTaxCode = MalaysiaServiceTaxCode;
459
478
  exports.PersonType = PersonType;
479
+ exports.PolandTaxRegistrationNumberType = PolandTaxRegistrationNumberType;
460
480
  exports.PutSupplementalTaxRegistrationCommand = PutSupplementalTaxRegistrationCommand;
461
481
  exports.PutTaxExemptionCommand = PutTaxExemptionCommand;
462
482
  exports.PutTaxInheritanceCommand = PutTaxInheritanceCommand;
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListSupplementalTaxRegistrationsRequest$ = exports.KenyaAdditionalInfo$ = exports.Jurisdiction$ = exports.ItalyAdditionalInfo$ = exports.IsraelAdditionalInfo$ = exports.IndonesiaAdditionalInfo$ = exports.IndiaAdditionalInfo$ = exports.GreeceAdditionalInfo$ = exports.GetTaxRegistrationResponse$ = exports.GetTaxRegistrationRequest$ = exports.GetTaxRegistrationDocumentResponse$ = exports.GetTaxRegistrationDocumentRequest$ = exports.GetTaxInheritanceResponse$ = exports.GetTaxInheritanceRequest$ = exports.GetTaxExemptionTypesResponse$ = exports.GetTaxExemptionTypesRequest$ = exports.GeorgiaAdditionalInfo$ = exports.ExemptionCertificate$ = exports.EstoniaAdditionalInfo$ = exports.EgyptAdditionalInfo$ = exports.DestinationS3Location$ = exports.DeleteTaxRegistrationResponse$ = exports.DeleteTaxRegistrationRequest$ = exports.DeleteSupplementalTaxRegistrationResponse$ = exports.DeleteSupplementalTaxRegistrationRequest$ = exports.CanadaAdditionalInfo$ = exports.BrazilAdditionalInfo$ = exports.BatchPutTaxRegistrationResponse$ = exports.BatchPutTaxRegistrationRequest$ = exports.BatchPutTaxRegistrationError$ = exports.BatchGetTaxExemptionsResponse$ = exports.BatchGetTaxExemptionsRequest$ = exports.BatchDeleteTaxRegistrationResponse$ = exports.BatchDeleteTaxRegistrationRequest$ = exports.BatchDeleteTaxRegistrationError$ = exports.Authority$ = exports.Address$ = exports.AdditionalInfoResponse$ = exports.AdditionalInfoRequest$ = exports.AccountMetaData$ = exports.AccountDetails$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.CaseCreationLimitExceededException$ = exports.AttachmentUploadException$ = exports.AccessDeniedException$ = exports.TaxSettingsServiceException$ = void 0;
4
- exports.ListTaxRegistrations$ = exports.ListTaxExemptions$ = exports.ListSupplementalTaxRegistrations$ = exports.GetTaxRegistrationDocument$ = exports.GetTaxRegistration$ = exports.GetTaxInheritance$ = exports.GetTaxExemptionTypes$ = exports.DeleteTaxRegistration$ = exports.DeleteSupplementalTaxRegistration$ = exports.BatchPutTaxRegistration$ = exports.BatchGetTaxExemptions$ = exports.BatchDeleteTaxRegistration$ = exports.VietnamAdditionalInfo$ = exports.VerificationDetails$ = exports.ValidationExceptionField$ = exports.UzbekistanAdditionalInfo$ = exports.UkraineAdditionalInfo$ = exports.TurkeyAdditionalInfo$ = exports.TaxRegistrationWithJurisdiction$ = exports.TaxRegistrationEntry$ = exports.TaxRegistrationDocument$ = exports.TaxRegistrationDocFile$ = exports.TaxRegistration$ = exports.TaxInheritanceDetails$ = exports.TaxExemptionType$ = exports.TaxExemptionDetails$ = exports.TaxExemption$ = exports.TaxDocumentMetadata$ = exports.SupplementalTaxRegistrationEntry$ = exports.SupplementalTaxRegistration$ = exports.SpainAdditionalInfo$ = exports.SouthKoreaAdditionalInfo$ = exports.SourceS3Location$ = exports.SaudiArabiaAdditionalInfo$ = exports.RomaniaAdditionalInfo$ = exports.PutTaxRegistrationResponse$ = exports.PutTaxRegistrationRequest$ = exports.PutTaxInheritanceResponse$ = exports.PutTaxInheritanceRequest$ = exports.PutTaxExemptionResponse$ = exports.PutTaxExemptionRequest$ = exports.PutSupplementalTaxRegistrationResponse$ = exports.PutSupplementalTaxRegistrationRequest$ = exports.PolandAdditionalInfo$ = exports.MalaysiaAdditionalInfo$ = exports.ListTaxRegistrationsResponse$ = exports.ListTaxRegistrationsRequest$ = exports.ListTaxExemptionsResponse$ = exports.ListTaxExemptionsRequest$ = exports.ListSupplementalTaxRegistrationsResponse$ = void 0;
5
- exports.PutTaxRegistration$ = exports.PutTaxInheritance$ = exports.PutTaxExemption$ = exports.PutSupplementalTaxRegistration$ = void 0;
3
+ exports.ItalyAdditionalInfo$ = exports.IsraelAdditionalInfo$ = exports.IndonesiaAdditionalInfo$ = exports.IndiaAdditionalInfo$ = exports.GreeceAdditionalInfo$ = exports.GetTaxRegistrationResponse$ = exports.GetTaxRegistrationRequest$ = exports.GetTaxRegistrationDocumentResponse$ = exports.GetTaxRegistrationDocumentRequest$ = exports.GetTaxInheritanceResponse$ = exports.GetTaxInheritanceRequest$ = exports.GetTaxExemptionTypesResponse$ = exports.GetTaxExemptionTypesRequest$ = exports.GeorgiaAdditionalInfo$ = exports.FranceAdditionalInfo$ = exports.ExemptionCertificate$ = exports.EstoniaAdditionalInfo$ = exports.EgyptAdditionalInfo$ = exports.DestinationS3Location$ = exports.DeleteTaxRegistrationResponse$ = exports.DeleteTaxRegistrationRequest$ = exports.DeleteSupplementalTaxRegistrationResponse$ = exports.DeleteSupplementalTaxRegistrationRequest$ = exports.ChileAdditionalInfo$ = exports.CanadaAdditionalInfo$ = exports.BrazilAdditionalInfo$ = exports.BelgiumAdditionalInfo$ = exports.BatchPutTaxRegistrationResponse$ = exports.BatchPutTaxRegistrationRequest$ = exports.BatchPutTaxRegistrationError$ = exports.BatchGetTaxExemptionsResponse$ = exports.BatchGetTaxExemptionsRequest$ = exports.BatchDeleteTaxRegistrationResponse$ = exports.BatchDeleteTaxRegistrationRequest$ = exports.BatchDeleteTaxRegistrationError$ = exports.Authority$ = exports.Address$ = exports.AdditionalInfoResponse$ = exports.AdditionalInfoRequest$ = exports.AccountMetaData$ = exports.AccountDetails$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.CaseCreationLimitExceededException$ = exports.AttachmentUploadException$ = exports.AccessDeniedException$ = exports.TaxSettingsServiceException$ = void 0;
4
+ exports.GetTaxRegistration$ = exports.GetTaxInheritance$ = exports.GetTaxExemptionTypes$ = exports.DeleteTaxRegistration$ = exports.DeleteSupplementalTaxRegistration$ = exports.BatchPutTaxRegistration$ = exports.BatchGetTaxExemptions$ = exports.BatchDeleteTaxRegistration$ = exports.VietnamAdditionalInfo$ = exports.VerificationDetails$ = exports.ValidationExceptionField$ = exports.UzbekistanAdditionalInfo$ = exports.UkraineAdditionalInfo$ = exports.TurkeyAdditionalInfo$ = exports.TaxRegistrationWithJurisdiction$ = exports.TaxRegistrationEntry$ = exports.TaxRegistrationDocument$ = exports.TaxRegistrationDocFile$ = exports.TaxRegistration$ = exports.TaxInheritanceDetails$ = exports.TaxExemptionType$ = exports.TaxExemptionDetails$ = exports.TaxExemption$ = exports.TaxDocumentMetadata$ = exports.SupplementalTaxRegistrationEntry$ = exports.SupplementalTaxRegistration$ = exports.SpainAdditionalInfo$ = exports.SouthKoreaAdditionalInfo$ = exports.SourceS3Location$ = exports.SaudiArabiaAdditionalInfo$ = exports.RomaniaAdditionalInfo$ = exports.PutTaxRegistrationResponse$ = exports.PutTaxRegistrationRequest$ = exports.PutTaxInheritanceResponse$ = exports.PutTaxInheritanceRequest$ = exports.PutTaxExemptionResponse$ = exports.PutTaxExemptionRequest$ = exports.PutSupplementalTaxRegistrationResponse$ = exports.PutSupplementalTaxRegistrationRequest$ = exports.PolandAdditionalInfo$ = exports.PhilippinesAdditionalInfo$ = exports.MalaysiaAdditionalInfo$ = exports.ListTaxRegistrationsResponse$ = exports.ListTaxRegistrationsRequest$ = exports.ListTaxExemptionsResponse$ = exports.ListTaxExemptionsRequest$ = exports.ListSupplementalTaxRegistrationsResponse$ = exports.ListSupplementalTaxRegistrationsRequest$ = exports.KenyaAdditionalInfo$ = exports.Jurisdiction$ = void 0;
5
+ exports.PutTaxRegistration$ = exports.PutTaxInheritance$ = exports.PutTaxExemption$ = exports.PutSupplementalTaxRegistration$ = exports.ListTaxRegistrations$ = exports.ListTaxExemptions$ = exports.ListSupplementalTaxRegistrations$ = exports.GetTaxRegistrationDocument$ = void 0;
6
6
  const _A = "Address";
7
7
  const _AD = "AccountDetails";
8
8
  const _ADE = "AccessDeniedException";
@@ -14,7 +14,8 @@ const _ARM = "AddressRoleMap";
14
14
  const _AUE = "AttachmentUploadException";
15
15
  const _Au = "Authority";
16
16
  const _Aut = "Authorities";
17
- const _BAI = "BrazilAdditionalInfo";
17
+ const _BAI = "BelgiumAdditionalInfo";
18
+ const _BAIr = "BrazilAdditionalInfo";
18
19
  const _BDTR = "BatchDeleteTaxRegistration";
19
20
  const _BDTRE = "BatchDeleteTaxRegistrationError";
20
21
  const _BDTREa = "BatchDeleteTaxRegistrationErrors";
@@ -29,6 +30,7 @@ const _BPTREa = "BatchPutTaxRegistrationErrors";
29
30
  const _BPTRR = "BatchPutTaxRegistrationRequest";
30
31
  const _BPTRRa = "BatchPutTaxRegistrationResponse";
31
32
  const _CAI = "CanadaAdditionalInfo";
33
+ const _CAIh = "ChileAdditionalInfo";
32
34
  const _CCLEE = "CaseCreationLimitExceededException";
33
35
  const _CE = "ConflictException";
34
36
  const _DSL = "DestinationS3Location";
@@ -42,6 +44,7 @@ const _EAI = "EgyptAdditionalInfo";
42
44
  const _EAIs = "EstoniaAdditionalInfo";
43
45
  const _EC = "ExemptionCertificate";
44
46
  const _EM = "ErrorMessage";
47
+ const _FAI = "FranceAdditionalInfo";
45
48
  const _GAI = "GeorgiaAdditionalInfo";
46
49
  const _GAIr = "GreeceAdditionalInfo";
47
50
  const _GTET = "GetTaxExemptionTypes";
@@ -73,7 +76,8 @@ const _LTR = "ListTaxRegistrations";
73
76
  const _LTRR = "ListTaxRegistrationsRequest";
74
77
  const _LTRRi = "ListTaxRegistrationsResponse";
75
78
  const _MAI = "MalaysiaAdditionalInfo";
76
- const _PAI = "PolandAdditionalInfo";
79
+ const _PAI = "PhilippinesAdditionalInfo";
80
+ const _PAIo = "PolandAdditionalInfo";
77
81
  const _PSTR = "PutSupplementalTaxRegistration";
78
82
  const _PSTRR = "PutSupplementalTaxRegistrationRequest";
79
83
  const _PSTRRu = "PutSupplementalTaxRegistrationResponse";
@@ -134,12 +138,15 @@ const _aT = "addressType";
134
138
  const _aTI = "additionalTaxInformation";
135
139
  const _au = "authority";
136
140
  const _b = "bucket";
137
- const _bAI = "brazilAdditionalInfo";
141
+ const _bA = "businessActivity";
142
+ const _bAI = "belgiumAdditionalInfo";
143
+ const _bAIr = "brazilAdditionalInfo";
138
144
  const _bRN = "businessRegistrationNumber";
139
145
  const _bRNu = "businessRepresentativeName";
140
146
  const _c = "client";
141
147
  const _cAC = "contractingAuthorityCode";
142
148
  const _cAI = "canadaAdditionalInfo";
149
+ const _cAIh = "chileAdditionalInfo";
143
150
  const _cC = "countryCode";
144
151
  const _cCc = "ccmCode";
145
152
  const _cEI = "certifiedEmailId";
@@ -161,7 +168,8 @@ const _dNi = "displayName";
161
168
  const _dOB = "dateOfBirth";
162
169
  const _dOC = "districtOrCounty";
163
170
  const _dSL = "destinationS3Location";
164
- const _dT = "dealerType";
171
+ const _dT = "documentType";
172
+ const _dTe = "dealerType";
165
173
  const _e = "error";
166
174
  const _eAI = "estoniaAdditionalInfo";
167
175
  const _eAIg = "egyptAdditionalInfo";
@@ -175,6 +183,7 @@ const _eTCN = "electronicTransactionCodeNumber";
175
183
  const _er = "errors";
176
184
  const _f = "file";
177
185
  const _fA = "failedAccounts";
186
+ const _fAI = "franceAdditionalInfo";
178
187
  const _fC = "fileContent";
179
188
  const _fL = "fieldList";
180
189
  const _fN = "fileName";
@@ -192,10 +201,12 @@ const _iAIn = "indonesiaAdditionalInfo";
192
201
  const _iAInd = "indiaAdditionalInfo";
193
202
  const _iAIt = "italyAdditionalInfo";
194
203
  const _iGVE = "isGroupVatEnabled";
204
+ const _iMBE = "isMercuriusBoxEnabled";
195
205
  const _iOB = "itemOfBusiness";
196
206
  const _iOR = "inheritanceObtainedReason";
197
207
  const _iRA = "isResellerAccount";
198
208
  const _iRN = "individualRegistrationNumber";
209
+ const _iVR = "isVatRegistered";
199
210
  const _j = "jurisdiction";
200
211
  const _k = "key";
201
212
  const _kAI = "kenyaAdditionalInfo";
@@ -211,9 +222,11 @@ const _n = "name";
211
222
  const _nT = "nextToken";
212
223
  const _p = "prefix";
213
224
  const _pAI = "polandAdditionalInfo";
225
+ const _pAIh = "philippinesAdditionalInfo";
214
226
  const _pC = "postalCode";
215
227
  const _pEDC = "ppnExceptionDesignationCode";
216
228
  const _pEI = "parentEntityId";
229
+ const _pI = "peppolId";
217
230
  const _pSTI = "provincialSalesTaxId";
218
231
  const _pSU = "presignedS3Url";
219
232
  const _pT = "personType";
@@ -231,6 +244,7 @@ const _sAId = "sdiAccountId";
231
244
  const _sED = "systemEffectiveDate";
232
245
  const _sKAI = "southKoreaAdditionalInfo";
233
246
  const _sL = "s3Location";
247
+ const _sN = "sirenNumber";
234
248
  const _sOR = "stateOrRegion";
235
249
  const _sTC = "serviceTaxCodes";
236
250
  const _sTI = "secondaryTaxId";
@@ -332,18 +346,18 @@ exports.AccountMetaData$ = [3, n0, _AMD,
332
346
  ];
333
347
  exports.AdditionalInfoRequest$ = [3, n0, _AIR,
334
348
  0,
335
- [_mAI, _iAI, _eAI, _cAI, _sAI, _kAI, _sKAI, _tAI, _gAI, _iAIt, _rAI, _uAI, _pAI, _sAAI, _iAIn, _vAI, _eAIg, _gAIr, _uAIz],
336
- [() => exports.MalaysiaAdditionalInfo$, () => exports.IsraelAdditionalInfo$, () => exports.EstoniaAdditionalInfo$, () => exports.CanadaAdditionalInfo$, () => exports.SpainAdditionalInfo$, () => exports.KenyaAdditionalInfo$, () => exports.SouthKoreaAdditionalInfo$, () => exports.TurkeyAdditionalInfo$, () => exports.GeorgiaAdditionalInfo$, () => exports.ItalyAdditionalInfo$, () => exports.RomaniaAdditionalInfo$, () => exports.UkraineAdditionalInfo$, () => exports.PolandAdditionalInfo$, () => exports.SaudiArabiaAdditionalInfo$, () => exports.IndonesiaAdditionalInfo$, () => exports.VietnamAdditionalInfo$, () => exports.EgyptAdditionalInfo$, () => exports.GreeceAdditionalInfo$, () => exports.UzbekistanAdditionalInfo$]
349
+ [_mAI, _iAI, _eAI, _cAI, _sAI, _kAI, _sKAI, _tAI, _gAI, _iAIt, _rAI, _uAI, _pAI, _sAAI, _iAIn, _vAI, _eAIg, _gAIr, _uAIz, _pAIh, _bAI, _cAIh, _fAI],
350
+ [() => exports.MalaysiaAdditionalInfo$, () => exports.IsraelAdditionalInfo$, () => exports.EstoniaAdditionalInfo$, () => exports.CanadaAdditionalInfo$, () => exports.SpainAdditionalInfo$, () => exports.KenyaAdditionalInfo$, () => exports.SouthKoreaAdditionalInfo$, () => exports.TurkeyAdditionalInfo$, () => exports.GeorgiaAdditionalInfo$, () => exports.ItalyAdditionalInfo$, () => exports.RomaniaAdditionalInfo$, () => exports.UkraineAdditionalInfo$, () => exports.PolandAdditionalInfo$, () => exports.SaudiArabiaAdditionalInfo$, () => exports.IndonesiaAdditionalInfo$, () => exports.VietnamAdditionalInfo$, () => exports.EgyptAdditionalInfo$, () => exports.GreeceAdditionalInfo$, () => exports.UzbekistanAdditionalInfo$, () => exports.PhilippinesAdditionalInfo$, () => exports.BelgiumAdditionalInfo$, () => exports.ChileAdditionalInfo$, () => exports.FranceAdditionalInfo$]
337
351
  ];
338
352
  exports.AdditionalInfoResponse$ = [3, n0, _AIRd,
339
353
  0,
340
- [_mAI, _iAI, _eAI, _cAI, _bAI, _sAI, _kAI, _sKAI, _tAI, _gAI, _iAIt, _rAI, _uAI, _pAI, _sAAI, _iAInd, _iAIn, _vAI, _eAIg, _gAIr, _uAIz],
341
- [() => exports.MalaysiaAdditionalInfo$, () => exports.IsraelAdditionalInfo$, () => exports.EstoniaAdditionalInfo$, () => exports.CanadaAdditionalInfo$, () => exports.BrazilAdditionalInfo$, () => exports.SpainAdditionalInfo$, () => exports.KenyaAdditionalInfo$, () => exports.SouthKoreaAdditionalInfo$, () => exports.TurkeyAdditionalInfo$, () => exports.GeorgiaAdditionalInfo$, () => exports.ItalyAdditionalInfo$, () => exports.RomaniaAdditionalInfo$, () => exports.UkraineAdditionalInfo$, () => exports.PolandAdditionalInfo$, () => exports.SaudiArabiaAdditionalInfo$, () => exports.IndiaAdditionalInfo$, () => exports.IndonesiaAdditionalInfo$, () => exports.VietnamAdditionalInfo$, () => exports.EgyptAdditionalInfo$, () => exports.GreeceAdditionalInfo$, () => exports.UzbekistanAdditionalInfo$]
354
+ [_mAI, _iAI, _eAI, _cAI, _bAIr, _sAI, _kAI, _sKAI, _tAI, _gAI, _iAIt, _rAI, _uAI, _pAI, _sAAI, _iAInd, _iAIn, _vAI, _eAIg, _gAIr, _uAIz, _pAIh, _bAI, _cAIh, _fAI],
355
+ [() => exports.MalaysiaAdditionalInfo$, () => exports.IsraelAdditionalInfo$, () => exports.EstoniaAdditionalInfo$, () => exports.CanadaAdditionalInfo$, () => exports.BrazilAdditionalInfo$, () => exports.SpainAdditionalInfo$, () => exports.KenyaAdditionalInfo$, () => exports.SouthKoreaAdditionalInfo$, () => exports.TurkeyAdditionalInfo$, () => exports.GeorgiaAdditionalInfo$, () => exports.ItalyAdditionalInfo$, () => exports.RomaniaAdditionalInfo$, () => exports.UkraineAdditionalInfo$, () => exports.PolandAdditionalInfo$, () => exports.SaudiArabiaAdditionalInfo$, () => exports.IndiaAdditionalInfo$, () => exports.IndonesiaAdditionalInfo$, () => exports.VietnamAdditionalInfo$, () => exports.EgyptAdditionalInfo$, () => exports.GreeceAdditionalInfo$, () => exports.UzbekistanAdditionalInfo$, () => exports.PhilippinesAdditionalInfo$, () => exports.BelgiumAdditionalInfo$, () => exports.ChileAdditionalInfo$, () => exports.FranceAdditionalInfo$]
342
356
  ];
343
357
  exports.Address$ = [3, n0, _A,
344
358
  0,
345
- [_aL, _ci, _pC, _cC, _aLd, _aLdd, _dOC, _sOR],
346
- [0, 0, 0, 0, 0, 0, 0, 0], 4
359
+ [_pC, _cC, _aL, _aLd, _aLdd, _dOC, _ci, _sOR],
360
+ [0, 0, 0, 0, 0, 0, 0, 0], 2
347
361
  ];
348
362
  exports.Authority$ = [3, n0, _Au,
349
363
  0,
@@ -390,7 +404,12 @@ exports.BatchPutTaxRegistrationResponse$ = [3, n0, _BPTRRa,
390
404
  [_er, _sta],
391
405
  [[() => BatchPutTaxRegistrationErrors, 0], 0], 1
392
406
  ];
393
- exports.BrazilAdditionalInfo$ = [3, n0, _BAI,
407
+ exports.BelgiumAdditionalInfo$ = [3, n0, _BAI,
408
+ 0,
409
+ [_pI, _iMBE],
410
+ [0, 2]
411
+ ];
412
+ exports.BrazilAdditionalInfo$ = [3, n0, _BAIr,
394
413
  0,
395
414
  [_cCc, _lNC],
396
415
  [0, 0]
@@ -400,6 +419,11 @@ exports.CanadaAdditionalInfo$ = [3, n0, _CAI,
400
419
  [_pSTI, _cQSTN, _cRSTN, _iRA],
401
420
  [0, 0, 0, 2]
402
421
  ];
422
+ exports.ChileAdditionalInfo$ = [3, n0, _CAIh,
423
+ 0,
424
+ [_dT, _bA],
425
+ [0, 0]
426
+ ];
403
427
  exports.DeleteSupplementalTaxRegistrationRequest$ = [3, n0, _DSTRR,
404
428
  0,
405
429
  [_aIu],
@@ -440,6 +464,11 @@ exports.ExemptionCertificate$ = [3, n0, _EC,
440
464
  [_dN, _dF],
441
465
  [0, 21], 2
442
466
  ];
467
+ exports.FranceAdditionalInfo$ = [3, n0, _FAI,
468
+ 0,
469
+ [_sN],
470
+ [0], 1
471
+ ];
443
472
  exports.GeorgiaAdditionalInfo$ = [3, n0, _GAI,
444
473
  0,
445
474
  [_pT],
@@ -502,13 +531,13 @@ exports.IndonesiaAdditionalInfo$ = [3, n0, _IAIn,
502
531
  ];
503
532
  exports.IsraelAdditionalInfo$ = [3, n0, _IAIs,
504
533
  0,
505
- [_dT, _cT],
534
+ [_dTe, _cT],
506
535
  [0, 0], 2
507
536
  ];
508
537
  exports.ItalyAdditionalInfo$ = [3, n0, _IAIt,
509
538
  0,
510
- [_sAId, _cN, _cNu, _tC],
511
- [0, 0, 0, 0]
539
+ [_sAId, _cN, _cNu, _tC, _cT],
540
+ [0, 0, 0, 0, 0]
512
541
  ];
513
542
  exports.Jurisdiction$ = [3, n0, _J,
514
543
  0,
@@ -555,10 +584,15 @@ exports.MalaysiaAdditionalInfo$ = [3, n0, _MAI,
555
584
  [_sTC, _tIN, _bRN],
556
585
  [64 | 0, 0, 0]
557
586
  ];
558
- exports.PolandAdditionalInfo$ = [3, n0, _PAI,
587
+ exports.PhilippinesAdditionalInfo$ = [3, n0, _PAI,
559
588
  0,
560
- [_iRN, _iGVE],
561
- [0, 2]
589
+ [_iVR],
590
+ [2]
591
+ ];
592
+ exports.PolandAdditionalInfo$ = [3, n0, _PAIo,
593
+ 0,
594
+ [_iRN, _iGVE, _tRNT],
595
+ [0, 2, 0]
562
596
  ];
563
597
  exports.PutSupplementalTaxRegistrationRequest$ = [3, n0, _PSTRR,
564
598
  0,
@@ -3,6 +3,10 @@ export const AddressRoleType = {
3
3
  CONTACT_ADDRESS: "ContactAddress",
4
4
  TAX_ADDRESS: "TaxAddress",
5
5
  };
6
+ export const ChileDocumentType = {
7
+ INVOICE: "Invoice",
8
+ RECEIPT: "Receipt",
9
+ };
6
10
  export const PersonType = {
7
11
  BUSINESS: "Business",
8
12
  LEGAL_PERSON: "Legal Person",
@@ -22,12 +26,21 @@ export const IsraelDealerType = {
22
26
  AUTHORIZED: "Authorized",
23
27
  NON_AUTHORIZED: "Non-authorized",
24
28
  };
29
+ export const CustomerType = {
30
+ BUSINESS: "Business",
31
+ INDIVIDUAL: "Individual",
32
+ };
25
33
  export const MalaysiaServiceTaxCode = {
26
34
  CONSULTANCY: "Consultancy",
27
35
  DIGITAL_SVC_ELECTRONIC_MEDIUM: "Digital Service And Electronic Medium",
28
36
  IT_SERVICES: "IT Services",
29
37
  TRAINING_OR_COACHING: "Training Or Coaching",
30
38
  };
39
+ export const PolandTaxRegistrationNumberType = {
40
+ EU_TAX_REGISTRATION_NUMBER: "EUTaxRegistrationNumber",
41
+ LOCAL_REGISTRATION_NUMBER: "LocalRegistrationNumber",
42
+ LOCAL_TAX_REGISTRATION_NUMBER: "LocalTaxRegistrationNumber",
43
+ };
31
44
  export const TaxRegistrationNumberType = {
32
45
  LOCAL_REGISTRATION_NUMBER: "LocalRegistrationNumber",
33
46
  TAX_REGISTRATION_NUMBER: "TaxRegistrationNumber",
@@ -61,7 +74,9 @@ export const TaxRegistrationType = {
61
74
  CNPJ: "CNPJ",
62
75
  CPF: "CPF",
63
76
  GST: "GST",
77
+ NIP: "NIP",
64
78
  NRIC: "NRIC",
79
+ PAN: "PAN",
65
80
  SST: "SST",
66
81
  TIN: "TIN",
67
82
  VAT: "VAT",
@@ -80,9 +95,11 @@ export const TaxRegistrationStatus = {
80
95
  export const ValidationExceptionErrorCode = {
81
96
  EXPIRED_TOKEN: "ExpiredToken",
82
97
  FIELD_VALIDATION_FAILED: "FieldValidationFailed",
98
+ GST_EXISTENCE_BLOCK_SET_PAN: "GSTExistenceBlockSetPAN",
83
99
  INVALID_TOKEN: "InvalidToken",
84
100
  MALFORMED_TOKEN: "MalformedToken",
85
101
  MISSING_INPUT: "MissingInput",
102
+ NON_INDIA_CUSTOMER_CAN_NOT_SET_PAN: "NonIndiaCustomerCanNotSetPAN",
86
103
  };
87
104
  export const EntityExemptionAccountStatus = {
88
105
  Expired: "Expired",
@@ -9,7 +9,8 @@ const _ARM = "AddressRoleMap";
9
9
  const _AUE = "AttachmentUploadException";
10
10
  const _Au = "Authority";
11
11
  const _Aut = "Authorities";
12
- const _BAI = "BrazilAdditionalInfo";
12
+ const _BAI = "BelgiumAdditionalInfo";
13
+ const _BAIr = "BrazilAdditionalInfo";
13
14
  const _BDTR = "BatchDeleteTaxRegistration";
14
15
  const _BDTRE = "BatchDeleteTaxRegistrationError";
15
16
  const _BDTREa = "BatchDeleteTaxRegistrationErrors";
@@ -24,6 +25,7 @@ const _BPTREa = "BatchPutTaxRegistrationErrors";
24
25
  const _BPTRR = "BatchPutTaxRegistrationRequest";
25
26
  const _BPTRRa = "BatchPutTaxRegistrationResponse";
26
27
  const _CAI = "CanadaAdditionalInfo";
28
+ const _CAIh = "ChileAdditionalInfo";
27
29
  const _CCLEE = "CaseCreationLimitExceededException";
28
30
  const _CE = "ConflictException";
29
31
  const _DSL = "DestinationS3Location";
@@ -37,6 +39,7 @@ const _EAI = "EgyptAdditionalInfo";
37
39
  const _EAIs = "EstoniaAdditionalInfo";
38
40
  const _EC = "ExemptionCertificate";
39
41
  const _EM = "ErrorMessage";
42
+ const _FAI = "FranceAdditionalInfo";
40
43
  const _GAI = "GeorgiaAdditionalInfo";
41
44
  const _GAIr = "GreeceAdditionalInfo";
42
45
  const _GTET = "GetTaxExemptionTypes";
@@ -68,7 +71,8 @@ const _LTR = "ListTaxRegistrations";
68
71
  const _LTRR = "ListTaxRegistrationsRequest";
69
72
  const _LTRRi = "ListTaxRegistrationsResponse";
70
73
  const _MAI = "MalaysiaAdditionalInfo";
71
- const _PAI = "PolandAdditionalInfo";
74
+ const _PAI = "PhilippinesAdditionalInfo";
75
+ const _PAIo = "PolandAdditionalInfo";
72
76
  const _PSTR = "PutSupplementalTaxRegistration";
73
77
  const _PSTRR = "PutSupplementalTaxRegistrationRequest";
74
78
  const _PSTRRu = "PutSupplementalTaxRegistrationResponse";
@@ -129,12 +133,15 @@ const _aT = "addressType";
129
133
  const _aTI = "additionalTaxInformation";
130
134
  const _au = "authority";
131
135
  const _b = "bucket";
132
- const _bAI = "brazilAdditionalInfo";
136
+ const _bA = "businessActivity";
137
+ const _bAI = "belgiumAdditionalInfo";
138
+ const _bAIr = "brazilAdditionalInfo";
133
139
  const _bRN = "businessRegistrationNumber";
134
140
  const _bRNu = "businessRepresentativeName";
135
141
  const _c = "client";
136
142
  const _cAC = "contractingAuthorityCode";
137
143
  const _cAI = "canadaAdditionalInfo";
144
+ const _cAIh = "chileAdditionalInfo";
138
145
  const _cC = "countryCode";
139
146
  const _cCc = "ccmCode";
140
147
  const _cEI = "certifiedEmailId";
@@ -156,7 +163,8 @@ const _dNi = "displayName";
156
163
  const _dOB = "dateOfBirth";
157
164
  const _dOC = "districtOrCounty";
158
165
  const _dSL = "destinationS3Location";
159
- const _dT = "dealerType";
166
+ const _dT = "documentType";
167
+ const _dTe = "dealerType";
160
168
  const _e = "error";
161
169
  const _eAI = "estoniaAdditionalInfo";
162
170
  const _eAIg = "egyptAdditionalInfo";
@@ -170,6 +178,7 @@ const _eTCN = "electronicTransactionCodeNumber";
170
178
  const _er = "errors";
171
179
  const _f = "file";
172
180
  const _fA = "failedAccounts";
181
+ const _fAI = "franceAdditionalInfo";
173
182
  const _fC = "fileContent";
174
183
  const _fL = "fieldList";
175
184
  const _fN = "fileName";
@@ -187,10 +196,12 @@ const _iAIn = "indonesiaAdditionalInfo";
187
196
  const _iAInd = "indiaAdditionalInfo";
188
197
  const _iAIt = "italyAdditionalInfo";
189
198
  const _iGVE = "isGroupVatEnabled";
199
+ const _iMBE = "isMercuriusBoxEnabled";
190
200
  const _iOB = "itemOfBusiness";
191
201
  const _iOR = "inheritanceObtainedReason";
192
202
  const _iRA = "isResellerAccount";
193
203
  const _iRN = "individualRegistrationNumber";
204
+ const _iVR = "isVatRegistered";
194
205
  const _j = "jurisdiction";
195
206
  const _k = "key";
196
207
  const _kAI = "kenyaAdditionalInfo";
@@ -206,9 +217,11 @@ const _n = "name";
206
217
  const _nT = "nextToken";
207
218
  const _p = "prefix";
208
219
  const _pAI = "polandAdditionalInfo";
220
+ const _pAIh = "philippinesAdditionalInfo";
209
221
  const _pC = "postalCode";
210
222
  const _pEDC = "ppnExceptionDesignationCode";
211
223
  const _pEI = "parentEntityId";
224
+ const _pI = "peppolId";
212
225
  const _pSTI = "provincialSalesTaxId";
213
226
  const _pSU = "presignedS3Url";
214
227
  const _pT = "personType";
@@ -226,6 +239,7 @@ const _sAId = "sdiAccountId";
226
239
  const _sED = "systemEffectiveDate";
227
240
  const _sKAI = "southKoreaAdditionalInfo";
228
241
  const _sL = "s3Location";
242
+ const _sN = "sirenNumber";
229
243
  const _sOR = "stateOrRegion";
230
244
  const _sTC = "serviceTaxCodes";
231
245
  const _sTI = "secondaryTaxId";
@@ -327,18 +341,18 @@ export var AccountMetaData$ = [3, n0, _AMD,
327
341
  ];
328
342
  export var AdditionalInfoRequest$ = [3, n0, _AIR,
329
343
  0,
330
- [_mAI, _iAI, _eAI, _cAI, _sAI, _kAI, _sKAI, _tAI, _gAI, _iAIt, _rAI, _uAI, _pAI, _sAAI, _iAIn, _vAI, _eAIg, _gAIr, _uAIz],
331
- [() => MalaysiaAdditionalInfo$, () => IsraelAdditionalInfo$, () => EstoniaAdditionalInfo$, () => CanadaAdditionalInfo$, () => SpainAdditionalInfo$, () => KenyaAdditionalInfo$, () => SouthKoreaAdditionalInfo$, () => TurkeyAdditionalInfo$, () => GeorgiaAdditionalInfo$, () => ItalyAdditionalInfo$, () => RomaniaAdditionalInfo$, () => UkraineAdditionalInfo$, () => PolandAdditionalInfo$, () => SaudiArabiaAdditionalInfo$, () => IndonesiaAdditionalInfo$, () => VietnamAdditionalInfo$, () => EgyptAdditionalInfo$, () => GreeceAdditionalInfo$, () => UzbekistanAdditionalInfo$]
344
+ [_mAI, _iAI, _eAI, _cAI, _sAI, _kAI, _sKAI, _tAI, _gAI, _iAIt, _rAI, _uAI, _pAI, _sAAI, _iAIn, _vAI, _eAIg, _gAIr, _uAIz, _pAIh, _bAI, _cAIh, _fAI],
345
+ [() => MalaysiaAdditionalInfo$, () => IsraelAdditionalInfo$, () => EstoniaAdditionalInfo$, () => CanadaAdditionalInfo$, () => SpainAdditionalInfo$, () => KenyaAdditionalInfo$, () => SouthKoreaAdditionalInfo$, () => TurkeyAdditionalInfo$, () => GeorgiaAdditionalInfo$, () => ItalyAdditionalInfo$, () => RomaniaAdditionalInfo$, () => UkraineAdditionalInfo$, () => PolandAdditionalInfo$, () => SaudiArabiaAdditionalInfo$, () => IndonesiaAdditionalInfo$, () => VietnamAdditionalInfo$, () => EgyptAdditionalInfo$, () => GreeceAdditionalInfo$, () => UzbekistanAdditionalInfo$, () => PhilippinesAdditionalInfo$, () => BelgiumAdditionalInfo$, () => ChileAdditionalInfo$, () => FranceAdditionalInfo$]
332
346
  ];
333
347
  export var AdditionalInfoResponse$ = [3, n0, _AIRd,
334
348
  0,
335
- [_mAI, _iAI, _eAI, _cAI, _bAI, _sAI, _kAI, _sKAI, _tAI, _gAI, _iAIt, _rAI, _uAI, _pAI, _sAAI, _iAInd, _iAIn, _vAI, _eAIg, _gAIr, _uAIz],
336
- [() => MalaysiaAdditionalInfo$, () => IsraelAdditionalInfo$, () => EstoniaAdditionalInfo$, () => CanadaAdditionalInfo$, () => BrazilAdditionalInfo$, () => SpainAdditionalInfo$, () => KenyaAdditionalInfo$, () => SouthKoreaAdditionalInfo$, () => TurkeyAdditionalInfo$, () => GeorgiaAdditionalInfo$, () => ItalyAdditionalInfo$, () => RomaniaAdditionalInfo$, () => UkraineAdditionalInfo$, () => PolandAdditionalInfo$, () => SaudiArabiaAdditionalInfo$, () => IndiaAdditionalInfo$, () => IndonesiaAdditionalInfo$, () => VietnamAdditionalInfo$, () => EgyptAdditionalInfo$, () => GreeceAdditionalInfo$, () => UzbekistanAdditionalInfo$]
349
+ [_mAI, _iAI, _eAI, _cAI, _bAIr, _sAI, _kAI, _sKAI, _tAI, _gAI, _iAIt, _rAI, _uAI, _pAI, _sAAI, _iAInd, _iAIn, _vAI, _eAIg, _gAIr, _uAIz, _pAIh, _bAI, _cAIh, _fAI],
350
+ [() => MalaysiaAdditionalInfo$, () => IsraelAdditionalInfo$, () => EstoniaAdditionalInfo$, () => CanadaAdditionalInfo$, () => BrazilAdditionalInfo$, () => SpainAdditionalInfo$, () => KenyaAdditionalInfo$, () => SouthKoreaAdditionalInfo$, () => TurkeyAdditionalInfo$, () => GeorgiaAdditionalInfo$, () => ItalyAdditionalInfo$, () => RomaniaAdditionalInfo$, () => UkraineAdditionalInfo$, () => PolandAdditionalInfo$, () => SaudiArabiaAdditionalInfo$, () => IndiaAdditionalInfo$, () => IndonesiaAdditionalInfo$, () => VietnamAdditionalInfo$, () => EgyptAdditionalInfo$, () => GreeceAdditionalInfo$, () => UzbekistanAdditionalInfo$, () => PhilippinesAdditionalInfo$, () => BelgiumAdditionalInfo$, () => ChileAdditionalInfo$, () => FranceAdditionalInfo$]
337
351
  ];
338
352
  export var Address$ = [3, n0, _A,
339
353
  0,
340
- [_aL, _ci, _pC, _cC, _aLd, _aLdd, _dOC, _sOR],
341
- [0, 0, 0, 0, 0, 0, 0, 0], 4
354
+ [_pC, _cC, _aL, _aLd, _aLdd, _dOC, _ci, _sOR],
355
+ [0, 0, 0, 0, 0, 0, 0, 0], 2
342
356
  ];
343
357
  export var Authority$ = [3, n0, _Au,
344
358
  0,
@@ -385,7 +399,12 @@ export var BatchPutTaxRegistrationResponse$ = [3, n0, _BPTRRa,
385
399
  [_er, _sta],
386
400
  [[() => BatchPutTaxRegistrationErrors, 0], 0], 1
387
401
  ];
388
- export var BrazilAdditionalInfo$ = [3, n0, _BAI,
402
+ export var BelgiumAdditionalInfo$ = [3, n0, _BAI,
403
+ 0,
404
+ [_pI, _iMBE],
405
+ [0, 2]
406
+ ];
407
+ export var BrazilAdditionalInfo$ = [3, n0, _BAIr,
389
408
  0,
390
409
  [_cCc, _lNC],
391
410
  [0, 0]
@@ -395,6 +414,11 @@ export var CanadaAdditionalInfo$ = [3, n0, _CAI,
395
414
  [_pSTI, _cQSTN, _cRSTN, _iRA],
396
415
  [0, 0, 0, 2]
397
416
  ];
417
+ export var ChileAdditionalInfo$ = [3, n0, _CAIh,
418
+ 0,
419
+ [_dT, _bA],
420
+ [0, 0]
421
+ ];
398
422
  export var DeleteSupplementalTaxRegistrationRequest$ = [3, n0, _DSTRR,
399
423
  0,
400
424
  [_aIu],
@@ -435,6 +459,11 @@ export var ExemptionCertificate$ = [3, n0, _EC,
435
459
  [_dN, _dF],
436
460
  [0, 21], 2
437
461
  ];
462
+ export var FranceAdditionalInfo$ = [3, n0, _FAI,
463
+ 0,
464
+ [_sN],
465
+ [0], 1
466
+ ];
438
467
  export var GeorgiaAdditionalInfo$ = [3, n0, _GAI,
439
468
  0,
440
469
  [_pT],
@@ -497,13 +526,13 @@ export var IndonesiaAdditionalInfo$ = [3, n0, _IAIn,
497
526
  ];
498
527
  export var IsraelAdditionalInfo$ = [3, n0, _IAIs,
499
528
  0,
500
- [_dT, _cT],
529
+ [_dTe, _cT],
501
530
  [0, 0], 2
502
531
  ];
503
532
  export var ItalyAdditionalInfo$ = [3, n0, _IAIt,
504
533
  0,
505
- [_sAId, _cN, _cNu, _tC],
506
- [0, 0, 0, 0]
534
+ [_sAId, _cN, _cNu, _tC, _cT],
535
+ [0, 0, 0, 0, 0]
507
536
  ];
508
537
  export var Jurisdiction$ = [3, n0, _J,
509
538
  0,
@@ -550,10 +579,15 @@ export var MalaysiaAdditionalInfo$ = [3, n0, _MAI,
550
579
  [_sTC, _tIN, _bRN],
551
580
  [64 | 0, 0, 0]
552
581
  ];
553
- export var PolandAdditionalInfo$ = [3, n0, _PAI,
582
+ export var PhilippinesAdditionalInfo$ = [3, n0, _PAI,
554
583
  0,
555
- [_iRN, _iGVE],
556
- [0, 2]
584
+ [_iVR],
585
+ [2]
586
+ ];
587
+ export var PolandAdditionalInfo$ = [3, n0, _PAIo,
588
+ 0,
589
+ [_iRN, _iGVE, _tRNT],
590
+ [0, 2, 0]
557
591
  ];
558
592
  export var PutSupplementalTaxRegistrationRequest$ = [3, n0, _PSTRR,
559
593
  0,
@@ -144,18 +144,7 @@ export interface TaxSettings {
144
144
  paginateListTaxRegistrations(args?: ListTaxRegistrationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTaxRegistrationsCommandOutput>;
145
145
  }
146
146
  /**
147
- * <p>You can use the tax setting API to programmatically set, modify, and delete the tax
148
- * registration number (TRN), associated business legal name, and address (Collectively referred
149
- * to as "TRN information"). You can also programmatically view TRN information and tax addresses
150
- * ("Tax profiles"). </p>
151
- * <p>You can use this API to automate your TRN information settings instead of manually using
152
- * the console.</p>
153
- * <p>Service Endpoint</p>
154
- * <ul>
155
- * <li>
156
- * <p>https://tax.us-east-1.amazonaws.com</p>
157
- * </li>
158
- * </ul>
147
+ * <p>You can use the tax setting API to programmatically set, modify, and delete the tax registration number (TRN), associated business legal name, and address (Collectively referred to as "TRN information"). You can also programmatically view TRN information and tax addresses ("Tax profiles"). </p> <p>You can use this API to automate your TRN information settings instead of manually using the console.</p> <p>Service Endpoint</p> <ul> <li> <p>https://tax.us-east-1.amazonaws.com</p> </li> </ul>
159
148
  * @public
160
149
  */
161
150
  export declare class TaxSettings extends TaxSettingsClient implements TaxSettings {
@@ -184,18 +184,7 @@ export type TaxSettingsClientResolvedConfigType = __SmithyResolvedConfiguration<
184
184
  export interface TaxSettingsClientResolvedConfig extends TaxSettingsClientResolvedConfigType {
185
185
  }
186
186
  /**
187
- * <p>You can use the tax setting API to programmatically set, modify, and delete the tax
188
- * registration number (TRN), associated business legal name, and address (Collectively referred
189
- * to as "TRN information"). You can also programmatically view TRN information and tax addresses
190
- * ("Tax profiles"). </p>
191
- * <p>You can use this API to automate your TRN information settings instead of manually using
192
- * the console.</p>
193
- * <p>Service Endpoint</p>
194
- * <ul>
195
- * <li>
196
- * <p>https://tax.us-east-1.amazonaws.com</p>
197
- * </li>
198
- * </ul>
187
+ * <p>You can use the tax setting API to programmatically set, modify, and delete the tax registration number (TRN), associated business legal name, and address (Collectively referred to as "TRN information"). You can also programmatically view TRN information and tax addresses ("Tax profiles"). </p> <p>You can use this API to automate your TRN information settings instead of manually using the console.</p> <p>Service Endpoint</p> <ul> <li> <p>https://tax.us-east-1.amazonaws.com</p> </li> </ul>
199
188
  * @public
200
189
  */
201
190
  export declare class TaxSettingsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, TaxSettingsClientResolvedConfig> {
@@ -29,11 +29,7 @@ declare const BatchDeleteTaxRegistrationCommand_base: {
29
29
  };
30
30
  };
31
31
  /**
32
- * <p>Deletes tax registration for multiple accounts in batch. This can be used to delete tax
33
- * registrations for up to five accounts in one batch. </p>
34
- * <note>
35
- * <p>This API operation can't be used to delete your tax registration in Brazil. Use the <a href="https://console.aws.amazon.com/billing/home#/paymentpreferences/paymentmethods">Payment preferences</a> page in the Billing and Cost Management console instead.</p>
36
- * </note>
32
+ * <p>Deletes tax registration for multiple accounts in batch. This can be used to delete tax registrations for up to five accounts in one batch. </p> <note> <p>This API operation can't be used to delete your tax registration in Brazil. Use the <a href="https://console.aws.amazon.com/billing/home#/paymentpreferences/paymentmethods">Payment preferences</a> page in the Billing and Cost Management console instead.</p> </note>
37
33
  * @example
38
34
  * Use a bare-bones client and the command you need to make an API call.
39
35
  * ```javascript
@@ -74,8 +70,7 @@ declare const BatchDeleteTaxRegistrationCommand_base: {
74
70
  * <p>The exception thrown when an unexpected error occurs when processing a request.</p>
75
71
  *
76
72
  * @throws {@link ValidationException} (client fault)
77
- * <p>The exception when the input doesn't pass validation for at least one of the input
78
- * parameters. </p>
73
+ * <p>The exception when the input doesn't pass validation for at least one of the input parameters. </p>
79
74
  *
80
75
  * @throws {@link TaxSettingsServiceException}
81
76
  * <p>Base exception class for all service exceptions from TaxSettings service.</p>
@@ -29,8 +29,7 @@ declare const BatchGetTaxExemptionsCommand_base: {
29
29
  };
30
30
  };
31
31
  /**
32
- * <p>Get the active tax exemptions for a given list of accounts. The IAM action is <code>tax:GetExemptions</code>.
33
- * </p>
32
+ * <p>Get the active tax exemptions for a given list of accounts. The IAM action is <code>tax:GetExemptions</code>. </p>
34
33
  * @example
35
34
  * Use a bare-bones client and the command you need to make an API call.
36
35
  * ```javascript
@@ -96,8 +95,7 @@ declare const BatchGetTaxExemptionsCommand_base: {
96
95
  * <p>The exception thrown when the input doesn't have a resource associated to it.</p>
97
96
  *
98
97
  * @throws {@link ValidationException} (client fault)
99
- * <p>The exception when the input doesn't pass validation for at least one of the input
100
- * parameters. </p>
98
+ * <p>The exception when the input doesn't pass validation for at least one of the input parameters. </p>
101
99
  *
102
100
  * @throws {@link TaxSettingsServiceException}
103
101
  * <p>Base exception class for all service exceptions from TaxSettings service.</p>