pacc 3.9.1 → 3.10.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
|
@@ -109,6 +109,35 @@ export const token_attribute = {
|
|
|
109
109
|
writable: true
|
|
110
110
|
};
|
|
111
111
|
|
|
112
|
+
/**
|
|
113
|
+
* @type {AttributeDefinition}
|
|
114
|
+
*/
|
|
115
|
+
export const certificate_attribute = {
|
|
116
|
+
...default_attribute,
|
|
117
|
+
private: true,
|
|
118
|
+
writable: true
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* @type {AttributeDefinition}
|
|
123
|
+
*/
|
|
124
|
+
export const private_key_attribute = {
|
|
125
|
+
...default_attribute,
|
|
126
|
+
description: "private key",
|
|
127
|
+
private: true,
|
|
128
|
+
writable: true
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* @type {AttributeDefinition}
|
|
133
|
+
*/
|
|
134
|
+
export const public_key_attribute = {
|
|
135
|
+
...default_attribute,
|
|
136
|
+
description: "public key",
|
|
137
|
+
private: true,
|
|
138
|
+
writable: true
|
|
139
|
+
};
|
|
140
|
+
|
|
112
141
|
/**
|
|
113
142
|
* @type {AttributeDefinition}
|
|
114
143
|
*/
|
|
@@ -169,6 +198,17 @@ export const priority_attribute = {
|
|
|
169
198
|
writable: true
|
|
170
199
|
};
|
|
171
200
|
|
|
201
|
+
/**
|
|
202
|
+
* @type {AttributeDefinition}
|
|
203
|
+
*/
|
|
204
|
+
export const timeout_attribute = {
|
|
205
|
+
...default_attribute,
|
|
206
|
+
description: "timeout",
|
|
207
|
+
type: "number",
|
|
208
|
+
writable: true
|
|
209
|
+
};
|
|
210
|
+
|
|
211
|
+
|
|
172
212
|
/**
|
|
173
213
|
* @type {AttributeDefinition}
|
|
174
214
|
*/
|
|
@@ -60,6 +60,18 @@ export const secret_attribute: AttributeDefinition;
|
|
|
60
60
|
* @type {AttributeDefinition}
|
|
61
61
|
*/
|
|
62
62
|
export const token_attribute: AttributeDefinition;
|
|
63
|
+
/**
|
|
64
|
+
* @type {AttributeDefinition}
|
|
65
|
+
*/
|
|
66
|
+
export const certificate_attribute: AttributeDefinition;
|
|
67
|
+
/**
|
|
68
|
+
* @type {AttributeDefinition}
|
|
69
|
+
*/
|
|
70
|
+
export const private_key_attribute: AttributeDefinition;
|
|
71
|
+
/**
|
|
72
|
+
* @type {AttributeDefinition}
|
|
73
|
+
*/
|
|
74
|
+
export const public_key_attribute: AttributeDefinition;
|
|
63
75
|
/**
|
|
64
76
|
* @type {AttributeDefinition}
|
|
65
77
|
*/
|
|
@@ -93,6 +105,10 @@ export const title_attribute: AttributeDefinition;
|
|
|
93
105
|
* @type {AttributeDefinition}
|
|
94
106
|
*/
|
|
95
107
|
export const priority_attribute: AttributeDefinition;
|
|
108
|
+
/**
|
|
109
|
+
* @type {AttributeDefinition}
|
|
110
|
+
*/
|
|
111
|
+
export const timeout_attribute: AttributeDefinition;
|
|
96
112
|
/**
|
|
97
113
|
* @type {AttributeDefinition}
|
|
98
114
|
*/
|