@revengai/sdk 3.105.0 → 3.110.0
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 +8 -0
- package/dist/apis/AnalysesCoreApi.d.ts +2 -2
- package/dist/apis/AnalysesCoreApi.js +70 -46
- package/dist/apis/AnalysesCoreApi.js.map +1 -1
- package/dist/apis/FunctionsCoreApi.d.ts +8 -2
- package/dist/apis/FunctionsCoreApi.js +236 -8
- package/dist/apis/FunctionsCoreApi.js.map +1 -1
- package/dist/models/ArchiveContentEntry.d.ts +22 -0
- package/dist/models/ArchiveContentEntry.js +35 -0
- package/dist/models/ArchiveContentEntry.js.map +1 -0
- package/dist/models/BatchBinaryMatchResult.d.ts +1 -0
- package/dist/models/BatchBinaryMatchResult.js +6 -0
- package/dist/models/BatchBinaryMatchResult.js.map +1 -1
- package/dist/models/ImportedFunctionCallerEntry.d.ts +23 -0
- package/dist/models/ImportedFunctionCallerEntry.js +41 -0
- package/dist/models/ImportedFunctionCallerEntry.js.map +1 -0
- package/dist/models/ImportedFunctionDetailOutputBody.d.ts +29 -0
- package/dist/models/ImportedFunctionDetailOutputBody.js +71 -0
- package/dist/models/ImportedFunctionDetailOutputBody.js.map +1 -0
- package/dist/models/ImportedFunctionEntry.d.ts +27 -0
- package/dist/models/ImportedFunctionEntry.js +65 -0
- package/dist/models/ImportedFunctionEntry.js.map +1 -0
- package/dist/models/ListArchiveContentsOutputBody.d.ts +25 -0
- package/dist/models/ListArchiveContentsOutputBody.js +47 -0
- package/dist/models/ListArchiveContentsOutputBody.js.map +1 -0
- package/dist/models/ListImportedFunctionsOutputBody.d.ts +22 -0
- package/dist/models/ListImportedFunctionsOutputBody.js +29 -0
- package/dist/models/ListImportedFunctionsOutputBody.js.map +1 -0
- package/dist/models/ObjectSerializer.d.ts +6 -0
- package/dist/models/ObjectSerializer.js +18 -0
- package/dist/models/ObjectSerializer.js.map +1 -1
- package/dist/models/SandboxOptions.d.ts +3 -0
- package/dist/models/SandboxOptions.js +18 -0
- package/dist/models/SandboxOptions.js.map +1 -1
- package/dist/models/StartMatchingForAnalysisInputBody.d.ts +1 -0
- package/dist/models/StartMatchingForAnalysisInputBody.js +6 -0
- package/dist/models/StartMatchingForAnalysisInputBody.js.map +1 -1
- package/dist/models/StartMatchingForFunctionsInputBody.d.ts +1 -0
- package/dist/models/StartMatchingForFunctionsInputBody.js +6 -0
- package/dist/models/StartMatchingForFunctionsInputBody.js.map +1 -1
- package/dist/models/StartMatchingOutputBody.d.ts +1 -0
- package/dist/models/StartMatchingOutputBody.js +6 -0
- package/dist/models/StartMatchingOutputBody.js.map +1 -1
- package/dist/models/TriggerDynamicExecutionInputBody.d.ts +3 -0
- package/dist/models/TriggerDynamicExecutionInputBody.js +18 -0
- package/dist/models/TriggerDynamicExecutionInputBody.js.map +1 -1
- package/dist/models/UploadResponse.d.ts +4 -0
- package/dist/models/UploadResponse.js +24 -0
- package/dist/models/UploadResponse.js.map +1 -1
- package/dist/models/User.d.ts +1 -1
- package/dist/models/all.d.ts +6 -0
- package/dist/models/all.js +6 -0
- package/dist/models/all.js.map +1 -1
- package/dist/types/ObjectParamAPI.d.ts +25 -6
- package/dist/types/ObjectParamAPI.js +24 -8
- package/dist/types/ObjectParamAPI.js.map +1 -1
- package/dist/types/ObservableAPI.d.ts +14 -8
- package/dist/types/ObservableAPI.js +186 -130
- package/dist/types/ObservableAPI.js.map +1 -1
- package/dist/types/PromiseAPI.d.ts +14 -8
- package/dist/types/PromiseAPI.js +36 -16
- package/dist/types/PromiseAPI.js.map +1 -1
- package/package.json +1 -1
|
@@ -5,6 +5,9 @@ export declare class SandboxOptions {
|
|
|
5
5
|
'commandLineArgs'?: string;
|
|
6
6
|
'startMethod'?: SandboxStartMethod | null;
|
|
7
7
|
'timeout'?: SandboxTimeout;
|
|
8
|
+
'archiveSha256Hash'?: string | null;
|
|
9
|
+
'archiveEntryPath'?: string | null;
|
|
10
|
+
'archivePassword'?: string | null;
|
|
8
11
|
static readonly discriminator: string | undefined;
|
|
9
12
|
static readonly mapping: {
|
|
10
13
|
[index: string]: string;
|
|
@@ -33,6 +33,24 @@ var SandboxOptions = (function () {
|
|
|
33
33
|
"baseName": "timeout",
|
|
34
34
|
"type": "SandboxTimeout",
|
|
35
35
|
"format": ""
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "archiveSha256Hash",
|
|
39
|
+
"baseName": "archive_sha_256_hash",
|
|
40
|
+
"type": "string",
|
|
41
|
+
"format": ""
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "archiveEntryPath",
|
|
45
|
+
"baseName": "archive_entry_path",
|
|
46
|
+
"type": "string",
|
|
47
|
+
"format": ""
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "archivePassword",
|
|
51
|
+
"baseName": "archive_password",
|
|
52
|
+
"type": "string",
|
|
53
|
+
"format": ""
|
|
36
54
|
}
|
|
37
55
|
];
|
|
38
56
|
return SandboxOptions;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SandboxOptions.js","sourceRoot":"","sources":["../../models/SandboxOptions.ts"],"names":[],"mappings":";;;AAeA;
|
|
1
|
+
{"version":3,"file":"SandboxOptions.js","sourceRoot":"","sources":["../../models/SandboxOptions.ts"],"names":[],"mappings":";;;AAeA;IAmEI;IACA,CAAC;IALM,kCAAmB,GAA1B;QACI,OAAO,cAAc,CAAC,gBAAgB,CAAC;IAC3C,CAAC;IAlDe,4BAAa,GAAuB,SAAS,CAAC;IAE9C,sBAAO,GAA0C,SAAS,CAAC;IAE3D,+BAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,MAAM,EAAE,SAAS;YACjB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,iBAAiB;YACzB,UAAU,EAAE,mBAAmB;YAC/B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,aAAa;YACrB,UAAU,EAAE,cAAc;YAC1B,MAAM,EAAE,oBAAoB;YAC5B,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,MAAM,EAAE,gBAAgB;YACxB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,mBAAmB;YAC3B,UAAU,EAAE,sBAAsB;YAClC,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,kBAAkB;YAC1B,UAAU,EAAE,oBAAoB;YAChC,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,iBAAiB;YACzB,UAAU,EAAE,kBAAkB;YAC9B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,qBAAC;CAAA,AArED,IAqEC;AArEY,wCAAc"}
|
|
@@ -2,6 +2,7 @@ import { MatchFilters } from '../models/MatchFilters';
|
|
|
2
2
|
export declare class StartMatchingForAnalysisInputBody {
|
|
3
3
|
'filters'?: MatchFilters;
|
|
4
4
|
'minSimilarity'?: number;
|
|
5
|
+
'noCache'?: boolean;
|
|
5
6
|
'resultsPerFunction'?: number;
|
|
6
7
|
static readonly discriminator: string | undefined;
|
|
7
8
|
static readonly mapping: {
|
|
@@ -22,6 +22,12 @@ var StartMatchingForAnalysisInputBody = (function () {
|
|
|
22
22
|
"type": "number",
|
|
23
23
|
"format": "double"
|
|
24
24
|
},
|
|
25
|
+
{
|
|
26
|
+
"name": "noCache",
|
|
27
|
+
"baseName": "no_cache",
|
|
28
|
+
"type": "boolean",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
25
31
|
{
|
|
26
32
|
"name": "resultsPerFunction",
|
|
27
33
|
"baseName": "results_per_function",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StartMatchingForAnalysisInputBody.js","sourceRoot":"","sources":["../../models/StartMatchingForAnalysisInputBody.ts"],"names":[],"mappings":";;;AAcA;
|
|
1
|
+
{"version":3,"file":"StartMatchingForAnalysisInputBody.js","sourceRoot":"","sources":["../../models/StartMatchingForAnalysisInputBody.ts"],"names":[],"mappings":";;;AAcA;IAoDI;IACA,CAAC;IALM,qDAAmB,GAA1B;QACI,OAAO,iCAAiC,CAAC,gBAAgB,CAAC;IAC9D,CAAC;IAhCe,+CAAa,GAAuB,SAAS,CAAC;IAE9C,yCAAO,GAA0C,SAAS,CAAC;IAE3D,kDAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,MAAM,EAAE,cAAc;YACtB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,eAAe;YACvB,UAAU,EAAE,gBAAgB;YAC5B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,QAAQ;SACrB;QACD;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,UAAU;YACtB,MAAM,EAAE,SAAS;YACjB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,oBAAoB;YAC5B,UAAU,EAAE,sBAAsB;YAClC,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,OAAO;SACpB;KAAK,CAAC;IAQf,wCAAC;CAAA,AAtDD,IAsDC;AAtDY,8EAAiC"}
|
|
@@ -3,6 +3,7 @@ export declare class StartMatchingForFunctionsInputBody {
|
|
|
3
3
|
'filters'?: MatchFilters;
|
|
4
4
|
'functionIds': Array<number> | null;
|
|
5
5
|
'minSimilarity'?: number;
|
|
6
|
+
'noCache'?: boolean;
|
|
6
7
|
'resultsPerFunction'?: number;
|
|
7
8
|
'useCanonicalNames'?: boolean;
|
|
8
9
|
static readonly discriminator: string | undefined;
|
|
@@ -28,6 +28,12 @@ var StartMatchingForFunctionsInputBody = (function () {
|
|
|
28
28
|
"type": "number",
|
|
29
29
|
"format": "double"
|
|
30
30
|
},
|
|
31
|
+
{
|
|
32
|
+
"name": "noCache",
|
|
33
|
+
"baseName": "no_cache",
|
|
34
|
+
"type": "boolean",
|
|
35
|
+
"format": ""
|
|
36
|
+
},
|
|
31
37
|
{
|
|
32
38
|
"name": "resultsPerFunction",
|
|
33
39
|
"baseName": "results_per_function",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StartMatchingForFunctionsInputBody.js","sourceRoot":"","sources":["../../models/StartMatchingForFunctionsInputBody.ts"],"names":[],"mappings":";;;AAcA;
|
|
1
|
+
{"version":3,"file":"StartMatchingForFunctionsInputBody.js","sourceRoot":"","sources":["../../models/StartMatchingForFunctionsInputBody.ts"],"names":[],"mappings":";;;AAcA;IAwEI;IACA,CAAC;IALM,sDAAmB,GAA1B;QACI,OAAO,kCAAkC,CAAC,gBAAgB,CAAC;IAC/D,CAAC;IA5Ce,gDAAa,GAAuB,SAAS,CAAC;IAE9C,0CAAO,GAA0C,SAAS,CAAC;IAE3D,mDAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,MAAM,EAAE,cAAc;YACtB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,aAAa;YACrB,UAAU,EAAE,cAAc;YAC1B,MAAM,EAAE,eAAe;YACvB,QAAQ,EAAE,OAAO;SACpB;QACD;YACI,MAAM,EAAE,eAAe;YACvB,UAAU,EAAE,gBAAgB;YAC5B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,QAAQ;SACrB;QACD;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,UAAU;YACtB,MAAM,EAAE,SAAS;YACjB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,oBAAoB;YAC5B,UAAU,EAAE,sBAAsB;YAClC,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,OAAO;SACpB;QACD;YACI,MAAM,EAAE,mBAAmB;YAC3B,UAAU,EAAE,qBAAqB;YACjC,MAAM,EAAE,SAAS;YACjB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,yCAAC;CAAA,AA1ED,IA0EC;AA1EY,gFAAkC"}
|
|
@@ -10,6 +10,12 @@ var StartMatchingOutputBody = (function () {
|
|
|
10
10
|
StartMatchingOutputBody.discriminator = undefined;
|
|
11
11
|
StartMatchingOutputBody.mapping = undefined;
|
|
12
12
|
StartMatchingOutputBody.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "matchId",
|
|
15
|
+
"baseName": "match_id",
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": ""
|
|
18
|
+
},
|
|
13
19
|
{
|
|
14
20
|
"name": "messages",
|
|
15
21
|
"baseName": "messages",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StartMatchingOutputBody.js","sourceRoot":"","sources":["../../models/StartMatchingOutputBody.ts"],"names":[],"mappings":";;;AAcA;
|
|
1
|
+
{"version":3,"file":"StartMatchingOutputBody.js","sourceRoot":"","sources":["../../models/StartMatchingOutputBody.ts"],"names":[],"mappings":";;;AAcA;IAwEI;IACA,CAAC;IALM,2CAAmB,GAA1B;QACI,OAAO,uBAAuB,CAAC,gBAAgB,CAAC;IACpD,CAAC;IA5Ce,qCAAa,GAAuB,SAAS,CAAC;IAE9C,+BAAO,GAA0C,SAAS,CAAC;IAE3D,wCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,UAAU;YACtB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,UAAU;YAClB,UAAU,EAAE,UAAU;YACtB,MAAM,EAAE,wBAAwB;YAChC,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,mCAAmC;YAC3C,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;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,QAAQ;YAChB,QAAQ,EAAE,OAAO;SACpB;KAAK,CAAC;IAQf,8BAAC;CAAA,AA1ED,IA0EC;AA1EY,0DAAuB;AA4EpC,IAAY,iCAOX;AAPD,WAAY,iCAAiC;IACzC,oEAA+B,CAAA;IAC/B,wDAAmB,CAAA;IACnB,wDAAmB,CAAA;IACnB,4DAAuB,CAAA;IACvB,sDAAiB,CAAA;IACjB,uEAAkC,CAAA;AACtC,CAAC,EAPW,iCAAiC,GAAjC,yCAAiC,KAAjC,yCAAiC,QAO5C"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export declare class TriggerDynamicExecutionInputBody {
|
|
2
|
+
'archiveEntryPath'?: string;
|
|
3
|
+
'archivePassword'?: string;
|
|
4
|
+
'archiveSha256Hash'?: string;
|
|
2
5
|
'commandLineArgs'?: string;
|
|
3
6
|
'startMethod'?: TriggerDynamicExecutionInputBodyStartMethodEnum;
|
|
4
7
|
'timeout'?: TriggerDynamicExecutionInputBodyTimeoutEnum;
|
|
@@ -10,6 +10,24 @@ var TriggerDynamicExecutionInputBody = (function () {
|
|
|
10
10
|
TriggerDynamicExecutionInputBody.discriminator = undefined;
|
|
11
11
|
TriggerDynamicExecutionInputBody.mapping = undefined;
|
|
12
12
|
TriggerDynamicExecutionInputBody.attributeTypeMap = [
|
|
13
|
+
{
|
|
14
|
+
"name": "archiveEntryPath",
|
|
15
|
+
"baseName": "archive_entry_path",
|
|
16
|
+
"type": "string",
|
|
17
|
+
"format": ""
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"name": "archivePassword",
|
|
21
|
+
"baseName": "archive_password",
|
|
22
|
+
"type": "string",
|
|
23
|
+
"format": ""
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "archiveSha256Hash",
|
|
27
|
+
"baseName": "archive_sha_256_hash",
|
|
28
|
+
"type": "string",
|
|
29
|
+
"format": ""
|
|
30
|
+
},
|
|
13
31
|
{
|
|
14
32
|
"name": "commandLineArgs",
|
|
15
33
|
"baseName": "command_line_args",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TriggerDynamicExecutionInputBody.js","sourceRoot":"","sources":["../../models/TriggerDynamicExecutionInputBody.ts"],"names":[],"mappings":";;;AAaA;
|
|
1
|
+
{"version":3,"file":"TriggerDynamicExecutionInputBody.js","sourceRoot":"","sources":["../../models/TriggerDynamicExecutionInputBody.ts"],"names":[],"mappings":";;;AAaA;IAwEI;IACA,CAAC;IALM,oDAAmB,GAA1B;QACI,OAAO,gCAAgC,CAAC,gBAAgB,CAAC;IAC7D,CAAC;IA5Ce,8CAAa,GAAuB,SAAS,CAAC;IAE9C,wCAAO,GAA0C,SAAS,CAAC;IAE3D,iDAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,kBAAkB;YAC1B,UAAU,EAAE,oBAAoB;YAChC,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,iBAAiB;YACzB,UAAU,EAAE,kBAAkB;YAC9B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,mBAAmB;YAC3B,UAAU,EAAE,sBAAsB;YAClC,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,iBAAiB;YACzB,UAAU,EAAE,mBAAmB;YAC/B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,aAAa;YACrB,UAAU,EAAE,cAAc;YAC1B,MAAM,EAAE,iDAAiD;YACzD,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,MAAM,EAAE,6CAA6C;YACrD,QAAQ,EAAE,OAAO;SACpB;KAAK,CAAC;IAQf,uCAAC;CAAA,AA1ED,IA0EC;AA1EY,4EAAgC;AA4E7C,IAAY,+CAIX;AAJD,WAAY,+CAA+C;IACvD,gGAA6C,CAAA;IAC7C,iGAA8C,CAAA;IAC9C,qFAAkC,CAAA;AACtC,CAAC,EAJW,+CAA+C,GAA/C,uDAA+C,KAA/C,uDAA+C,QAI1D;AACD,IAAY,2CAMX;AAND,WAAY,2CAA2C;IACnD,2HAAgB,CAAA;IAChB,2HAAgB,CAAA;IAChB,2HAAgB,CAAA;IAChB,2HAAgB,CAAA;IAChB,0KAA0C,CAAA;AAC9C,CAAC,EANW,2CAA2C,GAA3C,mDAA2C,KAA3C,mDAA2C,QAMtD"}
|
|
@@ -3,6 +3,10 @@ export declare class UploadResponse {
|
|
|
3
3
|
'sha256Hash': string;
|
|
4
4
|
'fileType': UploadFileType;
|
|
5
5
|
'filename': string;
|
|
6
|
+
'mime': string;
|
|
7
|
+
'isArchive': boolean;
|
|
8
|
+
'canSandbox': boolean;
|
|
9
|
+
'canExtract': boolean;
|
|
6
10
|
static readonly discriminator: string | undefined;
|
|
7
11
|
static readonly mapping: {
|
|
8
12
|
[index: string]: string;
|
|
@@ -27,6 +27,30 @@ var UploadResponse = (function () {
|
|
|
27
27
|
"baseName": "filename",
|
|
28
28
|
"type": "string",
|
|
29
29
|
"format": ""
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "mime",
|
|
33
|
+
"baseName": "mime",
|
|
34
|
+
"type": "string",
|
|
35
|
+
"format": ""
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "isArchive",
|
|
39
|
+
"baseName": "is_archive",
|
|
40
|
+
"type": "boolean",
|
|
41
|
+
"format": ""
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"name": "canSandbox",
|
|
45
|
+
"baseName": "can_sandbox",
|
|
46
|
+
"type": "boolean",
|
|
47
|
+
"format": ""
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "canExtract",
|
|
51
|
+
"baseName": "can_extract",
|
|
52
|
+
"type": "boolean",
|
|
53
|
+
"format": ""
|
|
30
54
|
}
|
|
31
55
|
];
|
|
32
56
|
return UploadResponse;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UploadResponse.js","sourceRoot":"","sources":["../../models/UploadResponse.ts"],"names":[],"mappings":";;;AAcA;
|
|
1
|
+
{"version":3,"file":"UploadResponse.js","sourceRoot":"","sources":["../../models/UploadResponse.ts"],"names":[],"mappings":";;;AAcA;IA6DI;IACA,CAAC;IALM,kCAAmB,GAA1B;QACI,OAAO,cAAc,CAAC,gBAAgB,CAAC;IAC3C,CAAC;IAlDe,4BAAa,GAAuB,SAAS,CAAC;IAE9C,sBAAO,GAA0C,SAAS,CAAC;IAE3D,+BAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,YAAY;YACpB,UAAU,EAAE,cAAc;YAC1B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,UAAU;YAClB,UAAU,EAAE,WAAW;YACvB,MAAM,EAAE,gBAAgB;YACxB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,UAAU;YAClB,UAAU,EAAE,UAAU;YACtB,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;QACD;YACI,MAAM,EAAE,WAAW;YACnB,UAAU,EAAE,YAAY;YACxB,MAAM,EAAE,SAAS;YACjB,QAAQ,EAAE,EAAE;SACf;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,SAAS;YACjB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,qBAAC;CAAA,AA/DD,IA+DC;AA/DY,wCAAc"}
|
package/dist/models/User.d.ts
CHANGED
package/dist/models/all.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export * from '../models/AppApiRestV2CollectionsEnumsOrderBy';
|
|
|
47
47
|
export * from '../models/AppApiRestV2FunctionsResponsesFunction';
|
|
48
48
|
export * from '../models/AppApiRestV2FunctionsTypesFunction';
|
|
49
49
|
export * from '../models/AppApiRestV2InfoTypesCapability';
|
|
50
|
+
export * from '../models/ArchiveContentEntry';
|
|
50
51
|
export * from '../models/Argument';
|
|
51
52
|
export * from '../models/Artifact';
|
|
52
53
|
export * from '../models/AttemptFailedEvent';
|
|
@@ -309,6 +310,9 @@ export * from '../models/IOC';
|
|
|
309
310
|
export * from '../models/ISA';
|
|
310
311
|
export * from '../models/IconModel';
|
|
311
312
|
export * from '../models/ImportModel';
|
|
313
|
+
export * from '../models/ImportedFunctionCallerEntry';
|
|
314
|
+
export * from '../models/ImportedFunctionDetailOutputBody';
|
|
315
|
+
export * from '../models/ImportedFunctionEntry';
|
|
312
316
|
export * from '../models/InlineComment';
|
|
313
317
|
export * from '../models/InsertAnalysisLogRequest';
|
|
314
318
|
export * from '../models/InviteUserInputBody';
|
|
@@ -316,11 +320,13 @@ export * from '../models/IssuerAllowedDomain';
|
|
|
316
320
|
export * from '../models/ListAnalysisFunctionsDataTypesOutputBody';
|
|
317
321
|
export * from '../models/ListAnalysisFunctionsOutputBody';
|
|
318
322
|
export * from '../models/ListAnalysisStringsOutputBody';
|
|
323
|
+
export * from '../models/ListArchiveContentsOutputBody';
|
|
319
324
|
export * from '../models/ListCollectionResults';
|
|
320
325
|
export * from '../models/ListCollectionsOutputBody';
|
|
321
326
|
export * from '../models/ListExampleAnalysesOutputBody';
|
|
322
327
|
export * from '../models/ListFunctionStringsOutputBody';
|
|
323
328
|
export * from '../models/ListFunctionsDataTypesOutputBody';
|
|
329
|
+
export * from '../models/ListImportedFunctionsOutputBody';
|
|
324
330
|
export * from '../models/ListTeamsOutputBody';
|
|
325
331
|
export * from '../models/ListUsersOutputBody';
|
|
326
332
|
export * from '../models/LocationOutputBody';
|
package/dist/models/all.js
CHANGED
|
@@ -63,6 +63,7 @@ __exportStar(require("../models/AppApiRestV2CollectionsEnumsOrderBy"), exports);
|
|
|
63
63
|
__exportStar(require("../models/AppApiRestV2FunctionsResponsesFunction"), exports);
|
|
64
64
|
__exportStar(require("../models/AppApiRestV2FunctionsTypesFunction"), exports);
|
|
65
65
|
__exportStar(require("../models/AppApiRestV2InfoTypesCapability"), exports);
|
|
66
|
+
__exportStar(require("../models/ArchiveContentEntry"), exports);
|
|
66
67
|
__exportStar(require("../models/Argument"), exports);
|
|
67
68
|
__exportStar(require("../models/Artifact"), exports);
|
|
68
69
|
__exportStar(require("../models/AttemptFailedEvent"), exports);
|
|
@@ -325,6 +326,9 @@ __exportStar(require("../models/IOC"), exports);
|
|
|
325
326
|
__exportStar(require("../models/ISA"), exports);
|
|
326
327
|
__exportStar(require("../models/IconModel"), exports);
|
|
327
328
|
__exportStar(require("../models/ImportModel"), exports);
|
|
329
|
+
__exportStar(require("../models/ImportedFunctionCallerEntry"), exports);
|
|
330
|
+
__exportStar(require("../models/ImportedFunctionDetailOutputBody"), exports);
|
|
331
|
+
__exportStar(require("../models/ImportedFunctionEntry"), exports);
|
|
328
332
|
__exportStar(require("../models/InlineComment"), exports);
|
|
329
333
|
__exportStar(require("../models/InsertAnalysisLogRequest"), exports);
|
|
330
334
|
__exportStar(require("../models/InviteUserInputBody"), exports);
|
|
@@ -332,11 +336,13 @@ __exportStar(require("../models/IssuerAllowedDomain"), exports);
|
|
|
332
336
|
__exportStar(require("../models/ListAnalysisFunctionsDataTypesOutputBody"), exports);
|
|
333
337
|
__exportStar(require("../models/ListAnalysisFunctionsOutputBody"), exports);
|
|
334
338
|
__exportStar(require("../models/ListAnalysisStringsOutputBody"), exports);
|
|
339
|
+
__exportStar(require("../models/ListArchiveContentsOutputBody"), exports);
|
|
335
340
|
__exportStar(require("../models/ListCollectionResults"), exports);
|
|
336
341
|
__exportStar(require("../models/ListCollectionsOutputBody"), exports);
|
|
337
342
|
__exportStar(require("../models/ListExampleAnalysesOutputBody"), exports);
|
|
338
343
|
__exportStar(require("../models/ListFunctionStringsOutputBody"), exports);
|
|
339
344
|
__exportStar(require("../models/ListFunctionsDataTypesOutputBody"), exports);
|
|
345
|
+
__exportStar(require("../models/ListImportedFunctionsOutputBody"), exports);
|
|
340
346
|
__exportStar(require("../models/ListTeamsOutputBody"), exports);
|
|
341
347
|
__exportStar(require("../models/ListUsersOutputBody"), exports);
|
|
342
348
|
__exportStar(require("../models/LocationOutputBody"), exports);
|
package/dist/models/all.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"all.js","sourceRoot":"","sources":["../../models/all.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"all.js","sourceRoot":"","sources":["../../models/all.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oEAAiD;AACjD,2EAAwD;AACxD,yEAAsD;AACtD,qDAAkC;AAClC,+DAA4C;AAC5C,qEAAkD;AAClD,8DAA2C;AAC3C,mEAAgD;AAChD,mEAAgD;AAChD,6EAA0D;AAC1D,4EAAyD;AACzD,kEAA+C;AAC/C,6DAA0C;AAC1C,+DAA4C;AAC5C,wEAAqD;AACrD,uEAAoD;AACpD,wEAAqD;AACrD,4EAAyD;AACzD,2DAAwC;AACxC,mEAAgD;AAChD,kEAA+C;AAC/C,mEAAgD;AAChD,mEAAgD;AAChD,kEAA+C;AAC/C,oEAAiD;AACjD,4EAAyD;AACzD,8DAA2C;AAC3C,kEAA+C;AAC/C,+DAA4C;AAC5C,yDAAsC;AACtC,2DAAwC;AACxC,2DAAwC;AACxC,0DAAuC;AACvC,mEAAgD;AAChD,gEAA6C;AAC7C,+DAA4C;AAC5C,oEAAiD;AACjD,0EAAuD;AACvD,yDAAsC;AACtC,kEAA+C;AAC/C,sEAAmD;AACnD,uEAAoD;AACpD,oDAAiC;AACjC,8EAA2D;AAC3D,6EAA0D;AAC1D,gFAA6D;AAC7D,mFAAgE;AAChE,+EAA4D;AAC5D,4EAAyD;AACzD,gEAA6C;AAC7C,qDAAkC;AAClC,qDAAkC;AAClC,+DAA4C;AAC5C,gEAA6C;AAC7C,0DAAuC;AACvC,+DAA4C;AAC5C,gEAA6C;AAC7C,yDAAsC;AACtC,wFAAqE;AACrE,oFAAiE;AACjE,+EAA4D;AAC5D,+EAA4D;AAC5D,gFAA6D;AAC7D,0EAAuD;AACvD,8EAA2D;AAC3D,gFAA6D;AAC7D,sFAAmE;AACnE,qEAAkD;AAClD,mFAAgE;AAChE,8DAA2C;AAC3C,sFAAmE;AACnE,iFAA8D;AAC9D,8EAA2D;AAC3D,gFAA6D;AAC7D,6EAA0D;AAC1D,6DAA0C;AAC1C,uFAAoE;AACpE,qEAAkD;AAClD,kFAA+D;AAC/D,8EAA2D;AAC3D,yFAAsE;AACtE,2EAAwD;AACxD,iFAA8D;AAC9D,qFAAkE;AAClE,wEAAqD;AACrD,uEAAoD;AACpD,gEAA6C;AAC7C,6DAA0C;AAC1C,yEAAsD;AACtD,+EAA4D;AAC5D,mFAAgE;AAChE,0EAAuD;AACvD,8EAA2D;AAC3D,+EAA4D;AAC5D,gFAA6D;AAC7D,gFAA6D;AAC7D,kFAA+D;AAC/D,6EAA0D;AAC1D,8EAA2D;AAC3D,2FAAwE;AACxE,8EAA2D;AAC3D,4EAAyD;AACzD,qEAAkD;AAClD,gFAA6D;AAC7D,iEAA8C;AAC9C,iFAA8D;AAC9D,6DAA0C;AAC1C,uEAAoD;AACpD,+DAA4C;AAC5C,mFAAgE;AAChE,+DAA4C;AAC5C,+EAA4D;AAC5D,+DAA4C;AAC5C,4DAAyC;AACzC,0EAAuD;AACvD,qEAAkD;AAClD,2EAAwD;AACxD,6EAA0D;AAC1D,sGAAmF;AACnF,uEAAoD;AACpD,wEAAqD;AACrD,qEAAkD;AAClD,kDAA+B;AAC/B,mEAAgD;AAChD,oEAAiD;AACjD,iEAA8C;AAC9C,4DAAyC;AACzC,kEAA+C;AAC/C,0EAAuD;AACvD,qEAAkD;AAClD,2EAAwD;AACxD,uEAAoD;AACpD,0EAAuD;AACvD,+DAA4C;AAC5C,mDAAgC;AAChC,gFAA6D;AAC7D,qEAAkD;AAClD,yDAAsC;AACtC,kEAA+C;AAC/C,oEAAiD;AACjD,iEAA8C;AAC9C,+DAA4C;AAC5C,6DAA0C;AAC1C,iEAA8C;AAC9C,sEAAmD;AACnD,sEAAmD;AACnD,qDAAkC;AAClC,gEAA6C;AAC7C,+DAA4C;AAC5C,2EAAwD;AACxD,+DAA4C;AAC5C,yDAAsC;AACtC,sEAAmD;AACnD,mEAAgD;AAChD,4DAAyC;AACzC,kEAA+C;AAC/C,+DAA4C;AAC5C,4EAAyD;AACzD,6EAA0D;AAC1D,qEAAkD;AAClD,oEAAiD;AACjD,+DAA4C;AAC5C,mEAAgD;AAChD,+DAA4C;AAC5C,4EAAyD;AACzD,4DAAyC;AACzC,qEAAkD;AAClD,mEAAgD;AAChD,wEAAqD;AACrD,yEAAsD;AACtD,oEAAiD;AACjD,wDAAqC;AACrC,4DAAyC;AACzC,iEAA8C;AAC9C,yDAAsC;AACtC,2DAAwC;AACxC,iEAA8C;AAC9C,uDAAoC;AACpC,+DAA4C;AAC5C,oDAAiC;AACjC,yDAAsC;AACtC,gEAA6C;AAC7C,mEAAgD;AAChD,qEAAkD;AAClD,2EAAwD;AACxD,sEAAmD;AACnD,uEAAoD;AACpD,sEAAmD;AACnD,iEAA8C;AAC9C,oEAAiD;AACjD,kEAA+C;AAC/C,wEAAqD;AACrD,yEAAsD;AACtD,gEAA6C;AAC7C,gEAA6C;AAC7C,oDAAiC;AACjC,2DAAwC;AACxC,8DAA2C;AAC3C,gEAA6C;AAC7C,wEAAqD;AACrD,8DAA2C;AAC3C,qDAAkC;AAClC,kEAA+C;AAC/C,qDAAkC;AAClC,gEAA6C;AAC7C,mEAAgD;AAChD,2EAAwD;AACxD,2DAAwC;AACxC,qDAAkC;AAClC,0DAAuC;AACvC,uDAAoC;AACpC,wDAAqC;AACrC,uDAAoC;AACpC,sDAAmC;AACnC,4DAAyC;AACzC,4DAAyC;AACzC,wDAAqC;AACrC,sDAAmC;AACnC,uDAAoC;AACpC,kDAA+B;AAC/B,+DAA4C;AAC5C,gEAA6C;AAC7C,kEAA+C;AAC/C,8DAA2C;AAC3C,gEAA6C;AAC7C,uDAAoC;AACpC,8DAA2C;AAC3C,0DAAuC;AACvC,6DAA0C;AAC1C,4DAAyC;AACzC,+DAA4C;AAC5C,8DAA2C;AAC3C,6DAA0C;AAC1C,6DAA0C;AAC1C,6DAA0C;AAC1C,oEAAiD;AACjD,gEAA6C;AAC7C,kEAA+C;AAC/C,8DAA2C;AAC3C,mEAAgD;AAChD,6DAA0C;AAC1C,gEAA6C;AAC7C,+DAA4C;AAC5C,0EAAuD;AACvD,yDAAsC;AACtC,oDAAiC;AACjC,wDAAqC;AACrC,6DAA0C;AAC1C,yDAAsC;AACtC,8DAA2C;AAC3C,uDAAoC;AACpC,uDAAoC;AACpC,yDAAsC;AACtC,oDAAiC;AACjC,qDAAkC;AAClC,6DAA0C;AAC1C,6EAA0D;AAC1D,kEAA+C;AAC/C,mEAAgD;AAChD,6DAA0C;AAC1C,8DAA2C;AAC3C,uEAAoD;AACpD,8DAA2C;AAC3C,kEAA+C;AAC/C,sEAAmD;AACnD,oEAAiD;AACjD,oEAAiD;AACjD,+DAA4C;AAC5C,sEAAmD;AACnD,2DAAwC;AACxC,yDAAsC;AACtC,6DAA0C;AAC1C,0EAAuD;AACvD,4DAAyC;AACzC,0DAAuC;AACvC,oEAAiD;AACjD,oEAAiD;AACjD,qEAAkD;AAClD,gEAA6C;AAC7C,kEAA+C;AAC/C,2DAAwC;AACxC,8DAA2C;AAC3C,mEAAgD;AAChD,iEAA8C;AAC9C,+DAA4C;AAC5C,kEAA+C;AAC/C,2DAAwC;AACxC,+DAA4C;AAC5C,oEAAiD;AACjD,yDAAsC;AACtC,oEAAiD;AACjD,gEAA6C;AAC7C,sEAAmD;AACnD,kEAA+C;AAC/C,iEAA8C;AAC9C,2EAAwD;AACxD,iFAA8D;AAC9D,6EAA0D;AAC1D,+EAA4D;AAC5D,oEAAiD;AACjD,iEAA8C;AAC9C,uEAAoD;AACpD,kEAA+C;AAC/C,kEAA+C;AAC/C,sEAAmD;AACnD,2DAAwC;AACxC,yDAAsC;AACtC,wDAAqC;AACrC,gDAA6B;AAC7B,gDAA6B;AAC7B,sDAAmC;AACnC,wDAAqC;AACrC,wEAAqD;AACrD,6EAA0D;AAC1D,kEAA+C;AAC/C,0DAAuC;AACvC,qEAAkD;AAClD,gEAA6C;AAC7C,gEAA6C;AAC7C,qFAAkE;AAClE,4EAAyD;AACzD,0EAAuD;AACvD,0EAAuD;AACvD,kEAA+C;AAC/C,sEAAmD;AACnD,0EAAuD;AACvD,0EAAuD;AACvD,6EAA0D;AAC1D,4EAAyD;AACzD,gEAA6C;AAC7C,gEAA6C;AAC7C,+DAA4C;AAC5C,iDAA8B;AAC9B,2DAAwC;AACxC,yDAAsC;AACtC,4DAAyC;AACzC,sEAAmD;AACnD,yDAAsC;AACtC,wDAAqC;AACrC,sDAAmC;AACnC,sDAAmC;AACnC,2DAAwC;AACxC,4DAAyC;AACzC,uDAAoC;AACpC,2DAAwC;AACxC,2DAAwC;AACxC,4DAAyC;AACzC,kEAA+C;AAC/C,kDAA+B;AAC/B,yDAAsC;AACtC,8DAA2C;AAC3C,+DAA4C;AAC5C,8DAA2C;AAC3C,0DAAuC;AACvC,oDAAiC;AACjC,4DAAyC;AACzC,mDAAgC;AAChC,mEAAgD;AAChD,6EAA0D;AAC1D,8EAA2D;AAC3D,qEAAkD;AAClD,sEAAmD;AACnD,yEAAsD;AACtD,0EAAuD;AACvD,6DAA0C;AAC1C,yDAAsC;AACtC,wDAAqC;AACrC,qDAAkC;AAClC,wDAAqC;AACrC,yDAAsC;AACtC,iEAA8C;AAC9C,4DAAyC;AACzC,wDAAqC;AACrC,wDAAqC;AACrC,0DAAuC;AACvC,2DAAwC;AACxC,4DAAyC;AACzC,uDAAoC;AACpC,sEAAmD;AACnD,uEAAoD;AACpD,2DAAwC;AACxC,mDAAgC;AAChC,wDAAqC;AACrC,iEAA8C;AAC9C,kEAA+C;AAC/C,8DAA2C;AAC3C,mEAAgD;AAChD,+DAA4C;AAC5C,4DAAyC;AACzC,6DAA0C;AAC1C,6DAA0C;AAC1C,mEAAgD;AAChD,wDAAqC;AACrC,uDAAoC;AACpC,0DAAuC;AACvC,uDAAoC;AACpC,iDAA8B;AAC9B,wDAAqC;AACrC,wDAAqC;AACrC,mEAAgD;AAChD,2DAAwC;AACxC,+DAA4C;AAC5C,2DAAwC;AACxC,+DAA4C;AAC5C,mEAAgD;AAChD,yDAAsC;AACtC,0DAAuC;AACvC,wDAAqC;AACrC,+DAA4C;AAC5C,yDAAsC;AACtC,8DAA2C;AAC3C,uEAAoD;AACpD,qEAAkD;AAClD,gEAA6C;AAC7C,+DAA4C;AAC5C,6DAA0C;AAC1C,6DAA0C;AAC1C,yEAAsD;AACtD,qEAAkD;AAClD,iEAA8C;AAC9C,oEAAiD;AACjD,mEAAgD;AAChD,qEAAkD;AAClD,oEAAiD;AACjD,2EAAwD;AACxD,uEAAoD;AACpD,yEAAsD;AACtD,qEAAkD;AAClD,0EAAuD;AACvD,oEAAiD;AACjD,uEAAoD;AACpD,sEAAmD;AACnD,iFAA8D;AAC9D,0DAAuC;AACvC,wEAAqD;AACrD,8EAA2D;AAC3D,+EAA4D;AAC5D,oEAAiD;AACjD,wDAAqC;AACrC,wDAAqC;AACrC,yDAAsC;AACtC,2DAAwC;AACxC,kFAA+D;AAC/D,yEAAsD;AACtD,4DAAyC;AACzC,yDAAsC;AACtC,sDAAmC;AACnC,4DAAyC;AACzC,sEAAmD;AACnD,wDAAqC;AACrC,oDAAiC;AACjC,gDAA6B;AAC7B,oDAAiC;AACjC,wDAAqC;AACrC,8DAA2C;AAC3C,4DAAyC;AACzC,yDAAsC;AACtC,uDAAoC;AACpC,+DAA4C;AAC5C,0DAAuC;AACvC,iDAA8B;AAC9B,uDAAoC;AACpC,2DAAwC;AACxC,2DAAwC;AACxC,0DAAuC;AACvC,0DAAuC;AACvC,mEAAgD;AAChD,iEAA8C;AAC9C,6EAA0D;AAC1D,gDAA6B;AAC7B,2DAAwC;AACxC,qEAAkD;AAClD,sEAAmD;AACnD,kEAA+C;AAC/C,wEAAqD;AACrD,oEAAiD;AACjD,mEAAgD;AAChD,gEAA6C;AAC7C,uEAAoD;AACpD,gEAA6C;AAC7C,wEAAqD;AACrD,2DAAwC;AACxC,2DAAwC;AACxC,8EAA2D;AAC3D,gEAA6C;AAC7C,qEAAkD;AAClD,iDAA8B;AAC9B,iEAA8C;AAC9C,wDAAqC;AACrC,yDAAsC;AACtC,wDAAqC;AACrC,6DAA0C;AAC1C,2DAAwC;AACxC,wEAAqD;AACrD,4DAAyC;AACzC,2DAAwC;AACxC,8DAA2C;AAC3C,6DAA0C;AAC1C,4DAAyC;AACzC,0DAAuC;AACvC,yDAAsC;AACtC,6DAA0C;AAC1C,sDAAmC;AACnC,6DAA0C;AAC1C,yDAAsC;AACtC,2DAAwC"}
|
|
@@ -119,6 +119,7 @@ import { GetCollectionOutputBody } from '../models/GetCollectionOutputBody';
|
|
|
119
119
|
import { GetMatchesOutputBody } from '../models/GetMatchesOutputBody';
|
|
120
120
|
import { GetMatchesStatusOutputBody } from '../models/GetMatchesStatusOutputBody';
|
|
121
121
|
import { HistoryEntry } from '../models/HistoryEntry';
|
|
122
|
+
import { ImportedFunctionDetailOutputBody } from '../models/ImportedFunctionDetailOutputBody';
|
|
122
123
|
import { InsertAnalysisLogRequest } from '../models/InsertAnalysisLogRequest';
|
|
123
124
|
import { ListAnalysisFunctionsDataTypesOutputBody } from '../models/ListAnalysisFunctionsDataTypesOutputBody';
|
|
124
125
|
import { ListAnalysisFunctionsOutputBody } from '../models/ListAnalysisFunctionsOutputBody';
|
|
@@ -127,6 +128,7 @@ import { ListCollectionsOutputBody } from '../models/ListCollectionsOutputBody';
|
|
|
127
128
|
import { ListExampleAnalysesOutputBody } from '../models/ListExampleAnalysesOutputBody';
|
|
128
129
|
import { ListFunctionStringsOutputBody } from '../models/ListFunctionStringsOutputBody';
|
|
129
130
|
import { ListFunctionsDataTypesOutputBody } from '../models/ListFunctionsDataTypesOutputBody';
|
|
131
|
+
import { ListImportedFunctionsOutputBody } from '../models/ListImportedFunctionsOutputBody';
|
|
130
132
|
import { ModelName } from '../models/ModelName';
|
|
131
133
|
import { Order } from '../models/Order';
|
|
132
134
|
import { PatchCollectionBinariesInputBody } from '../models/PatchCollectionBinariesInputBody';
|
|
@@ -285,9 +287,11 @@ export interface AnalysesCoreApiGetAnalysisFunctionMapRequest {
|
|
|
285
287
|
}
|
|
286
288
|
export interface AnalysesCoreApiGetAnalysisFunctionMatchesRequest {
|
|
287
289
|
analysisId: number;
|
|
290
|
+
matchId?: string;
|
|
288
291
|
}
|
|
289
292
|
export interface AnalysesCoreApiGetAnalysisFunctionMatchingStatusRequest {
|
|
290
293
|
analysisId: number;
|
|
294
|
+
matchId?: string;
|
|
291
295
|
}
|
|
292
296
|
export interface AnalysesCoreApiGetAnalysisLogsRequest {
|
|
293
297
|
analysisId: number;
|
|
@@ -917,16 +921,27 @@ export interface FunctionsCoreApiGetFunctionsCalleesCallersRequest {
|
|
|
917
921
|
functionIds: Array<number>;
|
|
918
922
|
}
|
|
919
923
|
export interface FunctionsCoreApiGetFunctionsMatchesRequest {
|
|
920
|
-
|
|
924
|
+
matchId?: string;
|
|
925
|
+
functionIds?: Array<number>;
|
|
921
926
|
}
|
|
922
927
|
export interface FunctionsCoreApiGetFunctionsMatchingStatusRequest {
|
|
923
|
-
|
|
928
|
+
matchId?: string;
|
|
929
|
+
functionIds?: Array<number>;
|
|
930
|
+
}
|
|
931
|
+
export interface FunctionsCoreApiGetImportedFunctionRequest {
|
|
932
|
+
analysisId: number;
|
|
933
|
+
importedFunctionId: number;
|
|
924
934
|
}
|
|
925
935
|
export interface FunctionsCoreApiListAnalysisFunctionsRequest {
|
|
926
936
|
analysisId: number;
|
|
927
937
|
offset?: number;
|
|
928
938
|
limit?: number;
|
|
929
939
|
}
|
|
940
|
+
export interface FunctionsCoreApiListImportedFunctionsRequest {
|
|
941
|
+
analysisId: number;
|
|
942
|
+
offset?: number;
|
|
943
|
+
limit?: number;
|
|
944
|
+
}
|
|
930
945
|
export interface FunctionsCoreApiStartFunctionsMatchingRequest {
|
|
931
946
|
startMatchingForFunctionsInputBody: StartMatchingForFunctionsInputBody;
|
|
932
947
|
}
|
|
@@ -985,12 +1000,16 @@ export declare class ObjectFunctionsCoreApi {
|
|
|
985
1000
|
getFunctionStrings_5(param: FunctionsCoreApiGetFunctionStrings0Request, options?: ConfigurationOptions): Promise<ListFunctionStringsOutputBody>;
|
|
986
1001
|
getFunctionsCalleesCallersWithHttpInfo(param: FunctionsCoreApiGetFunctionsCalleesCallersRequest, options?: ConfigurationOptions): Promise<HttpInfo<CallEdgesOutputBody>>;
|
|
987
1002
|
getFunctionsCalleesCallers(param: FunctionsCoreApiGetFunctionsCalleesCallersRequest, options?: ConfigurationOptions): Promise<CallEdgesOutputBody>;
|
|
988
|
-
getFunctionsMatchesWithHttpInfo(param
|
|
989
|
-
getFunctionsMatches(param
|
|
990
|
-
getFunctionsMatchingStatusWithHttpInfo(param
|
|
991
|
-
getFunctionsMatchingStatus(param
|
|
1003
|
+
getFunctionsMatchesWithHttpInfo(param?: FunctionsCoreApiGetFunctionsMatchesRequest, options?: ConfigurationOptions): Promise<HttpInfo<GetMatchesOutputBody>>;
|
|
1004
|
+
getFunctionsMatches(param?: FunctionsCoreApiGetFunctionsMatchesRequest, options?: ConfigurationOptions): Promise<GetMatchesOutputBody>;
|
|
1005
|
+
getFunctionsMatchingStatusWithHttpInfo(param?: FunctionsCoreApiGetFunctionsMatchingStatusRequest, options?: ConfigurationOptions): Promise<HttpInfo<GetMatchesStatusOutputBody>>;
|
|
1006
|
+
getFunctionsMatchingStatus(param?: FunctionsCoreApiGetFunctionsMatchingStatusRequest, options?: ConfigurationOptions): Promise<GetMatchesStatusOutputBody>;
|
|
1007
|
+
getImportedFunctionWithHttpInfo(param: FunctionsCoreApiGetImportedFunctionRequest, options?: ConfigurationOptions): Promise<HttpInfo<ImportedFunctionDetailOutputBody>>;
|
|
1008
|
+
getImportedFunction(param: FunctionsCoreApiGetImportedFunctionRequest, options?: ConfigurationOptions): Promise<ImportedFunctionDetailOutputBody>;
|
|
992
1009
|
listAnalysisFunctionsWithHttpInfo(param: FunctionsCoreApiListAnalysisFunctionsRequest, options?: ConfigurationOptions): Promise<HttpInfo<ListAnalysisFunctionsOutputBody>>;
|
|
993
1010
|
listAnalysisFunctions(param: FunctionsCoreApiListAnalysisFunctionsRequest, options?: ConfigurationOptions): Promise<ListAnalysisFunctionsOutputBody>;
|
|
1011
|
+
listImportedFunctionsWithHttpInfo(param: FunctionsCoreApiListImportedFunctionsRequest, options?: ConfigurationOptions): Promise<HttpInfo<ListImportedFunctionsOutputBody>>;
|
|
1012
|
+
listImportedFunctions(param: FunctionsCoreApiListImportedFunctionsRequest, options?: ConfigurationOptions): Promise<ListImportedFunctionsOutputBody>;
|
|
994
1013
|
startFunctionsMatchingWithHttpInfo(param: FunctionsCoreApiStartFunctionsMatchingRequest, options?: ConfigurationOptions): Promise<HttpInfo<StartMatchingOutputBody>>;
|
|
995
1014
|
startFunctionsMatching(param: FunctionsCoreApiStartFunctionsMatchingRequest, options?: ConfigurationOptions): Promise<StartMatchingOutputBody>;
|
|
996
1015
|
}
|
|
@@ -163,16 +163,16 @@ var ObjectAnalysesCoreApi = (function () {
|
|
|
163
163
|
return this.api.getAnalysisFunctionMap(param.analysisId, options).toPromise();
|
|
164
164
|
};
|
|
165
165
|
ObjectAnalysesCoreApi.prototype.getAnalysisFunctionMatchesWithHttpInfo = function (param, options) {
|
|
166
|
-
return this.api.getAnalysisFunctionMatchesWithHttpInfo(param.analysisId, options).toPromise();
|
|
166
|
+
return this.api.getAnalysisFunctionMatchesWithHttpInfo(param.analysisId, param.matchId, options).toPromise();
|
|
167
167
|
};
|
|
168
168
|
ObjectAnalysesCoreApi.prototype.getAnalysisFunctionMatches = function (param, options) {
|
|
169
|
-
return this.api.getAnalysisFunctionMatches(param.analysisId, options).toPromise();
|
|
169
|
+
return this.api.getAnalysisFunctionMatches(param.analysisId, param.matchId, options).toPromise();
|
|
170
170
|
};
|
|
171
171
|
ObjectAnalysesCoreApi.prototype.getAnalysisFunctionMatchingStatusWithHttpInfo = function (param, options) {
|
|
172
|
-
return this.api.getAnalysisFunctionMatchingStatusWithHttpInfo(param.analysisId, options).toPromise();
|
|
172
|
+
return this.api.getAnalysisFunctionMatchingStatusWithHttpInfo(param.analysisId, param.matchId, options).toPromise();
|
|
173
173
|
};
|
|
174
174
|
ObjectAnalysesCoreApi.prototype.getAnalysisFunctionMatchingStatus = function (param, options) {
|
|
175
|
-
return this.api.getAnalysisFunctionMatchingStatus(param.analysisId, options).toPromise();
|
|
175
|
+
return this.api.getAnalysisFunctionMatchingStatus(param.analysisId, param.matchId, options).toPromise();
|
|
176
176
|
};
|
|
177
177
|
ObjectAnalysesCoreApi.prototype.getAnalysisLogsWithHttpInfo = function (param, options) {
|
|
178
178
|
return this.api.getAnalysisLogsWithHttpInfo(param.analysisId, options).toPromise();
|
|
@@ -889,16 +889,26 @@ var ObjectFunctionsCoreApi = (function () {
|
|
|
889
889
|
return this.api.getFunctionsCalleesCallers(param.functionIds, options).toPromise();
|
|
890
890
|
};
|
|
891
891
|
ObjectFunctionsCoreApi.prototype.getFunctionsMatchesWithHttpInfo = function (param, options) {
|
|
892
|
-
|
|
892
|
+
if (param === void 0) { param = {}; }
|
|
893
|
+
return this.api.getFunctionsMatchesWithHttpInfo(param.matchId, param.functionIds, options).toPromise();
|
|
893
894
|
};
|
|
894
895
|
ObjectFunctionsCoreApi.prototype.getFunctionsMatches = function (param, options) {
|
|
895
|
-
|
|
896
|
+
if (param === void 0) { param = {}; }
|
|
897
|
+
return this.api.getFunctionsMatches(param.matchId, param.functionIds, options).toPromise();
|
|
896
898
|
};
|
|
897
899
|
ObjectFunctionsCoreApi.prototype.getFunctionsMatchingStatusWithHttpInfo = function (param, options) {
|
|
898
|
-
|
|
900
|
+
if (param === void 0) { param = {}; }
|
|
901
|
+
return this.api.getFunctionsMatchingStatusWithHttpInfo(param.matchId, param.functionIds, options).toPromise();
|
|
899
902
|
};
|
|
900
903
|
ObjectFunctionsCoreApi.prototype.getFunctionsMatchingStatus = function (param, options) {
|
|
901
|
-
|
|
904
|
+
if (param === void 0) { param = {}; }
|
|
905
|
+
return this.api.getFunctionsMatchingStatus(param.matchId, param.functionIds, options).toPromise();
|
|
906
|
+
};
|
|
907
|
+
ObjectFunctionsCoreApi.prototype.getImportedFunctionWithHttpInfo = function (param, options) {
|
|
908
|
+
return this.api.getImportedFunctionWithHttpInfo(param.analysisId, param.importedFunctionId, options).toPromise();
|
|
909
|
+
};
|
|
910
|
+
ObjectFunctionsCoreApi.prototype.getImportedFunction = function (param, options) {
|
|
911
|
+
return this.api.getImportedFunction(param.analysisId, param.importedFunctionId, options).toPromise();
|
|
902
912
|
};
|
|
903
913
|
ObjectFunctionsCoreApi.prototype.listAnalysisFunctionsWithHttpInfo = function (param, options) {
|
|
904
914
|
return this.api.listAnalysisFunctionsWithHttpInfo(param.analysisId, param.offset, param.limit, options).toPromise();
|
|
@@ -906,6 +916,12 @@ var ObjectFunctionsCoreApi = (function () {
|
|
|
906
916
|
ObjectFunctionsCoreApi.prototype.listAnalysisFunctions = function (param, options) {
|
|
907
917
|
return this.api.listAnalysisFunctions(param.analysisId, param.offset, param.limit, options).toPromise();
|
|
908
918
|
};
|
|
919
|
+
ObjectFunctionsCoreApi.prototype.listImportedFunctionsWithHttpInfo = function (param, options) {
|
|
920
|
+
return this.api.listImportedFunctionsWithHttpInfo(param.analysisId, param.offset, param.limit, options).toPromise();
|
|
921
|
+
};
|
|
922
|
+
ObjectFunctionsCoreApi.prototype.listImportedFunctions = function (param, options) {
|
|
923
|
+
return this.api.listImportedFunctions(param.analysisId, param.offset, param.limit, options).toPromise();
|
|
924
|
+
};
|
|
909
925
|
ObjectFunctionsCoreApi.prototype.startFunctionsMatchingWithHttpInfo = function (param, options) {
|
|
910
926
|
return this.api.startFunctionsMatchingWithHttpInfo(param.startMatchingForFunctionsInputBody, options).toPromise();
|
|
911
927
|
};
|