@cesar-richard/git-connector-sdk 1.15.5 → 1.17.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 +243 -0
  2. package/package.json +1 -1
package/dist/schema.d.ts CHANGED
@@ -90,8 +90,40 @@ export interface components {
90
90
  awaitingReview: boolean;
91
91
  author: string | null;
92
92
  updatedAt: string;
93
+ mergedAt: string | null;
94
+ reviewRequestedAt: string | null;
95
+ volume: {
96
+ additions: string | number;
97
+ deletions: string | number;
98
+ changedFiles: string | number;
99
+ commits: string | number;
100
+ } | null;
101
+ statusHistory: {
102
+ label: {
103
+ name: string;
104
+ color: string | null;
105
+ };
106
+ action: "added" | "removed";
107
+ changedAt: string;
108
+ changedBy: string | null;
109
+ }[];
93
110
  };
94
111
  Provider: "github" | "gitlab";
112
+ StatusEvent: {
113
+ label: {
114
+ name: string;
115
+ color: string | null;
116
+ };
117
+ action: "added" | "removed";
118
+ changedAt: string;
119
+ changedBy: string | null;
120
+ };
121
+ Volume: {
122
+ additions: string | number;
123
+ deletions: string | number;
124
+ changedFiles: string | number;
125
+ commits: string | number;
126
+ };
95
127
  WorkItem: {
96
128
  id: string;
97
129
  source: "github" | "gitlab";
@@ -128,6 +160,32 @@ export interface components {
128
160
  awaitingReview: boolean;
129
161
  author: string | null;
130
162
  updatedAt: string;
163
+ mergedAt: string | null;
164
+ reviewRequestedAt: string | null;
165
+ volume: {
166
+ additions: string | number;
167
+ deletions: string | number;
168
+ changedFiles: string | number;
169
+ commits: string | number;
170
+ } | null;
171
+ statusHistory: {
172
+ label: {
173
+ name: string;
174
+ color: string | null;
175
+ };
176
+ action: "added" | "removed";
177
+ changedAt: string;
178
+ changedBy: string | null;
179
+ }[];
180
+ }[];
181
+ statusHistory: {
182
+ label: {
183
+ name: string;
184
+ color: string | null;
185
+ };
186
+ action: "added" | "removed";
187
+ changedAt: string;
188
+ changedBy: string | null;
131
189
  }[];
132
190
  };
133
191
  WorkItemListResponse: {
@@ -167,6 +225,32 @@ export interface components {
167
225
  awaitingReview: boolean;
168
226
  author: string | null;
169
227
  updatedAt: string;
228
+ mergedAt: string | null;
229
+ reviewRequestedAt: string | null;
230
+ volume: {
231
+ additions: string | number;
232
+ deletions: string | number;
233
+ changedFiles: string | number;
234
+ commits: string | number;
235
+ } | null;
236
+ statusHistory: {
237
+ label: {
238
+ name: string;
239
+ color: string | null;
240
+ };
241
+ action: "added" | "removed";
242
+ changedAt: string;
243
+ changedBy: string | null;
244
+ }[];
245
+ }[];
246
+ statusHistory: {
247
+ label: {
248
+ name: string;
249
+ color: string | null;
250
+ };
251
+ action: "added" | "removed";
252
+ changedAt: string;
253
+ changedBy: string | null;
170
254
  }[];
171
255
  }[];
172
256
  total: string | number;
