repository-provider 35.5.10 → 35.5.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repository-provider",
3
- "version": "35.5.10",
3
+ "version": "35.5.12",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -37,18 +37,18 @@
37
37
  "lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
38
38
  },
39
39
  "dependencies": {
40
- "content-entry": "^14.2.3",
40
+ "content-entry": "^14.2.4",
41
41
  "matching-iterator": "^2.1.4",
42
- "pacc": "^4.5.2"
42
+ "pacc": "^4.6.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "ava": "^6.4.1",
46
46
  "browser-ava": "^2.3.31",
47
47
  "c8": "^10.1.3",
48
48
  "documentation": "^14.0.3",
49
- "repository-provider-test-support": "^3.1.51",
49
+ "repository-provider-test-support": "^3.1.52",
50
50
  "semantic-release": "^24.2.7",
51
- "typescript": "^5.8.3"
51
+ "typescript": "^5.9.2"
52
52
  },
53
53
  "engines": {
54
54
  "node": ">=22.17.1"
package/src/ref.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { name_attribute, boolean_attribute_false } from "pacc";
1
+ import { name_attribute, boolean_attribute_writable_false } from "pacc";
2
2
  import { ContentEntry } from "content-entry";
3
3
  import { OwnedObject } from "./owned-object.mjs";
4
4
 
@@ -22,7 +22,7 @@ export class Ref extends OwnedObject {
22
22
  * Can the ref be modified.
23
23
  * @return {boolean}
24
24
  */
25
- isProtected: boolean_attribute_false
25
+ isProtected: boolean_attribute_writable_false
26
26
  };
27
27
 
28
28
  static attributeMapping = {
@@ -1,7 +1,7 @@
1
1
  declare const RepositoryGroup_base: {
2
2
  new (): {
3
3
  [x: string]: any;
4
- "__#2@#repositories": Map<any, any>;
4
+ #repositories: Map<any, any>;
5
5
  normalizeRepositoryName(name: string, forLookup: boolean): string;
6
6
  repository(name?: string): Promise<import("./repository.mjs").Repository | undefined>;
7
7
  repositories(patterns?: string[] | string): AsyncIterable<import("./repository.mjs").Repository>;
@@ -5,7 +5,7 @@
5
5
  export function RepositoryOwner(base: any): {
6
6
  new (): {
7
7
  [x: string]: any;
8
- "__#2@#repositories": Map<any, any>;
8
+ #repositories: Map<any, any>;
9
9
  /**
10
10
  * Normalizes a repository name.
11
11
  * Strips branch away.
@@ -1,7 +1,7 @@
1
1
  declare const SingleGroupProvider_base: {
2
2
  new (): {
3
3
  [x: string]: any;
4
- "__#2@#repositories": Map<any, any>;
4
+ #repositories: Map<any, any>;
5
5
  normalizeRepositoryName(name: string, forLookup: boolean): string;
6
6
  repository(name?: string): Promise<Repository | undefined>;
7
7
  repositories(patterns?: string[] | string): AsyncIterable<Repository>;