@wowok/agent-mcp 2.3.8 → 2.3.9

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.
@@ -1967,7 +1967,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
1967
1967
  txDigest: string;
1968
1968
  }>;
1969
1969
  packageId: z.ZodString;
1970
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1970
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
1971
1971
  sender: z.ZodString;
1972
1972
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
1973
1973
  transactionModule: z.ZodString;
@@ -1982,7 +1982,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
1982
1982
  };
1983
1983
  bcsEncoding: "base64";
1984
1984
  packageId: string;
1985
- parsedJson: Record<string, string | number | boolean>;
1985
+ parsedJson: Record<string, string | number | boolean | null>;
1986
1986
  sender: string;
1987
1987
  transactionModule: string;
1988
1988
  bcs: string;
@@ -1995,7 +1995,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
1995
1995
  };
1996
1996
  bcsEncoding: "base64";
1997
1997
  packageId: string;
1998
- parsedJson: Record<string, string | number | boolean>;
1998
+ parsedJson: Record<string, string | number | boolean | null>;
1999
1999
  sender: string;
2000
2000
  transactionModule: string;
2001
2001
  bcs: string;
@@ -2012,7 +2012,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
2012
2012
  txDigest: string;
2013
2013
  }>;
2014
2014
  packageId: z.ZodString;
2015
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2015
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
2016
2016
  sender: z.ZodString;
2017
2017
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
2018
2018
  transactionModule: z.ZodString;
@@ -2027,7 +2027,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
2027
2027
  };
2028
2028
  bcsEncoding: "base58";
2029
2029
  packageId: string;
2030
- parsedJson: Record<string, string | number | boolean>;
2030
+ parsedJson: Record<string, string | number | boolean | null>;
2031
2031
  sender: string;
2032
2032
  transactionModule: string;
2033
2033
  bcs: string;
@@ -2040,7 +2040,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
2040
2040
  };
2041
2041
  bcsEncoding: "base58";
2042
2042
  packageId: string;
2043
- parsedJson: Record<string, string | number | boolean>;
2043
+ parsedJson: Record<string, string | number | boolean | null>;
2044
2044
  sender: string;
2045
2045
  transactionModule: string;
2046
2046
  bcs: string;
@@ -2720,7 +2720,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
2720
2720
  };
2721
2721
  bcsEncoding: "base64";
2722
2722
  packageId: string;
2723
- parsedJson: Record<string, string | number | boolean>;
2723
+ parsedJson: Record<string, string | number | boolean | null>;
2724
2724
  sender: string;
2725
2725
  transactionModule: string;
2726
2726
  bcs: string;
@@ -2733,7 +2733,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
2733
2733
  };
2734
2734
  bcsEncoding: "base58";
2735
2735
  packageId: string;
2736
- parsedJson: Record<string, string | number | boolean>;
2736
+ parsedJson: Record<string, string | number | boolean | null>;
2737
2737
  sender: string;
2738
2738
  transactionModule: string;
2739
2739
  bcs: string;
@@ -3010,7 +3010,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
3010
3010
  };
3011
3011
  bcsEncoding: "base64";
3012
3012
  packageId: string;
3013
- parsedJson: Record<string, string | number | boolean>;
3013
+ parsedJson: Record<string, string | number | boolean | null>;
3014
3014
  sender: string;
3015
3015
  transactionModule: string;
3016
3016
  bcs: string;
@@ -3023,7 +3023,7 @@ export declare const CallResultSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObj
3023
3023
  };
3024
3024
  bcsEncoding: "base58";
3025
3025
  packageId: string;
3026
- parsedJson: Record<string, string | number | boolean>;
3026
+ parsedJson: Record<string, string | number | boolean | null>;
3027
3027
  sender: string;
3028
3028
  transactionModule: string;
3029
3029
  bcs: string;
@@ -4595,7 +4595,7 @@ export declare const CallOutputSchema: z.ZodObject<{
4595
4595
  txDigest: string;
4596
4596
  }>;
4597
4597
  packageId: z.ZodString;
4598
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4598
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
4599
4599
  sender: z.ZodString;
4600
4600
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
4601
4601
  transactionModule: z.ZodString;
@@ -4610,7 +4610,7 @@ export declare const CallOutputSchema: z.ZodObject<{
4610
4610
  };
4611
4611
  bcsEncoding: "base64";
4612
4612
  packageId: string;
4613
- parsedJson: Record<string, string | number | boolean>;
4613
+ parsedJson: Record<string, string | number | boolean | null>;
4614
4614
  sender: string;
4615
4615
  transactionModule: string;
4616
4616
  bcs: string;
@@ -4623,7 +4623,7 @@ export declare const CallOutputSchema: z.ZodObject<{
4623
4623
  };
4624
4624
  bcsEncoding: "base64";
4625
4625
  packageId: string;
4626
- parsedJson: Record<string, string | number | boolean>;
4626
+ parsedJson: Record<string, string | number | boolean | null>;
4627
4627
  sender: string;
4628
4628
  transactionModule: string;
4629
4629
  bcs: string;
@@ -4640,7 +4640,7 @@ export declare const CallOutputSchema: z.ZodObject<{
4640
4640
  txDigest: string;
4641
4641
  }>;
4642
4642
  packageId: z.ZodString;
4643
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4643
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
4644
4644
  sender: z.ZodString;
