@gitbeaker/core 39.31.0 → 39.31.1

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 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?: string[];
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?: string;
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?: string[];
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?: string;
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.31.0",
3
+ "version": "39.31.1",
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.31.0",
63
+ "@gitbeaker/requester-utils": "^39.31.1",
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": "1112db9fc075296ae86cb34774b981a169ef63f0"
74
+ "gitHead": "7eec49b4aae88107742d740231c23b3ca9c5f1bd"
75
75
  }