@aws-sdk/client-b2bi 3.986.0 → 3.988.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 CHANGED
@@ -15,7 +15,10 @@ 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');
18
19
  var utilWaiter = require('@smithy/util-waiter');
20
+ var errors = require('./models/errors');
21
+ var B2biServiceException = require('./models/B2biServiceException');
19
22
 
20
23
  const resolveClientEndpointParameters = (options) => {
21
24
  return Object.assign(options, {
@@ -111,1048 +114,6 @@ class B2biClient extends smithyClient.Client {
111
114
  }
112
115
  }
113
116
 
114
- class B2biServiceException extends smithyClient.ServiceException {
115
- constructor(options) {
116
- super(options);
117
- Object.setPrototypeOf(this, B2biServiceException.prototype);
118
- }
119
- }
120
-
121
- class AccessDeniedException extends B2biServiceException {
122
- name = "AccessDeniedException";
123
- $fault = "client";
124
- constructor(opts) {
125
- super({
126
- name: "AccessDeniedException",
127
- $fault: "client",
128
- ...opts,
129
- });
130
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
- }
132
- }
133
- class ConflictException extends B2biServiceException {
134
- name = "ConflictException";
135
- $fault = "client";
136
- constructor(opts) {
137
- super({
138
- name: "ConflictException",
139
- $fault: "client",
140
- ...opts,
141
- });
142
- Object.setPrototypeOf(this, ConflictException.prototype);
143
- }
144
- }
145
- class InternalServerException extends B2biServiceException {
146
- name = "InternalServerException";
147
- $fault = "server";
148
- $retryable = {};
149
- retryAfterSeconds;
150
- constructor(opts) {
151
- super({
152
- name: "InternalServerException",
153
- $fault: "server",
154
- ...opts,
155
- });
156
- Object.setPrototypeOf(this, InternalServerException.prototype);
157
- this.retryAfterSeconds = opts.retryAfterSeconds;
158
- }
159
- }
160
- class ResourceNotFoundException extends B2biServiceException {
161
- name = "ResourceNotFoundException";
162
- $fault = "client";
163
- constructor(opts) {
164
- super({
165
- name: "ResourceNotFoundException",
166
- $fault: "client",
167
- ...opts,
168
- });
169
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
170
- }
171
- }
172
- class ServiceQuotaExceededException extends B2biServiceException {
173
- name = "ServiceQuotaExceededException";
174
- $fault = "client";
175
- resourceId;
176
- resourceType;
177
- serviceCode;
178
- quotaCode;
179
- constructor(opts) {
180
- super({
181
- name: "ServiceQuotaExceededException",
182
- $fault: "client",
183
- ...opts,
184
- });
185
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
186
- this.resourceId = opts.resourceId;
187
- this.resourceType = opts.resourceType;
188
- this.serviceCode = opts.serviceCode;
189
- this.quotaCode = opts.quotaCode;
190
- }
191
- }
192
- class ThrottlingException extends B2biServiceException {
193
- name = "ThrottlingException";
194
- $fault = "client";
195
- $retryable = {};
196
- retryAfterSeconds;
197
- constructor(opts) {
198
- super({
199
- name: "ThrottlingException",
200
- $fault: "client",
201
- ...opts,
202
- });
203
- Object.setPrototypeOf(this, ThrottlingException.prototype);
204
- this.retryAfterSeconds = opts.retryAfterSeconds;
205
- }
206
- }
207
- class ValidationException extends B2biServiceException {
208
- name = "ValidationException";
209
- $fault = "client";
210
- Message;
211
- constructor(opts) {
212
- super({
213
- name: "ValidationException",
214
- $fault: "client",
215
- ...opts,
216
- });
217
- Object.setPrototypeOf(this, ValidationException.prototype);
218
- this.Message = opts.Message;
219
- }
220
- }
221
-
222
- const _ADE = "AccessDeniedException";
223
- const _AO = "AdvancedOptions";
224
- const _CC = "CapabilityConfiguration";
225
- const _CCR = "CreateCapabilityRequest";
226
- const _CCRr = "CreateCapabilityResponse";
227
- const _CCr = "CreateCapability";
228
- const _CE = "ConflictException";
229
- const _CL = "CapabilityList";
230
- const _CO = "CapabilityOptions";
231
- const _CP = "CreatePartnership";
232
- const _CPR = "CreatePartnershipRequest";
233
- const _CPRr = "CreatePartnershipResponse";
234
- const _CPRre = "CreateProfileRequest";
235
- const _CPRrea = "CreateProfileResponse";
236
- const _CPr = "CreateProfile";
237
- const _CS = "CapabilitySummary";
238
- const _CSMT = "CreateStarterMappingTemplate";
239
- const _CSMTR = "CreateStarterMappingTemplateRequest";
240
- const _CSMTRr = "CreateStarterMappingTemplateResponse";
241
- const _CSo = "ConversionSource";
242
- const _CT = "ConversionTarget";
243
- const _CTFD = "ConversionTargetFormatDetails";
244
- const _CTR = "CreateTransformerRequest";
245
- const _CTRr = "CreateTransformerResponse";
246
- const _CTr = "CreateTransformer";
247
- const _DC = "DeleteCapability";
248
- const _DCR = "DeleteCapabilityRequest";
249
- const _DP = "DeletePartnership";
250
- const _DPR = "DeletePartnershipRequest";
251
- const _DPRe = "DeleteProfileRequest";
252
- const _DPe = "DeleteProfile";
253
- const _DT = "DeleteTransformer";
254
- const _DTR = "DeleteTransformerRequest";
255
- const _E = "Email";
256
- const _EC = "EdiConfiguration";
257
- const _ET = "EdiType";
258
- const _FO = "FormatOptions";
259
- const _GC = "GetCapability";
260
- const _GCR = "GetCapabilityRequest";
261
- const _GCRe = "GetCapabilityResponse";
262
- const _GM = "GenerateMapping";
263
- const _GMR = "GenerateMappingRequest";
264
- const _GMRe = "GenerateMappingResponse";
265
- const _GP = "GetPartnership";
266
- const _GPR = "GetPartnershipRequest";
267
- const _GPRe = "GetPartnershipResponse";
268
- const _GPRet = "GetProfileRequest";
269
- const _GPRetr = "GetProfileResponse";
270
- const _GPe = "GetProfile";
271
- const _GT = "GetTransformer";
272
- const _GTJ = "GetTransformerJob";
273
- const _GTJR = "GetTransformerJobRequest";
274
- const _GTJRe = "GetTransformerJobResponse";
275
- const _GTR = "GetTransformerRequest";
276
- const _GTRe = "GetTransformerResponse";
277
- const _IC = "InputConversion";
278
- const _ID = "InstructionsDocuments";
279
- const _IEO = "InboundEdiOptions";
280
- const _IFS = "InputFileSource";
281
- const _ISE = "InternalServerException";
282
- const _K = "Key";
283
- const _KL = "KeyList";
284
- const _LC = "ListCapabilities";
285
- const _LCR = "ListCapabilitiesRequest";
286
- const _LCRi = "ListCapabilitiesResponse";
287
- const _LP = "ListPartnerships";
288
- const _LPR = "ListPartnershipsRequest";
289
- const _LPRi = "ListPartnershipsResponse";
290
- const _LPRis = "ListProfilesRequest";
291
- const _LPRist = "ListProfilesResponse";
292
- const _LPi = "ListProfiles";
293
- const _LT = "ListTransformers";
294
- const _LTFR = "ListTagsForResource";
295
- const _LTFRR = "ListTagsForResourceRequest";
296
- const _LTFRRi = "ListTagsForResourceResponse";
297
- const _LTR = "ListTransformersRequest";
298
- const _LTRi = "ListTransformersResponse";
299
- const _M = "Mapping";
300
- const _Me = "Message";
301
- const _OC = "OutputConversion";
302
- const _OEO = "OutboundEdiOptions";
303
- const _OSFS = "OutputSampleFileSource";
304
- const _P = "Phone";
305
- const _PL = "PartnershipList";
306
- const _PLr = "ProfileList";
307
- const _PS = "PartnershipSummary";
308
- const _PSr = "ProfileSummary";
309
- const _RA = "Retry-After";
310
- const _RARN = "ResourceARN";
311
- const _RNFE = "ResourceNotFoundException";
312
- const _SD = "SampleDocuments";
313
- const _SDK = "SampleDocumentKeys";
314
- const _SL = "S3Location";
315
- const _SLL = "S3LocationList";
316
- const _SQEE = "ServiceQuotaExceededException";
317
- const _STJ = "StartTransformerJob";
318
- const _STJR = "StartTransformerJobRequest";
319
- const _STJRt = "StartTransformerJobResponse";
320
- const _T = "Tags";
321
- const _TC = "TestConversion";
322
- const _TCR = "TestConversionRequest";
323
- const _TCRe = "TestConversionResponse";
324
- const _TD = "TemplateDetails";
325
- const _TE = "ThrottlingException";
326
- const _TK = "TagKeys";
327
- const _TL = "TagList";
328
- const _TLr = "TransformerList";
329
- const _TM = "TestMapping";
330
- const _TMR = "TestMappingRequest";
331
- const _TMRe = "TestMappingResponse";
332
- const _TP = "TestParsing";
333
- const _TPR = "TestParsingRequest";
334
- const _TPRe = "TestParsingResponse";
335
- const _TR = "TagResource";
336
- const _TRR = "TagResourceRequest";
337
- const _TS = "TransformerSummary";
338
- const _Ta = "Tag";
339
- const _UC = "UpdateCapability";
340
- const _UCR = "UpdateCapabilityRequest";
341
- const _UCRp = "UpdateCapabilityResponse";
342
- const _UP = "UpdatePartnership";
343
- const _UPR = "UpdatePartnershipRequest";
344
- const _UPRp = "UpdatePartnershipResponse";
345
- const _UPRpd = "UpdateProfileRequest";
346
- const _UPRpda = "UpdateProfileResponse";
347
- const _UPp = "UpdateProfile";
348
- const _UR = "UntagResource";
349
- const _URR = "UntagResourceRequest";
350
- const _UT = "UpdateTransformer";
351
- const _UTR = "UpdateTransformerRequest";
352
- const _UTRp = "UpdateTransformerResponse";
353
- const _V = "Value";
354
- const _VE = "ValidationException";
355
- const _WO = "WrapOptions";
356
- const _XAO = "X12AcknowledgmentOptions";
357
- const _XAOd = "X12AdvancedOptions";
358
- const _XCLVR = "X12CodeListValidationRule";
359
- const _XCN = "X12ControlNumbers";
360
- const _XD = "X12Delimiters";
361
- const _XDe = "X12Details";
362
- const _XE = "X12Envelope";
363
- const _XELVR = "X12ElementLengthValidationRule";
364
- const _XERVR = "X12ElementRequirementValidationRule";
365
- const _XFGH = "X12FunctionalGroupHeaders";
366
- const _XICH = "X12InterchangeControlHeaders";
367
- const _XIEO = "X12InboundEdiOptions";
368
- const _XOEH = "X12OutboundEdiHeaders";
369
- const _XSO = "X12SplitOptions";
370
- const _XVO = "X12ValidationOptions";
371
- const _XVR = "X12ValidationRules";
372
- const _XVRa = "X12ValidationRule";
373
- const _aO = "advancedOptions";
374
- const _aOc = "acknowledgmentOptions";
375
- const _aRC = "applicationReceiverCode";
376
- const _aRCc = "acknowledgmentRequestedCode";
377
- const _aSC = "applicationSenderCode";
378
- const _bN = "businessName";
379
- const _bNu = "bucketName";
380
- const _c = "client";
381
- const _cA = "createdAt";
382
- const _cAa = "capabilityArn";
383
- const _cD = "capabilityDirection";
384
- const _cFC = "convertedFileContent";
385
- const _cI = "capabilityId";
386
- const _cLVR = "codeListValidationRule";
387
- const _cN = "controlNumbers";
388
- const _cO = "capabilityOptions";
389
- const _cS = "componentSeparator";
390
- const _cT = "clientToken";
391
- const _cTA = "codesToAdd";
392
- const _cTR = "codesToRemove";
393
- const _ca = "capabilities";
394
- const _co = "configuration";
395
- const _com = "common";
396
- const _d = "delimiters";
397
- const _dES = "dataElementSeparator";
398
- const _e = "error";
399
- const _eI = "elementId";
400
- const _eLVR = "elementLengthValidationRule";
401
- const _eP = "elementPosition";
402
- const _eRVR = "elementRequirementValidationRule";
403
- const _eT = "ediType";
404
- const _ed = "edi";
405
- const _em = "email";
406
- const _fA = "functionalAcknowledgment";
407
- const _fC = "fileContent";
408
- const _fD = "formatDetails";
409
- const _fF = "fileFormat";
410
- const _fFr = "fromFormat";
411
- const _fGH = "functionalGroupHeaders";
412
- const _fL = "fileLocation";
413
- const _fO = "formatOptions";
414
- const _gTF = "gs05TimeFormat";
415
- const _h = "http";
416
- const _hE = "httpError";
417
- const _hH = "httpHeader";
418
- const _hQ = "httpQuery";
419
- const _i = "input";
420
- const _iC = "inputConversion";
421
- const _iCH = "interchangeControlHeaders";
422
- const _iD = "instructionsDocuments";
423
- const _iE = "inboundEdi";
424
- const _iF = "inputFile";
425
- const _iFC = "inputFileContent";
426
- const _iL = "inputLocation";
427
- const _k = "key";
428
- const _ke = "keys";
429
- const _l = "logging";
430
- const _lGN = "logGroupName";
431
- const _lL = "lineLength";
432
- const _lT = "lineTerminator";
433
- const _m = "message";
434
- const _mA = "modifiedAt";
435
- const _mAa = "mappingAccuracy";
436
- const _mFC = "mappedFileContent";
437
- const _mL = "maxLength";
438
- const _mLi = "minLength";
439
- const _mR = "maxResults";
440
- const _mT = "mappingType";
441
- const _mTa = "mappingTemplate";
442
- const _ma = "mapping";
443
- const _n = "name";
444
- const _nT = "nextToken";
445
- const _o = "output";
446
- const _oC = "outputConversion";
447
- const _oE = "outboundEdi";
448
- const _oF = "outputFiles";
449
- const _oFC = "outputFileContent";
450
- const _oL = "outputLocation";
451
- const _oSF = "outputSampleFile";
452
- const _oSL = "outputSampleLocation";
453
- const _p = "phone";
454
- const _pA = "partnershipArn";
455
- const _pAr = "profileArn";
456
- const _pFC = "parsedFileContent";
457
- const _pI = "profileId";
458
- const _pIa = "partnershipId";
459
- const _pSFC = "parsedSplitFileContents";
460
- const _pa = "partnerships";
461
- const _pr = "profiles";
462
- const _qC = "quotaCode";
463
- const _r = "requirement";
464
- const _rAC = "responsibleAgencyCode";
465
- const _rAS = "retryAfterSeconds";
466
- const _rI = "resourceId";
467
- const _rIQ = "receiverIdQualifier";
468
- const _rIe = "receiverId";
469
- const _rS = "repetitionSeparator";
470
- const _rT = "resourceType";
471
- const _s = "status";
472
- const _sB = "splitBy";
473
- const _sC = "serviceCode";
474
- const _sD = "sampleDocument";
475
- const _sDa = "sampleDocuments";
476
- const _sFGCN = "startingFunctionalGroupControlNumber";
477
- const _sI = "senderId";
478
- const _sICN = "startingInterchangeControlNumber";
479
- const _sIQ = "senderIdQualifier";
480
- const _sO = "splitOptions";
481
- const _sT = "segmentTerminator";
482
- const _sTSCN = "startingTransactionSetControlNumber";
483
- const _se = "server";
484
- const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.b2bi";
485
- const _so = "source";
486
- const _t = "type";
487
- const _tA = "transformerArn";
488
- const _tAe = "technicalAcknowledgment";
489
- const _tD = "templateDetails";
490
- const _tF = "toFormat";
491
- const _tI = "transformerId";
492
- const _tJI = "transformerJobId";
493
- const _tL = "templateLanguage";
494
- const _tPI = "tradingPartnerId";
495
- const _tS = "transactionSet";
496
- const _ta = "tags";
497
- const _tar = "target";
498
- const _te = "template";
499
- const _tr = "transformers";
500
- const _uIC = "usageIndicatorCode";
501
- const _v = "version";
502
- const _vE = "validateEdi";
503
- const _vM = "validationMessages";
504
- const _vO = "validationOptions";
505
- const _vR = "validationRules";
506
- const _wB = "wrapBy";
507
- const _wO = "wrapOptions";
508
- const _x = "x12";
509
- const _xD = "x12Details";
510
- const n0 = "com.amazonaws.b2bi";
511
- var Email = [0, n0, _E, 8, 0];
512
- var Phone = [0, n0, _P, 8, 0];
513
- var AccessDeniedException$ = [-3, n0, _ADE,
514
- { [_e]: _c, [_hE]: 403 },
515
- [_m],
516
- [0], 1
517
- ];
518
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
519
- var AdvancedOptions$ = [3, n0, _AO,
520
- 0,
521
- [_x],
522
- [() => X12AdvancedOptions$]
523
- ];
524
- var CapabilityOptions$ = [3, n0, _CO,
525
- 0,
526
- [_oE, _iE],
527
- [() => OutboundEdiOptions$, () => InboundEdiOptions$]
528
- ];
529
- var CapabilitySummary$ = [3, n0, _CS,
530
- 0,
531
- [_cI, _n, _t, _cA, _mA],
532
- [0, 0, 0, 5, 5], 4
533
- ];
534
- var ConflictException$ = [-3, n0, _CE,
535
- { [_e]: _c, [_hE]: 409 },
536
- [_m],
537
- [0], 1
538
- ];
539
- schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
540
- var ConversionSource$ = [3, n0, _CSo,
541
- 0,
542
- [_fF, _iF],
543
- [0, () => InputFileSource$], 2
544
- ];
545
- var ConversionTarget$ = [3, n0, _CT,
546
- 0,
547
- [_fF, _fD, _oSF, _aO],
548
- [0, () => ConversionTargetFormatDetails$, () => OutputSampleFileSource$, () => AdvancedOptions$], 1
549
- ];
550
- var CreateCapabilityRequest$ = [3, n0, _CCR,
551
- 0,
552
- [_n, _t, _co, _iD, _cT, _ta],
553
- [0, 0, () => CapabilityConfiguration$, () => InstructionsDocuments, [0, 4], () => TagList], 3
554
- ];
555
- var CreateCapabilityResponse$ = [3, n0, _CCRr,
556
- 0,
557
- [_cI, _cAa, _n, _t, _co, _cA, _iD],
558
- [0, 0, 0, 0, () => CapabilityConfiguration$, 5, () => InstructionsDocuments], 6
559
- ];
560
- var CreatePartnershipRequest$ = [3, n0, _CPR,
561
- 0,
562
- [_pI, _n, _em, _ca, _p, _cO, _cT, _ta],
563
- [0, 0, [() => Email, 0], 64 | 0, [() => Phone, 0], () => CapabilityOptions$, [0, 4], () => TagList], 4
564
- ];
565
- var CreatePartnershipResponse$ = [3, n0, _CPRr,
566
- 0,
567
- [_pI, _pIa, _pA, _cA, _n, _em, _p, _ca, _cO, _tPI],
568
- [0, 0, 0, 5, 0, [() => Email, 0], [() => Phone, 0], 64 | 0, () => CapabilityOptions$, 0], 4
569
- ];
570
- var CreateProfileRequest$ = [3, n0, _CPRre,
571
- 0,
572
- [_n, _p, _bN, _l, _em, _cT, _ta],
573
- [0, [() => Phone, 0], 0, 0, [() => Email, 0], [0, 4], () => TagList], 4
574
- ];
575
- var CreateProfileResponse$ = [3, n0, _CPRrea,
576
- 0,
577
- [_pI, _pAr, _n, _bN, _p, _cA, _em, _l, _lGN],
578
- [0, 0, 0, 0, [() => Phone, 0], 5, [() => Email, 0], 0, 0], 6
579
- ];
580
- var CreateStarterMappingTemplateRequest$ = [3, n0, _CSMTR,
581
- 0,
582
- [_mT, _tD, _oSL],
583
- [0, () => TemplateDetails$, () => S3Location$], 2
584
- ];
585
- var CreateStarterMappingTemplateResponse$ = [3, n0, _CSMTRr,
586
- 0,
587
- [_mTa],
588
- [0], 1
589
- ];
590
- var CreateTransformerRequest$ = [3, n0, _CTR,
591
- 0,
592
- [_n, _cT, _ta, _fF, _mTa, _eT, _sD, _iC, _ma, _oC, _sDa],
593
- [0, [0, 4], () => TagList, 0, 0, () => EdiType$, 0, () => InputConversion$, () => Mapping$, () => OutputConversion$, () => SampleDocuments$], 1
594
- ];
595
- var CreateTransformerResponse$ = [3, n0, _CTRr,
596
- 0,
597
- [_tI, _tA, _n, _s, _cA, _fF, _mTa, _eT, _sD, _iC, _ma, _oC, _sDa],
598
- [0, 0, 0, 0, 5, 0, 0, () => EdiType$, 0, () => InputConversion$, () => Mapping$, () => OutputConversion$, () => SampleDocuments$], 5
599
- ];
600
- var DeleteCapabilityRequest$ = [3, n0, _DCR,
601
- 0,
602
- [_cI],
603
- [[0, 1]], 1
604
- ];
605
- var DeletePartnershipRequest$ = [3, n0, _DPR,
606
- 0,
607
- [_pIa],
608
- [[0, 1]], 1
609
- ];
610
- var DeleteProfileRequest$ = [3, n0, _DPRe,
611
- 0,
612
- [_pI],
613
- [[0, 1]], 1
614
- ];
615
- var DeleteTransformerRequest$ = [3, n0, _DTR,
616
- 0,
617
- [_tI],
618
- [[0, 1]], 1
619
- ];
620
- var EdiConfiguration$ = [3, n0, _EC,
621
- 0,
622
- [_t, _iL, _oL, _tI, _cD],
623
- [() => EdiType$, () => S3Location$, () => S3Location$, 0, 0], 4
624
- ];
625
- var GenerateMappingRequest$ = [3, n0, _GMR,
626
- 0,
627
- [_iFC, _oFC, _mT],
628
- [0, 0, 0], 3
629
- ];
630
- var GenerateMappingResponse$ = [3, n0, _GMRe,
631
- 0,
632
- [_mTa, _mAa],
633
- [0, 1], 1
634
- ];
635
- var GetCapabilityRequest$ = [3, n0, _GCR,
636
- 0,
637
- [_cI],
638
- [[0, 1]], 1
639
- ];
640
- var GetCapabilityResponse$ = [3, n0, _GCRe,
641
- 0,
642
- [_cI, _cAa, _n, _t, _co, _cA, _iD, _mA],
643
- [0, 0, 0, 0, () => CapabilityConfiguration$, 5, () => InstructionsDocuments, 5], 6
644
- ];
645
- var GetPartnershipRequest$ = [3, n0, _GPR,
646
- 0,
647
- [_pIa],
648
- [[0, 1]], 1
649
- ];
650
- var GetPartnershipResponse$ = [3, n0, _GPRe,
651
- 0,
652
- [_pI, _pIa, _pA, _cA, _n, _em, _p, _ca, _cO, _tPI, _mA],
653
- [0, 0, 0, 5, 0, [() => Email, 0], [() => Phone, 0], 64 | 0, () => CapabilityOptions$, 0, 5], 4
654
- ];
655
- var GetProfileRequest$ = [3, n0, _GPRet,
656
- 0,
657
- [_pI],
658
- [[0, 1]], 1
659
- ];
660
- var GetProfileResponse$ = [3, n0, _GPRetr,
661
- 0,
662
- [_pI, _pAr, _n, _p, _bN, _cA, _em, _l, _lGN, _mA],
663
- [0, 0, 0, [() => Phone, 0], 0, 5, [() => Email, 0], 0, 0, 5], 6
664
- ];
665
- var GetTransformerJobRequest$ = [3, n0, _GTJR,
666
- 0,
667
- [_tJI, _tI],
668
- [[0, 1], [0, { [_hQ]: _tI }]], 2
669
- ];
670
- var GetTransformerJobResponse$ = [3, n0, _GTJRe,
671
- 0,
672
- [_s, _oF, _m],
673
- [0, () => S3LocationList, 0], 1
674
- ];
675
- var GetTransformerRequest$ = [3, n0, _GTR,
676
- 0,
677
- [_tI],
678
- [[0, 1]], 1
679
- ];
680
- var GetTransformerResponse$ = [3, n0, _GTRe,
681
- 0,
682
- [_tI, _tA, _n, _s, _cA, _mA, _fF, _mTa, _eT, _sD, _iC, _ma, _oC, _sDa],
683
- [0, 0, 0, 0, 5, 5, 0, 0, () => EdiType$, 0, () => InputConversion$, () => Mapping$, () => OutputConversion$, () => SampleDocuments$], 5
684
- ];
685
- var InboundEdiOptions$ = [3, n0, _IEO,
686
- 0,
687
- [_x],
688
- [() => X12InboundEdiOptions$]
689
- ];
690
- var InputConversion$ = [3, n0, _IC,
691
- 0,
692
- [_fFr, _fO, _aO],
693
- [0, () => FormatOptions$, () => AdvancedOptions$], 1
694
- ];
695
- var InternalServerException$ = [-3, n0, _ISE,
696
- { [_e]: _se, [_hE]: 500 },
697
- [_m, _rAS],
698
- [0, [1, { [_hH]: _RA }]], 1
699
- ];
700
- schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
701
- var ListCapabilitiesRequest$ = [3, n0, _LCR,
702
- 0,
703
- [_nT, _mR],
704
- [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
705
- ];
706
- var ListCapabilitiesResponse$ = [3, n0, _LCRi,
707
- 0,
708
- [_ca, _nT],
709
- [() => CapabilityList, 0], 1
710
- ];
711
- var ListPartnershipsRequest$ = [3, n0, _LPR,
712
- 0,
713
- [_pI, _nT, _mR],
714
- [[0, { [_hQ]: _pI }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
715
- ];
716
- var ListPartnershipsResponse$ = [3, n0, _LPRi,
717
- 0,
718
- [_pa, _nT],
719
- [() => PartnershipList, 0], 1
720
- ];
721
- var ListProfilesRequest$ = [3, n0, _LPRis,
722
- 0,
723
- [_nT, _mR],
724
- [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
725
- ];
726
- var ListProfilesResponse$ = [3, n0, _LPRist,
727
- 0,
728
- [_pr, _nT],
729
- [() => ProfileList, 0], 1
730
- ];
731
- var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
732
- 0,
733
- [_RARN],
734
- [[0, 1]], 1
735
- ];
736
- var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
737
- 0,
738
- [_T],
739
- [() => TagList]
740
- ];
741
- var ListTransformersRequest$ = [3, n0, _LTR,
742
- 0,
743
- [_nT, _mR],
744
- [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
745
- ];
746
- var ListTransformersResponse$ = [3, n0, _LTRi,
747
- 0,
748
- [_tr, _nT],
749
- [() => TransformerList, 0], 1
750
- ];
751
- var Mapping$ = [3, n0, _M,
752
- 0,
753
- [_tL, _te],
754
- [0, 0], 1
755
- ];
756
- var OutputConversion$ = [3, n0, _OC,
757
- 0,
758
- [_tF, _fO, _aO],
759
- [0, () => FormatOptions$, () => AdvancedOptions$], 1
760
- ];
761
- var PartnershipSummary$ = [3, n0, _PS,
762
- 0,
763
- [_pI, _pIa, _cA, _n, _ca, _cO, _tPI, _mA],
764
- [0, 0, 5, 0, 64 | 0, () => CapabilityOptions$, 0, 5], 3
765
- ];
766
- var ProfileSummary$ = [3, n0, _PSr,
767
- 0,
768
- [_pI, _n, _bN, _cA, _l, _lGN, _mA],
769
- [0, 0, 0, 5, 0, 0, 5], 4
770
- ];
771
- var ResourceNotFoundException$ = [-3, n0, _RNFE,
772
- { [_e]: _c, [_hE]: 404 },
773
- [_m],
774
- [0], 1
775
- ];
776
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
777
- var S3Location$ = [3, n0, _SL,
778
- 0,
779
- [_bNu, _k],
780
- [0, 0]
781
- ];
782
- var SampleDocumentKeys$ = [3, n0, _SDK,
783
- 0,
784
- [_i, _o],
785
- [0, 0]
786
- ];
787
- var SampleDocuments$ = [3, n0, _SD,
788
- 0,
789
- [_bNu, _ke],
790
- [0, () => KeyList], 2
791
- ];
792
- var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
793
- { [_e]: _c, [_hE]: 402 },
794
- [_m, _rI, _rT, _sC, _qC],
795
- [0, 0, 0, 0, 0], 5
796
- ];
797
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
798
- var StartTransformerJobRequest$ = [3, n0, _STJR,
799
- 0,
800
- [_iF, _oL, _tI, _cT],
801
- [() => S3Location$, () => S3Location$, 0, [0, 4]], 3
802
- ];
803
- var StartTransformerJobResponse$ = [3, n0, _STJRt,
804
- 0,
805
- [_tJI],
806
- [0], 1
807
- ];
808
- var Tag$ = [3, n0, _Ta,
809
- 0,
810
- [_K, _V],
811
- [0, 0], 2
812
- ];
813
- var TagResourceRequest$ = [3, n0, _TRR,
814
- 0,
815
- [_RARN, _T],
816
- [[0, 1], () => TagList], 2
817
- ];
818
- var TestConversionRequest$ = [3, n0, _TCR,
819
- 0,
820
- [_so, _tar],
821
- [() => ConversionSource$, () => ConversionTarget$], 2
822
- ];
823
- var TestConversionResponse$ = [3, n0, _TCRe,
824
- 0,
825
- [_cFC, _vM],
826
- [0, 64 | 0], 1
827
- ];
828
- var TestMappingRequest$ = [3, n0, _TMR,
829
- 0,
830
- [_iFC, _mTa, _fF],
831
- [0, 0, 0], 3
832
- ];
833
- var TestMappingResponse$ = [3, n0, _TMRe,
834
- 0,
835
- [_mFC],
836
- [0], 1
837
- ];
838
- var TestParsingRequest$ = [3, n0, _TPR,
839
- 0,
840
- [_iF, _fF, _eT, _aO],
841
- [() => S3Location$, 0, () => EdiType$, () => AdvancedOptions$], 3
842
- ];
843
- var TestParsingResponse$ = [3, n0, _TPRe,
844
- 0,
845
- [_pFC, _pSFC, _vM],
846
- [0, 64 | 0, 64 | 0], 1
847
- ];
848
- var ThrottlingException$ = [-3, n0, _TE,
849
- { [_e]: _c, [_hE]: 429 },
850
- [_m, _rAS],
851
- [0, [1, { [_hH]: _RA }]], 1
852
- ];
853
- schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
854
- var TransformerSummary$ = [3, n0, _TS,
855
- 0,
856
- [_tI, _n, _s, _cA, _mA, _fF, _mTa, _eT, _sD, _iC, _ma, _oC, _sDa],
857
- [0, 0, 0, 5, 5, 0, 0, () => EdiType$, 0, () => InputConversion$, () => Mapping$, () => OutputConversion$, () => SampleDocuments$], 4
858
- ];
859
- var UntagResourceRequest$ = [3, n0, _URR,
860
- 0,
861
- [_RARN, _TK],
862
- [[0, 1], [64 | 0, { [_hQ]: _TK }]], 2
863
- ];
864
- var UpdateCapabilityRequest$ = [3, n0, _UCR,
865
- 0,
866
- [_cI, _n, _co, _iD],
867
- [[0, 1], 0, () => CapabilityConfiguration$, () => InstructionsDocuments], 1
868
- ];
869
- var UpdateCapabilityResponse$ = [3, n0, _UCRp,
870
- 0,
871
- [_cI, _cAa, _n, _t, _co, _cA, _iD, _mA],
872
- [0, 0, 0, 0, () => CapabilityConfiguration$, 5, () => InstructionsDocuments, 5], 6
873
- ];
874
- var UpdatePartnershipRequest$ = [3, n0, _UPR,
875
- 0,
876
- [_pIa, _n, _ca, _cO],
877
- [[0, 1], 0, 64 | 0, () => CapabilityOptions$], 1
878
- ];
879
- var UpdatePartnershipResponse$ = [3, n0, _UPRp,
880
- 0,
881
- [_pI, _pIa, _pA, _cA, _n, _em, _p, _ca, _cO, _tPI, _mA],
882
- [0, 0, 0, 5, 0, [() => Email, 0], [() => Phone, 0], 64 | 0, () => CapabilityOptions$, 0, 5], 4
883
- ];
884
- var UpdateProfileRequest$ = [3, n0, _UPRpd,
885
- 0,
886
- [_pI, _n, _em, _p, _bN],
887
- [[0, 1], 0, [() => Email, 0], [() => Phone, 0], 0], 1
888
- ];
889
- var UpdateProfileResponse$ = [3, n0, _UPRpda,
890
- 0,
891
- [_pI, _pAr, _n, _p, _bN, _cA, _em, _l, _lGN, _mA],
892
- [0, 0, 0, [() => Phone, 0], 0, 5, [() => Email, 0], 0, 0, 5], 6
893
- ];
894
- var UpdateTransformerRequest$ = [3, n0, _UTR,
895
- 0,
896
- [_tI, _n, _s, _fF, _mTa, _eT, _sD, _iC, _ma, _oC, _sDa],
897
- [[0, 1], 0, 0, 0, 0, () => EdiType$, 0, () => InputConversion$, () => Mapping$, () => OutputConversion$, () => SampleDocuments$], 1
898
- ];
899
- var UpdateTransformerResponse$ = [3, n0, _UTRp,
900
- 0,
901
- [_tI, _tA, _n, _s, _cA, _mA, _fF, _mTa, _eT, _sD, _iC, _ma, _oC, _sDa],
902
- [0, 0, 0, 0, 5, 5, 0, 0, () => EdiType$, 0, () => InputConversion$, () => Mapping$, () => OutputConversion$, () => SampleDocuments$], 6
903
- ];
904
- var ValidationException$ = [-3, n0, _VE,
905
- { [_e]: _c, [_hE]: 400 },
906
- [_Me],
907
- [0], 1
908
- ];
909
- schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
910
- var WrapOptions$ = [3, n0, _WO,
911
- 0,
912
- [_wB, _lT, _lL],
913
- [0, 0, 1], 1
914
- ];
915
- var X12AcknowledgmentOptions$ = [3, n0, _XAO,
916
- 0,
917
- [_fA, _tAe],
918
- [0, 0], 2
919
- ];
920
- var X12AdvancedOptions$ = [3, n0, _XAOd,
921
- 0,
922
- [_sO, _vO],
923
- [() => X12SplitOptions$, () => X12ValidationOptions$]
924
- ];
925
- var X12CodeListValidationRule$ = [3, n0, _XCLVR,
926
- 0,
927
- [_eI, _cTA, _cTR],
928
- [0, 64 | 0, 64 | 0], 1
929
- ];
930
- var X12ControlNumbers$ = [3, n0, _XCN,
931
- 0,
932
- [_sICN, _sFGCN, _sTSCN],
933
- [1, 1, 1]
934
- ];
935
- var X12Delimiters$ = [3, n0, _XD,
936
- 0,
937
- [_cS, _dES, _sT],
938
- [0, 0, 0]
939
- ];
940
- var X12Details$ = [3, n0, _XDe,
941
- 0,
942
- [_tS, _v],
943
- [0, 0]
944
- ];
945
- var X12ElementLengthValidationRule$ = [3, n0, _XELVR,
946
- 0,
947
- [_eI, _mL, _mLi],
948
- [0, 1, 1], 3
949
- ];
950
- var X12ElementRequirementValidationRule$ = [3, n0, _XERVR,
951
- 0,
952
- [_eP, _r],
953
- [0, 0], 2
954
- ];
955
- var X12Envelope$ = [3, n0, _XE,
956
- 0,
957
- [_com, _wO],
958
- [() => X12OutboundEdiHeaders$, () => WrapOptions$]
959
- ];
960
- var X12FunctionalGroupHeaders$ = [3, n0, _XFGH,
961
- 0,
962
- [_aSC, _aRC, _rAC],
963
- [0, 0, 0]
964
- ];
965
- var X12InboundEdiOptions$ = [3, n0, _XIEO,
966
- 0,
967
- [_aOc],
968
- [() => X12AcknowledgmentOptions$]
969
- ];
970
- var X12InterchangeControlHeaders$ = [3, n0, _XICH,
971
- 0,
972
- [_sIQ, _sI, _rIQ, _rIe, _rS, _aRCc, _uIC],
973
- [0, 0, 0, 0, 0, 0, 0]
974
- ];
975
- var X12OutboundEdiHeaders$ = [3, n0, _XOEH,
976
- 0,
977
- [_iCH, _fGH, _d, _vE, _cN, _gTF],
978
- [() => X12InterchangeControlHeaders$, () => X12FunctionalGroupHeaders$, () => X12Delimiters$, 2, () => X12ControlNumbers$, 0]
979
- ];
980
- var X12SplitOptions$ = [3, n0, _XSO,
981
- 0,
982
- [_sB],
983
- [0], 1
984
- ];
985
- var X12ValidationOptions$ = [3, n0, _XVO,
986
- 0,
987
- [_vR],
988
- [() => X12ValidationRules]
989
- ];
990
- var __Unit = "unit";
991
- var B2biServiceException$ = [-3, _sm, "B2biServiceException", 0, [], []];
992
- schema.TypeRegistry.for(_sm).registerError(B2biServiceException$, B2biServiceException);
993
- var CapabilityList = [1, n0, _CL,
994
- 0, () => CapabilitySummary$
995
- ];
996
- var InstructionsDocuments = [1, n0, _ID,
997
- 0, () => S3Location$
998
- ];
999
- var KeyList = [1, n0, _KL,
1000
- 0, () => SampleDocumentKeys$
1001
- ];
1002
- var PartnershipList = [1, n0, _PL,
1003
- 0, () => PartnershipSummary$
1004
- ];
1005
- var ProfileList = [1, n0, _PLr,
1006
- 0, () => ProfileSummary$
1007
- ];
1008
- var S3LocationList = [1, n0, _SLL,
1009
- 0, () => S3Location$
1010
- ];
1011
- var TagList = [1, n0, _TL,
1012
- 0, () => Tag$
1013
- ];
1014
- var TransformerList = [1, n0, _TLr,
1015
- 0, () => TransformerSummary$
1016
- ];
1017
- var X12ValidationRules = [1, n0, _XVR,
1018
- 0, () => X12ValidationRule$
1019
- ];
1020
- var CapabilityConfiguration$ = [4, n0, _CC,
1021
- 0,
1022
- [_ed],
1023
- [() => EdiConfiguration$]
1024
- ];
1025
- var ConversionTargetFormatDetails$ = [4, n0, _CTFD,
1026
- 0,
1027
- [_x],
1028
- [() => X12Details$]
1029
- ];
1030
- var EdiType$ = [4, n0, _ET,
1031
- 0,
1032
- [_xD],
1033
- [() => X12Details$]
1034
- ];
1035
- var FormatOptions$ = [4, n0, _FO,
1036
- 0,
1037
- [_x],
1038
- [() => X12Details$]
1039
- ];
1040
- var InputFileSource$ = [4, n0, _IFS,
1041
- 0,
1042
- [_fC],
1043
- [0]
1044
- ];
1045
- var OutboundEdiOptions$ = [4, n0, _OEO,
1046
- 0,
1047
- [_x],
1048
- [() => X12Envelope$]
1049
- ];
1050
- var OutputSampleFileSource$ = [4, n0, _OSFS,
1051
- 0,
1052
- [_fL],
1053
- [() => S3Location$]
1054
- ];
1055
- var TemplateDetails$ = [4, n0, _TD,
1056
- 0,
1057
- [_x],
1058
- [() => X12Details$]
1059
- ];
1060
- var X12ValidationRule$ = [4, n0, _XVRa,
1061
- 0,
1062
- [_cLVR, _eLVR, _eRVR],
1063
- [() => X12CodeListValidationRule$, () => X12ElementLengthValidationRule$, () => X12ElementRequirementValidationRule$]
1064
- ];
1065
- var CreateCapability$ = [9, n0, _CCr,
1066
- { [_h]: ["POST", "/capabilities", 201] }, () => CreateCapabilityRequest$, () => CreateCapabilityResponse$
1067
- ];
1068
- var CreatePartnership$ = [9, n0, _CP,
1069
- { [_h]: ["POST", "/partnerships", 201] }, () => CreatePartnershipRequest$, () => CreatePartnershipResponse$
1070
- ];
1071
- var CreateProfile$ = [9, n0, _CPr,
1072
- { [_h]: ["POST", "/profiles", 201] }, () => CreateProfileRequest$, () => CreateProfileResponse$
1073
- ];
1074
- var CreateStarterMappingTemplate$ = [9, n0, _CSMT,
1075
- { [_h]: ["POST", "/createmappingstarttemplate", 200] }, () => CreateStarterMappingTemplateRequest$, () => CreateStarterMappingTemplateResponse$
1076
- ];
1077
- var CreateTransformer$ = [9, n0, _CTr,
1078
- { [_h]: ["POST", "/transformers", 201] }, () => CreateTransformerRequest$, () => CreateTransformerResponse$
1079
- ];
1080
- var DeleteCapability$ = [9, n0, _DC,
1081
- { [_h]: ["DELETE", "/capabilities/{capabilityId}", 200] }, () => DeleteCapabilityRequest$, () => __Unit
1082
- ];
1083
- var DeletePartnership$ = [9, n0, _DP,
1084
- { [_h]: ["DELETE", "/partnerships/{partnershipId}", 200] }, () => DeletePartnershipRequest$, () => __Unit
1085
- ];
1086
- var DeleteProfile$ = [9, n0, _DPe,
1087
- { [_h]: ["DELETE", "/profiles/{profileId}", 200] }, () => DeleteProfileRequest$, () => __Unit
1088
- ];
1089
- var DeleteTransformer$ = [9, n0, _DT,
1090
- { [_h]: ["DELETE", "/transformers/{transformerId}", 200] }, () => DeleteTransformerRequest$, () => __Unit
1091
- ];
1092
- var GenerateMapping$ = [9, n0, _GM,
1093
- { [_h]: ["POST", "/generate-mapping", 200] }, () => GenerateMappingRequest$, () => GenerateMappingResponse$
1094
- ];
1095
- var GetCapability$ = [9, n0, _GC,
1096
- { [_h]: ["GET", "/capabilities/{capabilityId}", 200] }, () => GetCapabilityRequest$, () => GetCapabilityResponse$
1097
- ];
1098
- var GetPartnership$ = [9, n0, _GP,
1099
- { [_h]: ["GET", "/partnerships/{partnershipId}", 200] }, () => GetPartnershipRequest$, () => GetPartnershipResponse$
1100
- ];
1101
- var GetProfile$ = [9, n0, _GPe,
1102
- { [_h]: ["GET", "/profiles/{profileId}", 200] }, () => GetProfileRequest$, () => GetProfileResponse$
1103
- ];
1104
- var GetTransformer$ = [9, n0, _GT,
1105
- { [_h]: ["GET", "/transformers/{transformerId}", 200] }, () => GetTransformerRequest$, () => GetTransformerResponse$
1106
- ];
1107
- var GetTransformerJob$ = [9, n0, _GTJ,
1108
- { [_h]: ["GET", "/transformer-jobs/{transformerJobId}", 200] }, () => GetTransformerJobRequest$, () => GetTransformerJobResponse$
1109
- ];
1110
- var ListCapabilities$ = [9, n0, _LC,
1111
- { [_h]: ["GET", "/capabilities", 200] }, () => ListCapabilitiesRequest$, () => ListCapabilitiesResponse$
1112
- ];
1113
- var ListPartnerships$ = [9, n0, _LP,
1114
- { [_h]: ["GET", "/partnerships", 200] }, () => ListPartnershipsRequest$, () => ListPartnershipsResponse$
1115
- ];
1116
- var ListProfiles$ = [9, n0, _LPi,
1117
- { [_h]: ["GET", "/profiles", 200] }, () => ListProfilesRequest$, () => ListProfilesResponse$
1118
- ];
1119
- var ListTagsForResource$ = [9, n0, _LTFR,
1120
- { [_h]: ["GET", "/tags/{ResourceARN}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1121
- ];
1122
- var ListTransformers$ = [9, n0, _LT,
1123
- { [_h]: ["GET", "/transformers", 200] }, () => ListTransformersRequest$, () => ListTransformersResponse$
1124
- ];
1125
- var StartTransformerJob$ = [9, n0, _STJ,
1126
- { [_h]: ["POST", "/transformer-jobs", 200] }, () => StartTransformerJobRequest$, () => StartTransformerJobResponse$
1127
- ];
1128
- var TagResource$ = [9, n0, _TR,
1129
- { [_h]: ["POST", "/tags/{ResourceARN}", 200] }, () => TagResourceRequest$, () => __Unit
1130
- ];
1131
- var TestConversion$ = [9, n0, _TC,
1132
- { [_h]: ["POST", "/testconversion", 200] }, () => TestConversionRequest$, () => TestConversionResponse$
1133
- ];
1134
- var TestMapping$ = [9, n0, _TM,
1135
- { [_h]: ["POST", "/testmapping", 201] }, () => TestMappingRequest$, () => TestMappingResponse$
1136
- ];
1137
- var TestParsing$ = [9, n0, _TP,
1138
- { [_h]: ["POST", "/testparsing", 201] }, () => TestParsingRequest$, () => TestParsingResponse$
1139
- ];
1140
- var UntagResource$ = [9, n0, _UR,
1141
- { [_h]: ["DELETE", "/tags/{ResourceARN}", 200] }, () => UntagResourceRequest$, () => __Unit
1142
- ];
1143
- var UpdateCapability$ = [9, n0, _UC,
1144
- { [_h]: ["PATCH", "/capabilities/{capabilityId}", 200] }, () => UpdateCapabilityRequest$, () => UpdateCapabilityResponse$
1145
- ];
1146
- var UpdatePartnership$ = [9, n0, _UP,
1147
- { [_h]: ["PATCH", "/partnerships/{partnershipId}", 200] }, () => UpdatePartnershipRequest$, () => UpdatePartnershipResponse$
1148
- ];
1149
- var UpdateProfile$ = [9, n0, _UPp,
1150
- { [_h]: ["PATCH", "/profiles/{profileId}", 200] }, () => UpdateProfileRequest$, () => UpdateProfileResponse$
1151
- ];
1152
- var UpdateTransformer$ = [9, n0, _UT,
1153
- { [_h]: ["PATCH", "/transformers/{transformerId}", 200] }, () => UpdateTransformerRequest$, () => UpdateTransformerResponse$
1154
- ];
1155
-
1156
117
  class CreateCapabilityCommand extends smithyClient.Command
1157
118
  .classBuilder()
1158
119
  .ep(commonParams)
@@ -1161,7 +122,7 @@ class CreateCapabilityCommand extends smithyClient.Command
1161
122
  })
1162
123
  .s("B2BI", "CreateCapability", {})
1163
124
  .n("B2biClient", "CreateCapabilityCommand")
1164
- .sc(CreateCapability$)
125
+ .sc(schemas_0.CreateCapability$)
1165
126
  .build() {
1166
127
  }
1167
128
 
@@ -1173,7 +134,7 @@ class CreatePartnershipCommand extends smithyClient.Command
1173
134
  })
1174
135
  .s("B2BI", "CreatePartnership", {})
1175
136
  .n("B2biClient", "CreatePartnershipCommand")
1176
- .sc(CreatePartnership$)
137
+ .sc(schemas_0.CreatePartnership$)
1177
138
  .build() {
1178
139
  }
1179
140
 
@@ -1185,7 +146,7 @@ class CreateProfileCommand extends smithyClient.Command
1185
146
  })
