graphlit-client 1.0.20250428007 → 1.0.20250428008

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.
@@ -3769,10 +3769,12 @@ exports.Prompt = (0, graphql_tag_1.default) `
3769
3769
  }
3770
3770
  `;
3771
3771
  exports.PromptConversation = (0, graphql_tag_1.default) `
3772
- mutation PromptConversation($prompt: String!, $id: ID, $specification: EntityReferenceInput, $tools: [ToolDefinitionInput!], $requireTool: Boolean, $includeDetails: Boolean, $correlationId: String) {
3772
+ mutation PromptConversation($prompt: String!, $mimeType: String, $data: String, $id: ID, $specification: EntityReferenceInput, $tools: [ToolDefinitionInput!], $requireTool: Boolean, $includeDetails: Boolean, $correlationId: String) {
3773
3773
  promptConversation(
3774
3774
  prompt: $prompt
3775
3775
  id: $id
3776
+ mimeType: $mimeType
3777
+ data: $data
3776
3778
  specification: $specification
3777
3779
  tools: $tools
3778
3780
  requireTool: $requireTool
@@ -18024,6 +18024,8 @@ export type PromptMutation = {
18024
18024
  };
18025
18025
  export type PromptConversationMutationVariables = Exact<{
18026
18026
  prompt: Scalars['String']['input'];
18027
+ mimeType?: InputMaybe<Scalars['String']['input']>;
18028
+ data?: InputMaybe<Scalars['String']['input']>;
18027
18029
  id?: InputMaybe<Scalars['ID']['input']>;
18028
18030
  specification?: InputMaybe<EntityReferenceInput>;
18029
18031
  tools?: InputMaybe<Array<ToolDefinitionInput> | ToolDefinitionInput>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250428007",
3
+ "version": "1.0.20250428008",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",