4645
4645
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
4646
4646
  transactionModule: z.ZodString;
@@ -4655,7 +4655,7 @@ export declare const CallOutputSchema: z.ZodObject<{
4655
4655
  };
4656
4656
  bcsEncoding: "base58";
4657
4657
  packageId: string;
4658
- parsedJson: Record<string, string | number | boolean>;
4658
+ parsedJson: Record<string, string | number | boolean | null>;
4659
4659
  sender: string;
4660
4660
  transactionModule: string;
4661
4661
  bcs: string;
@@ -4668,7 +4668,7 @@ export declare const CallOutputSchema: z.ZodObject<{
4668
4668
  };
4669
4669
  bcsEncoding: "base58";
4670
4670
  packageId: string;
4671
- parsedJson: Record<string, string | number | boolean>;
4671
+ parsedJson: Record<string, string | number | boolean | null>;
4672
4672
  sender: string;
4673
4673
  transactionModule: string;
4674
4674
  bcs: string;
@@ -5348,7 +5348,7 @@ export declare const CallOutputSchema: z.ZodObject<{
5348
5348
  };
5349
5349
  bcsEncoding: "base64";
5350
5350
  packageId: string;
5351
- parsedJson: Record<string, string | number | boolean>;
5351
+ parsedJson: Record<string, string | number | boolean | null>;
5352
5352
  sender: string;
5353
5353
  transactionModule: string;
5354
5354
  bcs: string;
@@ -5361,7 +5361,7 @@ export declare const CallOutputSchema: z.ZodObject<{
5361
5361
  };
5362
5362
  bcsEncoding: "base58";
5363
5363
  packageId: string;
5364
- parsedJson: Record<string, string | number | boolean>;
5364
+ parsedJson: Record<string, string | number | boolean | null>;
5365
5365
  sender: string;
5366
5366
  transactionModule: string;
5367
5367
  bcs: string;
@@ -5638,7 +5638,7 @@ export declare const CallOutputSchema: z.ZodObject<{
5638
5638
  };
5639
5639
  bcsEncoding: "base64";
5640
5640
  packageId: string;
5641
- parsedJson: Record<string, string | number | boolean>;
5641
+ parsedJson: Record<string, string | number | boolean | null>;
5642
5642
  sender: string;
5643
5643
  transactionModule: string;
5644
5644
  bcs: string;
@@ -5651,7 +5651,7 @@ export declare const CallOutputSchema: z.ZodObject<{
5651
5651
  };
5652
5652
  bcsEncoding: "base58";
5653
5653
  packageId: string;
5654
- parsedJson: Record<string, string | number | boolean>;
5654
+ parsedJson: Record<string, string | number | boolean | null>;
5655
5655
  sender: string;
5656
5656
  transactionModule: string;
5657
5657
  bcs: string;
@@ -6339,7 +6339,7 @@ export declare const CallOutputSchema: z.ZodObject<{
6339
6339
  };
6340
6340
  bcsEncoding: "base64";
6341
6341
  packageId: string;
6342
- parsedJson: Record<string, string | number | boolean>;
6342
+ parsedJson: Record<string, string | number | boolean | null>;
6343
6343
  sender: string;
6344
6344
  transactionModule: string;
6345
6345
  bcs: string;
@@ -6352,7 +6352,7 @@ export declare const CallOutputSchema: z.ZodObject<{
6352
6352
  };
6353
6353
  bcsEncoding: "base58";
6354
6354
  packageId: string;
6355
- parsedJson: Record<string, string | number | boolean>;
6355
+ parsedJson: Record<string, string | number | boolean | null>;
6356
6356
  sender: string;
6357
6357
  transactionModule: string;
6358
6358
  bcs: string;
@@ -6737,7 +6737,7 @@ export declare const CallOutputSchema: z.ZodObject<{
6737
6737
  };
6738
6738
  bcsEncoding: "base64";
6739
6739
  packageId: string;
6740
- parsedJson: Record<string, string | number | boolean>;
6740
+ parsedJson: Record<string, string | number | boolean | null>;
6741
6741
  sender: string;
6742
6742
  transactionModule: string;
6743
6743
  bcs: string;
@@ -6750,7 +6750,7 @@ export declare const CallOutputSchema: z.ZodObject<{
6750
6750
  };
6751
6751
  bcsEncoding: "base58";
6752
6752
  packageId: string;
6753
- parsedJson: Record<string, string | number | boolean>;
6753
+ parsedJson: Record<string, string | number | boolean | null>;
6754
6754
  sender: string;
6755
6755
  transactionModule: string;
6756
6756
  bcs: string;
@@ -6,7 +6,7 @@ import { BalanceTypeSchema } from "../common/index.js";
6
6
  export const ServiceBuyItemSchema = z.object({
7
7
  name: LongNameSchema.describe("Name of the product or service to purchase"),
8
8
  stock: BalanceTypeSchema.describe("Quantity of the product or service to purchase"),
9
- wip_hash: z.string().describe("WIP file hash of the item"),
9
+ wip_hash: z.string().describe(`WIP file hash of the item. EMPTY string "" means only verify the WIP file integrity without comparing to a specific hash (the hash within the wip file will be used). For purchases, it is STRONGLY RECOMMENDED to fill in the hash you saw when viewing the product info (from the Service sale's wip_hash field) to prevent the merchant from replacing the WIP file before your order is placed (a legitimate update operation), which would cause inconsistency between what you saw and what you received.`),
10
10
  }).strict();
