pacc 4.12.2 → 4.13.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
CHANGED
|
@@ -67,6 +67,14 @@ export const name_attribute = {
|
|
|
67
67
|
isKey: true
|
|
68
68
|
};
|
|
69
69
|
|
|
70
|
+
/**
|
|
71
|
+
* @type {AttributeDefinition}
|
|
72
|
+
*/
|
|
73
|
+
export const name_attribute_writable = {
|
|
74
|
+
...name_attribute,
|
|
75
|
+
writable: true
|
|
76
|
+
};
|
|
77
|
+
|
|
70
78
|
/**
|
|
71
79
|
* @type {AttributeDefinition}
|
|
72
80
|
*/
|
|
@@ -176,7 +184,6 @@ export { secret_attribute as username_attribute };
|
|
|
176
184
|
*/
|
|
177
185
|
export { secret_attribute as password_attribute };
|
|
178
186
|
|
|
179
|
-
|
|
180
187
|
/**
|
|
181
188
|
* @type {AttributeDefinition}
|
|
182
189
|
*/
|
|
@@ -47,6 +47,10 @@ export const string_collection_attribute_writable: AttributeDefinition;
|
|
|
47
47
|
* @type {AttributeDefinition}
|
|
48
48
|
*/
|
|
49
49
|
export const name_attribute: AttributeDefinition;
|
|
50
|
+
/**
|
|
51
|
+
* @type {AttributeDefinition}
|
|
52
|
+
*/
|
|
53
|
+
export const name_attribute_writable: AttributeDefinition;
|
|
50
54
|
/**
|
|
51
55
|
* @type {AttributeDefinition}
|
|
52
56
|
*/
|