@athenaintel/sdk 4.3.1959 → 4.3.1960
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/resources/databases/client/Client.d.ts +1 -1
- package/dist/cjs/api/resources/sessions/client/Client.js +7 -1
- package/dist/cjs/api/resources/sessions/client/requests/ListSessionsRequest.d.ts +4 -0
- package/dist/cjs/api/types/{AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse.d.ts → DatabaseStatusResponse.d.ts} +3 -3
- package/dist/cjs/api/types/DatabaseStatusResponse.js +15 -0
- package/dist/cjs/api/types/SessionOut.d.ts +8 -0
- package/dist/cjs/api/types/index.d.ts +1 -1
- package/dist/cjs/api/types/index.js +1 -1
- 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/resources/databases/client/Client.d.mts +1 -1
- package/dist/esm/api/resources/sessions/client/Client.mjs +7 -1
- package/dist/esm/api/resources/sessions/client/requests/ListSessionsRequest.d.mts +4 -0
- package/dist/esm/api/types/{AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse.d.mts → DatabaseStatusResponse.d.mts} +3 -3
- package/dist/esm/api/types/DatabaseStatusResponse.mjs +12 -0
- package/dist/esm/api/types/SessionOut.d.mts +8 -0
- package/dist/esm/api/types/index.d.mts +1 -1
- package/dist/esm/api/types/index.mjs +1 -1
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
- package/reference.md +1 -1
- package/dist/cjs/api/types/AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse.js +0 -15
- package/dist/esm/api/types/AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse.mjs +0 -12
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.1960",
|
|
47
|
+
"User-Agent": "@athenaintel/sdk/4.3.1960",
|
|
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);
|
|
@@ -35,7 +35,7 @@ export declare class DatabasesClient {
|
|
|
35
35
|
* asset_id: "asset_id"
|
|
36
36
|
* })
|
|
37
37
|
*/
|
|
38
|
-
getStatus(request: AthenaIntelligence.GetStatusDatabasesRequest, requestOptions?: DatabasesClient.RequestOptions): core.HttpResponsePromise<AthenaIntelligence.
|
|
38
|
+
getStatus(request: AthenaIntelligence.GetStatusDatabasesRequest, requestOptions?: DatabasesClient.RequestOptions): core.HttpResponsePromise<AthenaIntelligence.DatabaseStatusResponse>;
|
|
39
39
|
private __getStatus;
|
|
40
40
|
/**
|
|
41
41
|
* Get a list of all tables in the database with optional row counts.
|
|
@@ -70,7 +70,7 @@ class SessionsClient {
|
|
|
70
70
|
return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
|
|
71
71
|
const list = core.HttpResponsePromise.interceptFunction((request) => __awaiter(this, void 0, void 0, function* () {
|
|
72
72
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
73
|
-
const { query, state, source_channel: sourceChannel, session_type: sessionType, app_id: appId, include_sub_sessions: includeSubSessions, include_task_sessions: includeTaskSessions, created_after: createdAfter, created_before: createdBefore, sort_by: sortBy, sort_direction: sortDirection, limit, offset, } = request;
|
|
73
|
+
const { query, state, source_channel: sourceChannel, session_type: sessionType, app_id: appId, include_sub_sessions: includeSubSessions, include_task_sessions: includeTaskSessions, aop_asset_id: aopAssetId, trigger_type: triggerType, created_after: createdAfter, created_before: createdBefore, sort_by: sortBy, sort_direction: sortDirection, limit, offset, } = request;
|
|
74
74
|
const _queryParams = {};
|
|
75
75
|
if (query !== undefined) {
|
|
76
76
|
_queryParams.query = query;
|
|
@@ -93,6 +93,12 @@ class SessionsClient {
|
|
|
93
93
|
if (includeTaskSessions != null) {
|
|
94
94
|
_queryParams.include_task_sessions = includeTaskSessions.toString();
|
|
95
95
|
}
|
|
96
|
+
if (aopAssetId !== undefined) {
|
|
97
|
+
_queryParams.aop_asset_id = aopAssetId;
|
|
98
|
+
}
|
|
99
|
+
if (triggerType !== undefined) {
|
|
100
|
+
_queryParams.trigger_type = (0, json_js_1.toJson)(triggerType);
|
|
101
|
+
}
|
|
96
102
|
if (createdAfter !== undefined) {
|
|
97
103
|
_queryParams.created_after = createdAfter;
|
|
98
104
|
}
|
|
@@ -18,6 +18,10 @@ export interface ListSessionsRequest {
|
|
|
18
18
|
include_sub_sessions?: boolean;
|
|
19
19
|
/** Include AOP/workflow task runs (excluded by default) */
|
|
20
20
|
include_task_sessions?: boolean;
|
|
21
|
+
/** Only include task sessions originating from this AOP asset identifier */
|
|
22
|
+
aop_asset_id?: string | null;
|
|
23
|
+
/** Trigger type(s) to filter by (e.g. 'schedule', 'api', 'email'). Repeat the parameter or pass a comma-separated list. */
|
|
24
|
+
trigger_type?: string[] | null;
|
|
21
25
|
/** Only include sessions created at or after this ISO 8601 timestamp */
|
|
22
26
|
created_after?: string | null;
|
|
23
27
|
/** Only include sessions created at or before this ISO 8601 timestamp */
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Used to determine if a serverless database is running or suspended
|
|
5
5
|
* (scale-to-zero). Poll this endpoint to know when a database is ready.
|
|
6
6
|
*/
|
|
7
|
-
export interface
|
|
7
|
+
export interface DatabaseStatusResponse {
|
|
8
8
|
/** The database asset ID */
|
|
9
9
|
asset_id: string;
|
|
10
10
|
/** Optional status message or error details */
|
|
@@ -12,9 +12,9 @@ export interface AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse {
|
|
|
12
12
|
/** Database provider ('neon_cloud' or 'kronos') */
|
|
13
13
|
provider: string;
|
|
14
14
|
/** Standardized database status */
|
|
15
|
-
status:
|
|
15
|
+
status: DatabaseStatusResponse.Status;
|
|
16
16
|
}
|
|
17
|
-
export declare namespace
|
|
17
|
+
export declare namespace DatabaseStatusResponse {
|
|
18
18
|
/** Standardized database status */
|
|
19
19
|
const Status: {
|
|
20
20
|
readonly Running: "running";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.DatabaseStatusResponse = void 0;
|
|
5
|
+
var DatabaseStatusResponse;
|
|
6
|
+
(function (DatabaseStatusResponse) {
|
|
7
|
+
/** Standardized database status */
|
|
8
|
+
DatabaseStatusResponse.Status = {
|
|
9
|
+
Running: "running",
|
|
10
|
+
Suspended: "suspended",
|
|
11
|
+
Starting: "starting",
|
|
12
|
+
Failed: "failed",
|
|
13
|
+
Unknown: "unknown",
|
|
14
|
+
};
|
|
15
|
+
})(DatabaseStatusResponse || (exports.DatabaseStatusResponse = DatabaseStatusResponse = {}));
|
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
export interface SessionOut {
|
|
5
5
|
/** Agent identity the session ran with, when set */
|
|
6
6
|
agent?: string | null;
|
|
7
|
+
/** Source AOP asset identifier for an AOP/workflow run */
|
|
8
|
+
aop_asset_id?: string | null;
|
|
9
|
+
/** Execution error recorded for a failed AOP run, when present */
|
|
10
|
+
aop_execution_error?: string | null;
|
|
11
|
+
/** Whether the AOP execution completed successfully, when known */
|
|
12
|
+
aop_execution_succeeded?: boolean | null;
|
|
7
13
|
/** Application identifier the session belongs to, when set */
|
|
8
14
|
app_id?: string | null;
|
|
9
15
|
/** Timestamp when the session was created (ISO 8601) */
|
|
@@ -34,6 +40,8 @@ export interface SessionOut {
|
|
|
34
40
|
title?: string | null;
|
|
35
41
|
/** Total LLM cost of the session in USD, when tracked */
|
|
36
42
|
total_cost_usd?: number | null;
|
|
43
|
+
/** Trigger that started an AOP/workflow run, such as schedule or api */
|
|
44
|
+
trigger_type?: string | null;
|
|
37
45
|
/** Timestamp when the session was last updated (ISO 8601) */
|
|
38
46
|
updated_at: string;
|
|
39
47
|
/** Unique identifier of the workspace this session belongs to */
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export * from "./AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse.js";
|
|
2
1
|
export * from "./AopAsyncExecuteResponseOut.js";
|
|
3
2
|
export * from "./AopConfigResponseOut.js";
|
|
4
3
|
export * from "./AopConfigUpdateResponseOut.js";
|
|
@@ -35,6 +34,7 @@ export * from "./DatabaseColumnInfo.js";
|
|
|
35
34
|
export * from "./DatabaseDataResponse.js";
|
|
36
35
|
export * from "./DatabaseMutationResponse.js";
|
|
37
36
|
export * from "./DatabaseSqlResponse.js";
|
|
37
|
+
export * from "./DatabaseStatusResponse.js";
|
|
38
38
|
export * from "./DatabaseTableInfo.js";
|
|
39
39
|
export * from "./DatabaseTableSchemaResponse.js";
|
|
40
40
|
export * from "./DatabaseTablesResponse.js";
|
|
@@ -14,7 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse.js"), exports);
|
|
18
17
|
__exportStar(require("./AopAsyncExecuteResponseOut.js"), exports);
|
|
19
18
|
__exportStar(require("./AopConfigResponseOut.js"), exports);
|
|
20
19
|
__exportStar(require("./AopConfigUpdateResponseOut.js"), exports);
|
|
@@ -51,6 +50,7 @@ __exportStar(require("./DatabaseColumnInfo.js"), exports);
|
|
|
51
50
|
__exportStar(require("./DatabaseDataResponse.js"), exports);
|
|
52
51
|
__exportStar(require("./DatabaseMutationResponse.js"), exports);
|
|
53
52
|
__exportStar(require("./DatabaseSqlResponse.js"), exports);
|
|
53
|
+
__exportStar(require("./DatabaseStatusResponse.js"), exports);
|
|
54
54
|
__exportStar(require("./DatabaseTableInfo.js"), exports);
|
|
55
55
|
__exportStar(require("./DatabaseTableSchemaResponse.js"), exports);
|
|
56
56
|
__exportStar(require("./DatabaseTablesResponse.js"), exports);
|
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.1960";
|
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.1960",
|
|
10
|
+
"User-Agent": "@athenaintel/sdk/4.3.1960",
|
|
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);
|
|
@@ -35,7 +35,7 @@ export declare class DatabasesClient {
|
|
|
35
35
|
* asset_id: "asset_id"
|
|
36
36
|
* })
|
|
37
37
|
*/
|
|
38
|
-
getStatus(request: AthenaIntelligence.GetStatusDatabasesRequest, requestOptions?: DatabasesClient.RequestOptions): core.HttpResponsePromise<AthenaIntelligence.
|
|
38
|
+
getStatus(request: AthenaIntelligence.GetStatusDatabasesRequest, requestOptions?: DatabasesClient.RequestOptions): core.HttpResponsePromise<AthenaIntelligence.DatabaseStatusResponse>;
|
|
39
39
|
private __getStatus;
|
|
40
40
|
/**
|
|
41
41
|
* Get a list of all tables in the database with optional row counts.
|
|
@@ -34,7 +34,7 @@ export class SessionsClient {
|
|
|
34
34
|
return __awaiter(this, arguments, void 0, function* (request = {}, requestOptions) {
|
|
35
35
|
const list = core.HttpResponsePromise.interceptFunction((request) => __awaiter(this, void 0, void 0, function* () {
|
|
36
36
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
37
|
-
const { query, state, source_channel: sourceChannel, session_type: sessionType, app_id: appId, include_sub_sessions: includeSubSessions, include_task_sessions: includeTaskSessions, created_after: createdAfter, created_before: createdBefore, sort_by: sortBy, sort_direction: sortDirection, limit, offset, } = request;
|
|
37
|
+
const { query, state, source_channel: sourceChannel, session_type: sessionType, app_id: appId, include_sub_sessions: includeSubSessions, include_task_sessions: includeTaskSessions, aop_asset_id: aopAssetId, trigger_type: triggerType, created_after: createdAfter, created_before: createdBefore, sort_by: sortBy, sort_direction: sortDirection, limit, offset, } = request;
|
|
38
38
|
const _queryParams = {};
|
|
39
39
|
if (query !== undefined) {
|
|
40
40
|
_queryParams.query = query;
|
|
@@ -57,6 +57,12 @@ export class SessionsClient {
|
|
|
57
57
|
if (includeTaskSessions != null) {
|
|
58
58
|
_queryParams.include_task_sessions = includeTaskSessions.toString();
|
|
59
59
|
}
|
|
60
|
+
if (aopAssetId !== undefined) {
|
|
61
|
+
_queryParams.aop_asset_id = aopAssetId;
|
|
62
|
+
}
|
|
63
|
+
if (triggerType !== undefined) {
|
|
64
|
+
_queryParams.trigger_type = toJson(triggerType);
|
|
65
|
+
}
|
|
60
66
|
if (createdAfter !== undefined) {
|
|
61
67
|
_queryParams.created_after = createdAfter;
|
|
62
68
|
}
|
|
@@ -18,6 +18,10 @@ export interface ListSessionsRequest {
|
|
|
18
18
|
include_sub_sessions?: boolean;
|
|
19
19
|
/** Include AOP/workflow task runs (excluded by default) */
|
|
20
20
|
include_task_sessions?: boolean;
|
|
21
|
+
/** Only include task sessions originating from this AOP asset identifier */
|
|
22
|
+
aop_asset_id?: string | null;
|
|
23
|
+
/** Trigger type(s) to filter by (e.g. 'schedule', 'api', 'email'). Repeat the parameter or pass a comma-separated list. */
|
|
24
|
+
trigger_type?: string[] | null;
|
|
21
25
|
/** Only include sessions created at or after this ISO 8601 timestamp */
|
|
22
26
|
created_after?: string | null;
|
|
23
27
|
/** Only include sessions created at or before this ISO 8601 timestamp */
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Used to determine if a serverless database is running or suspended
|
|
5
5
|
* (scale-to-zero). Poll this endpoint to know when a database is ready.
|
|
6
6
|
*/
|
|
7
|
-
export interface
|
|
7
|
+
export interface DatabaseStatusResponse {
|
|
8
8
|
/** The database asset ID */
|
|
9
9
|
asset_id: string;
|
|
10
10
|
/** Optional status message or error details */
|
|
@@ -12,9 +12,9 @@ export interface AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse {
|
|
|
12
12
|
/** Database provider ('neon_cloud' or 'kronos') */
|
|
13
13
|
provider: string;
|
|
14
14
|
/** Standardized database status */
|
|
15
|
-
status:
|
|
15
|
+
status: DatabaseStatusResponse.Status;
|
|
16
16
|
}
|
|
17
|
-
export declare namespace
|
|
17
|
+
export declare namespace DatabaseStatusResponse {
|
|
18
18
|
/** Standardized database status */
|
|
19
19
|
const Status: {
|
|
20
20
|
readonly Running: "running";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
// This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
export var DatabaseStatusResponse;
|
|
3
|
+
(function (DatabaseStatusResponse) {
|
|
4
|
+
/** Standardized database status */
|
|
5
|
+
DatabaseStatusResponse.Status = {
|
|
6
|
+
Running: "running",
|
|
7
|
+
Suspended: "suspended",
|
|
8
|
+
Starting: "starting",
|
|
9
|
+
Failed: "failed",
|
|
10
|
+
Unknown: "unknown",
|
|
11
|
+
};
|
|
12
|
+
})(DatabaseStatusResponse || (DatabaseStatusResponse = {}));
|
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
export interface SessionOut {
|
|
5
5
|
/** Agent identity the session ran with, when set */
|
|
6
6
|
agent?: string | null;
|
|
7
|
+
/** Source AOP asset identifier for an AOP/workflow run */
|
|
8
|
+
aop_asset_id?: string | null;
|
|
9
|
+
/** Execution error recorded for a failed AOP run, when present */
|
|
10
|
+
aop_execution_error?: string | null;
|
|
11
|
+
/** Whether the AOP execution completed successfully, when known */
|
|
12
|
+
aop_execution_succeeded?: boolean | null;
|
|
7
13
|
/** Application identifier the session belongs to, when set */
|
|
8
14
|
app_id?: string | null;
|
|
9
15
|
/** Timestamp when the session was created (ISO 8601) */
|
|
@@ -34,6 +40,8 @@ export interface SessionOut {
|
|
|
34
40
|
title?: string | null;
|
|
35
41
|
/** Total LLM cost of the session in USD, when tracked */
|
|
36
42
|
total_cost_usd?: number | null;
|
|
43
|
+
/** Trigger that started an AOP/workflow run, such as schedule or api */
|
|
44
|
+
trigger_type?: string | null;
|
|
37
45
|
/** Timestamp when the session was last updated (ISO 8601) */
|
|
38
46
|
updated_at: string;
|
|
39
47
|
/** Unique identifier of the workspace this session belongs to */
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export * from "./AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse.mjs";
|
|
2
1
|
export * from "./AopAsyncExecuteResponseOut.mjs";
|
|
3
2
|
export * from "./AopConfigResponseOut.mjs";
|
|
4
3
|
export * from "./AopConfigUpdateResponseOut.mjs";
|
|
@@ -35,6 +34,7 @@ export * from "./DatabaseColumnInfo.mjs";
|
|
|
35
34
|
export * from "./DatabaseDataResponse.mjs";
|
|
36
35
|
export * from "./DatabaseMutationResponse.mjs";
|
|
37
36
|
export * from "./DatabaseSqlResponse.mjs";
|
|
37
|
+
export * from "./DatabaseStatusResponse.mjs";
|
|
38
38
|
export * from "./DatabaseTableInfo.mjs";
|
|
39
39
|
export * from "./DatabaseTableSchemaResponse.mjs";
|
|
40
40
|
export * from "./DatabaseTablesResponse.mjs";
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export * from "./AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse.mjs";
|
|
2
1
|
export * from "./AopAsyncExecuteResponseOut.mjs";
|
|
3
2
|
export * from "./AopConfigResponseOut.mjs";
|
|
4
3
|
export * from "./AopConfigUpdateResponseOut.mjs";
|
|
@@ -35,6 +34,7 @@ export * from "./DatabaseColumnInfo.mjs";
|
|
|
35
34
|
export * from "./DatabaseDataResponse.mjs";
|
|
36
35
|
export * from "./DatabaseMutationResponse.mjs";
|
|
37
36
|
export * from "./DatabaseSqlResponse.mjs";
|
|
37
|
+
export * from "./DatabaseStatusResponse.mjs";
|
|
38
38
|
export * from "./DatabaseTableInfo.mjs";
|
|
39
39
|
export * from "./DatabaseTableSchemaResponse.mjs";
|
|
40
40
|
export * from "./DatabaseTablesResponse.mjs";
|
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.1960";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "4.3.
|
|
1
|
+
export const SDK_VERSION = "4.3.1960";
|
package/package.json
CHANGED
package/reference.md
CHANGED
|
@@ -1298,7 +1298,7 @@ await client.computer.revokeSshAccess({
|
|
|
1298
1298
|
</details>
|
|
1299
1299
|
|
|
1300
1300
|
## Databases
|
|
1301
|
-
<details><summary><code>client.databases.<a href="/src/api/resources/databases/client/Client.ts">getStatus</a>({ ...params }) -> AthenaIntelligence.
|
|
1301
|
+
<details><summary><code>client.databases.<a href="/src/api/resources/databases/client/Client.ts">getStatus</a>({ ...params }) -> AthenaIntelligence.DatabaseStatusResponse</code></summary>
|
|
1302
1302
|
<dl>
|
|
1303
1303
|
<dd>
|
|
1304
1304
|
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// This file was auto-generated by Fern from our API Definition.
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse = void 0;
|
|
5
|
-
var AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse;
|
|
6
|
-
(function (AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse) {
|
|
7
|
-
/** Standardized database status */
|
|
8
|
-
AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse.Status = {
|
|
9
|
-
Running: "running",
|
|
10
|
-
Suspended: "suspended",
|
|
11
|
-
Starting: "starting",
|
|
12
|
-
Failed: "failed",
|
|
13
|
-
Unknown: "unknown",
|
|
14
|
-
};
|
|
15
|
-
})(AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse || (exports.AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse = AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse = {}));
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
// This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
export var AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse;
|
|
3
|
-
(function (AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse) {
|
|
4
|
-
/** Standardized database status */
|
|
5
|
-
AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse.Status = {
|
|
6
|
-
Running: "running",
|
|
7
|
-
Suspended: "suspended",
|
|
8
|
-
Starting: "starting",
|
|
9
|
-
Failed: "failed",
|
|
10
|
-
Unknown: "unknown",
|
|
11
|
-
};
|
|
12
|
-
})(AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse || (AgoraWebApiPublicV0ModelsDatabaseDataDatabaseStatusResponse = {}));
|