@secrecy/lib 1.11.1 → 1.11.3

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.
@@ -1104,6 +1104,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
1104
1104
  _input_in: {};
1105
1105
  _input_out: {};
1106
1106
  _output_in: {
1107
+ cryptoWallets: {
1108
+ address: string;
1109
+ encryptedKeystore: string;
1110
+ }[];
1107
1111
  masterKeySalt: string;
1108
1112
  keyPairs: {
1109
1113
  pub: string;
@@ -1111,6 +1115,10 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
1111
1115
  }[];
1112
1116
  };
1113
1117
  _output_out: {
1118
+ cryptoWallets: {
1119
+ address: string;
1120
+ encryptedKeystore: string;
1121
+ }[];
1114
1122
  masterKeySalt: string;
1115
1123
  keyPairs: {
1116
1124
  pub: string;
@@ -5177,16 +5185,16 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
5177
5185
  createdAt: Date;
5178
5186
  address: string;
5179
5187
  encryptedKeystore: string;
5180
- };
5188
+ } | null;
5181
5189
  _output_out: {
5182
5190
  userId: string;
5183
5191
  createdAt: Date;
5184
5192
  address: string;
5185
5193
  encryptedKeystore: string;
5186
- };
5194
+ } | null;
5187
5195
  }, unknown>>;
5188
5196
  };
5189
- updateWallet: {
5197
+ updateWallets: {
5190
5198
  mutate: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"mutation", {
5191
5199
  _config: import("@trpc/server").RootConfig<{
5192
5200
  ctx: {};
@@ -5213,22 +5221,16 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
5213
5221
  _input_in: {
5214
5222
  address: string;
5215
5223
  encryptedKeystore: string;
5216
- };
5224
+ }[];
5217
5225
  _input_out: {
5218
5226
  address: string;
5219
5227
  encryptedKeystore: string;
5220
- };
5228
+ }[];
5221
5229
  _output_in: {
5222
- userId: string;
5223
- createdAt: Date;
5224
- address: string;
5225
- encryptedKeystore: string;
5230
+ isDone: boolean;
5226
5231
  };
5227
5232
  _output_out: {
5228
- userId: string;
5229
- createdAt: Date;
5230
- address: string;
5231
- encryptedKeystore: string;
5233
+ isDone: boolean;
5232
5234
  };
5233
5235
  }, unknown>>;
5234
5236
  };
@@ -5354,7 +5356,7 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
5354
5356
  };
5355
5357
  }, unknown>>;
5356
5358
  };
5357
- myWallet: {
5359
+ myWallets: {
5358
5360
  query: import("@trpc/client").Resolver<import("@trpc/server").BuildProcedure<"query", {
5359
5361
  _config: import("@trpc/server").RootConfig<{
5360
5362
  ctx: {};
@@ -5385,13 +5387,13 @@ export declare const createTRPCClient: (session?: string | null | undefined, onA
5385
5387
  createdAt: Date;
5386
5388
  address: string;
5387
5389
  encryptedKeystore: string;
5388
- };
5390
+ }[];
5389
5391
  _output_out: {
5390
5392
  userId: string;
5391
5393
  createdAt: Date;
5392
5394
  address: string;
5393
5395
  encryptedKeystore: string;
5394
- };
5396
+ }[];
5395
5397
  }, unknown>>;
5396
5398
  };
5397
5399
  };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@secrecy/lib",
3
3
  "author": "Anonymize <anonymize@gmail.com>",
4
4
  "description": "Anonymize Secrecy Library",
5
- "version": "1.11.1",
5
+ "version": "1.11.3",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/anonymize-org/lib.git"
@@ -74,7 +74,7 @@
74
74
  },
75
75
  "dependencies": {
76
76
  "@secrecy/lib-utils": "^1.0.18",
77
- "@secrecy/trpc-api-types": "1.18.0-fix-crypto-wallet.1",
77
+ "@secrecy/trpc-api-types": "1.18.0-fix-crypto-wallet.3",
78
78
  "@trpc/client": "10.45.2",
79
79
  "@trpc/server": "10.45.2",
80
80
  "@types/libsodium-wrappers-sumo": "^0.7.8",