@wowok/agent-mcp 2.3.16 → 2.3.18

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 (106) 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 +14 -0
  5. package/dist/customer/user-preferences.d.ts +3 -0
  6. package/dist/customer/user-preferences.js +9 -0
  7. package/dist/experience/realtime-feedback.js +17 -0
  8. package/dist/index.js +360 -273
  9. package/dist/knowledge/acquisition-flywheel.d.ts +3 -0
  10. package/dist/knowledge/acquisition-flywheel.js +9 -0
  11. package/dist/knowledge/guard-ledger.d.ts +19 -0
  12. package/dist/knowledge/guard-ledger.js +219 -0
  13. package/dist/knowledge/guard-puzzle.d.ts +93 -0
  14. package/dist/knowledge/guard-puzzle.js +278 -0
  15. package/dist/knowledge/guard-risk.d.ts +60 -0
  16. package/dist/knowledge/guard-risk.js +474 -0
  17. package/dist/knowledge/guard-translation.d.ts +46 -0
  18. package/dist/knowledge/guard-translation.js +487 -0
  19. package/dist/knowledge/index.d.ts +13 -0
  20. package/dist/knowledge/index.js +13 -0
  21. package/dist/knowledge/industry-registry.d.ts +1 -2
  22. package/dist/knowledge/industry-registry.js +23 -3
  23. package/dist/knowledge/safety-rules.js +61 -0
  24. package/dist/knowledge/tool-constraints.js +12 -22
  25. package/dist/safety/confirm-gate.d.ts +4 -2
  26. package/dist/safety/confirm-gate.js +48 -4
  27. package/dist/schema/call/allocation.d.ts +24 -14
  28. package/dist/schema/call/arbitration.d.ts +142 -132
  29. package/dist/schema/call/base.d.ts +901 -43
  30. package/dist/schema/call/base.js +66 -2
  31. package/dist/schema/call/bridge-handler.js +15 -2
  32. package/dist/schema/call/bridge.d.ts +769 -1
  33. package/dist/schema/call/bridge.js +37 -0
  34. package/dist/schema/call/contact.d.ts +10 -0
  35. package/dist/schema/call/demand.d.ts +10 -0
  36. package/dist/schema/call/guard.d.ts +76 -46
  37. package/dist/schema/call/handler.js +46 -14
  38. package/dist/schema/call/machine.d.ts +158 -138
  39. package/dist/schema/call/order.d.ts +10 -0
  40. package/dist/schema/call/payment.d.ts +10 -0
  41. package/dist/schema/call/permission.d.ts +232 -222
  42. package/dist/schema/call/personal.d.ts +10 -0
  43. package/dist/schema/call/progress.d.ts +10 -0
  44. package/dist/schema/call/proof.d.ts +20 -0
  45. package/dist/schema/call/repository.d.ts +32 -22
  46. package/dist/schema/call/reward.d.ts +10 -0
  47. package/dist/schema/call/semantic.d.ts +9 -2
  48. package/dist/schema/call/semantic.js +409 -21
  49. package/dist/schema/call/service.d.ts +20 -10
  50. package/dist/schema/call/treasury.d.ts +10 -0
  51. package/dist/schema/config/index.d.ts +18 -0
  52. package/dist/schema/config/index.js +17 -0
  53. package/dist/schema/index.d.ts +6 -0
  54. package/dist/schema/index.js +5 -0
  55. package/dist/schema/local/index.d.ts +9 -9
  56. package/dist/schema/local/index.js +9 -0
  57. package/dist/schema/messenger/index.d.ts +350 -29
  58. package/dist/schema/messenger/index.js +17 -17
  59. package/dist/schema/operations.d.ts +1667 -545
  60. package/dist/schema/operations.js +91 -96
  61. package/dist/schema/project/index.d.ts +21 -0
  62. package/dist/schema/project/index.js +32 -0
  63. package/dist/schema/query/index.d.ts +1074 -168
  64. package/dist/schema/query/index.js +8 -8
  65. package/dist/schema/schema-query/index.d.ts +33 -0
  66. package/dist/schema/schema-query/index.js +36 -0
  67. package/dist/schema/schema-version.d.ts +25 -0
  68. package/dist/schema/schema-version.js +76 -0
  69. package/dist/schema/trust/index.d.ts +407 -0
  70. package/dist/schema/trust/index.js +113 -0
  71. package/dist/schemas/bridge_operation.output.json +224 -0
  72. package/dist/schemas/bridge_operation.schema.json +67 -8
  73. package/dist/schemas/config_operation.output.json +18 -0
  74. package/dist/schemas/config_operation.schema.json +34 -0
  75. package/dist/schemas/guard-node-schema.json +82 -0
  76. package/dist/schemas/guard2file.schema.json +8 -0
  77. package/dist/schemas/index.json +19 -1
  78. package/dist/schemas/machineNode2file.schema.json +8 -0
  79. package/dist/schemas/messenger_operation.output.json +224 -0
  80. package/dist/schemas/onchain_events.output.json +718 -0
  81. package/dist/schemas/onchain_operations.output.json +277 -2
  82. package/dist/schemas/onchain_operations.schema.json +19 -16
  83. package/dist/schemas/onchain_operations_allocation.schema.json +8 -0
  84. package/dist/schemas/onchain_operations_arbitration.schema.json +8 -0
  85. package/dist/schemas/onchain_operations_contact.schema.json +8 -0
  86. package/dist/schemas/onchain_operations_demand.schema.json +8 -0
  87. package/dist/schemas/onchain_operations_gen_passport.schema.json +16 -0
  88. package/dist/schemas/onchain_operations_guard.schema.json +11 -16
  89. package/dist/schemas/onchain_operations_machine.schema.json +8 -0
  90. package/dist/schemas/onchain_operations_order.schema.json +8 -0
  91. package/dist/schemas/onchain_operations_payment.schema.json +8 -0
  92. package/dist/schemas/onchain_operations_permission.schema.json +8 -0
  93. package/dist/schemas/onchain_operations_personal.schema.json +8 -0
  94. package/dist/schemas/onchain_operations_progress.schema.json +8 -0
  95. package/dist/schemas/onchain_operations_repository.schema.json +8 -0
  96. package/dist/schemas/onchain_operations_reward.schema.json +8 -0
  97. package/dist/schemas/onchain_operations_service.schema.json +8 -0
  98. package/dist/schemas/onchain_operations_treasury.schema.json +8 -0
  99. package/dist/schemas/onchain_table_data.output.json +718 -0
  100. package/dist/schemas/project_operation.output.json +18 -0
  101. package/dist/schemas/project_operation.schema.json +42 -0
  102. package/dist/schemas/query_toolkit.schema.json +360 -368
  103. package/dist/schemas/schema_query.schema.json +6 -3
  104. package/dist/schemas/trust_score.output.json +327 -0
  105. package/dist/schemas/trust_score.schema.json +46 -0
  106. package/package.json +2 -2
