tek-wallet 0.0.640 → 0.0.641

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.
@@ -11,4 +11,55 @@ export interface SendInternalResponse {
11
11
  success: boolean;
12
12
  message: string;
13
13
  timestamp: string;
14
+ data: DataSendInternal;
14
15
  }
16
+ interface DataSendInternal {
17
+ id: number;
18
+ transaction_type: string;
19
+ from_address: string;
20
+ to_address: string;
21
+ network: string;
22
+ currency_slug: string;
23
+ fee: string;
24
+ amount: string;
25
+ transaction_status: string;
26
+ user_created: string;
27
+ user_updated: string;
28
+ date_created: string;
29
+ date_updated: null;
30
+ description: null;
31
+ currency_usd_rate: null;
32
+ from_app_slug: string;
33
+ fee_info: Feeinfo;
34
+ order_id: null;
35
+ }
36
+ interface Feeinfo {
37
+ fee_detail: Feedetail[];
38
+ fee_in_currency: number;
39
+ fee_in_usd: number;
40
+ original_amount_in_currency: number;
41
+ original_amount_in_usd: number;
42
+ original_currency: string;
43
+ }
44
+ interface Feedetail {
45
+ currency: Currency;
46
+ fee_fixed: number;
47
+ fee_in_currency: number;
48
+ fee_in_usd: number;
49
+ fee_percent: number;
50
+ fee_type: Feetype;
51
+ }
52
+ interface Feetype {
53
+ name: string;
54
+ slug: string;
55
+ }
56
+ interface Currency {
57
+ full_name: string;
58
+ icon: string;
59
+ id: number;
60
+ link: string;
61
+ name: string;
62
+ slug: string;
63
+ usd_rate: number;
64
+ }
65
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tek-wallet",
3
- "version": "0.0.640",
3
+ "version": "0.0.641",
4
4
  "description": "A custom React provider with TypeScript support",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",