@@ -184,6 +268,7 @@ export interface operations {
184
268
  "getV1Work-items": {
185
269
  parameters: {
186
270
  query?: {
271
+ /** @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
272
  iteration?: string;
188
273
  state?: string;
189
274
  source?: string;
@@ -193,6 +278,8 @@ export interface operations {
193
278
  labelScope?: string;
194
279
  search?: string;
195
280
  limit?: string;
281
+ updatedSince?: string;
282
+ updatedBefore?: string;
196
283
  };
197
284
  header?: never;
198
285
  path?: never;
@@ -242,6 +329,32 @@ export interface operations {
242
329
  awaitingReview: boolean;
243
330
  author: string | null;
244
331
  updatedAt: string;
332
+ mergedAt: string | null;
333
+ reviewRequestedAt: string | null;
334
+ volume: {
335
+ additions: string | number;
336
+ deletions: string | number;
337
+ changedFiles: string | number;
338
+ commits: string | number;
339
+ } | null;
340
+ statusHistory: {
341
+ label: {
342
+ name: string;
343
+ color: string | null;
344
+ };
345
+ action: "added" | "removed";
346
+ changedAt: string;
347
+ changedBy: string | null;
348
+ }[];
349
+ }[];
350
+ statusHistory: {
351
+ label: {
352
+ name: string;
353
+ color: string | null;
354
+ };
355
+ action: "added" | "removed";
356
+ changedAt: string;
357
+ changedBy: string | null;
245
358
  }[];
246
359
  }[];
247
360
  total: string | number;
@@ -284,6 +397,32 @@ export interface operations {
284
397
  awaitingReview: boolean;
285
398
  author: string | null;
286
399
  updatedAt: string;
400
+ mergedAt: string | null;
401
+ reviewRequestedAt: string | null;
402
+ volume: {
403
+ additions: string | number;
404
+ deletions: string | number;
405
+ changedFiles: string | number;
406
+ commits: string | number;
407
+ } | null;
408
+ statusHistory: {
409
+ label: {
410
+ name: string;
411
+ color: string | null;
412
+ };
413
+ action: "added" | "removed";
414
+ changedAt: string;
415
+ changedBy: string | null;
416
+ }[];
417
+ }[];
418
+ statusHistory: {
419
+ label: {
420
+ name: string;
421
+ color: string | null;
422
+ };
423
+ action: "added" | "removed";
424
+ changedAt: string;
425
+ changedBy: string | null;
287
426
  }[];
288
427
  }[];
289
428
  total: string | number;
@@ -326,6 +465,32 @@ export interface operations {
326
465
  awaitingReview: boolean;
327
466
  author: string | null;
328
467
  updatedAt: string;
468
+ mergedAt: string | null;
469
+ reviewRequestedAt: string | null;
470
+ volume: {
471
+ additions: string | number;
472
+ deletions: string | number;
473
+ changedFiles: string | number;
474
+ commits: string | number;
475
+ } | null;
476
+ statusHistory: {
477
+ label: {
478
+ name: string;
479
+ color: string | null;
480
+ };
481
+ action: "added" | "removed";
482
+ changedAt: string;
483
+ changedBy: string | null;
484
+ }[];
485
+ }[];
486
+ statusHistory: {
487
+ label: {
488
+ name: string;
489
+ color: string | null;
490
+ };
491
+ action: "added" | "removed";
492
+ changedAt: string;
493
+ changedBy: string | null;
329
494
  }[];
330
495
  }[];
331
496
  total: string | number;
@@ -389,6 +554,32 @@ export interface operations {
389
554
  awaitingReview: boolean;
390
555
  author: string | null;
391
556
  updatedAt: string;
557
+ mergedAt: string | null;
558
+ reviewRequestedAt: string | null;
559
+ volume: {
560
+ additions: string | number;
561
+ deletions: string | number;
562
+ changedFiles: string | number;
563
+ commits: string | number;
564
+ } | null;
565
+ statusHistory: {
566
+ label: {
567
+ name: string;
568
+ color: string | null;
569
+ };
570
+ action: "added" | "removed";
571
+ changedAt: string;
572
+ changedBy: string | null;
573
+ }[];
574
+ }[];
575
+ statusHistory: {
576
+ label: {
577
+ name: string;
578
+ color: string | null;
579
+ };
580
+ action: "added" | "removed";
581
+ changedAt: string;
582
+ changedBy: string | null;
392
583
  }[];
393
584
  };
394
585
  "multipart/form-data": {
@@ -427,6 +618,32 @@ export interface operations {
427
618
  awaitingReview: boolean;
428
619
  author: string | null;
429
620
  updatedAt: string;
621
+ mergedAt: string | null;
622
+ reviewRequestedAt: string | null;
623
+ volume: {
624
+ additions: string | number;
625
+ deletions: string | number;
626
+ changedFiles: string | number;
627
+ commits: string | number;
628
+ } | null;
629
+ statusHistory: {
630
+ label: {
631
+ name: string;
632
+ color: string | null;
633
+ };
634
+ action: "added" | "removed";
635
+ changedAt: string;
636
+ changedBy: string | null;
637
+ }[];
638
+ }[];
639
+ statusHistory: {
640
+ label: {
641
+ name: string;
642
+ color: string | null;
643
+ };
644
+ action: "added" | "removed";
645
+ changedAt: string;
646
+ changedBy: string | null;
430
647
  }[];
431
648
  };
432
649
  "text/plain": {
@@ -465,6 +682,32 @@ export interface operations {
465
682
  awaitingReview: boolean;
466
683
  author: string | null;
467
684
  updatedAt: string;
685
+ mergedAt: string | null;
686
+ reviewRequestedAt: string | null;
687
+ volume: {
688
+ additions: string | number;
689
+ deletions: string | number;
690
+ changedFiles: string | number;
691
+ commits: string | number;
692
+ } | null;
693
+ statusHistory: {
694
+ label: {
695
+ name: string;
696
+ color: string | null;
697
+ };
698
+ action: "added" | "removed";
699
+ changedAt: string;
700
+ changedBy: string | null;
701
+ }[];
702
+ }[];
703
+ statusHistory: {
704
+ label: {
705
+ name: string;
706
+ color: string | null;
707
+ };
708
+ action: "added" | "removed";
709
+ changedAt: string;
710
+ changedBy: string | null;
468
711
  }[];
469
712
  };
470
713
  };
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.17.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": {