wowok_agent 2.1.40 → 2.2.1

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.
Files changed (35) hide show
  1. package/dist/index.d.ts +2064 -177
  2. package/dist/index.js +1284 -1
  3. package/dist/schema/call/allocation.js +24 -1
  4. package/dist/schema/call/arbitration.js +92 -1
  5. package/dist/schema/call/base.d.ts +1 -1
  6. package/dist/schema/call/base.js +138 -1
  7. package/dist/schema/call/contact.js +37 -1
  8. package/dist/schema/call/demand.js +47 -1
  9. package/dist/schema/call/guard.js +58 -1
  10. package/dist/schema/call/handler.js +171 -1
  11. package/dist/schema/call/index.js +18 -1
  12. package/dist/schema/call/machine.d.ts +32 -32
  13. package/dist/schema/call/machine.js +152 -1
  14. package/dist/schema/call/order.js +34 -1
  15. package/dist/schema/call/payment.js +17 -1
  16. package/dist/schema/call/permission.js +105 -1
  17. package/dist/schema/call/personal.js +68 -1
  18. package/dist/schema/call/progress.js +26 -1
  19. package/dist/schema/call/proof.js +27 -1
  20. package/dist/schema/call/repository.js +76 -1
  21. package/dist/schema/call/reward.js +42 -1
  22. package/dist/schema/call/service.js +82 -1
  23. package/dist/schema/call/treasury.js +71 -1
  24. package/dist/schema/common/index.js +345 -1
  25. package/dist/schema/index.js +7 -1
  26. package/dist/schema/local/index.js +855 -1
  27. package/dist/schema/local/wip.js +187 -1
  28. package/dist/schema/messenger/index.js +446 -1
  29. package/dist/schema/query/index.d.ts +43 -43
  30. package/dist/schema/query/index.js +1265 -1
  31. package/dist/schema/utils/guard-parser.js +401 -1
  32. package/dist/schema/utils/guard-query-utils.js +22 -1
  33. package/dist/schema/utils/node-parser.js +353 -1
  34. package/dist/schema/utils/permission-index-utils.js +7 -1
  35. package/package.json +3 -6
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { z } from "zod";
3
3
  import { CallOutputSchema, ProtocolInfoQuerySchema, MessengerOperationOutputSchema, AccountOperationSchema, LocalMarkOperationSchema, LocalInfoOperationSchema, MessengerOperationInputSchema } from "./schema/index.js";
