@illalabs/interfaces 0.17.0 → 0.18.0-canary-beta-e394e590

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.
@@ -672,6 +672,15 @@ export declare const SignatureRequestSchema: z.ZodDiscriminatedUnion<"signMethod
672
672
  blocked?: boolean | undefined;
673
673
  }>]>>;
674
674
  }, z.ZodUnknown, "strip">>>;
675
+ /**
676
+ * Server-issued integrity HMAC binding this signature request to the
677
+ * issuing API. Optional on the wire shape so action providers can
678
+ * construct requests without knowing the secret; the orchestrator
679
+ * chokepoint attaches it before responses leave the API, and sign /
680
+ * broadcast endpoints reject any inbound request whose HMAC is missing
681
+ * or does not match the canonical form.
682
+ */
683
+ hmac: z.ZodOptional<z.ZodString>;
675
684
  } & {
676
685
  signMethod: z.ZodLiteral<"typedData">;
677
686
  /** EIP-712 typed data to be signed */
@@ -807,6 +816,7 @@ export declare const SignatureRequestSchema: z.ZodDiscriminatedUnion<"signMethod
807
816
  blocked?: boolean | undefined;
808
817
  }>]>>;
809
818
  }, z.ZodUnknown, "strip"> | undefined;
819
+ hmac?: string | undefined;
810
820
  }, {
811
821
  id: string;
812
822
  signerAddress: string;
@@ -908,6 +918,7 @@ export declare const SignatureRequestSchema: z.ZodDiscriminatedUnion<"signMethod
908
918
  blocked?: boolean | undefined;
909
919
  }>]>>;
910
920
  }, z.ZodUnknown, "strip"> | undefined;
921
+ hmac?: string | undefined;
911
922
  }>, z.ZodObject<{
912
923
  /** Unique identifier for this signature request */
913
924
  id: z.ZodString;
@@ -1175,6 +1186,15 @@ export declare const SignatureRequestSchema: z.ZodDiscriminatedUnion<"signMethod
1175
1186
  blocked?: boolean | undefined;
1176
1187
  }>]>>;
1177
1188
  }, z.ZodUnknown, "strip">>>;
1189
+ /**
1190
+ * Server-issued integrity HMAC binding this signature request to the
1191
+ * issuing API. Optional on the wire shape so action providers can
1192
+ * construct requests without knowing the secret; the orchestrator
1193
+ * chokepoint attaches it before responses leave the API, and sign /
1194
+ * broadcast endpoints reject any inbound request whose HMAC is missing
1195
+ * or does not match the canonical form.
1196
+ */
1197
+ hmac: z.ZodOptional<z.ZodString>;
1178
1198
  } & {
1179
1199
  signMethod: z.ZodLiteral<"message">;
1180
1200
  /** Raw hash to be signed */
@@ -1272,6 +1292,7 @@ export declare const SignatureRequestSchema: z.ZodDiscriminatedUnion<"signMethod
1272
1292
  blocked?: boolean | undefined;
1273
1293
  }>]>>;
1274
1294
  }, z.ZodUnknown, "strip"> | undefined;
1295
+ hmac?: string | undefined;
1275
1296
  }, {
1276
1297
  id: string;
1277
1298
  signerAddress: string;
@@ -1365,6 +1386,7 @@ export declare const SignatureRequestSchema: z.ZodDiscriminatedUnion<"signMethod
1365
1386
  blocked?: boolean | undefined;
1366
1387
  }>]>>;
1367
1388
  }, z.ZodUnknown, "strip"> | undefined;
1389
+ hmac?: string | undefined;
1368
1390
  }>]>;
1369
1391
  export type SignatureRequest = z.infer<typeof SignatureRequestSchema>;
1370
1392
  /** Token reference schema for action output metadata */
@@ -2620,18 +2642,29 @@ export declare const PendingToolCallSchema: z.ZodObject<{
2620
2642
  explorerUrl?: string | undefined;
2621
2643
  usdValue?: string | undefined;
2622
2644
  }>>;
