@dedot/codegen 0.13.0 → 0.13.1
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/chaintypes/generator/ApiGen.d.ts +12 -12
- package/package.json +10 -10
|
@@ -83,8 +83,6 @@ export declare abstract class ApiGen {
|
|
|
83
83
|
default: `0x${string}`;
|
|
84
84
|
docs: string[];
|
|
85
85
|
deprecationInfo: {
|
|
86
|
-
type: "NotDeprecated";
|
|
87
|
-
} | {
|
|
88
86
|
type: "DeprecatedWithoutNote";
|
|
89
87
|
} | {
|
|
90
88
|
type: "Deprecated";
|
|
@@ -92,6 +90,8 @@ export declare abstract class ApiGen {
|
|
|
92
90
|
note: string;
|
|
93
91
|
since: string | undefined;
|
|
94
92
|
};
|
|
93
|
+
} | {
|
|
94
|
+
type: "NotDeprecated";
|
|
95
95
|
};
|
|
96
96
|
}[];
|
|
97
97
|
} | undefined;
|
|
@@ -125,8 +125,6 @@ export declare abstract class ApiGen {
|
|
|
125
125
|
value: `0x${string}`;
|
|
126
126
|
docs: string[];
|
|
127
127
|
deprecationInfo: {
|
|
128
|
-
type: "NotDeprecated";
|
|
129
|
-
} | {
|
|
130
128
|
type: "DeprecatedWithoutNote";
|
|
131
129
|
} | {
|
|
132
130
|
type: "Deprecated";
|
|
@@ -134,6 +132,8 @@ export declare abstract class ApiGen {
|
|
|
134
132
|
note: string;
|
|
135
133
|
since: string | undefined;
|
|
136
134
|
};
|
|
135
|
+
} | {
|
|
136
|
+
type: "NotDeprecated";
|
|
137
137
|
};
|
|
138
138
|
}[];
|
|
139
139
|
error: {
|
|
@@ -163,8 +163,6 @@ export declare abstract class ApiGen {
|
|
|
163
163
|
output: number;
|
|
164
164
|
docs: string[];
|
|
165
165
|
deprecationInfo: {
|
|
166
|
-
type: "NotDeprecated";
|
|
167
|
-
} | {
|
|
168
166
|
type: "DeprecatedWithoutNote";
|
|
169
167
|
} | {
|
|
170
168
|
type: "Deprecated";
|
|
@@ -172,13 +170,13 @@ export declare abstract class ApiGen {
|
|
|
172
170
|
note: string;
|
|
173
171
|
since: string | undefined;
|
|
174
172
|
};
|
|
173
|
+
} | {
|
|
174
|
+
type: "NotDeprecated";
|
|
175
175
|
};
|
|
176
176
|
}[];
|
|
177
177
|
index: number;
|
|
178
178
|
docs: string[];
|
|
179
179
|
deprecationInfo: {
|
|
180
|
-
type: "NotDeprecated";
|
|
181
|
-
} | {
|
|
182
180
|
type: "DeprecatedWithoutNote";
|
|
183
181
|
} | {
|
|
184
182
|
type: "Deprecated";
|
|
@@ -186,6 +184,8 @@ export declare abstract class ApiGen {
|
|
|
186
184
|
note: string;
|
|
187
185
|
since: string | undefined;
|
|
188
186
|
};
|
|
187
|
+
} | {
|
|
188
|
+
type: "NotDeprecated";
|
|
189
189
|
};
|
|
190
190
|
}[];
|
|
191
191
|
extrinsic: {
|
|
@@ -211,8 +211,6 @@ export declare abstract class ApiGen {
|
|
|
211
211
|
output: number;
|
|
212
212
|
docs: string[];
|
|
213
213
|
deprecationInfo: {
|
|
214
|
-
type: "NotDeprecated";
|
|
215
|
-
} | {
|
|
216
214
|
type: "DeprecatedWithoutNote";
|
|
217
215
|
} | {
|
|
218
216
|
type: "Deprecated";
|
|
@@ -220,13 +218,13 @@ export declare abstract class ApiGen {
|
|
|
220
218
|
note: string;
|
|
221
219
|
since: string | undefined;
|
|
222
220
|
};
|
|
221
|
+
} | {
|
|
222
|
+
type: "NotDeprecated";
|
|
223
223
|
};
|
|
224
224
|
}[];
|
|
225
225
|
docs: string[];
|
|
226
226
|
version: number;
|
|
227
227
|
deprecationInfo: {
|
|
228
|
-
type: "NotDeprecated";
|
|
229
|
-
} | {
|
|
230
228
|
type: "DeprecatedWithoutNote";
|
|
231
229
|
} | {
|
|
232
230
|
type: "Deprecated";
|
|
@@ -234,6 +232,8 @@ export declare abstract class ApiGen {
|
|
|
234
232
|
note: string;
|
|
235
233
|
since: string | undefined;
|
|
236
234
|
};
|
|
235
|
+
} | {
|
|
236
|
+
type: "NotDeprecated";
|
|
237
237
|
};
|
|
238
238
|
}[];
|
|
239
239
|
outerEnums: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/codegen",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.1",
|
|
4
4
|
"description": "Generate types",
|
|
5
5
|
"author": "Thang X. Vu <thang@dedot.dev>",
|
|
6
6
|
"homepage": "https://dedot.dev",
|
|
@@ -18,14 +18,14 @@
|
|
|
18
18
|
"copy": "cp -R ./src/chaintypes/templates ./dist/chaintypes && cp -R ./src/chaintypes/templates ./dist/cjs/chaintypes && cp -R ./src/typink/templates ./dist/typink && cp -R ./src/typink/templates ./dist/cjs/typink"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@dedot/api": "0.13.
|
|
22
|
-
"@dedot/codecs": "0.13.
|
|
23
|
-
"@dedot/contracts": "0.13.
|
|
24
|
-
"@dedot/providers": "0.13.
|
|
25
|
-
"@dedot/runtime-specs": "0.13.
|
|
26
|
-
"@dedot/shape": "0.13.
|
|
27
|
-
"@dedot/types": "0.13.
|
|
28
|
-
"@dedot/utils": "0.13.
|
|
21
|
+
"@dedot/api": "0.13.1",
|
|
22
|
+
"@dedot/codecs": "0.13.1",
|
|
23
|
+
"@dedot/contracts": "0.13.1",
|
|
24
|
+
"@dedot/providers": "0.13.1",
|
|
25
|
+
"@dedot/runtime-specs": "0.13.1",
|
|
26
|
+
"@dedot/shape": "0.13.1",
|
|
27
|
+
"@dedot/types": "0.13.1",
|
|
28
|
+
"@dedot/utils": "0.13.1",
|
|
29
29
|
"handlebars": "^4.7.8",
|
|
30
30
|
"prettier": "^3.5.3"
|
|
31
31
|
},
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"node": ">=18"
|
|
38
38
|
},
|
|
39
39
|
"license": "Apache-2.0",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "f39d1199d8beff26929855d976f39b47375abb47",
|
|
41
41
|
"module": "./index.js",
|
|
42
42
|
"types": "./index.d.ts",
|
|
43
43
|
"exports": {
|