pacc 9.4.2 → 9.5.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
|
@@ -155,6 +155,14 @@ export { description_attribute as description_attribute_writable };
|
|
|
155
155
|
*/
|
|
156
156
|
export const type_attribute = { ...default_attribute, name: "type" };
|
|
157
157
|
|
|
158
|
+
/**
|
|
159
|
+
* @type {AttributeDefinition}
|
|
160
|
+
*/
|
|
161
|
+
export const type_attribute_writable = {
|
|
162
|
+
...type_attribute,
|
|
163
|
+
writable: true
|
|
164
|
+
};
|
|
165
|
+
|
|
158
166
|
/**
|
|
159
167
|
* @type {AttributeDefinition}
|
|
160
168
|
*/
|
|
@@ -378,6 +386,14 @@ export const port_attribute = {
|
|
|
378
386
|
description: "ip port"
|
|
379
387
|
};
|
|
380
388
|
|
|
389
|
+
/**
|
|
390
|
+
* @type {AttributeDefinition}
|
|
391
|
+
*/
|
|
392
|
+
export const port_attribute_writable = {
|
|
393
|
+
...port_attribute,
|
|
394
|
+
writable: true
|
|
395
|
+
};
|
|
396
|
+
|
|
381
397
|
/**
|
|
382
398
|
* Unique id within.
|
|
383
399
|
* @type {AttributeDefinition}
|
|
@@ -420,6 +436,11 @@ export const priority_attribute = {
|
|
|
420
436
|
default: 0
|
|
421
437
|
};
|
|
422
438
|
|
|
439
|
+
/**
|
|
440
|
+
* @type {AttributeDefinition}
|
|
441
|
+
*/
|
|
442
|
+
export { priority_attribute as priority_attribute_writable };
|
|
443
|
+
|
|
423
444
|
/**
|
|
424
445
|
* Duration in seconds.
|
|
425
446
|
* @type {AttributeDefinition}
|
|
@@ -79,6 +79,10 @@ export const description_attribute: AttributeDefinition;
|
|
|
79
79
|
* @type {AttributeDefinition}
|
|
80
80
|
*/
|
|
81
81
|
export const type_attribute: AttributeDefinition;
|
|
82
|
+
/**
|
|
83
|
+
* @type {AttributeDefinition}
|
|
84
|
+
*/
|
|
85
|
+
export const type_attribute_writable: AttributeDefinition;
|
|
82
86
|
/**
|
|
83
87
|
* @type {AttributeDefinition}
|
|
84
88
|
*/
|
|
@@ -218,6 +222,10 @@ export const hostname_attribute: AttributeDefinition;
|
|
|
218
222
|
* @type {AttributeDefinition}
|
|
219
223
|
*/
|
|
220
224
|
export const port_attribute: AttributeDefinition;
|
|
225
|
+
/**
|
|
226
|
+
* @type {AttributeDefinition}
|
|
227
|
+
*/
|
|
228
|
+
export const port_attribute_writable: AttributeDefinition;
|
|
221
229
|
/**
|
|
222
230
|
* Unique id within.
|
|
223
231
|
* @type {AttributeDefinition}
|
|
@@ -333,4 +341,4 @@ export type AttributeDefinition = {
|
|
|
333
341
|
*/
|
|
334
342
|
separator?: string | undefined;
|
|
335
343
|
};
|
|
336
|
-
export { default_attribute as string_attribute, default_attribute_writable as string_attribute_writable, description_attribute as description_attribute_writable, boolean_attribute_writable_true as active_attribute, secret_attribute as certificate_attribute, integer_attribute as count_attribute, integer_attribute_writable as count_attribute_writable, integer_attribute as size_attribute };
|
|
344
|
+
export { default_attribute as string_attribute, default_attribute_writable as string_attribute_writable, description_attribute as description_attribute_writable, boolean_attribute_writable_true as active_attribute, secret_attribute as certificate_attribute, integer_attribute as count_attribute, integer_attribute_writable as count_attribute_writable, integer_attribute as size_attribute, priority_attribute as priority_attribute_writable };
|