repository-provider 34.1.0 → 35.0.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/package.json +7 -7
- package/src/attributes.mjs +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repository-provider",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "35.0.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
"pacc": "^2.1.5"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"ava": "^6.0
|
|
38
|
-
"browser-ava": "^2.1.
|
|
39
|
-
"c8": "^9.
|
|
37
|
+
"ava": "^6.1.0",
|
|
38
|
+
"browser-ava": "^2.1.8",
|
|
39
|
+
"c8": "^9.1.0",
|
|
40
40
|
"documentation": "^14.0.2",
|
|
41
|
-
"repository-provider-test-support": "^3.0.
|
|
42
|
-
"semantic-release": "^
|
|
41
|
+
"repository-provider-test-support": "^3.0.2",
|
|
42
|
+
"semantic-release": "^23.0.0",
|
|
43
43
|
"typescript": "^5.3.3"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
|
-
"node": ">=20.
|
|
46
|
+
"node": ">=20.11.0"
|
|
47
47
|
},
|
|
48
48
|
"repository": {
|
|
49
49
|
"type": "git",
|
package/src/attributes.mjs
CHANGED
|
@@ -24,7 +24,7 @@ export const boolean_read_only_attribute = {
|
|
|
24
24
|
default: false
|
|
25
25
|
};
|
|
26
26
|
|
|
27
|
-
export const
|
|
27
|
+
export const uuid_attribute = {
|
|
28
28
|
...default_attribute,
|
|
29
29
|
isKey: true
|
|
30
30
|
};
|
|
@@ -104,5 +104,6 @@ export const active_attribute = {
|
|
|
104
104
|
default: true,
|
|
105
105
|
writable: true
|
|
106
106
|
};
|
|
107
|
+
|
|
107
108
|
export const language_attribute = default_attribute;
|
|
108
109
|
export const type_attribute = default_attribute;
|