2645
+ /**
2646
+ * Server-issued integrity HMAC binding this transaction to the issuing
2647
+ * API. Optional on the wire shape so action providers can construct
2648
+ * transactions without knowing the secret; the orchestrator chokepoint
2649
+ * attaches it before responses leave the API, and sign / broadcast
2650
+ * endpoints reject any inbound request whose HMAC is missing or does
2651
+ * not match the canonical form.
2652
+ */
2653
+ hmac: z.ZodOptional<z.ZodString>;
2623
2654
  }, "strip", z.ZodTypeAny, {
2624
2655
  transaction: PrepareTransactionRequestReturnType;
2625
2656
  metadata?: {
2626
2657
  explorerUrl?: string | undefined;
2627
2658
  usdValue?: string | undefined;
2628
2659
  } | undefined;
2660
+ hmac?: string | undefined;
2629
2661
  }, {
2630
2662
  transaction: PrepareTransactionRequestReturnType;
2631
2663
  metadata?: {
2632
2664
  explorerUrl?: string | undefined;
2633
2665
  usdValue?: string | undefined;
2634
2666
  } | undefined;
2667
+ hmac?: string | undefined;
2635
2668
  }>, "many">;
2636
2669
  actionMetadata: z.ZodOptional<z.ZodDiscriminatedUnion<"action", [z.ZodObject<{
2637
2670
  action: z.ZodLiteral<"swap">;
@@ -3046,6 +3079,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3046
3079
  explorerUrl?: string | undefined;
3047
3080
  usdValue?: string | undefined;
3048
3081
  } | undefined;
3082
+ hmac?: string | undefined;
3049
3083
  }[];
3050
3084
  actionMetadata?: {
3051
3085
  chainId: number;
@@ -3166,6 +3200,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3166
3200
  explorerUrl?: string | undefined;
3167
3201
  usdValue?: string | undefined;
3168
3202
  } | undefined;
3203
+ hmac?: string | undefined;
3169
3204
  }[];
3170
3205
  actionMetadata?: {
3171
3206
  chainId: number;
@@ -3292,18 +3327,29 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3292
3327
  explorerUrl?: string | undefined;
3293
3328
  usdValue?: string | undefined;
3294
3329
  }>>;
3330
+ /**
3331
+ * Server-issued integrity HMAC binding this transaction to the issuing
3332
+ * API. Optional on the wire shape so action providers can construct
3333
+ * transactions without knowing the secret; the orchestrator chokepoint
3334
+ * attaches it before responses leave the API, and sign / broadcast
3335
+ * endpoints reject any inbound request whose HMAC is missing or does
3336
+ * not match the canonical form.
3337
+ */
3338
+ hmac: z.ZodOptional<z.ZodString>;
3295
3339
  }, "strip", z.ZodTypeAny, {
3296
3340
  transaction: PrepareTransactionRequestReturnType;
3297
3341
  metadata?: {
3298
3342
  explorerUrl?: string | undefined;
3299
3343
  usdValue?: string | undefined;
3300
3344
  } | undefined;
3345
+ hmac?: string | undefined;
3301
3346
  }, {
3302
3347
  transaction: PrepareTransactionRequestReturnType;
3303
3348
  metadata?: {
3304
3349
  explorerUrl?: string | undefined;
3305
3350
  usdValue?: string | undefined;
3306
3351
  } | undefined;
3352
+ hmac?: string | undefined;
3307
3353
  }>;
3308
3354
  actionMetadata: z.ZodOptional<z.ZodDiscriminatedUnion<"action", [z.ZodObject<{
3309
3355
  action: z.ZodLiteral<"swap">;
@@ -3718,6 +3764,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3718
3764
  explorerUrl?: string | undefined;
3719
3765
  usdValue?: string | undefined;
3720
3766
  } | undefined;
3767
+ hmac?: string | undefined;
3721
3768
  };
3722
3769
  actionMetadata?: {
3723
3770
  chainId: number;
@@ -3838,6 +3885,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
3838
3885
  explorerUrl?: string | undefined;
3839
3886
  usdValue?: string | undefined;
3840
3887
  } | undefined;
3888
+ hmac?: string | undefined;
3841
3889
  };
