@aws-sdk/client-managedblockchain-query 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 (29) hide show
  1. package/dist-cjs/index.js +198 -141
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/BatchGetTokenBalanceCommand.js +2 -2
  4. package/dist-es/commands/GetAssetContractCommand.js +2 -2
  5. package/dist-es/commands/GetTokenBalanceCommand.js +2 -2
  6. package/dist-es/commands/GetTransactionCommand.js +2 -2
  7. package/dist-es/commands/ListAssetContractsCommand.js +2 -2
  8. package/dist-es/commands/ListFilteredTransactionEventsCommand.js +2 -2
  9. package/dist-es/commands/ListTokenBalancesCommand.js +2 -2
  10. package/dist-es/commands/ListTransactionEventsCommand.js +2 -2
  11. package/dist-es/commands/ListTransactionsCommand.js +2 -2
  12. package/dist-es/index.js +1 -0
  13. package/dist-es/runtimeConfig.shared.js +6 -1
  14. package/dist-es/schemas/schemas_0.js +115 -115
  15. package/dist-types/ManagedBlockchainQueryClient.d.ts +1 -10
  16. package/dist-types/index.d.ts +1 -0
  17. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  18. package/dist-types/runtimeConfig.d.ts +6 -2
  19. package/dist-types/runtimeConfig.native.d.ts +6 -2
  20. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  21. package/dist-types/schemas/schemas_0.d.ts +58 -68
  22. package/dist-types/ts3.4/ManagedBlockchainQueryClient.d.ts +0 -4
  23. package/dist-types/ts3.4/index.d.ts +1 -0
  24. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  25. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  26. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  27. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  28. package/dist-types/ts3.4/schemas/schemas_0.d.ts +57 -68
  29. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class ManagedBlockchainQueryClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let ManagedBlockchainQueryServiceException$1 = class ManagedBlockchainQueryServiceException extends smithyClient.ServiceException {
113
+ class ManagedBlockchainQueryServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, ManagedBlockchainQueryServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends ManagedBlockchainQueryServiceException$1 {
120
+ class AccessDeniedException extends ManagedBlockchainQueryServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends ManagedBlockch
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let InternalServerException$1 = class InternalServerException extends ManagedBlockchainQueryServiceException$1 {
131
+ }
132
+ class InternalServerException extends ManagedBlockchainQueryServiceException {
133
133
  name = "InternalServerException";
134
134
  $fault = "server";
135
135
  $retryable = {};
@@ -143,8 +143,8 @@ let InternalServerException$1 = class InternalServerException extends ManagedBlo
143
143
  Object.setPrototypeOf(this, InternalServerException.prototype);
144
144
  this.retryAfterSeconds = opts.retryAfterSeconds;
145
145
  }
146
- };
147
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends ManagedBlockchainQueryServiceException$1 {
146
+ }
147
+ class ResourceNotFoundException extends ManagedBlockchainQueryServiceException {
148
148
  name = "ResourceNotFoundException";
149
149
  $fault = "client";
150
150
  resourceId;
@@ -159,8 +159,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Manage
159
159
  this.resourceId = opts.resourceId;
160
160
  this.resourceType = opts.resourceType;
161
161
  }
162
- };
163
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends ManagedBlockchainQueryServiceException$1 {
162
+ }
163
+ class ServiceQuotaExceededException extends ManagedBlockchainQueryServiceException {
164
164
  name = "ServiceQuotaExceededException";
165
165
  $fault = "client";
166
166
  resourceId;
@@ -179,8 +179,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
179
179
  this.serviceCode = opts.serviceCode;
180
180
  this.quotaCode = opts.quotaCode;
181
181
  }
182
- };
183
- let ThrottlingException$1 = class ThrottlingException extends ManagedBlockchainQueryServiceException$1 {
182
+ }
183
+ class ThrottlingException extends ManagedBlockchainQueryServiceException {
184
184
  name = "ThrottlingException";
185
185
  $fault = "client";
186
186
  $retryable = {
@@ -200,8 +200,8 @@ let ThrottlingException$1 = class ThrottlingException extends ManagedBlockchainQ
200
200
  this.quotaCode = opts.quotaCode;
201
201
  this.retryAfterSeconds = opts.retryAfterSeconds;
202
202
  }
203
- };
204
- let ValidationException$1 = class ValidationException extends ManagedBlockchainQueryServiceException$1 {
203
+ }
204
+ class ValidationException extends ManagedBlockchainQueryServiceException {
205
205
  name = "ValidationException";
206
206
  $fault = "client";
207
207
  reason;
@@ -216,7 +216,7 @@ let ValidationException$1 = class ValidationException extends ManagedBlockchainQ
216
216
  this.reason = opts.reason;
217
217
  this.fieldList = opts.fieldList;
218
218
  }
219
- };
219
+ }
220
220
 
221
221
  const _AC = "AssetContract";
222
222
  const _ACL = "AssetContractList";
