@cesar-richard/git-connector-sdk 1.56.5 → 1.57.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 +96 -0
  2. package/package.json +1 -1
package/dist/schema.d.ts CHANGED
@@ -203,6 +203,12 @@ export interface components {
203
203
  name: string;
204
204
  color: string | null;
205
205
  };
206
+ LinkEvidence: {
207
+ field: string;
208
+ text: string;
209
+ matchStart: string | number;
210
+ matchEnd: string | number;
211
+ };
206
212
  LinkSource: {
207
213
  hintSource: string;
208
214
  kind: string;
@@ -275,6 +281,16 @@ export interface components {
275
281
  hintSource: string;
276
282
  kind: string;
277
283
  };
284
+ linkKind?: string;
285
+ confidence?: number | null;
286
+ status?: string;
287
+ billable?: boolean;
288
+ evidence?: {
289
+ field: string;
290
+ text: string;
291
+ matchStart: string | number;
292
+ matchEnd: string | number;
293
+ } | null;
278
294
  };
279
295
  Provider: "github" | "gitlab";
280
296
  ResolvedUser: {
@@ -445,6 +461,16 @@ export interface components {
445
461
  hintSource: string;
446
462
  kind: string;
447
463
  };
464
+ linkKind?: string;
465
+ confidence?: number | null;
466
+ status?: string;
467
+ billable?: boolean;
468
+ evidence?: {
469
+ field: string;
470
+ text: string;
471
+ matchStart: string | number;
472
+ matchEnd: string | number;
473
+ } | null;
448
474
  }[];
449
475
  statusHistory: {
450
476
  label: {
@@ -566,6 +592,16 @@ export interface components {
566
592
  hintSource: string;
567
593
  kind: string;
568
594
  };
595
+ linkKind?: string;
596
+ confidence?: number | null;
597
+ status?: string;
598
+ billable?: boolean;
599
+ evidence?: {
600
+ field: string;
601
+ text: string;
602
+ matchStart: string | number;
603
+ matchEnd: string | number;
604
+ } | null;
569
605
  }[];
570
606
  statusHistory: {
571
607
  label: {
@@ -736,6 +772,16 @@ export interface operations {
736
772
  hintSource: string;
737
773
  kind: string;
738
774
  };
775
+ linkKind?: string;
776
+ confidence?: number | null;
777
+ status?: string;
778
+ billable?: boolean;
779
+ evidence?: {
780
+ field: string;
781
+ text: string;
782
+ matchStart: string | number;
783
+ matchEnd: string | number;
784
+ } | null;
739
785
  }[];
740
786
  statusHistory: {
741
787
  label: {
@@ -861,6 +907,16 @@ export interface operations {
861
907
  hintSource: string;
862
908
  kind: string;
863
909
  };
910
+ linkKind?: string;
911
+ confidence?: number | null;
912
+ status?: string;
913
+ billable?: boolean;
914
+ evidence?: {
915
+ field: string;
916
+ text: string;
917
+ matchStart: string | number;
918
+ matchEnd: string | number;
919
+ } | null;
864
920
  }[];
865
921
  statusHistory: {
866
922
  label: {
@@ -986,6 +1042,16 @@ export interface operations {
986
1042
  hintSource: string;
987
1043
  kind: string;
988
1044
  };
1045
+ linkKind?: string;
1046
+ confidence?: number | null;
1047
+ status?: string;
1048
+ billable?: boolean;
1049
+ evidence?: {
1050
+ field: string;
1051
+ text: string;
1052
+ matchStart: string | number;
1053
+ matchEnd: string | number;
1054
+ } | null;
989
1055
  }[];
990
1056
  statusHistory: {
991
1057
  label: {
@@ -1135,6 +1201,16 @@ export interface operations {
1135
1201
  hintSource: string;
1136
1202
  kind: string;
1137
1203
  };
1204
+ linkKind?: string;
1205
+ confidence?: number | null;
1206
+ status?: string;
1207
+ billable?: boolean;
1208
+ evidence?: {
1209
+ field: string;
1210
+ text: string;
1211
+ matchStart: string | number;
1212
+ matchEnd: string | number;
1213
+ } | null;
1138
1214
  }[];
1139
1215
  statusHistory: {
1140
1216
  label: {
@@ -1255,6 +1331,16 @@ export interface operations {
1255
1331
  hintSource: string;
1256
1332
  kind: string;
1257
1333
  };
1334
+ linkKind?: string;
1335
+ confidence?: number | null;
1336
+ status?: string;
1337
+ billable?: boolean;
1338
+ evidence?: {
1339
+ field: string;
1340
+ text: string;
1341
+ matchStart: string | number;
1342
+ matchEnd: string | number;
1343
+ } | null;
1258
1344
  }[];
1259
1345
  statusHistory: {
1260
1346
  label: {
@@ -1375,6 +1461,16 @@ export interface operations {
1375
1461
  hintSource: string;
1376
1462
  kind: string;
1377
1463
  };
1464
+ linkKind?: string;
1465
+ confidence?: number | null;
1466
+ status?: string;
1467
+ billable?: boolean;
1468
+ evidence?: {
1469
+ field: string;
1470
+ text: string;
1471
+ matchStart: string | number;
1472
+ matchEnd: string | number;
1473
+ } | null;
1378
1474
  }[];
1379
1475
  statusHistory: {
1380
1476
  label: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cesar-richard/git-connector-sdk",
3
- "version": "1.56.5",
3
+ "version": "1.57.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": {