@vayolabs/core-sdk 0.1.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/CHANGELOG.md +62 -0
- package/LICENSE +201 -0
- package/NOTICE +8 -0
- package/README.md +273 -0
- package/dist/GetV1LendingReserves-CzfPNOVx.d.cts +19 -0
- package/dist/GetV1LendingReserves-CzfPNOVx.d.ts +19 -0
- package/dist/PostV1LendingOperationsRedeemAllocatedSubmit-znL3KL6k.d.cts +151 -0
- package/dist/PostV1LendingOperationsRedeemAllocatedSubmit-znL3KL6k.d.ts +151 -0
- package/dist/client-BdGPlaqU.d.cts +588 -0
- package/dist/client-gLM58XPq.d.ts +588 -0
- package/dist/generated/index.cjs +341 -0
- package/dist/generated/index.cjs.map +1 -0
- package/dist/generated/index.d.cts +456 -0
- package/dist/generated/index.d.ts +456 -0
- package/dist/generated/index.js +322 -0
- package/dist/generated/index.js.map +1 -0
- package/dist/index.cjs +754 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +49 -0
- package/dist/index.d.ts +49 -0
- package/dist/index.js +747 -0
- package/dist/index.js.map +1 -0
- package/dist/mode-s/privy.cjs +30 -0
- package/dist/mode-s/privy.cjs.map +1 -0
- package/dist/mode-s/privy.d.cts +61 -0
- package/dist/mode-s/privy.d.ts +61 -0
- package/dist/mode-s/privy.js +28 -0
- package/dist/mode-s/privy.js.map +1 -0
- package/package.json +90 -0
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by Kubb (https://kubb.dev/).
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
*/
|
|
5
|
+
type GetV1DashboardPartnerFeesPayoutsQueryParams = {
|
|
6
|
+
/**
|
|
7
|
+
* @type string | undefined
|
|
8
|
+
*/
|
|
9
|
+
limit?: string;
|
|
10
|
+
/**
|
|
11
|
+
* @type string | undefined
|
|
12
|
+
*/
|
|
13
|
+
offset?: string;
|
|
14
|
+
};
|
|
15
|
+
type GetV1DashboardPartnerFeesPayouts200 = any;
|
|
16
|
+
type GetV1DashboardPartnerFeesPayoutsQueryResponse = GetV1DashboardPartnerFeesPayouts200;
|
|
17
|
+
type GetV1DashboardPartnerFeesPayoutsQuery = {
|
|
18
|
+
Response: GetV1DashboardPartnerFeesPayouts200;
|
|
19
|
+
QueryParams: GetV1DashboardPartnerFeesPayoutsQueryParams;
|
|
20
|
+
Errors: any;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Generated by Kubb (https://kubb.dev/).
|
|
25
|
+
* Do not edit manually.
|
|
26
|
+
*/
|
|
27
|
+
type GetV1DashboardTransactionsQueryParams = {
|
|
28
|
+
/**
|
|
29
|
+
* @type string | undefined
|
|
30
|
+
*/
|
|
31
|
+
type?: string;
|
|
32
|
+
/**
|
|
33
|
+
* @type string | undefined
|
|
34
|
+
*/
|
|
35
|
+
status?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @type string | undefined
|
|
38
|
+
*/
|
|
39
|
+
limit?: string;
|
|
40
|
+
/**
|
|
41
|
+
* @type string | undefined
|
|
42
|
+
*/
|
|
43
|
+
offset?: string;
|
|
44
|
+
};
|
|
45
|
+
type GetV1DashboardTransactions200 = any;
|
|
46
|
+
type GetV1DashboardTransactionsQueryResponse = GetV1DashboardTransactions200;
|
|
47
|
+
type GetV1DashboardTransactionsQuery = {
|
|
48
|
+
Response: GetV1DashboardTransactions200;
|
|
49
|
+
QueryParams: GetV1DashboardTransactionsQueryParams;
|
|
50
|
+
Errors: any;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Generated by Kubb (https://kubb.dev/).
|
|
55
|
+
* Do not edit manually.
|
|
56
|
+
*/
|
|
57
|
+
type GetV1DashboardUsersQueryParams = {
|
|
58
|
+
/**
|
|
59
|
+
* @type string | undefined
|
|
60
|
+
*/
|
|
61
|
+
limit?: string;
|
|
62
|
+
/**
|
|
63
|
+
* @type string | undefined
|
|
64
|
+
*/
|
|
65
|
+
offset?: string;
|
|
66
|
+
/**
|
|
67
|
+
* @type string | undefined
|
|
68
|
+
*/
|
|
69
|
+
activeOnly?: string;
|
|
70
|
+
};
|
|
71
|
+
type GetV1DashboardUsers200 = any;
|
|
72
|
+
type GetV1DashboardUsersQueryResponse = GetV1DashboardUsers200;
|
|
73
|
+
type GetV1DashboardUsersQuery = {
|
|
74
|
+
Response: GetV1DashboardUsers200;
|
|
75
|
+
QueryParams: GetV1DashboardUsersQueryParams;
|
|
76
|
+
Errors: any;
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Generated by Kubb (https://kubb.dev/).
|
|
81
|
+
* Do not edit manually.
|
|
82
|
+
*/
|
|
83
|
+
type PostV1LendingOperationsRedeemAllocatedBuildQueryParams = {
|
|
84
|
+
/**
|
|
85
|
+
* @default "false"
|
|
86
|
+
*/
|
|
87
|
+
gasless?: (string | string);
|
|
88
|
+
};
|
|
89
|
+
type PostV1LendingOperationsRedeemAllocatedBuild200 = any;
|
|
90
|
+
type PostV1LendingOperationsRedeemAllocatedBuildMutationRequest = {
|
|
91
|
+
/**
|
|
92
|
+
* @minLength 1
|
|
93
|
+
* @type string
|
|
94
|
+
*/
|
|
95
|
+
privyDid: string;
|
|
96
|
+
/**
|
|
97
|
+
* @minLength 32
|
|
98
|
+
* @maxLength 64
|
|
99
|
+
* @type string
|
|
100
|
+
*/
|
|
101
|
+
marketAddress: string;
|
|
102
|
+
/**
|
|
103
|
+
* @minLength 32
|
|
104
|
+
* @maxLength 64
|
|
105
|
+
* @type string
|
|
106
|
+
*/
|
|
107
|
+
tokenMint: string;
|
|
108
|
+
/**
|
|
109
|
+
* @minLength 1
|
|
110
|
+
* @type string
|
|
111
|
+
*/
|
|
112
|
+
amount: string;
|
|
113
|
+
/**
|
|
114
|
+
* @minLength 32
|
|
115
|
+
* @maxLength 64
|
|
116
|
+
* @type string | undefined
|
|
117
|
+
*/
|
|
118
|
+
reserveAddress?: string;
|
|
119
|
+
};
|
|
120
|
+
type PostV1LendingOperationsRedeemAllocatedBuildMutationResponse = PostV1LendingOperationsRedeemAllocatedBuild200;
|
|
121
|
+
type PostV1LendingOperationsRedeemAllocatedBuildMutation = {
|
|
122
|
+
Response: PostV1LendingOperationsRedeemAllocatedBuild200;
|
|
123
|
+
Request: PostV1LendingOperationsRedeemAllocatedBuildMutationRequest;
|
|
124
|
+
QueryParams: PostV1LendingOperationsRedeemAllocatedBuildQueryParams;
|
|
125
|
+
Errors: any;
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Generated by Kubb (https://kubb.dev/).
|
|
130
|
+
* Do not edit manually.
|
|
131
|
+
*/
|
|
132
|
+
type PostV1LendingOperationsRedeemAllocatedSubmit200 = any;
|
|
133
|
+
type PostV1LendingOperationsRedeemAllocatedSubmitMutationRequest = {
|
|
134
|
+
/**
|
|
135
|
+
* @type string, uuid
|
|
136
|
+
*/
|
|
137
|
+
pendingRedeemId: string;
|
|
138
|
+
/**
|
|
139
|
+
* @minLength 1
|
|
140
|
+
* @type string
|
|
141
|
+
*/
|
|
142
|
+
serializedTx: string;
|
|
143
|
+
};
|
|
144
|
+
type PostV1LendingOperationsRedeemAllocatedSubmitMutationResponse = PostV1LendingOperationsRedeemAllocatedSubmit200;
|
|
145
|
+
type PostV1LendingOperationsRedeemAllocatedSubmitMutation = {
|
|
146
|
+
Response: PostV1LendingOperationsRedeemAllocatedSubmit200;
|
|
147
|
+
Request: PostV1LendingOperationsRedeemAllocatedSubmitMutationRequest;
|
|
148
|
+
Errors: any;
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
export type { GetV1DashboardPartnerFeesPayoutsQueryParams as G, PostV1LendingOperationsRedeemAllocatedBuildMutationRequest as P, GetV1DashboardTransactionsQueryParams as a, GetV1DashboardUsersQueryParams as b, PostV1LendingOperationsRedeemAllocatedBuildQueryParams as c, PostV1LendingOperationsRedeemAllocatedSubmitMutationRequest as d, GetV1DashboardPartnerFeesPayouts200 as e, GetV1DashboardPartnerFeesPayoutsQuery as f, GetV1DashboardPartnerFeesPayoutsQueryResponse as g, GetV1DashboardTransactions200 as h, GetV1DashboardTransactionsQuery as i, GetV1DashboardTransactionsQueryResponse as j, GetV1DashboardUsers200 as k, GetV1DashboardUsersQuery as l, GetV1DashboardUsersQueryResponse as m, PostV1LendingOperationsRedeemAllocatedBuild200 as n, PostV1LendingOperationsRedeemAllocatedBuildMutation as o, PostV1LendingOperationsRedeemAllocatedBuildMutationResponse as p, PostV1LendingOperationsRedeemAllocatedSubmit200 as q, PostV1LendingOperationsRedeemAllocatedSubmitMutation as r, PostV1LendingOperationsRedeemAllocatedSubmitMutationResponse as s };
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by Kubb (https://kubb.dev/).
|
|
3
|
+
* Do not edit manually.
|
|
4
|
+
*/
|
|
5
|
+
type GetV1DashboardPartnerFeesPayoutsQueryParams = {
|
|
6
|
+
/**
|
|
7
|
+
* @type string | undefined
|
|
8
|
+
*/
|
|
9
|
+
limit?: string;
|
|
10
|
+
/**
|
|
11
|
+
* @type string | undefined
|
|
12
|
+
*/
|
|
13
|
+
offset?: string;
|
|
14
|
+
};
|
|
15
|
+
type GetV1DashboardPartnerFeesPayouts200 = any;
|
|
16
|
+
type GetV1DashboardPartnerFeesPayoutsQueryResponse = GetV1DashboardPartnerFeesPayouts200;
|
|
17
|
+
type GetV1DashboardPartnerFeesPayoutsQuery = {
|
|
18
|
+
Response: GetV1DashboardPartnerFeesPayouts200;
|
|
19
|
+
QueryParams: GetV1DashboardPartnerFeesPayoutsQueryParams;
|
|
20
|
+
Errors: any;
|
|
21
|
+
};
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Generated by Kubb (https://kubb.dev/).
|
|
25
|
+
* Do not edit manually.
|
|
26
|
+
*/
|
|
27
|
+
type GetV1DashboardTransactionsQueryParams = {
|
|
28
|
+
/**
|
|
29
|
+
* @type string | undefined
|
|
30
|
+
*/
|
|
31
|
+
type?: string;
|
|
32
|
+
/**
|
|
33
|
+
* @type string | undefined
|
|
34
|
+
*/
|
|
35
|
+
status?: string;
|
|
36
|
+
/**
|
|
37
|
+
* @type string | undefined
|
|
38
|
+
*/
|
|
39
|
+
limit?: string;
|
|
40
|
+
/**
|
|
41
|
+
* @type string | undefined
|
|
42
|
+
*/
|
|
43
|
+
offset?: string;
|
|
44
|
+
};
|
|
45
|
+
type GetV1DashboardTransactions200 = any;
|
|
46
|
+
type GetV1DashboardTransactionsQueryResponse = GetV1DashboardTransactions200;
|
|
47
|
+
type GetV1DashboardTransactionsQuery = {
|
|
48
|
+
Response: GetV1DashboardTransactions200;
|
|
49
|
+
QueryParams: GetV1DashboardTransactionsQueryParams;
|
|
50
|
+
Errors: any;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Generated by Kubb (https://kubb.dev/).
|
|
55
|
+
* Do not edit manually.
|
|
56
|
+
*/
|
|
57
|
+
type GetV1DashboardUsersQueryParams = {
|
|
58
|
+
/**
|
|
59
|
+
* @type string | undefined
|
|
60
|
+
*/
|
|
61
|
+
limit?: string;
|
|
62
|
+
/**
|
|
63
|
+
* @type string | undefined
|
|
64
|
+
*/
|
|
65
|
+
offset?: string;
|
|
66
|
+
/**
|
|
67
|
+
* @type string | undefined
|
|
68
|
+
*/
|
|
69
|
+
activeOnly?: string;
|
|
70
|
+
};
|
|
71
|
+
type GetV1DashboardUsers200 = any;
|
|
72
|
+
type GetV1DashboardUsersQueryResponse = GetV1DashboardUsers200;
|
|
73
|
+
type GetV1DashboardUsersQuery = {
|
|
74
|
+
Response: GetV1DashboardUsers200;
|
|
75
|
+
QueryParams: GetV1DashboardUsersQueryParams;
|
|
76
|
+
Errors: any;
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Generated by Kubb (https://kubb.dev/).
|
|
81
|
+
* Do not edit manually.
|
|
82
|
+
*/
|
|
83
|
+
type PostV1LendingOperationsRedeemAllocatedBuildQueryParams = {
|
|
84
|
+
/**
|
|
85
|
+
* @default "false"
|
|
86
|
+
*/
|
|
87
|
+
gasless?: (string | string);
|
|
88
|
+
};
|
|
89
|
+
type PostV1LendingOperationsRedeemAllocatedBuild200 = any;
|
|
90
|
+
type PostV1LendingOperationsRedeemAllocatedBuildMutationRequest = {
|
|
91
|
+
/**
|
|
92
|
+
* @minLength 1
|
|
93
|
+
* @type string
|
|
94
|
+
*/
|
|
95
|
+
privyDid: string;
|
|
96
|
+
/**
|
|
97
|
+
* @minLength 32
|
|
98
|
+
* @maxLength 64
|
|
99
|
+
* @type string
|
|
100
|
+
*/
|
|
101
|
+
marketAddress: string;
|
|
102
|
+
/**
|
|
103
|
+
* @minLength 32
|
|
104
|
+
* @maxLength 64
|
|
105
|
+
* @type string
|
|
106
|
+
*/
|
|
107
|
+
tokenMint: string;
|
|
108
|
+
/**
|
|
109
|
+
* @minLength 1
|
|
110
|
+
* @type string
|
|
111
|
+
*/
|
|
112
|
+
amount: string;
|
|
113
|
+
/**
|
|
114
|
+
* @minLength 32
|
|
115
|
+
* @maxLength 64
|
|
116
|
+
* @type string | undefined
|
|
117
|
+
*/
|
|
118
|
+
reserveAddress?: string;
|
|
119
|
+
};
|
|
120
|
+
type PostV1LendingOperationsRedeemAllocatedBuildMutationResponse = PostV1LendingOperationsRedeemAllocatedBuild200;
|
|
121
|
+
type PostV1LendingOperationsRedeemAllocatedBuildMutation = {
|
|
122
|
+
Response: PostV1LendingOperationsRedeemAllocatedBuild200;
|
|
123
|
+
Request: PostV1LendingOperationsRedeemAllocatedBuildMutationRequest;
|
|
124
|
+
QueryParams: PostV1LendingOperationsRedeemAllocatedBuildQueryParams;
|
|
125
|
+
Errors: any;
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Generated by Kubb (https://kubb.dev/).
|
|
130
|
+
* Do not edit manually.
|
|
131
|
+
*/
|
|
132
|
+
type PostV1LendingOperationsRedeemAllocatedSubmit200 = any;
|
|
133
|
+
type PostV1LendingOperationsRedeemAllocatedSubmitMutationRequest = {
|
|
134
|
+
/**
|
|
135
|
+
* @type string, uuid
|
|
136
|
+
*/
|
|
137
|
+
pendingRedeemId: string;
|
|
138
|
+
/**
|
|
139
|
+
* @minLength 1
|
|
140
|
+
* @type string
|
|
141
|
+
*/
|
|
142
|
+
serializedTx: string;
|
|
143
|
+
};
|
|
144
|
+
type PostV1LendingOperationsRedeemAllocatedSubmitMutationResponse = PostV1LendingOperationsRedeemAllocatedSubmit200;
|
|
145
|
+
type PostV1LendingOperationsRedeemAllocatedSubmitMutation = {
|
|
146
|
+
Response: PostV1LendingOperationsRedeemAllocatedSubmit200;
|
|
147
|
+
Request: PostV1LendingOperationsRedeemAllocatedSubmitMutationRequest;
|
|
148
|
+
Errors: any;
|
|
149
|
+
};
|
|
150
|
+
|
|
151
|
+
export type { GetV1DashboardPartnerFeesPayoutsQueryParams as G, PostV1LendingOperationsRedeemAllocatedBuildMutationRequest as P, GetV1DashboardTransactionsQueryParams as a, GetV1DashboardUsersQueryParams as b, PostV1LendingOperationsRedeemAllocatedBuildQueryParams as c, PostV1LendingOperationsRedeemAllocatedSubmitMutationRequest as d, GetV1DashboardPartnerFeesPayouts200 as e, GetV1DashboardPartnerFeesPayoutsQuery as f, GetV1DashboardPartnerFeesPayoutsQueryResponse as g, GetV1DashboardTransactions200 as h, GetV1DashboardTransactionsQuery as i, GetV1DashboardTransactionsQueryResponse as j, GetV1DashboardUsers200 as k, GetV1DashboardUsersQuery as l, GetV1DashboardUsersQueryResponse as m, PostV1LendingOperationsRedeemAllocatedBuild200 as n, PostV1LendingOperationsRedeemAllocatedBuildMutation as o, PostV1LendingOperationsRedeemAllocatedBuildMutationResponse as p, PostV1LendingOperationsRedeemAllocatedSubmit200 as q, PostV1LendingOperationsRedeemAllocatedSubmitMutation as r, PostV1LendingOperationsRedeemAllocatedSubmitMutationResponse as s };
|