@@ -368,19 +368,19 @@ const _vF = "voutFilter";
368
368
  const _vI = "voutIndex";
369
369
  const _vS = "voutSpent";
370
370
  const n0 = "com.amazonaws.managedblockchainquery";
371
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
372
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
373
- var AddressIdentifierFilter = [3, n0, _AIF, 0, [_tETA], [64 | 0]];
374
- var AssetContract = [3, n0, _AC, 0, [_cI, _tS, _dA], [() => ContractIdentifier, 0, 0]];
375
- var BatchGetTokenBalanceErrorItem = [
371
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
372
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
373
+ var AddressIdentifierFilter$ = [3, n0, _AIF, 0, [_tETA], [64 | 0]];
374
+ var AssetContract$ = [3, n0, _AC, 0, [_cI, _tS, _dA], [() => ContractIdentifier$, 0, 0]];
375
+ var BatchGetTokenBalanceErrorItem$ = [
376
376
  3,
377
377
  n0,
378
378
  _BGTBEI,
379
379
  0,
380
380
  [_tI, _oI, _aBI, _eC, _eM, _eT],
381
- [() => TokenIdentifier, () => OwnerIdentifier, () => BlockchainInstant, 0, 0, 0],
381
+ [() => TokenIdentifier$, () => OwnerIdentifier$, () => BlockchainInstant$, 0, 0, 0],
382
382
  ];
383
- var BatchGetTokenBalanceInput = [
383
+ var BatchGetTokenBalanceInput$ = [
384
384
  3,
385
385
  n0,
386
386
  _BGTBI,
@@ -388,15 +388,15 @@ var BatchGetTokenBalanceInput = [
388
388
  [_gTBI],
389
389
  [() => GetTokenBalanceInputList],
390
390
  ];
391
- var BatchGetTokenBalanceInputItem = [
391
+ var BatchGetTokenBalanceInputItem$ = [
392
392
  3,
393
393
  n0,
394
394
  _BGTBII,
395
395
  0,
396
396
  [_tI, _oI, _aBI],
397
- [() => TokenIdentifier, () => OwnerIdentifier, () => BlockchainInstant],
397
+ [() => TokenIdentifier$, () => OwnerIdentifier$, () => BlockchainInstant$],
398
398
  ];
399
- var BatchGetTokenBalanceOutput = [
399
+ var BatchGetTokenBalanceOutput$ = [
400
400
  3,
401
401
  n0,
402
402
  _BGTBO,
@@ -404,47 +404,47 @@ var BatchGetTokenBalanceOutput = [
404
404
  [_tB, _er],
405
405
  [() => BatchGetTokenBalanceOutputList, () => BatchGetTokenBalanceErrors],
406
406
  ];
407
- var BatchGetTokenBalanceOutputItem = [
407
+ var BatchGetTokenBalanceOutputItem$ = [
408
408
  3,
409
409
  n0,
410
410
  _BGTBOI,
411
411
  0,
412
412
  [_oI, _tI, _b, _aBI, _lUT],
413
- [() => OwnerIdentifier, () => TokenIdentifier, 0, () => BlockchainInstant, () => BlockchainInstant],
414
- ];
415
- var BlockchainInstant = [3, n0, _BI, 0, [_t], [4]];
416
- var ConfirmationStatusFilter = [3, n0, _CSF, 0, [_i], [64 | 0]];
417
- var ContractFilter = [3, n0, _CF, 0, [_n, _tS, _dA], [0, 0, 0]];
418
- var ContractIdentifier = [3, n0, _CI, 0, [_n, _cA], [0, 0]];
419
- var ContractMetadata = [3, n0, _CM, 0, [_na, _s, _d], [0, 0, 1]];
420
- var GetAssetContractInput = [3, n0, _GACI, 0, [_cI], [() => ContractIdentifier]];
421
- var GetAssetContractOutput = [
413
+ [() => OwnerIdentifier$, () => TokenIdentifier$, 0, () => BlockchainInstant$, () => BlockchainInstant$],
414
+ ];
415
+ var BlockchainInstant$ = [3, n0, _BI, 0, [_t], [4]];
416
+ var ConfirmationStatusFilter$ = [3, n0, _CSF, 0, [_i], [64 | 0]];
417
+ var ContractFilter$ = [3, n0, _CF, 0, [_n, _tS, _dA], [0, 0, 0]];
418
+ var ContractIdentifier$ = [3, n0, _CI, 0, [_n, _cA], [0, 0]];
419
+ var ContractMetadata$ = [3, n0, _CM, 0, [_na, _s, _d], [0, 0, 1]];
420
+ var GetAssetContractInput$ = [3, n0, _GACI, 0, [_cI], [() => ContractIdentifier$]];
421
+ var GetAssetContractOutput$ = [
422
422
  3,
423
423
  n0,
424
424
  _GACO,
425
425
  0,
426
426
  [_cI, _tS, _dA, _me],
427
- [() => ContractIdentifier, 0, 0, () => ContractMetadata],
427
+ [() => ContractIdentifier$, 0, 0, () => ContractMetadata$],
428
428
  ];
429
- var GetTokenBalanceInput = [
429
+ var GetTokenBalanceInput$ = [
430
430
  3,
431
431
  n0,
432
432
  _GTBI,
433
433
  0,
434
434
  [_tI, _oI, _aBI],
435
- [() => TokenIdentifier, () => OwnerIdentifier, () => BlockchainInstant],
435
+ [() => TokenIdentifier$, () => OwnerIdentifier$, () => BlockchainInstant$],
436
436
  ];
437
- var GetTokenBalanceOutput = [
437
+ var GetTokenBalanceOutput$ = [
438
438
  3,
439
439
  n0,
440
440
  _GTBO,
441
441
  0,
442
442
  [_oI, _tI, _b, _aBI, _lUT],
443
- [() => OwnerIdentifier, () => TokenIdentifier, 0, () => BlockchainInstant, () => BlockchainInstant],
443
+ [() => OwnerIdentifier$, () => TokenIdentifier$, 0, () => BlockchainInstant$, () => BlockchainInstant$],
444
444
  ];
445
- var GetTransactionInput = [3, n0, _GTI, 0, [_tH, _tIr, _n], [0, 0, 0]];
446
- var GetTransactionOutput = [3, n0, _GTO, 0, [_tr], [() => Transaction]];
447
- var InternalServerException = [
445
+ var GetTransactionInput$ = [3, n0, _GTI, 0, [_tH, _tIr, _n], [0, 0, 0]];
446
+ var GetTransactionOutput$ = [3, n0, _GTO, 0, [_tr], [() => Transaction$]];
447
+ var InternalServerException$ = [
448
448
  -3,
449
449
  n0,
450
450
  _ISE,
@@ -452,16 +452,16 @@ var InternalServerException = [
452
452
  [_m, _rAS],
453
453
  [0, [1, { [_hH]: _RA }]],
454
454
  ];
455
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
456
- var ListAssetContractsInput = [
455
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
456
+ var ListAssetContractsInput$ = [
457
457
  3,
458
458
  n0,
459
459
  _LACI,
460
460
  0,
461
461
  [_cF, _nT, _mR],
462
- [() => ContractFilter, 0, 1],
462
+ [() => ContractFilter$, 0, 1],
463
463
  ];
464
- var ListAssetContractsOutput = [
464
+ var ListAssetContractsOutput$ = [
465
465
  3,
466
466
  n0,
467
467
  _LACO,
@@ -469,7 +469,7 @@ var ListAssetContractsOutput = [
469
469
  [_co, _nT],
470
470
  [() => AssetContractList, 0],
471
471
  ];
472
- var ListFilteredTransactionEventsInput = [
472
+ var ListFilteredTransactionEventsInput$ = [
473
473
  3,
474
474
  n0,
475
475
  _LFTEI,
@@ -477,16 +477,16 @@ var ListFilteredTransactionEventsInput = [
477
477
  [_n, _aIF, _tF, _vF, _cSF, _so, _nT, _mR],
478
478
  [
479
479
  0,
480
- () => AddressIdentifierFilter,
481
- () => TimeFilter,
482
- () => VoutFilter,
483
- () => ConfirmationStatusFilter,
484
- () => ListFilteredTransactionEventsSort,
480
+ () => AddressIdentifierFilter$,
481
+ () => TimeFilter$,
482
+ () => VoutFilter$,
483
+ () => ConfirmationStatusFilter$,
484
+ () => ListFilteredTransactionEventsSort$,
485
485
  0,
486
486
  1,
487
487
  ],
488
488
  ];
489
- var ListFilteredTransactionEventsOutput = [
489
+ var ListFilteredTransactionEventsOutput$ = [
490
490
  3,
491
491
  n0,
492
492
  _LFTEO,
@@ -494,17 +494,17 @@ var ListFilteredTransactionEventsOutput = [
494
494
  [_ev, _nT],
495
495
  [() => TransactionEventList, 0],
496
496
  ];
497
- var ListFilteredTransactionEventsSort = [3, n0, _LFTES, 0, [_sB, _sO], [0, 0]];
498
- var ListTokenBalancesInput = [
497
+ var ListFilteredTransactionEventsSort$ = [3, n0, _LFTES, 0, [_sB, _sO], [0, 0]];
498
+ var ListTokenBalancesInput$ = [
499
499
  3,
500
500
  n0,
501
501
  _LTBI,
502
502
  0,
503
503
  [_oF, _tFo, _nT, _mR],
504
- [() => OwnerFilter, () => TokenFilter, 0, 1],
504
+ [() => OwnerFilter$, () => TokenFilter$, 0, 1],
505
505
  ];
506
- var ListTokenBalancesOutput = [3, n0, _LTBO, 0, [_tB, _nT], [() => TokenBalanceList, 0]];
507
- var ListTransactionEventsInput = [
506
+ var ListTokenBalancesOutput$ = [3, n0, _LTBO, 0, [_tB, _nT], [() => TokenBalanceList, 0]];
507
+ var ListTransactionEventsInput$ = [
508
508
  3,
509
509
  n0,
510
510
  _LTEI,
@@ -512,7 +512,7 @@ var ListTransactionEventsInput = [
512
512
  [_tH, _tIr, _n, _nT, _mR],
513
513
  [0, 0, 0, 0, 1],
514
514
  ];
515
- var ListTransactionEventsOutput = [
515
+ var ListTransactionEventsOutput$ = [
516
516
  3,
517
517
  n0,
518
518
  _LTEO,
@@ -520,7 +520,7 @@ var ListTransactionEventsOutput = [
520
520
  [_ev, _nT],
521
521
  [() => TransactionEventList, 0],
522
522
  ];
523
- var ListTransactionsInput = [
523
+ var ListTransactionsInput$ = [
524
524
  3,
525
525
  n0,
526
526
  _LTI,
@@ -529,15 +529,15 @@ var ListTransactionsInput = [
529
529
  [
530
530
  0,
531
531
  0,
532
- () => BlockchainInstant,
533
- () => BlockchainInstant,
534
- () => ListTransactionsSort,
532
+ () => BlockchainInstant$,
533
+ () => BlockchainInstant$,
534
+ () => ListTransactionsSort$,
535
535
  0,
536
536
  1,
537
- () => ConfirmationStatusFilter,
537
+ () => ConfirmationStatusFilter$,
538
538
  ],
539
539
  ];
540
- var ListTransactionsOutput = [
540
+ var ListTransactionsOutput$ = [
541
541
  3,
542
542
  n0,
543
543
  _LTO,
@@ -545,10 +545,10 @@ var ListTransactionsOutput = [
545
545
  [_tra, _nT],
546
546
  [() => TransactionOutputList, 0],
547
547
  ];
548
- var ListTransactionsSort = [3, n0, _LTS, 0, [_sB, _sO], [0, 0]];
549
- var OwnerFilter = [3, n0, _OF, 0, [_a], [0]];
550
- var OwnerIdentifier = [3, n0, _OI, 0, [_a], [0]];
551
- var ResourceNotFoundException = [
548
+ var ListTransactionsSort$ = [3, n0, _LTS, 0, [_sB, _sO], [0, 0]];
549
+ var OwnerFilter$ = [3, n0, _OF, 0, [_a], [0]];
550
+ var OwnerIdentifier$ = [3, n0, _OI, 0, [_a], [0]];
551
+ var ResourceNotFoundException$ = [
552
552
  -3,
553
553
  n0,
554
554
  _RNFE,
@@ -556,8 +556,8 @@ var ResourceNotFoundException = [
556
556
  [_m, _rI, _rT],
557
557
  [0, 0, 0],
558
558
  ];
559
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
560
- var ServiceQuotaExceededException = [
559
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
560
+ var ServiceQuotaExceededException$ = [
561
561
  -3,
562
562
  n0,
563
563
  _SQEE,
@@ -565,8 +565,8 @@ var ServiceQuotaExceededException = [
565
565
  [_m, _rI, _rT, _sC, _qC],
566
566
  [0, 0, 0, 0, 0],
567
567
  ];
568
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
569
- var ThrottlingException = [
568
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
569
+ var ThrottlingException$ = [
570
570
  -3,
571
571
  n0,
572
572
  _TE,
@@ -574,26 +574,26 @@ var ThrottlingException = [
574
574
  [_m, _sC, _qC, _rAS],
575
575
  [0, 0, 0, [1, { [_hH]: _RA }]],
576
576
  ];
577
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
578
- var TimeFilter = [
577
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
578
+ var TimeFilter$ = [
579
579
  3,
580
580
  n0,
581
581
  _TF,
582
582
  0,
583
583
  [_f, _to],
584
- [() => BlockchainInstant, () => BlockchainInstant],
584
+ [() => BlockchainInstant$, () => BlockchainInstant$],
585
585
  ];
586
- var TokenBalance = [
586
+ var TokenBalance$ = [
587
587
  3,
588
588
  n0,
589
589
  _TB,
590
590
  0,
591
591
  [_oI, _tI, _b, _aBI, _lUT],
592
- [() => OwnerIdentifier, () => TokenIdentifier, 0, () => BlockchainInstant, () => BlockchainInstant],
592
+ [() => OwnerIdentifier$, () => TokenIdentifier$, 0, () => BlockchainInstant$, () => BlockchainInstant$],
593
593
  ];
594
- var TokenFilter = [3, n0, _TFo, 0, [_n, _cA, _tIo], [0, 0, 0]];
595
- var TokenIdentifier = [3, n0, _TI, 0, [_n, _cA, _tIo], [0, 0, 0]];
596
- var Transaction = [
594
+ var TokenFilter$ = [3, n0, _TFo, 0, [_n, _cA, _tIo], [0, 0, 0]];
595
+ var TokenIdentifier$ = [3, n0, _TI, 0, [_n, _cA, _tIo], [0, 0, 0]];
596
+ var Transaction$ = [
597
597
  3,
598
598
  n0,
599
599
  _T,
@@ -601,16 +601,16 @@ var Transaction = [
601
601
  [_n, _bH, _tH, _bN, _tT, _tIra, _nOT, _to, _f, _cA, _gU, _cGU, _eGP, _sV, _sR, _sS, _tFr, _tIr, _cS, _eS],
602
602
  [0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0],
603
603
  ];
604
- var TransactionEvent = [
604
+ var TransactionEvent$ = [
605
605
  3,
606
606
  n0,
607
607
  _TEr,
608
608
  0,
609
609
  [_n, _tH, _eTv, _f, _to, _v, _cA, _tIo, _tIr, _vI, _vS, _sVTI, _sVTH, _sVI, _bI, _cS],
610
- [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, () => BlockchainInstant, 0],
610
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, () => BlockchainInstant$, 0],
611
611
  ];
612
- var TransactionOutputItem = [3, n0, _TOI, 0, [_tH, _tIr, _n, _tT, _cS], [0, 0, 0, 4, 0]];
613
- var ValidationException = [
612
+ var TransactionOutputItem$ = [3, n0, _TOI, 0, [_tH, _tIr, _n, _tT, _cS], [0, 0, 0, 4, 0]];
613
+ var ValidationException$ = [
614
614
  -3,
615
615
  n0,
616
616
  _VE,
@@ -618,10 +618,10 @@ var ValidationException = [
618
618
  [_m, _r, _fL],
619
619
  [0, 0, () => ValidationExceptionFieldList],
620
620
  ];
621
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
622
- var ValidationExceptionField = [3, n0, _VEF, 0, [_na, _m], [0, 0]];
623
- var VoutFilter = [3, n0, _VF, 0, [_vS], [2]];
624
- var ManagedBlockchainQueryServiceException = [
621
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
622
+ var ValidationExceptionField$ = [3, n0, _VEF, 0, [_na, _m], [0, 0]];
623
+ var VoutFilter$ = [3, n0, _VF, 0, [_vS], [2]];
624
+ var ManagedBlockchainQueryServiceException$ = [
625
625
  -3,
626
626
  _sm,
627
627
  "ManagedBlockchainQueryServiceException",
@@ -629,86 +629,86 @@ var ManagedBlockchainQueryServiceException = [
629
629
  [],
630
630
  [],
631
631
  ];
632
- schema.TypeRegistry.for(_sm).registerError(ManagedBlockchainQueryServiceException, ManagedBlockchainQueryServiceException$1);
633
- var AssetContractList = [1, n0, _ACL, 0, () => AssetContract];
634
- var BatchGetTokenBalanceErrors = [1, n0, _BGTBE, 0, () => BatchGetTokenBalanceErrorItem];
635
- var BatchGetTokenBalanceOutputList = [1, n0, _BGTBOL, 0, () => BatchGetTokenBalanceOutputItem];
636
- var GetTokenBalanceInputList = [1, n0, _GTBIL, 0, () => BatchGetTokenBalanceInputItem];
637
- var TokenBalanceList = [1, n0, _TBL, 0, () => TokenBalance];
638
- var TransactionEventList = [1, n0, _TEL, 0, () => TransactionEvent];
639
- var TransactionOutputList = [1, n0, _TOL, 0, () => TransactionOutputItem];
640
- var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
641
- var BatchGetTokenBalance = [
632
+ schema.TypeRegistry.for(_sm).registerError(ManagedBlockchainQueryServiceException$, ManagedBlockchainQueryServiceException);
633
+ var AssetContractList = [1, n0, _ACL, 0, () => AssetContract$];
634
+ var BatchGetTokenBalanceErrors = [1, n0, _BGTBE, 0, () => BatchGetTokenBalanceErrorItem$];
635
+ var BatchGetTokenBalanceOutputList = [1, n0, _BGTBOL, 0, () => BatchGetTokenBalanceOutputItem$];
636
+ var GetTokenBalanceInputList = [1, n0, _GTBIL, 0, () => BatchGetTokenBalanceInputItem$];
637
+ var TokenBalanceList = [1, n0, _TBL, 0, () => TokenBalance$];
638
+ var TransactionEventList = [1, n0, _TEL, 0, () => TransactionEvent$];
639
+ var TransactionOutputList = [1, n0, _TOL, 0, () => TransactionOutputItem$];
640
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
641
+ var BatchGetTokenBalance$ = [
642
642
  9,
643
643
  n0,
644
644
  _BGTB,
645
645
  { [_h]: ["POST", "/batch-get-token-balance", 200] },
646
- () => BatchGetTokenBalanceInput,
647
- () => BatchGetTokenBalanceOutput,
646
+ () => BatchGetTokenBalanceInput$,
647
+ () => BatchGetTokenBalanceOutput$,
648
648
  ];
649
- var GetAssetContract = [
649
+ var GetAssetContract$ = [
650
650
  9,
651
651
  n0,
652
652
  _GAC,
653
653
  { [_h]: ["POST", "/get-asset-contract", 200] },
654
- () => GetAssetContractInput,
655
- () => GetAssetContractOutput,
654
+ () => GetAssetContractInput$,
655
+ () => GetAssetContractOutput$,
656
656
  ];
657
- var GetTokenBalance = [
657
+ var GetTokenBalance$ = [
658
658
  9,
659
659
  n0,
660
660
  _GTB,
661
661
  { [_h]: ["POST", "/get-token-balance", 200] },
662
- () => GetTokenBalanceInput,
663
- () => GetTokenBalanceOutput,
662
+ () => GetTokenBalanceInput$,
663
+ () => GetTokenBalanceOutput$,
664
664
  ];
665
- var GetTransaction = [
665
+ var GetTransaction$ = [
666
666
  9,
667
667
  n0,
668
668
  _GT,
669
669
  { [_h]: ["POST", "/get-transaction", 200] },
670
- () => GetTransactionInput,
671
- () => GetTransactionOutput,
670
+ () => GetTransactionInput$,
671
+ () => GetTransactionOutput$,
672
672
  ];
673
- var ListAssetContracts = [
673
+ var ListAssetContracts$ = [
674
674
  9,
675
675
  n0,
676
676
  _LAC,
677
677
  { [_h]: ["POST", "/list-asset-contracts", 200] },
678
- () => ListAssetContractsInput,
679
- () => ListAssetContractsOutput,
678
+ () => ListAssetContractsInput$,
679
+ () => ListAssetContractsOutput$,
680
680
  ];
681
- var ListFilteredTransactionEvents = [
681
+ var ListFilteredTransactionEvents$ = [
682
682
  9,
683
683
  n0,
684
684
  _LFTE,
685
685
  { [_h]: ["POST", "/list-filtered-transaction-events", 200] },
686
- () => ListFilteredTransactionEventsInput,
687
- () => ListFilteredTransactionEventsOutput,
686
+ () => ListFilteredTransactionEventsInput$,
687
+ () => ListFilteredTransactionEventsOutput$,
688
688
  ];
689
- var ListTokenBalances = [
689
+ var ListTokenBalances$ = [
690
690
  9,
691
691
  n0,
692
692
  _LTB,
693
693
  { [_h]: ["POST", "/list-token-balances", 200] },
694
- () => ListTokenBalancesInput,
695
- () => ListTokenBalancesOutput,
694
+ () => ListTokenBalancesInput$,
695
+ () => ListTokenBalancesOutput$,
696
696
  ];
697
- var ListTransactionEvents = [
697
+ var ListTransactionEvents$ = [
698
698
  9,
699
699
  n0,
700
700
  _LTE,
701
701
  { [_h]: ["POST", "/list-transaction-events", 200] },
702
- () => ListTransactionEventsInput,
703
- () => ListTransactionEventsOutput,
702
+ () => ListTransactionEventsInput$,
703
+ () => ListTransactionEventsOutput$,
704
704
  ];
705
- var ListTransactions = [
705
+ var ListTransactions$ = [
706
706
  9,
707
707
  n0,
708
708
  _LT,
709
709
  { [_h]: ["POST", "/list-transactions", 200] },
710
- () => ListTransactionsInput,
711
- () => ListTransactionsOutput,
710
+ () => ListTransactionsInput$,
711
+ () => ListTransactionsOutput$,
712
712
  ];
713
713
 
714
714
  class BatchGetTokenBalanceCommand extends smithyClient.Command
@@ -719,7 +719,7 @@ class BatchGetTokenBalanceCommand extends smithyClient.Command
719
719
  })
720
720
  .s("TietonChainQueryService", "BatchGetTokenBalance", {})
721
721
  .n("ManagedBlockchainQueryClient", "BatchGetTokenBalanceCommand")
722
- .sc(BatchGetTokenBalance)
722
+ .sc(BatchGetTokenBalance$)
723
723
  .build() {
724
724
  }
725
725
 
@@ -731,7 +731,7 @@ class GetAssetContractCommand extends smithyClient.Command
731
731
  })
732
732
  .s("TietonChainQueryService", "GetAssetContract", {})
733
733
  .n("ManagedBlockchainQueryClient", "GetAssetContractCommand")
734
- .sc(GetAssetContract)
734
+ .sc(GetAssetContract$)
735
735
  .build() {
736
736
  }
737
737
 
@@ -743,7 +743,7 @@ class GetTokenBalanceCommand extends smithyClient.Command
743
743
  })
744
744
  .s("TietonChainQueryService", "GetTokenBalance", {})
745
745
  .n("ManagedBlockchainQueryClient", "GetTokenBalanceCommand")
746
- .sc(GetTokenBalance)
746
+ .sc(GetTokenBalance$)
747
747
  .build() {
748
748
  }
749
749
 
@@ -755,7 +755,7 @@ class GetTransactionCommand extends smithyClient.Command
755
755
  })
756
756
  .s("TietonChainQueryService", "GetTransaction", {})
757
757
  .n("ManagedBlockchainQueryClient", "GetTransactionCommand")
758
- .sc(GetTransaction)
758
+ .sc(GetTransaction$)
759
759
  .build() {
760
760
  }
761
761
 
@@ -767,7 +767,7 @@ class ListAssetContractsCommand extends smithyClient.Command
767
767
  })
768
768
  .s("TietonChainQueryService", "ListAssetContracts", {})
769
769
  .n("ManagedBlockchainQueryClient", "ListAssetContractsCommand")
770
- .sc(ListAssetContracts)
770
+ .sc(ListAssetContracts$)
771
771
  .build() {
772
772
  }
773
773
 
@@ -779,7 +779,7 @@ class ListFilteredTransactionEventsCommand extends smithyClient.Command
779
779
  })
780
780
  .s("TietonChainQueryService", "ListFilteredTransactionEvents", {})
781
781
  .n("ManagedBlockchainQueryClient", "ListFilteredTransactionEventsCommand")
782
- .sc(ListFilteredTransactionEvents)
782
+ .sc(ListFilteredTransactionEvents$)
783
783
  .build() {
784
784
  }
785
785
 
@@ -791,7 +791,7 @@ class ListTokenBalancesCommand extends smithyClient.Command
791
791
  })
792
792
  .s("TietonChainQueryService", "ListTokenBalances", {})
793
793
  .n("ManagedBlockchainQueryClient", "ListTokenBalancesCommand")
794
- .sc(ListTokenBalances)
794
+ .sc(ListTokenBalances$)
795
795
  .build() {
796
796
  }
797
797
 
@@ -803,7 +803,7 @@ class ListTransactionEventsCommand extends smithyClient.Command
803
803
  })
804
804
  .s("TietonChainQueryService", "ListTransactionEvents", {})
805
805
  .n("ManagedBlockchainQueryClient", "ListTransactionEventsCommand")
806
- .sc(ListTransactionEvents)
806
+ .sc(ListTransactionEvents$)
807
807
  .build() {
808
808
  }
809
809
 
@@ -815,7 +815,7 @@ class ListTransactionsCommand extends smithyClient.Command
815
815
  })
816
816
  .s("TietonChainQueryService", "ListTransactions", {})
817
817
  .n("ManagedBlockchainQueryClient", "ListTransactionsCommand")
818
- .sc(ListTransactions)
818
+ .sc(ListTransactions$)
819
819
  .build() {
820
820
  }
821
821
 
@@ -908,35 +908,92 @@ Object.defineProperty(exports, "__Client", {
908
908
  enumerable: true,
909
909
  get: function () { return smithyClient.Client; }
910
910
  });
911
- exports.AccessDeniedException = AccessDeniedException$1;
911
+ exports.AccessDeniedException = AccessDeniedException;
912
+ exports.AccessDeniedException$ = AccessDeniedException$;
913
+ exports.AddressIdentifierFilter$ = AddressIdentifierFilter$;
914
+ exports.AssetContract$ = AssetContract$;
915
+ exports.BatchGetTokenBalance$ = BatchGetTokenBalance$;
912
916
  exports.BatchGetTokenBalanceCommand = BatchGetTokenBalanceCommand;
917
+ exports.BatchGetTokenBalanceErrorItem$ = BatchGetTokenBalanceErrorItem$;
918
+ exports.BatchGetTokenBalanceInput$ = BatchGetTokenBalanceInput$;
919
+ exports.BatchGetTokenBalanceInputItem$ = BatchGetTokenBalanceInputItem$;
920
+ exports.BatchGetTokenBalanceOutput$ = BatchGetTokenBalanceOutput$;
921
+ exports.BatchGetTokenBalanceOutputItem$ = BatchGetTokenBalanceOutputItem$;
922
+ exports.BlockchainInstant$ = BlockchainInstant$;
913
923
  exports.ConfirmationStatus = ConfirmationStatus;
924
+ exports.ConfirmationStatusFilter$ = ConfirmationStatusFilter$;
925
+ exports.ContractFilter$ = ContractFilter$;
926
+ exports.ContractIdentifier$ = ContractIdentifier$;
927
+ exports.ContractMetadata$ = ContractMetadata$;
914
928
  exports.ErrorType = ErrorType;
915
929
  exports.ExecutionStatus = ExecutionStatus;
930
+ exports.GetAssetContract$ = GetAssetContract$;
916
931
  exports.GetAssetContractCommand = GetAssetContractCommand;
932
+ exports.GetAssetContractInput$ = GetAssetContractInput$;
933
+ exports.GetAssetContractOutput$ = GetAssetContractOutput$;
934
+ exports.GetTokenBalance$ = GetTokenBalance$;
917
935
  exports.GetTokenBalanceCommand = GetTokenBalanceCommand;
936
+ exports.GetTokenBalanceInput$ = GetTokenBalanceInput$;
937
+ exports.GetTokenBalanceOutput$ = GetTokenBalanceOutput$;
938
+ exports.GetTransaction$ = GetTransaction$;
918
939
  exports.GetTransactionCommand = GetTransactionCommand;
919
- exports.InternalServerException = InternalServerException$1;
940
+ exports.GetTransactionInput$ = GetTransactionInput$;
941
+ exports.GetTransactionOutput$ = GetTransactionOutput$;
942
+ exports.InternalServerException = InternalServerException;
943
+ exports.InternalServerException$ = InternalServerException$;
944
+ exports.ListAssetContracts$ = ListAssetContracts$;
920
945
  exports.ListAssetContractsCommand = ListAssetContractsCommand;
946
+ exports.ListAssetContractsInput$ = ListAssetContractsInput$;
947
+ exports.ListAssetContractsOutput$ = ListAssetContractsOutput$;
948
+ exports.ListFilteredTransactionEvents$ = ListFilteredTransactionEvents$;
921
949
  exports.ListFilteredTransactionEventsCommand = ListFilteredTransactionEventsCommand;
950
+ exports.ListFilteredTransactionEventsInput$ = ListFilteredTransactionEventsInput$;
951
+ exports.ListFilteredTransactionEventsOutput$ = ListFilteredTransactionEventsOutput$;
952
+ exports.ListFilteredTransactionEventsSort$ = ListFilteredTransactionEventsSort$;
922
953
  exports.ListFilteredTransactionEventsSortBy = ListFilteredTransactionEventsSortBy;
954
+ exports.ListTokenBalances$ = ListTokenBalances$;
923
955
  exports.ListTokenBalancesCommand = ListTokenBalancesCommand;
956
+ exports.ListTokenBalancesInput$ = ListTokenBalancesInput$;
957
+ exports.ListTokenBalancesOutput$ = ListTokenBalancesOutput$;
958
+ exports.ListTransactionEvents$ = ListTransactionEvents$;
924
959
  exports.ListTransactionEventsCommand = ListTransactionEventsCommand;
960
+ exports.ListTransactionEventsInput$ = ListTransactionEventsInput$;
961
+ exports.ListTransactionEventsOutput$ = ListTransactionEventsOutput$;
962
+ exports.ListTransactions$ = ListTransactions$;
925
963
  exports.ListTransactionsCommand = ListTransactionsCommand;
964
+ exports.ListTransactionsInput$ = ListTransactionsInput$;
965
+ exports.ListTransactionsOutput$ = ListTransactionsOutput$;
966
+ exports.ListTransactionsSort$ = ListTransactionsSort$;
926
967
  exports.ListTransactionsSortBy = ListTransactionsSortBy;
927
968
  exports.ManagedBlockchainQuery = ManagedBlockchainQuery;
928
969
  exports.ManagedBlockchainQueryClient = ManagedBlockchainQueryClient;
929
- exports.ManagedBlockchainQueryServiceException = ManagedBlockchainQueryServiceException$1;
970
+ exports.ManagedBlockchainQueryServiceException = ManagedBlockchainQueryServiceException;
971
+ exports.ManagedBlockchainQueryServiceException$ = ManagedBlockchainQueryServiceException$;
972
+ exports.OwnerFilter$ = OwnerFilter$;
973
+ exports.OwnerIdentifier$ = OwnerIdentifier$;
930
974
  exports.QueryNetwork = QueryNetwork;
931
975
  exports.QueryTokenStandard = QueryTokenStandard;
932
976
  exports.QueryTransactionEventType = QueryTransactionEventType;
933
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
977
+ exports.ResourceNotFoundException = ResourceNotFoundException;
978
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
934
979
  exports.ResourceType = ResourceType;
935
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
980
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
981
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
936
982
  exports.SortOrder = SortOrder;
937
- exports.ThrottlingException = ThrottlingException$1;
938
- exports.ValidationException = ValidationException$1;
983
+ exports.ThrottlingException = ThrottlingException;
984
+ exports.ThrottlingException$ = ThrottlingException$;
985
+ exports.TimeFilter$ = TimeFilter$;
986
+ exports.TokenBalance$ = TokenBalance$;
987
+ exports.TokenFilter$ = TokenFilter$;
988
+ exports.TokenIdentifier$ = TokenIdentifier$;
989
+ exports.Transaction$ = Transaction$;
990
+ exports.TransactionEvent$ = TransactionEvent$;
991
+ exports.TransactionOutputItem$ = TransactionOutputItem$;
992
+ exports.ValidationException = ValidationException;
993
+ exports.ValidationException$ = ValidationException$;
994
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
939
995
  exports.ValidationExceptionReason = ValidationExceptionReason;
996
+ exports.VoutFilter$ = VoutFilter$;
940
997
  exports.paginateListAssetContracts = paginateListAssetContracts;
941
998
  exports.paginateListFilteredTransactionEvents = paginateListFilteredTransactionEvents;
942
999
  exports.paginateListTokenBalances = paginateListTokenBalances;