@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,65 +0,0 @@
|
|
|
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: 1.88.0
|
|
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 ExecuteJobDtoInfo
|
|
20
|
-
*/
|
|
21
|
-
export interface ExecuteJobDtoInfo {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof ExecuteJobDtoInfo
|
|
26
|
-
*/
|
|
27
|
-
title?: string;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* Check if a given object implements the ExecuteJobDtoInfo interface.
|
|
32
|
-
*/
|
|
33
|
-
export function instanceOfExecuteJobDtoInfo(value: object): boolean {
|
|
34
|
-
let isInstance = true;
|
|
35
|
-
|
|
36
|
-
return isInstance;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export function ExecuteJobDtoInfoFromJSON(json: any): ExecuteJobDtoInfo {
|
|
40
|
-
return ExecuteJobDtoInfoFromJSONTyped(json, false);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export function ExecuteJobDtoInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteJobDtoInfo {
|
|
44
|
-
if ((json === undefined) || (json === null)) {
|
|
45
|
-
return json;
|
|
46
|
-
}
|
|
47
|
-
return {
|
|
48
|
-
|
|
49
|
-
'title': !exists(json, 'title') ? undefined : json['title'],
|
|
50
|
-
};
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
export function ExecuteJobDtoInfoToJSON(value?: ExecuteJobDtoInfo | null): any {
|
|
54
|
-
if (value === undefined) {
|
|
55
|
-
return undefined;
|
|
56
|
-
}
|
|
57
|
-
if (value === null) {
|
|
58
|
-
return null;
|
|
59
|
-
}
|
|
60
|
-
return {
|
|
61
|
-
|
|
62
|
-
'title': value.title,
|
|
63
|
-
};
|
|
64
|
-
}
|
|
65
|
-
|
|
@@ -1,81 +0,0 @@
|
|
|
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: 1.88.0
|
|
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 ExecuteJobDtoJob
|
|
20
|
-
*/
|
|
21
|
-
export interface ExecuteJobDtoJob {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof ExecuteJobDtoJob
|
|
26
|
-
*/
|
|
27
|
-
id?: string;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @memberof ExecuteJobDtoJob
|
|
32
|
-
*/
|
|
33
|
-
key?: string;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {string}
|
|
37
|
-
* @memberof ExecuteJobDtoJob
|
|
38
|
-
*/
|
|
39
|
-
title?: string;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* Check if a given object implements the ExecuteJobDtoJob interface.
|
|
44
|
-
*/
|
|
45
|
-
export function instanceOfExecuteJobDtoJob(value: object): boolean {
|
|
46
|
-
let isInstance = true;
|
|
47
|
-
|
|
48
|
-
return isInstance;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
export function ExecuteJobDtoJobFromJSON(json: any): ExecuteJobDtoJob {
|
|
52
|
-
return ExecuteJobDtoJobFromJSONTyped(json, false);
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export function ExecuteJobDtoJobFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteJobDtoJob {
|
|
56
|
-
if ((json === undefined) || (json === null)) {
|
|
57
|
-
return json;
|
|
58
|
-
}
|
|
59
|
-
return {
|
|
60
|
-
|
|
61
|
-
'id': !exists(json, 'id') ? undefined : json['id'],
|
|
62
|
-
'key': !exists(json, 'key') ? undefined : json['key'],
|
|
63
|
-
'title': !exists(json, 'title') ? undefined : json['title'],
|
|
64
|
-
};
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
export function ExecuteJobDtoJobToJSON(value?: ExecuteJobDtoJob | null): any {
|
|
68
|
-
if (value === undefined) {
|
|
69
|
-
return undefined;
|
|
70
|
-
}
|
|
71
|
-
if (value === null) {
|
|
72
|
-
return null;
|
|
73
|
-
}
|
|
74
|
-
return {
|
|
75
|
-
|
|
76
|
-
'id': value.id,
|
|
77
|
-
'key': value.key,
|
|
78
|
-
'title': value.title,
|
|
79
|
-
};
|
|
80
|
-
}
|
|
81
|
-
|
|
@@ -1,98 +0,0 @@
|
|
|
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.4.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 FileControllerGetFiles200Response
|
|
27
|
-
*/
|
|
28
|
-
export interface FileControllerGetFiles200Response {
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof FileControllerGetFiles200Response
|
|
33
|
-
*/
|
|
34
|
-
object?: FileControllerGetFiles200ResponseObjectEnum;
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* @type {number}
|
|
38
|
-
* @memberof FileControllerGetFiles200Response
|
|
39
|
-
*/
|
|
40
|
-
totalElements?: number;
|
|
41
|
-
/**
|
|
42
|
-
*
|
|
43
|
-
* @type {Array<FileDto>}
|
|
44
|
-
* @memberof FileControllerGetFiles200Response
|
|
45
|
-
*/
|
|
46
|
-
data?: Array<FileDto>;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
/**
|
|
51
|
-
* @export
|
|
52
|
-
*/
|
|
53
|
-
export const FileControllerGetFiles200ResponseObjectEnum = {
|
|
54
|
-
List: 'list'
|
|
55
|
-
} as const;
|
|
56
|
-
export type FileControllerGetFiles200ResponseObjectEnum = typeof FileControllerGetFiles200ResponseObjectEnum[keyof typeof FileControllerGetFiles200ResponseObjectEnum];
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
/**
|
|
60
|
-
* Check if a given object implements the FileControllerGetFiles200Response interface.
|
|
61
|
-
*/
|
|
62
|
-
export function instanceOfFileControllerGetFiles200Response(value: object): boolean {
|
|
63
|
-
let isInstance = true;
|
|
64
|
-
|
|
65
|
-
return isInstance;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
export function FileControllerGetFiles200ResponseFromJSON(json: any): FileControllerGetFiles200Response {
|
|
69
|
-
return FileControllerGetFiles200ResponseFromJSONTyped(json, false);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
export function FileControllerGetFiles200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileControllerGetFiles200Response {
|
|
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 FileControllerGetFiles200ResponseToJSON(value?: FileControllerGetFiles200Response | 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
|
-
|
package/models/FileCreatedDto.ts
DELETED
|
@@ -1,111 +0,0 @@
|
|
|
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: 1.88.0
|
|
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 FileCreatedDto
|
|
20
|
-
*/
|
|
21
|
-
export interface FileCreatedDto {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof FileCreatedDto
|
|
26
|
-
*/
|
|
27
|
-
object: string;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @memberof FileCreatedDto
|
|
32
|
-
*/
|
|
33
|
-
id: string;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {string}
|
|
37
|
-
* @memberof FileCreatedDto
|
|
38
|
-
*/
|
|
39
|
-
createdAt: string;
|
|
40
|
-
/**
|
|
41
|
-
*
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof FileCreatedDto
|
|
44
|
-
*/
|
|
45
|
-
updatedAt: string;
|
|
46
|
-
/**
|
|
47
|
-
*
|
|
48
|
-
* @type {string}
|
|
49
|
-
* @memberof FileCreatedDto
|
|
50
|
-
*/
|
|
51
|
-
url: string;
|
|
52
|
-
/**
|
|
53
|
-
*
|
|
54
|
-
* @type {string}
|
|
55
|
-
* @memberof FileCreatedDto
|
|
56
|
-
*/
|
|
57
|
-
filename: string;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
/**
|
|
61
|
-
* Check if a given object implements the FileCreatedDto interface.
|
|
62
|
-
*/
|
|
63
|
-
export function instanceOfFileCreatedDto(value: object): boolean {
|
|
64
|
-
let isInstance = true;
|
|
65
|
-
isInstance = isInstance && "object" in value;
|
|
66
|
-
isInstance = isInstance && "id" in value;
|
|
67
|
-
isInstance = isInstance && "createdAt" in value;
|
|
68
|
-
isInstance = isInstance && "updatedAt" in value;
|
|
69
|
-
isInstance = isInstance && "url" in value;
|
|
70
|
-
isInstance = isInstance && "filename" in value;
|
|
71
|
-
|
|
72
|
-
return isInstance;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
export function FileCreatedDtoFromJSON(json: any): FileCreatedDto {
|
|
76
|
-
return FileCreatedDtoFromJSONTyped(json, false);
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
export function FileCreatedDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileCreatedDto {
|
|
80
|
-
if ((json === undefined) || (json === null)) {
|
|
81
|
-
return json;
|
|
82
|
-
}
|
|
83
|
-
return {
|
|
84
|
-
|
|
85
|
-
'object': json['object'],
|
|
86
|
-
'id': json['id'],
|
|
87
|
-
'createdAt': json['createdAt'],
|
|
88
|
-
'updatedAt': json['updatedAt'],
|
|
89
|
-
'url': json['url'],
|
|
90
|
-
'filename': json['filename'],
|
|
91
|
-
};
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
export function FileCreatedDtoToJSON(value?: FileCreatedDto | null): any {
|
|
95
|
-
if (value === undefined) {
|
|
96
|
-
return undefined;
|
|
97
|
-
}
|
|
98
|
-
if (value === null) {
|
|
99
|
-
return null;
|
|
100
|
-
}
|
|
101
|
-
return {
|
|
102
|
-
|
|
103
|
-
'object': value.object,
|
|
104
|
-
'id': value.id,
|
|
105
|
-
'createdAt': value.createdAt,
|
|
106
|
-
'updatedAt': value.updatedAt,
|
|
107
|
-
'url': value.url,
|
|
108
|
-
'filename': value.filename,
|
|
109
|
-
};
|
|
110
|
-
}
|
|
111
|
-
|
|
@@ -1,98 +0,0 @@
|
|
|
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.4.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 JobControllerList200Response
|
|
27
|
-
*/
|
|
28
|
-
export interface JobControllerList200Response {
|
|
29
|
-
/**
|
|
30
|
-
*
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof JobControllerList200Response
|
|
33
|
-
*/
|
|
34
|
-
object?: JobControllerList200ResponseObjectEnum;
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
* @type {number}
|
|
38
|
-
* @memberof JobControllerList200Response
|
|
39
|
-
*/
|
|
40
|
-
totalElements?: number;
|
|
41
|
-
/**
|
|
42
|
-
*
|
|
43
|
-
* @type {Array<JobDto>}
|
|
44
|
-
* @memberof JobControllerList200Response
|
|
45
|
-
*/
|
|
46
|
-
data?: Array<JobDto>;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
/**
|
|
51
|
-
* @export
|
|
52
|
-
*/
|
|
53
|
-
export const JobControllerList200ResponseObjectEnum = {
|
|
54
|
-
List: 'list'
|
|
55
|
-
} as const;
|
|
56
|
-
export type JobControllerList200ResponseObjectEnum = typeof JobControllerList200ResponseObjectEnum[keyof typeof JobControllerList200ResponseObjectEnum];
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
/**
|
|
60
|
-
* Check if a given object implements the JobControllerList200Response interface.
|
|
61
|
-
*/
|
|
62
|
-
export function instanceOfJobControllerList200Response(value: object): boolean {
|
|
63
|
-
let isInstance = true;
|
|
64
|
-
|
|
65
|
-
return isInstance;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
export function JobControllerList200ResponseFromJSON(json: any): JobControllerList200Response {
|
|
69
|
-
return JobControllerList200ResponseFromJSONTyped(json, false);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
export function JobControllerList200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobControllerList200Response {
|
|
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 JobControllerList200ResponseToJSON(value?: JobControllerList200Response | 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
|
-
|
|
@@ -1,73 +0,0 @@
|
|
|
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: 1.88.0
|
|
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 JobDtoPeriodicitiesInner
|
|
20
|
-
*/
|
|
21
|
-
export interface JobDtoPeriodicitiesInner {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {boolean}
|
|
25
|
-
* @memberof JobDtoPeriodicitiesInner
|
|
26
|
-
*/
|
|
27
|
-
isEnabled?: boolean;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @memberof JobDtoPeriodicitiesInner
|
|
32
|
-
*/
|
|
33
|
-
cronExpression?: string;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* Check if a given object implements the JobDtoPeriodicitiesInner interface.
|
|
38
|
-
*/
|
|
39
|
-
export function instanceOfJobDtoPeriodicitiesInner(value: object): boolean {
|
|
40
|
-
let isInstance = true;
|
|
41
|
-
|
|
42
|
-
return isInstance;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export function JobDtoPeriodicitiesInnerFromJSON(json: any): JobDtoPeriodicitiesInner {
|
|
46
|
-
return JobDtoPeriodicitiesInnerFromJSONTyped(json, false);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export function JobDtoPeriodicitiesInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobDtoPeriodicitiesInner {
|
|
50
|
-
if ((json === undefined) || (json === null)) {
|
|
51
|
-
return json;
|
|
52
|
-
}
|
|
53
|
-
return {
|
|
54
|
-
|
|
55
|
-
'isEnabled': !exists(json, 'isEnabled') ? undefined : json['isEnabled'],
|
|
56
|
-
'cronExpression': !exists(json, 'cronExpression') ? undefined : json['cronExpression'],
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export function JobDtoPeriodicitiesInnerToJSON(value?: JobDtoPeriodicitiesInner | null): any {
|
|
61
|
-
if (value === undefined) {
|
|
62
|
-
return undefined;
|
|
63
|
-
}
|
|
64
|
-
if (value === null) {
|
|
65
|
-
return null;
|
|
66
|
-
}
|
|
67
|
-
return {
|
|
68
|
-
|
|
69
|
-
'isEnabled': value.isEnabled,
|
|
70
|
-
'cronExpression': value.cronExpression,
|
|
71
|
-
};
|
|
72
|
-
}
|
|
73
|
-
|
|
@@ -1,73 +0,0 @@
|
|
|
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.1.0
|
|
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 JobDtoPeriodicityInner
|
|
20
|
-
*/
|
|
21
|
-
export interface JobDtoPeriodicityInner {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {boolean}
|
|
25
|
-
* @memberof JobDtoPeriodicityInner
|
|
26
|
-
*/
|
|
27
|
-
isEnabled?: boolean;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @memberof JobDtoPeriodicityInner
|
|
32
|
-
*/
|
|
33
|
-
cronExpression?: string;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* Check if a given object implements the JobDtoPeriodicityInner interface.
|
|
38
|
-
*/
|
|
39
|
-
export function instanceOfJobDtoPeriodicityInner(value: object): boolean {
|
|
40
|
-
let isInstance = true;
|
|
41
|
-
|
|
42
|
-
return isInstance;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export function JobDtoPeriodicityInnerFromJSON(json: any): JobDtoPeriodicityInner {
|
|
46
|
-
return JobDtoPeriodicityInnerFromJSONTyped(json, false);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export function JobDtoPeriodicityInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobDtoPeriodicityInner {
|
|
50
|
-
if ((json === undefined) || (json === null)) {
|
|
51
|
-
return json;
|
|
52
|
-
}
|
|
53
|
-
return {
|
|
54
|
-
|
|
55
|
-
'isEnabled': !exists(json, 'isEnabled') ? undefined : json['isEnabled'],
|
|
56
|
-
'cronExpression': !exists(json, 'cronExpression') ? undefined : json['cronExpression'],
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export function JobDtoPeriodicityInnerToJSON(value?: JobDtoPeriodicityInner | null): any {
|
|
61
|
-
if (value === undefined) {
|
|
62
|
-
return undefined;
|
|
63
|
-
}
|
|
64
|
-
if (value === null) {
|
|
65
|
-
return null;
|
|
66
|
-
}
|
|
67
|
-
return {
|
|
68
|
-
|
|
69
|
-
'isEnabled': value.isEnabled,
|
|
70
|
-
'cronExpression': value.cronExpression,
|
|
71
|
-
};
|
|
72
|
-
}
|
|
73
|
-
|
package/models/JobDtoProject.ts
DELETED
|
@@ -1,73 +0,0 @@
|
|
|
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: 1.88.0
|
|
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 JobDtoProject
|
|
20
|
-
*/
|
|
21
|
-
export interface JobDtoProject {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof JobDtoProject
|
|
26
|
-
*/
|
|
27
|
-
id?: string;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @memberof JobDtoProject
|
|
32
|
-
*/
|
|
33
|
-
name?: string;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* Check if a given object implements the JobDtoProject interface.
|
|
38
|
-
*/
|
|
39
|
-
export function instanceOfJobDtoProject(value: object): boolean {
|
|
40
|
-
let isInstance = true;
|
|
41
|
-
|
|
42
|
-
return isInstance;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export function JobDtoProjectFromJSON(json: any): JobDtoProject {
|
|
46
|
-
return JobDtoProjectFromJSONTyped(json, false);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export function JobDtoProjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobDtoProject {
|
|
50
|
-
if ((json === undefined) || (json === null)) {
|
|
51
|
-
return json;
|
|
52
|
-
}
|
|
53
|
-
return {
|
|
54
|
-
|
|
55
|
-
'id': !exists(json, 'id') ? undefined : json['id'],
|
|
56
|
-
'name': !exists(json, 'name') ? undefined : json['name'],
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export function JobDtoProjectToJSON(value?: JobDtoProject | null): any {
|
|
61
|
-
if (value === undefined) {
|
|
62
|
-
return undefined;
|
|
63
|
-
}
|
|
64
|
-
if (value === null) {
|
|
65
|
-
return null;
|
|
66
|
-
}
|
|
67
|
-
return {
|
|
68
|
-
|
|
69
|
-
'id': value.id,
|
|
70
|
-
'name': value.name,
|
|
71
|
-
};
|
|
72
|
-
}
|
|
73
|
-
|