@@ -12,6 +12,31 @@ function fireSuccessHook(result, context) {
12
12
  catch { }
13
13
  }
14
14
  }
15
+ function applySchemaWarning(output, context) {
16
+ const schemaCheck = context?.schema_check;
17
+ if (!schemaCheck || (schemaCheck.warnings.length === 0 && schemaCheck.errors.length === 0)) {
18
+ return output;
19
+ }
20
+ const warnings = [...schemaCheck.warnings, ...schemaCheck.errors];
21
+ let semantic = output.semantic;
22
+ if (semantic && warnings.length > 0) {
23
+ semantic = {
24
+ ...semantic,
25
+ warnings: [...(semantic.warnings || []), ...warnings],
26
+ };
27
+ }
28
+ const schemaWarning = {
29
+ compatible: schemaCheck.compatible,
30
+ warnings,
31
+ client_version: schemaCheck.client_version,
32
+ server_versions: schemaCheck.versions,
33
+ };
34
+ return {
35
+ ...output,
36
+ semantic,
37
+ schema_warning: schemaWarning,
38
+ };
39
+ }
15
40
  function convertBigInts(obj) {
16
41
  if (typeof obj === "bigint")
17
42
  return obj.toString();
@@ -86,9 +111,10 @@ export function handleCallResult(result, context) {
86
111
  const harnessReport = runHarnessLoops(context, output, classified.error_code);
87
112
  if (harnessReport)
88
113
  output.harness_report = harnessReport;
114
+ const finalOutput = applySchemaWarning(output, context);
89
115
  return {
90
- content: [{ type: "text", text: output.message }],
91
- structuredContent: output,
116
+ content: [{ type: "text", text: finalOutput.message }],
117
+ structuredContent: finalOutput,
92
118
  };
93
119
  }
94
120
  if (safeResult && "digest" in safeResult) {
@@ -112,12 +138,13 @@ export function handleCallResult(result, context) {
112
138
  const harnessReport = runHarnessLoops(context, output, classified.error_code);
113
139
  if (harnessReport)
114
140
  output.harness_report = harnessReport;
141
+ const finalOutput = applySchemaWarning(output, context);
115
142
  return {
116
143
  content: [
117
- { type: "text", text: output.message },
144
+ { type: "text", text: finalOutput.message },
118
145
  { type: "text", text: JSON.stringify(r) },
119
146
  ],
120
- structuredContent: output,
147
+ structuredContent: finalOutput,
121
148
  };
122
149
  }
123
150
  const output = {
@@ -129,12 +156,13 @@ export function handleCallResult(result, context) {
129
156
  if (harnessReport)
130
157
  output.harness_report = harnessReport;
131
158
  fireSuccessHook(result, context);
159
+ const finalOutput = applySchemaWarning(output, context);
132
160
  return {
133
161
  content: [
134
- { type: "text", text: output.message },
162
+ { type: "text", text: finalOutput.message },
135
163
  { type: "text", text: JSON.stringify(r) },
136
164
  ],
137
- structuredContent: output,
165
+ structuredContent: finalOutput,
138
166
  };
139
167
  }
140
168
  if (safeResult && "guard" in safeResult && "submission" in safeResult) {
@@ -156,12 +184,13 @@ export function handleCallResult(result, context) {
156
184
  const harnessReport = runHarnessLoops(context, output);
157
185
  if (harnessReport)
158
186
  output.harness_report = harnessReport;
187
+ const finalOutput = applySchemaWarning(output, context);
159
188
  return {
160
189
  content: [
161
- { type: "text", text: output.message },
190
+ { type: "text", text: finalOutput.message },
162
191
  { type: "text", text: JSON.stringify(safeResult) },
163
192
  ],
164
- structuredContent: output,
193
+ structuredContent: finalOutput,
165
194
  };
166
195
  }
167
196
  if (Array.isArray(safeResult)) {
@@ -172,12 +201,13 @@ export function handleCallResult(result, context) {
172
201
  const harnessReport = runHarnessLoops(context, output);
173
202
  if (harnessReport)
174
203
  output.harness_report = harnessReport;
204
+ const finalOutput = applySchemaWarning(output, context);
175
205
  return {
176
206
  content: [
177
- { type: "text", text: output.message },
207
+ { type: "text", text: finalOutput.message },
178
208
  { type: "text", text: JSON.stringify(safeResult) },
179
209
  ],
180
- structuredContent: output,
210
+ structuredContent: finalOutput,
181
211
  };
182
212
  }
183
213
  if (safeResult === undefined || safeResult === null) {
@@ -188,9 +218,10 @@ export function handleCallResult(result, context) {
188
218
  const harnessReport = runHarnessLoops(context, output);
189
219
  if (harnessReport)
190
220
  output.harness_report = harnessReport;
221
+ const finalOutput = applySchemaWarning(output, context);
191
222
  return {
192
- content: [{ type: "text", text: output.message }],
193
- structuredContent: output,
223
+ content: [{ type: "text", text: finalOutput.message }],
224
+ structuredContent: finalOutput,
194
225
  };
195
226
  }
196
227
  const output = {
@@ -201,9 +232,10 @@ export function handleCallResult(result, context) {
201
232
  const harnessReport = runHarnessLoops(context, output);
202
233
  if (harnessReport)
203
234
  output.harness_report = harnessReport;
235
+ const finalOutput = applySchemaWarning(output, context);
204
236
  return {
205
- content: [{ type: "text", text: output.message }],
206
- structuredContent: output,
237
+ content: [{ type: "text", text: finalOutput.message }],
238
+ structuredContent: finalOutput,
207
239
  };
208
240
  }
209
241
  export function createServerConfig(packageJson, description) {
@@ -2038,29 +2038,6 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
2038
2038
  description?: string | undefined;
2039
2039
  publish?: boolean | undefined;
2040
2040
  pause?: boolean | undefined;
2041
- repository?: {
2042
- op: "set" | "add";
2043
- objects: string[];
2044
- } | {
2045
- op: "remove";
2046
- objects: string[];
2047
- } | {
2048
- op: "clear";
2049
- } | undefined;
2050
- owner_receive?: {
2051
- received: {
2052
- id: string;
2053
- balance: string | number;
2054
- payment: string;
2055
- }[];
2056
- balance: string | number;
2057
- token_type: string;
2058
- } | "recently" | {
2059
- type: string;
2060
- id: string;
2061
- content_raw?: any;
2062
- }[] | undefined;
2063
- um?: string | null | undefined;
2064
2041
  node?: {
2065
2042
  op: "add";
2066
2043
  nodes: {
@@ -2147,6 +2124,29 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
2147
2124
  } | {
2148
2125
  json_or_markdown_file: string;
2149
2126
  } | undefined;
2127
+ repository?: {
2128
+ op: "set" | "add";
2129
+ objects: string[];
2130
+ } | {
2131
+ op: "remove";
2132
+ objects: string[];
2133
+ } | {
2134
+ op: "clear";
2135
+ } | undefined;
2136
+ owner_receive?: {
2137
+ received: {
2138
+ id: string;
2139
+ balance: string | number;
2140
+ payment: string;
2141
+ }[];
2142
+ balance: string | number;
2143
+ token_type: string;
2144
+ } | "recently" | {
2145
+ type: string;
2146
+ id: string;
2147
+ content_raw?: any;
2148
+ }[] | undefined;
2149
+ um?: string | null | undefined;
2150
2150
  progress_new?: {
2151
2151
  namedNew?: {
2152
2152
  name?: string | undefined;
@@ -2193,29 +2193,6 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
2193
2193
  description?: string | undefined;
2194
2194
  publish?: boolean | undefined;
2195
2195
  pause?: boolean | undefined;
2196
- repository?: {
2197
- op: "set" | "add";
2198
- objects: string[];
2199
- } | {
2200
- op: "remove";
2201
- objects: string[];
2202
- } | {
2203
- op: "clear";
2204
- } | undefined;
2205
- owner_receive?: {
2206
- received: {
2207
- id: string;
2208
- balance: string | number;
2209
- payment: string;
2210
- }[];
2211
- balance: string | number;
2212
- token_type: string;
2213
- } | "recently" | {
2214
- type: string;
2215
- id: string;
2216
- content_raw?: any;
2217
- }[] | undefined;
2218
- um?: string | null | undefined;
2219
2196
  node?: {
2220
2197
  op: "add";
2221
2198
  nodes: {
@@ -2302,6 +2279,29 @@ export declare const CallMachine_DataSchema: z.ZodObject<{
2302
2279
  } | {
2303
2280
  json_or_markdown_file: string;
2304
2281
  } | undefined;
2282
+ repository?: {
2283
+ op: "set" | "add";
2284
+ objects: string[];
2285
+ } | {
2286
+ op: "remove";
2287
+ objects: string[];
2288
+ } | {
2289
+ op: "clear";
2290
+ } | undefined;
2291
+ owner_receive?: {
2292
+ received: {
2293
+ id: string;
2294
+ balance: string | number;
2295
+ payment: string;
2296
+ }[];
2297
+ balance: string | number;
2298
+ token_type: string;
2299
+ } | "recently" | {
2300
+ type: string;
2301
+ id: string;
2302
+ content_raw?: any;
2303
+ }[] | undefined;
2304
+ um?: string | null | undefined;
2305
2305
  progress_new?: {
2306
2306
  namedNew?: {
2307
2307
  name?: string | undefined;
@@ -3111,29 +3111,6 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
3111
3111
  description?: string | undefined;
3112
3112
  publish?: boolean | undefined;
3113
3113
  pause?: boolean | undefined;
3114
- repository?: {
3115
- op: "set" | "add";
3116
- objects: string[];
3117
- } | {
3118
- op: "remove";
3119
- objects: string[];
3120
- } | {
3121
- op: "clear";
3122
- } | undefined;
3123
- owner_receive?: {
3124
- received: {
3125
- id: string;
3126
- balance: string | number;
3127
- payment: string;
3128
- }[];
3129
- balance: string | number;
3130
- token_type: string;
3131
- } | "recently" | {
3132
- type: string;
3133
- id: string;
3134
- content_raw?: any;
3135
- }[] | undefined;
3136
- um?: string | null | undefined;
3137
3114
  node?: {
3138
3115
  op: "add";
3139
3116
  nodes: {
@@ -3220,6 +3197,29 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
3220
3197
  } | {
3221
3198
  json_or_markdown_file: string;
3222
3199
  } | undefined;
3200
+ repository?: {
3201
+ op: "set" | "add";
3202
+ objects: string[];
3203
+ } | {
3204
+ op: "remove";
3205
+ objects: string[];
3206
+ } | {
3207
+ op: "clear";
3208
+ } | undefined;
3209
+ owner_receive?: {
3210
+ received: {
3211
+ id: string;
3212
+ balance: string | number;
3213
+ payment: string;
3214
+ }[];
3215
+ balance: string | number;
3216
+ token_type: string;
3217
+ } | "recently" | {
3218
+ type: string;
3219
+ id: string;
3220
+ content_raw?: any;
3221
+ }[] | undefined;
3222
+ um?: string | null | undefined;
3223
3223
  progress_new?: {
3224
3224
  namedNew?: {
3225
3225
  name?: string | undefined;
@@ -3266,29 +3266,6 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
3266
3266
  description?: string | undefined;
3267
3267
  publish?: boolean | undefined;
3268
3268
  pause?: boolean | undefined;
3269
- repository?: {
3270
- op: "set" | "add";
3271
- objects: string[];
3272
- } | {
3273
- op: "remove";
3274
- objects: string[];
3275
- } | {
3276
- op: "clear";
3277
- } | undefined;
3278
- owner_receive?: {
3279
- received: {
3280
- id: string;
3281
- balance: string | number;
3282
- payment: string;
3283
- }[];
3284
- balance: string | number;
3285
- token_type: string;
3286
- } | "recently" | {
3287
- type: string;
3288
- id: string;
3289
- content_raw?: any;
3290
- }[] | undefined;
3291
- um?: string | null | undefined;
3292
3269
  node?: {
3293
3270
  op: "add";
3294
3271
  nodes: {
@@ -3375,6 +3352,29 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
3375
3352
  } | {
3376
3353
  json_or_markdown_file: string;
3377
3354
  } | undefined;
3355
+ repository?: {
3356
+ op: "set" | "add";
3357
+ objects: string[];
3358
+ } | {
3359
+ op: "remove";
3360
+ objects: string[];
3361
+ } | {
3362
+ op: "clear";
3363
+ } | undefined;
3364
+ owner_receive?: {
3365
+ received: {
3366
+ id: string;
3367
+ balance: string | number;
3368
+ payment: string;
3369
+ }[];
3370
+ balance: string | number;
3371
+ token_type: string;
3372
+ } | "recently" | {
3373
+ type: string;
3374
+ id: string;
3375
+ content_raw?: any;
3376
+ }[] | undefined;
3377
+ um?: string | null | undefined;
3378
3378
  progress_new?: {
3379
3379
  namedNew?: {
3380
3380
  name?: string | undefined;
@@ -3414,6 +3414,8 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
3414
3414
  confirmed: z.ZodOptional<z.ZodBoolean>;
3415
3415
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3416
3416
  project: z.ZodOptional<z.ZodString>;
3417
+ client_schema_version: z.ZodOptional<z.ZodString>;
3418
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
3417
3419
  }, "strict", z.ZodTypeAny, {
3418
3420
  account: string;
3419
3421
  no_cache?: boolean | undefined;
@@ -3423,6 +3425,8 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
3423
3425
  confirmed?: boolean | undefined;
3424
3426
  user_intent_phrases?: string[] | undefined;
3425
3427
  project?: string | undefined;
3428
+ client_schema_version?: string | undefined;
3429
+ schema_strict_mode?: boolean | undefined;
3426
3430
  }, {
3427
3431
  no_cache?: boolean | undefined;
3428
3432
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -3432,6 +3436,8 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
3432
3436
  confirmed?: boolean | undefined;
3433
3437
  user_intent_phrases?: string[] | undefined;
3434
3438
  project?: string | undefined;
3439
+ client_schema_version?: string | undefined;
3440
+ schema_strict_mode?: boolean | undefined;
3435
3441
  }>>;
3436
3442
  submission: z.ZodOptional<z.ZodObject<{
3437
3443
  type: z.ZodLiteral<"submission">;
@@ -3631,29 +3637,6 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
3631
3637
  description?: string | undefined;
3632
3638
  publish?: boolean | undefined;
3633
3639
  pause?: boolean | undefined;
3634
- repository?: {
3635
- op: "set" | "add";
3636
- objects: string[];
3637
- } | {
3638
- op: "remove";
3639
- objects: string[];
3640
- } | {
3641
- op: "clear";
3642
- } | undefined;
3643
- owner_receive?: {
3644
- received: {
3645
- id: string;
3646
- balance: string | number;
3647
- payment: string;
3648
- }[];
3649
- balance: string | number;
3650
- token_type: string;
3651
- } | "recently" | {
3652
- type: string;
3653
- id: string;
3654
- content_raw?: any;
3655
- }[] | undefined;
3656
- um?: string | null | undefined;
3657
3640
  node?: {
3658
3641
  op: "add";
3659
3642
  nodes: {
@@ -3740,6 +3723,29 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
3740
3723
  } | {
3741
3724
  json_or_markdown_file: string;
3742
3725
  } | undefined;
3726
+ repository?: {
3727
+ op: "set" | "add";
3728
+ objects: string[];
3729
+ } | {
3730
+ op: "remove";
3731
+ objects: string[];
3732
+ } | {
3733
+ op: "clear";
3734
+ } | undefined;
3735
+ owner_receive?: {
3736
+ received: {
3737
+ id: string;
3738
+ balance: string | number;
3739
+ payment: string;
3740
+ }[];
3741
+ balance: string | number;
3742
+ token_type: string;
3743
+ } | "recently" | {
3744
+ type: string;
3745
+ id: string;
3746
+ content_raw?: any;
3747
+ }[] | undefined;
3748
+ um?: string | null | undefined;
3743
3749
  progress_new?: {
3744
3750
  namedNew?: {
3745
3751
  name?: string | undefined;
@@ -3806,6 +3812,8 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
3806
3812
  confirmed?: boolean | undefined;
3807
3813
  user_intent_phrases?: string[] | undefined;
3808
3814
  project?: string | undefined;
3815
+ client_schema_version?: string | undefined;
3816
+ schema_strict_mode?: boolean | undefined;
3809
3817
  } | undefined;
3810
3818
  }, {
3811
3819
  data: {
@@ -3825,29 +3833,6 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
3825
3833
  description?: string | undefined;
3826
3834
  publish?: boolean | undefined;
3827
3835
  pause?: boolean | undefined;
3828
- repository?: {
3829
- op: "set" | "add";
3830
- objects: string[];
3831
- } | {
3832
- op: "remove";
3833
- objects: string[];
3834
- } | {
3835
- op: "clear";
3836
- } | undefined;
3837
- owner_receive?: {
3838
- received: {
3839
- id: string;
3840
- balance: string | number;
3841
- payment: string;
3842
- }[];
3843
- balance: string | number;
3844
- token_type: string;
3845
- } | "recently" | {
3846
- type: string;
3847
- id: string;
3848
- content_raw?: any;
3849
- }[] | undefined;
3850
- um?: string | null | undefined;
3851
3836
  node?: {
3852
3837
  op: "add";
3853
3838
  nodes: {
@@ -3934,6 +3919,29 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
3934
3919
  } | {
3935
3920
  json_or_markdown_file: string;
3936
3921
  } | undefined;
3922
+ repository?: {
3923
+ op: "set" | "add";
3924
+ objects: string[];
3925
+ } | {
3926
+ op: "remove";
3927
+ objects: string[];
3928
+ } | {
3929
+ op: "clear";
3930
+ } | undefined;
3931
+ owner_receive?: {
3932
+ received: {
3933
+ id: string;
3934
+ balance: string | number;
3935
+ payment: string;
3936
+ }[];
3937
+ balance: string | number;
3938
+ token_type: string;
3939
+ } | "recently" | {
3940
+ type: string;
3941
+ id: string;
3942
+ content_raw?: any;
3943
+ }[] | undefined;
3944
+ um?: string | null | undefined;
3937
3945
  progress_new?: {
3938
3946
  namedNew?: {
3939
3947
  name?: string | undefined;
@@ -4000,6 +4008,8 @@ export declare const CallMachine_InputSchema: z.ZodObject<{
4000
4008
  confirmed?: boolean | undefined;
4001
4009
  user_intent_phrases?: string[] | undefined;
4002
4010
  project?: string | undefined;
4011
+ client_schema_version?: string | undefined;
4012
+ schema_strict_mode?: boolean | undefined;
4003
4013
  } | undefined;
4004
4014
  }>;
4005
4015
  export declare const MachineNode2File_InputSchema: z.ZodObject<{
@@ -4015,6 +4025,8 @@ export declare const MachineNode2File_InputSchema: z.ZodObject<{
4015
4025
  confirmed: z.ZodOptional<z.ZodBoolean>;
4016
4026
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
4017
4027
  project: z.ZodOptional<z.ZodString>;
4028
+ client_schema_version: z.ZodOptional<z.ZodString>;
4029
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
4018
4030
  }, "strict", z.ZodTypeAny, {
4019
4031
  account: string;
4020
4032
  no_cache?: boolean | undefined;
@@ -4024,6 +4036,8 @@ export declare const MachineNode2File_InputSchema: z.ZodObject<{
4024
4036
  confirmed?: boolean | undefined;
4025
4037
  user_intent_phrases?: string[] | undefined;
4026
4038
  project?: string | undefined;
4039
+ client_schema_version?: string | undefined;
4040
+ schema_strict_mode?: boolean | undefined;
4027
4041
  }, {
4028
4042
  no_cache?: boolean | undefined;
4029
4043
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -4033,6 +4047,8 @@ export declare const MachineNode2File_InputSchema: z.ZodObject<{
4033
4047
  confirmed?: boolean | undefined;
4034
4048
  user_intent_phrases?: string[] | undefined;
4035
4049
  project?: string | undefined;
4050
+ client_schema_version?: string | undefined;
4051
+ schema_strict_mode?: boolean | undefined;
4036
4052
  }>>;
4037
4053
  }, "strict", z.ZodTypeAny, {
4038
4054
  machine: string;
@@ -4047,6 +4063,8 @@ export declare const MachineNode2File_InputSchema: z.ZodObject<{
4047
4063
  confirmed?: boolean | undefined;
4048
4064
  user_intent_phrases?: string[] | undefined;
4049
4065
  project?: string | undefined;
4066
+ client_schema_version?: string | undefined;
4067
+ schema_strict_mode?: boolean | undefined;
4050
4068
  } | undefined;
4051
4069
  }, {
4052
4070
  machine: string;
@@ -4061,6 +4079,8 @@ export declare const MachineNode2File_InputSchema: z.ZodObject<{
4061
4079
  confirmed?: boolean | undefined;
4062
4080
  user_intent_phrases?: string[] | undefined;
4063
4081
  project?: string | undefined;
4082
+ client_schema_version?: string | undefined;
4083
+ schema_strict_mode?: boolean | undefined;
4064
4084
  } | undefined;
4065
4085
  }>;
4066
4086
  export declare const MachineNode2File_OutputSchema: z.ZodDiscriminatedUnion<"status", [z.ZodObject<{
@@ -602,6 +602,8 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
602
602
  confirmed: z.ZodOptional<z.ZodBoolean>;
603
603
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
604
604
  project: z.ZodOptional<z.ZodString>;
605
+ client_schema_version: z.ZodOptional<z.ZodString>;
606
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
605
607
  }, "strict", z.ZodTypeAny, {
606
608
  account: string;
607
609
  no_cache?: boolean | undefined;
@@ -611,6 +613,8 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
611
613
  confirmed?: boolean | undefined;
612
614
  user_intent_phrases?: string[] | undefined;
613
615
  project?: string | undefined;
616
+ client_schema_version?: string | undefined;
617
+ schema_strict_mode?: boolean | undefined;
614
618
  }, {
615
619
  no_cache?: boolean | undefined;
616
620
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -620,6 +624,8 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
620
624
  confirmed?: boolean | undefined;
621
625
  user_intent_phrases?: string[] | undefined;
622
626
  project?: string | undefined;
627
+ client_schema_version?: string | undefined;
628
+ schema_strict_mode?: boolean | undefined;
623
629
  }>>;
624
630
  submission: z.ZodOptional<z.ZodObject<{
625
631
  type: z.ZodLiteral<"submission">;
@@ -890,6 +896,8 @@ export declare const CallOrder_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: {
@@ -980,6 +988,8 @@ export declare const CallOrder_InputSchema: z.ZodObject<{
980
988
  confirmed?: boolean | undefined;
981
989
  user_intent_phrases?: string[] | undefined;
982
990
  project?: string | undefined;
991
+ client_schema_version?: string | undefined;
992
+ schema_strict_mode?: boolean | undefined;
983
993
  } | undefined;
984
994
  }>;
985
995
  export type ArbConfirm = z.infer<typeof ArbConfirmSchema>;
@@ -320,6 +320,8 @@ export declare const CallPayment_InputSchema: z.ZodObject<{
320
320
  confirmed: z.ZodOptional<z.ZodBoolean>;
321
321
  user_intent_phrases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
322
322
  project: z.ZodOptional<z.ZodString>;
323
+ client_schema_version: z.ZodOptional<z.ZodString>;
324
+ schema_strict_mode: z.ZodOptional<z.ZodBoolean>;
323
325
  }, "strict", z.ZodTypeAny, {
324
326
  account: string;
325
327
  no_cache?: boolean | undefined;
@@ -329,6 +331,8 @@ export declare const CallPayment_InputSchema: z.ZodObject<{
329
331
  confirmed?: boolean | undefined;
330
332
  user_intent_phrases?: string[] | undefined;
331
333
  project?: string | undefined;
334
+ client_schema_version?: string | undefined;
335
+ schema_strict_mode?: boolean | undefined;
332
336
  }, {
333
337
  no_cache?: boolean | undefined;
334
338
  network?: import("@wowok/wowok").ENTRYPOINT | undefined;
@@ -338,6 +342,8 @@ export declare const CallPayment_InputSchema: z.ZodObject<{
338
342
  confirmed?: boolean | undefined;
339
343
  user_intent_phrases?: string[] | undefined;
340
344
  project?: string | undefined;
345
+ client_schema_version?: string | undefined;
346
+ schema_strict_mode?: boolean | undefined;
341
347
  }>>;
342
348
  }, "strict", z.ZodTypeAny, {
343
349
  data: {
@@ -375,6 +381,8 @@ export declare const CallPayment_InputSchema: z.ZodObject<{
375
381
  confirmed?: boolean | undefined;
376
382
  user_intent_phrases?: string[] | undefined;
377
383
  project?: string | undefined;
384
+ client_schema_version?: string | undefined;
385
+ schema_strict_mode?: boolean | undefined;
378
386
  } | undefined;
379
387
  }, {
380
388
  data: {
@@ -412,6 +420,8 @@ export declare const CallPayment_InputSchema: z.ZodObject<{
412
420
  confirmed?: boolean | undefined;
413
421
  user_intent_phrases?: string[] | undefined;
414
422
  project?: string | undefined;
423
+ client_schema_version?: string | undefined;
424
+ schema_strict_mode?: boolean | undefined;
415
425
  } | undefined;
416
426
  }>;
417
427
  export type Revenue = z.infer<typeof RevenueSchema>;