@squidcloud/cli 1.0.434 → 1.0.435

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.
Files changed (2) hide show
  1. package/dist/index.js +16 -7
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -22085,8 +22085,12 @@ if (hasToStringTag && gOPD && getProto) {
22085
22085
  // @ts-expect-error TS won't narrow inside a closure
22086
22086
  descriptor = gOPD(superProto, Symbol.toStringTag);
22087
22087
  }
22088
- // @ts-expect-error TODO: fix
22089
- cache['$' + typedArray] = callBind(descriptor.get);
22088
+ if (descriptor && descriptor.get) {
22089
+ var bound = callBind(descriptor.get);
22090
+ cache[
22091
+ /** @type {`$${import('.').TypedArrayName}`} */ ('$' + typedArray)
22092
+ ] = bound;
22093
+ }
22090
22094
  }
22091
22095
  });
22092
22096
  } else {
@@ -22094,12 +22098,13 @@ if (hasToStringTag && gOPD && getProto) {
22094
22098
  var arr = new g[typedArray]();
22095
22099
  var fn = arr.slice || arr.set;
22096
22100
  if (fn) {
22097
- cache[
22098
- /** @type {`$${import('.').TypedArrayName}`} */ ('$' + typedArray)
22099
- ] = /** @type {import('./types').BoundSlice | import('./types').BoundSet} */ (
22101
+ var bound = /** @type {import('./types').BoundSlice | import('./types').BoundSet} */ (
22100
22102
  // @ts-expect-error TODO FIXME
22101
22103
  callBind(fn)
22102
22104
  );
22105
+ cache[
22106
+ /** @type {`$${import('.').TypedArrayName}`} */ ('$' + typedArray)
22107
+ ] = bound;
22103
22108
  }
22104
22109
  });
22105
22110
  }
@@ -23639,6 +23644,7 @@ exports.INTEGRATION_TYPES = [
23639
23644
  'alloydb',
23640
23645
  'api',
23641
23646
  'auth0',
23647
+ 'bedrock',
23642
23648
  'azure_cosmosdb',
23643
23649
  'azure_postgresql',
23644
23650
  'azure_sql',
@@ -25171,13 +25177,16 @@ exports.RERANK_PROVIDERS = ['cohere', 'none'];
25171
25177
  /** List of available AI provider types. See AiProviderType. */
25172
25178
  exports.AI_PROVIDER_TYPES = [
25173
25179
  'anthropic',
25180
+ 'bedrock',
25174
25181
  'flux',
25175
25182
  'gemini',
25176
25183
  'openai',
25177
25184
  'grok',
25178
25185
  'stability',
25179
25186
  'voyage',
25180
- 'external',
25187
+ 'mistral',
25188
+ 'textract',
25189
+ 'external', // This is a technicality, referring to user-defined providers.
25181
25190
  ];
25182
25191
  /**
25183
25192
  * Public OpenAI chat model names (active models only).
@@ -30661,7 +30670,7 @@ function exitWithError(...messages) {
30661
30670
  (module) {
30662
30671
 
30663
30672
  "use strict";
30664
- module.exports = /*#__PURE__*/JSON.parse('{"name":"@squidcloud/cli","version":"1.0.434","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.434","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"}}');
30673
+ module.exports = /*#__PURE__*/JSON.parse('{"name":"@squidcloud/cli","version":"1.0.435","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.435","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"}}');
30665
30674
 
30666
30675
  /***/ },
30667
30676
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/cli",
3
- "version": "1.0.434",
3
+ "version": "1.0.435",
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.434",
31
+ "@squidcloud/local-backend": "^1.0.435",
32
32
  "adm-zip": "^0.5.16",
33
33
  "copy-webpack-plugin": "^12.0.2",
34
34
  "decompress": "^4.2.1",