pacc 9.4.0 → 9.4.1
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
|
@@ -224,7 +224,7 @@ export const yesno_attribute_writable = {
|
|
|
224
224
|
/**
|
|
225
225
|
* @type {AttributeDefinition}
|
|
226
226
|
*/
|
|
227
|
-
export { boolean_attribute
|
|
227
|
+
export const empty_attribute = { ...boolean_attribute, name: "empty" };
|
|
228
228
|
|
|
229
229
|
/**
|
|
230
230
|
* @type {AttributeDefinition}
|
|
@@ -265,7 +265,7 @@ export const password_attribute = { ...secret_attribute, name: "password" };
|
|
|
265
265
|
/**
|
|
266
266
|
* @type {AttributeDefinition}
|
|
267
267
|
*/
|
|
268
|
-
export { secret_attribute
|
|
268
|
+
export const token_attribute = { ...secret_attribute, name: "token" };
|
|
269
269
|
|
|
270
270
|
/**
|
|
271
271
|
* @type {AttributeDefinition}
|
|
@@ -277,6 +277,7 @@ export { secret_attribute as certificate_attribute };
|
|
|
277
277
|
*/
|
|
278
278
|
export const private_key_attribute = {
|
|
279
279
|
...secret_attribute_writable,
|
|
280
|
+
name: "private_key",
|
|
280
281
|
description: "private key"
|
|
281
282
|
};
|
|
282
283
|
|
|
@@ -285,6 +286,7 @@ export const private_key_attribute = {
|
|
|
285
286
|
*/
|
|
286
287
|
export const public_key_attribute = {
|
|
287
288
|
...secret_attribute_writable,
|
|
289
|
+
name: "public_key",
|
|
288
290
|
description: "public key"
|
|
289
291
|
};
|
|
290
292
|
|
|
@@ -331,7 +333,8 @@ export { integer_attribute as size_attribute };
|
|
|
331
333
|
|
|
332
334
|
export const bytes_size_attribute = {
|
|
333
335
|
...default_attribute,
|
|
334
|
-
type: types.byte_size
|
|
336
|
+
type: types.byte_size,
|
|
337
|
+
name: "bytes"
|
|
335
338
|
};
|
|
336
339
|
|
|
337
340
|
/**
|
|
@@ -134,6 +134,10 @@ export namespace yesno_attribute_writable {
|
|
|
134
134
|
export let additionalValues: object | undefined;
|
|
135
135
|
export let separator: string | undefined;
|
|
136
136
|
}
|
|
137
|
+
/**
|
|
138
|
+
* @type {AttributeDefinition}
|
|
139
|
+
*/
|
|
140
|
+
export const empty_attribute: AttributeDefinition;
|
|
137
141
|
/**
|
|
138
142
|
* @type {AttributeDefinition}
|
|
139
143
|
*/
|
|
@@ -154,6 +158,10 @@ export const username_attribute: AttributeDefinition;
|
|
|
154
158
|
* @type {AttributeDefinition}
|
|
155
159
|
*/
|
|
156
160
|
export const password_attribute: AttributeDefinition;
|
|
161
|
+
/**
|
|
162
|
+
* @type {AttributeDefinition}
|
|
163
|
+
*/
|
|
164
|
+
export const token_attribute: AttributeDefinition;
|
|
157
165
|
/**
|
|
158
166
|
* @type {AttributeDefinition}
|
|
159
167
|
*/
|
|
@@ -185,6 +193,8 @@ export namespace bytes_size_attribute {
|
|
|
185
193
|
toInternal: typeof import("./bytes.mjs").parseBytes;
|
|
186
194
|
};
|
|
187
195
|
export { type_1 as type };
|
|
196
|
+
let name_1: string;
|
|
197
|
+
export { name_1 as name };
|
|
188
198
|
let writable_1: boolean;
|
|
189
199
|
export { writable_1 as writable };
|
|
190
200
|
}
|
|
@@ -323,4 +333,4 @@ export type AttributeDefinition = {
|
|
|
323
333
|
*/
|
|
324
334
|
separator?: string | undefined;
|
|
325
335
|
};
|
|
326
|
-
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,
|
|
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 };
|