pacc 6.5.0 → 6.6.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pacc",
3
- "version": "6.5.0",
3
+ "version": "6.6.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -96,9 +96,16 @@ export const email_attribute = {
96
96
  /**
97
97
  * @type {AttributeDefinition}
98
98
  */
99
- export const version_attribute_writable = {
99
+ export const version_attribute = {
100
100
  ...default_attribute,
101
- description: "version",
101
+ description: "version"
102
+ };
103
+
104
+ /**
105
+ * @type {AttributeDefinition}
106
+ */
107
+ export const version_attribute_writable = {
108
+ ...version_attribute,
102
109
  writable: true
103
110
  };
104
111
 
@@ -273,7 +280,10 @@ export { integer_attribute_writable as count_attribute_writable };
273
280
  */
274
281
  export { integer_attribute as size_attribute };
275
282
 
276
- export const bytes_size_attribute = { ...default_attribute, type: types.byte_size };
283
+ export const bytes_size_attribute = {
284
+ ...default_attribute,
285
+ type: types.byte_size
286
+ };
277
287
 
278
288
  /**
279
289
  * @type {AttributeDefinition}
@@ -352,12 +362,18 @@ export const priority_attribute = {
352
362
  /**
353
363
  * @type {AttributeDefinition}
354
364
  */
355
- export const duration_attribute = { ...default_attribute, type: types.duration }
365
+ export const duration_attribute = {
366
+ ...default_attribute,
367
+ type: types.duration
368
+ };
356
369
 
357
370
  /**
358
371
  * @type {AttributeDefinition}
359
372
  */
360
- export const duration_ms_attribute = { ...default_attribute, type: types.duration_ms }
373
+ export const duration_ms_attribute = {
374
+ ...default_attribute,
375
+ type: types.duration_ms
376
+ };
361
377
 
362
378
  /**
363
379
  * @type {AttributeDefinition}
@@ -67,6 +67,10 @@ export const name_attribute_writable: AttributeDefinition;
67
67
  * @type {AttributeDefinition}
68
68
  */
69
69
  export const email_attribute: AttributeDefinition;
70
+ /**
71
+ * @type {AttributeDefinition}
72
+ */
73
+ export const version_attribute: AttributeDefinition;
70
74
  /**
71
75
  * @type {AttributeDefinition}
72
76
  */