@dedot/api 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.
@@ -92,8 +92,6 @@ export declare abstract class Executor<ChainApi extends GenericSubstrateApi = Ge
92
92
  default: `0x${string}`;
93
93
  docs: string[];
94
94
  deprecationInfo: {
95
- type: "NotDeprecated";
96
- } | {
97
95
  type: "DeprecatedWithoutNote";
98
96
  } | {
99
97
  type: "Deprecated";
@@ -101,6 +99,8 @@ export declare abstract class Executor<ChainApi extends GenericSubstrateApi = Ge
101
99
  note: string;
102
100
  since: string | undefined;
103
101
  };
102
+ } | {
103
+ type: "NotDeprecated";
104
104
  };
105
105
  }[];
106
106
  } | undefined;
@@ -134,8 +134,6 @@ export declare abstract class Executor<ChainApi extends GenericSubstrateApi = Ge
134
134
  value: `0x${string}`;
135
135
  docs: string[];
136
136
  deprecationInfo: {
137
- type: "NotDeprecated";
138
- } | {
139
137
  type: "DeprecatedWithoutNote";
140
138
  } | {
141
139
  type: "Deprecated";
@@ -143,6 +141,8 @@ export declare abstract class Executor<ChainApi extends GenericSubstrateApi = Ge
143
141
  note: string;
144
142
  since: string | undefined;
145
143
  };
144
+ } | {
145
+ type: "NotDeprecated";
146
146
  };
147
147
  }[];
148
148
  error: {
@@ -172,8 +172,6 @@ export declare abstract class Executor<ChainApi extends GenericSubstrateApi = Ge
172
172
  output: number;
173
173
  docs: string[];
174
174
  deprecationInfo: {
175
- type: "NotDeprecated";
176
- } | {
177
175
  type: "DeprecatedWithoutNote";
178
176
  } | {
179
177
  type: "Deprecated";
@@ -181,13 +179,13 @@ export declare abstract class Executor<ChainApi extends GenericSubstrateApi = Ge
181
179
  note: string;
182
180
  since: string | undefined;
183
181
  };
182
+ } | {
183
+ type: "NotDeprecated";
184
184
  };
185
185
  }[];
186
186
  index: number;
187
187
  docs: string[];
188
188
  deprecationInfo: {
189
- type: "NotDeprecated";
190
- } | {
191
189
  type: "DeprecatedWithoutNote";
192
190
  } | {
193
191
  type: "Deprecated";
@@ -195,6 +193,8 @@ export declare abstract class Executor<ChainApi extends GenericSubstrateApi = Ge
195
193
  note: string;
196
194
  since: string | undefined;
197
195
  };
196
+ } | {
197
+ type: "NotDeprecated";
198
198
  };
199
199
  }[];
200
200
  extrinsic: {
@@ -220,8 +220,6 @@ export declare abstract class Executor<ChainApi extends GenericSubstrateApi = Ge
220
220
  output: number;
221
221
  docs: string[];
222
222
  deprecationInfo: {
223
- type: "NotDeprecated";
224
- } | {
225
223
  type: "DeprecatedWithoutNote";
226
224
  } | {
227
225
  type: "Deprecated";
@@ -229,13 +227,13 @@ export declare abstract class Executor<ChainApi extends GenericSubstrateApi = Ge
229
227
  note: string;
230
228
  since: string | undefined;
231
229
  };
230
+ } | {
231
+ type: "NotDeprecated";
232
232
  };
233
233
  }[];
234
234
  docs: string[];
235
235
  version: number;
236
236
  deprecationInfo: {
237
- type: "NotDeprecated";
238
- } | {
239
237
  type: "DeprecatedWithoutNote";
240
238
  } | {
241
239
  type: "Deprecated";
@@ -243,6 +241,8 @@ export declare abstract class Executor<ChainApi extends GenericSubstrateApi = Ge
243
241
  note: string;
244
242
  since: string | undefined;
245
243
  };
244
+ } | {
245
+ type: "NotDeprecated";
246
246
  };
247
247
  }[];
248
248
  outerEnums: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dedot/api",
3
- "version": "0.13.0",
3
+ "version": "0.13.1",
4
4
  "description": "A delightful JavaScript/TypeScript client for Polkadot & Substrate",
5
5
  "author": "Thang X. Vu <thang@dedot.dev>",
6
6
  "homepage": "https://dedot.dev",
@@ -13,13 +13,13 @@
13
13
  "type": "module",
14
14
  "sideEffects": false,
15
15
  "dependencies": {
16
- "@dedot/codecs": "0.13.0",
17
- "@dedot/providers": "0.13.0",
18
- "@dedot/runtime-specs": "0.13.0",
19
- "@dedot/shape": "0.13.0",
20
- "@dedot/storage": "0.13.0",
21
- "@dedot/types": "0.13.0",
22
- "@dedot/utils": "0.13.0"
16
+ "@dedot/codecs": "0.13.1",
17
+ "@dedot/providers": "0.13.1",
18
+ "@dedot/runtime-specs": "0.13.1",
19
+ "@dedot/shape": "0.13.1",
20
+ "@dedot/storage": "0.13.1",
21
+ "@dedot/types": "0.13.1",
22
+ "@dedot/utils": "0.13.1"
23
23
  },
24
24
  "scripts": {
25
25
  "build": "tsc --project tsconfig.build.json && tsc --project tsconfig.build.cjs.json",
@@ -48,7 +48,7 @@
48
48
  "node": ">=18"
49
49
  },
50
50
  "license": "Apache-2.0",
51
- "gitHead": "b9193d170fc63ebd64b75f37f8276a7159e2af55",
51
+ "gitHead": "f39d1199d8beff26929855d976f39b47375abb47",
52
52
  "module": "./index.js",
53
53
  "types": "./index.d.ts"
54
54
  }