@merkl/api 0.16.39 → 0.16.41
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/database/api/.generated/edge.js +2 -2
- package/dist/database/api/.generated/index.js +2 -2
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +4 -0
- package/dist/src/eden/index.d.ts +7600 -5065
- package/dist/src/entities/opportunity.js +4 -0
- package/dist/src/index.d.ts +753 -246
- package/dist/src/jobs/etl/update-dynamic-data.d.ts +1 -0
- package/dist/src/jobs/etl/update-dynamic-data.js +71 -0
- package/dist/src/libs/campaigns/campaignsDynamicData.d.ts +1 -1
- package/dist/src/libs/campaigns/campaignsDynamicData.js +22 -0
- package/dist/src/modules/v4/airflow/airflow.service.d.ts +3 -0
- package/dist/src/modules/v4/airflow/airflow.service.js +20 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +81 -1
- package/dist/src/modules/v4/campaign/campaign.repository.js +57 -1
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +57 -3
- package/dist/src/modules/v4/campaign/campaign.service.js +15 -6
- package/dist/src/modules/v4/campaign/index.d.ts +0 -1
- package/dist/src/modules/v4/campaign/index.js +0 -1
- package/dist/src/modules/v4/chain/chain.controller.d.ts +12 -36
- package/dist/src/modules/v4/chain/chain.controller.js +8 -6
- package/dist/src/modules/v4/chain/chain.model.d.ts +2 -0
- package/dist/src/modules/v4/chain/chain.model.js +2 -0
- package/dist/src/modules/v4/chain/chain.repository.d.ts +9 -11
- package/dist/src/modules/v4/chain/chain.repository.js +5 -18
- package/dist/src/modules/v4/chain/chain.service.d.ts +5 -0
- package/dist/src/modules/v4/chain/chain.service.js +4 -1
- package/dist/src/modules/v4/chain/index.d.ts +2 -1
- package/dist/src/modules/v4/chain/index.js +6 -1
- package/dist/src/modules/v4/computedValue/computedValue.repository.d.ts +1 -1
- package/dist/src/modules/v4/computedValue/computedValue.service.d.ts +1 -1
- package/dist/src/modules/v4/computedValue/index.d.ts +0 -1
- package/dist/src/modules/v4/computedValue/index.js +0 -1
- package/dist/src/modules/v4/dynamicData/dynamicData.service.js +1 -1
- package/dist/src/modules/v4/enso/enso.service.d.ts +1 -12
- package/dist/src/modules/v4/interaction/interaction.controller.d.ts +2 -12
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +703 -134
- package/dist/src/modules/v4/opportunity/opportunity.controller.js +2 -4
- package/dist/src/modules/v4/opportunity/opportunity.converter.js +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.model.js +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.repository.js +2 -1
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +0 -204
- package/dist/src/modules/v4/opportunity/opportunity.service.js +6 -4
- package/dist/src/modules/v4/opportunity/subservices/getVestMetaData.service.d.ts +1 -1
- package/dist/src/modules/v4/opportunity/subservices/getVestMetaData.service.js +1 -1
- package/dist/src/modules/v4/protocol/index.d.ts +2 -1
- package/dist/src/modules/v4/protocol/index.js +8 -1
- package/dist/src/modules/v4/protocol/protocol.controller.d.ts +10 -40
- package/dist/src/modules/v4/protocol/protocol.controller.js +11 -9
- package/dist/src/modules/v4/protocol/protocol.service.d.ts +7 -7
- package/dist/src/modules/v4/protocol/protocol.service.js +10 -10
- package/dist/src/modules/v4/reward/index.d.ts +0 -1
- package/dist/src/modules/v4/reward/index.js +0 -1
- package/dist/src/modules/v4/reward/reward.service.d.ts +5 -5
- package/dist/src/modules/v4/reward/reward.service.js +6 -7
- package/dist/src/modules/v4/router.d.ts +752 -245
- package/dist/src/modules/v4/status/index.d.ts +0 -1
- package/dist/src/modules/v4/status/index.js +0 -1
- package/dist/src/modules/v4/status/status.controller.d.ts +1 -1
- package/dist/src/modules/v4/status/status.repository.d.ts +1 -1
- package/dist/src/modules/v4/status/status.service.d.ts +2 -2
- package/dist/src/modules/v4/token/token.controller.d.ts +2 -0
- package/dist/src/modules/v4/token/token.model.d.ts +1 -0
- package/dist/src/modules/v4/token/token.model.js +1 -0
- package/dist/src/modules/v4/token/token.repository.js +4 -1
- package/dist/src/modules/v4/token/token.service.d.ts +1 -0
- package/dist/src/modules/v4/token/token.service.js +10 -0
- package/dist/src/routes/v3/campaigns.d.ts +1 -1
- package/dist/src/routes/v3/opportunity.js +1 -1
- package/dist/src/routes/v3/router.d.ts +1 -1
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +2 -1
package/dist/src/index.d.ts
CHANGED
@@ -321,57 +321,6 @@ declare const app: Elysia<"", false, {
|
|
321
321
|
amount: bigint;
|
322
322
|
}[];
|
323
323
|
};
|
324
|
-
campaigns: {
|
325
|
-
params: any;
|
326
|
-
chain: {
|
327
|
-
name: string;
|
328
|
-
id: number;
|
329
|
-
icon: string;
|
330
|
-
};
|
331
|
-
rewardToken: {
|
332
|
-
symbol: string;
|
333
|
-
name: string | null;
|
334
|
-
id: string;
|
335
|
-
icon: string;
|
336
|
-
chainId: number;
|
337
|
-
address: string;
|
338
|
-
decimals: number;
|
339
|
-
verified: boolean;
|
340
|
-
isTest: boolean;
|
341
|
-
} & {
|
342
|
-
price?: number | null | undefined;
|
343
|
-
};
|
344
|
-
distributionChain: {
|
345
|
-
name: string;
|
346
|
-
id: number;
|
347
|
-
icon: string;
|
348
|
-
} | undefined;
|
349
|
-
campaignStatus: {
|
350
|
-
error: string;
|
351
|
-
details: import("database/api/.generated/runtime/library").JsonValue;
|
352
|
-
status: import("../database/api/.generated").$Enums.RunStatus;
|
353
|
-
campaignId: string;
|
354
|
-
computedUntil: bigint;
|
355
|
-
processingStarted: bigint;
|
356
|
-
};
|
357
|
-
creatorAddress: string;
|
358
|
-
Creator: {
|
359
|
-
tags: string[];
|
360
|
-
address: string;
|
361
|
-
creatorId: string | null;
|
362
|
-
};
|
363
|
-
type: string;
|
364
|
-
id: string;
|
365
|
-
subType: number | null;
|
366
|
-
startTimestamp: bigint;
|
367
|
-
endTimestamp: bigint;
|
368
|
-
computeChainId: number;
|
369
|
-
distributionChainId: number;
|
370
|
-
campaignId: string;
|
371
|
-
rewardTokenId: string;
|
372
|
-
amount: string;
|
373
|
-
opportunityId: string;
|
374
|
-
}[];
|
375
324
|
id: string;
|
376
325
|
depositUrl: string | undefined;
|
377
326
|
tokens: ({
|
@@ -584,40 +533,742 @@ declare const app: Elysia<"", false, {
|
|
584
533
|
headers: unknown;
|
585
534
|
response: {
|
586
535
|
200: {
|
587
|
-
|
588
|
-
|
536
|
+
message: string;
|
537
|
+
name: string;
|
538
|
+
};
|
539
|
+
readonly 404: {
|
540
|
+
message: string;
|
541
|
+
name: string;
|
542
|
+
};
|
543
|
+
readonly 500: {
|
544
|
+
code: string;
|
545
|
+
info: string;
|
546
|
+
httpCode: number;
|
547
|
+
};
|
548
|
+
} | {
|
549
|
+
200: {
|
550
|
+
code: string;
|
551
|
+
info: string;
|
552
|
+
httpCode: number;
|
553
|
+
};
|
554
|
+
readonly 404: {
|
555
|
+
message: string;
|
556
|
+
name: string;
|
557
|
+
};
|
558
|
+
readonly 500: {
|
559
|
+
code: string;
|
560
|
+
info: string;
|
561
|
+
httpCode: number;
|
562
|
+
};
|
563
|
+
} | {
|
564
|
+
200: never;
|
565
|
+
404: {
|
566
|
+
message: string;
|
567
|
+
name: string;
|
568
|
+
};
|
569
|
+
readonly 500: {
|
570
|
+
code: string;
|
571
|
+
info: string;
|
572
|
+
httpCode: number;
|
573
|
+
};
|
574
|
+
} | {
|
575
|
+
200: never;
|
576
|
+
500: {
|
577
|
+
code: string;
|
578
|
+
info: string;
|
579
|
+
httpCode: number;
|
580
|
+
};
|
581
|
+
readonly 404: {
|
582
|
+
message: string;
|
583
|
+
name: string;
|
584
|
+
};
|
585
|
+
} | {
|
586
|
+
200: {
|
587
|
+
protocol?: {
|
588
|
+
name: string;
|
589
|
+
url: string;
|
590
|
+
description: string;
|
591
|
+
id: string;
|
592
|
+
tags: string[];
|
593
|
+
icon: string;
|
594
|
+
} | null | undefined;
|
595
|
+
depositUrl?: string | undefined;
|
596
|
+
aprRecord?: {
|
597
|
+
timestamp: string | bigint;
|
589
598
|
cumulated: number;
|
590
|
-
timestamp: bigint;
|
591
599
|
breakdowns: {
|
592
|
-
type:
|
600
|
+
type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
|
593
601
|
id: number;
|
594
602
|
identifier: string;
|
595
603
|
value: number;
|
596
604
|
aprRecordId: string;
|
597
605
|
}[];
|
606
|
+
} | undefined;
|
607
|
+
tvlRecord?: {
|
608
|
+
total: number;
|
609
|
+
timestamp: string | bigint;
|
610
|
+
breakdowns: {
|
611
|
+
type: "TOKEN" | "PROTOCOL";
|
612
|
+
id: number;
|
613
|
+
identifier: string;
|
614
|
+
value: number;
|
615
|
+
tvlRecordId: string;
|
616
|
+
}[];
|
617
|
+
} | undefined;
|
618
|
+
rewardsRecord?: {
|
619
|
+
total: number;
|
620
|
+
id: string;
|
621
|
+
timestamp: string | bigint;
|
622
|
+
breakdowns: {
|
623
|
+
token: {
|
624
|
+
price?: number | null | undefined;
|
625
|
+
symbol: string;
|
626
|
+
name: string | null;
|
627
|
+
id: string;
|
628
|
+
icon: string;
|
629
|
+
chainId: number;
|
630
|
+
address: string;
|
631
|
+
decimals: number;
|
632
|
+
verified: boolean;
|
633
|
+
isTest: boolean;
|
634
|
+
};
|
635
|
+
id: number;
|
636
|
+
value: number;
|
637
|
+
campaignId: string;
|
638
|
+
amount: string | bigint;
|
639
|
+
dailyRewardsRecordId: string;
|
640
|
+
}[];
|
641
|
+
} | undefined;
|
642
|
+
name: string;
|
643
|
+
type: string;
|
644
|
+
tokens: {
|
645
|
+
price?: number | null | undefined;
|
646
|
+
symbol: string;
|
647
|
+
name: string | null;
|
648
|
+
id: string;
|
649
|
+
icon: string;
|
650
|
+
chainId: number;
|
651
|
+
address: string;
|
652
|
+
decimals: number;
|
653
|
+
verified: boolean;
|
654
|
+
isTest: boolean;
|
655
|
+
}[];
|
656
|
+
id: string;
|
657
|
+
status: string;
|
658
|
+
tags: string[];
|
659
|
+
identifier: string;
|
660
|
+
chain: {
|
661
|
+
name: string;
|
662
|
+
id: number;
|
663
|
+
icon: string;
|
598
664
|
};
|
599
|
-
|
665
|
+
chainId: number;
|
666
|
+
action: string;
|
667
|
+
tvl: number;
|
668
|
+
apr: number;
|
669
|
+
dailyRewards: number;
|
670
|
+
campaigns: {
|
671
|
+
campaignStatus?: {
|
672
|
+
error?: string | undefined;
|
673
|
+
details?: any;
|
674
|
+
status: string;
|
675
|
+
campaignId: string;
|
676
|
+
computedUntil: string | bigint;
|
677
|
+
processingStarted: string | bigint;
|
678
|
+
} | undefined;
|
679
|
+
distributionChain?: {
|
680
|
+
name: string;
|
681
|
+
id: number;
|
682
|
+
icon: string;
|
683
|
+
} | undefined;
|
684
|
+
type: string;
|
685
|
+
id: string;
|
686
|
+
params: any;
|
687
|
+
subType: number | null;
|
688
|
+
chain: {
|
689
|
+
name: string;
|
690
|
+
id: number;
|
691
|
+
icon: string;
|
692
|
+
};
|
693
|
+
startTimestamp: string | bigint;
|
694
|
+
endTimestamp: string | bigint;
|
695
|
+
computeChainId: number;
|
696
|
+
distributionChainId: number;
|
697
|
+
campaignId: string;
|
698
|
+
rewardTokenId: string;
|
699
|
+
amount: string;
|
700
|
+
opportunityId: string;
|
701
|
+
creatorAddress: string;
|
702
|
+
rewardToken: {
|
703
|
+
price?: number | null | undefined;
|
704
|
+
symbol: string;
|
705
|
+
name: string | null;
|
706
|
+
id: string;
|
707
|
+
icon: string;
|
708
|
+
chainId: number;
|
709
|
+
address: string;
|
710
|
+
decimals: number;
|
711
|
+
verified: boolean;
|
712
|
+
isTest: boolean;
|
713
|
+
};
|
714
|
+
}[];
|
715
|
+
}[];
|
716
|
+
readonly 404: {
|
717
|
+
message: string;
|
718
|
+
name: string;
|
719
|
+
};
|
720
|
+
readonly 500: {
|
721
|
+
code: string;
|
722
|
+
info: string;
|
723
|
+
httpCode: number;
|
724
|
+
};
|
725
|
+
} | {
|
726
|
+
200: never;
|
727
|
+
readonly 404: {
|
728
|
+
message: string;
|
729
|
+
name: string;
|
730
|
+
};
|
731
|
+
readonly 500: {
|
732
|
+
code: string;
|
733
|
+
info: string;
|
734
|
+
httpCode: number;
|
735
|
+
};
|
736
|
+
} | {
|
737
|
+
200: (Response | {
|
738
|
+
protocol?: {
|
739
|
+
name: string;
|
740
|
+
url: string;
|
741
|
+
description: string;
|
600
742
|
id: string;
|
743
|
+
tags: string[];
|
744
|
+
icon: string;
|
745
|
+
} | null | undefined;
|
746
|
+
depositUrl?: string | undefined;
|
747
|
+
aprRecord?: {
|
748
|
+
timestamp: string | bigint;
|
749
|
+
cumulated: number;
|
750
|
+
breakdowns: {
|
751
|
+
type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
|
752
|
+
id: number;
|
753
|
+
identifier: string;
|
754
|
+
value: number;
|
755
|
+
aprRecordId: string;
|
756
|
+
}[];
|
757
|
+
} | undefined;
|
758
|
+
tvlRecord?: {
|
601
759
|
total: number;
|
602
|
-
timestamp: bigint;
|
760
|
+
timestamp: string | bigint;
|
603
761
|
breakdowns: {
|
604
|
-
type:
|
762
|
+
type: "TOKEN" | "PROTOCOL";
|
605
763
|
id: number;
|
606
764
|
identifier: string;
|
607
765
|
value: number;
|
608
766
|
tvlRecordId: string;
|
609
767
|
}[];
|
610
|
-
};
|
611
|
-
rewardsRecord
|
768
|
+
} | undefined;
|
769
|
+
rewardsRecord?: {
|
770
|
+
total: number;
|
771
|
+
id: string;
|
772
|
+
timestamp: string | bigint;
|
773
|
+
breakdowns: {
|
774
|
+
token: {
|
775
|
+
price?: number | null | undefined;
|
776
|
+
symbol: string;
|
777
|
+
name: string | null;
|
778
|
+
id: string;
|
779
|
+
icon: string;
|
780
|
+
chainId: number;
|
781
|
+
address: string;
|
782
|
+
decimals: number;
|
783
|
+
verified: boolean;
|
784
|
+
isTest: boolean;
|
785
|
+
};
|
786
|
+
id: number;
|
787
|
+
value: number;
|
788
|
+
campaignId: string;
|
789
|
+
amount: string | bigint;
|
790
|
+
dailyRewardsRecordId: string;
|
791
|
+
}[];
|
792
|
+
} | undefined;
|
793
|
+
name: string;
|
794
|
+
type: string;
|
795
|
+
tokens: {
|
796
|
+
price?: number | null | undefined;
|
797
|
+
symbol: string;
|
798
|
+
name: string | null;
|
799
|
+
id: string;
|
800
|
+
icon: string;
|
801
|
+
chainId: number;
|
802
|
+
address: string;
|
803
|
+
decimals: number;
|
804
|
+
verified: boolean;
|
805
|
+
isTest: boolean;
|
806
|
+
}[];
|
807
|
+
id: string;
|
808
|
+
status: string;
|
809
|
+
tags: string[];
|
810
|
+
identifier: string;
|
811
|
+
chain: {
|
812
|
+
name: string;
|
813
|
+
id: number;
|
814
|
+
icon: string;
|
815
|
+
};
|
816
|
+
chainId: number;
|
817
|
+
action: string;
|
818
|
+
tvl: number;
|
819
|
+
apr: number;
|
820
|
+
dailyRewards: number;
|
821
|
+
campaigns: {
|
822
|
+
campaignStatus?: {
|
823
|
+
error?: string | undefined;
|
824
|
+
details?: any;
|
825
|
+
status: string;
|
826
|
+
campaignId: string;
|
827
|
+
computedUntil: string | bigint;
|
828
|
+
processingStarted: string | bigint;
|
829
|
+
} | undefined;
|
830
|
+
distributionChain?: {
|
831
|
+
name: string;
|
832
|
+
id: number;
|
833
|
+
icon: string;
|
834
|
+
} | undefined;
|
835
|
+
type: string;
|
836
|
+
id: string;
|
837
|
+
params: any;
|
838
|
+
subType: number | null;
|
839
|
+
chain: {
|
840
|
+
name: string;
|
841
|
+
id: number;
|
842
|
+
icon: string;
|
843
|
+
};
|
844
|
+
startTimestamp: string | bigint;
|
845
|
+
endTimestamp: string | bigint;
|
846
|
+
computeChainId: number;
|
847
|
+
distributionChainId: number;
|
848
|
+
campaignId: string;
|
849
|
+
rewardTokenId: string;
|
850
|
+
amount: string;
|
851
|
+
opportunityId: string;
|
852
|
+
creatorAddress: string;
|
853
|
+
rewardToken: {
|
854
|
+
price?: number | null | undefined;
|
855
|
+
symbol: string;
|
856
|
+
name: string | null;
|
857
|
+
id: string;
|
858
|
+
icon: string;
|
859
|
+
chainId: number;
|
860
|
+
address: string;
|
861
|
+
decimals: number;
|
862
|
+
verified: boolean;
|
863
|
+
isTest: boolean;
|
864
|
+
};
|
865
|
+
}[];
|
866
|
+
}[] | {
|
867
|
+
message: string;
|
868
|
+
name: string;
|
869
|
+
} | {
|
870
|
+
code: string;
|
871
|
+
info: string;
|
872
|
+
httpCode: number;
|
873
|
+
} | {
|
874
|
+
readonly 200: {
|
875
|
+
protocol?: {
|
876
|
+
name: string;
|
877
|
+
url: string;
|
878
|
+
description: string;
|
879
|
+
id: string;
|
880
|
+
tags: string[];
|
881
|
+
icon: string;
|
882
|
+
} | null | undefined;
|
883
|
+
depositUrl?: string | undefined;
|
884
|
+
aprRecord?: {
|
885
|
+
timestamp: string | bigint;
|
886
|
+
cumulated: number;
|
887
|
+
breakdowns: {
|
888
|
+
type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
|
889
|
+
id: number;
|
890
|
+
identifier: string;
|
891
|
+
value: number;
|
892
|
+
aprRecordId: string;
|
893
|
+
}[];
|
894
|
+
} | undefined;
|
895
|
+
tvlRecord?: {
|
896
|
+
total: number;
|
897
|
+
timestamp: string | bigint;
|
898
|
+
breakdowns: {
|
899
|
+
type: "TOKEN" | "PROTOCOL";
|
900
|
+
id: number;
|
901
|
+
identifier: string;
|
902
|
+
value: number;
|
903
|
+
tvlRecordId: string;
|
904
|
+
}[];
|
905
|
+
} | undefined;
|
906
|
+
rewardsRecord?: {
|
907
|
+
total: number;
|
908
|
+
id: string;
|
909
|
+
timestamp: string | bigint;
|
910
|
+
breakdowns: {
|
911
|
+
token: {
|
912
|
+
price?: number | null | undefined;
|
913
|
+
symbol: string;
|
914
|
+
name: string | null;
|
915
|
+
id: string;
|
916
|
+
icon: string;
|
917
|
+
chainId: number;
|
918
|
+
address: string;
|
919
|
+
decimals: number;
|
920
|
+
verified: boolean;
|
921
|
+
isTest: boolean;
|
922
|
+
};
|
923
|
+
id: number;
|
924
|
+
value: number;
|
925
|
+
campaignId: string;
|
926
|
+
amount: string | bigint;
|
927
|
+
dailyRewardsRecordId: string;
|
928
|
+
}[];
|
929
|
+
} | undefined;
|
930
|
+
name: string;
|
931
|
+
type: string;
|
932
|
+
tokens: {
|
933
|
+
price?: number | null | undefined;
|
934
|
+
symbol: string;
|
935
|
+
name: string | null;
|
936
|
+
id: string;
|
937
|
+
icon: string;
|
938
|
+
chainId: number;
|
939
|
+
address: string;
|
940
|
+
decimals: number;
|
941
|
+
verified: boolean;
|
942
|
+
isTest: boolean;
|
943
|
+
}[];
|
944
|
+
id: string;
|
945
|
+
status: string;
|
946
|
+
tags: string[];
|
947
|
+
identifier: string;
|
948
|
+
chain: {
|
949
|
+
name: string;
|
950
|
+
id: number;
|
951
|
+
icon: string;
|
952
|
+
};
|
953
|
+
chainId: number;
|
954
|
+
action: string;
|
955
|
+
tvl: number;
|
956
|
+
apr: number;
|
957
|
+
dailyRewards: number;
|
958
|
+
campaigns: {
|
959
|
+
campaignStatus?: {
|
960
|
+
error?: string | undefined;
|
961
|
+
details?: any;
|
962
|
+
status: string;
|
963
|
+
campaignId: string;
|
964
|
+
computedUntil: string | bigint;
|
965
|
+
processingStarted: string | bigint;
|
966
|
+
} | undefined;
|
967
|
+
distributionChain?: {
|
968
|
+
name: string;
|
969
|
+
id: number;
|
970
|
+
icon: string;
|
971
|
+
} | undefined;
|
972
|
+
type: string;
|
973
|
+
id: string;
|
974
|
+
params: any;
|
975
|
+
subType: number | null;
|
976
|
+
chain: {
|
977
|
+
name: string;
|
978
|
+
id: number;
|
979
|
+
icon: string;
|
980
|
+
};
|
981
|
+
startTimestamp: string | bigint;
|
982
|
+
endTimestamp: string | bigint;
|
983
|
+
computeChainId: number;
|
984
|
+
distributionChainId: number;
|
985
|
+
campaignId: string;
|
986
|
+
rewardTokenId: string;
|
987
|
+
amount: string;
|
988
|
+
opportunityId: string;
|
989
|
+
creatorAddress: string;
|
990
|
+
rewardToken: {
|
991
|
+
price?: number | null | undefined;
|
992
|
+
symbol: string;
|
993
|
+
name: string | null;
|
994
|
+
id: string;
|
995
|
+
icon: string;
|
996
|
+
chainId: number;
|
997
|
+
address: string;
|
998
|
+
decimals: number;
|
999
|
+
verified: boolean;
|
1000
|
+
isTest: boolean;
|
1001
|
+
};
|
1002
|
+
}[];
|
1003
|
+
}[];
|
1004
|
+
readonly 404: {
|
1005
|
+
message: string;
|
1006
|
+
name: string;
|
1007
|
+
};
|
1008
|
+
readonly 500: {
|
1009
|
+
code: string;
|
1010
|
+
info: string;
|
1011
|
+
httpCode: number;
|
1012
|
+
};
|
1013
|
+
}) & {
|
1014
|
+
protocol?: {
|
1015
|
+
name: string;
|
1016
|
+
url: string;
|
1017
|
+
description: string;
|
1018
|
+
id: string;
|
1019
|
+
tags: string[];
|
1020
|
+
icon: string;
|
1021
|
+
} | null | undefined;
|
1022
|
+
depositUrl?: string | undefined;
|
1023
|
+
aprRecord?: {
|
1024
|
+
timestamp: string | bigint;
|
1025
|
+
cumulated: number;
|
1026
|
+
breakdowns: {
|
1027
|
+
type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
|
1028
|
+
id: number;
|
1029
|
+
identifier: string;
|
1030
|
+
value: number;
|
1031
|
+
aprRecordId: string;
|
1032
|
+
}[];
|
1033
|
+
} | undefined;
|
1034
|
+
tvlRecord?: {
|
1035
|
+
total: number;
|
1036
|
+
timestamp: string | bigint;
|
1037
|
+
breakdowns: {
|
1038
|
+
type: "TOKEN" | "PROTOCOL";
|
1039
|
+
id: number;
|
1040
|
+
identifier: string;
|
1041
|
+
value: number;
|
1042
|
+
tvlRecordId: string;
|
1043
|
+
}[];
|
1044
|
+
} | undefined;
|
1045
|
+
rewardsRecord?: {
|
1046
|
+
total: number;
|
1047
|
+
id: string;
|
1048
|
+
timestamp: string | bigint;
|
1049
|
+
breakdowns: {
|
1050
|
+
token: {
|
1051
|
+
price?: number | null | undefined;
|
1052
|
+
symbol: string;
|
1053
|
+
name: string | null;
|
1054
|
+
id: string;
|
1055
|
+
icon: string;
|
1056
|
+
chainId: number;
|
1057
|
+
address: string;
|
1058
|
+
decimals: number;
|
1059
|
+
verified: boolean;
|
1060
|
+
isTest: boolean;
|
1061
|
+
};
|
1062
|
+
id: number;
|
1063
|
+
value: number;
|
1064
|
+
campaignId: string;
|
1065
|
+
amount: string | bigint;
|
1066
|
+
dailyRewardsRecordId: string;
|
1067
|
+
}[];
|
1068
|
+
} | undefined;
|
1069
|
+
name: string;
|
1070
|
+
type: string;
|
1071
|
+
tokens: {
|
1072
|
+
price?: number | null | undefined;
|
1073
|
+
symbol: string;
|
1074
|
+
name: string | null;
|
1075
|
+
id: string;
|
1076
|
+
icon: string;
|
1077
|
+
chainId: number;
|
1078
|
+
address: string;
|
1079
|
+
decimals: number;
|
1080
|
+
verified: boolean;
|
1081
|
+
isTest: boolean;
|
1082
|
+
}[];
|
1083
|
+
id: string;
|
1084
|
+
status: string;
|
1085
|
+
tags: string[];
|
1086
|
+
identifier: string;
|
1087
|
+
chain: {
|
1088
|
+
name: string;
|
1089
|
+
id: number;
|
1090
|
+
icon: string;
|
1091
|
+
};
|
1092
|
+
chainId: number;
|
1093
|
+
action: string;
|
1094
|
+
tvl: number;
|
1095
|
+
apr: number;
|
1096
|
+
dailyRewards: number;
|
1097
|
+
campaigns: {
|
1098
|
+
campaignStatus?: {
|
1099
|
+
error?: string | undefined;
|
1100
|
+
details?: any;
|
1101
|
+
status: string;
|
1102
|
+
campaignId: string;
|
1103
|
+
computedUntil: string | bigint;
|
1104
|
+
processingStarted: string | bigint;
|
1105
|
+
} | undefined;
|
1106
|
+
distributionChain?: {
|
1107
|
+
name: string;
|
1108
|
+
id: number;
|
1109
|
+
icon: string;
|
1110
|
+
} | undefined;
|
1111
|
+
type: string;
|
1112
|
+
id: string;
|
1113
|
+
params: any;
|
1114
|
+
subType: number | null;
|
1115
|
+
chain: {
|
1116
|
+
name: string;
|
1117
|
+
id: number;
|
1118
|
+
icon: string;
|
1119
|
+
};
|
1120
|
+
startTimestamp: string | bigint;
|
1121
|
+
endTimestamp: string | bigint;
|
1122
|
+
computeChainId: number;
|
1123
|
+
distributionChainId: number;
|
1124
|
+
campaignId: string;
|
1125
|
+
rewardTokenId: string;
|
1126
|
+
amount: string;
|
1127
|
+
opportunityId: string;
|
1128
|
+
creatorAddress: string;
|
1129
|
+
rewardToken: {
|
1130
|
+
price?: number | null | undefined;
|
1131
|
+
symbol: string;
|
1132
|
+
name: string | null;
|
1133
|
+
id: string;
|
1134
|
+
icon: string;
|
1135
|
+
chainId: number;
|
1136
|
+
address: string;
|
1137
|
+
decimals: number;
|
1138
|
+
verified: boolean;
|
1139
|
+
isTest: boolean;
|
1140
|
+
};
|
1141
|
+
}[];
|
1142
|
+
}[];
|
1143
|
+
404: {
|
1144
|
+
message: string;
|
1145
|
+
name: string;
|
1146
|
+
};
|
1147
|
+
500: {
|
1148
|
+
code: string;
|
1149
|
+
info: string;
|
1150
|
+
httpCode: number;
|
1151
|
+
};
|
1152
|
+
} | {
|
1153
|
+
200: {
|
1154
|
+
readonly 200: {
|
1155
|
+
protocol?: {
|
1156
|
+
name: string;
|
1157
|
+
url: string;
|
1158
|
+
description: string;
|
1159
|
+
id: string;
|
1160
|
+
tags: string[];
|
1161
|
+
icon: string;
|
1162
|
+
} | null | undefined;
|
1163
|
+
depositUrl?: string | undefined;
|
1164
|
+
aprRecord?: {
|
1165
|
+
timestamp: string | bigint;
|
1166
|
+
cumulated: number;
|
1167
|
+
breakdowns: {
|
1168
|
+
type: "CAMPAIGN" | "TOKEN" | "PROTOCOL";
|
1169
|
+
id: number;
|
1170
|
+
identifier: string;
|
1171
|
+
value: number;
|
1172
|
+
aprRecordId: string;
|
1173
|
+
}[];
|
1174
|
+
} | undefined;
|
1175
|
+
tvlRecord?: {
|
1176
|
+
total: number;
|
1177
|
+
timestamp: string | bigint;
|
1178
|
+
breakdowns: {
|
1179
|
+
type: "TOKEN" | "PROTOCOL";
|
1180
|
+
id: number;
|
1181
|
+
identifier: string;
|
1182
|
+
value: number;
|
1183
|
+
tvlRecordId: string;
|
1184
|
+
}[];
|
1185
|
+
} | undefined;
|
1186
|
+
rewardsRecord?: {
|
1187
|
+
total: number;
|
1188
|
+
id: string;
|
1189
|
+
timestamp: string | bigint;
|
1190
|
+
breakdowns: {
|
1191
|
+
token: {
|
1192
|
+
price?: number | null | undefined;
|
1193
|
+
symbol: string;
|
1194
|
+
name: string | null;
|
1195
|
+
id: string;
|
1196
|
+
icon: string;
|
1197
|
+
chainId: number;
|
1198
|
+
address: string;
|
1199
|
+
decimals: number;
|
1200
|
+
verified: boolean;
|
1201
|
+
isTest: boolean;
|
1202
|
+
};
|
1203
|
+
id: number;
|
1204
|
+
value: number;
|
1205
|
+
campaignId: string;
|
1206
|
+
amount: string | bigint;
|
1207
|
+
dailyRewardsRecordId: string;
|
1208
|
+
}[];
|
1209
|
+
} | undefined;
|
1210
|
+
name: string;
|
1211
|
+
type: string;
|
1212
|
+
tokens: {
|
1213
|
+
price?: number | null | undefined;
|
1214
|
+
symbol: string;
|
1215
|
+
name: string | null;
|
1216
|
+
id: string;
|
1217
|
+
icon: string;
|
1218
|
+
chainId: number;
|
1219
|
+
address: string;
|
1220
|
+
decimals: number;
|
1221
|
+
verified: boolean;
|
1222
|
+
isTest: boolean;
|
1223
|
+
}[];
|
612
1224
|
id: string;
|
613
|
-
|
614
|
-
|
615
|
-
|
1225
|
+
status: string;
|
1226
|
+
tags: string[];
|
1227
|
+
identifier: string;
|
1228
|
+
chain: {
|
1229
|
+
name: string;
|
616
1230
|
id: number;
|
617
|
-
|
1231
|
+
icon: string;
|
1232
|
+
};
|
1233
|
+
chainId: number;
|
1234
|
+
action: string;
|
1235
|
+
tvl: number;
|
1236
|
+
apr: number;
|
1237
|
+
dailyRewards: number;
|
1238
|
+
campaigns: {
|
1239
|
+
campaignStatus?: {
|
1240
|
+
error?: string | undefined;
|
1241
|
+
details?: any;
|
1242
|
+
status: string;
|
1243
|
+
campaignId: string;
|
1244
|
+
computedUntil: string | bigint;
|
1245
|
+
processingStarted: string | bigint;
|
1246
|
+
} | undefined;
|
1247
|
+
distributionChain?: {
|
1248
|
+
name: string;
|
1249
|
+
id: number;
|
1250
|
+
icon: string;
|
1251
|
+
} | undefined;
|
1252
|
+
type: string;
|
1253
|
+
id: string;
|
1254
|
+
params: any;
|
1255
|
+
subType: number | null;
|
1256
|
+
chain: {
|
1257
|
+
name: string;
|
1258
|
+
id: number;
|
1259
|
+
icon: string;
|
1260
|
+
};
|
1261
|
+
startTimestamp: string | bigint;
|
1262
|
+
endTimestamp: string | bigint;
|
1263
|
+
computeChainId: number;
|
1264
|
+
distributionChainId: number;
|
618
1265
|
campaignId: string;
|
619
|
-
|
620
|
-
|
1266
|
+
rewardTokenId: string;
|
1267
|
+
amount: string;
|
1268
|
+
opportunityId: string;
|
1269
|
+
creatorAddress: string;
|
1270
|
+
rewardToken: {
|
1271
|
+
price?: number | null | undefined;
|
621
1272
|
symbol: string;
|
622
1273
|
name: string | null;
|
623
1274
|
id: string;
|
@@ -625,103 +1276,21 @@ declare const app: Elysia<"", false, {
|
|
625
1276
|
chainId: number;
|
626
1277
|
address: string;
|
627
1278
|
decimals: number;
|
628
|
-
displaySymbol: string;
|
629
1279
|
verified: boolean;
|
630
1280
|
isTest: boolean;
|
631
|
-
price: number | null;
|
632
1281
|
};
|
633
|
-
amount: bigint;
|
634
1282
|
}[];
|
635
|
-
};
|
636
|
-
campaigns: {
|
637
|
-
params: any;
|
638
|
-
chain: {
|
639
|
-
name: string;
|
640
|
-
id: number;
|
641
|
-
icon: string;
|
642
|
-
};
|
643
|
-
rewardToken: {
|
644
|
-
symbol: string;
|
645
|
-
name: string | null;
|
646
|
-
id: string;
|
647
|
-
icon: string;
|
648
|
-
chainId: number;
|
649
|
-
address: string;
|
650
|
-
decimals: number;
|
651
|
-
verified: boolean;
|
652
|
-
isTest: boolean;
|
653
|
-
} & {
|
654
|
-
price?: number | null | undefined;
|
655
|
-
};
|
656
|
-
distributionChain: {
|
657
|
-
name: string;
|
658
|
-
id: number;
|
659
|
-
icon: string;
|
660
|
-
} | undefined;
|
661
|
-
campaignStatus: {
|
662
|
-
error: string;
|
663
|
-
details: import("database/api/.generated/runtime/library").JsonValue;
|
664
|
-
status: import("../database/api/.generated").$Enums.RunStatus;
|
665
|
-
campaignId: string;
|
666
|
-
computedUntil: bigint;
|
667
|
-
processingStarted: bigint;
|
668
|
-
};
|
669
|
-
creatorAddress: string;
|
670
|
-
Creator: {
|
671
|
-
tags: string[];
|
672
|
-
address: string;
|
673
|
-
creatorId: string | null;
|
674
|
-
};
|
675
|
-
type: string;
|
676
|
-
id: string;
|
677
|
-
subType: number | null;
|
678
|
-
startTimestamp: bigint;
|
679
|
-
endTimestamp: bigint;
|
680
|
-
computeChainId: number;
|
681
|
-
distributionChainId: number;
|
682
|
-
campaignId: string;
|
683
|
-
rewardTokenId: string;
|
684
|
-
amount: string;
|
685
|
-
opportunityId: string;
|
686
1283
|
}[];
|
687
|
-
|
688
|
-
|
689
|
-
tokens: ({
|
690
|
-
symbol: string;
|
691
|
-
name: string | null;
|
692
|
-
id: string;
|
693
|
-
icon: string;
|
694
|
-
chainId: number;
|
695
|
-
address: string;
|
696
|
-
decimals: number;
|
697
|
-
verified: boolean;
|
698
|
-
isTest: boolean;
|
699
|
-
} & {
|
700
|
-
price?: number | null | undefined;
|
701
|
-
})[];
|
702
|
-
chain: {
|
1284
|
+
readonly 404: {
|
1285
|
+
message: string;
|
703
1286
|
name: string;
|
704
|
-
id: number;
|
705
|
-
icon: string;
|
706
1287
|
};
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
icon: string;
|
714
|
-
} | undefined;
|
715
|
-
name: string;
|
716
|
-
type: string;
|
717
|
-
status: import("../database/api/.generated").$Enums.Status;
|
718
|
-
tags: string[];
|
719
|
-
identifier: string;
|
720
|
-
chainId: number;
|
721
|
-
action: import("../database/api/.generated").$Enums.OpportunityAction;
|
722
|
-
tvl: number;
|
723
|
-
dailyRewards: number;
|
724
|
-
}[];
|
1288
|
+
readonly 500: {
|
1289
|
+
code: string;
|
1290
|
+
info: string;
|
1291
|
+
httpCode: number;
|
1292
|
+
};
|
1293
|
+
};
|
725
1294
|
readonly 404: {
|
726
1295
|
message: string;
|
727
1296
|
name: string;
|
@@ -1413,18 +1982,8 @@ declare const app: Elysia<"", false, {
|
|
1413
1982
|
};
|
1414
1983
|
headers: unknown;
|
1415
1984
|
response: {
|
1416
|
-
|
1417
|
-
|
1418
|
-
url: string;
|
1419
|
-
description: string;
|
1420
|
-
id: string;
|
1421
|
-
tags: string[];
|
1422
|
-
icon: string;
|
1423
|
-
} & {
|
1424
|
-
dailyRewards?: number | undefined;
|
1425
|
-
numberOfLiveCampaigns?: number | undefined;
|
1426
|
-
opportunityLiveTags?: string[] | undefined;
|
1427
|
-
})[];
|
1985
|
+
[x: string]: any;
|
1986
|
+
200: any;
|
1428
1987
|
};
|
1429
1988
|
};
|
1430
1989
|
};
|
@@ -1438,7 +1997,8 @@ declare const app: Elysia<"", false, {
|
|
1438
1997
|
query: unknown;
|
1439
1998
|
headers: unknown;
|
1440
1999
|
response: {
|
1441
|
-
|
2000
|
+
[x: string]: any;
|
2001
|
+
200: any;
|
1442
2002
|
};
|
1443
2003
|
};
|
1444
2004
|
};
|
@@ -1454,17 +2014,8 @@ declare const app: Elysia<"", false, {
|
|
1454
2014
|
query: unknown;
|
1455
2015
|
headers: unknown;
|
1456
2016
|
response: {
|
1457
|
-
|
1458
|
-
|
1459
|
-
url: string;
|
1460
|
-
description: string;
|
1461
|
-
id: string;
|
1462
|
-
tags: string[];
|
1463
|
-
icon: string;
|
1464
|
-
dailyRewards?: number | undefined;
|
1465
|
-
numberOfLiveCampaigns?: number | undefined;
|
1466
|
-
opportunityLiveTags?: string[] | undefined;
|
1467
|
-
} | null;
|
2017
|
+
[x: string]: any;
|
2018
|
+
200: any;
|
1468
2019
|
};
|
1469
2020
|
};
|
1470
2021
|
};
|
@@ -1487,14 +2038,8 @@ declare const app: Elysia<"", false, {
|
|
1487
2038
|
authorization: string;
|
1488
2039
|
};
|
1489
2040
|
response: {
|
1490
|
-
|
1491
|
-
|
1492
|
-
url: string;
|
1493
|
-
description: string;
|
1494
|
-
id: string;
|
1495
|
-
tags: string[];
|
1496
|
-
icon: string;
|
1497
|
-
};
|
2041
|
+
[x: string]: any;
|
2042
|
+
200: any;
|
1498
2043
|
};
|
1499
2044
|
};
|
1500
2045
|
};
|
@@ -1517,14 +2062,8 @@ declare const app: Elysia<"", false, {
|
|
1517
2062
|
authorization: string;
|
1518
2063
|
};
|
1519
2064
|
response: {
|
1520
|
-
|
1521
|
-
|
1522
|
-
url: string;
|
1523
|
-
description: string;
|
1524
|
-
id: string;
|
1525
|
-
tags: string[];
|
1526
|
-
icon: string;
|
1527
|
-
};
|
2065
|
+
[x: string]: any;
|
2066
|
+
200: any;
|
1528
2067
|
};
|
1529
2068
|
};
|
1530
2069
|
};
|
@@ -1685,6 +2224,7 @@ declare const app: Elysia<"", false, {
|
|
1685
2224
|
query: {
|
1686
2225
|
symbol?: string | undefined;
|
1687
2226
|
name?: string | undefined;
|
2227
|
+
id?: string[] | undefined;
|
1688
2228
|
chainId?: number | undefined;
|
1689
2229
|
address?: string | undefined;
|
1690
2230
|
displaySymbol?: string | undefined;
|
@@ -1717,6 +2257,7 @@ declare const app: Elysia<"", false, {
|
|
1717
2257
|
query: {
|
1718
2258
|
symbol?: string | undefined;
|
1719
2259
|
name?: string | undefined;
|
2260
|
+
id?: string[] | undefined;
|
1720
2261
|
chainId?: number | undefined;
|
1721
2262
|
address?: string | undefined;
|
1722
2263
|
displaySymbol?: string | undefined;
|
@@ -2172,17 +2713,8 @@ declare const app: Elysia<"", false, {
|
|
2172
2713
|
query: unknown;
|
2173
2714
|
headers: unknown;
|
2174
2715
|
response: {
|
2175
|
-
|
2176
|
-
|
2177
|
-
id: number;
|
2178
|
-
icon: string;
|
2179
|
-
explorers: {
|
2180
|
-
type: import("../database/api/.generated").$Enums.ExplorerType;
|
2181
|
-
url: string;
|
2182
|
-
id: string;
|
2183
|
-
chainId: number;
|
2184
|
-
}[];
|
2185
|
-
} | null;
|
2716
|
+
[x: string]: any;
|
2717
|
+
200: any;
|
2186
2718
|
};
|
2187
2719
|
};
|
2188
2720
|
};
|
@@ -2198,17 +2730,8 @@ declare const app: Elysia<"", false, {
|
|
2198
2730
|
};
|
2199
2731
|
headers: unknown;
|
2200
2732
|
response: {
|
2201
|
-
|
2202
|
-
|
2203
|
-
id: number;
|
2204
|
-
icon: string;
|
2205
|
-
explorers: {
|
2206
|
-
type: import("../database/api/.generated").$Enums.ExplorerType;
|
2207
|
-
url: string;
|
2208
|
-
id: string;
|
2209
|
-
chainId: number;
|
2210
|
-
}[];
|
2211
|
-
}[];
|
2733
|
+
[x: string]: any;
|
2734
|
+
200: any;
|
2212
2735
|
};
|
2213
2736
|
};
|
2214
2737
|
};
|
@@ -2224,7 +2747,8 @@ declare const app: Elysia<"", false, {
|
|
2224
2747
|
};
|
2225
2748
|
headers: unknown;
|
2226
2749
|
response: {
|
2227
|
-
|
2750
|
+
[x: string]: any;
|
2751
|
+
200: any;
|
2228
2752
|
};
|
2229
2753
|
};
|
2230
2754
|
};
|
@@ -2235,6 +2759,8 @@ declare const app: Elysia<"", false, {
|
|
2235
2759
|
patch: {
|
2236
2760
|
body: {
|
2237
2761
|
icon?: string | undefined;
|
2762
|
+
dailyRewards?: number | undefined;
|
2763
|
+
liveCampaigns?: number | undefined;
|
2238
2764
|
};
|
2239
2765
|
params: {
|
2240
2766
|
chainId: number;
|
@@ -2244,11 +2770,8 @@ declare const app: Elysia<"", false, {
|
|
2244
2770
|
authorization: string;
|
2245
2771
|
};
|
2246
2772
|
response: {
|
2247
|
-
|
2248
|
-
|
2249
|
-
id: number;
|
2250
|
-
icon: string;
|
2251
|
-
};
|
2773
|
+
[x: string]: any;
|
2774
|
+
200: any;
|
2252
2775
|
};
|
2253
2776
|
};
|
2254
2777
|
};
|
@@ -2270,14 +2793,8 @@ declare const app: Elysia<"", false, {
|
|
2270
2793
|
authorization: string;
|
2271
2794
|
};
|
2272
2795
|
response: {
|
2273
|
-
|
2274
|
-
|
2275
|
-
type: import("../database/api/.generated").$Enums.ExplorerType;
|
2276
|
-
url: string;
|
2277
|
-
id: string;
|
2278
|
-
chainId: number;
|
2279
|
-
}[];
|
2280
|
-
};
|
2796
|
+
[x: string]: any;
|
2797
|
+
200: any;
|
2281
2798
|
};
|
2282
2799
|
};
|
2283
2800
|
};
|
@@ -3033,18 +3550,8 @@ declare const app: Elysia<"", false, {
|
|
3033
3550
|
};
|
3034
3551
|
headers: unknown;
|
3035
3552
|
response: {
|
3036
|
-
|
3037
|
-
|
3038
|
-
url: string;
|
3039
|
-
description: string;
|
3040
|
-
id: string;
|
3041
|
-
tags: string[];
|
3042
|
-
icon: string;
|
3043
|
-
} & {
|
3044
|
-
dailyRewards?: number | undefined;
|
3045
|
-
numberOfLiveCampaigns?: number | undefined;
|
3046
|
-
opportunityLiveTags?: string[] | undefined;
|
3047
|
-
})[];
|
3553
|
+
[x: string]: any;
|
3554
|
+
200: any;
|
3048
3555
|
};
|
3049
3556
|
};
|
3050
3557
|
};
|
@@ -3569,7 +4076,7 @@ declare const app: Elysia<"", false, {
|
|
3569
4076
|
endOfDisputePeriod: number;
|
3570
4077
|
disputer: string;
|
3571
4078
|
liveCampaigns: number;
|
3572
|
-
delayed: Awaited<ReturnType<typeof import("./modules/v4/status").StatusService
|
4079
|
+
delayed: Awaited<ReturnType<typeof import("./modules/v4/status").StatusService["findManyDelay"]>>;
|
3573
4080
|
};
|
3574
4081
|
};
|
3575
4082
|
};
|
@@ -4269,8 +4776,8 @@ declare const app: Elysia<"", false, {
|
|
4269
4776
|
query: {
|
4270
4777
|
types?: string | number | string[] | number[] | undefined;
|
4271
4778
|
chainIds?: string | string[] | undefined;
|
4272
|
-
creatorTag?: string | undefined;
|
4273
4779
|
live?: boolean | undefined;
|
4780
|
+
creatorTag?: string | undefined;
|
4274
4781
|
hideTestTokens?: string | undefined;
|
4275
4782
|
};
|
4276
4783
|
headers: unknown;
|