1186
147
  .s("B2BI", "CreateProfile", {})
1187
148
  .n("B2biClient", "CreateProfileCommand")
1188
- .sc(CreateProfile$)
149
+ .sc(schemas_0.CreateProfile$)
1189
150
  .build() {
1190
151
  }
1191
152
 
@@ -1197,7 +158,7 @@ class CreateStarterMappingTemplateCommand extends smithyClient.Command
1197
158
  })
1198
159
  .s("B2BI", "CreateStarterMappingTemplate", {})
1199
160
  .n("B2biClient", "CreateStarterMappingTemplateCommand")
1200
- .sc(CreateStarterMappingTemplate$)
161
+ .sc(schemas_0.CreateStarterMappingTemplate$)
1201
162
  .build() {
1202
163
  }
1203
164
 
@@ -1209,7 +170,7 @@ class CreateTransformerCommand extends smithyClient.Command
1209
170
  })
1210
171
  .s("B2BI", "CreateTransformer", {})
1211
172
  .n("B2biClient", "CreateTransformerCommand")
1212
- .sc(CreateTransformer$)
173
+ .sc(schemas_0.CreateTransformer$)
1213
174
  .build() {
1214
175
  }
1215
176
 
@@ -1221,7 +182,7 @@ class DeleteCapabilityCommand extends smithyClient.Command
1221
182
  })
