codemie-sdk 0.1.465 → 0.1.466
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.cjs +13 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +15 -1
- package/dist/index.d.ts +15 -1
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -71,6 +71,7 @@ __export(index_exports, {
|
|
|
71
71
|
MCPServerConfigSchema: () => MCPServerConfigSchema,
|
|
72
72
|
NotFoundError: () => NotFoundError,
|
|
73
73
|
PaginatedAnalyticsQueryParamsSchema: () => PaginatedAnalyticsQueryParamsSchema,
|
|
74
|
+
ProjectSchema: () => ProjectSchema,
|
|
74
75
|
SkillCategory: () => SkillCategory,
|
|
75
76
|
SkillListParamsSchema: () => SkillListParamsSchema,
|
|
76
77
|
SkillScopeFilter: () => SkillScopeFilter,
|
|
@@ -2614,6 +2615,17 @@ var BackgroundTaskStatus = {
|
|
|
2614
2615
|
COMPLETED: "COMPLETED",
|
|
2615
2616
|
FAILED: "FAILED"
|
|
2616
2617
|
};
|
|
2618
|
+
|
|
2619
|
+
// src/schemas/project.ts
|
|
2620
|
+
var import_zod8 = require("zod");
|
|
2621
|
+
var ProjectSchema = import_zod8.z.object({
|
|
2622
|
+
name: import_zod8.z.string(),
|
|
2623
|
+
display_name: import_zod8.z.string().max(150).nullable().optional(),
|
|
2624
|
+
description: import_zod8.z.string().optional(),
|
|
2625
|
+
project_type: import_zod8.z.string().optional(),
|
|
2626
|
+
created_by: import_zod8.z.string().optional(),
|
|
2627
|
+
created_at: import_zod8.z.string().optional()
|
|
2628
|
+
});
|
|
2617
2629
|
// Annotate the CommonJS export names for ESM import in node:
|
|
2618
2630
|
0 && (module.exports = {
|
|
2619
2631
|
AnalyticsQueryParamsSchema,
|
|
@@ -2657,6 +2669,7 @@ var BackgroundTaskStatus = {
|
|
|
2657
2669
|
MCPServerConfigSchema,
|
|
2658
2670
|
NotFoundError,
|
|
2659
2671
|
PaginatedAnalyticsQueryParamsSchema,
|
|
2672
|
+
ProjectSchema,
|
|
2660
2673
|
SkillCategory,
|
|
2661
2674
|
SkillListParamsSchema,
|
|
2662
2675
|
SkillScopeFilter,
|