@riocrypto/common 1.0.2502 → 1.0.2503
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/build/types/user.d.ts +7 -0
- package/package.json +1 -1
package/build/types/user.d.ts
CHANGED
|
@@ -122,5 +122,12 @@ export declare type User = {
|
|
|
122
122
|
};
|
|
123
123
|
};
|
|
124
124
|
};
|
|
125
|
+
transactionLimits?: {
|
|
126
|
+
[country in Country]?: {
|
|
127
|
+
daily?: number;
|
|
128
|
+
weekly?: number;
|
|
129
|
+
monthly?: number;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
125
132
|
} & (UserType.Individual extends UserType ? IndividualUser : {}) & (UserType.Business extends UserType ? BusinessUser : {});
|
|
126
133
|
export {};
|