11
11
  export const BuySchema = z.object({
12
12
  items: z.array(ServiceBuyItemSchema).describe("List of products or services to purchase"),
@@ -175,7 +175,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
175
175
  txDigest: string;
176
176
  }>;
177
177
  packageId: z.ZodString;
178
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
178
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
179
179
  sender: z.ZodString;
180
180
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
181
181
  transactionModule: z.ZodString;
@@ -190,7 +190,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
190
190
  };
191
191
  bcsEncoding: "base64";
192
192
  packageId: string;
193
- parsedJson: Record<string, string | number | boolean>;
193
+ parsedJson: Record<string, string | number | boolean | null>;
194
194
  sender: string;
195
195
  transactionModule: string;
196
196
  bcs: string;
@@ -203,7 +203,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
203
203
  };
204
204
  bcsEncoding: "base64";
205
205
  packageId: string;
206
- parsedJson: Record<string, string | number | boolean>;
206
+ parsedJson: Record<string, string | number | boolean | null>;
207
207
  sender: string;
208
208
  transactionModule: string;
209
209
  bcs: string;
@@ -220,7 +220,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
220
220
  txDigest: string;
221
221
  }>;
222
222
  packageId: z.ZodString;
223
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
223
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
224
224
  sender: z.ZodString;
225
225
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
226
226
  transactionModule: z.ZodString;
@@ -235,7 +235,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
235
235
  };
236
236
  bcsEncoding: "base58";
237
237
  packageId: string;
238
- parsedJson: Record<string, string | number | boolean>;
238
+ parsedJson: Record<string, string | number | boolean | null>;
239
239
  sender: string;
240
240
  transactionModule: string;
241
241
  bcs: string;
@@ -248,7 +248,7 @@ export declare const WowEventSchema: z.ZodDiscriminatedUnion<"bcsEncoding", [z.Z
248
248
  };
249
249
  bcsEncoding: "base58";
250
250
  packageId: string;
251
- parsedJson: Record<string, string | number | boolean>;
251
+ parsedJson: Record<string, string | number | boolean | null>;
252
252
  sender: string;
253
253
  transactionModule: string;
254
254
  bcs: string;
@@ -2808,7 +2808,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
2808
2808
  txDigest: string;
2809
2809
  }>;
2810
2810
  packageId: z.ZodString;
2811
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2811
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
2812
2812
  sender: z.ZodString;
2813
2813
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
2814
2814
  transactionModule: z.ZodString;
@@ -2823,7 +2823,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
2823
2823
  };
2824
2824
  bcsEncoding: "base64";
2825
2825
  packageId: string;
2826
- parsedJson: Record<string, string | number | boolean>;
2826
+ parsedJson: Record<string, string | number | boolean | null>;
2827
2827
  sender: string;
2828
2828
  transactionModule: string;
2829
2829
  bcs: string;
@@ -2836,7 +2836,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
2836
2836
  };
2837
2837
  bcsEncoding: "base64";
2838
2838
  packageId: string;
2839
- parsedJson: Record<string, string | number | boolean>;
2839
+ parsedJson: Record<string, string | number | boolean | null>;
2840
2840
  sender: string;
2841
2841
  transactionModule: string;
2842
2842
  bcs: string;
@@ -2853,7 +2853,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
2853
2853
  txDigest: string;
2854
2854
  }>;
2855
2855
  packageId: z.ZodString;
2856
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2856
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
2857
2857
  sender: z.ZodString;
2858
2858
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
2859
2859
  transactionModule: z.ZodString;
@@ -2868,7 +2868,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
2868
2868
  };
2869
2869
  bcsEncoding: "base58";
2870
2870
  packageId: string;
2871
- parsedJson: Record<string, string | number | boolean>;
2871
+ parsedJson: Record<string, string | number | boolean | null>;
2872
2872
  sender: string;
2873
2873
  transactionModule: string;
2874
2874
  bcs: string;
@@ -2881,7 +2881,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
2881
2881
  };
2882
2882
  bcsEncoding: "base58";
2883
2883
  packageId: string;
2884
- parsedJson: Record<string, string | number | boolean>;
2884
+ parsedJson: Record<string, string | number | boolean | null>;
2885
2885
  sender: string;
2886
2886
  transactionModule: string;
2887
2887
  bcs: string;
@@ -3558,7 +3558,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
3558
3558
  };
3559
3559
  bcsEncoding: "base64";
3560
3560
  packageId: string;
3561
- parsedJson: Record<string, string | number | boolean>;
3561
+ parsedJson: Record<string, string | number | boolean | null>;
3562
3562
  sender: string;
3563
3563
  transactionModule: string;
3564
3564
  bcs: string;
@@ -3571,7 +3571,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
3571
3571
  };
3572
3572
  bcsEncoding: "base58";
3573
3573
  packageId: string;
3574
- parsedJson: Record<string, string | number | boolean>;
3574
+ parsedJson: Record<string, string | number | boolean | null>;
3575
3575
  sender: string;
3576
3576
  transactionModule: string;
3577
3577
  bcs: string;
@@ -3847,7 +3847,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
3847
3847
  };
3848
3848
  bcsEncoding: "base64";
