@codemieai/cdk 0.1.543 → 0.1.544

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.d.ts CHANGED
@@ -30,6 +30,7 @@ interface CodemieConfig {
30
30
  imported: {
31
31
  assistants: ImportedResource[];
32
32
  datasources: ImportedResource[];
33
+ skills?: ImportedResource[];
33
34
  integrations: IntegrationDefinition[];
34
35
  };
35
36
  tool_definitions?: {
@@ -365,6 +366,7 @@ declare class CodemieConfigLoader {
365
366
  * - imported.integrations (array): searches by 'alias' field
366
367
  * - imported.assistants (array): searches by 'name' field
367
368
  * - imported.datasources (array): searches by 'name' field
369
+ * - imported.skills (array): searches by 'name' field
368
370
  */
369
371
  private resolveReference;
370
372
  /**