graphlit-client 1.0.20260301003 → 1.0.20260301004

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.
@@ -177,6 +177,7 @@ export const GetAgent = gql `
177
177
  timeZoneId
178
178
  }
179
179
  timeout
180
+ scratchpad
180
181
  }
181
182
  }
182
183
  `;
@@ -299,6 +300,7 @@ export const QueryAgents = gql `
299
300
  timeZoneId
300
301
  }
301
302
  timeout
303
+ scratchpad
302
304
  }
303
305
  }
304
306
  }
@@ -131,6 +131,8 @@ export type Agent = {
131
131
  relevance?: Maybe<Scalars['Float']['output']>;
132
132
  /** The agent schedule policy. */
133
133
  schedulePolicy?: Maybe<AgentSchedulePolicy>;
134
+ /** The agent scratchpad, for storing harness working memory. */
135
+ scratchpad?: Maybe<Scalars['String']['output']>;
134
136
  /** The specification associated with this agent. */
135
137
  specification?: Maybe<EntityReference>;
136
138
  /** The state of the agent (i.e. created, finished). */
@@ -183,6 +185,8 @@ export type AgentInput = {
183
185
  name: Scalars['String']['input'];
184
186
  /** The agent schedule policy. */
185
187
  schedulePolicy?: InputMaybe<AgentSchedulePolicyInput>;
188
+ /** The agent scratchpad, for storing harness working memory. */
189
+ scratchpad?: InputMaybe<Scalars['String']['input']>;
186
190
  /** The specification associated with this agent. */
187
191
  specification?: InputMaybe<EntityReferenceInput>;
188
192
  /** The agent timeout. */
@@ -236,6 +240,8 @@ export type AgentUpdateInput = {
236
240
  name?: InputMaybe<Scalars['String']['input']>;
237
241
  /** The agent schedule policy. */
238
242
  schedulePolicy?: InputMaybe<AgentSchedulePolicyInput>;
243
+ /** The agent scratchpad, for storing harness working memory. */
244
+ scratchpad?: InputMaybe<Scalars['String']['input']>;
239
245
  /** The specification associated with this agent. */
240
246
  specification?: InputMaybe<EntityReferenceInput>;
241
247
  /** The agent timeout. */
@@ -22775,6 +22781,7 @@ export type GetAgentQuery = {
22775
22781
  correlationId?: string | null;
22776
22782
  type: AgentTypes;
22777
22783
  timeout?: any | null;
22784
+ scratchpad?: string | null;
22778
22785
  owner: {
22779
22786
  __typename?: 'Owner';
22780
22787
  id: string;
@@ -22931,6 +22938,7 @@ export type QueryAgentsQuery = {
22931
22938
  correlationId?: string | null;
22932
22939
  type: AgentTypes;
22933
22940
  timeout?: any | null;
22941
+ scratchpad?: string | null;
22934
22942
  owner: {
22935
22943
  __typename?: 'Owner';
22936
22944
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20260301003",
3
+ "version": "1.0.20260301004",
4
4
  "description": "Graphlit API Client for TypeScript",
5
5
  "type": "module",
6
6
  "main": "./dist/client.js",