3849
3849
  packageId: string;
3850
- parsedJson: Record<string, string | number | boolean>;
3850
+ parsedJson: Record<string, string | number | boolean | null>;
3851
3851
  sender: string;
3852
3852
  transactionModule: string;
3853
3853
  bcs: string;
@@ -3860,7 +3860,7 @@ export declare const WowTransactionBlockResponseSchema: z.ZodObject<{
3860
3860
  };
3861
3861
  bcsEncoding: "base58";
3862
3862
  packageId: string;
3863
- parsedJson: Record<string, string | number | boolean>;
3863
+ parsedJson: Record<string, string | number | boolean | null>;
3864
3864
  sender: string;
3865
3865
  transactionModule: string;
3866
3866
  bcs: string;
@@ -5562,7 +5562,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
5562
5562
  txDigest: string;
5563
5563
  }>;
5564
5564
  packageId: z.ZodString;
5565
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5565
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
5566
5566
  sender: z.ZodString;
5567
5567
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
5568
5568
  transactionModule: z.ZodString;
@@ -5577,7 +5577,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
5577
5577
  };
5578
5578
  bcsEncoding: "base64";
5579
5579
  packageId: string;
5580
- parsedJson: Record<string, string | number | boolean>;
5580
+ parsedJson: Record<string, string | number | boolean | null>;
5581
5581
  sender: string;
5582
5582
  transactionModule: string;
5583
5583
  bcs: string;
@@ -5590,7 +5590,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
5590
5590
  };
5591
5591
  bcsEncoding: "base64";
5592
5592
  packageId: string;
5593
- parsedJson: Record<string, string | number | boolean>;
5593
+ parsedJson: Record<string, string | number | boolean | null>;
5594
5594
  sender: string;
5595
5595
  transactionModule: string;
5596
5596
  bcs: string;
@@ -5607,7 +5607,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
5607
5607
  txDigest: string;
5608
5608
  }>;
5609
5609
  packageId: z.ZodString;
5610
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
5610
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
5611
5611
  sender: z.ZodString;
5612
5612
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
5613
5613
  transactionModule: z.ZodString;
@@ -5622,7 +5622,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
5622
5622
  };
5623
5623
  bcsEncoding: "base58";
5624
5624
  packageId: string;
5625
- parsedJson: Record<string, string | number | boolean>;
5625
+ parsedJson: Record<string, string | number | boolean | null>;
5626
5626
  sender: string;
5627
5627
  transactionModule: string;
5628
5628
  bcs: string;
@@ -5635,7 +5635,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
5635
5635
  };
5636
5636
  bcsEncoding: "base58";
5637
5637
  packageId: string;
5638
- parsedJson: Record<string, string | number | boolean>;
5638
+ parsedJson: Record<string, string | number | boolean | null>;
5639
5639
  sender: string;
5640
5640
  transactionModule: string;
5641
5641
  bcs: string;
@@ -6312,7 +6312,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
6312
6312
  };
6313
6313
  bcsEncoding: "base64";
6314
6314
  packageId: string;
6315
- parsedJson: Record<string, string | number | boolean>;
6315
+ parsedJson: Record<string, string | number | boolean | null>;
6316
6316
  sender: string;
6317
6317
  transactionModule: string;
6318
6318
  bcs: string;
@@ -6325,7 +6325,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
6325
6325
  };
6326
6326
  bcsEncoding: "base58";
6327
6327
  packageId: string;
6328
- parsedJson: Record<string, string | number | boolean>;
6328
+ parsedJson: Record<string, string | number | boolean | null>;
6329
6329
  sender: string;
6330
6330
  transactionModule: string;
6331
6331
  bcs: string;
@@ -6601,7 +6601,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
6601
6601
  };
6602
6602
  bcsEncoding: "base64";
6603
6603
  packageId: string;
6604
- parsedJson: Record<string, string | number | boolean>;
6604
+ parsedJson: Record<string, string | number | boolean | null>;
6605
6605
  sender: string;
6606
6606
  transactionModule: string;
6607
6607
  bcs: string;
@@ -6614,7 +6614,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
6614
6614
  };
6615
6615
  bcsEncoding: "base58";
6616
6616
  packageId: string;
6617
- parsedJson: Record<string, string | number | boolean>;
6617
+ parsedJson: Record<string, string | number | boolean | null>;
6618
6618
  sender: string;
6619
6619
  transactionModule: string;
6620
6620
  bcs: string;
@@ -6970,7 +6970,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
6970
6970
  };
6971
6971
  bcsEncoding: "base64";
6972
6972
  packageId: string;
6973
- parsedJson: Record<string, string | number | boolean>;
6973
+ parsedJson: Record<string, string | number | boolean | null>;
6974
6974
  sender: string;
6975
6975
  transactionModule: string;
6976
6976
  bcs: string;
@@ -6983,7 +6983,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
6983
6983
  };
6984
6984
  bcsEncoding: "base58";
6985
6985
  packageId: string;
6986
- parsedJson: Record<string, string | number | boolean>;
6986
+ parsedJson: Record<string, string | number | boolean | null>;
6987
6987
  sender: string;
6988
6988
  transactionModule: string;
6989
6989
  bcs: string;
@@ -7311,7 +7311,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
7311
7311
  };
7312
7312
  bcsEncoding: "base64";
