@indra.ai/deva 1.6.23 → 1.6.25
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/lib/index.js +2 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -114,6 +114,7 @@ class LIB {
|
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
sign(packet, concerns) {
|
|
117
|
+
const time = Date.now();
|
|
117
118
|
const {q, id} = packet;
|
|
118
119
|
|
|
119
120
|
const {meta, agent, client, text} = q;
|
|
@@ -143,7 +144,7 @@ class LIB {
|
|
|
143
144
|
expires,
|
|
144
145
|
container,
|
|
145
146
|
write,
|
|
146
|
-
|
|
147
|
+
text,
|
|
147
148
|
caseid: client.profile.caseid || false,
|
|
148
149
|
opts: opts.length? `.${opts.join('.')}` : '',
|
|
149
150
|
name: client.profile.name,
|