@komputer-ai/sdk 0.11.1 → 0.11.3
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/.openapi-generator/FILES +69 -0
- package/.openapi-generator/VERSION +1 -0
- package/README.md +147 -122
- package/dist/apis/AgentsApi.d.ts +173 -0
- package/dist/apis/AgentsApi.js +383 -0
- package/dist/apis/ConnectorsApi.d.ts +118 -0
- package/dist/apis/ConnectorsApi.js +247 -0
- package/dist/apis/MemoriesApi.d.ts +115 -0
- package/dist/apis/MemoriesApi.js +252 -0
- package/dist/apis/OfficesApi.d.ts +98 -0
- package/dist/apis/OfficesApi.js +208 -0
- package/dist/apis/SchedulesApi.d.ts +111 -0
- package/dist/apis/SchedulesApi.js +252 -0
- package/dist/apis/SecretsApi.d.ts +98 -0
- package/dist/apis/SecretsApi.js +211 -0
- package/dist/apis/SkillsApi.d.ts +115 -0
- package/dist/apis/SkillsApi.js +252 -0
- package/dist/apis/TemplatesApi.d.ts +56 -0
- package/dist/apis/TemplatesApi.js +109 -0
- package/dist/apis/index.d.ts +8 -0
- package/dist/apis/index.js +26 -0
- package/dist/client.d.ts +175 -0
- package/dist/client.js +293 -0
- package/dist/esm/apis/AgentsApi.d.ts +173 -0
- package/dist/esm/apis/AgentsApi.js +379 -0
- package/dist/esm/apis/ConnectorsApi.d.ts +118 -0
- package/dist/esm/apis/ConnectorsApi.js +243 -0
- package/dist/esm/apis/MemoriesApi.d.ts +115 -0
- package/dist/esm/apis/MemoriesApi.js +248 -0
- package/dist/esm/apis/OfficesApi.d.ts +98 -0
- package/dist/esm/apis/OfficesApi.js +204 -0
- package/dist/esm/apis/SchedulesApi.d.ts +111 -0
- package/dist/esm/apis/SchedulesApi.js +248 -0
- package/dist/esm/apis/SecretsApi.d.ts +98 -0
- package/dist/esm/apis/SecretsApi.js +207 -0
- package/dist/esm/apis/SkillsApi.d.ts +115 -0
- package/dist/esm/apis/SkillsApi.js +248 -0
- package/dist/esm/apis/TemplatesApi.d.ts +56 -0
- package/dist/esm/apis/TemplatesApi.js +105 -0
- package/dist/esm/apis/index.d.ts +8 -0
- package/dist/esm/client.d.ts +175 -0
- package/dist/esm/client.js +289 -0
- package/{src/index.ts → dist/esm/index.d.ts} +0 -2
- package/dist/esm/index.js +6 -0
- package/dist/esm/models/AgentListResponse.d.ts +33 -0
- package/dist/esm/models/AgentListResponse.js +42 -0
- package/dist/esm/models/AgentResponse.d.ts +134 -0
- package/dist/esm/models/AgentResponse.js +75 -0
- package/dist/esm/models/ConnectorResponse.d.ts +104 -0
- package/{src/models/ConnectorResponse.ts → dist/esm/models/ConnectorResponse.js} +6 -102
- package/dist/esm/models/CreateAgentRequest.d.ts +104 -0
- package/dist/esm/models/CreateAgentRequest.js +69 -0
- package/dist/esm/models/CreateConnectorRequest.d.ts +92 -0
- package/{src/models/CreateConnectorRequest.ts → dist/esm/models/CreateConnectorRequest.js} +12 -93
- package/dist/esm/models/CreateMemoryRequest.d.ts +50 -0
- package/{src/models/CreateMemoryRequest.ts → dist/esm/models/CreateMemoryRequest.js} +10 -50
- package/dist/esm/models/CreateScheduleAgentSpec.d.ts +56 -0
- package/{src/models/CreateScheduleAgentSpec.ts → dist/esm/models/CreateScheduleAgentSpec.js} +6 -54
- package/dist/esm/models/CreateScheduleRequest.d.ts +81 -0
- package/dist/esm/models/CreateScheduleRequest.js +64 -0
- package/dist/esm/models/CreateSecretRequest.d.ts +46 -0
- package/dist/esm/models/CreateSecretRequest.js +49 -0
- package/dist/esm/models/CreateSkillRequest.d.ts +50 -0
- package/dist/esm/models/CreateSkillRequest.js +53 -0
- package/dist/esm/models/MemoryResponse.d.ts +68 -0
- package/dist/esm/models/MemoryResponse.js +53 -0
- package/dist/esm/models/OfficeListResponse.d.ts +33 -0
- package/dist/esm/models/OfficeListResponse.js +42 -0
- package/dist/esm/models/OfficeMemberResponse.d.ts +50 -0
- package/dist/esm/models/OfficeMemberResponse.js +47 -0
- package/dist/esm/models/OfficeResponse.d.ts +93 -0
- package/dist/esm/models/OfficeResponse.js +62 -0
- package/dist/esm/models/PatchAgentRequest.d.ts +80 -0
- package/{src/models/PatchAgentRequest.ts → dist/esm/models/PatchAgentRequest.js} +6 -78
- package/dist/esm/models/PatchMemoryRequest.d.ts +38 -0
- package/dist/esm/models/PatchMemoryRequest.js +43 -0
- package/dist/esm/models/PatchScheduleRequest.d.ts +32 -0
- package/dist/esm/models/PatchScheduleRequest.js +41 -0
- package/dist/esm/models/PatchSkillRequest.d.ts +38 -0
- package/{src/models/PatchSkillRequest.ts → dist/esm/models/PatchSkillRequest.js} +6 -36
- package/dist/esm/models/ScheduleListResponse.d.ts +33 -0
- package/dist/esm/models/ScheduleListResponse.js +42 -0
- package/dist/esm/models/ScheduleResponse.d.ts +140 -0
- package/dist/esm/models/ScheduleResponse.js +77 -0
- package/dist/esm/models/SecretListResponse.d.ts +33 -0
- package/dist/esm/models/SecretListResponse.js +42 -0
- package/dist/esm/models/SecretResponse.d.ts +74 -0
- package/dist/esm/models/SecretResponse.js +55 -0
- package/dist/esm/models/SkillResponse.d.ts +74 -0
- package/dist/esm/models/SkillResponse.js +55 -0
- package/dist/esm/models/UpdateSecretRequest.d.ts +40 -0
- package/{src/models/UpdateSecretRequest.ts → dist/esm/models/UpdateSecretRequest.js} +8 -37
- package/dist/esm/models/index.d.ts +24 -0
- package/dist/esm/runtime.d.ts +184 -0
- package/dist/esm/runtime.js +349 -0
- package/dist/esm/watch.d.ts +32 -0
- package/dist/esm/watch.js +96 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +24 -0
- package/dist/models/AgentListResponse.d.ts +33 -0
- package/dist/models/AgentListResponse.js +49 -0
- package/dist/models/AgentResponse.d.ts +134 -0
- package/{src/models/AgentResponse.ts → dist/models/AgentResponse.js} +13 -132
- package/dist/models/ConnectorResponse.d.ts +104 -0
- package/dist/models/ConnectorResponse.js +72 -0
- package/dist/models/CreateAgentRequest.d.ts +104 -0
- package/dist/models/CreateAgentRequest.js +76 -0
- package/dist/models/CreateConnectorRequest.d.ts +92 -0
- package/dist/models/CreateConnectorRequest.js +74 -0
- package/dist/models/CreateMemoryRequest.d.ts +50 -0
- package/dist/models/CreateMemoryRequest.js +58 -0
- package/dist/models/CreateScheduleAgentSpec.d.ts +56 -0
- package/dist/models/CreateScheduleAgentSpec.js +56 -0
- package/dist/models/CreateScheduleRequest.d.ts +81 -0
- package/dist/models/CreateScheduleRequest.js +71 -0
- package/dist/models/CreateSecretRequest.d.ts +46 -0
- package/dist/models/CreateSecretRequest.js +56 -0
- package/dist/models/CreateSkillRequest.d.ts +50 -0
- package/{src/models/CreateSkillRequest.ts → dist/models/CreateSkillRequest.js} +19 -51
- package/dist/models/MemoryResponse.d.ts +68 -0
- package/{src/models/MemoryResponse.ts → dist/models/MemoryResponse.js} +13 -66
- package/dist/models/OfficeListResponse.d.ts +33 -0
- package/dist/models/OfficeListResponse.js +49 -0
- package/dist/models/OfficeMemberResponse.d.ts +50 -0
- package/{src/models/OfficeMemberResponse.ts → dist/models/OfficeMemberResponse.js} +13 -48
- package/dist/models/OfficeResponse.d.ts +93 -0
- package/dist/models/OfficeResponse.js +69 -0
- package/dist/models/PatchAgentRequest.d.ts +80 -0
- package/dist/models/PatchAgentRequest.js +64 -0
- package/dist/models/PatchMemoryRequest.d.ts +38 -0
- package/{src/models/PatchMemoryRequest.ts → dist/models/PatchMemoryRequest.js} +13 -36
- package/dist/models/PatchScheduleRequest.d.ts +32 -0
- package/{src/models/PatchScheduleRequest.ts → dist/models/PatchScheduleRequest.js} +13 -30
- package/dist/models/PatchSkillRequest.d.ts +38 -0
- package/dist/models/PatchSkillRequest.js +50 -0
- package/dist/models/ScheduleListResponse.d.ts +33 -0
- package/dist/models/ScheduleListResponse.js +49 -0
- package/dist/models/ScheduleResponse.d.ts +140 -0
- package/{src/models/ScheduleResponse.ts → dist/models/ScheduleResponse.js} +13 -138
- package/dist/models/SecretListResponse.d.ts +33 -0
- package/dist/models/SecretListResponse.js +49 -0
- package/dist/models/SecretResponse.d.ts +74 -0
- package/{src/models/SecretResponse.ts → dist/models/SecretResponse.js} +13 -72
- package/dist/models/SkillResponse.d.ts +74 -0
- package/{src/models/SkillResponse.ts → dist/models/SkillResponse.js} +13 -72
- package/dist/models/UpdateSecretRequest.d.ts +40 -0
- package/dist/models/UpdateSecretRequest.js +52 -0
- package/dist/models/index.d.ts +24 -0
- package/dist/models/index.js +42 -0
- package/dist/runtime.d.ts +184 -0
- package/dist/runtime.js +365 -0
- package/dist/watch.d.ts +32 -0
- package/dist/watch.js +100 -0
- package/package.json +6 -3
- package/.openapi-generator-ignore +0 -31
- package/docs/AgentListResponse.md +0 -34
- package/docs/AgentResponse.md +0 -68
- package/docs/AgentsApi.md +0 -584
- package/docs/ConnectorResponse.md +0 -58
- package/docs/ConnectorsApi.md +0 -366
- package/docs/CreateAgentRequest.md +0 -58
- package/docs/CreateConnectorRequest.md +0 -54
- package/docs/CreateMemoryRequest.md +0 -40
- package/docs/CreateScheduleAgentSpec.md +0 -42
- package/docs/CreateScheduleRequest.md +0 -50
- package/docs/CreateSecretRequest.md +0 -38
- package/docs/CreateSkillRequest.md +0 -40
- package/docs/MemoriesApi.md +0 -368
- package/docs/MemoryResponse.md +0 -46
- package/docs/OfficeListResponse.md +0 -34
- package/docs/OfficeMemberResponse.md +0 -40
- package/docs/OfficeResponse.md +0 -54
- package/docs/OfficesApi.md +0 -300
- package/docs/PatchAgentRequest.md +0 -50
- package/docs/PatchMemoryRequest.md +0 -36
- package/docs/PatchScheduleRequest.md +0 -34
- package/docs/PatchSkillRequest.md +0 -36
- package/docs/ScheduleListResponse.md +0 -34
- package/docs/ScheduleResponse.md +0 -70
- package/docs/SchedulesApi.md +0 -369
- package/docs/SecretListResponse.md +0 -34
- package/docs/SecretResponse.md +0 -48
- package/docs/SecretsApi.md +0 -298
- package/docs/SkillResponse.md +0 -48
- package/docs/SkillsApi.md +0 -368
- package/docs/TemplatesApi.md +0 -138
- package/docs/UpdateSecretRequest.md +0 -36
- package/src/apis/AgentsApi.ts +0 -485
- package/src/apis/ConnectorsApi.ts +0 -301
- package/src/apis/MemoriesApi.ts +0 -315
- package/src/apis/OfficesApi.ts +0 -253
- package/src/apis/SchedulesApi.ts +0 -318
- package/src/apis/SecretsApi.ts +0 -267
- package/src/apis/SkillsApi.ts +0 -315
- package/src/apis/TemplatesApi.ts +0 -109
- package/src/client.test.ts +0 -88
- package/src/client.ts +0 -212
- package/src/models/AgentListResponse.ts +0 -73
- package/src/models/CreateAgentRequest.ts +0 -163
- package/src/models/CreateScheduleRequest.ts +0 -140
- package/src/models/CreateSecretRequest.ts +0 -83
- package/src/models/OfficeListResponse.ts +0 -73
- package/src/models/OfficeResponse.ts +0 -153
- package/src/models/ScheduleListResponse.ts +0 -73
- package/src/models/SecretListResponse.ts +0 -73
- package/src/runtime.ts +0 -450
- package/src/watch.ts +0 -89
- package/tsconfig.esm.json +0 -7
- package/tsconfig.json +0 -18
- /package/{src/apis/index.ts → dist/esm/apis/index.js} +0 -0
- /package/{src/models/index.ts → dist/esm/models/index.js} +0 -0
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* komputer.ai API
|
|
3
|
+
* API-first platform for running persistent Claude AI agents on Kubernetes. Designed to be driven by external systems — create agents, send tasks, and stream real-time results via REST + WebSocket.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { OfficeMemberResponse } from './OfficeMemberResponse';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface OfficeResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface OfficeResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof OfficeResponse
|
|
23
|
+
*/
|
|
24
|
+
activeAgents?: number;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof OfficeResponse
|
|
29
|
+
*/
|
|
30
|
+
completedAgents?: number;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof OfficeResponse
|
|
35
|
+
*/
|
|
36
|
+
createdAt?: string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof OfficeResponse
|
|
41
|
+
*/
|
|
42
|
+
manager?: string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {Array<OfficeMemberResponse>}
|
|
46
|
+
* @memberof OfficeResponse
|
|
47
|
+
*/
|
|
48
|
+
members?: Array<OfficeMemberResponse>;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof OfficeResponse
|
|
53
|
+
*/
|
|
54
|
+
name?: string;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof OfficeResponse
|
|
59
|
+
*/
|
|
60
|
+
namespace?: string;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof OfficeResponse
|
|
65
|
+
*/
|
|
66
|
+
phase?: string;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {number}
|
|
70
|
+
* @memberof OfficeResponse
|
|
71
|
+
*/
|
|
72
|
+
totalAgents?: number;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof OfficeResponse
|
|
77
|
+
*/
|
|
78
|
+
totalCostUSD?: string;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {number}
|
|
82
|
+
* @memberof OfficeResponse
|
|
83
|
+
*/
|
|
84
|
+
totalTokens?: number;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Check if a given object implements the OfficeResponse interface.
|
|
88
|
+
*/
|
|
89
|
+
export declare function instanceOfOfficeResponse(value: object): value is OfficeResponse;
|
|
90
|
+
export declare function OfficeResponseFromJSON(json: any): OfficeResponse;
|
|
91
|
+
export declare function OfficeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): OfficeResponse;
|
|
92
|
+
export declare function OfficeResponseToJSON(json: any): OfficeResponse;
|
|
93
|
+
export declare function OfficeResponseToJSONTyped(value?: OfficeResponse | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* komputer.ai API
|
|
6
|
+
* API-first platform for running persistent Claude AI agents on Kubernetes. Designed to be driven by external systems — create agents, send tasks, and stream real-time results via REST + WebSocket.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfOfficeResponse = instanceOfOfficeResponse;
|
|
17
|
+
exports.OfficeResponseFromJSON = OfficeResponseFromJSON;
|
|
18
|
+
exports.OfficeResponseFromJSONTyped = OfficeResponseFromJSONTyped;
|
|
19
|
+
exports.OfficeResponseToJSON = OfficeResponseToJSON;
|
|
20
|
+
exports.OfficeResponseToJSONTyped = OfficeResponseToJSONTyped;
|
|
21
|
+
const OfficeMemberResponse_1 = require("./OfficeMemberResponse");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the OfficeResponse interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfOfficeResponse(value) {
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
function OfficeResponseFromJSON(json) {
|
|
29
|
+
return OfficeResponseFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
function OfficeResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if (json == null) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'activeAgents': json['activeAgents'] == null ? undefined : json['activeAgents'],
|
|
37
|
+
'completedAgents': json['completedAgents'] == null ? undefined : json['completedAgents'],
|
|
38
|
+
'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
|
|
39
|
+
'manager': json['manager'] == null ? undefined : json['manager'],
|
|
40
|
+
'members': json['members'] == null ? undefined : (json['members'].map(OfficeMemberResponse_1.OfficeMemberResponseFromJSON)),
|
|
41
|
+
'name': json['name'] == null ? undefined : json['name'],
|
|
42
|
+
'namespace': json['namespace'] == null ? undefined : json['namespace'],
|
|
43
|
+
'phase': json['phase'] == null ? undefined : json['phase'],
|
|
44
|
+
'totalAgents': json['totalAgents'] == null ? undefined : json['totalAgents'],
|
|
45
|
+
'totalCostUSD': json['totalCostUSD'] == null ? undefined : json['totalCostUSD'],
|
|
46
|
+
'totalTokens': json['totalTokens'] == null ? undefined : json['totalTokens'],
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
function OfficeResponseToJSON(json) {
|
|
50
|
+
return OfficeResponseToJSONTyped(json, false);
|
|
51
|
+
}
|
|
52
|
+
function OfficeResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
53
|
+
if (value == null) {
|
|
54
|
+
return value;
|
|
55
|
+
}
|
|
56
|
+
return {
|
|
57
|
+
'activeAgents': value['activeAgents'],
|
|
58
|
+
'completedAgents': value['completedAgents'],
|
|
59
|
+
'createdAt': value['createdAt'],
|
|
60
|
+
'manager': value['manager'],
|
|
61
|
+
'members': value['members'] == null ? undefined : (value['members'].map(OfficeMemberResponse_1.OfficeMemberResponseToJSON)),
|
|
62
|
+
'name': value['name'],
|
|
63
|
+
'namespace': value['namespace'],
|
|
64
|
+
'phase': value['phase'],
|
|
65
|
+
'totalAgents': value['totalAgents'],
|
|
66
|
+
'totalCostUSD': value['totalCostUSD'],
|
|
67
|
+
'totalTokens': value['totalTokens'],
|
|
68
|
+
};
|
|
69
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* komputer.ai API
|
|
3
|
+
* API-first platform for running persistent Claude AI agents on Kubernetes. Designed to be driven by external systems — create agents, send tasks, and stream real-time results via REST + WebSocket.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PatchAgentRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface PatchAgentRequest {
|
|
18
|
+
/**
|
|
19
|
+
* connector names to attach
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof PatchAgentRequest
|
|
22
|
+
*/
|
|
23
|
+
connectors?: Array<string>;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PatchAgentRequest
|
|
28
|
+
*/
|
|
29
|
+
instructions?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PatchAgentRequest
|
|
34
|
+
*/
|
|
35
|
+
lifecycle?: string;
|
|
36
|
+
/**
|
|
37
|
+
* memory names to attach
|
|
38
|
+
* @type {Array<string>}
|
|
39
|
+
* @memberof PatchAgentRequest
|
|
40
|
+
*/
|
|
41
|
+
memories?: Array<string>;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof PatchAgentRequest
|
|
46
|
+
*/
|
|
47
|
+
model?: string;
|
|
48
|
+
/**
|
|
49
|
+
* full replacement list of K8s secret names
|
|
50
|
+
* @type {Array<string>}
|
|
51
|
+
* @memberof PatchAgentRequest
|
|
52
|
+
*/
|
|
53
|
+
secretRefs?: Array<string>;
|
|
54
|
+
/**
|
|
55
|
+
* skill names to attach
|
|
56
|
+
* @type {Array<string>}
|
|
57
|
+
* @memberof PatchAgentRequest
|
|
58
|
+
*/
|
|
59
|
+
skills?: Array<string>;
|
|
60
|
+
/**
|
|
61
|
+
* custom system prompt
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof PatchAgentRequest
|
|
64
|
+
*/
|
|
65
|
+
systemPrompt?: string;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof PatchAgentRequest
|
|
70
|
+
*/
|
|
71
|
+
templateRef?: string;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Check if a given object implements the PatchAgentRequest interface.
|
|
75
|
+
*/
|
|
76
|
+
export declare function instanceOfPatchAgentRequest(value: object): value is PatchAgentRequest;
|
|
77
|
+
export declare function PatchAgentRequestFromJSON(json: any): PatchAgentRequest;
|
|
78
|
+
export declare function PatchAgentRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchAgentRequest;
|
|
79
|
+
export declare function PatchAgentRequestToJSON(json: any): PatchAgentRequest;
|
|
80
|
+
export declare function PatchAgentRequestToJSONTyped(value?: PatchAgentRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* komputer.ai API
|
|
6
|
+
* API-first platform for running persistent Claude AI agents on Kubernetes. Designed to be driven by external systems — create agents, send tasks, and stream real-time results via REST + WebSocket.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfPatchAgentRequest = instanceOfPatchAgentRequest;
|
|
17
|
+
exports.PatchAgentRequestFromJSON = PatchAgentRequestFromJSON;
|
|
18
|
+
exports.PatchAgentRequestFromJSONTyped = PatchAgentRequestFromJSONTyped;
|
|
19
|
+
exports.PatchAgentRequestToJSON = PatchAgentRequestToJSON;
|
|
20
|
+
exports.PatchAgentRequestToJSONTyped = PatchAgentRequestToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the PatchAgentRequest interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfPatchAgentRequest(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function PatchAgentRequestFromJSON(json) {
|
|
28
|
+
return PatchAgentRequestFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function PatchAgentRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'connectors': json['connectors'] == null ? undefined : json['connectors'],
|
|
36
|
+
'instructions': json['instructions'] == null ? undefined : json['instructions'],
|
|
37
|
+
'lifecycle': json['lifecycle'] == null ? undefined : json['lifecycle'],
|
|
38
|
+
'memories': json['memories'] == null ? undefined : json['memories'],
|
|
39
|
+
'model': json['model'] == null ? undefined : json['model'],
|
|
40
|
+
'secretRefs': json['secretRefs'] == null ? undefined : json['secretRefs'],
|
|
41
|
+
'skills': json['skills'] == null ? undefined : json['skills'],
|
|
42
|
+
'systemPrompt': json['systemPrompt'] == null ? undefined : json['systemPrompt'],
|
|
43
|
+
'templateRef': json['templateRef'] == null ? undefined : json['templateRef'],
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
function PatchAgentRequestToJSON(json) {
|
|
47
|
+
return PatchAgentRequestToJSONTyped(json, false);
|
|
48
|
+
}
|
|
49
|
+
function PatchAgentRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
50
|
+
if (value == null) {
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
'connectors': value['connectors'],
|
|
55
|
+
'instructions': value['instructions'],
|
|
56
|
+
'lifecycle': value['lifecycle'],
|
|
57
|
+
'memories': value['memories'],
|
|
58
|
+
'model': value['model'],
|
|
59
|
+
'secretRefs': value['secretRefs'],
|
|
60
|
+
'skills': value['skills'],
|
|
61
|
+
'systemPrompt': value['systemPrompt'],
|
|
62
|
+
'templateRef': value['templateRef'],
|
|
63
|
+
};
|
|
64
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* komputer.ai API
|
|
3
|
+
* API-first platform for running persistent Claude AI agents on Kubernetes. Designed to be driven by external systems — create agents, send tasks, and stream real-time results via REST + WebSocket.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PatchMemoryRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface PatchMemoryRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PatchMemoryRequest
|
|
22
|
+
*/
|
|
23
|
+
content?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PatchMemoryRequest
|
|
28
|
+
*/
|
|
29
|
+
description?: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the PatchMemoryRequest interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfPatchMemoryRequest(value: object): value is PatchMemoryRequest;
|
|
35
|
+
export declare function PatchMemoryRequestFromJSON(json: any): PatchMemoryRequest;
|
|
36
|
+
export declare function PatchMemoryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchMemoryRequest;
|
|
37
|
+
export declare function PatchMemoryRequestToJSON(json: any): PatchMemoryRequest;
|
|
38
|
+
export declare function PatchMemoryRequestToJSONTyped(value?: PatchMemoryRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
/* tslint:disable */
|
|
2
3
|
/* eslint-disable */
|
|
3
4
|
/**
|
|
@@ -5,69 +6,45 @@
|
|
|
5
6
|
* API-first platform for running persistent Claude AI agents on Kubernetes. Designed to be driven by external systems — create agents, send tasks, and stream real-time results via REST + WebSocket.
|
|
6
7
|
*
|
|
7
8
|
* The version of the OpenAPI document: 1.0
|
|
8
|
-
*
|
|
9
|
+
*
|
|
9
10
|
*
|
|
10
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
12
|
* https://openapi-generator.tech
|
|
12
13
|
* Do not edit the class manually.
|
|
13
14
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
*/
|
|
21
|
-
export interface PatchMemoryRequest {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof PatchMemoryRequest
|
|
26
|
-
*/
|
|
27
|
-
content?: string;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @memberof PatchMemoryRequest
|
|
32
|
-
*/
|
|
33
|
-
description?: string;
|
|
34
|
-
}
|
|
35
|
-
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfPatchMemoryRequest = instanceOfPatchMemoryRequest;
|
|
17
|
+
exports.PatchMemoryRequestFromJSON = PatchMemoryRequestFromJSON;
|
|
18
|
+
exports.PatchMemoryRequestFromJSONTyped = PatchMemoryRequestFromJSONTyped;
|
|
19
|
+
exports.PatchMemoryRequestToJSON = PatchMemoryRequestToJSON;
|
|
20
|
+
exports.PatchMemoryRequestToJSONTyped = PatchMemoryRequestToJSONTyped;
|
|
36
21
|
/**
|
|
37
22
|
* Check if a given object implements the PatchMemoryRequest interface.
|
|
38
23
|
*/
|
|
39
|
-
|
|
24
|
+
function instanceOfPatchMemoryRequest(value) {
|
|
40
25
|
return true;
|
|
41
26
|
}
|
|
42
|
-
|
|
43
|
-
export function PatchMemoryRequestFromJSON(json: any): PatchMemoryRequest {
|
|
27
|
+
function PatchMemoryRequestFromJSON(json) {
|
|
44
28
|
return PatchMemoryRequestFromJSONTyped(json, false);
|
|
45
29
|
}
|
|
46
|
-
|
|
47
|
-
export function PatchMemoryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchMemoryRequest {
|
|
30
|
+
function PatchMemoryRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
48
31
|
if (json == null) {
|
|
49
32
|
return json;
|
|
50
33
|
}
|
|
51
34
|
return {
|
|
52
|
-
|
|
53
35
|
'content': json['content'] == null ? undefined : json['content'],
|
|
54
36
|
'description': json['description'] == null ? undefined : json['description'],
|
|
55
37
|
};
|
|
56
38
|
}
|
|
57
|
-
|
|
58
|
-
export function PatchMemoryRequestToJSON(json: any): PatchMemoryRequest {
|
|
39
|
+
function PatchMemoryRequestToJSON(json) {
|
|
59
40
|
return PatchMemoryRequestToJSONTyped(json, false);
|
|
60
41
|
}
|
|
61
|
-
|
|
62
|
-
export function PatchMemoryRequestToJSONTyped(value?: PatchMemoryRequest | null, ignoreDiscriminator: boolean = false): any {
|
|
42
|
+
function PatchMemoryRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
63
43
|
if (value == null) {
|
|
64
44
|
return value;
|
|
65
45
|
}
|
|
66
|
-
|
|
67
46
|
return {
|
|
68
|
-
|
|
69
47
|
'content': value['content'],
|
|
70
48
|
'description': value['description'],
|
|
71
49
|
};
|
|
72
50
|
}
|
|
73
|
-
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* komputer.ai API
|
|
3
|
+
* API-first platform for running persistent Claude AI agents on Kubernetes. Designed to be driven by external systems — create agents, send tasks, and stream real-time results via REST + WebSocket.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PatchScheduleRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface PatchScheduleRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PatchScheduleRequest
|
|
22
|
+
*/
|
|
23
|
+
schedule?: string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Check if a given object implements the PatchScheduleRequest interface.
|
|
27
|
+
*/
|
|
28
|
+
export declare function instanceOfPatchScheduleRequest(value: object): value is PatchScheduleRequest;
|
|
29
|
+
export declare function PatchScheduleRequestFromJSON(json: any): PatchScheduleRequest;
|
|
30
|
+
export declare function PatchScheduleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchScheduleRequest;
|
|
31
|
+
export declare function PatchScheduleRequestToJSON(json: any): PatchScheduleRequest;
|
|
32
|
+
export declare function PatchScheduleRequestToJSONTyped(value?: PatchScheduleRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
"use strict";
|
|
1
2
|
/* tslint:disable */
|
|
2
3
|
/* eslint-disable */
|
|
3
4
|
/**
|
|
@@ -5,61 +6,43 @@
|
|
|
5
6
|
* API-first platform for running persistent Claude AI agents on Kubernetes. Designed to be driven by external systems — create agents, send tasks, and stream real-time results via REST + WebSocket.
|
|
6
7
|
*
|
|
7
8
|
* The version of the OpenAPI document: 1.0
|
|
8
|
-
*
|
|
9
|
+
*
|
|
9
10
|
*
|
|
10
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
12
|
* https://openapi-generator.tech
|
|
12
13
|
* Do not edit the class manually.
|
|
13
14
|
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
*/
|
|
21
|
-
export interface PatchScheduleRequest {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof PatchScheduleRequest
|
|
26
|
-
*/
|
|
27
|
-
schedule?: string;
|
|
28
|
-
}
|
|
29
|
-
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfPatchScheduleRequest = instanceOfPatchScheduleRequest;
|
|
17
|
+
exports.PatchScheduleRequestFromJSON = PatchScheduleRequestFromJSON;
|
|
18
|
+
exports.PatchScheduleRequestFromJSONTyped = PatchScheduleRequestFromJSONTyped;
|
|
19
|
+
exports.PatchScheduleRequestToJSON = PatchScheduleRequestToJSON;
|
|
20
|
+
exports.PatchScheduleRequestToJSONTyped = PatchScheduleRequestToJSONTyped;
|
|
30
21
|
/**
|
|
31
22
|
* Check if a given object implements the PatchScheduleRequest interface.
|
|
32
23
|
*/
|
|
33
|
-
|
|
24
|
+
function instanceOfPatchScheduleRequest(value) {
|
|
34
25
|
return true;
|
|
35
26
|
}
|
|
36
|
-
|
|
37
|
-
export function PatchScheduleRequestFromJSON(json: any): PatchScheduleRequest {
|
|
27
|
+
function PatchScheduleRequestFromJSON(json) {
|
|
38
28
|
return PatchScheduleRequestFromJSONTyped(json, false);
|
|
39
29
|
}
|
|
40
|
-
|
|
41
|
-
export function PatchScheduleRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchScheduleRequest {
|
|
30
|
+
function PatchScheduleRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
42
31
|
if (json == null) {
|
|
43
32
|
return json;
|
|
44
33
|
}
|
|
45
34
|
return {
|
|
46
|
-
|
|
47
35
|
'schedule': json['schedule'] == null ? undefined : json['schedule'],
|
|
48
36
|
};
|
|
49
37
|
}
|
|
50
|
-
|
|
51
|
-
export function PatchScheduleRequestToJSON(json: any): PatchScheduleRequest {
|
|
38
|
+
function PatchScheduleRequestToJSON(json) {
|
|
52
39
|
return PatchScheduleRequestToJSONTyped(json, false);
|
|
53
40
|
}
|
|
54
|
-
|
|
55
|
-
export function PatchScheduleRequestToJSONTyped(value?: PatchScheduleRequest | null, ignoreDiscriminator: boolean = false): any {
|
|
41
|
+
function PatchScheduleRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
56
42
|
if (value == null) {
|
|
57
43
|
return value;
|
|
58
44
|
}
|
|
59
|
-
|
|
60
45
|
return {
|
|
61
|
-
|
|
62
46
|
'schedule': value['schedule'],
|
|
63
47
|
};
|
|
64
48
|
}
|
|
65
|
-
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* komputer.ai API
|
|
3
|
+
* API-first platform for running persistent Claude AI agents on Kubernetes. Designed to be driven by external systems — create agents, send tasks, and stream real-time results via REST + WebSocket.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface PatchSkillRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface PatchSkillRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof PatchSkillRequest
|
|
22
|
+
*/
|
|
23
|
+
content?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof PatchSkillRequest
|
|
28
|
+
*/
|
|
29
|
+
description?: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the PatchSkillRequest interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfPatchSkillRequest(value: object): value is PatchSkillRequest;
|
|
35
|
+
export declare function PatchSkillRequestFromJSON(json: any): PatchSkillRequest;
|
|
36
|
+
export declare function PatchSkillRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchSkillRequest;
|
|
37
|
+
export declare function PatchSkillRequestToJSON(json: any): PatchSkillRequest;
|
|
38
|
+
export declare function PatchSkillRequestToJSONTyped(value?: PatchSkillRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* komputer.ai API
|
|
6
|
+
* API-first platform for running persistent Claude AI agents on Kubernetes. Designed to be driven by external systems — create agents, send tasks, and stream real-time results via REST + WebSocket.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfPatchSkillRequest = instanceOfPatchSkillRequest;
|
|
17
|
+
exports.PatchSkillRequestFromJSON = PatchSkillRequestFromJSON;
|
|
18
|
+
exports.PatchSkillRequestFromJSONTyped = PatchSkillRequestFromJSONTyped;
|
|
19
|
+
exports.PatchSkillRequestToJSON = PatchSkillRequestToJSON;
|
|
20
|
+
exports.PatchSkillRequestToJSONTyped = PatchSkillRequestToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the PatchSkillRequest interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfPatchSkillRequest(value) {
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
function PatchSkillRequestFromJSON(json) {
|
|
28
|
+
return PatchSkillRequestFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
function PatchSkillRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'content': json['content'] == null ? undefined : json['content'],
|
|
36
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function PatchSkillRequestToJSON(json) {
|
|
40
|
+
return PatchSkillRequestToJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function PatchSkillRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
43
|
+
if (value == null) {
|
|
44
|
+
return value;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'content': value['content'],
|
|
48
|
+
'description': value['description'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* komputer.ai API
|
|
3
|
+
* API-first platform for running persistent Claude AI agents on Kubernetes. Designed to be driven by external systems — create agents, send tasks, and stream real-time results via REST + WebSocket.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ScheduleResponse } from './ScheduleResponse';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ScheduleListResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface ScheduleListResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<ScheduleResponse>}
|
|
22
|
+
* @memberof ScheduleListResponse
|
|
23
|
+
*/
|
|
24
|
+
schedules?: Array<ScheduleResponse>;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Check if a given object implements the ScheduleListResponse interface.
|
|
28
|
+
*/
|
|
29
|
+
export declare function instanceOfScheduleListResponse(value: object): value is ScheduleListResponse;
|
|
30
|
+
export declare function ScheduleListResponseFromJSON(json: any): ScheduleListResponse;
|
|
31
|
+
export declare function ScheduleListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScheduleListResponse;
|
|
32
|
+
export declare function ScheduleListResponseToJSON(json: any): ScheduleListResponse;
|
|
33
|
+
export declare function ScheduleListResponseToJSONTyped(value?: ScheduleListResponse | null, ignoreDiscriminator?: boolean): any;
|