@keplr-wallet/stores-core 0.12.125-rc.0 → 0.12.126-rc.0

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.
@@ -39,10 +39,10 @@ export declare class SignInteractionStore {
39
39
  constructor(interactionStore: InteractionStore);
40
40
  get waitingDatas(): Omit<InteractionWaitingData<SignInteractionData & {
41
41
  signDocWrapper: SignDocWrapper;
42
- }>, "uri" | "windowId">[];
42
+ }>, "uri" | "tabId" | "windowId">[];
43
43
  get waitingData(): Omit<InteractionWaitingData<SignInteractionData & {
44
44
  signDocWrapper: SignDocWrapper;
45
- }>, "uri" | "windowId"> | undefined;
45
+ }>, "uri" | "tabId" | "windowId"> | undefined;
46
46
  approveWithProceedNext(id: string, newSignDocWrapper: SignDocWrapper, signature: Uint8Array | undefined, afterFn: (proceedNext: boolean) => void | Promise<void>, options?: {
47
47
  preDelay?: number;
48
48
  }): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keplr-wallet/stores-core",
3
- "version": "0.12.125-rc.0",
3
+ "version": "0.12.126-rc.0",
4
4
  "main": "build/index.js",
5
5
  "author": "chainapsis",
6
6
  "license": "Apache-2.0",
@@ -16,18 +16,18 @@
16
16
  "lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\""
17
17
  },
18
18
  "dependencies": {
19
- "@keplr-wallet/background": "0.12.125-rc.0",
20
- "@keplr-wallet/common": "0.12.125-rc.0",
21
- "@keplr-wallet/cosmos": "0.12.125-rc.0",
22
- "@keplr-wallet/router": "0.12.125-rc.0",
23
- "@keplr-wallet/simple-fetch": "0.12.125-rc.0",
24
- "@keplr-wallet/stores": "0.12.125-rc.0",
25
- "@keplr-wallet/types": "0.12.125-rc.0",
19
+ "@keplr-wallet/background": "0.12.126-rc.0",
20
+ "@keplr-wallet/common": "0.12.126-rc.0",
21
+ "@keplr-wallet/cosmos": "0.12.126-rc.0",
22
+ "@keplr-wallet/router": "0.12.126-rc.0",
23
+ "@keplr-wallet/simple-fetch": "0.12.126-rc.0",
24
+ "@keplr-wallet/stores": "0.12.126-rc.0",
25
+ "@keplr-wallet/types": "0.12.126-rc.0",
26
26
  "buffer": "^6.0.3"
27
27
  },
28
28
  "peerDependencies": {
29
29
  "mobx": "^6",
30
30
  "mobx-utils": "^6"
31
31
  },
32
- "gitHead": "96717ef2fc14ce93f3e3d662af33761d1404b378"
32
+ "gitHead": "2eba5df265ff4c3ddafe21bf57b000753de71e2b"
33
33
  }
@@ -47,7 +47,7 @@ export class SignInteractionStore {
47
47
  InteractionWaitingData<
48
48
  SignInteractionData & { signDocWrapper: SignDocWrapper }
49
49
  >,
50
- "uri" | "windowId"
50
+ "uri" | "tabId" | "windowId"
51
51
  >[] {
52
52
  return this.interactionStore
53
53
  .getAllData<SignInteractionData>("request-sign-cosmos")
@@ -77,7 +77,7 @@ export class SignInteractionStore {
77
77
  InteractionWaitingData<
78
78
  SignInteractionData & { signDocWrapper: SignDocWrapper }
79
79
  >,
80
- "uri" | "windowId"
80
+ "uri" | "tabId" | "windowId"
81
81
  >
82
82
  | undefined {
83
83
  const datas = this.waitingDatas;