@aws-sdk/client-invoicing 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.
Files changed (37) hide show
  1. package/dist-cjs/index.js +301 -210
  2. package/dist-cjs/runtimeConfig.shared.js +6 -6
  3. package/dist-es/commands/BatchGetInvoiceProfileCommand.js +2 -2
  4. package/dist-es/commands/CreateInvoiceUnitCommand.js +2 -2
  5. package/dist-es/commands/CreateProcurementPortalPreferenceCommand.js +2 -2
  6. package/dist-es/commands/DeleteInvoiceUnitCommand.js +2 -2
  7. package/dist-es/commands/DeleteProcurementPortalPreferenceCommand.js +2 -2
  8. package/dist-es/commands/GetInvoicePDFCommand.js +2 -2
  9. package/dist-es/commands/GetInvoiceUnitCommand.js +2 -2
  10. package/dist-es/commands/GetProcurementPortalPreferenceCommand.js +2 -2
  11. package/dist-es/commands/ListInvoiceSummariesCommand.js +2 -2
  12. package/dist-es/commands/ListInvoiceUnitsCommand.js +2 -2
  13. package/dist-es/commands/ListProcurementPortalPreferencesCommand.js +2 -2
  14. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  15. package/dist-es/commands/PutProcurementPortalPreferenceCommand.js +2 -2
  16. package/dist-es/commands/TagResourceCommand.js +2 -2
  17. package/dist-es/commands/UntagResourceCommand.js +2 -2
  18. package/dist-es/commands/UpdateInvoiceUnitCommand.js +2 -2
  19. package/dist-es/commands/UpdateProcurementPortalPreferenceStatusCommand.js +2 -2
  20. package/dist-es/index.js +1 -0
  21. package/dist-es/runtimeConfig.shared.js +6 -6
  22. package/dist-es/schemas/schemas_0.js +182 -182
  23. package/dist-types/InvoicingClient.d.ts +1 -10
  24. package/dist-types/index.d.ts +1 -0
  25. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  26. package/dist-types/runtimeConfig.d.ts +6 -2
  27. package/dist-types/runtimeConfig.native.d.ts +6 -2
  28. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  29. package/dist-types/schemas/schemas_0.d.ts +92 -113
  30. package/dist-types/ts3.4/InvoicingClient.d.ts +0 -4
  31. package/dist-types/ts3.4/index.d.ts +1 -0
  32. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  35. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  36. package/dist-types/ts3.4/schemas/schemas_0.d.ts +91 -114
  37. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -108,14 +108,14 @@ class InvoicingClient extends smithyClient.Client {
108
108
  }
109
109
  }
110
110
 
111
- let InvoicingServiceException$1 = class InvoicingServiceException extends smithyClient.ServiceException {
111
+ class InvoicingServiceException extends smithyClient.ServiceException {
112
112
  constructor(options) {
113
113
  super(options);
114
114
  Object.setPrototypeOf(this, InvoicingServiceException.prototype);
115
115
  }
116
- };
116
+ }
117
117
 
118
- let AccessDeniedException$1 = class AccessDeniedException extends InvoicingServiceException$1 {
118
+ class AccessDeniedException extends InvoicingServiceException {
119
119
  name = "AccessDeniedException";
120
120
  $fault = "client";
121
121
  resourceName;
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends InvoicingServi
128
128
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
129
129
  this.resourceName = opts.resourceName;
130
130
  }
131
- };
132
- let InternalServerException$1 = class InternalServerException extends InvoicingServiceException$1 {
131
+ }
132
+ class InternalServerException extends InvoicingServiceException {
133
133
  name = "InternalServerException";
134
134
  $fault = "server";
135
135
  retryAfterSeconds;
@@ -142,8 +142,8 @@ let InternalServerException$1 = class InternalServerException extends InvoicingS
142
142
  Object.setPrototypeOf(this, InternalServerException.prototype);
143
143
  this.retryAfterSeconds = opts.retryAfterSeconds;
144
144
  }
145
- };
146
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends InvoicingServiceException$1 {
145
+ }
146
+ class ResourceNotFoundException extends InvoicingServiceException {
147
147
  name = "ResourceNotFoundException";
148
148
  $fault = "client";
149
149
  resourceName;
@@ -156,8 +156,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Invoic
156
156
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
157
157
  this.resourceName = opts.resourceName;
158
158
  }
159
- };
160
- let ThrottlingException$1 = class ThrottlingException extends InvoicingServiceException$1 {
159
+ }
160
+ class ThrottlingException extends InvoicingServiceException {
161
161
  name = "ThrottlingException";
162
162
  $fault = "client";
163
163
  constructor(opts) {
@@ -168,8 +168,8 @@ let ThrottlingException$1 = class ThrottlingException extends InvoicingServiceEx
168
168
  });
169
169
  Object.setPrototypeOf(this, ThrottlingException.prototype);
170
170
  }
171
- };
172
- let ValidationException$1 = class ValidationException extends InvoicingServiceException$1 {
171
+ }
172
+ class ValidationException extends InvoicingServiceException {
173
173
  name = "ValidationException";
174
174
  $fault = "client";
175
175
  resourceName;
@@ -186,8 +186,8 @@ let ValidationException$1 = class ValidationException extends InvoicingServiceEx
186
186
  this.reason = opts.reason;
187
187
  this.fieldList = opts.fieldList;
188
188
  }
189
- };
190
- let ConflictException$1 = class ConflictException extends InvoicingServiceException$1 {
189
+ }
190
+ class ConflictException extends InvoicingServiceException {
191
191
  name = "ConflictException";
192
192
  $fault = "client";
193
193
  resourceId;
@@ -202,8 +202,8 @@ let ConflictException$1 = class ConflictException extends InvoicingServiceExcept
202
202
  this.resourceId = opts.resourceId;
203
203
  this.resourceType = opts.resourceType;
204
204
  }
205
- };
206
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends InvoicingServiceException$1 {
205
+ }
206
+ class ServiceQuotaExceededException extends InvoicingServiceException {
207
207
  name = "ServiceQuotaExceededException";
208
208
  $fault = "client";
209
209
  constructor(opts) {
@@ -214,7 +214,7 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
214
214
  });
215
215
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
216
216
  }
217
- };
217
+ }
218
218
 
219
219
  const _A = "Amount";
220
220
  const _AAI = "AwsAccountId";
@@ -436,7 +436,7 @@ const _s = "server";
436
436
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.invoicing";
437
437
  const n0 = "com.amazonaws.invoicing";
438
438
  var SensitiveBasicStringWithoutSpace = [0, n0, _SBSWS, 8, 0];