3842
3890
  actionMetadata?: {
3843
3891
  chainId: number;
@@ -4220,6 +4268,15 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4220
4268
  blocked?: boolean | undefined;
4221
4269
  }>]>>;
4222
4270
  }, z.ZodUnknown, "strip">>>;
4271
+ /**
4272
+ * Server-issued integrity HMAC binding this signature request to the
4273
+ * issuing API. Optional on the wire shape so action providers can
4274
+ * construct requests without knowing the secret; the orchestrator
4275
+ * chokepoint attaches it before responses leave the API, and sign /
4276
+ * broadcast endpoints reject any inbound request whose HMAC is missing
4277
+ * or does not match the canonical form.
4278
+ */
4279
+ hmac: z.ZodOptional<z.ZodString>;
4223
4280
  } & {
4224
4281
  signMethod: z.ZodLiteral<"typedData">;
4225
4282
  /** EIP-712 typed data to be signed */
@@ -4355,6 +4412,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4355
4412
  blocked?: boolean | undefined;
4356
4413
  }>]>>;
4357
4414
  }, z.ZodUnknown, "strip"> | undefined;
4415
+ hmac?: string | undefined;
4358
4416
  }, {
4359
4417
  id: string;
4360
4418
  signerAddress: string;
@@ -4456,6 +4514,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4456
4514
  blocked?: boolean | undefined;
4457
4515
  }>]>>;
4458
4516
  }, z.ZodUnknown, "strip"> | undefined;
4517
+ hmac?: string | undefined;
4459
4518
  }>, z.ZodObject<{
4460
4519
  /** Unique identifier for this signature request */
4461
4520
  id: z.ZodString;
@@ -4723,6 +4782,15 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4723
4782
  blocked?: boolean | undefined;
4724
4783
  }>]>>;
4725
4784
  }, z.ZodUnknown, "strip">>>;
4785
+ /**
4786
+ * Server-issued integrity HMAC binding this signature request to the
4787
+ * issuing API. Optional on the wire shape so action providers can
4788
+ * construct requests without knowing the secret; the orchestrator
4789
+ * chokepoint attaches it before responses leave the API, and sign /
4790
+ * broadcast endpoints reject any inbound request whose HMAC is missing
4791
+ * or does not match the canonical form.
4792
+ */
4793
+ hmac: z.ZodOptional<z.ZodString>;
4726
4794
  } & {
4727
4795
  signMethod: z.ZodLiteral<"message">;
4728
4796
  /** Raw hash to be signed */
@@ -4820,6 +4888,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4820
4888
  blocked?: boolean | undefined;
4821
4889
  }>]>>;
4822
4890
  }, z.ZodUnknown, "strip"> | undefined;
4891
+ hmac?: string | undefined;
4823
4892
  }, {
4824
4893
  id: string;
4825
4894
  signerAddress: string;
@@ -4913,6 +4982,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
4913
4982
  blocked?: boolean | undefined;
4914
4983
  }>]>>;
4915
4984
  }, z.ZodUnknown, "strip"> | undefined;
4985
+ hmac?: string | undefined;
4916
4986
  }>]>, "many">;
4917
4987
  }, "strip", z.ZodTypeAny, {
4918
4988
  signatureRequests: ({
@@ -5016,6 +5086,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5016
5086
  blocked?: boolean | undefined;
5017
5087
  }>]>>;
5018
5088
  }, z.ZodUnknown, "strip"> | undefined;
5089
+ hmac?: string | undefined;
5019
5090
  } | {
5020
5091
  id: string;
5021
5092
  signerAddress: string;
@@ -5109,6 +5180,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5109
5180
  blocked?: boolean | undefined;
5110
5181
  }>]>>;
5111
5182
  }, z.ZodUnknown, "strip"> | undefined;
5183
+ hmac?: string | undefined;
5112
5184
  })[];
5113
5185
  }, {
5114
5186
  signatureRequests: ({
@@ -5212,6 +5284,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5212
5284
  blocked?: boolean | undefined;
5213
5285
  }>]>>;
5214
5286
  }, z.ZodUnknown, "strip"> | undefined;
