@cesar-richard/git-connector-sdk 1.16.0 → 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.
- package/dist/schema.d.ts +222 -0
- package/package.json +1 -1
package/dist/schema.d.ts
CHANGED
|
@@ -92,8 +92,38 @@ export interface components {
|
|
|
92
92
|
updatedAt: string;
|
|
93
93
|
mergedAt: string | null;
|
|
94
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
|
+
}[];
|
|
95
110
|
};
|
|
96
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
|
+
};
|
|
97
127
|
WorkItem: {
|
|
98
128
|
id: string;
|
|
99
129
|
source: "github" | "gitlab";
|
|
@@ -132,6 +162,30 @@ export interface components {
|
|
|
132
162
|
updatedAt: string;
|
|
133
163
|
mergedAt: string | null;
|
|
134
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;
|
|
135
189
|
}[];
|
|
136
190
|
};
|
|
137
191
|
WorkItemListResponse: {
|
|
@@ -173,6 +227,30 @@ export interface components {
|
|
|
173
227
|
updatedAt: string;
|
|
174
228
|
mergedAt: string | null;
|
|
175
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;
|
|
176
254
|
}[];
|
|
177
255
|
}[];
|
|
178
256
|
total: string | number;
|
|
@@ -253,6 +331,30 @@ export interface operations {
|
|
|
253
331
|
updatedAt: string;
|
|
254
332
|
mergedAt: string | null;
|
|
255
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;
|
|
256
358
|
}[];
|
|
257
359
|
}[];
|
|
258
360
|
total: string | number;
|
|
@@ -297,6 +399,30 @@ export interface operations {
|
|
|
297
399
|
updatedAt: string;
|
|
298
400
|
mergedAt: string | null;
|
|
299
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;
|
|
300
426
|
}[];
|
|
301
427
|
}[];
|
|
302
428
|
total: string | number;
|
|
@@ -341,6 +467,30 @@ export interface operations {
|
|
|
341
467
|
updatedAt: string;
|
|
342
468
|
mergedAt: string | null;
|
|
343
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;
|
|
344
494
|
}[];
|
|
345
495
|
}[];
|
|
346
496
|
total: string | number;
|
|
@@ -406,6 +556,30 @@ export interface operations {
|
|
|
406
556
|
updatedAt: string;
|
|
407
557
|
mergedAt: string | null;
|
|
408
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;
|
|
409
583
|
}[];
|
|
410
584
|
};
|
|
411
585
|
"multipart/form-data": {
|
|
@@ -446,6 +620,30 @@ export interface operations {
|
|
|
446
620
|
updatedAt: string;
|
|
447
621
|
mergedAt: string | null;
|
|
448
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;
|
|
449
647
|
}[];
|
|
450
648
|
};
|
|
451
649
|
"text/plain": {
|
|
@@ -486,6 +684,30 @@ export interface operations {
|
|
|
486
684
|
updatedAt: string;
|
|
487
685
|
mergedAt: string | null;
|
|
488
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;
|
|
489
711
|
}[];
|
|
490
712
|
};
|
|
491
713
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cesar-richard/git-connector-sdk",
|
|
3
|
-
"version": "1.
|
|
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": {
|