pacc 5.3.0 → 6.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pacc",
3
- "version": "5.3.0",
3
+ "version": "6.0.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -348,7 +348,7 @@ export const priority_attribute = {
348
348
  /**
349
349
  * @type {AttributeDefinition}
350
350
  */
351
- export { number_attribute as duration_attribute };
351
+ export const duration_attribute = { ...default_attribute, type: types.duration }
352
352
 
353
353
  /**
354
354
  * @type {AttributeDefinition}
@@ -166,6 +166,10 @@ export const title_attribute_writable: AttributeDefinition;
166
166
  * @type {AttributeDefinition}
167
167
  */
168
168
  export const priority_attribute: AttributeDefinition;
169
+ /**
170
+ * @type {AttributeDefinition}
171
+ */
172
+ export const duration_attribute: AttributeDefinition;
169
173
  /**
170
174
  * @type {AttributeDefinition}
171
175
  */
@@ -226,4 +230,4 @@ export type AttributeDefinition = {
226
230
  */
227
231
  additionalValues?: object;
228
232
  };
229
- export { default_attribute as string_attribute, default_attribute_writable as string_attribute_writable, description_attribute as description_attribute_writable, default_attribute as type_attribute, default_attribute_writable as state_attribute_writable, boolean_attribute_writable_true as active_attribute, secret_attribute as username_attribute, secret_attribute as password_attribute, secret_attribute as token_attribute, secret_attribute as certificate_attribute, integer_attribute as count_attribute, integer_attribute_writable as count_attribute_writable, integer_attribute as size_attribute, default_attribute_writable as body_attribute_writable, number_attribute as duration_attribute };
233
+ export { default_attribute as string_attribute, default_attribute_writable as string_attribute_writable, description_attribute as description_attribute_writable, default_attribute as type_attribute, default_attribute_writable as state_attribute_writable, boolean_attribute_writable_true as active_attribute, secret_attribute as username_attribute, secret_attribute as password_attribute, secret_attribute as token_attribute, secret_attribute as certificate_attribute, integer_attribute as count_attribute, integer_attribute_writable as count_attribute_writable, integer_attribute as size_attribute, default_attribute_writable as body_attribute_writable };