@kynesyslabs/demosdk 1.7.4 → 1.7.5

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.
@@ -18,4 +18,15 @@ export interface GCREditAssign {
18
18
  context: "native" | "web2" | "xm";
19
19
  txhash: string;
20
20
  }
21
- export type GCREdit = GCREditBalance | GCREditNonce | GCREditAssign;
21
+ export interface GCREditAssignIdentity {
22
+ type: "identity";
23
+ account: string;
24
+ identity: any;
25
+ txhash: string;
26
+ }
27
+ export interface GCREditSubnetsTx {
28
+ type: "subnetsTx";
29
+ account: string;
30
+ txhash: string;
31
+ }
32
+ export type GCREdit = GCREditBalance | GCREditNonce | GCREditAssign | GCREditAssignIdentity | GCREditSubnetsTx;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kynesyslabs/demosdk",
3
- "version": "1.7.4",
3
+ "version": "1.7.5",
4
4
  "main": "build/index.js",
5
5
  "types": "build/index.d.ts",
6
6
  "author": "Kynesys Labs",