@helium/blockchain-api 0.3.12 → 0.3.13

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/dist/index.d.ts CHANGED
@@ -2297,6 +2297,7 @@ declare const MigrateInputSchema: z.ZodObject<{
2297
2297
  mint: z.ZodString;
2298
2298
  amount: z.ZodString;
2299
2299
  }, z.core.$strip>>>;
2300
+ password: z.ZodOptional<z.ZodString>;
2300
2301
  }, z.core.$strip>;
2301
2302
  declare const MigrateTransactionItemSchema: z.ZodObject<{
2302
2303
  serializedTransaction: z.ZodString;
@@ -2357,6 +2358,7 @@ declare const MigrateOutputSchema: z.ZodObject<{
2357
2358
  mint: z.ZodString;
2358
2359
  amount: z.ZodString;
2359
2360
  }, z.core.$strip>>>;
2361
+ password: z.ZodOptional<z.ZodString>;
2360
2362
  }, z.core.$strip>>;
2361
2363
  }, z.core.$strip>;
2362
2364
  declare const MigratableHotspotSchema: z.ZodObject<{
@@ -5470,6 +5472,7 @@ declare const fullApiContract: {
5470
5472
  mint: zod.ZodString;
5471
5473
  amount: zod.ZodString;
5472
5474
  }, zod_v4_core.$strip>>>;
5475
+ password: zod.ZodOptional<zod.ZodString>;
5473
5476
  }, zod_v4_core.$strip>, zod.ZodObject<{
5474
5477
  transactionData: zod.ZodObject<{
5475
5478
  transactions: zod.ZodArray<zod.ZodObject<{
@@ -5503,6 +5506,7 @@ declare const fullApiContract: {
5503
5506
  mint: zod.ZodString;
5504
5507
  amount: zod.ZodString;
5505
5508
  }, zod_v4_core.$strip>>>;
5509
+ password: zod.ZodOptional<zod.ZodString>;
5506
5510
  }, zod_v4_core.$strip>>;
5507
5511
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5508
5512
  UNAUTHORIZED: {
package/dist/index.js CHANGED
@@ -1042,7 +1042,8 @@ var MigrateInputSchema = z.object({
1042
1042
  mint: z.string(),
1043
1043
  amount: z.string()
1044
1044
  })
1045
- ).default([])
1045
+ ).default([]),
1046
+ password: z.string().optional()
1046
1047
  });
1047
1048
  var MigrateTransactionItemSchema = z.object({
1048
1049
  serializedTransaction: z.string(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@helium/blockchain-api",
3
- "version": "0.3.12",
3
+ "version": "0.3.13",
4
4
  "description": "TypeScript client and schemas for the Helium Blockchain API",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -34,4 +34,4 @@
34
34
  "tsup": "^8.0.0",
35
35
  "typescript": "^5.0.0"
36
36
  }
37
- }
37
+ }