@acomo/client 1.0.228 → 1.0.230
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/src/client/apis/AiApi.d.ts +7 -15
- package/dist/src/client/apis/AiApi.js +15 -49
- package/dist/src/client/apis/AiApi.js.map +1 -1
- package/dist/src/client/models/AgentAssistantAvailabilityEntity.d.ts +9 -0
- package/dist/src/client/models/AgentAssistantAvailabilityEntity.js +30 -0
- package/dist/src/client/models/AgentAssistantAvailabilityEntity.js.map +1 -0
- package/dist/src/client/models/AgentAssistantMode.d.ts +11 -0
- package/dist/src/client/models/AgentAssistantMode.js +28 -0
- package/dist/src/client/models/AgentAssistantMode.js.map +1 -0
- package/dist/src/client/models/AgentChatDto.d.ts +11 -0
- package/dist/src/client/models/AgentChatDto.js +33 -0
- package/dist/src/client/models/AgentChatDto.js.map +1 -0
- package/dist/src/client/models/index.d.ts +3 -4
- package/dist/src/client/models/index.js +3 -4
- package/dist/src/client/models/index.js.map +1 -1
- package/package.json +1 -1
- package/src/client/apis/AiApi.ts +27 -98
- package/src/client/models/AgentAssistantAvailabilityEntity.ts +74 -0
- package/src/client/models/AgentAssistantMode.ts +55 -0
- package/src/client/models/AgentChatDto.ts +94 -0
- package/src/client/models/index.ts +3 -4
- package/dist/src/client/models/AskAiForDataSchemaDto.d.ts +0 -9
- package/dist/src/client/models/AskAiForDataSchemaDto.js +0 -32
- package/dist/src/client/models/AskAiForDataSchemaDto.js.map +0 -1
- package/dist/src/client/models/AskAiForDefintionDto.d.ts +0 -8
- package/dist/src/client/models/AskAiForDefintionDto.js +0 -28
- package/dist/src/client/models/AskAiForDefintionDto.js.map +0 -1
- package/dist/src/client/models/ChatAiDto.d.ts +0 -9
- package/dist/src/client/models/ChatAiDto.js +0 -32
- package/dist/src/client/models/ChatAiDto.js.map +0 -1
- package/dist/src/client/models/ChatAiResponseEntity.d.ts +0 -12
- package/dist/src/client/models/ChatAiResponseEntity.js +0 -38
- package/dist/src/client/models/ChatAiResponseEntity.js.map +0 -1
- package/src/client/models/AskAiForDataSchemaDto.ts +0 -78
- package/src/client/models/AskAiForDefintionDto.ts +0 -66
- package/src/client/models/ChatAiDto.ts +0 -75
- package/src/client/models/ChatAiResponseEntity.ts +0 -104
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* acomo API docs
|
|
5
|
+
* acomoのAPI仕様書です。
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* アシスタントの回答モード。省略時は developer_api(後方互換)。
|
|
18
|
+
* 新規セッション開始時のみ参照され、agentId 指定時は無視される。
|
|
19
|
+
* @export
|
|
20
|
+
*/
|
|
21
|
+
export const AgentAssistantMode = {
|
|
22
|
+
DeveloperApi: 'developer_api',
|
|
23
|
+
ProductUi: 'product_ui',
|
|
24
|
+
WorkflowModeling: 'workflow_modeling'
|
|
25
|
+
} as const;
|
|
26
|
+
export type AgentAssistantMode = typeof AgentAssistantMode[keyof typeof AgentAssistantMode];
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
export function instanceOfAgentAssistantMode(value: any): boolean {
|
|
30
|
+
for (const key in AgentAssistantMode) {
|
|
31
|
+
if (Object.prototype.hasOwnProperty.call(AgentAssistantMode, key)) {
|
|
32
|
+
if (AgentAssistantMode[key as keyof typeof AgentAssistantMode] === value) {
|
|
33
|
+
return true;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
return false;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export function AgentAssistantModeFromJSON(json: any): AgentAssistantMode {
|
|
41
|
+
return AgentAssistantModeFromJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export function AgentAssistantModeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentAssistantMode {
|
|
45
|
+
return json as AgentAssistantMode;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export function AgentAssistantModeToJSON(value?: AgentAssistantMode | null): any {
|
|
49
|
+
return value as any;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function AgentAssistantModeToJSONTyped(value: any, ignoreDiscriminator: boolean): AgentAssistantMode {
|
|
53
|
+
return value as AgentAssistantMode;
|
|
54
|
+
}
|
|
55
|
+
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* acomo API docs
|
|
5
|
+
* acomoのAPI仕様書です。
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
import type { AgentAssistantMode } from './AgentAssistantMode';
|
|
17
|
+
import {
|
|
18
|
+
AgentAssistantModeFromJSON,
|
|
19
|
+
AgentAssistantModeFromJSONTyped,
|
|
20
|
+
AgentAssistantModeToJSON,
|
|
21
|
+
AgentAssistantModeToJSONTyped,
|
|
22
|
+
} from './AgentAssistantMode';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface AgentChatDto
|
|
28
|
+
*/
|
|
29
|
+
export interface AgentChatDto {
|
|
30
|
+
/**
|
|
31
|
+
* アシスタントの回答モード。省略時は developer_api(後方互換)。
|
|
32
|
+
* 新規セッション開始時のみ参照され、agentId 指定時は無視される。
|
|
33
|
+
* @type {AgentAssistantMode}
|
|
34
|
+
* @memberof AgentChatDto
|
|
35
|
+
*/
|
|
36
|
+
mode?: AgentAssistantMode;
|
|
37
|
+
/**
|
|
38
|
+
* ユーザーメッセージ
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof AgentChatDto
|
|
41
|
+
*/
|
|
42
|
+
message: string;
|
|
43
|
+
/**
|
|
44
|
+
* 前回のレスポンスで返された agentId。指定するとその会話を継続する。
|
|
45
|
+
* 省略時は新しい会話を開始する。
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof AgentChatDto
|
|
48
|
+
*/
|
|
49
|
+
agentId?: string;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Check if a given object implements the AgentChatDto interface.
|
|
56
|
+
*/
|
|
57
|
+
export function instanceOfAgentChatDto(value: object): value is AgentChatDto {
|
|
58
|
+
if (!('message' in value) || value['message'] === undefined) return false;
|
|
59
|
+
return true;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export function AgentChatDtoFromJSON(json: any): AgentChatDto {
|
|
63
|
+
return AgentChatDtoFromJSONTyped(json, false);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export function AgentChatDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentChatDto {
|
|
67
|
+
if (json == null) {
|
|
68
|
+
return json;
|
|
69
|
+
}
|
|
70
|
+
return {
|
|
71
|
+
|
|
72
|
+
'mode': json['mode'] == null ? undefined : AgentAssistantModeFromJSON(json['mode']),
|
|
73
|
+
'message': json['message'],
|
|
74
|
+
'agentId': json['agentId'] == null ? undefined : json['agentId'],
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export function AgentChatDtoToJSON(json: any): AgentChatDto {
|
|
79
|
+
return AgentChatDtoToJSONTyped(json, false);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export function AgentChatDtoToJSONTyped(value?: AgentChatDto | null, ignoreDiscriminator: boolean = false): any {
|
|
83
|
+
if (value == null) {
|
|
84
|
+
return value;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
return {
|
|
88
|
+
|
|
89
|
+
'mode': AgentAssistantModeToJSON(value['mode']),
|
|
90
|
+
'message': value['message'],
|
|
91
|
+
'agentId': value['agentId'],
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
export * from './AccountEntity';
|
|
4
|
-
export * from './
|
|
5
|
-
export * from './
|
|
4
|
+
export * from './AgentAssistantAvailabilityEntity';
|
|
5
|
+
export * from './AgentAssistantMode';
|
|
6
|
+
export * from './AgentChatDto';
|
|
6
7
|
export * from './AuthConfigEntity';
|
|
7
|
-
export * from './ChatAiDto';
|
|
8
|
-
export * from './ChatAiResponseEntity';
|
|
9
8
|
export * from './ClientAccessTokenEntity';
|
|
10
9
|
export * from './ClientCredentialsAvailabilityEntity';
|
|
11
10
|
export * from './CorsAllowedOriginEntity';
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export interface AskAiForDataSchemaDto {
|
|
2
|
-
request: string;
|
|
3
|
-
enableExistingDataSchemaReference: boolean;
|
|
4
|
-
}
|
|
5
|
-
export declare function instanceOfAskAiForDataSchemaDto(value: object): value is AskAiForDataSchemaDto;
|
|
6
|
-
export declare function AskAiForDataSchemaDtoFromJSON(json: any): AskAiForDataSchemaDto;
|
|
7
|
-
export declare function AskAiForDataSchemaDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): AskAiForDataSchemaDto;
|
|
8
|
-
export declare function AskAiForDataSchemaDtoToJSON(json: any): AskAiForDataSchemaDto;
|
|
9
|
-
export declare function AskAiForDataSchemaDtoToJSONTyped(value?: AskAiForDataSchemaDto | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
export function instanceOfAskAiForDataSchemaDto(value) {
|
|
2
|
-
if (!('request' in value) || value['request'] === undefined)
|
|
3
|
-
return false;
|
|
4
|
-
if (!('enableExistingDataSchemaReference' in value) || value['enableExistingDataSchemaReference'] === undefined)
|
|
5
|
-
return false;
|
|
6
|
-
return true;
|
|
7
|
-
}
|
|
8
|
-
export function AskAiForDataSchemaDtoFromJSON(json) {
|
|
9
|
-
return AskAiForDataSchemaDtoFromJSONTyped(json, false);
|
|
10
|
-
}
|
|
11
|
-
export function AskAiForDataSchemaDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
12
|
-
if (json == null) {
|
|
13
|
-
return json;
|
|
14
|
-
}
|
|
15
|
-
return {
|
|
16
|
-
'request': json['request'],
|
|
17
|
-
'enableExistingDataSchemaReference': json['enableExistingDataSchemaReference'],
|
|
18
|
-
};
|
|
19
|
-
}
|
|
20
|
-
export function AskAiForDataSchemaDtoToJSON(json) {
|
|
21
|
-
return AskAiForDataSchemaDtoToJSONTyped(json, false);
|
|
22
|
-
}
|
|
23
|
-
export function AskAiForDataSchemaDtoToJSONTyped(value, ignoreDiscriminator = false) {
|
|
24
|
-
if (value == null) {
|
|
25
|
-
return value;
|
|
26
|
-
}
|
|
27
|
-
return {
|
|
28
|
-
'request': value['request'],
|
|
29
|
-
'enableExistingDataSchemaReference': value['enableExistingDataSchemaReference'],
|
|
30
|
-
};
|
|
31
|
-
}
|
|
32
|
-
//# sourceMappingURL=AskAiForDataSchemaDto.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AskAiForDataSchemaDto.js","sourceRoot":"","sources":["../../../../src/client/models/AskAiForDataSchemaDto.ts"],"names":[],"mappings":"AAyCA,MAAM,UAAU,+BAA+B,CAAC,KAAa;IACzD,IAAI,CAAC,CAAC,SAAS,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,SAAS,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAC1E,IAAI,CAAC,CAAC,mCAAmC,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,mCAAmC,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAC9H,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,6BAA6B,CAAC,IAAS;IACnD,OAAO,kCAAkC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC3D,CAAC;AAED,MAAM,UAAU,kCAAkC,CAAC,IAAS,EAAE,mBAA4B;IACtF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC;QAC1B,mCAAmC,EAAE,IAAI,CAAC,mCAAmC,CAAC;KACjF,CAAC;AACN,CAAC;AAED,MAAM,UAAU,2BAA2B,CAAC,IAAS;IACjD,OAAO,gCAAgC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACzD,CAAC;AAED,MAAM,UAAU,gCAAgC,CAAC,KAAoC,EAAE,sBAA+B,KAAK;IACvH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC;QAC3B,mCAAmC,EAAE,KAAK,CAAC,mCAAmC,CAAC;KAClF,CAAC;AACN,CAAC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export interface AskAiForDefintionDto {
|
|
2
|
-
request: string;
|
|
3
|
-
}
|
|
4
|
-
export declare function instanceOfAskAiForDefintionDto(value: object): value is AskAiForDefintionDto;
|
|
5
|
-
export declare function AskAiForDefintionDtoFromJSON(json: any): AskAiForDefintionDto;
|
|
6
|
-
export declare function AskAiForDefintionDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): AskAiForDefintionDto;
|
|
7
|
-
export declare function AskAiForDefintionDtoToJSON(json: any): AskAiForDefintionDto;
|
|
8
|
-
export declare function AskAiForDefintionDtoToJSONTyped(value?: AskAiForDefintionDto | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
export function instanceOfAskAiForDefintionDto(value) {
|
|
2
|
-
if (!('request' in value) || value['request'] === undefined)
|
|
3
|
-
return false;
|
|
4
|
-
return true;
|
|
5
|
-
}
|
|
6
|
-
export function AskAiForDefintionDtoFromJSON(json) {
|
|
7
|
-
return AskAiForDefintionDtoFromJSONTyped(json, false);
|
|
8
|
-
}
|
|
9
|
-
export function AskAiForDefintionDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
10
|
-
if (json == null) {
|
|
11
|
-
return json;
|
|
12
|
-
}
|
|
13
|
-
return {
|
|
14
|
-
'request': json['request'],
|
|
15
|
-
};
|
|
16
|
-
}
|
|
17
|
-
export function AskAiForDefintionDtoToJSON(json) {
|
|
18
|
-
return AskAiForDefintionDtoToJSONTyped(json, false);
|
|
19
|
-
}
|
|
20
|
-
export function AskAiForDefintionDtoToJSONTyped(value, ignoreDiscriminator = false) {
|
|
21
|
-
if (value == null) {
|
|
22
|
-
return value;
|
|
23
|
-
}
|
|
24
|
-
return {
|
|
25
|
-
'request': value['request'],
|
|
26
|
-
};
|
|
27
|
-
}
|
|
28
|
-
//# sourceMappingURL=AskAiForDefintionDto.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"AskAiForDefintionDto.js","sourceRoot":"","sources":["../../../../src/client/models/AskAiForDefintionDto.ts"],"names":[],"mappings":"AAgCA,MAAM,UAAU,8BAA8B,CAAC,KAAa;IACxD,IAAI,CAAC,CAAC,SAAS,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,SAAS,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAC1E,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,4BAA4B,CAAC,IAAS;IAClD,OAAO,iCAAiC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC1D,CAAC;AAED,MAAM,UAAU,iCAAiC,CAAC,IAAS,EAAE,mBAA4B;IACrF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC;KAC7B,CAAC;AACN,CAAC;AAED,MAAM,UAAU,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAED,MAAM,UAAU,+BAA+B,CAAC,KAAmC,EAAE,sBAA+B,KAAK;IACrH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC;KAC9B,CAAC;AACN,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export interface ChatAiDto {
|
|
2
|
-
chatId: string;
|
|
3
|
-
request: string;
|
|
4
|
-
}
|
|
5
|
-
export declare function instanceOfChatAiDto(value: object): value is ChatAiDto;
|
|
6
|
-
export declare function ChatAiDtoFromJSON(json: any): ChatAiDto;
|
|
7
|
-
export declare function ChatAiDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatAiDto;
|
|
8
|
-
export declare function ChatAiDtoToJSON(json: any): ChatAiDto;
|
|
9
|
-
export declare function ChatAiDtoToJSONTyped(value?: ChatAiDto | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
export function instanceOfChatAiDto(value) {
|
|
2
|
-
if (!('chatId' in value) || value['chatId'] === undefined)
|
|
3
|
-
return false;
|
|
4
|
-
if (!('request' in value) || value['request'] === undefined)
|
|
5
|
-
return false;
|
|
6
|
-
return true;
|
|
7
|
-
}
|
|
8
|
-
export function ChatAiDtoFromJSON(json) {
|
|
9
|
-
return ChatAiDtoFromJSONTyped(json, false);
|
|
10
|
-
}
|
|
11
|
-
export function ChatAiDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
12
|
-
if (json == null) {
|
|
13
|
-
return json;
|
|
14
|
-
}
|
|
15
|
-
return {
|
|
16
|
-
'chatId': json['chatId'],
|
|
17
|
-
'request': json['request'],
|
|
18
|
-
};
|
|
19
|
-
}
|
|
20
|
-
export function ChatAiDtoToJSON(json) {
|
|
21
|
-
return ChatAiDtoToJSONTyped(json, false);
|
|
22
|
-
}
|
|
23
|
-
export function ChatAiDtoToJSONTyped(value, ignoreDiscriminator = false) {
|
|
24
|
-
if (value == null) {
|
|
25
|
-
return value;
|
|
26
|
-
}
|
|
27
|
-
return {
|
|
28
|
-
'chatId': value['chatId'],
|
|
29
|
-
'request': value['request'],
|
|
30
|
-
};
|
|
31
|
-
}
|
|
32
|
-
//# sourceMappingURL=ChatAiDto.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ChatAiDto.js","sourceRoot":"","sources":["../../../../src/client/models/ChatAiDto.ts"],"names":[],"mappings":"AAsCA,MAAM,UAAU,mBAAmB,CAAC,KAAa;IAC7C,IAAI,CAAC,CAAC,QAAQ,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACxE,IAAI,CAAC,CAAC,SAAS,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,SAAS,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAC1E,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,IAAS;IACvC,OAAO,sBAAsB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC/C,CAAC;AAED,MAAM,UAAU,sBAAsB,CAAC,IAAS,EAAE,mBAA4B;IAC1E,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC;QACxB,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC;KAC7B,CAAC;AACN,CAAC;AAED,MAAM,UAAU,eAAe,CAAC,IAAS;IACrC,OAAO,oBAAoB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC7C,CAAC;AAED,MAAM,UAAU,oBAAoB,CAAC,KAAwB,EAAE,sBAA+B,KAAK;IAC/F,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC;QACzB,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC;KAC9B,CAAC;AACN,CAAC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
export interface ChatAiResponseEntity {
|
|
2
|
-
chatId: string;
|
|
3
|
-
tokens: number;
|
|
4
|
-
message?: string;
|
|
5
|
-
definition?: object;
|
|
6
|
-
dataSchema?: object;
|
|
7
|
-
}
|
|
8
|
-
export declare function instanceOfChatAiResponseEntity(value: object): value is ChatAiResponseEntity;
|
|
9
|
-
export declare function ChatAiResponseEntityFromJSON(json: any): ChatAiResponseEntity;
|
|
10
|
-
export declare function ChatAiResponseEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatAiResponseEntity;
|
|
11
|
-
export declare function ChatAiResponseEntityToJSON(json: any): ChatAiResponseEntity;
|
|
12
|
-
export declare function ChatAiResponseEntityToJSONTyped(value?: ChatAiResponseEntity | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
export function instanceOfChatAiResponseEntity(value) {
|
|
2
|
-
if (!('chatId' in value) || value['chatId'] === undefined)
|
|
3
|
-
return false;
|
|
4
|
-
if (!('tokens' in value) || value['tokens'] === undefined)
|
|
5
|
-
return false;
|
|
6
|
-
return true;
|
|
7
|
-
}
|
|
8
|
-
export function ChatAiResponseEntityFromJSON(json) {
|
|
9
|
-
return ChatAiResponseEntityFromJSONTyped(json, false);
|
|
10
|
-
}
|
|
11
|
-
export function ChatAiResponseEntityFromJSONTyped(json, ignoreDiscriminator) {
|
|
12
|
-
if (json == null) {
|
|
13
|
-
return json;
|
|
14
|
-
}
|
|
15
|
-
return {
|
|
16
|
-
'chatId': json['chatId'],
|
|
17
|
-
'tokens': json['tokens'],
|
|
18
|
-
'message': json['message'] == null ? undefined : json['message'],
|
|
19
|
-
'definition': json['definition'] == null ? undefined : json['definition'],
|
|
20
|
-
'dataSchema': json['dataSchema'] == null ? undefined : json['dataSchema'],
|
|
21
|
-
};
|
|
22
|
-
}
|
|
23
|
-
export function ChatAiResponseEntityToJSON(json) {
|
|
24
|
-
return ChatAiResponseEntityToJSONTyped(json, false);
|
|
25
|
-
}
|
|
26
|
-
export function ChatAiResponseEntityToJSONTyped(value, ignoreDiscriminator = false) {
|
|
27
|
-
if (value == null) {
|
|
28
|
-
return value;
|
|
29
|
-
}
|
|
30
|
-
return {
|
|
31
|
-
'chatId': value['chatId'],
|
|
32
|
-
'tokens': value['tokens'],
|
|
33
|
-
'message': value['message'],
|
|
34
|
-
'definition': value['definition'],
|
|
35
|
-
'dataSchema': value['dataSchema'],
|
|
36
|
-
};
|
|
37
|
-
}
|
|
38
|
-
//# sourceMappingURL=ChatAiResponseEntity.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ChatAiResponseEntity.js","sourceRoot":"","sources":["../../../../src/client/models/ChatAiResponseEntity.ts"],"names":[],"mappings":"AA6DA,MAAM,UAAU,8BAA8B,CAAC,KAAa;IACxD,IAAI,CAAC,CAAC,QAAQ,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACxE,IAAI,CAAC,CAAC,QAAQ,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,QAAQ,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACxE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,4BAA4B,CAAC,IAAS;IAClD,OAAO,iCAAiC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC1D,CAAC;AAED,MAAM,UAAU,iCAAiC,CAAC,IAAS,EAAE,mBAA4B;IACrF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC;QACxB,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC;QACxB,SAAS,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC;QAChE,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC;QACzE,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC;KAC5E,CAAC;AACN,CAAC;AAED,MAAM,UAAU,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAED,MAAM,UAAU,+BAA+B,CAAC,KAAmC,EAAE,sBAA+B,KAAK;IACrH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC;QACzB,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC;QACzB,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC;QAC3B,YAAY,EAAE,KAAK,CAAC,YAAY,CAAC;QACjC,YAAY,EAAE,KAAK,CAAC,YAAY,CAAC;KACpC,CAAC;AACN,CAAC"}
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* acomo API docs
|
|
5
|
-
* acomoのAPI仕様書です。
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface AskAiForDataSchemaDto
|
|
20
|
-
*/
|
|
21
|
-
export interface AskAiForDataSchemaDto {
|
|
22
|
-
/**
|
|
23
|
-
* 依頼文
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof AskAiForDataSchemaDto
|
|
26
|
-
*/
|
|
27
|
-
request: string;
|
|
28
|
-
/**
|
|
29
|
-
* 既存のデータスキーマのプロパティを参考にするかどうかを表すオプションです。
|
|
30
|
-
* trueならば、既存の公開済みモデルのデータスキーマのプロパティを最大100件読み取り、生成時に参考情報として使用します。必ず使われるとは限りません。
|
|
31
|
-
* falseならば、ゼロベースで検討します。
|
|
32
|
-
* デフォルトはfalseです。
|
|
33
|
-
* @type {boolean}
|
|
34
|
-
* @memberof AskAiForDataSchemaDto
|
|
35
|
-
*/
|
|
36
|
-
enableExistingDataSchemaReference: boolean;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
/**
|
|
40
|
-
* Check if a given object implements the AskAiForDataSchemaDto interface.
|
|
41
|
-
*/
|
|
42
|
-
export function instanceOfAskAiForDataSchemaDto(value: object): value is AskAiForDataSchemaDto {
|
|
43
|
-
if (!('request' in value) || value['request'] === undefined) return false;
|
|
44
|
-
if (!('enableExistingDataSchemaReference' in value) || value['enableExistingDataSchemaReference'] === undefined) return false;
|
|
45
|
-
return true;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
export function AskAiForDataSchemaDtoFromJSON(json: any): AskAiForDataSchemaDto {
|
|
49
|
-
return AskAiForDataSchemaDtoFromJSONTyped(json, false);
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
export function AskAiForDataSchemaDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): AskAiForDataSchemaDto {
|
|
53
|
-
if (json == null) {
|
|
54
|
-
return json;
|
|
55
|
-
}
|
|
56
|
-
return {
|
|
57
|
-
|
|
58
|
-
'request': json['request'],
|
|
59
|
-
'enableExistingDataSchemaReference': json['enableExistingDataSchemaReference'],
|
|
60
|
-
};
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
export function AskAiForDataSchemaDtoToJSON(json: any): AskAiForDataSchemaDto {
|
|
64
|
-
return AskAiForDataSchemaDtoToJSONTyped(json, false);
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
export function AskAiForDataSchemaDtoToJSONTyped(value?: AskAiForDataSchemaDto | null, ignoreDiscriminator: boolean = false): any {
|
|
68
|
-
if (value == null) {
|
|
69
|
-
return value;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
return {
|
|
73
|
-
|
|
74
|
-
'request': value['request'],
|
|
75
|
-
'enableExistingDataSchemaReference': value['enableExistingDataSchemaReference'],
|
|
76
|
-
};
|
|
77
|
-
}
|
|
78
|
-
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* acomo API docs
|
|
5
|
-
* acomoのAPI仕様書です。
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface AskAiForDefintionDto
|
|
20
|
-
*/
|
|
21
|
-
export interface AskAiForDefintionDto {
|
|
22
|
-
/**
|
|
23
|
-
* 依頼文
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof AskAiForDefintionDto
|
|
26
|
-
*/
|
|
27
|
-
request: string;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* Check if a given object implements the AskAiForDefintionDto interface.
|
|
32
|
-
*/
|
|
33
|
-
export function instanceOfAskAiForDefintionDto(value: object): value is AskAiForDefintionDto {
|
|
34
|
-
if (!('request' in value) || value['request'] === undefined) return false;
|
|
35
|
-
return true;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export function AskAiForDefintionDtoFromJSON(json: any): AskAiForDefintionDto {
|
|
39
|
-
return AskAiForDefintionDtoFromJSONTyped(json, false);
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export function AskAiForDefintionDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): AskAiForDefintionDto {
|
|
43
|
-
if (json == null) {
|
|
44
|
-
return json;
|
|
45
|
-
}
|
|
46
|
-
return {
|
|
47
|
-
|
|
48
|
-
'request': json['request'],
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
export function AskAiForDefintionDtoToJSON(json: any): AskAiForDefintionDto {
|
|
53
|
-
return AskAiForDefintionDtoToJSONTyped(json, false);
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
export function AskAiForDefintionDtoToJSONTyped(value?: AskAiForDefintionDto | null, ignoreDiscriminator: boolean = false): any {
|
|
57
|
-
if (value == null) {
|
|
58
|
-
return value;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
return {
|
|
62
|
-
|
|
63
|
-
'request': value['request'],
|
|
64
|
-
};
|
|
65
|
-
}
|
|
66
|
-
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* acomo API docs
|
|
5
|
-
* acomoのAPI仕様書です。
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface ChatAiDto
|
|
20
|
-
*/
|
|
21
|
-
export interface ChatAiDto {
|
|
22
|
-
/**
|
|
23
|
-
* チャットID
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof ChatAiDto
|
|
26
|
-
*/
|
|
27
|
-
chatId: string;
|
|
28
|
-
/**
|
|
29
|
-
* 依頼文
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @memberof ChatAiDto
|
|
32
|
-
*/
|
|
33
|
-
request: string;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* Check if a given object implements the ChatAiDto interface.
|
|
38
|
-
*/
|
|
39
|
-
export function instanceOfChatAiDto(value: object): value is ChatAiDto {
|
|
40
|
-
if (!('chatId' in value) || value['chatId'] === undefined) return false;
|
|
41
|
-
if (!('request' in value) || value['request'] === undefined) return false;
|
|
42
|
-
return true;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export function ChatAiDtoFromJSON(json: any): ChatAiDto {
|
|
46
|
-
return ChatAiDtoFromJSONTyped(json, false);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export function ChatAiDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ChatAiDto {
|
|
50
|
-
if (json == null) {
|
|
51
|
-
return json;
|
|
52
|
-
}
|
|
53
|
-
return {
|
|
54
|
-
|
|
55
|
-
'chatId': json['chatId'],
|
|
56
|
-
'request': json['request'],
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export function ChatAiDtoToJSON(json: any): ChatAiDto {
|
|
61
|
-
return ChatAiDtoToJSONTyped(json, false);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export function ChatAiDtoToJSONTyped(value?: ChatAiDto | null, ignoreDiscriminator: boolean = false): any {
|
|
65
|
-
if (value == null) {
|
|
66
|
-
return value;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
return {
|
|
70
|
-
|
|
71
|
-
'chatId': value['chatId'],
|
|
72
|
-
'request': value['request'],
|
|
73
|
-
};
|
|
74
|
-
}
|
|
75
|
-
|