@athenaintel/sdk 4.3.859 → 4.3.861

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.
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
43
43
  const headers = (0, headers_js_1.mergeHeaders)({
44
44
  "X-Fern-Language": "JavaScript",
45
45
  "X-Fern-SDK-Name": "@athenaintel/sdk",
46
- "X-Fern-SDK-Version": "4.3.859",
47
- "User-Agent": "@athenaintel/sdk/4.3.859",
46
+ "X-Fern-SDK-Version": "4.3.861",
47
+ "User-Agent": "@athenaintel/sdk/4.3.861",
48
48
  "X-Fern-Runtime": core.RUNTIME.type,
49
49
  "X-Fern-Runtime-Version": core.RUNTIME.version,
50
50
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -15,12 +15,13 @@ export interface DatabaseStatusResponse {
15
15
  status: DatabaseStatusResponse.Status;
16
16
  }
17
17
  export declare namespace DatabaseStatusResponse {
18
+ /** Standardized database status */
18
19
  const Status: {
19
- readonly Scheduled: "scheduled";
20
20
  readonly Running: "running";
21
- readonly Completed: "completed";
21
+ readonly Suspended: "suspended";
22
+ readonly Starting: "starting";
22
23
  readonly Failed: "failed";
23
- readonly Queued: "queued";
24
+ readonly Unknown: "unknown";
24
25
  };
25
26
  type Status = (typeof Status)[keyof typeof Status];
26
27
  }
@@ -4,11 +4,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.DatabaseStatusResponse = void 0;
5
5
  var DatabaseStatusResponse;
6
6
  (function (DatabaseStatusResponse) {
7
+ /** Standardized database status */
7
8
  DatabaseStatusResponse.Status = {
8
- Scheduled: "scheduled",
9
9
  Running: "running",
10
- Completed: "completed",
10
+ Suspended: "suspended",
11
+ Starting: "starting",
11
12
  Failed: "failed",
12
- Queued: "queued",
13
+ Unknown: "unknown",
13
14
  };
14
15
  })(DatabaseStatusResponse || (exports.DatabaseStatusResponse = DatabaseStatusResponse = {}));
@@ -7,8 +7,9 @@ export interface PromptMessage {
7
7
  }
8
8
  export declare namespace PromptMessage {
9
9
  const Type: {
10
- readonly Script: "script";
11
- readonly Flow: "flow";
10
+ readonly System: "system";
11
+ readonly Human: "human";
12
+ readonly User: "user";
12
13
  };
13
14
  type Type = (typeof Type)[keyof typeof Type];
14
15
  }
@@ -5,7 +5,8 @@ exports.PromptMessage = void 0;
5
5
  var PromptMessage;
6
6
  (function (PromptMessage) {
7
7
  PromptMessage.Type = {
8
- Script: "script",
9
- Flow: "flow",
8
+ System: "system",
9
+ Human: "human",
10
+ User: "user",
10
11
  };
11
12
  })(PromptMessage || (exports.PromptMessage = PromptMessage = {}));
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "4.3.859";
1
+ export declare const SDK_VERSION = "4.3.861";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "4.3.859";
4
+ exports.SDK_VERSION = "4.3.861";
@@ -6,8 +6,8 @@ export function normalizeClientOptions(options) {
6
6
  const headers = mergeHeaders({
7
7
  "X-Fern-Language": "JavaScript",
8
8
  "X-Fern-SDK-Name": "@athenaintel/sdk",
9
- "X-Fern-SDK-Version": "4.3.859",
10
- "User-Agent": "@athenaintel/sdk/4.3.859",
9
+ "X-Fern-SDK-Version": "4.3.861",
10
+ "User-Agent": "@athenaintel/sdk/4.3.861",
11
11
  "X-Fern-Runtime": core.RUNTIME.type,
12
12
  "X-Fern-Runtime-Version": core.RUNTIME.version,
13
13
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -15,12 +15,13 @@ export interface DatabaseStatusResponse {
15
15
  status: DatabaseStatusResponse.Status;
16
16
  }
17
17
  export declare namespace DatabaseStatusResponse {
18
+ /** Standardized database status */
18
19
  const Status: {
19
- readonly Scheduled: "scheduled";
20
20
  readonly Running: "running";
21
- readonly Completed: "completed";
21
+ readonly Suspended: "suspended";
22
+ readonly Starting: "starting";
22
23
  readonly Failed: "failed";
23
- readonly Queued: "queued";
24
+ readonly Unknown: "unknown";
24
25
  };
25
26
  type Status = (typeof Status)[keyof typeof Status];
26
27
  }
@@ -1,11 +1,12 @@
1
1
  // This file was auto-generated by Fern from our API Definition.
2
2
  export var DatabaseStatusResponse;
3
3
  (function (DatabaseStatusResponse) {
4
+ /** Standardized database status */
4
5
  DatabaseStatusResponse.Status = {
5
- Scheduled: "scheduled",
6
6
  Running: "running",
7
- Completed: "completed",
7
+ Suspended: "suspended",
8
+ Starting: "starting",
8
9
  Failed: "failed",
9
- Queued: "queued",
10
+ Unknown: "unknown",
10
11
  };
11
12
  })(DatabaseStatusResponse || (DatabaseStatusResponse = {}));
@@ -7,8 +7,9 @@ export interface PromptMessage {
7
7
  }
8
8
  export declare namespace PromptMessage {
9
9
  const Type: {
10
- readonly Script: "script";
11
- readonly Flow: "flow";
10
+ readonly System: "system";
11
+ readonly Human: "human";
12
+ readonly User: "user";
12
13
  };
13
14
  type Type = (typeof Type)[keyof typeof Type];
14
15
  }
@@ -2,7 +2,8 @@
2
2
  export var PromptMessage;
3
3
  (function (PromptMessage) {
4
4
  PromptMessage.Type = {
5
- Script: "script",
6
- Flow: "flow",
5
+ System: "system",
6
+ Human: "human",
7
+ User: "user",
7
8
  };
8
9
  })(PromptMessage || (PromptMessage = {}));
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "4.3.859";
1
+ export declare const SDK_VERSION = "4.3.861";
@@ -1 +1 @@
1
- export const SDK_VERSION = "4.3.859";
1
+ export const SDK_VERSION = "4.3.861";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@athenaintel/sdk",
3
- "version": "4.3.859",
3
+ "version": "4.3.861",
4
4
  "private": false,
5
5
  "repository": "github:Athena-Intel/athena-typescript",
6
6
  "type": "commonjs",