5287
+ hmac?: string | undefined;
5215
5288
  } | {
5216
5289
  id: string;
5217
5290
  signerAddress: string;
@@ -5305,6 +5378,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5305
5378
  blocked?: boolean | undefined;
5306
5379
  }>]>>;
5307
5380
  }, z.ZodUnknown, "strip"> | undefined;
5381
+ hmac?: string | undefined;
5308
5382
  })[];
5309
5383
  }>;
5310
5384
  actionMetadata: z.ZodOptional<z.ZodDiscriminatedUnion<"action", [z.ZodObject<{
@@ -5816,6 +5890,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5816
5890
  blocked?: boolean | undefined;
5817
5891
  }>]>>;
5818
5892
  }, z.ZodUnknown, "strip"> | undefined;
5893
+ hmac?: string | undefined;
5819
5894
  } | {
5820
5895
  id: string;
5821
5896
  signerAddress: string;
@@ -5909,6 +5984,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
5909
5984
  blocked?: boolean | undefined;
5910
5985
  }>]>>;
5911
5986
  }, z.ZodUnknown, "strip"> | undefined;
5987
+ hmac?: string | undefined;
5912
5988
  })[];
5913
5989
  };
5914
5990
  actionMetadata?: {
@@ -6126,6 +6202,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6126
6202
  blocked?: boolean | undefined;
6127
6203
  }>]>>;
6128
6204
  }, z.ZodUnknown, "strip"> | undefined;
6205
+ hmac?: string | undefined;
6129
6206
  } | {
6130
6207
  id: string;
6131
6208
  signerAddress: string;
@@ -6219,6 +6296,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6219
6296
  blocked?: boolean | undefined;
6220
6297
  }>]>>;
6221
6298
  }, z.ZodUnknown, "strip"> | undefined;
6299
+ hmac?: string | undefined;
6222
6300
  })[];
6223
6301
  };
6224
6302
  actionMetadata?: {
@@ -6348,18 +6426,29 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6348
6426
  explorerUrl?: string | undefined;
6349
6427
  usdValue?: string | undefined;
6350
6428
  }>>;
6429
+ /**
6430
+ * Server-issued integrity HMAC binding this transaction to the issuing
6431
+ * API. Optional on the wire shape so action providers can construct
6432
+ * transactions without knowing the secret; the orchestrator chokepoint
6433
+ * attaches it before responses leave the API, and sign / broadcast
6434
+ * endpoints reject any inbound request whose HMAC is missing or does
6435
+ * not match the canonical form.
6436
+ */
6437
+ hmac: z.ZodOptional<z.ZodString>;
6351
6438
  }, "strip", z.ZodTypeAny, {
6352
6439
  transaction: PrepareTransactionRequestReturnType;
6353
6440
  metadata?: {
6354
6441
  explorerUrl?: string | undefined;
6355
6442
  usdValue?: string | undefined;
6356
6443
  } | undefined;
6444
+ hmac?: string | undefined;
6357
6445
  }, {
6358
6446
  transaction: PrepareTransactionRequestReturnType;
6359
6447
  metadata?: {
6360
6448
  explorerUrl?: string | undefined;
6361
6449
  usdValue?: string | undefined;
6362
6450
  } | undefined;
6451
+ hmac?: string | undefined;
6363
6452
  }>;
6364
6453
  actionMetadata: z.ZodOptional<z.ZodDiscriminatedUnion<"action", [z.ZodObject<{
6365
6454
  action: z.ZodLiteral<"swap">;
@@ -6774,6 +6863,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6774
6863
  explorerUrl?: string | undefined;
6775
6864
  usdValue?: string | undefined;
6776
6865
  } | undefined;
6866
+ hmac?: string | undefined;
6777
6867
  };
6778
6868
  actionMetadata?: {
6779
6869
  chainId: number;
@@ -6894,6 +6984,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
6894
6984
  explorerUrl?: string | undefined;
6895
6985
  usdValue?: string | undefined;
6896
6986
  } | undefined;
6987
+ hmac?: string | undefined;
6897
6988
  };