7313
7313
  packageId: string;
7314
- parsedJson: Record<string, string | number | boolean>;
7314
+ parsedJson: Record<string, string | number | boolean | null>;
7315
7315
  sender: string;
7316
7316
  transactionModule: string;
7317
7317
  bcs: string;
@@ -7324,7 +7324,7 @@ export declare const AccountOperationResultSchema: z.ZodObject<{
7324
7324
  };
7325
7325
  bcsEncoding: "base58";
7326
7326
  packageId: string;
7327
- parsedJson: Record<string, string | number | boolean>;
7327
+ parsedJson: Record<string, string | number | boolean | null>;
7328
7328
  sender: string;
7329
7329
  transactionModule: string;
7330
7330
  bcs: string;
@@ -9219,7 +9219,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
9219
9219
  txDigest: string;
9220
9220
  }>;
9221
9221
  packageId: z.ZodString;
9222
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
9222
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
9223
9223
  sender: z.ZodString;
9224
9224
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
9225
9225
  transactionModule: z.ZodString;
@@ -9234,7 +9234,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
9234
9234
  };
9235
9235
  bcsEncoding: "base64";
9236
9236
  packageId: string;
9237
- parsedJson: Record<string, string | number | boolean>;
9237
+ parsedJson: Record<string, string | number | boolean | null>;
9238
9238
  sender: string;
9239
9239
  transactionModule: string;
9240
9240
  bcs: string;
@@ -9247,7 +9247,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
9247
9247
  };
9248
9248
  bcsEncoding: "base64";
9249
9249
  packageId: string;
9250
- parsedJson: Record<string, string | number | boolean>;
9250
+ parsedJson: Record<string, string | number | boolean | null>;
9251
9251
  sender: string;
9252
9252
  transactionModule: string;
9253
9253
  bcs: string;
@@ -9264,7 +9264,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
9264
9264
  txDigest: string;
9265
9265
  }>;
9266
9266
  packageId: z.ZodString;
9267
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
9267
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
9268
9268
  sender: z.ZodString;
9269
9269
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
9270
9270
  transactionModule: z.ZodString;
@@ -9279,7 +9279,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
9279
9279
  };
9280
9280
  bcsEncoding: "base58";
9281
9281
  packageId: string;
9282
- parsedJson: Record<string, string | number | boolean>;
9282
+ parsedJson: Record<string, string | number | boolean | null>;
9283
9283
  sender: string;
9284
9284
  transactionModule: string;
9285
9285
  bcs: string;
@@ -9292,7 +9292,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
9292
9292
  };
9293
9293
  bcsEncoding: "base58";
9294
9294
  packageId: string;
9295
- parsedJson: Record<string, string | number | boolean>;
9295
+ parsedJson: Record<string, string | number | boolean | null>;
9296
9296
  sender: string;
9297
9297
  transactionModule: string;
9298
9298
  bcs: string;
@@ -9969,7 +9969,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
9969
9969
  };
9970
9970
  bcsEncoding: "base64";
9971
9971
  packageId: string;
9972
- parsedJson: Record<string, string | number | boolean>;
9972
+ parsedJson: Record<string, string | number | boolean | null>;
9973
9973
  sender: string;
9974
9974
  transactionModule: string;
9975
9975
  bcs: string;
@@ -9982,7 +9982,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
9982
9982
  };
9983
9983
  bcsEncoding: "base58";
9984
9984
  packageId: string;
9985
- parsedJson: Record<string, string | number | boolean>;
9985
+ parsedJson: Record<string, string | number | boolean | null>;
9986
9986
  sender: string;
9987
9987
  transactionModule: string;
9988
9988
  bcs: string;
@@ -10258,7 +10258,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
10258
10258
  };
10259
10259
  bcsEncoding: "base64";
10260
10260
  packageId: string;
10261
- parsedJson: Record<string, string | number | boolean>;
10261
+ parsedJson: Record<string, string | number | boolean | null>;
10262
10262
  sender: string;
10263
10263
  transactionModule: string;
10264
10264
  bcs: string;
@@ -10271,7 +10271,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
10271
10271
  };
10272
10272
  bcsEncoding: "base58";
10273
10273
  packageId: string;
10274
- parsedJson: Record<string, string | number | boolean>;
10274
+ parsedJson: Record<string, string | number | boolean | null>;
10275
10275
  sender: string;
10276
10276
  transactionModule: string;
10277
10277
  bcs: string;
@@ -10627,7 +10627,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
10627
10627
  };
10628
10628
  bcsEncoding: "base64";
10629
10629
  packageId: string;
10630
- parsedJson: Record<string, string | number | boolean>;
10630
+ parsedJson: Record<string, string | number | boolean | null>;
10631
10631
  sender: string;
10632
10632
  transactionModule: string;
10633
10633
  bcs: string;
@@ -10640,7 +10640,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
10640
10640
  };
10641
10641
  bcsEncoding: "base58";
10642
10642
  packageId: string;
10643
- parsedJson: Record<string, string | number | boolean>;
10643
+ parsedJson: Record<string, string | number | boolean | null>;
10644
10644
  sender: string;
10645
10645
  transactionModule: string;
10646
10646
  bcs: string;
@@ -10968,7 +10968,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
10968
10968
  };
10969
10969
  bcsEncoding: "base64";
