cf-service-sdk 0.1.21 → 0.1.22

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.
@@ -5193,6 +5193,8 @@ export type SuggestedFilterValues = {
5193
5193
  geoLat?: Maybe<Scalars['Float']['output']>;
5194
5194
  /** Longitude of the source company's primary location */
5195
5195
  geoLon?: Maybe<Scalars['Float']['output']>;
5196
+ /** Industry type IDs from the source company */
5197
+ industryType?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
5196
5198
  /** Suggested keywords filter (company description + keyword tags) */
5197
5199
  keywords?: Maybe<Scalars['String']['output']>;
5198
5200
  };
@@ -26358,6 +26360,7 @@ export type SuggestedCompanyFiltersQuery = {
26358
26360
  keywords?: string | null;
26359
26361
  geoLat?: number | null;
26360
26362
  geoLon?: number | null;
26363
+ industryType?: Array<string | null> | null;
26361
26364
  } | null;
26362
26365
  sortHierarchy?: Array<{
26363
26366
  __typename?: 'SuggestedSort';
@@ -24688,6 +24688,7 @@ exports.SuggestedCompanyFiltersDocument = (0, client_1.gql) `
24688
24688
  keywords
24689
24689
  geoLat
24690
24690
  geoLon
24691
+ industryType
24691
24692
  }
24692
24693
  sortHierarchy {
24693
24694
  field
package/dist/queries.js CHANGED
@@ -11585,6 +11585,7 @@ query SuggestedCompanyFilters($similarToCompany: ID) {
11585
11585
  keywords
11586
11586
  geoLat
11587
11587
  geoLon
11588
+ industryType
11588
11589
  }
11589
11590
  sortHierarchy {
11590
11591
  field
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cf-service-sdk",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "type": "commonjs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",