@indra.ai/deva 1.6.24 → 1.6.26
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 -2
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -144,7 +144,7 @@ class LIB {
|
|
|
144
144
|
expires,
|
|
145
145
|
container,
|
|
146
146
|
write,
|
|
147
|
-
|
|
147
|
+
text,
|
|
148
148
|
caseid: client.profile.caseid || false,
|
|
149
149
|
opts: opts.length? `.${opts.join('.')}` : '',
|
|
150
150
|
name: client.profile.name,
|
|
@@ -162,7 +162,7 @@ class LIB {
|
|
|
162
162
|
params,
|
|
163
163
|
command,
|
|
164
164
|
created,
|
|
165
|
-
copyright: client.copyright || agent.copyright,
|
|
165
|
+
copyright: client.profile.copyright || agent.profile.copyright,
|
|
166
166
|
};
|
|
167
167
|
data.md5 = this.hash(data, 'md5'); // hash data packet into md5 and inert into data.
|
|
168
168
|
data.sha256 = this.hash(data, 'sha256'); // hash data into sha 256 then set in data.
|