@nightlylabs/dex-sdk 0.2.35 → 0.2.36
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.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -650,7 +650,7 @@ interface UserAggregatedReferralStats {
|
|
|
650
650
|
referralUserId: string;
|
|
651
651
|
referralUserAlias: string;
|
|
652
652
|
referralUserRegistrationTimestamp: string;
|
|
653
|
-
accReferralValue: string
|
|
653
|
+
accReferralValue: Record<string, string>;
|
|
654
654
|
referredUserVolume: string;
|
|
655
655
|
}
|
|
656
656
|
interface GetUserAggregatedReferralStatsResponse {
|
|
@@ -925,7 +925,7 @@ interface GetUserReferralStatsHistoryRequest {
|
|
|
925
925
|
}
|
|
926
926
|
interface HistoricalReferralStats {
|
|
927
927
|
userId: string;
|
|
928
|
-
referralsValue: Record<string, string
|
|
928
|
+
referralsValue: Record<string, Record<string, string>>;
|
|
929
929
|
timestampOpen: string;
|
|
930
930
|
timestampClose: string;
|
|
931
931
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -650,7 +650,7 @@ interface UserAggregatedReferralStats {
|
|
|
650
650
|
referralUserId: string;
|
|
651
651
|
referralUserAlias: string;
|
|
652
652
|
referralUserRegistrationTimestamp: string;
|
|
653
|
-
accReferralValue: string
|
|
653
|
+
accReferralValue: Record<string, string>;
|
|
654
654
|
referredUserVolume: string;
|
|
655
655
|
}
|
|
656
656
|
interface GetUserAggregatedReferralStatsResponse {
|
|
@@ -925,7 +925,7 @@ interface GetUserReferralStatsHistoryRequest {
|
|
|
925
925
|
}
|
|
926
926
|
interface HistoricalReferralStats {
|
|
927
927
|
userId: string;
|
|
928
|
-
referralsValue: Record<string, string
|
|
928
|
+
referralsValue: Record<string, Record<string, string>>;
|
|
929
929
|
timestampOpen: string;
|
|
930
930
|
timestampClose: string;
|
|
931
931
|
}
|