@salesforce/agents
Advanced tools
Comparing version 0.12.13-dev.1 to 0.12.13
@@ -29,6 +29,2 @@ import { Connection, SfProject } from '@salesforce/core'; | ||
/** | ||
* List all agents in the current project. | ||
*/ | ||
static list(project: SfProject): Promise<string[]>; | ||
/** | ||
* Creates an agent from a configuration, optionally saving the agent in an org. | ||
@@ -35,0 +31,0 @@ * |
@@ -8,40 +8,5 @@ "use strict"; | ||
*/ | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || (function () { | ||
var ownKeys = function(o) { | ||
ownKeys = Object.getOwnPropertyNames || function (o) { | ||
var ar = []; | ||
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; | ||
return ar; | ||
}; | ||
return ownKeys(o); | ||
}; | ||
return function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
})(); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.generateAgentApiName = exports.Agent = exports.AgentCreateLifecycleStages = void 0; | ||
const node_util_1 = require("node:util"); | ||
const path = __importStar(require("node:path")); | ||
const promises_1 = require("node:fs/promises"); | ||
const core_1 = require("@salesforce/core"); | ||
@@ -85,28 +50,2 @@ const source_deploy_retrieve_1 = require("@salesforce/source-deploy-retrieve"); | ||
/** | ||
* List all agents in the current project. | ||
*/ | ||
static async list(project) { | ||
const projectDirs = project.getPackageDirectories(); | ||
const bots = []; | ||
const collectBots = async (botPath) => { | ||
try { | ||
const dirStat = await (0, promises_1.stat)(botPath); | ||
if (!dirStat.isDirectory()) { | ||
return; | ||
} | ||
bots.push(...(await (0, promises_1.readdir)(botPath))); | ||
} | ||
catch (_err) { | ||
// eslint-disable-next-line no-unused-vars | ||
} | ||
}; | ||
for (const pkgDir of projectDirs) { | ||
// eslint-disable-next-line no-await-in-loop | ||
await collectBots(path.join(pkgDir.fullPath, 'bots')); | ||
// eslint-disable-next-line no-await-in-loop | ||
await collectBots(path.join(pkgDir.fullPath, 'main', 'default', 'bots')); | ||
} | ||
return bots; | ||
} | ||
/** | ||
* Creates an agent from a configuration, optionally saving the agent in an org. | ||
@@ -113,0 +52,0 @@ * |
{ | ||
"name": "@salesforce/agents", | ||
"description": "Client side APIs for working with Salesforce agents", | ||
"version": "0.12.13-dev.1", | ||
"version": "0.12.13", | ||
"license": "BSD-3-Clause", | ||
@@ -16,3 +16,3 @@ "author": "Salesforce", | ||
"@salesforce/kit": "^3.2.3", | ||
"@salesforce/source-deploy-retrieve": "^12.16.1", | ||
"@salesforce/source-deploy-retrieve": "^12.16.4", | ||
"fast-xml-parser": "^4.5.3", | ||
@@ -19,0 +19,0 @@ "nock": "^13.5.6", |
Sorry, the diff of this file is not supported yet
92996
1500