@product-live/api-sdk 2.4.1 → 2.8.1
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/DataFactoryFileApi.md +182 -0
- package/JobApi.md +333 -0
- package/JobExecutionApi.md +185 -0
- package/README.md +80 -0
- package/TaskApi.md +375 -0
- package/TaskExecutionApi.md +130 -0
- package/VariableApi.md +315 -0
- package/apis/DataFactoryFileApi.ts +252 -133
- package/apis/JobApi.ts +412 -208
- package/apis/JobExecutionApi.ts +237 -121
- package/apis/TaskApi.ts +458 -213
- package/apis/TaskExecutionApi.ts +174 -90
- package/apis/VariableApi.ts +418 -149
- package/apis/baseapi.ts +37 -0
- package/apis/exception.ts +15 -0
- package/auth/auth.ts +107 -0
- package/configuration.ts +82 -0
- package/dist/apis/DataFactoryFileApi.d.ts +14 -19
- package/dist/apis/DataFactoryFileApi.js +340 -103
- package/dist/apis/DataFactoryFileApi.js.map +1 -1
- package/dist/apis/JobApi.d.ts +19 -31
- package/dist/apis/JobApi.js +524 -171
- package/dist/apis/JobApi.js.map +1 -1
- package/dist/apis/JobExecutionApi.d.ts +14 -18
- package/dist/apis/JobExecutionApi.js +320 -88
- package/dist/apis/JobExecutionApi.js.map +1 -1
- package/dist/apis/TaskApi.d.ts +22 -34
- package/dist/apis/TaskApi.js +584 -171
- package/dist/apis/TaskApi.js.map +1 -1
- package/dist/apis/TaskExecutionApi.d.ts +11 -13
- package/dist/apis/TaskExecutionApi.js +242 -62
- package/dist/apis/TaskExecutionApi.js.map +1 -1
- package/dist/apis/VariableApi.d.ts +20 -24
- package/dist/apis/VariableApi.js +508 -119
- package/dist/apis/VariableApi.js.map +1 -1
- package/dist/apis/baseapi.d.ts +18 -0
- package/dist/apis/baseapi.js +46 -0
- package/dist/apis/baseapi.js.map +1 -0
- package/dist/apis/exception.d.ts +10 -0
- package/dist/apis/exception.js +32 -0
- package/dist/apis/exception.js.map +1 -0
- package/dist/auth/auth.d.ts +42 -0
- package/dist/auth/auth.js +45 -0
- package/dist/auth/auth.js.map +1 -0
- package/dist/configuration.d.ts +18 -0
- package/dist/configuration.js +22 -0
- package/dist/configuration.js.map +1 -0
- package/dist/http/http.d.ts +82 -0
- package/dist/http/http.js +229 -0
- package/dist/http/http.js.map +1 -0
- package/dist/http/isomorphic-fetch.d.ts +5 -0
- package/dist/http/isomorphic-fetch.js +34 -0
- package/dist/http/isomorphic-fetch.js.map +1 -0
- package/dist/index.d.ts +10 -3
- package/dist/index.js +17 -3
- package/dist/index.js.map +1 -1
- package/dist/middleware.d.ts +16 -0
- package/dist/middleware.js +18 -0
- package/dist/middleware.js.map +1 -0
- package/dist/models/CreateJobDto.d.ts +27 -24
- package/dist/models/CreateJobDto.js +77 -62
- package/dist/models/CreateJobDto.js.map +1 -1
- package/dist/models/CreateJobExecutionDto.d.ts +18 -9
- package/dist/models/CreateJobExecutionDto.js +29 -38
- package/dist/models/CreateJobExecutionDto.js.map +1 -1
- package/dist/models/CreateTaskDto.d.ts +20 -10
- package/dist/models/CreateTaskDto.js +41 -42
- package/dist/models/CreateTaskDto.js.map +1 -1
- package/dist/models/CreateVariableDto.d.ts +21 -16
- package/dist/models/CreateVariableDto.js +41 -46
- package/dist/models/CreateVariableDto.js.map +1 -1
- package/dist/models/FileDto.d.ts +22 -11
- package/dist/models/FileDto.js +47 -45
- package/dist/models/FileDto.js.map +1 -1
- package/dist/models/FindVariablesRequest.d.ts +24 -0
- package/dist/models/FindVariablesRequest.js +46 -0
- package/dist/models/FindVariablesRequest.js.map +1 -0
- package/dist/models/GetFiles200Response.d.ts +21 -0
- package/dist/models/GetFiles200Response.js +34 -0
- package/dist/models/GetFiles200Response.js.map +1 -0
- package/dist/models/GetJobExecutionById400Response.d.ts +17 -0
- package/dist/models/GetJobExecutionById400Response.js +22 -0
- package/dist/models/GetJobExecutionById400Response.js.map +1 -0
- package/dist/models/GetJobExecutions200Response.d.ts +21 -0
- package/dist/models/GetJobExecutions200Response.js +34 -0
- package/dist/models/GetJobExecutions200Response.js.map +1 -0
- package/dist/models/GetJobs200Response.d.ts +21 -0
- package/dist/models/GetJobs200Response.js +34 -0
- package/dist/models/GetJobs200Response.js.map +1 -0
- package/dist/models/GetTasks200Response.d.ts +21 -0
- package/dist/models/GetTasks200Response.js +34 -0
- package/dist/models/GetTasks200Response.js.map +1 -0
- package/dist/models/GetVariables200Response.d.ts +21 -0
- package/dist/models/GetVariables200Response.js +34 -0
- package/dist/models/GetVariables200Response.js.map +1 -0
- package/dist/models/HighOrderQuery.d.ts +20 -0
- package/dist/models/HighOrderQuery.js +28 -0
- package/dist/models/HighOrderQuery.js.map +1 -0
- package/dist/models/JobDto.d.ts +32 -28
- package/dist/models/JobDto.js +101 -74
- package/dist/models/JobDto.js.map +1 -1
- package/dist/models/JobExecutionDto.d.ts +28 -33
- package/dist/models/JobExecutionDto.js +83 -77
- package/dist/models/JobExecutionDto.js.map +1 -1
- package/dist/models/LowOrderQuery.d.ts +22 -0
- package/dist/models/LowOrderQuery.js +40 -0
- package/dist/models/LowOrderQuery.js.map +1 -0
- package/dist/models/LowOrderQueryValue.d.ts +16 -0
- package/dist/models/LowOrderQueryValue.js +15 -0
- package/dist/models/LowOrderQueryValue.js.map +1 -0
- package/dist/models/ObjectSerializer.d.ts +34 -0
- package/dist/models/ObjectSerializer.js +313 -0
- package/dist/models/ObjectSerializer.js.map +1 -0
- package/dist/models/PatchTaskExecutionDto.d.ts +19 -13
- package/dist/models/PatchTaskExecutionDto.js +29 -40
- package/dist/models/PatchTaskExecutionDto.js.map +1 -1
- package/dist/models/Query.d.ts +18 -0
- package/dist/models/Query.js +22 -0
- package/dist/models/Query.js.map +1 -0
- package/dist/models/TaskDto.d.ts +25 -14
- package/dist/models/TaskDto.js +65 -54
- package/dist/models/TaskDto.js.map +1 -1
- package/dist/models/TaskExecutionDto.d.ts +25 -21
- package/dist/models/TaskExecutionDto.js +59 -58
- package/dist/models/TaskExecutionDto.js.map +1 -1
- package/dist/models/UpdateJobDto.d.ts +28 -25
- package/dist/models/UpdateJobDto.js +83 -65
- package/dist/models/UpdateJobDto.js.map +1 -1
- package/dist/models/UpdateTaskDto.d.ts +21 -11
- package/dist/models/UpdateTaskDto.js +47 -45
- package/dist/models/UpdateTaskDto.js.map +1 -1
- package/dist/models/UpdateVariableDto.d.ts +22 -17
- package/dist/models/UpdateVariableDto.js +47 -49
- package/dist/models/UpdateVariableDto.js.map +1 -1
- package/dist/models/VariableDto.d.ts +26 -20
- package/dist/models/VariableDto.js +65 -58
- package/dist/models/VariableDto.js.map +1 -1
- package/dist/models/all.d.ts +25 -0
- package/dist/models/all.js +42 -0
- package/dist/models/all.js.map +1 -0
- package/dist/rxjsStub.d.ts +10 -0
- package/dist/rxjsStub.js +33 -0
- package/dist/rxjsStub.js.map +1 -0
- package/dist/servers.d.ts +17 -0
- package/dist/servers.js +32 -0
- package/dist/servers.js.map +1 -0
- package/dist/types/ObjectParamAPI.d.ts +160 -0
- package/dist/types/ObjectParamAPI.js +129 -0
- package/dist/types/ObjectParamAPI.js.map +1 -0
- package/dist/types/ObservableAPI.d.ts +89 -0
- package/dist/types/ObservableAPI.js +642 -0
- package/dist/types/ObservableAPI.js.map +1 -0
- package/dist/types/PromiseAPI.d.ts +76 -0
- package/dist/types/PromiseAPI.js +148 -0
- package/dist/types/PromiseAPI.js.map +1 -0
- package/dist/util.d.ts +2 -0
- package/dist/util.js +29 -0
- package/dist/util.js.map +1 -0
- package/git_push.sh +51 -0
- package/http/http.ts +229 -0
- package/http/isomorphic-fetch.ts +32 -0
- package/index.ts +12 -5
- package/middleware.ts +66 -0
- package/models/CreateJobDto.ts +88 -144
- package/models/CreateJobExecutionDto.ts +29 -71
- package/models/CreateTaskDto.ts +43 -82
- package/models/CreateVariableDto.ts +46 -92
- package/models/FileDto.ts +53 -91
- package/models/FindVariablesRequest.ts +70 -0
- package/models/GetFiles200Response.ts +53 -0
- package/models/GetJobExecutionById400Response.ts +35 -0
- package/models/GetJobExecutions200Response.ts +53 -0
- package/models/GetJobs200Response.ts +53 -0
- package/models/GetTasks200Response.ts +53 -0
- package/models/GetVariables200Response.ts +53 -0
- package/models/HighOrderQuery.ts +46 -0
- package/models/JobDto.ts +117 -180
- package/models/JobExecutionDto.ts +95 -165
- package/models/LowOrderQuery.ts +60 -0
- package/models/LowOrderQueryValue.ts +29 -0
- package/models/ObjectSerializer.ts +324 -0
- package/models/PatchTaskExecutionDto.ts +36 -78
- package/models/Query.ts +38 -0
- package/models/TaskDto.ts +74 -118
- package/models/TaskExecutionDto.ts +68 -123
- package/models/UpdateJobDto.ts +95 -153
- package/models/UpdateTaskDto.ts +50 -91
- package/models/UpdateVariableDto.ts +53 -101
- package/models/VariableDto.ts +75 -128
- package/models/all.ts +25 -0
- package/package.json +35 -10
- package/rxjsStub.ts +27 -0
- package/servers.ts +55 -0
- package/types/ObjectParamAPI.ts +580 -0
- package/types/ObservableAPI.ts +701 -0
- package/types/PromiseAPI.ts +370 -0
- package/util.ts +37 -0
- package/apis/index.ts +0 -8
- package/dist/apis/index.d.ts +0 -6
- package/dist/apis/index.js +0 -23
- package/dist/apis/index.js.map +0 -1
- package/dist/models/FileControllerGetFiles200Response.d.ts +0 -14
- package/dist/models/FileControllerGetFiles200Response.js +0 -43
- package/dist/models/FileControllerGetFiles200Response.js.map +0 -1
- package/dist/models/JobControllerList200Response.d.ts +0 -14
- package/dist/models/JobControllerList200Response.js +0 -43
- package/dist/models/JobControllerList200Response.js.map +0 -1
- package/dist/models/JobDtoPeriodicityInner.d.ts +0 -8
- package/dist/models/JobDtoPeriodicityInner.js +0 -37
- package/dist/models/JobDtoPeriodicityInner.js.map +0 -1
- package/dist/models/JobDtoTasksInner.d.ts +0 -14
- package/dist/models/JobDtoTasksInner.js +0 -45
- package/dist/models/JobDtoTasksInner.js.map +0 -1
- package/dist/models/JobDtoTitleLocal.d.ts +0 -8
- package/dist/models/JobDtoTitleLocal.js +0 -37
- package/dist/models/JobDtoTitleLocal.js.map +0 -1
- package/dist/models/JobExecutionControllerGetOne400Response.d.ts +0 -7
- package/dist/models/JobExecutionControllerGetOne400Response.js +0 -35
- package/dist/models/JobExecutionControllerGetOne400Response.js.map +0 -1
- package/dist/models/JobExecutionControllerList200Response.d.ts +0 -14
- package/dist/models/JobExecutionControllerList200Response.js +0 -43
- package/dist/models/JobExecutionControllerList200Response.js.map +0 -1
- package/dist/models/JobExecutionDtoInfo.d.ts +0 -7
- package/dist/models/JobExecutionDtoInfo.js +0 -35
- package/dist/models/JobExecutionDtoInfo.js.map +0 -1
- package/dist/models/TaskControllerList200Response.d.ts +0 -14
- package/dist/models/TaskControllerList200Response.js +0 -43
- package/dist/models/TaskControllerList200Response.js.map +0 -1
- package/dist/models/TaskDtoInputKeysInner.d.ts +0 -8
- package/dist/models/TaskDtoInputKeysInner.js +0 -37
- package/dist/models/TaskDtoInputKeysInner.js.map +0 -1
- package/dist/models/VariableControllerList200Response.d.ts +0 -14
- package/dist/models/VariableControllerList200Response.js +0 -43
- package/dist/models/VariableControllerList200Response.js.map +0 -1
- package/dist/models/index.d.ts +0 -20
- package/dist/models/index.js +0 -37
- package/dist/models/index.js.map +0 -1
- package/dist/runtime.d.ts +0 -154
- package/dist/runtime.js +0 -306
- package/dist/runtime.js.map +0 -1
- package/models/ExecuteJob400Response.ts +0 -65
- package/models/ExecuteJobDto.ts +0 -97
- package/models/ExecuteJobDtoInfo.ts +0 -65
- package/models/ExecuteJobDtoJob.ts +0 -81
- package/models/FileControllerGetFiles200Response.ts +0 -98
- package/models/FileCreatedDto.ts +0 -111
- package/models/JobControllerList200Response.ts +0 -98
- package/models/JobDtoPeriodicitiesInner.ts +0 -73
- package/models/JobDtoPeriodicityInner.ts +0 -73
- package/models/JobDtoProject.ts +0 -73
- package/models/JobDtoTasksInner.ts +0 -105
- package/models/JobDtoTitleLocal.ts +0 -73
- package/models/JobExecutionControllerGetOne400Response.ts +0 -65
- package/models/JobExecutionControllerList200Response.ts +0 -98
- package/models/JobExecutionDtoEventsInner.ts +0 -89
- package/models/JobExecutionDtoInfo.ts +0 -65
- package/models/JobExecutionDtoJob.ts +0 -81
- package/models/TaskControllerList200Response.ts +0 -98
- package/models/TaskDtoInputKeysInner.ts +0 -73
- package/models/TaskInstanceDto.ts +0 -143
- package/models/TaskInstanceUpdateDto.ts +0 -107
- package/models/VariableControllerList200Response.ts +0 -98
- package/models/index.ts +0 -22
- package/runtime.ts +0 -425
|
@@ -1,51 +1,46 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Active: 'ACTIVE',
|
|
7
|
-
Archived: 'ARCHIVED',
|
|
8
|
-
Deleted: 'DELETED'
|
|
9
|
-
};
|
|
10
|
-
function instanceOfCreateVariableDto(value) {
|
|
11
|
-
let isInstance = true;
|
|
12
|
-
isInstance = isInstance && "key" in value;
|
|
13
|
-
isInstance = isInstance && "name" in value;
|
|
14
|
-
isInstance = isInstance && "value" in value;
|
|
15
|
-
return isInstance;
|
|
16
|
-
}
|
|
17
|
-
exports.instanceOfCreateVariableDto = instanceOfCreateVariableDto;
|
|
18
|
-
function CreateVariableDtoFromJSON(json) {
|
|
19
|
-
return CreateVariableDtoFromJSONTyped(json, false);
|
|
20
|
-
}
|
|
21
|
-
exports.CreateVariableDtoFromJSON = CreateVariableDtoFromJSON;
|
|
22
|
-
function CreateVariableDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
23
|
-
if ((json === undefined) || (json === null)) {
|
|
24
|
-
return json;
|
|
3
|
+
exports.CreateVariableDto = void 0;
|
|
4
|
+
var CreateVariableDto = (function () {
|
|
5
|
+
function CreateVariableDto() {
|
|
25
6
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
'name': json['name'],
|
|
29
|
-
'status': !(0, runtime_1.exists)(json, 'status') ? undefined : json['status'],
|
|
30
|
-
'value': json['value'],
|
|
31
|
-
'secret': !(0, runtime_1.exists)(json, 'secret') ? undefined : json['secret'],
|
|
7
|
+
CreateVariableDto.getAttributeTypeMap = function () {
|
|
8
|
+
return CreateVariableDto.attributeTypeMap;
|
|
32
9
|
};
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
10
|
+
CreateVariableDto.discriminator = undefined;
|
|
11
|
+
CreateVariableDto.attributeTypeMap = [
|
|
12
|
+
{
|
|
13
|
+
"name": "key",
|
|
14
|
+
"baseName": "key",
|
|
15
|
+
"type": "string",
|
|
16
|
+
"format": ""
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "name",
|
|
20
|
+
"baseName": "name",
|
|
21
|
+
"type": "string",
|
|
22
|
+
"format": ""
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "status",
|
|
26
|
+
"baseName": "status",
|
|
27
|
+
"type": "CreateVariableDtoStatusEnum",
|
|
28
|
+
"format": ""
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "value",
|
|
32
|
+
"baseName": "value",
|
|
33
|
+
"type": "string",
|
|
34
|
+
"format": ""
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "secret",
|
|
38
|
+
"baseName": "secret",
|
|
39
|
+
"type": "boolean",
|
|
40
|
+
"format": ""
|
|
41
|
+
}
|
|
42
|
+
];
|
|
43
|
+
return CreateVariableDto;
|
|
44
|
+
}());
|
|
45
|
+
exports.CreateVariableDto = CreateVariableDto;
|
|
51
46
|
//# sourceMappingURL=CreateVariableDto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreateVariableDto.js","sourceRoot":"","sources":["../../models/CreateVariableDto.ts"],"names":[],"mappings":";;;AAcA
|
|
1
|
+
{"version":3,"file":"CreateVariableDto.js","sourceRoot":"","sources":["../../models/CreateVariableDto.ts"],"names":[],"mappings":";;;AAcA;IA6CI;IACA,CAAC;IALM,qCAAmB,GAA1B;QACI,OAAO,iBAAiB,CAAC,gBAAgB,CAAC;IAC9C,CAAC;IApCe,+BAAa,GAAuB,SAAS,CAAC;IAE9C,kCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,KAAK;YACb,UAAU,EAAE,KAAK;YACjB,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,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,6BAA6B;YACrC,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,SAAS;YACjB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,wBAAC;CAAA,AA/CD,IA+CC;AA/CY,8CAAiB"}
|
package/dist/models/FileDto.d.ts
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
|
-
export
|
|
2
|
-
object:
|
|
3
|
-
id: string;
|
|
4
|
-
createdAt: string;
|
|
5
|
-
updatedAt: string;
|
|
6
|
-
url: string;
|
|
7
|
-
filename: string;
|
|
1
|
+
export declare class FileDto {
|
|
2
|
+
'object': FileDtoObjectEnum;
|
|
3
|
+
'id': string;
|
|
4
|
+
'createdAt': string;
|
|
5
|
+
'updatedAt': string;
|
|
6
|
+
'url': string;
|
|
7
|
+
'filename': string;
|
|
8
|
+
static readonly discriminator: string | 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();
|
|
8
22
|
}
|
|
9
|
-
export
|
|
10
|
-
export declare function FileDtoFromJSON(json: any): FileDto;
|
|
11
|
-
export declare function FileDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileDto;
|
|
12
|
-
export declare function FileDtoToJSON(value?: FileDto | null): any;
|
|
23
|
+
export type FileDtoObjectEnum = "data_factory_file";
|
package/dist/models/FileDto.js
CHANGED
|
@@ -1,50 +1,52 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
5
|
-
|
|
6
|
-
isInstance = isInstance && "object" in value;
|
|
7
|
-
isInstance = isInstance && "id" in value;
|
|
8
|
-
isInstance = isInstance && "createdAt" in value;
|
|
9
|
-
isInstance = isInstance && "updatedAt" in value;
|
|
10
|
-
isInstance = isInstance && "url" in value;
|
|
11
|
-
isInstance = isInstance && "filename" in value;
|
|
12
|
-
return isInstance;
|
|
13
|
-
}
|
|
14
|
-
exports.instanceOfFileDto = instanceOfFileDto;
|
|
15
|
-
function FileDtoFromJSON(json) {
|
|
16
|
-
return FileDtoFromJSONTyped(json, false);
|
|
17
|
-
}
|
|
18
|
-
exports.FileDtoFromJSON = FileDtoFromJSON;
|
|
19
|
-
function FileDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
20
|
-
if ((json === undefined) || (json === null)) {
|
|
21
|
-
return json;
|
|
3
|
+
exports.FileDto = void 0;
|
|
4
|
+
var FileDto = (function () {
|
|
5
|
+
function FileDto() {
|
|
22
6
|
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
'id': json['id'],
|
|
26
|
-
'createdAt': json['createdAt'],
|
|
27
|
-
'updatedAt': json['updatedAt'],
|
|
28
|
-
'url': json['url'],
|
|
29
|
-
'filename': json['filename'],
|
|
7
|
+
FileDto.getAttributeTypeMap = function () {
|
|
8
|
+
return FileDto.attributeTypeMap;
|
|
30
9
|
};
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
10
|
+
FileDto.discriminator = undefined;
|
|
11
|
+
FileDto.attributeTypeMap = [
|
|
12
|
+
{
|
|
13
|
+
"name": "object",
|
|
14
|
+
"baseName": "object",
|
|
15
|
+
"type": "FileDtoObjectEnum",
|
|
16
|
+
"format": ""
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "id",
|
|
20
|
+
"baseName": "id",
|
|
21
|
+
"type": "string",
|
|
22
|
+
"format": ""
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "createdAt",
|
|
26
|
+
"baseName": "createdAt",
|
|
27
|
+
"type": "string",
|
|
28
|
+
"format": ""
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "updatedAt",
|
|
32
|
+
"baseName": "updatedAt",
|
|
33
|
+
"type": "string",
|
|
34
|
+
"format": ""
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "url",
|
|
38
|
+
"baseName": "url",
|
|
39
|
+
"type": "string",
|
|
40
|
+
"format": ""
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "filename",
|
|
44
|
+
"baseName": "filename",
|
|
45
|
+
"type": "string",
|
|
46
|
+
"format": ""
|
|
47
|
+
}
|
|
48
|
+
];
|
|
49
|
+
return FileDto;
|
|
50
|
+
}());
|
|
51
|
+
exports.FileDto = FileDto;
|
|
50
52
|
//# sourceMappingURL=FileDto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileDto.js","sourceRoot":"","sources":["../../models/FileDto.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"FileDto.js","sourceRoot":"","sources":["../../models/FileDto.ts"],"names":[],"mappings":";;;AAcA;IAoDI;IACA,CAAC;IALM,2BAAmB,GAA1B;QACI,OAAO,OAAO,CAAC,gBAAgB,CAAC;IACpC,CAAC;IA1Ce,qBAAa,GAAuB,SAAS,CAAC;IAE9C,wBAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,mBAAmB;YAC3B,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,WAAW;YACnB,UAAU,EAAE,WAAW;YACvB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,WAAW;YACnB,UAAU,EAAE,WAAW;YACvB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,KAAK;YACb,UAAU,EAAE,KAAK;YACjB,MAAM,EAAE,QAAQ;YAChB,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,cAAC;CAAA,AAtDD,IAsDC;AAtDY,0BAAO"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { LowOrderQueryValue } from '../models/LowOrderQueryValue';
|
|
2
|
+
import { Query } from '../models/Query';
|
|
3
|
+
export declare class FindVariablesRequest {
|
|
4
|
+
'type'?: FindVariablesRequestTypeEnum;
|
|
5
|
+
'queries'?: Query;
|
|
6
|
+
'value'?: LowOrderQueryValue;
|
|
7
|
+
'field'?: string;
|
|
8
|
+
'caseSensitive'?: boolean;
|
|
9
|
+
static readonly discriminator: string | 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
|
+
}
|
|
24
|
+
export type FindVariablesRequestTypeEnum = "eq" | "eq" | "search" | "in" | "true" | "false" | "greater" | "greaterOrEqual" | "lower" | "lowerOrEqual";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FindVariablesRequest = void 0;
|
|
4
|
+
var FindVariablesRequest = (function () {
|
|
5
|
+
function FindVariablesRequest() {
|
|
6
|
+
}
|
|
7
|
+
FindVariablesRequest.getAttributeTypeMap = function () {
|
|
8
|
+
return FindVariablesRequest.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
FindVariablesRequest.discriminator = undefined;
|
|
11
|
+
FindVariablesRequest.attributeTypeMap = [
|
|
12
|
+
{
|
|
13
|
+
"name": "type",
|
|
14
|
+
"baseName": "type",
|
|
15
|
+
"type": "FindVariablesRequestTypeEnum",
|
|
16
|
+
"format": ""
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "queries",
|
|
20
|
+
"baseName": "queries",
|
|
21
|
+
"type": "Query",
|
|
22
|
+
"format": ""
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "value",
|
|
26
|
+
"baseName": "value",
|
|
27
|
+
"type": "LowOrderQueryValue",
|
|
28
|
+
"format": ""
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "field",
|
|
32
|
+
"baseName": "field",
|
|
33
|
+
"type": "string",
|
|
34
|
+
"format": ""
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "caseSensitive",
|
|
38
|
+
"baseName": "caseSensitive",
|
|
39
|
+
"type": "boolean",
|
|
40
|
+
"format": ""
|
|
41
|
+
}
|
|
42
|
+
];
|
|
43
|
+
return FindVariablesRequest;
|
|
44
|
+
}());
|
|
45
|
+
exports.FindVariablesRequest = FindVariablesRequest;
|
|
46
|
+
//# sourceMappingURL=FindVariablesRequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FindVariablesRequest.js","sourceRoot":"","sources":["../../models/FindVariablesRequest.ts"],"names":[],"mappings":";;;AAkBA;IA6CI;IACA,CAAC;IALM,wCAAmB,GAA1B;QACI,OAAO,oBAAoB,CAAC,gBAAgB,CAAC;IACjD,CAAC;IApCe,kCAAa,GAAuB,SAAS,CAAC;IAE9C,qCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,8BAA8B;YACtC,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,MAAM,EAAE,OAAO;YACf,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE,oBAAoB;YAC5B,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,eAAe;YACvB,UAAU,EAAE,eAAe;YAC3B,MAAM,EAAE,SAAS;YACjB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,2BAAC;CAAA,AA/CD,IA+CC;AA/CY,oDAAoB"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { FileDto } from '../models/FileDto';
|
|
2
|
+
export declare class GetFiles200Response {
|
|
3
|
+
'object'?: GetFiles200ResponseObjectEnum;
|
|
4
|
+
'totalElements'?: number;
|
|
5
|
+
'data'?: Array<FileDto>;
|
|
6
|
+
static readonly discriminator: string | 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 type GetFiles200ResponseObjectEnum = "list";
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetFiles200Response = void 0;
|
|
4
|
+
var GetFiles200Response = (function () {
|
|
5
|
+
function GetFiles200Response() {
|
|
6
|
+
}
|
|
7
|
+
GetFiles200Response.getAttributeTypeMap = function () {
|
|
8
|
+
return GetFiles200Response.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
GetFiles200Response.discriminator = undefined;
|
|
11
|
+
GetFiles200Response.attributeTypeMap = [
|
|
12
|
+
{
|
|
13
|
+
"name": "object",
|
|
14
|
+
"baseName": "object",
|
|
15
|
+
"type": "GetFiles200ResponseObjectEnum",
|
|
16
|
+
"format": ""
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "totalElements",
|
|
20
|
+
"baseName": "totalElements",
|
|
21
|
+
"type": "number",
|
|
22
|
+
"format": ""
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "data",
|
|
26
|
+
"baseName": "data",
|
|
27
|
+
"type": "Array<FileDto>",
|
|
28
|
+
"format": ""
|
|
29
|
+
}
|
|
30
|
+
];
|
|
31
|
+
return GetFiles200Response;
|
|
32
|
+
}());
|
|
33
|
+
exports.GetFiles200Response = GetFiles200Response;
|
|
34
|
+
//# sourceMappingURL=GetFiles200Response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GetFiles200Response.js","sourceRoot":"","sources":["../../models/GetFiles200Response.ts"],"names":[],"mappings":";;;AAeA;IA+BI;IACA,CAAC;IALM,uCAAmB,GAA1B;QACI,OAAO,mBAAmB,CAAC,gBAAgB,CAAC;IAChD,CAAC;IAxBe,iCAAa,GAAuB,SAAS,CAAC;IAE9C,oCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,+BAA+B;YACvC,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,eAAe;YACvB,UAAU,EAAE,eAAe;YAC3B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,gBAAgB;YACxB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,0BAAC;CAAA,AAjCD,IAiCC;AAjCY,kDAAmB"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare class GetJobExecutionById400Response {
|
|
2
|
+
'message'?: string;
|
|
3
|
+
static readonly discriminator: string | undefined;
|
|
4
|
+
static readonly attributeTypeMap: Array<{
|
|
5
|
+
name: string;
|
|
6
|
+
baseName: string;
|
|
7
|
+
type: string;
|
|
8
|
+
format: string;
|
|
9
|
+
}>;
|
|
10
|
+
static getAttributeTypeMap(): {
|
|
11
|
+
name: string;
|
|
12
|
+
baseName: string;
|
|
13
|
+
type: string;
|
|
14
|
+
format: string;
|
|
15
|
+
}[];
|
|
16
|
+
constructor();
|
|
17
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetJobExecutionById400Response = void 0;
|
|
4
|
+
var GetJobExecutionById400Response = (function () {
|
|
5
|
+
function GetJobExecutionById400Response() {
|
|
6
|
+
}
|
|
7
|
+
GetJobExecutionById400Response.getAttributeTypeMap = function () {
|
|
8
|
+
return GetJobExecutionById400Response.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
GetJobExecutionById400Response.discriminator = undefined;
|
|
11
|
+
GetJobExecutionById400Response.attributeTypeMap = [
|
|
12
|
+
{
|
|
13
|
+
"name": "message",
|
|
14
|
+
"baseName": "message",
|
|
15
|
+
"type": "string",
|
|
16
|
+
"format": ""
|
|
17
|
+
}
|
|
18
|
+
];
|
|
19
|
+
return GetJobExecutionById400Response;
|
|
20
|
+
}());
|
|
21
|
+
exports.GetJobExecutionById400Response = GetJobExecutionById400Response;
|
|
22
|
+
//# sourceMappingURL=GetJobExecutionById400Response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GetJobExecutionById400Response.js","sourceRoot":"","sources":["../../models/GetJobExecutionById400Response.ts"],"names":[],"mappings":";;;AAcA;IAiBI;IACA,CAAC;IALM,kDAAmB,GAA1B;QACI,OAAO,8BAA8B,CAAC,gBAAgB,CAAC;IAC3D,CAAC;IAZe,4CAAa,GAAuB,SAAS,CAAC;IAE9C,+CAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,qCAAC;CAAA,AAnBD,IAmBC;AAnBY,wEAA8B"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { JobExecutionDto } from '../models/JobExecutionDto';
|
|
2
|
+
export declare class GetJobExecutions200Response {
|
|
3
|
+
'object'?: GetJobExecutions200ResponseObjectEnum;
|
|
4
|
+
'totalElements'?: number;
|
|
5
|
+
'data'?: Array<JobExecutionDto>;
|
|
6
|
+
static readonly discriminator: string | 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 type GetJobExecutions200ResponseObjectEnum = "list";
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetJobExecutions200Response = void 0;
|
|
4
|
+
var GetJobExecutions200Response = (function () {
|
|
5
|
+
function GetJobExecutions200Response() {
|
|
6
|
+
}
|
|
7
|
+
GetJobExecutions200Response.getAttributeTypeMap = function () {
|
|
8
|
+
return GetJobExecutions200Response.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
GetJobExecutions200Response.discriminator = undefined;
|
|
11
|
+
GetJobExecutions200Response.attributeTypeMap = [
|
|
12
|
+
{
|
|
13
|
+
"name": "object",
|
|
14
|
+
"baseName": "object",
|
|
15
|
+
"type": "GetJobExecutions200ResponseObjectEnum",
|
|
16
|
+
"format": ""
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "totalElements",
|
|
20
|
+
"baseName": "totalElements",
|
|
21
|
+
"type": "number",
|
|
22
|
+
"format": ""
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "data",
|
|
26
|
+
"baseName": "data",
|
|
27
|
+
"type": "Array<JobExecutionDto>",
|
|
28
|
+
"format": ""
|
|
29
|
+
}
|
|
30
|
+
];
|
|
31
|
+
return GetJobExecutions200Response;
|
|
32
|
+
}());
|
|
33
|
+
exports.GetJobExecutions200Response = GetJobExecutions200Response;
|
|
34
|
+
//# sourceMappingURL=GetJobExecutions200Response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GetJobExecutions200Response.js","sourceRoot":"","sources":["../../models/GetJobExecutions200Response.ts"],"names":[],"mappings":";;;AAeA;IA+BI;IACA,CAAC;IALM,+CAAmB,GAA1B;QACI,OAAO,2BAA2B,CAAC,gBAAgB,CAAC;IACxD,CAAC;IAxBe,yCAAa,GAAuB,SAAS,CAAC;IAE9C,4CAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,uCAAuC;YAC/C,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,eAAe;YACvB,UAAU,EAAE,eAAe;YAC3B,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;KAAK,CAAC;IAQf,kCAAC;CAAA,AAjCD,IAiCC;AAjCY,kEAA2B"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { JobDto } from '../models/JobDto';
|
|
2
|
+
export declare class GetJobs200Response {
|
|
3
|
+
'object'?: GetJobs200ResponseObjectEnum;
|
|
4
|
+
'totalElements'?: number;
|
|
5
|
+
'data'?: Array<JobDto>;
|
|
6
|
+
static readonly discriminator: string | 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 type GetJobs200ResponseObjectEnum = "list";
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetJobs200Response = void 0;
|
|
4
|
+
var GetJobs200Response = (function () {
|
|
5
|
+
function GetJobs200Response() {
|
|
6
|
+
}
|
|
7
|
+
GetJobs200Response.getAttributeTypeMap = function () {
|
|
8
|
+
return GetJobs200Response.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
GetJobs200Response.discriminator = undefined;
|
|
11
|
+
GetJobs200Response.attributeTypeMap = [
|
|
12
|
+
{
|
|
13
|
+
"name": "object",
|
|
14
|
+
"baseName": "object",
|
|
15
|
+
"type": "GetJobs200ResponseObjectEnum",
|
|
16
|
+
"format": ""
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "totalElements",
|
|
20
|
+
"baseName": "totalElements",
|
|
21
|
+
"type": "number",
|
|
22
|
+
"format": ""
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "data",
|
|
26
|
+
"baseName": "data",
|
|
27
|
+
"type": "Array<JobDto>",
|
|
28
|
+
"format": ""
|
|
29
|
+
}
|
|
30
|
+
];
|
|
31
|
+
return GetJobs200Response;
|
|
32
|
+
}());
|
|
33
|
+
exports.GetJobs200Response = GetJobs200Response;
|
|
34
|
+
//# sourceMappingURL=GetJobs200Response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GetJobs200Response.js","sourceRoot":"","sources":["../../models/GetJobs200Response.ts"],"names":[],"mappings":";;;AAeA;IA+BI;IACA,CAAC;IALM,sCAAmB,GAA1B;QACI,OAAO,kBAAkB,CAAC,gBAAgB,CAAC;IAC/C,CAAC;IAxBe,gCAAa,GAAuB,SAAS,CAAC;IAE9C,mCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,8BAA8B;YACtC,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,eAAe;YACvB,UAAU,EAAE,eAAe;YAC3B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,eAAe;YACvB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,yBAAC;CAAA,AAjCD,IAiCC;AAjCY,gDAAkB"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TaskDto } from '../models/TaskDto';
|
|
2
|
+
export declare class GetTasks200Response {
|
|
3
|
+
'object'?: GetTasks200ResponseObjectEnum;
|
|
4
|
+
'totalElements'?: number;
|
|
5
|
+
'data'?: Array<TaskDto>;
|
|
6
|
+
static readonly discriminator: string | 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 type GetTasks200ResponseObjectEnum = "list";
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GetTasks200Response = void 0;
|
|
4
|
+
var GetTasks200Response = (function () {
|
|
5
|
+
function GetTasks200Response() {
|
|
6
|
+
}
|
|
7
|
+
GetTasks200Response.getAttributeTypeMap = function () {
|
|
8
|
+
return GetTasks200Response.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
GetTasks200Response.discriminator = undefined;
|
|
11
|
+
GetTasks200Response.attributeTypeMap = [
|
|
12
|
+
{
|
|
13
|
+
"name": "object",
|
|
14
|
+
"baseName": "object",
|
|
15
|
+
"type": "GetTasks200ResponseObjectEnum",
|
|
16
|
+
"format": ""
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "totalElements",
|
|
20
|
+
"baseName": "totalElements",
|
|
21
|
+
"type": "number",
|
|
22
|
+
"format": ""
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "data",
|
|
26
|
+
"baseName": "data",
|
|
27
|
+
"type": "Array<TaskDto>",
|
|
28
|
+
"format": ""
|
|
29
|
+
}
|
|
30
|
+
];
|
|
31
|
+
return GetTasks200Response;
|
|
32
|
+
}());
|
|
33
|
+
exports.GetTasks200Response = GetTasks200Response;
|
|
34
|
+
//# sourceMappingURL=GetTasks200Response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GetTasks200Response.js","sourceRoot":"","sources":["../../models/GetTasks200Response.ts"],"names":[],"mappings":";;;AAeA;IA+BI;IACA,CAAC;IALM,uCAAmB,GAA1B;QACI,OAAO,mBAAmB,CAAC,gBAAgB,CAAC;IAChD,CAAC;IAxBe,iCAAa,GAAuB,SAAS,CAAC;IAE9C,oCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,+BAA+B;YACvC,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,eAAe;YACvB,UAAU,EAAE,eAAe;YAC3B,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,gBAAgB;YACxB,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,0BAAC;CAAA,AAjCD,IAiCC;AAjCY,kDAAmB"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { VariableDto } from '../models/VariableDto';
|
|
2
|
+
export declare class GetVariables200Response {
|
|
3
|
+
'object'?: GetVariables200ResponseObjectEnum;
|
|
4
|
+
'totalElements'?: number;
|
|
5
|
+
'data'?: Array<VariableDto>;
|
|
6
|
+
static readonly discriminator: string | 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 type GetVariables200ResponseObjectEnum = "list";
|