@revibase/core 0.7.4 → 0.7.5

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
@@ -2511,7 +2511,6 @@ declare const TransactionDetailsSchema: z.ZodObject<{
2511
2511
  originIndex: z.ZodNumber;
2512
2512
  crossOrigin: z.ZodBoolean;
2513
2513
  transactionManagerAddress: z.ZodOptional<z.ZodString>;
2514
- unitsConsumed: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>>>;
2515
2514
  }, z.core.$strict>;
2516
2515
  declare const CompleteMessageRequestSchema: z.ZodObject<{
2517
2516
  phase: z.ZodLiteral<"complete">;
@@ -2698,7 +2697,6 @@ declare const CompleteTransactionRequestSchema: z.ZodObject<{
2698
2697
  originIndex: z.ZodNumber;
2699
2698
  crossOrigin: z.ZodBoolean;
2700
2699
  transactionManagerAddress: z.ZodOptional<z.ZodString>;
2701
- unitsConsumed: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>>>;
2702
2700
  startRequest: z.ZodObject<{
2703
2701
  phase: z.ZodLiteral<"start">;
2704
2702
  clientOrigin: z.ZodURL;
@@ -2802,7 +2800,6 @@ type TransactionDetails = {
2802
2800
  payer: TransactionSigner;
2803
2801
  instructions: Instruction[];
2804
2802
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
2805
- unitsConsumed?: bigint | number;
2806
2803
  };
2807
2804
 
2808
2805
  declare function vaultTransactionMessageSerialize(compiledMessage: CompiledTransactionMessage & {
package/dist/index.d.ts CHANGED
@@ -2511,7 +2511,6 @@ declare const TransactionDetailsSchema: z.ZodObject<{
2511
2511
  originIndex: z.ZodNumber;
2512
2512
  crossOrigin: z.ZodBoolean;
2513
2513
  transactionManagerAddress: z.ZodOptional<z.ZodString>;
2514
- unitsConsumed: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>>>;
2515
2514
  }, z.core.$strict>;
2516
2515
  declare const CompleteMessageRequestSchema: z.ZodObject<{
2517
2516
  phase: z.ZodLiteral<"complete">;
@@ -2698,7 +2697,6 @@ declare const CompleteTransactionRequestSchema: z.ZodObject<{
2698
2697
  originIndex: z.ZodNumber;
2699
2698
  crossOrigin: z.ZodBoolean;
2700
2699
  transactionManagerAddress: z.ZodOptional<z.ZodString>;
2701
- unitsConsumed: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodNumber, z.ZodBigInt]>>>;
2702
2700
  startRequest: z.ZodObject<{
2703
2701
  phase: z.ZodLiteral<"start">;
2704
2702
  clientOrigin: z.ZodURL;
@@ -2802,7 +2800,6 @@ type TransactionDetails = {
2802
2800
  payer: TransactionSigner;
2803
2801
  instructions: Instruction[];
2804
2802
  addressesByLookupTableAddress?: AddressesByLookupTableAddress;
2805
- unitsConsumed?: bigint | number;
2806
2803
  };
2807
2804
 
2808
2805
  declare function vaultTransactionMessageSerialize(compiledMessage: CompiledTransactionMessage & {