6898
6989
  actionMetadata?: {
6899
6990
  chainId: number;
@@ -7020,18 +7111,29 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7020
7111
  explorerUrl?: string | undefined;
7021
7112
  usdValue?: string | undefined;
7022
7113
  }>>;
7114
+ /**
7115
+ * Server-issued integrity HMAC binding this transaction to the issuing
7116
+ * API. Optional on the wire shape so action providers can construct
7117
+ * transactions without knowing the secret; the orchestrator chokepoint
7118
+ * attaches it before responses leave the API, and sign / broadcast
7119
+ * endpoints reject any inbound request whose HMAC is missing or does
7120
+ * not match the canonical form.
7121
+ */
7122
+ hmac: z.ZodOptional<z.ZodString>;
7023
7123
  }, "strip", z.ZodTypeAny, {
7024
7124
  transaction: PrepareTransactionRequestReturnType;
7025
7125
  metadata?: {
7026
7126
  explorerUrl?: string | undefined;
7027
7127
  usdValue?: string | undefined;
7028
7128
  } | undefined;
7129
+ hmac?: string | undefined;
7029
7130
  }, {
7030
7131
  transaction: PrepareTransactionRequestReturnType;
7031
7132
  metadata?: {
7032
7133
  explorerUrl?: string | undefined;
7033
7134
  usdValue?: string | undefined;
7034
7135
  } | undefined;
7136
+ hmac?: string | undefined;
7035
7137
  }>, "many">;
7036
7138
  actionMetadata: z.ZodOptional<z.ZodDiscriminatedUnion<"action", [z.ZodObject<{
7037
7139
  action: z.ZodLiteral<"swap">;
@@ -7446,6 +7548,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7446
7548
  explorerUrl?: string | undefined;
7447
7549
  usdValue?: string | undefined;
7448
7550
  } | undefined;
7551
+ hmac?: string | undefined;
7449
7552
  }[];
7450
7553
  actionMetadata?: {
7451
7554
  chainId: number;
@@ -7566,6 +7669,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7566
7669
  explorerUrl?: string | undefined;
7567
7670
  usdValue?: string | undefined;
7568
7671
  } | undefined;
7672
+ hmac?: string | undefined;
7569
7673
  }[];
7570
7674
  actionMetadata?: {
7571
7675
  chainId: number;
@@ -7948,6 +8052,15 @@ export declare const PendingToolCallSchema: z.ZodObject<{
7948
8052
  blocked?: boolean | undefined;
7949
8053
  }>]>>;
7950
8054
  }, z.ZodUnknown, "strip">>>;
8055
+ /**
8056
+ * Server-issued integrity HMAC binding this signature request to the
8057
+ * issuing API. Optional on the wire shape so action providers can
8058
+ * construct requests without knowing the secret; the orchestrator
8059
+ * chokepoint attaches it before responses leave the API, and sign /
8060
+ * broadcast endpoints reject any inbound request whose HMAC is missing
8061
+ * or does not match the canonical form.
8062
+ */
8063
+ hmac: z.ZodOptional<z.ZodString>;
7951
8064
  } & {
7952
8065
  signMethod: z.ZodLiteral<"typedData">;
7953
8066
  /** EIP-712 typed data to be signed */
@@ -8083,6 +8196,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8083
8196
  blocked?: boolean | undefined;
8084
8197
  }>]>>;
8085
8198
  }, z.ZodUnknown, "strip"> | undefined;
8199
+ hmac?: string | undefined;
8086
8200
  }, {
8087
8201
  id: string;
8088
8202
  signerAddress: string;
@@ -8184,6 +8298,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8184
8298
  blocked?: boolean | undefined;
8185
8299
  }>]>>;
8186
8300
  }, z.ZodUnknown, "strip"> | undefined;
8301
+ hmac?: string | undefined;
8187
8302
  }>, z.ZodObject<{
8188
8303
  /** Unique identifier for this signature request */
8189
8304
  id: z.ZodString;
@@ -8451,6 +8566,15 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8451
8566
  blocked?: boolean | undefined;
8452
8567
  }>]>>;
