@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.
@@ -0,0 +1,422 @@
1
+ import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
2
+ import type * as T from "./operations.types.js";
3
+ export declare class TaskOperations extends ServiceApi {
4
+ /**
5
+ * Performs the openapi operation for the routes capability.
6
+ * Calls `GET /api/openapi.json` through the shared IDP-aware Faiber client.
7
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
8
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
9
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
10
+ */
11
+ routesOpenapiGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("@faiber/sdk-core").JsonValue, unknown, {}>>;
12
+ /**
13
+ * Performs the effective access operation for the routes capability.
14
+ * Calls `GET /api/v1/access/effective` through the shared IDP-aware Faiber client.
15
+ * @param params Typed query parameters; omitted members retain backend defaults.
16
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
17
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
18
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
19
+ */
20
+ routesEffectiveAccessGet(params?: T.RoutesEffectiveAccessGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesEffectiveAccessGetResponse, unknown, {}>>;
21
+ /**
22
+ * Performs the create agent proposal operation for the routes capability.
23
+ * Calls `POST /api/v1/agent-proposals` through the shared IDP-aware Faiber client.
24
+ * @param data Typed JSON request body.
25
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
26
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
27
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
28
+ */
29
+ routesCreateAgentProposalPost(data: T.RoutesCreateAgentProposalPostInput, options?: RequestOptions<T.RoutesCreateAgentProposalPostInput>): Promise<import("axios").AxiosResponse<T.RoutesCreateAgentProposalPostResponse, T.RoutesCreateAgentProposalPostInput, {}>>;
30
+ /**
31
+ * Performs the approve agent proposal operation for the routes capability.
32
+ * Calls `POST /api/v1/agent-proposals/{id}/approve` through the shared IDP-aware Faiber client.
33
+ * @param id Backend path identifier `id`.
34
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
35
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
36
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
37
+ */
38
+ routesApproveAgentProposalPost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesApproveAgentProposalPostResponse, unknown, {}>>;
39
+ /**
40
+ * Performs the events operation for the routes capability.
41
+ * Calls `GET /api/v1/events` through the shared IDP-aware Faiber client.
42
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
43
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
44
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
45
+ */
46
+ routesEventsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesEventsGetResponse, unknown, {}>>;
47
+ /**
48
+ * Performs the use guest link operation for the routes capability.
49
+ * Calls `POST /api/v1/guest-links/use` through the shared IDP-aware Faiber client.
50
+ * @param data Typed JSON request body.
51
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
52
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
53
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
54
+ */
55
+ routesUseGuestLinkPost(data: T.RoutesUseGuestLinkPostInput, options?: RequestOptions<T.RoutesUseGuestLinkPostInput>): Promise<import("axios").AxiosResponse<T.RoutesUseGuestLinkPostResponse, T.RoutesUseGuestLinkPostInput, {}>>;
56
+ /**
57
+ * Performs the upsert performance policy operation for the routes capability.
58
+ * Calls `PUT /api/v1/performance/policies` 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
+ routesUpsertPerformancePolicyPut(data: T.RoutesUpsertPerformancePolicyPutInput, options?: RequestOptions<T.RoutesUpsertPerformancePolicyPutInput>): Promise<import("axios").AxiosResponse<T.RoutesUpsertPerformancePolicyPutResponse, T.RoutesUpsertPerformancePolicyPutInput, {}>>;
65
+ /**
66
+ * Performs the point history operation for the routes capability.
67
+ * Calls `GET /api/v1/points/history` through the shared IDP-aware Faiber client.
68
+ * @param params Typed query parameters; omitted members retain backend defaults.
69
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
70
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
71
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
72
+ */
73
+ routesPointHistoryGet(params?: T.RoutesPointHistoryGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesPointHistoryGetResponse, unknown, {}>>;
74
+ /**
75
+ * Performs the list projects operation for the routes capability.
76
+ * Calls `GET /api/v1/projects` through the shared IDP-aware Faiber client.
77
+ * @param params Typed query parameters; omitted members retain backend defaults.
78
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
79
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
80
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
81
+ */
82
+ routesListProjectsGet(params?: T.RoutesListProjectsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesListProjectsGetResponse, unknown, {}>>;
83
+ /**
84
+ * Performs the create project operation for the routes capability.
85
+ * Calls `POST /api/v1/projects` through the shared IDP-aware Faiber client.
86
+ * @param data Typed JSON request body.
87
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
88
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
89
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
90
+ */
91
+ routesCreateProjectPost(data: T.RoutesCreateProjectPostInput, options?: RequestOptions<T.RoutesCreateProjectPostInput>): Promise<import("axios").AxiosResponse<T.RoutesCreateProjectPostResponse, T.RoutesCreateProjectPostInput, {}>>;
92
+ /**
93
+ * Performs the get project operation for the routes capability.
94
+ * Calls `GET /api/v1/projects/{id}` through the shared IDP-aware Faiber client.
95
+ * @param id Backend path identifier `id`.
96
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
97
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
98
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
99
+ */
100
+ routesGetProjectGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesGetProjectGetResponse, unknown, {}>>;
101
+ /**
102
+ * Performs the update project operation for the routes capability.
103
+ * Calls `PATCH /api/v1/projects/{id}` through the shared IDP-aware Faiber client.
104
+ * @param id Backend path identifier `id`.
105
+ * @param data Typed JSON request body.
106
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
107
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
108
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
109
+ */
110
+ routesUpdateProjectPatch(id: Identifier, data: T.RoutesUpdateProjectPatchInput, options?: RequestOptions<T.RoutesUpdateProjectPatchInput>): Promise<import("axios").AxiosResponse<T.RoutesUpdateProjectPatchResponse, T.RoutesUpdateProjectPatchInput, {}>>;
111
+ /**
112
+ * Performs the grant project access operation for the routes capability.
113
+ * Calls `POST /api/v1/projects/{id}/grants` through the shared IDP-aware Faiber client.
114
+ * @param id Backend path identifier `id`.
115
+ * @param data Typed JSON request body.
116
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
117
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
118
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
119
+ */
120
+ routesGrantProjectAccessPost(id: Identifier, data: T.RoutesGrantProjectAccessPostInput, options?: RequestOptions<T.RoutesGrantProjectAccessPostInput>): Promise<import("axios").AxiosResponse<T.RoutesGrantProjectAccessPostResponse, T.RoutesGrantProjectAccessPostInput, {}>>;
121
+ /**
122
+ * Performs the workflow states operation for the routes capability.
123
+ * Calls `GET /api/v1/projects/{id}/workflow` through the shared IDP-aware Faiber client.
124
+ * @param id Backend path identifier `id`.
125
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
126
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
127
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
128
+ */
129
+ routesWorkflowStatesGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesWorkflowStatesGetResponse, unknown, {}>>;
130
+ /**
131
+ * Performs the report summary operation for the routes capability.
132
+ * Calls `GET /api/v1/reports/summary` through the shared IDP-aware Faiber client.
133
+ * @param params Typed query parameters; omitted members retain backend defaults.
134
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
135
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
136
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
137
+ */
138
+ routesReportSummaryGet(params?: T.RoutesReportSummaryGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesReportSummaryGetResponse, unknown, {}>>;
139
+ /**
140
+ * Performs the team monitoring operation for the routes capability.
141
+ * Calls `GET /api/v1/reports/team-monitoring` through the shared IDP-aware Faiber client.
142
+ * @param params Typed query parameters; omitted members retain backend defaults.
143
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
144
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
145
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
146
+ */
147
+ routesTeamMonitoringGet(params?: T.RoutesTeamMonitoringGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesTeamMonitoringGetResponse, unknown, {}>>;
148
+ /**
149
+ * Performs the list sprints operation for the routes capability.
150
+ * Calls `GET /api/v1/sprints` through the shared IDP-aware Faiber client.
151
+ * @param params Typed query parameters; omitted members retain backend defaults.
152
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
153
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
154
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
155
+ */
156
+ routesListSprintsGet(params?: T.RoutesListSprintsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesListSprintsGetResponse, unknown, {}>>;
157
+ /**
158
+ * Performs the create sprint operation for the routes capability.
159
+ * Calls `POST /api/v1/sprints` through the shared IDP-aware Faiber client.
160
+ * @param data Typed JSON request body.
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
+ routesCreateSprintPost(data: T.RoutesCreateSprintPostInput, options?: RequestOptions<T.RoutesCreateSprintPostInput>): Promise<import("axios").AxiosResponse<T.RoutesCreateSprintPostResponse, T.RoutesCreateSprintPostInput, {}>>;
166
+ /**
167
+ * Performs the complete sprint operation for the routes capability.
168
+ * Calls `POST /api/v1/sprints/{id}/complete` through the shared IDP-aware Faiber client.
169
+ * @param id Backend path identifier `id`.
170
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
171
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
172
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
173
+ */
174
+ routesCompleteSprintPost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesCompleteSprintPostResponse, unknown, {}>>;
175
+ /**
176
+ * Performs the start sprint operation for the routes capability.
177
+ * Calls `POST /api/v1/sprints/{id}/start` through the shared IDP-aware Faiber client.
178
+ * @param id Backend path identifier `id`.
179
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
180
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
181
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
182
+ */
183
+ routesStartSprintPost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesStartSprintPostResponse, unknown, {}>>;
184
+ /**
185
+ * Performs the list teams operation for the routes capability.
186
+ * Calls `GET /api/v1/teams` through the shared IDP-aware Faiber client.
187
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
188
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
189
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
190
+ */
191
+ routesListTeamsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesListTeamsGetResponse, unknown, {}>>;
192
+ /**
193
+ * Performs the create team operation for the routes capability.
194
+ * Calls `POST /api/v1/teams` through the shared IDP-aware Faiber client.
195
+ * @param data Typed JSON request body.
196
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
197
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
198
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
199
+ */
200
+ routesCreateTeamPost(data: T.RoutesCreateTeamPostInput, options?: RequestOptions<T.RoutesCreateTeamPostInput>): Promise<import("axios").AxiosResponse<T.RoutesCreateTeamPostResponse, T.RoutesCreateTeamPostInput, {}>>;
201
+ /**
202
+ * Performs the get team operation for the routes capability.
203
+ * Calls `GET /api/v1/teams/{id}` 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
+ routesGetTeamGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesGetTeamGetResponse, unknown, {}>>;
210
+ /**
211
+ * Performs the update team operation for the routes capability.
212
+ * Calls `PATCH /api/v1/teams/{id}` through the shared IDP-aware Faiber client.
213
+ * @param id Backend path identifier `id`.
214
+ * @param data Typed JSON request body.
215
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
216
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
217
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
218
+ */
219
+ routesUpdateTeamPatch(id: Identifier, data: T.RoutesUpdateTeamPatchInput, options?: RequestOptions<T.RoutesUpdateTeamPatchInput>): Promise<import("axios").AxiosResponse<T.RoutesUpdateTeamPatchResponse, T.RoutesUpdateTeamPatchInput, {}>>;
220
+ /**
221
+ * Performs the list work items operation for the routes capability.
222
+ * Calls `GET /api/v1/work-items` through the shared IDP-aware Faiber client.
223
+ * @param params Typed query parameters; omitted members retain backend defaults.
224
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
225
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
226
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
227
+ */
228
+ routesListWorkItemsGet(params?: T.RoutesListWorkItemsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesListWorkItemsGetResponse, unknown, {}>>;
229
+ /**
230
+ * Performs the create work item operation for the routes capability.
231
+ * Calls `POST /api/v1/work-items` through the shared IDP-aware Faiber client.
232
+ * @param data Typed JSON request body.
233
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
234
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
235
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
236
+ */
237
+ routesCreateWorkItemPost(data: T.RoutesCreateWorkItemPostInput, options?: RequestOptions<T.RoutesCreateWorkItemPostInput>): Promise<import("axios").AxiosResponse<T.RoutesCreateWorkItemPostResponse, T.RoutesCreateWorkItemPostInput, {}>>;
238
+ /**
239
+ * Performs the get work item operation for the routes capability.
240
+ * Calls `GET /api/v1/work-items/{id}` through the shared IDP-aware Faiber client.
241
+ * @param id Backend path identifier `id`.
242
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
243
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
244
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
245
+ */
246
+ routesGetWorkItemGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesGetWorkItemGetResponse, unknown, {}>>;
247
+ /**
248
+ * Performs the update work item operation for the routes capability.
249
+ * Calls `PATCH /api/v1/work-items/{id}` through the shared IDP-aware Faiber client.
250
+ * @param id Backend path identifier `id`.
251
+ * @param data Typed JSON request body.
252
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
253
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
254
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
255
+ */
256
+ routesUpdateWorkItemPatch(id: Identifier, data: T.RoutesUpdateWorkItemPatchInput, options?: RequestOptions<T.RoutesUpdateWorkItemPatchInput>): Promise<import("axios").AxiosResponse<T.RoutesUpdateWorkItemPatchResponse, T.RoutesUpdateWorkItemPatchInput, {}>>;
257
+ /**
258
+ * Performs the list comments operation for the routes capability.
259
+ * Calls `GET /api/v1/work-items/{id}/comments` through the shared IDP-aware Faiber client.
260
+ * @param id Backend path identifier `id`.
261
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
262
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
263
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
264
+ */
265
+ routesListCommentsGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesListCommentsGetResponse, unknown, {}>>;
266
+ /**
267
+ * Performs the create comment operation for the routes capability.
268
+ * Calls `POST /api/v1/work-items/{id}/comments` through the shared IDP-aware Faiber client.
269
+ * @param id Backend path identifier `id`.
270
+ * @param data Typed JSON request body.
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
+ routesCreateCommentPost(id: Identifier, data: T.RoutesCreateCommentPostInput, options?: RequestOptions<T.RoutesCreateCommentPostInput>): Promise<import("axios").AxiosResponse<T.RoutesCreateCommentPostResponse, T.RoutesCreateCommentPostInput, {}>>;
276
+ /**
277
+ * Performs the list commits operation for the routes capability.
278
+ * Calls `GET /api/v1/work-items/{id}/commits` through the shared IDP-aware Faiber client.
279
+ * @param id Backend path identifier `id`.
280
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
281
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
282
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
283
+ */
284
+ routesListCommitsGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesListCommitsGetResponse, unknown, {}>>;
285
+ /**
286
+ * Performs the attach commit operation for the routes capability.
287
+ * Calls `POST /api/v1/work-items/{id}/commits` through the shared IDP-aware Faiber client.
288
+ * @param id Backend path identifier `id`.
289
+ * @param data Typed JSON request body.
290
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
291
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
292
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
293
+ */
294
+ routesAttachCommitPost(id: Identifier, data: T.RoutesAttachCommitPostInput, options?: RequestOptions<T.RoutesAttachCommitPostInput>): Promise<import("axios").AxiosResponse<T.RoutesAttachCommitPostResponse, T.RoutesAttachCommitPostInput, {}>>;
295
+ /**
296
+ * Performs the add points operation for the routes capability.
297
+ * Calls `POST /api/v1/work-items/{id}/points` through the shared IDP-aware Faiber client.
298
+ * @param id Backend path identifier `id`.
299
+ * @param data Typed JSON request body.
300
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
301
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
302
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
303
+ */
304
+ routesAddPointsPost(id: Identifier, data: T.RoutesAddPointsPostInput, options?: RequestOptions<T.RoutesAddPointsPostInput>): Promise<import("axios").AxiosResponse<T.RoutesAddPointsPostResponse, T.RoutesAddPointsPostInput, {}>>;
305
+ /**
306
+ * Performs the transition work item operation for the routes capability.
307
+ * Calls `POST /api/v1/work-items/{id}/transition` through the shared IDP-aware Faiber client.
308
+ * @param id Backend path identifier `id`.
309
+ * @param data Typed JSON request body.
310
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
311
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
312
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
313
+ */
314
+ routesTransitionWorkItemPost(id: Identifier, data: T.RoutesTransitionWorkItemPostInput, options?: RequestOptions<T.RoutesTransitionWorkItemPostInput>): Promise<import("axios").AxiosResponse<T.RoutesTransitionWorkItemPostResponse, T.RoutesTransitionWorkItemPostInput, {}>>;
315
+ /**
316
+ * Performs the list work logs operation for the routes capability.
317
+ * Calls `GET /api/v1/work-items/{id}/work-logs` through the shared IDP-aware Faiber client.
318
+ * @param id Backend path identifier `id`.
319
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
320
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
321
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
322
+ */
323
+ routesListWorkLogsGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesListWorkLogsGetResponse, unknown, {}>>;
324
+ /**
325
+ * Performs the create work log operation for the routes capability.
326
+ * Calls `POST /api/v1/work-items/{id}/work-logs` through the shared IDP-aware Faiber client.
327
+ * @param id Backend path identifier `id`.
328
+ * @param data Typed JSON request body.
329
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
330
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
331
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
332
+ */
333
+ routesCreateWorkLogPost(id: Identifier, data: T.RoutesCreateWorkLogPostInput, options?: RequestOptions<T.RoutesCreateWorkLogPostInput>): Promise<import("axios").AxiosResponse<T.RoutesCreateWorkLogPostResponse, T.RoutesCreateWorkLogPostInput, {}>>;
334
+ /**
335
+ * Performs the list work sessions operation for the routes capability.
336
+ * Calls `GET /api/v1/work-items/{id}/work-sessions` through the shared IDP-aware Faiber client.
337
+ * @param id Backend path identifier `id`.
338
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
339
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
340
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
341
+ */
342
+ routesListWorkSessionsGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesListWorkSessionsGetResponse, unknown, {}>>;
343
+ /**
344
+ * Performs the start work session operation for the routes capability.
345
+ * Calls `POST /api/v1/work-items/{id}/work-sessions/start` through the shared IDP-aware Faiber client.
346
+ * @param id Backend path identifier `id`.
347
+ * @param data Typed JSON request body.
348
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
349
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
350
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
351
+ */
352
+ routesStartWorkSessionPost(id: Identifier, data: T.RoutesStartWorkSessionPostInput, options?: RequestOptions<T.RoutesStartWorkSessionPostInput>): Promise<import("axios").AxiosResponse<T.RoutesStartWorkSessionPostResponse, T.RoutesStartWorkSessionPostInput, {}>>;
353
+ /**
354
+ * Performs the heartbeat work session operation for the routes capability.
355
+ * Calls `POST /api/v1/work-sessions/{id}/heartbeat` through the shared IDP-aware Faiber client.
356
+ * @param id Backend path identifier `id`.
357
+ * @param data Typed JSON request body.
358
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
359
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
360
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
361
+ */
362
+ routesHeartbeatWorkSessionPost(id: Identifier, data: T.RoutesHeartbeatWorkSessionPostInput, options?: RequestOptions<T.RoutesHeartbeatWorkSessionPostInput>): Promise<import("axios").AxiosResponse<T.RoutesHeartbeatWorkSessionPostResponse, T.RoutesHeartbeatWorkSessionPostInput, {}>>;
363
+ /**
364
+ * Performs the stop work session operation for the routes capability.
365
+ * Calls `POST /api/v1/work-sessions/{id}/stop` through the shared IDP-aware Faiber client.
366
+ * @param id Backend path identifier `id`.
367
+ * @param data Typed JSON request body.
368
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
369
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
370
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
371
+ */
372
+ routesStopWorkSessionPost(id: Identifier, data: T.RoutesStopWorkSessionPostInput, options?: RequestOptions<T.RoutesStopWorkSessionPostInput>): Promise<import("axios").AxiosResponse<T.RoutesStopWorkSessionPostResponse, T.RoutesStopWorkSessionPostInput, {}>>;
373
+ /**
374
+ * Performs the active work sessions operation for the routes capability.
375
+ * Calls `GET /api/v1/work-sessions/active` through the shared IDP-aware Faiber client.
376
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
377
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
378
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
379
+ */
380
+ routesActiveWorkSessionsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesActiveWorkSessionsGetResponse, unknown, {}>>;
381
+ /**
382
+ * Performs the workspace operation for the routes capability.
383
+ * Calls `GET /api/v1/workspace` through the shared IDP-aware Faiber client.
384
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
385
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
386
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
387
+ */
388
+ routesWorkspaceGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesWorkspaceGetResponse, unknown, {}>>;
389
+ /**
390
+ * Performs the ready operation for the routes capability.
391
+ * Calls `GET /health/dependencies` through the shared IDP-aware Faiber client.
392
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
393
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
394
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
395
+ */
396
+ routesReadyGetHealthDependencies(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesReadyGetHealthDependenciesResponse, unknown, {}>>;
397
+ /**
398
+ * Performs the live operation for the routes capability.
399
+ * Calls `GET /health/live` through the shared IDP-aware Faiber client.
400
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
401
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
402
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
403
+ */
404
+ routesLiveGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesLiveGetResponse, unknown, {}>>;
405
+ /**
406
+ * Performs the ready operation for the routes capability.
407
+ * Calls `GET /health/ready` through the shared IDP-aware Faiber client.
408
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
409
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
410
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
411
+ */
412
+ routesReadyGetHealthReady(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesReadyGetHealthReadyResponse, unknown, {}>>;
413
+ /**
414
+ * Performs the metrics operation for the routes capability.
415
+ * Calls `GET /metrics` through the shared IDP-aware Faiber client.
416
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
417
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
418
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
419
+ */
420
+ routesMetricsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RoutesMetricsGetResponse, unknown, {}>>;
421
+ }
422
+ //# sourceMappingURL=operations.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}