@secondlayer/sdk 6.2.1 → 6.3.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/index.d.ts CHANGED
@@ -485,6 +485,197 @@ type ContractCallsWalkParams = Omit<ContractCallsListParams, "limit"> & {
485
485
  batchSize?: number
486
486
  signal?: AbortSignal
487
487
  };
488
+ /** One canonical block in the sync map. Lean by design — block + parent hash
489
+ * for chain linkage, burn anchor for Bitcoin confirmations. Use `blocks` for
490
+ * the full block resource. */
491
+ type IndexCanonicalBlock = {
492
+ cursor: string
493
+ block_height: number
494
+ block_hash: string
495
+ parent_hash: string
496
+ burn_block_height: number
497
+ burn_block_hash: string | null
498
+ };
499
+ type CanonicalEnvelope = {
500
+ canonical: IndexCanonicalBlock[]
501
+ next_cursor: string | null
502
+ tip: IndexTip
503
+ };
504
+ type CanonicalListParams = {
505
+ cursor?: string | null
506
+ fromCursor?: string | null
507
+ limit?: number
508
+ fromHeight?: number
509
+ toHeight?: number
510
+ };
511
+ type CanonicalWalkParams = Omit<CanonicalListParams, "limit"> & {
512
+ batchSize?: number
513
+ signal?: AbortSignal
514
+ };
515
+ /** A block resource. Metadata is intentionally thin — only chain-linkage and
516
+ * burn-anchor fields are persisted (no miner / tx_count / signer). */
517
+ type IndexBlock = {
518
+ cursor: string
519
+ block_height: number
520
+ block_hash: string
521
+ parent_hash: string
522
+ burn_block_height: number
523
+ burn_block_hash: string | null
524
+ block_time: string | null
525
+ canonical: boolean
526
+ };
527
+ type BlocksEnvelope = {
528
+ blocks: IndexBlock[]
529
+ next_cursor: string | null
530
+ tip: IndexTip
531
+ };
532
+ type BlockEnvelope = {
533
+ block: IndexBlock
534
+ tip: IndexTip
535
+ };
536
+ type BlocksListParams = {
537
+ cursor?: string | null
538
+ fromCursor?: string | null
539
+ limit?: number
540
+ fromHeight?: number
541
+ toHeight?: number
542
+ };
543
+ type BlocksWalkParams = Omit<BlocksListParams, "limit"> & {
544
+ batchSize?: number
545
+ signal?: AbortSignal
546
+ };
547
+ type IndexPostCondition = {
548
+ type: "stx"
549
+ principal: string
550
+ condition_code: number
551
+ condition_code_name: string | null
552
+ amount: string
553
+ } | {
554
+ type: "ft"
555
+ principal: string
556
+ asset_identifier: string
557
+ condition_code: number
558
+ condition_code_name: string | null
559
+ amount: string
560
+ } | {
561
+ type: "nft"
562
+ principal: string
563
+ asset_identifier: string
564
+ asset_value: unknown
565
+ condition_code: number
566
+ condition_code_name: string | null
567
+ };
568
+ /** Full transaction document: columnar fields plus `raw_tx`-decoded enrichment.
569
+ * Payload sub-objects are present only for the matching `tx_type`; enrichment
570
+ * fields are null when `raw_tx` isn't decodable (e.g. burnchain ops). */
571
+ type IndexTransaction = {
572
+ cursor: string
573
+ tx_id: string
574
+ block_height: number
575
+ block_time?: string | null
576
+ tx_index: number
577
+ tx_type: string
578
+ sender: string
579
+ status: string
580
+ fee: string | null
581
+ nonce: string | null
582
+ sponsored: boolean | null
583
+ anchor_mode: string | null
584
+ post_condition_mode: string | null
585
+ post_conditions: IndexPostCondition[]
586
+ contract_call?: {
587
+ contract_id: string
588
+ function_name: string
589
+ function_args: unknown[]
590
+ result: unknown
591
+ result_hex: string | null
592
+ }
593
+ token_transfer?: {
594
+ recipient: string
595
+ amount: string
596
+ memo: string
597
+ }
598
+ smart_contract?: {
599
+ contract_id: string | null
600
+ clarity_version: number | null
601
+ }
602
+ coinbase?: {
603
+ alt_recipient: string | null
604
+ }
605
+ tenure_change?: {
606
+ cause: number
607
+ }
608
+ };
609
+ type TransactionsEnvelope = {
610
+ transactions: IndexTransaction[]
611
+ next_cursor: string | null
612
+ tip: IndexTip
613
+ reorgs: never[]
614
+ };
615
+ type TransactionEnvelope = {
616
+ transaction: IndexTransaction
617
+ tip: IndexTip
618
+ };
619
+ type TransactionsListParams = {
620
+ cursor?: string | null
621
+ fromCursor?: string | null
622
+ limit?: number
623
+ type?: string
624
+ sender?: string
625
+ contractId?: string
626
+ fromHeight?: number
627
+ toHeight?: number
628
+ };
629
+ type TransactionsWalkParams = Omit<TransactionsListParams, "limit"> & {
630
+ batchSize?: number
631
+ signal?: AbortSignal
632
+ };
633
+ /** A decoded PoX-4 stacking action (one per stacking contract call). */
634
+ type IndexStackingAction = {
635
+ cursor: string
636
+ block_height: number
637
+ block_time?: string | null
638
+ burn_block_height: number
639
+ tx_id: string
640
+ tx_index: number
641
+ function_name: string
642
+ caller: string
643
+ stacker: string | null
644
+ delegate_to: string | null
645
+ amount_ustx: string | null
646
+ lock_period: number | null
647
+ pox_addr: {
648
+ version: number | null
649
+ hashbytes: string | null
650
+ btc: string | null
651
+ }
652
+ start_cycle: number | null
653
+ end_cycle: number | null
654
+ reward_cycle: number | null
655
+ signer_key: string | null
656
+ result_ok: boolean
657
+ };
658
+ type StackingEnvelope = {
659
+ stacking: IndexStackingAction[]
660
+ next_cursor: string | null
661
+ tip: IndexTip
662
+ /** Present only when the PoX-4 decoder is disabled, explaining an empty feed. */
663
+ notes?: string
664
+ };
665
+ type StackingListParams = {
666
+ cursor?: string | null
667
+ fromCursor?: string | null
668
+ limit?: number
669
+ functionName?: string
670
+ stacker?: string
671
+ caller?: string
672
+ fromHeight?: number
673
+ toHeight?: number
674
+ };
675
+ type StackingWalkParams = Omit<StackingListParams, "limit"> & {
676
+ batchSize?: number
677
+ signal?: AbortSignal
678
+ };
488
679
  declare class Index extends BaseClient {
489
680
  constructor(options?: Partial<SecondLayerOptions>);
490
681
  readonly ftTransfers: {
@@ -504,6 +695,31 @@ declare class Index extends BaseClient {
504
695
  list: (params?: ContractCallsListParams) => Promise<ContractCallsEnvelope>
505
696
  walk: (params?: ContractCallsWalkParams) => AsyncIterable<IndexContractCall>
506
697
  };
698
+ /** Canonical block-hash map — sync only the current canonical chain. */
699
+ readonly canonical: {
700
+ list: (params?: CanonicalListParams) => Promise<CanonicalEnvelope>
701
+ walk: (params?: CanonicalWalkParams) => AsyncIterable<IndexCanonicalBlock>
702
+ };
703
+ /** Canonical blocks: paginated `list`/`walk`, plus `get` by height or hash
704
+ * (resolves to null on 404). */
705
+ readonly blocks: {
706
+ list: (params?: BlocksListParams) => Promise<BlocksEnvelope>
707
+ walk: (params?: BlocksWalkParams) => AsyncIterable<IndexBlock>
708
+ get: (ref: string | number) => Promise<BlockEnvelope | null>
709
+ };
710
+ /** Full transaction documents: paginated `list`/`walk`, plus `get` by tx_id
711
+ * (resolves to null on 404). */
712
+ readonly transactions: {
713
+ list: (params?: TransactionsListParams) => Promise<TransactionsEnvelope>
714
+ walk: (params?: TransactionsWalkParams) => AsyncIterable<IndexTransaction>
715
+ get: (txId: string) => Promise<TransactionEnvelope | null>
716
+ };
717
+ /** Decoded PoX-4 stacking actions. Empty (with a `notes` hint) when the
718
+ * platform's PoX-4 decoder is disabled. */
719
+ readonly stacking: {
720
+ list: (params?: StackingListParams) => Promise<StackingEnvelope>
721
+ walk: (params?: StackingWalkParams) => AsyncIterable<IndexStackingAction>
722
+ };
507
723
  private listFtTransfers;
508
724
  private listNftTransfers;
509
725
  private walkFtTransfers;
@@ -512,6 +728,16 @@ declare class Index extends BaseClient {
512
728
  private walkEvents;
513
729
  private listContractCalls;
514
730
  private walkContractCalls;
731
+ private listCanonical;
732
+ private walkCanonical;
733
+ private listBlocks;
734
+ private getBlock;
735
+ private walkBlocks;
736
+ private listTransactions;
737
+ private getTransaction;
738
+ private walkTransactions;
739
+ private listStacking;
740
+ private walkStacking;
515
741
  }
516
742
  declare const STREAMS_EVENT_TYPES: readonly ["stx_transfer", "stx_mint", "stx_burn", "stx_lock", "ft_transfer", "ft_mint", "ft_burn", "nft_transfer", "nft_mint", "nft_burn", "print"];
517
743
  type StreamsEventType = (typeof STREAMS_EVENT_TYPES)[number];
@@ -1329,4 +1555,4 @@ declare function toJsonSafe(value: unknown): unknown;
1329
1555
  /** Decode a hex-encoded Clarity value to JSON-safe JS (uints as strings,
1330
1556
  * buffers as `0x…` hex, tuples as objects). Returns the input hex on failure. */
1331
1557
  declare function decodeClarityValue(hex: string): unknown;
1332
- export { verifyWebhookSignature, toJsonSafe, isStxTransfer, isStxMint, isStxLock, isStxBurn, isPrint, isNftTransfer, isNftMint, isNftBurn, isFtTransfer, isFtMint, isFtBurn, getSubgraph, decodeStxTransfer, decodeStxMint, decodeStxLock, decodeStxBurn, decodePrint, decodeNftTransfer, decodeNftMint, decodeNftBurn, decodeFtTransfer, decodeFtMint, decodeFtBurn, decodeClarityValue, createStreamsClient, VersionConflictError, ValidationError, UpdateSubscriptionRequest2 as UpdateSubscriptionRequest, Subscriptions, SubscriptionSummary2 as SubscriptionSummary, SubscriptionStatus, SubscriptionRuntime, SubscriptionFormat, SubscriptionDetail2 as SubscriptionDetail, Subgraphs, SubgraphSpecOptions3 as SubgraphSpecOptions, SubgraphSpecFormat2 as SubgraphSpecFormat, SubgraphAgentSchema3 as SubgraphAgentSchema, StreamsTip, StreamsSignatureError, StreamsServerError, StreamsReorgsListParams, StreamsReorgsListEnvelope, StreamsReorgContext, StreamsReorg, StreamsEventsStreamParams, StreamsEventsListParams, StreamsEventsListEnvelope, StreamsEventsEnvelope, StreamsEventsConsumeResult, StreamsEventsConsumeParams, StreamsEventType, StreamsEventPayload, StreamsEvent, StreamsDumpsManifest, StreamsDumps, StreamsDumpFile, StreamsClient, StreamsCanonicalBlock, StreamsBatchContext, SecondLayerOptions, SecondLayer, RotateSecretResponse2 as RotateSecretResponse, ReplayResult2 as ReplayResult, RateLimitError, Pox4CallsParams, NftTransfersWalkParams, NftTransfersListParams, NftTransfersEnvelope, NftTransferPayload, NftTransferEvent, NftTransfer, IndexTip, IndexEventType, IndexEvent, IndexContractCall, Index, FtTransfersWalkParams, FtTransfersListParams, FtTransfersEnvelope, FtTransferPayload, FtTransferEvent, FtTransfer, FetchLike2 as FetchLike, EventsWalkParams, EventsListParams, EventsEnvelope, DeliveryRow2 as DeliveryRow, DecodedStxTransferPayload, DecodedStxTransfer, DecodedStxMintPayload, DecodedStxMint, DecodedStxLockPayload, DecodedStxLock, DecodedStxBurnPayload, DecodedStxBurn, DecodedPrintValue, DecodedPrintPayload, DecodedPrint, DecodedNftTransferPayload, DecodedNftTransfer, DecodedNftMintPayload, DecodedNftMint, DecodedNftBurnPayload, DecodedNftBurn, DecodedFtTransferPayload, DecodedFtTransfer, DecodedFtMintPayload, DecodedFtMint, DecodedFtBurnPayload, DecodedFtBurn, DecodedEventRow, DecodedEventColumns, DeadRow2 as DeadRow, Datasets, DatasetRow, CursorListParams, CursorEnvelope, Cursor, CreateSubscriptionResponse2 as CreateSubscriptionResponse, CreateSubscriptionRequest2 as CreateSubscriptionRequest, ContractsListParams, ContractsEnvelope, Contracts, ContractSummary, ContractConformance, ContractCallsWalkParams, ContractCallsListParams, ContractCallsEnvelope, CURSOR_SLUGS, AuthError, ApiError };
1558
+ export { verifyWebhookSignature, toJsonSafe, isStxTransfer, isStxMint, isStxLock, isStxBurn, isPrint, isNftTransfer, isNftMint, isNftBurn, isFtTransfer, isFtMint, isFtBurn, getSubgraph, decodeStxTransfer, decodeStxMint, decodeStxLock, decodeStxBurn, decodePrint, decodeNftTransfer, decodeNftMint, decodeNftBurn, decodeFtTransfer, decodeFtMint, decodeFtBurn, decodeClarityValue, createStreamsClient, VersionConflictError, ValidationError, UpdateSubscriptionRequest2 as UpdateSubscriptionRequest, TransactionsWalkParams, TransactionsListParams, TransactionsEnvelope, TransactionEnvelope, Subscriptions, SubscriptionSummary2 as SubscriptionSummary, SubscriptionStatus, SubscriptionRuntime, SubscriptionFormat, SubscriptionDetail2 as SubscriptionDetail, Subgraphs, SubgraphSpecOptions3 as SubgraphSpecOptions, SubgraphSpecFormat2 as SubgraphSpecFormat, SubgraphAgentSchema3 as SubgraphAgentSchema, StreamsTip, StreamsSignatureError, StreamsServerError, StreamsReorgsListParams, StreamsReorgsListEnvelope, StreamsReorgContext, StreamsReorg, StreamsEventsStreamParams, StreamsEventsListParams, StreamsEventsListEnvelope, StreamsEventsEnvelope, StreamsEventsConsumeResult, StreamsEventsConsumeParams, StreamsEventType, StreamsEventPayload, StreamsEvent, StreamsDumpsManifest, StreamsDumps, StreamsDumpFile, StreamsClient, StreamsCanonicalBlock, StreamsBatchContext, StackingWalkParams, StackingListParams, StackingEnvelope, SecondLayerOptions, SecondLayer, RotateSecretResponse2 as RotateSecretResponse, ReplayResult2 as ReplayResult, RateLimitError, Pox4CallsParams, NftTransfersWalkParams, NftTransfersListParams, NftTransfersEnvelope, NftTransferPayload, NftTransferEvent, NftTransfer, IndexTransaction, IndexTip, IndexStackingAction, IndexPostCondition, IndexEventType, IndexEvent, IndexContractCall, IndexCanonicalBlock, IndexBlock, Index, FtTransfersWalkParams, FtTransfersListParams, FtTransfersEnvelope, FtTransferPayload, FtTransferEvent, FtTransfer, FetchLike2 as FetchLike, EventsWalkParams, EventsListParams, EventsEnvelope, DeliveryRow2 as DeliveryRow, DecodedStxTransferPayload, DecodedStxTransfer, DecodedStxMintPayload, DecodedStxMint, DecodedStxLockPayload, DecodedStxLock, DecodedStxBurnPayload, DecodedStxBurn, DecodedPrintValue, DecodedPrintPayload, DecodedPrint, DecodedNftTransferPayload, DecodedNftTransfer, DecodedNftMintPayload, DecodedNftMint, DecodedNftBurnPayload, DecodedNftBurn, DecodedFtTransferPayload, DecodedFtTransfer, DecodedFtMintPayload, DecodedFtMint, DecodedFtBurnPayload, DecodedFtBurn, DecodedEventRow, DecodedEventColumns, DeadRow2 as DeadRow, Datasets, DatasetRow, CursorListParams, CursorEnvelope, Cursor, CreateSubscriptionResponse2 as CreateSubscriptionResponse, CreateSubscriptionRequest2 as CreateSubscriptionRequest, ContractsListParams, ContractsEnvelope, Contracts, ContractSummary, ContractConformance, ContractCallsWalkParams, ContractCallsListParams, ContractCallsEnvelope, CanonicalWalkParams, CanonicalListParams, CanonicalEnvelope, CURSOR_SLUGS, BlocksWalkParams, BlocksListParams, BlocksEnvelope, BlockEnvelope, AuthError, ApiError };
package/dist/index.js CHANGED
@@ -489,6 +489,24 @@ class Index extends BaseClient {
489
489
  list: (params = {}) => this.listContractCalls(params),
490
490
  walk: (params = {}) => this.walkContractCalls(params)
491
491
  };
492
+ canonical = {
493
+ list: (params = {}) => this.listCanonical(params),
494
+ walk: (params = {}) => this.walkCanonical(params)
495
+ };
496
+ blocks = {
497
+ list: (params = {}) => this.listBlocks(params),
498
+ walk: (params = {}) => this.walkBlocks(params),
499
+ get: (ref) => this.getBlock(ref)
500
+ };
501
+ transactions = {
502
+ list: (params = {}) => this.listTransactions(params),
503
+ walk: (params = {}) => this.walkTransactions(params),
504
+ get: (txId) => this.getTransaction(txId)
505
+ };
506
+ stacking = {
507
+ list: (params = {}) => this.listStacking(params),
508
+ walk: (params = {}) => this.walkStacking(params)
509
+ };
492
510
  async listFtTransfers(params = {}) {
493
511
  return this.request("GET", `/v1/index/ft-transfers${buildQuery({
494
512
  cursor: params.cursor,
@@ -640,6 +658,166 @@ class Index extends BaseClient {
640
658
  firstPage = false;
641
659
  }
642
660
  }
661
+ async listCanonical(params = {}) {
662
+ return this.request("GET", `/v1/index/canonical${buildQuery({
663
+ cursor: params.cursor,
664
+ from_cursor: params.fromCursor,
665
+ limit: params.limit,
666
+ from_height: params.fromHeight,
667
+ to_height: params.toHeight
668
+ })}`);
669
+ }
670
+ async* walkCanonical(params = {}) {
671
+ const batchSize = params.batchSize ?? 200;
672
+ let cursor = params.cursor ?? params.fromCursor ?? null;
673
+ let firstPage = true;
674
+ while (!params.signal?.aborted) {
675
+ const envelope = await this.listCanonical({
676
+ ...params,
677
+ limit: batchSize,
678
+ cursor: firstPage ? params.cursor : cursor,
679
+ fromCursor: firstPage ? params.fromCursor : undefined,
680
+ fromHeight: firstPage ? firstWalkFromHeight(params) : undefined
681
+ });
682
+ for (const block of envelope.canonical) {
683
+ if (params.signal?.aborted)
684
+ return;
685
+ yield block;
686
+ }
687
+ const nextCursor = envelope.next_cursor;
688
+ if (!nextCursor || nextCursor === cursor || envelope.canonical.length < batchSize) {
689
+ return;
690
+ }
691
+ cursor = nextCursor;
692
+ firstPage = false;
693
+ }
694
+ }
695
+ async listBlocks(params = {}) {
696
+ return this.request("GET", `/v1/index/blocks${buildQuery({
697
+ cursor: params.cursor,
698
+ from_cursor: params.fromCursor,
699
+ limit: params.limit,
700
+ from_height: params.fromHeight,
701
+ to_height: params.toHeight
702
+ })}`);
703
+ }
704
+ async getBlock(ref) {
705
+ try {
706
+ return await this.request("GET", `/v1/index/blocks/${encodeURIComponent(String(ref))}`);
707
+ } catch (err) {
708
+ if (err instanceof ApiError && err.status === 404)
709
+ return null;
710
+ throw err;
711
+ }
712
+ }
713
+ async* walkBlocks(params = {}) {
714
+ const batchSize = params.batchSize ?? 200;
715
+ let cursor = params.cursor ?? params.fromCursor ?? null;
716
+ let firstPage = true;
717
+ while (!params.signal?.aborted) {
718
+ const envelope = await this.listBlocks({
719
+ ...params,
720
+ limit: batchSize,
721
+ cursor: firstPage ? params.cursor : cursor,
722
+ fromCursor: firstPage ? params.fromCursor : undefined,
723
+ fromHeight: firstPage ? firstWalkFromHeight(params) : undefined
724
+ });
725
+ for (const block of envelope.blocks) {
726
+ if (params.signal?.aborted)
727
+ return;
728
+ yield block;
729
+ }
730
+ const nextCursor = envelope.next_cursor;
731
+ if (!nextCursor || nextCursor === cursor || envelope.blocks.length < batchSize) {
732
+ return;
733
+ }
734
+ cursor = nextCursor;
735
+ firstPage = false;
736
+ }
737
+ }
738
+ async listTransactions(params = {}) {
739
+ return this.request("GET", `/v1/index/transactions${buildQuery({
740
+ cursor: params.cursor,
741
+ from_cursor: params.fromCursor,
742
+ limit: params.limit,
743
+ type: params.type,
744
+ sender: params.sender,
745
+ contract_id: params.contractId,
746
+ from_height: params.fromHeight,
747
+ to_height: params.toHeight
748
+ })}`);
749
+ }
750
+ async getTransaction(txId) {
751
+ try {
752
+ return await this.request("GET", `/v1/index/transactions/${encodeURIComponent(txId)}`);
753
+ } catch (err) {
754
+ if (err instanceof ApiError && err.status === 404)
755
+ return null;
756
+ throw err;
757
+ }
758
+ }
759
+ async* walkTransactions(params = {}) {
760
+ const batchSize = params.batchSize ?? 200;
761
+ let cursor = params.cursor ?? params.fromCursor ?? null;
762
+ let firstPage = true;
763
+ while (!params.signal?.aborted) {
764
+ const envelope = await this.listTransactions({
765
+ ...params,
766
+ limit: batchSize,
767
+ cursor: firstPage ? params.cursor : cursor,
768
+ fromCursor: firstPage ? params.fromCursor : undefined,
769
+ fromHeight: firstPage ? firstWalkFromHeight(params) : undefined
770
+ });
771
+ for (const tx of envelope.transactions) {
772
+ if (params.signal?.aborted)
773
+ return;
774
+ yield tx;
775
+ }
776
+ const nextCursor = envelope.next_cursor;
777
+ if (!nextCursor || nextCursor === cursor || envelope.transactions.length < batchSize) {
778
+ return;
779
+ }
780
+ cursor = nextCursor;
781
+ firstPage = false;
782
+ }
783
+ }
784
+ async listStacking(params = {}) {
785
+ return this.request("GET", `/v1/index/stacking${buildQuery({
786
+ cursor: params.cursor,
787
+ from_cursor: params.fromCursor,
788
+ limit: params.limit,
789
+ function_name: params.functionName,
790
+ stacker: params.stacker,
791
+ caller: params.caller,
792
+ from_height: params.fromHeight,
793
+ to_height: params.toHeight
794
+ })}`);
795
+ }
796
+ async* walkStacking(params = {}) {
797
+ const batchSize = params.batchSize ?? 200;
798
+ let cursor = params.cursor ?? params.fromCursor ?? null;
799
+ let firstPage = true;
800
+ while (!params.signal?.aborted) {
801
+ const envelope = await this.listStacking({
802
+ ...params,
803
+ limit: batchSize,
804
+ cursor: firstPage ? params.cursor : cursor,
805
+ fromCursor: firstPage ? params.fromCursor : undefined,
806
+ fromHeight: firstPage ? firstWalkFromHeight(params) : undefined
807
+ });
808
+ for (const action of envelope.stacking) {
809
+ if (params.signal?.aborted)
810
+ return;
811
+ yield action;
812
+ }
813
+ const nextCursor = envelope.next_cursor;
814
+ if (!nextCursor || nextCursor === cursor || envelope.stacking.length < batchSize) {
815
+ return;
816
+ }
817
+ cursor = nextCursor;
818
+ firstPage = false;
819
+ }
820
+ }
643
821
  }
644
822
 
645
823
  // src/streams/client.ts
@@ -1563,5 +1741,5 @@ export {
1563
1741
  ApiError
1564
1742
  };
1565
1743
 
1566
- //# debugId=C7330C1F713D815864756E2164756E21
1744
+ //# debugId=26B14752E7D837C264756E2164756E21
1567
1745
  //# sourceMappingURL=index.js.map