wowok_agent 2.2.5 → 2.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +39 -2
- package/dist/index.d.ts +104 -4
- package/dist/index.js +33 -6
- package/dist/schema/call/arbitration.d.ts +12 -0
- package/dist/schema/call/base.d.ts +15 -0
- package/dist/schema/call/contact.d.ts +12 -0
- package/dist/schema/call/demand.d.ts +12 -0
- package/dist/schema/call/machine.d.ts +12 -0
- package/dist/schema/call/order.d.ts +16 -0
- package/dist/schema/call/permission.d.ts +12 -0
- package/dist/schema/call/repository.d.ts +12 -0
- package/dist/schema/call/reward.d.ts +12 -0
- package/dist/schema/call/service.d.ts +12 -0
- package/dist/schema/call/treasury.d.ts +12 -0
- package/dist/schema/common/index.d.ts +32 -3
- package/dist/schema/common/index.js +4 -2
- package/dist/schema/query/index.d.ts +778 -35
- package/dist/schema/query/index.js +4 -10
- package/package.json +4 -3
|
@@ -1342,12 +1342,15 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
|
|
|
1342
1342
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
1343
1343
|
id: z.ZodString;
|
|
1344
1344
|
type: z.ZodString;
|
|
1345
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
1345
1346
|
}, "strict", z.ZodTypeAny, {
|
|
1346
1347
|
type: string;
|
|
1347
1348
|
id: string;
|
|
1349
|
+
content_raw?: any;
|
|
1348
1350
|
}, {
|
|
1349
1351
|
type: string;
|
|
1350
1352
|
id: string;
|
|
1353
|
+
content_raw?: any;
|
|
1351
1354
|
}>, "many">, z.ZodObject<{
|
|
1352
1355
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1353
1356
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1401,6 +1404,7 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
|
|
|
1401
1404
|
} | "recently" | {
|
|
1402
1405
|
type: string;
|
|
1403
1406
|
id: string;
|
|
1407
|
+
content_raw?: any;
|
|
1404
1408
|
}[] | undefined;
|
|
1405
1409
|
entity?: {
|
|
1406
1410
|
op: "swap";
|
|
@@ -1536,6 +1540,7 @@ export declare const CallPermission_DataSchema: z.ZodObject<{
|
|
|
1536
1540
|
} | "recently" | {
|
|
1537
1541
|
type: string;
|
|
1538
1542
|
id: string;
|
|
1543
|
+
content_raw?: any;
|
|
1539
1544
|
}[] | undefined;
|
|
1540
1545
|
entity?: {
|
|
1541
1546
|
op: "swap";
|
|
@@ -2137,12 +2142,15 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
|
|
|
2137
2142
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
2138
2143
|
id: z.ZodString;
|
|
2139
2144
|
type: z.ZodString;
|
|
2145
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
2140
2146
|
}, "strict", z.ZodTypeAny, {
|
|
2141
2147
|
type: string;
|
|
2142
2148
|
id: string;
|
|
2149
|
+
content_raw?: any;
|
|
2143
2150
|
}, {
|
|
2144
2151
|
type: string;
|
|
2145
2152
|
id: string;
|
|
2153
|
+
content_raw?: any;
|
|
2146
2154
|
}>, "many">, z.ZodObject<{
|
|
2147
2155
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2148
2156
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2196,6 +2204,7 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
|
|
|
2196
2204
|
} | "recently" | {
|
|
2197
2205
|
type: string;
|
|
2198
2206
|
id: string;
|
|
2207
|
+
content_raw?: any;
|
|
2199
2208
|
}[] | undefined;
|
|
2200
2209
|
entity?: {
|
|
2201
2210
|
op: "swap";
|
|
@@ -2331,6 +2340,7 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
|
|
|
2331
2340
|
} | "recently" | {
|
|
2332
2341
|
type: string;
|
|
2333
2342
|
id: string;
|
|
2343
|
+
content_raw?: any;
|
|
2334
2344
|
}[] | undefined;
|
|
2335
2345
|
entity?: {
|
|
2336
2346
|
op: "swap";
|
|
@@ -2667,6 +2677,7 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
|
|
|
2667
2677
|
} | "recently" | {
|
|
2668
2678
|
type: string;
|
|
2669
2679
|
id: string;
|
|
2680
|
+
content_raw?: any;
|
|
2670
2681
|
}[] | undefined;
|
|
2671
2682
|
entity?: {
|
|
2672
2683
|
op: "swap";
|
|
@@ -2838,6 +2849,7 @@ export declare const CallPermission_InputSchema: z.ZodObject<{
|
|
|
2838
2849
|
} | "recently" | {
|
|
2839
2850
|
type: string;
|
|
2840
2851
|
id: string;
|
|
2852
|
+
content_raw?: any;
|
|
2841
2853
|
}[] | undefined;
|
|
2842
2854
|
entity?: {
|
|
2843
2855
|
op: "swap";
|
|
@@ -1092,12 +1092,15 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
|
|
|
1092
1092
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
1093
1093
|
id: z.ZodString;
|
|
1094
1094
|
type: z.ZodString;
|
|
1095
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
1095
1096
|
}, "strict", z.ZodTypeAny, {
|
|
1096
1097
|
type: string;
|
|
1097
1098
|
id: string;
|
|
1099
|
+
content_raw?: any;
|
|
1098
1100
|
}, {
|
|
1099
1101
|
type: string;
|
|
1100
1102
|
id: string;
|
|
1103
|
+
content_raw?: any;
|
|
1101
1104
|
}>, "many">, z.ZodObject<{
|
|
1102
1105
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1103
1106
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1158,6 +1161,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
|
|
|
1158
1161
|
} | "recently" | {
|
|
1159
1162
|
type: string;
|
|
1160
1163
|
id: string;
|
|
1164
|
+
content_raw?: any;
|
|
1161
1165
|
}[] | undefined;
|
|
1162
1166
|
rewards?: {
|
|
1163
1167
|
op: "set" | "add";
|
|
@@ -1245,6 +1249,7 @@ export declare const CallRepository_DataSchema: z.ZodObject<{
|
|
|
1245
1249
|
} | "recently" | {
|
|
1246
1250
|
type: string;
|
|
1247
1251
|
id: string;
|
|
1252
|
+
content_raw?: any;
|
|
1248
1253
|
}[] | undefined;
|
|
1249
1254
|
rewards?: {
|
|
1250
1255
|
op: "set" | "add";
|
|
@@ -1683,12 +1688,15 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
|
|
|
1683
1688
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
1684
1689
|
id: z.ZodString;
|
|
1685
1690
|
type: z.ZodString;
|
|
1691
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
1686
1692
|
}, "strict", z.ZodTypeAny, {
|
|
1687
1693
|
type: string;
|
|
1688
1694
|
id: string;
|
|
1695
|
+
content_raw?: any;
|
|
1689
1696
|
}, {
|
|
1690
1697
|
type: string;
|
|
1691
1698
|
id: string;
|
|
1699
|
+
content_raw?: any;
|
|
1692
1700
|
}>, "many">, z.ZodObject<{
|
|
1693
1701
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1694
1702
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1749,6 +1757,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
|
|
|
1749
1757
|
} | "recently" | {
|
|
1750
1758
|
type: string;
|
|
1751
1759
|
id: string;
|
|
1760
|
+
content_raw?: any;
|
|
1752
1761
|
}[] | undefined;
|
|
1753
1762
|
rewards?: {
|
|
1754
1763
|
op: "set" | "add";
|
|
@@ -1836,6 +1845,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
|
|
|
1836
1845
|
} | "recently" | {
|
|
1837
1846
|
type: string;
|
|
1838
1847
|
id: string;
|
|
1848
|
+
content_raw?: any;
|
|
1839
1849
|
}[] | undefined;
|
|
1840
1850
|
rewards?: {
|
|
1841
1851
|
op: "set" | "add";
|
|
@@ -2124,6 +2134,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
|
|
|
2124
2134
|
} | "recently" | {
|
|
2125
2135
|
type: string;
|
|
2126
2136
|
id: string;
|
|
2137
|
+
content_raw?: any;
|
|
2127
2138
|
}[] | undefined;
|
|
2128
2139
|
rewards?: {
|
|
2129
2140
|
op: "set" | "add";
|
|
@@ -2247,6 +2258,7 @@ export declare const CallRepository_InputSchema: z.ZodObject<{
|
|
|
2247
2258
|
} | "recently" | {
|
|
2248
2259
|
type: string;
|
|
2249
2260
|
id: string;
|
|
2261
|
+
content_raw?: any;
|
|
2250
2262
|
}[] | undefined;
|
|
2251
2263
|
rewards?: {
|
|
2252
2264
|
op: "set" | "add";
|
|
@@ -276,12 +276,15 @@ export declare const CallReward_DataSchema: z.ZodObject<{
|
|
|
276
276
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
277
277
|
id: z.ZodString;
|
|
278
278
|
type: z.ZodString;
|
|
279
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
279
280
|
}, "strict", z.ZodTypeAny, {
|
|
280
281
|
type: string;
|
|
281
282
|
id: string;
|
|
283
|
+
content_raw?: any;
|
|
282
284
|
}, {
|
|
283
285
|
type: string;
|
|
284
286
|
id: string;
|
|
287
|
+
content_raw?: any;
|
|
285
288
|
}>, "many">, z.ZodObject<{
|
|
286
289
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
287
290
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -343,6 +346,7 @@ export declare const CallReward_DataSchema: z.ZodObject<{
|
|
|
343
346
|
} | "recently" | {
|
|
344
347
|
type: string;
|
|
345
348
|
id: string;
|
|
349
|
+
content_raw?: any;
|
|
346
350
|
}[] | undefined;
|
|
347
351
|
um?: string | null | undefined;
|
|
348
352
|
receive?: {
|
|
@@ -411,6 +415,7 @@ export declare const CallReward_DataSchema: z.ZodObject<{
|
|
|
411
415
|
} | "recently" | {
|
|
412
416
|
type: string;
|
|
413
417
|
id: string;
|
|
418
|
+
content_raw?: any;
|
|
414
419
|
}[] | undefined;
|
|
415
420
|
um?: string | null | undefined;
|
|
416
421
|
receive?: {
|
|
@@ -663,12 +668,15 @@ export declare const CallReward_InputSchema: z.ZodObject<{
|
|
|
663
668
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
664
669
|
id: z.ZodString;
|
|
665
670
|
type: z.ZodString;
|
|
671
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
666
672
|
}, "strict", z.ZodTypeAny, {
|
|
667
673
|
type: string;
|
|
668
674
|
id: string;
|
|
675
|
+
content_raw?: any;
|
|
669
676
|
}, {
|
|
670
677
|
type: string;
|
|
671
678
|
id: string;
|
|
679
|
+
content_raw?: any;
|
|
672
680
|
}>, "many">, z.ZodObject<{
|
|
673
681
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
674
682
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -730,6 +738,7 @@ export declare const CallReward_InputSchema: z.ZodObject<{
|
|
|
730
738
|
} | "recently" | {
|
|
731
739
|
type: string;
|
|
732
740
|
id: string;
|
|
741
|
+
content_raw?: any;
|
|
733
742
|
}[] | undefined;
|
|
734
743
|
um?: string | null | undefined;
|
|
735
744
|
receive?: {
|
|
@@ -798,6 +807,7 @@ export declare const CallReward_InputSchema: z.ZodObject<{
|
|
|
798
807
|
} | "recently" | {
|
|
799
808
|
type: string;
|
|
800
809
|
id: string;
|
|
810
|
+
content_raw?: any;
|
|
801
811
|
}[] | undefined;
|
|
802
812
|
um?: string | null | undefined;
|
|
803
813
|
receive?: {
|
|
@@ -1067,6 +1077,7 @@ export declare const CallReward_InputSchema: z.ZodObject<{
|
|
|
1067
1077
|
} | "recently" | {
|
|
1068
1078
|
type: string;
|
|
1069
1079
|
id: string;
|
|
1080
|
+
content_raw?: any;
|
|
1070
1081
|
}[] | undefined;
|
|
1071
1082
|
um?: string | null | undefined;
|
|
1072
1083
|
receive?: {
|
|
@@ -1171,6 +1182,7 @@ export declare const CallReward_InputSchema: z.ZodObject<{
|
|
|
1171
1182
|
} | "recently" | {
|
|
1172
1183
|
type: string;
|
|
1173
1184
|
id: string;
|
|
1185
|
+
content_raw?: any;
|
|
1174
1186
|
}[] | undefined;
|
|
1175
1187
|
um?: string | null | undefined;
|
|
1176
1188
|
receive?: {
|
|
@@ -1227,12 +1227,15 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1227
1227
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
1228
1228
|
id: z.ZodString;
|
|
1229
1229
|
type: z.ZodString;
|
|
1230
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
1230
1231
|
}, "strict", z.ZodTypeAny, {
|
|
1231
1232
|
type: string;
|
|
1232
1233
|
id: string;
|
|
1234
|
+
content_raw?: any;
|
|
1233
1235
|
}, {
|
|
1234
1236
|
type: string;
|
|
1235
1237
|
id: string;
|
|
1238
|
+
content_raw?: any;
|
|
1236
1239
|
}>, "many">, z.ZodObject<{
|
|
1237
1240
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1238
1241
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1297,6 +1300,7 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1297
1300
|
} | "recently" | {
|
|
1298
1301
|
type: string;
|
|
1299
1302
|
id: string;
|
|
1303
|
+
content_raw?: any;
|
|
1300
1304
|
}[] | undefined;
|
|
1301
1305
|
rewards?: {
|
|
1302
1306
|
op: "set" | "add";
|
|
@@ -1488,6 +1492,7 @@ export declare const CallService_DataSchema: z.ZodObject<{
|
|
|
1488
1492
|
} | "recently" | {
|
|
1489
1493
|
type: string;
|
|
1490
1494
|
id: string;
|
|
1495
|
+
content_raw?: any;
|
|
1491
1496
|
}[] | undefined;
|
|
1492
1497
|
rewards?: {
|
|
1493
1498
|
op: "set" | "add";
|
|
@@ -2401,12 +2406,15 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2401
2406
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
2402
2407
|
id: z.ZodString;
|
|
2403
2408
|
type: z.ZodString;
|
|
2409
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
2404
2410
|
}, "strict", z.ZodTypeAny, {
|
|
2405
2411
|
type: string;
|
|
2406
2412
|
id: string;
|
|
2413
|
+
content_raw?: any;
|
|
2407
2414
|
}, {
|
|
2408
2415
|
type: string;
|
|
2409
2416
|
id: string;
|
|
2417
|
+
content_raw?: any;
|
|
2410
2418
|
}>, "many">, z.ZodObject<{
|
|
2411
2419
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2412
2420
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2471,6 +2479,7 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2471
2479
|
} | "recently" | {
|
|
2472
2480
|
type: string;
|
|
2473
2481
|
id: string;
|
|
2482
|
+
content_raw?: any;
|
|
2474
2483
|
}[] | undefined;
|
|
2475
2484
|
rewards?: {
|
|
2476
2485
|
op: "set" | "add";
|
|
@@ -2662,6 +2671,7 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
2662
2671
|
} | "recently" | {
|
|
2663
2672
|
type: string;
|
|
2664
2673
|
id: string;
|
|
2674
|
+
content_raw?: any;
|
|
2665
2675
|
}[] | undefined;
|
|
2666
2676
|
rewards?: {
|
|
2667
2677
|
op: "set" | "add";
|
|
@@ -3054,6 +3064,7 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
3054
3064
|
} | "recently" | {
|
|
3055
3065
|
type: string;
|
|
3056
3066
|
id: string;
|
|
3067
|
+
content_raw?: any;
|
|
3057
3068
|
}[] | undefined;
|
|
3058
3069
|
rewards?: {
|
|
3059
3070
|
op: "set" | "add";
|
|
@@ -3281,6 +3292,7 @@ export declare const CallService_InputSchema: z.ZodObject<{
|
|
|
3281
3292
|
} | "recently" | {
|
|
3282
3293
|
type: string;
|
|
3283
3294
|
id: string;
|
|
3295
|
+
content_raw?: any;
|
|
3284
3296
|
}[] | undefined;
|
|
3285
3297
|
rewards?: {
|
|
3286
3298
|
op: "set" | "add";
|
|
@@ -762,12 +762,15 @@ export declare const CallTreasury_DataSchema: z.ZodObject<{
|
|
|
762
762
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
763
763
|
id: z.ZodString;
|
|
764
764
|
type: z.ZodString;
|
|
765
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
765
766
|
}, "strict", z.ZodTypeAny, {
|
|
766
767
|
type: string;
|
|
767
768
|
id: string;
|
|
769
|
+
content_raw?: any;
|
|
768
770
|
}, {
|
|
769
771
|
type: string;
|
|
770
772
|
id: string;
|
|
773
|
+
content_raw?: any;
|
|
771
774
|
}>, "many">, z.ZodObject<{
|
|
772
775
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
773
776
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -844,6 +847,7 @@ export declare const CallTreasury_DataSchema: z.ZodObject<{
|
|
|
844
847
|
} | "recently" | {
|
|
845
848
|
type: string;
|
|
846
849
|
id: string;
|
|
850
|
+
content_raw?: any;
|
|
847
851
|
}[] | undefined;
|
|
848
852
|
um?: {
|
|
849
853
|
name?: string | undefined;
|
|
@@ -970,6 +974,7 @@ export declare const CallTreasury_DataSchema: z.ZodObject<{
|
|
|
970
974
|
} | "recently" | {
|
|
971
975
|
type: string;
|
|
972
976
|
id: string;
|
|
977
|
+
content_raw?: any;
|
|
973
978
|
}[] | undefined;
|
|
974
979
|
um?: {
|
|
975
980
|
name?: string | undefined;
|
|
@@ -1499,12 +1504,15 @@ export declare const CallTreasury_InputSchema: z.ZodObject<{
|
|
|
1499
1504
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
1500
1505
|
id: z.ZodString;
|
|
1501
1506
|
type: z.ZodString;
|
|
1507
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
1502
1508
|
}, "strict", z.ZodTypeAny, {
|
|
1503
1509
|
type: string;
|
|
1504
1510
|
id: string;
|
|
1511
|
+
content_raw?: any;
|
|
1505
1512
|
}, {
|
|
1506
1513
|
type: string;
|
|
1507
1514
|
id: string;
|
|
1515
|
+
content_raw?: any;
|
|
1508
1516
|
}>, "many">, z.ZodObject<{
|
|
1509
1517
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
1510
1518
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1581,6 +1589,7 @@ export declare const CallTreasury_InputSchema: z.ZodObject<{
|
|
|
1581
1589
|
} | "recently" | {
|
|
1582
1590
|
type: string;
|
|
1583
1591
|
id: string;
|
|
1592
|
+
content_raw?: any;
|
|
1584
1593
|
}[] | undefined;
|
|
1585
1594
|
um?: {
|
|
1586
1595
|
name?: string | undefined;
|
|
@@ -1707,6 +1716,7 @@ export declare const CallTreasury_InputSchema: z.ZodObject<{
|
|
|
1707
1716
|
} | "recently" | {
|
|
1708
1717
|
type: string;
|
|
1709
1718
|
id: string;
|
|
1719
|
+
content_raw?: any;
|
|
1710
1720
|
}[] | undefined;
|
|
1711
1721
|
um?: {
|
|
1712
1722
|
name?: string | undefined;
|
|
@@ -2034,6 +2044,7 @@ export declare const CallTreasury_InputSchema: z.ZodObject<{
|
|
|
2034
2044
|
} | "recently" | {
|
|
2035
2045
|
type: string;
|
|
2036
2046
|
id: string;
|
|
2047
|
+
content_raw?: any;
|
|
2037
2048
|
}[] | undefined;
|
|
2038
2049
|
um?: {
|
|
2039
2050
|
name?: string | undefined;
|
|
@@ -2196,6 +2207,7 @@ export declare const CallTreasury_InputSchema: z.ZodObject<{
|
|
|
2196
2207
|
} | "recently" | {
|
|
2197
2208
|
type: string;
|
|
2198
2209
|
id: string;
|
|
2210
|
+
content_raw?: any;
|
|
2199
2211
|
}[] | undefined;
|
|
2200
2212
|
um?: {
|
|
2201
2213
|
name?: string | undefined;
|
|
@@ -408,6 +408,7 @@ export declare const ObjectBaseSchema: z.ZodObject<{
|
|
|
408
408
|
previousTransaction: z.ZodOptional<z.ZodString>;
|
|
409
409
|
cache_expire: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"INFINITE">]>>;
|
|
410
410
|
query_name: z.ZodOptional<z.ZodString>;
|
|
411
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
411
412
|
_guard_node_comments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
412
413
|
type: z.ZodString;
|
|
413
414
|
description: z.ZodString;
|
|
@@ -476,6 +477,7 @@ export declare const ObjectBaseSchema: z.ZodObject<{
|
|
|
476
477
|
previousTransaction: z.ZodOptional<z.ZodString>;
|
|
477
478
|
cache_expire: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"INFINITE">]>>;
|
|
478
479
|
query_name: z.ZodOptional<z.ZodString>;
|
|
480
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
479
481
|
_guard_node_comments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
480
482
|
type: z.ZodString;
|
|
481
483
|
description: z.ZodString;
|
|
@@ -544,6 +546,7 @@ export declare const ObjectBaseSchema: z.ZodObject<{
|
|
|
544
546
|
previousTransaction: z.ZodOptional<z.ZodString>;
|
|
545
547
|
cache_expire: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"INFINITE">]>>;
|
|
546
548
|
query_name: z.ZodOptional<z.ZodString>;
|
|
549
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
547
550
|
_guard_node_comments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
548
551
|
type: z.ZodString;
|
|
549
552
|
description: z.ZodString;
|
|
@@ -569,19 +572,34 @@ export declare const QueryReceivedSchema: z.ZodObject<{
|
|
|
569
572
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
570
573
|
network: z.ZodOptional<z.ZodEnum<[ENTRYPOINT.Localnet, ENTRYPOINT.Testnet]>>;
|
|
571
574
|
} & {
|
|
572
|
-
|
|
575
|
+
name_or_address: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
576
|
+
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
577
|
+
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
578
|
+
}, "strict", z.ZodTypeAny, {
|
|
579
|
+
name_or_address?: string | undefined;
|
|
580
|
+
local_mark_first?: boolean | undefined;
|
|
581
|
+
}, {
|
|
582
|
+
name_or_address?: string | undefined;
|
|
583
|
+
local_mark_first?: boolean | undefined;
|
|
584
|
+
}>]>;
|
|
573
585
|
all_type: z.ZodOptional<z.ZodBoolean>;
|
|
574
586
|
cursor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
575
587
|
limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
576
588
|
}, "strict", z.ZodTypeAny, {
|
|
577
|
-
|
|
589
|
+
name_or_address: string | {
|
|
590
|
+
name_or_address?: string | undefined;
|
|
591
|
+
local_mark_first?: boolean | undefined;
|
|
592
|
+
};
|
|
578
593
|
no_cache?: boolean | undefined;
|
|
579
594
|
network?: ENTRYPOINT | undefined;
|
|
580
595
|
all_type?: boolean | undefined;
|
|
581
596
|
cursor?: string | null | undefined;
|
|
582
597
|
limit?: number | null | undefined;
|
|
583
598
|
}, {
|
|
584
|
-
|
|
599
|
+
name_or_address: string | {
|
|
600
|
+
name_or_address?: string | undefined;
|
|
601
|
+
local_mark_first?: boolean | undefined;
|
|
602
|
+
};
|
|
585
603
|
no_cache?: boolean | undefined;
|
|
586
604
|
network?: ENTRYPOINT | undefined;
|
|
587
605
|
all_type?: boolean | undefined;
|
|
@@ -671,22 +689,28 @@ export declare const ReceivedBalanceOrRecentlySchema: z.ZodUnion<[z.ZodObject<{
|
|
|
671
689
|
export declare const ReceivedNormalSchema: z.ZodObject<{
|
|
672
690
|
id: z.ZodString;
|
|
673
691
|
type: z.ZodString;
|
|
692
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
674
693
|
}, "strict", z.ZodTypeAny, {
|
|
675
694
|
type: string;
|
|
676
695
|
id: string;
|
|
696
|
+
content_raw?: any;
|
|
677
697
|
}, {
|
|
678
698
|
type: string;
|
|
679
699
|
id: string;
|
|
700
|
+
content_raw?: any;
|
|
680
701
|
}>;
|
|
681
702
|
export declare const ReceivedObjectsOrRecentlySchema: z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
682
703
|
id: z.ZodString;
|
|
683
704
|
type: z.ZodString;
|
|
705
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
684
706
|
}, "strict", z.ZodTypeAny, {
|
|
685
707
|
type: string;
|
|
686
708
|
id: string;
|
|
709
|
+
content_raw?: any;
|
|
687
710
|
}, {
|
|
688
711
|
type: string;
|
|
689
712
|
id: string;
|
|
713
|
+
content_raw?: any;
|
|
690
714
|
}>, "many">, z.ZodObject<{
|
|
691
715
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
692
716
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -756,12 +780,15 @@ export declare const QueryReceivedResultSchema: z.ZodObject<{
|
|
|
756
780
|
}>, z.ZodArray<z.ZodObject<{
|
|
757
781
|
id: z.ZodString;
|
|
758
782
|
type: z.ZodString;
|
|
783
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
759
784
|
}, "strict", z.ZodTypeAny, {
|
|
760
785
|
type: string;
|
|
761
786
|
id: string;
|
|
787
|
+
content_raw?: any;
|
|
762
788
|
}, {
|
|
763
789
|
type: string;
|
|
764
790
|
id: string;
|
|
791
|
+
content_raw?: any;
|
|
765
792
|
}>, "many">]>;
|
|
766
793
|
}, "strict", z.ZodTypeAny, {
|
|
767
794
|
result: {
|
|
@@ -775,6 +802,7 @@ export declare const QueryReceivedResultSchema: z.ZodObject<{
|
|
|
775
802
|
} | {
|
|
776
803
|
type: string;
|
|
777
804
|
id: string;
|
|
805
|
+
content_raw?: any;
|
|
778
806
|
}[];
|
|
779
807
|
}, {
|
|
780
808
|
result: {
|
|
@@ -788,6 +816,7 @@ export declare const QueryReceivedResultSchema: z.ZodObject<{
|
|
|
788
816
|
} | {
|
|
789
817
|
type: string;
|
|
790
818
|
id: string;
|
|
819
|
+
content_raw?: any;
|
|
791
820
|
}[];
|
|
792
821
|
}>;
|
|
793
822
|
export type WowAddress = z.infer<typeof WowAddressSchema>;
|
|
@@ -262,6 +262,7 @@ export const ObjectBaseSchema = z.object({
|
|
|
262
262
|
previousTransaction: z.string().optional().describe("Previous transaction ID"),
|
|
263
263
|
cache_expire: CacheExpireTypeSchema.optional().describe("Cache expiration time"),
|
|
264
264
|
query_name: z.string().optional().describe("Original query name or address used to retrieve this object"),
|
|
265
|
+
content_raw: z.any().optional().describe("Raw content data for unknown object types"),
|
|
265
266
|
_guard_node_comments: z.array(z.object({
|
|
266
267
|
type: z.string(),
|
|
267
268
|
description: z.string()
|
|
@@ -272,7 +273,7 @@ export const QueryEnvSchema = z.object({
|
|
|
272
273
|
network: EntrypointSchema.optional(),
|
|
273
274
|
}).strict().describe("Query environment parameters");
|
|
274
275
|
export const QueryReceivedSchema = QueryEnvSchema.extend({
|
|
275
|
-
|
|
276
|
+
name_or_address: AccountOrMark_AddressAISchema,
|
|
276
277
|
all_type: z.boolean().optional().describe("Whether to query all types of received objects"),
|
|
277
278
|
cursor: z.union([z.string(), z.null()]).optional().describe("Pagination cursor"),
|
|
278
279
|
limit: z.union([z.number(), z.null()]).optional().describe("Number of records returned per page"),
|
|
@@ -330,7 +331,8 @@ export const ReceivedBalanceOrRecentlySchema = z.union([
|
|
|
330
331
|
]).describe("Specified received balance record or all recently received balance record");
|
|
331
332
|
export const ReceivedNormalSchema = z.object({
|
|
332
333
|
id: z.string().nonempty().describe("Received object ID"),
|
|
333
|
-
type: z.string().nonempty().describe("Object type")
|
|
334
|
+
type: z.string().nonempty().describe("Object type"),
|
|
335
|
+
content_raw: z.any().optional().describe("Raw content data")
|
|
334
336
|
}).strict().describe("Received normal object record");
|
|
335
337
|
export const ReceivedObjectsOrRecentlySchema = z.union([
|
|
336
338
|
z.array(ReceivedNormalSchema),
|