@cesar-richard/git-connector-sdk 1.25.0 → 1.27.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 +95 -5
  2. 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
  };
@@ -86,7 +96,7 @@ export interface components {
86
96
  events: {
87
97
  id: string;
88
98
  source: "github" | "gitlab";
89
- type: "commit" | "comment" | "review" | "state-transition" | "ci-run";
99
+ type: "commit" | "comment" | "review" | "state-transition" | "ci-run" | "ci-pipeline";
90
100
  repo: string;
91
101
  externalId: string;
92
102
  day: string;
@@ -106,7 +116,7 @@ export interface components {
106
116
  GitEvent: {
107
117
  id: string;
108
118
  source: "github" | "gitlab";
109
- type: "commit" | "comment" | "review" | "state-transition" | "ci-run";
119
+ type: "commit" | "comment" | "review" | "state-transition" | "ci-run" | "ci-pipeline";
110
120
  repo: string;
111
121
  externalId: string;
112
122
  day: string;
@@ -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,6 +427,16 @@ 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;
@@ -537,6 +567,16 @@ export interface operations {
537
567
  changedAt: string;
538
568
  changedBy: string | null;
539
569
  }[];
570
+ comments?: {
571
+ id: string;
572
+ source: "github" | "gitlab";
573
+ author: string | null;
574
+ createdAt: string;
575
+ body: string;
576
+ url: string | null;
577
+ parentType: "issue" | "pr" | "mr";
578
+ parentNumber: string | number;
579
+ }[];
540
580
  }[];
541
581
  total: string | number;
542
582
  limit: string | number;
@@ -627,6 +667,16 @@ export interface operations {
627
667
  changedAt: string;
628
668
  changedBy: string | null;
629
669
  }[];
670
+ comments?: {
671
+ id: string;
672
+ source: "github" | "gitlab";
673
+ author: string | null;
674
+ createdAt: string;
675
+ body: string;
676
+ url: string | null;
677
+ parentType: "issue" | "pr" | "mr";
678
+ parentNumber: string | number;
679
+ }[];
630
680
  }[];
631
681
  total: string | number;
632
682
  limit: string | number;
@@ -717,6 +767,16 @@ export interface operations {
717
767
  changedAt: string;
718
768
  changedBy: string | null;
719
769
  }[];
770
+ comments?: {
771
+ id: string;
772
+ source: "github" | "gitlab";
773
+ author: string | null;
774
+ createdAt: string;
775
+ body: string;
776
+ url: string | null;
777
+ parentType: "issue" | "pr" | "mr";
778
+ parentNumber: string | number;
779
+ }[];
720
780
  }[];
721
781
  total: string | number;
722
782
  limit: string | number;
@@ -828,6 +888,16 @@ export interface operations {
828
888
  changedAt: string;
829
889
  changedBy: string | null;
830
890
  }[];
891
+ comments?: {
892
+ id: string;
893
+ source: "github" | "gitlab";
894
+ author: string | null;
895
+ createdAt: string;
896
+ body: string;
897
+ url: string | null;
898
+ parentType: "issue" | "pr" | "mr";
899
+ parentNumber: string | number;
900
+ }[];
831
901
  };
832
902
  "multipart/form-data": {
833
903
  id: string;
@@ -914,6 +984,16 @@ export interface operations {
914
984
  changedAt: string;
915
985
  changedBy: string | null;
916
986
  }[];
987
+ comments?: {
988
+ id: string;
989
+ source: "github" | "gitlab";
990
+ author: string | null;
991
+ createdAt: string;
992
+ body: string;
993
+ url: string | null;
994
+ parentType: "issue" | "pr" | "mr";
995
+ parentNumber: string | number;
996
+ }[];
917
997
  };
918
998
  "text/plain": {
919
999
  id: string;
@@ -1000,6 +1080,16 @@ export interface operations {
1000
1080
  changedAt: string;
1001
1081
  changedBy: string | null;
1002
1082
  }[];
1083
+ comments?: {
1084
+ id: string;
1085
+ source: "github" | "gitlab";
1086
+ author: string | null;
1087
+ createdAt: string;
1088
+ body: string;
1089
+ url: string | null;
1090
+ parentType: "issue" | "pr" | "mr";
1091
+ parentNumber: string | number;
1092
+ }[];
1003
1093
  };
1004
1094
  };
1005
1095
  };
@@ -1115,7 +1205,7 @@ export interface operations {
1115
1205
  events: {
1116
1206
  id: string;
1117
1207
  source: "github" | "gitlab";
1118
- type: "commit" | "comment" | "review" | "state-transition" | "ci-run";
1208
+ type: "commit" | "comment" | "review" | "state-transition" | "ci-run" | "ci-pipeline";
1119
1209
  repo: string;
1120
1210
  externalId: string;
1121
1211
  day: string;
@@ -1136,7 +1226,7 @@ export interface operations {
1136
1226
  events: {
1137
1227
  id: string;
1138
1228
  source: "github" | "gitlab";
1139
- type: "commit" | "comment" | "review" | "state-transition" | "ci-run";
1229
+ type: "commit" | "comment" | "review" | "state-transition" | "ci-run" | "ci-pipeline";
1140
1230
  repo: string;
1141
1231
  externalId: string;
1142
1232
  day: string;
@@ -1157,7 +1247,7 @@ export interface operations {
1157
1247
  events: {
1158
1248
  id: string;
1159
1249
  source: "github" | "gitlab";
1160
- type: "commit" | "comment" | "review" | "state-transition" | "ci-run";
1250
+ type: "commit" | "comment" | "review" | "state-transition" | "ci-run" | "ci-pipeline";
1161
1251
  repo: string;
1162
1252
  externalId: string;
1163
1253
  day: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cesar-richard/git-connector-sdk",
3
- "version": "1.25.0",
3
+ "version": "1.27.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": {