1222
183
  .s("B2BI", "DeleteCapability", {})
1223
184
  .n("B2biClient", "DeleteCapabilityCommand")
1224
- .sc(DeleteCapability$)
185
+ .sc(schemas_0.DeleteCapability$)
1225
186
  .build() {
1226
187
  }
1227
188
 
@@ -1233,7 +194,7 @@ class DeletePartnershipCommand extends smithyClient.Command
1233
194
  })
1234
195
  .s("B2BI", "DeletePartnership", {})
1235
196
  .n("B2biClient", "DeletePartnershipCommand")
1236
- .sc(DeletePartnership$)
197
+ .sc(schemas_0.DeletePartnership$)
1237
198
  .build() {
1238
199
  }
1239
200
 
@@ -1245,7 +206,7 @@ class DeleteProfileCommand extends smithyClient.Command
1245
206
  })
1246
207
  .s("B2BI", "DeleteProfile", {})
1247
208
  .n("B2biClient", "DeleteProfileCommand")
1248
- .sc(DeleteProfile$)
209
+ .sc(schemas_0.DeleteProfile$)
1249
210
  .build() {
1250
211
  }
1251
212
 
@@ -1257,7 +218,7 @@ class DeleteTransformerCommand extends smithyClient.Command
1257
218
  })
