tuix-mcp-host-client 0.0.61 → 0.0.62
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/models/MCPServerDTO.js
CHANGED
|
@@ -22,6 +22,8 @@ exports.MCPServerDTOToJSONTyped = MCPServerDTOToJSONTyped;
|
|
|
22
22
|
* Check if a given object implements the MCPServerDTO interface.
|
|
23
23
|
*/
|
|
24
24
|
function instanceOfMCPServerDTO(value) {
|
|
25
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
26
|
+
return false;
|
|
25
27
|
return true;
|
|
26
28
|
}
|
|
27
29
|
function MCPServerDTOFromJSON(json) {
|
|
@@ -32,7 +34,7 @@ function MCPServerDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
32
34
|
return json;
|
|
33
35
|
}
|
|
34
36
|
return {
|
|
35
|
-
'id': json['id']
|
|
37
|
+
'id': json['id'],
|
|
36
38
|
'transport': json['transport'] == null ? undefined : json['transport'],
|
|
37
39
|
'url': json['url'] == null ? undefined : json['url'],
|
|
38
40
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MCPServerDTO.js","sourceRoot":"","sources":["MCPServerDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAgCH,
|
|
1
|
+
{"version":3,"file":"MCPServerDTO.js","sourceRoot":"","sources":["MCPServerDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAgCH,wDAGC;AAED,oDAEC;AAED,8DAUC;AAED,gDAEC;AAED,0DAWC;AAvCD;;GAEG;AACH,SAAgB,sBAAsB,CAAC,KAAa;IAChD,IAAI,CAAC,CAAC,IAAI,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAChE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,oBAAoB,CAAC,IAAS;IAC1C,OAAO,yBAAyB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAClD,CAAC;AAED,SAAgB,yBAAyB,CAAC,IAAS,EAAE,mBAA4B;IAC7E,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC;QAChB,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC;KACvD,CAAC;AACN,CAAC;AAED,SAAgB,kBAAkB,CAAC,IAAS;IACxC,OAAO,uBAAuB,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AAChD,CAAC;AAED,SAAgB,uBAAuB,CAAC,KAA2B,EAAE,sBAA+B,KAAK;IACrG,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC;KACtB,CAAC;AACN,CAAC"}
|
package/models/MCPServerDTO.ts
CHANGED
|
@@ -24,7 +24,7 @@ export interface MCPServerDTO {
|
|
|
24
24
|
* @type {string}
|
|
25
25
|
* @memberof MCPServerDTO
|
|
26
26
|
*/
|
|
27
|
-
id
|
|
27
|
+
id: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
30
|
* @type {string}
|
|
@@ -43,6 +43,7 @@ export interface MCPServerDTO {
|
|
|
43
43
|
* Check if a given object implements the MCPServerDTO interface.
|
|
44
44
|
*/
|
|
45
45
|
export function instanceOfMCPServerDTO(value: object): value is MCPServerDTO {
|
|
46
|
+
if (!('id' in value) || value['id'] === undefined) return false;
|
|
46
47
|
return true;
|
|
47
48
|
}
|
|
48
49
|
|
|
@@ -56,7 +57,7 @@ export function MCPServerDTOFromJSONTyped(json: any, ignoreDiscriminator: boolea
|
|
|
56
57
|
}
|
|
57
58
|
return {
|
|
58
59
|
|
|
59
|
-
'id': json['id']
|
|
60
|
+
'id': json['id'],
|
|
60
61
|
'transport': json['transport'] == null ? undefined : json['transport'],
|
|
61
62
|
'url': json['url'] == null ? undefined : json['url'],
|
|
62
63
|
};
|
|
@@ -22,6 +22,8 @@ exports.MCPServerStatusDTOToJSONTyped = MCPServerStatusDTOToJSONTyped;
|
|
|
22
22
|
* Check if a given object implements the MCPServerStatusDTO interface.
|
|
23
23
|
*/
|
|
24
24
|
function instanceOfMCPServerStatusDTO(value) {
|
|
25
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
26
|
+
return false;
|
|
25
27
|
return true;
|
|
26
28
|
}
|
|
27
29
|
function MCPServerStatusDTOFromJSON(json) {
|
|
@@ -32,7 +34,7 @@ function MCPServerStatusDTOFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
32
34
|
return json;
|
|
33
35
|
}
|
|
34
36
|
return {
|
|
35
|
-
'id': json['id']
|
|
37
|
+
'id': json['id'],
|
|
36
38
|
'status': json['status'] == null ? undefined : json['status'],
|
|
37
39
|
'transport': json['transport'] == null ? undefined : json['transport'],
|
|
38
40
|
'url': json['url'] == null ? undefined : json['url'],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MCPServerStatusDTO.js","sourceRoot":"","sources":["MCPServerStatusDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAsCH,
|
|
1
|
+
{"version":3,"file":"MCPServerStatusDTO.js","sourceRoot":"","sources":["MCPServerStatusDTO.ts"],"names":[],"mappings":";AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;;AAsCH,oEAGC;AAED,gEAEC;AAED,0EAWC;AAED,4DAEC;AAED,sEAYC;AAzCD;;GAEG;AACH,SAAgB,4BAA4B,CAAC,KAAa;IACtD,IAAI,CAAC,CAAC,IAAI,IAAI,KAAK,CAAC,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,SAAS;QAAE,OAAO,KAAK,CAAC;IAChE,OAAO,IAAI,CAAC;AAChB,CAAC;AAED,SAAgB,0BAA0B,CAAC,IAAS;IAChD,OAAO,+BAA+B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACxD,CAAC;AAED,SAAgB,+BAA+B,CAAC,IAAS,EAAE,mBAA4B;IACnF,IAAI,IAAI,IAAI,IAAI,EAAE,CAAC;QACf,OAAO,IAAI,CAAC;IAChB,CAAC;IACD,OAAO;QAEH,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC;QAChB,QAAQ,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC;QAC7D,WAAW,EAAE,IAAI,CAAC,WAAW,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;QACtE,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC;KACvD,CAAC;AACN,CAAC;AAED,SAAgB,wBAAwB,CAAC,IAAS;IAC9C,OAAO,6BAA6B,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;AACtD,CAAC;AAED,SAAgB,6BAA6B,CAAC,KAAiC,EAAE,sBAA+B,KAAK;IACjH,IAAI,KAAK,IAAI,IAAI,EAAE,CAAC;QAChB,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,OAAO;QAEH,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC;QACjB,QAAQ,EAAE,KAAK,CAAC,QAAQ,CAAC;QACzB,WAAW,EAAE,KAAK,CAAC,WAAW,CAAC;QAC/B,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC;KACtB,CAAC;AACN,CAAC"}
|
|
@@ -24,7 +24,7 @@ export interface MCPServerStatusDTO {
|
|
|
24
24
|
* @type {string}
|
|
25
25
|
* @memberof MCPServerStatusDTO
|
|
26
26
|
*/
|
|
27
|
-
id
|
|
27
|
+
id: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
30
|
* @type {string}
|
|
@@ -49,6 +49,7 @@ export interface MCPServerStatusDTO {
|
|
|
49
49
|
* Check if a given object implements the MCPServerStatusDTO interface.
|
|
50
50
|
*/
|
|
51
51
|
export function instanceOfMCPServerStatusDTO(value: object): value is MCPServerStatusDTO {
|
|
52
|
+
if (!('id' in value) || value['id'] === undefined) return false;
|
|
52
53
|
return true;
|
|
53
54
|
}
|
|
54
55
|
|
|
@@ -62,7 +63,7 @@ export function MCPServerStatusDTOFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
62
63
|
}
|
|
63
64
|
return {
|
|
64
65
|
|
|
65
|
-
'id': json['id']
|
|
66
|
+
'id': json['id'],
|
|
66
67
|
'status': json['status'] == null ? undefined : json['status'],
|
|
67
68
|
'transport': json['transport'] == null ? undefined : json['transport'],
|
|
68
69
|
'url': json['url'] == null ? undefined : json['url'],
|