pacc 4.6.0 → 4.7.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/README.md +5 -0
- package/package.json +2 -2
- package/src/common-attributes.mjs +8 -0
- package/types/common-attributes.d.mts +4 -0
package/README.md
CHANGED
|
@@ -43,6 +43,7 @@ const result = getAttribute({ a: [0,{ b: 4 }]}, "a[1].b");
|
|
|
43
43
|
* [string\_collection\_attribute\_writable](#string_collection_attribute_writable)
|
|
44
44
|
* [name\_attribute](#name_attribute)
|
|
45
45
|
* [email\_attribute](#email_attribute)
|
|
46
|
+
* [version\_attribute\_writable](#version_attribute_writable)
|
|
46
47
|
* [description\_attribute](#description_attribute)
|
|
47
48
|
* [boolean\_attribute\_writable](#boolean_attribute_writable)
|
|
48
49
|
* [boolean\_attribute\_writable\_true](#boolean_attribute_writable_true)
|
|
@@ -206,6 +207,10 @@ Type: [AttributeDefinition](#attributedefinition)
|
|
|
206
207
|
|
|
207
208
|
Type: [AttributeDefinition](#attributedefinition)
|
|
208
209
|
|
|
210
|
+
## version\_attribute\_writable
|
|
211
|
+
|
|
212
|
+
Type: [AttributeDefinition](#attributedefinition)
|
|
213
|
+
|
|
209
214
|
## description\_attribute
|
|
210
215
|
|
|
211
216
|
The description of the object content.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pacc",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"typescript": "^5.9.2"
|
|
42
42
|
},
|
|
43
43
|
"engines": {
|
|
44
|
-
"node": ">=22.
|
|
44
|
+
"node": ">=22.18.0"
|
|
45
45
|
},
|
|
46
46
|
"repository": {
|
|
47
47
|
"type": "git",
|
|
@@ -255,6 +255,14 @@ export const url_attribute = {
|
|
|
255
255
|
description: "home of the object"
|
|
256
256
|
};
|
|
257
257
|
|
|
258
|
+
/**
|
|
259
|
+
* @type {AttributeDefinition}
|
|
260
|
+
*/
|
|
261
|
+
export const url_attribute_writble = {
|
|
262
|
+
...url_attribute,
|
|
263
|
+
writable: true
|
|
264
|
+
};
|
|
265
|
+
|
|
258
266
|
/**
|
|
259
267
|
* @type {AttributeDefinition}
|
|
260
268
|
*/
|
|
@@ -120,6 +120,10 @@ export const object_attribute: AttributeDefinition;
|
|
|
120
120
|
* @type {AttributeDefinition}
|
|
121
121
|
*/
|
|
122
122
|
export const url_attribute: AttributeDefinition;
|
|
123
|
+
/**
|
|
124
|
+
* @type {AttributeDefinition}
|
|
125
|
+
*/
|
|
126
|
+
export const url_attribute_writble: AttributeDefinition;
|
|
123
127
|
/**
|
|
124
128
|
* @type {AttributeDefinition}
|
|
125
129
|
*/
|