@aws-sdk/client-b2bi 3.952.0 → 3.954.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 +450 -316
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/CreateCapabilityCommand.js +2 -2
- package/dist-es/commands/CreatePartnershipCommand.js +2 -2
- package/dist-es/commands/CreateProfileCommand.js +2 -2
- package/dist-es/commands/CreateStarterMappingTemplateCommand.js +2 -2
- package/dist-es/commands/CreateTransformerCommand.js +2 -2
- package/dist-es/commands/DeleteCapabilityCommand.js +2 -2
- package/dist-es/commands/DeletePartnershipCommand.js +2 -2
- package/dist-es/commands/DeleteProfileCommand.js +2 -2
- package/dist-es/commands/DeleteTransformerCommand.js +2 -2
- package/dist-es/commands/GenerateMappingCommand.js +2 -2
- package/dist-es/commands/GetCapabilityCommand.js +2 -2
- package/dist-es/commands/GetPartnershipCommand.js +2 -2
- package/dist-es/commands/GetProfileCommand.js +2 -2
- package/dist-es/commands/GetTransformerCommand.js +2 -2
- package/dist-es/commands/GetTransformerJobCommand.js +2 -2
- package/dist-es/commands/ListCapabilitiesCommand.js +2 -2
- package/dist-es/commands/ListPartnershipsCommand.js +2 -2
- package/dist-es/commands/ListProfilesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTransformersCommand.js +2 -2
- package/dist-es/commands/StartTransformerJobCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/TestConversionCommand.js +2 -2
- package/dist-es/commands/TestMappingCommand.js +2 -2
- package/dist-es/commands/TestParsingCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateCapabilityCommand.js +2 -2
- package/dist-es/commands/UpdatePartnershipCommand.js +2 -2
- package/dist-es/commands/UpdateProfileCommand.js +2 -2
- package/dist-es/commands/UpdateTransformerCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +272 -272
- package/dist-types/B2biClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +135 -152
- package/dist-types/ts3.4/B2biClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -153
- package/package.json +35 -35
package/dist-cjs/index.js
CHANGED
|
@@ -111,14 +111,14 @@ class B2biClient extends smithyClient.Client {
|
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
-
|
|
114
|
+
class B2biServiceException extends smithyClient.ServiceException {
|
|
115
115
|
constructor(options) {
|
|
116
116
|
super(options);
|
|
117
117
|
Object.setPrototypeOf(this, B2biServiceException.prototype);
|
|
118
118
|
}
|
|
119
|
-
}
|
|
119
|
+
}
|
|
120
120
|
|
|
121
|
-
|
|
121
|
+
class AccessDeniedException extends B2biServiceException {
|
|
122
122
|
name = "AccessDeniedException";
|
|
123
123
|
$fault = "client";
|
|
124
124
|
constructor(opts) {
|
|
@@ -129,8 +129,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends B2biServiceExc
|
|
|
129
129
|
});
|
|
130
130
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
131
|
}
|
|
132
|
-
}
|
|
133
|
-
|
|
132
|
+
}
|
|
133
|
+
class ConflictException extends B2biServiceException {
|
|
134
134
|
name = "ConflictException";
|
|
135
135
|
$fault = "client";
|
|
136
136
|
constructor(opts) {
|
|
@@ -141,8 +141,8 @@ let ConflictException$1 = class ConflictException extends B2biServiceException$1
|
|
|
141
141
|
});
|
|
142
142
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
143
143
|
}
|
|
144
|
-
}
|
|
145
|
-
|
|
144
|
+
}
|
|
145
|
+
class InternalServerException extends B2biServiceException {
|
|
146
146
|
name = "InternalServerException";
|
|
147
147
|
$fault = "server";
|
|
148
148
|
$retryable = {};
|
|
@@ -156,8 +156,8 @@ let InternalServerException$1 = class InternalServerException extends B2biServic
|
|
|
156
156
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
157
157
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
158
158
|
}
|
|
159
|
-
}
|
|
160
|
-
|
|
159
|
+
}
|
|
160
|
+
class ResourceNotFoundException extends B2biServiceException {
|
|
161
161
|
name = "ResourceNotFoundException";
|
|
162
162
|
$fault = "client";
|
|
163
163
|
constructor(opts) {
|
|
@@ -168,8 +168,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends B2biSe
|
|
|
168
168
|
});
|
|
169
169
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
170
170
|
}
|
|
171
|
-
}
|
|
172
|
-
|
|
171
|
+
}
|
|
172
|
+
class ServiceQuotaExceededException extends B2biServiceException {
|
|
173
173
|
name = "ServiceQuotaExceededException";
|
|
174
174
|
$fault = "client";
|
|
175
175
|
resourceId;
|
|
@@ -188,8 +188,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
188
188
|
this.serviceCode = opts.serviceCode;
|
|
189
189
|
this.quotaCode = opts.quotaCode;
|
|
190
190
|
}
|
|
191
|
-
}
|
|
192
|
-
|
|
191
|
+
}
|
|
192
|
+
class ThrottlingException extends B2biServiceException {
|
|
193
193
|
name = "ThrottlingException";
|
|
194
194
|
$fault = "client";
|
|
195
195
|
$retryable = {};
|
|
@@ -203,8 +203,8 @@ let ThrottlingException$1 = class ThrottlingException extends B2biServiceExcepti
|
|
|
203
203
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
204
204
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
205
205
|
}
|
|
206
|
-
}
|
|
207
|
-
|
|
206
|
+
}
|
|
207
|
+
class ValidationException extends B2biServiceException {
|
|
208
208
|
name = "ValidationException";
|
|
209
209
|
$fault = "client";
|
|
210
210
|
Message;
|
|
@@ -217,7 +217,7 @@ let ValidationException$1 = class ValidationException extends B2biServiceExcepti
|
|
|
217
217
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
218
218
|
this.Message = opts.Message;
|
|
219
219
|
}
|
|
220
|
-
}
|
|
220
|
+
}
|
|
221
221
|
|
|
222
222
|
const _ADE = "AccessDeniedException";
|
|
223
223
|
const _AO = "AdvancedOptions";
|
|
@@ -510,62 +510,62 @@ const _xD = "x12Details";
|
|
|
510
510
|
const n0 = "com.amazonaws.b2bi";
|
|
511
511
|
var Email = [0, n0, _E, 8, 0];
|
|
512
512
|
var Phone = [0, n0, _P, 8, 0];
|
|
513
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
514
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
515
|
-
var AdvancedOptions = [3, n0, _AO, 0, [_x], [() => X12AdvancedOptions]];
|
|
516
|
-
var CapabilityOptions = [
|
|
513
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
514
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
515
|
+
var AdvancedOptions$ = [3, n0, _AO, 0, [_x], [() => X12AdvancedOptions$]];
|
|
516
|
+
var CapabilityOptions$ = [
|
|
517
517
|
3,
|
|
518
518
|
n0,
|
|
519
519
|
_CO,
|
|
520
520
|
0,
|
|
521
521
|
[_oE, _iE],
|
|
522
|
-
[() => OutboundEdiOptions
|
|
522
|
+
[() => OutboundEdiOptions$, () => InboundEdiOptions$],
|
|
523
523
|
];
|
|
524
|
-
var CapabilitySummary = [3, n0, _CS, 0, [_cI, _n, _t, _cA, _mA], [0, 0, 0, 5, 5]];
|
|
525
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
|
|
526
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
527
|
-
var ConversionSource = [3, n0, _CSo, 0, [_fF, _iF], [0, () => InputFileSource]];
|
|
528
|
-
var ConversionTarget = [
|
|
524
|
+
var CapabilitySummary$ = [3, n0, _CS, 0, [_cI, _n, _t, _cA, _mA], [0, 0, 0, 5, 5]];
|
|
525
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
|
|
526
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
527
|
+
var ConversionSource$ = [3, n0, _CSo, 0, [_fF, _iF], [0, () => InputFileSource$]];
|
|
528
|
+
var ConversionTarget$ = [
|
|
529
529
|
3,
|
|
530
530
|
n0,
|
|
531
531
|
_CT,
|
|
532
532
|
0,
|
|
533
533
|
[_fF, _fD, _oSF, _aO],
|
|
534
|
-
[0, () => ConversionTargetFormatDetails
|
|
534
|
+
[0, () => ConversionTargetFormatDetails$, () => OutputSampleFileSource$, () => AdvancedOptions$],
|
|
535
535
|
];
|
|
536
|
-
var CreateCapabilityRequest = [
|
|
536
|
+
var CreateCapabilityRequest$ = [
|
|
537
537
|
3,
|
|
538
538
|
n0,
|
|
539
539
|
_CCR,
|
|
540
540
|
0,
|
|
541
541
|
[_n, _t, _co, _iD, _cT, _ta],
|
|
542
|
-
[0, 0, () => CapabilityConfiguration
|
|
542
|
+
[0, 0, () => CapabilityConfiguration$, () => InstructionsDocuments, [0, 4], () => TagList],
|
|
543
543
|
];
|
|
544
|
-
var CreateCapabilityResponse = [
|
|
544
|
+
var CreateCapabilityResponse$ = [
|
|
545
545
|
3,
|
|
546
546
|
n0,
|
|
547
547
|
_CCRr,
|
|
548
548
|
0,
|
|
549
549
|
[_cI, _cAa, _n, _t, _co, _iD, _cA],
|
|
550
|
-
[0, 0, 0, 0, () => CapabilityConfiguration
|
|
550
|
+
[0, 0, 0, 0, () => CapabilityConfiguration$, () => InstructionsDocuments, 5],
|
|
551
551
|
];
|
|
552
|
-
var CreatePartnershipRequest = [
|
|
552
|
+
var CreatePartnershipRequest$ = [
|
|
553
553
|
3,
|
|
554
554
|
n0,
|
|
555
555
|
_CPR,
|
|
556
556
|
0,
|
|
557
557
|
[_pI, _n, _em, _p, _ca, _cO, _cT, _ta],
|
|
558
|
-
[0, 0, [() => Email, 0], [() => Phone, 0], 64 | 0, () => CapabilityOptions
|
|
558
|
+
[0, 0, [() => Email, 0], [() => Phone, 0], 64 | 0, () => CapabilityOptions$, [0, 4], () => TagList],
|
|
559
559
|
];
|
|
560
|
-
var CreatePartnershipResponse = [
|
|
560
|
+
var CreatePartnershipResponse$ = [
|
|
561
561
|
3,
|
|
562
562
|
n0,
|
|
563
563
|
_CPRr,
|
|
564
564
|
0,
|
|
565
565
|
[_pI, _pIa, _pA, _n, _em, _p, _ca, _cO, _tPI, _cA],
|
|
566
|
-
[0, 0, 0, 0, [() => Email, 0], [() => Phone, 0], 64 | 0, () => CapabilityOptions
|
|
566
|
+
[0, 0, 0, 0, [() => Email, 0], [() => Phone, 0], 64 | 0, () => CapabilityOptions$, 0, 5],
|
|
567
567
|
];
|
|
568
|
-
var CreateProfileRequest = [
|
|
568
|
+
var CreateProfileRequest$ = [
|
|
569
569
|
3,
|
|
570
570
|
n0,
|
|
571
571
|
_CPRre,
|
|
@@ -573,7 +573,7 @@ var CreateProfileRequest = [
|
|
|
573
573
|
[_n, _em, _p, _bN, _l, _cT, _ta],
|
|
574
574
|
[0, [() => Email, 0], [() => Phone, 0], 0, 0, [0, 4], () => TagList],
|
|
575
575
|
];
|
|
576
|
-
var CreateProfileResponse = [
|
|
576
|
+
var CreateProfileResponse$ = [
|
|
577
577
|
3,
|
|
578
578
|
n0,
|
|
579
579
|
_CPRrea,
|
|
@@ -581,16 +581,16 @@ var CreateProfileResponse = [
|
|
|
581
581
|
[_pI, _pAr, _n, _bN, _p, _em, _l, _lGN, _cA],
|
|
582
582
|
[0, 0, 0, 0, [() => Phone, 0], [() => Email, 0], 0, 0, 5],
|
|
583
583
|
];
|
|
584
|
-
var CreateStarterMappingTemplateRequest = [
|
|
584
|
+
var CreateStarterMappingTemplateRequest$ = [
|
|
585
585
|
3,
|
|
586
586
|
n0,
|
|
587
587
|
_CSMTR,
|
|
588
588
|
0,
|
|
589
589
|
[_oSL, _mT, _tD],
|
|
590
|
-
[() => S3Location
|
|
590
|
+
[() => S3Location$, 0, () => TemplateDetails$],
|
|
591
591
|
];
|
|
592
|
-
var CreateStarterMappingTemplateResponse = [3, n0, _CSMTRr, 0, [_mTa], [0]];
|
|
593
|
-
var CreateTransformerRequest = [
|
|
592
|
+
var CreateStarterMappingTemplateResponse$ = [3, n0, _CSMTRr, 0, [_mTa], [0]];
|
|
593
|
+
var CreateTransformerRequest$ = [
|
|
594
594
|
3,
|
|
595
595
|
n0,
|
|
596
596
|
_CTR,
|
|
@@ -602,15 +602,15 @@ var CreateTransformerRequest = [
|
|
|
602
602
|
() => TagList,
|
|
603
603
|
0,
|
|
604
604
|
0,
|
|
605
|
-
() => EdiType
|
|
605
|
+
() => EdiType$,
|
|
606
606
|
0,
|
|
607
|
-
() => InputConversion
|
|
608
|
-
() => Mapping
|
|
609
|
-
() => OutputConversion
|
|
610
|
-
() => SampleDocuments
|
|
607
|
+
() => InputConversion$,
|
|
608
|
+
() => Mapping$,
|
|
609
|
+
() => OutputConversion$,
|
|
610
|
+
() => SampleDocuments$,
|
|
611
611
|
],
|
|
612
612
|
];
|
|
613
|
-
var CreateTransformerResponse = [
|
|
613
|
+
var CreateTransformerResponse$ = [
|
|
614
614
|
3,
|
|
615
615
|
n0,
|
|
616
616
|
_CTRr,
|
|
@@ -624,48 +624,48 @@ var CreateTransformerResponse = [
|
|
|
624
624
|
5,
|
|
625
625
|
0,
|
|
626
626
|
0,
|
|
627
|
-
() => EdiType
|
|
627
|
+
() => EdiType$,
|
|
628
628
|
0,
|
|
629
|
-
() => InputConversion
|
|
630
|
-
() => Mapping
|
|
631
|
-
() => OutputConversion
|
|
632
|
-
() => SampleDocuments
|
|
629
|
+
() => InputConversion$,
|
|
630
|
+
() => Mapping$,
|
|
631
|
+
() => OutputConversion$,
|
|
632
|
+
() => SampleDocuments$,
|
|
633
633
|
],
|
|
634
634
|
];
|
|
635
|
-
var DeleteCapabilityRequest = [3, n0, _DCR, 0, [_cI], [[0, 1]]];
|
|
636
|
-
var DeletePartnershipRequest = [3, n0, _DPR, 0, [_pIa], [[0, 1]]];
|
|
637
|
-
var DeleteProfileRequest = [3, n0, _DPRe, 0, [_pI], [[0, 1]]];
|
|
638
|
-
var DeleteTransformerRequest = [3, n0, _DTR, 0, [_tI], [[0, 1]]];
|
|
639
|
-
var EdiConfiguration = [
|
|
635
|
+
var DeleteCapabilityRequest$ = [3, n0, _DCR, 0, [_cI], [[0, 1]]];
|
|
636
|
+
var DeletePartnershipRequest$ = [3, n0, _DPR, 0, [_pIa], [[0, 1]]];
|
|
637
|
+
var DeleteProfileRequest$ = [3, n0, _DPRe, 0, [_pI], [[0, 1]]];
|
|
638
|
+
var DeleteTransformerRequest$ = [3, n0, _DTR, 0, [_tI], [[0, 1]]];
|
|
639
|
+
var EdiConfiguration$ = [
|
|
640
640
|
3,
|
|
641
641
|
n0,
|
|
642
642
|
_EC,
|
|
643
643
|
0,
|
|
644
644
|
[_cD, _t, _iL, _oL, _tI],
|
|
645
|
-
[0, () => EdiType
|
|
645
|
+
[0, () => EdiType$, () => S3Location$, () => S3Location$, 0],
|
|
646
646
|
];
|
|
647
|
-
var GenerateMappingRequest = [3, n0, _GMR, 0, [_iFC, _oFC, _mT], [0, 0, 0]];
|
|
648
|
-
var GenerateMappingResponse = [3, n0, _GMRe, 0, [_mTa, _mAa], [0, 1]];
|
|
649
|
-
var GetCapabilityRequest = [3, n0, _GCR, 0, [_cI], [[0, 1]]];
|
|
650
|
-
var GetCapabilityResponse = [
|
|
647
|
+
var GenerateMappingRequest$ = [3, n0, _GMR, 0, [_iFC, _oFC, _mT], [0, 0, 0]];
|
|
648
|
+
var GenerateMappingResponse$ = [3, n0, _GMRe, 0, [_mTa, _mAa], [0, 1]];
|
|
649
|
+
var GetCapabilityRequest$ = [3, n0, _GCR, 0, [_cI], [[0, 1]]];
|
|
650
|
+
var GetCapabilityResponse$ = [
|
|
651
651
|
3,
|
|
652
652
|
n0,
|
|
653
653
|
_GCRe,
|
|
654
654
|
0,
|
|
655
655
|
[_cI, _cAa, _n, _t, _co, _iD, _cA, _mA],
|
|
656
|
-
[0, 0, 0, 0, () => CapabilityConfiguration
|
|
656
|
+
[0, 0, 0, 0, () => CapabilityConfiguration$, () => InstructionsDocuments, 5, 5],
|
|
657
657
|
];
|
|
658
|
-
var GetPartnershipRequest = [3, n0, _GPR, 0, [_pIa], [[0, 1]]];
|
|
659
|
-
var GetPartnershipResponse = [
|
|
658
|
+
var GetPartnershipRequest$ = [3, n0, _GPR, 0, [_pIa], [[0, 1]]];
|
|
659
|
+
var GetPartnershipResponse$ = [
|
|
660
660
|
3,
|
|
661
661
|
n0,
|
|
662
662
|
_GPRe,
|
|
663
663
|
0,
|
|
664
664
|
[_pI, _pIa, _pA, _n, _em, _p, _ca, _cO, _tPI, _cA, _mA],
|
|
665
|
-
[0, 0, 0, 0, [() => Email, 0], [() => Phone, 0], 64 | 0, () => CapabilityOptions
|
|
665
|
+
[0, 0, 0, 0, [() => Email, 0], [() => Phone, 0], 64 | 0, () => CapabilityOptions$, 0, 5, 5],
|
|
666
666
|
];
|
|
667
|
-
var GetProfileRequest = [3, n0, _GPRet, 0, [_pI], [[0, 1]]];
|
|
668
|
-
var GetProfileResponse = [
|
|
667
|
+
var GetProfileRequest$ = [3, n0, _GPRet, 0, [_pI], [[0, 1]]];
|
|
668
|
+
var GetProfileResponse$ = [
|
|
669
669
|
3,
|
|
670
670
|
n0,
|
|
671
671
|
_GPRetr,
|
|
@@ -673,7 +673,7 @@ var GetProfileResponse = [
|
|
|
673
673
|
[_pI, _pAr, _n, _em, _p, _bN, _l, _lGN, _cA, _mA],
|
|
674
674
|
[0, 0, 0, [() => Email, 0], [() => Phone, 0], 0, 0, 0, 5, 5],
|
|
675
675
|
];
|
|
676
|
-
var GetTransformerJobRequest = [
|
|
676
|
+
var GetTransformerJobRequest$ = [
|
|
677
677
|
3,
|
|
678
678
|
n0,
|
|
679
679
|
_GTJR,
|
|
@@ -684,7 +684,7 @@ var GetTransformerJobRequest = [
|
|
|
684
684
|
[0, { [_hQ]: _tI }],
|
|
685
685
|
],
|
|
686
686
|
];
|
|
687
|
-
var GetTransformerJobResponse = [
|
|
687
|
+
var GetTransformerJobResponse$ = [
|
|
688
688
|
3,
|
|
689
689
|
n0,
|
|
690
690
|
_GTJRe,
|
|
@@ -692,8 +692,8 @@ var GetTransformerJobResponse = [
|
|
|
692
692
|
[_s, _oF, _m],
|
|
693
693
|
[0, () => S3LocationList, 0],
|
|
694
694
|
];
|
|
695
|
-
var GetTransformerRequest = [3, n0, _GTR, 0, [_tI], [[0, 1]]];
|
|
696
|
-
var GetTransformerResponse = [
|
|
695
|
+
var GetTransformerRequest$ = [3, n0, _GTR, 0, [_tI], [[0, 1]]];
|
|
696
|
+
var GetTransformerResponse$ = [
|
|
697
697
|
3,
|
|
698
698
|
n0,
|
|
699
699
|
_GTRe,
|
|
@@ -708,24 +708,24 @@ var GetTransformerResponse = [
|
|
|
708
708
|
5,
|
|
709
709
|
0,
|
|
710
710
|
0,
|
|
711
|
-
() => EdiType
|
|
711
|
+
() => EdiType$,
|
|
712
712
|
0,
|
|
713
|
-
() => InputConversion
|
|
714
|
-
() => Mapping
|
|
715
|
-
() => OutputConversion
|
|
716
|
-
() => SampleDocuments
|
|
713
|
+
() => InputConversion$,
|
|
714
|
+
() => Mapping$,
|
|
715
|
+
() => OutputConversion$,
|
|
716
|
+
() => SampleDocuments$,
|
|
717
717
|
],
|
|
718
718
|
];
|
|
719
|
-
var InboundEdiOptions = [3, n0, _IEO, 0, [_x], [() => X12InboundEdiOptions]];
|
|
720
|
-
var InputConversion = [
|
|
719
|
+
var InboundEdiOptions$ = [3, n0, _IEO, 0, [_x], [() => X12InboundEdiOptions$]];
|
|
720
|
+
var InputConversion$ = [
|
|
721
721
|
3,
|
|
722
722
|
n0,
|
|
723
723
|
_IC,
|
|
724
724
|
0,
|
|
725
725
|
[_fFr, _fO, _aO],
|
|
726
|
-
[0, () => FormatOptions
|
|
726
|
+
[0, () => FormatOptions$, () => AdvancedOptions$],
|
|
727
727
|
];
|
|
728
|
-
var InternalServerException = [
|
|
728
|
+
var InternalServerException$ = [
|
|
729
729
|
-3,
|
|
730
730
|
n0,
|
|
731
731
|
_ISE,
|
|
@@ -733,8 +733,8 @@ var InternalServerException = [
|
|
|
733
733
|
[_m, _rAS],
|
|
734
734
|
[0, [1, { [_hH]: _RA }]],
|
|
735
735
|
];
|
|
736
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
737
|
-
var ListCapabilitiesRequest = [
|
|
736
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
737
|
+
var ListCapabilitiesRequest$ = [
|
|
738
738
|
3,
|
|
739
739
|
n0,
|
|
740
740
|
_LCR,
|
|
@@ -745,8 +745,8 @@ var ListCapabilitiesRequest = [
|
|
|
745
745
|
[1, { [_hQ]: _mR }],
|
|
746
746
|
],
|
|
747
747
|
];
|
|
748
|
-
var ListCapabilitiesResponse = [3, n0, _LCRi, 0, [_ca, _nT], [() => CapabilityList, 0]];
|
|
749
|
-
var ListPartnershipsRequest = [
|
|
748
|
+
var ListCapabilitiesResponse$ = [3, n0, _LCRi, 0, [_ca, _nT], [() => CapabilityList, 0]];
|
|
749
|
+
var ListPartnershipsRequest$ = [
|
|
750
750
|
3,
|
|
751
751
|
n0,
|
|
752
752
|
_LPR,
|
|
@@ -758,8 +758,8 @@ var ListPartnershipsRequest = [
|
|
|
758
758
|
[1, { [_hQ]: _mR }],
|
|
759
759
|
],
|
|
760
760
|
];
|
|
761
|
-
var ListPartnershipsResponse = [3, n0, _LPRi, 0, [_pa, _nT], [() => PartnershipList, 0]];
|
|
762
|
-
var ListProfilesRequest = [
|
|
761
|
+
var ListPartnershipsResponse$ = [3, n0, _LPRi, 0, [_pa, _nT], [() => PartnershipList, 0]];
|
|
762
|
+
var ListProfilesRequest$ = [
|
|
763
763
|
3,
|
|
764
764
|
n0,
|
|
765
765
|
_LPRis,
|
|
@@ -770,10 +770,10 @@ var ListProfilesRequest = [
|
|
|
770
770
|
[1, { [_hQ]: _mR }],
|
|
771
771
|
],
|
|
772
772
|
];
|
|
773
|
-
var ListProfilesResponse = [3, n0, _LPRist, 0, [_pr, _nT], [() => ProfileList, 0]];
|
|
774
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARN], [[0, 1]]];
|
|
775
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [() => TagList]];
|
|
776
|
-
var ListTransformersRequest = [
|
|
773
|
+
var ListProfilesResponse$ = [3, n0, _LPRist, 0, [_pr, _nT], [() => ProfileList, 0]];
|
|
774
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RARN], [[0, 1]]];
|
|
775
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_T], [() => TagList]];
|
|
776
|
+
var ListTransformersRequest$ = [
|
|
777
777
|
3,
|
|
778
778
|
n0,
|
|
779
779
|
_LTR,
|
|
@@ -784,25 +784,25 @@ var ListTransformersRequest = [
|
|
|
784
784
|
[1, { [_hQ]: _mR }],
|
|
785
785
|
],
|
|
786
786
|
];
|
|
787
|
-
var ListTransformersResponse = [3, n0, _LTRi, 0, [_tr, _nT], [() => TransformerList, 0]];
|
|
788
|
-
var Mapping = [3, n0, _M, 0, [_tL, _te], [0, 0]];
|
|
789
|
-
var OutputConversion = [
|
|
787
|
+
var ListTransformersResponse$ = [3, n0, _LTRi, 0, [_tr, _nT], [() => TransformerList, 0]];
|
|
788
|
+
var Mapping$ = [3, n0, _M, 0, [_tL, _te], [0, 0]];
|
|
789
|
+
var OutputConversion$ = [
|
|
790
790
|
3,
|
|
791
791
|
n0,
|
|
792
792
|
_OC,
|
|
793
793
|
0,
|
|
794
794
|
[_tF, _fO, _aO],
|
|
795
|
-
[0, () => FormatOptions
|
|
795
|
+
[0, () => FormatOptions$, () => AdvancedOptions$],
|
|
796
796
|
];
|
|
797
|
-
var PartnershipSummary = [
|
|
797
|
+
var PartnershipSummary$ = [
|
|
798
798
|
3,
|
|
799
799
|
n0,
|
|
800
800
|
_PS,
|
|
801
801
|
0,
|
|
802
802
|
[_pI, _pIa, _n, _ca, _cO, _tPI, _cA, _mA],
|
|
803
|
-
[0, 0, 0, 64 | 0, () => CapabilityOptions
|
|
803
|
+
[0, 0, 0, 64 | 0, () => CapabilityOptions$, 0, 5, 5],
|
|
804
804
|
];
|
|
805
|
-
var ProfileSummary = [
|
|
805
|
+
var ProfileSummary$ = [
|
|
806
806
|
3,
|
|
807
807
|
n0,
|
|
808
808
|
_PSr,
|
|
@@ -810,12 +810,12 @@ var ProfileSummary = [
|
|
|
810
810
|
[_pI, _n, _bN, _l, _lGN, _cA, _mA],
|
|
811
811
|
[0, 0, 0, 0, 0, 5, 5],
|
|
812
812
|
];
|
|
813
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
814
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
815
|
-
var S3Location = [3, n0, _SL, 0, [_bNu, _k], [0, 0]];
|
|
816
|
-
var SampleDocumentKeys = [3, n0, _SDK, 0, [_i, _o], [0, 0]];
|
|
817
|
-
var SampleDocuments = [3, n0, _SD, 0, [_bNu, _ke], [0, () => KeyList]];
|
|
818
|
-
var ServiceQuotaExceededException = [
|
|
813
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
814
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
815
|
+
var S3Location$ = [3, n0, _SL, 0, [_bNu, _k], [0, 0]];
|
|
816
|
+
var SampleDocumentKeys$ = [3, n0, _SDK, 0, [_i, _o], [0, 0]];
|
|
817
|
+
var SampleDocuments$ = [3, n0, _SD, 0, [_bNu, _ke], [0, () => KeyList]];
|
|
818
|
+
var ServiceQuotaExceededException$ = [
|
|
819
819
|
-3,
|
|
820
820
|
n0,
|
|
821
821
|
_SQEE,
|
|
@@ -823,39 +823,39 @@ var ServiceQuotaExceededException = [
|
|
|
823
823
|
[_m, _rI, _rT, _sC, _qC],
|
|
824
824
|
[0, 0, 0, 0, 0],
|
|
825
825
|
];
|
|
826
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
827
|
-
var StartTransformerJobRequest = [
|
|
826
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
827
|
+
var StartTransformerJobRequest$ = [
|
|
828
828
|
3,
|
|
829
829
|
n0,
|
|
830
830
|
_STJR,
|
|
831
831
|
0,
|
|
832
832
|
[_iF, _oL, _tI, _cT],
|
|
833
|
-
[() => S3Location
|
|
833
|
+
[() => S3Location$, () => S3Location$, 0, [0, 4]],
|
|
834
834
|
];
|
|
835
|
-
var StartTransformerJobResponse = [3, n0, _STJRt, 0, [_tJI], [0]];
|
|
836
|
-
var Tag = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
|
|
837
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_RARN, _T], [[0, 1], () => TagList]];
|
|
838
|
-
var TestConversionRequest = [
|
|
835
|
+
var StartTransformerJobResponse$ = [3, n0, _STJRt, 0, [_tJI], [0]];
|
|
836
|
+
var Tag$ = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
|
|
837
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_RARN, _T], [[0, 1], () => TagList]];
|
|
838
|
+
var TestConversionRequest$ = [
|
|
839
839
|
3,
|
|
840
840
|
n0,
|
|
841
841
|
_TCR,
|
|
842
842
|
0,
|
|
843
843
|
[_so, _tar],
|
|
844
|
-
[() => ConversionSource
|
|
844
|
+
[() => ConversionSource$, () => ConversionTarget$],
|
|
845
845
|
];
|
|
846
|
-
var TestConversionResponse = [3, n0, _TCRe, 0, [_cFC, _vM], [0, 64 | 0]];
|
|
847
|
-
var TestMappingRequest = [3, n0, _TMR, 0, [_iFC, _mTa, _fF], [0, 0, 0]];
|
|
848
|
-
var TestMappingResponse = [3, n0, _TMRe, 0, [_mFC], [0]];
|
|
849
|
-
var TestParsingRequest = [
|
|
846
|
+
var TestConversionResponse$ = [3, n0, _TCRe, 0, [_cFC, _vM], [0, 64 | 0]];
|
|
847
|
+
var TestMappingRequest$ = [3, n0, _TMR, 0, [_iFC, _mTa, _fF], [0, 0, 0]];
|
|
848
|
+
var TestMappingResponse$ = [3, n0, _TMRe, 0, [_mFC], [0]];
|
|
849
|
+
var TestParsingRequest$ = [
|
|
850
850
|
3,
|
|
851
851
|
n0,
|
|
852
852
|
_TPR,
|
|
853
853
|
0,
|
|
854
854
|
[_iF, _fF, _eT, _aO],
|
|
855
|
-
[() => S3Location
|
|
855
|
+
[() => S3Location$, 0, () => EdiType$, () => AdvancedOptions$],
|
|
856
856
|
];
|
|
857
|
-
var TestParsingResponse = [3, n0, _TPRe, 0, [_pFC, _pSFC, _vM], [0, 64 | 0, 64 | 0]];
|
|
858
|
-
var ThrottlingException = [
|
|
857
|
+
var TestParsingResponse$ = [3, n0, _TPRe, 0, [_pFC, _pSFC, _vM], [0, 64 | 0, 64 | 0]];
|
|
858
|
+
var ThrottlingException$ = [
|
|
859
859
|
-3,
|
|
860
860
|
n0,
|
|
861
861
|
_TE,
|
|
@@ -863,8 +863,8 @@ var ThrottlingException = [
|
|
|
863
863
|
[_m, _rAS],
|
|
864
864
|
[0, [1, { [_hH]: _RA }]],
|
|
865
865
|
];
|
|
866
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
867
|
-
var TransformerSummary = [
|
|
866
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
867
|
+
var TransformerSummary$ = [
|
|
868
868
|
3,
|
|
869
869
|
n0,
|
|
870
870
|
_TS,
|
|
@@ -878,15 +878,15 @@ var TransformerSummary = [
|
|
|
878
878
|
5,
|
|
879
879
|
0,
|
|
880
880
|
0,
|
|
881
|
-
() => EdiType
|
|
881
|
+
() => EdiType$,
|
|
882
882
|
0,
|
|
883
|
-
() => InputConversion
|
|
884
|
-
() => Mapping
|
|
885
|
-
() => OutputConversion
|
|
886
|
-
() => SampleDocuments
|
|
883
|
+
() => InputConversion$,
|
|
884
|
+
() => Mapping$,
|
|
885
|
+
() => OutputConversion$,
|
|
886
|
+
() => SampleDocuments$,
|
|
887
887
|
],
|
|
888
888
|
];
|
|
889
|
-
var UntagResourceRequest = [
|
|
889
|
+
var UntagResourceRequest$ = [
|
|
890
890
|
3,
|
|
891
891
|
n0,
|
|
892
892
|
_URR,
|
|
@@ -897,39 +897,39 @@ var UntagResourceRequest = [
|
|
|
897
897
|
[64 | 0, { [_hQ]: _TK }],
|
|
898
898
|
],
|
|
899
899
|
];
|
|
900
|
-
var UpdateCapabilityRequest = [
|
|
900
|
+
var UpdateCapabilityRequest$ = [
|
|
901
901
|
3,
|
|
902
902
|
n0,
|
|
903
903
|
_UCR,
|
|
904
904
|
0,
|
|
905
905
|
[_cI, _n, _co, _iD],
|
|
906
|
-
[[0, 1], 0, () => CapabilityConfiguration
|
|
906
|
+
[[0, 1], 0, () => CapabilityConfiguration$, () => InstructionsDocuments],
|
|
907
907
|
];
|
|
908
|
-
var UpdateCapabilityResponse = [
|
|
908
|
+
var UpdateCapabilityResponse$ = [
|
|
909
909
|
3,
|
|
910
910
|
n0,
|
|
911
911
|
_UCRp,
|
|
912
912
|
0,
|
|
913
913
|
[_cI, _cAa, _n, _t, _co, _iD, _cA, _mA],
|
|
914
|
-
[0, 0, 0, 0, () => CapabilityConfiguration
|
|
914
|
+
[0, 0, 0, 0, () => CapabilityConfiguration$, () => InstructionsDocuments, 5, 5],
|
|
915
915
|
];
|
|
916
|
-
var UpdatePartnershipRequest = [
|
|
916
|
+
var UpdatePartnershipRequest$ = [
|
|
917
917
|
3,
|
|
918
918
|
n0,
|
|
919
919
|
_UPR,
|
|
920
920
|
0,
|
|
921
921
|
[_pIa, _n, _ca, _cO],
|
|
922
|
-
[[0, 1], 0, 64 | 0, () => CapabilityOptions],
|
|
922
|
+
[[0, 1], 0, 64 | 0, () => CapabilityOptions$],
|
|
923
923
|
];
|
|
924
|
-
var UpdatePartnershipResponse = [
|
|
924
|
+
var UpdatePartnershipResponse$ = [
|
|
925
925
|
3,
|
|
926
926
|
n0,
|
|
927
927
|
_UPRp,
|
|
928
928
|
0,
|
|
929
929
|
[_pI, _pIa, _pA, _n, _em, _p, _ca, _cO, _tPI, _cA, _mA],
|
|
930
|
-
[0, 0, 0, 0, [() => Email, 0], [() => Phone, 0], 64 | 0, () => CapabilityOptions
|
|
930
|
+
[0, 0, 0, 0, [() => Email, 0], [() => Phone, 0], 64 | 0, () => CapabilityOptions$, 0, 5, 5],
|
|
931
931
|
];
|
|
932
|
-
var UpdateProfileRequest = [
|
|
932
|
+
var UpdateProfileRequest$ = [
|
|
933
933
|
3,
|
|
934
934
|
n0,
|
|
935
935
|
_UPRpd,
|
|
@@ -937,7 +937,7 @@ var UpdateProfileRequest = [
|
|
|
937
937
|
[_pI, _n, _em, _p, _bN],
|
|
938
938
|
[[0, 1], 0, [() => Email, 0], [() => Phone, 0], 0],
|
|
939
939
|
];
|
|
940
|
-
var UpdateProfileResponse = [
|
|
940
|
+
var UpdateProfileResponse$ = [
|
|
941
941
|
3,
|
|
942
942
|
n0,
|
|
943
943
|
_UPRpda,
|
|
@@ -945,7 +945,7 @@ var UpdateProfileResponse = [
|
|
|
945
945
|
[_pI, _pAr, _n, _em, _p, _bN, _l, _lGN, _cA, _mA],
|
|
946
946
|
[0, 0, 0, [() => Email, 0], [() => Phone, 0], 0, 0, 0, 5, 5],
|
|
947
947
|
];
|
|
948
|
-
var UpdateTransformerRequest = [
|
|
948
|
+
var UpdateTransformerRequest$ = [
|
|
949
949
|
3,
|
|
950
950
|
n0,
|
|
951
951
|
_UTR,
|
|
@@ -957,15 +957,15 @@ var UpdateTransformerRequest = [
|
|
|
957
957
|
0,
|
|
958
958
|
0,
|
|
959
959
|
0,
|
|
960
|
-
() => EdiType
|
|
960
|
+
() => EdiType$,
|
|
961
961
|
0,
|
|
962
|
-
() => InputConversion
|
|
963
|
-
() => Mapping
|
|
964
|
-
() => OutputConversion
|
|
965
|
-
() => SampleDocuments
|
|
962
|
+
() => InputConversion$,
|
|
963
|
+
() => Mapping$,
|
|
964
|
+
() => OutputConversion$,
|
|
965
|
+
() => SampleDocuments$,
|
|
966
966
|
],
|
|
967
967
|
];
|
|
968
|
-
var UpdateTransformerResponse = [
|
|
968
|
+
var UpdateTransformerResponse$ = [
|
|
969
969
|
3,
|
|
970
970
|
n0,
|
|
971
971
|
_UTRp,
|
|
@@ -980,27 +980,27 @@ var UpdateTransformerResponse = [
|
|
|
980
980
|
5,
|
|
981
981
|
0,
|
|
982
982
|
0,
|
|
983
|
-
() => EdiType
|
|
983
|
+
() => EdiType$,
|
|
984
984
|
0,
|
|
985
|
-
() => InputConversion
|
|
986
|
-
() => Mapping
|
|
987
|
-
() => OutputConversion
|
|
988
|
-
() => SampleDocuments
|
|
985
|
+
() => InputConversion$,
|
|
986
|
+
() => Mapping$,
|
|
987
|
+
() => OutputConversion$,
|
|
988
|
+
() => SampleDocuments$,
|
|
989
989
|
],
|
|
990
990
|
];
|
|
991
|
-
var ValidationException = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_Me], [0]];
|
|
992
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
993
|
-
var WrapOptions = [3, n0, _WO, 0, [_wB, _lT, _lL], [0, 0, 1]];
|
|
994
|
-
var X12AcknowledgmentOptions = [3, n0, _XAO, 0, [_fA, _tAe], [0, 0]];
|
|
995
|
-
var X12AdvancedOptions = [
|
|
991
|
+
var ValidationException$ = [-3, n0, _VE, { [_e]: _c, [_hE]: 400 }, [_Me], [0]];
|
|
992
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
993
|
+
var WrapOptions$ = [3, n0, _WO, 0, [_wB, _lT, _lL], [0, 0, 1]];
|
|
994
|
+
var X12AcknowledgmentOptions$ = [3, n0, _XAO, 0, [_fA, _tAe], [0, 0]];
|
|
995
|
+
var X12AdvancedOptions$ = [
|
|
996
996
|
3,
|
|
997
997
|
n0,
|
|
998
998
|
_XAOd,
|
|
999
999
|
0,
|
|
1000
1000
|
[_sO, _vO],
|
|
1001
|
-
[() => X12SplitOptions
|
|
1001
|
+
[() => X12SplitOptions$, () => X12ValidationOptions$],
|
|
1002
1002
|
];
|
|
1003
|
-
var X12CodeListValidationRule = [
|
|
1003
|
+
var X12CodeListValidationRule$ = [
|
|
1004
1004
|
3,
|
|
1005
1005
|
n0,
|
|
1006
1006
|
_XCLVR,
|
|
@@ -1008,22 +1008,22 @@ var X12CodeListValidationRule = [
|
|
|
1008
1008
|
[_eI, _cTA, _cTR],
|
|
1009
1009
|
[0, 64 | 0, 64 | 0],
|
|
1010
1010
|
];
|
|
1011
|
-
var X12ControlNumbers = [3, n0, _XCN, 0, [_sICN, _sFGCN, _sTSCN], [1, 1, 1]];
|
|
1012
|
-
var X12Delimiters = [3, n0, _XD, 0, [_cS, _dES, _sT], [0, 0, 0]];
|
|
1013
|
-
var X12Details = [3, n0, _XDe, 0, [_tS, _v], [0, 0]];
|
|
1014
|
-
var X12ElementLengthValidationRule = [3, n0, _XELVR, 0, [_eI, _mL, _mLi], [0, 1, 1]];
|
|
1015
|
-
var X12ElementRequirementValidationRule = [3, n0, _XERVR, 0, [_eP, _r], [0, 0]];
|
|
1016
|
-
var X12Envelope = [
|
|
1011
|
+
var X12ControlNumbers$ = [3, n0, _XCN, 0, [_sICN, _sFGCN, _sTSCN], [1, 1, 1]];
|
|
1012
|
+
var X12Delimiters$ = [3, n0, _XD, 0, [_cS, _dES, _sT], [0, 0, 0]];
|
|
1013
|
+
var X12Details$ = [3, n0, _XDe, 0, [_tS, _v], [0, 0]];
|
|
1014
|
+
var X12ElementLengthValidationRule$ = [3, n0, _XELVR, 0, [_eI, _mL, _mLi], [0, 1, 1]];
|
|
1015
|
+
var X12ElementRequirementValidationRule$ = [3, n0, _XERVR, 0, [_eP, _r], [0, 0]];
|
|
1016
|
+
var X12Envelope$ = [
|
|
1017
1017
|
3,
|
|
1018
1018
|
n0,
|
|
1019
1019
|
_XE,
|
|
1020
1020
|
0,
|
|
1021
1021
|
[_com, _wO],
|
|
1022
|
-
[() => X12OutboundEdiHeaders
|
|
1022
|
+
[() => X12OutboundEdiHeaders$, () => WrapOptions$],
|
|
1023
1023
|
];
|
|
1024
|
-
var X12FunctionalGroupHeaders = [3, n0, _XFGH, 0, [_aSC, _aRC, _rAC], [0, 0, 0]];
|
|
1025
|
-
var X12InboundEdiOptions = [3, n0, _XIEO, 0, [_aOc], [() => X12AcknowledgmentOptions]];
|
|
1026
|
-
var X12InterchangeControlHeaders = [
|
|
1024
|
+
var X12FunctionalGroupHeaders$ = [3, n0, _XFGH, 0, [_aSC, _aRC, _rAC], [0, 0, 0]];
|
|
1025
|
+
var X12InboundEdiOptions$ = [3, n0, _XIEO, 0, [_aOc], [() => X12AcknowledgmentOptions$]];
|
|
1026
|
+
var X12InterchangeControlHeaders$ = [
|
|
1027
1027
|
3,
|
|
1028
1028
|
n0,
|
|
1029
1029
|
_XICH,
|
|
@@ -1031,290 +1031,290 @@ var X12InterchangeControlHeaders = [
|
|
|
1031
1031
|
[_sIQ, _sI, _rIQ, _rIe, _rS, _aRCc, _uIC],
|
|
1032
1032
|
[0, 0, 0, 0, 0, 0, 0],
|
|
1033
1033
|
];
|
|
1034
|
-
var X12OutboundEdiHeaders = [
|
|
1034
|
+
var X12OutboundEdiHeaders$ = [
|
|
1035
1035
|
3,
|
|
1036
1036
|
n0,
|
|
1037
1037
|
_XOEH,
|
|
1038
1038
|
0,
|
|
1039
1039
|
[_iCH, _fGH, _d, _vE, _cN, _gTF],
|
|
1040
1040
|
[
|
|
1041
|
-
() => X12InterchangeControlHeaders
|
|
1042
|
-
() => X12FunctionalGroupHeaders
|
|
1043
|
-
() => X12Delimiters
|
|
1041
|
+
() => X12InterchangeControlHeaders$,
|
|
1042
|
+
() => X12FunctionalGroupHeaders$,
|
|
1043
|
+
() => X12Delimiters$,
|
|
1044
1044
|
2,
|
|
1045
|
-
() => X12ControlNumbers
|
|
1045
|
+
() => X12ControlNumbers$,
|
|
1046
1046
|
0,
|
|
1047
1047
|
],
|
|
1048
1048
|
];
|
|
1049
|
-
var X12SplitOptions = [3, n0, _XSO, 0, [_sB], [0]];
|
|
1050
|
-
var X12ValidationOptions = [3, n0, _XVO, 0, [_vR], [() => X12ValidationRules]];
|
|
1049
|
+
var X12SplitOptions$ = [3, n0, _XSO, 0, [_sB], [0]];
|
|
1050
|
+
var X12ValidationOptions$ = [3, n0, _XVO, 0, [_vR], [() => X12ValidationRules]];
|
|
1051
1051
|
var __Unit = "unit";
|
|
1052
|
-
var B2biServiceException = [-3, _sm, "B2biServiceException", 0, [], []];
|
|
1053
|
-
schema.TypeRegistry.for(_sm).registerError(B2biServiceException
|
|
1054
|
-
var CapabilityList = [1, n0, _CL, 0, () => CapabilitySummary];
|
|
1055
|
-
var InstructionsDocuments = [1, n0, _ID, 0, () => S3Location];
|
|
1056
|
-
var KeyList = [1, n0, _KL, 0, () => SampleDocumentKeys];
|
|
1057
|
-
var PartnershipList = [1, n0, _PL, 0, () => PartnershipSummary];
|
|
1058
|
-
var ProfileList = [1, n0, _PLr, 0, () => ProfileSummary];
|
|
1059
|
-
var S3LocationList = [1, n0, _SLL, 0, () => S3Location];
|
|
1060
|
-
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
1061
|
-
var TransformerList = [1, n0, _TLr, 0, () => TransformerSummary];
|
|
1062
|
-
var X12ValidationRules = [1, n0, _XVR, 0, () => X12ValidationRule];
|
|
1063
|
-
var CapabilityConfiguration = [3, n0, _CC, 0, [_ed], [() => EdiConfiguration]];
|
|
1064
|
-
var ConversionTargetFormatDetails = [3, n0, _CTFD, 0, [_x], [() => X12Details]];
|
|
1065
|
-
var EdiType = [3, n0, _ET, 0, [_xD], [() => X12Details]];
|
|
1066
|
-
var FormatOptions = [3, n0, _FO, 0, [_x], [() => X12Details]];
|
|
1067
|
-
var InputFileSource = [3, n0, _IFS, 0, [_fC], [0]];
|
|
1068
|
-
var OutboundEdiOptions = [3, n0, _OEO, 0, [_x], [() => X12Envelope]];
|
|
1069
|
-
var OutputSampleFileSource = [3, n0, _OSFS, 0, [_fL], [() => S3Location]];
|
|
1070
|
-
var TemplateDetails = [3, n0, _TD, 0, [_x], [() => X12Details]];
|
|
1071
|
-
var X12ValidationRule = [
|
|
1052
|
+
var B2biServiceException$ = [-3, _sm, "B2biServiceException", 0, [], []];
|
|
1053
|
+
schema.TypeRegistry.for(_sm).registerError(B2biServiceException$, B2biServiceException);
|
|
1054
|
+
var CapabilityList = [1, n0, _CL, 0, () => CapabilitySummary$];
|
|
1055
|
+
var InstructionsDocuments = [1, n0, _ID, 0, () => S3Location$];
|
|
1056
|
+
var KeyList = [1, n0, _KL, 0, () => SampleDocumentKeys$];
|
|
1057
|
+
var PartnershipList = [1, n0, _PL, 0, () => PartnershipSummary$];
|
|
1058
|
+
var ProfileList = [1, n0, _PLr, 0, () => ProfileSummary$];
|
|
1059
|
+
var S3LocationList = [1, n0, _SLL, 0, () => S3Location$];
|
|
1060
|
+
var TagList = [1, n0, _TL, 0, () => Tag$];
|
|
1061
|
+
var TransformerList = [1, n0, _TLr, 0, () => TransformerSummary$];
|
|
1062
|
+
var X12ValidationRules = [1, n0, _XVR, 0, () => X12ValidationRule$];
|
|
1063
|
+
var CapabilityConfiguration$ = [3, n0, _CC, 0, [_ed], [() => EdiConfiguration$]];
|
|
1064
|
+
var ConversionTargetFormatDetails$ = [3, n0, _CTFD, 0, [_x], [() => X12Details$]];
|
|
1065
|
+
var EdiType$ = [3, n0, _ET, 0, [_xD], [() => X12Details$]];
|
|
1066
|
+
var FormatOptions$ = [3, n0, _FO, 0, [_x], [() => X12Details$]];
|
|
1067
|
+
var InputFileSource$ = [3, n0, _IFS, 0, [_fC], [0]];
|
|
1068
|
+
var OutboundEdiOptions$ = [3, n0, _OEO, 0, [_x], [() => X12Envelope$]];
|
|
1069
|
+
var OutputSampleFileSource$ = [3, n0, _OSFS, 0, [_fL], [() => S3Location$]];
|
|
1070
|
+
var TemplateDetails$ = [3, n0, _TD, 0, [_x], [() => X12Details$]];
|
|
1071
|
+
var X12ValidationRule$ = [
|
|
1072
1072
|
3,
|
|
1073
1073
|
n0,
|
|
1074
1074
|
_XVRa,
|
|
1075
1075
|
0,
|
|
1076
1076
|
[_cLVR, _eLVR, _eRVR],
|
|
1077
|
-
[() => X12CodeListValidationRule
|
|
1077
|
+
[() => X12CodeListValidationRule$, () => X12ElementLengthValidationRule$, () => X12ElementRequirementValidationRule$],
|
|
1078
1078
|
];
|
|
1079
|
-
var CreateCapability = [
|
|
1079
|
+
var CreateCapability$ = [
|
|
1080
1080
|
9,
|
|
1081
1081
|
n0,
|
|
1082
1082
|
_CCr,
|
|
1083
1083
|
{ [_h]: ["POST", "/capabilities", 201] },
|
|
1084
|
-
() => CreateCapabilityRequest
|
|
1085
|
-
() => CreateCapabilityResponse
|
|
1084
|
+
() => CreateCapabilityRequest$,
|
|
1085
|
+
() => CreateCapabilityResponse$,
|
|
1086
1086
|
];
|
|
1087
|
-
var CreatePartnership = [
|
|
1087
|
+
var CreatePartnership$ = [
|
|
1088
1088
|
9,
|
|
1089
1089
|
n0,
|
|
1090
1090
|
_CP,
|
|
1091
1091
|
{ [_h]: ["POST", "/partnerships", 201] },
|
|
1092
|
-
() => CreatePartnershipRequest
|
|
1093
|
-
() => CreatePartnershipResponse
|
|
1092
|
+
() => CreatePartnershipRequest$,
|
|
1093
|
+
() => CreatePartnershipResponse$,
|
|
1094
1094
|
];
|
|
1095
|
-
var CreateProfile = [
|
|
1095
|
+
var CreateProfile$ = [
|
|
1096
1096
|
9,
|
|
1097
1097
|
n0,
|
|
1098
1098
|
_CPr,
|
|
1099
1099
|
{ [_h]: ["POST", "/profiles", 201] },
|
|
1100
|
-
() => CreateProfileRequest
|
|
1101
|
-
() => CreateProfileResponse
|
|
1100
|
+
() => CreateProfileRequest$,
|
|
1101
|
+
() => CreateProfileResponse$,
|
|
1102
1102
|
];
|
|
1103
|
-
var CreateStarterMappingTemplate = [
|
|
1103
|
+
var CreateStarterMappingTemplate$ = [
|
|
1104
1104
|
9,
|
|
1105
1105
|
n0,
|
|
1106
1106
|
_CSMT,
|
|
1107
1107
|
{ [_h]: ["POST", "/createmappingstarttemplate", 200] },
|
|
1108
|
-
() => CreateStarterMappingTemplateRequest
|
|
1109
|
-
() => CreateStarterMappingTemplateResponse
|
|
1108
|
+
() => CreateStarterMappingTemplateRequest$,
|
|
1109
|
+
() => CreateStarterMappingTemplateResponse$,
|
|
1110
1110
|
];
|
|
1111
|
-
var CreateTransformer = [
|
|
1111
|
+
var CreateTransformer$ = [
|
|
1112
1112
|
9,
|
|
1113
1113
|
n0,
|
|
1114
1114
|
_CTr,
|
|
1115
1115
|
{ [_h]: ["POST", "/transformers", 201] },
|
|
1116
|
-
() => CreateTransformerRequest
|
|
1117
|
-
() => CreateTransformerResponse
|
|
1116
|
+
() => CreateTransformerRequest$,
|
|
1117
|
+
() => CreateTransformerResponse$,
|
|
1118
1118
|
];
|
|
1119
|
-
var DeleteCapability = [
|
|
1119
|
+
var DeleteCapability$ = [
|
|
1120
1120
|
9,
|
|
1121
1121
|
n0,
|
|
1122
1122
|
_DC,
|
|
1123
1123
|
{ [_h]: ["DELETE", "/capabilities/{capabilityId}", 200] },
|
|
1124
|
-
() => DeleteCapabilityRequest
|
|
1124
|
+
() => DeleteCapabilityRequest$,
|
|
1125
1125
|
() => __Unit,
|
|
1126
1126
|
];
|
|
1127
|
-
var DeletePartnership = [
|
|
1127
|
+
var DeletePartnership$ = [
|
|
1128
1128
|
9,
|
|
1129
1129
|
n0,
|
|
1130
1130
|
_DP,
|
|
1131
1131
|
{ [_h]: ["DELETE", "/partnerships/{partnershipId}", 200] },
|
|
1132
|
-
() => DeletePartnershipRequest
|
|
1132
|
+
() => DeletePartnershipRequest$,
|
|
1133
1133
|
() => __Unit,
|
|
1134
1134
|
];
|
|
1135
|
-
var DeleteProfile = [
|
|
1135
|
+
var DeleteProfile$ = [
|
|
1136
1136
|
9,
|
|
1137
1137
|
n0,
|
|
1138
1138
|
_DPe,
|
|
1139
1139
|
{ [_h]: ["DELETE", "/profiles/{profileId}", 200] },
|
|
1140
|
-
() => DeleteProfileRequest
|
|
1140
|
+
() => DeleteProfileRequest$,
|
|
1141
1141
|
() => __Unit,
|
|
1142
1142
|
];
|
|
1143
|
-
var DeleteTransformer = [
|
|
1143
|
+
var DeleteTransformer$ = [
|
|
1144
1144
|
9,
|
|
1145
1145
|
n0,
|
|
1146
1146
|
_DT,
|
|
1147
1147
|
{ [_h]: ["DELETE", "/transformers/{transformerId}", 200] },
|
|
1148
|
-
() => DeleteTransformerRequest
|
|
1148
|
+
() => DeleteTransformerRequest$,
|
|
1149
1149
|
() => __Unit,
|
|
1150
1150
|
];
|
|
1151
|
-
var GenerateMapping = [
|
|
1151
|
+
var GenerateMapping$ = [
|
|
1152
1152
|
9,
|
|
1153
1153
|
n0,
|
|
1154
1154
|
_GM,
|
|
1155
1155
|
{ [_h]: ["POST", "/generate-mapping", 200] },
|
|
1156
|
-
() => GenerateMappingRequest
|
|
1157
|
-
() => GenerateMappingResponse
|
|
1156
|
+
() => GenerateMappingRequest$,
|
|
1157
|
+
() => GenerateMappingResponse$,
|
|
1158
1158
|
];
|
|
1159
|
-
var GetCapability = [
|
|
1159
|
+
var GetCapability$ = [
|
|
1160
1160
|
9,
|
|
1161
1161
|
n0,
|
|
1162
1162
|
_GC,
|
|
1163
1163
|
{ [_h]: ["GET", "/capabilities/{capabilityId}", 200] },
|
|
1164
|
-
() => GetCapabilityRequest
|
|
1165
|
-
() => GetCapabilityResponse
|
|
1164
|
+
() => GetCapabilityRequest$,
|
|
1165
|
+
() => GetCapabilityResponse$,
|
|
1166
1166
|
];
|
|
1167
|
-
var GetPartnership = [
|
|
1167
|
+
var GetPartnership$ = [
|
|
1168
1168
|
9,
|
|
1169
1169
|
n0,
|
|
1170
1170
|
_GP,
|
|
1171
1171
|
{ [_h]: ["GET", "/partnerships/{partnershipId}", 200] },
|
|
1172
|
-
() => GetPartnershipRequest
|
|
1173
|
-
() => GetPartnershipResponse
|
|
1172
|
+
() => GetPartnershipRequest$,
|
|
1173
|
+
() => GetPartnershipResponse$,
|
|
1174
1174
|
];
|
|
1175
|
-
var GetProfile = [
|
|
1175
|
+
var GetProfile$ = [
|
|
1176
1176
|
9,
|
|
1177
1177
|
n0,
|
|
1178
1178
|
_GPe,
|
|
1179
1179
|
{ [_h]: ["GET", "/profiles/{profileId}", 200] },
|
|
1180
|
-
() => GetProfileRequest
|
|
1181
|
-
() => GetProfileResponse
|
|
1180
|
+
() => GetProfileRequest$,
|
|
1181
|
+
() => GetProfileResponse$,
|
|
1182
1182
|
];
|
|
1183
|
-
var GetTransformer = [
|
|
1183
|
+
var GetTransformer$ = [
|
|
1184
1184
|
9,
|
|
1185
1185
|
n0,
|
|
1186
1186
|
_GT,
|
|
1187
1187
|
{ [_h]: ["GET", "/transformers/{transformerId}", 200] },
|
|
1188
|
-
() => GetTransformerRequest
|
|
1189
|
-
() => GetTransformerResponse
|
|
1188
|
+
() => GetTransformerRequest$,
|
|
1189
|
+
() => GetTransformerResponse$,
|
|
1190
1190
|
];
|
|
1191
|
-
var GetTransformerJob = [
|
|
1191
|
+
var GetTransformerJob$ = [
|
|
1192
1192
|
9,
|
|
1193
1193
|
n0,
|
|
1194
1194
|
_GTJ,
|
|
1195
1195
|
{ [_h]: ["GET", "/transformer-jobs/{transformerJobId}", 200] },
|
|
1196
|
-
() => GetTransformerJobRequest
|
|
1197
|
-
() => GetTransformerJobResponse
|
|
1196
|
+
() => GetTransformerJobRequest$,
|
|
1197
|
+
() => GetTransformerJobResponse$,
|
|
1198
1198
|
];
|
|
1199
|
-
var ListCapabilities = [
|
|
1199
|
+
var ListCapabilities$ = [
|
|
1200
1200
|
9,
|
|
1201
1201
|
n0,
|
|
1202
1202
|
_LC,
|
|
1203
1203
|
{ [_h]: ["GET", "/capabilities", 200] },
|
|
1204
|
-
() => ListCapabilitiesRequest
|
|
1205
|
-
() => ListCapabilitiesResponse
|
|
1204
|
+
() => ListCapabilitiesRequest$,
|
|
1205
|
+
() => ListCapabilitiesResponse$,
|
|
1206
1206
|
];
|
|
1207
|
-
var ListPartnerships = [
|
|
1207
|
+
var ListPartnerships$ = [
|
|
1208
1208
|
9,
|
|
1209
1209
|
n0,
|
|
1210
1210
|
_LP,
|
|
1211
1211
|
{ [_h]: ["GET", "/partnerships", 200] },
|
|
1212
|
-
() => ListPartnershipsRequest
|
|
1213
|
-
() => ListPartnershipsResponse
|
|
1212
|
+
() => ListPartnershipsRequest$,
|
|
1213
|
+
() => ListPartnershipsResponse$,
|
|
1214
1214
|
];
|
|
1215
|
-
var ListProfiles = [
|
|
1215
|
+
var ListProfiles$ = [
|
|
1216
1216
|
9,
|
|
1217
1217
|
n0,
|
|
1218
1218
|
_LPi,
|
|
1219
1219
|
{ [_h]: ["GET", "/profiles", 200] },
|
|
1220
|
-
() => ListProfilesRequest
|
|
1221
|
-
() => ListProfilesResponse
|
|
1220
|
+
() => ListProfilesRequest$,
|
|
1221
|
+
() => ListProfilesResponse$,
|
|
1222
1222
|
];
|
|
1223
|
-
var ListTagsForResource = [
|
|
1223
|
+
var ListTagsForResource$ = [
|
|
1224
1224
|
9,
|
|
1225
1225
|
n0,
|
|
1226
1226
|
_LTFR,
|
|
1227
1227
|
{ [_h]: ["GET", "/tags/{ResourceARN}", 200] },
|
|
1228
|
-
() => ListTagsForResourceRequest
|
|
1229
|
-
() => ListTagsForResourceResponse
|
|
1228
|
+
() => ListTagsForResourceRequest$,
|
|
1229
|
+
() => ListTagsForResourceResponse$,
|
|
1230
1230
|
];
|
|
1231
|
-
var ListTransformers = [
|
|
1231
|
+
var ListTransformers$ = [
|
|
1232
1232
|
9,
|
|
1233
1233
|
n0,
|
|
1234
1234
|
_LT,
|
|
1235
1235
|
{ [_h]: ["GET", "/transformers", 200] },
|
|
1236
|
-
() => ListTransformersRequest
|
|
1237
|
-
() => ListTransformersResponse
|
|
1236
|
+
() => ListTransformersRequest$,
|
|
1237
|
+
() => ListTransformersResponse$,
|
|
1238
1238
|
];
|
|
1239
|
-
var StartTransformerJob = [
|
|
1239
|
+
var StartTransformerJob$ = [
|
|
1240
1240
|
9,
|
|
1241
1241
|
n0,
|
|
1242
1242
|
_STJ,
|
|
1243
1243
|
{ [_h]: ["POST", "/transformer-jobs", 200] },
|
|
1244
|
-
() => StartTransformerJobRequest
|
|
1245
|
-
() => StartTransformerJobResponse
|
|
1244
|
+
() => StartTransformerJobRequest$,
|
|
1245
|
+
() => StartTransformerJobResponse$,
|
|
1246
1246
|
];
|
|
1247
|
-
var TagResource = [
|
|
1247
|
+
var TagResource$ = [
|
|
1248
1248
|
9,
|
|
1249
1249
|
n0,
|
|
1250
1250
|
_TR,
|
|
1251
1251
|
{ [_h]: ["POST", "/tags/{ResourceARN}", 200] },
|
|
1252
|
-
() => TagResourceRequest
|
|
1252
|
+
() => TagResourceRequest$,
|
|
1253
1253
|
() => __Unit,
|
|
1254
1254
|
];
|
|
1255
|
-
var TestConversion = [
|
|
1255
|
+
var TestConversion$ = [
|
|
1256
1256
|
9,
|
|
1257
1257
|
n0,
|
|
1258
1258
|
_TC,
|
|
1259
1259
|
{ [_h]: ["POST", "/testconversion", 200] },
|
|
1260
|
-
() => TestConversionRequest
|
|
1261
|
-
() => TestConversionResponse
|
|
1260
|
+
() => TestConversionRequest$,
|
|
1261
|
+
() => TestConversionResponse$,
|
|
1262
1262
|
];
|
|
1263
|
-
var TestMapping = [
|
|
1263
|
+
var TestMapping$ = [
|
|
1264
1264
|
9,
|
|
1265
1265
|
n0,
|
|
1266
1266
|
_TM,
|
|
1267
1267
|
{ [_h]: ["POST", "/testmapping", 201] },
|
|
1268
|
-
() => TestMappingRequest
|
|
1269
|
-
() => TestMappingResponse
|
|
1268
|
+
() => TestMappingRequest$,
|
|
1269
|
+
() => TestMappingResponse$,
|
|
1270
1270
|
];
|
|
1271
|
-
var TestParsing = [
|
|
1271
|
+
var TestParsing$ = [
|
|
1272
1272
|
9,
|
|
1273
1273
|
n0,
|
|
1274
1274
|
_TP,
|
|
1275
1275
|
{ [_h]: ["POST", "/testparsing", 201] },
|
|
1276
|
-
() => TestParsingRequest
|
|
1277
|
-
() => TestParsingResponse
|
|
1276
|
+
() => TestParsingRequest$,
|
|
1277
|
+
() => TestParsingResponse$,
|
|
1278
1278
|
];
|
|
1279
|
-
var UntagResource = [
|
|
1279
|
+
var UntagResource$ = [
|
|
1280
1280
|
9,
|
|
1281
1281
|
n0,
|
|
1282
1282
|
_UR,
|
|
1283
1283
|
{ [_h]: ["DELETE", "/tags/{ResourceARN}", 200] },
|
|
1284
|
-
() => UntagResourceRequest
|
|
1284
|
+
() => UntagResourceRequest$,
|
|
1285
1285
|
() => __Unit,
|
|
1286
1286
|
];
|
|
1287
|
-
var UpdateCapability = [
|
|
1287
|
+
var UpdateCapability$ = [
|
|
1288
1288
|
9,
|
|
1289
1289
|
n0,
|
|
1290
1290
|
_UC,
|
|
1291
1291
|
{ [_h]: ["PATCH", "/capabilities/{capabilityId}", 200] },
|
|
1292
|
-
() => UpdateCapabilityRequest
|
|
1293
|
-
() => UpdateCapabilityResponse
|
|
1292
|
+
() => UpdateCapabilityRequest$,
|
|
1293
|
+
() => UpdateCapabilityResponse$,
|
|
1294
1294
|
];
|
|
1295
|
-
var UpdatePartnership = [
|
|
1295
|
+
var UpdatePartnership$ = [
|
|
1296
1296
|
9,
|
|
1297
1297
|
n0,
|
|
1298
1298
|
_UP,
|
|
1299
1299
|
{ [_h]: ["PATCH", "/partnerships/{partnershipId}", 200] },
|
|
1300
|
-
() => UpdatePartnershipRequest
|
|
1301
|
-
() => UpdatePartnershipResponse
|
|
1300
|
+
() => UpdatePartnershipRequest$,
|
|
1301
|
+
() => UpdatePartnershipResponse$,
|
|
1302
1302
|
];
|
|
1303
|
-
var UpdateProfile = [
|
|
1303
|
+
var UpdateProfile$ = [
|
|
1304
1304
|
9,
|
|
1305
1305
|
n0,
|
|
1306
1306
|
_UPp,
|
|
1307
1307
|
{ [_h]: ["PATCH", "/profiles/{profileId}", 200] },
|
|
1308
|
-
() => UpdateProfileRequest
|
|
1309
|
-
() => UpdateProfileResponse
|
|
1308
|
+
() => UpdateProfileRequest$,
|
|
1309
|
+
() => UpdateProfileResponse$,
|
|
1310
1310
|
];
|
|
1311
|
-
var UpdateTransformer = [
|
|
1311
|
+
var UpdateTransformer$ = [
|
|
1312
1312
|
9,
|
|
1313
1313
|
n0,
|
|
1314
1314
|
_UT,
|
|
1315
1315
|
{ [_h]: ["PATCH", "/transformers/{transformerId}", 200] },
|
|
1316
|
-
() => UpdateTransformerRequest
|
|
1317
|
-
() => UpdateTransformerResponse
|
|
1316
|
+
() => UpdateTransformerRequest$,
|
|
1317
|
+
() => UpdateTransformerResponse$,
|
|
1318
1318
|
];
|
|
1319
1319
|
|
|
1320
1320
|
class CreateCapabilityCommand extends smithyClient.Command
|
|
@@ -1325,7 +1325,7 @@ class CreateCapabilityCommand extends smithyClient.Command
|
|
|
1325
1325
|
})
|
|
1326
1326
|
.s("B2BI", "CreateCapability", {})
|
|
1327
1327
|
.n("B2biClient", "CreateCapabilityCommand")
|
|
1328
|
-
.sc(CreateCapability)
|
|
1328
|
+
.sc(CreateCapability$)
|
|
1329
1329
|
.build() {
|
|
1330
1330
|
}
|
|
1331
1331
|
|
|
@@ -1337,7 +1337,7 @@ class CreatePartnershipCommand extends smithyClient.Command
|
|
|
1337
1337
|
})
|
|
1338
1338
|
.s("B2BI", "CreatePartnership", {})
|
|
1339
1339
|
.n("B2biClient", "CreatePartnershipCommand")
|
|
1340
|
-
.sc(CreatePartnership)
|
|
1340
|
+
.sc(CreatePartnership$)
|
|
1341
1341
|
.build() {
|
|
1342
1342
|
}
|
|
1343
1343
|
|
|
@@ -1349,7 +1349,7 @@ class CreateProfileCommand extends smithyClient.Command
|
|
|
1349
1349
|
})
|
|
1350
1350
|
.s("B2BI", "CreateProfile", {})
|
|
1351
1351
|
.n("B2biClient", "CreateProfileCommand")
|
|
1352
|
-
.sc(CreateProfile)
|
|
1352
|
+
.sc(CreateProfile$)
|
|
1353
1353
|
.build() {
|
|
1354
1354
|
}
|
|
1355
1355
|
|
|
@@ -1361,7 +1361,7 @@ class CreateStarterMappingTemplateCommand extends smithyClient.Command
|
|
|
1361
1361
|
})
|
|
1362
1362
|
.s("B2BI", "CreateStarterMappingTemplate", {})
|
|
1363
1363
|
.n("B2biClient", "CreateStarterMappingTemplateCommand")
|
|
1364
|
-
.sc(CreateStarterMappingTemplate)
|
|
1364
|
+
.sc(CreateStarterMappingTemplate$)
|
|
1365
1365
|
.build() {
|
|
1366
1366
|
}
|
|
1367
1367
|
|
|
@@ -1373,7 +1373,7 @@ class CreateTransformerCommand extends smithyClient.Command
|
|
|
1373
1373
|
})
|
|
1374
1374
|
.s("B2BI", "CreateTransformer", {})
|
|
1375
1375
|
.n("B2biClient", "CreateTransformerCommand")
|
|
1376
|
-
.sc(CreateTransformer)
|
|
1376
|
+
.sc(CreateTransformer$)
|
|
1377
1377
|
.build() {
|
|
1378
1378
|
}
|
|
1379
1379
|
|
|
@@ -1385,7 +1385,7 @@ class DeleteCapabilityCommand extends smithyClient.Command
|
|
|
1385
1385
|
})
|
|
1386
1386
|
.s("B2BI", "DeleteCapability", {})
|
|
1387
1387
|
.n("B2biClient", "DeleteCapabilityCommand")
|
|
1388
|
-
.sc(DeleteCapability)
|
|
1388
|
+
.sc(DeleteCapability$)
|
|
1389
1389
|
.build() {
|
|
1390
1390
|
}
|
|
1391
1391
|
|
|
@@ -1397,7 +1397,7 @@ class DeletePartnershipCommand extends smithyClient.Command
|
|
|
1397
1397
|
})
|
|
1398
1398
|
.s("B2BI", "DeletePartnership", {})
|
|
1399
1399
|
.n("B2biClient", "DeletePartnershipCommand")
|
|
1400
|
-
.sc(DeletePartnership)
|
|
1400
|
+
.sc(DeletePartnership$)
|
|
1401
1401
|
.build() {
|
|
1402
1402
|
}
|
|
1403
1403
|
|
|
@@ -1409,7 +1409,7 @@ class DeleteProfileCommand extends smithyClient.Command
|
|
|
1409
1409
|
})
|
|
1410
1410
|
.s("B2BI", "DeleteProfile", {})
|
|
1411
1411
|
.n("B2biClient", "DeleteProfileCommand")
|
|
1412
|
-
.sc(DeleteProfile)
|
|
1412
|
+
.sc(DeleteProfile$)
|
|
1413
1413
|
.build() {
|
|
1414
1414
|
}
|
|
1415
1415
|
|
|
@@ -1421,7 +1421,7 @@ class DeleteTransformerCommand extends smithyClient.Command
|
|
|
1421
1421
|
})
|
|
1422
1422
|
.s("B2BI", "DeleteTransformer", {})
|
|
1423
1423
|
.n("B2biClient", "DeleteTransformerCommand")
|
|
1424
|
-
.sc(DeleteTransformer)
|
|
1424
|
+
.sc(DeleteTransformer$)
|
|
1425
1425
|
.build() {
|
|
1426
1426
|
}
|
|
1427
1427
|
|
|
@@ -1433,7 +1433,7 @@ class GenerateMappingCommand extends smithyClient.Command
|
|
|
1433
1433
|
})
|
|
1434
1434
|
.s("B2BI", "GenerateMapping", {})
|
|
1435
1435
|
.n("B2biClient", "GenerateMappingCommand")
|
|
1436
|
-
.sc(GenerateMapping)
|
|
1436
|
+
.sc(GenerateMapping$)
|
|
1437
1437
|
.build() {
|
|
1438
1438
|
}
|
|
1439
1439
|
|
|
@@ -1445,7 +1445,7 @@ class GetCapabilityCommand extends smithyClient.Command
|
|
|
1445
1445
|
})
|
|
1446
1446
|
.s("B2BI", "GetCapability", {})
|
|
1447
1447
|
.n("B2biClient", "GetCapabilityCommand")
|
|
1448
|
-
.sc(GetCapability)
|
|
1448
|
+
.sc(GetCapability$)
|
|
1449
1449
|
.build() {
|
|
1450
1450
|
}
|
|
1451
1451
|
|
|
@@ -1457,7 +1457,7 @@ class GetPartnershipCommand extends smithyClient.Command
|
|
|
1457
1457
|
})
|
|
1458
1458
|
.s("B2BI", "GetPartnership", {})
|
|
1459
1459
|
.n("B2biClient", "GetPartnershipCommand")
|
|
1460
|
-
.sc(GetPartnership)
|
|
1460
|
+
.sc(GetPartnership$)
|
|
1461
1461
|
.build() {
|
|
1462
1462
|
}
|
|
1463
1463
|
|
|
@@ -1469,7 +1469,7 @@ class GetProfileCommand extends smithyClient.Command
|
|
|
1469
1469
|
})
|
|
1470
1470
|
.s("B2BI", "GetProfile", {})
|
|
1471
1471
|
.n("B2biClient", "GetProfileCommand")
|
|
1472
|
-
.sc(GetProfile)
|
|
1472
|
+
.sc(GetProfile$)
|
|
1473
1473
|
.build() {
|
|
1474
1474
|
}
|
|
1475
1475
|
|
|
@@ -1481,7 +1481,7 @@ class GetTransformerCommand extends smithyClient.Command
|
|
|
1481
1481
|
})
|
|
1482
1482
|
.s("B2BI", "GetTransformer", {})
|
|
1483
1483
|
.n("B2biClient", "GetTransformerCommand")
|
|
1484
|
-
.sc(GetTransformer)
|
|
1484
|
+
.sc(GetTransformer$)
|
|
1485
1485
|
.build() {
|
|
1486
1486
|
}
|
|
1487
1487
|
|
|
@@ -1493,7 +1493,7 @@ class GetTransformerJobCommand extends smithyClient.Command
|
|
|
1493
1493
|
})
|
|
1494
1494
|
.s("B2BI", "GetTransformerJob", {})
|
|
1495
1495
|
.n("B2biClient", "GetTransformerJobCommand")
|
|
1496
|
-
.sc(GetTransformerJob)
|
|
1496
|
+
.sc(GetTransformerJob$)
|
|
1497
1497
|
.build() {
|
|
1498
1498
|
}
|
|
1499
1499
|
|
|
@@ -1505,7 +1505,7 @@ class ListCapabilitiesCommand extends smithyClient.Command
|
|
|
1505
1505
|
})
|
|
1506
1506
|
.s("B2BI", "ListCapabilities", {})
|
|
1507
1507
|
.n("B2biClient", "ListCapabilitiesCommand")
|
|
1508
|
-
.sc(ListCapabilities)
|
|
1508
|
+
.sc(ListCapabilities$)
|
|
1509
1509
|
.build() {
|
|
1510
1510
|
}
|
|
1511
1511
|
|
|
@@ -1517,7 +1517,7 @@ class ListPartnershipsCommand extends smithyClient.Command
|
|
|
1517
1517
|
})
|
|
1518
1518
|
.s("B2BI", "ListPartnerships", {})
|
|
1519
1519
|
.n("B2biClient", "ListPartnershipsCommand")
|
|
1520
|
-
.sc(ListPartnerships)
|
|
1520
|
+
.sc(ListPartnerships$)
|
|
1521
1521
|
.build() {
|
|
1522
1522
|
}
|
|
1523
1523
|
|
|
@@ -1529,7 +1529,7 @@ class ListProfilesCommand extends smithyClient.Command
|
|
|
1529
1529
|
})
|
|
1530
1530
|
.s("B2BI", "ListProfiles", {})
|
|
1531
1531
|
.n("B2biClient", "ListProfilesCommand")
|
|
1532
|
-
.sc(ListProfiles)
|
|
1532
|
+
.sc(ListProfiles$)
|
|
1533
1533
|
.build() {
|
|
1534
1534
|
}
|
|
1535
1535
|
|
|
@@ -1541,7 +1541,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1541
1541
|
})
|
|
1542
1542
|
.s("B2BI", "ListTagsForResource", {})
|
|
1543
1543
|
.n("B2biClient", "ListTagsForResourceCommand")
|
|
1544
|
-
.sc(ListTagsForResource)
|
|
1544
|
+
.sc(ListTagsForResource$)
|
|
1545
1545
|
.build() {
|
|
1546
1546
|
}
|
|
1547
1547
|
|
|
@@ -1553,7 +1553,7 @@ class ListTransformersCommand extends smithyClient.Command
|
|
|
1553
1553
|
})
|
|
1554
1554
|
.s("B2BI", "ListTransformers", {})
|
|
1555
1555
|
.n("B2biClient", "ListTransformersCommand")
|
|
1556
|
-
.sc(ListTransformers)
|
|
1556
|
+
.sc(ListTransformers$)
|
|
1557
1557
|
.build() {
|
|
1558
1558
|
}
|
|
1559
1559
|
|
|
@@ -1565,7 +1565,7 @@ class StartTransformerJobCommand extends smithyClient.Command
|
|
|
1565
1565
|
})
|
|
1566
1566
|
.s("B2BI", "StartTransformerJob", {})
|
|
1567
1567
|
.n("B2biClient", "StartTransformerJobCommand")
|
|
1568
|
-
.sc(StartTransformerJob)
|
|
1568
|
+
.sc(StartTransformerJob$)
|
|
1569
1569
|
.build() {
|
|
1570
1570
|
}
|
|
1571
1571
|
|
|
@@ -1577,7 +1577,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1577
1577
|
})
|
|
1578
1578
|
.s("B2BI", "TagResource", {})
|
|
1579
1579
|
.n("B2biClient", "TagResourceCommand")
|
|
1580
|
-
.sc(TagResource)
|
|
1580
|
+
.sc(TagResource$)
|
|
1581
1581
|
.build() {
|
|
1582
1582
|
}
|
|
1583
1583
|
|
|
@@ -1589,7 +1589,7 @@ class TestConversionCommand extends smithyClient.Command
|
|
|
1589
1589
|
})
|
|
1590
1590
|
.s("B2BI", "TestConversion", {})
|
|
1591
1591
|
.n("B2biClient", "TestConversionCommand")
|
|
1592
|
-
.sc(TestConversion)
|
|
1592
|
+
.sc(TestConversion$)
|
|
1593
1593
|
.build() {
|
|
1594
1594
|
}
|
|
1595
1595
|
|
|
@@ -1601,7 +1601,7 @@ class TestMappingCommand extends smithyClient.Command
|
|
|
1601
1601
|
})
|
|
1602
1602
|
.s("B2BI", "TestMapping", {})
|
|
1603
1603
|
.n("B2biClient", "TestMappingCommand")
|
|
1604
|
-
.sc(TestMapping)
|
|
1604
|
+
.sc(TestMapping$)
|
|
1605
1605
|
.build() {
|
|
1606
1606
|
}
|
|
1607
1607
|
|
|
@@ -1613,7 +1613,7 @@ class TestParsingCommand extends smithyClient.Command
|
|
|
1613
1613
|
})
|
|
1614
1614
|
.s("B2BI", "TestParsing", {})
|
|
1615
1615
|
.n("B2biClient", "TestParsingCommand")
|
|
1616
|
-
.sc(TestParsing)
|
|
1616
|
+
.sc(TestParsing$)
|
|
1617
1617
|
.build() {
|
|
1618
1618
|
}
|
|
1619
1619
|
|
|
@@ -1625,7 +1625,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1625
1625
|
})
|
|
1626
1626
|
.s("B2BI", "UntagResource", {})
|
|
1627
1627
|
.n("B2biClient", "UntagResourceCommand")
|
|
1628
|
-
.sc(UntagResource)
|
|
1628
|
+
.sc(UntagResource$)
|
|
1629
1629
|
.build() {
|
|
1630
1630
|
}
|
|
1631
1631
|
|
|
@@ -1637,7 +1637,7 @@ class UpdateCapabilityCommand extends smithyClient.Command
|
|
|
1637
1637
|
})
|
|
1638
1638
|
.s("B2BI", "UpdateCapability", {})
|
|
1639
1639
|
.n("B2biClient", "UpdateCapabilityCommand")
|
|
1640
|
-
.sc(UpdateCapability)
|
|
1640
|
+
.sc(UpdateCapability$)
|
|
1641
1641
|
.build() {
|
|
1642
1642
|
}
|
|
1643
1643
|
|
|
@@ -1649,7 +1649,7 @@ class UpdatePartnershipCommand extends smithyClient.Command
|
|
|
1649
1649
|
})
|
|
1650
1650
|
.s("B2BI", "UpdatePartnership", {})
|
|
1651
1651
|
.n("B2biClient", "UpdatePartnershipCommand")
|
|
1652
|
-
.sc(UpdatePartnership)
|
|
1652
|
+
.sc(UpdatePartnership$)
|
|
1653
1653
|
.build() {
|
|
1654
1654
|
}
|
|
1655
1655
|
|
|
@@ -1661,7 +1661,7 @@ class UpdateProfileCommand extends smithyClient.Command
|
|
|
1661
1661
|
})
|
|
1662
1662
|
.s("B2BI", "UpdateProfile", {})
|
|
1663
1663
|
.n("B2biClient", "UpdateProfileCommand")
|
|
1664
|
-
.sc(UpdateProfile)
|
|
1664
|
+
.sc(UpdateProfile$)
|
|
1665
1665
|
.build() {
|
|
1666
1666
|
}
|
|
1667
1667
|
|
|
@@ -1673,7 +1673,7 @@ class UpdateTransformerCommand extends smithyClient.Command
|
|
|
1673
1673
|
})
|
|
1674
1674
|
.s("B2BI", "UpdateTransformer", {})
|
|
1675
1675
|
.n("B2biClient", "UpdateTransformerCommand")
|
|
1676
|
-
.sc(UpdateTransformer)
|
|
1676
|
+
.sc(UpdateTransformer$)
|
|
1677
1677
|
.build() {
|
|
1678
1678
|
}
|
|
1679
1679
|
|
|
@@ -2199,66 +2199,200 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2199
2199
|
enumerable: true,
|
|
2200
2200
|
get: function () { return smithyClient.Client; }
|
|
2201
2201
|
});
|
|
2202
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
2202
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2203
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2204
|
+
exports.AdvancedOptions$ = AdvancedOptions$;
|
|
2203
2205
|
exports.B2bi = B2bi;
|
|
2204
2206
|
exports.B2biClient = B2biClient;
|
|
2205
|
-
exports.B2biServiceException = B2biServiceException
|
|
2207
|
+
exports.B2biServiceException = B2biServiceException;
|
|
2208
|
+
exports.B2biServiceException$ = B2biServiceException$;
|
|
2209
|
+
exports.CapabilityConfiguration$ = CapabilityConfiguration$;
|
|
2206
2210
|
exports.CapabilityDirection = CapabilityDirection;
|
|
2211
|
+
exports.CapabilityOptions$ = CapabilityOptions$;
|
|
2212
|
+
exports.CapabilitySummary$ = CapabilitySummary$;
|
|
2207
2213
|
exports.CapabilityType = CapabilityType;
|
|
2208
|
-
exports.ConflictException = ConflictException
|
|
2214
|
+
exports.ConflictException = ConflictException;
|
|
2215
|
+
exports.ConflictException$ = ConflictException$;
|
|
2216
|
+
exports.ConversionSource$ = ConversionSource$;
|
|
2209
2217
|
exports.ConversionSourceFormat = ConversionSourceFormat;
|
|
2218
|
+
exports.ConversionTarget$ = ConversionTarget$;
|
|
2210
2219
|
exports.ConversionTargetFormat = ConversionTargetFormat;
|
|
2220
|
+
exports.ConversionTargetFormatDetails$ = ConversionTargetFormatDetails$;
|
|
2221
|
+
exports.CreateCapability$ = CreateCapability$;
|
|
2211
2222
|
exports.CreateCapabilityCommand = CreateCapabilityCommand;
|
|
2223
|
+
exports.CreateCapabilityRequest$ = CreateCapabilityRequest$;
|
|
2224
|
+
exports.CreateCapabilityResponse$ = CreateCapabilityResponse$;
|
|
2225
|
+
exports.CreatePartnership$ = CreatePartnership$;
|
|
2212
2226
|
exports.CreatePartnershipCommand = CreatePartnershipCommand;
|
|
2227
|
+
exports.CreatePartnershipRequest$ = CreatePartnershipRequest$;
|
|
2228
|
+
exports.CreatePartnershipResponse$ = CreatePartnershipResponse$;
|
|
2229
|
+
exports.CreateProfile$ = CreateProfile$;
|
|
2213
2230
|
exports.CreateProfileCommand = CreateProfileCommand;
|
|
2231
|
+
exports.CreateProfileRequest$ = CreateProfileRequest$;
|
|
2232
|
+
exports.CreateProfileResponse$ = CreateProfileResponse$;
|
|
2233
|
+
exports.CreateStarterMappingTemplate$ = CreateStarterMappingTemplate$;
|
|
2214
2234
|
exports.CreateStarterMappingTemplateCommand = CreateStarterMappingTemplateCommand;
|
|
2235
|
+
exports.CreateStarterMappingTemplateRequest$ = CreateStarterMappingTemplateRequest$;
|
|
2236
|
+
exports.CreateStarterMappingTemplateResponse$ = CreateStarterMappingTemplateResponse$;
|
|
2237
|
+
exports.CreateTransformer$ = CreateTransformer$;
|
|
2215
2238
|
exports.CreateTransformerCommand = CreateTransformerCommand;
|
|
2239
|
+
exports.CreateTransformerRequest$ = CreateTransformerRequest$;
|
|
2240
|
+
exports.CreateTransformerResponse$ = CreateTransformerResponse$;
|
|
2241
|
+
exports.DeleteCapability$ = DeleteCapability$;
|
|
2216
2242
|
exports.DeleteCapabilityCommand = DeleteCapabilityCommand;
|
|
2243
|
+
exports.DeleteCapabilityRequest$ = DeleteCapabilityRequest$;
|
|
2244
|
+
exports.DeletePartnership$ = DeletePartnership$;
|
|
2217
2245
|
exports.DeletePartnershipCommand = DeletePartnershipCommand;
|
|
2246
|
+
exports.DeletePartnershipRequest$ = DeletePartnershipRequest$;
|
|
2247
|
+
exports.DeleteProfile$ = DeleteProfile$;
|
|
2218
2248
|
exports.DeleteProfileCommand = DeleteProfileCommand;
|
|
2249
|
+
exports.DeleteProfileRequest$ = DeleteProfileRequest$;
|
|
2250
|
+
exports.DeleteTransformer$ = DeleteTransformer$;
|
|
2219
2251
|
exports.DeleteTransformerCommand = DeleteTransformerCommand;
|
|
2252
|
+
exports.DeleteTransformerRequest$ = DeleteTransformerRequest$;
|
|
2253
|
+
exports.EdiConfiguration$ = EdiConfiguration$;
|
|
2254
|
+
exports.EdiType$ = EdiType$;
|
|
2220
2255
|
exports.ElementRequirement = ElementRequirement;
|
|
2221
2256
|
exports.FileFormat = FileFormat;
|
|
2257
|
+
exports.FormatOptions$ = FormatOptions$;
|
|
2222
2258
|
exports.FromFormat = FromFormat;
|
|
2259
|
+
exports.GenerateMapping$ = GenerateMapping$;
|
|
2223
2260
|
exports.GenerateMappingCommand = GenerateMappingCommand;
|
|
2261
|
+
exports.GenerateMappingRequest$ = GenerateMappingRequest$;
|
|
2262
|
+
exports.GenerateMappingResponse$ = GenerateMappingResponse$;
|
|
2263
|
+
exports.GetCapability$ = GetCapability$;
|
|
2224
2264
|
exports.GetCapabilityCommand = GetCapabilityCommand;
|
|
2265
|
+
exports.GetCapabilityRequest$ = GetCapabilityRequest$;
|
|
2266
|
+
exports.GetCapabilityResponse$ = GetCapabilityResponse$;
|
|
2267
|
+
exports.GetPartnership$ = GetPartnership$;
|
|
2225
2268
|
exports.GetPartnershipCommand = GetPartnershipCommand;
|
|
2269
|
+
exports.GetPartnershipRequest$ = GetPartnershipRequest$;
|
|
2270
|
+
exports.GetPartnershipResponse$ = GetPartnershipResponse$;
|
|
2271
|
+
exports.GetProfile$ = GetProfile$;
|
|
2226
2272
|
exports.GetProfileCommand = GetProfileCommand;
|
|
2273
|
+
exports.GetProfileRequest$ = GetProfileRequest$;
|
|
2274
|
+
exports.GetProfileResponse$ = GetProfileResponse$;
|
|
2275
|
+
exports.GetTransformer$ = GetTransformer$;
|
|
2227
2276
|
exports.GetTransformerCommand = GetTransformerCommand;
|
|
2277
|
+
exports.GetTransformerJob$ = GetTransformerJob$;
|
|
2228
2278
|
exports.GetTransformerJobCommand = GetTransformerJobCommand;
|
|
2229
|
-
exports.
|
|
2279
|
+
exports.GetTransformerJobRequest$ = GetTransformerJobRequest$;
|
|
2280
|
+
exports.GetTransformerJobResponse$ = GetTransformerJobResponse$;
|
|
2281
|
+
exports.GetTransformerRequest$ = GetTransformerRequest$;
|
|
2282
|
+
exports.GetTransformerResponse$ = GetTransformerResponse$;
|
|
2283
|
+
exports.InboundEdiOptions$ = InboundEdiOptions$;
|
|
2284
|
+
exports.InputConversion$ = InputConversion$;
|
|
2285
|
+
exports.InputFileSource$ = InputFileSource$;
|
|
2286
|
+
exports.InternalServerException = InternalServerException;
|
|
2287
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2230
2288
|
exports.LineTerminator = LineTerminator;
|
|
2289
|
+
exports.ListCapabilities$ = ListCapabilities$;
|
|
2231
2290
|
exports.ListCapabilitiesCommand = ListCapabilitiesCommand;
|
|
2291
|
+
exports.ListCapabilitiesRequest$ = ListCapabilitiesRequest$;
|
|
2292
|
+
exports.ListCapabilitiesResponse$ = ListCapabilitiesResponse$;
|
|
2293
|
+
exports.ListPartnerships$ = ListPartnerships$;
|
|
2232
2294
|
exports.ListPartnershipsCommand = ListPartnershipsCommand;
|
|
2295
|
+
exports.ListPartnershipsRequest$ = ListPartnershipsRequest$;
|
|
2296
|
+
exports.ListPartnershipsResponse$ = ListPartnershipsResponse$;
|
|
2297
|
+
exports.ListProfiles$ = ListProfiles$;
|
|
2233
2298
|
exports.ListProfilesCommand = ListProfilesCommand;
|
|
2299
|
+
exports.ListProfilesRequest$ = ListProfilesRequest$;
|
|
2300
|
+
exports.ListProfilesResponse$ = ListProfilesResponse$;
|
|
2301
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2234
2302
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2303
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2304
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2305
|
+
exports.ListTransformers$ = ListTransformers$;
|
|
2235
2306
|
exports.ListTransformersCommand = ListTransformersCommand;
|
|
2307
|
+
exports.ListTransformersRequest$ = ListTransformersRequest$;
|
|
2308
|
+
exports.ListTransformersResponse$ = ListTransformersResponse$;
|
|
2236
2309
|
exports.Logging = Logging;
|
|
2310
|
+
exports.Mapping$ = Mapping$;
|
|
2237
2311
|
exports.MappingTemplateLanguage = MappingTemplateLanguage;
|
|
2238
2312
|
exports.MappingType = MappingType;
|
|
2239
|
-
exports.
|
|
2240
|
-
exports.
|
|
2313
|
+
exports.OutboundEdiOptions$ = OutboundEdiOptions$;
|
|
2314
|
+
exports.OutputConversion$ = OutputConversion$;
|
|
2315
|
+
exports.OutputSampleFileSource$ = OutputSampleFileSource$;
|
|
2316
|
+
exports.PartnershipSummary$ = PartnershipSummary$;
|
|
2317
|
+
exports.ProfileSummary$ = ProfileSummary$;
|
|
2318
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2319
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2320
|
+
exports.S3Location$ = S3Location$;
|
|
2321
|
+
exports.SampleDocumentKeys$ = SampleDocumentKeys$;
|
|
2322
|
+
exports.SampleDocuments$ = SampleDocuments$;
|
|
2323
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2324
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2325
|
+
exports.StartTransformerJob$ = StartTransformerJob$;
|
|
2241
2326
|
exports.StartTransformerJobCommand = StartTransformerJobCommand;
|
|
2327
|
+
exports.StartTransformerJobRequest$ = StartTransformerJobRequest$;
|
|
2328
|
+
exports.StartTransformerJobResponse$ = StartTransformerJobResponse$;
|
|
2329
|
+
exports.Tag$ = Tag$;
|
|
2330
|
+
exports.TagResource$ = TagResource$;
|
|
2242
2331
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2332
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2333
|
+
exports.TemplateDetails$ = TemplateDetails$;
|
|
2334
|
+
exports.TestConversion$ = TestConversion$;
|
|
2243
2335
|
exports.TestConversionCommand = TestConversionCommand;
|
|
2336
|
+
exports.TestConversionRequest$ = TestConversionRequest$;
|
|
2337
|
+
exports.TestConversionResponse$ = TestConversionResponse$;
|
|
2338
|
+
exports.TestMapping$ = TestMapping$;
|
|
2244
2339
|
exports.TestMappingCommand = TestMappingCommand;
|
|
2340
|
+
exports.TestMappingRequest$ = TestMappingRequest$;
|
|
2341
|
+
exports.TestMappingResponse$ = TestMappingResponse$;
|
|
2342
|
+
exports.TestParsing$ = TestParsing$;
|
|
2245
2343
|
exports.TestParsingCommand = TestParsingCommand;
|
|
2246
|
-
exports.
|
|
2344
|
+
exports.TestParsingRequest$ = TestParsingRequest$;
|
|
2345
|
+
exports.TestParsingResponse$ = TestParsingResponse$;
|
|
2346
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2347
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2247
2348
|
exports.ToFormat = ToFormat;
|
|
2248
2349
|
exports.TransformerJobStatus = TransformerJobStatus;
|
|
2249
2350
|
exports.TransformerStatus = TransformerStatus;
|
|
2351
|
+
exports.TransformerSummary$ = TransformerSummary$;
|
|
2352
|
+
exports.UntagResource$ = UntagResource$;
|
|
2250
2353
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2354
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2355
|
+
exports.UpdateCapability$ = UpdateCapability$;
|
|
2251
2356
|
exports.UpdateCapabilityCommand = UpdateCapabilityCommand;
|
|
2357
|
+
exports.UpdateCapabilityRequest$ = UpdateCapabilityRequest$;
|
|
2358
|
+
exports.UpdateCapabilityResponse$ = UpdateCapabilityResponse$;
|
|
2359
|
+
exports.UpdatePartnership$ = UpdatePartnership$;
|
|
2252
2360
|
exports.UpdatePartnershipCommand = UpdatePartnershipCommand;
|
|
2361
|
+
exports.UpdatePartnershipRequest$ = UpdatePartnershipRequest$;
|
|
2362
|
+
exports.UpdatePartnershipResponse$ = UpdatePartnershipResponse$;
|
|
2363
|
+
exports.UpdateProfile$ = UpdateProfile$;
|
|
2253
2364
|
exports.UpdateProfileCommand = UpdateProfileCommand;
|
|
2365
|
+
exports.UpdateProfileRequest$ = UpdateProfileRequest$;
|
|
2366
|
+
exports.UpdateProfileResponse$ = UpdateProfileResponse$;
|
|
2367
|
+
exports.UpdateTransformer$ = UpdateTransformer$;
|
|
2254
2368
|
exports.UpdateTransformerCommand = UpdateTransformerCommand;
|
|
2255
|
-
exports.
|
|
2369
|
+
exports.UpdateTransformerRequest$ = UpdateTransformerRequest$;
|
|
2370
|
+
exports.UpdateTransformerResponse$ = UpdateTransformerResponse$;
|
|
2371
|
+
exports.ValidationException = ValidationException;
|
|
2372
|
+
exports.ValidationException$ = ValidationException$;
|
|
2256
2373
|
exports.WrapFormat = WrapFormat;
|
|
2374
|
+
exports.WrapOptions$ = WrapOptions$;
|
|
2375
|
+
exports.X12AcknowledgmentOptions$ = X12AcknowledgmentOptions$;
|
|
2376
|
+
exports.X12AdvancedOptions$ = X12AdvancedOptions$;
|
|
2377
|
+
exports.X12CodeListValidationRule$ = X12CodeListValidationRule$;
|
|
2378
|
+
exports.X12ControlNumbers$ = X12ControlNumbers$;
|
|
2379
|
+
exports.X12Delimiters$ = X12Delimiters$;
|
|
2380
|
+
exports.X12Details$ = X12Details$;
|
|
2381
|
+
exports.X12ElementLengthValidationRule$ = X12ElementLengthValidationRule$;
|
|
2382
|
+
exports.X12ElementRequirementValidationRule$ = X12ElementRequirementValidationRule$;
|
|
2383
|
+
exports.X12Envelope$ = X12Envelope$;
|
|
2257
2384
|
exports.X12FunctionalAcknowledgment = X12FunctionalAcknowledgment;
|
|
2385
|
+
exports.X12FunctionalGroupHeaders$ = X12FunctionalGroupHeaders$;
|
|
2258
2386
|
exports.X12GS05TimeFormat = X12GS05TimeFormat;
|
|
2387
|
+
exports.X12InboundEdiOptions$ = X12InboundEdiOptions$;
|
|
2388
|
+
exports.X12InterchangeControlHeaders$ = X12InterchangeControlHeaders$;
|
|
2389
|
+
exports.X12OutboundEdiHeaders$ = X12OutboundEdiHeaders$;
|
|
2259
2390
|
exports.X12SplitBy = X12SplitBy;
|
|
2391
|
+
exports.X12SplitOptions$ = X12SplitOptions$;
|
|
2260
2392
|
exports.X12TechnicalAcknowledgment = X12TechnicalAcknowledgment;
|
|
2261
2393
|
exports.X12TransactionSet = X12TransactionSet;
|
|
2394
|
+
exports.X12ValidationOptions$ = X12ValidationOptions$;
|
|
2395
|
+
exports.X12ValidationRule$ = X12ValidationRule$;
|
|
2262
2396
|
exports.X12Version = X12Version;
|
|
2263
2397
|
exports.paginateListCapabilities = paginateListCapabilities;
|
|
2264
2398
|
exports.paginateListPartnerships = paginateListPartnerships;
|