@faiber/faiber-task 0.6.2
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/README.md +31 -0
- package/dist/.tsbuildinfo +1 -0
- package/dist/index.d.ts +52 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +104 -0
- package/dist/index.js.map +1 -0
- package/dist/operations.d.ts +422 -0
- package/dist/operations.d.ts.map +1 -0
- package/dist/operations.js +513 -0
- package/dist/operations.js.map +1 -0
- package/dist/operations.types.d.ts +538 -0
- package/dist/operations.types.d.ts.map +1 -0
- package/dist/operations.types.js +2 -0
- package/dist/operations.types.js.map +1 -0
- package/dist/types.d.ts +207 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/package.json +1 -0
|
@@ -0,0 +1,513 @@
|
|
|
1
|
+
import { ServiceApi, urlEncoded } from "@faiber/sdk-core";
|
|
2
|
+
export class TaskOperations extends ServiceApi {
|
|
3
|
+
/**
|
|
4
|
+
* Performs the openapi operation for the routes capability.
|
|
5
|
+
* Calls `GET /api/openapi.json` through the shared IDP-aware Faiber client.
|
|
6
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
7
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
8
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
9
|
+
*/
|
|
10
|
+
routesOpenapiGet(options) {
|
|
11
|
+
return this.client.request({ ...options, method: "GET", url: `/api/openapi.json` });
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Performs the effective access operation for the routes capability.
|
|
15
|
+
* Calls `GET /api/v1/access/effective` through the shared IDP-aware Faiber client.
|
|
16
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
17
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
18
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
19
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
20
|
+
*/
|
|
21
|
+
routesEffectiveAccessGet(params, options) {
|
|
22
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/access/effective`, params });
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Performs the create agent proposal operation for the routes capability.
|
|
26
|
+
* Calls `POST /api/v1/agent-proposals` through the shared IDP-aware Faiber client.
|
|
27
|
+
* @param data Typed JSON request body.
|
|
28
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
29
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
30
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
31
|
+
*/
|
|
32
|
+
routesCreateAgentProposalPost(data, options) {
|
|
33
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/agent-proposals`, data: data });
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Performs the approve agent proposal operation for the routes capability.
|
|
37
|
+
* Calls `POST /api/v1/agent-proposals/{id}/approve` through the shared IDP-aware Faiber client.
|
|
38
|
+
* @param id Backend path identifier `id`.
|
|
39
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
40
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
41
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
42
|
+
*/
|
|
43
|
+
routesApproveAgentProposalPost(id, options) {
|
|
44
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/agent-proposals/${encodeURIComponent(id)}/approve` });
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Performs the events operation for the routes capability.
|
|
48
|
+
* Calls `GET /api/v1/events` through the shared IDP-aware Faiber client.
|
|
49
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
50
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
51
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
52
|
+
*/
|
|
53
|
+
routesEventsGet(options) {
|
|
54
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/events` });
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Performs the use guest link operation for the routes capability.
|
|
58
|
+
* Calls `POST /api/v1/guest-links/use` through the shared IDP-aware Faiber client.
|
|
59
|
+
* @param data Typed JSON request body.
|
|
60
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
61
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
62
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
63
|
+
*/
|
|
64
|
+
routesUseGuestLinkPost(data, options) {
|
|
65
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/guest-links/use`, data: data });
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* Performs the upsert performance policy operation for the routes capability.
|
|
69
|
+
* Calls `PUT /api/v1/performance/policies` through the shared IDP-aware Faiber client.
|
|
70
|
+
* @param data Typed JSON request body.
|
|
71
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
72
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
73
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
74
|
+
*/
|
|
75
|
+
routesUpsertPerformancePolicyPut(data, options) {
|
|
76
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/performance/policies`, data: data });
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Performs the point history operation for the routes capability.
|
|
80
|
+
* Calls `GET /api/v1/points/history` through the shared IDP-aware Faiber client.
|
|
81
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
82
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
83
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
84
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
85
|
+
*/
|
|
86
|
+
routesPointHistoryGet(params, options) {
|
|
87
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/points/history`, params });
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* Performs the list projects operation for the routes capability.
|
|
91
|
+
* Calls `GET /api/v1/projects` through the shared IDP-aware Faiber client.
|
|
92
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
93
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
94
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
95
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
96
|
+
*/
|
|
97
|
+
routesListProjectsGet(params, options) {
|
|
98
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/projects`, params });
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Performs the create project operation for the routes capability.
|
|
102
|
+
* Calls `POST /api/v1/projects` through the shared IDP-aware Faiber client.
|
|
103
|
+
* @param data Typed JSON request body.
|
|
104
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
105
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
106
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
107
|
+
*/
|
|
108
|
+
routesCreateProjectPost(data, options) {
|
|
109
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/projects`, data: data });
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* Performs the get project operation for the routes capability.
|
|
113
|
+
* Calls `GET /api/v1/projects/{id}` through the shared IDP-aware Faiber client.
|
|
114
|
+
* @param id Backend path identifier `id`.
|
|
115
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
116
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
117
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
118
|
+
*/
|
|
119
|
+
routesGetProjectGet(id, options) {
|
|
120
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/projects/${encodeURIComponent(id)}` });
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* Performs the update project operation for the routes capability.
|
|
124
|
+
* Calls `PATCH /api/v1/projects/{id}` through the shared IDP-aware Faiber client.
|
|
125
|
+
* @param id Backend path identifier `id`.
|
|
126
|
+
* @param data Typed JSON request body.
|
|
127
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
128
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
129
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
130
|
+
*/
|
|
131
|
+
routesUpdateProjectPatch(id, data, options) {
|
|
132
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/projects/${encodeURIComponent(id)}`, data: data });
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* Performs the grant project access operation for the routes capability.
|
|
136
|
+
* Calls `POST /api/v1/projects/{id}/grants` through the shared IDP-aware Faiber client.
|
|
137
|
+
* @param id Backend path identifier `id`.
|
|
138
|
+
* @param data Typed JSON request body.
|
|
139
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
140
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
141
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
142
|
+
*/
|
|
143
|
+
routesGrantProjectAccessPost(id, data, options) {
|
|
144
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/projects/${encodeURIComponent(id)}/grants`, data: data });
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* Performs the workflow states operation for the routes capability.
|
|
148
|
+
* Calls `GET /api/v1/projects/{id}/workflow` through the shared IDP-aware Faiber client.
|
|
149
|
+
* @param id Backend path identifier `id`.
|
|
150
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
151
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
152
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
153
|
+
*/
|
|
154
|
+
routesWorkflowStatesGet(id, options) {
|
|
155
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/projects/${encodeURIComponent(id)}/workflow` });
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* Performs the report summary operation for the routes capability.
|
|
159
|
+
* Calls `GET /api/v1/reports/summary` through the shared IDP-aware Faiber client.
|
|
160
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
161
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
162
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
163
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
164
|
+
*/
|
|
165
|
+
routesReportSummaryGet(params, options) {
|
|
166
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/summary`, params });
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* Performs the team monitoring operation for the routes capability.
|
|
170
|
+
* Calls `GET /api/v1/reports/team-monitoring` through the shared IDP-aware Faiber client.
|
|
171
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
172
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
173
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
174
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
175
|
+
*/
|
|
176
|
+
routesTeamMonitoringGet(params, options) {
|
|
177
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/team-monitoring`, params });
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* Performs the list sprints operation for the routes capability.
|
|
181
|
+
* Calls `GET /api/v1/sprints` through the shared IDP-aware Faiber client.
|
|
182
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
183
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
184
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
185
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
186
|
+
*/
|
|
187
|
+
routesListSprintsGet(params, options) {
|
|
188
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/sprints`, params });
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* Performs the create sprint operation for the routes capability.
|
|
192
|
+
* Calls `POST /api/v1/sprints` through the shared IDP-aware Faiber client.
|
|
193
|
+
* @param data Typed JSON request body.
|
|
194
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
195
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
196
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
197
|
+
*/
|
|
198
|
+
routesCreateSprintPost(data, options) {
|
|
199
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/sprints`, data: data });
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* Performs the complete sprint operation for the routes capability.
|
|
203
|
+
* Calls `POST /api/v1/sprints/{id}/complete` through the shared IDP-aware Faiber client.
|
|
204
|
+
* @param id Backend path identifier `id`.
|
|
205
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
206
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
207
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
208
|
+
*/
|
|
209
|
+
routesCompleteSprintPost(id, options) {
|
|
210
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/sprints/${encodeURIComponent(id)}/complete` });
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* Performs the start sprint operation for the routes capability.
|
|
214
|
+
* Calls `POST /api/v1/sprints/{id}/start` through the shared IDP-aware Faiber client.
|
|
215
|
+
* @param id Backend path identifier `id`.
|
|
216
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
217
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
218
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
219
|
+
*/
|
|
220
|
+
routesStartSprintPost(id, options) {
|
|
221
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/sprints/${encodeURIComponent(id)}/start` });
|
|
222
|
+
}
|
|
223
|
+
/**
|
|
224
|
+
* Performs the list teams operation for the routes capability.
|
|
225
|
+
* Calls `GET /api/v1/teams` through the shared IDP-aware Faiber client.
|
|
226
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
227
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
228
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
229
|
+
*/
|
|
230
|
+
routesListTeamsGet(options) {
|
|
231
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/teams` });
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* Performs the create team operation for the routes capability.
|
|
235
|
+
* Calls `POST /api/v1/teams` through the shared IDP-aware Faiber client.
|
|
236
|
+
* @param data Typed JSON request body.
|
|
237
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
238
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
239
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
240
|
+
*/
|
|
241
|
+
routesCreateTeamPost(data, options) {
|
|
242
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/teams`, data: data });
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* Performs the get team operation for the routes capability.
|
|
246
|
+
* Calls `GET /api/v1/teams/{id}` through the shared IDP-aware Faiber client.
|
|
247
|
+
* @param id Backend path identifier `id`.
|
|
248
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
249
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
250
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
251
|
+
*/
|
|
252
|
+
routesGetTeamGet(id, options) {
|
|
253
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/teams/${encodeURIComponent(id)}` });
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
* Performs the update team operation for the routes capability.
|
|
257
|
+
* Calls `PATCH /api/v1/teams/{id}` through the shared IDP-aware Faiber client.
|
|
258
|
+
* @param id Backend path identifier `id`.
|
|
259
|
+
* @param data Typed JSON request body.
|
|
260
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
261
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
262
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
263
|
+
*/
|
|
264
|
+
routesUpdateTeamPatch(id, data, options) {
|
|
265
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/teams/${encodeURIComponent(id)}`, data: data });
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* Performs the list work items operation for the routes capability.
|
|
269
|
+
* Calls `GET /api/v1/work-items` through the shared IDP-aware Faiber client.
|
|
270
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
271
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
272
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
273
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
274
|
+
*/
|
|
275
|
+
routesListWorkItemsGet(params, options) {
|
|
276
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/work-items`, params });
|
|
277
|
+
}
|
|
278
|
+
/**
|
|
279
|
+
* Performs the create work item operation for the routes capability.
|
|
280
|
+
* Calls `POST /api/v1/work-items` through the shared IDP-aware Faiber client.
|
|
281
|
+
* @param data Typed JSON request body.
|
|
282
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
283
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
284
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
285
|
+
*/
|
|
286
|
+
routesCreateWorkItemPost(data, options) {
|
|
287
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/work-items`, data: data });
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* Performs the get work item operation for the routes capability.
|
|
291
|
+
* Calls `GET /api/v1/work-items/{id}` through the shared IDP-aware Faiber client.
|
|
292
|
+
* @param id Backend path identifier `id`.
|
|
293
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
294
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
295
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
296
|
+
*/
|
|
297
|
+
routesGetWorkItemGet(id, options) {
|
|
298
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/work-items/${encodeURIComponent(id)}` });
|
|
299
|
+
}
|
|
300
|
+
/**
|
|
301
|
+
* Performs the update work item operation for the routes capability.
|
|
302
|
+
* Calls `PATCH /api/v1/work-items/{id}` through the shared IDP-aware Faiber client.
|
|
303
|
+
* @param id Backend path identifier `id`.
|
|
304
|
+
* @param data Typed JSON request body.
|
|
305
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
306
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
307
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
308
|
+
*/
|
|
309
|
+
routesUpdateWorkItemPatch(id, data, options) {
|
|
310
|
+
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/work-items/${encodeURIComponent(id)}`, data: data });
|
|
311
|
+
}
|
|
312
|
+
/**
|
|
313
|
+
* Performs the list comments operation for the routes capability.
|
|
314
|
+
* Calls `GET /api/v1/work-items/{id}/comments` through the shared IDP-aware Faiber client.
|
|
315
|
+
* @param id Backend path identifier `id`.
|
|
316
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
317
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
318
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
319
|
+
*/
|
|
320
|
+
routesListCommentsGet(id, options) {
|
|
321
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/work-items/${encodeURIComponent(id)}/comments` });
|
|
322
|
+
}
|
|
323
|
+
/**
|
|
324
|
+
* Performs the create comment operation for the routes capability.
|
|
325
|
+
* Calls `POST /api/v1/work-items/{id}/comments` through the shared IDP-aware Faiber client.
|
|
326
|
+
* @param id Backend path identifier `id`.
|
|
327
|
+
* @param data Typed JSON request body.
|
|
328
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
329
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
330
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
331
|
+
*/
|
|
332
|
+
routesCreateCommentPost(id, data, options) {
|
|
333
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/work-items/${encodeURIComponent(id)}/comments`, data: data });
|
|
334
|
+
}
|
|
335
|
+
/**
|
|
336
|
+
* Performs the list commits operation for the routes capability.
|
|
337
|
+
* Calls `GET /api/v1/work-items/{id}/commits` through the shared IDP-aware Faiber client.
|
|
338
|
+
* @param id Backend path identifier `id`.
|
|
339
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
340
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
341
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
342
|
+
*/
|
|
343
|
+
routesListCommitsGet(id, options) {
|
|
344
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/work-items/${encodeURIComponent(id)}/commits` });
|
|
345
|
+
}
|
|
346
|
+
/**
|
|
347
|
+
* Performs the attach commit operation for the routes capability.
|
|
348
|
+
* Calls `POST /api/v1/work-items/{id}/commits` through the shared IDP-aware Faiber client.
|
|
349
|
+
* @param id Backend path identifier `id`.
|
|
350
|
+
* @param data Typed JSON request body.
|
|
351
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
352
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
353
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
354
|
+
*/
|
|
355
|
+
routesAttachCommitPost(id, data, options) {
|
|
356
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/work-items/${encodeURIComponent(id)}/commits`, data: data });
|
|
357
|
+
}
|
|
358
|
+
/**
|
|
359
|
+
* Performs the add points operation for the routes capability.
|
|
360
|
+
* Calls `POST /api/v1/work-items/{id}/points` through the shared IDP-aware Faiber client.
|
|
361
|
+
* @param id Backend path identifier `id`.
|
|
362
|
+
* @param data Typed JSON request body.
|
|
363
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
364
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
365
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
366
|
+
*/
|
|
367
|
+
routesAddPointsPost(id, data, options) {
|
|
368
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/work-items/${encodeURIComponent(id)}/points`, data: data });
|
|
369
|
+
}
|
|
370
|
+
/**
|
|
371
|
+
* Performs the transition work item operation for the routes capability.
|
|
372
|
+
* Calls `POST /api/v1/work-items/{id}/transition` through the shared IDP-aware Faiber client.
|
|
373
|
+
* @param id Backend path identifier `id`.
|
|
374
|
+
* @param data Typed JSON request body.
|
|
375
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
376
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
377
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
378
|
+
*/
|
|
379
|
+
routesTransitionWorkItemPost(id, data, options) {
|
|
380
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/work-items/${encodeURIComponent(id)}/transition`, data: data });
|
|
381
|
+
}
|
|
382
|
+
/**
|
|
383
|
+
* Performs the list work logs operation for the routes capability.
|
|
384
|
+
* Calls `GET /api/v1/work-items/{id}/work-logs` through the shared IDP-aware Faiber client.
|
|
385
|
+
* @param id Backend path identifier `id`.
|
|
386
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
387
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
388
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
389
|
+
*/
|
|
390
|
+
routesListWorkLogsGet(id, options) {
|
|
391
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/work-items/${encodeURIComponent(id)}/work-logs` });
|
|
392
|
+
}
|
|
393
|
+
/**
|
|
394
|
+
* Performs the create work log operation for the routes capability.
|
|
395
|
+
* Calls `POST /api/v1/work-items/{id}/work-logs` through the shared IDP-aware Faiber client.
|
|
396
|
+
* @param id Backend path identifier `id`.
|
|
397
|
+
* @param data Typed JSON request body.
|
|
398
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
399
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
400
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
401
|
+
*/
|
|
402
|
+
routesCreateWorkLogPost(id, data, options) {
|
|
403
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/work-items/${encodeURIComponent(id)}/work-logs`, data: data });
|
|
404
|
+
}
|
|
405
|
+
/**
|
|
406
|
+
* Performs the list work sessions operation for the routes capability.
|
|
407
|
+
* Calls `GET /api/v1/work-items/{id}/work-sessions` through the shared IDP-aware Faiber client.
|
|
408
|
+
* @param id Backend path identifier `id`.
|
|
409
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
410
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
411
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
412
|
+
*/
|
|
413
|
+
routesListWorkSessionsGet(id, options) {
|
|
414
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/work-items/${encodeURIComponent(id)}/work-sessions` });
|
|
415
|
+
}
|
|
416
|
+
/**
|
|
417
|
+
* Performs the start work session operation for the routes capability.
|
|
418
|
+
* Calls `POST /api/v1/work-items/{id}/work-sessions/start` through the shared IDP-aware Faiber client.
|
|
419
|
+
* @param id Backend path identifier `id`.
|
|
420
|
+
* @param data Typed JSON request body.
|
|
421
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
422
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
423
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
424
|
+
*/
|
|
425
|
+
routesStartWorkSessionPost(id, data, options) {
|
|
426
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/work-items/${encodeURIComponent(id)}/work-sessions/start`, data: data });
|
|
427
|
+
}
|
|
428
|
+
/**
|
|
429
|
+
* Performs the heartbeat work session operation for the routes capability.
|
|
430
|
+
* Calls `POST /api/v1/work-sessions/{id}/heartbeat` through the shared IDP-aware Faiber client.
|
|
431
|
+
* @param id Backend path identifier `id`.
|
|
432
|
+
* @param data Typed JSON request body.
|
|
433
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
434
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
435
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
436
|
+
*/
|
|
437
|
+
routesHeartbeatWorkSessionPost(id, data, options) {
|
|
438
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/work-sessions/${encodeURIComponent(id)}/heartbeat`, data: data });
|
|
439
|
+
}
|
|
440
|
+
/**
|
|
441
|
+
* Performs the stop work session operation for the routes capability.
|
|
442
|
+
* Calls `POST /api/v1/work-sessions/{id}/stop` through the shared IDP-aware Faiber client.
|
|
443
|
+
* @param id Backend path identifier `id`.
|
|
444
|
+
* @param data Typed JSON request body.
|
|
445
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
446
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
447
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
448
|
+
*/
|
|
449
|
+
routesStopWorkSessionPost(id, data, options) {
|
|
450
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/work-sessions/${encodeURIComponent(id)}/stop`, data: data });
|
|
451
|
+
}
|
|
452
|
+
/**
|
|
453
|
+
* Performs the active work sessions operation for the routes capability.
|
|
454
|
+
* Calls `GET /api/v1/work-sessions/active` through the shared IDP-aware Faiber client.
|
|
455
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
456
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
457
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
458
|
+
*/
|
|
459
|
+
routesActiveWorkSessionsGet(options) {
|
|
460
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/work-sessions/active` });
|
|
461
|
+
}
|
|
462
|
+
/**
|
|
463
|
+
* Performs the workspace operation for the routes capability.
|
|
464
|
+
* Calls `GET /api/v1/workspace` through the shared IDP-aware Faiber client.
|
|
465
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
466
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
467
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
468
|
+
*/
|
|
469
|
+
routesWorkspaceGet(options) {
|
|
470
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/workspace` });
|
|
471
|
+
}
|
|
472
|
+
/**
|
|
473
|
+
* Performs the ready operation for the routes capability.
|
|
474
|
+
* Calls `GET /health/dependencies` through the shared IDP-aware Faiber client.
|
|
475
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
476
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
477
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
478
|
+
*/
|
|
479
|
+
routesReadyGetHealthDependencies(options) {
|
|
480
|
+
return this.client.request({ ...options, method: "GET", url: `/health/dependencies` });
|
|
481
|
+
}
|
|
482
|
+
/**
|
|
483
|
+
* Performs the live operation for the routes capability.
|
|
484
|
+
* Calls `GET /health/live` through the shared IDP-aware Faiber client.
|
|
485
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
486
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
487
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
488
|
+
*/
|
|
489
|
+
routesLiveGet(options) {
|
|
490
|
+
return this.client.request({ ...options, method: "GET", url: `/health/live` });
|
|
491
|
+
}
|
|
492
|
+
/**
|
|
493
|
+
* Performs the ready operation for the routes capability.
|
|
494
|
+
* Calls `GET /health/ready` through the shared IDP-aware Faiber client.
|
|
495
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
496
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
497
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
498
|
+
*/
|
|
499
|
+
routesReadyGetHealthReady(options) {
|
|
500
|
+
return this.client.request({ ...options, method: "GET", url: `/health/ready` });
|
|
501
|
+
}
|
|
502
|
+
/**
|
|
503
|
+
* Performs the metrics operation for the routes capability.
|
|
504
|
+
* Calls `GET /metrics` through the shared IDP-aware Faiber client.
|
|
505
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
506
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
507
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
508
|
+
*/
|
|
509
|
+
routesMetricsGet(options) {
|
|
510
|
+
return this.client.request({ ...options, method: "GET", url: `/metrics` });
|
|
511
|
+
}
|
|
512
|
+
}
|
|
513
|
+
//# sourceMappingURL=operations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations.js","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|