4
- declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type", [z.ZodObject<{
4
+ declare const OnchainOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"operation_type", [z.ZodObject<{
5
5
  operation_type: z.ZodLiteral<"service">;
6
6
  data: z.ZodObject<{
7
7
  object: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
@@ -2075,14 +2075,14 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
2075
2075
  guard: z.ZodOptional<z.ZodObject<{
2076
2076
  guard: z.ZodString;
2077
2077
  retained_submission: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2078
- }, "strip", z.ZodTypeAny, {
2078
+ }, "strict", z.ZodTypeAny, {
2079
2079
  guard: string;
2080
2080
  retained_submission?: number[] | undefined;
2081
2081
  }, {
2082
2082
  guard: string;
2083
2083
  retained_submission?: number[] | undefined;
2084
2084
  }>>;
2085
- }, "strip", z.ZodTypeAny, {
2085
+ }, "strict", z.ZodTypeAny, {
2086
2086
  name: string;
2087
2087
  weight: number;
2088
2088
  guard?: {
@@ -2101,7 +2101,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
2101
2101
  namedOperator?: string | undefined;
2102
2102
  permissionIndex?: number | undefined;
2103
2103
  }>, "many">;
2104
- }, "strip", z.ZodTypeAny, {
2104
+ }, "strict", z.ZodTypeAny, {
2105
2105
  forwards: {
2106
2106
  name: string;
2107
2107
  weight: number;
@@ -2128,7 +2128,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
2128
2128
  threshold: number;
2129
2129
  prev_node: string;
2130
2130
  }>, "many">;
2131
- }, "strip", z.ZodTypeAny, {
2131
+ }, "strict", z.ZodTypeAny, {
2132
2132
  name: string;
2133
2133
  pairs: {
2134
2134
  forwards: {
@@ -2217,14 +2217,14 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
2217
2217
  guard: z.ZodOptional<z.ZodObject<{
2218
2218
  guard: z.ZodString;
2219
2219
  retained_submission: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2220
- }, "strip", z.ZodTypeAny, {
2220
+ }, "strict", z.ZodTypeAny, {
2221
2221
  guard: string;
2222
2222
  retained_submission?: number[] | undefined;
2223
2223
  }, {
2224
2224
  guard: string;
2225
2225
  retained_submission?: number[] | undefined;
2226
2226
  }>>;
2227
- }, "strip", z.ZodTypeAny, {
2227
+ }, "strict", z.ZodTypeAny, {
2228
2228
  name: string;
2229
2229
  weight: number;
2230
2230
  guard?: {
@@ -2243,7 +2243,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
2243
2243
  namedOperator?: string | undefined;
2244
2244
  permissionIndex?: number | undefined;
2245
2245
  }>, "many">;
2246
- }, "strip", z.ZodTypeAny, {
2246
+ }, "strict", z.ZodTypeAny, {
2247
2247
  forwards: {
2248
2248
  name: string;
2249
2249
  weight: number;
@@ -2270,7 +2270,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
2270
2270
  threshold: number;
2271
2271
  prev_node: string;
2272
2272
  }>, "many">;
2273
- }, "strip", z.ZodTypeAny, {
2273
+ }, "strict", z.ZodTypeAny, {
2274
2274
  name: string;
2275
2275
  pairs: {
2276
2276
  forwards: {
@@ -13366,177 +13366,1929 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
13366
13366
  }[];
13367
13367
  }[];
13368
13368
  } | undefined;
13369
- }>]>;
13370
- declare const WipOperationsSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
13371
- type: z.ZodLiteral<"generate">;
13372
- options: z.ZodObject<{
13373
- markdown_text: z.ZodString;
13374
- images: z.ZodOptional<z.ZodArray<z.ZodObject<{
13375
- source: z.ZodString;
13376
- id: z.ZodOptional<z.ZodString>;
13377
- filename: z.ZodOptional<z.ZodString>;
13378
- }, "strip", z.ZodTypeAny, {
13379
- source: string;
13380
- id?: string | undefined;
13381
- filename?: string | undefined;
13382
- }, {
13383
- source: string;
13384
- id?: string | undefined;
13385
- filename?: string | undefined;
13386
- }>, "many">>;
13387
- account: z.ZodOptional<z.ZodString>;
13388
- }, "strip", z.ZodTypeAny, {
13389
- markdown_text: string;
13390
- images?: {
13391
- source: string;
13392
- id?: string | undefined;
13393
- filename?: string | undefined;
13394
- }[] | undefined;
13395
- account?: string | undefined;
13396
- }, {
13397
- markdown_text: string;
13398
- images?: {
13399
- source: string;
13400
- id?: string | undefined;
13401
- filename?: string | undefined;
13402
- }[] | undefined;
13403
- account?: string | undefined;
13404
- }>;
13405
- outputPath: z.ZodString;
13406
- }, "strip", z.ZodTypeAny, {
13407
- options: {
13408
- markdown_text: string;
13409
- images?: {
13410
- source: string;
13411
- id?: string | undefined;
13412
- filename?: string | undefined;
13413
- }[] | undefined;
13414
- account?: string | undefined;
13415
- };
13416
- type: "generate";
13417
- outputPath: string;
13418
- }, {
13419
- options: {
13420
- markdown_text: string;
13421
- images?: {
13422
- source: string;
13423
- id?: string | undefined;
13424
- filename?: string | undefined;
13369
+ }>]>, {
13370
+ data: {
13371
+ object: string | {
13372
+ type_parameter: string;
13373
+ name?: string | undefined;
13374
+ replaceExistName?: boolean | undefined;
13375
+ tags?: string[] | undefined;
13376
+ onChain?: boolean | undefined;
13377
+ permission?: string | {
13378
+ name?: string | undefined;
13379
+ description?: string | undefined;
13380
+ replaceExistName?: boolean | undefined;
13381
+ tags?: string[] | undefined;
13382
+ onChain?: boolean | undefined;
13383
+ } | undefined;
13384
+ };
13385
+ description?: string | undefined;
13386
+ location?: string | undefined;
13387
+ owner_receive?: {
13388
+ received: {
13389
+ id: string;
13390
+ balance: string | number;
13391
+ payment: string;
13392
+ }[];
13393
+ balance: string | number;
13394
+ token_type: string;
13395
+ } | "recently" | {
13396
+ type: string;
13397
+ id: string;
13425
13398
  }[] | undefined;
13426
- account?: string | undefined;
13427
- };
13428
- type: "generate";
13429
- outputPath: string;
13430
- }>, z.ZodObject<{
13431
- type: z.ZodLiteral<"verify">;
13432
- wipFilePath: z.ZodString;
13433
- hash_equal: z.ZodOptional<z.ZodString>;
13434
- requireSignature: z.ZodOptional<z.ZodBoolean>;
13435
- }, "strip", z.ZodTypeAny, {
13436
- type: "verify";
13437
- wipFilePath: string;
13438
- hash_equal?: string | undefined;
13439
- requireSignature?: boolean | undefined;
13440
- }, {
13441
- type: "verify";
13442
- wipFilePath: string;
13443
- hash_equal?: string | undefined;
13444
- requireSignature?: boolean | undefined;
13445
- }>, z.ZodObject<{
13446
- type: z.ZodLiteral<"sign">;
13447
- wipFilePath: z.ZodString;
13448
- account: z.ZodOptional<z.ZodString>;
13449
- outputPath: z.ZodOptional<z.ZodString>;
13450
- }, "strip", z.ZodTypeAny, {
13451
- type: "sign";
13452
- wipFilePath: string;
13453
- account?: string | undefined;
13454
- outputPath?: string | undefined;
13455
- }, {
13456
- type: "sign";
13457
- wipFilePath: string;
13458
- account?: string | undefined;
13459
- outputPath?: string | undefined;
13460
- }>, z.ZodObject<{
13461
- type: z.ZodLiteral<"wip2html">;
13462
- wipPath: z.ZodString;
13463
- options: z.ZodOptional<z.ZodObject<{
13464
- title: z.ZodOptional<z.ZodString>;
13465
- theme: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"light">, z.ZodLiteral<"dark">]>>;
13466
- outputPath: z.ZodOptional<z.ZodString>;
13467
- }, "strip", z.ZodTypeAny, {
13468
- title?: string | undefined;
13469
- theme?: "light" | "dark" | undefined;
13470
- outputPath?: string | undefined;
13471
- }, {
13472
- title?: string | undefined;
13473
- theme?: "light" | "dark" | undefined;
13474
- outputPath?: string | undefined;
13475
- }>>;
13476
- }, "strip", z.ZodTypeAny, {
13477
- type: "wip2html";
13478
- wipPath: string;
13479
- options?: {
13480
- title?: string | undefined;
13481
- theme?: "light" | "dark" | undefined;
13482
- outputPath?: string | undefined;
13483
- } | undefined;
13484
- }, {
13485
- type: "wip2html";
13486
- wipPath: string;
13487
- options?: {
13488
- title?: string | undefined;
13489
- theme?: "light" | "dark" | undefined;
13490
- outputPath?: string | undefined;
13491
- } | undefined;
13492
- }>]>;
13493
- declare const WatchQueryOperationsSchema: z.ZodDiscriminatedUnion<"query_type", [z.ZodObject<{
13494
- query_type: z.ZodLiteral<"local_mark_list">;
13495
- filter: z.ZodOptional<z.ZodObject<{
13496
- name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
13497
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
13498
- address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
13499
- createdAt: z.ZodOptional<z.ZodObject<{
13500
- gte: z.ZodOptional<z.ZodNumber>;
13501
- lte: z.ZodOptional<z.ZodNumber>;
13502
- }, "strip", z.ZodTypeAny, {
13503
- gte?: number | undefined;
13504
- lte?: number | undefined;
13505
- }, {
13506
- gte?: number | undefined;
13507
- lte?: number | undefined;
13508
- }>>;
13509
- updatedAt: z.ZodOptional<z.ZodObject<{
13510
- gte: z.ZodOptional<z.ZodNumber>;
13511
- lte: z.ZodOptional<z.ZodNumber>;
13512
- }, "strip", z.ZodTypeAny, {
13513
- gte?: number | undefined;
13514
- lte?: number | undefined;
13515
- }, {
13516
- gte?: number | undefined;
13517
- lte?: number | undefined;
13518
- }>>;
13519
- }, "strip", z.ZodTypeAny, {
13520
- address?: string | undefined;
13521
- name?: string | undefined;
13522
- tags?: string[] | undefined;
13523
- createdAt?: {
13524
- gte?: number | undefined;
13525
- lte?: number | undefined;
13399
+ rewards?: {
13400
+ op: "set" | "add";
13401
+ objects: string[];
13402
+ } | {
13403
+ op: "remove";
13404
+ objects: string[];
13405
+ } | {
13406
+ op: "clear";
13526
13407
  } | undefined;
13527
- updatedAt?: {
13528
- gte?: number | undefined;
13529
- lte?: number | undefined;
13408
+ um?: string | null | undefined;
13409
+ discount?: {
13410
+ name: string;
13411
+ recipient: {
13412
+ entities: {
13413
+ name_or_address?: string | undefined;
13414
+ local_mark_first?: boolean | undefined;
13415
+ }[];
13416
+ check_all_founded?: boolean | undefined;
13417
+ };
13418
+ discount_type: import("wowok").DiscountType;
13419
+ discount_value: string | number;
13420
+ count?: number | undefined;
13421
+ benchmark?: string | number | undefined;
13422
+ transferable?: boolean | undefined;
13423
+ time_ms_start?: number | undefined;
13424
+ time_ms_end?: number | undefined;
13530
13425
  } | undefined;
13531
- }, {
13532
- address?: string | undefined;
13533
- name?: string | undefined;
13534
- tags?: string[] | undefined;
13535
- createdAt?: {
13536
- gte?: number | undefined;
13537
- lte?: number | undefined;
13426
+ machine?: string | null | undefined;
13427
+ sales?: {
13428
+ op: "add";
13429
+ sales: {
13430
+ name: string;
13431
+ wip: string;
13432
+ price: string | number;
13433
+ stock: string | number;
13434
+ suspension: boolean;
13435
+ wip_hash: string;
13436
+ }[];
13437
+ } | {
13438
+ op: "set";
13439
+ sales: {
13440
+ name: string;
13441
+ wip: string;
13442
+ price: string | number;
13443
+ stock: string | number;
13444
+ suspension: boolean;
13445
+ wip_hash: string;
13446
+ }[];
13447
+ } | {
13448
+ op: "remove";
13449
+ sales_name: string[];
13450
+ } | {
13451
+ op: "clear";
13538
13452
  } | undefined;
13539
- updatedAt?: {
13453
+ repositories?: {
13454
+ op: "set" | "add";
13455
+ objects: string[];
13456
+ } | {
13457
+ op: "remove";
13458
+ objects: string[];
13459
+ } | {
13460
+ op: "clear";
13461
+ } | undefined;
13462
+ buy_guard?: string | null | undefined;
13463
+ customer_required?: string[] | undefined;
13464
+ arbitrations?: {
13465
+ op: "set" | "add";
13466
+ objects: string[];
13467
+ } | {
13468
+ op: "remove";
13469
+ objects: string[];
13470
+ } | {
13471
+ op: "clear";
13472
+ } | undefined;
13473
+ order_allocators?: {
13474
+ description: string;
13475
+ threshold: string | number;
13476
+ allocators: {
13477
+ guard: string;
13478
+ sharing: {
13479
+ who: {
13480
+ GuardIdentifier: number;
13481
+ } | {
13482
+ Entity: {
13483
+ name_or_address?: string | undefined;
13484
+ local_mark_first?: boolean | undefined;
13485
+ };
13486
+ } | {
13487
+ Signer: "signer";
13488
+ };
13489
+ sharing: string | number;
13490
+ mode: "Amount" | "Rate" | "Surplus";
13491
+ }[];
13492
+ max?: string | number | null | undefined;
13493
+ fix?: string | number | undefined;
13494
+ }[];
13495
+ } | null | undefined;
13496
+ pause?: boolean | undefined;
13497
+ publish?: boolean | undefined;
13498
+ order_new?: {
13499
+ buy: {
13500
+ items: {
13501
+ name: string;
13502
+ stock: string | number;
13503
+ wip_hash: string;
13504
+ }[];
13505
+ total_pay: {
13506
+ balance: string | number;
13507
+ } | {
13508
+ coin: string;
13509
+ };
13510
+ discount?: string | undefined;
13511
+ payment_remark?: string | undefined;
13512
+ payment_index?: number | undefined;
13513
+ };
13514
+ transfer?: {
13515
+ name_or_address?: string | undefined;
13516
+ local_mark_first?: boolean | undefined;
13517
+ } | undefined;
13518
+ agents?: {
13519
+ entities: {
13520
+ name_or_address?: string | undefined;
13521
+ local_mark_first?: boolean | undefined;
13522
+ }[];
13523
+ check_all_founded?: boolean | undefined;
13524
+ } | undefined;
13525
+ order_required_info?: string | undefined;
13526
+ namedNewOrder?: {
13527
+ name?: string | undefined;
13528
+ replaceExistName?: boolean | undefined;
13529
+ tags?: string[] | undefined;
13530
+ onChain?: boolean | undefined;
13531
+ } | undefined;
13532
+ namedNewAllocation?: {
13533
+ name?: string | undefined;
13534
+ replaceExistName?: boolean | undefined;
13535
+ tags?: string[] | undefined;
13536
+ onChain?: boolean | undefined;
13537
+ } | undefined;
13538
+ namedNewProgress?: {
13539
+ name?: string | undefined;
13540
+ replaceExistName?: boolean | undefined;
13541
+ tags?: string[] | undefined;
13542
+ onChain?: boolean | undefined;
13543
+ } | undefined;
13544
+ } | undefined;
13545
+ discount_destroy?: string[] | undefined;
13546
+ compensation_fund_add?: {
13547
+ balance: string | number;
13548
+ } | {
13549
+ coin: string;
13550
+ } | undefined;
13551
+ compensation_locked_time_add?: number | undefined;
13552
+ compensation_fund_receive?: {
13553
+ received: {
13554
+ id: string;
13555
+ balance: string | number;
13556
+ payment: string;
13557
+ }[];
13558
+ balance: string | number;
13559
+ token_type: string;
13560
+ } | "recently" | undefined;
13561
+ };
13562
+ operation_type: "service";
13563
+ submission?: {
13564
+ type: "submission";
13565
+ guard: {
13566
+ object: string;
13567
+ impack: boolean;
13568
+ }[];
13569
+ submission: {
13570
+ guard: string;
13571
+ submission: {
13572
+ identifier: number;
13573
+ b_submission: boolean;
13574
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
13575
+ name: string;
13576
+ value?: string | number | boolean | {
13577
+ name_or_address?: string | undefined;
13578
+ local_mark_first?: boolean | undefined;
13579
+ } | {
13580
+ entities: {
13581
+ name_or_address?: string | undefined;
13582
+ local_mark_first?: boolean | undefined;
13583
+ }[];
13584
+ check_all_founded?: boolean | undefined;
13585
+ } | string[] | boolean[] | number[] | number[][] | undefined;
13586
+ object_type?: import("wowok").ObjectType | undefined;
13587
+ }[];
13588
+ }[];
13589
+ } | undefined;
13590
+ env?: {
13591
+ account: string;
13592
+ no_cache?: boolean | undefined;
13593
+ network?: import("wowok").ENTRYPOINT | undefined;
13594
+ permission_guard?: string[] | undefined;
13595
+ referrer?: string | undefined;
13596
+ } | undefined;
13597
+ } | {
13598
+ data: {
13599
+ object: string | {
13600
+ name?: string | undefined;
13601
+ replaceExistName?: boolean | undefined;
13602
+ tags?: string[] | undefined;
13603
+ onChain?: boolean | undefined;
13604
+ permission?: string | {
13605
+ name?: string | undefined;
13606
+ description?: string | undefined;
13607
+ replaceExistName?: boolean | undefined;
13608
+ tags?: string[] | undefined;
13609
+ onChain?: boolean | undefined;
13610
+ } | undefined;
13611
+ };
13612
+ description?: string | undefined;
13613
+ owner_receive?: {
13614
+ received: {
13615
+ id: string;
13616
+ balance: string | number;
13617
+ payment: string;
13618
+ }[];
13619
+ balance: string | number;
13620
+ token_type: string;
13621
+ } | "recently" | {
13622
+ type: string;
13623
+ id: string;
13624
+ }[] | undefined;
13625
+ um?: string | null | undefined;
13626
+ node?: {
13627
+ op: "add";
13628
+ nodes: {
13629
+ name: string;
13630
+ pairs: {
13631
+ forwards: {
13632
+ name: string;
13633
+ weight: number;
13634
+ guard?: {
13635
+ guard: string;
13636
+ retained_submission?: number[] | undefined;
13637
+ } | undefined;
13638
+ namedOperator?: string | undefined;
13639
+ permissionIndex?: number | undefined;
13640
+ }[];
13641
+ threshold: number;
13642
+ prev_node: string;
13643
+ }[];
13644
+ }[];
13645
+ bReplace?: boolean | undefined;
13646
+ } | {
13647
+ op: "set";
13648
+ nodes: {
13649
+ name: string;
13650
+ pairs: {
13651
+ forwards: {
13652
+ name: string;
13653
+ weight: number;
13654
+ guard?: {
13655
+ guard: string;
13656
+ retained_submission?: number[] | undefined;
13657
+ } | undefined;
13658
+ namedOperator?: string | undefined;
13659
+ permissionIndex?: number | undefined;
13660
+ }[];
13661
+ threshold: number;
13662
+ prev_node: string;
13663
+ }[];
13664
+ }[];
13665
+ bReplace?: boolean | undefined;
13666
+ } | {
13667
+ op: "remove";
13668
+ nodes: string[];
13669
+ } | {
13670
+ op: "clear";
13671
+ } | {
13672
+ op: "exchange";
13673
+ node_one: string;
13674
+ node_other: string;
13675
+ } | {
13676
+ op: "rename";
13677
+ node_name_old: string;
13678
+ node_name_new: string;
13679
+ } | {
13680
+ op: "remove prior node";
13681
+ pairs: {
13682
+ prior_node_name: string[];
13683
+ node_name: string;
13684
+ }[];
13685
+ } | {
13686
+ data: {
13687
+ forward: {
13688
+ name: string;
13689
+ weight: number;
13690
+ namedOperator?: string | null | undefined;
13691
+ permissionIndex?: number | null | undefined;
13692
+ }[];
13693
+ prior_node_name: string;
13694
+ node_name: string;
13695
+ threshold?: number | null | undefined;
13696
+ }[];
13697
+ op: "add forward";
13698
+ } | {
13699
+ data: {
13700
+ prior_node_name: string;
13701
+ node_name: string;
13702
+ forward_name: string[];
13703
+ }[];
13704
+ op: "remove forward";
13705
+ } | {
13706
+ json_or_markdown_file: string;
13707
+ } | undefined;
13708
+ repository?: {
13709
+ op: "set" | "add";
13710
+ objects: string[];
13711
+ } | {
13712
+ op: "remove";
13713
+ objects: string[];
13714
+ } | {
13715
+ op: "clear";
13716
+ } | undefined;
13717
+ progress_new?: {
13718
+ task?: string | null | undefined;
13719
+ namedNew?: {
13720
+ name?: string | undefined;
13721
+ replaceExistName?: boolean | undefined;
13722
+ tags?: string[] | undefined;
13723
+ onChain?: boolean | undefined;
13724
+ } | undefined;
13725
+ repository?: {
13726
+ op: "set" | "add";
13727
+ objects: string[];
13728
+ } | {
13729
+ op: "remove";
13730
+ objects: string[];
13731
+ } | {
13732
+ op: "clear";
13733
+ } | undefined;
13734
+ progress_namedOperator?: {
13735
+ name: string;
13736
+ op: "set" | "add" | "remove";
13737
+ operators: {
13738
+ entities: {
13739
+ name_or_address?: string | undefined;
13740
+ local_mark_first?: boolean | undefined;
13741
+ }[];
13742
+ check_all_founded?: boolean | undefined;
13743
+ };
13744
+ } | undefined;
13745
+ } | undefined;
13746
+ pause?: boolean | undefined;
13747
+ publish?: boolean | undefined;
13748
+ };
13749
+ operation_type: "machine";
13750
+ submission?: {
13751
+ type: "submission";
13752
+ guard: {
13753
+ object: string;
13754
+ impack: boolean;
13755
+ }[];
13756
+ submission: {
13757
+ guard: string;
13758
+ submission: {
13759
+ identifier: number;
13760
+ b_submission: boolean;
13761
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
13762
+ name: string;
13763
+ value?: string | number | boolean | {
13764
+ name_or_address?: string | undefined;
13765
+ local_mark_first?: boolean | undefined;
13766
+ } | {
13767
+ entities: {
13768
+ name_or_address?: string | undefined;
13769
+ local_mark_first?: boolean | undefined;
13770
+ }[];
13771
+ check_all_founded?: boolean | undefined;
13772
+ } | string[] | boolean[] | number[] | number[][] | undefined;
13773
+ object_type?: import("wowok").ObjectType | undefined;
13774
+ }[];
13775
+ }[];
13776
+ } | undefined;
13777
+ env?: {
13778
+ account: string;
13779
+ no_cache?: boolean | undefined;
13780
+ network?: import("wowok").ENTRYPOINT | undefined;
13781
+ permission_guard?: string[] | undefined;
13782
+ referrer?: string | undefined;
13783
+ } | undefined;
13784
+ } | {
13785
+ data: {
13786
+ object: string;
13787
+ task?: string | undefined;
13788
+ repository?: {
13789
+ op: "set" | "add";
13790
+ objects: string[];
13791
+ } | {
13792
+ op: "remove";
13793
+ objects: string[];
13794
+ } | {
13795
+ op: "clear";
13796
+ } | undefined;
13797
+ progress_namedOperator?: {
13798
+ name: string;
13799
+ op: "set" | "add" | "remove";
13800
+ operators: {
13801
+ entities: {
13802
+ name_or_address?: string | undefined;
13803
+ local_mark_first?: boolean | undefined;
13804
+ }[];
13805
+ check_all_founded?: boolean | undefined;
13806
+ };
13807
+ } | undefined;
13808
+ operate?: {
13809
+ operation: {
13810
+ forward: string;
13811
+ next_node_name: string;
13812
+ };
13813
+ message?: string | undefined;
13814
+ hold?: boolean | undefined;
13815
+ adminUnhold?: boolean | undefined;
13816
+ } | undefined;
13817
+ };
13818
+ operation_type: "progress";
13819
+ submission?: {
13820
+ type: "submission";
13821
+ guard: {
13822
+ object: string;
13823
+ impack: boolean;
13824
+ }[];
13825
+ submission: {
13826
+ guard: string;
13827
+ submission: {
13828
+ identifier: number;
13829
+ b_submission: boolean;
13830
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
13831
+ name: string;
13832
+ value?: string | number | boolean | {
13833
+ name_or_address?: string | undefined;
13834
+ local_mark_first?: boolean | undefined;
13835
+ } | {
13836
+ entities: {
13837
+ name_or_address?: string | undefined;
13838
+ local_mark_first?: boolean | undefined;
13839
+ }[];
13840
+ check_all_founded?: boolean | undefined;
13841
+ } | string[] | boolean[] | number[] | number[][] | undefined;
13842
+ object_type?: import("wowok").ObjectType | undefined;
13843
+ }[];
13844
+ }[];
13845
+ } | undefined;
13846
+ env?: {
13847
+ account: string;
13848
+ no_cache?: boolean | undefined;
13849
+ network?: import("wowok").ENTRYPOINT | undefined;
13850
+ permission_guard?: string[] | undefined;
13851
+ referrer?: string | undefined;
13852
+ } | undefined;
13853
+ } | {
13854
+ data: {
13855
+ object: string | {
13856
+ name?: string | undefined;
13857
+ replaceExistName?: boolean | undefined;
13858
+ tags?: string[] | undefined;
13859
+ onChain?: boolean | undefined;
13860
+ permission?: string | {
13861
+ name?: string | undefined;
13862
+ description?: string | undefined;
13863
+ replaceExistName?: boolean | undefined;
13864
+ tags?: string[] | undefined;
13865
+ onChain?: boolean | undefined;
13866
+ } | undefined;
13867
+ };
13868
+ description?: string | undefined;
13869
+ owner_receive?: {
13870
+ received: {
13871
+ id: string;
13872
+ balance: string | number;
13873
+ payment: string;
13874
+ }[];
13875
+ balance: string | number;
13876
+ token_type: string;
13877
+ } | "recently" | {
13878
+ type: string;
13879
+ id: string;
13880
+ }[] | undefined;
13881
+ rewards?: {
13882
+ op: "set" | "add";
13883
+ objects: string[];
13884
+ } | {
13885
+ op: "remove";
13886
+ objects: string[];
13887
+ } | {
13888
+ op: "clear";
13889
+ } | undefined;
13890
+ um?: string | null | undefined;
13891
+ policies?: {
13892
+ op: "set" | "add";
13893
+ policy: {
13894
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
13895
+ name: string;
13896
+ description: string;
13897
+ write_guard: {
13898
+ guard: string;
13899
+ id_from_submission?: number | undefined;
13900
+ data_from_submission?: number | undefined;
13901
+ }[];
13902
+ id_from: 0 | 1 | 2 | "Signer" | "signer" | "None" | "Clock" | "none" | "clock";
13903
+ quote_guard?: string | null | undefined;
13904
+ }[];
13905
+ } | {
13906
+ op: "remove";
13907
+ policy: string[];
13908
+ } | {
13909
+ op: "clear";
13910
+ } | undefined;
13911
+ data_add?: {
13912
+ name: string;
13913
+ data?: any;
13914
+ write_guard?: string | undefined;
13915
+ } | {
13916
+ name: string;
13917
+ items: {
13918
+ data: {
13919
+ id: number | {
13920
+ name_or_address?: string | undefined;
13921
+ local_mark_first?: boolean | undefined;
13922
+ };
13923
+ data?: any;
13924
+ }[];
13925
+ write_guard?: string | undefined;
13926
+ }[];
13927
+ } | undefined;
13928
+ data_remove?: {
13929
+ name: string;
13930
+ write_guard?: string | undefined;
13931
+ } | {
13932
+ name: string;
13933
+ items: {
13934
+ id: (number | {
13935
+ name_or_address?: string | undefined;
13936
+ local_mark_first?: boolean | undefined;
13937
+ })[];
13938
+ write_guard?: string | undefined;
13939
+ }[];
13940
+ } | undefined;
13941
+ };
13942
+ operation_type: "repository";
13943
+ submission?: {
13944
+ type: "submission";
13945
+ guard: {
13946
+ object: string;
13947
+ impack: boolean;
13948
+ }[];
13949
+ submission: {
13950
+ guard: string;
13951
+ submission: {
13952
+ identifier: number;
13953
+ b_submission: boolean;
13954
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
13955
+ name: string;
13956
+ value?: string | number | boolean | {
13957
+ name_or_address?: string | undefined;
13958
+ local_mark_first?: boolean | undefined;
13959
+ } | {
13960
+ entities: {
13961
+ name_or_address?: string | undefined;
13962
+ local_mark_first?: boolean | undefined;
13963
+ }[];
13964
+ check_all_founded?: boolean | undefined;
13965
+ } | string[] | boolean[] | number[] | number[][] | undefined;
13966
+ object_type?: import("wowok").ObjectType | undefined;
13967
+ }[];
13968
+ }[];
13969
+ } | undefined;
13970
+ env?: {
13971
+ account: string;
13972
+ no_cache?: boolean | undefined;
13973
+ network?: import("wowok").ENTRYPOINT | undefined;
13974
+ permission_guard?: string[] | undefined;
13975
+ referrer?: string | undefined;
13976
+ } | undefined;
13977
+ } | {
13978
+ data: {
13979
+ object: string | {
13980
+ type_parameter: string;
13981
+ name?: string | undefined;
13982
+ replaceExistName?: boolean | undefined;
13983
+ tags?: string[] | undefined;
13984
+ onChain?: boolean | undefined;
13985
+ permission?: string | {
13986
+ name?: string | undefined;
13987
+ description?: string | undefined;
13988
+ replaceExistName?: boolean | undefined;
13989
+ tags?: string[] | undefined;
13990
+ onChain?: boolean | undefined;
13991
+ } | undefined;
13992
+ };
13993
+ description?: string | undefined;
13994
+ reset?: {
13995
+ feedback: string;
13996
+ arb: string;
13997
+ } | undefined;
13998
+ location?: string | undefined;
13999
+ owner_receive?: {
14000
+ received: {
14001
+ id: string;
14002
+ balance: string | number;
14003
+ payment: string;
14004
+ }[];
14005
+ balance: string | number;
14006
+ token_type: string;
14007
+ } | "recently" | {
14008
+ type: string;
14009
+ id: string;
14010
+ }[] | undefined;
14011
+ um?: string | null | undefined;
14012
+ dispute?: {
14013
+ order: string;
14014
+ proposition: string[];
14015
+ fee: {
14016
+ balance: string | number;
14017
+ } | {
14018
+ coin: string;
14019
+ };
14020
+ description?: string | undefined;
14021
+ namedArb?: {
14022
+ name?: string | undefined;
14023
+ replaceExistName?: boolean | undefined;
14024
+ tags?: string[] | undefined;
14025
+ onChain?: boolean | undefined;
14026
+ } | undefined;
14027
+ } | undefined;
14028
+ arbitration?: {
14029
+ feedback: string;
14030
+ indemnity: number;
14031
+ arb: string;
14032
+ } | undefined;
14033
+ fee?: string | number | undefined;
14034
+ feedback?: {
14035
+ feedback: string;
14036
+ arb: string;
14037
+ } | undefined;
14038
+ voting_guard?: {
14039
+ op: "set" | "add";
14040
+ guards: {
14041
+ guard: string;
14042
+ vote_weight: {
14043
+ GuardIdentifier: number;
14044
+ } | {
14045
+ FixedValue: number;
14046
+ };
14047
+ }[];
14048
+ } | {
14049
+ op: "remove";
14050
+ guards: string[];
14051
+ } | {
14052
+ op: "clear";
14053
+ } | undefined;
14054
+ usage_guard?: string | null | undefined;
14055
+ pause?: boolean | undefined;
14056
+ confirm?: {
14057
+ voting_deadline: number | null;
14058
+ arb: string;
14059
+ } | undefined;
14060
+ voting_deadline_change?: {
14061
+ voting_deadline: number | null;
14062
+ arb: string;
14063
+ } | undefined;
14064
+ vote?: {
14065
+ votes: number[];
14066
+ arb: string;
14067
+ voting_guard?: string | undefined;
14068
+ } | undefined;
14069
+ arb_withdraw?: {
14070
+ arb: string;
14071
+ } | undefined;
14072
+ fees_transfer?: {
14073
+ to: {
14074
+ allocation: string;
14075
+ } | {
14076
+ treasury: string;
14077
+ };
14078
+ payment_remark: string;
14079
+ payment_index: number;
14080
+ newPayment?: {
14081
+ name?: string | undefined;
14082
+ replaceExistName?: boolean | undefined;
14083
+ tags?: string[] | undefined;
14084
+ onChain?: boolean | undefined;
14085
+ } | undefined;
14086
+ } | undefined;
14087
+ };
14088
+ operation_type: "arbitration";
14089
+ submission?: {
14090
+ type: "submission";
14091
+ guard: {
14092
+ object: string;
14093
+ impack: boolean;
14094
+ }[];
14095
+ submission: {
14096
+ guard: string;
14097
+ submission: {
14098
+ identifier: number;
14099
+ b_submission: boolean;
14100
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
14101
+ name: string;
14102
+ value?: string | number | boolean | {
14103
+ name_or_address?: string | undefined;
14104
+ local_mark_first?: boolean | undefined;
14105
+ } | {
14106
+ entities: {
14107
+ name_or_address?: string | undefined;
14108
+ local_mark_first?: boolean | undefined;
14109
+ }[];
14110
+ check_all_founded?: boolean | undefined;
14111
+ } | string[] | boolean[] | number[] | number[][] | undefined;
14112
+ object_type?: import("wowok").ObjectType | undefined;
14113
+ }[];
14114
+ }[];
14115
+ } | undefined;
14116
+ env?: {
14117
+ account: string;
14118
+ no_cache?: boolean | undefined;
14119
+ network?: import("wowok").ENTRYPOINT | undefined;
14120
+ permission_guard?: string[] | undefined;
14121
+ referrer?: string | undefined;
14122
+ } | undefined;
14123
+ } | {
14124
+ data: {
14125
+ object: string | {
14126
+ name?: string | undefined;
14127
+ replaceExistName?: boolean | undefined;
14128
+ tags?: string[] | undefined;
14129
+ onChain?: boolean | undefined;
14130
+ permission?: string | {
14131
+ name?: string | undefined;
14132
+ description?: string | undefined;
14133
+ replaceExistName?: boolean | undefined;
14134
+ tags?: string[] | undefined;
14135
+ onChain?: boolean | undefined;
14136
+ } | undefined;
14137
+ };
14138
+ description?: string | undefined;
14139
+ my_status?: string | undefined;
14140
+ location?: string | undefined;
14141
+ ims?: {
14142
+ op: "add";
14143
+ im: {
14144
+ at: string;
14145
+ description?: string | undefined;
14146
+ }[];
14147
+ } | {
14148
+ op: "set";
14149
+ im: {
14150
+ at: string;
14151
+ description?: string | undefined;
14152
+ }[];
14153
+ } | {
14154
+ op: "remove";
14155
+ im: string[];
14156
+ } | {
14157
+ op: "clear";
14158
+ } | undefined;
14159
+ owner_receive?: {
14160
+ received: {
14161
+ id: string;
14162
+ balance: string | number;
14163
+ payment: string;
14164
+ }[];
14165
+ balance: string | number;
14166
+ token_type: string;
14167
+ } | "recently" | {
14168
+ type: string;
14169
+ id: string;
14170
+ }[] | undefined;
14171
+ };
14172
+ operation_type: "contact";
14173
+ submission?: {
14174
+ type: "submission";
14175
+ guard: {
14176
+ object: string;
14177
+ impack: boolean;
14178
+ }[];
14179
+ submission: {
14180
+ guard: string;
14181
+ submission: {
14182
+ identifier: number;
14183
+ b_submission: boolean;
14184
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
14185
+ name: string;
14186
+ value?: string | number | boolean | {
14187
+ name_or_address?: string | undefined;
14188
+ local_mark_first?: boolean | undefined;
14189
+ } | {
14190
+ entities: {
14191
+ name_or_address?: string | undefined;
14192
+ local_mark_first?: boolean | undefined;
14193
+ }[];
14194
+ check_all_founded?: boolean | undefined;
14195
+ } | string[] | boolean[] | number[] | number[][] | undefined;
14196
+ object_type?: import("wowok").ObjectType | undefined;
14197
+ }[];
14198
+ }[];
14199
+ } | undefined;
14200
+ env?: {
14201
+ account: string;
14202
+ no_cache?: boolean | undefined;
14203
+ network?: import("wowok").ENTRYPOINT | undefined;
14204
+ permission_guard?: string[] | undefined;
14205
+ referrer?: string | undefined;
14206
+ } | undefined;
14207
+ } | {
14208
+ data: {
14209
+ object: string | {
14210
+ type_parameter: string;
14211
+ name?: string | undefined;
14212
+ replaceExistName?: boolean | undefined;
14213
+ tags?: string[] | undefined;
14214
+ onChain?: boolean | undefined;
14215
+ permission?: string | {
14216
+ name?: string | undefined;
14217
+ description?: string | undefined;
14218
+ replaceExistName?: boolean | undefined;
14219
+ tags?: string[] | undefined;
14220
+ onChain?: boolean | undefined;
14221
+ } | undefined;
14222
+ };
14223
+ description?: string | undefined;
14224
+ owner_receive?: {
14225
+ received: {
14226
+ id: string;
14227
+ balance: string | number;
14228
+ payment: string;
14229
+ }[];
14230
+ balance: string | number;
14231
+ token_type: string;
14232
+ } | "recently" | {
14233
+ type: string;
14234
+ id: string;
14235
+ }[] | undefined;
14236
+ um?: {
14237
+ name?: string | undefined;
14238
+ replaceExistName?: boolean | undefined;
14239
+ tags?: string[] | undefined;
14240
+ onChain?: boolean | undefined;
14241
+ } | null | undefined;
14242
+ external_deposit_guard?: {
14243
+ op: "add";
14244
+ guards: {
14245
+ guard: string;
14246
+ identifier?: number | null | undefined;
14247
+ store_from_id?: number | null | undefined;
14248
+ }[];
14249
+ } | {
14250
+ op: "set";
14251
+ guards: {
14252
+ guard: string;
14253
+ identifier?: number | null | undefined;
14254
+ store_from_id?: number | null | undefined;
14255
+ }[];
14256
+ } | {
14257
+ op: "remove";
14258
+ guards: string[];
14259
+ } | {
14260
+ op: "clear";
14261
+ } | undefined;
14262
+ external_withdraw_guard?: {
14263
+ op: "add";
14264
+ guards: {
14265
+ identifier: number;
14266
+ guard: string;
14267
+ store_from_id?: number | null | undefined;
14268
+ }[];
14269
+ } | {
14270
+ op: "set";
14271
+ guards: {
14272
+ identifier: number;
14273
+ guard: string;
14274
+ store_from_id?: number | null | undefined;
14275
+ }[];
14276
+ } | {
14277
+ op: "remove";
14278
+ guards: string[];
14279
+ } | {
14280
+ op: "clear";
14281
+ } | undefined;
14282
+ receive?: {
14283
+ received: {
14284
+ id: string;
14285
+ balance: string | number;
14286
+ payment: string;
14287
+ }[];
14288
+ balance: string | number;
14289
+ token_type: string;
14290
+ } | "recently" | undefined;
14291
+ deposit?: {
14292
+ coin: {
14293
+ balance: string | number;
14294
+ } | {
14295
+ coin: string;
14296
+ };
14297
+ payment_info: {
14298
+ index: string | number;
14299
+ remark: string;
14300
+ for_object?: string | null | undefined;
14301
+ for_guard?: string | null | undefined;
14302
+ };
14303
+ by_external_deposit_guard?: string | undefined;
14304
+ namedNewPayment?: {
14305
+ name?: string | undefined;
14306
+ replaceExistName?: boolean | undefined;
14307
+ tags?: string[] | undefined;
14308
+ onChain?: boolean | undefined;
14309
+ } | undefined;
14310
+ } | undefined;
14311
+ withdraw?: {
14312
+ amount: {
14313
+ fixed: string | number;
14314
+ } | {
14315
+ by_external_withdraw_guard: string;
14316
+ };
14317
+ recipient: {
14318
+ name_or_address?: string | undefined;
14319
+ local_mark_first?: boolean | undefined;
14320
+ };
14321
+ payment_info: {
14322
+ index: string | number;
14323
+ remark: string;
14324
+ for_object?: string | null | undefined;
14325
+ for_guard?: string | null | undefined;
14326
+ };
14327
+ namedNewPayment?: {
14328
+ name?: string | undefined;
14329
+ replaceExistName?: boolean | undefined;
14330
+ tags?: string[] | undefined;
14331
+ onChain?: boolean | undefined;
14332
+ } | undefined;
14333
+ } | undefined;
14334
+ };
14335
+ operation_type: "treasury";
14336
+ submission?: {
14337
+ type: "submission";
14338
+ guard: {
14339
+ object: string;
14340
+ impack: boolean;
14341
+ }[];
14342
+ submission: {
14343
+ guard: string;
14344
+ submission: {
14345
+ identifier: number;
14346
+ b_submission: boolean;
14347
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
14348
+ name: string;
14349
+ value?: string | number | boolean | {
14350
+ name_or_address?: string | undefined;
14351
+ local_mark_first?: boolean | undefined;
14352
+ } | {
14353
+ entities: {
14354
+ name_or_address?: string | undefined;
14355
+ local_mark_first?: boolean | undefined;
14356
+ }[];
14357
+ check_all_founded?: boolean | undefined;
14358
+ } | string[] | boolean[] | number[] | number[][] | undefined;
14359
+ object_type?: import("wowok").ObjectType | undefined;
14360
+ }[];
14361
+ }[];
14362
+ } | undefined;
14363
+ env?: {
14364
+ account: string;
14365
+ no_cache?: boolean | undefined;
14366
+ network?: import("wowok").ENTRYPOINT | undefined;
14367
+ permission_guard?: string[] | undefined;
14368
+ referrer?: string | undefined;
14369
+ } | undefined;
14370
+ } | {
14371
+ data: {
14372
+ object: string | {
14373
+ type_parameter: string;
14374
+ name?: string | undefined;
14375
+ replaceExistName?: boolean | undefined;
14376
+ tags?: string[] | undefined;
14377
+ onChain?: boolean | undefined;
14378
+ permission?: string | {
14379
+ name?: string | undefined;
14380
+ description?: string | undefined;
14381
+ replaceExistName?: boolean | undefined;
14382
+ tags?: string[] | undefined;
14383
+ onChain?: boolean | undefined;
14384
+ } | undefined;
14385
+ };
14386
+ description?: string | undefined;
14387
+ owner_receive?: {
14388
+ received: {
14389
+ id: string;
14390
+ balance: string | number;
14391
+ payment: string;
14392
+ }[];
14393
+ balance: string | number;
14394
+ token_type: string;
14395
+ } | "recently" | {
14396
+ type: string;
14397
+ id: string;
14398
+ }[] | undefined;
14399
+ um?: string | null | undefined;
14400
+ receive?: {
14401
+ received: {
14402
+ id: string;
14403
+ balance: string | number;
14404
+ payment: string;
14405
+ }[];
14406
+ balance: string | number;
14407
+ token_type: string;
14408
+ } | "recently" | undefined;
14409
+ claim?: string | undefined;
14410
+ coin_add?: {
14411
+ balance: string | number;
14412
+ } | {
14413
+ coin: string;
14414
+ } | undefined;
14415
+ guard_add?: {
14416
+ amount: {
14417
+ value: number;
14418
+ type: "GuardU64Identifier";
14419
+ } | {
14420
+ value: string | number;
14421
+ type: "Fixed";
14422
+ };
14423
+ recipient: {
14424
+ GuardIdentifier: number;
14425
+ } | {
14426
+ Entity: {
14427
+ name_or_address?: string | undefined;
14428
+ local_mark_first?: boolean | undefined;
14429
+ };
14430
+ } | {
14431
+ Signer: "signer";
14432
+ };
14433
+ guard: string;
14434
+ expiration_time?: number | undefined;
14435
+ store_from_id?: number | null | undefined;
14436
+ }[] | undefined;
14437
+ guard_remove_expired?: boolean | undefined;
14438
+ guard_expiration_time?: number | null | undefined;
14439
+ };
14440
+ operation_type: "reward";
14441
+ submission?: {
14442
+ type: "submission";
14443
+ guard: {
14444
+ object: string;
14445
+ impack: boolean;
14446
+ }[];
14447
+ submission: {
14448
+ guard: string;
14449
+ submission: {
14450
+ identifier: number;
14451
+ b_submission: boolean;
14452
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
14453
+ name: string;
14454
+ value?: string | number | boolean | {
14455
+ name_or_address?: string | undefined;
14456
+ local_mark_first?: boolean | undefined;
14457
+ } | {
14458
+ entities: {
14459
+ name_or_address?: string | undefined;
14460
+ local_mark_first?: boolean | undefined;
14461
+ }[];
14462
+ check_all_founded?: boolean | undefined;
14463
+ } | string[] | boolean[] | number[] | number[][] | undefined;
14464
+ object_type?: import("wowok").ObjectType | undefined;
14465
+ }[];
14466
+ }[];
14467
+ } | undefined;
14468
+ env?: {
14469
+ account: string;
14470
+ no_cache?: boolean | undefined;
14471
+ network?: import("wowok").ENTRYPOINT | undefined;
14472
+ permission_guard?: string[] | undefined;
14473
+ referrer?: string | undefined;
14474
+ } | undefined;
14475
+ } | {
14476
+ data: {
14477
+ object: {
14478
+ type_parameter: string;
14479
+ name?: string | undefined;
14480
+ replaceExistName?: boolean | undefined;
14481
+ tags?: string[] | undefined;
14482
+ onChain?: boolean | undefined;
14483
+ };
14484
+ coin: {
14485
+ balance: string | number;
14486
+ } | {
14487
+ coin: string;
14488
+ };
14489
+ allocators: {
14490
+ description: string;
14491
+ threshold: string | number;
14492
+ allocators: {
14493
+ guard: string;
14494
+ sharing: {
14495
+ who: {
14496
+ GuardIdentifier: number;
14497
+ } | {
14498
+ Entity: {
14499
+ name_or_address?: string | undefined;
14500
+ local_mark_first?: boolean | undefined;
14501
+ };
14502
+ } | {
14503
+ Signer: "signer";
14504
+ };
14505
+ sharing: string | number;
14506
+ mode: "Amount" | "Rate" | "Surplus";
14507
+ }[];
14508
+ max?: string | number | null | undefined;
14509
+ fix?: string | number | undefined;
14510
+ }[];
14511
+ };
14512
+ payment_info: {
14513
+ index: string | number;
14514
+ remark: string;
14515
+ for_object?: string | null | undefined;
14516
+ for_guard?: string | null | undefined;
14517
+ };
14518
+ } | {
14519
+ object: string;
14520
+ received_coins?: {
14521
+ received: {
14522
+ id: string;
14523
+ balance: string | number;
14524
+ payment: string;
14525
+ }[];
14526
+ balance: string | number;
14527
+ token_type: string;
14528
+ } | "recently" | undefined;
14529
+ alloc_by_guard?: string | undefined;
14530
+ };
14531
+ operation_type: "allocation";
14532
+ submission?: {
14533
+ type: "submission";
14534
+ guard: {
14535
+ object: string;
14536
+ impack: boolean;
14537
+ }[];
14538
+ submission: {
14539
+ guard: string;
14540
+ submission: {
14541
+ identifier: number;
14542
+ b_submission: boolean;
14543
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
14544
+ name: string;
14545
+ value?: string | number | boolean | {
14546
+ name_or_address?: string | undefined;
14547
+ local_mark_first?: boolean | undefined;
14548
+ } | {
14549
+ entities: {
14550
+ name_or_address?: string | undefined;
14551
+ local_mark_first?: boolean | undefined;
14552
+ }[];
14553
+ check_all_founded?: boolean | undefined;
14554
+ } | string[] | boolean[] | number[] | number[][] | undefined;
14555
+ object_type?: import("wowok").ObjectType | undefined;
14556
+ }[];
14557
+ }[];
14558
+ } | undefined;
14559
+ env?: {
14560
+ account: string;
14561
+ no_cache?: boolean | undefined;
14562
+ network?: import("wowok").ENTRYPOINT | undefined;
14563
+ permission_guard?: string[] | undefined;
14564
+ referrer?: string | undefined;
14565
+ } | undefined;
14566
+ } | {
14567
+ data: {
14568
+ object?: string | {
14569
+ name?: string | undefined;
14570
+ replaceExistName?: boolean | undefined;
14571
+ tags?: string[] | undefined;
14572
+ onChain?: boolean | undefined;
14573
+ } | undefined;
14574
+ description?: string | undefined;
14575
+ owner_receive?: {
14576
+ received: {
14577
+ id: string;
14578
+ balance: string | number;
14579
+ payment: string;
14580
+ }[];
14581
+ balance: string | number;
14582
+ token_type: string;
14583
+ } | "recently" | {
14584
+ type: string;
14585
+ id: string;
14586
+ }[] | undefined;
14587
+ entity?: {
14588
+ op: "swap";
14589
+ entity1: {
14590
+ name_or_address?: string | undefined;
14591
+ local_mark_first?: boolean | undefined;
14592
+ };
14593
+ entity2: {
14594
+ name_or_address?: string | undefined;
14595
+ local_mark_first?: boolean | undefined;
14596
+ };
14597
+ } | {
14598
+ op: "replace";
14599
+ entity1: {
14600
+ name_or_address?: string | undefined;
14601
+ local_mark_first?: boolean | undefined;
14602
+ };
14603
+ entity2: {
14604
+ name_or_address?: string | undefined;
14605
+ local_mark_first?: boolean | undefined;
14606
+ };
14607
+ } | {
14608
+ op: "copy";
14609
+ entity1: {
14610
+ name_or_address?: string | undefined;
14611
+ local_mark_first?: boolean | undefined;
14612
+ };
14613
+ entity2: {
14614
+ name_or_address?: string | undefined;
14615
+ local_mark_first?: boolean | undefined;
14616
+ };
14617
+ } | {
14618
+ op: "del";
14619
+ entity: {
14620
+ name_or_address?: string | undefined;
14621
+ local_mark_first?: boolean | undefined;
14622
+ };
14623
+ } | undefined;
14624
+ um?: string | null | undefined;
14625
+ builder?: {
14626
+ name_or_address?: string | undefined;
14627
+ local_mark_first?: boolean | undefined;
14628
+ } | undefined;
14629
+ admin?: {
14630
+ op: "set" | "add" | "remove";
14631
+ addresses: {
14632
+ entities: {
14633
+ name_or_address?: string | undefined;
14634
+ local_mark_first?: boolean | undefined;
14635
+ }[];
14636
+ check_all_founded?: boolean | undefined;
14637
+ };
14638
+ } | undefined;
14639
+ remark?: {
14640
+ op: "set";
14641
+ index: number;
14642
+ remark: string;
14643
+ } | {
14644
+ op: "remove";
14645
+ index: number;
14646
+ } | {
14647
+ op: "clear";
14648
+ } | undefined;
14649
+ table?: {
14650
+ op: "add perm by index";
14651
+ entity: {
14652
+ entities: {
14653
+ name_or_address?: string | undefined;
14654
+ local_mark_first?: boolean | undefined;
14655
+ }[];
14656
+ check_all_founded?: boolean | undefined;
14657
+ };
14658
+ index: number;
14659
+ } | {
14660
+ op: "set perm by index";
14661
+ entity: {
14662
+ entities: {
14663
+ name_or_address?: string | undefined;
14664
+ local_mark_first?: boolean | undefined;
14665
+ }[];
14666
+ check_all_founded?: boolean | undefined;
14667
+ };
14668
+ index: number;
14669
+ } | {
14670
+ op: "remove perm by index";
14671
+ entity: {
14672
+ entities: {
14673
+ name_or_address?: string | undefined;
14674
+ local_mark_first?: boolean | undefined;
14675
+ }[];
14676
+ check_all_founded?: boolean | undefined;
14677
+ };
14678
+ index: number;
14679
+ } | {
14680
+ op: "add perm by entity";
14681
+ entity: {
14682
+ name_or_address?: string | undefined;
14683
+ local_mark_first?: boolean | undefined;
14684
+ };
14685
+ index: number[];
14686
+ } | {
14687
+ op: "set perm by entity";
14688
+ entity: {
14689
+ name_or_address?: string | undefined;
14690
+ local_mark_first?: boolean | undefined;
14691
+ };
14692
+ index: number[];
14693
+ } | {
14694
+ op: "remove perm by entity";
14695
+ entity: {
14696
+ name_or_address?: string | undefined;
14697
+ local_mark_first?: boolean | undefined;
14698
+ };
14699
+ index: number[];
14700
+ } | undefined;
14701
+ apply?: string[] | undefined;
14702
+ };
14703
+ operation_type: "permission";
14704
+ env?: {
14705
+ account: string;
14706
+ no_cache?: boolean | undefined;
14707
+ network?: import("wowok").ENTRYPOINT | undefined;
14708
+ permission_guard?: string[] | undefined;
14709
+ referrer?: string | undefined;
14710
+ } | undefined;
14711
+ } | {
14712
+ data: {
14713
+ root: {
14714
+ type: "node";
14715
+ node?: any;
14716
+ } | {
14717
+ type: "file";
14718
+ format: "markdown" | "json";
14719
+ file_path: string;
14720
+ };
14721
+ description?: string | undefined;
14722
+ table?: {
14723
+ identifier: number;
14724
+ b_submission: boolean;
14725
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
14726
+ name: string;
14727
+ value?: string | number | boolean | {
14728
+ name_or_address?: string | undefined;
14729
+ local_mark_first?: boolean | undefined;
14730
+ } | {
14731
+ entities: {
14732
+ name_or_address?: string | undefined;
14733
+ local_mark_first?: boolean | undefined;
14734
+ }[];
14735
+ check_all_founded?: boolean | undefined;
14736
+ } | string[] | boolean[] | number[] | number[][] | undefined;
14737
+ }[] | undefined;
14738
+ namedNew?: {
14739
+ name?: string | undefined;
14740
+ replaceExistName?: boolean | undefined;
14741
+ tags?: string[] | undefined;
14742
+ onChain?: boolean | undefined;
14743
+ } | undefined;
14744
+ rely?: {
14745
+ guards: string[];
14746
+ logic_or?: boolean | undefined;
14747
+ } | undefined;
14748
+ };
14749
+ operation_type: "guard";
14750
+ env?: {
14751
+ account: string;
14752
+ no_cache?: boolean | undefined;
14753
+ network?: import("wowok").ENTRYPOINT | undefined;
14754
+ permission_guard?: string[] | undefined;
14755
+ referrer?: string | undefined;
14756
+ } | undefined;
14757
+ } | {
14758
+ data: {
14759
+ description?: string | undefined;
14760
+ referrer?: string | {
14761
+ name_or_address?: string | undefined;
14762
+ local_mark_first?: boolean | undefined;
14763
+ } | null | undefined;
14764
+ information?: {
14765
+ data: {
14766
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8" | "Value";
14767
+ name: string;
14768
+ value?: any;
14769
+ }[];
14770
+ op: "add";
14771
+ } | {
14772
+ name: string[];
14773
+ op: "remove";
14774
+ } | {
14775
+ op: "clear";
14776
+ } | undefined;
14777
+ mark?: {
14778
+ data: {
14779
+ address: string | {
14780
+ name_or_address?: string | undefined;
14781
+ local_mark_first?: boolean | undefined;
14782
+ };
14783
+ name?: string | undefined;
14784
+ tags?: string[] | undefined;
14785
+ }[];
14786
+ op: "add";
14787
+ } | {
14788
+ data: {
14789
+ address: string | {
14790
+ name_or_address?: string | undefined;
14791
+ local_mark_first?: boolean | undefined;
14792
+ };
14793
+ tags?: string[] | undefined;
14794
+ }[];
14795
+ op: "remove";
14796
+ } | {
14797
+ address: {
14798
+ entities: {
14799
+ name_or_address?: string | undefined;
14800
+ local_mark_first?: boolean | undefined;
14801
+ }[];
14802
+ check_all_founded?: boolean | undefined;
14803
+ } | string[];
14804
+ op: "clear";
14805
+ } | {
14806
+ op: "transfer";
14807
+ to: string | {
14808
+ name_or_address?: string | undefined;
14809
+ local_mark_first?: boolean | undefined;
14810
+ };
14811
+ } | {
14812
+ op: "replace";
14813
+ new_mark_object: string;
14814
+ } | {
14815
+ op: "destroy";
14816
+ } | undefined;
14817
+ };
14818
+ operation_type: "personal";
14819
+ env?: {
14820
+ account: string;
14821
+ no_cache?: boolean | undefined;
14822
+ network?: import("wowok").ENTRYPOINT | undefined;
14823
+ permission_guard?: string[] | undefined;
14824
+ referrer?: string | undefined;
14825
+ } | undefined;
14826
+ } | {
14827
+ data: {
14828
+ object: {
14829
+ type_parameter: string;
14830
+ name?: string | undefined;
14831
+ replaceExistName?: boolean | undefined;
14832
+ tags?: string[] | undefined;
14833
+ onChain?: boolean | undefined;
14834
+ };
14835
+ info: {
14836
+ index: string | number;
14837
+ remark: string;
14838
+ for_object?: string | null | undefined;
14839
+ for_guard?: string | null | undefined;
14840
+ };
14841
+ revenue: {
14842
+ amount: {
14843
+ balance: string | number;
14844
+ } | {
14845
+ coin: string;
14846
+ };
14847
+ recipient: {
14848
+ name_or_address?: string | undefined;
14849
+ local_mark_first?: boolean | undefined;
14850
+ };
14851
+ }[];
14852
+ };
14853
+ operation_type: "payment";
14854
+ env?: {
14855
+ account: string;
14856
+ no_cache?: boolean | undefined;
14857
+ network?: import("wowok").ENTRYPOINT | undefined;
14858
+ permission_guard?: string[] | undefined;
14859
+ referrer?: string | undefined;
14860
+ } | undefined;
14861
+ } | {
14862
+ data: {
14863
+ object: string | {
14864
+ name?: string | undefined;
14865
+ replaceExistName?: boolean | undefined;
14866
+ tags?: string[] | undefined;
14867
+ onChain?: boolean | undefined;
14868
+ permission?: string | {
14869
+ name?: string | undefined;
14870
+ description?: string | undefined;
14871
+ replaceExistName?: boolean | undefined;
14872
+ tags?: string[] | undefined;
14873
+ onChain?: boolean | undefined;
14874
+ } | undefined;
14875
+ };
14876
+ description?: string | undefined;
14877
+ location?: string | undefined;
14878
+ owner_receive?: {
14879
+ received: {
14880
+ id: string;
14881
+ balance: string | number;
14882
+ payment: string;
14883
+ }[];
14884
+ balance: string | number;
14885
+ token_type: string;
14886
+ } | "recently" | {
14887
+ type: string;
14888
+ id: string;
14889
+ }[] | undefined;
14890
+ rewards?: {
14891
+ op: "set" | "add";
14892
+ objects: string[];
14893
+ } | {
14894
+ op: "remove";
14895
+ objects: string[];
14896
+ } | {
14897
+ op: "clear";
14898
+ } | undefined;
14899
+ guards?: {
14900
+ op: "add";
14901
+ guard: {
14902
+ guard: string;
14903
+ service_identifier?: number | null | undefined;
14904
+ }[];
14905
+ } | {
14906
+ op: "set";
14907
+ guard: {
14908
+ guard: string;
14909
+ service_identifier?: number | null | undefined;
14910
+ }[];
14911
+ } | {
14912
+ op: "remove";
14913
+ guard: string[];
14914
+ } | {
14915
+ op: "clear";
14916
+ } | undefined;
14917
+ um?: string | null | undefined;
14918
+ feedback?: {
14919
+ who: {
14920
+ name_or_address?: string | undefined;
14921
+ local_mark_first?: boolean | undefined;
14922
+ };
14923
+ feedback?: string | undefined;
14924
+ acceptance_score?: number | undefined;
14925
+ }[] | undefined;
14926
+ present?: {
14927
+ recommend: string;
14928
+ service?: string | undefined;
14929
+ by_guard?: string | undefined;
14930
+ } | undefined;
14931
+ };
14932
+ operation_type: "demand";
14933
+ submission?: {
14934
+ type: "submission";
14935
+ guard: {
14936
+ object: string;
14937
+ impack: boolean;
14938
+ }[];
14939
+ submission: {
14940
+ guard: string;
14941
+ submission: {
14942
+ identifier: number;
14943
+ b_submission: boolean;
14944
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
14945
+ name: string;
14946
+ value?: string | number | boolean | {
14947
+ name_or_address?: string | undefined;
14948
+ local_mark_first?: boolean | undefined;
14949
+ } | {
14950
+ entities: {
14951
+ name_or_address?: string | undefined;
14952
+ local_mark_first?: boolean | undefined;
14953
+ }[];
14954
+ check_all_founded?: boolean | undefined;
14955
+ } | string[] | boolean[] | number[] | number[][] | undefined;
14956
+ object_type?: import("wowok").ObjectType | undefined;
14957
+ }[];
14958
+ }[];
14959
+ } | undefined;
14960
+ env?: {
14961
+ account: string;
14962
+ no_cache?: boolean | undefined;
14963
+ network?: import("wowok").ENTRYPOINT | undefined;
14964
+ permission_guard?: string[] | undefined;
14965
+ referrer?: string | undefined;
14966
+ } | undefined;
14967
+ } | {
14968
+ data: {
14969
+ object: string;
14970
+ progress?: {
14971
+ operation: {
14972
+ forward: string;
14973
+ next_node_name: string;
14974
+ };
14975
+ message?: string | undefined;
14976
+ hold?: boolean | undefined;
14977
+ adminUnhold?: boolean | undefined;
14978
+ } | undefined;
14979
+ required_info?: string | null | undefined;
14980
+ agents?: {
14981
+ entities: {
14982
+ name_or_address?: string | undefined;
14983
+ local_mark_first?: boolean | undefined;
14984
+ }[];
14985
+ check_all_founded?: boolean | undefined;
14986
+ } | undefined;
14987
+ arb_confirm?: {
14988
+ arb: string;
14989
+ confirm: boolean;
14990
+ description?: string | undefined;
14991
+ proposition?: string[] | undefined;
14992
+ } | undefined;
14993
+ arb_objection?: {
14994
+ objection: string;
14995
+ arb: string;
14996
+ } | undefined;
14997
+ arb_claim_compensation?: {
14998
+ arb: string;
14999
+ } | undefined;
15000
+ receive?: {
15001
+ result: {
15002
+ received: {
15003
+ id: string;
15004
+ balance: string | number;
15005
+ payment: string;
15006
+ }[];
15007
+ balance: string | number;
15008
+ token_type: string;
15009
+ } | {
15010
+ type: string;
15011
+ id: string;
15012
+ }[];
15013
+ } | undefined;
15014
+ transfer_to?: {
15015
+ name_or_address?: string | undefined;
15016
+ local_mark_first?: boolean | undefined;
15017
+ } | undefined;
15018
+ };
15019
+ operation_type: "order";
15020
+ submission?: {
15021
+ type: "submission";
15022
+ guard: {
15023
+ object: string;
15024
+ impack: boolean;
15025
+ }[];
15026
+ submission: {
15027
+ guard: string;
15028
+ submission: {
15029
+ identifier: number;
15030
+ b_submission: boolean;
15031
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
15032
+ name: string;
15033
+ value?: string | number | boolean | {
15034
+ name_or_address?: string | undefined;
15035
+ local_mark_first?: boolean | undefined;
15036
+ } | {
15037
+ entities: {
15038
+ name_or_address?: string | undefined;
15039
+ local_mark_first?: boolean | undefined;
15040
+ }[];
15041
+ check_all_founded?: boolean | undefined;
15042
+ } | string[] | boolean[] | number[] | number[][] | undefined;
15043
+ object_type?: import("wowok").ObjectType | undefined;
15044
+ }[];
15045
+ }[];
15046
+ } | undefined;
15047
+ env?: {
15048
+ account: string;
15049
+ no_cache?: boolean | undefined;
15050
+ network?: import("wowok").ENTRYPOINT | undefined;
15051
+ permission_guard?: string[] | undefined;
15052
+ referrer?: string | undefined;
15053
+ } | undefined;
15054
+ } | {
15055
+ guard: string;
15056
+ operation_type: "gen_passport";
15057
+ env?: {
15058
+ account: string;
15059
+ no_cache?: boolean | undefined;
15060
+ network?: import("wowok").ENTRYPOINT | undefined;
15061
+ permission_guard?: string[] | undefined;
15062
+ referrer?: string | undefined;
15063
+ } | undefined;
15064
+ info?: {
15065
+ type: "submission";
15066
+ guard: {
15067
+ object: string;
15068
+ impack: boolean;
15069
+ }[];
15070
+ submission: {
15071
+ guard: string;
15072
+ submission: {
15073
+ identifier: number;
15074
+ b_submission: boolean;
15075
+ value_type: "string" | "Bool" | "Address" | "String" | "U8" | "U16" | "U32" | "U64" | "U128" | "U256" | "VecBool" | "VecAddress" | "VecString" | "VecU8" | "VecU16" | "VecU32" | "VecU64" | "VecU128" | "VecU256" | "VecVecU8" | import("wowok").ValueType.Bool | import("wowok").ValueType.Address | import("wowok").ValueType.String | import("wowok").ValueType.U8 | import("wowok").ValueType.U16 | import("wowok").ValueType.U32 | import("wowok").ValueType.U64 | import("wowok").ValueType.U128 | import("wowok").ValueType.U256 | import("wowok").ValueType.VecBool | import("wowok").ValueType.VecAddress | import("wowok").ValueType.VecString | import("wowok").ValueType.VecU8 | import("wowok").ValueType.VecU16 | import("wowok").ValueType.VecU32 | import("wowok").ValueType.VecU64 | import("wowok").ValueType.VecU128 | import("wowok").ValueType.VecU256 | import("wowok").ValueType.VecVecU8 | "bool" | "address" | "u8" | "u16" | "u32" | "u64" | "u128" | "u256" | "vecbool" | "vecaddress" | "vecstring" | "vecu8" | "vecu16" | "vecu32" | "vecu64" | "vecu128" | "vecu256" | "vecvecu8";
15076
+ name: string;
15077
+ value?: string | number | boolean | {
15078
+ name_or_address?: string | undefined;
15079
+ local_mark_first?: boolean | undefined;
15080
+ } | {
15081
+ entities: {
15082
+ name_or_address?: string | undefined;
15083
+ local_mark_first?: boolean | undefined;
15084
+ }[];
15085
+ check_all_founded?: boolean | undefined;
15086
+ } | string[] | boolean[] | number[] | number[][] | undefined;
15087
+ object_type?: import("wowok").ObjectType | undefined;
15088
+ }[];
15089
+ }[];
15090
+ } | undefined;
15091
+ }, unknown>;
15092
+ declare const WipOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
15093
+ type: z.ZodLiteral<"generate">;
15094
+ options: z.ZodObject<{
15095
+ markdown_text: z.ZodString;
15096
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
15097
+ source: z.ZodString;
15098
+ id: z.ZodOptional<z.ZodString>;
15099
+ filename: z.ZodOptional<z.ZodString>;
15100
+ }, "strip", z.ZodTypeAny, {
15101
+ source: string;
15102
+ id?: string | undefined;
15103
+ filename?: string | undefined;
15104
+ }, {
15105
+ source: string;
15106
+ id?: string | undefined;
15107
+ filename?: string | undefined;
15108
+ }>, "many">>;
15109
+ account: z.ZodOptional<z.ZodString>;
15110
+ }, "strip", z.ZodTypeAny, {
15111
+ markdown_text: string;
15112
+ images?: {
15113
+ source: string;
15114
+ id?: string | undefined;
15115
+ filename?: string | undefined;
15116
+ }[] | undefined;
15117
+ account?: string | undefined;
15118
+ }, {
15119
+ markdown_text: string;
15120
+ images?: {
15121
+ source: string;
15122
+ id?: string | undefined;
15123
+ filename?: string | undefined;
15124
+ }[] | undefined;
15125
+ account?: string | undefined;
15126
+ }>;
15127
+ outputPath: z.ZodString;
15128
+ }, "strip", z.ZodTypeAny, {
15129
+ options: {
15130
+ markdown_text: string;
15131
+ images?: {
15132
+ source: string;
15133
+ id?: string | undefined;
15134
+ filename?: string | undefined;
15135
+ }[] | undefined;
15136
+ account?: string | undefined;
15137
+ };
15138
+ type: "generate";
15139
+ outputPath: string;
15140
+ }, {
15141
+ options: {
15142
+ markdown_text: string;
15143
+ images?: {
15144
+ source: string;
15145
+ id?: string | undefined;
15146
+ filename?: string | undefined;
15147
+ }[] | undefined;
15148
+ account?: string | undefined;
15149
+ };
15150
+ type: "generate";
15151
+ outputPath: string;
15152
+ }>, z.ZodObject<{
15153
+ type: z.ZodLiteral<"verify">;
15154
+ wipFilePath: z.ZodString;
15155
+ hash_equal: z.ZodOptional<z.ZodString>;
15156
+ requireSignature: z.ZodOptional<z.ZodBoolean>;
15157
+ }, "strip", z.ZodTypeAny, {
15158
+ type: "verify";
15159
+ wipFilePath: string;
15160
+ hash_equal?: string | undefined;
15161
+ requireSignature?: boolean | undefined;
15162
+ }, {
15163
+ type: "verify";
15164
+ wipFilePath: string;
15165
+ hash_equal?: string | undefined;
15166
+ requireSignature?: boolean | undefined;
15167
+ }>, z.ZodObject<{
15168
+ type: z.ZodLiteral<"sign">;
15169
+ wipFilePath: z.ZodString;
15170
+ account: z.ZodOptional<z.ZodString>;
15171
+ outputPath: z.ZodOptional<z.ZodString>;
15172
+ }, "strip", z.ZodTypeAny, {
15173
+ type: "sign";
15174
+ wipFilePath: string;
15175
+ account?: string | undefined;
15176
+ outputPath?: string | undefined;
15177
+ }, {
15178
+ type: "sign";
15179
+ wipFilePath: string;
15180
+ account?: string | undefined;
15181
+ outputPath?: string | undefined;
15182
+ }>, z.ZodObject<{
15183
+ type: z.ZodLiteral<"wip2html">;
15184
+ wipPath: z.ZodString;
15185
+ options: z.ZodOptional<z.ZodObject<{
15186
+ title: z.ZodOptional<z.ZodString>;
15187
+ theme: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"light">, z.ZodLiteral<"dark">]>>;
15188
+ outputPath: z.ZodOptional<z.ZodString>;
15189
+ }, "strip", z.ZodTypeAny, {
15190
+ title?: string | undefined;
15191
+ theme?: "light" | "dark" | undefined;
15192
+ outputPath?: string | undefined;
15193
+ }, {
15194
+ title?: string | undefined;
15195
+ theme?: "light" | "dark" | undefined;
15196
+ outputPath?: string | undefined;
15197
+ }>>;
15198
+ }, "strip", z.ZodTypeAny, {
15199
+ type: "wip2html";
15200
+ wipPath: string;
15201
+ options?: {
15202
+ title?: string | undefined;
15203
+ theme?: "light" | "dark" | undefined;
15204
+ outputPath?: string | undefined;
15205
+ } | undefined;
15206
+ }, {
15207
+ type: "wip2html";
15208
+ wipPath: string;
15209
+ options?: {
15210
+ title?: string | undefined;
15211
+ theme?: "light" | "dark" | undefined;
15212
+ outputPath?: string | undefined;
15213
+ } | undefined;
15214
+ }>]>, {
15215
+ options: {
15216
+ markdown_text: string;
15217
+ images?: {
15218
+ source: string;
15219
+ id?: string | undefined;
15220
+ filename?: string | undefined;
15221
+ }[] | undefined;
15222
+ account?: string | undefined;
15223
+ };
15224
+ type: "generate";
15225
+ outputPath: string;
15226
+ } | {
15227
+ type: "verify";
15228
+ wipFilePath: string;
15229
+ hash_equal?: string | undefined;
15230
+ requireSignature?: boolean | undefined;
15231
+ } | {
15232
+ type: "sign";
15233
+ wipFilePath: string;
15234
+ account?: string | undefined;
15235
+ outputPath?: string | undefined;
15236
+ } | {
15237
+ type: "wip2html";
15238
+ wipPath: string;
15239
+ options?: {
15240
+ title?: string | undefined;
15241
+ theme?: "light" | "dark" | undefined;
15242
+ outputPath?: string | undefined;
15243
+ } | undefined;
15244
+ }, unknown>;
15245
+ declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"query_type", [z.ZodObject<{
15246
+ query_type: z.ZodLiteral<"local_mark_list">;
15247
+ filter: z.ZodOptional<z.ZodObject<{
15248
+ name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
15249
+ tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
15250
+ address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
15251
+ createdAt: z.ZodOptional<z.ZodObject<{
15252
+ gte: z.ZodOptional<z.ZodNumber>;
15253
+ lte: z.ZodOptional<z.ZodNumber>;
15254
+ }, "strip", z.ZodTypeAny, {
15255
+ gte?: number | undefined;
15256
+ lte?: number | undefined;
15257
+ }, {
15258
+ gte?: number | undefined;
15259
+ lte?: number | undefined;
15260
+ }>>;
15261
+ updatedAt: z.ZodOptional<z.ZodObject<{
15262
+ gte: z.ZodOptional<z.ZodNumber>;
15263
+ lte: z.ZodOptional<z.ZodNumber>;
15264
+ }, "strip", z.ZodTypeAny, {
15265
+ gte?: number | undefined;
15266
+ lte?: number | undefined;
15267
+ }, {
15268
+ gte?: number | undefined;
15269
+ lte?: number | undefined;
15270
+ }>>;
15271
+ }, "strip", z.ZodTypeAny, {
15272
+ address?: string | undefined;
15273
+ name?: string | undefined;
15274
+ tags?: string[] | undefined;
15275
+ createdAt?: {
15276
+ gte?: number | undefined;
15277
+ lte?: number | undefined;
15278
+ } | undefined;
15279
+ updatedAt?: {
15280
+ gte?: number | undefined;
15281
+ lte?: number | undefined;
15282
+ } | undefined;
15283
+ }, {
15284
+ address?: string | undefined;
15285
+ name?: string | undefined;
15286
+ tags?: string[] | undefined;
15287
+ createdAt?: {
15288
+ gte?: number | undefined;
15289
+ lte?: number | undefined;
15290
+ } | undefined;
15291
+ updatedAt?: {
13540
15292
  gte?: number | undefined;
13541
15293
  lte?: number | undefined;
13542
15294
  } | undefined;
@@ -14063,5 +15815,140 @@ declare const WatchQueryOperationsSchema: z.ZodDiscriminatedUnion<"query_type",
14063
15815
  object: string;
14064
15816
  query_type: "onchain_received";
14065
15817
  all_type?: boolean | undefined;
14066
- }>]>;
15818
+ }>]>, {
15819
+ query_type: "local_mark_list";
15820
+ filter?: {
15821
+ address?: string | undefined;
15822
+ name?: string | undefined;
15823
+ tags?: string[] | undefined;
15824
+ createdAt?: {
15825
+ gte?: number | undefined;
15826
+ lte?: number | undefined;
15827
+ } | undefined;
15828
+ updatedAt?: {
15829
+ gte?: number | undefined;
15830
+ lte?: number | undefined;
15831
+ } | undefined;
15832
+ } | undefined;
15833
+ } | {
15834
+ query_type: "account_list";
15835
+ filter?: {
15836
+ address?: string | undefined;
15837
+ name?: string | undefined;
15838
+ createdAt?: {
15839
+ gte?: number | undefined;
15840
+ lte?: number | undefined;
15841
+ } | undefined;
15842
+ updatedAt?: {
15843
+ gte?: number | undefined;
15844
+ lte?: number | undefined;
15845
+ } | undefined;
15846
+ m?: string | undefined;
15847
+ suspended?: boolean | undefined;
15848
+ hasMessenger?: boolean | undefined;
15849
+ } | undefined;
15850
+ } | {
15851
+ query_type: "local_info_list";
15852
+ filter?: {
15853
+ name?: string | undefined;
15854
+ createdAt?: {
15855
+ gte?: number | undefined;
15856
+ lte?: number | undefined;
15857
+ } | undefined;
15858
+ updatedAt?: {
15859
+ gte?: number | undefined;
15860
+ lte?: number | undefined;
15861
+ } | undefined;
15862
+ default?: string | undefined;
15863
+ contents?: string[] | undefined;
15864
+ } | undefined;
15865
+ } | {
15866
+ query_type: "token_list";
15867
+ filter?: {
15868
+ symbol?: string | undefined;
15869
+ type?: string | undefined;
15870
+ alias_or_name?: string | undefined;
15871
+ } | undefined;
15872
+ } | {
15873
+ query_type: "account_balance";
15874
+ name_or_address?: string | undefined;
15875
+ token_type?: string | undefined;
15876
+ } | {
15877
+ query_type: "onchain_personal_profile";
15878
+ account?: string | undefined;
15879
+ } | {
15880
+ objects: string[];
15881
+ query_type: "onchain_objects";
15882
+ } | {
15883
+ object_type: import("wowok").ObjectType;
15884
+ parent: string;
15885
+ query_type: "onchain_table";
15886
+ } | {
15887
+ name: string;
15888
+ entity: number | {
15889
+ name_or_address?: string | undefined;
15890
+ local_mark_first?: boolean | undefined;
15891
+ };
15892
+ parent: string;
15893
+ query_type: "onchain_table_item_repository_data";
15894
+ } | {
15895
+ address: string | {
15896
+ name_or_address?: string | undefined;
15897
+ local_mark_first?: boolean | undefined;
15898
+ };
15899
+ parent: string;
15900
+ query_type: "onchain_table_item_permission_perm";
15901
+ } | {
15902
+ address: string | {
15903
+ name_or_address?: string | undefined;
15904
+ local_mark_first?: boolean | undefined;
15905
+ };
15906
+ query_type: "onchain_table_item_entity_registrar";
15907
+ } | {
15908
+ address: string | {
15909
+ name_or_address?: string | undefined;
15910
+ local_mark_first?: boolean | undefined;
15911
+ };
15912
+ query_type: "onchain_table_item_entity_linker";
15913
+ } | {
15914
+ address: {
15915
+ name_or_address?: string | undefined;
15916
+ local_mark_first?: boolean | undefined;
15917
+ };
15918
+ parent: string;
15919
+ query_type: "onchain_table_item_reward_record";
15920
+ } | {
15921
+ address: {
15922
+ name_or_address?: string | undefined;
15923
+ local_mark_first?: boolean | undefined;
15924
+ };
15925
+ parent: string;
15926
+ query_type: "onchain_table_item_demand_presenter";
15927
+ } | {
15928
+ address: {
15929
+ name_or_address?: string | undefined;
15930
+ local_mark_first?: boolean | undefined;
15931
+ };
15932
+ parent: string;
15933
+ query_type: "onchain_table_item_treasury_history";
15934
+ } | {
15935
+ parent: string;
15936
+ key: string;
15937
+ query_type: "onchain_table_item_machine_node";
15938
+ } | {
15939
+ u64: string | number;
15940
+ parent: string;
15941
+ query_type: "onchain_table_item_progress_history";
15942
+ } | {
15943
+ address: {
15944
+ name_or_address?: string | undefined;
15945
+ local_mark_first?: boolean | undefined;
15946
+ };
15947
+ parent: string;
15948
+ query_type: "onchain_table_item_address_mark";
15949
+ } | {
15950
+ object: string;
15951
+ query_type: "onchain_received";
15952
+ all_type?: boolean | undefined;
15953
+ }, unknown>;
14067
15954
  export { OnchainOperationsSchema, WipOperationsSchema, WatchQueryOperationsSchema, AccountOperationSchema, LocalMarkOperationSchema, LocalInfoOperationSchema, ProtocolInfoQuerySchema, CallOutputSchema, MessengerOperationInputSchema, MessengerOperationOutputSchema };