@fuul/mcp-server 1.3.0 → 1.5.0

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.
@@ -581,6 +581,8 @@ export declare const getProjectAffiliatesBreakdownSchema: z.ZodObject<{
581
581
  sortOrder?: "asc" | "desc" | undefined;
582
582
  }>;
583
583
  export type GetProjectAffiliatesBreakdownInput = z.infer<typeof getProjectAffiliatesBreakdownSchema>;
584
+ /** Matches CreateOrUpdateUserReferrerDto / DeleteReferralQueryDto IdentifierType on fuul-server. */
585
+ export declare const identifierTypeForReferrerSchema: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
584
586
  export declare const projectApiKeyBearerFieldsSchema: z.ZodObject<{
585
587
  project_api_key: z.ZodOptional<z.ZodString>;
586
588
  }, "strip", z.ZodTypeAny, {
@@ -1048,21 +1050,426 @@ export declare const sendEventPayloadSchema: z.ZodObject<{
1048
1050
  dedup_id: z.ZodString;
1049
1051
  user_identifier: z.ZodString;
1050
1052
  user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email"]>;
1051
- args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
1053
+ args: z.ZodOptional<z.ZodObject<{
1054
+ value: z.ZodOptional<z.ZodObject<{
1055
+ amount: z.ZodString;
1056
+ currency: z.ZodUnion<[z.ZodObject<{
1057
+ name: z.ZodString;
1058
+ }, "strip", z.ZodTypeAny, {
1059
+ name: string;
1060
+ }, {
1061
+ name: string;
1062
+ }>, z.ZodObject<{
1063
+ identifier: z.ZodString;
1064
+ identifier_type: z.ZodString;
1065
+ chain_identifier: z.ZodString;
1066
+ }, "strip", z.ZodTypeAny, {
1067
+ identifier: string;
1068
+ identifier_type: string;
1069
+ chain_identifier: string;
1070
+ }, {
1071
+ identifier: string;
1072
+ identifier_type: string;
1073
+ chain_identifier: string;
1074
+ }>]>;
1075
+ }, "strip", z.ZodTypeAny, {
1076
+ amount: string;
1077
+ currency: {
1078
+ name: string;
1079
+ } | {
1080
+ identifier: string;
1081
+ identifier_type: string;
1082
+ chain_identifier: string;
1083
+ };
1084
+ }, {
1085
+ amount: string;
1086
+ currency: {
1087
+ name: string;
1088
+ } | {
1089
+ identifier: string;
1090
+ identifier_type: string;
1091
+ chain_identifier: string;
1092
+ };
1093
+ }>>;
1094
+ revenue: z.ZodOptional<z.ZodObject<{
1095
+ amount: z.ZodString;
1096
+ currency: z.ZodUnion<[z.ZodObject<{
1097
+ name: z.ZodString;
1098
+ }, "strip", z.ZodTypeAny, {
1099
+ name: string;
1100
+ }, {
1101
+ name: string;
1102
+ }>, z.ZodObject<{
1103
+ identifier: z.ZodString;
1104
+ identifier_type: z.ZodString;
1105
+ chain_identifier: z.ZodString;
1106
+ }, "strip", z.ZodTypeAny, {
1107
+ identifier: string;
1108
+ identifier_type: string;
1109
+ chain_identifier: string;
1110
+ }, {
1111
+ identifier: string;
1112
+ identifier_type: string;
1113
+ chain_identifier: string;
1114
+ }>]>;
1115
+ }, "strip", z.ZodTypeAny, {
1116
+ amount: string;
1117
+ currency: {
1118
+ name: string;
1119
+ } | {
1120
+ identifier: string;
1121
+ identifier_type: string;
1122
+ chain_identifier: string;
1123
+ };
1124
+ }, {
1125
+ amount: string;
1126
+ currency: {
1127
+ name: string;
1128
+ } | {
1129
+ identifier: string;
1130
+ identifier_type: string;
1131
+ chain_identifier: string;
1132
+ };
1133
+ }>>;
1134
+ }, "strip", z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, z.objectOutputType<{
1135
+ value: z.ZodOptional<z.ZodObject<{
1136
+ amount: z.ZodString;
1137
+ currency: z.ZodUnion<[z.ZodObject<{
1138
+ name: z.ZodString;
1139
+ }, "strip", z.ZodTypeAny, {
1140
+ name: string;
1141
+ }, {
1142
+ name: string;
1143
+ }>, z.ZodObject<{
1144
+ identifier: z.ZodString;
1145
+ identifier_type: z.ZodString;
1146
+ chain_identifier: z.ZodString;
1147
+ }, "strip", z.ZodTypeAny, {
1148
+ identifier: string;
1149
+ identifier_type: string;
1150
+ chain_identifier: string;
1151
+ }, {
1152
+ identifier: string;
1153
+ identifier_type: string;
1154
+ chain_identifier: string;
1155
+ }>]>;
1156
+ }, "strip", z.ZodTypeAny, {
1157
+ amount: string;
1158
+ currency: {
1159
+ name: string;
1160
+ } | {
1161
+ identifier: string;
1162
+ identifier_type: string;
1163
+ chain_identifier: string;
1164
+ };
1165
+ }, {
1166
+ amount: string;
1167
+ currency: {
1168
+ name: string;
1169
+ } | {
1170
+ identifier: string;
1171
+ identifier_type: string;
1172
+ chain_identifier: string;
1173
+ };
1174
+ }>>;
1175
+ revenue: z.ZodOptional<z.ZodObject<{
1176
+ amount: z.ZodString;
1177
+ currency: z.ZodUnion<[z.ZodObject<{
1178
+ name: z.ZodString;
1179
+ }, "strip", z.ZodTypeAny, {
1180
+ name: string;
1181
+ }, {
1182
+ name: string;
1183
+ }>, z.ZodObject<{
1184
+ identifier: z.ZodString;
1185
+ identifier_type: z.ZodString;
1186
+ chain_identifier: z.ZodString;
1187
+ }, "strip", z.ZodTypeAny, {
1188
+ identifier: string;
1189
+ identifier_type: string;
1190
+ chain_identifier: string;
1191
+ }, {
1192
+ identifier: string;
1193
+ identifier_type: string;
1194
+ chain_identifier: string;
1195
+ }>]>;
1196
+ }, "strip", z.ZodTypeAny, {
1197
+ amount: string;
1198
+ currency: {
1199
+ name: string;
1200
+ } | {
1201
+ identifier: string;
1202
+ identifier_type: string;
1203
+ chain_identifier: string;
1204
+ };
1205
+ }, {
1206
+ amount: string;
1207
+ currency: {
1208
+ name: string;
1209
+ } | {
1210
+ identifier: string;
1211
+ identifier_type: string;
1212
+ chain_identifier: string;
1213
+ };
1214
+ }>>;
1215
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">, z.objectInputType<{
1216
+ value: z.ZodOptional<z.ZodObject<{
1217
+ amount: z.ZodString;
1218
+ currency: z.ZodUnion<[z.ZodObject<{
1219
+ name: z.ZodString;
1220
+ }, "strip", z.ZodTypeAny, {
1221
+ name: string;
1222
+ }, {
1223
+ name: string;
1224
+ }>, z.ZodObject<{
1225
+ identifier: z.ZodString;
1226
+ identifier_type: z.ZodString;
1227
+ chain_identifier: z.ZodString;
1228
+ }, "strip", z.ZodTypeAny, {
1229
+ identifier: string;
1230
+ identifier_type: string;
1231
+ chain_identifier: string;
1232
+ }, {
1233
+ identifier: string;
1234
+ identifier_type: string;
1235
+ chain_identifier: string;
1236
+ }>]>;
1237
+ }, "strip", z.ZodTypeAny, {
1238
+ amount: string;
1239
+ currency: {
1240
+ name: string;
1241
+ } | {
1242
+ identifier: string;
1243
+ identifier_type: string;
1244
+ chain_identifier: string;
1245
+ };
1246
+ }, {
1247
+ amount: string;
1248
+ currency: {
1249
+ name: string;
1250
+ } | {
1251
+ identifier: string;
1252
+ identifier_type: string;
1253
+ chain_identifier: string;
1254
+ };
1255
+ }>>;
1256
+ revenue: z.ZodOptional<z.ZodObject<{
1257
+ amount: z.ZodString;
1258
+ currency: z.ZodUnion<[z.ZodObject<{
1259
+ name: z.ZodString;
1260
+ }, "strip", z.ZodTypeAny, {
1261
+ name: string;
1262
+ }, {
1263
+ name: string;
1264
+ }>, z.ZodObject<{
1265
+ identifier: z.ZodString;
1266
+ identifier_type: z.ZodString;
1267
+ chain_identifier: z.ZodString;
1268
+ }, "strip", z.ZodTypeAny, {
1269
+ identifier: string;
1270
+ identifier_type: string;
1271
+ chain_identifier: string;
1272
+ }, {
1273
+ identifier: string;
1274
+ identifier_type: string;
1275
+ chain_identifier: string;
1276
+ }>]>;
1277
+ }, "strip", z.ZodTypeAny, {
1278
+ amount: string;
1279
+ currency: {
1280
+ name: string;
1281
+ } | {
1282
+ identifier: string;
1283
+ identifier_type: string;
1284
+ chain_identifier: string;
1285
+ };
1286
+ }, {
1287
+ amount: string;
1288
+ currency: {
1289
+ name: string;
1290
+ } | {
1291
+ identifier: string;
1292
+ identifier_type: string;
1293
+ chain_identifier: string;
1294
+ };
1295
+ }>>;
1296
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">>>;
1052
1297
  timestamp: z.ZodOptional<z.ZodNumber>;
1053
1298
  }, "strip", z.ZodTypeAny, {
1054
1299
  name: string;
1055
1300
  user_identifier: string;
1056
1301
  user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1057
1302
  dedup_id: string;
1058
- args?: Record<string, string | number | boolean> | undefined;
1303
+ args?: z.objectOutputType<{
1304
+ value: z.ZodOptional<z.ZodObject<{
1305
+ amount: z.ZodString;
1306
+ currency: z.ZodUnion<[z.ZodObject<{
1307
+ name: z.ZodString;
1308
+ }, "strip", z.ZodTypeAny, {
1309
+ name: string;
1310
+ }, {
1311
+ name: string;
1312
+ }>, z.ZodObject<{
1313
+ identifier: z.ZodString;
1314
+ identifier_type: z.ZodString;
1315
+ chain_identifier: z.ZodString;
1316
+ }, "strip", z.ZodTypeAny, {
1317
+ identifier: string;
1318
+ identifier_type: string;
1319
+ chain_identifier: string;
1320
+ }, {
1321
+ identifier: string;
1322
+ identifier_type: string;
1323
+ chain_identifier: string;
1324
+ }>]>;
1325
+ }, "strip", z.ZodTypeAny, {
1326
+ amount: string;
1327
+ currency: {
1328
+ name: string;
1329
+ } | {
1330
+ identifier: string;
1331
+ identifier_type: string;
1332
+ chain_identifier: string;
1333
+ };
1334
+ }, {
1335
+ amount: string;
1336
+ currency: {
1337
+ name: string;
1338
+ } | {
1339
+ identifier: string;
1340
+ identifier_type: string;
1341
+ chain_identifier: string;
1342
+ };
1343
+ }>>;
1344
+ revenue: z.ZodOptional<z.ZodObject<{
1345
+ amount: z.ZodString;
1346
+ currency: z.ZodUnion<[z.ZodObject<{
1347
+ name: z.ZodString;
1348
+ }, "strip", z.ZodTypeAny, {
1349
+ name: string;
1350
+ }, {
1351
+ name: string;
1352
+ }>, z.ZodObject<{
1353
+ identifier: z.ZodString;
1354
+ identifier_type: z.ZodString;
1355
+ chain_identifier: z.ZodString;
1356
+ }, "strip", z.ZodTypeAny, {
1357
+ identifier: string;
1358
+ identifier_type: string;
1359
+ chain_identifier: string;
1360
+ }, {
1361
+ identifier: string;
1362
+ identifier_type: string;
1363
+ chain_identifier: string;
1364
+ }>]>;
1365
+ }, "strip", z.ZodTypeAny, {
1366
+ amount: string;
1367
+ currency: {
1368
+ name: string;
1369
+ } | {
1370
+ identifier: string;
1371
+ identifier_type: string;
1372
+ chain_identifier: string;
1373
+ };
1374
+ }, {
1375
+ amount: string;
1376
+ currency: {
1377
+ name: string;
1378
+ } | {
1379
+ identifier: string;
1380
+ identifier_type: string;
1381
+ chain_identifier: string;
1382
+ };
1383
+ }>>;
1384
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1059
1385
  timestamp?: number | undefined;
1060
1386
  }, {
1061
1387
  name: string;
1062
1388
  user_identifier: string;
1063
1389
  user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1064
1390
  dedup_id: string;
1065
- args?: Record<string, string | number | boolean> | undefined;
1391
+ args?: z.objectInputType<{
1392
+ value: z.ZodOptional<z.ZodObject<{
1393
+ amount: z.ZodString;
1394
+ currency: z.ZodUnion<[z.ZodObject<{
1395
+ name: z.ZodString;
1396
+ }, "strip", z.ZodTypeAny, {
1397
+ name: string;
1398
+ }, {
1399
+ name: string;
1400
+ }>, z.ZodObject<{
1401
+ identifier: z.ZodString;
1402
+ identifier_type: z.ZodString;
1403
+ chain_identifier: z.ZodString;
1404
+ }, "strip", z.ZodTypeAny, {
1405
+ identifier: string;
1406
+ identifier_type: string;
1407
+ chain_identifier: string;
1408
+ }, {
1409
+ identifier: string;
1410
+ identifier_type: string;
1411
+ chain_identifier: string;
1412
+ }>]>;
1413
+ }, "strip", z.ZodTypeAny, {
1414
+ amount: string;
1415
+ currency: {
1416
+ name: string;
1417
+ } | {
1418
+ identifier: string;
1419
+ identifier_type: string;
1420
+ chain_identifier: string;
1421
+ };
1422
+ }, {
1423
+ amount: string;
1424
+ currency: {
1425
+ name: string;
1426
+ } | {
1427
+ identifier: string;
1428
+ identifier_type: string;
1429
+ chain_identifier: string;
1430
+ };
1431
+ }>>;
1432
+ revenue: z.ZodOptional<z.ZodObject<{
1433
+ amount: z.ZodString;
1434
+ currency: z.ZodUnion<[z.ZodObject<{
1435
+ name: z.ZodString;
1436
+ }, "strip", z.ZodTypeAny, {
1437
+ name: string;
1438
+ }, {
1439
+ name: string;
1440
+ }>, z.ZodObject<{
1441
+ identifier: z.ZodString;
1442
+ identifier_type: z.ZodString;
1443
+ chain_identifier: z.ZodString;
1444
+ }, "strip", z.ZodTypeAny, {
1445
+ identifier: string;
1446
+ identifier_type: string;
1447
+ chain_identifier: string;
1448
+ }, {
1449
+ identifier: string;
1450
+ identifier_type: string;
1451
+ chain_identifier: string;
1452
+ }>]>;
1453
+ }, "strip", z.ZodTypeAny, {
1454
+ amount: string;
1455
+ currency: {
1456
+ name: string;
1457
+ } | {
1458
+ identifier: string;
1459
+ identifier_type: string;
1460
+ chain_identifier: string;
1461
+ };
1462
+ }, {
1463
+ amount: string;
1464
+ currency: {
1465
+ name: string;
1466
+ } | {
1467
+ identifier: string;
1468
+ identifier_type: string;
1469
+ chain_identifier: string;
1470
+ };
1471
+ }>>;
1472
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1066
1473
  timestamp?: number | undefined;
1067
1474
  }>;
1068
1475
  export type SendEventPayload = z.infer<typeof sendEventPayloadSchema>;
@@ -1076,7 +1483,250 @@ export declare const sendEventFieldsSchema: z.ZodObject<{
1076
1483
  dedup_id: z.ZodString;
1077
1484
  user_identifier: z.ZodString;
1078
1485
  user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email"]>;
1079
- args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
1486
+ args: z.ZodOptional<z.ZodObject<{
1487
+ value: z.ZodOptional<z.ZodObject<{
1488
+ amount: z.ZodString;
1489
+ currency: z.ZodUnion<[z.ZodObject<{
1490
+ name: z.ZodString;
1491
+ }, "strip", z.ZodTypeAny, {
1492
+ name: string;
1493
+ }, {
1494
+ name: string;
1495
+ }>, z.ZodObject<{
1496
+ identifier: z.ZodString;
1497
+ identifier_type: z.ZodString;
1498
+ chain_identifier: z.ZodString;
1499
+ }, "strip", z.ZodTypeAny, {
1500
+ identifier: string;
1501
+ identifier_type: string;
1502
+ chain_identifier: string;
1503
+ }, {
1504
+ identifier: string;
1505
+ identifier_type: string;
1506
+ chain_identifier: string;
1507
+ }>]>;
1508
+ }, "strip", z.ZodTypeAny, {
1509
+ amount: string;
1510
+ currency: {
1511
+ name: string;
1512
+ } | {
1513
+ identifier: string;
1514
+ identifier_type: string;
1515
+ chain_identifier: string;
1516
+ };
1517
+ }, {
1518
+ amount: string;
1519
+ currency: {
1520
+ name: string;
1521
+ } | {
1522
+ identifier: string;
1523
+ identifier_type: string;
1524
+ chain_identifier: string;
1525
+ };
1526
+ }>>;
1527
+ revenue: z.ZodOptional<z.ZodObject<{
1528
+ amount: z.ZodString;
1529
+ currency: z.ZodUnion<[z.ZodObject<{
1530
+ name: z.ZodString;
1531
+ }, "strip", z.ZodTypeAny, {
1532
+ name: string;
1533
+ }, {
1534
+ name: string;
1535
+ }>, z.ZodObject<{
1536
+ identifier: z.ZodString;
1537
+ identifier_type: z.ZodString;
1538
+ chain_identifier: z.ZodString;
1539
+ }, "strip", z.ZodTypeAny, {
1540
+ identifier: string;
1541
+ identifier_type: string;
1542
+ chain_identifier: string;
1543
+ }, {
1544
+ identifier: string;
1545
+ identifier_type: string;
1546
+ chain_identifier: string;
1547
+ }>]>;
1548
+ }, "strip", z.ZodTypeAny, {
1549
+ amount: string;
1550
+ currency: {
1551
+ name: string;
1552
+ } | {
1553
+ identifier: string;
1554
+ identifier_type: string;
1555
+ chain_identifier: string;
1556
+ };
1557
+ }, {
1558
+ amount: string;
1559
+ currency: {
1560
+ name: string;
1561
+ } | {
1562
+ identifier: string;
1563
+ identifier_type: string;
1564
+ chain_identifier: string;
1565
+ };
1566
+ }>>;
1567
+ }, "strip", z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, z.objectOutputType<{
1568
+ value: z.ZodOptional<z.ZodObject<{
1569
+ amount: z.ZodString;
1570
+ currency: z.ZodUnion<[z.ZodObject<{
1571
+ name: z.ZodString;
1572
+ }, "strip", z.ZodTypeAny, {
1573
+ name: string;
1574
+ }, {
1575
+ name: string;
1576
+ }>, z.ZodObject<{
1577
+ identifier: z.ZodString;
1578
+ identifier_type: z.ZodString;
1579
+ chain_identifier: z.ZodString;
1580
+ }, "strip", z.ZodTypeAny, {
1581
+ identifier: string;
1582
+ identifier_type: string;
1583
+ chain_identifier: string;
1584
+ }, {
1585
+ identifier: string;
1586
+ identifier_type: string;
1587
+ chain_identifier: string;
1588
+ }>]>;
1589
+ }, "strip", z.ZodTypeAny, {
1590
+ amount: string;
1591
+ currency: {
1592
+ name: string;
1593
+ } | {
1594
+ identifier: string;
1595
+ identifier_type: string;
1596
+ chain_identifier: string;
1597
+ };
1598
+ }, {
1599
+ amount: string;
1600
+ currency: {
1601
+ name: string;
1602
+ } | {
1603
+ identifier: string;
1604
+ identifier_type: string;
1605
+ chain_identifier: string;
1606
+ };
1607
+ }>>;
1608
+ revenue: z.ZodOptional<z.ZodObject<{
1609
+ amount: z.ZodString;
1610
+ currency: z.ZodUnion<[z.ZodObject<{
1611
+ name: z.ZodString;
1612
+ }, "strip", z.ZodTypeAny, {
1613
+ name: string;
1614
+ }, {
1615
+ name: string;
1616
+ }>, z.ZodObject<{
1617
+ identifier: z.ZodString;
1618
+ identifier_type: z.ZodString;
1619
+ chain_identifier: z.ZodString;
1620
+ }, "strip", z.ZodTypeAny, {
1621
+ identifier: string;
1622
+ identifier_type: string;
1623
+ chain_identifier: string;
1624
+ }, {
1625
+ identifier: string;
1626
+ identifier_type: string;
1627
+ chain_identifier: string;
1628
+ }>]>;
1629
+ }, "strip", z.ZodTypeAny, {
1630
+ amount: string;
1631
+ currency: {
1632
+ name: string;
1633
+ } | {
1634
+ identifier: string;
1635
+ identifier_type: string;
1636
+ chain_identifier: string;
1637
+ };
1638
+ }, {
1639
+ amount: string;
1640
+ currency: {
1641
+ name: string;
1642
+ } | {
1643
+ identifier: string;
1644
+ identifier_type: string;
1645
+ chain_identifier: string;
1646
+ };
1647
+ }>>;
1648
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">, z.objectInputType<{
1649
+ value: z.ZodOptional<z.ZodObject<{
1650
+ amount: z.ZodString;
1651
+ currency: z.ZodUnion<[z.ZodObject<{
1652
+ name: z.ZodString;
1653
+ }, "strip", z.ZodTypeAny, {
1654
+ name: string;
1655
+ }, {
1656
+ name: string;
1657
+ }>, z.ZodObject<{
1658
+ identifier: z.ZodString;
1659
+ identifier_type: z.ZodString;
1660
+ chain_identifier: z.ZodString;
1661
+ }, "strip", z.ZodTypeAny, {
1662
+ identifier: string;
1663
+ identifier_type: string;
1664
+ chain_identifier: string;
1665
+ }, {
1666
+ identifier: string;
1667
+ identifier_type: string;
1668
+ chain_identifier: string;
1669
+ }>]>;
1670
+ }, "strip", z.ZodTypeAny, {
1671
+ amount: string;
1672
+ currency: {
1673
+ name: string;
1674
+ } | {
1675
+ identifier: string;
1676
+ identifier_type: string;
1677
+ chain_identifier: string;
1678
+ };
1679
+ }, {
1680
+ amount: string;
1681
+ currency: {
1682
+ name: string;
1683
+ } | {
1684
+ identifier: string;
1685
+ identifier_type: string;
1686
+ chain_identifier: string;
1687
+ };
1688
+ }>>;
1689
+ revenue: z.ZodOptional<z.ZodObject<{
1690
+ amount: z.ZodString;
1691
+ currency: z.ZodUnion<[z.ZodObject<{
1692
+ name: z.ZodString;
1693
+ }, "strip", z.ZodTypeAny, {
1694
+ name: string;
1695
+ }, {
1696
+ name: string;
1697
+ }>, z.ZodObject<{
1698
+ identifier: z.ZodString;
1699
+ identifier_type: z.ZodString;
1700
+ chain_identifier: z.ZodString;
1701
+ }, "strip", z.ZodTypeAny, {
1702
+ identifier: string;
1703
+ identifier_type: string;
1704
+ chain_identifier: string;
1705
+ }, {
1706
+ identifier: string;
1707
+ identifier_type: string;
1708
+ chain_identifier: string;
1709
+ }>]>;
1710
+ }, "strip", z.ZodTypeAny, {
1711
+ amount: string;
1712
+ currency: {
1713
+ name: string;
1714
+ } | {
1715
+ identifier: string;
1716
+ identifier_type: string;
1717
+ chain_identifier: string;
1718
+ };
1719
+ }, {
1720
+ amount: string;
1721
+ currency: {
1722
+ name: string;
1723
+ } | {
1724
+ identifier: string;
1725
+ identifier_type: string;
1726
+ chain_identifier: string;
1727
+ };
1728
+ }>>;
1729
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">>>;
1080
1730
  timestamp: z.ZodOptional<z.ZodNumber>;
1081
1731
  }, "strip", z.ZodTypeAny, {
1082
1732
  name: string;
@@ -1086,7 +1736,88 @@ export declare const sendEventFieldsSchema: z.ZodObject<{
1086
1736
  dry_run?: boolean | undefined;
1087
1737
  confirmed?: boolean | undefined;
1088
1738
  project_api_key?: string | undefined;
1089
- args?: Record<string, string | number | boolean> | undefined;
1739
+ args?: z.objectOutputType<{
1740
+ value: z.ZodOptional<z.ZodObject<{
1741
+ amount: z.ZodString;
1742
+ currency: z.ZodUnion<[z.ZodObject<{
1743
+ name: z.ZodString;
1744
+ }, "strip", z.ZodTypeAny, {
1745
+ name: string;
1746
+ }, {
1747
+ name: string;
1748
+ }>, z.ZodObject<{
1749
+ identifier: z.ZodString;
1750
+ identifier_type: z.ZodString;
1751
+ chain_identifier: z.ZodString;
1752
+ }, "strip", z.ZodTypeAny, {
1753
+ identifier: string;
1754
+ identifier_type: string;
1755
+ chain_identifier: string;
1756
+ }, {
1757
+ identifier: string;
1758
+ identifier_type: string;
1759
+ chain_identifier: string;
1760
+ }>]>;
1761
+ }, "strip", z.ZodTypeAny, {
1762
+ amount: string;
1763
+ currency: {
1764
+ name: string;
1765
+ } | {
1766
+ identifier: string;
1767
+ identifier_type: string;
1768
+ chain_identifier: string;
1769
+ };
1770
+ }, {
1771
+ amount: string;
1772
+ currency: {
1773
+ name: string;
1774
+ } | {
1775
+ identifier: string;
1776
+ identifier_type: string;
1777
+ chain_identifier: string;
1778
+ };
1779
+ }>>;
1780
+ revenue: z.ZodOptional<z.ZodObject<{
1781
+ amount: z.ZodString;
1782
+ currency: z.ZodUnion<[z.ZodObject<{
1783
+ name: z.ZodString;
1784
+ }, "strip", z.ZodTypeAny, {
1785
+ name: string;
1786
+ }, {
1787
+ name: string;
1788
+ }>, z.ZodObject<{
1789
+ identifier: z.ZodString;
1790
+ identifier_type: z.ZodString;
1791
+ chain_identifier: z.ZodString;
1792
+ }, "strip", z.ZodTypeAny, {
1793
+ identifier: string;
1794
+ identifier_type: string;
1795
+ chain_identifier: string;
1796
+ }, {
1797
+ identifier: string;
1798
+ identifier_type: string;
1799
+ chain_identifier: string;
1800
+ }>]>;
1801
+ }, "strip", z.ZodTypeAny, {
1802
+ amount: string;
1803
+ currency: {
1804
+ name: string;
1805
+ } | {
1806
+ identifier: string;
1807
+ identifier_type: string;
1808
+ chain_identifier: string;
1809
+ };
1810
+ }, {
1811
+ amount: string;
1812
+ currency: {
1813
+ name: string;
1814
+ } | {
1815
+ identifier: string;
1816
+ identifier_type: string;
1817
+ chain_identifier: string;
1818
+ };
1819
+ }>>;
1820
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1090
1821
  timestamp?: number | undefined;
1091
1822
  }, {
1092
1823
  name: string;
@@ -1096,7 +1827,88 @@ export declare const sendEventFieldsSchema: z.ZodObject<{
1096
1827
  dry_run?: boolean | undefined;
1097
1828
  confirmed?: boolean | undefined;
1098
1829
  project_api_key?: string | undefined;
1099
- args?: Record<string, string | number | boolean> | undefined;
1830
+ args?: z.objectInputType<{
1831
+ value: z.ZodOptional<z.ZodObject<{
1832
+ amount: z.ZodString;
1833
+ currency: z.ZodUnion<[z.ZodObject<{
1834
+ name: z.ZodString;
1835
+ }, "strip", z.ZodTypeAny, {
1836
+ name: string;
1837
+ }, {
1838
+ name: string;
1839
+ }>, z.ZodObject<{
1840
+ identifier: z.ZodString;
1841
+ identifier_type: z.ZodString;
1842
+ chain_identifier: z.ZodString;
1843
+ }, "strip", z.ZodTypeAny, {
1844
+ identifier: string;
1845
+ identifier_type: string;
1846
+ chain_identifier: string;
1847
+ }, {
1848
+ identifier: string;
1849
+ identifier_type: string;
1850
+ chain_identifier: string;
1851
+ }>]>;
1852
+ }, "strip", z.ZodTypeAny, {
1853
+ amount: string;
1854
+ currency: {
1855
+ name: string;
1856
+ } | {
1857
+ identifier: string;
1858
+ identifier_type: string;
1859
+ chain_identifier: string;
1860
+ };
1861
+ }, {
1862
+ amount: string;
1863
+ currency: {
1864
+ name: string;
1865
+ } | {
1866
+ identifier: string;
1867
+ identifier_type: string;
1868
+ chain_identifier: string;
1869
+ };
1870
+ }>>;
1871
+ revenue: z.ZodOptional<z.ZodObject<{
1872
+ amount: z.ZodString;
1873
+ currency: z.ZodUnion<[z.ZodObject<{
1874
+ name: z.ZodString;
1875
+ }, "strip", z.ZodTypeAny, {
1876
+ name: string;
1877
+ }, {
1878
+ name: string;
1879
+ }>, z.ZodObject<{
1880
+ identifier: z.ZodString;
1881
+ identifier_type: z.ZodString;
1882
+ chain_identifier: z.ZodString;
1883
+ }, "strip", z.ZodTypeAny, {
1884
+ identifier: string;
1885
+ identifier_type: string;
1886
+ chain_identifier: string;
1887
+ }, {
1888
+ identifier: string;
1889
+ identifier_type: string;
1890
+ chain_identifier: string;
1891
+ }>]>;
1892
+ }, "strip", z.ZodTypeAny, {
1893
+ amount: string;
1894
+ currency: {
1895
+ name: string;
1896
+ } | {
1897
+ identifier: string;
1898
+ identifier_type: string;
1899
+ chain_identifier: string;
1900
+ };
1901
+ }, {
1902
+ amount: string;
1903
+ currency: {
1904
+ name: string;
1905
+ } | {
1906
+ identifier: string;
1907
+ identifier_type: string;
1908
+ chain_identifier: string;
1909
+ };
1910
+ }>>;
1911
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1100
1912
  timestamp?: number | undefined;
1101
1913
  }>;
1102
1914
  export declare const sendEventInputSchema: z.ZodObject<{
@@ -1109,7 +1921,250 @@ export declare const sendEventInputSchema: z.ZodObject<{
1109
1921
  dedup_id: z.ZodString;
1110
1922
  user_identifier: z.ZodString;
1111
1923
  user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email"]>;
1112
- args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
1924
+ args: z.ZodOptional<z.ZodObject<{
1925
+ value: z.ZodOptional<z.ZodObject<{
1926
+ amount: z.ZodString;
1927
+ currency: z.ZodUnion<[z.ZodObject<{
1928
+ name: z.ZodString;
1929
+ }, "strip", z.ZodTypeAny, {
1930
+ name: string;
1931
+ }, {
1932
+ name: string;
1933
+ }>, z.ZodObject<{
1934
+ identifier: z.ZodString;
1935
+ identifier_type: z.ZodString;
1936
+ chain_identifier: z.ZodString;
1937
+ }, "strip", z.ZodTypeAny, {
1938
+ identifier: string;
1939
+ identifier_type: string;
1940
+ chain_identifier: string;
1941
+ }, {
1942
+ identifier: string;
1943
+ identifier_type: string;
1944
+ chain_identifier: string;
1945
+ }>]>;
1946
+ }, "strip", z.ZodTypeAny, {
1947
+ amount: string;
1948
+ currency: {
1949
+ name: string;
1950
+ } | {
1951
+ identifier: string;
1952
+ identifier_type: string;
1953
+ chain_identifier: string;
1954
+ };
1955
+ }, {
1956
+ amount: string;
1957
+ currency: {
1958
+ name: string;
1959
+ } | {
1960
+ identifier: string;
1961
+ identifier_type: string;
1962
+ chain_identifier: string;
1963
+ };
1964
+ }>>;
1965
+ revenue: z.ZodOptional<z.ZodObject<{
1966
+ amount: z.ZodString;
1967
+ currency: z.ZodUnion<[z.ZodObject<{
1968
+ name: z.ZodString;
1969
+ }, "strip", z.ZodTypeAny, {
1970
+ name: string;
1971
+ }, {
1972
+ name: string;
1973
+ }>, z.ZodObject<{
1974
+ identifier: z.ZodString;
1975
+ identifier_type: z.ZodString;
1976
+ chain_identifier: z.ZodString;
1977
+ }, "strip", z.ZodTypeAny, {
1978
+ identifier: string;
1979
+ identifier_type: string;
1980
+ chain_identifier: string;
1981
+ }, {
1982
+ identifier: string;
1983
+ identifier_type: string;
1984
+ chain_identifier: string;
1985
+ }>]>;
1986
+ }, "strip", z.ZodTypeAny, {
1987
+ amount: string;
1988
+ currency: {
1989
+ name: string;
1990
+ } | {
1991
+ identifier: string;
1992
+ identifier_type: string;
1993
+ chain_identifier: string;
1994
+ };
1995
+ }, {
1996
+ amount: string;
1997
+ currency: {
1998
+ name: string;
1999
+ } | {
2000
+ identifier: string;
2001
+ identifier_type: string;
2002
+ chain_identifier: string;
2003
+ };
2004
+ }>>;
2005
+ }, "strip", z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, z.objectOutputType<{
2006
+ value: z.ZodOptional<z.ZodObject<{
2007
+ amount: z.ZodString;
2008
+ currency: z.ZodUnion<[z.ZodObject<{
2009
+ name: z.ZodString;
2010
+ }, "strip", z.ZodTypeAny, {
2011
+ name: string;
2012
+ }, {
2013
+ name: string;
2014
+ }>, z.ZodObject<{
2015
+ identifier: z.ZodString;
2016
+ identifier_type: z.ZodString;
2017
+ chain_identifier: z.ZodString;
2018
+ }, "strip", z.ZodTypeAny, {
2019
+ identifier: string;
2020
+ identifier_type: string;
2021
+ chain_identifier: string;
2022
+ }, {
2023
+ identifier: string;
2024
+ identifier_type: string;
2025
+ chain_identifier: string;
2026
+ }>]>;
2027
+ }, "strip", z.ZodTypeAny, {
2028
+ amount: string;
2029
+ currency: {
2030
+ name: string;
2031
+ } | {
2032
+ identifier: string;
2033
+ identifier_type: string;
2034
+ chain_identifier: string;
2035
+ };
2036
+ }, {
2037
+ amount: string;
2038
+ currency: {
2039
+ name: string;
2040
+ } | {
2041
+ identifier: string;
2042
+ identifier_type: string;
2043
+ chain_identifier: string;
2044
+ };
2045
+ }>>;
2046
+ revenue: z.ZodOptional<z.ZodObject<{
2047
+ amount: z.ZodString;
2048
+ currency: z.ZodUnion<[z.ZodObject<{
2049
+ name: z.ZodString;
2050
+ }, "strip", z.ZodTypeAny, {
2051
+ name: string;
2052
+ }, {
2053
+ name: string;
2054
+ }>, z.ZodObject<{
2055
+ identifier: z.ZodString;
2056
+ identifier_type: z.ZodString;
2057
+ chain_identifier: z.ZodString;
2058
+ }, "strip", z.ZodTypeAny, {
2059
+ identifier: string;
2060
+ identifier_type: string;
2061
+ chain_identifier: string;
2062
+ }, {
2063
+ identifier: string;
2064
+ identifier_type: string;
2065
+ chain_identifier: string;
2066
+ }>]>;
2067
+ }, "strip", z.ZodTypeAny, {
2068
+ amount: string;
2069
+ currency: {
2070
+ name: string;
2071
+ } | {
2072
+ identifier: string;
2073
+ identifier_type: string;
2074
+ chain_identifier: string;
2075
+ };
2076
+ }, {
2077
+ amount: string;
2078
+ currency: {
2079
+ name: string;
2080
+ } | {
2081
+ identifier: string;
2082
+ identifier_type: string;
2083
+ chain_identifier: string;
2084
+ };
2085
+ }>>;
2086
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">, z.objectInputType<{
2087
+ value: z.ZodOptional<z.ZodObject<{
2088
+ amount: z.ZodString;
2089
+ currency: z.ZodUnion<[z.ZodObject<{
2090
+ name: z.ZodString;
2091
+ }, "strip", z.ZodTypeAny, {
2092
+ name: string;
2093
+ }, {
2094
+ name: string;
2095
+ }>, z.ZodObject<{
2096
+ identifier: z.ZodString;
2097
+ identifier_type: z.ZodString;
2098
+ chain_identifier: z.ZodString;
2099
+ }, "strip", z.ZodTypeAny, {
2100
+ identifier: string;
2101
+ identifier_type: string;
2102
+ chain_identifier: string;
2103
+ }, {
2104
+ identifier: string;
2105
+ identifier_type: string;
2106
+ chain_identifier: string;
2107
+ }>]>;
2108
+ }, "strip", z.ZodTypeAny, {
2109
+ amount: string;
2110
+ currency: {
2111
+ name: string;
2112
+ } | {
2113
+ identifier: string;
2114
+ identifier_type: string;
2115
+ chain_identifier: string;
2116
+ };
2117
+ }, {
2118
+ amount: string;
2119
+ currency: {
2120
+ name: string;
2121
+ } | {
2122
+ identifier: string;
2123
+ identifier_type: string;
2124
+ chain_identifier: string;
2125
+ };
2126
+ }>>;
2127
+ revenue: z.ZodOptional<z.ZodObject<{
2128
+ amount: z.ZodString;
2129
+ currency: z.ZodUnion<[z.ZodObject<{
2130
+ name: z.ZodString;
2131
+ }, "strip", z.ZodTypeAny, {
2132
+ name: string;
2133
+ }, {
2134
+ name: string;
2135
+ }>, z.ZodObject<{
2136
+ identifier: z.ZodString;
2137
+ identifier_type: z.ZodString;
2138
+ chain_identifier: z.ZodString;
2139
+ }, "strip", z.ZodTypeAny, {
2140
+ identifier: string;
2141
+ identifier_type: string;
2142
+ chain_identifier: string;
2143
+ }, {
2144
+ identifier: string;
2145
+ identifier_type: string;
2146
+ chain_identifier: string;
2147
+ }>]>;
2148
+ }, "strip", z.ZodTypeAny, {
2149
+ amount: string;
2150
+ currency: {
2151
+ name: string;
2152
+ } | {
2153
+ identifier: string;
2154
+ identifier_type: string;
2155
+ chain_identifier: string;
2156
+ };
2157
+ }, {
2158
+ amount: string;
2159
+ currency: {
2160
+ name: string;
2161
+ } | {
2162
+ identifier: string;
2163
+ identifier_type: string;
2164
+ chain_identifier: string;
2165
+ };
2166
+ }>>;
2167
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">>>;
1113
2168
  timestamp: z.ZodOptional<z.ZodNumber>;
1114
2169
  }, "strip", z.ZodTypeAny, {
1115
2170
  name: string;
@@ -1119,7 +2174,88 @@ export declare const sendEventInputSchema: z.ZodObject<{
1119
2174
  dry_run?: boolean | undefined;
1120
2175
  confirmed?: boolean | undefined;
1121
2176
  project_api_key?: string | undefined;
1122
- args?: Record<string, string | number | boolean> | undefined;
2177
+ args?: z.objectOutputType<{
2178
+ value: z.ZodOptional<z.ZodObject<{
2179
+ amount: z.ZodString;
2180
+ currency: z.ZodUnion<[z.ZodObject<{
2181
+ name: z.ZodString;
2182
+ }, "strip", z.ZodTypeAny, {
2183
+ name: string;
2184
+ }, {
2185
+ name: string;
2186
+ }>, z.ZodObject<{
2187
+ identifier: z.ZodString;
2188
+ identifier_type: z.ZodString;
2189
+ chain_identifier: z.ZodString;
2190
+ }, "strip", z.ZodTypeAny, {
2191
+ identifier: string;
2192
+ identifier_type: string;
2193
+ chain_identifier: string;
2194
+ }, {
2195
+ identifier: string;
2196
+ identifier_type: string;
2197
+ chain_identifier: string;
2198
+ }>]>;
2199
+ }, "strip", z.ZodTypeAny, {
2200
+ amount: string;
2201
+ currency: {
2202
+ name: string;
2203
+ } | {
2204
+ identifier: string;
2205
+ identifier_type: string;
2206
+ chain_identifier: string;
2207
+ };
2208
+ }, {
2209
+ amount: string;
2210
+ currency: {
2211
+ name: string;
2212
+ } | {
2213
+ identifier: string;
2214
+ identifier_type: string;
2215
+ chain_identifier: string;
2216
+ };
2217
+ }>>;
2218
+ revenue: z.ZodOptional<z.ZodObject<{
2219
+ amount: z.ZodString;
2220
+ currency: z.ZodUnion<[z.ZodObject<{
2221
+ name: z.ZodString;
2222
+ }, "strip", z.ZodTypeAny, {
2223
+ name: string;
2224
+ }, {
2225
+ name: string;
2226
+ }>, z.ZodObject<{
2227
+ identifier: z.ZodString;
2228
+ identifier_type: z.ZodString;
2229
+ chain_identifier: z.ZodString;
2230
+ }, "strip", z.ZodTypeAny, {
2231
+ identifier: string;
2232
+ identifier_type: string;
2233
+ chain_identifier: string;
2234
+ }, {
2235
+ identifier: string;
2236
+ identifier_type: string;
2237
+ chain_identifier: string;
2238
+ }>]>;
2239
+ }, "strip", z.ZodTypeAny, {
2240
+ amount: string;
2241
+ currency: {
2242
+ name: string;
2243
+ } | {
2244
+ identifier: string;
2245
+ identifier_type: string;
2246
+ chain_identifier: string;
2247
+ };
2248
+ }, {
2249
+ amount: string;
2250
+ currency: {
2251
+ name: string;
2252
+ } | {
2253
+ identifier: string;
2254
+ identifier_type: string;
2255
+ chain_identifier: string;
2256
+ };
2257
+ }>>;
2258
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1123
2259
  timestamp?: number | undefined;
1124
2260
  }, {
1125
2261
  name: string;
@@ -1129,7 +2265,88 @@ export declare const sendEventInputSchema: z.ZodObject<{
1129
2265
  dry_run?: boolean | undefined;
1130
2266
  confirmed?: boolean | undefined;
1131
2267
  project_api_key?: string | undefined;
1132
- args?: Record<string, string | number | boolean> | undefined;
2268
+ args?: z.objectInputType<{
2269
+ value: z.ZodOptional<z.ZodObject<{
2270
+ amount: z.ZodString;
2271
+ currency: z.ZodUnion<[z.ZodObject<{
2272
+ name: z.ZodString;
2273
+ }, "strip", z.ZodTypeAny, {
2274
+ name: string;
2275
+ }, {
2276
+ name: string;
2277
+ }>, z.ZodObject<{
2278
+ identifier: z.ZodString;
2279
+ identifier_type: z.ZodString;
2280
+ chain_identifier: z.ZodString;
2281
+ }, "strip", z.ZodTypeAny, {
2282
+ identifier: string;
2283
+ identifier_type: string;
2284
+ chain_identifier: string;
2285
+ }, {
2286
+ identifier: string;
2287
+ identifier_type: string;
2288
+ chain_identifier: string;
2289
+ }>]>;
2290
+ }, "strip", z.ZodTypeAny, {
2291
+ amount: string;
2292
+ currency: {
2293
+ name: string;
2294
+ } | {
2295
+ identifier: string;
2296
+ identifier_type: string;
2297
+ chain_identifier: string;
2298
+ };
2299
+ }, {
2300
+ amount: string;
2301
+ currency: {
2302
+ name: string;
2303
+ } | {
2304
+ identifier: string;
2305
+ identifier_type: string;
2306
+ chain_identifier: string;
2307
+ };
2308
+ }>>;
2309
+ revenue: z.ZodOptional<z.ZodObject<{
2310
+ amount: z.ZodString;
2311
+ currency: z.ZodUnion<[z.ZodObject<{
2312
+ name: z.ZodString;
2313
+ }, "strip", z.ZodTypeAny, {
2314
+ name: string;
2315
+ }, {
2316
+ name: string;
2317
+ }>, z.ZodObject<{
2318
+ identifier: z.ZodString;
2319
+ identifier_type: z.ZodString;
2320
+ chain_identifier: z.ZodString;
2321
+ }, "strip", z.ZodTypeAny, {
2322
+ identifier: string;
2323
+ identifier_type: string;
2324
+ chain_identifier: string;
2325
+ }, {
2326
+ identifier: string;
2327
+ identifier_type: string;
2328
+ chain_identifier: string;
2329
+ }>]>;
2330
+ }, "strip", z.ZodTypeAny, {
2331
+ amount: string;
2332
+ currency: {
2333
+ name: string;
2334
+ } | {
2335
+ identifier: string;
2336
+ identifier_type: string;
2337
+ chain_identifier: string;
2338
+ };
2339
+ }, {
2340
+ amount: string;
2341
+ currency: {
2342
+ name: string;
2343
+ } | {
2344
+ identifier: string;
2345
+ identifier_type: string;
2346
+ chain_identifier: string;
2347
+ };
2348
+ }>>;
2349
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1133
2350
  timestamp?: number | undefined;
1134
2351
  }>;
1135
2352
  export type SendEventInput = z.infer<typeof sendEventInputSchema>;
@@ -1144,21 +2361,426 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
1144
2361
  dedup_id: z.ZodString;
1145
2362
  user_identifier: z.ZodString;
1146
2363
  user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email"]>;
1147
- args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
2364
+ args: z.ZodOptional<z.ZodObject<{
2365
+ value: z.ZodOptional<z.ZodObject<{
2366
+ amount: z.ZodString;
2367
+ currency: z.ZodUnion<[z.ZodObject<{
2368
+ name: z.ZodString;
2369
+ }, "strip", z.ZodTypeAny, {
2370
+ name: string;
2371
+ }, {
2372
+ name: string;
2373
+ }>, z.ZodObject<{
2374
+ identifier: z.ZodString;
2375
+ identifier_type: z.ZodString;
2376
+ chain_identifier: z.ZodString;
2377
+ }, "strip", z.ZodTypeAny, {
2378
+ identifier: string;
2379
+ identifier_type: string;
2380
+ chain_identifier: string;
2381
+ }, {
2382
+ identifier: string;
2383
+ identifier_type: string;
2384
+ chain_identifier: string;
2385
+ }>]>;
2386
+ }, "strip", z.ZodTypeAny, {
2387
+ amount: string;
2388
+ currency: {
2389
+ name: string;
2390
+ } | {
2391
+ identifier: string;
2392
+ identifier_type: string;
2393
+ chain_identifier: string;
2394
+ };
2395
+ }, {
2396
+ amount: string;
2397
+ currency: {
2398
+ name: string;
2399
+ } | {
2400
+ identifier: string;
2401
+ identifier_type: string;
2402
+ chain_identifier: string;
2403
+ };
2404
+ }>>;
2405
+ revenue: z.ZodOptional<z.ZodObject<{
2406
+ amount: z.ZodString;
2407
+ currency: z.ZodUnion<[z.ZodObject<{
2408
+ name: z.ZodString;
2409
+ }, "strip", z.ZodTypeAny, {
2410
+ name: string;
2411
+ }, {
2412
+ name: string;
2413
+ }>, z.ZodObject<{
2414
+ identifier: z.ZodString;
2415
+ identifier_type: z.ZodString;
2416
+ chain_identifier: z.ZodString;
2417
+ }, "strip", z.ZodTypeAny, {
2418
+ identifier: string;
2419
+ identifier_type: string;
2420
+ chain_identifier: string;
2421
+ }, {
2422
+ identifier: string;
2423
+ identifier_type: string;
2424
+ chain_identifier: string;
2425
+ }>]>;
2426
+ }, "strip", z.ZodTypeAny, {
2427
+ amount: string;
2428
+ currency: {
2429
+ name: string;
2430
+ } | {
2431
+ identifier: string;
2432
+ identifier_type: string;
2433
+ chain_identifier: string;
2434
+ };
2435
+ }, {
2436
+ amount: string;
2437
+ currency: {
2438
+ name: string;
2439
+ } | {
2440
+ identifier: string;
2441
+ identifier_type: string;
2442
+ chain_identifier: string;
2443
+ };
2444
+ }>>;
2445
+ }, "strip", z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, z.objectOutputType<{
2446
+ value: z.ZodOptional<z.ZodObject<{
2447
+ amount: z.ZodString;
2448
+ currency: z.ZodUnion<[z.ZodObject<{
2449
+ name: z.ZodString;
2450
+ }, "strip", z.ZodTypeAny, {
2451
+ name: string;
2452
+ }, {
2453
+ name: string;
2454
+ }>, z.ZodObject<{
2455
+ identifier: z.ZodString;
2456
+ identifier_type: z.ZodString;
2457
+ chain_identifier: z.ZodString;
2458
+ }, "strip", z.ZodTypeAny, {
2459
+ identifier: string;
2460
+ identifier_type: string;
2461
+ chain_identifier: string;
2462
+ }, {
2463
+ identifier: string;
2464
+ identifier_type: string;
2465
+ chain_identifier: string;
2466
+ }>]>;
2467
+ }, "strip", z.ZodTypeAny, {
2468
+ amount: string;
2469
+ currency: {
2470
+ name: string;
2471
+ } | {
2472
+ identifier: string;
2473
+ identifier_type: string;
2474
+ chain_identifier: string;
2475
+ };
2476
+ }, {
2477
+ amount: string;
2478
+ currency: {
2479
+ name: string;
2480
+ } | {
2481
+ identifier: string;
2482
+ identifier_type: string;
2483
+ chain_identifier: string;
2484
+ };
2485
+ }>>;
2486
+ revenue: z.ZodOptional<z.ZodObject<{
2487
+ amount: z.ZodString;
2488
+ currency: z.ZodUnion<[z.ZodObject<{
2489
+ name: z.ZodString;
2490
+ }, "strip", z.ZodTypeAny, {
2491
+ name: string;
2492
+ }, {
2493
+ name: string;
2494
+ }>, z.ZodObject<{
2495
+ identifier: z.ZodString;
2496
+ identifier_type: z.ZodString;
2497
+ chain_identifier: z.ZodString;
2498
+ }, "strip", z.ZodTypeAny, {
2499
+ identifier: string;
2500
+ identifier_type: string;
2501
+ chain_identifier: string;
2502
+ }, {
2503
+ identifier: string;
2504
+ identifier_type: string;
2505
+ chain_identifier: string;
2506
+ }>]>;
2507
+ }, "strip", z.ZodTypeAny, {
2508
+ amount: string;
2509
+ currency: {
2510
+ name: string;
2511
+ } | {
2512
+ identifier: string;
2513
+ identifier_type: string;
2514
+ chain_identifier: string;
2515
+ };
2516
+ }, {
2517
+ amount: string;
2518
+ currency: {
2519
+ name: string;
2520
+ } | {
2521
+ identifier: string;
2522
+ identifier_type: string;
2523
+ chain_identifier: string;
2524
+ };
2525
+ }>>;
2526
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">, z.objectInputType<{
2527
+ value: z.ZodOptional<z.ZodObject<{
2528
+ amount: z.ZodString;
2529
+ currency: z.ZodUnion<[z.ZodObject<{
2530
+ name: z.ZodString;
2531
+ }, "strip", z.ZodTypeAny, {
2532
+ name: string;
2533
+ }, {
2534
+ name: string;
2535
+ }>, z.ZodObject<{
2536
+ identifier: z.ZodString;
2537
+ identifier_type: z.ZodString;
2538
+ chain_identifier: z.ZodString;
2539
+ }, "strip", z.ZodTypeAny, {
2540
+ identifier: string;
2541
+ identifier_type: string;
2542
+ chain_identifier: string;
2543
+ }, {
2544
+ identifier: string;
2545
+ identifier_type: string;
2546
+ chain_identifier: string;
2547
+ }>]>;
2548
+ }, "strip", z.ZodTypeAny, {
2549
+ amount: string;
2550
+ currency: {
2551
+ name: string;
2552
+ } | {
2553
+ identifier: string;
2554
+ identifier_type: string;
2555
+ chain_identifier: string;
2556
+ };
2557
+ }, {
2558
+ amount: string;
2559
+ currency: {
2560
+ name: string;
2561
+ } | {
2562
+ identifier: string;
2563
+ identifier_type: string;
2564
+ chain_identifier: string;
2565
+ };
2566
+ }>>;
2567
+ revenue: z.ZodOptional<z.ZodObject<{
2568
+ amount: z.ZodString;
2569
+ currency: z.ZodUnion<[z.ZodObject<{
2570
+ name: z.ZodString;
2571
+ }, "strip", z.ZodTypeAny, {
2572
+ name: string;
2573
+ }, {
2574
+ name: string;
2575
+ }>, z.ZodObject<{
2576
+ identifier: z.ZodString;
2577
+ identifier_type: z.ZodString;
2578
+ chain_identifier: z.ZodString;
2579
+ }, "strip", z.ZodTypeAny, {
2580
+ identifier: string;
2581
+ identifier_type: string;
2582
+ chain_identifier: string;
2583
+ }, {
2584
+ identifier: string;
2585
+ identifier_type: string;
2586
+ chain_identifier: string;
2587
+ }>]>;
2588
+ }, "strip", z.ZodTypeAny, {
2589
+ amount: string;
2590
+ currency: {
2591
+ name: string;
2592
+ } | {
2593
+ identifier: string;
2594
+ identifier_type: string;
2595
+ chain_identifier: string;
2596
+ };
2597
+ }, {
2598
+ amount: string;
2599
+ currency: {
2600
+ name: string;
2601
+ } | {
2602
+ identifier: string;
2603
+ identifier_type: string;
2604
+ chain_identifier: string;
2605
+ };
2606
+ }>>;
2607
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">>>;
1148
2608
  timestamp: z.ZodOptional<z.ZodNumber>;
1149
2609
  }, "strip", z.ZodTypeAny, {
1150
2610
  name: string;
1151
2611
  user_identifier: string;
1152
2612
  user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1153
2613
  dedup_id: string;
1154
- args?: Record<string, string | number | boolean> | undefined;
2614
+ args?: z.objectOutputType<{
2615
+ value: z.ZodOptional<z.ZodObject<{
2616
+ amount: z.ZodString;
2617
+ currency: z.ZodUnion<[z.ZodObject<{
2618
+ name: z.ZodString;
2619
+ }, "strip", z.ZodTypeAny, {
2620
+ name: string;
2621
+ }, {
2622
+ name: string;
2623
+ }>, z.ZodObject<{
2624
+ identifier: z.ZodString;
2625
+ identifier_type: z.ZodString;
2626
+ chain_identifier: z.ZodString;
2627
+ }, "strip", z.ZodTypeAny, {
2628
+ identifier: string;
2629
+ identifier_type: string;
2630
+ chain_identifier: string;
2631
+ }, {
2632
+ identifier: string;
2633
+ identifier_type: string;
2634
+ chain_identifier: string;
2635
+ }>]>;
2636
+ }, "strip", z.ZodTypeAny, {
2637
+ amount: string;
2638
+ currency: {
2639
+ name: string;
2640
+ } | {
2641
+ identifier: string;
2642
+ identifier_type: string;
2643
+ chain_identifier: string;
2644
+ };
2645
+ }, {
2646
+ amount: string;
2647
+ currency: {
2648
+ name: string;
2649
+ } | {
2650
+ identifier: string;
2651
+ identifier_type: string;
2652
+ chain_identifier: string;
2653
+ };
2654
+ }>>;
2655
+ revenue: z.ZodOptional<z.ZodObject<{
2656
+ amount: z.ZodString;
2657
+ currency: z.ZodUnion<[z.ZodObject<{
2658
+ name: z.ZodString;
2659
+ }, "strip", z.ZodTypeAny, {
2660
+ name: string;
2661
+ }, {
2662
+ name: string;
2663
+ }>, z.ZodObject<{
2664
+ identifier: z.ZodString;
2665
+ identifier_type: z.ZodString;
2666
+ chain_identifier: z.ZodString;
2667
+ }, "strip", z.ZodTypeAny, {
2668
+ identifier: string;
2669
+ identifier_type: string;
2670
+ chain_identifier: string;
2671
+ }, {
2672
+ identifier: string;
2673
+ identifier_type: string;
2674
+ chain_identifier: string;
2675
+ }>]>;
2676
+ }, "strip", z.ZodTypeAny, {
2677
+ amount: string;
2678
+ currency: {
2679
+ name: string;
2680
+ } | {
2681
+ identifier: string;
2682
+ identifier_type: string;
2683
+ chain_identifier: string;
2684
+ };
2685
+ }, {
2686
+ amount: string;
2687
+ currency: {
2688
+ name: string;
2689
+ } | {
2690
+ identifier: string;
2691
+ identifier_type: string;
2692
+ chain_identifier: string;
2693
+ };
2694
+ }>>;
2695
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1155
2696
  timestamp?: number | undefined;
1156
2697
  }, {
1157
2698
  name: string;
1158
2699
  user_identifier: string;
1159
2700
  user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1160
2701
  dedup_id: string;
1161
- args?: Record<string, string | number | boolean> | undefined;
2702
+ args?: z.objectInputType<{
2703
+ value: z.ZodOptional<z.ZodObject<{
2704
+ amount: z.ZodString;
2705
+ currency: z.ZodUnion<[z.ZodObject<{
2706
+ name: z.ZodString;
2707
+ }, "strip", z.ZodTypeAny, {
2708
+ name: string;
2709
+ }, {
2710
+ name: string;
2711
+ }>, z.ZodObject<{
2712
+ identifier: z.ZodString;
2713
+ identifier_type: z.ZodString;
2714
+ chain_identifier: z.ZodString;
2715
+ }, "strip", z.ZodTypeAny, {
2716
+ identifier: string;
2717
+ identifier_type: string;
2718
+ chain_identifier: string;
2719
+ }, {
2720
+ identifier: string;
2721
+ identifier_type: string;
2722
+ chain_identifier: string;
2723
+ }>]>;
2724
+ }, "strip", z.ZodTypeAny, {
2725
+ amount: string;
2726
+ currency: {
2727
+ name: string;
2728
+ } | {
2729
+ identifier: string;
2730
+ identifier_type: string;
2731
+ chain_identifier: string;
2732
+ };
2733
+ }, {
2734
+ amount: string;
2735
+ currency: {
2736
+ name: string;
2737
+ } | {
2738
+ identifier: string;
2739
+ identifier_type: string;
2740
+ chain_identifier: string;
2741
+ };
2742
+ }>>;
2743
+ revenue: z.ZodOptional<z.ZodObject<{
2744
+ amount: z.ZodString;
2745
+ currency: z.ZodUnion<[z.ZodObject<{
2746
+ name: z.ZodString;
2747
+ }, "strip", z.ZodTypeAny, {
2748
+ name: string;
2749
+ }, {
2750
+ name: string;
2751
+ }>, z.ZodObject<{
2752
+ identifier: z.ZodString;
2753
+ identifier_type: z.ZodString;
2754
+ chain_identifier: z.ZodString;
2755
+ }, "strip", z.ZodTypeAny, {
2756
+ identifier: string;
2757
+ identifier_type: string;
2758
+ chain_identifier: string;
2759
+ }, {
2760
+ identifier: string;
2761
+ identifier_type: string;
2762
+ chain_identifier: string;
2763
+ }>]>;
2764
+ }, "strip", z.ZodTypeAny, {
2765
+ amount: string;
2766
+ currency: {
2767
+ name: string;
2768
+ } | {
2769
+ identifier: string;
2770
+ identifier_type: string;
2771
+ chain_identifier: string;
2772
+ };
2773
+ }, {
2774
+ amount: string;
2775
+ currency: {
2776
+ name: string;
2777
+ } | {
2778
+ identifier: string;
2779
+ identifier_type: string;
2780
+ chain_identifier: string;
2781
+ };
2782
+ }>>;
2783
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1162
2784
  timestamp?: number | undefined;
1163
2785
  }>, "many">;
1164
2786
  }, "strip", z.ZodTypeAny, {
@@ -1167,7 +2789,88 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
1167
2789
  user_identifier: string;
1168
2790
  user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1169
2791
  dedup_id: string;
1170
- args?: Record<string, string | number | boolean> | undefined;
2792
+ args?: z.objectOutputType<{
2793
+ value: z.ZodOptional<z.ZodObject<{
2794
+ amount: z.ZodString;
2795
+ currency: z.ZodUnion<[z.ZodObject<{
2796
+ name: z.ZodString;
2797
+ }, "strip", z.ZodTypeAny, {
2798
+ name: string;
2799
+ }, {
2800
+ name: string;
2801
+ }>, z.ZodObject<{
2802
+ identifier: z.ZodString;
2803
+ identifier_type: z.ZodString;
2804
+ chain_identifier: z.ZodString;
2805
+ }, "strip", z.ZodTypeAny, {
2806
+ identifier: string;
2807
+ identifier_type: string;
2808
+ chain_identifier: string;
2809
+ }, {
2810
+ identifier: string;
2811
+ identifier_type: string;
2812
+ chain_identifier: string;
2813
+ }>]>;
2814
+ }, "strip", z.ZodTypeAny, {
2815
+ amount: string;
2816
+ currency: {
2817
+ name: string;
2818
+ } | {
2819
+ identifier: string;
2820
+ identifier_type: string;
2821
+ chain_identifier: string;
2822
+ };
2823
+ }, {
2824
+ amount: string;
2825
+ currency: {
2826
+ name: string;
2827
+ } | {
2828
+ identifier: string;
2829
+ identifier_type: string;
2830
+ chain_identifier: string;
2831
+ };
2832
+ }>>;
2833
+ revenue: z.ZodOptional<z.ZodObject<{
2834
+ amount: z.ZodString;
2835
+ currency: z.ZodUnion<[z.ZodObject<{
2836
+ name: z.ZodString;
2837
+ }, "strip", z.ZodTypeAny, {
2838
+ name: string;
2839
+ }, {
2840
+ name: string;
2841
+ }>, z.ZodObject<{
2842
+ identifier: z.ZodString;
2843
+ identifier_type: z.ZodString;
2844
+ chain_identifier: z.ZodString;
2845
+ }, "strip", z.ZodTypeAny, {
2846
+ identifier: string;
2847
+ identifier_type: string;
2848
+ chain_identifier: string;
2849
+ }, {
2850
+ identifier: string;
2851
+ identifier_type: string;
2852
+ chain_identifier: string;
2853
+ }>]>;
2854
+ }, "strip", z.ZodTypeAny, {
2855
+ amount: string;
2856
+ currency: {
2857
+ name: string;
2858
+ } | {
2859
+ identifier: string;
2860
+ identifier_type: string;
2861
+ chain_identifier: string;
2862
+ };
2863
+ }, {
2864
+ amount: string;
2865
+ currency: {
2866
+ name: string;
2867
+ } | {
2868
+ identifier: string;
2869
+ identifier_type: string;
2870
+ chain_identifier: string;
2871
+ };
2872
+ }>>;
2873
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1171
2874
  timestamp?: number | undefined;
1172
2875
  }[];
1173
2876
  dry_run?: boolean | undefined;
@@ -1179,7 +2882,88 @@ export declare const sendBatchEventsFieldsSchema: z.ZodObject<{
1179
2882
  user_identifier: string;
1180
2883
  user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1181
2884
  dedup_id: string;
1182
- args?: Record<string, string | number | boolean> | undefined;
2885
+ args?: z.objectInputType<{
2886
+ value: z.ZodOptional<z.ZodObject<{
2887
+ amount: z.ZodString;
2888
+ currency: z.ZodUnion<[z.ZodObject<{
2889
+ name: z.ZodString;
2890
+ }, "strip", z.ZodTypeAny, {
2891
+ name: string;
2892
+ }, {
2893
+ name: string;
2894
+ }>, z.ZodObject<{
2895
+ identifier: z.ZodString;
2896
+ identifier_type: z.ZodString;
2897
+ chain_identifier: z.ZodString;
2898
+ }, "strip", z.ZodTypeAny, {
2899
+ identifier: string;
2900
+ identifier_type: string;
2901
+ chain_identifier: string;
2902
+ }, {
2903
+ identifier: string;
2904
+ identifier_type: string;
2905
+ chain_identifier: string;
2906
+ }>]>;
2907
+ }, "strip", z.ZodTypeAny, {
2908
+ amount: string;
2909
+ currency: {
2910
+ name: string;
2911
+ } | {
2912
+ identifier: string;
2913
+ identifier_type: string;
2914
+ chain_identifier: string;
2915
+ };
2916
+ }, {
2917
+ amount: string;
2918
+ currency: {
2919
+ name: string;
2920
+ } | {
2921
+ identifier: string;
2922
+ identifier_type: string;
2923
+ chain_identifier: string;
2924
+ };
2925
+ }>>;
2926
+ revenue: z.ZodOptional<z.ZodObject<{
2927
+ amount: z.ZodString;
2928
+ currency: z.ZodUnion<[z.ZodObject<{
2929
+ name: z.ZodString;
2930
+ }, "strip", z.ZodTypeAny, {
2931
+ name: string;
2932
+ }, {
2933
+ name: string;
2934
+ }>, z.ZodObject<{
2935
+ identifier: z.ZodString;
2936
+ identifier_type: z.ZodString;
2937
+ chain_identifier: z.ZodString;
2938
+ }, "strip", z.ZodTypeAny, {
2939
+ identifier: string;
2940
+ identifier_type: string;
2941
+ chain_identifier: string;
2942
+ }, {
2943
+ identifier: string;
2944
+ identifier_type: string;
2945
+ chain_identifier: string;
2946
+ }>]>;
2947
+ }, "strip", z.ZodTypeAny, {
2948
+ amount: string;
2949
+ currency: {
2950
+ name: string;
2951
+ } | {
2952
+ identifier: string;
2953
+ identifier_type: string;
2954
+ chain_identifier: string;
2955
+ };
2956
+ }, {
2957
+ amount: string;
2958
+ currency: {
2959
+ name: string;
2960
+ } | {
2961
+ identifier: string;
2962
+ identifier_type: string;
2963
+ chain_identifier: string;
2964
+ };
2965
+ }>>;
2966
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1183
2967
  timestamp?: number | undefined;
1184
2968
  }[];
1185
2969
  dry_run?: boolean | undefined;
@@ -1197,21 +2981,426 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
1197
2981
  dedup_id: z.ZodString;
1198
2982
  user_identifier: z.ZodString;
1199
2983
  user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email"]>;
1200
- args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
2984
+ args: z.ZodOptional<z.ZodObject<{
2985
+ value: z.ZodOptional<z.ZodObject<{
2986
+ amount: z.ZodString;
2987
+ currency: z.ZodUnion<[z.ZodObject<{
2988
+ name: z.ZodString;
2989
+ }, "strip", z.ZodTypeAny, {
2990
+ name: string;
2991
+ }, {
2992
+ name: string;
2993
+ }>, z.ZodObject<{
2994
+ identifier: z.ZodString;
2995
+ identifier_type: z.ZodString;
2996
+ chain_identifier: z.ZodString;
2997
+ }, "strip", z.ZodTypeAny, {
2998
+ identifier: string;
2999
+ identifier_type: string;
3000
+ chain_identifier: string;
3001
+ }, {
3002
+ identifier: string;
3003
+ identifier_type: string;
3004
+ chain_identifier: string;
3005
+ }>]>;
3006
+ }, "strip", z.ZodTypeAny, {
3007
+ amount: string;
3008
+ currency: {
3009
+ name: string;
3010
+ } | {
3011
+ identifier: string;
3012
+ identifier_type: string;
3013
+ chain_identifier: string;
3014
+ };
3015
+ }, {
3016
+ amount: string;
3017
+ currency: {
3018
+ name: string;
3019
+ } | {
3020
+ identifier: string;
3021
+ identifier_type: string;
3022
+ chain_identifier: string;
3023
+ };
3024
+ }>>;
3025
+ revenue: z.ZodOptional<z.ZodObject<{
3026
+ amount: z.ZodString;
3027
+ currency: z.ZodUnion<[z.ZodObject<{
3028
+ name: z.ZodString;
3029
+ }, "strip", z.ZodTypeAny, {
3030
+ name: string;
3031
+ }, {
3032
+ name: string;
3033
+ }>, z.ZodObject<{
3034
+ identifier: z.ZodString;
3035
+ identifier_type: z.ZodString;
3036
+ chain_identifier: z.ZodString;
3037
+ }, "strip", z.ZodTypeAny, {
3038
+ identifier: string;
3039
+ identifier_type: string;
3040
+ chain_identifier: string;
3041
+ }, {
3042
+ identifier: string;
3043
+ identifier_type: string;
3044
+ chain_identifier: string;
3045
+ }>]>;
3046
+ }, "strip", z.ZodTypeAny, {
3047
+ amount: string;
3048
+ currency: {
3049
+ name: string;
3050
+ } | {
3051
+ identifier: string;
3052
+ identifier_type: string;
3053
+ chain_identifier: string;
3054
+ };
3055
+ }, {
3056
+ amount: string;
3057
+ currency: {
3058
+ name: string;
3059
+ } | {
3060
+ identifier: string;
3061
+ identifier_type: string;
3062
+ chain_identifier: string;
3063
+ };
3064
+ }>>;
3065
+ }, "strip", z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, z.objectOutputType<{
3066
+ value: z.ZodOptional<z.ZodObject<{
3067
+ amount: z.ZodString;
3068
+ currency: z.ZodUnion<[z.ZodObject<{
3069
+ name: z.ZodString;
3070
+ }, "strip", z.ZodTypeAny, {
3071
+ name: string;
3072
+ }, {
3073
+ name: string;
3074
+ }>, z.ZodObject<{
3075
+ identifier: z.ZodString;
3076
+ identifier_type: z.ZodString;
3077
+ chain_identifier: z.ZodString;
3078
+ }, "strip", z.ZodTypeAny, {
3079
+ identifier: string;
3080
+ identifier_type: string;
3081
+ chain_identifier: string;
3082
+ }, {
3083
+ identifier: string;
3084
+ identifier_type: string;
3085
+ chain_identifier: string;
3086
+ }>]>;
3087
+ }, "strip", z.ZodTypeAny, {
3088
+ amount: string;
3089
+ currency: {
3090
+ name: string;
3091
+ } | {
3092
+ identifier: string;
3093
+ identifier_type: string;
3094
+ chain_identifier: string;
3095
+ };
3096
+ }, {
3097
+ amount: string;
3098
+ currency: {
3099
+ name: string;
3100
+ } | {
3101
+ identifier: string;
3102
+ identifier_type: string;
3103
+ chain_identifier: string;
3104
+ };
3105
+ }>>;
3106
+ revenue: z.ZodOptional<z.ZodObject<{
3107
+ amount: z.ZodString;
3108
+ currency: z.ZodUnion<[z.ZodObject<{
3109
+ name: z.ZodString;
3110
+ }, "strip", z.ZodTypeAny, {
3111
+ name: string;
3112
+ }, {
3113
+ name: string;
3114
+ }>, z.ZodObject<{
3115
+ identifier: z.ZodString;
3116
+ identifier_type: z.ZodString;
3117
+ chain_identifier: z.ZodString;
3118
+ }, "strip", z.ZodTypeAny, {
3119
+ identifier: string;
3120
+ identifier_type: string;
3121
+ chain_identifier: string;
3122
+ }, {
3123
+ identifier: string;
3124
+ identifier_type: string;
3125
+ chain_identifier: string;
3126
+ }>]>;
3127
+ }, "strip", z.ZodTypeAny, {
3128
+ amount: string;
3129
+ currency: {
3130
+ name: string;
3131
+ } | {
3132
+ identifier: string;
3133
+ identifier_type: string;
3134
+ chain_identifier: string;
3135
+ };
3136
+ }, {
3137
+ amount: string;
3138
+ currency: {
3139
+ name: string;
3140
+ } | {
3141
+ identifier: string;
3142
+ identifier_type: string;
3143
+ chain_identifier: string;
3144
+ };
3145
+ }>>;
3146
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">, z.objectInputType<{
3147
+ value: z.ZodOptional<z.ZodObject<{
3148
+ amount: z.ZodString;
3149
+ currency: z.ZodUnion<[z.ZodObject<{
3150
+ name: z.ZodString;
3151
+ }, "strip", z.ZodTypeAny, {
3152
+ name: string;
3153
+ }, {
3154
+ name: string;
3155
+ }>, z.ZodObject<{
3156
+ identifier: z.ZodString;
3157
+ identifier_type: z.ZodString;
3158
+ chain_identifier: z.ZodString;
3159
+ }, "strip", z.ZodTypeAny, {
3160
+ identifier: string;
3161
+ identifier_type: string;
3162
+ chain_identifier: string;
3163
+ }, {
3164
+ identifier: string;
3165
+ identifier_type: string;
3166
+ chain_identifier: string;
3167
+ }>]>;
3168
+ }, "strip", z.ZodTypeAny, {
3169
+ amount: string;
3170
+ currency: {
3171
+ name: string;
3172
+ } | {
3173
+ identifier: string;
3174
+ identifier_type: string;
3175
+ chain_identifier: string;
3176
+ };
3177
+ }, {
3178
+ amount: string;
3179
+ currency: {
3180
+ name: string;
3181
+ } | {
3182
+ identifier: string;
3183
+ identifier_type: string;
3184
+ chain_identifier: string;
3185
+ };
3186
+ }>>;
3187
+ revenue: z.ZodOptional<z.ZodObject<{
3188
+ amount: z.ZodString;
3189
+ currency: z.ZodUnion<[z.ZodObject<{
3190
+ name: z.ZodString;
3191
+ }, "strip", z.ZodTypeAny, {
3192
+ name: string;
3193
+ }, {
3194
+ name: string;
3195
+ }>, z.ZodObject<{
3196
+ identifier: z.ZodString;
3197
+ identifier_type: z.ZodString;
3198
+ chain_identifier: z.ZodString;
3199
+ }, "strip", z.ZodTypeAny, {
3200
+ identifier: string;
3201
+ identifier_type: string;
3202
+ chain_identifier: string;
3203
+ }, {
3204
+ identifier: string;
3205
+ identifier_type: string;
3206
+ chain_identifier: string;
3207
+ }>]>;
3208
+ }, "strip", z.ZodTypeAny, {
3209
+ amount: string;
3210
+ currency: {
3211
+ name: string;
3212
+ } | {
3213
+ identifier: string;
3214
+ identifier_type: string;
3215
+ chain_identifier: string;
3216
+ };
3217
+ }, {
3218
+ amount: string;
3219
+ currency: {
3220
+ name: string;
3221
+ } | {
3222
+ identifier: string;
3223
+ identifier_type: string;
3224
+ chain_identifier: string;
3225
+ };
3226
+ }>>;
3227
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip">>>;
1201
3228
  timestamp: z.ZodOptional<z.ZodNumber>;
1202
3229
  }, "strip", z.ZodTypeAny, {
1203
3230
  name: string;
1204
3231
  user_identifier: string;
1205
3232
  user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1206
3233
  dedup_id: string;
1207
- args?: Record<string, string | number | boolean> | undefined;
3234
+ args?: z.objectOutputType<{
3235
+ value: z.ZodOptional<z.ZodObject<{
3236
+ amount: z.ZodString;
3237
+ currency: z.ZodUnion<[z.ZodObject<{
3238
+ name: z.ZodString;
3239
+ }, "strip", z.ZodTypeAny, {
3240
+ name: string;
3241
+ }, {
3242
+ name: string;
3243
+ }>, z.ZodObject<{
3244
+ identifier: z.ZodString;
3245
+ identifier_type: z.ZodString;
3246
+ chain_identifier: z.ZodString;
3247
+ }, "strip", z.ZodTypeAny, {
3248
+ identifier: string;
3249
+ identifier_type: string;
3250
+ chain_identifier: string;
3251
+ }, {
3252
+ identifier: string;
3253
+ identifier_type: string;
3254
+ chain_identifier: string;
3255
+ }>]>;
3256
+ }, "strip", z.ZodTypeAny, {
3257
+ amount: string;
3258
+ currency: {
3259
+ name: string;
3260
+ } | {
3261
+ identifier: string;
3262
+ identifier_type: string;
3263
+ chain_identifier: string;
3264
+ };
3265
+ }, {
3266
+ amount: string;
3267
+ currency: {
3268
+ name: string;
3269
+ } | {
3270
+ identifier: string;
3271
+ identifier_type: string;
3272
+ chain_identifier: string;
3273
+ };
3274
+ }>>;
3275
+ revenue: z.ZodOptional<z.ZodObject<{
3276
+ amount: z.ZodString;
3277
+ currency: z.ZodUnion<[z.ZodObject<{
3278
+ name: z.ZodString;
3279
+ }, "strip", z.ZodTypeAny, {
3280
+ name: string;
3281
+ }, {
3282
+ name: string;
3283
+ }>, z.ZodObject<{
3284
+ identifier: z.ZodString;
3285
+ identifier_type: z.ZodString;
3286
+ chain_identifier: z.ZodString;
3287
+ }, "strip", z.ZodTypeAny, {
3288
+ identifier: string;
3289
+ identifier_type: string;
3290
+ chain_identifier: string;
3291
+ }, {
3292
+ identifier: string;
3293
+ identifier_type: string;
3294
+ chain_identifier: string;
3295
+ }>]>;
3296
+ }, "strip", z.ZodTypeAny, {
3297
+ amount: string;
3298
+ currency: {
3299
+ name: string;
3300
+ } | {
3301
+ identifier: string;
3302
+ identifier_type: string;
3303
+ chain_identifier: string;
3304
+ };
3305
+ }, {
3306
+ amount: string;
3307
+ currency: {
3308
+ name: string;
3309
+ } | {
3310
+ identifier: string;
3311
+ identifier_type: string;
3312
+ chain_identifier: string;
3313
+ };
3314
+ }>>;
3315
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1208
3316
  timestamp?: number | undefined;
1209
3317
  }, {
1210
3318
  name: string;
1211
3319
  user_identifier: string;
1212
3320
  user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1213
3321
  dedup_id: string;
1214
- args?: Record<string, string | number | boolean> | undefined;
3322
+ args?: z.objectInputType<{
3323
+ value: z.ZodOptional<z.ZodObject<{
3324
+ amount: z.ZodString;
3325
+ currency: z.ZodUnion<[z.ZodObject<{
3326
+ name: z.ZodString;
3327
+ }, "strip", z.ZodTypeAny, {
3328
+ name: string;
3329
+ }, {
3330
+ name: string;
3331
+ }>, z.ZodObject<{
3332
+ identifier: z.ZodString;
3333
+ identifier_type: z.ZodString;
3334
+ chain_identifier: z.ZodString;
3335
+ }, "strip", z.ZodTypeAny, {
3336
+ identifier: string;
3337
+ identifier_type: string;
3338
+ chain_identifier: string;
3339
+ }, {
3340
+ identifier: string;
3341
+ identifier_type: string;
3342
+ chain_identifier: string;
3343
+ }>]>;
3344
+ }, "strip", z.ZodTypeAny, {
3345
+ amount: string;
3346
+ currency: {
3347
+ name: string;
3348
+ } | {
3349
+ identifier: string;
3350
+ identifier_type: string;
3351
+ chain_identifier: string;
3352
+ };
3353
+ }, {
3354
+ amount: string;
3355
+ currency: {
3356
+ name: string;
3357
+ } | {
3358
+ identifier: string;
3359
+ identifier_type: string;
3360
+ chain_identifier: string;
3361
+ };
3362
+ }>>;
3363
+ revenue: z.ZodOptional<z.ZodObject<{
3364
+ amount: z.ZodString;
3365
+ currency: z.ZodUnion<[z.ZodObject<{
3366
+ name: z.ZodString;
3367
+ }, "strip", z.ZodTypeAny, {
3368
+ name: string;
3369
+ }, {
3370
+ name: string;
3371
+ }>, z.ZodObject<{
3372
+ identifier: z.ZodString;
3373
+ identifier_type: z.ZodString;
3374
+ chain_identifier: z.ZodString;
3375
+ }, "strip", z.ZodTypeAny, {
3376
+ identifier: string;
3377
+ identifier_type: string;
3378
+ chain_identifier: string;
3379
+ }, {
3380
+ identifier: string;
3381
+ identifier_type: string;
3382
+ chain_identifier: string;
3383
+ }>]>;
3384
+ }, "strip", z.ZodTypeAny, {
3385
+ amount: string;
3386
+ currency: {
3387
+ name: string;
3388
+ } | {
3389
+ identifier: string;
3390
+ identifier_type: string;
3391
+ chain_identifier: string;
3392
+ };
3393
+ }, {
3394
+ amount: string;
3395
+ currency: {
3396
+ name: string;
3397
+ } | {
3398
+ identifier: string;
3399
+ identifier_type: string;
3400
+ chain_identifier: string;
3401
+ };
3402
+ }>>;
3403
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1215
3404
  timestamp?: number | undefined;
1216
3405
  }>, "many">;
1217
3406
  }, "strip", z.ZodTypeAny, {
@@ -1220,7 +3409,88 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
1220
3409
  user_identifier: string;
1221
3410
  user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1222
3411
  dedup_id: string;
1223
- args?: Record<string, string | number | boolean> | undefined;
3412
+ args?: z.objectOutputType<{
3413
+ value: z.ZodOptional<z.ZodObject<{
3414
+ amount: z.ZodString;
3415
+ currency: z.ZodUnion<[z.ZodObject<{
3416
+ name: z.ZodString;
3417
+ }, "strip", z.ZodTypeAny, {
3418
+ name: string;
3419
+ }, {
3420
+ name: string;
3421
+ }>, z.ZodObject<{
3422
+ identifier: z.ZodString;
3423
+ identifier_type: z.ZodString;
3424
+ chain_identifier: z.ZodString;
3425
+ }, "strip", z.ZodTypeAny, {
3426
+ identifier: string;
3427
+ identifier_type: string;
3428
+ chain_identifier: string;
3429
+ }, {
3430
+ identifier: string;
3431
+ identifier_type: string;
3432
+ chain_identifier: string;
3433
+ }>]>;
3434
+ }, "strip", z.ZodTypeAny, {
3435
+ amount: string;
3436
+ currency: {
3437
+ name: string;
3438
+ } | {
3439
+ identifier: string;
3440
+ identifier_type: string;
3441
+ chain_identifier: string;
3442
+ };
3443
+ }, {
3444
+ amount: string;
3445
+ currency: {
3446
+ name: string;
3447
+ } | {
3448
+ identifier: string;
3449
+ identifier_type: string;
3450
+ chain_identifier: string;
3451
+ };
3452
+ }>>;
3453
+ revenue: z.ZodOptional<z.ZodObject<{
3454
+ amount: z.ZodString;
3455
+ currency: z.ZodUnion<[z.ZodObject<{
3456
+ name: z.ZodString;
3457
+ }, "strip", z.ZodTypeAny, {
3458
+ name: string;
3459
+ }, {
3460
+ name: string;
3461
+ }>, z.ZodObject<{
3462
+ identifier: z.ZodString;
3463
+ identifier_type: z.ZodString;
3464
+ chain_identifier: z.ZodString;
3465
+ }, "strip", z.ZodTypeAny, {
3466
+ identifier: string;
3467
+ identifier_type: string;
3468
+ chain_identifier: string;
3469
+ }, {
3470
+ identifier: string;
3471
+ identifier_type: string;
3472
+ chain_identifier: string;
3473
+ }>]>;
3474
+ }, "strip", z.ZodTypeAny, {
3475
+ amount: string;
3476
+ currency: {
3477
+ name: string;
3478
+ } | {
3479
+ identifier: string;
3480
+ identifier_type: string;
3481
+ chain_identifier: string;
3482
+ };
3483
+ }, {
3484
+ amount: string;
3485
+ currency: {
3486
+ name: string;
3487
+ } | {
3488
+ identifier: string;
3489
+ identifier_type: string;
3490
+ chain_identifier: string;
3491
+ };
3492
+ }>>;
3493
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1224
3494
  timestamp?: number | undefined;
1225
3495
  }[];
1226
3496
  dry_run?: boolean | undefined;
@@ -1232,7 +3502,88 @@ export declare const sendBatchEventsInputSchema: z.ZodObject<{
1232
3502
  user_identifier: string;
1233
3503
  user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email";
1234
3504
  dedup_id: string;
1235
- args?: Record<string, string | number | boolean> | undefined;
3505
+ args?: z.objectInputType<{
3506
+ value: z.ZodOptional<z.ZodObject<{
3507
+ amount: z.ZodString;
3508
+ currency: z.ZodUnion<[z.ZodObject<{
3509
+ name: z.ZodString;
3510
+ }, "strip", z.ZodTypeAny, {
3511
+ name: string;
3512
+ }, {
3513
+ name: string;
3514
+ }>, z.ZodObject<{
3515
+ identifier: z.ZodString;
3516
+ identifier_type: z.ZodString;
3517
+ chain_identifier: z.ZodString;
3518
+ }, "strip", z.ZodTypeAny, {
3519
+ identifier: string;
3520
+ identifier_type: string;
3521
+ chain_identifier: string;
3522
+ }, {
3523
+ identifier: string;
3524
+ identifier_type: string;
3525
+ chain_identifier: string;
3526
+ }>]>;
3527
+ }, "strip", z.ZodTypeAny, {
3528
+ amount: string;
3529
+ currency: {
3530
+ name: string;
3531
+ } | {
3532
+ identifier: string;
3533
+ identifier_type: string;
3534
+ chain_identifier: string;
3535
+ };
3536
+ }, {
3537
+ amount: string;
3538
+ currency: {
3539
+ name: string;
3540
+ } | {
3541
+ identifier: string;
3542
+ identifier_type: string;
3543
+ chain_identifier: string;
3544
+ };
3545
+ }>>;
3546
+ revenue: z.ZodOptional<z.ZodObject<{
3547
+ amount: z.ZodString;
3548
+ currency: z.ZodUnion<[z.ZodObject<{
3549
+ name: z.ZodString;
3550
+ }, "strip", z.ZodTypeAny, {
3551
+ name: string;
3552
+ }, {
3553
+ name: string;
3554
+ }>, z.ZodObject<{
3555
+ identifier: z.ZodString;
3556
+ identifier_type: z.ZodString;
3557
+ chain_identifier: z.ZodString;
3558
+ }, "strip", z.ZodTypeAny, {
3559
+ identifier: string;
3560
+ identifier_type: string;
3561
+ chain_identifier: string;
3562
+ }, {
3563
+ identifier: string;
3564
+ identifier_type: string;
3565
+ chain_identifier: string;
3566
+ }>]>;
3567
+ }, "strip", z.ZodTypeAny, {
3568
+ amount: string;
3569
+ currency: {
3570
+ name: string;
3571
+ } | {
3572
+ identifier: string;
3573
+ identifier_type: string;
3574
+ chain_identifier: string;
3575
+ };
3576
+ }, {
3577
+ amount: string;
3578
+ currency: {
3579
+ name: string;
3580
+ } | {
3581
+ identifier: string;
3582
+ identifier_type: string;
3583
+ chain_identifier: string;
3584
+ };
3585
+ }>>;
3586
+ }, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>, "strip"> | undefined;
1236
3587
  timestamp?: number | undefined;
1237
3588
  }[];
1238
3589
  dry_run?: boolean | undefined;
@@ -1258,4 +3609,229 @@ export declare const checkEventStatusInputSchema: z.ZodObject<{
1258
3609
  project_api_key?: string | undefined;
1259
3610
  }>;
1260
3611
  export type CheckEventStatusInput = z.infer<typeof checkEventStatusInputSchema>;
3612
+ export declare const updateUserReferrerFieldsSchema: z.ZodObject<{
3613
+ project_api_key: z.ZodOptional<z.ZodString>;
3614
+ } & {
3615
+ dry_run: z.ZodOptional<z.ZodBoolean>;
3616
+ confirmed: z.ZodOptional<z.ZodBoolean>;
3617
+ } & {
3618
+ user_identifier: z.ZodString;
3619
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3620
+ referrer_identifier: z.ZodString;
3621
+ referrer_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3622
+ referral_code: z.ZodOptional<z.ZodString>;
3623
+ }, "strip", z.ZodTypeAny, {
3624
+ user_identifier: string;
3625
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3626
+ referrer_identifier: string;
3627
+ referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3628
+ dry_run?: boolean | undefined;
3629
+ confirmed?: boolean | undefined;
3630
+ project_api_key?: string | undefined;
3631
+ referral_code?: string | undefined;
3632
+ }, {
3633
+ user_identifier: string;
3634
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3635
+ referrer_identifier: string;
3636
+ referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3637
+ dry_run?: boolean | undefined;
3638
+ confirmed?: boolean | undefined;
3639
+ project_api_key?: string | undefined;
3640
+ referral_code?: string | undefined;
3641
+ }>;
3642
+ export declare const updateUserReferrerInputSchema: z.ZodObject<{
3643
+ project_api_key: z.ZodOptional<z.ZodString>;
3644
+ } & {
3645
+ dry_run: z.ZodOptional<z.ZodBoolean>;
3646
+ confirmed: z.ZodOptional<z.ZodBoolean>;
3647
+ } & {
3648
+ user_identifier: z.ZodString;
3649
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3650
+ referrer_identifier: z.ZodString;
3651
+ referrer_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3652
+ referral_code: z.ZodOptional<z.ZodString>;
3653
+ }, "strip", z.ZodTypeAny, {
3654
+ user_identifier: string;
3655
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3656
+ referrer_identifier: string;
3657
+ referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3658
+ dry_run?: boolean | undefined;
3659
+ confirmed?: boolean | undefined;
3660
+ project_api_key?: string | undefined;
3661
+ referral_code?: string | undefined;
3662
+ }, {
3663
+ user_identifier: string;
3664
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3665
+ referrer_identifier: string;
3666
+ referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3667
+ dry_run?: boolean | undefined;
3668
+ confirmed?: boolean | undefined;
3669
+ project_api_key?: string | undefined;
3670
+ referral_code?: string | undefined;
3671
+ }>;
3672
+ export type UpdateUserReferrerInput = z.infer<typeof updateUserReferrerInputSchema>;
3673
+ export declare const removeUserFromReferralCodeFieldsSchema: z.ZodObject<{
3674
+ project_api_key: z.ZodOptional<z.ZodString>;
3675
+ } & {
3676
+ dry_run: z.ZodOptional<z.ZodBoolean>;
3677
+ confirmed: z.ZodOptional<z.ZodBoolean>;
3678
+ } & {
3679
+ referral_code: z.ZodString;
3680
+ user_identifier: z.ZodString;
3681
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3682
+ referrer_identifier: z.ZodString;
3683
+ referrer_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3684
+ }, "strip", z.ZodTypeAny, {
3685
+ user_identifier: string;
3686
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3687
+ referrer_identifier: string;
3688
+ referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3689
+ referral_code: string;
3690
+ dry_run?: boolean | undefined;
3691
+ confirmed?: boolean | undefined;
3692
+ project_api_key?: string | undefined;
3693
+ }, {
3694
+ user_identifier: string;
3695
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3696
+ referrer_identifier: string;
3697
+ referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3698
+ referral_code: string;
3699
+ dry_run?: boolean | undefined;
3700
+ confirmed?: boolean | undefined;
3701
+ project_api_key?: string | undefined;
3702
+ }>;
3703
+ export declare const removeUserFromReferralCodeInputSchema: z.ZodObject<{
3704
+ project_api_key: z.ZodOptional<z.ZodString>;
3705
+ } & {
3706
+ dry_run: z.ZodOptional<z.ZodBoolean>;
3707
+ confirmed: z.ZodOptional<z.ZodBoolean>;
3708
+ } & {
3709
+ referral_code: z.ZodString;
3710
+ user_identifier: z.ZodString;
3711
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3712
+ referrer_identifier: z.ZodString;
3713
+ referrer_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3714
+ }, "strip", z.ZodTypeAny, {
3715
+ user_identifier: string;
3716
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3717
+ referrer_identifier: string;
3718
+ referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3719
+ referral_code: string;
3720
+ dry_run?: boolean | undefined;
3721
+ confirmed?: boolean | undefined;
3722
+ project_api_key?: string | undefined;
3723
+ }, {
3724
+ user_identifier: string;
3725
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3726
+ referrer_identifier: string;
3727
+ referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3728
+ referral_code: string;
3729
+ dry_run?: boolean | undefined;
3730
+ confirmed?: boolean | undefined;
3731
+ project_api_key?: string | undefined;
3732
+ }>;
3733
+ export type RemoveUserFromReferralCodeInput = z.infer<typeof removeUserFromReferralCodeInputSchema>;
3734
+ export declare const swapUserReferralCodeFieldsSchema: z.ZodObject<{
3735
+ project_api_key: z.ZodOptional<z.ZodString>;
3736
+ } & {
3737
+ dry_run: z.ZodOptional<z.ZodBoolean>;
3738
+ confirmed: z.ZodOptional<z.ZodBoolean>;
3739
+ } & {
3740
+ user_identifier: z.ZodString;
3741
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3742
+ from_referral_code: z.ZodString;
3743
+ from_referrer_identifier: z.ZodString;
3744
+ from_referrer_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3745
+ to_referrer_identifier: z.ZodString;
3746
+ to_referrer_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3747
+ to_referral_code: z.ZodOptional<z.ZodString>;
3748
+ }, "strip", z.ZodTypeAny, {
3749
+ user_identifier: string;
3750
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3751
+ from_referral_code: string;
3752
+ from_referrer_identifier: string;
3753
+ from_referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3754
+ to_referrer_identifier: string;
3755
+ to_referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3756
+ dry_run?: boolean | undefined;
3757
+ confirmed?: boolean | undefined;
3758
+ project_api_key?: string | undefined;
3759
+ to_referral_code?: string | undefined;
3760
+ }, {
3761
+ user_identifier: string;
3762
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3763
+ from_referral_code: string;
3764
+ from_referrer_identifier: string;
3765
+ from_referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3766
+ to_referrer_identifier: string;
3767
+ to_referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3768
+ dry_run?: boolean | undefined;
3769
+ confirmed?: boolean | undefined;
3770
+ project_api_key?: string | undefined;
3771
+ to_referral_code?: string | undefined;
3772
+ }>;
3773
+ export declare const swapUserReferralCodeInputSchema: z.ZodEffects<z.ZodObject<{
3774
+ project_api_key: z.ZodOptional<z.ZodString>;
3775
+ } & {
3776
+ dry_run: z.ZodOptional<z.ZodBoolean>;
3777
+ confirmed: z.ZodOptional<z.ZodBoolean>;
3778
+ } & {
3779
+ user_identifier: z.ZodString;
3780
+ user_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3781
+ from_referral_code: z.ZodString;
3782
+ from_referrer_identifier: z.ZodString;
3783
+ from_referrer_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3784
+ to_referrer_identifier: z.ZodString;
3785
+ to_referrer_identifier_type: z.ZodEnum<["evm_address", "solana_address", "sui_address", "xrpl_address", "email", "uuid"]>;
3786
+ to_referral_code: z.ZodOptional<z.ZodString>;
3787
+ }, "strip", z.ZodTypeAny, {
3788
+ user_identifier: string;
3789
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3790
+ from_referral_code: string;
3791
+ from_referrer_identifier: string;
3792
+ from_referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3793
+ to_referrer_identifier: string;
3794
+ to_referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3795
+ dry_run?: boolean | undefined;
3796
+ confirmed?: boolean | undefined;
3797
+ project_api_key?: string | undefined;
3798
+ to_referral_code?: string | undefined;
3799
+ }, {
3800
+ user_identifier: string;
3801
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3802
+ from_referral_code: string;
3803
+ from_referrer_identifier: string;
3804
+ from_referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3805
+ to_referrer_identifier: string;
3806
+ to_referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3807
+ dry_run?: boolean | undefined;
3808
+ confirmed?: boolean | undefined;
3809
+ project_api_key?: string | undefined;
3810
+ to_referral_code?: string | undefined;
3811
+ }>, {
3812
+ user_identifier: string;
3813
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3814
+ from_referral_code: string;
3815
+ from_referrer_identifier: string;
3816
+ from_referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3817
+ to_referrer_identifier: string;
3818
+ to_referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3819
+ dry_run?: boolean | undefined;
3820
+ confirmed?: boolean | undefined;
3821
+ project_api_key?: string | undefined;
3822
+ to_referral_code?: string | undefined;
3823
+ }, {
3824
+ user_identifier: string;
3825
+ user_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3826
+ from_referral_code: string;
3827
+ from_referrer_identifier: string;
3828
+ from_referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3829
+ to_referrer_identifier: string;
3830
+ to_referrer_identifier_type: "evm_address" | "solana_address" | "sui_address" | "xrpl_address" | "email" | "uuid";
3831
+ dry_run?: boolean | undefined;
3832
+ confirmed?: boolean | undefined;
3833
+ project_api_key?: string | undefined;
3834
+ to_referral_code?: string | undefined;
3835
+ }>;
3836
+ export type SwapUserReferralCodeInput = z.infer<typeof swapUserReferralCodeInputSchema>;
1261
3837
  //# sourceMappingURL=tool-schemas.d.ts.map