1258
219
  .s("B2BI", "DeleteTransformer", {})
1259
220
  .n("B2biClient", "DeleteTransformerCommand")
1260
- .sc(DeleteTransformer$)
221
+ .sc(schemas_0.DeleteTransformer$)
1261
222
  .build() {
1262
223
  }
1263
224
 
@@ -1269,7 +230,7 @@ class GenerateMappingCommand extends smithyClient.Command
1269
230
  })
1270
231
  .s("B2BI", "GenerateMapping", {})
1271
232
  .n("B2biClient", "GenerateMappingCommand")
1272
- .sc(GenerateMapping$)
233
+ .sc(schemas_0.GenerateMapping$)
1273
234
  .build() {
1274
235
  }
1275
236
 
@@ -1281,7 +242,7 @@ class GetCapabilityCommand extends smithyClient.Command
1281
242
  })
1282
243
  .s("B2BI", "GetCapability", {})
1283
244
  .n("B2biClient", "GetCapabilityCommand")
1284
- .sc(GetCapability$)
245
+ .sc(schemas_0.GetCapability$)
1285
246
  .build() {
1286
247
  }
1287
248
 
@@ -1293,7 +254,7 @@ class GetPartnershipCommand extends smithyClient.Command
1293
254
  })
1294
255
  .s("B2BI", "GetPartnership", {})
