cf-service-sdk 0.1.37 → 0.1.38

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.
@@ -1246,6 +1246,8 @@ export type CompanyFilterInput = {
1246
1246
  companyName?: InputMaybe<Scalars['String']['input']>;
1247
1247
  /** Filter by employee size(s) */
1248
1248
  employeeSize?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1249
+ /** Exclude companies whose description, keywords, or industries match any of these terms */
1250
+ excludeKeywords?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
1249
1251
  /** Latitude for geo distance filter */
1250
1252
  geoLat?: InputMaybe<Scalars['Float']['input']>;
1251
1253
  /** Longitude for geo distance filter */
@@ -5186,11 +5188,14 @@ export type SegmentObject = {
5186
5188
  * always determines result order.
5187
5189
  */
5188
5190
  export type SemanticSearchConfigInput = {
5189
- /** BM25 text relevance weight (0.0-1.0, default 0.7) */
5191
+ /** BM25 text relevance weight (0.0-1.0, default 0.4) */
5190
5192
  bm25Weight?: InputMaybe<Scalars['Float']['input']>;
5191
- /** k-NN semantic similarity weight (0.0-1.0, default 0.3) */
5193
+ /** k-NN semantic similarity weight (0.0-1.0, default 0.6) */
5192
5194
  knnWeight?: InputMaybe<Scalars['Float']['input']>;
5193
- /** Embedding provider: 'openai' or 'nomic'. Defaults to server config. */
5195
+ /**
5196
+ * [Deprecated] Embedding provider override. Ignored server-side.
5197
+ * @deprecated Provider is selected server-side; value is ignored.
5198
+ */
5194
5199
  provider?: InputMaybe<Scalars['String']['input']>;
5195
5200
  /** Natural language search query. */
5196
5201
  query: Scalars['String']['input'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.1.37",
3
+ "version": "0.1.38",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",