repository-provider 35.5.10 → 35.5.11
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.
|
|
3
|
+
"version": "35.5.11",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -37,9 +37,9 @@
|
|
|
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.
|
|
40
|
+
"content-entry": "^14.2.4",
|
|
41
41
|
"matching-iterator": "^2.1.4",
|
|
42
|
-
"pacc": "^4.
|
|
42
|
+
"pacc": "^4.6.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"ava": "^6.4.1",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"documentation": "^14.0.3",
|
|
49
49
|
"repository-provider-test-support": "^3.1.51",
|
|
50
50
|
"semantic-release": "^24.2.7",
|
|
51
|
-
"typescript": "^5.
|
|
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,
|
|
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:
|
|
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
|
-
|
|
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>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const SingleGroupProvider_base: {
|
|
2
2
|
new (): {
|
|
3
3
|
[x: string]: any;
|
|
4
|
-
|
|
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>;
|