1295
256
  .n("B2biClient", "GetPartnershipCommand")
1296
- .sc(GetPartnership$)
257
+ .sc(schemas_0.GetPartnership$)
1297
258
  .build() {
1298
259
  }
1299
260
 
@@ -1305,7 +266,7 @@ class GetProfileCommand extends smithyClient.Command
1305
266
  })
1306
267
  .s("B2BI", "GetProfile", {})
1307
268
  .n("B2biClient", "GetProfileCommand")
1308
- .sc(GetProfile$)
269
+ .sc(schemas_0.GetProfile$)
1309
270
  .build() {
1310
271
  }
1311
272
 
@@ -1317,7 +278,7 @@ class GetTransformerCommand extends smithyClient.Command
1317
278
  })
1318
279
  .s("B2BI", "GetTransformer", {})
1319
280
  .n("B2biClient", "GetTransformerCommand")
1320
- .sc(GetTransformer$)
281
+ .sc(schemas_0.GetTransformer$)
1321
282
  .build() {
1322
283
  }
1323
284
 
@@ -1329,7 +290,7 @@ class GetTransformerJobCommand extends smithyClient.Command
1329
290
  })
1330
291
  .s("B2BI", "GetTransformerJob", {})
1331
292
  .n("B2biClient", "GetTransformerJobCommand")
