wowok_agent 2.2.4 → 2.2.6
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 +111 -1
- package/dist/index.d.ts +104 -4
- package/dist/index.js +79 -7
- 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 +5 -11
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -751,12 +751,15 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
751
751
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
752
752
|
id: z.ZodString;
|
|
753
753
|
type: z.ZodString;
|
|
754
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
754
755
|
}, "strict", z.ZodTypeAny, {
|
|
755
756
|
type: string;
|
|
756
757
|
id: string;
|
|
758
|
+
content_raw?: any;
|
|
757
759
|
}, {
|
|
758
760
|
type: string;
|
|
759
761
|
id: string;
|
|
762
|
+
content_raw?: any;
|
|
760
763
|
}>, "many">, z.ZodObject<{
|
|
761
764
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
762
765
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -821,6 +824,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
821
824
|
} | "recently" | {
|
|
822
825
|
type: string;
|
|
823
826
|
id: string;
|
|
827
|
+
content_raw?: any;
|
|
824
828
|
}[] | undefined;
|
|
825
829
|
rewards?: {
|
|
826
830
|
op: "set" | "add";
|
|
@@ -1012,6 +1016,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
1012
1016
|
} | "recently" | {
|
|
1013
1017
|
type: string;
|
|
1014
1018
|
id: string;
|
|
1019
|
+
content_raw?: any;
|
|
1015
1020
|
}[] | undefined;
|
|
1016
1021
|
rewards?: {
|
|
1017
1022
|
op: "set" | "add";
|
|
@@ -1404,6 +1409,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
1404
1409
|
} | "recently" | {
|
|
1405
1410
|
type: string;
|
|
1406
1411
|
id: string;
|
|
1412
|
+
content_raw?: any;
|
|
1407
1413
|
}[] | undefined;
|
|
1408
1414
|
rewards?: {
|
|
1409
1415
|
op: "set" | "add";
|
|
@@ -1632,6 +1638,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
1632
1638
|
} | "recently" | {
|
|
1633
1639
|
type: string;
|
|
1634
1640
|
id: string;
|
|
1641
|
+
content_raw?: any;
|
|
1635
1642
|
}[] | undefined;
|
|
1636
1643
|
rewards?: {
|
|
1637
1644
|
op: "set" | "add";
|
|
@@ -2517,12 +2524,15 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
2517
2524
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
2518
2525
|
id: z.ZodString;
|
|
2519
2526
|
type: z.ZodString;
|
|
2527
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
2520
2528
|
}, "strict", z.ZodTypeAny, {
|
|
2521
2529
|
type: string;
|
|
2522
2530
|
id: string;
|
|
2531
|
+
content_raw?: any;
|
|
2523
2532
|
}, {
|
|
2524
2533
|
type: string;
|
|
2525
2534
|
id: string;
|
|
2535
|
+
content_raw?: any;
|
|
2526
2536
|
}>, "many">, z.ZodObject<{
|
|
2527
2537
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
2528
2538
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2583,6 +2593,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
2583
2593
|
} | "recently" | {
|
|
2584
2594
|
type: string;
|
|
2585
2595
|
id: string;
|
|
2596
|
+
content_raw?: any;
|
|
2586
2597
|
}[] | undefined;
|
|
2587
2598
|
um?: string | null | undefined;
|
|
2588
2599
|
node?: {
|
|
@@ -2733,6 +2744,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
2733
2744
|
} | "recently" | {
|
|
2734
2745
|
type: string;
|
|
2735
2746
|
id: string;
|
|
2747
|
+
content_raw?: any;
|
|
2736
2748
|
}[] | undefined;
|
|
2737
2749
|
um?: string | null | undefined;
|
|
2738
2750
|
node?: {
|
|
@@ -3084,6 +3096,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
3084
3096
|
} | "recently" | {
|
|
3085
3097
|
type: string;
|
|
3086
3098
|
id: string;
|
|
3099
|
+
content_raw?: any;
|
|
3087
3100
|
}[] | undefined;
|
|
3088
3101
|
um?: string | null | undefined;
|
|
3089
3102
|
node?: {
|
|
@@ -3271,6 +3284,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
3271
3284
|
} | "recently" | {
|
|
3272
3285
|
type: string;
|
|
3273
3286
|
id: string;
|
|
3287
|
+
content_raw?: any;
|
|
3274
3288
|
}[] | undefined;
|
|
3275
3289
|
um?: string | null | undefined;
|
|
3276
3290
|
node?: {
|
|
@@ -4320,12 +4334,15 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4320
4334
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
4321
4335
|
id: z.ZodString;
|
|
4322
4336
|
type: z.ZodString;
|
|
4337
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
4323
4338
|
}, "strict", z.ZodTypeAny, {
|
|
4324
4339
|
type: string;
|
|
4325
4340
|
id: string;
|
|
4341
|
+
content_raw?: any;
|
|
4326
4342
|
}, {
|
|
4327
4343
|
type: string;
|
|
4328
4344
|
id: string;
|
|
4345
|
+
content_raw?: any;
|
|
4329
4346
|
}>, "many">, z.ZodObject<{
|
|
4330
4347
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
4331
4348
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -4386,6 +4403,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4386
4403
|
} | "recently" | {
|
|
4387
4404
|
type: string;
|
|
4388
4405
|
id: string;
|
|
4406
|
+
content_raw?: any;
|
|
4389
4407
|
}[] | undefined;
|
|
4390
4408
|
rewards?: {
|
|
4391
4409
|
op: "set" | "add";
|
|
@@ -4473,6 +4491,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4473
4491
|
} | "recently" | {
|
|
4474
4492
|
type: string;
|
|
4475
4493
|
id: string;
|
|
4494
|
+
content_raw?: any;
|
|
4476
4495
|
}[] | undefined;
|
|
4477
4496
|
rewards?: {
|
|
4478
4497
|
op: "set" | "add";
|
|
@@ -4761,6 +4780,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4761
4780
|
} | "recently" | {
|
|
4762
4781
|
type: string;
|
|
4763
4782
|
id: string;
|
|
4783
|
+
content_raw?: any;
|
|
4764
4784
|
}[] | undefined;
|
|
4765
4785
|
rewards?: {
|
|
4766
4786
|
op: "set" | "add";
|
|
@@ -4885,6 +4905,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
4885
4905
|
} | "recently" | {
|
|
4886
4906
|
type: string;
|
|
4887
4907
|
id: string;
|
|
4908
|
+
content_raw?: any;
|
|
4888
4909
|
}[] | undefined;
|
|
4889
4910
|
rewards?: {
|
|
4890
4911
|
op: "set" | "add";
|
|
@@ -5314,12 +5335,15 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
5314
5335
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
5315
5336
|
id: z.ZodString;
|
|
5316
5337
|
type: z.ZodString;
|
|
5338
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
5317
5339
|
}, "strict", z.ZodTypeAny, {
|
|
5318
5340
|
type: string;
|
|
5319
5341
|
id: string;
|
|
5342
|
+
content_raw?: any;
|
|
5320
5343
|
}, {
|
|
5321
5344
|
type: string;
|
|
5322
5345
|
id: string;
|
|
5346
|
+
content_raw?: any;
|
|
5323
5347
|
}>, "many">, z.ZodObject<{
|
|
5324
5348
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
5325
5349
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -5386,6 +5410,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
5386
5410
|
} | "recently" | {
|
|
5387
5411
|
type: string;
|
|
5388
5412
|
id: string;
|
|
5413
|
+
content_raw?: any;
|
|
5389
5414
|
}[] | undefined;
|
|
5390
5415
|
um?: string | null | undefined;
|
|
5391
5416
|
dispute?: {
|
|
@@ -5495,6 +5520,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
5495
5520
|
} | "recently" | {
|
|
5496
5521
|
type: string;
|
|
5497
5522
|
id: string;
|
|
5523
|
+
content_raw?: any;
|
|
5498
5524
|
}[] | undefined;
|
|
5499
5525
|
um?: string | null | undefined;
|
|
5500
5526
|
dispute?: {
|
|
@@ -5805,6 +5831,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
5805
5831
|
} | "recently" | {
|
|
5806
5832
|
type: string;
|
|
5807
5833
|
id: string;
|
|
5834
|
+
content_raw?: any;
|
|
5808
5835
|
}[] | undefined;
|
|
5809
5836
|
um?: string | null | undefined;
|
|
5810
5837
|
dispute?: {
|
|
@@ -5951,6 +5978,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
5951
5978
|
} | "recently" | {
|
|
5952
5979
|
type: string;
|
|
5953
5980
|
id: string;
|
|
5981
|
+
content_raw?: any;
|
|
5954
5982
|
}[] | undefined;
|
|
5955
5983
|
um?: string | null | undefined;
|
|
5956
5984
|
dispute?: {
|
|
@@ -6188,12 +6216,15 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
6188
6216
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
6189
6217
|
id: z.ZodString;
|
|
6190
6218
|
type: z.ZodString;
|
|
6219
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
6191
6220
|
}, "strict", z.ZodTypeAny, {
|
|
6192
6221
|
type: string;
|
|
6193
6222
|
id: string;
|
|
6223
|
+
content_raw?: any;
|
|
6194
6224
|
}, {
|
|
6195
6225
|
type: string;
|
|
6196
6226
|
id: string;
|
|
6227
|
+
content_raw?: any;
|
|
6197
6228
|
}>, "many">, z.ZodObject<{
|
|
6198
6229
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
6199
6230
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -6273,6 +6304,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
6273
6304
|
} | "recently" | {
|
|
6274
6305
|
type: string;
|
|
6275
6306
|
id: string;
|
|
6307
|
+
content_raw?: any;
|
|
6276
6308
|
}[] | undefined;
|
|
6277
6309
|
}, {
|
|
6278
6310
|
object: string | {
|
|
@@ -6320,6 +6352,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
6320
6352
|
} | "recently" | {
|
|
6321
6353
|
type: string;
|
|
6322
6354
|
id: string;
|
|
6355
|
+
content_raw?: any;
|
|
6323
6356
|
}[] | undefined;
|
|
6324
6357
|
}>;
|
|
6325
6358
|
env: z.ZodOptional<z.ZodObject<{
|
|
@@ -6568,6 +6601,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
6568
6601
|
} | "recently" | {
|
|
6569
6602
|
type: string;
|
|
6570
6603
|
id: string;
|
|
6604
|
+
content_raw?: any;
|
|
6571
6605
|
}[] | undefined;
|
|
6572
6606
|
};
|
|
6573
6607
|
operation_type: "contact";
|
|
@@ -6652,6 +6686,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
6652
6686
|
} | "recently" | {
|
|
6653
6687
|
type: string;
|
|
6654
6688
|
id: string;
|
|
6689
|
+
content_raw?: any;
|
|
6655
6690
|
}[] | undefined;
|
|
6656
6691
|
};
|
|
6657
6692
|
operation_type: "contact";
|
|
@@ -7119,12 +7154,15 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
7119
7154
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
7120
7155
|
id: z.ZodString;
|
|
7121
7156
|
type: z.ZodString;
|
|
7157
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
7122
7158
|
}, "strict", z.ZodTypeAny, {
|
|
7123
7159
|
type: string;
|
|
7124
7160
|
id: string;
|
|
7161
|
+
content_raw?: any;
|
|
7125
7162
|
}, {
|
|
7126
7163
|
type: string;
|
|
7127
7164
|
id: string;
|
|
7165
|
+
content_raw?: any;
|
|
7128
7166
|
}>, "many">, z.ZodObject<{
|
|
7129
7167
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
7130
7168
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -7201,6 +7239,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
7201
7239
|
} | "recently" | {
|
|
7202
7240
|
type: string;
|
|
7203
7241
|
id: string;
|
|
7242
|
+
content_raw?: any;
|
|
7204
7243
|
}[] | undefined;
|
|
7205
7244
|
um?: {
|
|
7206
7245
|
name?: string | undefined;
|
|
@@ -7327,6 +7366,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
7327
7366
|
} | "recently" | {
|
|
7328
7367
|
type: string;
|
|
7329
7368
|
id: string;
|
|
7369
|
+
content_raw?: any;
|
|
7330
7370
|
}[] | undefined;
|
|
7331
7371
|
um?: {
|
|
7332
7372
|
name?: string | undefined;
|
|
@@ -7654,6 +7694,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
7654
7694
|
} | "recently" | {
|
|
7655
7695
|
type: string;
|
|
7656
7696
|
id: string;
|
|
7697
|
+
content_raw?: any;
|
|
7657
7698
|
}[] | undefined;
|
|
7658
7699
|
um?: {
|
|
7659
7700
|
name?: string | undefined;
|
|
@@ -7817,6 +7858,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
7817
7858
|
} | "recently" | {
|
|
7818
7859
|
type: string;
|
|
7819
7860
|
id: string;
|
|
7861
|
+
content_raw?: any;
|
|
7820
7862
|
}[] | undefined;
|
|
7821
7863
|
um?: {
|
|
7822
7864
|
name?: string | undefined;
|
|
@@ -8163,12 +8205,15 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
8163
8205
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
8164
8206
|
id: z.ZodString;
|
|
8165
8207
|
type: z.ZodString;
|
|
8208
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
8166
8209
|
}, "strict", z.ZodTypeAny, {
|
|
8167
8210
|
type: string;
|
|
8168
8211
|
id: string;
|
|
8212
|
+
content_raw?: any;
|
|
8169
8213
|
}, {
|
|
8170
8214
|
type: string;
|
|
8171
8215
|
id: string;
|
|
8216
|
+
content_raw?: any;
|
|
8172
8217
|
}>, "many">, z.ZodObject<{
|
|
8173
8218
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
8174
8219
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -8230,6 +8275,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
8230
8275
|
} | "recently" | {
|
|
8231
8276
|
type: string;
|
|
8232
8277
|
id: string;
|
|
8278
|
+
content_raw?: any;
|
|
8233
8279
|
}[] | undefined;
|
|
8234
8280
|
um?: string | null | undefined;
|
|
8235
8281
|
receive?: {
|
|
@@ -8298,6 +8344,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
8298
8344
|
} | "recently" | {
|
|
8299
8345
|
type: string;
|
|
8300
8346
|
id: string;
|
|
8347
|
+
content_raw?: any;
|
|
8301
8348
|
}[] | undefined;
|
|
8302
8349
|
um?: string | null | undefined;
|
|
8303
8350
|
receive?: {
|
|
@@ -8567,6 +8614,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
8567
8614
|
} | "recently" | {
|
|
8568
8615
|
type: string;
|
|
8569
8616
|
id: string;
|
|
8617
|
+
content_raw?: any;
|
|
8570
8618
|
}[] | undefined;
|
|
8571
8619
|
um?: string | null | undefined;
|
|
8572
8620
|
receive?: {
|
|
@@ -8672,6 +8720,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
8672
8720
|
} | "recently" | {
|
|
8673
8721
|
type: string;
|
|
8674
8722
|
id: string;
|
|
8723
|
+
content_raw?: any;
|
|
8675
8724
|
}[] | undefined;
|
|
8676
8725
|
um?: string | null | undefined;
|
|
8677
8726
|
receive?: {
|
|
@@ -9965,12 +10014,15 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
9965
10014
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
9966
10015
|
id: z.ZodString;
|
|
9967
10016
|
type: z.ZodString;
|
|
10017
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
9968
10018
|
}, "strict", z.ZodTypeAny, {
|
|
9969
10019
|
type: string;
|
|
9970
10020
|
id: string;
|
|
10021
|
+
content_raw?: any;
|
|
9971
10022
|
}, {
|
|
9972
10023
|
type: string;
|
|
9973
10024
|
id: string;
|
|
10025
|
+
content_raw?: any;
|
|
9974
10026
|
}>, "many">, z.ZodObject<{
|
|
9975
10027
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
9976
10028
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -10024,6 +10076,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
10024
10076
|
} | "recently" | {
|
|
10025
10077
|
type: string;
|
|
10026
10078
|
id: string;
|
|
10079
|
+
content_raw?: any;
|
|
10027
10080
|
}[] | undefined;
|
|
10028
10081
|
entity?: {
|
|
10029
10082
|
op: "swap";
|
|
@@ -10159,6 +10212,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
10159
10212
|
} | "recently" | {
|
|
10160
10213
|
type: string;
|
|
10161
10214
|
id: string;
|
|
10215
|
+
content_raw?: any;
|
|
10162
10216
|
}[] | undefined;
|
|
10163
10217
|
entity?: {
|
|
10164
10218
|
op: "swap";
|
|
@@ -10315,6 +10369,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
10315
10369
|
} | "recently" | {
|
|
10316
10370
|
type: string;
|
|
10317
10371
|
id: string;
|
|
10372
|
+
content_raw?: any;
|
|
10318
10373
|
}[] | undefined;
|
|
10319
10374
|
entity?: {
|
|
10320
10375
|
op: "swap";
|
|
@@ -10460,6 +10515,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
10460
10515
|
} | "recently" | {
|
|
10461
10516
|
type: string;
|
|
10462
10517
|
id: string;
|
|
10518
|
+
content_raw?: any;
|
|
10463
10519
|
}[] | undefined;
|
|
10464
10520
|
entity?: {
|
|
10465
10521
|
op: "swap";
|
|
@@ -11852,12 +11908,15 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
11852
11908
|
owner_receive: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
11853
11909
|
id: z.ZodString;
|
|
11854
11910
|
type: z.ZodString;
|
|
11911
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
11855
11912
|
}, "strict", z.ZodTypeAny, {
|
|
11856
11913
|
type: string;
|
|
11857
11914
|
id: string;
|
|
11915
|
+
content_raw?: any;
|
|
11858
11916
|
}, {
|
|
11859
11917
|
type: string;
|
|
11860
11918
|
id: string;
|
|
11919
|
+
content_raw?: any;
|
|
11861
11920
|
}>, "many">, z.ZodObject<{
|
|
11862
11921
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
11863
11922
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -11919,6 +11978,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
11919
11978
|
} | "recently" | {
|
|
11920
11979
|
type: string;
|
|
11921
11980
|
id: string;
|
|
11981
|
+
content_raw?: any;
|
|
11922
11982
|
}[] | undefined;
|
|
11923
11983
|
rewards?: {
|
|
11924
11984
|
op: "set" | "add";
|
|
@@ -11988,6 +12048,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
11988
12048
|
} | "recently" | {
|
|
11989
12049
|
type: string;
|
|
11990
12050
|
id: string;
|
|
12051
|
+
content_raw?: any;
|
|
11991
12052
|
}[] | undefined;
|
|
11992
12053
|
rewards?: {
|
|
11993
12054
|
op: "set" | "add";
|
|
@@ -12258,6 +12319,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
12258
12319
|
} | "recently" | {
|
|
12259
12320
|
type: string;
|
|
12260
12321
|
id: string;
|
|
12322
|
+
content_raw?: any;
|
|
12261
12323
|
}[] | undefined;
|
|
12262
12324
|
rewards?: {
|
|
12263
12325
|
op: "set" | "add";
|
|
@@ -12364,6 +12426,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
12364
12426
|
} | "recently" | {
|
|
12365
12427
|
type: string;
|
|
12366
12428
|
id: string;
|
|
12429
|
+
content_raw?: any;
|
|
12367
12430
|
}[] | undefined;
|
|
12368
12431
|
rewards?: {
|
|
12369
12432
|
op: "set" | "add";
|
|
@@ -12572,12 +12635,15 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
12572
12635
|
}>, z.ZodArray<z.ZodObject<{
|
|
12573
12636
|
id: z.ZodString;
|
|
12574
12637
|
type: z.ZodString;
|
|
12638
|
+
content_raw: z.ZodOptional<z.ZodAny>;
|
|
12575
12639
|
}, "strict", z.ZodTypeAny, {
|
|
12576
12640
|
type: string;
|
|
12577
12641
|
id: string;
|
|
12642
|
+
content_raw?: any;
|
|
12578
12643
|
}, {
|
|
12579
12644
|
type: string;
|
|
12580
12645
|
id: string;
|
|
12646
|
+
content_raw?: any;
|
|
12581
12647
|
}>, "many">]>;
|
|
12582
12648
|
}, "strict", z.ZodTypeAny, {
|
|
12583
12649
|
result: {
|
|
@@ -12591,6 +12657,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
12591
12657
|
} | {
|
|
12592
12658
|
type: string;
|
|
12593
12659
|
id: string;
|
|
12660
|
+
content_raw?: any;
|
|
12594
12661
|
}[];
|
|
12595
12662
|
}, {
|
|
12596
12663
|
result: {
|
|
@@ -12604,6 +12671,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
12604
12671
|
} | {
|
|
12605
12672
|
type: string;
|
|
12606
12673
|
id: string;
|
|
12674
|
+
content_raw?: any;
|
|
12607
12675
|
}[];
|
|
12608
12676
|
}>>;
|
|
12609
12677
|
transfer_to: z.ZodOptional<z.ZodObject<{
|
|
@@ -12660,6 +12728,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
12660
12728
|
} | {
|
|
12661
12729
|
type: string;
|
|
12662
12730
|
id: string;
|
|
12731
|
+
content_raw?: any;
|
|
12663
12732
|
}[];
|
|
12664
12733
|
} | undefined;
|
|
12665
12734
|
transfer_to?: {
|
|
@@ -12710,6 +12779,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
12710
12779
|
} | {
|
|
12711
12780
|
type: string;
|
|
12712
12781
|
id: string;
|
|
12782
|
+
content_raw?: any;
|
|
12713
12783
|
}[];
|
|
12714
12784
|
} | undefined;
|
|
12715
12785
|
transfer_to?: {
|
|
@@ -12961,6 +13031,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
12961
13031
|
} | {
|
|
12962
13032
|
type: string;
|
|
12963
13033
|
id: string;
|
|
13034
|
+
content_raw?: any;
|
|
12964
13035
|
}[];
|
|
12965
13036
|
} | undefined;
|
|
12966
13037
|
transfer_to?: {
|
|
@@ -13048,6 +13119,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
13048
13119
|
} | {
|
|
13049
13120
|
type: string;
|
|
13050
13121
|
id: string;
|
|
13122
|
+
content_raw?: any;
|
|
13051
13123
|
}[];
|
|
13052
13124
|
} | undefined;
|
|
13053
13125
|
transfer_to?: {
|
|
@@ -13395,6 +13467,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
13395
13467
|
} | "recently" | {
|
|
13396
13468
|
type: string;
|
|
13397
13469
|
id: string;
|
|
13470
|
+
content_raw?: any;
|
|
13398
13471
|
}[] | undefined;
|
|
13399
13472
|
rewards?: {
|
|
13400
13473
|
op: "set" | "add";
|
|
@@ -13621,6 +13694,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
13621
13694
|
} | "recently" | {
|
|
13622
13695
|
type: string;
|
|
13623
13696
|
id: string;
|
|
13697
|
+
content_raw?: any;
|
|
13624
13698
|
}[] | undefined;
|
|
13625
13699
|
um?: string | null | undefined;
|
|
13626
13700
|
node?: {
|
|
@@ -13877,6 +13951,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
13877
13951
|
} | "recently" | {
|
|
13878
13952
|
type: string;
|
|
13879
13953
|
id: string;
|
|
13954
|
+
content_raw?: any;
|
|
13880
13955
|
}[] | undefined;
|
|
13881
13956
|
rewards?: {
|
|
13882
13957
|
op: "set" | "add";
|
|
@@ -14007,6 +14082,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
14007
14082
|
} | "recently" | {
|
|
14008
14083
|
type: string;
|
|
14009
14084
|
id: string;
|
|
14085
|
+
content_raw?: any;
|
|
14010
14086
|
}[] | undefined;
|
|
14011
14087
|
um?: string | null | undefined;
|
|
14012
14088
|
dispute?: {
|
|
@@ -14167,6 +14243,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
14167
14243
|
} | "recently" | {
|
|
14168
14244
|
type: string;
|
|
14169
14245
|
id: string;
|
|
14246
|
+
content_raw?: any;
|
|
14170
14247
|
}[] | undefined;
|
|
14171
14248
|
};
|
|
14172
14249
|
operation_type: "contact";
|
|
@@ -14232,6 +14309,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
14232
14309
|
} | "recently" | {
|
|
14233
14310
|
type: string;
|
|
14234
14311
|
id: string;
|
|
14312
|
+
content_raw?: any;
|
|
14235
14313
|
}[] | undefined;
|
|
14236
14314
|
um?: {
|
|
14237
14315
|
name?: string | undefined;
|
|
@@ -14395,6 +14473,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
14395
14473
|
} | "recently" | {
|
|
14396
14474
|
type: string;
|
|
14397
14475
|
id: string;
|
|
14476
|
+
content_raw?: any;
|
|
14398
14477
|
}[] | undefined;
|
|
14399
14478
|
um?: string | null | undefined;
|
|
14400
14479
|
receive?: {
|
|
@@ -14583,6 +14662,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
14583
14662
|
} | "recently" | {
|
|
14584
14663
|
type: string;
|
|
14585
14664
|
id: string;
|
|
14665
|
+
content_raw?: any;
|
|
14586
14666
|
}[] | undefined;
|
|
14587
14667
|
entity?: {
|
|
14588
14668
|
op: "swap";
|
|
@@ -14886,6 +14966,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
14886
14966
|
} | "recently" | {
|
|
14887
14967
|
type: string;
|
|
14888
14968
|
id: string;
|
|
14969
|
+
content_raw?: any;
|
|
14889
14970
|
}[] | undefined;
|
|
14890
14971
|
rewards?: {
|
|
14891
14972
|
op: "set" | "add";
|
|
@@ -15009,6 +15090,7 @@ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"ope
|
|
|
15009
15090
|
} | {
|
|
15010
15091
|
type: string;
|
|
15011
15092
|
id: string;
|
|
15093
|
+
content_raw?: any;
|
|
15012
15094
|
}[];
|
|
15013
15095
|
} | undefined;
|
|
15014
15096
|
transfer_to?: {
|
|
@@ -15592,14 +15674,26 @@ declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscrimi
|
|
|
15592
15674
|
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15593
15675
|
}>, z.ZodObject<{
|
|
15594
15676
|
query_type: z.ZodLiteral<"onchain_received">;
|
|
15595
|
-
|
|
15677
|
+
name_or_address: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
15678
|
+
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
15679
|
+
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
15680
|
+
}, "strict", z.ZodTypeAny, {
|
|
15681
|
+
name_or_address?: string | undefined;
|
|
15682
|
+
local_mark_first?: boolean | undefined;
|
|
15683
|
+
}, {
|
|
15684
|
+
name_or_address?: string | undefined;
|
|
15685
|
+
local_mark_first?: boolean | undefined;
|
|
15686
|
+
}>]>;
|
|
15596
15687
|
all_type: z.ZodOptional<z.ZodBoolean>;
|
|
15597
15688
|
cursor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
15598
15689
|
limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
15599
15690
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
15600
15691
|
network: z.ZodOptional<z.ZodEnum<[import("wowok").ENTRYPOINT.Localnet, import("wowok").ENTRYPOINT.Testnet]>>;
|
|
15601
15692
|
}, "strip", z.ZodTypeAny, {
|
|
15602
|
-
|
|
15693
|
+
name_or_address: string | {
|
|
15694
|
+
name_or_address?: string | undefined;
|
|
15695
|
+
local_mark_first?: boolean | undefined;
|
|
15696
|
+
};
|
|
15603
15697
|
query_type: "onchain_received";
|
|
15604
15698
|
no_cache?: boolean | undefined;
|
|
15605
15699
|
network?: import("wowok").ENTRYPOINT | undefined;
|
|
@@ -15607,7 +15701,10 @@ declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscrimi
|
|
|
15607
15701
|
cursor?: string | null | undefined;
|
|
15608
15702
|
limit?: number | null | undefined;
|
|
15609
15703
|
}, {
|
|
15610
|
-
|
|
15704
|
+
name_or_address: string | {
|
|
15705
|
+
name_or_address?: string | undefined;
|
|
15706
|
+
local_mark_first?: boolean | undefined;
|
|
15707
|
+
};
|
|
15611
15708
|
query_type: "onchain_received";
|
|
15612
15709
|
no_cache?: boolean | undefined;
|
|
15613
15710
|
network?: import("wowok").ENTRYPOINT | undefined;
|
|
@@ -15689,7 +15786,10 @@ declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscrimi
|
|
|
15689
15786
|
no_cache?: boolean | undefined;
|
|
15690
15787
|
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15691
15788
|
} | {
|
|
15692
|
-
|
|
15789
|
+
name_or_address: string | {
|
|
15790
|
+
name_or_address?: string | undefined;
|
|
15791
|
+
local_mark_first?: boolean | undefined;
|
|
15792
|
+
};
|
|
15693
15793
|
query_type: "onchain_received";
|
|
15694
15794
|
no_cache?: boolean | undefined;
|
|
15695
15795
|
network?: import("wowok").ENTRYPOINT | undefined;
|