@product-live/api-sdk 2.5.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 +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
|
@@ -1,43 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
exports.GetJobExecutions200ResponseObjectEnum = {
|
|
7
|
-
List: 'list'
|
|
8
|
-
};
|
|
9
|
-
function instanceOfGetJobExecutions200Response(value) {
|
|
10
|
-
let isInstance = true;
|
|
11
|
-
return isInstance;
|
|
12
|
-
}
|
|
13
|
-
exports.instanceOfGetJobExecutions200Response = instanceOfGetJobExecutions200Response;
|
|
14
|
-
function GetJobExecutions200ResponseFromJSON(json) {
|
|
15
|
-
return GetJobExecutions200ResponseFromJSONTyped(json, false);
|
|
16
|
-
}
|
|
17
|
-
exports.GetJobExecutions200ResponseFromJSON = GetJobExecutions200ResponseFromJSON;
|
|
18
|
-
function GetJobExecutions200ResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
-
if ((json === undefined) || (json === null)) {
|
|
20
|
-
return json;
|
|
3
|
+
exports.GetJobExecutions200Response = void 0;
|
|
4
|
+
var GetJobExecutions200Response = (function () {
|
|
5
|
+
function GetJobExecutions200Response() {
|
|
21
6
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
'totalElements': !(0, runtime_1.exists)(json, 'totalElements') ? undefined : json['totalElements'],
|
|
25
|
-
'data': !(0, runtime_1.exists)(json, 'data') ? undefined : (json['data'].map(JobExecutionDto_1.JobExecutionDtoFromJSON)),
|
|
7
|
+
GetJobExecutions200Response.getAttributeTypeMap = function () {
|
|
8
|
+
return GetJobExecutions200Response.attributeTypeMap;
|
|
26
9
|
};
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
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;
|
|
43
34
|
//# sourceMappingURL=GetJobExecutions200Response.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GetJobExecutions200Response.js","sourceRoot":"","sources":["../../models/GetJobExecutions200Response.ts"],"names":[],"mappings":";;;
|
|
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"}
|
|
@@ -1,14 +1,21 @@
|
|
|
1
|
-
import
|
|
2
|
-
export
|
|
3
|
-
object?: GetJobs200ResponseObjectEnum;
|
|
4
|
-
totalElements?: number;
|
|
5
|
-
data?: Array<JobDto>;
|
|
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();
|
|
6
20
|
}
|
|
7
|
-
export
|
|
8
|
-
readonly List: "list";
|
|
9
|
-
};
|
|
10
|
-
export type GetJobs200ResponseObjectEnum = typeof GetJobs200ResponseObjectEnum[keyof typeof GetJobs200ResponseObjectEnum];
|
|
11
|
-
export declare function instanceOfGetJobs200Response(value: object): boolean;
|
|
12
|
-
export declare function GetJobs200ResponseFromJSON(json: any): GetJobs200Response;
|
|
13
|
-
export declare function GetJobs200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetJobs200Response;
|
|
14
|
-
export declare function GetJobs200ResponseToJSON(value?: GetJobs200Response | null): any;
|
|
21
|
+
export type GetJobs200ResponseObjectEnum = "list";
|
|
@@ -1,43 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
exports.GetJobs200ResponseObjectEnum = {
|
|
7
|
-
List: 'list'
|
|
8
|
-
};
|
|
9
|
-
function instanceOfGetJobs200Response(value) {
|
|
10
|
-
let isInstance = true;
|
|
11
|
-
return isInstance;
|
|
12
|
-
}
|
|
13
|
-
exports.instanceOfGetJobs200Response = instanceOfGetJobs200Response;
|
|
14
|
-
function GetJobs200ResponseFromJSON(json) {
|
|
15
|
-
return GetJobs200ResponseFromJSONTyped(json, false);
|
|
16
|
-
}
|
|
17
|
-
exports.GetJobs200ResponseFromJSON = GetJobs200ResponseFromJSON;
|
|
18
|
-
function GetJobs200ResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
-
if ((json === undefined) || (json === null)) {
|
|
20
|
-
return json;
|
|
3
|
+
exports.GetJobs200Response = void 0;
|
|
4
|
+
var GetJobs200Response = (function () {
|
|
5
|
+
function GetJobs200Response() {
|
|
21
6
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
'totalElements': !(0, runtime_1.exists)(json, 'totalElements') ? undefined : json['totalElements'],
|
|
25
|
-
'data': !(0, runtime_1.exists)(json, 'data') ? undefined : (json['data'].map(JobDto_1.JobDtoFromJSON)),
|
|
7
|
+
GetJobs200Response.getAttributeTypeMap = function () {
|
|
8
|
+
return GetJobs200Response.attributeTypeMap;
|
|
26
9
|
};
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
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;
|
|
43
34
|
//# sourceMappingURL=GetJobs200Response.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GetJobs200Response.js","sourceRoot":"","sources":["../../models/GetJobs200Response.ts"],"names":[],"mappings":";;;
|
|
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"}
|
|
@@ -1,14 +1,21 @@
|
|
|
1
|
-
import
|
|
2
|
-
export
|
|
3
|
-
object?: GetTasks200ResponseObjectEnum;
|
|
4
|
-
totalElements?: number;
|
|
5
|
-
data?: Array<TaskDto>;
|
|
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();
|
|
6
20
|
}
|
|
7
|
-
export
|
|
8
|
-
readonly List: "list";
|
|
9
|
-
};
|
|
10
|
-
export type GetTasks200ResponseObjectEnum = typeof GetTasks200ResponseObjectEnum[keyof typeof GetTasks200ResponseObjectEnum];
|
|
11
|
-
export declare function instanceOfGetTasks200Response(value: object): boolean;
|
|
12
|
-
export declare function GetTasks200ResponseFromJSON(json: any): GetTasks200Response;
|
|
13
|
-
export declare function GetTasks200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTasks200Response;
|
|
14
|
-
export declare function GetTasks200ResponseToJSON(value?: GetTasks200Response | null): any;
|
|
21
|
+
export type GetTasks200ResponseObjectEnum = "list";
|
|
@@ -1,43 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
exports.GetTasks200ResponseObjectEnum = {
|
|
7
|
-
List: 'list'
|
|
8
|
-
};
|
|
9
|
-
function instanceOfGetTasks200Response(value) {
|
|
10
|
-
let isInstance = true;
|
|
11
|
-
return isInstance;
|
|
12
|
-
}
|
|
13
|
-
exports.instanceOfGetTasks200Response = instanceOfGetTasks200Response;
|
|
14
|
-
function GetTasks200ResponseFromJSON(json) {
|
|
15
|
-
return GetTasks200ResponseFromJSONTyped(json, false);
|
|
16
|
-
}
|
|
17
|
-
exports.GetTasks200ResponseFromJSON = GetTasks200ResponseFromJSON;
|
|
18
|
-
function GetTasks200ResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
-
if ((json === undefined) || (json === null)) {
|
|
20
|
-
return json;
|
|
3
|
+
exports.GetTasks200Response = void 0;
|
|
4
|
+
var GetTasks200Response = (function () {
|
|
5
|
+
function GetTasks200Response() {
|
|
21
6
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
'totalElements': !(0, runtime_1.exists)(json, 'totalElements') ? undefined : json['totalElements'],
|
|
25
|
-
'data': !(0, runtime_1.exists)(json, 'data') ? undefined : (json['data'].map(TaskDto_1.TaskDtoFromJSON)),
|
|
7
|
+
GetTasks200Response.getAttributeTypeMap = function () {
|
|
8
|
+
return GetTasks200Response.attributeTypeMap;
|
|
26
9
|
};
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
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;
|
|
43
34
|
//# sourceMappingURL=GetTasks200Response.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GetTasks200Response.js","sourceRoot":"","sources":["../../models/GetTasks200Response.ts"],"names":[],"mappings":";;;
|
|
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"}
|
|
@@ -1,14 +1,21 @@
|
|
|
1
|
-
import
|
|
2
|
-
export
|
|
3
|
-
object?: GetVariables200ResponseObjectEnum;
|
|
4
|
-
totalElements?: number;
|
|
5
|
-
data?: Array<VariableDto>;
|
|
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();
|
|
6
20
|
}
|
|
7
|
-
export
|
|
8
|
-
readonly List: "list";
|
|
9
|
-
};
|
|
10
|
-
export type GetVariables200ResponseObjectEnum = typeof GetVariables200ResponseObjectEnum[keyof typeof GetVariables200ResponseObjectEnum];
|
|
11
|
-
export declare function instanceOfGetVariables200Response(value: object): boolean;
|
|
12
|
-
export declare function GetVariables200ResponseFromJSON(json: any): GetVariables200Response;
|
|
13
|
-
export declare function GetVariables200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetVariables200Response;
|
|
14
|
-
export declare function GetVariables200ResponseToJSON(value?: GetVariables200Response | null): any;
|
|
21
|
+
export type GetVariables200ResponseObjectEnum = "list";
|
|
@@ -1,43 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
exports.GetVariables200ResponseObjectEnum = {
|
|
7
|
-
List: 'list'
|
|
8
|
-
};
|
|
9
|
-
function instanceOfGetVariables200Response(value) {
|
|
10
|
-
let isInstance = true;
|
|
11
|
-
return isInstance;
|
|
12
|
-
}
|
|
13
|
-
exports.instanceOfGetVariables200Response = instanceOfGetVariables200Response;
|
|
14
|
-
function GetVariables200ResponseFromJSON(json) {
|
|
15
|
-
return GetVariables200ResponseFromJSONTyped(json, false);
|
|
16
|
-
}
|
|
17
|
-
exports.GetVariables200ResponseFromJSON = GetVariables200ResponseFromJSON;
|
|
18
|
-
function GetVariables200ResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
-
if ((json === undefined) || (json === null)) {
|
|
20
|
-
return json;
|
|
3
|
+
exports.GetVariables200Response = void 0;
|
|
4
|
+
var GetVariables200Response = (function () {
|
|
5
|
+
function GetVariables200Response() {
|
|
21
6
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
'totalElements': !(0, runtime_1.exists)(json, 'totalElements') ? undefined : json['totalElements'],
|
|
25
|
-
'data': !(0, runtime_1.exists)(json, 'data') ? undefined : (json['data'].map(VariableDto_1.VariableDtoFromJSON)),
|
|
7
|
+
GetVariables200Response.getAttributeTypeMap = function () {
|
|
8
|
+
return GetVariables200Response.attributeTypeMap;
|
|
26
9
|
};
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
10
|
+
GetVariables200Response.discriminator = undefined;
|
|
11
|
+
GetVariables200Response.attributeTypeMap = [
|
|
12
|
+
{
|
|
13
|
+
"name": "object",
|
|
14
|
+
"baseName": "object",
|
|
15
|
+
"type": "GetVariables200ResponseObjectEnum",
|
|
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<VariableDto>",
|
|
28
|
+
"format": ""
|
|
29
|
+
}
|
|
30
|
+
];
|
|
31
|
+
return GetVariables200Response;
|
|
32
|
+
}());
|
|
33
|
+
exports.GetVariables200Response = GetVariables200Response;
|
|
43
34
|
//# sourceMappingURL=GetVariables200Response.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GetVariables200Response.js","sourceRoot":"","sources":["../../models/GetVariables200Response.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"GetVariables200Response.js","sourceRoot":"","sources":["../../models/GetVariables200Response.ts"],"names":[],"mappings":";;;AAeA;IA+BI;IACA,CAAC;IALM,2CAAmB,GAA1B;QACI,OAAO,uBAAuB,CAAC,gBAAgB,CAAC;IACpD,CAAC;IAxBe,qCAAa,GAAuB,SAAS,CAAC;IAE9C,wCAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,QAAQ;YAChB,UAAU,EAAE,QAAQ;YACpB,MAAM,EAAE,mCAAmC;YAC3C,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,oBAAoB;YAC5B,QAAQ,EAAE,EAAE;SACf;KAAK,CAAC;IAQf,8BAAC;CAAA,AAjCD,IAiCC;AAjCY,0DAAuB"}
|
|
@@ -1,14 +1,20 @@
|
|
|
1
|
-
import
|
|
2
|
-
export
|
|
3
|
-
queries?: Query;
|
|
4
|
-
type?: HighOrderQueryTypeEnum;
|
|
1
|
+
import { Query } from '../models/Query';
|
|
2
|
+
export declare class HighOrderQuery {
|
|
3
|
+
'queries'?: Query;
|
|
4
|
+
'type'?: HighOrderQueryTypeEnum;
|
|
5
|
+
static readonly discriminator: string | undefined;
|
|
6
|
+
static readonly attributeTypeMap: Array<{
|
|
7
|
+
name: string;
|
|
8
|
+
baseName: string;
|
|
9
|
+
type: string;
|
|
10
|
+
format: string;
|
|
11
|
+
}>;
|
|
12
|
+
static getAttributeTypeMap(): {
|
|
13
|
+
name: string;
|
|
14
|
+
baseName: string;
|
|
15
|
+
type: string;
|
|
16
|
+
format: string;
|
|
17
|
+
}[];
|
|
18
|
+
constructor();
|
|
5
19
|
}
|
|
6
|
-
export
|
|
7
|
-
readonly And: "and";
|
|
8
|
-
readonly Or: "or";
|
|
9
|
-
};
|
|
10
|
-
export type HighOrderQueryTypeEnum = typeof HighOrderQueryTypeEnum[keyof typeof HighOrderQueryTypeEnum];
|
|
11
|
-
export declare function instanceOfHighOrderQuery(value: object): boolean;
|
|
12
|
-
export declare function HighOrderQueryFromJSON(json: any): HighOrderQuery;
|
|
13
|
-
export declare function HighOrderQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): HighOrderQuery;
|
|
14
|
-
export declare function HighOrderQueryToJSON(value?: HighOrderQuery | null): any;
|
|
20
|
+
export type HighOrderQueryTypeEnum = "and" | "or";
|
|
@@ -1,42 +1,28 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
exports.HighOrderQueryTypeEnum = {
|
|
7
|
-
And: 'and',
|
|
8
|
-
Or: 'or'
|
|
9
|
-
};
|
|
10
|
-
function instanceOfHighOrderQuery(value) {
|
|
11
|
-
let isInstance = true;
|
|
12
|
-
return isInstance;
|
|
13
|
-
}
|
|
14
|
-
exports.instanceOfHighOrderQuery = instanceOfHighOrderQuery;
|
|
15
|
-
function HighOrderQueryFromJSON(json) {
|
|
16
|
-
return HighOrderQueryFromJSONTyped(json, false);
|
|
17
|
-
}
|
|
18
|
-
exports.HighOrderQueryFromJSON = HighOrderQueryFromJSON;
|
|
19
|
-
function HighOrderQueryFromJSONTyped(json, ignoreDiscriminator) {
|
|
20
|
-
if ((json === undefined) || (json === null)) {
|
|
21
|
-
return json;
|
|
3
|
+
exports.HighOrderQuery = void 0;
|
|
4
|
+
var HighOrderQuery = (function () {
|
|
5
|
+
function HighOrderQuery() {
|
|
22
6
|
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
'type': !(0, runtime_1.exists)(json, 'type') ? undefined : json['type'],
|
|
7
|
+
HighOrderQuery.getAttributeTypeMap = function () {
|
|
8
|
+
return HighOrderQuery.attributeTypeMap;
|
|
26
9
|
};
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
}
|
|
41
|
-
|
|
10
|
+
HighOrderQuery.discriminator = undefined;
|
|
11
|
+
HighOrderQuery.attributeTypeMap = [
|
|
12
|
+
{
|
|
13
|
+
"name": "queries",
|
|
14
|
+
"baseName": "queries",
|
|
15
|
+
"type": "Query",
|
|
16
|
+
"format": ""
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "type",
|
|
20
|
+
"baseName": "type",
|
|
21
|
+
"type": "HighOrderQueryTypeEnum",
|
|
22
|
+
"format": ""
|
|
23
|
+
}
|
|
24
|
+
];
|
|
25
|
+
return HighOrderQuery;
|
|
26
|
+
}());
|
|
27
|
+
exports.HighOrderQuery = HighOrderQuery;
|
|
42
28
|
//# sourceMappingURL=HighOrderQuery.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HighOrderQuery.js","sourceRoot":"","sources":["../../models/HighOrderQuery.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"HighOrderQuery.js","sourceRoot":"","sources":["../../models/HighOrderQuery.ts"],"names":[],"mappings":";;;AAeA;IAwBI;IACA,CAAC;IALM,kCAAmB,GAA1B;QACI,OAAO,cAAc,CAAC,gBAAgB,CAAC;IAC3C,CAAC;IAlBe,4BAAa,GAAuB,SAAS,CAAC;IAE9C,+BAAgB,GAA0E;QACtG;YACI,MAAM,EAAE,SAAS;YACjB,UAAU,EAAE,SAAS;YACrB,MAAM,EAAE,OAAO;YACf,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,qBAAC;CAAA,AA1BD,IA0BC;AA1BY,wCAAc"}
|
package/dist/models/JobDto.d.ts
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
export
|
|
2
|
-
key: string;
|
|
3
|
-
periodicity?: Array<
|
|
4
|
-
pipelineId: string;
|
|
5
|
-
projectId: string;
|
|
6
|
-
status: JobDtoStatusEnum;
|
|
7
|
-
title: string;
|
|
8
|
-
titleLocal?:
|
|
9
|
-
description?: string;
|
|
10
|
-
descriptionLocal?:
|
|
11
|
-
output?: {
|
|
1
|
+
export declare class JobDto {
|
|
2
|
+
'key': string;
|
|
3
|
+
'periodicity'?: Array<any>;
|
|
4
|
+
'pipelineId': string;
|
|
5
|
+
'projectId': string;
|
|
6
|
+
'status': JobDtoStatusEnum;
|
|
7
|
+
'title': string;
|
|
8
|
+
'titleLocal'?: any;
|
|
9
|
+
'description'?: string;
|
|
10
|
+
'descriptionLocal'?: any;
|
|
11
|
+
'output'?: {
|
|
12
12
|
[key: string]: any;
|
|
13
13
|
};
|
|
14
|
-
tasks?: Array<
|
|
15
|
-
id: string;
|
|
16
|
-
object: JobDtoObjectEnum;
|
|
17
|
-
createdAt: string;
|
|
18
|
-
updatedAt: string;
|
|
14
|
+
'tasks'?: Array<any>;
|
|
15
|
+
'id': string;
|
|
16
|
+
'object': JobDtoObjectEnum;
|
|
17
|
+
'createdAt': string;
|
|
18
|
+
'updatedAt': string;
|
|
19
|
+
static readonly discriminator: string | undefined;
|
|
20
|
+
static readonly attributeTypeMap: Array<{
|
|
21
|
+
name: string;
|
|
22
|
+
baseName: string;
|
|
23
|
+
type: string;
|
|
24
|
+
format: string;
|
|
25
|
+
}>;
|
|
26
|
+
static getAttributeTypeMap(): {
|
|
27
|
+
name: string;
|
|
28
|
+
baseName: string;
|
|
29
|
+
type: string;
|
|
30
|
+
format: string;
|
|
31
|
+
}[];
|
|
32
|
+
constructor();
|
|
19
33
|
}
|
|
20
|
-
export
|
|
21
|
-
|
|
22
|
-
readonly Production: "PRODUCTION";
|
|
23
|
-
readonly Deprecated: "DEPRECATED";
|
|
24
|
-
readonly Archived: "ARCHIVED";
|
|
25
|
-
readonly Removed: "REMOVED";
|
|
26
|
-
};
|
|
27
|
-
export type JobDtoStatusEnum = typeof JobDtoStatusEnum[keyof typeof JobDtoStatusEnum];
|
|
28
|
-
export declare const JobDtoObjectEnum: {
|
|
29
|
-
readonly Job: "job";
|
|
30
|
-
};
|
|
31
|
-
export type JobDtoObjectEnum = typeof JobDtoObjectEnum[keyof typeof JobDtoObjectEnum];
|
|
32
|
-
export declare function instanceOfJobDto(value: object): boolean;
|
|
33
|
-
export declare function JobDtoFromJSON(json: any): JobDto;
|
|
34
|
-
export declare function JobDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobDto;
|
|
35
|
-
export declare function JobDtoToJSON(value?: JobDto | null): any;
|
|
34
|
+
export type JobDtoStatusEnum = "DRAFT" | "PRODUCTION" | "DEPRECATED" | "ARCHIVED" | "REMOVED";
|
|
35
|
+
export type JobDtoObjectEnum = "job";
|