1332
- .sc(GetTransformerJob$)
293
+ .sc(schemas_0.GetTransformerJob$)
1333
294
  .build() {
1334
295
  }
1335
296
 
@@ -1341,7 +302,7 @@ class ListCapabilitiesCommand extends smithyClient.Command
1341
302
  })
1342
303
  .s("B2BI", "ListCapabilities", {})
1343
304
  .n("B2biClient", "ListCapabilitiesCommand")
1344
- .sc(ListCapabilities$)
305
+ .sc(schemas_0.ListCapabilities$)
1345
306
  .build() {
1346
307
  }
1347
308
 
@@ -1353,7 +314,7 @@ class ListPartnershipsCommand extends smithyClient.Command
1353
314
  })
1354
315
  .s("B2BI", "ListPartnerships", {})
1355
316
  .n("B2biClient", "ListPartnershipsCommand")
1356
- .sc(ListPartnerships$)
317
+ .sc(schemas_0.ListPartnerships$)
1357
318
  .build() {
1358
319
  }
1359
320
 
@@ -1365,7 +326,7 @@ class ListProfilesCommand extends smithyClient.Command
1365
326
  })
1366
327
  .s("B2BI", "ListProfiles", {})
1367
328
  .n("B2biClient", "ListProfilesCommand")
1368
- .sc(ListProfiles$)
329
+ .sc(schemas_0.ListProfiles$)
1369
330
  .build() {
1370
331
  }
1371
332
 
@@ -1377,7 +338,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1377
338
  })
1378
339
  .s("B2BI", "ListTagsForResource", {})
1379
340
  .n("B2biClient", "ListTagsForResourceCommand")
1380
- .sc(ListTagsForResource$)
341
+ .sc(schemas_0.ListTagsForResource$)
1381
342
  .build() {
1382
343
  }
1383
344
 
@@ -1389,7 +350,7 @@ class ListTransformersCommand extends smithyClient.Command
1389
350
  })
1390
351
  .s("B2BI", "ListTransformers", {})
1391
352
  .n("B2biClient", "ListTransformersCommand")
1392
- .sc(ListTransformers$)
353
+ .sc(schemas_0.ListTransformers$)
1393
354
  .build() {
1394
355
  }
1395
356
 
@@ -1401,7 +362,7 @@ class StartTransformerJobCommand extends smithyClient.Command
1401
362
  })
1402
363
  .s("B2BI", "StartTransformerJob", {})
1403
364
  .n("B2biClient", "StartTransformerJobCommand")
1404
- .sc(StartTransformerJob$)
365
+ .sc(schemas_0.StartTransformerJob$)
1405
366
  .build() {
1406
367
  }
1407
368
 
@@ -1413,7 +374,7 @@ class TagResourceCommand extends smithyClient.Command
1413
374
  })
1414
375
  .s("B2BI", "TagResource", {})
1415
376
  .n("B2biClient", "TagResourceCommand")
