tuix-mcp-host-client 0.0.76 → 0.0.78
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/docs/ApplicationDTO.md +2 -0
- package/docs/ApplicationWithApplicationCountDTO.md +2 -0
- package/docs/CreateApplicationDTO.md +2 -0
- package/docs/UpdateApplicationDTO.md +2 -0
- package/models/ApplicationDTO.js +2 -0
- package/models/ApplicationDTO.js.map +1 -1
- package/models/ApplicationDTO.ts +8 -0
- package/models/ApplicationWithApplicationCountDTO.js +2 -0
- package/models/ApplicationWithApplicationCountDTO.js.map +1 -1
- package/models/ApplicationWithApplicationCountDTO.ts +8 -0
- package/models/CreateApplicationDTO.js +2 -0
- package/models/CreateApplicationDTO.js.map +1 -1
- package/models/CreateApplicationDTO.ts +8 -0
- package/models/UpdateApplicationDTO.js +2 -0
- package/models/UpdateApplicationDTO.js.map +1 -1
- package/models/UpdateApplicationDTO.ts +8 -0
- package/package.json +1 -1
package/docs/ApplicationDTO.md
CHANGED
|
@@ -10,6 +10,7 @@ Name | Type
|
|
|
10
10
|
`createdAt` | string
|
|
11
11
|
`description` | string
|
|
12
12
|
`id` | string
|
|
13
|
+
`initialMessage` | string
|
|
13
14
|
`name` | string
|
|
14
15
|
`ragApiKey` | string
|
|
15
16
|
`resourceGroupId` | string
|
|
@@ -26,6 +27,7 @@ const example = {
|
|
|
26
27
|
"createdAt": null,
|
|
27
28
|
"description": null,
|
|
28
29
|
"id": null,
|
|
30
|
+
"initialMessage": null,
|
|
29
31
|
"name": null,
|
|
30
32
|
"ragApiKey": null,
|
|
31
33
|
"resourceGroupId": null,
|
|
@@ -10,6 +10,7 @@ Name | Type
|
|
|
10
10
|
`createdAt` | string
|
|
11
11
|
`description` | string
|
|
12
12
|
`id` | string
|
|
13
|
+
`initialMessage` | string
|
|
13
14
|
`mcpServersCount` | number
|
|
14
15
|
`name` | string
|
|
15
16
|
`ragApiKey` | string
|
|
@@ -27,6 +28,7 @@ const example = {
|
|
|
27
28
|
"createdAt": null,
|
|
28
29
|
"description": null,
|
|
29
30
|
"id": null,
|
|
31
|
+
"initialMessage": null,
|
|
30
32
|
"mcpServersCount": null,
|
|
31
33
|
"name": null,
|
|
32
34
|
"ragApiKey": null,
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
Name | Type
|
|
8
8
|
------------ | -------------
|
|
9
9
|
`description` | string
|
|
10
|
+
`initialMessage` | string
|
|
10
11
|
`name` | string
|
|
11
12
|
`ragApiKey` | string
|
|
12
13
|
`resourceGroupId` | string
|
|
@@ -20,6 +21,7 @@ import type { CreateApplicationDTO } from ''
|
|
|
20
21
|
// TODO: Update the object below with actual values
|
|
21
22
|
const example = {
|
|
22
23
|
"description": application description,
|
|
24
|
+
"initialMessage": Welcome! How can I help you today?,
|
|
23
25
|
"name": Alpha,
|
|
24
26
|
"ragApiKey": <your-rag-api-key>,
|
|
25
27
|
"resourceGroupId": 123e4567-e89b-12d3-a456-426614174000,
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
Name | Type
|
|
8
8
|
------------ | -------------
|
|
9
9
|
`description` | string
|
|
10
|
+
`initialMessage` | string
|
|
10
11
|
`name` | string
|
|
11
12
|
`ragApiKey` | string
|
|
12
13
|
`resourceGroupId` | string
|
|
@@ -20,6 +21,7 @@ import type { UpdateApplicationDTO } from ''
|
|
|
20
21
|
// TODO: Update the object below with actual values
|
|
21
22
|
const example = {
|
|
22
23
|
"description": null,
|
|
24
|
+
"initialMessage": null,
|
|
23
25
|
"name": null,
|
|
24
26
|
"ragApiKey": null,
|
|
25
27
|
"resourceGroupId": null,
|
package/models/ApplicationDTO.js
CHANGED
|
@@ -36,6 +36,7 @@ function ApplicationDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
36
36
|
'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
|
|
37
37
|
'description': json['description'] == null ? undefined : json['description'],
|
|
38
38
|
'id': json['id'] == null ? undefined : json['id'],
|
|
39
|
+
'initialMessage': json['initialMessage'] == null ? undefined : json['initialMessage'],
|
|
39
40
|
'name': json['name'] == null ? undefined : json['name'],
|
|
40
41
|
'ragApiKey': json['ragApiKey'] == null ? undefined : json['ragApiKey'],
|
|
41
42
|
'resourceGroupId': json['resourceGroupId'] == null ? undefined : json['resourceGroupId'],
|
|
@@ -54,6 +55,7 @@ function ApplicationDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
54
55
|
'createdAt': value['createdAt'],
|
|
55
56
|
'description': value['description'],
|
|
56
57
|
'id': value['id'],
|
|
58
|
+
'initialMessage': value['initialMessage'],
|
|
57
59
|
'name': value['name'],
|
|
58
60
|
'ragApiKey': value['ragApiKey'],
|
|
59
61
|
'resourceGroupId': value['resourceGroupId'],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ApplicationDTO.js","sourceRoot":"","sources":["ApplicationDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;
|
|
1
|
+
{"version":3,"file":"ApplicationDTO.js","sourceRoot":"","sources":["ApplicationDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAoEH,4DAEC;AAED,wDAEC;AAED,kEAgBC;AAED,oDAEC;AAED,8DAiBC;AAlDD;;GAEG;AACH,SAAgB,wBAAwB,CAAC,KAAa;IAClD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,sBAAsB,CAAC,IAAS;IAC5C,OAAO,2BAA2B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACpD,CAAC;AAED,SAAgB,2BAA2B,CAAC,IAAS,EAAE,mBAA4B;IAC/E,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;QAC5E,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;QACjD,gBAAgB,EAAE,IAAI,CAAC,gBAAgB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC;QACrF,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACvD,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,iBAAiB,EAAE,IAAI,CAAC,iBAAiB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC;QACxF,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC;KAClF,CAAC;AACN,CAAC;AAED,SAAgB,oBAAoB,CAAC,IAAS;IAC1C,OAAO,yBAAyB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAClD,CAAC;AAED,SAAgB,yBAAyB,CAAC,KAA6B,EAAE,sBAA+B,KAAK;IACzG,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,gBAAgB,EAAE,KAAK,CAAC,gBAAgB,CAAC;QACzC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,iBAAiB,EAAE,KAAK,CAAC,iBAAiB,CAAC;QAC3C,cAAc,EAAE,KAAK,CAAC,cAAc,CAAC;KACxC,CAAC;AACN,CAAC"}
|
package/models/ApplicationDTO.ts
CHANGED
|
@@ -43,6 +43,12 @@ export interface ApplicationDTO {
|
|
|
43
43
|
* @memberof ApplicationDTO
|
|
44
44
|
*/
|
|
45
45
|
id?: string;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof ApplicationDTO
|
|
50
|
+
*/
|
|
51
|
+
initialMessage?: string;
|
|
46
52
|
/**
|
|
47
53
|
*
|
|
48
54
|
* @type {string}
|
|
@@ -90,6 +96,7 @@ export function ApplicationDTOFromJSONTyped(json: any, ignoreDiscriminator: bool
|
|
|
90
96
|
'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
|
|
91
97
|
'description': json['description'] == null ? undefined : json['description'],
|
|
92
98
|
'id': json['id'] == null ? undefined : json['id'],
|
|
99
|
+
'initialMessage': json['initialMessage'] == null ? undefined : json['initialMessage'],
|
|
93
100
|
'name': json['name'] == null ? undefined : json['name'],
|
|
94
101
|
'ragApiKey': json['ragApiKey'] == null ? undefined : json['ragApiKey'],
|
|
95
102
|
'resourceGroupId': json['resourceGroupId'] == null ? undefined : json['resourceGroupId'],
|
|
@@ -112,6 +119,7 @@ export function ApplicationDTOToJSONTyped(value?: ApplicationDTO | null, ignoreD
|
|
|
112
119
|
'createdAt': value['createdAt'],
|
|
113
120
|
'description': value['description'],
|
|
114
121
|
'id': value['id'],
|
|
122
|
+
'initialMessage': value['initialMessage'],
|
|
115
123
|
'name': value['name'],
|
|
116
124
|
'ragApiKey': value['ragApiKey'],
|
|
117
125
|
'resourceGroupId': value['resourceGroupId'],
|
|
@@ -36,6 +36,7 @@ function ApplicationWithApplicationCountDTOFromJSONTyped(json, ignoreDiscriminat
|
|
|
36
36
|
'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
|
|
37
37
|
'description': json['description'] == null ? undefined : json['description'],
|
|
38
38
|
'id': json['id'] == null ? undefined : json['id'],
|
|
39
|
+
'initialMessage': json['initialMessage'] == null ? undefined : json['initialMessage'],
|
|
39
40
|
'mcpServersCount': json['mcpServersCount'] == null ? undefined : json['mcpServersCount'],
|
|
40
41
|
'name': json['name'] == null ? undefined : json['name'],
|
|
41
42
|
'ragApiKey': json['ragApiKey'] == null ? undefined : json['ragApiKey'],
|
|
@@ -55,6 +56,7 @@ function ApplicationWithApplicationCountDTOToJSONTyped(value, ignoreDiscriminato
|
|
|
55
56
|
'createdAt': value['createdAt'],
|
|
56
57
|
'description': value['description'],
|
|
57
58
|
'id': value['id'],
|
|
59
|
+
'initialMessage': value['initialMessage'],
|
|
58
60
|
'mcpServersCount': value['mcpServersCount'],
|
|
59
61
|
'name': value['name'],
|
|
60
62
|
'ragApiKey': value['ragApiKey'],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ApplicationWithApplicationCountDTO.js","sourceRoot":"","sources":["ApplicationWithApplicationCountDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;
|
|
1
|
+
{"version":3,"file":"ApplicationWithApplicationCountDTO.js","sourceRoot":"","sources":["ApplicationWithApplicationCountDTO.ts"],"names":[],"mappings":"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"}
|
|
@@ -43,6 +43,12 @@ export interface ApplicationWithApplicationCountDTO {
|
|
|
43
43
|
* @memberof ApplicationWithApplicationCountDTO
|
|
44
44
|
*/
|
|
45
45
|
id?: string;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof ApplicationWithApplicationCountDTO
|
|
50
|
+
*/
|
|
51
|
+
initialMessage?: string;
|
|
46
52
|
/**
|
|
47
53
|
*
|
|
48
54
|
* @type {number}
|
|
@@ -96,6 +102,7 @@ export function ApplicationWithApplicationCountDTOFromJSONTyped(json: any, ignor
|
|
|
96
102
|
'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
|
|
97
103
|
'description': json['description'] == null ? undefined : json['description'],
|
|
98
104
|
'id': json['id'] == null ? undefined : json['id'],
|
|
105
|
+
'initialMessage': json['initialMessage'] == null ? undefined : json['initialMessage'],
|
|
99
106
|
'mcpServersCount': json['mcpServersCount'] == null ? undefined : json['mcpServersCount'],
|
|
100
107
|
'name': json['name'] == null ? undefined : json['name'],
|
|
101
108
|
'ragApiKey': json['ragApiKey'] == null ? undefined : json['ragApiKey'],
|
|
@@ -119,6 +126,7 @@ export function ApplicationWithApplicationCountDTOToJSONTyped(value?: Applicatio
|
|
|
119
126
|
'createdAt': value['createdAt'],
|
|
120
127
|
'description': value['description'],
|
|
121
128
|
'id': value['id'],
|
|
129
|
+
'initialMessage': value['initialMessage'],
|
|
122
130
|
'mcpServersCount': value['mcpServersCount'],
|
|
123
131
|
'name': value['name'],
|
|
124
132
|
'ragApiKey': value['ragApiKey'],
|
|
@@ -35,6 +35,7 @@ function CreateApplicationDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
35
35
|
}
|
|
36
36
|
return {
|
|
37
37
|
'description': json['description'] == null ? undefined : json['description'],
|
|
38
|
+
'initialMessage': json['initialMessage'] == null ? undefined : json['initialMessage'],
|
|
38
39
|
'name': json['name'],
|
|
39
40
|
'ragApiKey': json['ragApiKey'] == null ? undefined : json['ragApiKey'],
|
|
40
41
|
'resourceGroupId': json['resourceGroupId'] == null ? undefined : json['resourceGroupId'],
|
|
@@ -50,6 +51,7 @@ function CreateApplicationDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
50
51
|
}
|
|
51
52
|
return {
|
|
52
53
|
'description': value['description'],
|
|
54
|
+
'initialMessage': value['initialMessage'],
|
|
53
55
|
'name': value['name'],
|
|
54
56
|
'ragApiKey': value['ragApiKey'],
|
|
55
57
|
'resourceGroupId': value['resourceGroupId'],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreateApplicationDTO.js","sourceRoot":"","sources":["CreateApplicationDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;
|
|
1
|
+
{"version":3,"file":"CreateApplicationDTO.js","sourceRoot":"","sources":["CreateApplicationDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAkDH,wEAGC;AAED,oEAEC;AAED,8EAaC;AAED,gEAEC;AAED,0EAcC;AA7CD;;GAEG;AACH,SAAgB,8BAA8B,CAAC,KAAa;IACxD,IAAI,CAAC,CAAC,MAAM,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,MAAM,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IACpE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,4BAA4B,CAAC,IAAS;IAClD,OAAO,iCAAiC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC1D,CAAC;AAED,SAAgB,iCAAiC,CAAC,IAAS,EAAE,mBAA4B;IACrF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;QAC5E,gBAAgB,EAAE,IAAI,CAAC,gBAAgB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC;QACrF,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC;QACpB,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,iBAAiB,EAAE,IAAI,CAAC,iBAAiB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC;QACxF,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC;KAClF,CAAC;AACN,CAAC;AAED,SAAgB,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAED,SAAgB,+BAA+B,CAAC,KAAmC,EAAE,sBAA+B,KAAK;IACrH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,gBAAgB,EAAE,KAAK,CAAC,gBAAgB,CAAC;QACzC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,iBAAiB,EAAE,KAAK,CAAC,iBAAiB,CAAC;QAC3C,cAAc,EAAE,KAAK,CAAC,cAAc,CAAC;KACxC,CAAC;AACN,CAAC"}
|
|
@@ -25,6 +25,12 @@ export interface CreateApplicationDTO {
|
|
|
25
25
|
* @memberof CreateApplicationDTO
|
|
26
26
|
*/
|
|
27
27
|
description?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof CreateApplicationDTO
|
|
32
|
+
*/
|
|
33
|
+
initialMessage?: string;
|
|
28
34
|
/**
|
|
29
35
|
*
|
|
30
36
|
* @type {string}
|
|
@@ -70,6 +76,7 @@ export function CreateApplicationDTOFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
70
76
|
return {
|
|
71
77
|
|
|
72
78
|
'description': json['description'] == null ? undefined : json['description'],
|
|
79
|
+
'initialMessage': json['initialMessage'] == null ? undefined : json['initialMessage'],
|
|
73
80
|
'name': json['name'],
|
|
74
81
|
'ragApiKey': json['ragApiKey'] == null ? undefined : json['ragApiKey'],
|
|
75
82
|
'resourceGroupId': json['resourceGroupId'] == null ? undefined : json['resourceGroupId'],
|
|
@@ -89,6 +96,7 @@ export function CreateApplicationDTOToJSONTyped(value?: CreateApplicationDTO | n
|
|
|
89
96
|
return {
|
|
90
97
|
|
|
91
98
|
'description': value['description'],
|
|
99
|
+
'initialMessage': value['initialMessage'],
|
|
92
100
|
'name': value['name'],
|
|
93
101
|
'ragApiKey': value['ragApiKey'],
|
|
94
102
|
'resourceGroupId': value['resourceGroupId'],
|
|
@@ -33,6 +33,7 @@ function UpdateApplicationDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
33
33
|
}
|
|
34
34
|
return {
|
|
35
35
|
'description': json['description'] == null ? undefined : json['description'],
|
|
36
|
+
'initialMessage': json['initialMessage'] == null ? undefined : json['initialMessage'],
|
|
36
37
|
'name': json['name'] == null ? undefined : json['name'],
|
|
37
38
|
'ragApiKey': json['ragApiKey'] == null ? undefined : json['ragApiKey'],
|
|
38
39
|
'resourceGroupId': json['resourceGroupId'] == null ? undefined : json['resourceGroupId'],
|
|
@@ -48,6 +49,7 @@ function UpdateApplicationDTOToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
48
49
|
}
|
|
49
50
|
return {
|
|
50
51
|
'description': value['description'],
|
|
52
|
+
'initialMessage': value['initialMessage'],
|
|
51
53
|
'name': value['name'],
|
|
52
54
|
'ragApiKey': value['ragApiKey'],
|
|
53
55
|
'resourceGroupId': value['resourceGroupId'],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UpdateApplicationDTO.js","sourceRoot":"","sources":["UpdateApplicationDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;
|
|
1
|
+
{"version":3,"file":"UpdateApplicationDTO.js","sourceRoot":"","sources":["UpdateApplicationDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAkDH,wEAEC;AAED,oEAEC;AAED,8EAaC;AAED,gEAEC;AAED,0EAcC;AA5CD;;GAEG;AACH,SAAgB,8BAA8B,CAAC,KAAa;IACxD,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,4BAA4B,CAAC,IAAS;IAClD,OAAO,iCAAiC,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAC1D,CAAC;AAED,SAAgB,iCAAiC,CAAC,IAAS,EAAE,mBAA4B;IACrF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,aAAa,EAAE,IAAI,CAAC,aAAa,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC;QAC5E,gBAAgB,EAAE,IAAI,CAAC,gBAAgB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC;QACrF,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC;QACvD,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,iBAAiB,EAAE,IAAI,CAAC,iBAAiB,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC;QACxF,cAAc,EAAE,IAAI,CAAC,cAAc,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC;KAClF,CAAC;AACN,CAAC;AAED,SAAgB,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAED,SAAgB,+BAA+B,CAAC,KAAmC,EAAE,sBAA+B,KAAK;IACrH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,aAAa,EAAE,KAAK,CAAC,aAAa,CAAC;QACnC,gBAAgB,EAAE,KAAK,CAAC,gBAAgB,CAAC;QACzC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC;QACrB,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,iBAAiB,EAAE,KAAK,CAAC,iBAAiB,CAAC;QAC3C,cAAc,EAAE,KAAK,CAAC,cAAc,CAAC;KACxC,CAAC;AACN,CAAC"}
|
|
@@ -25,6 +25,12 @@ export interface UpdateApplicationDTO {
|
|
|
25
25
|
* @memberof UpdateApplicationDTO
|
|
26
26
|
*/
|
|
27
27
|
description?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof UpdateApplicationDTO
|
|
32
|
+
*/
|
|
33
|
+
initialMessage?: string;
|
|
28
34
|
/**
|
|
29
35
|
*
|
|
30
36
|
* @type {string}
|
|
@@ -69,6 +75,7 @@ export function UpdateApplicationDTOFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
69
75
|
return {
|
|
70
76
|
|
|
71
77
|
'description': json['description'] == null ? undefined : json['description'],
|
|
78
|
+
'initialMessage': json['initialMessage'] == null ? undefined : json['initialMessage'],
|
|
72
79
|
'name': json['name'] == null ? undefined : json['name'],
|
|
73
80
|
'ragApiKey': json['ragApiKey'] == null ? undefined : json['ragApiKey'],
|
|
74
81
|
'resourceGroupId': json['resourceGroupId'] == null ? undefined : json['resourceGroupId'],
|
|
@@ -88,6 +95,7 @@ export function UpdateApplicationDTOToJSONTyped(value?: UpdateApplicationDTO | n
|
|
|
88
95
|
return {
|
|
89
96
|
|
|
90
97
|
'description': value['description'],
|
|
98
|
+
'initialMessage': value['initialMessage'],
|
|
91
99
|
'name': value['name'],
|
|
92
100
|
'ragApiKey': value['ragApiKey'],
|
|
93
101
|
'resourceGroupId': value['resourceGroupId'],
|