@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/models/index.ts
CHANGED
|
@@ -4,19 +4,23 @@ export * from './CreateJobDto';
|
|
|
4
4
|
export * from './CreateJobExecutionDto';
|
|
5
5
|
export * from './CreateTaskDto';
|
|
6
6
|
export * from './CreateVariableDto';
|
|
7
|
-
export * from './FileControllerGetFiles200Response';
|
|
8
7
|
export * from './FileDto';
|
|
9
|
-
export * from './
|
|
8
|
+
export * from './FindVariablesRequest';
|
|
9
|
+
export * from './GetFiles200Response';
|
|
10
|
+
export * from './GetJobExecutionById400Response';
|
|
11
|
+
export * from './GetJobExecutions200Response';
|
|
12
|
+
export * from './GetJobs200Response';
|
|
13
|
+
export * from './GetTasks200Response';
|
|
14
|
+
export * from './GetVariables200Response';
|
|
15
|
+
export * from './HighOrderQuery';
|
|
10
16
|
export * from './JobDto';
|
|
11
|
-
export * from './JobExecutionControllerGetOne400Response';
|
|
12
|
-
export * from './JobExecutionControllerList200Response';
|
|
13
17
|
export * from './JobExecutionDto';
|
|
18
|
+
export * from './LowOrderQuery';
|
|
14
19
|
export * from './PatchTaskExecutionDto';
|
|
15
|
-
export * from './
|
|
20
|
+
export * from './Query';
|
|
16
21
|
export * from './TaskDto';
|
|
17
22
|
export * from './TaskExecutionDto';
|
|
18
23
|
export * from './UpdateJobDto';
|
|
19
24
|
export * from './UpdateTaskDto';
|
|
20
25
|
export * from './UpdateVariableDto';
|
|
21
|
-
export * from './VariableControllerList200Response';
|
|
22
26
|
export * from './VariableDto';
|
package/package.json
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
"main": "./dist/index.js",
|
|
4
4
|
"author": "product-live",
|
|
5
5
|
"license": "ISC",
|
|
6
|
-
"version": "2.
|
|
7
|
-
"hash": "
|
|
6
|
+
"version": "2.5.1",
|
|
7
|
+
"hash": "4759f84cd01091b540c2994e5d20e5aa3f7b3f4482f5b0c9f6e0393d62423ccf",
|
|
8
8
|
"homepage": "https://api-next.product-live.com/-json",
|
|
9
9
|
"name": "@product-live/api-sdk",
|
|
10
10
|
"scripts": {
|
package/runtime.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).
|