8453
8568
  }, z.ZodUnknown, "strip">>>;
8569
+ /**
8570
+ * Server-issued integrity HMAC binding this signature request to the
8571
+ * issuing API. Optional on the wire shape so action providers can
8572
+ * construct requests without knowing the secret; the orchestrator
8573
+ * chokepoint attaches it before responses leave the API, and sign /
8574
+ * broadcast endpoints reject any inbound request whose HMAC is missing
8575
+ * or does not match the canonical form.
8576
+ */
8577
+ hmac: z.ZodOptional<z.ZodString>;
8454
8578
  } & {
8455
8579
  signMethod: z.ZodLiteral<"message">;
8456
8580
  /** Raw hash to be signed */
@@ -8548,6 +8672,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8548
8672
  blocked?: boolean | undefined;
8549
8673
  }>]>>;
8550
8674
  }, z.ZodUnknown, "strip"> | undefined;
8675
+ hmac?: string | undefined;
8551
8676
  }, {
8552
8677
  id: string;
8553
8678
  signerAddress: string;
@@ -8641,6 +8766,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8641
8766
  blocked?: boolean | undefined;
8642
8767
  }>]>>;
8643
8768
  }, z.ZodUnknown, "strip"> | undefined;
8769
+ hmac?: string | undefined;
8644
8770
  }>]>, "many">;
8645
8771
  }, "strip", z.ZodTypeAny, {
8646
8772
  signatureRequests: ({
@@ -8744,6 +8870,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8744
8870
  blocked?: boolean | undefined;
8745
8871
  }>]>>;
8746
8872
  }, z.ZodUnknown, "strip"> | undefined;
8873
+ hmac?: string | undefined;
8747
8874
  } | {
8748
8875
  id: string;
8749
8876
  signerAddress: string;
@@ -8837,6 +8964,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8837
8964
  blocked?: boolean | undefined;
8838
8965
  }>]>>;
8839
8966
  }, z.ZodUnknown, "strip"> | undefined;
8967
+ hmac?: string | undefined;
8840
8968
  })[];
8841
8969
  }, {
8842
8970
  signatureRequests: ({
@@ -8940,6 +9068,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
8940
9068
  blocked?: boolean | undefined;
8941
9069
  }>]>>;
8942
9070
  }, z.ZodUnknown, "strip"> | undefined;
9071
+ hmac?: string | undefined;
8943
9072
  } | {
8944
9073
  id: string;
8945
9074
  signerAddress: string;
@@ -9033,6 +9162,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
9033
9162
  blocked?: boolean | undefined;
9034
9163
  }>]>>;
9035
9164
  }, z.ZodUnknown, "strip"> | undefined;
9165
+ hmac?: string | undefined;
9036
9166
  })[];
9037
9167
  }>;
9038
9168
  actionMetadata: z.ZodOptional<z.ZodDiscriminatedUnion<"action", [z.ZodObject<{
@@ -9544,6 +9674,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
9544
9674
  blocked?: boolean | undefined;
9545
9675
  }>]>>;
9546
9676
  }, z.ZodUnknown, "strip"> | undefined;
9677
+ hmac?: string | undefined;
9547
9678
  } | {
9548
9679
  id: string;
9549
9680
  signerAddress: string;
@@ -9637,6 +9768,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
9637
9768
  blocked?: boolean | undefined;
9638
9769
  }>]>>;
9639
9770
  }, z.ZodUnknown, "strip"> | undefined;
9771
+ hmac?: string | undefined;
9640
9772
  })[];
9641
9773
  };
9642
9774
  actionMetadata?: {
@@ -9854,6 +9986,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
9854
9986
  blocked?: boolean | undefined;
9855
9987
  }>]>>;
9856
9988
  }, z.ZodUnknown, "strip"> | undefined;
9989
+ hmac?: string | undefined;
9857
9990
  } | {
9858
9991
  id: string;
9859
9992
  signerAddress: string;
@@ -9947,6 +10080,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
9947
10080
  blocked?: boolean | undefined;
9948
10081
  }>]>>;
