pacc 4.3.0 → 4.4.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
|
@@ -287,10 +287,17 @@ export const priority_attribute = {
|
|
|
287
287
|
/**
|
|
288
288
|
* @type {AttributeDefinition}
|
|
289
289
|
*/
|
|
290
|
-
export const
|
|
290
|
+
export const duration_attribute = {
|
|
291
291
|
...default_attribute,
|
|
292
|
+
type: "number"
|
|
293
|
+
};
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* @type {AttributeDefinition}
|
|
297
|
+
*/
|
|
298
|
+
export const timeout_attribute = {
|
|
299
|
+
...duration_attribute,
|
|
292
300
|
description: "timeout",
|
|
293
|
-
type: "number",
|
|
294
301
|
writable: true
|
|
295
302
|
};
|
|
296
303
|
|
|
@@ -145,6 +145,10 @@ export const title_attribute: AttributeDefinition;
|
|
|
145
145
|
* @type {AttributeDefinition}
|
|
146
146
|
*/
|
|
147
147
|
export const priority_attribute: AttributeDefinition;
|
|
148
|
+
/**
|
|
149
|
+
* @type {AttributeDefinition}
|
|
150
|
+
*/
|
|
151
|
+
export const duration_attribute: AttributeDefinition;
|
|
148
152
|
/**
|
|
149
153
|
* @type {AttributeDefinition}
|
|
150
154
|
*/
|