10970
10970
  packageId: string;
10971
- parsedJson: Record<string, string | number | boolean>;
10971
+ parsedJson: Record<string, string | number | boolean | null>;
10972
10972
  sender: string;
10973
10973
  transactionModule: string;
10974
10974
  bcs: string;
@@ -10981,7 +10981,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
10981
10981
  };
10982
10982
  bcsEncoding: "base58";
10983
10983
  packageId: string;
10984
- parsedJson: Record<string, string | number | boolean>;
10984
+ parsedJson: Record<string, string | number | boolean | null>;
10985
10985
  sender: string;
10986
10986
  transactionModule: string;
10987
10987
  bcs: string;
@@ -11312,7 +11312,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
11312
11312
  };
11313
11313
  bcsEncoding: "base64";
11314
11314
  packageId: string;
11315
- parsedJson: Record<string, string | number | boolean>;
11315
+ parsedJson: Record<string, string | number | boolean | null>;
11316
11316
  sender: string;
11317
11317
  transactionModule: string;
11318
11318
  bcs: string;
@@ -11325,7 +11325,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
11325
11325
  };
11326
11326
  bcsEncoding: "base58";
11327
11327
  packageId: string;
11328
- parsedJson: Record<string, string | number | boolean>;
11328
+ parsedJson: Record<string, string | number | boolean | null>;
11329
11329
  sender: string;
11330
11330
  transactionModule: string;
11331
11331
  bcs: string;
@@ -11656,7 +11656,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
11656
11656
  };
11657
11657
  bcsEncoding: "base64";
11658
11658
  packageId: string;
11659
- parsedJson: Record<string, string | number | boolean>;
11659
+ parsedJson: Record<string, string | number | boolean | null>;
11660
11660
  sender: string;
11661
11661
  transactionModule: string;
11662
11662
  bcs: string;
@@ -11669,7 +11669,7 @@ export declare const AccountOperationOutputSchema: z.ZodDiscriminatedUnion<"stat
11669
11669
  };
11670
11670
  bcsEncoding: "base58";
11671
11671
  packageId: string;
11672
- parsedJson: Record<string, string | number | boolean>;
11672
+ parsedJson: Record<string, string | number | boolean | null>;
11673
11673
  sender: string;
11674
11674
  transactionModule: string;
11675
11675
  bcs: string;
@@ -12784,7 +12784,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
12784
12784
  txDigest: string;
12785
12785
  }>;
12786
12786
  packageId: z.ZodString;
12787
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
12787
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
12788
12788
  sender: z.ZodString;
12789
12789
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12790
12790
  transactionModule: z.ZodString;
@@ -12799,7 +12799,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
12799
12799
  };
12800
12800
  bcsEncoding: "base64";
12801
12801
  packageId: string;
12802
- parsedJson: Record<string, string | number | boolean>;
12802
+ parsedJson: Record<string, string | number | boolean | null>;
12803
12803
  sender: string;
12804
12804
  transactionModule: string;
12805
12805
  bcs: string;
@@ -12812,7 +12812,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
12812
12812
  };
12813
12813
  bcsEncoding: "base64";
12814
12814
  packageId: string;
12815
- parsedJson: Record<string, string | number | boolean>;
12815
+ parsedJson: Record<string, string | number | boolean | null>;
12816
12816
  sender: string;
12817
12817
  transactionModule: string;
12818
12818
  bcs: string;
@@ -12829,7 +12829,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
12829
12829
  txDigest: string;
12830
12830
  }>;
12831
12831
  packageId: z.ZodString;
12832
- parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
12832
+ parsedJson: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>;
12833
12833
  sender: z.ZodString;
12834
12834
  timestampMs: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
12835
12835
  transactionModule: z.ZodString;
@@ -12844,7 +12844,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
12844
12844
  };
12845
12845
  bcsEncoding: "base58";
12846
12846
  packageId: string;
12847
- parsedJson: Record<string, string | number | boolean>;
12847
+ parsedJson: Record<string, string | number | boolean | null>;
12848
12848
  sender: string;
12849
12849
  transactionModule: string;
12850
12850
  bcs: string;
@@ -12857,7 +12857,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
12857
12857
  };
12858
12858
  bcsEncoding: "base58";
12859
12859
  packageId: string;
12860
- parsedJson: Record<string, string | number | boolean>;
12860
+ parsedJson: Record<string, string | number | boolean | null>;
12861
12861
  sender: string;
12862
12862
  transactionModule: string;
12863
12863
  bcs: string;
@@ -13534,7 +13534,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
13534
13534
  };
13535
13535
  bcsEncoding: "base64";
13536
13536
  packageId: string;
13537
- parsedJson: Record<string, string | number | boolean>;
13537
+ parsedJson: Record<string, string | number | boolean | null>;
13538
13538
  sender: string;
13539
13539
  transactionModule: string;
13540
13540
  bcs: string;
@@ -13547,7 +13547,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
13547
13547
  };
13548
13548
  bcsEncoding: "base58";
13549
13549
  packageId: string;
13550
- parsedJson: Record<string, string | number | boolean>;
13550
+ parsedJson: Record<string, string | number | boolean | null>;
13551
13551
  sender: string;
13552
13552
  transactionModule: string;
13553
13553
  bcs: string;
@@ -13823,7 +13823,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
13823
13823
  };
