@squidcloud/cli 1.0.417 → 1.0.418

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
@@ -11394,6 +11394,7 @@ exports.CONNECTOR_IDS = [
11394
11394
  'salesforce',
11395
11395
  'servicenow',
11396
11396
  'slack',
11397
+ 'teams',
11397
11398
  'zendesk',
11398
11399
  ];
11399
11400
  /** A file inside a connector package that contains package metadata. */
@@ -14187,7 +14188,7 @@ function setupDeployCommand(yargs) {
14187
14188
  (0, process_utils_1.exitWithError)('Must provide an API key');
14188
14189
  const appRegion = geAppRegionFromCommandOrEnv(argv.region);
14189
14190
  const consoleRegion = geConsoleRegionFromCommandOrEnv(argv.consoleRegion) || getConsoleRegionFromAppRegion(appRegion);
14190
- (0, deploy_1.deploy)(consoleRegion, appId, bundlePath, apiKey, !!argv.verbose, argv.direct, isUserSpecifiedPath, !!argv.skipBuild, internalApiKey, environmentId).then();
14191
+ void (0, deploy_1.deploy)(consoleRegion, appId, bundlePath, apiKey, !!argv.verbose, argv.direct, isUserSpecifiedPath, !!argv.skipBuild, internalApiKey, environmentId);
14191
14192
  });
14192
14193
  }
14193
14194
  function setupUndeployCommand(yargs) {
@@ -14208,7 +14209,7 @@ function setupUndeployCommand(yargs) {
14208
14209
  const environmentId = getEnvironmentIdFromCommandOrEnv(argv.environmentId);
14209
14210
  const region = geAppRegionFromCommandOrEnv(undefined);
14210
14211
  const consoleRegion = geConsoleRegionFromCommandOrEnv(argv.consoleRegion) || getConsoleRegionFromAppRegion(region);
14211
- (0, undeploy_1.undeploy)(consoleRegion, appId, apiKey, environmentId).then();
14212
+ void (0, undeploy_1.undeploy)(consoleRegion, appId, apiKey, environmentId);
14212
14213
  });
14213
14214
  }
14214
14215
  function setupInitEnvCommand(yargs) {
@@ -23431,6 +23432,7 @@ exports.INTEGRATION_TYPES = [
23431
23432
  'mcp',
23432
23433
  'a2a',
23433
23434
  'legend',
23435
+ 'teams',
23434
23436
  'ollama',
23435
23437
  ];
23436
23438
  /**
@@ -25073,6 +25075,7 @@ exports.OPENAI_CHAT_MODEL_NAMES = [
25073
25075
  'gpt-5',
25074
25076
  'gpt-5-mini',
25075
25077
  'gpt-5-nano',
25078
+ 'gpt-5.1',
25076
25079
  'gpt-4.1',
25077
25080
  'gpt-4.1-mini',
25078
25081
  'gpt-4.1-nano',
@@ -30556,7 +30559,7 @@ function exitWithError(...messages) {
30556
30559
  /***/ ((module) => {
30557
30560
 
30558
30561
  "use strict";
30559
- module.exports = /*#__PURE__*/JSON.parse('{"name":"@squidcloud/cli","version":"1.0.417","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","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.417","adm-zip":"^0.5.16","copy-webpack-plugin":"^12.0.2","decompress":"^4.2.1","nodemon":"^3.1.9","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.101.3","zip-webpack-plugin":"^4.0.1"},"devDependencies":{"@types/adm-zip":"^0.5.7","@types/decompress":"^4.2.7","@types/node":"^20.19.9","terminal-link":"^3.0.0"}}');
30562
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@squidcloud/cli","version":"1.0.418","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","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.418","adm-zip":"^0.5.16","copy-webpack-plugin":"^12.0.2","decompress":"^4.2.1","nodemon":"^3.1.9","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.101.3","zip-webpack-plugin":"^4.0.1"},"devDependencies":{"@types/adm-zip":"^0.5.7","@types/decompress":"^4.2.7","@types/node":"^20.19.9","terminal-link":"^3.0.0"}}');
30560
30563
 
30561
30564
  /***/ }),
30562
30565
 
@@ -1250,7 +1250,8 @@ const chatObs = agent.chat('What is your return policy?', {
1250
1250
  executionPlanOptions: {
1251
1251
  enabled: true, // Agent plans which resources to use
1252
1252
  model: 'gpt-4o',
1253
- reasoningEffort: 'high'
1253
+ reasoningEffort: 'high',
1254
+ allowClarificationQuestions: false // Allow agent to ask follow-up questions (default: false)
1254
1255
  },
1255
1256
  agentContext: { userId: '123', role: 'admin' }, // Global context passed to all functions
1256
1257
  includeMetadata: false // Include context metadata in response
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/cli",
3
- "version": "1.0.417",
3
+ "version": "1.0.418",
4
4
  "description": "The Squid CLI",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -28,7 +28,7 @@
28
28
  "node": ">=18.0.0"
29
29
  },
30
30
  "dependencies": {
31
- "@squidcloud/local-backend": "^1.0.417",
31
+ "@squidcloud/local-backend": "^1.0.418",
32
32
  "adm-zip": "^0.5.16",
33
33
  "copy-webpack-plugin": "^12.0.2",
34
34
  "decompress": "^4.2.1",