@gitbeaker/core 39.30.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,17 +761,20 @@ 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;
773
773
  }
774
774
  interface ProjectSchema extends SimpleProjectSchema {
775
+ issues_template?: string;
776
+ merge_requests_template?: string;
777
+ mirror_trigger_builds?: boolean;
775
778
  container_registry_image_prefix: string;
776
779
  _links: {
777
780
  self: string;
package/dist/index.d.ts CHANGED
@@ -761,17 +761,20 @@ 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;
773
773
  }
774
774
  interface ProjectSchema extends SimpleProjectSchema {
775
+ issues_template?: string;
776
+ merge_requests_template?: string;
777
+ mirror_trigger_builds?: boolean;
775
778
  container_registry_image_prefix: string;
776
779
  _links: {
777
780
  self: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitbeaker/core",
3
- "version": "39.30.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.30.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": "1d7e9aee42b91b36e7757c1de5fb6251f459afa8"
74
+ "gitHead": "7eec49b4aae88107742d740231c23b3ca9c5f1bd"
75
75
  }