13824
13824
  bcsEncoding: "base64";
13825
13825
  packageId: string;
13826
- parsedJson: Record<string, string | number | boolean>;
13826
+ parsedJson: Record<string, string | number | boolean | null>;
13827
13827
  sender: string;
13828
13828
  transactionModule: string;
13829
13829
  bcs: string;
@@ -13836,7 +13836,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
13836
13836
  };
13837
13837
  bcsEncoding: "base58";
13838
13838
  packageId: string;
13839
- parsedJson: Record<string, string | number | boolean>;
13839
+ parsedJson: Record<string, string | number | boolean | null>;
13840
13840
  sender: string;
13841
13841
  transactionModule: string;
13842
13842
  bcs: string;
@@ -14192,7 +14192,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
14192
14192
  };
14193
14193
  bcsEncoding: "base64";
14194
14194
  packageId: string;
14195
- parsedJson: Record<string, string | number | boolean>;
14195
+ parsedJson: Record<string, string | number | boolean | null>;
14196
14196
  sender: string;
14197
14197
  transactionModule: string;
14198
14198
  bcs: string;
@@ -14205,7 +14205,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
14205
14205
  };
14206
14206
  bcsEncoding: "base58";
14207
14207
  packageId: string;
14208
- parsedJson: Record<string, string | number | boolean>;
14208
+ parsedJson: Record<string, string | number | boolean | null>;
14209
14209
  sender: string;
14210
14210
  transactionModule: string;
14211
14211
  bcs: string;
@@ -14533,7 +14533,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
14533
14533
  };
14534
14534
  bcsEncoding: "base64";
14535
14535
  packageId: string;
14536
- parsedJson: Record<string, string | number | boolean>;
14536
+ parsedJson: Record<string, string | number | boolean | null>;
14537
14537
  sender: string;
14538
14538
  transactionModule: string;
14539
14539
  bcs: string;
@@ -14546,7 +14546,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
14546
14546
  };
14547
14547
  bcsEncoding: "base58";
14548
14548
  packageId: string;
14549
- parsedJson: Record<string, string | number | boolean>;
14549
+ parsedJson: Record<string, string | number | boolean | null>;
14550
14550
  sender: string;
14551
14551
  transactionModule: string;
14552
14552
  bcs: string;
@@ -14877,7 +14877,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
14877
14877
  };
14878
14878
  bcsEncoding: "base64";
14879
14879
  packageId: string;
14880
- parsedJson: Record<string, string | number | boolean>;
14880
+ parsedJson: Record<string, string | number | boolean | null>;
14881
14881
  sender: string;
14882
14882
  transactionModule: string;
14883
14883
  bcs: string;
@@ -14890,7 +14890,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
14890
14890
  };
14891
14891
  bcsEncoding: "base58";
14892
14892
  packageId: string;
14893
- parsedJson: Record<string, string | number | boolean>;
14893
+ parsedJson: Record<string, string | number | boolean | null>;
14894
14894
  sender: string;
14895
14895
  transactionModule: string;
14896
14896
  bcs: string;
@@ -15221,7 +15221,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
15221
15221
  };
15222
15222
  bcsEncoding: "base64";
15223
15223
  packageId: string;
15224
- parsedJson: Record<string, string | number | boolean>;
15224
+ parsedJson: Record<string, string | number | boolean | null>;
15225
15225
  sender: string;
15226
15226
  transactionModule: string;
15227
15227
  bcs: string;
@@ -15234,7 +15234,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
15234
15234
  };
15235
15235
  bcsEncoding: "base58";
15236
15236
  packageId: string;
15237
- parsedJson: Record<string, string | number | boolean>;
15237
+ parsedJson: Record<string, string | number | boolean | null>;
15238
15238
  sender: string;
15239
15239
  transactionModule: string;
15240
15240
  bcs: string;
@@ -15576,7 +15576,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
15576
15576
  };
15577
15577
  bcsEncoding: "base64";
15578
15578
  packageId: string;
15579
- parsedJson: Record<string, string | number | boolean>;
15579
+ parsedJson: Record<string, string | number | boolean | null>;
15580
15580
  sender: string;
15581
15581
  transactionModule: string;
15582
15582
  bcs: string;
@@ -15589,7 +15589,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
15589
15589
  };
15590
15590
  bcsEncoding: "base58";
15591
15591
  packageId: string;
15592
- parsedJson: Record<string, string | number | boolean>;
15592
+ parsedJson: Record<string, string | number | boolean | null>;
15593
15593
  sender: string;
15594
15594
  transactionModule: string;
15595
15595
  bcs: string;
@@ -15925,7 +15925,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
15925
15925
  };
15926
15926
  bcsEncoding: "base64";
15927
15927
  packageId: string;
15928
- parsedJson: Record<string, string | number | boolean>;
15928
+ parsedJson: Record<string, string | number | boolean | null>;
15929
15929
  sender: string;
15930
15930
  transactionModule: string;
15931
15931
  bcs: string;
@@ -15938,7 +15938,7 @@ export declare const AccountOperationOutputWrappedSchema: z.ZodObject<{
15938
15938
  };
15939
15939
  bcsEncoding: "base58";
15940
15940
  packageId: string;
15941
- parsedJson: Record<string, string | number | boolean>;
15941
+ parsedJson: Record<string, string | number | boolean | null>;
15942
15942
  sender: string;
