@product-live/api-sdk 2.5.1 → 2.10.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/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 +414 -201
- package/apis/JobExecutionApi.ts +237 -121
- package/apis/TaskApi.ts +458 -213
- package/apis/TaskExecutionApi.ts +174 -90
- package/apis/VariableApi.ts +406 -195
- 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 -30
- package/dist/apis/JobApi.js +524 -165
- 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 -31
- package/dist/apis/VariableApi.js +506 -153
- 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 -8
- package/dist/models/CreateJobExecutionDto.js +29 -36
- 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 -15
- package/dist/models/FileDto.js +47 -48
- package/dist/models/FileDto.js.map +1 -1
- package/dist/models/FindVariablesRequest.d.ts +24 -7
- package/dist/models/FindVariablesRequest.js +42 -33
- package/dist/models/FindVariablesRequest.js.map +1 -1
- package/dist/models/GetFiles200Response.d.ts +20 -13
- package/dist/models/GetFiles200Response.js +29 -38
- package/dist/models/GetFiles200Response.js.map +1 -1
- package/dist/models/GetJobExecutionById400Response.d.ts +16 -6
- package/dist/models/GetJobExecutionById400Response.js +17 -30
- package/dist/models/GetJobExecutionById400Response.js.map +1 -1
- package/dist/models/GetJobExecutions200Response.d.ts +20 -13
- package/dist/models/GetJobExecutions200Response.js +29 -38
- package/dist/models/GetJobExecutions200Response.js.map +1 -1
- package/dist/models/GetJobs200Response.d.ts +20 -13
- package/dist/models/GetJobs200Response.js +29 -38
- package/dist/models/GetJobs200Response.js.map +1 -1
- package/dist/models/GetTasks200Response.d.ts +20 -13
- package/dist/models/GetTasks200Response.js +29 -38
- package/dist/models/GetTasks200Response.js.map +1 -1
- package/dist/models/GetVariables200Response.d.ts +20 -13
- package/dist/models/GetVariables200Response.js +29 -38
- package/dist/models/GetVariables200Response.js.map +1 -1
- package/dist/models/HighOrderQuery.d.ts +19 -13
- package/dist/models/HighOrderQuery.js +23 -37
- package/dist/models/HighOrderQuery.js.map +1 -1
- package/dist/models/JobDto.d.ts +32 -32
- package/dist/models/JobDto.js +101 -77
- package/dist/models/JobDto.js.map +1 -1
- package/dist/models/JobExecutionDto.d.ts +28 -21
- package/dist/models/JobExecutionDto.js +83 -66
- package/dist/models/JobExecutionDto.js.map +1 -1
- package/dist/models/LowOrderQuery.d.ts +21 -22
- package/dist/models/LowOrderQuery.js +35 -49
- package/dist/models/LowOrderQuery.js.map +1 -1
- 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 +17 -20
- package/dist/models/Query.js +17 -43
- package/dist/models/Query.js.map +1 -1
- package/dist/models/TaskDto.d.ts +25 -18
- package/dist/models/TaskDto.js +65 -57
- package/dist/models/TaskDto.js.map +1 -1
- package/dist/models/TaskExecutionDto.d.ts +25 -25
- package/dist/models/TaskExecutionDto.js +59 -61
- 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 -24
- package/dist/models/VariableDto.js +65 -61
- 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 -63
- package/models/CreateTaskDto.ts +43 -82
- package/models/CreateVariableDto.ts +46 -92
- package/models/FileDto.ts +53 -101
- package/models/FindVariablesRequest.ts +50 -55
- package/models/GetFiles200Response.ts +37 -82
- package/models/GetJobExecutionById400Response.ts +15 -45
- package/models/GetJobExecutions200Response.ts +37 -82
- package/models/GetJobs200Response.ts +37 -82
- package/models/GetTasks200Response.ts +37 -82
- package/models/GetVariables200Response.ts +37 -82
- package/models/HighOrderQuery.ts +30 -75
- package/models/JobDto.ts +117 -188
- package/models/JobExecutionDto.ts +95 -154
- package/models/LowOrderQuery.ts +44 -99
- package/models/LowOrderQueryValue.ts +29 -0
- package/models/ObjectSerializer.ts +324 -0
- package/models/PatchTaskExecutionDto.ts +36 -78
- package/models/Query.ts +18 -65
- package/models/TaskDto.ts +74 -128
- package/models/TaskExecutionDto.ts +68 -131
- package/models/UpdateJobDto.ts +95 -153
- package/models/UpdateTaskDto.ts +50 -91
- package/models/UpdateVariableDto.ts +53 -101
- package/models/VariableDto.ts +75 -136
- 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 -24
- package/dist/models/index.js +0 -41
- 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 -26
- package/runtime.ts +0 -425
package/dist/models/JobDto.js
CHANGED
|
@@ -1,82 +1,106 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
Draft: 'DRAFT',
|
|
7
|
-
Production: 'PRODUCTION',
|
|
8
|
-
Deprecated: 'DEPRECATED',
|
|
9
|
-
Archived: 'ARCHIVED',
|
|
10
|
-
Removed: 'REMOVED'
|
|
11
|
-
};
|
|
12
|
-
exports.JobDtoObjectEnum = {
|
|
13
|
-
Job: 'job'
|
|
14
|
-
};
|
|
15
|
-
function instanceOfJobDto(value) {
|
|
16
|
-
let isInstance = true;
|
|
17
|
-
isInstance = isInstance && "key" in value;
|
|
18
|
-
isInstance = isInstance && "pipelineId" in value;
|
|
19
|
-
isInstance = isInstance && "projectId" in value;
|
|
20
|
-
isInstance = isInstance && "status" in value;
|
|
21
|
-
isInstance = isInstance && "title" in value;
|
|
22
|
-
isInstance = isInstance && "id" in value;
|
|
23
|
-
isInstance = isInstance && "object" in value;
|
|
24
|
-
isInstance = isInstance && "createdAt" in value;
|
|
25
|
-
isInstance = isInstance && "updatedAt" in value;
|
|
26
|
-
return isInstance;
|
|
27
|
-
}
|
|
28
|
-
exports.instanceOfJobDto = instanceOfJobDto;
|
|
29
|
-
function JobDtoFromJSON(json) {
|
|
30
|
-
return JobDtoFromJSONTyped(json, false);
|
|
31
|
-
}
|
|
32
|
-
exports.JobDtoFromJSON = JobDtoFromJSON;
|
|
33
|
-
function JobDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
-
if ((json === undefined) || (json === null)) {
|
|
35
|
-
return json;
|
|
3
|
+
exports.JobDto = void 0;
|
|
4
|
+
var JobDto = (function () {
|
|
5
|
+
function JobDto() {
|
|
36
6
|
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
'periodicity': !(0, runtime_1.exists)(json, 'periodicity') ? undefined : json['periodicity'],
|
|
40
|
-
'pipelineId': json['pipelineId'],
|
|
41
|
-
'projectId': json['projectId'],
|
|
42
|
-
'status': json['status'],
|
|
43
|
-
'title': json['title'],
|
|
44
|
-
'titleLocal': !(0, runtime_1.exists)(json, 'titleLocal') ? undefined : json['titleLocal'],
|
|
45
|
-
'description': !(0, runtime_1.exists)(json, 'description') ? undefined : json['description'],
|
|
46
|
-
'descriptionLocal': !(0, runtime_1.exists)(json, 'descriptionLocal') ? undefined : json['descriptionLocal'],
|
|
47
|
-
'output': !(0, runtime_1.exists)(json, 'output') ? undefined : json['output'],
|
|
48
|
-
'tasks': !(0, runtime_1.exists)(json, 'tasks') ? undefined : json['tasks'],
|
|
49
|
-
'id': json['id'],
|
|
50
|
-
'object': json['object'],
|
|
51
|
-
'createdAt': json['createdAt'],
|
|
52
|
-
'updatedAt': json['updatedAt'],
|
|
7
|
+
JobDto.getAttributeTypeMap = function () {
|
|
8
|
+
return JobDto.attributeTypeMap;
|
|
53
9
|
};
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
10
|
+
JobDto.discriminator = undefined;
|
|
11
|
+
JobDto.attributeTypeMap = [
|
|
12
|
+
{
|
|
13
|
+
"name": "key",
|
|
14
|
+
"baseName": "key",
|
|
15
|
+
"type": "string",
|
|
16
|
+
"format": ""
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "periodicity",
|
|
20
|
+
"baseName": "periodicity",
|
|
21
|
+
"type": "Array<any>",
|
|
22
|
+
"format": ""
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "pipelineId",
|
|
26
|
+
"baseName": "pipelineId",
|
|
27
|
+
"type": "string",
|
|
28
|
+
"format": ""
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "projectId",
|
|
32
|
+
"baseName": "projectId",
|
|
33
|
+
"type": "string",
|
|
34
|
+
"format": ""
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "status",
|
|
38
|
+
"baseName": "status",
|
|
39
|
+
"type": "JobDtoStatusEnum",
|
|
40
|
+
"format": ""
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "title",
|
|
44
|
+
"baseName": "title",
|
|
45
|
+
"type": "string",
|
|
46
|
+
"format": ""
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "titleLocal",
|
|
50
|
+
"baseName": "titleLocal",
|
|
51
|
+
"type": "any",
|
|
52
|
+
"format": ""
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "description",
|
|
56
|
+
"baseName": "description",
|
|
57
|
+
"type": "string",
|
|
58
|
+
"format": ""
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "descriptionLocal",
|
|
62
|
+
"baseName": "descriptionLocal",
|
|
63
|
+
"type": "any",
|
|
64
|
+
"format": ""
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "output",
|
|
68
|
+
"baseName": "output",
|
|
69
|
+
"type": "{ [key: string]: any; }",
|
|
70
|
+
"format": ""
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "tasks",
|
|
74
|
+
"baseName": "tasks",
|
|
75
|
+
"type": "Array<any>",
|
|
76
|
+
"format": ""
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "id",
|
|
80
|
+
"baseName": "id",
|
|
81
|
+
"type": "string",
|
|
82
|
+
"format": ""
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "object",
|
|
86
|
+
"baseName": "object",
|
|
87
|
+
"type": "JobDtoObjectEnum",
|
|
88
|
+
"format": ""
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "createdAt",
|
|
92
|
+
"baseName": "createdAt",
|
|
93
|
+
"type": "string",
|
|
94
|
+
"format": ""
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "updatedAt",
|
|
98
|
+
"baseName": "updatedAt",
|
|
99
|
+
"type": "string",
|
|
100
|
+
"format": ""
|
|
101
|
+
}
|
|
102
|
+
];
|
|
103
|
+
return JobDto;
|
|
104
|
+
}());
|
|
105
|
+
exports.JobDto = JobDto;
|
|
82
106
|
//# sourceMappingURL=JobDto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"JobDto.js","sourceRoot":"","sources":["../../models/JobDto.ts"],"names":[],"mappings":";;;AAcA
|
|
1
|
+
{"version":3,"file":"JobDto.js","sourceRoot":"","sources":["../../models/JobDto.ts"],"names":[],"mappings":";;;AAcA;IAmHI;IACA,CAAC;IALM,0BAAmB,GAA1B;QACI,OAAO,MAAM,CAAC,gBAAgB,CAAC;IACnC,CAAC;IAhGe,oBAAa,GAAuB,SAAS,CAAC;IAE9C,uBAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,KAAK;YACb,UAAU,EAAE,KAAK;YACjB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,aAAa;YACrB,UAAU,EAAE,aAAa;YACzB,MAAM,EAAE,YAAY;YACpB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,YAAY;YACpB,UAAU,EAAE,YAAY;YACxB,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,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,kBAAkB;YAC1B,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,YAAY;YACpB,UAAU,EAAE,YAAY;YACxB,MAAM,EAAE,KAAK;YACb,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,aAAa;YACrB,UAAU,EAAE,aAAa;YACzB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,kBAAkB;YAC1B,UAAU,EAAE,kBAAkB;YAC9B,MAAM,EAAE,KAAK;YACb,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,yBAAyB;YACjC,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE,YAAY;YACpB,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,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,kBAAkB;YAC1B,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;KAAK,CAAC;IAQf,aAAC;CAAA,AArHD,IAqHC;AArHY,wBAAM"}
|
|
@@ -1,26 +1,33 @@
|
|
|
1
|
-
export
|
|
2
|
-
jobId: string;
|
|
3
|
-
info:
|
|
4
|
-
input?: {
|
|
1
|
+
export declare class JobExecutionDto {
|
|
2
|
+
'jobId': string;
|
|
3
|
+
'info': any;
|
|
4
|
+
'input'?: {
|
|
5
5
|
[key: string]: any;
|
|
6
6
|
};
|
|
7
|
-
id: string;
|
|
8
|
-
object: JobExecutionDtoObjectEnum;
|
|
9
|
-
createdAt: string;
|
|
10
|
-
updatedAt: string;
|
|
11
|
-
endedAt: string;
|
|
12
|
-
startedAt: string;
|
|
13
|
-
pipelineId: string;
|
|
14
|
-
status:
|
|
15
|
-
output: {
|
|
7
|
+
'id': string;
|
|
8
|
+
'object': JobExecutionDtoObjectEnum;
|
|
9
|
+
'createdAt': string;
|
|
10
|
+
'updatedAt': string;
|
|
11
|
+
'endedAt': string;
|
|
12
|
+
'startedAt': string;
|
|
13
|
+
'pipelineId': string;
|
|
14
|
+
'status': any;
|
|
15
|
+
'output': {
|
|
16
16
|
[key: string]: any;
|
|
17
17
|
};
|
|
18
|
+
static readonly discriminator: string | undefined;
|
|
19
|
+
static readonly attributeTypeMap: Array<{
|
|
20
|
+
name: string;
|
|
21
|
+
baseName: string;
|
|
22
|
+
type: string;
|
|
23
|
+
format: string;
|
|
24
|
+
}>;
|
|
25
|
+
static getAttributeTypeMap(): {
|
|
26
|
+
name: string;
|
|
27
|
+
baseName: string;
|
|
28
|
+
type: string;
|
|
29
|
+
format: string;
|
|
30
|
+
}[];
|
|
31
|
+
constructor();
|
|
18
32
|
}
|
|
19
|
-
export
|
|
20
|
-
readonly JobExecution: "job_execution";
|
|
21
|
-
};
|
|
22
|
-
export type JobExecutionDtoObjectEnum = typeof JobExecutionDtoObjectEnum[keyof typeof JobExecutionDtoObjectEnum];
|
|
23
|
-
export declare function instanceOfJobExecutionDto(value: object): boolean;
|
|
24
|
-
export declare function JobExecutionDtoFromJSON(json: any): JobExecutionDto;
|
|
25
|
-
export declare function JobExecutionDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobExecutionDto;
|
|
26
|
-
export declare function JobExecutionDtoToJSON(value?: JobExecutionDto | null): any;
|
|
33
|
+
export type JobExecutionDtoObjectEnum = "job_execution";
|
|
@@ -1,71 +1,88 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
JobExecution: 'job_execution'
|
|
7
|
-
};
|
|
8
|
-
function instanceOfJobExecutionDto(value) {
|
|
9
|
-
let isInstance = true;
|
|
10
|
-
isInstance = isInstance && "jobId" in value;
|
|
11
|
-
isInstance = isInstance && "info" in value;
|
|
12
|
-
isInstance = isInstance && "id" in value;
|
|
13
|
-
isInstance = isInstance && "object" in value;
|
|
14
|
-
isInstance = isInstance && "createdAt" in value;
|
|
15
|
-
isInstance = isInstance && "updatedAt" in value;
|
|
16
|
-
isInstance = isInstance && "endedAt" in value;
|
|
17
|
-
isInstance = isInstance && "startedAt" in value;
|
|
18
|
-
isInstance = isInstance && "pipelineId" in value;
|
|
19
|
-
isInstance = isInstance && "status" in value;
|
|
20
|
-
isInstance = isInstance && "output" in value;
|
|
21
|
-
return isInstance;
|
|
22
|
-
}
|
|
23
|
-
exports.instanceOfJobExecutionDto = instanceOfJobExecutionDto;
|
|
24
|
-
function JobExecutionDtoFromJSON(json) {
|
|
25
|
-
return JobExecutionDtoFromJSONTyped(json, false);
|
|
26
|
-
}
|
|
27
|
-
exports.JobExecutionDtoFromJSON = JobExecutionDtoFromJSON;
|
|
28
|
-
function JobExecutionDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
29
|
-
if ((json === undefined) || (json === null)) {
|
|
30
|
-
return json;
|
|
3
|
+
exports.JobExecutionDto = void 0;
|
|
4
|
+
var JobExecutionDto = (function () {
|
|
5
|
+
function JobExecutionDto() {
|
|
31
6
|
}
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
'info': json['info'],
|
|
35
|
-
'input': !(0, runtime_1.exists)(json, 'input') ? undefined : json['input'],
|
|
36
|
-
'id': json['id'],
|
|
37
|
-
'object': json['object'],
|
|
38
|
-
'createdAt': json['createdAt'],
|
|
39
|
-
'updatedAt': json['updatedAt'],
|
|
40
|
-
'endedAt': json['endedAt'],
|
|
41
|
-
'startedAt': json['startedAt'],
|
|
42
|
-
'pipelineId': json['pipelineId'],
|
|
43
|
-
'status': json['status'],
|
|
44
|
-
'output': json['output'],
|
|
7
|
+
JobExecutionDto.getAttributeTypeMap = function () {
|
|
8
|
+
return JobExecutionDto.attributeTypeMap;
|
|
45
9
|
};
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
10
|
+
JobExecutionDto.discriminator = undefined;
|
|
11
|
+
JobExecutionDto.attributeTypeMap = [
|
|
12
|
+
{
|
|
13
|
+
"name": "jobId",
|
|
14
|
+
"baseName": "jobId",
|
|
15
|
+
"type": "string",
|
|
16
|
+
"format": ""
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "info",
|
|
20
|
+
"baseName": "info",
|
|
21
|
+
"type": "any",
|
|
22
|
+
"format": ""
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "input",
|
|
26
|
+
"baseName": "input",
|
|
27
|
+
"type": "{ [key: string]: any; }",
|
|
28
|
+
"format": ""
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "id",
|
|
32
|
+
"baseName": "id",
|
|
33
|
+
"type": "string",
|
|
34
|
+
"format": ""
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "object",
|
|
38
|
+
"baseName": "object",
|
|
39
|
+
"type": "JobExecutionDtoObjectEnum",
|
|
40
|
+
"format": ""
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "createdAt",
|
|
44
|
+
"baseName": "createdAt",
|
|
45
|
+
"type": "string",
|
|
46
|
+
"format": ""
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "updatedAt",
|
|
50
|
+
"baseName": "updatedAt",
|
|
51
|
+
"type": "string",
|
|
52
|
+
"format": ""
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "endedAt",
|
|
56
|
+
"baseName": "endedAt",
|
|
57
|
+
"type": "string",
|
|
58
|
+
"format": ""
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "startedAt",
|
|
62
|
+
"baseName": "startedAt",
|
|
63
|
+
"type": "string",
|
|
64
|
+
"format": ""
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "pipelineId",
|
|
68
|
+
"baseName": "pipelineId",
|
|
69
|
+
"type": "string",
|
|
70
|
+
"format": ""
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "status",
|
|
74
|
+
"baseName": "status",
|
|
75
|
+
"type": "any",
|
|
76
|
+
"format": ""
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "output",
|
|
80
|
+
"baseName": "output",
|
|
81
|
+
"type": "{ [key: string]: any; }",
|
|
82
|
+
"format": ""
|
|
83
|
+
}
|
|
84
|
+
];
|
|
85
|
+
return JobExecutionDto;
|
|
86
|
+
}());
|
|
87
|
+
exports.JobExecutionDto = JobExecutionDto;
|
|
71
88
|
//# sourceMappingURL=JobExecutionDto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"JobExecutionDto.js","sourceRoot":"","sources":["../../models/JobExecutionDto.ts"],"names":[],"mappings":";;;AAcA,
|
|
1
|
+
{"version":3,"file":"JobExecutionDto.js","sourceRoot":"","sources":["../../models/JobExecutionDto.ts"],"names":[],"mappings":";;;AAcA;IA8FI;IACA,CAAC;IALM,mCAAmB,GAA1B;QACI,OAAO,eAAe,CAAC,gBAAgB,CAAC;IAC5C,CAAC;IA9Ee,6BAAa,GAAuB,SAAS,CAAC;IAE9C,gCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,KAAK;YACb,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,OAAO;YACnB,MAAM,EAAE,yBAAyB;YACjC,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,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,2BAA2B;YACnC,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,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,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,YAAY;YACpB,UAAU,EAAE,YAAY;YACxB,MAAM,EAAE,QAAQ;YAChB,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,KAAK;YACb,QAAQ,EAAE,EAAE;SACf;QACD;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,yBAAyB;YACjC,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,sBAAC;CAAA,AAhGD,IAgGC;AAhGY,0CAAe"}
|
|
@@ -1,23 +1,22 @@
|
|
|
1
|
-
import
|
|
2
|
-
export
|
|
3
|
-
value?:
|
|
4
|
-
field?: string;
|
|
5
|
-
caseSensitive?: boolean;
|
|
6
|
-
type?: LowOrderQueryTypeEnum;
|
|
1
|
+
import { LowOrderQueryValue } from '../models/LowOrderQueryValue';
|
|
2
|
+
export declare class LowOrderQuery {
|
|
3
|
+
'value'?: LowOrderQueryValue;
|
|
4
|
+
'field'?: string;
|
|
5
|
+
'caseSensitive'?: boolean;
|
|
6
|
+
'type'?: LowOrderQueryTypeEnum;
|
|
7
|
+
static readonly discriminator: string | 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();
|
|
7
21
|
}
|
|
8
|
-
export
|
|
9
|
-
readonly Eq: "eq";
|
|
10
|
-
readonly Search: "search";
|
|
11
|
-
readonly In: "in";
|
|
12
|
-
readonly True: "true";
|
|
13
|
-
readonly False: "false";
|
|
14
|
-
readonly Greater: "greater";
|
|
15
|
-
readonly GreaterOrEqual: "greaterOrEqual";
|
|
16
|
-
readonly Lower: "lower";
|
|
17
|
-
readonly LowerOrEqual: "lowerOrEqual";
|
|
18
|
-
};
|
|
19
|
-
export type LowOrderQueryTypeEnum = typeof LowOrderQueryTypeEnum[keyof typeof LowOrderQueryTypeEnum];
|
|
20
|
-
export declare function instanceOfLowOrderQuery(value: object): boolean;
|
|
21
|
-
export declare function LowOrderQueryFromJSON(json: any): LowOrderQuery;
|
|
22
|
-
export declare function LowOrderQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): LowOrderQuery;
|
|
23
|
-
export declare function LowOrderQueryToJSON(value?: LowOrderQuery | null): any;
|
|
22
|
+
export type LowOrderQueryTypeEnum = "eq" | "eq" | "search" | "in" | "true" | "false" | "greater" | "greaterOrEqual" | "lower" | "lowerOrEqual";
|
|
@@ -1,54 +1,40 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
exports.LowOrderQueryTypeEnum = {
|
|
7
|
-
Eq: 'eq',
|
|
8
|
-
Eq: 'eq',
|
|
9
|
-
Search: 'search',
|
|
10
|
-
In: 'in',
|
|
11
|
-
True: 'true',
|
|
12
|
-
False: 'false',
|
|
13
|
-
Greater: 'greater',
|
|
14
|
-
GreaterOrEqual: 'greaterOrEqual',
|
|
15
|
-
Lower: 'lower',
|
|
16
|
-
LowerOrEqual: 'lowerOrEqual'
|
|
17
|
-
};
|
|
18
|
-
function instanceOfLowOrderQuery(value) {
|
|
19
|
-
let isInstance = true;
|
|
20
|
-
return isInstance;
|
|
21
|
-
}
|
|
22
|
-
exports.instanceOfLowOrderQuery = instanceOfLowOrderQuery;
|
|
23
|
-
function LowOrderQueryFromJSON(json) {
|
|
24
|
-
return LowOrderQueryFromJSONTyped(json, false);
|
|
25
|
-
}
|
|
26
|
-
exports.LowOrderQueryFromJSON = LowOrderQueryFromJSON;
|
|
27
|
-
function LowOrderQueryFromJSONTyped(json, ignoreDiscriminator) {
|
|
28
|
-
if ((json === undefined) || (json === null)) {
|
|
29
|
-
return json;
|
|
3
|
+
exports.LowOrderQuery = void 0;
|
|
4
|
+
var LowOrderQuery = (function () {
|
|
5
|
+
function LowOrderQuery() {
|
|
30
6
|
}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
'field': !(0, runtime_1.exists)(json, 'field') ? undefined : json['field'],
|
|
34
|
-
'caseSensitive': !(0, runtime_1.exists)(json, 'caseSensitive') ? undefined : json['caseSensitive'],
|
|
35
|
-
'type': !(0, runtime_1.exists)(json, 'type') ? undefined : json['type'],
|
|
7
|
+
LowOrderQuery.getAttributeTypeMap = function () {
|
|
8
|
+
return LowOrderQuery.attributeTypeMap;
|
|
36
9
|
};
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
10
|
+
LowOrderQuery.discriminator = undefined;
|
|
11
|
+
LowOrderQuery.attributeTypeMap = [
|
|
12
|
+
{
|
|
13
|
+
"name": "value",
|
|
14
|
+
"baseName": "value",
|
|
15
|
+
"type": "LowOrderQueryValue",
|
|
16
|
+
"format": ""
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "field",
|
|
20
|
+
"baseName": "field",
|
|
21
|
+
"type": "string",
|
|
22
|
+
"format": ""
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "caseSensitive",
|
|
26
|
+
"baseName": "caseSensitive",
|
|
27
|
+
"type": "boolean",
|
|
28
|
+
"format": ""
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "type",
|
|
32
|
+
"baseName": "type",
|
|
33
|
+
"type": "LowOrderQueryTypeEnum",
|
|
34
|
+
"format": ""
|
|
35
|
+
}
|
|
36
|
+
];
|
|
37
|
+
return LowOrderQuery;
|
|
38
|
+
}());
|
|
39
|
+
exports.LowOrderQuery = LowOrderQuery;
|
|
54
40
|
//# sourceMappingURL=LowOrderQuery.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LowOrderQuery.js","sourceRoot":"","sources":["../../models/LowOrderQuery.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"LowOrderQuery.js","sourceRoot":"","sources":["../../models/LowOrderQuery.ts"],"names":[],"mappings":";;;AAeA;IAsCI;IACA,CAAC;IALM,iCAAmB,GAA1B;QACI,OAAO,aAAa,CAAC,gBAAgB,CAAC;IAC1C,CAAC;IA9Be,2BAAa,GAAuB,SAAS,CAAC;IAE9C,8BAAgB,GAA0E;QACtG;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;QACD;YACI,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,MAAM;YAClB,MAAM,EAAE,uBAAuB;YAC/B,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,oBAAC;CAAA,AAxCD,IAwCC;AAxCY,sCAAa"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare class LowOrderQueryValue {
|
|
2
|
+
static readonly discriminator: string | undefined;
|
|
3
|
+
static readonly attributeTypeMap: Array<{
|
|
4
|
+
name: string;
|
|
5
|
+
baseName: string;
|
|
6
|
+
type: string;
|
|
7
|
+
format: string;
|
|
8
|
+
}>;
|
|
9
|
+
static getAttributeTypeMap(): {
|
|
10
|
+
name: string;
|
|
11
|
+
baseName: string;
|
|
12
|
+
type: string;
|
|
13
|
+
format: string;
|
|
14
|
+
}[];
|
|
15
|
+
constructor();
|
|
16
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LowOrderQueryValue = void 0;
|
|
4
|
+
var LowOrderQueryValue = (function () {
|
|
5
|
+
function LowOrderQueryValue() {
|
|
6
|
+
}
|
|
7
|
+
LowOrderQueryValue.getAttributeTypeMap = function () {
|
|
8
|
+
return LowOrderQueryValue.attributeTypeMap;
|
|
9
|
+
};
|
|
10
|
+
LowOrderQueryValue.discriminator = undefined;
|
|
11
|
+
LowOrderQueryValue.attributeTypeMap = [];
|
|
12
|
+
return LowOrderQueryValue;
|
|
13
|
+
}());
|
|
14
|
+
exports.LowOrderQueryValue = LowOrderQueryValue;
|
|
15
|
+
//# sourceMappingURL=LowOrderQueryValue.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LowOrderQueryValue.js","sourceRoot":"","sources":["../../models/LowOrderQueryValue.ts"],"names":[],"mappings":";;;AAcA;IAWI;IACA,CAAC;IALM,sCAAmB,GAA1B;QACI,OAAO,kBAAkB,CAAC,gBAAgB,CAAC;IAC/C,CAAC;IAPe,gCAAa,GAAuB,SAAS,CAAC;IAE9C,mCAAgB,GAA0E,EACzG,CAAC;IAQN,yBAAC;CAAA,AAbD,IAaC;AAbY,gDAAkB"}
|