@steemit/steem-js 1.0.17 → 1.0.19

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.
@@ -73,6 +73,10 @@ export interface Account {
73
73
  guest_bloggers: unknown[];
74
74
  blog_category: unknown;
75
75
  }
76
+ /**
77
+ * steem::protocol::authority (condenser JSON).
78
+ * account_auths / key_auths are fc::flat_map → array of [key, weight] pairs, not object maps.
79
+ */
76
80
  export interface Authority {
77
81
  weight_threshold: number;
78
82
  account_auths: [string, number][];
package/dist/types.d.ts CHANGED
@@ -13,6 +13,10 @@ export interface SteemConfig {
13
13
  export interface Account {
14
14
  name: string;
15
15
  }
16
+ /**
17
+ * steem::protocol::authority (condenser JSON).
18
+ * account_auths / key_auths are fc::flat_map → array of [key, weight] pairs, not object maps.
19
+ */
16
20
  export interface Authority {
17
21
  weight_threshold: number;
18
22
  account_auths: [string, number][];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steemit/steem-js",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
4
4
  "description": "Steem blockchain JavaScript/TypeScript library",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",