@cesar-richard/git-connector-sdk 1.26.0 → 1.28.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 +95 -0
- package/package.json +1 -1
package/dist/schema.d.ts
CHANGED
|
@@ -79,6 +79,16 @@ export interface components {
|
|
|
79
79
|
dueDate: string | null;
|
|
80
80
|
state: "upcoming" | "current" | "closed" | "unknown";
|
|
81
81
|
};
|
|
82
|
+
Comment: {
|
|
83
|
+
id: string;
|
|
84
|
+
source: "github" | "gitlab";
|
|
85
|
+
author: string | null;
|
|
86
|
+
createdAt: string;
|
|
87
|
+
body: string;
|
|
88
|
+
url: string | null;
|
|
89
|
+
parentType: "issue" | "pr" | "mr";
|
|
90
|
+
parentNumber: string | number;
|
|
91
|
+
};
|
|
82
92
|
ErrorResponse: {
|
|
83
93
|
error: string;
|
|
84
94
|
};
|
|
@@ -320,6 +330,16 @@ export interface components {
|
|
|
320
330
|
changedAt: string;
|
|
321
331
|
changedBy: string | null;
|
|
322
332
|
}[];
|
|
333
|
+
comments?: {
|
|
334
|
+
id: string;
|
|
335
|
+
source: "github" | "gitlab";
|
|
336
|
+
author: string | null;
|
|
337
|
+
createdAt: string;
|
|
338
|
+
body: string;
|
|
339
|
+
url: string | null;
|
|
340
|
+
parentType: "issue" | "pr" | "mr";
|
|
341
|
+
parentNumber: string | number;
|
|
342
|
+
}[];
|
|
323
343
|
};
|
|
324
344
|
WorkItemListResponse: {
|
|
325
345
|
items: {
|
|
@@ -407,9 +427,20 @@ export interface components {
|
|
|
407
427
|
changedAt: string;
|
|
408
428
|
changedBy: string | null;
|
|
409
429
|
}[];
|
|
430
|
+
comments?: {
|
|
431
|
+
id: string;
|
|
432
|
+
source: "github" | "gitlab";
|
|
433
|
+
author: string | null;
|
|
434
|
+
createdAt: string;
|
|
435
|
+
body: string;
|
|
436
|
+
url: string | null;
|
|
437
|
+
parentType: "issue" | "pr" | "mr";
|
|
438
|
+
parentNumber: string | number;
|
|
439
|
+
}[];
|
|
410
440
|
}[];
|
|
411
441
|
total: string | number;
|
|
412
442
|
limit: string | number;
|
|
443
|
+
offset?: string | number;
|
|
413
444
|
};
|
|
414
445
|
};
|
|
415
446
|
responses: never;
|
|
@@ -433,6 +464,7 @@ export interface operations {
|
|
|
433
464
|
labelScope?: string;
|
|
434
465
|
search?: string;
|
|
435
466
|
limit?: string;
|
|
467
|
+
offset?: string;
|
|
436
468
|
updatedSince?: string;
|
|
437
469
|
updatedBefore?: string;
|
|
438
470
|
/** @description If 'true', returns only work items where AT LEAST ONE linked open PR/MR has reviews.approvedCount === 0. Useful for dashboards showing pending review work. */
|
|
@@ -537,9 +569,20 @@ export interface operations {
|
|
|
537
569
|
changedAt: string;
|
|
538
570
|
changedBy: string | null;
|
|
539
571
|
}[];
|
|
572
|
+
comments?: {
|
|
573
|
+
id: string;
|
|
574
|
+
source: "github" | "gitlab";
|
|
575
|
+
author: string | null;
|
|
576
|
+
createdAt: string;
|
|
577
|
+
body: string;
|
|
578
|
+
url: string | null;
|
|
579
|
+
parentType: "issue" | "pr" | "mr";
|
|
580
|
+
parentNumber: string | number;
|
|
581
|
+
}[];
|
|
540
582
|
}[];
|
|
541
583
|
total: string | number;
|
|
542
584
|
limit: string | number;
|
|
585
|
+
offset?: string | number;
|
|
543
586
|
};
|
|
544
587
|
"multipart/form-data": {
|
|
545
588
|
items: {
|
|
@@ -627,9 +670,20 @@ export interface operations {
|
|
|
627
670
|
changedAt: string;
|
|
628
671
|
changedBy: string | null;
|
|
629
672
|
}[];
|
|
673
|
+
comments?: {
|
|
674
|
+
id: string;
|
|
675
|
+
source: "github" | "gitlab";
|
|
676
|
+
author: string | null;
|
|
677
|
+
createdAt: string;
|
|
678
|
+
body: string;
|
|
679
|
+
url: string | null;
|
|
680
|
+
parentType: "issue" | "pr" | "mr";
|
|
681
|
+
parentNumber: string | number;
|
|
682
|
+
}[];
|
|
630
683
|
}[];
|
|
631
684
|
total: string | number;
|
|
632
685
|
limit: string | number;
|
|
686
|
+
offset?: string | number;
|
|
633
687
|
};
|
|
634
688
|
"text/plain": {
|
|
635
689
|
items: {
|
|
@@ -717,9 +771,20 @@ export interface operations {
|
|
|
717
771
|
changedAt: string;
|
|
718
772
|
changedBy: string | null;
|
|
719
773
|
}[];
|
|
774
|
+
comments?: {
|
|
775
|
+
id: string;
|
|
776
|
+
source: "github" | "gitlab";
|
|
777
|
+
author: string | null;
|
|
778
|
+
createdAt: string;
|
|
779
|
+
body: string;
|
|
780
|
+
url: string | null;
|
|
781
|
+
parentType: "issue" | "pr" | "mr";
|
|
782
|
+
parentNumber: string | number;
|
|
783
|
+
}[];
|
|
720
784
|
}[];
|
|
721
785
|
total: string | number;
|
|
722
786
|
limit: string | number;
|
|
787
|
+
offset?: string | number;
|
|
723
788
|
};
|
|
724
789
|
};
|
|
725
790
|
};
|
|
@@ -828,6 +893,16 @@ export interface operations {
|
|
|
828
893
|
changedAt: string;
|
|
829
894
|
changedBy: string | null;
|
|
830
895
|
}[];
|
|
896
|
+
comments?: {
|
|
897
|
+
id: string;
|
|
898
|
+
source: "github" | "gitlab";
|
|
899
|
+
author: string | null;
|
|
900
|
+
createdAt: string;
|
|
901
|
+
body: string;
|
|
902
|
+
url: string | null;
|
|
903
|
+
parentType: "issue" | "pr" | "mr";
|
|
904
|
+
parentNumber: string | number;
|
|
905
|
+
}[];
|
|
831
906
|
};
|
|
832
907
|
"multipart/form-data": {
|
|
833
908
|
id: string;
|
|
@@ -914,6 +989,16 @@ export interface operations {
|
|
|
914
989
|
changedAt: string;
|
|
915
990
|
changedBy: string | null;
|
|
916
991
|
}[];
|
|
992
|
+
comments?: {
|
|
993
|
+
id: string;
|
|
994
|
+
source: "github" | "gitlab";
|
|
995
|
+
author: string | null;
|
|
996
|
+
createdAt: string;
|
|
997
|
+
body: string;
|
|
998
|
+
url: string | null;
|
|
999
|
+
parentType: "issue" | "pr" | "mr";
|
|
1000
|
+
parentNumber: string | number;
|
|
1001
|
+
}[];
|
|
917
1002
|
};
|
|
918
1003
|
"text/plain": {
|
|
919
1004
|
id: string;
|
|
@@ -1000,6 +1085,16 @@ export interface operations {
|
|
|
1000
1085
|
changedAt: string;
|
|
1001
1086
|
changedBy: string | null;
|
|
1002
1087
|
}[];
|
|
1088
|
+
comments?: {
|
|
1089
|
+
id: string;
|
|
1090
|
+
source: "github" | "gitlab";
|
|
1091
|
+
author: string | null;
|
|
1092
|
+
createdAt: string;
|
|
1093
|
+
body: string;
|
|
1094
|
+
url: string | null;
|
|
1095
|
+
parentType: "issue" | "pr" | "mr";
|
|
1096
|
+
parentNumber: string | number;
|
|
1097
|
+
}[];
|
|
1003
1098
|
};
|
|
1004
1099
|
};
|
|
1005
1100
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cesar-richard/git-connector-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.28.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": {
|