cf-service-sdk 0.1.36 → 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 */
@@ -1268,6 +1270,8 @@ export type CompanyFilterInput = {
1268
1270
  metalType?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
1269
1271
  /** Override dynamic score ratio (0.0-1.0) for text relevance threshold (admin only) */
1270
1272
  minFilterSearchScore?: InputMaybe<Scalars['Float']['input']>;
1273
+ /** Filter to show only companies that have at least one contact saved in any of the user's or their account's active segments */
1274
+ onlySavedContacts?: InputMaybe<Scalars['Boolean']['input']>;
1271
1275
  /** Filter by owner user ID(s) */
1272
1276
  owners?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
1273
1277
  /** Filter by product category ID(s) */
@@ -1735,6 +1739,8 @@ export type ContactFilterInput = {
1735
1739
  contactIdsToInclude?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
1736
1740
  /** Filter by whether the contact's company is a customer */
1737
1741
  isCustomer?: InputMaybe<Scalars['Boolean']['input']>;
1742
+ /** Filter to show only contacts saved in any of the user's or their account's active segments */
1743
+ onlySavedContacts?: InputMaybe<Scalars['Boolean']['input']>;
1738
1744
  /** Search in contact name, email, title, and company name */
1739
1745
  searchQuery?: InputMaybe<Scalars['String']['input']>;
1740
1746
  /** Filter by segment IDs (contacts must be in these segments) */
@@ -5182,11 +5188,14 @@ export type SegmentObject = {
5182
5188
  * always determines result order.
5183
5189
  */
5184
5190
  export type SemanticSearchConfigInput = {
5185
- /** BM25 text relevance weight (0.0-1.0, default 0.7) */
5191
+ /** BM25 text relevance weight (0.0-1.0, default 0.4) */
5186
5192
  bm25Weight?: InputMaybe<Scalars['Float']['input']>;
5187
- /** 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) */
5188
5194
  knnWeight?: InputMaybe<Scalars['Float']['input']>;
5189
- /** 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
+ */
5190
5199
  provider?: InputMaybe<Scalars['String']['input']>;
5191
5200
  /** Natural language search query. */
5192
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.36",
3
+ "version": "0.1.38",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",