@wowok/agent-mcp 2.3.13 → 2.3.16
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/config/index.d.ts +1 -0
- package/dist/config/index.js +1 -0
- package/dist/config/runtime.d.ts +26 -0
- package/dist/config/runtime.js +217 -0
- package/dist/customer/industry-risks.d.ts +36 -0
- package/dist/customer/industry-risks.js +424 -0
- package/dist/customer/info-puzzle.d.ts +102 -0
- package/dist/customer/info-puzzle.js +312 -0
- package/dist/customer/order-monitor.d.ts +75 -0
- package/dist/customer/order-monitor.js +327 -0
- package/dist/customer/order-strategy.d.ts +36 -0
- package/dist/customer/order-strategy.js +373 -0
- package/dist/customer/post-purchase.d.ts +42 -0
- package/dist/customer/post-purchase.js +350 -0
- package/dist/customer/reminder-system.d.ts +42 -0
- package/dist/customer/reminder-system.js +295 -0
- package/dist/customer/risk-assessment.d.ts +8 -0
- package/dist/customer/risk-assessment.js +337 -0
- package/dist/customer/types.d.ts +193 -0
- package/dist/customer/types.js +13 -0
- package/dist/customer/user-preferences.d.ts +67 -0
- package/dist/customer/user-preferences.js +451 -0
- package/dist/experience/experience-reuse.d.ts +10 -0
- package/dist/experience/experience-reuse.js +103 -0
- package/dist/experience/index.d.ts +6 -0
- package/dist/experience/index.js +5 -0
- package/dist/experience/intent-distill.d.ts +3 -0
- package/dist/experience/intent-distill.js +83 -0
- package/dist/experience/realtime-feedback.d.ts +5 -0
- package/dist/experience/realtime-feedback.js +77 -0
- package/dist/experience/types.d.ts +50 -0
- package/dist/experience/types.js +1 -0
- package/dist/experience/user-profile.d.ts +25 -0
- package/dist/experience/user-profile.js +171 -0
- package/dist/harness/checkpoint.d.ts +8 -0
- package/dist/harness/checkpoint.js +129 -0
- package/dist/harness/index.d.ts +33 -0
- package/dist/harness/index.js +75 -0
- package/dist/harness/plan.d.ts +18 -0
- package/dist/harness/plan.js +252 -0
- package/dist/harness/recover.d.ts +17 -0
- package/dist/harness/recover.js +139 -0
- package/dist/harness/types.d.ts +137 -0
- package/dist/harness/types.js +1 -0
- package/dist/harness/verify.d.ts +42 -0
- package/dist/harness/verify.js +237 -0
- package/dist/index.js +667 -201
- package/dist/knowledge/acquisition-flywheel.d.ts +50 -0
- package/dist/knowledge/acquisition-flywheel.js +183 -0
- package/dist/knowledge/arbitration-trust.d.ts +24 -0
- package/dist/knowledge/arbitration-trust.js +117 -0
- package/dist/knowledge/audit-rules.d.ts +28 -0
- package/dist/knowledge/audit-rules.js +141 -0
- package/dist/knowledge/demand-matching.d.ts +29 -0
- package/dist/knowledge/demand-matching.js +132 -0
- package/dist/knowledge/dynamic-pricing.d.ts +31 -0
- package/dist/knowledge/dynamic-pricing.js +87 -0
- package/dist/knowledge/flywheel-loop.d.ts +87 -0
- package/dist/knowledge/flywheel-loop.js +378 -0
- package/dist/knowledge/glossary.d.ts +18 -0
- package/dist/knowledge/glossary.js +209 -0
- package/dist/knowledge/index.d.ts +64 -0
- package/dist/knowledge/index.js +66 -0
- package/dist/knowledge/industry-evolution.d.ts +82 -0
- package/dist/knowledge/industry-evolution.js +323 -0
- package/dist/knowledge/industry-generalizer.d.ts +17 -0
- package/dist/knowledge/industry-generalizer.js +381 -0
- package/dist/knowledge/industry-registry.d.ts +49 -0
- package/dist/knowledge/industry-registry.js +167 -0
- package/dist/knowledge/intent-metrics.d.ts +42 -0
- package/dist/knowledge/intent-metrics.js +566 -0
- package/dist/knowledge/process-model.d.ts +24 -0
- package/dist/knowledge/process-model.js +160 -0
- package/dist/knowledge/reputation-rules.d.ts +42 -0
- package/dist/knowledge/reputation-rules.js +99 -0
- package/dist/knowledge/reward-templates.d.ts +25 -0
- package/dist/knowledge/reward-templates.js +125 -0
- package/dist/knowledge/safety-rules.d.ts +36 -0
- package/dist/knowledge/safety-rules.js +171 -0
- package/dist/knowledge/tool-constraints.d.ts +30 -0
- package/dist/knowledge/tool-constraints.js +185 -0
- package/dist/knowledge/trust-metrics.d.ts +37 -0
- package/dist/knowledge/trust-metrics.js +138 -0
- package/dist/loop-engineering/aggregate.d.ts +50 -0
- package/dist/loop-engineering/aggregate.js +132 -0
- package/dist/loop-engineering/diagnose.d.ts +22 -0
- package/dist/loop-engineering/diagnose.js +273 -0
- package/dist/loop-engineering/improve.d.ts +26 -0
- package/dist/loop-engineering/improve.js +229 -0
- package/dist/loop-engineering/index.d.ts +4 -0
- package/dist/loop-engineering/index.js +4 -0
- package/dist/loop-engineering/pipeline.d.ts +17 -0
- package/dist/loop-engineering/pipeline.js +56 -0
- package/dist/mode-market/index.d.ts +3 -0
- package/dist/mode-market/index.js +3 -0
- package/dist/mode-market/registry.d.ts +53 -0
- package/dist/mode-market/registry.js +124 -0
- package/dist/mode-market/review.d.ts +27 -0
- package/dist/mode-market/review.js +214 -0
- package/dist/mode-market/submission.d.ts +25 -0
- package/dist/mode-market/submission.js +85 -0
- package/dist/project/graph.d.ts +71 -0
- package/dist/project/graph.js +314 -0
- package/dist/project/index.d.ts +62 -0
- package/dist/project/index.js +167 -0
- package/dist/project/namespace.d.ts +62 -0
- package/dist/project/namespace.js +181 -0
- package/dist/project/query.d.ts +40 -0
- package/dist/project/query.js +110 -0
- package/dist/safety/confirm-gate.d.ts +15 -0
- package/dist/safety/confirm-gate.js +44 -0
- package/dist/safety/index.d.ts +3 -0
- package/dist/safety/index.js +3 -0
- package/dist/safety/preview.d.ts +2 -0
- package/dist/safety/preview.js +36 -0
- package/dist/schema/call/allocation.d.ts +55 -40
- package/dist/schema/call/arbitration.d.ts +201 -186
- package/dist/schema/call/base.d.ts +2104 -24
- package/dist/schema/call/base.js +168 -22
- package/dist/schema/call/bridge-handler.js +36 -18
- package/dist/schema/call/bridge.d.ts +777 -120
- package/dist/schema/call/bridge.js +13 -2
- package/dist/schema/call/contact.d.ts +15 -0
- package/dist/schema/call/demand.d.ts +69 -54
- package/dist/schema/call/guard.d.ts +125 -80
- package/dist/schema/call/handler.d.ts +5 -1
- package/dist/schema/call/handler.js +108 -3
- package/dist/schema/call/index.d.ts +1 -0
- package/dist/schema/call/index.js +1 -0
- package/dist/schema/call/machine.d.ts +830 -800
- package/dist/schema/call/order.d.ts +27 -12
- package/dist/schema/call/payment.d.ts +15 -0
- package/dist/schema/call/permission.d.ts +15 -0
- package/dist/schema/call/personal.d.ts +15 -0
- package/dist/schema/call/progress.d.ts +21 -6
- package/dist/schema/call/proof.d.ts +42 -12
- package/dist/schema/call/proof.js +3 -3
- package/dist/schema/call/repository.d.ts +91 -76
- package/dist/schema/call/reward.d.ts +51 -36
- package/dist/schema/call/semantic.d.ts +24 -0
- package/dist/schema/call/semantic.js +981 -0
- package/dist/schema/call/service.d.ts +444 -429
- package/dist/schema/call/treasury.d.ts +219 -204
- package/dist/schema/common/index.js +3 -3
- package/dist/schema/local/index.d.ts +341 -74
- package/dist/schema/local/index.js +44 -7
- package/dist/schema/messenger/index.d.ts +1034 -92
- package/dist/schema/messenger/index.js +18 -0
- package/dist/schema/operations.d.ts +2634 -1817
- package/dist/schema/operations.js +16 -5
- package/dist/schema/query/index.d.ts +2293 -2289
- package/dist/schema/query/index.js +34 -28
- package/dist/schemas/account_operation.output.json +28 -16
- package/dist/schemas/account_operation.schema.json +2 -2
- package/dist/schemas/bridge_operation.output.json +520 -0
- package/dist/schemas/bridge_operation.schema.json +15 -0
- package/dist/schemas/guard2file.schema.json +15 -0
- package/dist/schemas/index.json +1 -1
- package/dist/schemas/local_info_operation.output.json +26 -0
- package/dist/schemas/local_info_operation.schema.json +1 -1
- package/dist/schemas/local_mark_operation.output.json +27 -1
- package/dist/schemas/local_mark_operation.schema.json +4 -4
- package/dist/schemas/machineNode2file.schema.json +15 -0
- package/dist/schemas/messenger_operation.output.json +549 -0
- package/dist/schemas/messenger_operation.schema.json +21 -0
- package/dist/schemas/onchain_events.output.json +3 -0
- package/dist/schemas/onchain_operations.output.json +814 -37
- package/dist/schemas/onchain_operations.schema.json +117 -40
- package/dist/schemas/onchain_operations_allocation.schema.json +26 -9
- package/dist/schemas/onchain_operations_arbitration.schema.json +26 -9
- package/dist/schemas/onchain_operations_contact.schema.json +26 -9
- package/dist/schemas/onchain_operations_demand.schema.json +26 -9
- package/dist/schemas/onchain_operations_gen_passport.schema.json +51 -17
- package/dist/schemas/onchain_operations_guard.schema.json +26 -9
- package/dist/schemas/onchain_operations_machine.schema.json +92 -32
- package/dist/schemas/onchain_operations_order.schema.json +26 -9
- package/dist/schemas/onchain_operations_payment.schema.json +26 -9
- package/dist/schemas/onchain_operations_permission.schema.json +26 -9
- package/dist/schemas/onchain_operations_personal.schema.json +26 -9
- package/dist/schemas/onchain_operations_progress.schema.json +26 -9
- package/dist/schemas/onchain_operations_repository.schema.json +26 -9
- package/dist/schemas/onchain_operations_reward.schema.json +26 -9
- package/dist/schemas/onchain_operations_service.schema.json +26 -9
- package/dist/schemas/onchain_operations_treasury.schema.json +26 -9
- package/dist/schemas/onchain_table_data.output.json +224 -69
- package/dist/schemas/onchain_table_data.schema.json +2 -2
- package/dist/schemas/query_toolkit.schema.json +5 -1
- package/dist/telemetry/index.d.ts +19 -0
- package/dist/telemetry/index.js +112 -0
- package/dist/telemetry/redact.d.ts +2 -0
- package/dist/telemetry/redact.js +23 -0
- package/dist/telemetry/storage.d.ts +8 -0
- package/dist/telemetry/storage.js +80 -0
- package/package.json +6 -3
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { CallEnvSchema } from "./base.js";
|
|
2
|
+
import { CallEnvSchema, SemanticSummarySchema } from "./base.js";
|
|
3
3
|
import { WowAddressSchema } from "../common/index.js";
|
|
4
4
|
export const BridgeTokenSchema = z.enum(["ETH", "WETH", "WBTC", "USDC", "USDT"])
|
|
5
5
|
.describe("Cross-chain token identifier. ETH=native ETH; WETH/WBTC/USDC/USDT=ERC20. Decimals are handled by SDK config.");
|
|
@@ -398,11 +398,22 @@ export const BridgeCallOutputSchema = z.object({
|
|
|
398
398
|
result: z.discriminatedUnion("type", [
|
|
399
399
|
z.object({
|
|
400
400
|
type: z.literal("data"),
|
|
401
|
-
data: z.
|
|
401
|
+
data: z.unknown().describe("Operation result data (structure varies by operation_type)"),
|
|
402
402
|
}).describe("Successful result"),
|
|
403
403
|
z.object({
|
|
404
404
|
type: z.literal("error"),
|
|
405
405
|
error: z.string().describe("Error message"),
|
|
406
|
+
error_code: z
|
|
407
|
+
.enum([
|
|
408
|
+
"invalid_parameter", "guard_rejected", "state_conflict",
|
|
409
|
+
"insufficient_balance", "object_not_found", "permission_denied",
|
|
410
|
+
"immutable_violation", "network_error", "unknown",
|
|
411
|
+
])
|
|
412
|
+
.optional()
|
|
413
|
+
.describe("Error classification for programmatic recovery"),
|
|
414
|
+
retryable: z.boolean().optional().describe("Whether the operation can be retried as-is"),
|
|
415
|
+
recovery_hint: z.string().optional().describe("Recovery suggestion for AI or user"),
|
|
406
416
|
}).describe("Error result"),
|
|
407
417
|
]).describe("Bridge operation result (data or error)"),
|
|
418
|
+
semantic: SemanticSummarySchema.optional().describe("Business semantic summary for bridge operation"),
|
|
408
419
|
}).describe("Bridge operation output (matches CallOutput structure returned by the handler)");
|
|
@@ -602,18 +602,27 @@ export declare const CallContact_InputSchema: z.ZodObject<{
|
|
|
602
602
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
603
603
|
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
|
|
604
604
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
605
|
+
confirmed: z.ZodOptional<z.ZodBoolean>;
|
|
606
|
+
user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
607
|
+
project: z.ZodOptional<z.ZodString>;
|
|
605
608
|
}, "strict", z.ZodTypeAny, {
|
|
606
609
|
account: string;
|
|
607
610
|
no_cache?: boolean | undefined;
|
|
608
611
|
network?: import("@wowok/wowok").ENTRYPOINT | undefined;
|
|
609
612
|
permission_guard?: string[] | undefined;
|
|
610
613
|
referrer?: string | undefined;
|
|
614
|
+
confirmed?: boolean | undefined;
|
|
615
|
+
user_intent_phrases?: string[] | undefined;
|
|
616
|
+
project?: string | undefined;
|
|
611
617
|
}, {
|
|
612
618
|
no_cache?: boolean | undefined;
|
|
613
619
|
network?: import("@wowok/wowok").ENTRYPOINT | undefined;
|
|
614
620
|
account?: string | undefined;
|
|
615
621
|
permission_guard?: string[] | undefined;
|
|
616
622
|
referrer?: string | undefined;
|
|
623
|
+
confirmed?: boolean | undefined;
|
|
624
|
+
user_intent_phrases?: string[] | undefined;
|
|
625
|
+
project?: string | undefined;
|
|
617
626
|
}>>;
|
|
618
627
|
submission: z.ZodOptional<z.ZodObject<{
|
|
619
628
|
type: z.ZodLiteral<"submission">;
|
|
@@ -878,6 +887,9 @@ export declare const CallContact_InputSchema: z.ZodObject<{
|
|
|
878
887
|
network?: import("@wowok/wowok").ENTRYPOINT | undefined;
|
|
879
888
|
permission_guard?: string[] | undefined;
|
|
880
889
|
referrer?: string | undefined;
|
|
890
|
+
confirmed?: boolean | undefined;
|
|
891
|
+
user_intent_phrases?: string[] | undefined;
|
|
892
|
+
project?: string | undefined;
|
|
881
893
|
} | undefined;
|
|
882
894
|
}, {
|
|
883
895
|
data: {
|
|
@@ -962,6 +974,9 @@ export declare const CallContact_InputSchema: z.ZodObject<{
|
|
|
962
974
|
account?: string | undefined;
|
|
963
975
|
permission_guard?: string[] | undefined;
|
|
964
976
|
referrer?: string | undefined;
|
|
977
|
+
confirmed?: boolean | undefined;
|
|
978
|
+
user_intent_phrases?: string[] | undefined;
|
|
979
|
+
project?: string | undefined;
|
|
965
980
|
} | undefined;
|
|
966
981
|
}>;
|
|
967
982
|
export type ImEntry = z.infer<typeof ImEntrySchema>;
|
|
@@ -349,6 +349,15 @@ export declare const CallDemand_DataSchema: z.ZodObject<{
|
|
|
349
349
|
} | undefined;
|
|
350
350
|
};
|
|
351
351
|
description?: string | undefined;
|
|
352
|
+
rewards?: {
|
|
353
|
+
op: "set" | "add";
|
|
354
|
+
objects: string[];
|
|
355
|
+
} | {
|
|
356
|
+
op: "remove";
|
|
357
|
+
objects: string[];
|
|
358
|
+
} | {
|
|
359
|
+
op: "clear";
|
|
360
|
+
} | undefined;
|
|
352
361
|
location?: string | undefined;
|
|
353
362
|
owner_receive?: {
|
|
354
363
|
received: {
|
|
@@ -363,15 +372,6 @@ export declare const CallDemand_DataSchema: z.ZodObject<{
|
|
|
363
372
|
id: string;
|
|
364
373
|
content_raw?: any;
|
|
365
374
|
}[] | undefined;
|
|
366
|
-
rewards?: {
|
|
367
|
-
op: "set" | "add";
|
|
368
|
-
objects: string[];
|
|
369
|
-
} | {
|
|
370
|
-
op: "remove";
|
|
371
|
-
objects: string[];
|
|
372
|
-
} | {
|
|
373
|
-
op: "clear";
|
|
374
|
-
} | undefined;
|
|
375
375
|
guards?: {
|
|
376
376
|
op: "add";
|
|
377
377
|
guard: {
|
|
@@ -419,6 +419,15 @@ export declare const CallDemand_DataSchema: z.ZodObject<{
|
|
|
419
419
|
} | undefined;
|
|
420
420
|
};
|
|
421
421
|
description?: string | undefined;
|
|
422
|
+
rewards?: {
|
|
423
|
+
op: "set" | "add";
|
|
424
|
+
objects: string[];
|
|
425
|
+
} | {
|
|
426
|
+
op: "remove";
|
|
427
|
+
objects: string[];
|
|
428
|
+
} | {
|
|
429
|
+
op: "clear";
|
|
430
|
+
} | undefined;
|
|
422
431
|
location?: string | undefined;
|
|
423
432
|
owner_receive?: {
|
|
424
433
|
received: {
|
|
@@ -433,15 +442,6 @@ export declare const CallDemand_DataSchema: z.ZodObject<{
|
|
|
433
442
|
id: string;
|
|
434
443
|
content_raw?: any;
|
|
435
444
|
}[] | undefined;
|
|
436
|
-
rewards?: {
|
|
437
|
-
op: "set" | "add";
|
|
438
|
-
objects: string[];
|
|
439
|
-
} | {
|
|
440
|
-
op: "remove";
|
|
441
|
-
objects: string[];
|
|
442
|
-
} | {
|
|
443
|
-
op: "clear";
|
|
444
|
-
} | undefined;
|
|
445
445
|
guards?: {
|
|
446
446
|
op: "add";
|
|
447
447
|
guard: {
|
|
@@ -721,6 +721,15 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
721
721
|
} | undefined;
|
|
722
722
|
};
|
|
723
723
|
description?: string | undefined;
|
|
724
|
+
rewards?: {
|
|
725
|
+
op: "set" | "add";
|
|
726
|
+
objects: string[];
|
|
727
|
+
} | {
|
|
728
|
+
op: "remove";
|
|
729
|
+
objects: string[];
|
|
730
|
+
} | {
|
|
731
|
+
op: "clear";
|
|
732
|
+
} | undefined;
|
|
724
733
|
location?: string | undefined;
|
|
725
734
|
owner_receive?: {
|
|
726
735
|
received: {
|
|
@@ -735,15 +744,6 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
735
744
|
id: string;
|
|
736
745
|
content_raw?: any;
|
|
737
746
|
}[] | undefined;
|
|
738
|
-
rewards?: {
|
|
739
|
-
op: "set" | "add";
|
|
740
|
-
objects: string[];
|
|
741
|
-
} | {
|
|
742
|
-
op: "remove";
|
|
743
|
-
objects: string[];
|
|
744
|
-
} | {
|
|
745
|
-
op: "clear";
|
|
746
|
-
} | undefined;
|
|
747
747
|
guards?: {
|
|
748
748
|
op: "add";
|
|
749
749
|
guard: {
|
|
@@ -791,6 +791,15 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
791
791
|
} | undefined;
|
|
792
792
|
};
|
|
793
793
|
description?: string | undefined;
|
|
794
|
+
rewards?: {
|
|
795
|
+
op: "set" | "add";
|
|
796
|
+
objects: string[];
|
|
797
|
+
} | {
|
|
798
|
+
op: "remove";
|
|
799
|
+
objects: string[];
|
|
800
|
+
} | {
|
|
801
|
+
op: "clear";
|
|
802
|
+
} | undefined;
|
|
794
803
|
location?: string | undefined;
|
|
795
804
|
owner_receive?: {
|
|
796
805
|
received: {
|
|
@@ -805,15 +814,6 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
805
814
|
id: string;
|
|
806
815
|
content_raw?: any;
|
|
807
816
|
}[] | undefined;
|
|
808
|
-
rewards?: {
|
|
809
|
-
op: "set" | "add";
|
|
810
|
-
objects: string[];
|
|
811
|
-
} | {
|
|
812
|
-
op: "remove";
|
|
813
|
-
objects: string[];
|
|
814
|
-
} | {
|
|
815
|
-
op: "clear";
|
|
816
|
-
} | undefined;
|
|
817
817
|
guards?: {
|
|
818
818
|
op: "add";
|
|
819
819
|
guard: {
|
|
@@ -853,18 +853,27 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
853
853
|
no_cache: z.ZodOptional<z.ZodBoolean>;
|
|
854
854
|
network: z.ZodOptional<z.ZodEnum<[import("@wowok/wowok").ENTRYPOINT.Localnet, import("@wowok/wowok").ENTRYPOINT.Testnet, import("@wowok/wowok").ENTRYPOINT.Mainnet]>>;
|
|
855
855
|
referrer: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
856
|
+
confirmed: z.ZodOptional<z.ZodBoolean>;
|
|
857
|
+
user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
858
|
+
project: z.ZodOptional<z.ZodString>;
|
|
856
859
|
}, "strict", z.ZodTypeAny, {
|
|
857
860
|
account: string;
|
|
858
861
|
no_cache?: boolean | undefined;
|
|
859
862
|
network?: import("@wowok/wowok").ENTRYPOINT | undefined;
|
|
860
863
|
permission_guard?: string[] | undefined;
|
|
861
864
|
referrer?: string | undefined;
|
|
865
|
+
confirmed?: boolean | undefined;
|
|
866
|
+
user_intent_phrases?: string[] | undefined;
|
|
867
|
+
project?: string | undefined;
|
|
862
868
|
}, {
|
|
863
869
|
no_cache?: boolean | undefined;
|
|
864
870
|
network?: import("@wowok/wowok").ENTRYPOINT | undefined;
|
|
865
871
|
account?: string | undefined;
|
|
866
872
|
permission_guard?: string[] | undefined;
|
|
867
873
|
referrer?: string | undefined;
|
|
874
|
+
confirmed?: boolean | undefined;
|
|
875
|
+
user_intent_phrases?: string[] | undefined;
|
|
876
|
+
project?: string | undefined;
|
|
868
877
|
}>>;
|
|
869
878
|
submission: z.ZodOptional<z.ZodObject<{
|
|
870
879
|
type: z.ZodLiteral<"submission">;
|
|
@@ -1062,6 +1071,15 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
1062
1071
|
} | undefined;
|
|
1063
1072
|
};
|
|
1064
1073
|
description?: string | undefined;
|
|
1074
|
+
rewards?: {
|
|
1075
|
+
op: "set" | "add";
|
|
1076
|
+
objects: string[];
|
|
1077
|
+
} | {
|
|
1078
|
+
op: "remove";
|
|
1079
|
+
objects: string[];
|
|
1080
|
+
} | {
|
|
1081
|
+
op: "clear";
|
|
1082
|
+
} | undefined;
|
|
1065
1083
|
location?: string | undefined;
|
|
1066
1084
|
owner_receive?: {
|
|
1067
1085
|
received: {
|
|
@@ -1076,15 +1094,6 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
1076
1094
|
id: string;
|
|
1077
1095
|
content_raw?: any;
|
|
1078
1096
|
}[] | undefined;
|
|
1079
|
-
rewards?: {
|
|
1080
|
-
op: "set" | "add";
|
|
1081
|
-
objects: string[];
|
|
1082
|
-
} | {
|
|
1083
|
-
op: "remove";
|
|
1084
|
-
objects: string[];
|
|
1085
|
-
} | {
|
|
1086
|
-
op: "clear";
|
|
1087
|
-
} | undefined;
|
|
1088
1097
|
guards?: {
|
|
1089
1098
|
op: "add";
|
|
1090
1099
|
guard: {
|
|
@@ -1151,6 +1160,9 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
1151
1160
|
network?: import("@wowok/wowok").ENTRYPOINT | undefined;
|
|
1152
1161
|
permission_guard?: string[] | undefined;
|
|
1153
1162
|
referrer?: string | undefined;
|
|
1163
|
+
confirmed?: boolean | undefined;
|
|
1164
|
+
user_intent_phrases?: string[] | undefined;
|
|
1165
|
+
project?: string | undefined;
|
|
1154
1166
|
} | undefined;
|
|
1155
1167
|
}, {
|
|
1156
1168
|
data: {
|
|
@@ -1168,6 +1180,15 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
1168
1180
|
} | undefined;
|
|
1169
1181
|
};
|
|
1170
1182
|
description?: string | undefined;
|
|
1183
|
+
rewards?: {
|
|
1184
|
+
op: "set" | "add";
|
|
1185
|
+
objects: string[];
|
|
1186
|
+
} | {
|
|
1187
|
+
op: "remove";
|
|
1188
|
+
objects: string[];
|
|
1189
|
+
} | {
|
|
1190
|
+
op: "clear";
|
|
1191
|
+
} | undefined;
|
|
1171
1192
|
location?: string | undefined;
|
|
1172
1193
|
owner_receive?: {
|
|
1173
1194
|
received: {
|
|
@@ -1182,15 +1203,6 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
1182
1203
|
id: string;
|
|
1183
1204
|
content_raw?: any;
|
|
1184
1205
|
}[] | undefined;
|
|
1185
|
-
rewards?: {
|
|
1186
|
-
op: "set" | "add";
|
|
1187
|
-
objects: string[];
|
|
1188
|
-
} | {
|
|
1189
|
-
op: "remove";
|
|
1190
|
-
objects: string[];
|
|
1191
|
-
} | {
|
|
1192
|
-
op: "clear";
|
|
1193
|
-
} | undefined;
|
|
1194
1206
|
guards?: {
|
|
1195
1207
|
op: "add";
|
|
1196
1208
|
guard: {
|
|
@@ -1257,6 +1269,9 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
|
|
|
1257
1269
|
account?: string | undefined;
|
|
1258
1270
|
permission_guard?: string[] | undefined;
|
|
1259
1271
|
referrer?: string | undefined;
|
|
1272
|
+
confirmed?: boolean | undefined;
|
|
1273
|
+
user_intent_phrases?: string[] | undefined;
|
|
1274
|
+
project?: string | undefined;
|
|
1260
1275
|
} | undefined;
|
|
1261
1276
|
}>;
|
|
1262
1277
|
export type CallDemand_Data = z.infer<typeof CallDemand_DataSchema>;
|