pacc 4.37.1 → 4.37.2
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
|
@@ -115,7 +115,7 @@ export { default_attribute as type_attribute };
|
|
|
115
115
|
/**
|
|
116
116
|
* @type {AttributeDefinition}
|
|
117
117
|
*/
|
|
118
|
-
export { default_attribute_writable as
|
|
118
|
+
export { default_attribute_writable as state_attribute_writable };
|
|
119
119
|
|
|
120
120
|
/**
|
|
121
121
|
* @type {AttributeDefinition}
|
|
@@ -312,13 +312,13 @@ export const id_attribute = {
|
|
|
312
312
|
* The body text.
|
|
313
313
|
* @type {AttributeDefinition}
|
|
314
314
|
*/
|
|
315
|
-
export { default_attribute_writable as
|
|
315
|
+
export { default_attribute_writable as body_attribute_writable };
|
|
316
316
|
|
|
317
317
|
/**
|
|
318
318
|
* The one line description.
|
|
319
319
|
* @type {AttributeDefinition}
|
|
320
320
|
*/
|
|
321
|
-
export const
|
|
321
|
+
export const title_attribute_writable = {
|
|
322
322
|
...default_attribute,
|
|
323
323
|
description: "human readable title",
|
|
324
324
|
writable: true
|
|
@@ -157,7 +157,7 @@ export const id_attribute: AttributeDefinition;
|
|
|
157
157
|
* The one line description.
|
|
158
158
|
* @type {AttributeDefinition}
|
|
159
159
|
*/
|
|
160
|
-
export const
|
|
160
|
+
export const title_attribute_writable: AttributeDefinition;
|
|
161
161
|
/**
|
|
162
162
|
* In case there are several providers able to support a given source which one sould be used ?
|
|
163
163
|
* this defines the order.
|
|
@@ -220,4 +220,4 @@ export type AttributeDefinition = {
|
|
|
220
220
|
*/
|
|
221
221
|
additionalValues?: object;
|
|
222
222
|
};
|
|
223
|
-
export { default_attribute as string_attribute, default_attribute_writable as string_attribute_writable, default_attribute as type_attribute, default_attribute_writable as
|
|
223
|
+
export { default_attribute as string_attribute, default_attribute_writable as string_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 as size_attribute, default_attribute_writable as body_attribute_writable, number_attribute as duration_attribute };
|