wowok_agent 2.2.3 → 2.2.5
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/dist/index.d.ts +65 -319
- package/dist/index.js +318 -157
- package/dist/schema/query/index.d.ts +25170 -4
- package/dist/schema/query/index.js +69 -4
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -15242,7 +15242,7 @@ declare const WipOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"type",
|
|
|
15242
15242
|
outputPath?: string | undefined;
|
|
15243
15243
|
} | undefined;
|
|
15244
15244
|
}, unknown>;
|
|
15245
|
-
declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"query_type", [z.ZodObject<{
|
|
15245
|
+
declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodUnion<[z.ZodDiscriminatedUnion<"query_type", [z.ZodObject<{
|
|
15246
15246
|
query_type: z.ZodLiteral<"local_mark_list">;
|
|
15247
15247
|
filter: z.ZodOptional<z.ZodObject<{
|
|
15248
15248
|
name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -15527,295 +15527,94 @@ declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
15527
15527
|
}>, z.ZodObject<{
|
|
15528
15528
|
query_type: z.ZodLiteral<"account_balance">;
|
|
15529
15529
|
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
15530
|
+
balance: z.ZodOptional<z.ZodBoolean>;
|
|
15531
|
+
coin: z.ZodOptional<z.ZodObject<{
|
|
15532
|
+
cursor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
15533
|
+
limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
15534
|
+
}, "strip", z.ZodTypeAny, {
|
|
15535
|
+
cursor?: string | null | undefined;
|
|
15536
|
+
limit?: number | null | undefined;
|
|
15537
|
+
}, {
|
|
15538
|
+
cursor?: string | null | undefined;
|
|
15539
|
+
limit?: number | null | undefined;
|
|
15540
|
+
}>>;
|
|
15530
15541
|
token_type: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
15542
|
+
network: z.ZodOptional<z.ZodEnum<[import("wowok").ENTRYPOINT.Localnet, import("wowok").ENTRYPOINT.Testnet]>>;
|
|
15531
15543
|
}, "strip", z.ZodTypeAny, {
|
|
15532
15544
|
query_type: "account_balance";
|
|
15533
15545
|
name_or_address?: string | undefined;
|
|
15546
|
+
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15547
|
+
balance?: boolean | undefined;
|
|
15534
15548
|
token_type?: string | undefined;
|
|
15549
|
+
coin?: {
|
|
15550
|
+
cursor?: string | null | undefined;
|
|
15551
|
+
limit?: number | null | undefined;
|
|
15552
|
+
} | undefined;
|
|
15535
15553
|
}, {
|
|
15536
15554
|
query_type: "account_balance";
|
|
15537
15555
|
name_or_address?: string | undefined;
|
|
15556
|
+
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15557
|
+
balance?: boolean | undefined;
|
|
15538
15558
|
token_type?: string | undefined;
|
|
15539
|
-
|
|
15559
|
+
coin?: {
|
|
15560
|
+
cursor?: string | null | undefined;
|
|
15561
|
+
limit?: number | null | undefined;
|
|
15562
|
+
} | undefined;
|
|
15563
|
+
}>]>, z.ZodDiscriminatedUnion<"query_type", [z.ZodObject<{
|
|
15540
15564
|
query_type: z.ZodLiteral<"onchain_personal_profile">;
|
|
15541
15565
|
account: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
15566
|
+
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
15567
|
+
network: z.ZodOptional<z.ZodEnum<[import("wowok").ENTRYPOINT.Localnet, import("wowok").ENTRYPOINT.Testnet]>>;
|
|
15542
15568
|
}, "strip", z.ZodTypeAny, {
|
|
15543
15569
|
query_type: "onchain_personal_profile";
|
|
15570
|
+
no_cache?: boolean | undefined;
|
|
15571
|
+
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15544
15572
|
account?: string | undefined;
|
|
15545
15573
|
}, {
|
|
15546
15574
|
query_type: "onchain_personal_profile";
|
|
15575
|
+
no_cache?: boolean | undefined;
|
|
15576
|
+
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15547
15577
|
account?: string | undefined;
|
|
15548
15578
|
}>, z.ZodObject<{
|
|
15549
15579
|
query_type: z.ZodLiteral<"onchain_objects">;
|
|
15550
15580
|
objects: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
15581
|
+
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
15582
|
+
network: z.ZodOptional<z.ZodEnum<[import("wowok").ENTRYPOINT.Localnet, import("wowok").ENTRYPOINT.Testnet]>>;
|
|
15551
15583
|
}, "strip", z.ZodTypeAny, {
|
|
15552
15584
|
objects: string[];
|
|
15553
15585
|
query_type: "onchain_objects";
|
|
15586
|
+
no_cache?: boolean | undefined;
|
|
15587
|
+
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15554
15588
|
}, {
|
|
15555
15589
|
objects: string[];
|
|
15556
15590
|
query_type: "onchain_objects";
|
|
15557
|
-
|
|
15558
|
-
|
|
15559
|
-
parent: z.ZodEffects<z.ZodString, string, string>;
|
|
15560
|
-
object_type: z.ZodEnum<[import("wowok").ObjectType.Permission, import("wowok").ObjectType.Repository, import("wowok").ObjectType.Arb, import("wowok").ObjectType.Arbitration, import("wowok").ObjectType.Service, import("wowok").ObjectType.Machine, import("wowok").ObjectType.Order, import("wowok").ObjectType.Progress, import("wowok").ObjectType.Payment, import("wowok").ObjectType.Treasury, import("wowok").ObjectType.Guard, import("wowok").ObjectType.Demand, import("wowok").ObjectType.Passport, import("wowok").ObjectType.Allocation, import("wowok").ObjectType.Resource, import("wowok").ObjectType.Reward, import("wowok").ObjectType.Discount, import("wowok").ObjectType.EntityRegistrar, import("wowok").ObjectType.EntityLinker, import("wowok").ObjectType.Proof, import("wowok").ObjectType.WReceivedObject, import("wowok").ObjectType.Contact, import("wowok").ObjectType.TableItem_ProgressHistory, import("wowok").ObjectType.TableItem_PermissionPerm, import("wowok").ObjectType.TableItem_DemandPresenter, import("wowok").ObjectType.TableItem_MachineNode, import("wowok").ObjectType.TableItem_TreasuryHistory, import("wowok").ObjectType.TableItem_RepositoryData, import("wowok").ObjectType.TableItem_RewardRecord, import("wowok").ObjectType.TableItem_EntityLinker, import("wowok").ObjectType.TableItem_AddressMark, import("wowok").ObjectType.TableItem_EntityRegistrar]>;
|
|
15561
|
-
}, "strip", z.ZodTypeAny, {
|
|
15562
|
-
object_type: import("wowok").ObjectType;
|
|
15563
|
-
parent: string;
|
|
15564
|
-
query_type: "onchain_table";
|
|
15565
|
-
}, {
|
|
15566
|
-
object_type: import("wowok").ObjectType;
|
|
15567
|
-
parent: string;
|
|
15568
|
-
query_type: "onchain_table";
|
|
15569
|
-
}>, z.ZodObject<{
|
|
15570
|
-
query_type: z.ZodLiteral<"onchain_table_item_repository_data">;
|
|
15571
|
-
parent: z.ZodEffects<z.ZodString, string, string>;
|
|
15572
|
-
name: z.ZodString;
|
|
15573
|
-
entity: z.ZodUnion<[z.ZodObject<{
|
|
15574
|
-
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
15575
|
-
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
15576
|
-
}, "strict", z.ZodTypeAny, {
|
|
15577
|
-
name_or_address?: string | undefined;
|
|
15578
|
-
local_mark_first?: boolean | undefined;
|
|
15579
|
-
}, {
|
|
15580
|
-
name_or_address?: string | undefined;
|
|
15581
|
-
local_mark_first?: boolean | undefined;
|
|
15582
|
-
}>, z.ZodNumber]>;
|
|
15583
|
-
}, "strip", z.ZodTypeAny, {
|
|
15584
|
-
name: string;
|
|
15585
|
-
entity: number | {
|
|
15586
|
-
name_or_address?: string | undefined;
|
|
15587
|
-
local_mark_first?: boolean | undefined;
|
|
15588
|
-
};
|
|
15589
|
-
parent: string;
|
|
15590
|
-
query_type: "onchain_table_item_repository_data";
|
|
15591
|
-
}, {
|
|
15592
|
-
name: string;
|
|
15593
|
-
entity: number | {
|
|
15594
|
-
name_or_address?: string | undefined;
|
|
15595
|
-
local_mark_first?: boolean | undefined;
|
|
15596
|
-
};
|
|
15597
|
-
parent: string;
|
|
15598
|
-
query_type: "onchain_table_item_repository_data";
|
|
15599
|
-
}>, z.ZodObject<{
|
|
15600
|
-
query_type: z.ZodLiteral<"onchain_table_item_permission_perm">;
|
|
15601
|
-
parent: z.ZodEffects<z.ZodString, string, string>;
|
|
15602
|
-
address: z.ZodUnion<[z.ZodObject<{
|
|
15603
|
-
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
15604
|
-
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
15605
|
-
}, "strict", z.ZodTypeAny, {
|
|
15606
|
-
name_or_address?: string | undefined;
|
|
15607
|
-
local_mark_first?: boolean | undefined;
|
|
15608
|
-
}, {
|
|
15609
|
-
name_or_address?: string | undefined;
|
|
15610
|
-
local_mark_first?: boolean | undefined;
|
|
15611
|
-
}>, z.ZodString]>;
|
|
15612
|
-
}, "strip", z.ZodTypeAny, {
|
|
15613
|
-
address: string | {
|
|
15614
|
-
name_or_address?: string | undefined;
|
|
15615
|
-
local_mark_first?: boolean | undefined;
|
|
15616
|
-
};
|
|
15617
|
-
parent: string;
|
|
15618
|
-
query_type: "onchain_table_item_permission_perm";
|
|
15619
|
-
}, {
|
|
15620
|
-
address: string | {
|
|
15621
|
-
name_or_address?: string | undefined;
|
|
15622
|
-
local_mark_first?: boolean | undefined;
|
|
15623
|
-
};
|
|
15624
|
-
parent: string;
|
|
15625
|
-
query_type: "onchain_table_item_permission_perm";
|
|
15626
|
-
}>, z.ZodObject<{
|
|
15627
|
-
query_type: z.ZodLiteral<"onchain_table_item_entity_registrar">;
|
|
15628
|
-
address: z.ZodUnion<[z.ZodObject<{
|
|
15629
|
-
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
15630
|
-
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
15631
|
-
}, "strict", z.ZodTypeAny, {
|
|
15632
|
-
name_or_address?: string | undefined;
|
|
15633
|
-
local_mark_first?: boolean | undefined;
|
|
15634
|
-
}, {
|
|
15635
|
-
name_or_address?: string | undefined;
|
|
15636
|
-
local_mark_first?: boolean | undefined;
|
|
15637
|
-
}>, z.ZodString]>;
|
|
15638
|
-
}, "strip", z.ZodTypeAny, {
|
|
15639
|
-
address: string | {
|
|
15640
|
-
name_or_address?: string | undefined;
|
|
15641
|
-
local_mark_first?: boolean | undefined;
|
|
15642
|
-
};
|
|
15643
|
-
query_type: "onchain_table_item_entity_registrar";
|
|
15644
|
-
}, {
|
|
15645
|
-
address: string | {
|
|
15646
|
-
name_or_address?: string | undefined;
|
|
15647
|
-
local_mark_first?: boolean | undefined;
|
|
15648
|
-
};
|
|
15649
|
-
query_type: "onchain_table_item_entity_registrar";
|
|
15650
|
-
}>, z.ZodObject<{
|
|
15651
|
-
query_type: z.ZodLiteral<"onchain_table_item_entity_linker">;
|
|
15652
|
-
address: z.ZodUnion<[z.ZodObject<{
|
|
15653
|
-
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
15654
|
-
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
15655
|
-
}, "strict", z.ZodTypeAny, {
|
|
15656
|
-
name_or_address?: string | undefined;
|
|
15657
|
-
local_mark_first?: boolean | undefined;
|
|
15658
|
-
}, {
|
|
15659
|
-
name_or_address?: string | undefined;
|
|
15660
|
-
local_mark_first?: boolean | undefined;
|
|
15661
|
-
}>, z.ZodString]>;
|
|
15662
|
-
}, "strip", z.ZodTypeAny, {
|
|
15663
|
-
address: string | {
|
|
15664
|
-
name_or_address?: string | undefined;
|
|
15665
|
-
local_mark_first?: boolean | undefined;
|
|
15666
|
-
};
|
|
15667
|
-
query_type: "onchain_table_item_entity_linker";
|
|
15668
|
-
}, {
|
|
15669
|
-
address: string | {
|
|
15670
|
-
name_or_address?: string | undefined;
|
|
15671
|
-
local_mark_first?: boolean | undefined;
|
|
15672
|
-
};
|
|
15673
|
-
query_type: "onchain_table_item_entity_linker";
|
|
15674
|
-
}>, z.ZodObject<{
|
|
15675
|
-
query_type: z.ZodLiteral<"onchain_table_item_reward_record">;
|
|
15676
|
-
parent: z.ZodEffects<z.ZodString, string, string>;
|
|
15677
|
-
address: 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
|
-
}>;
|
|
15687
|
-
}, "strip", z.ZodTypeAny, {
|
|
15688
|
-
address: {
|
|
15689
|
-
name_or_address?: string | undefined;
|
|
15690
|
-
local_mark_first?: boolean | undefined;
|
|
15691
|
-
};
|
|
15692
|
-
parent: string;
|
|
15693
|
-
query_type: "onchain_table_item_reward_record";
|
|
15694
|
-
}, {
|
|
15695
|
-
address: {
|
|
15696
|
-
name_or_address?: string | undefined;
|
|
15697
|
-
local_mark_first?: boolean | undefined;
|
|
15698
|
-
};
|
|
15699
|
-
parent: string;
|
|
15700
|
-
query_type: "onchain_table_item_reward_record";
|
|
15701
|
-
}>, z.ZodObject<{
|
|
15702
|
-
query_type: z.ZodLiteral<"onchain_table_item_demand_presenter">;
|
|
15703
|
-
parent: z.ZodEffects<z.ZodString, string, string>;
|
|
15704
|
-
address: z.ZodObject<{
|
|
15705
|
-
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
15706
|
-
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
15707
|
-
}, "strict", z.ZodTypeAny, {
|
|
15708
|
-
name_or_address?: string | undefined;
|
|
15709
|
-
local_mark_first?: boolean | undefined;
|
|
15710
|
-
}, {
|
|
15711
|
-
name_or_address?: string | undefined;
|
|
15712
|
-
local_mark_first?: boolean | undefined;
|
|
15713
|
-
}>;
|
|
15714
|
-
}, "strip", z.ZodTypeAny, {
|
|
15715
|
-
address: {
|
|
15716
|
-
name_or_address?: string | undefined;
|
|
15717
|
-
local_mark_first?: boolean | undefined;
|
|
15718
|
-
};
|
|
15719
|
-
parent: string;
|
|
15720
|
-
query_type: "onchain_table_item_demand_presenter";
|
|
15721
|
-
}, {
|
|
15722
|
-
address: {
|
|
15723
|
-
name_or_address?: string | undefined;
|
|
15724
|
-
local_mark_first?: boolean | undefined;
|
|
15725
|
-
};
|
|
15726
|
-
parent: string;
|
|
15727
|
-
query_type: "onchain_table_item_demand_presenter";
|
|
15728
|
-
}>, z.ZodObject<{
|
|
15729
|
-
query_type: z.ZodLiteral<"onchain_table_item_treasury_history">;
|
|
15730
|
-
parent: z.ZodEffects<z.ZodString, string, string>;
|
|
15731
|
-
address: z.ZodObject<{
|
|
15732
|
-
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
15733
|
-
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
15734
|
-
}, "strict", z.ZodTypeAny, {
|
|
15735
|
-
name_or_address?: string | undefined;
|
|
15736
|
-
local_mark_first?: boolean | undefined;
|
|
15737
|
-
}, {
|
|
15738
|
-
name_or_address?: string | undefined;
|
|
15739
|
-
local_mark_first?: boolean | undefined;
|
|
15740
|
-
}>;
|
|
15741
|
-
}, "strip", z.ZodTypeAny, {
|
|
15742
|
-
address: {
|
|
15743
|
-
name_or_address?: string | undefined;
|
|
15744
|
-
local_mark_first?: boolean | undefined;
|
|
15745
|
-
};
|
|
15746
|
-
parent: string;
|
|
15747
|
-
query_type: "onchain_table_item_treasury_history";
|
|
15748
|
-
}, {
|
|
15749
|
-
address: {
|
|
15750
|
-
name_or_address?: string | undefined;
|
|
15751
|
-
local_mark_first?: boolean | undefined;
|
|
15752
|
-
};
|
|
15753
|
-
parent: string;
|
|
15754
|
-
query_type: "onchain_table_item_treasury_history";
|
|
15755
|
-
}>, z.ZodObject<{
|
|
15756
|
-
query_type: z.ZodLiteral<"onchain_table_item_machine_node">;
|
|
15757
|
-
parent: z.ZodEffects<z.ZodString, string, string>;
|
|
15758
|
-
key: z.ZodString;
|
|
15759
|
-
}, "strip", z.ZodTypeAny, {
|
|
15760
|
-
parent: string;
|
|
15761
|
-
key: string;
|
|
15762
|
-
query_type: "onchain_table_item_machine_node";
|
|
15763
|
-
}, {
|
|
15764
|
-
parent: string;
|
|
15765
|
-
key: string;
|
|
15766
|
-
query_type: "onchain_table_item_machine_node";
|
|
15767
|
-
}>, z.ZodObject<{
|
|
15768
|
-
query_type: z.ZodLiteral<"onchain_table_item_progress_history">;
|
|
15769
|
-
parent: z.ZodEffects<z.ZodString, string, string>;
|
|
15770
|
-
u64: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
15771
|
-
}, "strip", z.ZodTypeAny, {
|
|
15772
|
-
u64: string | number;
|
|
15773
|
-
parent: string;
|
|
15774
|
-
query_type: "onchain_table_item_progress_history";
|
|
15775
|
-
}, {
|
|
15776
|
-
u64: string | number;
|
|
15777
|
-
parent: string;
|
|
15778
|
-
query_type: "onchain_table_item_progress_history";
|
|
15779
|
-
}>, z.ZodObject<{
|
|
15780
|
-
query_type: z.ZodLiteral<"onchain_table_item_address_mark">;
|
|
15781
|
-
parent: z.ZodEffects<z.ZodString, string, string>;
|
|
15782
|
-
address: z.ZodObject<{
|
|
15783
|
-
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
15784
|
-
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
15785
|
-
}, "strict", z.ZodTypeAny, {
|
|
15786
|
-
name_or_address?: string | undefined;
|
|
15787
|
-
local_mark_first?: boolean | undefined;
|
|
15788
|
-
}, {
|
|
15789
|
-
name_or_address?: string | undefined;
|
|
15790
|
-
local_mark_first?: boolean | undefined;
|
|
15791
|
-
}>;
|
|
15792
|
-
}, "strip", z.ZodTypeAny, {
|
|
15793
|
-
address: {
|
|
15794
|
-
name_or_address?: string | undefined;
|
|
15795
|
-
local_mark_first?: boolean | undefined;
|
|
15796
|
-
};
|
|
15797
|
-
parent: string;
|
|
15798
|
-
query_type: "onchain_table_item_address_mark";
|
|
15799
|
-
}, {
|
|
15800
|
-
address: {
|
|
15801
|
-
name_or_address?: string | undefined;
|
|
15802
|
-
local_mark_first?: boolean | undefined;
|
|
15803
|
-
};
|
|
15804
|
-
parent: string;
|
|
15805
|
-
query_type: "onchain_table_item_address_mark";
|
|
15591
|
+
no_cache?: boolean | undefined;
|
|
15592
|
+
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15806
15593
|
}>, z.ZodObject<{
|
|
15807
15594
|
query_type: z.ZodLiteral<"onchain_received">;
|
|
15808
15595
|
object: z.ZodString;
|
|
15809
15596
|
all_type: z.ZodOptional<z.ZodBoolean>;
|
|
15597
|
+
cursor: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
15598
|
+
limit: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
15599
|
+
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
15600
|
+
network: z.ZodOptional<z.ZodEnum<[import("wowok").ENTRYPOINT.Localnet, import("wowok").ENTRYPOINT.Testnet]>>;
|
|
15810
15601
|
}, "strip", z.ZodTypeAny, {
|
|
15811
15602
|
object: string;
|
|
15812
15603
|
query_type: "onchain_received";
|
|
15604
|
+
no_cache?: boolean | undefined;
|
|
15605
|
+
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15813
15606
|
all_type?: boolean | undefined;
|
|
15607
|
+
cursor?: string | null | undefined;
|
|
15608
|
+
limit?: number | null | undefined;
|
|
15814
15609
|
}, {
|
|
15815
15610
|
object: string;
|
|
15816
15611
|
query_type: "onchain_received";
|
|
15612
|
+
no_cache?: boolean | undefined;
|
|
15613
|
+
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15817
15614
|
all_type?: boolean | undefined;
|
|
15818
|
-
|
|
15615
|
+
cursor?: string | null | undefined;
|
|
15616
|
+
limit?: number | null | undefined;
|
|
15617
|
+
}>]>]>, {
|
|
15819
15618
|
query_type: "local_mark_list";
|
|
15820
15619
|
filter?: {
|
|
15821
15620
|
address?: string | undefined;
|
|
@@ -15872,83 +15671,30 @@ declare const WatchQueryOperationsSchema: z.ZodEffects<z.ZodDiscriminatedUnion<"
|
|
|
15872
15671
|
} | {
|
|
15873
15672
|
query_type: "account_balance";
|
|
15874
15673
|
name_or_address?: string | undefined;
|
|
15674
|
+
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15675
|
+
balance?: boolean | undefined;
|
|
15875
15676
|
token_type?: string | undefined;
|
|
15677
|
+
coin?: {
|
|
15678
|
+
cursor?: string | null | undefined;
|
|
15679
|
+
limit?: number | null | undefined;
|
|
15680
|
+
} | undefined;
|
|
15876
15681
|
} | {
|
|
15877
15682
|
query_type: "onchain_personal_profile";
|
|
15683
|
+
no_cache?: boolean | undefined;
|
|
15684
|
+
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15878
15685
|
account?: string | undefined;
|
|
15879
15686
|
} | {
|
|
15880
15687
|
objects: string[];
|
|
15881
15688
|
query_type: "onchain_objects";
|
|
15882
|
-
|
|
15883
|
-
|
|
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";
|
|
15689
|
+
no_cache?: boolean | undefined;
|
|
15690
|
+
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15949
15691
|
} | {
|
|
15950
15692
|
object: string;
|
|
15951
15693
|
query_type: "onchain_received";
|
|
15694
|
+
no_cache?: boolean | undefined;
|
|
15695
|
+
network?: import("wowok").ENTRYPOINT | undefined;
|
|
15952
15696
|
all_type?: boolean | undefined;
|
|
15697
|
+
cursor?: string | null | undefined;
|
|
15698
|
+
limit?: number | null | undefined;
|
|
15953
15699
|
}, unknown>;
|
|
15954
15700
|
export { OnchainOperationsSchema, WipOperationsSchema, WatchQueryOperationsSchema, AccountOperationSchema, LocalMarkOperationSchema, LocalInfoOperationSchema, ProtocolInfoQuerySchema, CallOutputSchema, MessengerOperationInputSchema, MessengerOperationOutputSchema };
|