@boboddy/sdk 0.2.15-alpha → 0.3.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/dist/client.js +53 -53
- package/dist/definitions/pipelines/index.js +53 -53
- package/dist/definitions/steps/index.js +53 -53
- package/dist/generated/sdk.gen.d.ts +11 -11
- package/dist/generated/types.gen.d.ts +1448 -1407
- package/dist/index.js +53 -53
- package/dist/push/index.js +53 -53
- package/dist/step-execution-plane-client.d.ts +6 -6
- package/package.json +1 -1
package/dist/client.js
CHANGED
|
@@ -867,6 +867,18 @@ class Api extends HeyApiClient {
|
|
|
867
867
|
}
|
|
868
868
|
|
|
869
869
|
class Projects extends HeyApiClient {
|
|
870
|
+
resolveProjectBySlug(options) {
|
|
871
|
+
return (options.client ?? this.client).get({ url: "/api/projects/resolve", ...options });
|
|
872
|
+
}
|
|
873
|
+
listProjectWorkItems(options) {
|
|
874
|
+
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/work-items", ...options });
|
|
875
|
+
}
|
|
876
|
+
listProjectWorkItemFieldOptions(options) {
|
|
877
|
+
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/work-item-field-options", ...options });
|
|
878
|
+
}
|
|
879
|
+
getProject(options) {
|
|
880
|
+
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}", ...options });
|
|
881
|
+
}
|
|
870
882
|
listProjects(options) {
|
|
871
883
|
return (options?.client ?? this.client).get({ url: "/api/projects", ...options });
|
|
872
884
|
}
|
|
@@ -880,18 +892,6 @@ class Projects extends HeyApiClient {
|
|
|
880
892
|
}
|
|
881
893
|
});
|
|
882
894
|
}
|
|
883
|
-
resolveProjectBySlug(options) {
|
|
884
|
-
return (options.client ?? this.client).get({ url: "/api/projects/resolve", ...options });
|
|
885
|
-
}
|
|
886
|
-
listProjectWorkItems(options) {
|
|
887
|
-
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/work-items", ...options });
|
|
888
|
-
}
|
|
889
|
-
listProjectWorkItemFieldOptions(options) {
|
|
890
|
-
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/work-item-field-options", ...options });
|
|
891
|
-
}
|
|
892
|
-
getProject(options) {
|
|
893
|
-
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}", ...options });
|
|
894
|
-
}
|
|
895
895
|
updateProjectDefaultPipelineAssignment(options) {
|
|
896
896
|
return (options.client ?? this.client).put({
|
|
897
897
|
url: "/api/projects/{projectId}/default-pipeline-assignment",
|
|
@@ -950,32 +950,6 @@ class StepDefinitions extends HeyApiClient {
|
|
|
950
950
|
}
|
|
951
951
|
|
|
952
952
|
class StepExecutions extends HeyApiClient {
|
|
953
|
-
createArtifactUploadUrl(options) {
|
|
954
|
-
return (options.client ?? this.client).post({
|
|
955
|
-
url: "/api/step-executions/{stepExecutionId}/artifact-upload-url",
|
|
956
|
-
...options,
|
|
957
|
-
headers: {
|
|
958
|
-
"Content-Type": "application/json",
|
|
959
|
-
...options.headers
|
|
960
|
-
}
|
|
961
|
-
});
|
|
962
|
-
}
|
|
963
|
-
listStepExecutionArtifacts(options) {
|
|
964
|
-
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/artifacts", ...options });
|
|
965
|
-
}
|
|
966
|
-
recordStepExecutionArtifact(options) {
|
|
967
|
-
return (options.client ?? this.client).post({
|
|
968
|
-
url: "/api/step-executions/{stepExecutionId}/artifacts",
|
|
969
|
-
...options,
|
|
970
|
-
headers: {
|
|
971
|
-
"Content-Type": "application/json",
|
|
972
|
-
...options.headers
|
|
973
|
-
}
|
|
974
|
-
});
|
|
975
|
-
}
|
|
976
|
-
getArtifactDownloadUrl(options) {
|
|
977
|
-
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/artifacts/{artifactId}/download-url", ...options });
|
|
978
|
-
}
|
|
979
953
|
claimStepExecutions(options) {
|
|
980
954
|
return (options.client ?? this.client).post({
|
|
981
955
|
url: "/api/step-executions/claims",
|
|
@@ -1045,9 +1019,6 @@ class StepExecutions extends HeyApiClient {
|
|
|
1045
1019
|
extractStepExecutionSignals(options) {
|
|
1046
1020
|
return (options.client ?? this.client).post({ url: "/api/step-execution-results/{stepExecutionResultId}/signals/extract", ...options });
|
|
1047
1021
|
}
|
|
1048
|
-
getStepExecution(options) {
|
|
1049
|
-
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}", ...options });
|
|
1050
|
-
}
|
|
1051
1022
|
readStepExecutionLogs(options) {
|
|
1052
1023
|
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/logs", ...options });
|
|
1053
1024
|
}
|
|
@@ -1061,9 +1032,38 @@ class StepExecutions extends HeyApiClient {
|
|
|
1061
1032
|
}
|
|
1062
1033
|
});
|
|
1063
1034
|
}
|
|
1035
|
+
getStepExecution(options) {
|
|
1036
|
+
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}", ...options });
|
|
1037
|
+
}
|
|
1064
1038
|
getStepExecutionLogArchive(options) {
|
|
1065
1039
|
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/logs/archive", ...options });
|
|
1066
1040
|
}
|
|
1041
|
+
createArtifactUploadUrl(options) {
|
|
1042
|
+
return (options.client ?? this.client).post({
|
|
1043
|
+
url: "/api/step-executions/{stepExecutionId}/artifact-upload-url",
|
|
1044
|
+
...options,
|
|
1045
|
+
headers: {
|
|
1046
|
+
"Content-Type": "application/json",
|
|
1047
|
+
...options.headers
|
|
1048
|
+
}
|
|
1049
|
+
});
|
|
1050
|
+
}
|
|
1051
|
+
listStepExecutionArtifacts(options) {
|
|
1052
|
+
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/artifacts", ...options });
|
|
1053
|
+
}
|
|
1054
|
+
recordStepExecutionArtifact(options) {
|
|
1055
|
+
return (options.client ?? this.client).post({
|
|
1056
|
+
url: "/api/step-executions/{stepExecutionId}/artifacts",
|
|
1057
|
+
...options,
|
|
1058
|
+
headers: {
|
|
1059
|
+
"Content-Type": "application/json",
|
|
1060
|
+
...options.headers
|
|
1061
|
+
}
|
|
1062
|
+
});
|
|
1063
|
+
}
|
|
1064
|
+
getArtifactDownloadUrl(options) {
|
|
1065
|
+
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/artifacts/{artifactId}/download-url", ...options });
|
|
1066
|
+
}
|
|
1067
1067
|
}
|
|
1068
1068
|
|
|
1069
1069
|
class PipelineDefinitions extends HeyApiClient {
|
|
@@ -1087,12 +1087,6 @@ class PipelineDefinitions extends HeyApiClient {
|
|
|
1087
1087
|
}
|
|
1088
1088
|
});
|
|
1089
1089
|
}
|
|
1090
|
-
getPipelineDefinition(options) {
|
|
1091
|
-
return (options.client ?? this.client).get({ url: "/api/linear-pipeline-definitions/{linearPipelineDefinitionId}", ...options });
|
|
1092
|
-
}
|
|
1093
|
-
listPipelineDefinitions(options) {
|
|
1094
|
-
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/linear-pipeline-definitions", ...options });
|
|
1095
|
-
}
|
|
1096
1090
|
archivePipelineDefinition(options) {
|
|
1097
1091
|
return (options.client ?? this.client).put({ url: "/api/linear-pipeline-definitions/{linearPipelineDefinitionId}/archive", ...options });
|
|
1098
1092
|
}
|
|
@@ -1132,6 +1126,12 @@ class PipelineDefinitions extends HeyApiClient {
|
|
|
1132
1126
|
}
|
|
1133
1127
|
});
|
|
1134
1128
|
}
|
|
1129
|
+
getPipelineDefinition(options) {
|
|
1130
|
+
return (options.client ?? this.client).get({ url: "/api/linear-pipeline-definitions/{linearPipelineDefinitionId}", ...options });
|
|
1131
|
+
}
|
|
1132
|
+
listPipelineDefinitions(options) {
|
|
1133
|
+
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/linear-pipeline-definitions", ...options });
|
|
1134
|
+
}
|
|
1135
1135
|
}
|
|
1136
1136
|
|
|
1137
1137
|
class PipelineExecutions extends HeyApiClient {
|
|
@@ -1205,6 +1205,12 @@ class PipelineExecutions extends HeyApiClient {
|
|
|
1205
1205
|
}
|
|
1206
1206
|
|
|
1207
1207
|
class WorkItems extends HeyApiClient {
|
|
1208
|
+
deleteWorkItem(options) {
|
|
1209
|
+
return (options.client ?? this.client).delete({ url: "/api/work-items/{workItemId}", ...options });
|
|
1210
|
+
}
|
|
1211
|
+
getWorkItem(options) {
|
|
1212
|
+
return (options.client ?? this.client).get({ url: "/api/work-items/{workItemId}", ...options });
|
|
1213
|
+
}
|
|
1208
1214
|
createWorkItem(options) {
|
|
1209
1215
|
return (options.client ?? this.client).post({
|
|
1210
1216
|
url: "/api/work-items",
|
|
@@ -1255,12 +1261,6 @@ class WorkItems extends HeyApiClient {
|
|
|
1255
1261
|
}
|
|
1256
1262
|
});
|
|
1257
1263
|
}
|
|
1258
|
-
deleteWorkItem(options) {
|
|
1259
|
-
return (options.client ?? this.client).delete({ url: "/api/work-items/{workItemId}", ...options });
|
|
1260
|
-
}
|
|
1261
|
-
getWorkItem(options) {
|
|
1262
|
-
return (options.client ?? this.client).get({ url: "/api/work-items/{workItemId}", ...options });
|
|
1263
|
-
}
|
|
1264
1264
|
}
|
|
1265
1265
|
|
|
1266
1266
|
class WorkItemComments extends HeyApiClient {
|
|
@@ -15689,6 +15689,18 @@ class Api extends HeyApiClient {
|
|
|
15689
15689
|
}
|
|
15690
15690
|
|
|
15691
15691
|
class Projects extends HeyApiClient {
|
|
15692
|
+
resolveProjectBySlug(options) {
|
|
15693
|
+
return (options.client ?? this.client).get({ url: "/api/projects/resolve", ...options });
|
|
15694
|
+
}
|
|
15695
|
+
listProjectWorkItems(options) {
|
|
15696
|
+
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/work-items", ...options });
|
|
15697
|
+
}
|
|
15698
|
+
listProjectWorkItemFieldOptions(options) {
|
|
15699
|
+
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/work-item-field-options", ...options });
|
|
15700
|
+
}
|
|
15701
|
+
getProject(options) {
|
|
15702
|
+
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}", ...options });
|
|
15703
|
+
}
|
|
15692
15704
|
listProjects(options) {
|
|
15693
15705
|
return (options?.client ?? this.client).get({ url: "/api/projects", ...options });
|
|
15694
15706
|
}
|
|
@@ -15702,18 +15714,6 @@ class Projects extends HeyApiClient {
|
|
|
15702
15714
|
}
|
|
15703
15715
|
});
|
|
15704
15716
|
}
|
|
15705
|
-
resolveProjectBySlug(options) {
|
|
15706
|
-
return (options.client ?? this.client).get({ url: "/api/projects/resolve", ...options });
|
|
15707
|
-
}
|
|
15708
|
-
listProjectWorkItems(options) {
|
|
15709
|
-
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/work-items", ...options });
|
|
15710
|
-
}
|
|
15711
|
-
listProjectWorkItemFieldOptions(options) {
|
|
15712
|
-
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/work-item-field-options", ...options });
|
|
15713
|
-
}
|
|
15714
|
-
getProject(options) {
|
|
15715
|
-
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}", ...options });
|
|
15716
|
-
}
|
|
15717
15717
|
updateProjectDefaultPipelineAssignment(options) {
|
|
15718
15718
|
return (options.client ?? this.client).put({
|
|
15719
15719
|
url: "/api/projects/{projectId}/default-pipeline-assignment",
|
|
@@ -15772,32 +15772,6 @@ class StepDefinitions extends HeyApiClient {
|
|
|
15772
15772
|
}
|
|
15773
15773
|
|
|
15774
15774
|
class StepExecutions extends HeyApiClient {
|
|
15775
|
-
createArtifactUploadUrl(options) {
|
|
15776
|
-
return (options.client ?? this.client).post({
|
|
15777
|
-
url: "/api/step-executions/{stepExecutionId}/artifact-upload-url",
|
|
15778
|
-
...options,
|
|
15779
|
-
headers: {
|
|
15780
|
-
"Content-Type": "application/json",
|
|
15781
|
-
...options.headers
|
|
15782
|
-
}
|
|
15783
|
-
});
|
|
15784
|
-
}
|
|
15785
|
-
listStepExecutionArtifacts(options) {
|
|
15786
|
-
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/artifacts", ...options });
|
|
15787
|
-
}
|
|
15788
|
-
recordStepExecutionArtifact(options) {
|
|
15789
|
-
return (options.client ?? this.client).post({
|
|
15790
|
-
url: "/api/step-executions/{stepExecutionId}/artifacts",
|
|
15791
|
-
...options,
|
|
15792
|
-
headers: {
|
|
15793
|
-
"Content-Type": "application/json",
|
|
15794
|
-
...options.headers
|
|
15795
|
-
}
|
|
15796
|
-
});
|
|
15797
|
-
}
|
|
15798
|
-
getArtifactDownloadUrl(options) {
|
|
15799
|
-
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/artifacts/{artifactId}/download-url", ...options });
|
|
15800
|
-
}
|
|
15801
15775
|
claimStepExecutions(options) {
|
|
15802
15776
|
return (options.client ?? this.client).post({
|
|
15803
15777
|
url: "/api/step-executions/claims",
|
|
@@ -15867,9 +15841,6 @@ class StepExecutions extends HeyApiClient {
|
|
|
15867
15841
|
extractStepExecutionSignals(options) {
|
|
15868
15842
|
return (options.client ?? this.client).post({ url: "/api/step-execution-results/{stepExecutionResultId}/signals/extract", ...options });
|
|
15869
15843
|
}
|
|
15870
|
-
getStepExecution(options) {
|
|
15871
|
-
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}", ...options });
|
|
15872
|
-
}
|
|
15873
15844
|
readStepExecutionLogs(options) {
|
|
15874
15845
|
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/logs", ...options });
|
|
15875
15846
|
}
|
|
@@ -15883,9 +15854,38 @@ class StepExecutions extends HeyApiClient {
|
|
|
15883
15854
|
}
|
|
15884
15855
|
});
|
|
15885
15856
|
}
|
|
15857
|
+
getStepExecution(options) {
|
|
15858
|
+
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}", ...options });
|
|
15859
|
+
}
|
|
15886
15860
|
getStepExecutionLogArchive(options) {
|
|
15887
15861
|
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/logs/archive", ...options });
|
|
15888
15862
|
}
|
|
15863
|
+
createArtifactUploadUrl(options) {
|
|
15864
|
+
return (options.client ?? this.client).post({
|
|
15865
|
+
url: "/api/step-executions/{stepExecutionId}/artifact-upload-url",
|
|
15866
|
+
...options,
|
|
15867
|
+
headers: {
|
|
15868
|
+
"Content-Type": "application/json",
|
|
15869
|
+
...options.headers
|
|
15870
|
+
}
|
|
15871
|
+
});
|
|
15872
|
+
}
|
|
15873
|
+
listStepExecutionArtifacts(options) {
|
|
15874
|
+
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/artifacts", ...options });
|
|
15875
|
+
}
|
|
15876
|
+
recordStepExecutionArtifact(options) {
|
|
15877
|
+
return (options.client ?? this.client).post({
|
|
15878
|
+
url: "/api/step-executions/{stepExecutionId}/artifacts",
|
|
15879
|
+
...options,
|
|
15880
|
+
headers: {
|
|
15881
|
+
"Content-Type": "application/json",
|
|
15882
|
+
...options.headers
|
|
15883
|
+
}
|
|
15884
|
+
});
|
|
15885
|
+
}
|
|
15886
|
+
getArtifactDownloadUrl(options) {
|
|
15887
|
+
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/artifacts/{artifactId}/download-url", ...options });
|
|
15888
|
+
}
|
|
15889
15889
|
}
|
|
15890
15890
|
|
|
15891
15891
|
class PipelineDefinitions extends HeyApiClient {
|
|
@@ -15909,12 +15909,6 @@ class PipelineDefinitions extends HeyApiClient {
|
|
|
15909
15909
|
}
|
|
15910
15910
|
});
|
|
15911
15911
|
}
|
|
15912
|
-
getPipelineDefinition(options) {
|
|
15913
|
-
return (options.client ?? this.client).get({ url: "/api/linear-pipeline-definitions/{linearPipelineDefinitionId}", ...options });
|
|
15914
|
-
}
|
|
15915
|
-
listPipelineDefinitions(options) {
|
|
15916
|
-
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/linear-pipeline-definitions", ...options });
|
|
15917
|
-
}
|
|
15918
15912
|
archivePipelineDefinition(options) {
|
|
15919
15913
|
return (options.client ?? this.client).put({ url: "/api/linear-pipeline-definitions/{linearPipelineDefinitionId}/archive", ...options });
|
|
15920
15914
|
}
|
|
@@ -15954,6 +15948,12 @@ class PipelineDefinitions extends HeyApiClient {
|
|
|
15954
15948
|
}
|
|
15955
15949
|
});
|
|
15956
15950
|
}
|
|
15951
|
+
getPipelineDefinition(options) {
|
|
15952
|
+
return (options.client ?? this.client).get({ url: "/api/linear-pipeline-definitions/{linearPipelineDefinitionId}", ...options });
|
|
15953
|
+
}
|
|
15954
|
+
listPipelineDefinitions(options) {
|
|
15955
|
+
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/linear-pipeline-definitions", ...options });
|
|
15956
|
+
}
|
|
15957
15957
|
}
|
|
15958
15958
|
|
|
15959
15959
|
class PipelineExecutions extends HeyApiClient {
|
|
@@ -16027,6 +16027,12 @@ class PipelineExecutions extends HeyApiClient {
|
|
|
16027
16027
|
}
|
|
16028
16028
|
|
|
16029
16029
|
class WorkItems extends HeyApiClient {
|
|
16030
|
+
deleteWorkItem(options) {
|
|
16031
|
+
return (options.client ?? this.client).delete({ url: "/api/work-items/{workItemId}", ...options });
|
|
16032
|
+
}
|
|
16033
|
+
getWorkItem(options) {
|
|
16034
|
+
return (options.client ?? this.client).get({ url: "/api/work-items/{workItemId}", ...options });
|
|
16035
|
+
}
|
|
16030
16036
|
createWorkItem(options) {
|
|
16031
16037
|
return (options.client ?? this.client).post({
|
|
16032
16038
|
url: "/api/work-items",
|
|
@@ -16077,12 +16083,6 @@ class WorkItems extends HeyApiClient {
|
|
|
16077
16083
|
}
|
|
16078
16084
|
});
|
|
16079
16085
|
}
|
|
16080
|
-
deleteWorkItem(options) {
|
|
16081
|
-
return (options.client ?? this.client).delete({ url: "/api/work-items/{workItemId}", ...options });
|
|
16082
|
-
}
|
|
16083
|
-
getWorkItem(options) {
|
|
16084
|
-
return (options.client ?? this.client).get({ url: "/api/work-items/{workItemId}", ...options });
|
|
16085
|
-
}
|
|
16086
16086
|
}
|
|
16087
16087
|
|
|
16088
16088
|
class WorkItemComments extends HeyApiClient {
|
|
@@ -12933,6 +12933,18 @@ class Api extends HeyApiClient {
|
|
|
12933
12933
|
}
|
|
12934
12934
|
|
|
12935
12935
|
class Projects extends HeyApiClient {
|
|
12936
|
+
resolveProjectBySlug(options) {
|
|
12937
|
+
return (options.client ?? this.client).get({ url: "/api/projects/resolve", ...options });
|
|
12938
|
+
}
|
|
12939
|
+
listProjectWorkItems(options) {
|
|
12940
|
+
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/work-items", ...options });
|
|
12941
|
+
}
|
|
12942
|
+
listProjectWorkItemFieldOptions(options) {
|
|
12943
|
+
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/work-item-field-options", ...options });
|
|
12944
|
+
}
|
|
12945
|
+
getProject(options) {
|
|
12946
|
+
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}", ...options });
|
|
12947
|
+
}
|
|
12936
12948
|
listProjects(options) {
|
|
12937
12949
|
return (options?.client ?? this.client).get({ url: "/api/projects", ...options });
|
|
12938
12950
|
}
|
|
@@ -12946,18 +12958,6 @@ class Projects extends HeyApiClient {
|
|
|
12946
12958
|
}
|
|
12947
12959
|
});
|
|
12948
12960
|
}
|
|
12949
|
-
resolveProjectBySlug(options) {
|
|
12950
|
-
return (options.client ?? this.client).get({ url: "/api/projects/resolve", ...options });
|
|
12951
|
-
}
|
|
12952
|
-
listProjectWorkItems(options) {
|
|
12953
|
-
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/work-items", ...options });
|
|
12954
|
-
}
|
|
12955
|
-
listProjectWorkItemFieldOptions(options) {
|
|
12956
|
-
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/work-item-field-options", ...options });
|
|
12957
|
-
}
|
|
12958
|
-
getProject(options) {
|
|
12959
|
-
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}", ...options });
|
|
12960
|
-
}
|
|
12961
12961
|
updateProjectDefaultPipelineAssignment(options) {
|
|
12962
12962
|
return (options.client ?? this.client).put({
|
|
12963
12963
|
url: "/api/projects/{projectId}/default-pipeline-assignment",
|
|
@@ -13016,32 +13016,6 @@ class StepDefinitions extends HeyApiClient {
|
|
|
13016
13016
|
}
|
|
13017
13017
|
|
|
13018
13018
|
class StepExecutions extends HeyApiClient {
|
|
13019
|
-
createArtifactUploadUrl(options) {
|
|
13020
|
-
return (options.client ?? this.client).post({
|
|
13021
|
-
url: "/api/step-executions/{stepExecutionId}/artifact-upload-url",
|
|
13022
|
-
...options,
|
|
13023
|
-
headers: {
|
|
13024
|
-
"Content-Type": "application/json",
|
|
13025
|
-
...options.headers
|
|
13026
|
-
}
|
|
13027
|
-
});
|
|
13028
|
-
}
|
|
13029
|
-
listStepExecutionArtifacts(options) {
|
|
13030
|
-
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/artifacts", ...options });
|
|
13031
|
-
}
|
|
13032
|
-
recordStepExecutionArtifact(options) {
|
|
13033
|
-
return (options.client ?? this.client).post({
|
|
13034
|
-
url: "/api/step-executions/{stepExecutionId}/artifacts",
|
|
13035
|
-
...options,
|
|
13036
|
-
headers: {
|
|
13037
|
-
"Content-Type": "application/json",
|
|
13038
|
-
...options.headers
|
|
13039
|
-
}
|
|
13040
|
-
});
|
|
13041
|
-
}
|
|
13042
|
-
getArtifactDownloadUrl(options) {
|
|
13043
|
-
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/artifacts/{artifactId}/download-url", ...options });
|
|
13044
|
-
}
|
|
13045
13019
|
claimStepExecutions(options) {
|
|
13046
13020
|
return (options.client ?? this.client).post({
|
|
13047
13021
|
url: "/api/step-executions/claims",
|
|
@@ -13111,9 +13085,6 @@ class StepExecutions extends HeyApiClient {
|
|
|
13111
13085
|
extractStepExecutionSignals(options) {
|
|
13112
13086
|
return (options.client ?? this.client).post({ url: "/api/step-execution-results/{stepExecutionResultId}/signals/extract", ...options });
|
|
13113
13087
|
}
|
|
13114
|
-
getStepExecution(options) {
|
|
13115
|
-
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}", ...options });
|
|
13116
|
-
}
|
|
13117
13088
|
readStepExecutionLogs(options) {
|
|
13118
13089
|
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/logs", ...options });
|
|
13119
13090
|
}
|
|
@@ -13127,9 +13098,38 @@ class StepExecutions extends HeyApiClient {
|
|
|
13127
13098
|
}
|
|
13128
13099
|
});
|
|
13129
13100
|
}
|
|
13101
|
+
getStepExecution(options) {
|
|
13102
|
+
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}", ...options });
|
|
13103
|
+
}
|
|
13130
13104
|
getStepExecutionLogArchive(options) {
|
|
13131
13105
|
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/logs/archive", ...options });
|
|
13132
13106
|
}
|
|
13107
|
+
createArtifactUploadUrl(options) {
|
|
13108
|
+
return (options.client ?? this.client).post({
|
|
13109
|
+
url: "/api/step-executions/{stepExecutionId}/artifact-upload-url",
|
|
13110
|
+
...options,
|
|
13111
|
+
headers: {
|
|
13112
|
+
"Content-Type": "application/json",
|
|
13113
|
+
...options.headers
|
|
13114
|
+
}
|
|
13115
|
+
});
|
|
13116
|
+
}
|
|
13117
|
+
listStepExecutionArtifacts(options) {
|
|
13118
|
+
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/artifacts", ...options });
|
|
13119
|
+
}
|
|
13120
|
+
recordStepExecutionArtifact(options) {
|
|
13121
|
+
return (options.client ?? this.client).post({
|
|
13122
|
+
url: "/api/step-executions/{stepExecutionId}/artifacts",
|
|
13123
|
+
...options,
|
|
13124
|
+
headers: {
|
|
13125
|
+
"Content-Type": "application/json",
|
|
13126
|
+
...options.headers
|
|
13127
|
+
}
|
|
13128
|
+
});
|
|
13129
|
+
}
|
|
13130
|
+
getArtifactDownloadUrl(options) {
|
|
13131
|
+
return (options.client ?? this.client).get({ url: "/api/step-executions/{stepExecutionId}/artifacts/{artifactId}/download-url", ...options });
|
|
13132
|
+
}
|
|
13133
13133
|
}
|
|
13134
13134
|
|
|
13135
13135
|
class PipelineDefinitions extends HeyApiClient {
|
|
@@ -13153,12 +13153,6 @@ class PipelineDefinitions extends HeyApiClient {
|
|
|
13153
13153
|
}
|
|
13154
13154
|
});
|
|
13155
13155
|
}
|
|
13156
|
-
getPipelineDefinition(options) {
|
|
13157
|
-
return (options.client ?? this.client).get({ url: "/api/linear-pipeline-definitions/{linearPipelineDefinitionId}", ...options });
|
|
13158
|
-
}
|
|
13159
|
-
listPipelineDefinitions(options) {
|
|
13160
|
-
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/linear-pipeline-definitions", ...options });
|
|
13161
|
-
}
|
|
13162
13156
|
archivePipelineDefinition(options) {
|
|
13163
13157
|
return (options.client ?? this.client).put({ url: "/api/linear-pipeline-definitions/{linearPipelineDefinitionId}/archive", ...options });
|
|
13164
13158
|
}
|
|
@@ -13198,6 +13192,12 @@ class PipelineDefinitions extends HeyApiClient {
|
|
|
13198
13192
|
}
|
|
13199
13193
|
});
|
|
13200
13194
|
}
|
|
13195
|
+
getPipelineDefinition(options) {
|
|
13196
|
+
return (options.client ?? this.client).get({ url: "/api/linear-pipeline-definitions/{linearPipelineDefinitionId}", ...options });
|
|
13197
|
+
}
|
|
13198
|
+
listPipelineDefinitions(options) {
|
|
13199
|
+
return (options.client ?? this.client).get({ url: "/api/projects/{projectId}/linear-pipeline-definitions", ...options });
|
|
13200
|
+
}
|
|
13201
13201
|
}
|
|
13202
13202
|
|
|
13203
13203
|
class PipelineExecutions extends HeyApiClient {
|
|
@@ -13271,6 +13271,12 @@ class PipelineExecutions extends HeyApiClient {
|
|
|
13271
13271
|
}
|
|
13272
13272
|
|
|
13273
13273
|
class WorkItems extends HeyApiClient {
|
|
13274
|
+
deleteWorkItem(options) {
|
|
13275
|
+
return (options.client ?? this.client).delete({ url: "/api/work-items/{workItemId}", ...options });
|
|
13276
|
+
}
|
|
13277
|
+
getWorkItem(options) {
|
|
13278
|
+
return (options.client ?? this.client).get({ url: "/api/work-items/{workItemId}", ...options });
|
|
13279
|
+
}
|
|
13274
13280
|
createWorkItem(options) {
|
|
13275
13281
|
return (options.client ?? this.client).post({
|
|
13276
13282
|
url: "/api/work-items",
|
|
@@ -13321,12 +13327,6 @@ class WorkItems extends HeyApiClient {
|
|
|
13321
13327
|
}
|
|
13322
13328
|
});
|
|
13323
13329
|
}
|
|
13324
|
-
deleteWorkItem(options) {
|
|
13325
|
-
return (options.client ?? this.client).delete({ url: "/api/work-items/{workItemId}", ...options });
|
|
13326
|
-
}
|
|
13327
|
-
getWorkItem(options) {
|
|
13328
|
-
return (options.client ?? this.client).get({ url: "/api/work-items/{workItemId}", ...options });
|
|
13329
|
-
}
|
|
13330
13330
|
}
|
|
13331
13331
|
|
|
13332
13332
|
class WorkItemComments extends HeyApiClient {
|
|
@@ -36,12 +36,12 @@ export declare class Api extends HeyApiClient {
|
|
|
36
36
|
'allApiAuth*8'<ThrowOnError extends boolean = false>(options?: Options<TraceApiAuth__Data, ThrowOnError>): import("./client").RequestResult<unknown, unknown, ThrowOnError, "fields">;
|
|
37
37
|
}
|
|
38
38
|
export declare class Projects extends HeyApiClient {
|
|
39
|
-
listProjects<ThrowOnError extends boolean = false>(options?: Options<GetApiProjectsData, ThrowOnError>): import("./client").RequestResult<GetApiProjectsResponses, GetApiProjectsErrors, ThrowOnError, "fields">;
|
|
40
|
-
createProject<ThrowOnError extends boolean = false>(options: Options<PostApiProjectsData, ThrowOnError>): import("./client").RequestResult<PostApiProjectsResponses, PostApiProjectsErrors, ThrowOnError, "fields">;
|
|
41
39
|
resolveProjectBySlug<ThrowOnError extends boolean = false>(options: Options<GetApiProjectsResolveData, ThrowOnError>): import("./client").RequestResult<GetApiProjectsResolveResponses, GetApiProjectsResolveErrors, ThrowOnError, "fields">;
|
|
42
40
|
listProjectWorkItems<ThrowOnError extends boolean = false>(options: Options<GetApiProjectsByProjectIdWorkItemsData, ThrowOnError>): import("./client").RequestResult<GetApiProjectsByProjectIdWorkItemsResponses, GetApiProjectsByProjectIdWorkItemsErrors, ThrowOnError, "fields">;
|
|
43
41
|
listProjectWorkItemFieldOptions<ThrowOnError extends boolean = false>(options: Options<GetApiProjectsByProjectIdWorkItemFieldOptionsData, ThrowOnError>): import("./client").RequestResult<GetApiProjectsByProjectIdWorkItemFieldOptionsResponses, GetApiProjectsByProjectIdWorkItemFieldOptionsErrors, ThrowOnError, "fields">;
|
|
44
42
|
getProject<ThrowOnError extends boolean = false>(options: Options<GetApiProjectsByProjectIdData, ThrowOnError>): import("./client").RequestResult<GetApiProjectsByProjectIdResponses, GetApiProjectsByProjectIdErrors, ThrowOnError, "fields">;
|
|
43
|
+
listProjects<ThrowOnError extends boolean = false>(options?: Options<GetApiProjectsData, ThrowOnError>): import("./client").RequestResult<GetApiProjectsResponses, GetApiProjectsErrors, ThrowOnError, "fields">;
|
|
44
|
+
createProject<ThrowOnError extends boolean = false>(options: Options<PostApiProjectsData, ThrowOnError>): import("./client").RequestResult<PostApiProjectsResponses, PostApiProjectsErrors, ThrowOnError, "fields">;
|
|
45
45
|
updateProjectDefaultPipelineAssignment<ThrowOnError extends boolean = false>(options: Options<PutApiProjectsByProjectIdDefaultPipelineAssignmentData, ThrowOnError>): import("./client").RequestResult<PutApiProjectsByProjectIdDefaultPipelineAssignmentResponses, PutApiProjectsByProjectIdDefaultPipelineAssignmentErrors, ThrowOnError, "fields">;
|
|
46
46
|
updateProjectMemberPermissions<ThrowOnError extends boolean = false>(options: Options<PutApiProjectsByProjectIdMembersByUserIdPermissionsData, ThrowOnError>): import("./client").RequestResult<PutApiProjectsByProjectIdMembersByUserIdPermissionsResponses, PutApiProjectsByProjectIdMembersByUserIdPermissionsErrors, ThrowOnError, "fields">;
|
|
47
47
|
createProjectFromGitHubRepo<ThrowOnError extends boolean = false>(options: Options<PostApiProjectsFromGithubData, ThrowOnError>): import("./client").RequestResult<PostApiProjectsFromGithubResponses, PostApiProjectsFromGithubErrors, ThrowOnError, "fields">;
|
|
@@ -54,10 +54,6 @@ export declare class StepDefinitions extends HeyApiClient {
|
|
|
54
54
|
archiveStepDefinition<ThrowOnError extends boolean = false>(options: Options<PutApiStepDefinitionsByStepDefinitionIdArchiveData, ThrowOnError>): import("./client").RequestResult<PutApiStepDefinitionsByStepDefinitionIdArchiveResponses, PutApiStepDefinitionsByStepDefinitionIdArchiveErrors, ThrowOnError, "fields">;
|
|
55
55
|
}
|
|
56
56
|
export declare class StepExecutions extends HeyApiClient {
|
|
57
|
-
createArtifactUploadUrl<ThrowOnError extends boolean = false>(options: Options<PostApiStepExecutionsByStepExecutionIdArtifactUploadUrlData, ThrowOnError>): import("./client").RequestResult<PostApiStepExecutionsByStepExecutionIdArtifactUploadUrlResponses, PostApiStepExecutionsByStepExecutionIdArtifactUploadUrlErrors, ThrowOnError, "fields">;
|
|
58
|
-
listStepExecutionArtifacts<ThrowOnError extends boolean = false>(options: Options<GetApiStepExecutionsByStepExecutionIdArtifactsData, ThrowOnError>): import("./client").RequestResult<GetApiStepExecutionsByStepExecutionIdArtifactsResponses, GetApiStepExecutionsByStepExecutionIdArtifactsErrors, ThrowOnError, "fields">;
|
|
59
|
-
recordStepExecutionArtifact<ThrowOnError extends boolean = false>(options: Options<PostApiStepExecutionsByStepExecutionIdArtifactsData, ThrowOnError>): import("./client").RequestResult<PostApiStepExecutionsByStepExecutionIdArtifactsResponses, PostApiStepExecutionsByStepExecutionIdArtifactsErrors, ThrowOnError, "fields">;
|
|
60
|
-
getArtifactDownloadUrl<ThrowOnError extends boolean = false>(options: Options<GetApiStepExecutionsByStepExecutionIdArtifactsByArtifactIdDownloadUrlData, ThrowOnError>): import("./client").RequestResult<GetApiStepExecutionsByStepExecutionIdArtifactsByArtifactIdDownloadUrlResponses, GetApiStepExecutionsByStepExecutionIdArtifactsByArtifactIdDownloadUrlErrors, ThrowOnError, "fields">;
|
|
61
57
|
claimStepExecutions<ThrowOnError extends boolean = false>(options: Options<PostApiStepExecutionsClaimsData, ThrowOnError>): import("./client").RequestResult<PostApiStepExecutionsClaimsResponses, PostApiStepExecutionsClaimsErrors, ThrowOnError, "fields">;
|
|
62
58
|
listStepExecutions<ThrowOnError extends boolean = false>(options: Options<GetApiStepExecutionsData, ThrowOnError>): import("./client").RequestResult<GetApiStepExecutionsResponses, GetApiStepExecutionsErrors, ThrowOnError, "fields">;
|
|
63
59
|
createStepExecution<ThrowOnError extends boolean = false>(options: Options<PostApiStepExecutionsData, ThrowOnError>): import("./client").RequestResult<PostApiStepExecutionsResponses, PostApiStepExecutionsErrors, ThrowOnError, "fields">;
|
|
@@ -67,22 +63,26 @@ export declare class StepExecutions extends HeyApiClient {
|
|
|
67
63
|
markStepExecutionRunning<ThrowOnError extends boolean = false>(options: Options<PutApiStepExecutionsByStepExecutionIdRunningData, ThrowOnError>): import("./client").RequestResult<PutApiStepExecutionsByStepExecutionIdRunningResponses, PutApiStepExecutionsByStepExecutionIdRunningErrors, ThrowOnError, "fields">;
|
|
68
64
|
createStepExecutionResult<ThrowOnError extends boolean = false>(options: Options<PostApiStepExecutionResultsData, ThrowOnError>): import("./client").RequestResult<PostApiStepExecutionResultsResponses, PostApiStepExecutionResultsErrors, ThrowOnError, "fields">;
|
|
69
65
|
extractStepExecutionSignals<ThrowOnError extends boolean = false>(options: Options<PostApiStepExecutionResultsByStepExecutionResultIdSignalsExtractData, ThrowOnError>): import("./client").RequestResult<PostApiStepExecutionResultsByStepExecutionResultIdSignalsExtractResponses, PostApiStepExecutionResultsByStepExecutionResultIdSignalsExtractErrors, ThrowOnError, "fields">;
|
|
70
|
-
getStepExecution<ThrowOnError extends boolean = false>(options: Options<GetApiStepExecutionsByStepExecutionIdData, ThrowOnError>): import("./client").RequestResult<GetApiStepExecutionsByStepExecutionIdResponses, GetApiStepExecutionsByStepExecutionIdErrors, ThrowOnError, "fields">;
|
|
71
66
|
readStepExecutionLogs<ThrowOnError extends boolean = false>(options: Options<GetApiStepExecutionsByStepExecutionIdLogsData, ThrowOnError>): import("./client").RequestResult<GetApiStepExecutionsByStepExecutionIdLogsResponses, GetApiStepExecutionsByStepExecutionIdLogsErrors, ThrowOnError, "fields">;
|
|
72
67
|
appendStepExecutionLogs<ThrowOnError extends boolean = false>(options: Options<PostApiStepExecutionsByStepExecutionIdLogsData, ThrowOnError>): import("./client").RequestResult<PostApiStepExecutionsByStepExecutionIdLogsResponses, PostApiStepExecutionsByStepExecutionIdLogsErrors, ThrowOnError, "fields">;
|
|
68
|
+
getStepExecution<ThrowOnError extends boolean = false>(options: Options<GetApiStepExecutionsByStepExecutionIdData, ThrowOnError>): import("./client").RequestResult<GetApiStepExecutionsByStepExecutionIdResponses, GetApiStepExecutionsByStepExecutionIdErrors, ThrowOnError, "fields">;
|
|
73
69
|
getStepExecutionLogArchive<ThrowOnError extends boolean = false>(options: Options<GetApiStepExecutionsByStepExecutionIdLogsArchiveData, ThrowOnError>): import("./client").RequestResult<GetApiStepExecutionsByStepExecutionIdLogsArchiveResponses, GetApiStepExecutionsByStepExecutionIdLogsArchiveErrors, ThrowOnError, "fields">;
|
|
70
|
+
createArtifactUploadUrl<ThrowOnError extends boolean = false>(options: Options<PostApiStepExecutionsByStepExecutionIdArtifactUploadUrlData, ThrowOnError>): import("./client").RequestResult<PostApiStepExecutionsByStepExecutionIdArtifactUploadUrlResponses, PostApiStepExecutionsByStepExecutionIdArtifactUploadUrlErrors, ThrowOnError, "fields">;
|
|
71
|
+
listStepExecutionArtifacts<ThrowOnError extends boolean = false>(options: Options<GetApiStepExecutionsByStepExecutionIdArtifactsData, ThrowOnError>): import("./client").RequestResult<GetApiStepExecutionsByStepExecutionIdArtifactsResponses, GetApiStepExecutionsByStepExecutionIdArtifactsErrors, ThrowOnError, "fields">;
|
|
72
|
+
recordStepExecutionArtifact<ThrowOnError extends boolean = false>(options: Options<PostApiStepExecutionsByStepExecutionIdArtifactsData, ThrowOnError>): import("./client").RequestResult<PostApiStepExecutionsByStepExecutionIdArtifactsResponses, PostApiStepExecutionsByStepExecutionIdArtifactsErrors, ThrowOnError, "fields">;
|
|
73
|
+
getArtifactDownloadUrl<ThrowOnError extends boolean = false>(options: Options<GetApiStepExecutionsByStepExecutionIdArtifactsByArtifactIdDownloadUrlData, ThrowOnError>): import("./client").RequestResult<GetApiStepExecutionsByStepExecutionIdArtifactsByArtifactIdDownloadUrlResponses, GetApiStepExecutionsByStepExecutionIdArtifactsByArtifactIdDownloadUrlErrors, ThrowOnError, "fields">;
|
|
74
74
|
}
|
|
75
75
|
export declare class PipelineDefinitions extends HeyApiClient {
|
|
76
76
|
createPipelineDefinition<ThrowOnError extends boolean = false>(options: Options<PostApiLinearPipelineDefinitionsData, ThrowOnError>): import("./client").RequestResult<PostApiLinearPipelineDefinitionsResponses, PostApiLinearPipelineDefinitionsErrors, ThrowOnError, "fields">;
|
|
77
77
|
upsertPipelineDefinition<ThrowOnError extends boolean = false>(options: Options<PutApiLinearPipelineDefinitionsData, ThrowOnError>): import("./client").RequestResult<PutApiLinearPipelineDefinitionsResponses, PutApiLinearPipelineDefinitionsErrors, ThrowOnError, "fields">;
|
|
78
|
-
getPipelineDefinition<ThrowOnError extends boolean = false>(options: Options<GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdData, ThrowOnError>): import("./client").RequestResult<GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdResponses, GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdErrors, ThrowOnError, "fields">;
|
|
79
|
-
listPipelineDefinitions<ThrowOnError extends boolean = false>(options: Options<GetApiProjectsByProjectIdLinearPipelineDefinitionsData, ThrowOnError>): import("./client").RequestResult<GetApiProjectsByProjectIdLinearPipelineDefinitionsResponses, GetApiProjectsByProjectIdLinearPipelineDefinitionsErrors, ThrowOnError, "fields">;
|
|
80
78
|
archivePipelineDefinition<ThrowOnError extends boolean = false>(options: Options<PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdArchiveData, ThrowOnError>): import("./client").RequestResult<PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdArchiveResponses, PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdArchiveErrors, ThrowOnError, "fields">;
|
|
81
79
|
unarchivePipelineDefinition<ThrowOnError extends boolean = false>(options: Options<PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdUnarchiveData, ThrowOnError>): import("./client").RequestResult<PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdUnarchiveResponses, PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdUnarchiveErrors, ThrowOnError, "fields">;
|
|
82
80
|
addPipelineStep<ThrowOnError extends boolean = false>(options: Options<PostApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsData, ThrowOnError>): import("./client").RequestResult<PostApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsResponses, PostApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsErrors, ThrowOnError, "fields">;
|
|
83
81
|
removePipelineStep<ThrowOnError extends boolean = false>(options: Options<DeleteApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLinearPipelineStepDefinitionIdData, ThrowOnError>): import("./client").RequestResult<DeleteApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLinearPipelineStepDefinitionIdResponses, DeleteApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLinearPipelineStepDefinitionIdErrors, ThrowOnError, "fields">;
|
|
84
82
|
updatePipelineStep<ThrowOnError extends boolean = false>(options: Options<PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLinearPipelineStepDefinitionIdData, ThrowOnError>): import("./client").RequestResult<PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLinearPipelineStepDefinitionIdResponses, PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLinearPipelineStepDefinitionIdErrors, ThrowOnError, "fields">;
|
|
85
83
|
setPipelineStepAdvancementPolicy<ThrowOnError extends boolean = false>(options: Options<PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLinearPipelineStepDefinitionIdAdvancementPolicyData, ThrowOnError>): import("./client").RequestResult<PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLinearPipelineStepDefinitionIdAdvancementPolicyResponses, PutApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdStepsByLinearPipelineStepDefinitionIdAdvancementPolicyErrors, ThrowOnError, "fields">;
|
|
84
|
+
getPipelineDefinition<ThrowOnError extends boolean = false>(options: Options<GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdData, ThrowOnError>): import("./client").RequestResult<GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdResponses, GetApiLinearPipelineDefinitionsByLinearPipelineDefinitionIdErrors, ThrowOnError, "fields">;
|
|
85
|
+
listPipelineDefinitions<ThrowOnError extends boolean = false>(options: Options<GetApiProjectsByProjectIdLinearPipelineDefinitionsData, ThrowOnError>): import("./client").RequestResult<GetApiProjectsByProjectIdLinearPipelineDefinitionsResponses, GetApiProjectsByProjectIdLinearPipelineDefinitionsErrors, ThrowOnError, "fields">;
|
|
86
86
|
}
|
|
87
87
|
export declare class PipelineExecutions extends HeyApiClient {
|
|
88
88
|
listPipelineExecutions<ThrowOnError extends boolean = false>(options: Options<GetApiLinearPipelineExecutionsData, ThrowOnError>): import("./client").RequestResult<GetApiLinearPipelineExecutionsResponses, GetApiLinearPipelineExecutionsErrors, ThrowOnError, "fields">;
|
|
@@ -100,13 +100,13 @@ export declare class PipelineExecutions extends HeyApiClient {
|
|
|
100
100
|
listPipelineDefinitionStepRuns<ThrowOnError extends boolean = false>(options: Options<GetApiLinearPipelineExecutionsStepRunsByDefinitionByLinearPipelineDefinitionIdData, ThrowOnError>): import("./client").RequestResult<GetApiLinearPipelineExecutionsStepRunsByDefinitionByLinearPipelineDefinitionIdResponses, GetApiLinearPipelineExecutionsStepRunsByDefinitionByLinearPipelineDefinitionIdErrors, ThrowOnError, "fields">;
|
|
101
101
|
}
|
|
102
102
|
export declare class WorkItems extends HeyApiClient {
|
|
103
|
+
deleteWorkItem<ThrowOnError extends boolean = false>(options: Options<DeleteApiWorkItemsByWorkItemIdData, ThrowOnError>): import("./client").RequestResult<DeleteApiWorkItemsByWorkItemIdResponses, DeleteApiWorkItemsByWorkItemIdErrors, ThrowOnError, "fields">;
|
|
104
|
+
getWorkItem<ThrowOnError extends boolean = false>(options: Options<GetApiWorkItemsByWorkItemIdData, ThrowOnError>): import("./client").RequestResult<GetApiWorkItemsByWorkItemIdResponses, GetApiWorkItemsByWorkItemIdErrors, ThrowOnError, "fields">;
|
|
103
105
|
createWorkItem<ThrowOnError extends boolean = false>(options: Options<PostApiWorkItemsData, ThrowOnError>): import("./client").RequestResult<PostApiWorkItemsResponses, PostApiWorkItemsErrors, ThrowOnError, "fields">;
|
|
104
106
|
upsertWorkItem<ThrowOnError extends boolean = false>(options: Options<PutApiWorkItemsData, ThrowOnError>): import("./client").RequestResult<PutApiWorkItemsResponses, PutApiWorkItemsErrors, ThrowOnError, "fields">;
|
|
105
107
|
deleteWorkItems<ThrowOnError extends boolean = false>(options: Options<DeleteApiWorkItemsBatchData, ThrowOnError>): import("./client").RequestResult<DeleteApiWorkItemsBatchResponses, DeleteApiWorkItemsBatchErrors, ThrowOnError, "fields">;
|
|
106
108
|
createWorkItems<ThrowOnError extends boolean = false>(options: Options<PostApiWorkItemsBatchData, ThrowOnError>): import("./client").RequestResult<PostApiWorkItemsBatchResponses, PostApiWorkItemsBatchErrors, ThrowOnError, "fields">;
|
|
107
109
|
upsertWorkItems<ThrowOnError extends boolean = false>(options: Options<PutApiWorkItemsBatchData, ThrowOnError>): import("./client").RequestResult<PutApiWorkItemsBatchResponses, PutApiWorkItemsBatchErrors, ThrowOnError, "fields">;
|
|
108
|
-
deleteWorkItem<ThrowOnError extends boolean = false>(options: Options<DeleteApiWorkItemsByWorkItemIdData, ThrowOnError>): import("./client").RequestResult<DeleteApiWorkItemsByWorkItemIdResponses, DeleteApiWorkItemsByWorkItemIdErrors, ThrowOnError, "fields">;
|
|
109
|
-
getWorkItem<ThrowOnError extends boolean = false>(options: Options<GetApiWorkItemsByWorkItemIdData, ThrowOnError>): import("./client").RequestResult<GetApiWorkItemsByWorkItemIdResponses, GetApiWorkItemsByWorkItemIdErrors, ThrowOnError, "fields">;
|
|
110
110
|
}
|
|
111
111
|
export declare class WorkItemComments extends HeyApiClient {
|
|
112
112
|
listWorkItemComments<ThrowOnError extends boolean = false>(options: Options<GetApiWorkItemCommentsData, ThrowOnError>): import("./client").RequestResult<GetApiWorkItemCommentsResponses, GetApiWorkItemCommentsErrors, ThrowOnError, "fields">;
|