1416
- .sc(TagResource$)
377
+ .sc(schemas_0.TagResource$)
1417
378
  .build() {
1418
379
  }
1419
380
 
@@ -1425,7 +386,7 @@ class TestConversionCommand extends smithyClient.Command
1425
386
  })
1426
387
  .s("B2BI", "TestConversion", {})
1427
388
  .n("B2biClient", "TestConversionCommand")
1428
- .sc(TestConversion$)
389
+ .sc(schemas_0.TestConversion$)
1429
390
  .build() {
1430
391
  }
1431
392
 
@@ -1437,7 +398,7 @@ class TestMappingCommand extends smithyClient.Command
1437
398
  })
1438
399
  .s("B2BI", "TestMapping", {})
1439
400
  .n("B2biClient", "TestMappingCommand")
1440
- .sc(TestMapping$)
401
+ .sc(schemas_0.TestMapping$)
1441
402
  .build() {
1442
403
  }
1443
404
 
@@ -1449,7 +410,7 @@ class TestParsingCommand extends smithyClient.Command
1449
410
  })
1450
411
  .s("B2BI", "TestParsing", {})
1451
412
  .n("B2biClient", "TestParsingCommand")
1452
- .sc(TestParsing$)
413
+ .sc(schemas_0.TestParsing$)
1453
414
  .build() {
1454
415
  }
1455
416
 
@@ -1461,7 +422,7 @@ class UntagResourceCommand extends smithyClient.Command
1461
422
  })
1462
423
  .s("B2BI", "UntagResource", {})
1463
424
  .n("B2biClient", "UntagResourceCommand")
1464
- .sc(UntagResource$)
425
+ .sc(schemas_0.UntagResource$)
1465
426
  .build() {
1466
427
  }
1467
428
 
@@ -1473,7 +434,7 @@ class UpdateCapabilityCommand extends smithyClient.Command
1473
434
  })
1474
435
  .s("B2BI", "UpdateCapability", {})
1475
436
  .n("B2biClient", "UpdateCapabilityCommand")
1476
- .sc(UpdateCapability$)
437
+ .sc(schemas_0.UpdateCapability$)
1477
438
  .build() {
1478
439
  }
1479
440
 
@@ -1485,7 +446,7 @@ class UpdatePartnershipCommand extends smithyClient.Command
1485
446
  })
1486
447
  .s("B2BI", "UpdatePartnership", {})
1487
448
  .n("B2biClient", "UpdatePartnershipCommand")
1488
- .sc(UpdatePartnership$)
449
+ .sc(schemas_0.UpdatePartnership$)
1489
450
  .build() {
1490
451
  }
1491
452
 
@@ -1497,7 +458,7 @@ class UpdateProfileCommand extends smithyClient.Command
1497
458
  })
1498
459
  .s("B2BI", "UpdateProfile", {})
1499
460
  .n("B2biClient", "UpdateProfileCommand")
1500
- .sc(UpdateProfile$)
461
+ .sc(schemas_0.UpdateProfile$)
1501
462
  .build() {
1502
463
  }
1503
464
 
@@ -1509,7 +470,7 @@ class UpdateTransformerCommand extends smithyClient.Command
1509
470
  })
1510
471
  .s("B2BI", "UpdateTransformer", {})
1511
472
  .n("B2biClient", "UpdateTransformerCommand")
1512
- .sc(UpdateTransformer$)
473
+ .sc(schemas_0.UpdateTransformer$)
1513
474
  .build() {
1514
475
  }
1515
476
 
@@ -2044,200 +1005,62 @@ Object.defineProperty(exports, "__Client", {
2044
1005
  enumerable: true,
2045
1006
  get: function () { return smithyClient.Client; }
2046
1007
  });
2047
- exports.AccessDeniedException = AccessDeniedException;
2048
- exports.AccessDeniedException$ = AccessDeniedException$;
2049
- exports.AdvancedOptions$ = AdvancedOptions$;
1008
+ Object.defineProperty(exports, "B2biServiceException", {
1009
+ enumerable: true,
1010
+ get: function () { return B2biServiceException.B2biServiceException; }
1011
+ });
2050
1012
  exports.B2bi = B2bi;
2051
1013
  exports.B2biClient = B2biClient;
2052
- exports.B2biServiceException = B2biServiceException;
2053
- exports.B2biServiceException$ = B2biServiceException$;
2054
- exports.CapabilityConfiguration$ = CapabilityConfiguration$;
2055
1014
  exports.CapabilityDirection = CapabilityDirection;
2056
- exports.CapabilityOptions$ = CapabilityOptions$;
2057
- exports.CapabilitySummary$ = CapabilitySummary$;
2058
1015
  exports.CapabilityType = CapabilityType;
2059
- exports.ConflictException = ConflictException;
2060
- exports.ConflictException$ = ConflictException$;
2061
- exports.ConversionSource$ = ConversionSource$;
2062
1016
  exports.ConversionSourceFormat = ConversionSourceFormat;
2063
- exports.ConversionTarget$ = ConversionTarget$;
2064
1017
  exports.ConversionTargetFormat = ConversionTargetFormat;
2065
- exports.ConversionTargetFormatDetails$ = ConversionTargetFormatDetails$;
2066
- exports.CreateCapability$ = CreateCapability$;
2067
1018
  exports.CreateCapabilityCommand = CreateCapabilityCommand;
2068
- exports.CreateCapabilityRequest$ = CreateCapabilityRequest$;
2069
- exports.CreateCapabilityResponse$ = CreateCapabilityResponse$;
2070
- exports.CreatePartnership$ = CreatePartnership$;
2071
1019
  exports.CreatePartnershipCommand = CreatePartnershipCommand;
2072
- exports.CreatePartnershipRequest$ = CreatePartnershipRequest$;
2073
- exports.CreatePartnershipResponse$ = CreatePartnershipResponse$;
2074
- exports.CreateProfile$ = CreateProfile$;
2075
1020
  exports.CreateProfileCommand = CreateProfileCommand;
2076
- exports.CreateProfileRequest$ = CreateProfileRequest$;
2077
- exports.CreateProfileResponse$ = CreateProfileResponse$;
2078
- exports.CreateStarterMappingTemplate$ = CreateStarterMappingTemplate$;
2079
1021
  exports.CreateStarterMappingTemplateCommand = CreateStarterMappingTemplateCommand;
2080
- exports.CreateStarterMappingTemplateRequest$ = CreateStarterMappingTemplateRequest$;
2081
- exports.CreateStarterMappingTemplateResponse$ = CreateStarterMappingTemplateResponse$;
2082
- exports.CreateTransformer$ = CreateTransformer$;
2083
1022
  exports.CreateTransformerCommand = CreateTransformerCommand;
2084
- exports.CreateTransformerRequest$ = CreateTransformerRequest$;
2085
- exports.CreateTransformerResponse$ = CreateTransformerResponse$;
2086
- exports.DeleteCapability$ = DeleteCapability$;
2087
1023
  exports.DeleteCapabilityCommand = DeleteCapabilityCommand;
2088
- exports.DeleteCapabilityRequest$ = DeleteCapabilityRequest$;
2089
- exports.DeletePartnership$ = DeletePartnership$;
2090
1024
  exports.DeletePartnershipCommand = DeletePartnershipCommand;
2091
- exports.DeletePartnershipRequest$ = DeletePartnershipRequest$;
2092
- exports.DeleteProfile$ = DeleteProfile$;
2093
1025
  exports.DeleteProfileCommand = DeleteProfileCommand;
2094
- exports.DeleteProfileRequest$ = DeleteProfileRequest$;
2095
- exports.DeleteTransformer$ = DeleteTransformer$;
2096
1026
  exports.DeleteTransformerCommand = DeleteTransformerCommand;
2097
- exports.DeleteTransformerRequest$ = DeleteTransformerRequest$;
2098
- exports.EdiConfiguration$ = EdiConfiguration$;
2099
- exports.EdiType$ = EdiType$;
2100
1027
  exports.ElementRequirement = ElementRequirement;
2101
1028
  exports.FileFormat = FileFormat;
2102
- exports.FormatOptions$ = FormatOptions$;
2103
1029
  exports.FromFormat = FromFormat;
2104
- exports.GenerateMapping$ = GenerateMapping$;
2105
1030
  exports.GenerateMappingCommand = GenerateMappingCommand;
2106
- exports.GenerateMappingRequest$ = GenerateMappingRequest$;
2107
- exports.GenerateMappingResponse$ = GenerateMappingResponse$;
2108
- exports.GetCapability$ = GetCapability$;
2109
1031
  exports.GetCapabilityCommand = GetCapabilityCommand;
2110
- exports.GetCapabilityRequest$ = GetCapabilityRequest$;
2111
- exports.GetCapabilityResponse$ = GetCapabilityResponse$;
2112
- exports.GetPartnership$ = GetPartnership$;
2113
1032
  exports.GetPartnershipCommand = GetPartnershipCommand;
2114
- exports.GetPartnershipRequest$ = GetPartnershipRequest$;
2115
- exports.GetPartnershipResponse$ = GetPartnershipResponse$;
2116
- exports.GetProfile$ = GetProfile$;
2117
1033
  exports.GetProfileCommand = GetProfileCommand;
2118
- exports.GetProfileRequest$ = GetProfileRequest$;
2119
- exports.GetProfileResponse$ = GetProfileResponse$;
2120
- exports.GetTransformer$ = GetTransformer$;
2121
1034
  exports.GetTransformerCommand = GetTransformerCommand;
