@product-live/api-sdk 2.4.1 → 2.5.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/apis/DataFactoryFileApi.ts +19 -19
- package/apis/JobApi.ts +34 -43
- package/apis/JobExecutionApi.ts +22 -22
- package/apis/TaskApi.ts +38 -38
- package/apis/TaskExecutionApi.ts +15 -15
- package/apis/VariableApi.ts +86 -28
- package/dist/apis/DataFactoryFileApi.d.ts +7 -7
- package/dist/apis/DataFactoryFileApi.js +8 -8
- package/dist/apis/DataFactoryFileApi.js.map +1 -1
- package/dist/apis/JobApi.d.ts +16 -17
- package/dist/apis/JobApi.js +22 -28
- package/dist/apis/JobApi.js.map +1 -1
- package/dist/apis/JobExecutionApi.d.ts +10 -10
- package/dist/apis/JobExecutionApi.js +12 -12
- package/dist/apis/JobExecutionApi.js.map +1 -1
- package/dist/apis/TaskApi.d.ts +19 -19
- package/dist/apis/TaskApi.js +25 -25
- package/dist/apis/TaskApi.js.map +1 -1
- package/dist/apis/TaskExecutionApi.d.ts +6 -6
- package/dist/apis/TaskExecutionApi.js +9 -9
- package/dist/apis/TaskExecutionApi.js.map +1 -1
- package/dist/apis/VariableApi.d.ts +20 -13
- package/dist/apis/VariableApi.js +53 -17
- package/dist/apis/VariableApi.js.map +1 -1
- package/dist/models/CreateJobExecutionDto.d.ts +0 -1
- package/dist/models/CreateJobExecutionDto.js +0 -2
- package/dist/models/CreateJobExecutionDto.js.map +1 -1
- package/dist/models/FileDto.d.ts +5 -1
- package/dist/models/FileDto.js +4 -1
- package/dist/models/FileDto.js.map +1 -1
- package/dist/models/FindVariablesRequest.d.ts +7 -0
- package/dist/models/FindVariablesRequest.js +37 -0
- package/dist/models/FindVariablesRequest.js.map +1 -0
- package/dist/models/GetFiles200Response.d.ts +14 -0
- package/dist/models/GetFiles200Response.js +43 -0
- package/dist/models/GetFiles200Response.js.map +1 -0
- package/dist/models/GetJobExecutionById400Response.d.ts +7 -0
- package/dist/models/GetJobExecutionById400Response.js +35 -0
- package/dist/models/GetJobExecutionById400Response.js.map +1 -0
- package/dist/models/GetJobExecutions200Response.d.ts +14 -0
- package/dist/models/GetJobExecutions200Response.js +43 -0
- package/dist/models/GetJobExecutions200Response.js.map +1 -0
- package/dist/models/GetJobs200Response.d.ts +14 -0
- package/dist/models/GetJobs200Response.js +43 -0
- package/dist/models/GetJobs200Response.js.map +1 -0
- package/dist/models/GetTasks200Response.d.ts +14 -0
- package/dist/models/GetTasks200Response.js +43 -0
- package/dist/models/GetTasks200Response.js.map +1 -0
- package/dist/models/GetVariables200Response.d.ts +14 -0
- package/dist/models/GetVariables200Response.js +43 -0
- package/dist/models/GetVariables200Response.js.map +1 -0
- package/dist/models/HighOrderQuery.d.ts +14 -0
- package/dist/models/HighOrderQuery.js +42 -0
- package/dist/models/HighOrderQuery.js.map +1 -0
- package/dist/models/JobDto.d.ts +5 -1
- package/dist/models/JobDto.js +4 -1
- package/dist/models/JobDto.js.map +1 -1
- package/dist/models/JobExecutionDto.d.ts +6 -18
- package/dist/models/JobExecutionDto.js +6 -17
- package/dist/models/JobExecutionDto.js.map +1 -1
- package/dist/models/LowOrderQuery.d.ts +23 -0
- package/dist/models/LowOrderQuery.js +54 -0
- package/dist/models/LowOrderQuery.js.map +1 -0
- package/dist/models/Query.d.ts +21 -0
- package/dist/models/Query.js +48 -0
- package/dist/models/Query.js.map +1 -0
- package/dist/models/TaskDto.d.ts +5 -1
- package/dist/models/TaskDto.js +4 -1
- package/dist/models/TaskDto.js.map +1 -1
- package/dist/models/TaskExecutionDto.d.ts +5 -1
- package/dist/models/TaskExecutionDto.js +4 -1
- package/dist/models/TaskExecutionDto.js.map +1 -1
- package/dist/models/VariableDto.d.ts +5 -1
- package/dist/models/VariableDto.js +4 -1
- package/dist/models/VariableDto.js.map +1 -1
- package/dist/models/index.d.ts +10 -6
- package/dist/models/index.js +10 -6
- package/dist/models/index.js.map +1 -1
- package/models/CreateJobDto.ts +1 -1
- package/models/CreateJobExecutionDto.ts +1 -9
- package/models/CreateTaskDto.ts +1 -1
- package/models/CreateVariableDto.ts +1 -1
- package/models/FileDto.ts +13 -3
- package/models/FindVariablesRequest.ts +75 -0
- package/models/GetFiles200Response.ts +98 -0
- package/models/GetJobExecutionById400Response.ts +65 -0
- package/models/GetJobExecutions200Response.ts +98 -0
- package/models/GetJobs200Response.ts +98 -0
- package/models/GetTasks200Response.ts +98 -0
- package/models/GetVariables200Response.ts +98 -0
- package/models/HighOrderQuery.ts +91 -0
- package/models/JobDto.ts +11 -3
- package/models/JobExecutionDto.ts +16 -27
- package/models/LowOrderQuery.ts +115 -0
- package/models/PatchTaskExecutionDto.ts +1 -1
- package/models/Query.ts +85 -0
- package/models/TaskDto.ts +13 -3
- package/models/TaskExecutionDto.ts +11 -3
- package/models/UpdateJobDto.ts +1 -1
- package/models/UpdateTaskDto.ts +1 -1
- package/models/UpdateVariableDto.ts +1 -1
- package/models/VariableDto.ts +11 -3
- package/models/index.ts +10 -6
- package/package.json +2 -2
- package/runtime.ts +1 -1
package/dist/models/index.js
CHANGED
|
@@ -18,20 +18,24 @@ __exportStar(require("./CreateJobDto"), exports);
|
|
|
18
18
|
__exportStar(require("./CreateJobExecutionDto"), exports);
|
|
19
19
|
__exportStar(require("./CreateTaskDto"), exports);
|
|
20
20
|
__exportStar(require("./CreateVariableDto"), exports);
|
|
21
|
-
__exportStar(require("./FileControllerGetFiles200Response"), exports);
|
|
22
21
|
__exportStar(require("./FileDto"), exports);
|
|
23
|
-
__exportStar(require("./
|
|
22
|
+
__exportStar(require("./FindVariablesRequest"), exports);
|
|
23
|
+
__exportStar(require("./GetFiles200Response"), exports);
|
|
24
|
+
__exportStar(require("./GetJobExecutionById400Response"), exports);
|
|
25
|
+
__exportStar(require("./GetJobExecutions200Response"), exports);
|
|
26
|
+
__exportStar(require("./GetJobs200Response"), exports);
|
|
27
|
+
__exportStar(require("./GetTasks200Response"), exports);
|
|
28
|
+
__exportStar(require("./GetVariables200Response"), exports);
|
|
29
|
+
__exportStar(require("./HighOrderQuery"), exports);
|
|
24
30
|
__exportStar(require("./JobDto"), exports);
|
|
25
|
-
__exportStar(require("./JobExecutionControllerGetOne400Response"), exports);
|
|
26
|
-
__exportStar(require("./JobExecutionControllerList200Response"), exports);
|
|
27
31
|
__exportStar(require("./JobExecutionDto"), exports);
|
|
32
|
+
__exportStar(require("./LowOrderQuery"), exports);
|
|
28
33
|
__exportStar(require("./PatchTaskExecutionDto"), exports);
|
|
29
|
-
__exportStar(require("./
|
|
34
|
+
__exportStar(require("./Query"), exports);
|
|
30
35
|
__exportStar(require("./TaskDto"), exports);
|
|
31
36
|
__exportStar(require("./TaskExecutionDto"), exports);
|
|
32
37
|
__exportStar(require("./UpdateJobDto"), exports);
|
|
33
38
|
__exportStar(require("./UpdateTaskDto"), exports);
|
|
34
39
|
__exportStar(require("./UpdateVariableDto"), exports);
|
|
35
|
-
__exportStar(require("./VariableControllerList200Response"), exports);
|
|
36
40
|
__exportStar(require("./VariableDto"), exports);
|
|
37
41
|
//# sourceMappingURL=index.js.map
|
package/dist/models/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAEA,iDAA+B;AAC/B,0DAAwC;AACxC,kDAAgC;AAChC,sDAAoC;AACpC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../models/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAEA,iDAA+B;AAC/B,0DAAwC;AACxC,kDAAgC;AAChC,sDAAoC;AACpC,4CAA0B;AAC1B,yDAAuC;AACvC,wDAAsC;AACtC,mEAAiD;AACjD,gEAA8C;AAC9C,uDAAqC;AACrC,wDAAsC;AACtC,4DAA0C;AAC1C,mDAAiC;AACjC,2CAAyB;AACzB,oDAAkC;AAClC,kDAAgC;AAChC,0DAAwC;AACxC,0CAAwB;AACxB,4CAA0B;AAC1B,qDAAmC;AACnC,iDAA+B;AAC/B,kDAAgC;AAChC,sDAAoC;AACpC,gDAA8B"}
|
package/models/CreateJobDto.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product-Live API
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.
|
|
7
|
+
* The version of the OpenAPI document: 2.5.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product-Live API
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.
|
|
7
|
+
* The version of the OpenAPI document: 2.5.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -31,12 +31,6 @@ export interface CreateJobExecutionDto {
|
|
|
31
31
|
* @memberof CreateJobExecutionDto
|
|
32
32
|
*/
|
|
33
33
|
info: object;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {string}
|
|
37
|
-
* @memberof CreateJobExecutionDto
|
|
38
|
-
*/
|
|
39
|
-
pipelineId?: string;
|
|
40
34
|
/**
|
|
41
35
|
*
|
|
42
36
|
* @type {{ [key: string]: any; }}
|
|
@@ -68,7 +62,6 @@ export function CreateJobExecutionDtoFromJSONTyped(json: any, ignoreDiscriminato
|
|
|
68
62
|
|
|
69
63
|
'jobId': json['jobId'],
|
|
70
64
|
'info': json['info'],
|
|
71
|
-
'pipelineId': !exists(json, 'pipelineId') ? undefined : json['pipelineId'],
|
|
72
65
|
'input': !exists(json, 'input') ? undefined : json['input'],
|
|
73
66
|
};
|
|
74
67
|
}
|
|
@@ -84,7 +77,6 @@ export function CreateJobExecutionDtoToJSON(value?: CreateJobExecutionDto | null
|
|
|
84
77
|
|
|
85
78
|
'jobId': value.jobId,
|
|
86
79
|
'info': value.info,
|
|
87
|
-
'pipelineId': value.pipelineId,
|
|
88
80
|
'input': value.input,
|
|
89
81
|
};
|
|
90
82
|
}
|
package/models/CreateTaskDto.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product-Live API
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.
|
|
7
|
+
* The version of the OpenAPI document: 2.5.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product-Live API
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.
|
|
7
|
+
* The version of the OpenAPI document: 2.5.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/models/FileDto.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Product-Live API
|
|
5
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.
|
|
7
|
+
* The version of the OpenAPI document: 2.5.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -21,10 +21,10 @@ import { exists, mapValues } from '../runtime';
|
|
|
21
21
|
export interface FileDto {
|
|
22
22
|
/**
|
|
23
23
|
*
|
|
24
|
-
* @type {
|
|
24
|
+
* @type {string}
|
|
25
25
|
* @memberof FileDto
|
|
26
26
|
*/
|
|
27
|
-
object:
|
|
27
|
+
object: FileDtoObjectEnum;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
30
|
* @type {string}
|
|
@@ -57,6 +57,16 @@ export interface FileDto {
|
|
|
57
57
|
filename: string;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* @export
|
|
63
|
+
*/
|
|
64
|
+
export const FileDtoObjectEnum = {
|
|
65
|
+
DataFactoryFile: 'data_factory_file'
|
|
66
|
+
} as const;
|
|
67
|
+
export type FileDtoObjectEnum = typeof FileDtoObjectEnum[keyof typeof FileDtoObjectEnum];
|
|
68
|
+
|
|
69
|
+
|
|
60
70
|
/**
|
|
61
71
|
* Check if a given object implements the FileDto interface.
|
|
62
72
|
*/
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Product-Live API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2.5.1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import {
|
|
16
|
+
HighOrderQuery,
|
|
17
|
+
instanceOfHighOrderQuery,
|
|
18
|
+
HighOrderQueryFromJSON,
|
|
19
|
+
HighOrderQueryFromJSONTyped,
|
|
20
|
+
HighOrderQueryToJSON,
|
|
21
|
+
} from './HighOrderQuery';
|
|
22
|
+
import {
|
|
23
|
+
LowOrderQuery,
|
|
24
|
+
instanceOfLowOrderQuery,
|
|
25
|
+
LowOrderQueryFromJSON,
|
|
26
|
+
LowOrderQueryFromJSONTyped,
|
|
27
|
+
LowOrderQueryToJSON,
|
|
28
|
+
} from './LowOrderQuery';
|
|
29
|
+
import {
|
|
30
|
+
Query,
|
|
31
|
+
instanceOfQuery,
|
|
32
|
+
QueryFromJSON,
|
|
33
|
+
QueryFromJSONTyped,
|
|
34
|
+
QueryToJSON,
|
|
35
|
+
} from './Query';
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* @type FindVariablesRequest
|
|
39
|
+
*
|
|
40
|
+
* @export
|
|
41
|
+
*/
|
|
42
|
+
export type FindVariablesRequest = HighOrderQuery | LowOrderQuery | Query;
|
|
43
|
+
|
|
44
|
+
export function FindVariablesRequestFromJSON(json: any): FindVariablesRequest {
|
|
45
|
+
return FindVariablesRequestFromJSONTyped(json, false);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export function FindVariablesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): FindVariablesRequest {
|
|
49
|
+
if ((json === undefined) || (json === null)) {
|
|
50
|
+
return json;
|
|
51
|
+
}
|
|
52
|
+
return { ...HighOrderQueryFromJSONTyped(json, true), ...LowOrderQueryFromJSONTyped(json, true), ...QueryFromJSONTyped(json, true) };
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export function FindVariablesRequestToJSON(value?: FindVariablesRequest | null): any {
|
|
56
|
+
if (value === undefined) {
|
|
57
|
+
return undefined;
|
|
58
|
+
}
|
|
59
|
+
if (value === null) {
|
|
60
|
+
return null;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
if (instanceOfHighOrderQuery(value)) {
|
|
64
|
+
return HighOrderQueryToJSON(value as HighOrderQuery);
|
|
65
|
+
}
|
|
66
|
+
if (instanceOfLowOrderQuery(value)) {
|
|
67
|
+
return LowOrderQueryToJSON(value as LowOrderQuery);
|
|
68
|
+
}
|
|
69
|
+
if (instanceOfQuery(value)) {
|
|
70
|
+
return QueryToJSON(value as Query);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
return {};
|
|
74
|
+
}
|
|
75
|
+
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Product-Live API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2.5.1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { exists, mapValues } from '../runtime';
|
|
16
|
+
import type { FileDto } from './FileDto';
|
|
17
|
+
import {
|
|
18
|
+
FileDtoFromJSON,
|
|
19
|
+
FileDtoFromJSONTyped,
|
|
20
|
+
FileDtoToJSON,
|
|
21
|
+
} from './FileDto';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface GetFiles200Response
|
|
27
|
+
*/
|
|
28
|
+
export interface GetFiles200Response {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof GetFiles200Response
|
|
33
|
+
*/
|
|
34
|
+
object?: GetFiles200ResponseObjectEnum;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof GetFiles200Response
|
|
39
|
+
*/
|
|
40
|
+
totalElements?: number;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {Array<FileDto>}
|
|
44
|
+
* @memberof GetFiles200Response
|
|
45
|
+
*/
|
|
46
|
+
data?: Array<FileDto>;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* @export
|
|
52
|
+
*/
|
|
53
|
+
export const GetFiles200ResponseObjectEnum = {
|
|
54
|
+
List: 'list'
|
|
55
|
+
} as const;
|
|
56
|
+
export type GetFiles200ResponseObjectEnum = typeof GetFiles200ResponseObjectEnum[keyof typeof GetFiles200ResponseObjectEnum];
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Check if a given object implements the GetFiles200Response interface.
|
|
61
|
+
*/
|
|
62
|
+
export function instanceOfGetFiles200Response(value: object): boolean {
|
|
63
|
+
let isInstance = true;
|
|
64
|
+
|
|
65
|
+
return isInstance;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export function GetFiles200ResponseFromJSON(json: any): GetFiles200Response {
|
|
69
|
+
return GetFiles200ResponseFromJSONTyped(json, false);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export function GetFiles200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetFiles200Response {
|
|
73
|
+
if ((json === undefined) || (json === null)) {
|
|
74
|
+
return json;
|
|
75
|
+
}
|
|
76
|
+
return {
|
|
77
|
+
|
|
78
|
+
'object': !exists(json, 'object') ? undefined : json['object'],
|
|
79
|
+
'totalElements': !exists(json, 'totalElements') ? undefined : json['totalElements'],
|
|
80
|
+
'data': !exists(json, 'data') ? undefined : ((json['data'] as Array<any>).map(FileDtoFromJSON)),
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export function GetFiles200ResponseToJSON(value?: GetFiles200Response | null): any {
|
|
85
|
+
if (value === undefined) {
|
|
86
|
+
return undefined;
|
|
87
|
+
}
|
|
88
|
+
if (value === null) {
|
|
89
|
+
return null;
|
|
90
|
+
}
|
|
91
|
+
return {
|
|
92
|
+
|
|
93
|
+
'object': value.object,
|
|
94
|
+
'totalElements': value.totalElements,
|
|
95
|
+
'data': value.data === undefined ? undefined : ((value.data as Array<any>).map(FileDtoToJSON)),
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Product-Live API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2.5.1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { exists, mapValues } from '../runtime';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface GetJobExecutionById400Response
|
|
20
|
+
*/
|
|
21
|
+
export interface GetJobExecutionById400Response {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof GetJobExecutionById400Response
|
|
26
|
+
*/
|
|
27
|
+
message?: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Check if a given object implements the GetJobExecutionById400Response interface.
|
|
32
|
+
*/
|
|
33
|
+
export function instanceOfGetJobExecutionById400Response(value: object): boolean {
|
|
34
|
+
let isInstance = true;
|
|
35
|
+
|
|
36
|
+
return isInstance;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export function GetJobExecutionById400ResponseFromJSON(json: any): GetJobExecutionById400Response {
|
|
40
|
+
return GetJobExecutionById400ResponseFromJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function GetJobExecutionById400ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetJobExecutionById400Response {
|
|
44
|
+
if ((json === undefined) || (json === null)) {
|
|
45
|
+
return json;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
|
|
49
|
+
'message': !exists(json, 'message') ? undefined : json['message'],
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export function GetJobExecutionById400ResponseToJSON(value?: GetJobExecutionById400Response | null): any {
|
|
54
|
+
if (value === undefined) {
|
|
55
|
+
return undefined;
|
|
56
|
+
}
|
|
57
|
+
if (value === null) {
|
|
58
|
+
return null;
|
|
59
|
+
}
|
|
60
|
+
return {
|
|
61
|
+
|
|
62
|
+
'message': value.message,
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Product-Live API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2.5.1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { exists, mapValues } from '../runtime';
|
|
16
|
+
import type { JobExecutionDto } from './JobExecutionDto';
|
|
17
|
+
import {
|
|
18
|
+
JobExecutionDtoFromJSON,
|
|
19
|
+
JobExecutionDtoFromJSONTyped,
|
|
20
|
+
JobExecutionDtoToJSON,
|
|
21
|
+
} from './JobExecutionDto';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface GetJobExecutions200Response
|
|
27
|
+
*/
|
|
28
|
+
export interface GetJobExecutions200Response {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof GetJobExecutions200Response
|
|
33
|
+
*/
|
|
34
|
+
object?: GetJobExecutions200ResponseObjectEnum;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof GetJobExecutions200Response
|
|
39
|
+
*/
|
|
40
|
+
totalElements?: number;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {Array<JobExecutionDto>}
|
|
44
|
+
* @memberof GetJobExecutions200Response
|
|
45
|
+
*/
|
|
46
|
+
data?: Array<JobExecutionDto>;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* @export
|
|
52
|
+
*/
|
|
53
|
+
export const GetJobExecutions200ResponseObjectEnum = {
|
|
54
|
+
List: 'list'
|
|
55
|
+
} as const;
|
|
56
|
+
export type GetJobExecutions200ResponseObjectEnum = typeof GetJobExecutions200ResponseObjectEnum[keyof typeof GetJobExecutions200ResponseObjectEnum];
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Check if a given object implements the GetJobExecutions200Response interface.
|
|
61
|
+
*/
|
|
62
|
+
export function instanceOfGetJobExecutions200Response(value: object): boolean {
|
|
63
|
+
let isInstance = true;
|
|
64
|
+
|
|
65
|
+
return isInstance;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export function GetJobExecutions200ResponseFromJSON(json: any): GetJobExecutions200Response {
|
|
69
|
+
return GetJobExecutions200ResponseFromJSONTyped(json, false);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export function GetJobExecutions200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetJobExecutions200Response {
|
|
73
|
+
if ((json === undefined) || (json === null)) {
|
|
74
|
+
return json;
|
|
75
|
+
}
|
|
76
|
+
return {
|
|
77
|
+
|
|
78
|
+
'object': !exists(json, 'object') ? undefined : json['object'],
|
|
79
|
+
'totalElements': !exists(json, 'totalElements') ? undefined : json['totalElements'],
|
|
80
|
+
'data': !exists(json, 'data') ? undefined : ((json['data'] as Array<any>).map(JobExecutionDtoFromJSON)),
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export function GetJobExecutions200ResponseToJSON(value?: GetJobExecutions200Response | null): any {
|
|
85
|
+
if (value === undefined) {
|
|
86
|
+
return undefined;
|
|
87
|
+
}
|
|
88
|
+
if (value === null) {
|
|
89
|
+
return null;
|
|
90
|
+
}
|
|
91
|
+
return {
|
|
92
|
+
|
|
93
|
+
'object': value.object,
|
|
94
|
+
'totalElements': value.totalElements,
|
|
95
|
+
'data': value.data === undefined ? undefined : ((value.data as Array<any>).map(JobExecutionDtoToJSON)),
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Product-Live API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2.5.1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { exists, mapValues } from '../runtime';
|
|
16
|
+
import type { JobDto } from './JobDto';
|
|
17
|
+
import {
|
|
18
|
+
JobDtoFromJSON,
|
|
19
|
+
JobDtoFromJSONTyped,
|
|
20
|
+
JobDtoToJSON,
|
|
21
|
+
} from './JobDto';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface GetJobs200Response
|
|
27
|
+
*/
|
|
28
|
+
export interface GetJobs200Response {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof GetJobs200Response
|
|
33
|
+
*/
|
|
34
|
+
object?: GetJobs200ResponseObjectEnum;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof GetJobs200Response
|
|
39
|
+
*/
|
|
40
|
+
totalElements?: number;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {Array<JobDto>}
|
|
44
|
+
* @memberof GetJobs200Response
|
|
45
|
+
*/
|
|
46
|
+
data?: Array<JobDto>;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* @export
|
|
52
|
+
*/
|
|
53
|
+
export const GetJobs200ResponseObjectEnum = {
|
|
54
|
+
List: 'list'
|
|
55
|
+
} as const;
|
|
56
|
+
export type GetJobs200ResponseObjectEnum = typeof GetJobs200ResponseObjectEnum[keyof typeof GetJobs200ResponseObjectEnum];
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Check if a given object implements the GetJobs200Response interface.
|
|
61
|
+
*/
|
|
62
|
+
export function instanceOfGetJobs200Response(value: object): boolean {
|
|
63
|
+
let isInstance = true;
|
|
64
|
+
|
|
65
|
+
return isInstance;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export function GetJobs200ResponseFromJSON(json: any): GetJobs200Response {
|
|
69
|
+
return GetJobs200ResponseFromJSONTyped(json, false);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export function GetJobs200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetJobs200Response {
|
|
73
|
+
if ((json === undefined) || (json === null)) {
|
|
74
|
+
return json;
|
|
75
|
+
}
|
|
76
|
+
return {
|
|
77
|
+
|
|
78
|
+
'object': !exists(json, 'object') ? undefined : json['object'],
|
|
79
|
+
'totalElements': !exists(json, 'totalElements') ? undefined : json['totalElements'],
|
|
80
|
+
'data': !exists(json, 'data') ? undefined : ((json['data'] as Array<any>).map(JobDtoFromJSON)),
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export function GetJobs200ResponseToJSON(value?: GetJobs200Response | null): any {
|
|
85
|
+
if (value === undefined) {
|
|
86
|
+
return undefined;
|
|
87
|
+
}
|
|
88
|
+
if (value === null) {
|
|
89
|
+
return null;
|
|
90
|
+
}
|
|
91
|
+
return {
|
|
92
|
+
|
|
93
|
+
'object': value.object,
|
|
94
|
+
'totalElements': value.totalElements,
|
|
95
|
+
'data': value.data === undefined ? undefined : ((value.data as Array<any>).map(JobDtoToJSON)),
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Product-Live API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2.5.1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { exists, mapValues } from '../runtime';
|
|
16
|
+
import type { TaskDto } from './TaskDto';
|
|
17
|
+
import {
|
|
18
|
+
TaskDtoFromJSON,
|
|
19
|
+
TaskDtoFromJSONTyped,
|
|
20
|
+
TaskDtoToJSON,
|
|
21
|
+
} from './TaskDto';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface GetTasks200Response
|
|
27
|
+
*/
|
|
28
|
+
export interface GetTasks200Response {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof GetTasks200Response
|
|
33
|
+
*/
|
|
34
|
+
object?: GetTasks200ResponseObjectEnum;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof GetTasks200Response
|
|
39
|
+
*/
|
|
40
|
+
totalElements?: number;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {Array<TaskDto>}
|
|
44
|
+
* @memberof GetTasks200Response
|
|
45
|
+
*/
|
|
46
|
+
data?: Array<TaskDto>;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* @export
|
|
52
|
+
*/
|
|
53
|
+
export const GetTasks200ResponseObjectEnum = {
|
|
54
|
+
List: 'list'
|
|
55
|
+
} as const;
|
|
56
|
+
export type GetTasks200ResponseObjectEnum = typeof GetTasks200ResponseObjectEnum[keyof typeof GetTasks200ResponseObjectEnum];
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Check if a given object implements the GetTasks200Response interface.
|
|
61
|
+
*/
|
|
62
|
+
export function instanceOfGetTasks200Response(value: object): boolean {
|
|
63
|
+
let isInstance = true;
|
|
64
|
+
|
|
65
|
+
return isInstance;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export function GetTasks200ResponseFromJSON(json: any): GetTasks200Response {
|
|
69
|
+
return GetTasks200ResponseFromJSONTyped(json, false);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
export function GetTasks200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTasks200Response {
|
|
73
|
+
if ((json === undefined) || (json === null)) {
|
|
74
|
+
return json;
|
|
75
|
+
}
|
|
76
|
+
return {
|
|
77
|
+
|
|
78
|
+
'object': !exists(json, 'object') ? undefined : json['object'],
|
|
79
|
+
'totalElements': !exists(json, 'totalElements') ? undefined : json['totalElements'],
|
|
80
|
+
'data': !exists(json, 'data') ? undefined : ((json['data'] as Array<any>).map(TaskDtoFromJSON)),
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
export function GetTasks200ResponseToJSON(value?: GetTasks200Response | null): any {
|
|
85
|
+
if (value === undefined) {
|
|
86
|
+
return undefined;
|
|
87
|
+
}
|
|
88
|
+
if (value === null) {
|
|
89
|
+
return null;
|
|
90
|
+
}
|
|
91
|
+
return {
|
|
92
|
+
|
|
93
|
+
'object': value.object,
|
|
94
|
+
'totalElements': value.totalElements,
|
|
95
|
+
'data': value.data === undefined ? undefined : ((value.data as Array<any>).map(TaskDtoToJSON)),
|
|
96
|
+
};
|
|
97
|
+
}
|
|
98
|
+
|