@athenaintel/sdk 4.3.860 → 4.3.862
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/cjs/BaseClient.js +2 -2
- package/dist/cjs/api/types/DatabaseStatusResponse.d.ts +4 -3
- package/dist/cjs/api/types/DatabaseStatusResponse.js +4 -3
- package/dist/cjs/api/types/PromptMessage.d.ts +3 -2
- package/dist/cjs/api/types/PromptMessage.js +3 -2
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/BaseClient.mjs +2 -2
- package/dist/esm/api/types/DatabaseStatusResponse.d.mts +4 -3
- package/dist/esm/api/types/DatabaseStatusResponse.mjs +4 -3
- package/dist/esm/api/types/PromptMessage.d.mts +3 -2
- package/dist/esm/api/types/PromptMessage.mjs +3 -2
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/BaseClient.js
CHANGED
|
@@ -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.
|
|
47
|
-
"User-Agent": "@athenaintel/sdk/4.3.
|
|
46
|
+
"X-Fern-SDK-Version": "4.3.862",
|
|
47
|
+
"User-Agent": "@athenaintel/sdk/4.3.862",
|
|
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
|
|
21
|
+
readonly Suspended: "suspended";
|
|
22
|
+
readonly Starting: "starting";
|
|
22
23
|
readonly Failed: "failed";
|
|
23
|
-
readonly
|
|
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
|
-
|
|
10
|
+
Suspended: "suspended",
|
|
11
|
+
Starting: "starting",
|
|
11
12
|
Failed: "failed",
|
|
12
|
-
|
|
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
|
|
11
|
-
readonly
|
|
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
|
-
|
|
9
|
-
|
|
8
|
+
System: "system",
|
|
9
|
+
Human: "human",
|
|
10
|
+
User: "user",
|
|
10
11
|
};
|
|
11
12
|
})(PromptMessage || (exports.PromptMessage = PromptMessage = {}));
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "4.3.
|
|
1
|
+
export declare const SDK_VERSION = "4.3.862";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/BaseClient.mjs
CHANGED
|
@@ -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.
|
|
10
|
-
"User-Agent": "@athenaintel/sdk/4.3.
|
|
9
|
+
"X-Fern-SDK-Version": "4.3.862",
|
|
10
|
+
"User-Agent": "@athenaintel/sdk/4.3.862",
|
|
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
|
|
21
|
+
readonly Suspended: "suspended";
|
|
22
|
+
readonly Starting: "starting";
|
|
22
23
|
readonly Failed: "failed";
|
|
23
|
-
readonly
|
|
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
|
-
|
|
7
|
+
Suspended: "suspended",
|
|
8
|
+
Starting: "starting",
|
|
8
9
|
Failed: "failed",
|
|
9
|
-
|
|
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
|
|
11
|
-
readonly
|
|
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
|
}
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "4.3.
|
|
1
|
+
export declare const SDK_VERSION = "4.3.862";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "4.3.
|
|
1
|
+
export const SDK_VERSION = "4.3.862";
|