9949
10082
  }, z.ZodUnknown, "strip"> | undefined;
10083
+ hmac?: string | undefined;
9950
10084
  })[];
9951
10085
  };
9952
10086
  actionMetadata?: {
@@ -10476,6 +10610,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
10476
10610
  explorerUrl?: string | undefined;
10477
10611
  usdValue?: string | undefined;
10478
10612
  } | undefined;
10613
+ hmac?: string | undefined;
10479
10614
  }[];
10480
10615
  actionMetadata?: {
10481
10616
  chainId: number;
@@ -10596,6 +10731,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
10596
10731
  explorerUrl?: string | undefined;
10597
10732
  usdValue?: string | undefined;
10598
10733
  } | undefined;
10734
+ hmac?: string | undefined;
10599
10735
  };
10600
10736
  actionMetadata?: {
10601
10737
  chainId: number;
@@ -10812,6 +10948,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
10812
10948
  blocked?: boolean | undefined;
10813
10949
  }>]>>;
10814
10950
  }, z.ZodUnknown, "strip"> | undefined;
10951
+ hmac?: string | undefined;
10815
10952
  } | {
10816
10953
  id: string;
10817
10954
  signerAddress: string;
@@ -10905,6 +11042,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
10905
11042
  blocked?: boolean | undefined;
10906
11043
  }>]>>;
10907
11044
  }, z.ZodUnknown, "strip"> | undefined;
11045
+ hmac?: string | undefined;
10908
11046
  })[];
10909
11047
  };
10910
11048
  actionMetadata?: {
@@ -11140,6 +11278,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
11140
11278
  explorerUrl?: string | undefined;
11141
11279
  usdValue?: string | undefined;
11142
11280
  } | undefined;
11281
+ hmac?: string | undefined;
11143
11282
  }[];
11144
11283
  actionMetadata?: {
11145
11284
  chainId: number;
@@ -11260,6 +11399,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
11260
11399
  explorerUrl?: string | undefined;
11261
11400
  usdValue?: string | undefined;
11262
11401
  } | undefined;
11402
+ hmac?: string | undefined;
11263
11403
  };
11264
11404
  actionMetadata?: {
11265
11405
  chainId: number;
@@ -11476,6 +11616,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
11476
11616
  blocked?: boolean | undefined;
11477
11617
  }>]>>;
11478
11618
  }, z.ZodUnknown, "strip"> | undefined;
11619
+ hmac?: string | undefined;
11479
11620
  } | {
11480
11621
  id: string;
11481
11622
  signerAddress: string;
@@ -11569,6 +11710,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
11569
11710
  blocked?: boolean | undefined;
11570
11711
  }>]>>;
11571
11712
  }, z.ZodUnknown, "strip"> | undefined;
11713
+ hmac?: string | undefined;
11572
11714
  })[];
11573
11715
  };
11574
11716
  actionMetadata?: {
@@ -12227,6 +12369,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
12227
12369
  explorerUrl?: string | undefined;
12228
12370
  usdValue?: string | undefined;
12229
12371
  } | undefined;
12372
+ hmac?: string | undefined;
12230
12373
  }[];
12231
12374
  actionMetadata?: {
12232
12375
  chainId: number;
@@ -12347,6 +12490,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
12347
12490
  explorerUrl?: string | undefined;
12348
12491
  usdValue?: string | undefined;
12349
12492
  } | undefined;
12493
+ hmac?: string | undefined;
12350
12494
  };
12351
12495
  actionMetadata?: {
12352
12496
  chainId: number;
@@ -12563,6 +12707,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
12563
12707
  blocked?: boolean | undefined;
12564
12708
  }>]>>;
12565
12709
  }, z.ZodUnknown, "strip"> | undefined;
12710
+ hmac?: string | undefined;
12566
12711
  } | {
12567
12712
  id: string;
12568
12713
  signerAddress: string;
@@ -12656,6 +12801,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
12656
12801
  blocked?: boolean | undefined;
12657
12802
  }>]>>;
12658
12803
  }, z.ZodUnknown, "strip"> | undefined;
12804
+ hmac?: string | undefined;
12659
12805
  })[];
