@revibase/core 0.8.1 → 0.8.2

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.cts CHANGED
@@ -2243,10 +2243,10 @@ type KeyType = (typeof KeyType)[keyof typeof KeyType];
2243
2243
 
2244
2244
  declare const UserInfoSchema: z.ZodObject<{
2245
2245
  publicKey: z.ZodString;
2246
- walletAddress: z.ZodString;
2247
- settingsIndexWithAddress: z.ZodObject<{
2246
+ walletAddress: z.ZodOptional<z.ZodString>;
2247
+ settingsIndexWithAddress: z.ZodOptional<z.ZodObject<{
2248
2248
  index: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>;
2249
- }, z.core.$strip>;
2249
+ }, z.core.$strip>>;
2250
2250
  }, z.core.$loose>;
2251
2251
  declare const DeviceProfileSchema: z.ZodObject<{
2252
2252
  devicePublicKey: z.ZodString;
@@ -2494,10 +2494,10 @@ declare const AuthenticationContextSchema: z.ZodObject<{
2494
2494
  }, z.core.$strict>;
2495
2495
  user: z.ZodObject<{
2496
2496
  publicKey: z.ZodString;
2497
- walletAddress: z.ZodString;
2498
- settingsIndexWithAddress: z.ZodObject<{
2497
+ walletAddress: z.ZodOptional<z.ZodString>;
2498
+ settingsIndexWithAddress: z.ZodOptional<z.ZodObject<{
2499
2499
  index: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>;
2500
- }, z.core.$strip>;
2500
+ }, z.core.$strip>>;
2501
2501
  }, z.core.$loose>;
2502
2502
  }, z.core.$strict>;
2503
2503
  declare const BaseResponseSchema: z.ZodObject<{
@@ -2586,10 +2586,10 @@ declare const CompleteMessageRequestSchema: z.ZodObject<{
2586
2586
  }, z.core.$strict>;
2587
2587
  user: z.ZodObject<{
2588
2588
  publicKey: z.ZodString;
2589
- walletAddress: z.ZodString;
2590
- settingsIndexWithAddress: z.ZodObject<{
2589
+ walletAddress: z.ZodOptional<z.ZodString>;
2590
+ settingsIndexWithAddress: z.ZodOptional<z.ZodObject<{
2591
2591
  index: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>;
2592
- }, z.core.$strip>;
2592
+ }, z.core.$strip>>;
2593
2593
  }, z.core.$loose>;
2594
2594
  startRequest: z.ZodObject<{
2595
2595
  phase: z.ZodLiteral<"start">;
@@ -2686,10 +2686,10 @@ declare const CompleteTransactionRequestSchema: z.ZodObject<{
2686
2686
  }, z.core.$strict>;
2687
2687
  user: z.ZodObject<{
2688
2688
  publicKey: z.ZodString;
2689
- walletAddress: z.ZodString;
2690
- settingsIndexWithAddress: z.ZodObject<{
2689
+ walletAddress: z.ZodOptional<z.ZodString>;
2690
+ settingsIndexWithAddress: z.ZodOptional<z.ZodObject<{
2691
2691
  index: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>;
2692
- }, z.core.$strip>;
2692
+ }, z.core.$strip>>;
2693
2693
  }, z.core.$loose>;
2694
2694
  slotHash: z.ZodString;
2695
2695
  slotNumber: z.ZodString;
package/dist/index.d.ts CHANGED
@@ -2243,10 +2243,10 @@ type KeyType = (typeof KeyType)[keyof typeof KeyType];
2243
2243
 
2244
2244
  declare const UserInfoSchema: z.ZodObject<{
2245
2245
  publicKey: z.ZodString;
2246
- walletAddress: z.ZodString;
2247
- settingsIndexWithAddress: z.ZodObject<{
2246
+ walletAddress: z.ZodOptional<z.ZodString>;
2247
+ settingsIndexWithAddress: z.ZodOptional<z.ZodObject<{
2248
2248
  index: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>;
2249
- }, z.core.$strip>;
2249
+ }, z.core.$strip>>;
2250
2250
  }, z.core.$loose>;
2251
2251
  declare const DeviceProfileSchema: z.ZodObject<{
2252
2252
  devicePublicKey: z.ZodString;
@@ -2494,10 +2494,10 @@ declare const AuthenticationContextSchema: z.ZodObject<{
2494
2494
  }, z.core.$strict>;
2495
2495
  user: z.ZodObject<{
2496
2496
  publicKey: z.ZodString;
2497
- walletAddress: z.ZodString;
2498
- settingsIndexWithAddress: z.ZodObject<{
2497
+ walletAddress: z.ZodOptional<z.ZodString>;
2498
+ settingsIndexWithAddress: z.ZodOptional<z.ZodObject<{
2499
2499
  index: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>;
2500
- }, z.core.$strip>;
2500
+ }, z.core.$strip>>;
2501
2501
  }, z.core.$loose>;
2502
2502
  }, z.core.$strict>;
2503
2503
  declare const BaseResponseSchema: z.ZodObject<{
@@ -2586,10 +2586,10 @@ declare const CompleteMessageRequestSchema: z.ZodObject<{
2586
2586
  }, z.core.$strict>;
2587
2587
  user: z.ZodObject<{
2588
2588
  publicKey: z.ZodString;
2589
- walletAddress: z.ZodString;
2590
- settingsIndexWithAddress: z.ZodObject<{
2589
+ walletAddress: z.ZodOptional<z.ZodString>;
2590
+ settingsIndexWithAddress: z.ZodOptional<z.ZodObject<{
2591
2591
  index: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>;
2592
- }, z.core.$strip>;
2592
+ }, z.core.$strip>>;
2593
2593
  }, z.core.$loose>;
2594
2594
  startRequest: z.ZodObject<{
2595
2595
  phase: z.ZodLiteral<"start">;
@@ -2686,10 +2686,10 @@ declare const CompleteTransactionRequestSchema: z.ZodObject<{
2686
2686
  }, z.core.$strict>;
2687
2687
  user: z.ZodObject<{
2688
2688
  publicKey: z.ZodString;
2689
- walletAddress: z.ZodString;
2690
- settingsIndexWithAddress: z.ZodObject<{
2689
+ walletAddress: z.ZodOptional<z.ZodString>;
2690
+ settingsIndexWithAddress: z.ZodOptional<z.ZodObject<{
2691
2691
  index: z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>;
2692
- }, z.core.$strip>;
2692
+ }, z.core.$strip>>;
2693
2693
  }, z.core.$loose>;
2694
2694
  slotHash: z.ZodString;
2695
2695
  slotNumber: z.ZodString;