@memberjunction/graphql-dataprovider 2.109.0 → 2.110.1
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/dist/index.cjs +64 -56
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.mts +3 -1
- package/dist/index.mjs +69 -61
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -126,10 +126,12 @@ declare class GraphQLAIClient {
|
|
|
126
126
|
* }
|
|
127
127
|
* ```
|
|
128
128
|
*/
|
|
129
|
-
RunAIAgent(params: ExecuteAgentParams): Promise<ExecuteAgentResult>;
|
|
129
|
+
RunAIAgent(params: ExecuteAgentParams, sourceArtifactId?: string, sourceArtifactVersionId?: string): Promise<ExecuteAgentResult>;
|
|
130
130
|
/**
|
|
131
131
|
* Prepares variables for the AI agent mutation
|
|
132
132
|
* @param params The agent parameters
|
|
133
|
+
* @param sourceArtifactId Optional source artifact ID for versioning
|
|
134
|
+
* @param sourceArtifactVersionId Optional source artifact version ID for versioning
|
|
133
135
|
* @returns The prepared variables for GraphQL
|
|
134
136
|
* @private
|
|
135
137
|
*/
|
package/dist/index.d.mts
CHANGED
|
@@ -126,10 +126,12 @@ declare class GraphQLAIClient {
|
|
|
126
126
|
* }
|
|
127
127
|
* ```
|
|
128
128
|
*/
|
|
129
|
-
RunAIAgent(params: ExecuteAgentParams): Promise<ExecuteAgentResult>;
|
|
129
|
+
RunAIAgent(params: ExecuteAgentParams, sourceArtifactId?: string, sourceArtifactVersionId?: string): Promise<ExecuteAgentResult>;
|
|
130
130
|
/**
|
|
131
131
|
* Prepares variables for the AI agent mutation
|
|
132
132
|
* @param params The agent parameters
|
|
133
|
+
* @param sourceArtifactId Optional source artifact ID for versioning
|
|
134
|
+
* @param sourceArtifactVersionId Optional source artifact version ID for versioning
|
|
133
135
|
* @returns The prepared variables for GraphQL
|
|
134
136
|
* @private
|
|
135
137
|
*/
|