@wowok/agent-mcp 2.2.20 → 2.2.22
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/LICENSE +36 -0
- package/README.md +1 -3
- package/dist/index.js +4 -1
- package/dist/schema/call/base.d.ts +127 -511
- package/dist/schema/common/index.d.ts +3 -3
- package/dist/schema/common/index.js +1 -1
- package/dist/schema/local/index.d.ts +395 -1435
- package/dist/schema/local/index.js +4 -4
- package/dist/schema/local/wip.d.ts +16 -16
- package/dist/schema/local/wip.js +2 -2
- package/dist/schema/query/index.d.ts +1020 -1020
- package/dist/schema/query/index.js +4 -4
- package/dist/schemas/index.json +1 -1
- package/dist/schemas/onchain_events.schema.json +4 -1
- package/package.json +3 -2
|
@@ -404,7 +404,7 @@ export declare const ObjectBaseSchema: z.ZodObject<{
|
|
|
404
404
|
start_version: string | number;
|
|
405
405
|
};
|
|
406
406
|
}>]>, z.ZodNull]>>;
|
|
407
|
-
version: z.ZodOptional<z.ZodString
|
|
407
|
+
version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
408
408
|
previousTransaction: z.ZodOptional<z.ZodString>;
|
|
409
409
|
cache_expire: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"INFINITE">]>>;
|
|
410
410
|
query_name: z.ZodOptional<z.ZodString>;
|
|
@@ -473,7 +473,7 @@ export declare const ObjectBaseSchema: z.ZodObject<{
|
|
|
473
473
|
start_version: string | number;
|
|
474
474
|
};
|
|
475
475
|
}>]>, z.ZodNull]>>;
|
|
476
|
-
version: z.ZodOptional<z.ZodString
|
|
476
|
+
version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
477
477
|
previousTransaction: z.ZodOptional<z.ZodString>;
|
|
478
478
|
cache_expire: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"INFINITE">]>>;
|
|
479
479
|
query_name: z.ZodOptional<z.ZodString>;
|
|
@@ -542,7 +542,7 @@ export declare const ObjectBaseSchema: z.ZodObject<{
|
|
|
542
542
|
start_version: string | number;
|
|
543
543
|
};
|
|
544
544
|
}>]>, z.ZodNull]>>;
|
|
545
|
-
version: z.ZodOptional<z.ZodString
|
|
545
|
+
version: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
546
546
|
previousTransaction: z.ZodOptional<z.ZodString>;
|
|
547
547
|
cache_expire: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"INFINITE">]>>;
|
|
548
548
|
query_name: z.ZodOptional<z.ZodString>;
|
|
@@ -258,7 +258,7 @@ export const ObjectBaseSchema = z.object({
|
|
|
258
258
|
type: ObjectTypeSchema.optional().describe("Object type"),
|
|
259
259
|
type_raw: z.string().optional().describe("Raw object type"),
|
|
260
260
|
owner: z.union([ObjectOwnerSchema, z.null()]).optional().describe("Object owner"),
|
|
261
|
-
version: z.string().optional().describe("Object version"),
|
|
261
|
+
version: z.union([z.string(), z.number()]).optional().describe("Object version"),
|
|
262
262
|
previousTransaction: z.string().optional().describe("Previous transaction ID"),
|
|
263
263
|
cache_expire: CacheExpireTypeSchema.optional().describe("Cache expiration time"),
|
|
264
264
|
query_name: z.string().optional().describe("Original query name or address used to retrieve this object"),
|