@aptos-labs/js-pro 0.1.0-beta.6 → 0.1.0-beta.7

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @aptos-labs/js-pro
2
2
 
3
+ ## 0.1.0-beta.7
4
+
5
+ ### Patch Changes
6
+
7
+ - bcfa4c8: ANS resolution hooks now accept `undefined` `address` or `name`
8
+
3
9
  ## 0.1.0-beta.6
4
10
 
5
11
  ### Patch Changes
@@ -24,6 +24,11 @@ export interface ResourceMap {
24
24
  frozen: boolean;
25
25
  withdraw_events: ResourceEventHandle;
26
26
  };
27
+ ["0x1::multisig_account::MultisigAccount"]: {
28
+ owners: string[];
29
+ num_signatures_required: string;
30
+ next_sequence_number: string;
31
+ };
27
32
  }
28
33
  export type ResourceType = keyof ResourceMap;
29
34
  //# sourceMappingURL=resources.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"resources.d.ts","sourceRoot":"","sources":["../../src/types/resources.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,mBAAmB;IAClC,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE;QAAE,EAAE,EAAE;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,YAAY,EAAE,MAAM,CAAA;SAAE,CAAA;KAAE,CAAC;CACtD;AAED,MAAM,WAAW,WAAW;IAC1B,CAAC,oCAAoC,CAAC,EAAE;QAAE,QAAQ,EAAE;YAAE,KAAK,EAAE,MAAM,CAAA;SAAE,CAAA;KAAE,CAAC;IACxE,CAAC,yBAAyB,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IAC/C,CAAC,GAAG,EAAE,wBAAwB,MAAM,GAAG,GAAG;QACxC,IAAI,EAAE;YAAE,KAAK,EAAE,MAAM,CAAA;SAAE,CAAC;QACxB,cAAc,EAAE,mBAAmB,CAAC;QACpC,MAAM,EAAE,OAAO,CAAC;QAChB,eAAe,EAAE,mBAAmB,CAAC;KACtC,CAAC;CACH;AAED,MAAM,MAAM,YAAY,GAAG,MAAM,WAAW,CAAC"}
1
+ {"version":3,"file":"resources.d.ts","sourceRoot":"","sources":["../../src/types/resources.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,mBAAmB;IAClC,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE;QAAE,EAAE,EAAE;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,YAAY,EAAE,MAAM,CAAA;SAAE,CAAA;KAAE,CAAC;CACtD;AAED,MAAM,WAAW,WAAW;IAC1B,CAAC,oCAAoC,CAAC,EAAE;QAAE,QAAQ,EAAE;YAAE,KAAK,EAAE,MAAM,CAAA;SAAE,CAAA;KAAE,CAAC;IACxE,CAAC,yBAAyB,CAAC,EAAE;QAAE,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IAC/C,CAAC,GAAG,EAAE,wBAAwB,MAAM,GAAG,GAAG;QACxC,IAAI,EAAE;YAAE,KAAK,EAAE,MAAM,CAAA;SAAE,CAAC;QACxB,cAAc,EAAE,mBAAmB,CAAC;QACpC,MAAM,EAAE,OAAO,CAAC;QAChB,eAAe,EAAE,mBAAmB,CAAC;KACtC,CAAC;IACF,CAAC,wCAAwC,CAAC,EAAE;QAC1C,MAAM,EAAE,MAAM,EAAE,CAAC;QACjB,uBAAuB,EAAE,MAAM,CAAC;QAChC,oBAAoB,EAAE,MAAM,CAAC;KAC9B,CAAC;CACH;AAED,MAAM,MAAM,YAAY,GAAG,MAAM,WAAW,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptos-labs/js-pro",
3
- "version": "0.1.0-beta.6",
3
+ "version": "0.1.0-beta.7",
4
4
  "description": "State management and library of utilities for Aptos applications.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,6 +15,11 @@ export interface ResourceMap {
15
15
  frozen: boolean;
16
16
  withdraw_events: ResourceEventHandle;
17
17
  };
18
+ ["0x1::multisig_account::MultisigAccount"]: {
19
+ owners: string[];
20
+ num_signatures_required: string;
21
+ next_sequence_number: string;
22
+ };
18
23
  }
19
24
 
20
25
  export type ResourceType = keyof ResourceMap;