12660
12806
  };
12661
12807
  actionMetadata?: {
@@ -12779,6 +12925,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
12779
12925
  explorerUrl?: string | undefined;
12780
12926
  usdValue?: string | undefined;
12781
12927
  } | undefined;
12928
+ hmac?: string | undefined;
12782
12929
  }[];
12783
12930
  actionMetadata?: {
12784
12931
  chainId: number;
@@ -12899,6 +13046,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
12899
13046
  explorerUrl?: string | undefined;
12900
13047
  usdValue?: string | undefined;
12901
13048
  } | undefined;
13049
+ hmac?: string | undefined;
12902
13050
  };
12903
13051
  actionMetadata?: {
12904
13052
  chainId: number;
@@ -13115,6 +13263,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
13115
13263
  blocked?: boolean | undefined;
13116
13264
  }>]>>;
13117
13265
  }, z.ZodUnknown, "strip"> | undefined;
13266
+ hmac?: string | undefined;
13118
13267
  } | {
13119
13268
  id: string;
13120
13269
  signerAddress: string;
@@ -13208,6 +13357,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
13208
13357
  blocked?: boolean | undefined;
13209
13358
  }>]>>;
13210
13359
  }, z.ZodUnknown, "strip"> | undefined;
13360
+ hmac?: string | undefined;
13211
13361
  })[];
13212
13362
  };
13213
13363
  actionMetadata?: {
@@ -13516,6 +13666,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
13516
13666
  explorerUrl?: string | undefined;
13517
13667
  usdValue?: string | undefined;
13518
13668
  } | undefined;
13669
+ hmac?: string | undefined;
13519
13670
  }[];
13520
13671
  actionMetadata?: {
13521
13672
  chainId: number;
@@ -13636,6 +13787,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
13636
13787
  explorerUrl?: string | undefined;
13637
13788
  usdValue?: string | undefined;
13638
13789
  } | undefined;
13790
+ hmac?: string | undefined;
13639
13791
  };
13640
13792
  actionMetadata?: {
13641
13793
  chainId: number;
@@ -13852,6 +14004,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
13852
14004
  blocked?: boolean | undefined;
13853
14005
  }>]>>;
13854
14006
  }, z.ZodUnknown, "strip"> | undefined;
14007
+ hmac?: string | undefined;
13855
14008
  } | {
13856
14009
  id: string;
13857
14010
  signerAddress: string;
@@ -13945,6 +14098,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
13945
14098
  blocked?: boolean | undefined;
13946
14099
  }>]>>;
13947
14100
  }, z.ZodUnknown, "strip"> | undefined;
14101
+ hmac?: string | undefined;
13948
14102
  })[];
13949
14103
  };
13950
14104
  actionMetadata?: {
@@ -14068,6 +14222,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
14068
14222
  explorerUrl?: string | undefined;
14069
14223
  usdValue?: string | undefined;
14070
14224
  } | undefined;
14225
+ hmac?: string | undefined;
14071
14226
  }[];
14072
14227
  actionMetadata?: {
14073
14228
  chainId: number;
@@ -14188,6 +14343,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
14188
14343
  explorerUrl?: string | undefined;
14189
14344
  usdValue?: string | undefined;
14190
14345
  } | undefined;
14346
+ hmac?: string | undefined;
14191
14347
  };
14192
14348
  actionMetadata?: {
14193
14349
  chainId: number;
@@ -14404,6 +14560,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
14404
14560
  blocked?: boolean | undefined;
14405
14561
  }>]>>;
14406
14562
  }, z.ZodUnknown, "strip"> | undefined;
14563
+ hmac?: string | undefined;
14407
14564
  } | {
14408
14565
  id: string;
14409
14566
  signerAddress: string;
@@ -14497,6 +14654,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
14497
14654
  blocked?: boolean | undefined;
14498
14655
  }>]>>;
14499
14656
  }, z.ZodUnknown, "strip"> | undefined;
14657
+ hmac?: string | undefined;
14500
14658
  })[];
14501
14659
  };
14502
14660
  actionMetadata?: {