@fencyai/js 0.1.112 → 0.1.113

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.
@@ -2,6 +2,7 @@ export { ApiError } from './core/ApiError';
2
2
  export { CancelablePromise, CancelError } from './core/CancelablePromise';
3
3
  export { OpenAPI } from './core/OpenAPI';
4
4
  export type { OpenAPIConfig } from './core/OpenAPI';
5
+ export { AgentTaskTypeName } from './models/AgentTaskTypeName';
5
6
  export type { PubAgentTaskDto } from './models/PubAgentTaskDto';
6
7
  export type { PubCreateAgentTaskRequest } from './models/PubCreateAgentTaskRequest';
7
8
  export type { PubCreateAgentTaskRequestGenericTask } from './models/PubCreateAgentTaskRequestGenericTask';
@@ -5,4 +5,5 @@
5
5
  export { ApiError } from './core/ApiError';
6
6
  export { CancelablePromise, CancelError } from './core/CancelablePromise';
7
7
  export { OpenAPI } from './core/OpenAPI';
8
+ export { AgentTaskTypeName } from './models/AgentTaskTypeName';
8
9
  export { PubService } from './services/PubService';
@@ -0,0 +1,4 @@
1
+ export declare enum AgentTaskTypeName {
2
+ GENERIC_AGENT_TASK = "GenericAgentTask",
3
+ STREAMING_CHAT_COMPLETION = "StreamingChatCompletion"
4
+ }
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do not edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export var AgentTaskTypeName;
6
+ (function (AgentTaskTypeName) {
7
+ AgentTaskTypeName["GENERIC_AGENT_TASK"] = "GenericAgentTask";
8
+ AgentTaskTypeName["STREAMING_CHAT_COMPLETION"] = "StreamingChatCompletion";
9
+ })(AgentTaskTypeName || (AgentTaskTypeName = {}));
@@ -1,4 +1,6 @@
1
+ import type { AgentTaskTypeName } from './AgentTaskTypeName';
1
2
  export type PubAgentTaskDto = {
2
3
  id: string;
3
4
  createdAt: string;
5
+ type: AgentTaskTypeName;
4
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fencyai/js",
3
- "version": "0.1.112",
3
+ "version": "0.1.113",
4
4
  "description": "> TODO: description",
5
5
  "author": "staklau <steinaageklaussen@gmail.com>",
6
6
  "homepage": "",
@@ -42,5 +42,5 @@
42
42
  "ts-jest": "^29.1.1",
43
43
  "typescript": "^5.3.3"
44
44
  },
45
- "gitHead": "ec810f984fd9010de0c81701cfb60547ab7584b8"
45
+ "gitHead": "9820e005a4f6eb760dd38260f5a856a7c2414e77"
46
46
  }