@gitbeaker/core 39.31.0 → 39.32.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/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -761,12 +761,12 @@ interface SimpleProjectSchema extends CondensedProjectSchema {
|
|
|
761
761
|
path_with_namespace: string;
|
|
762
762
|
created_at: string;
|
|
763
763
|
default_branch: string;
|
|
764
|
-
topics
|
|
764
|
+
topics: string[] | null;
|
|
765
765
|
ssh_url_to_repo: string;
|
|
766
766
|
http_url_to_repo: string;
|
|
767
767
|
readme_url: string;
|
|
768
768
|
forks_count: number;
|
|
769
|
-
avatar_url
|
|
769
|
+
avatar_url: string | null;
|
|
770
770
|
star_count: number;
|
|
771
771
|
last_activity_at: string;
|
|
772
772
|
namespace: CondensedNamespaceSchema;
|
package/dist/index.d.ts
CHANGED
|
@@ -761,12 +761,12 @@ interface SimpleProjectSchema extends CondensedProjectSchema {
|
|
|
761
761
|
path_with_namespace: string;
|
|
762
762
|
created_at: string;
|
|
763
763
|
default_branch: string;
|
|
764
|
-
topics
|
|
764
|
+
topics: string[] | null;
|
|
765
765
|
ssh_url_to_repo: string;
|
|
766
766
|
http_url_to_repo: string;
|
|
767
767
|
readme_url: string;
|
|
768
768
|
forks_count: number;
|
|
769
|
-
avatar_url
|
|
769
|
+
avatar_url: string | null;
|
|
770
770
|
star_count: number;
|
|
771
771
|
last_activity_at: string;
|
|
772
772
|
namespace: CondensedNamespaceSchema;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbeaker/core",
|
|
3
|
-
"version": "39.
|
|
3
|
+
"version": "39.32.0",
|
|
4
4
|
"description": "Core API implementation of the GitLab API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"release": "auto shipit"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@gitbeaker/requester-utils": "^39.
|
|
63
|
+
"@gitbeaker/requester-utils": "^39.32.0",
|
|
64
64
|
"qs": "^6.11.2",
|
|
65
65
|
"xcase": "^2.0.1"
|
|
66
66
|
},
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"tsx": "^4.7.0",
|
|
72
72
|
"typescript": "^5.3.3"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "171bb9a99cdd856371e42065d98c522f421b6908"
|
|
75
75
|
}
|