2122
- exports.GetTransformerJob$ = GetTransformerJob$;
2123
1035
  exports.GetTransformerJobCommand = GetTransformerJobCommand;
2124
- exports.GetTransformerJobRequest$ = GetTransformerJobRequest$;
2125
- exports.GetTransformerJobResponse$ = GetTransformerJobResponse$;
2126
- exports.GetTransformerRequest$ = GetTransformerRequest$;
2127
- exports.GetTransformerResponse$ = GetTransformerResponse$;
2128
- exports.InboundEdiOptions$ = InboundEdiOptions$;
2129
- exports.InputConversion$ = InputConversion$;
2130
- exports.InputFileSource$ = InputFileSource$;
2131
- exports.InternalServerException = InternalServerException;
2132
- exports.InternalServerException$ = InternalServerException$;
2133
1036
  exports.LineTerminator = LineTerminator;
2134
- exports.ListCapabilities$ = ListCapabilities$;
2135
1037
  exports.ListCapabilitiesCommand = ListCapabilitiesCommand;
2136
- exports.ListCapabilitiesRequest$ = ListCapabilitiesRequest$;
2137
- exports.ListCapabilitiesResponse$ = ListCapabilitiesResponse$;
2138
- exports.ListPartnerships$ = ListPartnerships$;
2139
1038
  exports.ListPartnershipsCommand = ListPartnershipsCommand;
2140
- exports.ListPartnershipsRequest$ = ListPartnershipsRequest$;
2141
- exports.ListPartnershipsResponse$ = ListPartnershipsResponse$;
2142
- exports.ListProfiles$ = ListProfiles$;
2143
1039
  exports.ListProfilesCommand = ListProfilesCommand;
2144
- exports.ListProfilesRequest$ = ListProfilesRequest$;
2145
- exports.ListProfilesResponse$ = ListProfilesResponse$;
2146
- exports.ListTagsForResource$ = ListTagsForResource$;
2147
1040
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2148
- exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2149
- exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2150
- exports.ListTransformers$ = ListTransformers$;
2151
1041
  exports.ListTransformersCommand = ListTransformersCommand;
2152
- exports.ListTransformersRequest$ = ListTransformersRequest$;
2153
- exports.ListTransformersResponse$ = ListTransformersResponse$;
2154
1042
  exports.Logging = Logging;
2155
- exports.Mapping$ = Mapping$;
2156
1043
  exports.MappingTemplateLanguage = MappingTemplateLanguage;
2157
1044
  exports.MappingType = MappingType;
2158
- exports.OutboundEdiOptions$ = OutboundEdiOptions$;
2159
- exports.OutputConversion$ = OutputConversion$;
2160
- exports.OutputSampleFileSource$ = OutputSampleFileSource$;
2161
- exports.PartnershipSummary$ = PartnershipSummary$;
2162
- exports.ProfileSummary$ = ProfileSummary$;
2163
- exports.ResourceNotFoundException = ResourceNotFoundException;
2164
- exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2165
- exports.S3Location$ = S3Location$;
2166
- exports.SampleDocumentKeys$ = SampleDocumentKeys$;
2167
- exports.SampleDocuments$ = SampleDocuments$;
2168
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2169
- exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2170
- exports.StartTransformerJob$ = StartTransformerJob$;
2171
1045
  exports.StartTransformerJobCommand = StartTransformerJobCommand;
2172
- exports.StartTransformerJobRequest$ = StartTransformerJobRequest$;
2173
- exports.StartTransformerJobResponse$ = StartTransformerJobResponse$;
2174
- exports.Tag$ = Tag$;
2175
- exports.TagResource$ = TagResource$;
2176
1046
  exports.TagResourceCommand = TagResourceCommand;
2177
- exports.TagResourceRequest$ = TagResourceRequest$;
2178
- exports.TemplateDetails$ = TemplateDetails$;
2179
- exports.TestConversion$ = TestConversion$;
2180
1047
  exports.TestConversionCommand = TestConversionCommand;
2181
- exports.TestConversionRequest$ = TestConversionRequest$;
2182
- exports.TestConversionResponse$ = TestConversionResponse$;
2183
- exports.TestMapping$ = TestMapping$;
2184
1048
  exports.TestMappingCommand = TestMappingCommand;
2185
- exports.TestMappingRequest$ = TestMappingRequest$;
2186
- exports.TestMappingResponse$ = TestMappingResponse$;
2187
- exports.TestParsing$ = TestParsing$;
2188
1049
  exports.TestParsingCommand = TestParsingCommand;
2189
- exports.TestParsingRequest$ = TestParsingRequest$;
2190
- exports.TestParsingResponse$ = TestParsingResponse$;
2191
- exports.ThrottlingException = ThrottlingException;
2192
- exports.ThrottlingException$ = ThrottlingException$;
2193
1050
  exports.ToFormat = ToFormat;
2194
1051
  exports.TransformerJobStatus = TransformerJobStatus;
2195
1052
  exports.TransformerStatus = TransformerStatus;
2196
- exports.TransformerSummary$ = TransformerSummary$;
2197
- exports.UntagResource$ = UntagResource$;
2198
1053
  exports.UntagResourceCommand = UntagResourceCommand;
2199
- exports.UntagResourceRequest$ = UntagResourceRequest$;
2200
- exports.UpdateCapability$ = UpdateCapability$;
2201
1054
  exports.UpdateCapabilityCommand = UpdateCapabilityCommand;
2202
- exports.UpdateCapabilityRequest$ = UpdateCapabilityRequest$;
2203
- exports.UpdateCapabilityResponse$ = UpdateCapabilityResponse$;
2204
- exports.UpdatePartnership$ = UpdatePartnership$;
2205
1055
  exports.UpdatePartnershipCommand = UpdatePartnershipCommand;
2206
- exports.UpdatePartnershipRequest$ = UpdatePartnershipRequest$;
2207
- exports.UpdatePartnershipResponse$ = UpdatePartnershipResponse$;
2208
- exports.UpdateProfile$ = UpdateProfile$;
2209
1056
  exports.UpdateProfileCommand = UpdateProfileCommand;
2210
- exports.UpdateProfileRequest$ = UpdateProfileRequest$;
2211
- exports.UpdateProfileResponse$ = UpdateProfileResponse$;
2212
- exports.UpdateTransformer$ = UpdateTransformer$;
2213
1057
  exports.UpdateTransformerCommand = UpdateTransformerCommand;
2214
- exports.UpdateTransformerRequest$ = UpdateTransformerRequest$;
2215
- exports.UpdateTransformerResponse$ = UpdateTransformerResponse$;
2216
- exports.ValidationException = ValidationException;
2217
- exports.ValidationException$ = ValidationException$;
2218
1058
  exports.WrapFormat = WrapFormat;
2219
- exports.WrapOptions$ = WrapOptions$;
2220
- exports.X12AcknowledgmentOptions$ = X12AcknowledgmentOptions$;
2221
- exports.X12AdvancedOptions$ = X12AdvancedOptions$;
2222
- exports.X12CodeListValidationRule$ = X12CodeListValidationRule$;
2223
- exports.X12ControlNumbers$ = X12ControlNumbers$;
2224
- exports.X12Delimiters$ = X12Delimiters$;
2225
- exports.X12Details$ = X12Details$;
2226
- exports.X12ElementLengthValidationRule$ = X12ElementLengthValidationRule$;
2227
- exports.X12ElementRequirementValidationRule$ = X12ElementRequirementValidationRule$;
2228
- exports.X12Envelope$ = X12Envelope$;
2229
1059
  exports.X12FunctionalAcknowledgment = X12FunctionalAcknowledgment;
2230
- exports.X12FunctionalGroupHeaders$ = X12FunctionalGroupHeaders$;
2231
1060
  exports.X12GS05TimeFormat = X12GS05TimeFormat;
2232
- exports.X12InboundEdiOptions$ = X12InboundEdiOptions$;
2233
- exports.X12InterchangeControlHeaders$ = X12InterchangeControlHeaders$;
2234
- exports.X12OutboundEdiHeaders$ = X12OutboundEdiHeaders$;
2235
1061
  exports.X12SplitBy = X12SplitBy;
2236
- exports.X12SplitOptions$ = X12SplitOptions$;
2237
1062
  exports.X12TechnicalAcknowledgment = X12TechnicalAcknowledgment;
2238
1063
  exports.X12TransactionSet = X12TransactionSet;
2239
- exports.X12ValidationOptions$ = X12ValidationOptions$;
2240
- exports.X12ValidationRule$ = X12ValidationRule$;
2241
1064
  exports.X12Version = X12Version;
2242
1065
  exports.paginateListCapabilities = paginateListCapabilities;
2243
1066
  exports.paginateListPartnerships = paginateListPartnerships;
@@ -2245,3 +1068,15 @@ exports.paginateListProfiles = paginateListProfiles;
2245
1068
  exports.paginateListTransformers = paginateListTransformers;
2246
1069
  exports.waitForTransformerJobSucceeded = waitForTransformerJobSucceeded;
2247
1070
  exports.waitUntilTransformerJobSucceeded = waitUntilTransformerJobSucceeded;
1071
+ Object.keys(schemas_0).forEach(function (k) {
1072
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
1073
+ enumerable: true,
1074
+ get: function () { return schemas_0[k]; }
1075
+ });
1076
+ });
1077
+ Object.keys(errors).forEach(function (k) {
1078
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
1079
+ enumerable: true,
1080
+ get: function () { return errors[k]; }
1081
+ });
1082
+ });