@aws-sdk/client-taxsettings 3.987.0 → 3.989.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +35 -1021
- package/dist-cjs/models/TaxSettingsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +105 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +807 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +49 -43
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var TaxSettingsServiceException = require('./models/TaxSettingsServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,900 +113,6 @@ class TaxSettingsClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class TaxSettingsServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, TaxSettingsServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends TaxSettingsServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class AttachmentUploadException extends TaxSettingsServiceException {
|
|
133
|
-
name = "AttachmentUploadException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "AttachmentUploadException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, AttachmentUploadException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ConflictException extends TaxSettingsServiceException {
|
|
145
|
-
name = "ConflictException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
errorCode;
|
|
148
|
-
constructor(opts) {
|
|
149
|
-
super({
|
|
150
|
-
name: "ConflictException",
|
|
151
|
-
$fault: "client",
|
|
152
|
-
...opts,
|
|
153
|
-
});
|
|
154
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
155
|
-
this.errorCode = opts.errorCode;
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
class InternalServerException extends TaxSettingsServiceException {
|
|
159
|
-
name = "InternalServerException";
|
|
160
|
-
$fault = "server";
|
|
161
|
-
errorCode;
|
|
162
|
-
constructor(opts) {
|
|
163
|
-
super({
|
|
164
|
-
name: "InternalServerException",
|
|
165
|
-
$fault: "server",
|
|
166
|
-
...opts,
|
|
167
|
-
});
|
|
168
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
169
|
-
this.errorCode = opts.errorCode;
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
class ValidationException extends TaxSettingsServiceException {
|
|
173
|
-
name = "ValidationException";
|
|
174
|
-
$fault = "client";
|
|
175
|
-
errorCode;
|
|
176
|
-
fieldList;
|
|
177
|
-
constructor(opts) {
|
|
178
|
-
super({
|
|
179
|
-
name: "ValidationException",
|
|
180
|
-
$fault: "client",
|
|
181
|
-
...opts,
|
|
182
|
-
});
|
|
183
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
184
|
-
this.errorCode = opts.errorCode;
|
|
185
|
-
this.fieldList = opts.fieldList;
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
class ResourceNotFoundException extends TaxSettingsServiceException {
|
|
189
|
-
name = "ResourceNotFoundException";
|
|
190
|
-
$fault = "client";
|
|
191
|
-
errorCode;
|
|
192
|
-
constructor(opts) {
|
|
193
|
-
super({
|
|
194
|
-
name: "ResourceNotFoundException",
|
|
195
|
-
$fault: "client",
|
|
196
|
-
...opts,
|
|
197
|
-
});
|
|
198
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
199
|
-
this.errorCode = opts.errorCode;
|
|
200
|
-
}
|
|
201
|
-
}
|
|
202
|
-
class CaseCreationLimitExceededException extends TaxSettingsServiceException {
|
|
203
|
-
name = "CaseCreationLimitExceededException";
|
|
204
|
-
$fault = "client";
|
|
205
|
-
constructor(opts) {
|
|
206
|
-
super({
|
|
207
|
-
name: "CaseCreationLimitExceededException",
|
|
208
|
-
$fault: "client",
|
|
209
|
-
...opts,
|
|
210
|
-
});
|
|
211
|
-
Object.setPrototypeOf(this, CaseCreationLimitExceededException.prototype);
|
|
212
|
-
}
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
const _A = "Address";
|
|
216
|
-
const _AD = "AccountDetails";
|
|
217
|
-
const _ADE = "AccessDeniedException";
|
|
218
|
-
const _ADL = "AccountDetailsList";
|
|
219
|
-
const _AIR = "AdditionalInfoRequest";
|
|
220
|
-
const _AIRd = "AdditionalInfoResponse";
|
|
221
|
-
const _AMD = "AccountMetaData";
|
|
222
|
-
const _ARM = "AddressRoleMap";
|
|
223
|
-
const _AUE = "AttachmentUploadException";
|
|
224
|
-
const _Au = "Authority";
|
|
225
|
-
const _Aut = "Authorities";
|
|
226
|
-
const _BAI = "BrazilAdditionalInfo";
|
|
227
|
-
const _BDTR = "BatchDeleteTaxRegistration";
|
|
228
|
-
const _BDTRE = "BatchDeleteTaxRegistrationError";
|
|
229
|
-
const _BDTREa = "BatchDeleteTaxRegistrationErrors";
|
|
230
|
-
const _BDTRR = "BatchDeleteTaxRegistrationRequest";
|
|
231
|
-
const _BDTRRa = "BatchDeleteTaxRegistrationResponse";
|
|
232
|
-
const _BGTE = "BatchGetTaxExemptions";
|
|
233
|
-
const _BGTER = "BatchGetTaxExemptionsRequest";
|
|
234
|
-
const _BGTERa = "BatchGetTaxExemptionsResponse";
|
|
235
|
-
const _BPTR = "BatchPutTaxRegistration";
|
|
236
|
-
const _BPTRE = "BatchPutTaxRegistrationError";
|
|
237
|
-
const _BPTREa = "BatchPutTaxRegistrationErrors";
|
|
238
|
-
const _BPTRR = "BatchPutTaxRegistrationRequest";
|
|
239
|
-
const _BPTRRa = "BatchPutTaxRegistrationResponse";
|
|
240
|
-
const _CAI = "CanadaAdditionalInfo";
|
|
241
|
-
const _CCLEE = "CaseCreationLimitExceededException";
|
|
242
|
-
const _CE = "ConflictException";
|
|
243
|
-
const _DSL = "DestinationS3Location";
|
|
244
|
-
const _DSTR = "DeleteSupplementalTaxRegistration";
|
|
245
|
-
const _DSTRR = "DeleteSupplementalTaxRegistrationRequest";
|
|
246
|
-
const _DSTRRe = "DeleteSupplementalTaxRegistrationResponse";
|
|
247
|
-
const _DTR = "DeleteTaxRegistration";
|
|
248
|
-
const _DTRR = "DeleteTaxRegistrationRequest";
|
|
249
|
-
const _DTRRe = "DeleteTaxRegistrationResponse";
|
|
250
|
-
const _EAI = "EgyptAdditionalInfo";
|
|
251
|
-
const _EAIs = "EstoniaAdditionalInfo";
|
|
252
|
-
const _EC = "ExemptionCertificate";
|
|
253
|
-
const _EM = "ErrorMessage";
|
|
254
|
-
const _GAI = "GeorgiaAdditionalInfo";
|
|
255
|
-
const _GAIr = "GreeceAdditionalInfo";
|
|
256
|
-
const _GTET = "GetTaxExemptionTypes";
|
|
257
|
-
const _GTETR = "GetTaxExemptionTypesRequest";
|
|
258
|
-
const _GTETRe = "GetTaxExemptionTypesResponse";
|
|
259
|
-
const _GTI = "GetTaxInheritance";
|
|
260
|
-
const _GTIR = "GetTaxInheritanceRequest";
|
|
261
|
-
const _GTIRe = "GetTaxInheritanceResponse";
|
|
262
|
-
const _GTR = "GetTaxRegistration";
|
|
263
|
-
const _GTRD = "GetTaxRegistrationDocument";
|
|
264
|
-
const _GTRDR = "GetTaxRegistrationDocumentRequest";
|
|
265
|
-
const _GTRDRe = "GetTaxRegistrationDocumentResponse";
|
|
266
|
-
const _GTRR = "GetTaxRegistrationRequest";
|
|
267
|
-
const _GTRRe = "GetTaxRegistrationResponse";
|
|
268
|
-
const _IAI = "IndiaAdditionalInfo";
|
|
269
|
-
const _IAIn = "IndonesiaAdditionalInfo";
|
|
270
|
-
const _IAIs = "IsraelAdditionalInfo";
|
|
271
|
-
const _IAIt = "ItalyAdditionalInfo";
|
|
272
|
-
const _ISE = "InternalServerException";
|
|
273
|
-
const _J = "Jurisdiction";
|
|
274
|
-
const _KAI = "KenyaAdditionalInfo";
|
|
275
|
-
const _LSTR = "ListSupplementalTaxRegistrations";
|
|
276
|
-
const _LSTRR = "ListSupplementalTaxRegistrationsRequest";
|
|
277
|
-
const _LSTRRi = "ListSupplementalTaxRegistrationsResponse";
|
|
278
|
-
const _LTE = "ListTaxExemptions";
|
|
279
|
-
const _LTER = "ListTaxExemptionsRequest";
|
|
280
|
-
const _LTERi = "ListTaxExemptionsResponse";
|
|
281
|
-
const _LTR = "ListTaxRegistrations";
|
|
282
|
-
const _LTRR = "ListTaxRegistrationsRequest";
|
|
283
|
-
const _LTRRi = "ListTaxRegistrationsResponse";
|
|
284
|
-
const _MAI = "MalaysiaAdditionalInfo";
|
|
285
|
-
const _PAI = "PolandAdditionalInfo";
|
|
286
|
-
const _PSTR = "PutSupplementalTaxRegistration";
|
|
287
|
-
const _PSTRR = "PutSupplementalTaxRegistrationRequest";
|
|
288
|
-
const _PSTRRu = "PutSupplementalTaxRegistrationResponse";
|
|
289
|
-
const _PTE = "PutTaxExemption";
|
|
290
|
-
const _PTER = "PutTaxExemptionRequest";
|
|
291
|
-
const _PTERu = "PutTaxExemptionResponse";
|
|
292
|
-
const _PTI = "PutTaxInheritance";
|
|
293
|
-
const _PTIR = "PutTaxInheritanceRequest";
|
|
294
|
-
const _PTIRu = "PutTaxInheritanceResponse";
|
|
295
|
-
const _PTR = "PutTaxRegistration";
|
|
296
|
-
const _PTRR = "PutTaxRegistrationRequest";
|
|
297
|
-
const _PTRRu = "PutTaxRegistrationResponse";
|
|
298
|
-
const _RAI = "RomaniaAdditionalInfo";
|
|
299
|
-
const _RNFE = "ResourceNotFoundException";
|
|
300
|
-
const _SAAI = "SaudiArabiaAdditionalInfo";
|
|
301
|
-
const _SAI = "SpainAdditionalInfo";
|
|
302
|
-
const _SKAI = "SouthKoreaAdditionalInfo";
|
|
303
|
-
const _SSL = "SourceS3Location";
|
|
304
|
-
const _STR = "SupplementalTaxRegistration";
|
|
305
|
-
const _STRE = "SupplementalTaxRegistrationEntry";
|
|
306
|
-
const _STRL = "SupplementalTaxRegistrationList";
|
|
307
|
-
const _TAI = "TurkeyAdditionalInfo";
|
|
308
|
-
const _TDM = "TaxDocumentMetadata";
|
|
309
|
-
const _TDMa = "TaxDocumentMetadatas";
|
|
310
|
-
const _TE = "TaxExemption";
|
|
311
|
-
const _TED = "TaxExemptionDetails";
|
|
312
|
-
const _TEDM = "TaxExemptionDetailsMap";
|
|
313
|
-
const _TET = "TaxExemptionType";
|
|
314
|
-
const _TETa = "TaxExemptionTypes";
|
|
315
|
-
const _TEa = "TaxExemptions";
|
|
316
|
-
const _TID = "TaxInheritanceDetails";
|
|
317
|
-
const _TR = "TaxRegistration";
|
|
318
|
-
const _TRD = "TaxRegistrationDocument";
|
|
319
|
-
const _TRDF = "TaxRegistrationDocFile";
|
|
320
|
-
const _TRDa = "TaxRegistrationDocuments";
|
|
321
|
-
const _TRE = "TaxRegistrationEntry";
|
|
322
|
-
const _TRWJ = "TaxRegistrationWithJurisdiction";
|
|
323
|
-
const _UAI = "UkraineAdditionalInfo";
|
|
324
|
-
const _UAIz = "UzbekistanAdditionalInfo";
|
|
325
|
-
const _VAI = "VietnamAdditionalInfo";
|
|
326
|
-
const _VD = "VerificationDetails";
|
|
327
|
-
const _VE = "ValidationException";
|
|
328
|
-
const _VEF = "ValidationExceptionField";
|
|
329
|
-
const _VEFL = "ValidationExceptionFieldList";
|
|
330
|
-
const _a = "address";
|
|
331
|
-
const _aD = "accountDetails";
|
|
332
|
-
const _aI = "accountId";
|
|
333
|
-
const _aIc = "accountIds";
|
|
334
|
-
const _aIu = "authorityId";
|
|
335
|
-
const _aJ = "applicableJurisdictions";
|
|
336
|
-
const _aL = "addressLine1";
|
|
337
|
-
const _aLd = "addressLine2";
|
|
338
|
-
const _aLdd = "addressLine3";
|
|
339
|
-
const _aMD = "accountMetaData";
|
|
340
|
-
const _aN = "accountName";
|
|
341
|
-
const _aRM = "addressRoleMap";
|
|
342
|
-
const _aT = "addressType";
|
|
343
|
-
const _aTI = "additionalTaxInformation";
|
|
344
|
-
const _au = "authority";
|
|
345
|
-
const _b = "bucket";
|
|
346
|
-
const _bAI = "brazilAdditionalInfo";
|
|
347
|
-
const _bRN = "businessRegistrationNumber";
|
|
348
|
-
const _bRNu = "businessRepresentativeName";
|
|
349
|
-
const _c = "client";
|
|
350
|
-
const _cAC = "contractingAuthorityCode";
|
|
351
|
-
const _cAI = "canadaAdditionalInfo";
|
|
352
|
-
const _cC = "countryCode";
|
|
353
|
-
const _cCc = "ccmCode";
|
|
354
|
-
const _cEI = "certifiedEmailId";
|
|
355
|
-
const _cI = "caseId";
|
|
356
|
-
const _cN = "cigNumber";
|
|
357
|
-
const _cNu = "cupNumber";
|
|
358
|
-
const _cQSTN = "canadaQuebecSalesTaxNumber";
|
|
359
|
-
const _cRSTN = "canadaRetailSalesTaxNumber";
|
|
360
|
-
const _cT = "customerType";
|
|
361
|
-
const _ci = "city";
|
|
362
|
-
const _co = "country";
|
|
363
|
-
const _cod = "code";
|
|
364
|
-
const _d = "description";
|
|
365
|
-
const _dF = "documentFile";
|
|
366
|
-
const _dFP = "destinationFilePath";
|
|
367
|
-
const _dN = "documentName";
|
|
368
|
-
const _dNe = "decisionNumber";
|
|
369
|
-
const _dNi = "displayName";
|
|
370
|
-
const _dOB = "dateOfBirth";
|
|
371
|
-
const _dOC = "districtOrCounty";
|
|
372
|
-
const _dSL = "destinationS3Location";
|
|
373
|
-
const _dT = "dealerType";
|
|
374
|
-
const _e = "error";
|
|
375
|
-
const _eAI = "estoniaAdditionalInfo";
|
|
376
|
-
const _eAIg = "egyptAdditionalInfo";
|
|
377
|
-
const _eC = "errorCode";
|
|
378
|
-
const _eCx = "exemptionCertificate";
|
|
379
|
-
const _eD = "effectiveDate";
|
|
380
|
-
const _eDx = "expirationDate";
|
|
381
|
-
const _eIN = "enterpriseIdentificationNumber";
|
|
382
|
-
const _eT = "exemptionType";
|
|
383
|
-
const _eTCN = "electronicTransactionCodeNumber";
|
|
384
|
-
const _er = "errors";
|
|
385
|
-
const _f = "file";
|
|
386
|
-
const _fA = "failedAccounts";
|
|
387
|
-
const _fC = "fileContent";
|
|
388
|
-
const _fL = "fieldList";
|
|
389
|
-
const _fN = "fileName";
|
|
390
|
-
const _gAI = "georgiaAdditionalInfo";
|
|
391
|
-
const _gAIr = "greeceAdditionalInfo";
|
|
392
|
-
const _h = "http";
|
|
393
|
-
const _hE = "httpError";
|
|
394
|
-
const _hOD = "heritageObtainedDetails";
|
|
395
|
-
const _hOPE = "heritageObtainedParentEntity";
|
|
396
|
-
const _hOR = "heritageObtainedReason";
|
|
397
|
-
const _hS = "heritageStatus";
|
|
398
|
-
const _i = "industries";
|
|
399
|
-
const _iAI = "israelAdditionalInfo";
|
|
400
|
-
const _iAIn = "indonesiaAdditionalInfo";
|
|
401
|
-
const _iAInd = "indiaAdditionalInfo";
|
|
402
|
-
const _iAIt = "italyAdditionalInfo";
|
|
403
|
-
const _iGVE = "isGroupVatEnabled";
|
|
404
|
-
const _iOB = "itemOfBusiness";
|
|
405
|
-
const _iOR = "inheritanceObtainedReason";
|
|
406
|
-
const _iRA = "isResellerAccount";
|
|
407
|
-
const _iRN = "individualRegistrationNumber";
|
|
408
|
-
const _j = "jurisdiction";
|
|
409
|
-
const _k = "key";
|
|
410
|
-
const _kAI = "kenyaAdditionalInfo";
|
|
411
|
-
const _kEI = "kepEmailId";
|
|
412
|
-
const _lA = "legalAddress";
|
|
413
|
-
const _lN = "legalName";
|
|
414
|
-
const _lNC = "legalNatureCode";
|
|
415
|
-
const _lOB = "lineOfBusiness";
|
|
416
|
-
const _m = "message";
|
|
417
|
-
const _mAI = "malaysiaAdditionalInfo";
|
|
418
|
-
const _mR = "maxResults";
|
|
419
|
-
const _n = "name";
|
|
420
|
-
const _nT = "nextToken";
|
|
421
|
-
const _p = "prefix";
|
|
422
|
-
const _pAI = "polandAdditionalInfo";
|
|
423
|
-
const _pC = "postalCode";
|
|
424
|
-
const _pEDC = "ppnExceptionDesignationCode";
|
|
425
|
-
const _pEI = "parentEntityId";
|
|
426
|
-
const _pSTI = "provincialSalesTaxId";
|
|
427
|
-
const _pSU = "presignedS3Url";
|
|
428
|
-
const _pT = "personType";
|
|
429
|
-
const _pVN = "paymentVoucherNumber";
|
|
430
|
-
const _pVND = "paymentVoucherNumberDate";
|
|
431
|
-
const _pa = "pan";
|
|
432
|
-
const _rAI = "romaniaAdditionalInfo";
|
|
433
|
-
const _rCC = "registryCommercialCode";
|
|
434
|
-
const _rI = "registrationId";
|
|
435
|
-
const _rT = "registrationType";
|
|
436
|
-
const _s = "seller";
|
|
437
|
-
const _sAAI = "saudiArabiaAdditionalInfo";
|
|
438
|
-
const _sAI = "spainAdditionalInfo";
|
|
439
|
-
const _sAId = "sdiAccountId";
|
|
440
|
-
const _sED = "systemEffectiveDate";
|
|
441
|
-
const _sKAI = "southKoreaAdditionalInfo";
|
|
442
|
-
const _sL = "s3Location";
|
|
443
|
-
const _sOR = "stateOrRegion";
|
|
444
|
-
const _sTC = "serviceTaxCodes";
|
|
445
|
-
const _sTI = "secondaryTaxId";
|
|
446
|
-
const _se = "server";
|
|
447
|
-
const _sec = "sector";
|
|
448
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.taxsettings";
|
|
449
|
-
const _st = "state";
|
|
450
|
-
const _sta = "status";
|
|
451
|
-
const _tAI = "turkeyAdditionalInfo";
|
|
452
|
-
const _tC = "taxCode";
|
|
453
|
-
const _tDAT = "taxDocumentAccessToken";
|
|
454
|
-
const _tDM = "taxDocumentMetadata";
|
|
455
|
-
const _tDMa = "taxDocumentMetadatas";
|
|
456
|
-
const _tDN = "taxDocumentName";
|
|
457
|
-
const _tE = "taxExemptions";
|
|
458
|
-
const _tEDM = "taxExemptionDetailsMap";
|
|
459
|
-
const _tET = "taxExemptionTypes";
|
|
460
|
-
const _tETa = "taxExemptionType";
|
|
461
|
-
const _tID = "taxInheritanceDetails";
|
|
462
|
-
const _tIN = "taxInformationNumber";
|
|
463
|
-
const _tO = "taxOffice";
|
|
464
|
-
const _tR = "taxRegistration";
|
|
465
|
-
const _tRD = "taxRegistrationDocuments";
|
|
466
|
-
const _tRE = "taxRegistrationEntry";
|
|
467
|
-
const _tRNT = "taxRegistrationNumberType";
|
|
468
|
-
const _tRa = "taxRegistrations";
|
|
469
|
-
const _uAI = "ukraineAdditionalInfo";
|
|
470
|
-
const _uAIz = "uzbekistanAdditionalInfo";
|
|
471
|
-
const _uIN = "uniqueIdentificationNumber";
|
|
472
|
-
const _uINED = "uniqueIdentificationNumberExpirationDate";
|
|
473
|
-
const _uTT = "ukraineTrnType";
|
|
474
|
-
const _vAI = "vietnamAdditionalInfo";
|
|
475
|
-
const _vD = "verificationDetails";
|
|
476
|
-
const _vRN = "vatRegistrationNumber";
|
|
477
|
-
const n0 = "com.amazonaws.taxsettings";
|
|
478
|
-
var ErrorMessage = [0, n0, _EM, 8, 0];
|
|
479
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
480
|
-
{ [_e]: _c, [_hE]: 401 },
|
|
481
|
-
[_m],
|
|
482
|
-
[[() => ErrorMessage, 0]], 1
|
|
483
|
-
];
|
|
484
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
485
|
-
var AccountDetails$ = [3, n0, _AD,
|
|
486
|
-
8,
|
|
487
|
-
[_aI, _tR, _tID, _aMD],
|
|
488
|
-
[0, [() => TaxRegistrationWithJurisdiction$, 0], () => TaxInheritanceDetails$, [() => AccountMetaData$, 0]]
|
|
489
|
-
];
|
|
490
|
-
var AccountMetaData$ = [3, n0, _AMD,
|
|
491
|
-
8,
|
|
492
|
-
[_aN, _s, _a, _aT, _aRM],
|
|
493
|
-
[0, 0, () => Address$, 0, () => AddressRoleMap]
|
|
494
|
-
];
|
|
495
|
-
var AdditionalInfoRequest$ = [3, n0, _AIR,
|
|
496
|
-
0,
|
|
497
|
-
[_mAI, _iAI, _eAI, _cAI, _sAI, _kAI, _sKAI, _tAI, _gAI, _iAIt, _rAI, _uAI, _pAI, _sAAI, _iAIn, _vAI, _eAIg, _gAIr, _uAIz],
|
|
498
|
-
[() => MalaysiaAdditionalInfo$, () => IsraelAdditionalInfo$, () => EstoniaAdditionalInfo$, () => CanadaAdditionalInfo$, () => SpainAdditionalInfo$, () => KenyaAdditionalInfo$, () => SouthKoreaAdditionalInfo$, () => TurkeyAdditionalInfo$, () => GeorgiaAdditionalInfo$, () => ItalyAdditionalInfo$, () => RomaniaAdditionalInfo$, () => UkraineAdditionalInfo$, () => PolandAdditionalInfo$, () => SaudiArabiaAdditionalInfo$, () => IndonesiaAdditionalInfo$, () => VietnamAdditionalInfo$, () => EgyptAdditionalInfo$, () => GreeceAdditionalInfo$, () => UzbekistanAdditionalInfo$]
|
|
499
|
-
];
|
|
500
|
-
var AdditionalInfoResponse$ = [3, n0, _AIRd,
|
|
501
|
-
0,
|
|
502
|
-
[_mAI, _iAI, _eAI, _cAI, _bAI, _sAI, _kAI, _sKAI, _tAI, _gAI, _iAIt, _rAI, _uAI, _pAI, _sAAI, _iAInd, _iAIn, _vAI, _eAIg, _gAIr, _uAIz],
|
|
503
|
-
[() => MalaysiaAdditionalInfo$, () => IsraelAdditionalInfo$, () => EstoniaAdditionalInfo$, () => CanadaAdditionalInfo$, () => BrazilAdditionalInfo$, () => SpainAdditionalInfo$, () => KenyaAdditionalInfo$, () => SouthKoreaAdditionalInfo$, () => TurkeyAdditionalInfo$, () => GeorgiaAdditionalInfo$, () => ItalyAdditionalInfo$, () => RomaniaAdditionalInfo$, () => UkraineAdditionalInfo$, () => PolandAdditionalInfo$, () => SaudiArabiaAdditionalInfo$, () => IndiaAdditionalInfo$, () => IndonesiaAdditionalInfo$, () => VietnamAdditionalInfo$, () => EgyptAdditionalInfo$, () => GreeceAdditionalInfo$, () => UzbekistanAdditionalInfo$]
|
|
504
|
-
];
|
|
505
|
-
var Address$ = [3, n0, _A,
|
|
506
|
-
0,
|
|
507
|
-
[_aL, _ci, _pC, _cC, _aLd, _aLdd, _dOC, _sOR],
|
|
508
|
-
[0, 0, 0, 0, 0, 0, 0, 0], 4
|
|
509
|
-
];
|
|
510
|
-
var AttachmentUploadException$ = [-3, n0, _AUE,
|
|
511
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
512
|
-
[_m],
|
|
513
|
-
[[() => ErrorMessage, 0]], 1
|
|
514
|
-
];
|
|
515
|
-
schema.TypeRegistry.for(n0).registerError(AttachmentUploadException$, AttachmentUploadException);
|
|
516
|
-
var Authority$ = [3, n0, _Au,
|
|
517
|
-
0,
|
|
518
|
-
[_co, _st],
|
|
519
|
-
[0, 0], 1
|
|
520
|
-
];
|
|
521
|
-
var BatchDeleteTaxRegistrationError$ = [3, n0, _BDTRE,
|
|
522
|
-
0,
|
|
523
|
-
[_aI, _m, _cod],
|
|
524
|
-
[0, [() => ErrorMessage, 0], 0], 2
|
|
525
|
-
];
|
|
526
|
-
var BatchDeleteTaxRegistrationRequest$ = [3, n0, _BDTRR,
|
|
527
|
-
0,
|
|
528
|
-
[_aIc],
|
|
529
|
-
[64 | 0], 1
|
|
530
|
-
];
|
|
531
|
-
var BatchDeleteTaxRegistrationResponse$ = [3, n0, _BDTRRa,
|
|
532
|
-
0,
|
|
533
|
-
[_er],
|
|
534
|
-
[[() => BatchDeleteTaxRegistrationErrors, 0]], 1
|
|
535
|
-
];
|
|
536
|
-
var BatchGetTaxExemptionsRequest$ = [3, n0, _BGTER,
|
|
537
|
-
0,
|
|
538
|
-
[_aIc],
|
|
539
|
-
[64 | 0], 1
|
|
540
|
-
];
|
|
541
|
-
var BatchGetTaxExemptionsResponse$ = [3, n0, _BGTERa,
|
|
542
|
-
0,
|
|
543
|
-
[_tEDM, _fA],
|
|
544
|
-
[() => TaxExemptionDetailsMap, 64 | 0]
|
|
545
|
-
];
|
|
546
|
-
var BatchPutTaxRegistrationError$ = [3, n0, _BPTRE,
|
|
547
|
-
0,
|
|
548
|
-
[_aI, _m, _cod],
|
|
549
|
-
[0, [() => ErrorMessage, 0], 0], 2
|
|
550
|
-
];
|
|
551
|
-
var BatchPutTaxRegistrationRequest$ = [3, n0, _BPTRR,
|
|
552
|
-
0,
|
|
553
|
-
[_aIc, _tRE],
|
|
554
|
-
[64 | 0, [() => TaxRegistrationEntry$, 0]], 2
|
|
555
|
-
];
|
|
556
|
-
var BatchPutTaxRegistrationResponse$ = [3, n0, _BPTRRa,
|
|
557
|
-
0,
|
|
558
|
-
[_er, _sta],
|
|
559
|
-
[[() => BatchPutTaxRegistrationErrors, 0], 0], 1
|
|
560
|
-
];
|
|
561
|
-
var BrazilAdditionalInfo$ = [3, n0, _BAI,
|
|
562
|
-
0,
|
|
563
|
-
[_cCc, _lNC],
|
|
564
|
-
[0, 0]
|
|
565
|
-
];
|
|
566
|
-
var CanadaAdditionalInfo$ = [3, n0, _CAI,
|
|
567
|
-
0,
|
|
568
|
-
[_pSTI, _cQSTN, _cRSTN, _iRA],
|
|
569
|
-
[0, 0, 0, 2]
|
|
570
|
-
];
|
|
571
|
-
var CaseCreationLimitExceededException$ = [-3, n0, _CCLEE,
|
|
572
|
-
{ [_e]: _c, [_hE]: 413 },
|
|
573
|
-
[_m],
|
|
574
|
-
[[() => ErrorMessage, 0]], 1
|
|
575
|
-
];
|
|
576
|
-
schema.TypeRegistry.for(n0).registerError(CaseCreationLimitExceededException$, CaseCreationLimitExceededException);
|
|
577
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
578
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
579
|
-
[_m, _eC],
|
|
580
|
-
[[() => ErrorMessage, 0], 0], 2
|
|
581
|
-
];
|
|
582
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
583
|
-
var DeleteSupplementalTaxRegistrationRequest$ = [3, n0, _DSTRR,
|
|
584
|
-
0,
|
|
585
|
-
[_aIu],
|
|
586
|
-
[0], 1
|
|
587
|
-
];
|
|
588
|
-
var DeleteSupplementalTaxRegistrationResponse$ = [3, n0, _DSTRRe,
|
|
589
|
-
0,
|
|
590
|
-
[],
|
|
591
|
-
[]
|
|
592
|
-
];
|
|
593
|
-
var DeleteTaxRegistrationRequest$ = [3, n0, _DTRR,
|
|
594
|
-
0,
|
|
595
|
-
[_aI],
|
|
596
|
-
[0]
|
|
597
|
-
];
|
|
598
|
-
var DeleteTaxRegistrationResponse$ = [3, n0, _DTRRe,
|
|
599
|
-
0,
|
|
600
|
-
[],
|
|
601
|
-
[]
|
|
602
|
-
];
|
|
603
|
-
var DestinationS3Location$ = [3, n0, _DSL,
|
|
604
|
-
0,
|
|
605
|
-
[_b, _p],
|
|
606
|
-
[0, 0], 1
|
|
607
|
-
];
|
|
608
|
-
var EgyptAdditionalInfo$ = [3, n0, _EAI,
|
|
609
|
-
0,
|
|
610
|
-
[_uIN, _uINED],
|
|
611
|
-
[0, 0]
|
|
612
|
-
];
|
|
613
|
-
var EstoniaAdditionalInfo$ = [3, n0, _EAIs,
|
|
614
|
-
0,
|
|
615
|
-
[_rCC],
|
|
616
|
-
[0], 1
|
|
617
|
-
];
|
|
618
|
-
var ExemptionCertificate$ = [3, n0, _EC,
|
|
619
|
-
0,
|
|
620
|
-
[_dN, _dF],
|
|
621
|
-
[0, 21], 2
|
|
622
|
-
];
|
|
623
|
-
var GeorgiaAdditionalInfo$ = [3, n0, _GAI,
|
|
624
|
-
0,
|
|
625
|
-
[_pT],
|
|
626
|
-
[0], 1
|
|
627
|
-
];
|
|
628
|
-
var GetTaxExemptionTypesRequest$ = [3, n0, _GTETR,
|
|
629
|
-
0,
|
|
630
|
-
[],
|
|
631
|
-
[]
|
|
632
|
-
];
|
|
633
|
-
var GetTaxExemptionTypesResponse$ = [3, n0, _GTETRe,
|
|
634
|
-
0,
|
|
635
|
-
[_tET],
|
|
636
|
-
[() => TaxExemptionTypes]
|
|
637
|
-
];
|
|
638
|
-
var GetTaxInheritanceRequest$ = [3, n0, _GTIR,
|
|
639
|
-
0,
|
|
640
|
-
[],
|
|
641
|
-
[]
|
|
642
|
-
];
|
|
643
|
-
var GetTaxInheritanceResponse$ = [3, n0, _GTIRe,
|
|
644
|
-
0,
|
|
645
|
-
[_hS],
|
|
646
|
-
[0]
|
|
647
|
-
];
|
|
648
|
-
var GetTaxRegistrationDocumentRequest$ = [3, n0, _GTRDR,
|
|
649
|
-
0,
|
|
650
|
-
[_tDM, _dSL],
|
|
651
|
-
[() => TaxDocumentMetadata$, () => DestinationS3Location$], 1
|
|
652
|
-
];
|
|
653
|
-
var GetTaxRegistrationDocumentResponse$ = [3, n0, _GTRDRe,
|
|
654
|
-
0,
|
|
655
|
-
[_dFP, _pSU],
|
|
656
|
-
[0, 0]
|
|
657
|
-
];
|
|
658
|
-
var GetTaxRegistrationRequest$ = [3, n0, _GTRR,
|
|
659
|
-
0,
|
|
660
|
-
[_aI],
|
|
661
|
-
[0]
|
|
662
|
-
];
|
|
663
|
-
var GetTaxRegistrationResponse$ = [3, n0, _GTRRe,
|
|
664
|
-
0,
|
|
665
|
-
[_tR],
|
|
666
|
-
[[() => TaxRegistration$, 0]]
|
|
667
|
-
];
|
|
668
|
-
var GreeceAdditionalInfo$ = [3, n0, _GAIr,
|
|
669
|
-
0,
|
|
670
|
-
[_cAC],
|
|
671
|
-
[0]
|
|
672
|
-
];
|
|
673
|
-
var IndiaAdditionalInfo$ = [3, n0, _IAI,
|
|
674
|
-
0,
|
|
675
|
-
[_pa],
|
|
676
|
-
[0]
|
|
677
|
-
];
|
|
678
|
-
var IndonesiaAdditionalInfo$ = [3, n0, _IAIn,
|
|
679
|
-
0,
|
|
680
|
-
[_tRNT, _pEDC, _dNe],
|
|
681
|
-
[0, 0, 0]
|
|
682
|
-
];
|
|
683
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
684
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
685
|
-
[_m, _eC],
|
|
686
|
-
[[() => ErrorMessage, 0], 0], 2
|
|
687
|
-
];
|
|
688
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
689
|
-
var IsraelAdditionalInfo$ = [3, n0, _IAIs,
|
|
690
|
-
0,
|
|
691
|
-
[_dT, _cT],
|
|
692
|
-
[0, 0], 2
|
|
693
|
-
];
|
|
694
|
-
var ItalyAdditionalInfo$ = [3, n0, _IAIt,
|
|
695
|
-
0,
|
|
696
|
-
[_sAId, _cN, _cNu, _tC],
|
|
697
|
-
[0, 0, 0, 0]
|
|
698
|
-
];
|
|
699
|
-
var Jurisdiction$ = [3, n0, _J,
|
|
700
|
-
0,
|
|
701
|
-
[_cC, _sOR],
|
|
702
|
-
[0, 0], 1
|
|
703
|
-
];
|
|
704
|
-
var KenyaAdditionalInfo$ = [3, n0, _KAI,
|
|
705
|
-
0,
|
|
706
|
-
[_pT],
|
|
707
|
-
[0], 1
|
|
708
|
-
];
|
|
709
|
-
var ListSupplementalTaxRegistrationsRequest$ = [3, n0, _LSTRR,
|
|
710
|
-
0,
|
|
711
|
-
[_mR, _nT],
|
|
712
|
-
[1, 0]
|
|
713
|
-
];
|
|
714
|
-
var ListSupplementalTaxRegistrationsResponse$ = [3, n0, _LSTRRi,
|
|
715
|
-
0,
|
|
716
|
-
[_tRa, _nT],
|
|
717
|
-
[[() => SupplementalTaxRegistrationList, 0], 0], 1
|
|
718
|
-
];
|
|
719
|
-
var ListTaxExemptionsRequest$ = [3, n0, _LTER,
|
|
720
|
-
0,
|
|
721
|
-
[_mR, _nT],
|
|
722
|
-
[1, 0]
|
|
723
|
-
];
|
|
724
|
-
var ListTaxExemptionsResponse$ = [3, n0, _LTERi,
|
|
725
|
-
0,
|
|
726
|
-
[_nT, _tEDM],
|
|
727
|
-
[0, () => TaxExemptionDetailsMap]
|
|
728
|
-
];
|
|
729
|
-
var ListTaxRegistrationsRequest$ = [3, n0, _LTRR,
|
|
730
|
-
0,
|
|
731
|
-
[_mR, _nT],
|
|
732
|
-
[1, 0]
|
|
733
|
-
];
|
|
734
|
-
var ListTaxRegistrationsResponse$ = [3, n0, _LTRRi,
|
|
735
|
-
0,
|
|
736
|
-
[_aD, _nT],
|
|
737
|
-
[[() => AccountDetailsList, 0], 0], 1
|
|
738
|
-
];
|
|
739
|
-
var MalaysiaAdditionalInfo$ = [3, n0, _MAI,
|
|
740
|
-
0,
|
|
741
|
-
[_sTC, _tIN, _bRN],
|
|
742
|
-
[64 | 0, 0, 0]
|
|
743
|
-
];
|
|
744
|
-
var PolandAdditionalInfo$ = [3, n0, _PAI,
|
|
745
|
-
0,
|
|
746
|
-
[_iRN, _iGVE],
|
|
747
|
-
[0, 2]
|
|
748
|
-
];
|
|
749
|
-
var PutSupplementalTaxRegistrationRequest$ = [3, n0, _PSTRR,
|
|
750
|
-
0,
|
|
751
|
-
[_tRE],
|
|
752
|
-
[[() => SupplementalTaxRegistrationEntry$, 0]], 1
|
|
753
|
-
];
|
|
754
|
-
var PutSupplementalTaxRegistrationResponse$ = [3, n0, _PSTRRu,
|
|
755
|
-
0,
|
|
756
|
-
[_aIu, _sta],
|
|
757
|
-
[0, 0], 2
|
|
758
|
-
];
|
|
759
|
-
var PutTaxExemptionRequest$ = [3, n0, _PTER,
|
|
760
|
-
0,
|
|
761
|
-
[_aIc, _au, _eT, _eCx],
|
|
762
|
-
[64 | 0, () => Authority$, 0, () => ExemptionCertificate$], 4
|
|
763
|
-
];
|
|
764
|
-
var PutTaxExemptionResponse$ = [3, n0, _PTERu,
|
|
765
|
-
0,
|
|
766
|
-
[_cI],
|
|
767
|
-
[0]
|
|
768
|
-
];
|
|
769
|
-
var PutTaxInheritanceRequest$ = [3, n0, _PTIR,
|
|
770
|
-
0,
|
|
771
|
-
[_hS],
|
|
772
|
-
[0]
|
|
773
|
-
];
|
|
774
|
-
var PutTaxInheritanceResponse$ = [3, n0, _PTIRu,
|
|
775
|
-
0,
|
|
776
|
-
[],
|
|
777
|
-
[]
|
|
778
|
-
];
|
|
779
|
-
var PutTaxRegistrationRequest$ = [3, n0, _PTRR,
|
|
780
|
-
0,
|
|
781
|
-
[_tRE, _aI],
|
|
782
|
-
[[() => TaxRegistrationEntry$, 0], 0], 1
|
|
783
|
-
];
|
|
784
|
-
var PutTaxRegistrationResponse$ = [3, n0, _PTRRu,
|
|
785
|
-
0,
|
|
786
|
-
[_sta],
|
|
787
|
-
[0]
|
|
788
|
-
];
|
|
789
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
790
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
791
|
-
[_m, _eC],
|
|
792
|
-
[[() => ErrorMessage, 0], 0], 2
|
|
793
|
-
];
|
|
794
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
795
|
-
var RomaniaAdditionalInfo$ = [3, n0, _RAI,
|
|
796
|
-
0,
|
|
797
|
-
[_tRNT],
|
|
798
|
-
[0], 1
|
|
799
|
-
];
|
|
800
|
-
var SaudiArabiaAdditionalInfo$ = [3, n0, _SAAI,
|
|
801
|
-
0,
|
|
802
|
-
[_tRNT],
|
|
803
|
-
[0]
|
|
804
|
-
];
|
|
805
|
-
var SourceS3Location$ = [3, n0, _SSL,
|
|
806
|
-
0,
|
|
807
|
-
[_b, _k],
|
|
808
|
-
[0, 0], 2
|
|
809
|
-
];
|
|
810
|
-
var SouthKoreaAdditionalInfo$ = [3, n0, _SKAI,
|
|
811
|
-
0,
|
|
812
|
-
[_bRNu, _lOB, _iOB],
|
|
813
|
-
[0, 0, 0], 3
|
|
814
|
-
];
|
|
815
|
-
var SpainAdditionalInfo$ = [3, n0, _SAI,
|
|
816
|
-
0,
|
|
817
|
-
[_rT],
|
|
818
|
-
[0], 1
|
|
819
|
-
];
|
|
820
|
-
var SupplementalTaxRegistration$ = [3, n0, _STR,
|
|
821
|
-
8,
|
|
822
|
-
[_rI, _rT, _lN, _a, _aIu, _sta],
|
|
823
|
-
[0, 0, 0, () => Address$, 0, 0], 6
|
|
824
|
-
];
|
|
825
|
-
var SupplementalTaxRegistrationEntry$ = [3, n0, _STRE,
|
|
826
|
-
8,
|
|
827
|
-
[_rI, _rT, _lN, _a],
|
|
828
|
-
[0, 0, 0, () => Address$], 4
|
|
829
|
-
];
|
|
830
|
-
var TaxDocumentMetadata$ = [3, n0, _TDM,
|
|
831
|
-
0,
|
|
832
|
-
[_tDAT, _tDN],
|
|
833
|
-
[0, 0], 2
|
|
834
|
-
];
|
|
835
|
-
var TaxExemption$ = [3, n0, _TE,
|
|
836
|
-
0,
|
|
837
|
-
[_au, _tETa, _eD, _eDx, _sED, _sta],
|
|
838
|
-
[() => Authority$, () => TaxExemptionType$, 4, 4, 4, 0], 2
|
|
839
|
-
];
|
|
840
|
-
var TaxExemptionDetails$ = [3, n0, _TED,
|
|
841
|
-
0,
|
|
842
|
-
[_tE, _hOD, _hOPE, _hOR],
|
|
843
|
-
[() => TaxExemptions, 2, 0, 0]
|
|
844
|
-
];
|
|
845
|
-
var TaxExemptionType$ = [3, n0, _TET,
|
|
846
|
-
0,
|
|
847
|
-
[_dNi, _d, _aJ],
|
|
848
|
-
[0, 0, () => Authorities]
|
|
849
|
-
];
|
|
850
|
-
var TaxInheritanceDetails$ = [3, n0, _TID,
|
|
851
|
-
0,
|
|
852
|
-
[_pEI, _iOR],
|
|
853
|
-
[0, 0]
|
|
854
|
-
];
|
|
855
|
-
var TaxRegistration$ = [3, n0, _TR,
|
|
856
|
-
8,
|
|
857
|
-
[_rI, _rT, _lN, _sta, _lA, _sec, _tDMa, _cEI, _aTI],
|
|
858
|
-
[0, 0, 0, 0, () => Address$, 0, () => TaxDocumentMetadatas, 0, () => AdditionalInfoResponse$], 5
|
|
859
|
-
];
|
|
860
|
-
var TaxRegistrationDocFile$ = [3, n0, _TRDF,
|
|
861
|
-
0,
|
|
862
|
-
[_fN, _fC],
|
|
863
|
-
[0, 21], 2
|
|
864
|
-
];
|
|
865
|
-
var TaxRegistrationDocument$ = [3, n0, _TRD,
|
|
866
|
-
0,
|
|
867
|
-
[_sL, _f],
|
|
868
|
-
[() => SourceS3Location$, () => TaxRegistrationDocFile$]
|
|
869
|
-
];
|
|
870
|
-
var TaxRegistrationEntry$ = [3, n0, _TRE,
|
|
871
|
-
8,
|
|
872
|
-
[_rI, _rT, _lN, _lA, _sec, _aTI, _vD, _cEI],
|
|
873
|
-
[0, 0, 0, () => Address$, 0, () => AdditionalInfoRequest$, () => VerificationDetails$, 0], 2
|
|
874
|
-
];
|
|
875
|
-
var TaxRegistrationWithJurisdiction$ = [3, n0, _TRWJ,
|
|
876
|
-
8,
|
|
877
|
-
[_rI, _rT, _lN, _sta, _j, _sec, _tDMa, _cEI, _aTI],
|
|
878
|
-
[0, 0, 0, 0, () => Jurisdiction$, 0, () => TaxDocumentMetadatas, 0, () => AdditionalInfoResponse$], 5
|
|
879
|
-
];
|
|
880
|
-
var TurkeyAdditionalInfo$ = [3, n0, _TAI,
|
|
881
|
-
0,
|
|
882
|
-
[_tO, _kEI, _sTI, _i],
|
|
883
|
-
[0, 0, 0, 0]
|
|
884
|
-
];
|
|
885
|
-
var UkraineAdditionalInfo$ = [3, n0, _UAI,
|
|
886
|
-
0,
|
|
887
|
-
[_uTT],
|
|
888
|
-
[0], 1
|
|
889
|
-
];
|
|
890
|
-
var UzbekistanAdditionalInfo$ = [3, n0, _UAIz,
|
|
891
|
-
0,
|
|
892
|
-
[_tRNT, _vRN],
|
|
893
|
-
[0, 0]
|
|
894
|
-
];
|
|
895
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
896
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
897
|
-
[_m, _eC, _fL],
|
|
898
|
-
[[() => ErrorMessage, 0], 0, () => ValidationExceptionFieldList], 2
|
|
899
|
-
];
|
|
900
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
901
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
902
|
-
0,
|
|
903
|
-
[_n],
|
|
904
|
-
[0], 1
|
|
905
|
-
];
|
|
906
|
-
var VerificationDetails$ = [3, n0, _VD,
|
|
907
|
-
0,
|
|
908
|
-
[_dOB, _tRD],
|
|
909
|
-
[0, () => TaxRegistrationDocuments]
|
|
910
|
-
];
|
|
911
|
-
var VietnamAdditionalInfo$ = [3, n0, _VAI,
|
|
912
|
-
0,
|
|
913
|
-
[_eIN, _eTCN, _pVN, _pVND],
|
|
914
|
-
[0, 0, 0, 0]
|
|
915
|
-
];
|
|
916
|
-
var TaxSettingsServiceException$ = [-3, _sm, "TaxSettingsServiceException", 0, [], []];
|
|
917
|
-
schema.TypeRegistry.for(_sm).registerError(TaxSettingsServiceException$, TaxSettingsServiceException);
|
|
918
|
-
var AccountDetailsList = [1, n0, _ADL,
|
|
919
|
-
0, [() => AccountDetails$,
|
|
920
|
-
0]
|
|
921
|
-
];
|
|
922
|
-
var Authorities = [1, n0, _Aut,
|
|
923
|
-
0, () => Authority$
|
|
924
|
-
];
|
|
925
|
-
var BatchDeleteTaxRegistrationErrors = [1, n0, _BDTREa,
|
|
926
|
-
0, [() => BatchDeleteTaxRegistrationError$,
|
|
927
|
-
0]
|
|
928
|
-
];
|
|
929
|
-
var BatchPutTaxRegistrationErrors = [1, n0, _BPTREa,
|
|
930
|
-
0, [() => BatchPutTaxRegistrationError$,
|
|
931
|
-
0]
|
|
932
|
-
];
|
|
933
|
-
var SupplementalTaxRegistrationList = [1, n0, _STRL,
|
|
934
|
-
0, [() => SupplementalTaxRegistration$,
|
|
935
|
-
0]
|
|
936
|
-
];
|
|
937
|
-
var TaxDocumentMetadatas = [1, n0, _TDMa,
|
|
938
|
-
0, () => TaxDocumentMetadata$
|
|
939
|
-
];
|
|
940
|
-
var TaxExemptions = [1, n0, _TEa,
|
|
941
|
-
0, () => TaxExemption$
|
|
942
|
-
];
|
|
943
|
-
var TaxExemptionTypes = [1, n0, _TETa,
|
|
944
|
-
0, () => TaxExemptionType$
|
|
945
|
-
];
|
|
946
|
-
var TaxRegistrationDocuments = [1, n0, _TRDa,
|
|
947
|
-
0, () => TaxRegistrationDocument$
|
|
948
|
-
];
|
|
949
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
950
|
-
0, () => ValidationExceptionField$
|
|
951
|
-
];
|
|
952
|
-
var AddressRoleMap = [2, n0, _ARM,
|
|
953
|
-
0, 0, () => Jurisdiction$
|
|
954
|
-
];
|
|
955
|
-
var TaxExemptionDetailsMap = [2, n0, _TEDM,
|
|
956
|
-
0, 0, () => TaxExemptionDetails$
|
|
957
|
-
];
|
|
958
|
-
var BatchDeleteTaxRegistration$ = [9, n0, _BDTR,
|
|
959
|
-
{ [_h]: ["POST", "/BatchDeleteTaxRegistration", 200] }, () => BatchDeleteTaxRegistrationRequest$, () => BatchDeleteTaxRegistrationResponse$
|
|
960
|
-
];
|
|
961
|
-
var BatchGetTaxExemptions$ = [9, n0, _BGTE,
|
|
962
|
-
{ [_h]: ["POST", "/BatchGetTaxExemptions", 200] }, () => BatchGetTaxExemptionsRequest$, () => BatchGetTaxExemptionsResponse$
|
|
963
|
-
];
|
|
964
|
-
var BatchPutTaxRegistration$ = [9, n0, _BPTR,
|
|
965
|
-
{ [_h]: ["POST", "/BatchPutTaxRegistration", 200] }, () => BatchPutTaxRegistrationRequest$, () => BatchPutTaxRegistrationResponse$
|
|
966
|
-
];
|
|
967
|
-
var DeleteSupplementalTaxRegistration$ = [9, n0, _DSTR,
|
|
968
|
-
{ [_h]: ["POST", "/DeleteSupplementalTaxRegistration", 200] }, () => DeleteSupplementalTaxRegistrationRequest$, () => DeleteSupplementalTaxRegistrationResponse$
|
|
969
|
-
];
|
|
970
|
-
var DeleteTaxRegistration$ = [9, n0, _DTR,
|
|
971
|
-
{ [_h]: ["POST", "/DeleteTaxRegistration", 200] }, () => DeleteTaxRegistrationRequest$, () => DeleteTaxRegistrationResponse$
|
|
972
|
-
];
|
|
973
|
-
var GetTaxExemptionTypes$ = [9, n0, _GTET,
|
|
974
|
-
{ [_h]: ["POST", "/GetTaxExemptionTypes", 200] }, () => GetTaxExemptionTypesRequest$, () => GetTaxExemptionTypesResponse$
|
|
975
|
-
];
|
|
976
|
-
var GetTaxInheritance$ = [9, n0, _GTI,
|
|
977
|
-
{ [_h]: ["POST", "/GetTaxInheritance", 200] }, () => GetTaxInheritanceRequest$, () => GetTaxInheritanceResponse$
|
|
978
|
-
];
|
|
979
|
-
var GetTaxRegistration$ = [9, n0, _GTR,
|
|
980
|
-
{ [_h]: ["POST", "/GetTaxRegistration", 200] }, () => GetTaxRegistrationRequest$, () => GetTaxRegistrationResponse$
|
|
981
|
-
];
|
|
982
|
-
var GetTaxRegistrationDocument$ = [9, n0, _GTRD,
|
|
983
|
-
{ [_h]: ["POST", "/GetTaxRegistrationDocument", 200] }, () => GetTaxRegistrationDocumentRequest$, () => GetTaxRegistrationDocumentResponse$
|
|
984
|
-
];
|
|
985
|
-
var ListSupplementalTaxRegistrations$ = [9, n0, _LSTR,
|
|
986
|
-
{ [_h]: ["POST", "/ListSupplementalTaxRegistrations", 200] }, () => ListSupplementalTaxRegistrationsRequest$, () => ListSupplementalTaxRegistrationsResponse$
|
|
987
|
-
];
|
|
988
|
-
var ListTaxExemptions$ = [9, n0, _LTE,
|
|
989
|
-
{ [_h]: ["POST", "/ListTaxExemptions", 200] }, () => ListTaxExemptionsRequest$, () => ListTaxExemptionsResponse$
|
|
990
|
-
];
|
|
991
|
-
var ListTaxRegistrations$ = [9, n0, _LTR,
|
|
992
|
-
{ [_h]: ["POST", "/ListTaxRegistrations", 200] }, () => ListTaxRegistrationsRequest$, () => ListTaxRegistrationsResponse$
|
|
993
|
-
];
|
|
994
|
-
var PutSupplementalTaxRegistration$ = [9, n0, _PSTR,
|
|
995
|
-
{ [_h]: ["POST", "/PutSupplementalTaxRegistration", 200] }, () => PutSupplementalTaxRegistrationRequest$, () => PutSupplementalTaxRegistrationResponse$
|
|
996
|
-
];
|
|
997
|
-
var PutTaxExemption$ = [9, n0, _PTE,
|
|
998
|
-
{ [_h]: ["POST", "/PutTaxExemption", 200] }, () => PutTaxExemptionRequest$, () => PutTaxExemptionResponse$
|
|
999
|
-
];
|
|
1000
|
-
var PutTaxInheritance$ = [9, n0, _PTI,
|
|
1001
|
-
{ [_h]: ["POST", "/PutTaxInheritance", 200] }, () => PutTaxInheritanceRequest$, () => PutTaxInheritanceResponse$
|
|
1002
|
-
];
|
|
1003
|
-
var PutTaxRegistration$ = [9, n0, _PTR,
|
|
1004
|
-
{ [_h]: ["POST", "/PutTaxRegistration", 200] }, () => PutTaxRegistrationRequest$, () => PutTaxRegistrationResponse$
|
|
1005
|
-
];
|
|
1006
|
-
|
|
1007
116
|
class BatchDeleteTaxRegistrationCommand extends smithyClient.Command
|
|
1008
117
|
.classBuilder()
|
|
1009
118
|
.ep(commonParams)
|
|
@@ -1012,7 +121,7 @@ class BatchDeleteTaxRegistrationCommand extends smithyClient.Command
|
|
|
1012
121
|
})
|
|
1013
122
|
.s("TaxSettings", "BatchDeleteTaxRegistration", {})
|
|
1014
123
|
.n("TaxSettingsClient", "BatchDeleteTaxRegistrationCommand")
|
|
1015
|
-
.sc(BatchDeleteTaxRegistration$)
|
|
124
|
+
.sc(schemas_0.BatchDeleteTaxRegistration$)
|
|
1016
125
|
.build() {
|
|
1017
126
|
}
|
|
1018
127
|
|
|
@@ -1024,7 +133,7 @@ class BatchGetTaxExemptionsCommand extends smithyClient.Command
|
|
|
1024
133
|
})
|
|
1025
134
|
.s("TaxSettings", "BatchGetTaxExemptions", {})
|
|
1026
135
|
.n("TaxSettingsClient", "BatchGetTaxExemptionsCommand")
|
|
1027
|
-
.sc(BatchGetTaxExemptions$)
|
|
136
|
+
.sc(schemas_0.BatchGetTaxExemptions$)
|
|
1028
137
|
.build() {
|
|
1029
138
|
}
|
|
1030
139
|
|
|
@@ -1036,7 +145,7 @@ class BatchPutTaxRegistrationCommand extends smithyClient.Command
|
|
|
1036
145
|
})
|
|
1037
146
|
.s("TaxSettings", "BatchPutTaxRegistration", {})
|
|
1038
147
|
.n("TaxSettingsClient", "BatchPutTaxRegistrationCommand")
|
|
1039
|
-
.sc(BatchPutTaxRegistration$)
|
|
148
|
+
.sc(schemas_0.BatchPutTaxRegistration$)
|
|
1040
149
|
.build() {
|
|
1041
150
|
}
|
|
1042
151
|
|
|
@@ -1048,7 +157,7 @@ class DeleteSupplementalTaxRegistrationCommand extends smithyClient.Command
|
|
|
1048
157
|
})
|
|
1049
158
|
.s("TaxSettings", "DeleteSupplementalTaxRegistration", {})
|
|
1050
159
|
.n("TaxSettingsClient", "DeleteSupplementalTaxRegistrationCommand")
|
|
1051
|
-
.sc(DeleteSupplementalTaxRegistration$)
|
|
160
|
+
.sc(schemas_0.DeleteSupplementalTaxRegistration$)
|
|
1052
161
|
.build() {
|
|
1053
162
|
}
|
|
1054
163
|
|
|
@@ -1060,7 +169,7 @@ class DeleteTaxRegistrationCommand extends smithyClient.Command
|
|
|
1060
169
|
})
|
|
1061
170
|
.s("TaxSettings", "DeleteTaxRegistration", {})
|
|
1062
171
|
.n("TaxSettingsClient", "DeleteTaxRegistrationCommand")
|
|
1063
|
-
.sc(DeleteTaxRegistration$)
|
|
172
|
+
.sc(schemas_0.DeleteTaxRegistration$)
|
|
1064
173
|
.build() {
|
|
1065
174
|
}
|
|
1066
175
|
|
|
@@ -1072,7 +181,7 @@ class GetTaxExemptionTypesCommand extends smithyClient.Command
|
|
|
1072
181
|
})
|
|
1073
182
|
.s("TaxSettings", "GetTaxExemptionTypes", {})
|
|
1074
183
|
.n("TaxSettingsClient", "GetTaxExemptionTypesCommand")
|
|
1075
|
-
.sc(GetTaxExemptionTypes$)
|
|
184
|
+
.sc(schemas_0.GetTaxExemptionTypes$)
|
|
1076
185
|
.build() {
|
|
1077
186
|
}
|
|
1078
187
|
|
|
@@ -1084,7 +193,7 @@ class GetTaxInheritanceCommand extends smithyClient.Command
|
|
|
1084
193
|
})
|
|
1085
194
|
.s("TaxSettings", "GetTaxInheritance", {})
|
|
1086
195
|
.n("TaxSettingsClient", "GetTaxInheritanceCommand")
|
|
1087
|
-
.sc(GetTaxInheritance$)
|
|
196
|
+
.sc(schemas_0.GetTaxInheritance$)
|
|
1088
197
|
.build() {
|
|
1089
198
|
}
|
|
1090
199
|
|
|
@@ -1096,7 +205,7 @@ class GetTaxRegistrationCommand extends smithyClient.Command
|
|
|
1096
205
|
})
|
|
1097
206
|
.s("TaxSettings", "GetTaxRegistration", {})
|
|
1098
207
|
.n("TaxSettingsClient", "GetTaxRegistrationCommand")
|
|
1099
|
-
.sc(GetTaxRegistration$)
|
|
208
|
+
.sc(schemas_0.GetTaxRegistration$)
|
|
1100
209
|
.build() {
|
|
1101
210
|
}
|
|
1102
211
|
|
|
@@ -1108,7 +217,7 @@ class GetTaxRegistrationDocumentCommand extends smithyClient.Command
|
|
|
1108
217
|
})
|
|
1109
218
|
.s("TaxSettings", "GetTaxRegistrationDocument", {})
|
|
1110
219
|
.n("TaxSettingsClient", "GetTaxRegistrationDocumentCommand")
|
|
1111
|
-
.sc(GetTaxRegistrationDocument$)
|
|
220
|
+
.sc(schemas_0.GetTaxRegistrationDocument$)
|
|
1112
221
|
.build() {
|
|
1113
222
|
}
|
|
1114
223
|
|
|
@@ -1120,7 +229,7 @@ class ListSupplementalTaxRegistrationsCommand extends smithyClient.Command
|
|
|
1120
229
|
})
|
|
1121
230
|
.s("TaxSettings", "ListSupplementalTaxRegistrations", {})
|
|
1122
231
|
.n("TaxSettingsClient", "ListSupplementalTaxRegistrationsCommand")
|
|
1123
|
-
.sc(ListSupplementalTaxRegistrations$)
|
|
232
|
+
.sc(schemas_0.ListSupplementalTaxRegistrations$)
|
|
1124
233
|
.build() {
|
|
1125
234
|
}
|
|
1126
235
|
|
|
@@ -1132,7 +241,7 @@ class ListTaxExemptionsCommand extends smithyClient.Command
|
|
|
1132
241
|
})
|
|
1133
242
|
.s("TaxSettings", "ListTaxExemptions", {})
|
|
1134
243
|
.n("TaxSettingsClient", "ListTaxExemptionsCommand")
|
|
1135
|
-
.sc(ListTaxExemptions$)
|
|
244
|
+
.sc(schemas_0.ListTaxExemptions$)
|
|
1136
245
|
.build() {
|
|
1137
246
|
}
|
|
1138
247
|
|
|
@@ -1144,7 +253,7 @@ class ListTaxRegistrationsCommand extends smithyClient.Command
|
|
|
1144
253
|
})
|
|
1145
254
|
.s("TaxSettings", "ListTaxRegistrations", {})
|
|
1146
255
|
.n("TaxSettingsClient", "ListTaxRegistrationsCommand")
|
|
1147
|
-
.sc(ListTaxRegistrations$)
|
|
256
|
+
.sc(schemas_0.ListTaxRegistrations$)
|
|
1148
257
|
.build() {
|
|
1149
258
|
}
|
|
1150
259
|
|
|
@@ -1156,7 +265,7 @@ class PutSupplementalTaxRegistrationCommand extends smithyClient.Command
|
|
|
1156
265
|
})
|
|
1157
266
|
.s("TaxSettings", "PutSupplementalTaxRegistration", {})
|
|
1158
267
|
.n("TaxSettingsClient", "PutSupplementalTaxRegistrationCommand")
|
|
1159
|
-
.sc(PutSupplementalTaxRegistration$)
|
|
268
|
+
.sc(schemas_0.PutSupplementalTaxRegistration$)
|
|
1160
269
|
.build() {
|
|
1161
270
|
}
|
|
1162
271
|
|
|
@@ -1168,7 +277,7 @@ class PutTaxExemptionCommand extends smithyClient.Command
|
|
|
1168
277
|
})
|
|
1169
278
|
.s("TaxSettings", "PutTaxExemption", {})
|
|
1170
279
|
.n("TaxSettingsClient", "PutTaxExemptionCommand")
|
|
1171
|
-
.sc(PutTaxExemption$)
|
|
280
|
+
.sc(schemas_0.PutTaxExemption$)
|
|
1172
281
|
.build() {
|
|
1173
282
|
}
|
|
1174
283
|
|
|
@@ -1180,7 +289,7 @@ class PutTaxInheritanceCommand extends smithyClient.Command
|
|
|
1180
289
|
})
|
|
1181
290
|
.s("TaxSettings", "PutTaxInheritance", {})
|
|
1182
291
|
.n("TaxSettingsClient", "PutTaxInheritanceCommand")
|
|
1183
|
-
.sc(PutTaxInheritance$)
|
|
292
|
+
.sc(schemas_0.PutTaxInheritance$)
|
|
1184
293
|
.build() {
|
|
1185
294
|
}
|
|
1186
295
|
|
|
@@ -1192,7 +301,7 @@ class PutTaxRegistrationCommand extends smithyClient.Command
|
|
|
1192
301
|
})
|
|
1193
302
|
.s("TaxSettings", "PutTaxRegistration", {})
|
|
1194
303
|
.n("TaxSettingsClient", "PutTaxRegistrationCommand")
|
|
1195
|
-
.sc(PutTaxRegistration$)
|
|
304
|
+
.sc(schemas_0.PutTaxRegistration$)
|
|
1196
305
|
.build() {
|
|
1197
306
|
}
|
|
1198
307
|
|
|
@@ -1337,154 +446,59 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1337
446
|
enumerable: true,
|
|
1338
447
|
get: function () { return smithyClient.Client; }
|
|
1339
448
|
});
|
|
1340
|
-
exports
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
exports.AdditionalInfoRequest$ = AdditionalInfoRequest$;
|
|
1345
|
-
exports.AdditionalInfoResponse$ = AdditionalInfoResponse$;
|
|
1346
|
-
exports.Address$ = Address$;
|
|
449
|
+
Object.defineProperty(exports, "TaxSettingsServiceException", {
|
|
450
|
+
enumerable: true,
|
|
451
|
+
get: function () { return TaxSettingsServiceException.TaxSettingsServiceException; }
|
|
452
|
+
});
|
|
1347
453
|
exports.AddressRoleType = AddressRoleType;
|
|
1348
|
-
exports.AttachmentUploadException = AttachmentUploadException;
|
|
1349
|
-
exports.AttachmentUploadException$ = AttachmentUploadException$;
|
|
1350
|
-
exports.Authority$ = Authority$;
|
|
1351
|
-
exports.BatchDeleteTaxRegistration$ = BatchDeleteTaxRegistration$;
|
|
1352
454
|
exports.BatchDeleteTaxRegistrationCommand = BatchDeleteTaxRegistrationCommand;
|
|
1353
|
-
exports.BatchDeleteTaxRegistrationError$ = BatchDeleteTaxRegistrationError$;
|
|
1354
|
-
exports.BatchDeleteTaxRegistrationRequest$ = BatchDeleteTaxRegistrationRequest$;
|
|
1355
|
-
exports.BatchDeleteTaxRegistrationResponse$ = BatchDeleteTaxRegistrationResponse$;
|
|
1356
|
-
exports.BatchGetTaxExemptions$ = BatchGetTaxExemptions$;
|
|
1357
455
|
exports.BatchGetTaxExemptionsCommand = BatchGetTaxExemptionsCommand;
|
|
1358
|
-
exports.BatchGetTaxExemptionsRequest$ = BatchGetTaxExemptionsRequest$;
|
|
1359
|
-
exports.BatchGetTaxExemptionsResponse$ = BatchGetTaxExemptionsResponse$;
|
|
1360
|
-
exports.BatchPutTaxRegistration$ = BatchPutTaxRegistration$;
|
|
1361
456
|
exports.BatchPutTaxRegistrationCommand = BatchPutTaxRegistrationCommand;
|
|
1362
|
-
exports.BatchPutTaxRegistrationError$ = BatchPutTaxRegistrationError$;
|
|
1363
|
-
exports.BatchPutTaxRegistrationRequest$ = BatchPutTaxRegistrationRequest$;
|
|
1364
|
-
exports.BatchPutTaxRegistrationResponse$ = BatchPutTaxRegistrationResponse$;
|
|
1365
|
-
exports.BrazilAdditionalInfo$ = BrazilAdditionalInfo$;
|
|
1366
|
-
exports.CanadaAdditionalInfo$ = CanadaAdditionalInfo$;
|
|
1367
|
-
exports.CaseCreationLimitExceededException = CaseCreationLimitExceededException;
|
|
1368
|
-
exports.CaseCreationLimitExceededException$ = CaseCreationLimitExceededException$;
|
|
1369
|
-
exports.ConflictException = ConflictException;
|
|
1370
|
-
exports.ConflictException$ = ConflictException$;
|
|
1371
|
-
exports.DeleteSupplementalTaxRegistration$ = DeleteSupplementalTaxRegistration$;
|
|
1372
457
|
exports.DeleteSupplementalTaxRegistrationCommand = DeleteSupplementalTaxRegistrationCommand;
|
|
1373
|
-
exports.DeleteSupplementalTaxRegistrationRequest$ = DeleteSupplementalTaxRegistrationRequest$;
|
|
1374
|
-
exports.DeleteSupplementalTaxRegistrationResponse$ = DeleteSupplementalTaxRegistrationResponse$;
|
|
1375
|
-
exports.DeleteTaxRegistration$ = DeleteTaxRegistration$;
|
|
1376
458
|
exports.DeleteTaxRegistrationCommand = DeleteTaxRegistrationCommand;
|
|
1377
|
-
exports.DeleteTaxRegistrationRequest$ = DeleteTaxRegistrationRequest$;
|
|
1378
|
-
exports.DeleteTaxRegistrationResponse$ = DeleteTaxRegistrationResponse$;
|
|
1379
|
-
exports.DestinationS3Location$ = DestinationS3Location$;
|
|
1380
|
-
exports.EgyptAdditionalInfo$ = EgyptAdditionalInfo$;
|
|
1381
459
|
exports.EntityExemptionAccountStatus = EntityExemptionAccountStatus;
|
|
1382
|
-
exports.EstoniaAdditionalInfo$ = EstoniaAdditionalInfo$;
|
|
1383
|
-
exports.ExemptionCertificate$ = ExemptionCertificate$;
|
|
1384
|
-
exports.GeorgiaAdditionalInfo$ = GeorgiaAdditionalInfo$;
|
|
1385
|
-
exports.GetTaxExemptionTypes$ = GetTaxExemptionTypes$;
|
|
1386
460
|
exports.GetTaxExemptionTypesCommand = GetTaxExemptionTypesCommand;
|
|
1387
|
-
exports.GetTaxExemptionTypesRequest$ = GetTaxExemptionTypesRequest$;
|
|
1388
|
-
exports.GetTaxExemptionTypesResponse$ = GetTaxExemptionTypesResponse$;
|
|
1389
|
-
exports.GetTaxInheritance$ = GetTaxInheritance$;
|
|
1390
461
|
exports.GetTaxInheritanceCommand = GetTaxInheritanceCommand;
|
|
1391
|
-
exports.GetTaxInheritanceRequest$ = GetTaxInheritanceRequest$;
|
|
1392
|
-
exports.GetTaxInheritanceResponse$ = GetTaxInheritanceResponse$;
|
|
1393
|
-
exports.GetTaxRegistration$ = GetTaxRegistration$;
|
|
1394
462
|
exports.GetTaxRegistrationCommand = GetTaxRegistrationCommand;
|
|
1395
|
-
exports.GetTaxRegistrationDocument$ = GetTaxRegistrationDocument$;
|
|
1396
463
|
exports.GetTaxRegistrationDocumentCommand = GetTaxRegistrationDocumentCommand;
|
|
1397
|
-
exports.GetTaxRegistrationDocumentRequest$ = GetTaxRegistrationDocumentRequest$;
|
|
1398
|
-
exports.GetTaxRegistrationDocumentResponse$ = GetTaxRegistrationDocumentResponse$;
|
|
1399
|
-
exports.GetTaxRegistrationRequest$ = GetTaxRegistrationRequest$;
|
|
1400
|
-
exports.GetTaxRegistrationResponse$ = GetTaxRegistrationResponse$;
|
|
1401
|
-
exports.GreeceAdditionalInfo$ = GreeceAdditionalInfo$;
|
|
1402
464
|
exports.HeritageStatus = HeritageStatus;
|
|
1403
|
-
exports.IndiaAdditionalInfo$ = IndiaAdditionalInfo$;
|
|
1404
|
-
exports.IndonesiaAdditionalInfo$ = IndonesiaAdditionalInfo$;
|
|
1405
465
|
exports.IndonesiaTaxRegistrationNumberType = IndonesiaTaxRegistrationNumberType;
|
|
1406
466
|
exports.Industries = Industries;
|
|
1407
|
-
exports.InternalServerException = InternalServerException;
|
|
1408
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1409
|
-
exports.IsraelAdditionalInfo$ = IsraelAdditionalInfo$;
|
|
1410
467
|
exports.IsraelCustomerType = IsraelCustomerType;
|
|
1411
468
|
exports.IsraelDealerType = IsraelDealerType;
|
|
1412
|
-
exports.ItalyAdditionalInfo$ = ItalyAdditionalInfo$;
|
|
1413
|
-
exports.Jurisdiction$ = Jurisdiction$;
|
|
1414
|
-
exports.KenyaAdditionalInfo$ = KenyaAdditionalInfo$;
|
|
1415
|
-
exports.ListSupplementalTaxRegistrations$ = ListSupplementalTaxRegistrations$;
|
|
1416
469
|
exports.ListSupplementalTaxRegistrationsCommand = ListSupplementalTaxRegistrationsCommand;
|
|
1417
|
-
exports.ListSupplementalTaxRegistrationsRequest$ = ListSupplementalTaxRegistrationsRequest$;
|
|
1418
|
-
exports.ListSupplementalTaxRegistrationsResponse$ = ListSupplementalTaxRegistrationsResponse$;
|
|
1419
|
-
exports.ListTaxExemptions$ = ListTaxExemptions$;
|
|
1420
470
|
exports.ListTaxExemptionsCommand = ListTaxExemptionsCommand;
|
|
1421
|
-
exports.ListTaxExemptionsRequest$ = ListTaxExemptionsRequest$;
|
|
1422
|
-
exports.ListTaxExemptionsResponse$ = ListTaxExemptionsResponse$;
|
|
1423
|
-
exports.ListTaxRegistrations$ = ListTaxRegistrations$;
|
|
1424
471
|
exports.ListTaxRegistrationsCommand = ListTaxRegistrationsCommand;
|
|
1425
|
-
exports.ListTaxRegistrationsRequest$ = ListTaxRegistrationsRequest$;
|
|
1426
|
-
exports.ListTaxRegistrationsResponse$ = ListTaxRegistrationsResponse$;
|
|
1427
|
-
exports.MalaysiaAdditionalInfo$ = MalaysiaAdditionalInfo$;
|
|
1428
472
|
exports.MalaysiaServiceTaxCode = MalaysiaServiceTaxCode;
|
|
1429
473
|
exports.PersonType = PersonType;
|
|
1430
|
-
exports.PolandAdditionalInfo$ = PolandAdditionalInfo$;
|
|
1431
|
-
exports.PutSupplementalTaxRegistration$ = PutSupplementalTaxRegistration$;
|
|
1432
474
|
exports.PutSupplementalTaxRegistrationCommand = PutSupplementalTaxRegistrationCommand;
|
|
1433
|
-
exports.PutSupplementalTaxRegistrationRequest$ = PutSupplementalTaxRegistrationRequest$;
|
|
1434
|
-
exports.PutSupplementalTaxRegistrationResponse$ = PutSupplementalTaxRegistrationResponse$;
|
|
1435
|
-
exports.PutTaxExemption$ = PutTaxExemption$;
|
|
1436
475
|
exports.PutTaxExemptionCommand = PutTaxExemptionCommand;
|
|
1437
|
-
exports.PutTaxExemptionRequest$ = PutTaxExemptionRequest$;
|
|
1438
|
-
exports.PutTaxExemptionResponse$ = PutTaxExemptionResponse$;
|
|
1439
|
-
exports.PutTaxInheritance$ = PutTaxInheritance$;
|
|
1440
476
|
exports.PutTaxInheritanceCommand = PutTaxInheritanceCommand;
|
|
1441
|
-
exports.PutTaxInheritanceRequest$ = PutTaxInheritanceRequest$;
|
|
1442
|
-
exports.PutTaxInheritanceResponse$ = PutTaxInheritanceResponse$;
|
|
1443
|
-
exports.PutTaxRegistration$ = PutTaxRegistration$;
|
|
1444
477
|
exports.PutTaxRegistrationCommand = PutTaxRegistrationCommand;
|
|
1445
|
-
exports.PutTaxRegistrationRequest$ = PutTaxRegistrationRequest$;
|
|
1446
|
-
exports.PutTaxRegistrationResponse$ = PutTaxRegistrationResponse$;
|
|
1447
478
|
exports.RegistrationType = RegistrationType;
|
|
1448
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1449
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1450
|
-
exports.RomaniaAdditionalInfo$ = RomaniaAdditionalInfo$;
|
|
1451
|
-
exports.SaudiArabiaAdditionalInfo$ = SaudiArabiaAdditionalInfo$;
|
|
1452
479
|
exports.SaudiArabiaTaxRegistrationNumberType = SaudiArabiaTaxRegistrationNumberType;
|
|
1453
480
|
exports.Sector = Sector;
|
|
1454
|
-
exports.SourceS3Location$ = SourceS3Location$;
|
|
1455
|
-
exports.SouthKoreaAdditionalInfo$ = SouthKoreaAdditionalInfo$;
|
|
1456
|
-
exports.SpainAdditionalInfo$ = SpainAdditionalInfo$;
|
|
1457
|
-
exports.SupplementalTaxRegistration$ = SupplementalTaxRegistration$;
|
|
1458
|
-
exports.SupplementalTaxRegistrationEntry$ = SupplementalTaxRegistrationEntry$;
|
|
1459
481
|
exports.SupplementalTaxRegistrationType = SupplementalTaxRegistrationType;
|
|
1460
|
-
exports.TaxDocumentMetadata$ = TaxDocumentMetadata$;
|
|
1461
|
-
exports.TaxExemption$ = TaxExemption$;
|
|
1462
|
-
exports.TaxExemptionDetails$ = TaxExemptionDetails$;
|
|
1463
|
-
exports.TaxExemptionType$ = TaxExemptionType$;
|
|
1464
|
-
exports.TaxInheritanceDetails$ = TaxInheritanceDetails$;
|
|
1465
|
-
exports.TaxRegistration$ = TaxRegistration$;
|
|
1466
|
-
exports.TaxRegistrationDocFile$ = TaxRegistrationDocFile$;
|
|
1467
|
-
exports.TaxRegistrationDocument$ = TaxRegistrationDocument$;
|
|
1468
|
-
exports.TaxRegistrationEntry$ = TaxRegistrationEntry$;
|
|
1469
482
|
exports.TaxRegistrationNumberType = TaxRegistrationNumberType;
|
|
1470
483
|
exports.TaxRegistrationStatus = TaxRegistrationStatus;
|
|
1471
484
|
exports.TaxRegistrationType = TaxRegistrationType;
|
|
1472
|
-
exports.TaxRegistrationWithJurisdiction$ = TaxRegistrationWithJurisdiction$;
|
|
1473
485
|
exports.TaxSettings = TaxSettings;
|
|
1474
486
|
exports.TaxSettingsClient = TaxSettingsClient;
|
|
1475
|
-
exports.TaxSettingsServiceException = TaxSettingsServiceException;
|
|
1476
|
-
exports.TaxSettingsServiceException$ = TaxSettingsServiceException$;
|
|
1477
|
-
exports.TurkeyAdditionalInfo$ = TurkeyAdditionalInfo$;
|
|
1478
|
-
exports.UkraineAdditionalInfo$ = UkraineAdditionalInfo$;
|
|
1479
487
|
exports.UkraineTrnType = UkraineTrnType;
|
|
1480
|
-
exports.UzbekistanAdditionalInfo$ = UzbekistanAdditionalInfo$;
|
|
1481
488
|
exports.UzbekistanTaxRegistrationNumberType = UzbekistanTaxRegistrationNumberType;
|
|
1482
|
-
exports.ValidationException = ValidationException;
|
|
1483
|
-
exports.ValidationException$ = ValidationException$;
|
|
1484
489
|
exports.ValidationExceptionErrorCode = ValidationExceptionErrorCode;
|
|
1485
|
-
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1486
|
-
exports.VerificationDetails$ = VerificationDetails$;
|
|
1487
|
-
exports.VietnamAdditionalInfo$ = VietnamAdditionalInfo$;
|
|
1488
490
|
exports.paginateListSupplementalTaxRegistrations = paginateListSupplementalTaxRegistrations;
|
|
1489
491
|
exports.paginateListTaxExemptions = paginateListTaxExemptions;
|
|
1490
492
|
exports.paginateListTaxRegistrations = paginateListTaxRegistrations;
|
|
493
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
494
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
495
|
+
enumerable: true,
|
|
496
|
+
get: function () { return schemas_0[k]; }
|
|
497
|
+
});
|
|
498
|
+
});
|
|
499
|
+
Object.keys(errors).forEach(function (k) {
|
|
500
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
501
|
+
enumerable: true,
|
|
502
|
+
get: function () { return errors[k]; }
|
|
503
|
+
});
|
|
504
|
+
});
|