@cesar-richard/git-connector-sdk 1.27.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 +5 -0
- package/package.json +1 -1
package/dist/schema.d.ts
CHANGED
|
@@ -440,6 +440,7 @@ export interface components {
|
|
|
440
440
|
}[];
|
|
441
441
|
total: string | number;
|
|
442
442
|
limit: string | number;
|
|
443
|
+
offset?: string | number;
|
|
443
444
|
};
|
|
444
445
|
};
|
|
445
446
|
responses: never;
|
|
@@ -463,6 +464,7 @@ export interface operations {
|
|
|
463
464
|
labelScope?: string;
|
|
464
465
|
search?: string;
|
|
465
466
|
limit?: string;
|
|
467
|
+
offset?: string;
|
|
466
468
|
updatedSince?: string;
|
|
467
469
|
updatedBefore?: string;
|
|
468
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. */
|
|
@@ -580,6 +582,7 @@ export interface operations {
|
|
|
580
582
|
}[];
|
|
581
583
|
total: string | number;
|
|
582
584
|
limit: string | number;
|
|
585
|
+
offset?: string | number;
|
|
583
586
|
};
|
|
584
587
|
"multipart/form-data": {
|
|
585
588
|
items: {
|
|
@@ -680,6 +683,7 @@ export interface operations {
|
|
|
680
683
|
}[];
|
|
681
684
|
total: string | number;
|
|
682
685
|
limit: string | number;
|
|
686
|
+
offset?: string | number;
|
|
683
687
|
};
|
|
684
688
|
"text/plain": {
|
|
685
689
|
items: {
|
|
@@ -780,6 +784,7 @@ export interface operations {
|
|
|
780
784
|
}[];
|
|
781
785
|
total: string | number;
|
|
782
786
|
limit: string | number;
|
|
787
|
+
offset?: string | number;
|
|
783
788
|
};
|
|
784
789
|
};
|
|
785
790
|
};
|
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": {
|