@revengai/sdk 3.110.0 → 3.114.2
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/README.md +15 -0
- package/dist/apis/AnalysesCoreApi.d.ts +6 -0
- package/dist/apis/AnalysesCoreApi.js +243 -0
- package/dist/apis/AnalysesCoreApi.js.map +1 -1
- package/dist/apis/FunctionsCoreApi.d.ts +7 -0
- package/dist/apis/FunctionsCoreApi.js +223 -0
- package/dist/apis/FunctionsCoreApi.js.map +1 -1
- package/dist/models/AnalysisRecordBody.d.ts +41 -0
- package/dist/models/AnalysisRecordBody.js +114 -0
- package/dist/models/AnalysisRecordBody.js.map +1 -0
- package/dist/models/AnalysisTagBody.d.ts +22 -0
- package/dist/models/AnalysisTagBody.js +35 -0
- package/dist/models/AnalysisTagBody.js.map +1 -0
- package/dist/models/AutoUnstripStatusOutputBody.d.ts +28 -0
- package/dist/models/AutoUnstripStatusOutputBody.js +32 -0
- package/dist/models/AutoUnstripStatusOutputBody.js.map +1 -0
- package/dist/models/CanonicalName.d.ts +21 -0
- package/dist/models/CanonicalName.js +29 -0
- package/dist/models/CanonicalName.js.map +1 -0
- package/dist/models/CanonicalizeNamesInputBody.d.ts +20 -0
- package/dist/models/CanonicalizeNamesInputBody.js +23 -0
- package/dist/models/CanonicalizeNamesInputBody.js.map +1 -0
- package/dist/models/CanonicalizeNamesOutputBody.d.ts +21 -0
- package/dist/models/CanonicalizeNamesOutputBody.js +23 -0
- package/dist/models/CanonicalizeNamesOutputBody.js.map +1 -0
- package/dist/models/EventTOOLCALLPROGRESS.d.ts +28 -0
- package/dist/models/EventTOOLCALLPROGRESS.js +46 -0
- package/dist/models/EventTOOLCALLPROGRESS.js.map +1 -0
- package/dist/models/IndirectCallSite.d.ts +24 -0
- package/dist/models/IndirectCallSite.js +47 -0
- package/dist/models/IndirectCallSite.js.map +1 -0
- package/dist/models/IndirectCallSitesOutputBody.d.ts +22 -0
- package/dist/models/IndirectCallSitesOutputBody.js +29 -0
- package/dist/models/IndirectCallSitesOutputBody.js.map +1 -0
- package/dist/models/ListAnalysesOutputBody.d.ts +23 -0
- package/dist/models/ListAnalysesOutputBody.js +35 -0
- package/dist/models/ListAnalysesOutputBody.js.map +1 -0
- package/dist/models/ObjectSerializer.d.ts +11 -0
- package/dist/models/ObjectSerializer.js +36 -0
- package/dist/models/ObjectSerializer.js.map +1 -1
- package/dist/models/SseEventToolCallProgressData.d.ts +23 -0
- package/dist/models/SseEventToolCallProgressData.js +41 -0
- package/dist/models/SseEventToolCallProgressData.js.map +1 -0
- package/dist/models/StreamEvents200ResponseInner.d.ts +2 -1
- package/dist/models/StreamEvents200ResponseInner.js.map +1 -1
- package/dist/models/all.d.ts +11 -0
- package/dist/models/all.js +11 -0
- package/dist/models/all.js.map +1 -1
- package/dist/types/ObjectParamAPI.d.ts +34 -0
- package/dist/types/ObjectParamAPI.js +26 -0
- package/dist/types/ObjectParamAPI.js.map +1 -1
- package/dist/types/ObservableAPI.d.ts +13 -0
- package/dist/types/ObservableAPI.js +594 -482
- package/dist/types/ObservableAPI.js.map +1 -1
- package/dist/types/PromiseAPI.d.ts +13 -0
- package/dist/types/PromiseAPI.js +40 -0
- package/dist/types/PromiseAPI.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AnalysisRecordBodyAnalysisScopeEnum = exports.AnalysisRecordBody = void 0;
|
|
4
|
+
var AnalysisRecordBody = (function () {
|
|
5
|
+
function AnalysisRecordBody() {
|
|
6
|
+
}
|
|
7
|
+
AnalysisRecordBody.getAttributeTypeMap = function () {
|
|
8
|
+
return AnalysisRecordBody.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
AnalysisRecordBody.discriminator = undefined;
|
|
11
|
+
AnalysisRecordBody.mapping = undefined;
|
|
12
|
+
AnalysisRecordBody.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "analysisId",
|
|
15
|
+
"baseName": "analysis_id",
|
|
16
|
+
"type": "number",
|
|
17
|
+
"format": "int64"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "analysisScope",
|
|
21
|
+
"baseName": "analysis_scope",
|
|
22
|
+
"type": "AnalysisRecordBodyAnalysisScopeEnum",
|
|
23
|
+
"format": ""
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "baseAddress",
|
|
27
|
+
"baseName": "base_address",
|
|
28
|
+
"type": "number",
|
|
29
|
+
"format": "int64"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "binaryId",
|
|
33
|
+
"baseName": "binary_id",
|
|
34
|
+
"type": "number",
|
|
35
|
+
"format": "int64"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "binaryName",
|
|
39
|
+
"baseName": "binary_name",
|
|
40
|
+
"type": "string",
|
|
41
|
+
"format": ""
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "binarySize",
|
|
45
|
+
"baseName": "binary_size",
|
|
46
|
+
"type": "number",
|
|
47
|
+
"format": "int64"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "creation",
|
|
51
|
+
"baseName": "creation",
|
|
52
|
+
"type": "Date",
|
|
53
|
+
"format": "date-time"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "functionBoundariesHash",
|
|
57
|
+
"baseName": "function_boundaries_hash",
|
|
58
|
+
"type": "string",
|
|
59
|
+
"format": ""
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "isOwner",
|
|
63
|
+
"baseName": "is_owner",
|
|
64
|
+
"type": "boolean",
|
|
65
|
+
"format": ""
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "modelId",
|
|
69
|
+
"baseName": "model_id",
|
|
70
|
+
"type": "number",
|
|
71
|
+
"format": "int64"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "modelName",
|
|
75
|
+
"baseName": "model_name",
|
|
76
|
+
"type": "string",
|
|
77
|
+
"format": ""
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "sha256Hash",
|
|
81
|
+
"baseName": "sha_256_hash",
|
|
82
|
+
"type": "string",
|
|
83
|
+
"format": ""
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "status",
|
|
87
|
+
"baseName": "status",
|
|
88
|
+
"type": "string",
|
|
89
|
+
"format": ""
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "tags",
|
|
93
|
+
"baseName": "tags",
|
|
94
|
+
"type": "Array<AnalysisTagBody>",
|
|
95
|
+
"format": ""
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "username",
|
|
99
|
+
"baseName": "username",
|
|
100
|
+
"type": "string",
|
|
101
|
+
"format": ""
|
|
102
|
+
}
|
|
103
|
+
];
|
|
104
|
+
return AnalysisRecordBody;
|
|
105
|
+
}());
|
|
106
|
+
exports.AnalysisRecordBody = AnalysisRecordBody;
|
|
107
|
+
var AnalysisRecordBodyAnalysisScopeEnum;
|
|
108
|
+
(function (AnalysisRecordBodyAnalysisScopeEnum) {
|
|
109
|
+
AnalysisRecordBodyAnalysisScopeEnum["Public"] = "PUBLIC";
|
|
110
|
+
AnalysisRecordBodyAnalysisScopeEnum["Private"] = "PRIVATE";
|
|
111
|
+
AnalysisRecordBodyAnalysisScopeEnum["Team"] = "TEAM";
|
|
112
|
+
AnalysisRecordBodyAnalysisScopeEnum["UnknownDefaultOpenApi"] = "11184809";
|
|
113
|
+
})(AnalysisRecordBodyAnalysisScopeEnum = exports.AnalysisRecordBodyAnalysisScopeEnum || (exports.AnalysisRecordBodyAnalysisScopeEnum = {}));
|
|
114
|
+
//# sourceMappingURL=AnalysisRecordBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AnalysisRecordBody.js","sourceRoot":"","sources":["../../models/AnalysisRecordBody.ts"],"names":[],"mappings":";;;AAcA;IAkKI;IACA,CAAC;IALM,sCAAmB,GAA1B;QACI,OAAO,kBAAkB,CAAC,gBAAgB,CAAC;IAC/C,CAAC;IAlGe,gCAAa,GAAuB,SAAS,CAAC;IAE9C,0BAAO,GAA0C,SAAS,CAAC;IAE3D,mCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,YAAY;YACpB,UAAU,EAAE,aAAa;YACzB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,OAAO;SACpB;QACD;YACI,MAAM,EAAE,eAAe;YACvB,UAAU,EAAE,gBAAgB;YAC5B,MAAM,EAAE,qCAAqC;YAC7C,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,aAAa;YACrB,UAAU,EAAE,cAAc;YAC1B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,OAAO;SACpB;QACD;YACI,MAAM,EAAE,UAAU;YAClB,UAAU,EAAE,WAAW;YACvB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,OAAO;SACpB;QACD;YACI,MAAM,EAAE,YAAY;YACpB,UAAU,EAAE,aAAa;YACzB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,YAAY;YACpB,UAAU,EAAE,aAAa;YACzB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,OAAO;SACpB;QACD;YACI,MAAM,EAAE,UAAU;YAClB,UAAU,EAAE,UAAU;YACtB,MAAM,EAAE,MAAM;YACd,QAAQ,EAAE,WAAW;SACxB;QACD;YACI,MAAM,EAAE,wBAAwB;YAChC,UAAU,EAAE,0BAA0B;YACtC,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,UAAU;YACtB,MAAM,EAAE,SAAS;YACjB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,UAAU;YACtB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,OAAO;SACpB;QACD;YACI,MAAM,EAAE,WAAW;YACnB,UAAU,EAAE,YAAY;YACxB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,YAAY;YACpB,UAAU,EAAE,cAAc;YAC1B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,wBAAwB;YAChC,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,UAAU;YAClB,UAAU,EAAE,UAAU;YACtB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,yBAAC;CAAA,AApKD,IAoKC;AApKY,gDAAkB;AAsK/B,IAAY,mCAKX;AALD,WAAY,mCAAmC;IAC3C,wDAAiB,CAAA;IACjB,0DAAmB,CAAA;IACnB,oDAAa,CAAA;IACb,yEAAkC,CAAA;AACtC,CAAC,EALW,mCAAmC,GAAnC,2CAAmC,KAAnC,2CAAmC,QAK9C"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export declare class AnalysisTagBody {
|
|
2
|
+
'collectionId': number | null;
|
|
3
|
+
'name': string;
|
|
4
|
+
'origin': string;
|
|
5
|
+
static readonly discriminator: string | undefined;
|
|
6
|
+
static readonly mapping: {
|
|
7
|
+
[index: string]: string;
|
|
8
|
+
} | undefined;
|
|
9
|
+
static readonly attributeTypeMap: Array<{
|
|
10
|
+
name: string;
|
|
11
|
+
baseName: string;
|
|
12
|
+
type: string;
|
|
13
|
+
format: string;
|
|
14
|
+
}>;
|
|
15
|
+
static getAttributeTypeMap(): {
|
|
16
|
+
name: string;
|
|
17
|
+
baseName: string;
|
|
18
|
+
type: string;
|
|
19
|
+
format: string;
|
|
20
|
+
}[];
|
|
21
|
+
constructor();
|
|
22
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AnalysisTagBody = void 0;
|
|
4
|
+
var AnalysisTagBody = (function () {
|
|
5
|
+
function AnalysisTagBody() {
|
|
6
|
+
}
|
|
7
|
+
AnalysisTagBody.getAttributeTypeMap = function () {
|
|
8
|
+
return AnalysisTagBody.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
AnalysisTagBody.discriminator = undefined;
|
|
11
|
+
AnalysisTagBody.mapping = undefined;
|
|
12
|
+
AnalysisTagBody.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "collectionId",
|
|
15
|
+
"baseName": "collection_id",
|
|
16
|
+
"type": "number",
|
|
17
|
+
"format": "int64"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "name",
|
|
21
|
+
"baseName": "name",
|
|
22
|
+
"type": "string",
|
|
23
|
+
"format": ""
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "origin",
|
|
27
|
+
"baseName": "origin",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"format": ""
|
|
30
|
+
}
|
|
31
|
+
];
|
|
32
|
+
return AnalysisTagBody;
|
|
33
|
+
}());
|
|
34
|
+
exports.AnalysisTagBody = AnalysisTagBody;
|
|
35
|
+
//# sourceMappingURL=AnalysisTagBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AnalysisTagBody.js","sourceRoot":"","sources":["../../models/AnalysisTagBody.ts"],"names":[],"mappings":";;;AAaA;IA0CI;IACA,CAAC;IALM,mCAAmB,GAA1B;QACI,OAAO,eAAe,CAAC,gBAAgB,CAAC;IAC5C,CAAC;IA1Be,6BAAa,GAAuB,SAAS,CAAC;IAE9C,uBAAO,GAA0C,SAAS,CAAC;IAE3D,gCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,cAAc;YACtB,UAAU,EAAE,eAAe;YAC3B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,OAAO;SACpB;QACD;YACI,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,sBAAC;CAAA,AA5CD,IA4CC;AA5CY,0CAAe"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare class AutoUnstripStatusOutputBody {
|
|
2
|
+
'status': AutoUnstripStatusOutputBodyStatusEnum;
|
|
3
|
+
static readonly discriminator: string | undefined;
|
|
4
|
+
static readonly mapping: {
|
|
5
|
+
[index: string]: string;
|
|
6
|
+
} | undefined;
|
|
7
|
+
static readonly attributeTypeMap: Array<{
|
|
8
|
+
name: string;
|
|
9
|
+
baseName: string;
|
|
10
|
+
type: string;
|
|
11
|
+
format: string;
|
|
12
|
+
}>;
|
|
13
|
+
static getAttributeTypeMap(): {
|
|
14
|
+
name: string;
|
|
15
|
+
baseName: string;
|
|
16
|
+
type: string;
|
|
17
|
+
format: string;
|
|
18
|
+
}[];
|
|
19
|
+
constructor();
|
|
20
|
+
}
|
|
21
|
+
export declare enum AutoUnstripStatusOutputBodyStatusEnum {
|
|
22
|
+
Uninitialised = "UNINITIALISED",
|
|
23
|
+
Pending = "PENDING",
|
|
24
|
+
Running = "RUNNING",
|
|
25
|
+
Completed = "COMPLETED",
|
|
26
|
+
Failed = "FAILED",
|
|
27
|
+
UnknownDefaultOpenApi = "11184809"
|
|
28
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AutoUnstripStatusOutputBodyStatusEnum = exports.AutoUnstripStatusOutputBody = void 0;
|
|
4
|
+
var AutoUnstripStatusOutputBody = (function () {
|
|
5
|
+
function AutoUnstripStatusOutputBody() {
|
|
6
|
+
}
|
|
7
|
+
AutoUnstripStatusOutputBody.getAttributeTypeMap = function () {
|
|
8
|
+
return AutoUnstripStatusOutputBody.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
AutoUnstripStatusOutputBody.discriminator = undefined;
|
|
11
|
+
AutoUnstripStatusOutputBody.mapping = undefined;
|
|
12
|
+
AutoUnstripStatusOutputBody.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "status",
|
|
15
|
+
"baseName": "status",
|
|
16
|
+
"type": "AutoUnstripStatusOutputBodyStatusEnum",
|
|
17
|
+
"format": ""
|
|
18
|
+
}
|
|
19
|
+
];
|
|
20
|
+
return AutoUnstripStatusOutputBody;
|
|
21
|
+
}());
|
|
22
|
+
exports.AutoUnstripStatusOutputBody = AutoUnstripStatusOutputBody;
|
|
23
|
+
var AutoUnstripStatusOutputBodyStatusEnum;
|
|
24
|
+
(function (AutoUnstripStatusOutputBodyStatusEnum) {
|
|
25
|
+
AutoUnstripStatusOutputBodyStatusEnum["Uninitialised"] = "UNINITIALISED";
|
|
26
|
+
AutoUnstripStatusOutputBodyStatusEnum["Pending"] = "PENDING";
|
|
27
|
+
AutoUnstripStatusOutputBodyStatusEnum["Running"] = "RUNNING";
|
|
28
|
+
AutoUnstripStatusOutputBodyStatusEnum["Completed"] = "COMPLETED";
|
|
29
|
+
AutoUnstripStatusOutputBodyStatusEnum["Failed"] = "FAILED";
|
|
30
|
+
AutoUnstripStatusOutputBodyStatusEnum["UnknownDefaultOpenApi"] = "11184809";
|
|
31
|
+
})(AutoUnstripStatusOutputBodyStatusEnum = exports.AutoUnstripStatusOutputBodyStatusEnum || (exports.AutoUnstripStatusOutputBodyStatusEnum = {}));
|
|
32
|
+
//# sourceMappingURL=AutoUnstripStatusOutputBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AutoUnstripStatusOutputBody.js","sourceRoot":"","sources":["../../models/AutoUnstripStatusOutputBody.ts"],"names":[],"mappings":";;;AAaA;IAsBI;IACA,CAAC;IALM,+CAAmB,GAA1B;QACI,OAAO,2BAA2B,CAAC,gBAAgB,CAAC;IACxD,CAAC;IAde,yCAAa,GAAuB,SAAS,CAAC;IAE9C,mCAAO,GAA0C,SAAS,CAAC;IAE3D,4CAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,uCAAuC;YAC/C,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,kCAAC;CAAA,AAxBD,IAwBC;AAxBY,kEAA2B;AA0BxC,IAAY,qCAOX;AAPD,WAAY,qCAAqC;IAC7C,wEAA+B,CAAA;IAC/B,4DAAmB,CAAA;IACnB,4DAAmB,CAAA;IACnB,gEAAuB,CAAA;IACvB,0DAAiB,CAAA;IACjB,2EAAkC,CAAA;AACtC,CAAC,EAPW,qCAAqC,GAArC,6CAAqC,KAArC,6CAAqC,QAOhD"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare class CanonicalName {
|
|
2
|
+
'canonicalName': string;
|
|
3
|
+
'name': string;
|
|
4
|
+
static readonly discriminator: string | undefined;
|
|
5
|
+
static readonly mapping: {
|
|
6
|
+
[index: string]: string;
|
|
7
|
+
} | undefined;
|
|
8
|
+
static readonly attributeTypeMap: Array<{
|
|
9
|
+
name: string;
|
|
10
|
+
baseName: string;
|
|
11
|
+
type: string;
|
|
12
|
+
format: string;
|
|
13
|
+
}>;
|
|
14
|
+
static getAttributeTypeMap(): {
|
|
15
|
+
name: string;
|
|
16
|
+
baseName: string;
|
|
17
|
+
type: string;
|
|
18
|
+
format: string;
|
|
19
|
+
}[];
|
|
20
|
+
constructor();
|
|
21
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CanonicalName = void 0;
|
|
4
|
+
var CanonicalName = (function () {
|
|
5
|
+
function CanonicalName() {
|
|
6
|
+
}
|
|
7
|
+
CanonicalName.getAttributeTypeMap = function () {
|
|
8
|
+
return CanonicalName.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
CanonicalName.discriminator = undefined;
|
|
11
|
+
CanonicalName.mapping = undefined;
|
|
12
|
+
CanonicalName.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "canonicalName",
|
|
15
|
+
"baseName": "canonical_name",
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": ""
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "name",
|
|
21
|
+
"baseName": "name",
|
|
22
|
+
"type": "string",
|
|
23
|
+
"format": ""
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
return CanonicalName;
|
|
27
|
+
}());
|
|
28
|
+
exports.CanonicalName = CanonicalName;
|
|
29
|
+
//# sourceMappingURL=CanonicalName.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CanonicalName.js","sourceRoot":"","sources":["../../models/CanonicalName.ts"],"names":[],"mappings":";;;AAaA;IAgCI;IACA,CAAC;IALM,iCAAmB,GAA1B;QACI,OAAO,aAAa,CAAC,gBAAgB,CAAC;IAC1C,CAAC;IApBe,2BAAa,GAAuB,SAAS,CAAC;IAE9C,qBAAO,GAA0C,SAAS,CAAC;IAE3D,8BAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,eAAe;YACvB,UAAU,EAAE,gBAAgB;YAC5B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,oBAAC;CAAA,AAlCD,IAkCC;AAlCY,sCAAa"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare class CanonicalizeNamesInputBody {
|
|
2
|
+
'names': Array<string> | null;
|
|
3
|
+
static readonly discriminator: string | undefined;
|
|
4
|
+
static readonly mapping: {
|
|
5
|
+
[index: string]: string;
|
|
6
|
+
} | undefined;
|
|
7
|
+
static readonly attributeTypeMap: Array<{
|
|
8
|
+
name: string;
|
|
9
|
+
baseName: string;
|
|
10
|
+
type: string;
|
|
11
|
+
format: string;
|
|
12
|
+
}>;
|
|
13
|
+
static getAttributeTypeMap(): {
|
|
14
|
+
name: string;
|
|
15
|
+
baseName: string;
|
|
16
|
+
type: string;
|
|
17
|
+
format: string;
|
|
18
|
+
}[];
|
|
19
|
+
constructor();
|
|
20
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CanonicalizeNamesInputBody = void 0;
|
|
4
|
+
var CanonicalizeNamesInputBody = (function () {
|
|
5
|
+
function CanonicalizeNamesInputBody() {
|
|
6
|
+
}
|
|
7
|
+
CanonicalizeNamesInputBody.getAttributeTypeMap = function () {
|
|
8
|
+
return CanonicalizeNamesInputBody.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
CanonicalizeNamesInputBody.discriminator = undefined;
|
|
11
|
+
CanonicalizeNamesInputBody.mapping = undefined;
|
|
12
|
+
CanonicalizeNamesInputBody.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "names",
|
|
15
|
+
"baseName": "names",
|
|
16
|
+
"type": "Array<string>",
|
|
17
|
+
"format": ""
|
|
18
|
+
}
|
|
19
|
+
];
|
|
20
|
+
return CanonicalizeNamesInputBody;
|
|
21
|
+
}());
|
|
22
|
+
exports.CanonicalizeNamesInputBody = CanonicalizeNamesInputBody;
|
|
23
|
+
//# sourceMappingURL=CanonicalizeNamesInputBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CanonicalizeNamesInputBody.js","sourceRoot":"","sources":["../../models/CanonicalizeNamesInputBody.ts"],"names":[],"mappings":";;;AAaA;IAsBI;IACA,CAAC;IALM,8CAAmB,GAA1B;QACI,OAAO,0BAA0B,CAAC,gBAAgB,CAAC;IACvD,CAAC;IAde,wCAAa,GAAuB,SAAS,CAAC;IAE9C,kCAAO,GAA0C,SAAS,CAAC;IAE3D,2CAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE,eAAe;YACvB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,iCAAC;CAAA,AAxBD,IAwBC;AAxBY,gEAA0B"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { CanonicalName } from '../models/CanonicalName';
|
|
2
|
+
export declare class CanonicalizeNamesOutputBody {
|
|
3
|
+
'results': Array<CanonicalName> | null;
|
|
4
|
+
static readonly discriminator: string | undefined;
|
|
5
|
+
static readonly mapping: {
|
|
6
|
+
[index: string]: string;
|
|
7
|
+
} | undefined;
|
|
8
|
+
static readonly attributeTypeMap: Array<{
|
|
9
|
+
name: string;
|
|
10
|
+
baseName: string;
|
|
11
|
+
type: string;
|
|
12
|
+
format: string;
|
|
13
|
+
}>;
|
|
14
|
+
static getAttributeTypeMap(): {
|
|
15
|
+
name: string;
|
|
16
|
+
baseName: string;
|
|
17
|
+
type: string;
|
|
18
|
+
format: string;
|
|
19
|
+
}[];
|
|
20
|
+
constructor();
|
|
21
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CanonicalizeNamesOutputBody = void 0;
|
|
4
|
+
var CanonicalizeNamesOutputBody = (function () {
|
|
5
|
+
function CanonicalizeNamesOutputBody() {
|
|
6
|
+
}
|
|
7
|
+
CanonicalizeNamesOutputBody.getAttributeTypeMap = function () {
|
|
8
|
+
return CanonicalizeNamesOutputBody.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
CanonicalizeNamesOutputBody.discriminator = undefined;
|
|
11
|
+
CanonicalizeNamesOutputBody.mapping = undefined;
|
|
12
|
+
CanonicalizeNamesOutputBody.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "results",
|
|
15
|
+
"baseName": "results",
|
|
16
|
+
"type": "Array<CanonicalName>",
|
|
17
|
+
"format": ""
|
|
18
|
+
}
|
|
19
|
+
];
|
|
20
|
+
return CanonicalizeNamesOutputBody;
|
|
21
|
+
}());
|
|
22
|
+
exports.CanonicalizeNamesOutputBody = CanonicalizeNamesOutputBody;
|
|
23
|
+
//# sourceMappingURL=CanonicalizeNamesOutputBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CanonicalizeNamesOutputBody.js","sourceRoot":"","sources":["../../models/CanonicalizeNamesOutputBody.ts"],"names":[],"mappings":";;;AAcA;IAsBI;IACA,CAAC;IALM,+CAAmB,GAA1B;QACI,OAAO,2BAA2B,CAAC,gBAAgB,CAAC;IACxD,CAAC;IAde,yCAAa,GAAuB,SAAS,CAAC;IAE9C,mCAAO,GAA0C,SAAS,CAAC;IAE3D,4CAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,MAAM,EAAE,sBAAsB;YAC9B,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,kCAAC;CAAA,AAxBD,IAwBC;AAxBY,kEAA2B"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { SseEventToolCallProgressData } from '../models/SseEventToolCallProgressData';
|
|
2
|
+
export declare class EventTOOLCALLPROGRESS {
|
|
3
|
+
'data': SseEventToolCallProgressData;
|
|
4
|
+
'event': EventTOOLCALLPROGRESSEventEnum;
|
|
5
|
+
'id'?: number;
|
|
6
|
+
'retry'?: number;
|
|
7
|
+
static readonly discriminator: string | undefined;
|
|
8
|
+
static readonly mapping: {
|
|
9
|
+
[index: string]: string;
|
|
10
|
+
} | undefined;
|
|
11
|
+
static readonly attributeTypeMap: Array<{
|
|
12
|
+
name: string;
|
|
13
|
+
baseName: string;
|
|
14
|
+
type: string;
|
|
15
|
+
format: string;
|
|
16
|
+
}>;
|
|
17
|
+
static getAttributeTypeMap(): {
|
|
18
|
+
name: string;
|
|
19
|
+
baseName: string;
|
|
20
|
+
type: string;
|
|
21
|
+
format: string;
|
|
22
|
+
}[];
|
|
23
|
+
constructor();
|
|
24
|
+
}
|
|
25
|
+
export declare enum EventTOOLCALLPROGRESSEventEnum {
|
|
26
|
+
ToolCallProgress = "TOOL_CALL_PROGRESS",
|
|
27
|
+
UnknownDefaultOpenApi = "11184809"
|
|
28
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EventTOOLCALLPROGRESSEventEnum = exports.EventTOOLCALLPROGRESS = void 0;
|
|
4
|
+
var EventTOOLCALLPROGRESS = (function () {
|
|
5
|
+
function EventTOOLCALLPROGRESS() {
|
|
6
|
+
}
|
|
7
|
+
EventTOOLCALLPROGRESS.getAttributeTypeMap = function () {
|
|
8
|
+
return EventTOOLCALLPROGRESS.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
EventTOOLCALLPROGRESS.discriminator = undefined;
|
|
11
|
+
EventTOOLCALLPROGRESS.mapping = undefined;
|
|
12
|
+
EventTOOLCALLPROGRESS.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "data",
|
|
15
|
+
"baseName": "data",
|
|
16
|
+
"type": "SseEventToolCallProgressData",
|
|
17
|
+
"format": ""
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "event",
|
|
21
|
+
"baseName": "event",
|
|
22
|
+
"type": "EventTOOLCALLPROGRESSEventEnum",
|
|
23
|
+
"format": ""
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "id",
|
|
27
|
+
"baseName": "id",
|
|
28
|
+
"type": "number",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "retry",
|
|
33
|
+
"baseName": "retry",
|
|
34
|
+
"type": "number",
|
|
35
|
+
"format": ""
|
|
36
|
+
}
|
|
37
|
+
];
|
|
38
|
+
return EventTOOLCALLPROGRESS;
|
|
39
|
+
}());
|
|
40
|
+
exports.EventTOOLCALLPROGRESS = EventTOOLCALLPROGRESS;
|
|
41
|
+
var EventTOOLCALLPROGRESSEventEnum;
|
|
42
|
+
(function (EventTOOLCALLPROGRESSEventEnum) {
|
|
43
|
+
EventTOOLCALLPROGRESSEventEnum["ToolCallProgress"] = "TOOL_CALL_PROGRESS";
|
|
44
|
+
EventTOOLCALLPROGRESSEventEnum["UnknownDefaultOpenApi"] = "11184809";
|
|
45
|
+
})(EventTOOLCALLPROGRESSEventEnum = exports.EventTOOLCALLPROGRESSEventEnum || (exports.EventTOOLCALLPROGRESSEventEnum = {}));
|
|
46
|
+
//# sourceMappingURL=EventTOOLCALLPROGRESS.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventTOOLCALLPROGRESS.js","sourceRoot":"","sources":["../../models/EventTOOLCALLPROGRESS.ts"],"names":[],"mappings":";;;AAcA;IAiDI;IACA,CAAC;IALM,yCAAmB,GAA1B;QACI,OAAO,qBAAqB,CAAC,gBAAgB,CAAC;IAClD,CAAC;IAhCe,mCAAa,GAAuB,SAAS,CAAC;IAE9C,6BAAO,GAA0C,SAAS,CAAC;IAE3D,sCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,8BAA8B;YACtC,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE,gCAAgC;YACxC,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,IAAI;YACZ,UAAU,EAAE,IAAI;YAChB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,4BAAC;CAAA,AAnDD,IAmDC;AAnDY,sDAAqB;AAqDlC,IAAY,8BAGX;AAHD,WAAY,8BAA8B;IACtC,yEAAuC,CAAA;IACvC,oEAAkC,CAAA;AACtC,CAAC,EAHW,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QAGzC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare class IndirectCallSite {
|
|
2
|
+
'calleeFunctionId'?: number;
|
|
3
|
+
'instVaddr': number;
|
|
4
|
+
'isExternal': boolean;
|
|
5
|
+
'targetName'?: string;
|
|
6
|
+
'targetVaddr': number;
|
|
7
|
+
static readonly discriminator: string | undefined;
|
|
8
|
+
static readonly mapping: {
|
|
9
|
+
[index: string]: string;
|
|
10
|
+
} | undefined;
|
|
11
|
+
static readonly attributeTypeMap: Array<{
|
|
12
|
+
name: string;
|
|
13
|
+
baseName: string;
|
|
14
|
+
type: string;
|
|
15
|
+
format: string;
|
|
16
|
+
}>;
|
|
17
|
+
static getAttributeTypeMap(): {
|
|
18
|
+
name: string;
|
|
19
|
+
baseName: string;
|
|
20
|
+
type: string;
|
|
21
|
+
format: string;
|
|
22
|
+
}[];
|
|
23
|
+
constructor();
|
|
24
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IndirectCallSite = void 0;
|
|
4
|
+
var IndirectCallSite = (function () {
|
|
5
|
+
function IndirectCallSite() {
|
|
6
|
+
}
|
|
7
|
+
IndirectCallSite.getAttributeTypeMap = function () {
|
|
8
|
+
return IndirectCallSite.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
IndirectCallSite.discriminator = undefined;
|
|
11
|
+
IndirectCallSite.mapping = undefined;
|
|
12
|
+
IndirectCallSite.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "calleeFunctionId",
|
|
15
|
+
"baseName": "callee_function_id",
|
|
16
|
+
"type": "number",
|
|
17
|
+
"format": "int64"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "instVaddr",
|
|
21
|
+
"baseName": "inst_vaddr",
|
|
22
|
+
"type": "number",
|
|
23
|
+
"format": "int64"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "isExternal",
|
|
27
|
+
"baseName": "is_external",
|
|
28
|
+
"type": "boolean",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "targetName",
|
|
33
|
+
"baseName": "target_name",
|
|
34
|
+
"type": "string",
|
|
35
|
+
"format": ""
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "targetVaddr",
|
|
39
|
+
"baseName": "target_vaddr",
|
|
40
|
+
"type": "number",
|
|
41
|
+
"format": "int64"
|
|
42
|
+
}
|
|
43
|
+
];
|
|
44
|
+
return IndirectCallSite;
|
|
45
|
+
}());
|
|
46
|
+
exports.IndirectCallSite = IndirectCallSite;
|
|
47
|
+
//# sourceMappingURL=IndirectCallSite.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IndirectCallSite.js","sourceRoot":"","sources":["../../models/IndirectCallSite.ts"],"names":[],"mappings":";;;AAaA;IAqDI;IACA,CAAC;IALM,oCAAmB,GAA1B;QACI,OAAO,gBAAgB,CAAC,gBAAgB,CAAC;IAC7C,CAAC;IAtCe,8BAAa,GAAuB,SAAS,CAAC;IAE9C,wBAAO,GAA0C,SAAS,CAAC;IAE3D,iCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,kBAAkB;YAC1B,UAAU,EAAE,oBAAoB;YAChC,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,OAAO;SACpB;QACD;YACI,MAAM,EAAE,WAAW;YACnB,UAAU,EAAE,YAAY;YACxB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,OAAO;SACpB;QACD;YACI,MAAM,EAAE,YAAY;YACpB,UAAU,EAAE,aAAa;YACzB,MAAM,EAAE,SAAS;YACjB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,YAAY;YACpB,UAAU,EAAE,aAAa;YACzB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,aAAa;YACrB,UAAU,EAAE,cAAc;YAC1B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,OAAO;SACpB;KAAK,CAAC;IAQf,uBAAC;CAAA,AAvDD,IAuDC;AAvDY,4CAAgB"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { IndirectCallSite } from '../models/IndirectCallSite';
|
|
2
|
+
export declare class IndirectCallSitesOutputBody {
|
|
3
|
+
'functionId': number;
|
|
4
|
+
'sites': Array<IndirectCallSite> | null;
|
|
5
|
+
static readonly discriminator: string | undefined;
|
|
6
|
+
static readonly mapping: {
|
|
7
|
+
[index: string]: string;
|
|
8
|
+
} | undefined;
|
|
9
|
+
static readonly attributeTypeMap: Array<{
|
|
10
|
+
name: string;
|
|
11
|
+
baseName: string;
|
|
12
|
+
type: string;
|
|
13
|
+
format: string;
|
|
14
|
+
}>;
|
|
15
|
+
static getAttributeTypeMap(): {
|
|
16
|
+
name: string;
|
|
17
|
+
baseName: string;
|
|
18
|
+
type: string;
|
|
19
|
+
format: string;
|
|
20
|
+
}[];
|
|
21
|
+
constructor();
|
|
22
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IndirectCallSitesOutputBody = void 0;
|
|
4
|
+
var IndirectCallSitesOutputBody = (function () {
|
|
5
|
+
function IndirectCallSitesOutputBody() {
|
|
6
|
+
}
|
|
7
|
+
IndirectCallSitesOutputBody.getAttributeTypeMap = function () {
|
|
8
|
+
return IndirectCallSitesOutputBody.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
IndirectCallSitesOutputBody.discriminator = undefined;
|
|
11
|
+
IndirectCallSitesOutputBody.mapping = undefined;
|
|
12
|
+
IndirectCallSitesOutputBody.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "functionId",
|
|
15
|
+
"baseName": "function_id",
|
|
16
|
+
"type": "number",
|
|
17
|
+
"format": "int64"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "sites",
|
|
21
|
+
"baseName": "sites",
|
|
22
|
+
"type": "Array<IndirectCallSite>",
|
|
23
|
+
"format": ""
|
|
24
|
+
}
|
|
25
|
+
];
|
|
26
|
+
return IndirectCallSitesOutputBody;
|
|
27
|
+
}());
|
|
28
|
+
exports.IndirectCallSitesOutputBody = IndirectCallSitesOutputBody;
|
|
29
|
+
//# sourceMappingURL=IndirectCallSitesOutputBody.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IndirectCallSitesOutputBody.js","sourceRoot":"","sources":["../../models/IndirectCallSitesOutputBody.ts"],"names":[],"mappings":";;;AAcA;IA0BI;IACA,CAAC;IALM,+CAAmB,GAA1B;QACI,OAAO,2BAA2B,CAAC,gBAAgB,CAAC;IACxD,CAAC;IApBe,yCAAa,GAAuB,SAAS,CAAC;IAE9C,mCAAO,GAA0C,SAAS,CAAC;IAE3D,4CAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,YAAY;YACpB,UAAU,EAAE,aAAa;YACzB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,OAAO;SACpB;QACD;YACI,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE,yBAAyB;YACjC,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,kCAAC;CAAA,AA5BD,IA4BC;AA5BY,kEAA2B"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { AnalysisRecordBody } from '../models/AnalysisRecordBody';
|
|
2
|
+
export declare class ListAnalysesOutputBody {
|
|
3
|
+
'nextPageToken'?: string;
|
|
4
|
+
'pageSize': number;
|
|
5
|
+
'results': Array<AnalysisRecordBody> | null;
|
|
6
|
+
static readonly discriminator: string | undefined;
|
|
7
|
+
static readonly mapping: {
|
|
8
|
+
[index: string]: string;
|
|
9
|
+
} | undefined;
|
|
10
|
+
static readonly attributeTypeMap: Array<{
|
|
11
|
+
name: string;
|
|
12
|
+
baseName: string;
|
|
13
|
+
type: string;
|
|
14
|
+
format: string;
|
|
15
|
+
}>;
|
|
16
|
+
static getAttributeTypeMap(): {
|
|
17
|
+
name: string;
|
|
18
|
+
baseName: string;
|
|
19
|
+
type: string;
|
|
20
|
+
format: string;
|
|
21
|
+
}[];
|
|
22
|
+
constructor();
|
|
23
|
+
}
|