graphlit-client 1.0.20250315001 → 1.0.20250315002

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.
@@ -1819,8 +1819,10 @@ export type ContentFilter = {
1819
1819
  id?: InputMaybe<Scalars['ID']['input']>;
1820
1820
  /** Filter contents by their external identifier. */
1821
1821
  identifier?: InputMaybe<Scalars['String']['input']>;
1822
- /** Filter content(s) by searching for similar image. Accepts Base64-encoded image, which is used to generate image embeddings for similarity search. */
1823
- image?: InputMaybe<Scalars['String']['input']>;
1822
+ /** Filter content(s) by searching for similar Base64-encoded image. Accepts Base64-encoded image as string, which is used to generate image embeddings for similarity search. */
1823
+ imageData?: InputMaybe<Scalars['String']['input']>;
1824
+ /** MIME type of Base64-encoded image for similarity search. */
1825
+ imageMimeType?: InputMaybe<Scalars['String']['input']>;
1824
1826
  /** Filter by original date recent timespan. For example, a timespan of one day will return content authored in the last 24 hours. */
1825
1827
  inLast?: InputMaybe<Scalars['TimeSpan']['input']>;
1826
1828
  /** Limit the number of content(s) to be returned. Defaults to 100. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250315001",
3
+ "version": "1.0.20250315002",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",