@wowok/agent-mcp 2.3.16 → 2.4.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 (136) hide show
  1. package/dist/customer/index.d.ts +9 -0
  2. package/dist/customer/index.js +9 -0
  3. package/dist/customer/industry-risks.d.ts +4 -0
  4. package/dist/customer/industry-risks.js +45 -31
  5. package/dist/customer/order-monitor.js +57 -57
  6. package/dist/customer/order-strategy.js +89 -89
  7. package/dist/customer/post-purchase.js +97 -97
  8. package/dist/customer/reminder-system.js +26 -26
  9. package/dist/customer/risk-assessment.js +46 -46
  10. package/dist/customer/types.d.ts +4 -4
  11. package/dist/customer/types.js +4 -4
  12. package/dist/customer/user-preferences.d.ts +3 -0
  13. package/dist/customer/user-preferences.js +59 -50
  14. package/dist/experience/intent-distill.js +6 -6
  15. package/dist/experience/realtime-feedback.js +17 -0
  16. package/dist/index.js +360 -273
  17. package/dist/knowledge/acquisition-flywheel.d.ts +3 -0
  18. package/dist/knowledge/acquisition-flywheel.js +73 -64
  19. package/dist/knowledge/arbitration-trust.js +10 -10
  20. package/dist/knowledge/demand-matching.js +8 -8
  21. package/dist/knowledge/dynamic-pricing.js +18 -18
  22. package/dist/knowledge/flywheel-loop.js +11 -11
  23. package/dist/knowledge/glossary.js +22 -22
  24. package/dist/knowledge/guard-ledger.d.ts +19 -0
  25. package/dist/knowledge/guard-ledger.js +246 -0
  26. package/dist/knowledge/guard-lint.d.ts +76 -0
  27. package/dist/knowledge/guard-lint.js +590 -0
  28. package/dist/knowledge/guard-puzzle.d.ts +188 -0
  29. package/dist/knowledge/guard-puzzle.js +804 -0
  30. package/dist/knowledge/guard-risk.d.ts +67 -0
  31. package/dist/knowledge/guard-risk.js +1046 -0
  32. package/dist/knowledge/guard-templates.d.ts +37 -0
  33. package/dist/knowledge/guard-templates.js +329 -0
  34. package/dist/knowledge/guard-translation.d.ts +58 -0
  35. package/dist/knowledge/guard-translation.js +1118 -0
  36. package/dist/knowledge/index.d.ts +17 -0
  37. package/dist/knowledge/index.js +17 -0
  38. package/dist/knowledge/industry-evolution.js +29 -29
  39. package/dist/knowledge/industry-generalizer.js +52 -52
  40. package/dist/knowledge/industry-registry.d.ts +1 -2
  41. package/dist/knowledge/industry-registry.js +43 -36
  42. package/dist/knowledge/intent-metrics.js +67 -67
  43. package/dist/knowledge/process-model.js +80 -80
  44. package/dist/knowledge/reputation-rules.js +9 -9
  45. package/dist/knowledge/reward-templates.js +51 -51
  46. package/dist/knowledge/safety-rules.js +63 -2
  47. package/dist/knowledge/tool-constraints.js +17 -11
  48. package/dist/knowledge/trust-metrics.js +26 -26
  49. package/dist/safety/confirm-gate.d.ts +4 -2
  50. package/dist/safety/confirm-gate.js +48 -4
  51. package/dist/schema/call/allocation.d.ts +24 -14
  52. package/dist/schema/call/arbitration.d.ts +142 -132
  53. package/dist/schema/call/base.d.ts +901 -43
  54. package/dist/schema/call/base.js +77 -13
  55. package/dist/schema/call/bridge-handler.js +15 -2
  56. package/dist/schema/call/bridge.d.ts +795 -27
  57. package/dist/schema/call/bridge.js +37 -0
  58. package/dist/schema/call/contact.d.ts +10 -0
  59. package/dist/schema/call/demand.d.ts +94 -84
  60. package/dist/schema/call/guard.d.ts +229 -46
  61. package/dist/schema/call/guard.js +50 -0
  62. package/dist/schema/call/handler.js +46 -14
  63. package/dist/schema/call/machine.d.ts +158 -138
  64. package/dist/schema/call/order.d.ts +10 -0
  65. package/dist/schema/call/payment.d.ts +10 -0
  66. package/dist/schema/call/permission.d.ts +314 -304
  67. package/dist/schema/call/personal.d.ts +10 -0
  68. package/dist/schema/call/progress.d.ts +10 -0
  69. package/dist/schema/call/proof.d.ts +20 -0
  70. package/dist/schema/call/repository.d.ts +32 -22
  71. package/dist/schema/call/reward.d.ts +10 -0
  72. package/dist/schema/call/semantic.d.ts +9 -2
  73. package/dist/schema/call/semantic.js +617 -25
  74. package/dist/schema/call/service.d.ts +20 -10
  75. package/dist/schema/call/treasury.d.ts +10 -0
  76. package/dist/schema/config/index.d.ts +18 -0
  77. package/dist/schema/config/index.js +17 -0
  78. package/dist/schema/index.d.ts +6 -0
  79. package/dist/schema/index.js +5 -0
  80. package/dist/schema/local/index.d.ts +9 -9
  81. package/dist/schema/local/index.js +9 -0
  82. package/dist/schema/local/wip.d.ts +39 -19
  83. package/dist/schema/local/wip.js +5 -5
  84. package/dist/schema/messenger/index.d.ts +376 -55
  85. package/dist/schema/messenger/index.js +19 -19
  86. package/dist/schema/operations.d.ts +1881 -681
  87. package/dist/schema/operations.js +91 -96
  88. package/dist/schema/project/index.d.ts +21 -0
  89. package/dist/schema/project/index.js +32 -0
  90. package/dist/schema/query/index.d.ts +1074 -168
  91. package/dist/schema/query/index.js +8 -8
  92. package/dist/schema/schema-query/index.d.ts +33 -0
  93. package/dist/schema/schema-query/index.js +36 -0
  94. package/dist/schema/schema-version.d.ts +25 -0
  95. package/dist/schema/schema-version.js +76 -0
  96. package/dist/schema/trust/index.d.ts +407 -0
  97. package/dist/schema/trust/index.js +113 -0
  98. package/dist/schema/utils/guard-parser.js +4 -4
  99. package/dist/schema/utils/node-parser.js +14 -14
  100. package/dist/schemas/bridge_operation.output.json +233 -9
  101. package/dist/schemas/bridge_operation.schema.json +67 -8
  102. package/dist/schemas/config_operation.output.json +18 -0
  103. package/dist/schemas/config_operation.schema.json +34 -0
  104. package/dist/schemas/guard-node-schema.json +82 -0
  105. package/dist/schemas/guard2file.schema.json +8 -0
  106. package/dist/schemas/index.json +19 -1
  107. package/dist/schemas/machineNode2file.schema.json +8 -0
  108. package/dist/schemas/messenger_operation.output.json +236 -10
  109. package/dist/schemas/onchain_events.output.json +718 -0
  110. package/dist/schemas/onchain_operations.output.json +286 -11
  111. package/dist/schemas/onchain_operations.schema.json +19 -16
  112. package/dist/schemas/onchain_operations_allocation.schema.json +8 -0
  113. package/dist/schemas/onchain_operations_arbitration.schema.json +8 -0
  114. package/dist/schemas/onchain_operations_contact.schema.json +8 -0
  115. package/dist/schemas/onchain_operations_demand.schema.json +8 -0
  116. package/dist/schemas/onchain_operations_gen_passport.schema.json +16 -0
  117. package/dist/schemas/onchain_operations_guard.schema.json +11 -16
  118. package/dist/schemas/onchain_operations_machine.schema.json +8 -0
  119. package/dist/schemas/onchain_operations_order.schema.json +8 -0
  120. package/dist/schemas/onchain_operations_payment.schema.json +8 -0
  121. package/dist/schemas/onchain_operations_permission.schema.json +8 -0
  122. package/dist/schemas/onchain_operations_personal.schema.json +8 -0
  123. package/dist/schemas/onchain_operations_progress.schema.json +8 -0
  124. package/dist/schemas/onchain_operations_repository.schema.json +8 -0
  125. package/dist/schemas/onchain_operations_reward.schema.json +8 -0
  126. package/dist/schemas/onchain_operations_service.schema.json +8 -0
  127. package/dist/schemas/onchain_operations_treasury.schema.json +8 -0
  128. package/dist/schemas/onchain_table_data.output.json +718 -0
  129. package/dist/schemas/project_operation.output.json +18 -0
  130. package/dist/schemas/project_operation.schema.json +42 -0
  131. package/dist/schemas/query_toolkit.schema.json +360 -368
  132. package/dist/schemas/schema_query.schema.json +6 -3
  133. package/dist/schemas/trust_score.output.json +327 -0
  134. package/dist/schemas/trust_score.schema.json +46 -0
  135. package/dist/schemas/wip_file.output.json +24 -1
  136. package/package.json +2 -2
