graphlit-client 1.0.20250315001 → 1.0.20250315003
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.
- package/README.md +1 -1
- package/dist/generated/graphql-types.d.ts +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
@@ -7,7 +7,7 @@ The Graphlit Client for Node.js enables straightforward interactions with the Gr
|
|
7
7
|
|
8
8
|
Before you begin, ensure you have the following:
|
9
9
|
|
10
|
-
- Node.js installed on your system (recommended version
|
10
|
+
- Node.js installed on your system (recommended version 18.x or higher).
|
11
11
|
- An active account on the [Graphlit Platform](https://portal.graphlit.dev) with access to the API settings dashboard.
|
12
12
|
|
13
13
|
## Installation
|
@@ -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
|
-
|
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. */
|