15943
15943
  transactionModule: string;
15944
15944
  bcs: string;
@@ -58,7 +58,7 @@ export const WowEventSchema = z.discriminatedUnion("bcsEncoding", [
58
58
  z.object({
59
59
  id: EventIdSchema.describe("Event ID"),
60
60
  packageId: z.string().describe("Package ID where event originated"),
61
- parsedJson: z.record(z.string(), z.union([z.string(), z.number(), z.boolean()])).describe("Parsed JSON value of the event"),
61
+ parsedJson: z.record(z.string(), z.union([z.string(), z.number(), z.boolean(), z.null()])).describe("Parsed JSON value of the event"),
62
62
  sender: z.string().describe("Sender's address"),
63
63
  timestampMs: z.union([z.string(), z.null()]).optional().describe("UTC timestamp in milliseconds since epoch"),
64
64
  transactionModule: z.string().describe("Module where event originated"),
@@ -69,7 +69,7 @@ export const WowEventSchema = z.discriminatedUnion("bcsEncoding", [
69
69
  z.object({
70
70
  id: EventIdSchema.describe("Event ID"),
71
71
  packageId: z.string().describe("Package ID where event originated"),
72
- parsedJson: z.record(z.string(), z.union([z.string(), z.number(), z.boolean()])).describe("Parsed JSON value of the event"),
72
+ parsedJson: z.record(z.string(), z.union([z.string(), z.number(), z.boolean(), z.null()])).describe("Parsed JSON value of the event"),
73
73
  sender: z.string().describe("Sender's ID"),
74
74
  timestampMs: z.union([z.string(), z.null()]).optional().describe("UTC timestamp in milliseconds since epoch"),
75
75
  transactionModule: z.string().describe("Module where event originated"),
@@ -690,7 +690,8 @@
690
690
  "type": [
691
691
  "string",
692
692
  "number",
693
- "boolean"
693
+ "boolean",
694
+ "null"
694
695
  ]
695
696
  },
696
697
  "description": "Parsed JSON value of the event"
@@ -766,7 +767,8 @@
766
767
  "type": [
767
768
  "string",
768
769
  "number",
769
- "boolean"
770
+ "boolean",
771
+ "null"
770
772
  ]
771
773
  },
772
774
  "description": "Parsed JSON value of the event"
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json-schema.org/draft-07/schema#",
3
3
  "title": "WoWok MCP Schema Index",
4
4
  "description": "Index of all available JSON schemas for WoWok MCP tools",
5
- "generatedAt": "2026-07-07T01:29:49.445Z",
5
+ "generatedAt": "2026-07-08T04:58:57.050Z",
6
6
  "tools": [
7
7
  {
8
8
  "name": "onchain_operations",
@@ -1022,7 +1022,8 @@
1022
1022
  "type": [
1023
1023
  "string",
1024
1024
  "number",
1025
- "boolean"
1025
+ "boolean",
1026
+ "null"
1026
1027
  ]
1027
1028
  },
1028
1029
  "description": "Parsed JSON value of the event"
@@ -1098,7 +1099,8 @@
1098
1099
  "type": [
1099
1100
  "string",
1100
1101
  "number",
1101
- "boolean"
1102
+ "boolean",
1103
+ "null"
1102
1104
  ]
1103
1105
  },
1104
1106
  "description": "Parsed JSON value of the event"
@@ -1203,7 +1203,7 @@
1203
1203
  },
1204
1204
  "wip_hash": {
1205
1205
  "type": "string",
1206
- "description": "WIP file hash of the item"
1206
+ "description": "WIP file hash of the item. EMPTY string \"\" means only verify the WIP file integrity without comparing to a specific hash (the hash within the wip file will be used). For purchases, it is STRONGLY RECOMMENDED to fill in the hash you saw when viewing the product info (from the Service sale's wip_hash field) to prevent the merchant from replacing the WIP file before your order is placed (a legitimate update operation), which would cause inconsistency between what you saw and what you received."
1207
1207
  }
1208
1208
  },
1209
1209
  "required": [
@@ -125,7 +125,7 @@
125
125
  },
126
126
  "wip_hash": {
127
127
  "type": "string",
128
- "description": "WIP file hash of the item"
128
+ "description": "WIP file hash of the item. EMPTY string \"\" means only verify the WIP file integrity without comparing to a specific hash (the hash within the wip file will be used). For purchases, it is STRONGLY RECOMMENDED to fill in the hash you saw when viewing the product info (from the Service sale's wip_hash field) to prevent the merchant from replacing the WIP file before your order is placed (a legitimate update operation), which would cause inconsistency between what you saw and what you received."
129
129
  }
130
130
  },
131
131
  "required": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wowok/agent-mcp",
3
- "version": "2.3.8",
3
+ "version": "2.3.9",
4
4
  "description": "Making It Easy for AI Agents to Communicate, Collaborate, Trade, and Trust.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -36,7 +36,7 @@
36
36
  "license": "Apache-2.0",
37
37
  "dependencies": {
38
38
  "@modelcontextprotocol/sdk": "^1.29.0",
39
- "@wowok/wowok": "2.3.8",
39
+ "@wowok/wowok": "2.3.9",
40
40
  "lodash": "^4.18.1",
41
41
  "zod": "^3.25.76"
42
42
  },