@@ -11,10 +11,13 @@ export const EvmAddressSchema = z.string()
11
11
  .describe("EVM address (0x + 40 hex)");
12
12
  export const BridgeAmountSchema = z.string()
13
13
  .describe("Cross-chain amount as a string in the smallest unit (e.g. wei / token minimal unit). Example: 1 ETH = '1000000000000000000'");
14
+ export const BridgeIdempotencyKeySchema = z.string().min(1).max(128)
15
+ .describe("Idempotency key (1-128 chars). Prevents duplicate transfers on retry. If a successful transfer with this key exists, returns it immediately (idempotentHit=true).");
14
16
  export const BridgeOperationTypeSchema = z.enum([
15
17
  "cross_chain_wow_to_evm",
16
18
  "cross_chain_evm_to_wow",
17
19
  "claim_wow_to_evm",
20
+ "resume_transfer",
18
21
  "withdraw",
19
22
  "query_active_evm_account",
20
23
  "query_supported_evm_chains",
@@ -28,6 +31,10 @@ export const BridgeWowToEvmDataSchema = z.object({
28
31
  amount: BridgeAmountSchema.describe("Cross-chain amount (WOW-side smallest unit, wowDecimals)"),
29
32
  withdrawTo: EvmAddressSchema.optional()
30
33
  .describe("Final withdrawal EVM address; if omitted, assets remain in activeEvmAccount. When provided, the SDK uses the activeEvmAccount key to transfer to this address."),
34
+ idempotencyKey: BridgeIdempotencyKeySchema.optional()
35
+ .describe("Idempotency key to prevent duplicate deposits on retry. If a successful transfer with this key exists, returns it immediately (idempotentHit=true)."),
36
+ idempotentByParams: z.boolean().optional()
37
+ .describe("If true, auto-generates an idempotency key from token+amount+withdrawTo. Use when you want implicit idempotency without managing explicit keys."),
31
38
  }).strict().describe("WOW→EVM cross-chain (step 1: deposit only). " +
32
39
  "Returns immediately with depositTxDigest + bridgeSeq + transferId. " +
33
40
  "This operation only locks assets on WOW; it does NOT complete the cross-chain. " +
@@ -40,6 +47,10 @@ export const BridgeEvmToWowDataSchema = z.object({
40
47
  amount: BridgeAmountSchema.describe("Cross-chain amount (EVM-side smallest unit, evmDecimals)"),
41
48
  recipientWowAddress: WowAddressSchema.optional()
42
49
  .describe("WOW recipient address or account name; defaults to env.account if omitted"),
50
+ idempotencyKey: BridgeIdempotencyKeySchema.optional()
51
+ .describe("Idempotency key to prevent duplicate deposits on retry. If a successful transfer with this key exists, returns it immediately (idempotentHit=true)."),
52
+ idempotentByParams: z.boolean().optional()
53
+ .describe("If true, auto-generates an idempotency key from token+amount+recipientWowAddress. Use when you want implicit idempotency without managing explicit keys."),
43
54
  }).strict().describe("EVM→WOW cross-chain (single step: deposit). " +
44
55
  "Returns immediately with depositTxHash + transferId. " +
45
56
  "Bridge will automatically claim on WOW (no WOW gas needed, no user action required). " +
@@ -59,6 +70,17 @@ export const BridgeClaimWowToEvmDataSchema = z.object({
59
70
  "After claim_wow_to_evm returns, the claim tx has been submitted and confirmed (1 block) on EVM. " +
60
71
  "Use query_transfer_status(refresh=true) to verify latestState.step = 'completed'. " +
61
72
  "[Gas requirements] Requires activeEvmAccount to have target-chain gas (for the claim transaction).");
73
+ export const BridgeResumeTransferDataSchema = z.object({
74
+ transferId: z.string().describe("Transfer ID to resume (br_<timestamp>_<counter>)"),
75
+ }).strict().describe("Resume an interrupted transfer from its current step. " +
76
+ "Use this when a transfer was interrupted (e.g. MCP restart, network error) and you want to continue from where it left off. " +
77
+ "The SDK determines the current step and attempts to advance it: " +
78
+ "- If deposit step failed: retries the deposit " +
79
+ "- If deposit is pending/confirmed: waits for bridge signatures and proceeds to claim " +
80
+ "- If claim step is ready: executes the claim " +
81
+ "- If transfer is already complete: returns the existing record (idempotentHit=true) " +
82
+ "[Returns] The updated transfer record after attempting to advance it. " +
83
+ "[Requires env] WOW env is needed for WOW-side operations; EVM-side operations use activeEvmAccount.");
62
84
  export const BridgeWithdrawDataSchema = z.object({
63
85
  to: EvmAddressSchema.describe("Withdrawal target EVM address"),
64
86
  amount: BridgeAmountSchema.describe("Withdrawal amount (smallest unit)"),
@@ -186,6 +208,11 @@ export const BridgeOperationsSchema = z.preprocess((input) => {
186
208
  data: BridgeClaimWowToEvmDataSchema,
187
209
  env: CallEnvSchema.optional(),
188
210
  }).describe("WOW→EVM claim (step 2): claim assets on EVM after bridge signed. Requires activeEvmAccount to have EVM gas. [Requires WOW mainnet env]"),
211
+ z.object({
212
+ operation_type: z.literal("resume_transfer"),
213
+ data: BridgeResumeTransferDataSchema,
214
+ env: CallEnvSchema.optional(),
215
+ }).describe("Resume an interrupted transfer from its current step. Safe to retry. [Requires WOW mainnet env for WOW-side operations]"),
189
216
  z.object({
190
217
  operation_type: z.literal("withdraw"),
191
218
  data: BridgeWithdrawDataSchema,
@@ -258,6 +285,7 @@ export const BridgeTransferRecordSchema = z.object({
258
285
  recipientEth: z.string().optional().describe("ETH-side recipient address"),
259
286
  recipientWow: z.string().optional().describe("WOW-side recipient address"),
260
287
  intermediateEthAccount: z.string().describe("Intermediate EVM account (activeEvmAccount)"),
288
+ idempotencyKey: z.string().optional().describe("Idempotency key used for this transfer (if any)"),
261
289
  step: z.enum(["init", "deposit", "claimed", "withdraw", "withdrawn"]).describe("Current step in the transfer lifecycle: " +
262
290
  "init=just created; " +
263
291
  "deposit=source chain deposit in progress; " +
@@ -283,11 +311,15 @@ export const BridgeWowToEvmResultSchema = z.object({
283
311
  bridgeSeq: z.string().describe("Bridge sequence number"),
284
312
  activeEvmAccount: z.string().describe("activeEvmAccount address that will receive the assets"),
285
313
  transferId: z.string().describe("Transfer ID (br_<timestamp>_<counter>). Save this for claim_wow_to_evm (step 2) and query_transfer_status"),
314
+ idempotentHit: z.boolean().optional().describe("true if this result was returned from idempotency cache (no new deposit executed)"),
315
+ idempotencyKey: z.string().optional().describe("Idempotency key used (if any)"),
286
316
  }).strict().describe("WOW→EVM cross-chain step 1 result (deposit only, claim pending)");
287
317
  export const BridgeEvmToWowResultSchema = z.object({
288
318
  depositTxHash: z.string().describe("EVM deposit tx hash"),
289
319
  activeEvmAccount: z.string().describe("activeEvmAccount address that initiated the deposit"),
290
320
  transferId: z.string().describe("Transfer ID (br_<timestamp>_<counter>). Save this for query_transfer_status"),
321
+ idempotentHit: z.boolean().optional().describe("true if this result was returned from idempotency cache (no new deposit executed)"),
322
+ idempotencyKey: z.string().optional().describe("Idempotency key used (if any)"),
291
323
  }).strict().describe("EVM→WOW cross-chain result (deposit submitted, auto-claim in progress)");
292
324
  export const BridgeClaimWowToEvmResultSchema = z.object({
293
325
  claimTxHash: z.string().describe("EVM claim tx hash"),
@@ -357,6 +389,11 @@ export const BridgeOutputSchema = z.discriminatedUnion("operation_type", [
357
389
  result: BridgeClaimWowToEvmResultSchema,
358
390
  message: z.string().optional().describe("Result summary or hint message"),
359
391
  }).describe("WOW→EVM claim (step 2) result"),
392
+ z.object({
393
+ operation_type: z.literal("resume_transfer"),
394
+ result: BridgeTransferRecordSchema,
395
+ message: z.string().optional().describe("Result summary or hint message"),
396
+ }).describe("Resume interrupted transfer result"),
360
397
  z.object({
361
398
  operation_type: z.literal("withdraw"),
362
399
  result: BridgeWithdrawResultSchema,
@@ -605,6 +605,8 @@ export declare const CallContact_InputSchema: z.ZodObject<{
605
605
  confirmed: z.ZodOptional<z.ZodBoolean>;
606
606
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
607
607
  project: z.ZodOptional<z.ZodString>;
608
+ client_schema_version: z.ZodOptional<z.ZodString>;
609
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
608
610
  }, "strict", z.ZodTypeAny, {
609
611
  account: string;
610
612
  no_cache?: boolean | undefined;
@@ -614,6 +616,8 @@ export declare const CallContact_InputSchema: z.ZodObject<{
614
616
  confirmed?: boolean | undefined;
615
617
  user_intent_phrases?: string[] | undefined;
616
618
  project?: string | undefined;
619
+ client_schema_version?: string | undefined;
620
+ schema_strict_mode?: boolean | undefined;
617
621
  }, {
618
622
  no_cache?: boolean | undefined;
619
623
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -623,6 +627,8 @@ export declare const CallContact_InputSchema: z.ZodObject<{
623
627
  confirmed?: boolean | undefined;
624
628
  user_intent_phrases?: string[] | undefined;
625
629
  project?: string | undefined;
630
+ client_schema_version?: string | undefined;
631
+ schema_strict_mode?: boolean | undefined;
626
632
  }>>;
627
633
  submission: z.ZodOptional<z.ZodObject<{
628
634
  type: z.ZodLiteral<"submission">;
@@ -890,6 +896,8 @@ export declare const CallContact_InputSchema: z.ZodObject<{
890
896
  confirmed?: boolean | undefined;
891
897
  user_intent_phrases?: string[] | undefined;
892
898
  project?: string | undefined;
899
+ client_schema_version?: string | undefined;
900
+ schema_strict_mode?: boolean | undefined;
893
901
  } | undefined;
894
902
  }, {
895
903
  data: {
@@ -977,6 +985,8 @@ export declare const CallContact_InputSchema: z.ZodObject<{
977
985
  confirmed?: boolean | undefined;
978
986
  user_intent_phrases?: string[] | undefined;
979
987
  project?: string | undefined;
988
+ client_schema_version?: string | undefined;
989
+ schema_strict_mode?: boolean | undefined;
980
990
  } | undefined;
981
991
  }>;
982
992
  export type ImEntry = z.infer<typeof ImEntrySchema>;
@@ -358,20 +358,6 @@ export declare const CallDemand_DataSchema: z.ZodObject<{
358
358
  } | {
359
359
  op: "clear";
360
360
  } | undefined;
361
- location?: string | undefined;
362
- owner_receive?: {
363
- received: {
364
- id: string;
365
- balance: string | number;
366
- payment: string;
367
- }[];
368
- balance: string | number;
369
- token_type: string;
370
- } | "recently" | {
371
- type: string;
372
- id: string;
373
- content_raw?: any;
374
- }[] | undefined;
375
361
  guards?: {
376
362
  op: "add";
377
363
  guard: {
@@ -390,6 +376,20 @@ export declare const CallDemand_DataSchema: z.ZodObject<{
390
376
  } | {
391
377
  op: "clear";
392
378
  } | undefined;
379
+ location?: string | undefined;
380
+ owner_receive?: {
381
+ received: {
382
+ id: string;
383
+ balance: string | number;
384
+ payment: string;
385
+ }[];
386
+ balance: string | number;
387
+ token_type: string;
388
+ } | "recently" | {
389
+ type: string;
390
+ id: string;
391
+ content_raw?: any;
392
+ }[] | undefined;
393
393
  um?: string | null | undefined;
394
394
  feedback?: {
395
395
  who: {
@@ -428,20 +428,6 @@ export declare const CallDemand_DataSchema: z.ZodObject<{
428
428
  } | {
429
429
  op: "clear";
430
430
  } | undefined;
431
- location?: string | undefined;
432
- owner_receive?: {
433
- received: {
434
- id: string;
435
- balance: string | number;
436
- payment: string;
437
- }[];
438
- balance: string | number;
439
- token_type: string;
440
- } | "recently" | {
441
- type: string;
442
- id: string;
443
- content_raw?: any;
444
- }[] | undefined;
445
431
  guards?: {
446
432
  op: "add";
447
433
  guard: {
@@ -460,6 +446,20 @@ export declare const CallDemand_DataSchema: z.ZodObject<{
460
446
  } | {
461
447
  op: "clear";
462
448
  } | undefined;
449
+ location?: string | undefined;
450
+ owner_receive?: {
451
+ received: {
452
+ id: string;
453
+ balance: string | number;
454
+ payment: string;
455
+ }[];
456
+ balance: string | number;
457
+ token_type: string;
458
+ } | "recently" | {
459
+ type: string;
460
+ id: string;
461
+ content_raw?: any;
462
+ }[] | undefined;
463
463
  um?: string | null | undefined;
464
464
  feedback?: {
465
465
  who: {
@@ -730,20 +730,6 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
730
730
  } | {
731
731
  op: "clear";
732
732
  } | undefined;
733
- location?: string | undefined;
734
- owner_receive?: {
735
- received: {
736
- id: string;
737
- balance: string | number;
738
- payment: string;
739
- }[];
740
- balance: string | number;
741
- token_type: string;
742
- } | "recently" | {
743
- type: string;
744
- id: string;
745
- content_raw?: any;
746
- }[] | undefined;
747
733
  guards?: {
748
734
  op: "add";
749
735
  guard: {
@@ -762,6 +748,20 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
762
748
  } | {
763
749
  op: "clear";
764
750
  } | undefined;
751
+ location?: string | undefined;
752
+ owner_receive?: {
753
+ received: {
754
+ id: string;
755
+ balance: string | number;
756
+ payment: string;
757
+ }[];
758
+ balance: string | number;
759
+ token_type: string;
760
+ } | "recently" | {
761
+ type: string;
762
+ id: string;
763
+ content_raw?: any;
764
+ }[] | undefined;
765
765
  um?: string | null | undefined;
766
766
  feedback?: {
767
767
  who: {
@@ -800,20 +800,6 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
800
800
  } | {
801
801
  op: "clear";
802
802
  } | undefined;
803
- location?: string | undefined;
804
- owner_receive?: {
805
- received: {
806
- id: string;
807
- balance: string | number;
808
- payment: string;
809
- }[];
810
- balance: string | number;
811
- token_type: string;
812
- } | "recently" | {
813
- type: string;
814
- id: string;
815
- content_raw?: any;
816
- }[] | undefined;
817
803
  guards?: {
818
804
  op: "add";
819
805
  guard: {
@@ -832,6 +818,20 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
832
818
  } | {
833
819
  op: "clear";
834
820
  } | undefined;
821
+ location?: string | undefined;
822
+ owner_receive?: {
823
+ received: {
824
+ id: string;
825
+ balance: string | number;
826
+ payment: string;
827
+ }[];
828
+ balance: string | number;
829
+ token_type: string;
830
+ } | "recently" | {
831
+ type: string;
832
+ id: string;
833
+ content_raw?: any;
834
+ }[] | undefined;
835
835
  um?: string | null | undefined;
836
836
  feedback?: {
837
837
  who: {
@@ -856,6 +856,8 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
856
856
  confirmed: z.ZodOptional<z.ZodBoolean>;
857
857
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
858
858
  project: z.ZodOptional<z.ZodString>;
859
+ client_schema_version: z.ZodOptional<z.ZodString>;
860
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
859
861
  }, "strict", z.ZodTypeAny, {
860
862
  account: string;
861
863
  no_cache?: boolean | undefined;
@@ -865,6 +867,8 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
865
867
  confirmed?: boolean | undefined;
866
868
  user_intent_phrases?: string[] | undefined;
867
869
  project?: string | undefined;
870
+ client_schema_version?: string | undefined;
871
+ schema_strict_mode?: boolean | undefined;
868
872
  }, {
869
873
  no_cache?: boolean | undefined;
870
874
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -874,6 +878,8 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
874
878
  confirmed?: boolean | undefined;
875
879
  user_intent_phrases?: string[] | undefined;
876
880
  project?: string | undefined;
881
+ client_schema_version?: string | undefined;
882
+ schema_strict_mode?: boolean | undefined;
877
883
  }>>;
878
884
  submission: z.ZodOptional<z.ZodObject<{
879
885
  type: z.ZodLiteral<"submission">;
@@ -1080,20 +1086,6 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
1080
1086
  } | {
1081
1087
  op: "clear";
1082
1088
  } | undefined;
1083
- location?: string | undefined;
1084
- owner_receive?: {
1085
- received: {
1086
- id: string;
1087
- balance: string | number;
1088
- payment: string;
1089
- }[];
1090
- balance: string | number;
1091
- token_type: string;
1092
- } | "recently" | {
1093
- type: string;
1094
- id: string;
1095
- content_raw?: any;
1096
- }[] | undefined;
1097
1089
  guards?: {
1098
1090
  op: "add";
1099
1091
  guard: {
@@ -1112,6 +1104,20 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
1112
1104
  } | {
1113
1105
  op: "clear";
1114
1106
  } | undefined;
1107
+ location?: string | undefined;
1108
+ owner_receive?: {
1109
+ received: {
1110
+ id: string;
1111
+ balance: string | number;
1112
+ payment: string;
1113
+ }[];
1114
+ balance: string | number;
1115
+ token_type: string;
1116
+ } | "recently" | {
1117
+ type: string;
1118
+ id: string;
1119
+ content_raw?: any;
1120
+ }[] | undefined;
1115
1121
  um?: string | null | undefined;
1116
1122
  feedback?: {
1117
1123
  who: {
@@ -1163,6 +1169,8 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
1163
1169
  confirmed?: boolean | undefined;
1164
1170
  user_intent_phrases?: string[] | undefined;
1165
1171
  project?: string | undefined;
1172
+ client_schema_version?: string | undefined;
1173
+ schema_strict_mode?: boolean | undefined;
1166
1174
  } | undefined;
1167
1175
  }, {
1168
1176
  data: {
@@ -1189,20 +1197,6 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
1189
1197
  } | {
1190
1198
  op: "clear";
1191
1199
  } | undefined;
1192
- location?: string | undefined;
1193
- owner_receive?: {
1194
- received: {
1195
- id: string;
1196
- balance: string | number;
1197
- payment: string;
1198
- }[];
1199
- balance: string | number;
1200
- token_type: string;
1201
- } | "recently" | {
1202
- type: string;
1203
- id: string;
1204
- content_raw?: any;
1205
- }[] | undefined;
1206
1200
  guards?: {
1207
1201
  op: "add";
1208
1202
  guard: {
@@ -1221,6 +1215,20 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
1221
1215
  } | {
1222
1216
  op: "clear";
1223
1217
  } | undefined;
1218
+ location?: string | undefined;
1219
+ owner_receive?: {
1220
+ received: {
1221
+ id: string;
1222
+ balance: string | number;
1223
+ payment: string;
1224
+ }[];
1225
+ balance: string | number;
1226
+ token_type: string;
1227
+ } | "recently" | {
1228
+ type: string;
1229
+ id: string;
1230
+ content_raw?: any;
1231
+ }[] | undefined;
1224
1232
  um?: string | null | undefined;
1225
1233
  feedback?: {
1226
1234
  who: {
@@ -1272,6 +1280,8 @@ export declare const CallDemand_InputSchema: z.ZodObject<{
1272
1280
  confirmed?: boolean | undefined;
1273
1281
  user_intent_phrases?: string[] | undefined;
1274
1282
  project?: string | undefined;
1283
+ client_schema_version?: string | undefined;
1284
+ schema_strict_mode?: boolean | undefined;
1275
1285
  } | undefined;
1276
1286
  }>;
1277
1287
  export type CallDemand_Data = z.infer<typeof CallDemand_DataSchema>;