@squidcloud/cli 1.0.338 → 1.0.339
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.js
CHANGED
@@ -8376,7 +8376,7 @@ module.exports = require("module");
|
|
8376
8376
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
8377
8377
|
exports.runInShell = runInShell;
|
8378
8378
|
const child_process_1 = __webpack_require__(5317);
|
8379
|
-
/** @internal
|
8379
|
+
/** @internal */
|
8380
8380
|
function runInShell(command, cwd = process.cwd()) {
|
8381
8381
|
return new Promise((resolve, reject) => {
|
8382
8382
|
const process = (0, child_process_1.spawn)(command, { cwd, shell: true, stdio: 'pipe' });
|
@@ -22712,7 +22712,7 @@ function exitWithError(...messages) {
|
|
22712
22712
|
/***/ ((module) => {
|
22713
22713
|
|
22714
22714
|
"use strict";
|
22715
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@squidcloud/cli","version":"1.0.
|
22715
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@squidcloud/cli","version":"1.0.339","description":"The Squid CLI","main":"dist/index.js","scripts":{"start":"node dist/index.js","start-ts":"ts-node -r tsconfig-paths/register src/index.ts","prebuild":"rimraf dist","build":"webpack --mode=production","build:dev":"webpack --mode=development","build:prod":"webpack --mode=production","lint":"eslint","link":"npm run build && chmod 755 dist/index.js && npm link","watch":"webpack --watch","deploy":"npm run build && npm pack --silent | xargs -I {} mv {} package.tgz && npm install -g package.tgz && rm -rf package.tgz","publish:public":"npm run build && npm publish --access public"},"files":["dist/**/*"],"bin":{"squid":"dist/index.js"},"keywords":[],"author":"","license":"ISC","engines":{"node":">=18.0.0"},"dependencies":{"@squidcloud/local-backend":"^1.0.339","copy-webpack-plugin":"^12.0.2","decompress":"^4.2.1","nodemon":"^3.1.3","terser-webpack-plugin":"^5.3.10","ts-loader":"^9.5.1","ts-node":"^10.9.2","tsconfig-paths":"^4.2.0","tsconfig-paths-webpack-plugin":"^4.1.0","webpack":"^5.96.0","zip-webpack-plugin":"^4.0.1"},"devDependencies":{"@types/decompress":"^4.2.7","@types/node":"^20.16.10","terminal-link":"^3.0.0"}}');
|
22716
22716
|
|
22717
22717
|
/***/ }),
|
22718
22718
|
|
@@ -10,5 +10,12 @@ export type SquidDocId = string;
|
|
10
10
|
export type ClientRequestId = string;
|
11
11
|
/** ID of AI agent. Also known as AI profile id. */
|
12
12
|
export type AiAgentId = string;
|
13
|
+
/**
|
14
|
+
* The built-in agent id. Cannot be customized.
|
15
|
+
* @category AI
|
16
|
+
*/
|
13
17
|
export declare const BUILT_IN_AGENT_ID = "built_in_agent";
|
18
|
+
/**
|
19
|
+
* @category AI
|
20
|
+
*/
|
14
21
|
export type AiContextId = string;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@squidcloud/cli",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.339",
|
4
4
|
"description": "The Squid CLI",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"scripts": {
|
@@ -29,7 +29,7 @@
|
|
29
29
|
"node": ">=18.0.0"
|
30
30
|
},
|
31
31
|
"dependencies": {
|
32
|
-
"@squidcloud/local-backend": "^1.0.
|
32
|
+
"@squidcloud/local-backend": "^1.0.339",
|
33
33
|
"copy-webpack-plugin": "^12.0.2",
|
34
34
|
"decompress": "^4.2.1",
|
35
35
|
"nodemon": "^3.1.3",
|