@cesar-richard/git-connector-sdk 1.15.5 → 1.16.0

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.
Files changed (2) hide show
  1. package/dist/schema.d.ts +21 -0
  2. package/package.json +1 -1
package/dist/schema.d.ts CHANGED
@@ -90,6 +90,8 @@ export interface components {
90
90
  awaitingReview: boolean;
91
91
  author: string | null;
92
92
  updatedAt: string;
93
+ mergedAt: string | null;
94
+ reviewRequestedAt: string | null;
93
95
  };
94
96
  Provider: "github" | "gitlab";
95
97
  WorkItem: {
@@ -128,6 +130,8 @@ export interface components {
128
130
  awaitingReview: boolean;
129
131
  author: string | null;
130
132
  updatedAt: string;
133
+ mergedAt: string | null;
134
+ reviewRequestedAt: string | null;
131
135
  }[];
132
136
  };
133
137
  WorkItemListResponse: {
@@ -167,6 +171,8 @@ export interface components {
167
171
  awaitingReview: boolean;
168
172
  author: string | null;
169
173
  updatedAt: string;
174
+ mergedAt: string | null;
175
+ reviewRequestedAt: string | null;
170
176
  }[];
171
177
  }[];
172
178
  total: string | number;
@@ -184,6 +190,7 @@ export interface operations {
184
190
  "getV1Work-items": {
185
191
  parameters: {
186
192
  query?: {
193
+ /** @description Filter by iteration. Values: 'current' (the GitLab native iteration in state="current", typically a 2-week sprint — NOT a calendar month), 'none' (work items without any iteration), or a numeric iteration id. For calendar-based filtering (monthly CRA, etc.), use updatedSince + updatedBefore. */
187
194
  iteration?: string;
188
195
  state?: string;
189
196
  source?: string;
@@ -193,6 +200,8 @@ export interface operations {
193
200
  labelScope?: string;
194
201
  search?: string;
195
202
  limit?: string;
203
+ updatedSince?: string;
204
+ updatedBefore?: string;
196
205
  };
197
206
  header?: never;
198
207
  path?: never;
@@ -242,6 +251,8 @@ export interface operations {
242
251
  awaitingReview: boolean;
243
252
  author: string | null;
244
253
  updatedAt: string;
254
+ mergedAt: string | null;
255
+ reviewRequestedAt: string | null;
245
256
  }[];
246
257
  }[];
247
258
  total: string | number;
@@ -284,6 +295,8 @@ export interface operations {
284
295
  awaitingReview: boolean;
285
296
  author: string | null;
286
297
  updatedAt: string;
298
+ mergedAt: string | null;
299
+ reviewRequestedAt: string | null;
287
300
  }[];
288
301
  }[];
289
302
  total: string | number;
@@ -326,6 +339,8 @@ export interface operations {
326
339
  awaitingReview: boolean;
327
340
  author: string | null;
328
341
  updatedAt: string;
342
+ mergedAt: string | null;
343
+ reviewRequestedAt: string | null;
329
344
  }[];
330
345
  }[];
331
346
  total: string | number;
@@ -389,6 +404,8 @@ export interface operations {
389
404
  awaitingReview: boolean;
390
405
  author: string | null;
391
406
  updatedAt: string;
407
+ mergedAt: string | null;
408
+ reviewRequestedAt: string | null;
392
409
  }[];
393
410
  };
394
411
  "multipart/form-data": {
@@ -427,6 +444,8 @@ export interface operations {
427
444
  awaitingReview: boolean;
428
445
  author: string | null;
429
446
  updatedAt: string;
447
+ mergedAt: string | null;
448
+ reviewRequestedAt: string | null;
430
449
  }[];
431
450
  };
432
451
  "text/plain": {
@@ -465,6 +484,8 @@ export interface operations {
465
484
  awaitingReview: boolean;
466
485
  author: string | null;
467
486
  updatedAt: string;
487
+ mergedAt: string | null;
488
+ reviewRequestedAt: string | null;
468
489
  }[];
469
490
  };
470
491
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cesar-richard/git-connector-sdk",
3
- "version": "1.15.5",
3
+ "version": "1.16.0",
4
4
  "description": "TypeScript SDK for the git-connector v1 API (work items + iterations aggregated from GitHub/GitLab). Version published on npm tracks server releases.",
5
5
  "license": "MIT",
6
6
  "repository": {