439
- var AccessDeniedException = [
439
+ var AccessDeniedException$ = [
440
440
  -3,
441
441
  n0,
442
442
  _ADE,
@@ -444,19 +444,19 @@ var AccessDeniedException = [
444
444
  [_m, _rN],
445
445
  [0, 0],
446
446
  ];
447
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
448
- var AmountBreakdown = [
447
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
448
+ var AmountBreakdown$ = [
449
449
  3,
450
450
  n0,
451
451
  _AB,
452
452
  0,
453
453
  [_STA, _D, _T, _F],
454
- [0, () => DiscountsBreakdown, () => TaxesBreakdown, () => FeesBreakdown],
454
+ [0, () => DiscountsBreakdown$, () => TaxesBreakdown$, () => FeesBreakdown$],
455
455
  ];
456
- var BatchGetInvoiceProfileRequest = [3, n0, _BGIPR, 0, [_AI], [64 | 0]];
457
- var BatchGetInvoiceProfileResponse = [3, n0, _BGIPRa, 0, [_P], [[() => ProfileList, 0]]];
458
- var BillingPeriod = [3, n0, _BP, 0, [_M, _Y], [1, 1]];
459
- var ConflictException = [
456
+ var BatchGetInvoiceProfileRequest$ = [3, n0, _BGIPR, 0, [_AI], [64 | 0]];
457
+ var BatchGetInvoiceProfileResponse$ = [3, n0, _BGIPRa, 0, [_P], [[() => ProfileList, 0]]];
458
+ var BillingPeriod$ = [3, n0, _BP, 0, [_M, _Y], [1, 1]];
459
+ var ConflictException$ = [
460
460
  -3,
461
461
  n0,
462
462
  _CE,
@@ -464,18 +464,18 @@ var ConflictException = [
464
464
  [_m, _rI, _rT],
465
465
  [0, 0, 0],
466
466
  ];
467
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
468
- var Contact = [3, n0, _C, 8, [_N, _E], [0, 0]];
469
- var CreateInvoiceUnitRequest = [
467
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
468
+ var Contact$ = [3, n0, _C, 8, [_N, _E], [0, 0]];
469
+ var CreateInvoiceUnitRequest$ = [
470
470
  3,
471
471
  n0,
472
472
  _CIUR,
473
473
  0,
474
474
  [_N, _IR, _De, _TID, _R, _RT],
475
- [0, 0, 0, 2, () => InvoiceUnitRule, () => ResourceTagList],
475
+ [0, 0, 0, 2, () => InvoiceUnitRule$, () => ResourceTagList],
476
476
  ];
477
- var CreateInvoiceUnitResponse = [3, n0, _CIURr, 0, [_IUA], [0]];
478
- var CreateProcurementPortalPreferenceRequest = [
477
+ var CreateInvoiceUnitResponse$ = [3, n0, _CIURr, 0, [_IUA], [0]];
478
+ var CreateProcurementPortalPreferenceRequest$ = [
479
479
  3,
480
480
  n0,
481
481
  _CPPPR,
@@ -487,26 +487,26 @@ var CreateProcurementPortalPreferenceRequest = [
487
487
  0,
488
488
  0,
489
489
  0,
490
- () => ProcurementPortalPreferenceSelector,
490
+ () => ProcurementPortalPreferenceSelector$,
491
491
  [() => SensitiveBasicStringWithoutSpace, 0],
492
492
  0,
493
- () => TestEnvPreferenceInput,
493
+ () => TestEnvPreferenceInput$,
494
494
  2,
495
- () => EinvoiceDeliveryPreference,
495
+ () => EinvoiceDeliveryPreference$,
496
496
  2,
497
497
  [() => Contacts, 0],
498
498
  () => ResourceTagList,
499
499
  [0, 4],
500
500
  ],
501
501
  ];
502
- var CreateProcurementPortalPreferenceResponse = [3, n0, _CPPPRr, 0, [_PPPA], [0]];
503
- var CurrencyExchangeDetails = [3, n0, _CED, 0, [_SCC, _TCC, _Ra], [0, 0, 0]];
504
- var DateInterval = [3, n0, _DI, 0, [_SDt, _ED], [4, 4]];
505
- var DeleteInvoiceUnitRequest = [3, n0, _DIUR, 0, [_IUA], [0]];
506
- var DeleteInvoiceUnitResponse = [3, n0, _DIURe, 0, [_IUA], [0]];
507
- var DeleteProcurementPortalPreferenceRequest = [3, n0, _DPPPR, 0, [_PPPA], [0]];
508
- var DeleteProcurementPortalPreferenceResponse = [3, n0, _DPPPRe, 0, [_PPPA], [0]];
509
- var DiscountsBreakdown = [
502
+ var CreateProcurementPortalPreferenceResponse$ = [3, n0, _CPPPRr, 0, [_PPPA], [0]];
503
+ var CurrencyExchangeDetails$ = [3, n0, _CED, 0, [_SCC, _TCC, _Ra], [0, 0, 0]];
504
+ var DateInterval$ = [3, n0, _DI, 0, [_SDt, _ED], [4, 4]];
505
+ var DeleteInvoiceUnitRequest$ = [3, n0, _DIUR, 0, [_IUA], [0]];
506
+ var DeleteInvoiceUnitResponse$ = [3, n0, _DIURe, 0, [_IUA], [0]];
507
+ var DeleteProcurementPortalPreferenceRequest$ = [3, n0, _DPPPR, 0, [_PPPA], [0]];
508
+ var DeleteProcurementPortalPreferenceResponse$ = [3, n0, _DPPPRe, 0, [_PPPA], [0]];
509
+ var DiscountsBreakdown$ = [
510
510
  3,
511
511
  n0,
512
512
  _DB,
@@ -514,8 +514,8 @@ var DiscountsBreakdown = [
514
514
  [_B, _TA],
515
515
  [() => DiscountsBreakdownAmountList, 0],
516
516
  ];
517
- var DiscountsBreakdownAmount = [3, n0, _DBA, 0, [_De, _A, _Ra], [0, 0, 0]];
518
- var EinvoiceDeliveryPreference = [
517
+ var DiscountsBreakdownAmount$ = [3, n0, _DBA, 0, [_De, _A, _Ra], [0, 0, 0]];
518
+ var EinvoiceDeliveryPreference$ = [
519
519
  3,
520
520
  n0,
521
521
  _EDP,
@@ -523,31 +523,31 @@ var EinvoiceDeliveryPreference = [
523
523
  [_EDDT, _EDAT, _Pr, _PODS, _CTM, _EDAD],
524
524
  [64 | 0, 64 | 0, 0, () => PurchaseOrderDataSources, 0, 4],
525
525
  ];
526
- var Entity = [3, n0, _En, 0, [_IE], [0]];
527
- var FeesBreakdown = [3, n0, _FB, 0, [_B, _TA], [() => FeesBreakdownAmountList, 0]];
528
- var FeesBreakdownAmount = [3, n0, _FBA, 0, [_De, _A, _Ra], [0, 0, 0]];
529
- var Filters = [3, n0, _Fi, 0, [_Na, _IRn, _Ac, _BSA], [64 | 0, 64 | 0, 64 | 0, 64 | 0]];
530
- var GetInvoicePDFRequest = [3, n0, _GIPDFR, 0, [_II], [0]];
531
- var GetInvoicePDFResponse = [3, n0, _GIPDFRe, 0, [_IPDF], [() => InvoicePDF]];
532
- var GetInvoiceUnitRequest = [3, n0, _GIUR, 0, [_IUA, _AO], [0, 4]];
533
- var GetInvoiceUnitResponse = [
526
+ var Entity$ = [3, n0, _En, 0, [_IE], [0]];
527
+ var FeesBreakdown$ = [3, n0, _FB, 0, [_B, _TA], [() => FeesBreakdownAmountList, 0]];
528
+ var FeesBreakdownAmount$ = [3, n0, _FBA, 0, [_De, _A, _Ra], [0, 0, 0]];
529
+ var Filters$ = [3, n0, _Fi, 0, [_Na, _IRn, _Ac, _BSA], [64 | 0, 64 | 0, 64 | 0, 64 | 0]];
530
+ var GetInvoicePDFRequest$ = [3, n0, _GIPDFR, 0, [_II], [0]];
531
+ var GetInvoicePDFResponse$ = [3, n0, _GIPDFRe, 0, [_IPDF], [() => InvoicePDF$]];
532
+ var GetInvoiceUnitRequest$ = [3, n0, _GIUR, 0, [_IUA, _AO], [0, 4]];
533
+ var GetInvoiceUnitResponse$ = [
534
534
  3,
535
535
  n0,
536
536
  _GIURe,
537
537
  0,
538
538
  [_IUA, _IR, _N, _De, _TID, _R, _LM],
539
- [0, 0, 0, 0, 2, () => InvoiceUnitRule, 4],
539
+ [0, 0, 0, 0, 2, () => InvoiceUnitRule$, 4],
540
540
  ];
541
- var GetProcurementPortalPreferenceRequest = [3, n0, _GPPPR, 0, [_PPPA], [0]];
542
- var GetProcurementPortalPreferenceResponse = [
541
+ var GetProcurementPortalPreferenceRequest$ = [3, n0, _GPPPR, 0, [_PPPA], [0]];
542
+ var GetProcurementPortalPreferenceResponse$ = [
543
543
  3,
544
544
  n0,
545
545
  _GPPPRe,
546
546
  0,
547
547
  [_PPP],
548
- [[() => ProcurementPortalPreference, 0]],
548
+ [[() => ProcurementPortalPreference$, 0]],
549
549
  ];
550
- var InternalServerException = [
550
+ var InternalServerException$ = [
551
551
  -3,
552
552
  n0,
553
553
  _ISE,
@@ -555,16 +555,16 @@ var InternalServerException = [
555
555
  [_rAS, _m],
556
556
  [[1, { [_hH]: _RA }], 0],
557
557
  ];
558
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
559
- var InvoiceCurrencyAmount = [
558
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
559
+ var InvoiceCurrencyAmount$ = [
560
560
  3,
561
561
  n0,
562
562
  _ICA,
563
563
  0,
564
564
  [_TA, _TABT, _CC, _AB, _CED],
565
- [0, 0, 0, () => AmountBreakdown, () => CurrencyExchangeDetails],
565
+ [0, 0, 0, () => AmountBreakdown$, () => CurrencyExchangeDetails$],
566
566
  ];
567
- var InvoicePDF = [
567
+ var InvoicePDF$ = [
568
568
  3,
569
569
  n0,
570
570
  _IPDF,
@@ -572,7 +572,7 @@ var InvoicePDF = [
572
572
  [_II, _DU, _DUED, _SDu],
573
573
  [0, 0, 4, () => SupplementalDocuments],
574
574
  ];
575
- var InvoiceProfile = [
575
+ var InvoiceProfile$ = [
576
576
  3,
577
577
  n0,
578
578
  _IP,
@@ -581,22 +581,22 @@ var InvoiceProfile = [
581
581
  [
582
582
  0,
583
583
  0,
584
- [() => ReceiverAddress, 0],
584
+ [() => ReceiverAddress$, 0],
585
585
  [() => SensitiveBasicStringWithoutSpace, 0],
586
586
  0,
587
587
  [() => SensitiveBasicStringWithoutSpace, 0],
588
588
  ],
589
589
  ];
590
- var InvoiceSummariesFilter = [
590
+ var InvoiceSummariesFilter$ = [
591
591
  3,
592
592
  n0,
593
593
  _ISF,
594
594
  0,
595
595
  [_TI, _BP, _IE],
596
- [() => DateInterval, () => BillingPeriod, 0],
596
+ [() => DateInterval$, () => BillingPeriod$, 0],
597
597
  ];
598
- var InvoiceSummariesSelector = [3, n0, _ISS, 0, [_RTe, _V], [0, 0]];
599
- var InvoiceSummary = [
598
+ var InvoiceSummariesSelector$ = [3, n0, _ISS, 0, [_RTe, _V], [0, 0]];
599
+ var InvoiceSummary$ = [
600
600
  3,
601
601
  n0,
602
602
  _IS,
@@ -607,34 +607,34 @@ var InvoiceSummary = [
607
607
  0,
608
608
  4,
609
609
  4,
610
- () => Entity,
611
- () => BillingPeriod,
610
+ () => Entity$,
611
+ () => BillingPeriod$,
612
612
  0,
613
613
  0,
614
614
  0,
615
- () => InvoiceCurrencyAmount,
616
- () => InvoiceCurrencyAmount,
617
- () => InvoiceCurrencyAmount,
615
+ () => InvoiceCurrencyAmount$,
616
+ () => InvoiceCurrencyAmount$,
617
+ () => InvoiceCurrencyAmount$,
618
618
  ],
619
619
  ];
620
- var InvoiceUnit = [
620
+ var InvoiceUnit$ = [
621
621
  3,
622
622
  n0,
623
623
  _IU,
624
624
  0,
625
625
  [_IUA, _IR, _N, _De, _TID, _R, _LM],
626
- [0, 0, 0, 0, 2, () => InvoiceUnitRule, 4],
626
+ [0, 0, 0, 0, 2, () => InvoiceUnitRule$, 4],
627
627
  ];
628
- var InvoiceUnitRule = [3, n0, _IUR, 0, [_LA, _BSA], [64 | 0, 64 | 0]];
629
- var ListInvoiceSummariesRequest = [
628
+ var InvoiceUnitRule$ = [3, n0, _IUR, 0, [_LA, _BSA], [64 | 0, 64 | 0]];
629
+ var ListInvoiceSummariesRequest$ = [
630
630
  3,
631
631
  n0,
632
632
  _LISR,
633
633
  0,
634
634
  [_S, _Fil, _NT, _MR],
635
- [() => InvoiceSummariesSelector, () => InvoiceSummariesFilter, 0, 1],
635
+ [() => InvoiceSummariesSelector$, () => InvoiceSummariesFilter$, 0, 1],
636
636
  ];
637
- var ListInvoiceSummariesResponse = [
637
+ var ListInvoiceSummariesResponse$ = [
638
638
  3,
639
639
  n0,
640
640
  _LISRi,
@@ -642,17 +642,17 @@ var ListInvoiceSummariesResponse = [
642
642
  [_ISn, _NT],
643
643
  [() => InvoiceSummaries, 0],
644
644
  ];
645
- var ListInvoiceUnitsRequest = [
645
+ var ListInvoiceUnitsRequest$ = [
646
646
  3,
647
647
  n0,
648
648
  _LIUR,
649
649
  0,
650
650
  [_Fi, _NT, _MR, _AO],
651
- [() => Filters, 0, 1, 4],
651
+ [() => Filters$, 0, 1, 4],
652
652
  ];
653
- var ListInvoiceUnitsResponse = [3, n0, _LIURi, 0, [_IUn, _NT], [() => InvoiceUnits, 0]];
654
- var ListProcurementPortalPreferencesRequest = [3, n0, _LPPPR, 0, [_NT, _MR], [0, 1]];
655
- var ListProcurementPortalPreferencesResponse = [
653
+ var ListInvoiceUnitsResponse$ = [3, n0, _LIURi, 0, [_IUn, _NT], [() => InvoiceUnits, 0]];
654
+ var ListProcurementPortalPreferencesRequest$ = [3, n0, _LPPPR, 0, [_NT, _MR], [0, 1]];
655
+ var ListProcurementPortalPreferencesResponse$ = [
656
656
  3,
657
657
  n0,
658
658
  _LPPPRi,
@@ -660,9 +660,9 @@ var ListProcurementPortalPreferencesResponse = [
660
660
  [_PPPr, _NT],
661
661
  [() => ProcurementPortalPreferenceSummaries, 0],
662
662
  ];
663
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RAes], [0]];
664
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_RT], [() => ResourceTagList]];
665
- var ProcurementPortalPreference = [
663
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RAes], [0]];
664
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_RT], [() => ResourceTagList]];
665
+ var ProcurementPortalPreference$ = [
666
666
  3,
667
667
  n0,
668
668
  _PPP,
@@ -700,13 +700,13 @@ var ProcurementPortalPreference = [
700
700
  0,
701
701
  0,
702
702
  0,
703
- () => ProcurementPortalPreferenceSelector,
703
+ () => ProcurementPortalPreferenceSelector$,
704
704
  0,
705
705
  0,
706
706
  0,
707
- () => TestEnvPreference,
707
+ () => TestEnvPreference$,
708
708
  2,
709
- () => EinvoiceDeliveryPreference,
709
+ () => EinvoiceDeliveryPreference$,
710
710
  2,
711
711
  [() => Contacts, 0],
712
712
  0,
@@ -718,7 +718,7 @@ var ProcurementPortalPreference = [
718
718
  4,
719
719
  ],
720
720
  ];
721
- var ProcurementPortalPreferenceSelector = [
721
+ var ProcurementPortalPreferenceSelector$ = [
722
722
  3,
723
723
  n0,
724
724
  _PPPS,
@@ -726,16 +726,16 @@ var ProcurementPortalPreferenceSelector = [
726
726
  [_IUAn, _SOR],
727
727
  [64 | 0, 64 | 0],
728
728
  ];
729
- var ProcurementPortalPreferenceSummary = [
729
+ var ProcurementPortalPreferenceSummary$ = [
730
730
  3,
731
731
  n0,
732
732
  _PPPSr,
733
733
  0,
734
734
  [_AAI, _PPPA, _PPN, _BD, _BI, _SD, _SI, _S, _EDE, _PORE, _EDPS, _EDPSR, _PORPS, _PORPSR, _Ve, _CD, _LUD],
735
- [0, 0, 0, 0, 0, 0, 0, () => ProcurementPortalPreferenceSelector, 2, 2, 0, 0, 0, 0, 1, 4, 4],
735
+ [0, 0, 0, 0, 0, 0, 0, () => ProcurementPortalPreferenceSelector$, 2, 2, 0, 0, 0, 0, 1, 4, 4],
736
736
  ];
737
- var PurchaseOrderDataSource = [3, n0, _PODSu, 0, [_EDDTi, _PODST], [0, 0]];
738
- var PutProcurementPortalPreferenceRequest = [
737
+ var PurchaseOrderDataSource$ = [3, n0, _PODSu, 0, [_EDDTi, _PODST], [0, 0]];
738
+ var PutProcurementPortalPreferenceRequest$ = [
739
739
  3,
740
740
  n0,
741
741
  _PPPPR,
@@ -743,18 +743,18 @@ var PutProcurementPortalPreferenceRequest = [
743
743
  [_PPPA, _S, _PPSS, _PPIE, _TEP, _EDE, _EDP, _PORE, _Co],
744
744
  [
745
745
  0,
746
- () => ProcurementPortalPreferenceSelector,
746
+ () => ProcurementPortalPreferenceSelector$,
747
747
  [() => SensitiveBasicStringWithoutSpace, 0],
748
748
  0,
749
- () => TestEnvPreferenceInput,
749
+ () => TestEnvPreferenceInput$,
750
750
  2,
751
- () => EinvoiceDeliveryPreference,
751
+ () => EinvoiceDeliveryPreference$,
752
752
  2,
753
753
  [() => Contacts, 0],
754
754
  ],
755
755
  ];
756
- var PutProcurementPortalPreferenceResponse = [3, n0, _PPPPRu, 0, [_PPPA], [0]];
757
- var ReceiverAddress = [
756
+ var PutProcurementPortalPreferenceResponse$ = [3, n0, _PPPPRu, 0, [_PPPA], [0]];
757
+ var ReceiverAddress$ = [
758
758
  3,
759
759
  n0,
760
760
  _RAe,
@@ -762,7 +762,7 @@ var ReceiverAddress = [
762
762
  [_AL, _ALd, _ALdd, _DOC, _Ci, _SORt, _CCo, _CN, _PC],
763
763
  [0, 0, 0, 0, 0, 0, 0, 0, 0],
764
764
  ];
765
- var ResourceNotFoundException = [
765
+ var ResourceNotFoundException$ = [
766
766
  -3,
767
767
  n0,
768
768
  _RNFE,
@@ -770,9 +770,9 @@ var ResourceNotFoundException = [
770
770
  [_m, _rN],
771
771
  [0, 0],
772
772
  ];
773
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
774
- var ResourceTag = [3, n0, _RTes, 0, [_K, _V], [0, 0]];
775
- var ServiceQuotaExceededException = [
773
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
774
+ var ResourceTag$ = [3, n0, _RTes, 0, [_K, _V], [0, 0]];
775
+ var ServiceQuotaExceededException$ = [
776
776
  -3,
777
777
  n0,
778
778
  _SQEE,
@@ -780,13 +780,13 @@ var ServiceQuotaExceededException = [
780
780
  [_m],
781
781
  [0],
782
782
  ];
783
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
784
- var SupplementalDocument = [3, n0, _SDup, 0, [_DU, _DUED], [0, 4]];
785
- var TagResourceRequest = [3, n0, _TRR, 0, [_RAes, _RT], [0, () => ResourceTagList]];
786
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
787
- var TaxesBreakdown = [3, n0, _TB, 0, [_B, _TA], [() => TaxesBreakdownAmountList, 0]];
788
- var TaxesBreakdownAmount = [3, n0, _TBA, 0, [_De, _A, _Ra], [0, 0, 0]];
789
- var TestEnvPreference = [
783
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
784
+ var SupplementalDocument$ = [3, n0, _SDup, 0, [_DU, _DUED], [0, 4]];
785
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_RAes, _RT], [0, () => ResourceTagList]];
786
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
787
+ var TaxesBreakdown$ = [3, n0, _TB, 0, [_B, _TA], [() => TaxesBreakdownAmountList, 0]];
788
+ var TaxesBreakdownAmount$ = [3, n0, _TBA, 0, [_De, _A, _Ra], [0, 0, 0]];
789
+ var TestEnvPreference$ = [
790
790
  3,
791
791
  n0,
792
792
  _TEP,
@@ -794,7 +794,7 @@ var TestEnvPreference = [
794
794
  [_BD, _BI, _SD, _SI, _PPSS, _PPIE, _POREu],
795
795
  [0, 0, 0, 0, 0, 0, 0],
796
796
  ];
797
- var TestEnvPreferenceInput = [
797
+ var TestEnvPreferenceInput$ = [
798
798
  3,
799
799
  n0,
800
800
  _TEPI,
@@ -802,7 +802,7 @@ var TestEnvPreferenceInput = [
802
802
  [_BD, _BI, _SD, _SI, _PPSS, _PPIE],
803
803
  [0, 0, 0, 0, 0, 0],
804
804
  ];
805
- var ThrottlingException = [
805
+ var ThrottlingException$ = [
806
806
  -3,
807
807
  n0,
808
808
  _TE,
@@ -810,19 +810,19 @@ var ThrottlingException = [
810
810
  [_m],
811
811
  [0],
812
812
  ];
813
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
814
- var UntagResourceRequest = [3, n0, _URR, 0, [_RAes, _RTK], [0, 64 | 0]];
815
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
816
- var UpdateInvoiceUnitRequest = [
813
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
814
+ var UntagResourceRequest$ = [3, n0, _URR, 0, [_RAes, _RTK], [0, 64 | 0]];
815
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
816
+ var UpdateInvoiceUnitRequest$ = [
817
817
  3,
818
818
  n0,
819
819
  _UIUR,
820
820
  0,
821
821
  [_IUA, _De, _TID, _R],
822
- [0, 0, 2, () => InvoiceUnitRule],
822
+ [0, 0, 2, () => InvoiceUnitRule$],
823
823
  ];
824
- var UpdateInvoiceUnitResponse = [3, n0, _UIURp, 0, [_IUA], [0]];
825
- var UpdateProcurementPortalPreferenceStatusRequest = [
824
+ var UpdateInvoiceUnitResponse$ = [3, n0, _UIURp, 0, [_IUA], [0]];
825
+ var UpdateProcurementPortalPreferenceStatusRequest$ = [
826
826
  3,
827
827
  n0,
828
828
  _UPPPSR,
@@ -830,8 +830,8 @@ var UpdateProcurementPortalPreferenceStatusRequest = [
830
830
  [_PPPA, _EDPS, _EDPSR, _PORPS, _PORPSR],
831
831
  [0, 0, 0, 0, 0],
832
832
  ];
833
- var UpdateProcurementPortalPreferenceStatusResponse = [3, n0, _UPPPSRp, 0, [_PPPA], [0]];
834
- var ValidationException = [
833
+ var UpdateProcurementPortalPreferenceStatusResponse$ = [3, n0, _UPPPSRp, 0, [_PPPA], [0]];
834
+ var ValidationException$ = [
835
835
  -3,
836
836
  n0,
837
837
  _VE,
@@ -839,156 +839,156 @@ var ValidationException = [
839
839
  [_m, _rN, _r, _fL],
840
840
  [0, 0, 0, () => ValidationExceptionFieldList],
841
841
  ];
842
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
843
- var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
844
- var InvoicingServiceException = [-3, _sm, "InvoicingServiceException", 0, [], []];
845
- schema.TypeRegistry.for(_sm).registerError(InvoicingServiceException, InvoicingServiceException$1);
846
- var Contacts = [1, n0, _Co, 0, [() => Contact, 0]];
847
- var DiscountsBreakdownAmountList = [1, n0, _DBAL, 0, () => DiscountsBreakdownAmount];
848
- var FeesBreakdownAmountList = [1, n0, _FBAL, 0, () => FeesBreakdownAmount];
849
- var InvoiceSummaries = [1, n0, _ISn, 0, () => InvoiceSummary];
850
- var InvoiceUnits = [1, n0, _IUn, 0, () => InvoiceUnit];
842
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
843
+ var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
844
+ var InvoicingServiceException$ = [-3, _sm, "InvoicingServiceException", 0, [], []];
845
+ schema.TypeRegistry.for(_sm).registerError(InvoicingServiceException$, InvoicingServiceException);
846
+ var Contacts = [1, n0, _Co, 0, [() => Contact$, 0]];
847
+ var DiscountsBreakdownAmountList = [1, n0, _DBAL, 0, () => DiscountsBreakdownAmount$];
848
+ var FeesBreakdownAmountList = [1, n0, _FBAL, 0, () => FeesBreakdownAmount$];
849
+ var InvoiceSummaries = [1, n0, _ISn, 0, () => InvoiceSummary$];
850
+ var InvoiceUnits = [1, n0, _IUn, 0, () => InvoiceUnit$];
851
851
  var ProcurementPortalPreferenceSummaries = [
852
852
  1,
853
853
  n0,
854
854
  _PPPSro,
855
855
  0,
856
- () => ProcurementPortalPreferenceSummary,
856
+ () => ProcurementPortalPreferenceSummary$,
857
857
  ];
858
- var ProfileList = [1, n0, _PL, 0, [() => InvoiceProfile, 0]];
859
- var PurchaseOrderDataSources = [1, n0, _PODS, 0, () => PurchaseOrderDataSource];
860
- var ResourceTagList = [1, n0, _RTL, 0, () => ResourceTag];
861
- var SupplementalDocuments = [1, n0, _SDu, 0, () => SupplementalDocument];
862
- var TaxesBreakdownAmountList = [1, n0, _TBAL, 0, () => TaxesBreakdownAmount];
863
- var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
864
- var BatchGetInvoiceProfile = [
858
+ var ProfileList = [1, n0, _PL, 0, [() => InvoiceProfile$, 0]];
859
+ var PurchaseOrderDataSources = [1, n0, _PODS, 0, () => PurchaseOrderDataSource$];
860
+ var ResourceTagList = [1, n0, _RTL, 0, () => ResourceTag$];
861
+ var SupplementalDocuments = [1, n0, _SDu, 0, () => SupplementalDocument$];
862
+ var TaxesBreakdownAmountList = [1, n0, _TBAL, 0, () => TaxesBreakdownAmount$];
863
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
864
+ var BatchGetInvoiceProfile$ = [
865
865
  9,
866
866
  n0,
867
867
  _BGIP,
868
868
  0,
869
- () => BatchGetInvoiceProfileRequest,
870
- () => BatchGetInvoiceProfileResponse,
869
+ () => BatchGetInvoiceProfileRequest$,
870
+ () => BatchGetInvoiceProfileResponse$,
871
871
  ];
872
- var CreateInvoiceUnit = [
872
+ var CreateInvoiceUnit$ = [
873
873
  9,
874
874
  n0,
875
875
  _CIU,
876
876
  0,
877
- () => CreateInvoiceUnitRequest,
878
- () => CreateInvoiceUnitResponse,
877
+ () => CreateInvoiceUnitRequest$,
878
+ () => CreateInvoiceUnitResponse$,
879
879
  ];
880
- var CreateProcurementPortalPreference = [
880
+ var CreateProcurementPortalPreference$ = [
881
881
  9,
882
882
  n0,
883
883
  _CPPP,
884
884
  2,
885
- () => CreateProcurementPortalPreferenceRequest,
886
- () => CreateProcurementPortalPreferenceResponse,
885
+ () => CreateProcurementPortalPreferenceRequest$,
886
+ () => CreateProcurementPortalPreferenceResponse$,
887
887
  ];
888
- var DeleteInvoiceUnit = [
888
+ var DeleteInvoiceUnit$ = [
889
889
  9,
890
890
  n0,
891
891
  _DIU,
892
892
  0,
893
- () => DeleteInvoiceUnitRequest,
894
- () => DeleteInvoiceUnitResponse,
893
+ () => DeleteInvoiceUnitRequest$,
894
+ () => DeleteInvoiceUnitResponse$,
895
895
  ];
896
- var DeleteProcurementPortalPreference = [
896
+ var DeleteProcurementPortalPreference$ = [
897
897
  9,
898
898
  n0,
899
899
  _DPPP,
900
900
  0,
901
- () => DeleteProcurementPortalPreferenceRequest,
902
- () => DeleteProcurementPortalPreferenceResponse,
901
+ () => DeleteProcurementPortalPreferenceRequest$,
902
+ () => DeleteProcurementPortalPreferenceResponse$,
903
903
  ];
904
- var GetInvoicePDF = [
904
+ var GetInvoicePDF$ = [
905
905
  9,
906
906
  n0,
907
907
  _GIPDF,
908
908
  0,
909
- () => GetInvoicePDFRequest,
910
- () => GetInvoicePDFResponse,
909
+ () => GetInvoicePDFRequest$,
910
+ () => GetInvoicePDFResponse$,
911
911
  ];
912
- var GetInvoiceUnit = [
912
+ var GetInvoiceUnit$ = [
913
913
  9,
914
914
  n0,
915
915
  _GIU,
916
916
  0,
917
- () => GetInvoiceUnitRequest,
918
- () => GetInvoiceUnitResponse,
917
+ () => GetInvoiceUnitRequest$,
918
+ () => GetInvoiceUnitResponse$,
919
919
  ];
920
- var GetProcurementPortalPreference = [
920
+ var GetProcurementPortalPreference$ = [
921
921
  9,
922
922
  n0,
923
923
  _GPPP,
924
924
  0,
925
- () => GetProcurementPortalPreferenceRequest,
926
- () => GetProcurementPortalPreferenceResponse,
925
+ () => GetProcurementPortalPreferenceRequest$,
926
+ () => GetProcurementPortalPreferenceResponse$,
927
927
  ];
928
- var ListInvoiceSummaries = [
928
+ var ListInvoiceSummaries$ = [
929
929
  9,
930
930
  n0,
931
931
  _LIS,
932
932
  0,
933
- () => ListInvoiceSummariesRequest,
934
- () => ListInvoiceSummariesResponse,
933
+ () => ListInvoiceSummariesRequest$,
934
+ () => ListInvoiceSummariesResponse$,
935
935
  ];
936
- var ListInvoiceUnits = [
936
+ var ListInvoiceUnits$ = [
937
937
  9,
938
938
  n0,
939
939
  _LIU,
940
940
  0,
941
- () => ListInvoiceUnitsRequest,
942
- () => ListInvoiceUnitsResponse,
941
+ () => ListInvoiceUnitsRequest$,
942
+ () => ListInvoiceUnitsResponse$,
943
943
  ];
944
- var ListProcurementPortalPreferences = [
944
+ var ListProcurementPortalPreferences$ = [
945
945
  9,
946
946
  n0,
947
947
  _LPPP,
948
948
  0,
949
- () => ListProcurementPortalPreferencesRequest,
950
- () => ListProcurementPortalPreferencesResponse,
949
+ () => ListProcurementPortalPreferencesRequest$,
950
+ () => ListProcurementPortalPreferencesResponse$,
951
951
  ];
952
- var ListTagsForResource = [
952
+ var ListTagsForResource$ = [
953
953
  9,
954
954
  n0,
955
955
  _LTFR,
956
956
  0,
957
- () => ListTagsForResourceRequest,
958
- () => ListTagsForResourceResponse,
957
+ () => ListTagsForResourceRequest$,
958
+ () => ListTagsForResourceResponse$,
959
959
  ];
960
- var PutProcurementPortalPreference = [
960
+ var PutProcurementPortalPreference$ = [
961
961
  9,
962
962
  n0,
963
963
  _PPPP,
964
964
  0,
965
- () => PutProcurementPortalPreferenceRequest,
966
- () => PutProcurementPortalPreferenceResponse,
965
+ () => PutProcurementPortalPreferenceRequest$,
966
+ () => PutProcurementPortalPreferenceResponse$,
967
967
  ];
968
- var TagResource = [9, n0, _TR, 0, () => TagResourceRequest, () => TagResourceResponse];
969
- var UntagResource = [
968
+ var TagResource$ = [9, n0, _TR, 0, () => TagResourceRequest$, () => TagResourceResponse$];
969
+ var UntagResource$ = [
970
970
  9,
971
971
  n0,
972
972
  _UR,
973
973
  0,
974
- () => UntagResourceRequest,
975
- () => UntagResourceResponse,
974
+ () => UntagResourceRequest$,
975
+ () => UntagResourceResponse$,
976
976
  ];
977
- var UpdateInvoiceUnit = [
977
+ var UpdateInvoiceUnit$ = [
978
978
  9,
979
979
  n0,
980
980
  _UIU,
981
981
  0,
982
- () => UpdateInvoiceUnitRequest,
983
- () => UpdateInvoiceUnitResponse,
982
+ () => UpdateInvoiceUnitRequest$,
983
+ () => UpdateInvoiceUnitResponse$,
984
984
  ];
985
- var UpdateProcurementPortalPreferenceStatus = [
985
+ var UpdateProcurementPortalPreferenceStatus$ = [
986
986
  9,
987
987
  n0,
988
988
  _UPPPS,
989
989
  0,
990
- () => UpdateProcurementPortalPreferenceStatusRequest,
991
- () => UpdateProcurementPortalPreferenceStatusResponse,
990
+ () => UpdateProcurementPortalPreferenceStatusRequest$,
991
+ () => UpdateProcurementPortalPreferenceStatusResponse$,
992
992
  ];
993
993
 
994
994
  class BatchGetInvoiceProfileCommand extends smithyClient.Command
@@ -999,7 +999,7 @@ class BatchGetInvoiceProfileCommand extends smithyClient.Command
999
999
  })
1000
1000
  .s("Invoicing", "BatchGetInvoiceProfile", {})
1001
1001
  .n("InvoicingClient", "BatchGetInvoiceProfileCommand")
1002
- .sc(BatchGetInvoiceProfile)
1002
+ .sc(BatchGetInvoiceProfile$)
1003
1003
  .build() {
1004
1004
  }
1005
1005
 
@@ -1011,7 +1011,7 @@ class CreateInvoiceUnitCommand extends smithyClient.Command
1011
1011
  })
1012
1012
  .s("Invoicing", "CreateInvoiceUnit", {})
1013
1013
  .n("InvoicingClient", "CreateInvoiceUnitCommand")
1014
- .sc(CreateInvoiceUnit)
1014
+ .sc(CreateInvoiceUnit$)
1015
1015
  .build() {
1016
1016
  }
1017
1017
 
@@ -1023,7 +1023,7 @@ class CreateProcurementPortalPreferenceCommand extends smithyClient.Command
1023
1023
  })
1024
1024
  .s("Invoicing", "CreateProcurementPortalPreference", {})
1025
1025
  .n("InvoicingClient", "CreateProcurementPortalPreferenceCommand")
1026
- .sc(CreateProcurementPortalPreference)
1026
+ .sc(CreateProcurementPortalPreference$)
1027
1027
  .build() {
1028
1028
  }
1029
1029
 
@@ -1035,7 +1035,7 @@ class DeleteInvoiceUnitCommand extends smithyClient.Command
1035
1035
  })
1036
1036
  .s("Invoicing", "DeleteInvoiceUnit", {})
1037
1037
  .n("InvoicingClient", "DeleteInvoiceUnitCommand")
1038
- .sc(DeleteInvoiceUnit)
1038
+ .sc(DeleteInvoiceUnit$)
1039
1039
  .build() {
1040
1040
  }
1041
1041
 
@@ -1047,7 +1047,7 @@ class DeleteProcurementPortalPreferenceCommand extends smithyClient.Command
1047
1047
  })
1048
1048
  .s("Invoicing", "DeleteProcurementPortalPreference", {})
1049
1049
  .n("InvoicingClient", "DeleteProcurementPortalPreferenceCommand")
1050
- .sc(DeleteProcurementPortalPreference)
1050
+ .sc(DeleteProcurementPortalPreference$)
1051
1051
  .build() {
1052
1052
  }
1053
1053
 
@@ -1059,7 +1059,7 @@ class GetInvoicePDFCommand extends smithyClient.Command
1059
1059
  })
1060
1060
  .s("Invoicing", "GetInvoicePDF", {})
1061
1061
  .n("InvoicingClient", "GetInvoicePDFCommand")
1062
- .sc(GetInvoicePDF)
1062
+ .sc(GetInvoicePDF$)
1063
1063
  .build() {
1064
1064
  }
1065
1065
 
@@ -1071,7 +1071,7 @@ class GetInvoiceUnitCommand extends smithyClient.Command
1071
1071
  })
1072
1072
  .s("Invoicing", "GetInvoiceUnit", {})
1073
1073
  .n("InvoicingClient", "GetInvoiceUnitCommand")
1074
- .sc(GetInvoiceUnit)
1074
+ .sc(GetInvoiceUnit$)
1075
1075
  .build() {
1076
1076
  }
1077
1077
 
@@ -1083,7 +1083,7 @@ class GetProcurementPortalPreferenceCommand extends smithyClient.Command
1083
1083
  })
1084
1084
  .s("Invoicing", "GetProcurementPortalPreference", {})
1085
1085
  .n("InvoicingClient", "GetProcurementPortalPreferenceCommand")
1086
- .sc(GetProcurementPortalPreference)
1086
+ .sc(GetProcurementPortalPreference$)
1087
1087
  .build() {
1088
1088
  }
1089
1089
 
@@ -1095,7 +1095,7 @@ class ListInvoiceSummariesCommand extends smithyClient.Command
1095
1095
  })
1096
1096
  .s("Invoicing", "ListInvoiceSummaries", {})
1097
1097
  .n("InvoicingClient", "ListInvoiceSummariesCommand")
1098
- .sc(ListInvoiceSummaries)
1098
+ .sc(ListInvoiceSummaries$)
1099
1099
  .build() {
1100
1100
  }
1101
1101
 
@@ -1107,7 +1107,7 @@ class ListInvoiceUnitsCommand extends smithyClient.Command
1107
1107
  })
1108
1108
  .s("Invoicing", "ListInvoiceUnits", {})
1109
1109
  .n("InvoicingClient", "ListInvoiceUnitsCommand")
1110
- .sc(ListInvoiceUnits)
1110
+ .sc(ListInvoiceUnits$)
1111
1111
  .build() {
1112
1112
  }
1113
1113
 
@@ -1119,7 +1119,7 @@ class ListProcurementPortalPreferencesCommand extends smithyClient.Command
1119
1119
  })
1120
1120
  .s("Invoicing", "ListProcurementPortalPreferences", {})
1121
1121
  .n("InvoicingClient", "ListProcurementPortalPreferencesCommand")
1122
- .sc(ListProcurementPortalPreferences)
1122
+ .sc(ListProcurementPortalPreferences$)
1123
1123
  .build() {
1124
1124
  }
1125
1125
 
@@ -1131,7 +1131,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1131
1131
  })
1132
1132
  .s("Invoicing", "ListTagsForResource", {})
1133
1133
  .n("InvoicingClient", "ListTagsForResourceCommand")
1134
- .sc(ListTagsForResource)
1134
+ .sc(ListTagsForResource$)
1135
1135
  .build() {
1136
1136
  }
1137
1137
 
@@ -1143,7 +1143,7 @@ class PutProcurementPortalPreferenceCommand extends smithyClient.Command
1143
1143
  })
1144
1144
  .s("Invoicing", "PutProcurementPortalPreference", {})
1145
1145
  .n("InvoicingClient", "PutProcurementPortalPreferenceCommand")
1146
- .sc(PutProcurementPortalPreference)
1146
+ .sc(PutProcurementPortalPreference$)
1147
1147
  .build() {
1148
1148
  }
1149
1149
 
@@ -1155,7 +1155,7 @@ class TagResourceCommand extends smithyClient.Command
1155
1155
  })
1156
1156
  .s("Invoicing", "TagResource", {})
1157
1157
  .n("InvoicingClient", "TagResourceCommand")
1158
- .sc(TagResource)
1158
+ .sc(TagResource$)
1159
1159
  .build() {
1160
1160
  }
1161
1161
 
@@ -1167,7 +1167,7 @@ class UntagResourceCommand extends smithyClient.Command
1167
1167
  })
1168
1168
  .s("Invoicing", "UntagResource", {})
1169
1169
  .n("InvoicingClient", "UntagResourceCommand")
1170
- .sc(UntagResource)
1170
+ .sc(UntagResource$)
1171
1171
  .build() {
1172
1172
  }
1173
1173
 
@@ -1179,7 +1179,7 @@ class UpdateInvoiceUnitCommand extends smithyClient.Command
1179
1179
  })
1180
1180
  .s("Invoicing", "UpdateInvoiceUnit", {})
1181
1181
  .n("InvoicingClient", "UpdateInvoiceUnitCommand")
1182
- .sc(UpdateInvoiceUnit)
1182
+ .sc(UpdateInvoiceUnit$)
1183
1183
  .build() {
1184
1184
  }
1185
1185
 
@@ -1191,7 +1191,7 @@ class UpdateProcurementPortalPreferenceStatusCommand extends smithyClient.Comman
1191
1191
  })
1192
1192
  .s("Invoicing", "UpdateProcurementPortalPreferenceStatus", {})
1193
1193
  .n("InvoicingClient", "UpdateProcurementPortalPreferenceStatusCommand")
1194
- .sc(UpdateProcurementPortalPreferenceStatus)
1194
+ .sc(UpdateProcurementPortalPreferenceStatus$)
1195
1195
  .build() {
1196
1196
  }
1197
1197
 
@@ -1297,44 +1297,135 @@ Object.defineProperty(exports, "__Client", {
1297
1297
  enumerable: true,
1298
1298
  get: function () { return smithyClient.Client; }
1299
1299
  });
1300
- exports.AccessDeniedException = AccessDeniedException$1;
1300
+ exports.AccessDeniedException = AccessDeniedException;
1301
+ exports.AccessDeniedException$ = AccessDeniedException$;
1302
+ exports.AmountBreakdown$ = AmountBreakdown$;
1303
+ exports.BatchGetInvoiceProfile$ = BatchGetInvoiceProfile$;
1301
1304
  exports.BatchGetInvoiceProfileCommand = BatchGetInvoiceProfileCommand;
1305
+ exports.BatchGetInvoiceProfileRequest$ = BatchGetInvoiceProfileRequest$;
1306
+ exports.BatchGetInvoiceProfileResponse$ = BatchGetInvoiceProfileResponse$;
1307
+ exports.BillingPeriod$ = BillingPeriod$;
1302
1308
  exports.BuyerDomain = BuyerDomain;
1303
- exports.ConflictException = ConflictException$1;
1309
+ exports.ConflictException = ConflictException;
1310
+ exports.ConflictException$ = ConflictException$;
1304
1311
  exports.ConnectionTestingMethod = ConnectionTestingMethod;
1312
+ exports.Contact$ = Contact$;
1313
+ exports.CreateInvoiceUnit$ = CreateInvoiceUnit$;
1305
1314
  exports.CreateInvoiceUnitCommand = CreateInvoiceUnitCommand;
1315
+ exports.CreateInvoiceUnitRequest$ = CreateInvoiceUnitRequest$;
1316
+ exports.CreateInvoiceUnitResponse$ = CreateInvoiceUnitResponse$;
1317
+ exports.CreateProcurementPortalPreference$ = CreateProcurementPortalPreference$;
1306
1318
  exports.CreateProcurementPortalPreferenceCommand = CreateProcurementPortalPreferenceCommand;
1319
+ exports.CreateProcurementPortalPreferenceRequest$ = CreateProcurementPortalPreferenceRequest$;
1320
+ exports.CreateProcurementPortalPreferenceResponse$ = CreateProcurementPortalPreferenceResponse$;
1321
+ exports.CurrencyExchangeDetails$ = CurrencyExchangeDetails$;
1322
+ exports.DateInterval$ = DateInterval$;
1323
+ exports.DeleteInvoiceUnit$ = DeleteInvoiceUnit$;
1307
1324
  exports.DeleteInvoiceUnitCommand = DeleteInvoiceUnitCommand;
1325
+ exports.DeleteInvoiceUnitRequest$ = DeleteInvoiceUnitRequest$;
1326
+ exports.DeleteInvoiceUnitResponse$ = DeleteInvoiceUnitResponse$;
1327
+ exports.DeleteProcurementPortalPreference$ = DeleteProcurementPortalPreference$;
1308
1328
  exports.DeleteProcurementPortalPreferenceCommand = DeleteProcurementPortalPreferenceCommand;
1329
+ exports.DeleteProcurementPortalPreferenceRequest$ = DeleteProcurementPortalPreferenceRequest$;
1330
+ exports.DeleteProcurementPortalPreferenceResponse$ = DeleteProcurementPortalPreferenceResponse$;
1331
+ exports.DiscountsBreakdown$ = DiscountsBreakdown$;
1332
+ exports.DiscountsBreakdownAmount$ = DiscountsBreakdownAmount$;
1309
1333
  exports.EinvoiceDeliveryAttachmentType = EinvoiceDeliveryAttachmentType;
1310
1334
  exports.EinvoiceDeliveryDocumentType = EinvoiceDeliveryDocumentType;
1335
+ exports.EinvoiceDeliveryPreference$ = EinvoiceDeliveryPreference$;
1336
+ exports.Entity$ = Entity$;
1337
+ exports.FeesBreakdown$ = FeesBreakdown$;
1338
+ exports.FeesBreakdownAmount$ = FeesBreakdownAmount$;
1339
+ exports.Filters$ = Filters$;
1340
+ exports.GetInvoicePDF$ = GetInvoicePDF$;
1311
1341
  exports.GetInvoicePDFCommand = GetInvoicePDFCommand;
1342
+ exports.GetInvoicePDFRequest$ = GetInvoicePDFRequest$;
1343
+ exports.GetInvoicePDFResponse$ = GetInvoicePDFResponse$;
1344
+ exports.GetInvoiceUnit$ = GetInvoiceUnit$;
1312
1345
  exports.GetInvoiceUnitCommand = GetInvoiceUnitCommand;
1346
+ exports.GetInvoiceUnitRequest$ = GetInvoiceUnitRequest$;
1347
+ exports.GetInvoiceUnitResponse$ = GetInvoiceUnitResponse$;
1348
+ exports.GetProcurementPortalPreference$ = GetProcurementPortalPreference$;
1313
1349
  exports.GetProcurementPortalPreferenceCommand = GetProcurementPortalPreferenceCommand;
1314
- exports.InternalServerException = InternalServerException$1;
1350
+ exports.GetProcurementPortalPreferenceRequest$ = GetProcurementPortalPreferenceRequest$;
1351
+ exports.GetProcurementPortalPreferenceResponse$ = GetProcurementPortalPreferenceResponse$;
1352
+ exports.InternalServerException = InternalServerException;
1353
+ exports.InternalServerException$ = InternalServerException$;
1354
+ exports.InvoiceCurrencyAmount$ = InvoiceCurrencyAmount$;
1355
+ exports.InvoicePDF$ = InvoicePDF$;
1356
+ exports.InvoiceProfile$ = InvoiceProfile$;
1357
+ exports.InvoiceSummariesFilter$ = InvoiceSummariesFilter$;
1358
+ exports.InvoiceSummariesSelector$ = InvoiceSummariesSelector$;
1359
+ exports.InvoiceSummary$ = InvoiceSummary$;
1315
1360
  exports.InvoiceType = InvoiceType;
1361
+ exports.InvoiceUnit$ = InvoiceUnit$;
1362
+ exports.InvoiceUnitRule$ = InvoiceUnitRule$;
1316
1363
  exports.Invoicing = Invoicing;
1317
1364
  exports.InvoicingClient = InvoicingClient;
1318
- exports.InvoicingServiceException = InvoicingServiceException$1;
1365
+ exports.InvoicingServiceException = InvoicingServiceException;
1366
+ exports.InvoicingServiceException$ = InvoicingServiceException$;
1367
+ exports.ListInvoiceSummaries$ = ListInvoiceSummaries$;
1319
1368
  exports.ListInvoiceSummariesCommand = ListInvoiceSummariesCommand;
1369
+ exports.ListInvoiceSummariesRequest$ = ListInvoiceSummariesRequest$;
1320
1370
  exports.ListInvoiceSummariesResourceType = ListInvoiceSummariesResourceType;
1371
+ exports.ListInvoiceSummariesResponse$ = ListInvoiceSummariesResponse$;
1372
+ exports.ListInvoiceUnits$ = ListInvoiceUnits$;
1321
1373
  exports.ListInvoiceUnitsCommand = ListInvoiceUnitsCommand;
1374
+ exports.ListInvoiceUnitsRequest$ = ListInvoiceUnitsRequest$;
1375
+ exports.ListInvoiceUnitsResponse$ = ListInvoiceUnitsResponse$;
1376
+ exports.ListProcurementPortalPreferences$ = ListProcurementPortalPreferences$;
1322
1377
  exports.ListProcurementPortalPreferencesCommand = ListProcurementPortalPreferencesCommand;
1378
+ exports.ListProcurementPortalPreferencesRequest$ = ListProcurementPortalPreferencesRequest$;
1379
+ exports.ListProcurementPortalPreferencesResponse$ = ListProcurementPortalPreferencesResponse$;
1380
+ exports.ListTagsForResource$ = ListTagsForResource$;
1323
1381
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1382
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1383
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1324
1384
  exports.ProcurementPortalName = ProcurementPortalName;
1385
+ exports.ProcurementPortalPreference$ = ProcurementPortalPreference$;
1386
+ exports.ProcurementPortalPreferenceSelector$ = ProcurementPortalPreferenceSelector$;
1325
1387
  exports.ProcurementPortalPreferenceStatus = ProcurementPortalPreferenceStatus;
1388
+ exports.ProcurementPortalPreferenceSummary$ = ProcurementPortalPreferenceSummary$;
1326
1389
  exports.Protocol = Protocol;
1390
+ exports.PurchaseOrderDataSource$ = PurchaseOrderDataSource$;
1327
1391
  exports.PurchaseOrderDataSourceType = PurchaseOrderDataSourceType;
1392
+ exports.PutProcurementPortalPreference$ = PutProcurementPortalPreference$;
1328
1393
  exports.PutProcurementPortalPreferenceCommand = PutProcurementPortalPreferenceCommand;
1329
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1330
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1394
+ exports.PutProcurementPortalPreferenceRequest$ = PutProcurementPortalPreferenceRequest$;
1395
+ exports.PutProcurementPortalPreferenceResponse$ = PutProcurementPortalPreferenceResponse$;
1396
+ exports.ReceiverAddress$ = ReceiverAddress$;
1397
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1398
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1399
+ exports.ResourceTag$ = ResourceTag$;
1400
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1401
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1402
+ exports.SupplementalDocument$ = SupplementalDocument$;
1331
1403
  exports.SupplierDomain = SupplierDomain;
1404
+ exports.TagResource$ = TagResource$;
1332
1405
  exports.TagResourceCommand = TagResourceCommand;
1333
- exports.ThrottlingException = ThrottlingException$1;
1406
+ exports.TagResourceRequest$ = TagResourceRequest$;
1407
+ exports.TagResourceResponse$ = TagResourceResponse$;
1408
+ exports.TaxesBreakdown$ = TaxesBreakdown$;
1409
+ exports.TaxesBreakdownAmount$ = TaxesBreakdownAmount$;
1410
+ exports.TestEnvPreference$ = TestEnvPreference$;
1411
+ exports.TestEnvPreferenceInput$ = TestEnvPreferenceInput$;
1412
+ exports.ThrottlingException = ThrottlingException;
1413
+ exports.ThrottlingException$ = ThrottlingException$;
1414
+ exports.UntagResource$ = UntagResource$;
1334
1415
  exports.UntagResourceCommand = UntagResourceCommand;
1416
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1417
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1418
+ exports.UpdateInvoiceUnit$ = UpdateInvoiceUnit$;
1335
1419
  exports.UpdateInvoiceUnitCommand = UpdateInvoiceUnitCommand;
1420
+ exports.UpdateInvoiceUnitRequest$ = UpdateInvoiceUnitRequest$;
1421
+ exports.UpdateInvoiceUnitResponse$ = UpdateInvoiceUnitResponse$;
1422
+ exports.UpdateProcurementPortalPreferenceStatus$ = UpdateProcurementPortalPreferenceStatus$;
1336
1423
  exports.UpdateProcurementPortalPreferenceStatusCommand = UpdateProcurementPortalPreferenceStatusCommand;
1337
- exports.ValidationException = ValidationException$1;
1424
+ exports.UpdateProcurementPortalPreferenceStatusRequest$ = UpdateProcurementPortalPreferenceStatusRequest$;
1425
+ exports.UpdateProcurementPortalPreferenceStatusResponse$ = UpdateProcurementPortalPreferenceStatusResponse$;
1426
+ exports.ValidationException = ValidationException;
1427
+ exports.ValidationException$ = ValidationException$;
1428
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
1338
1429
  exports.ValidationExceptionReason = ValidationExceptionReason;
1339
1430
  exports.paginateListInvoiceSummaries = paginateListInvoiceSummaries;
1340
1431
  exports.paginateListInvoiceUnits = paginateListInvoiceUnits;