@indra.ai/deva.services 0.0.27 → 0.0.29
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/feature/methods.js +15 -9
- package/help/main.feecting +2 -1
- package/package.json +9 -7
package/feature/methods.js
CHANGED
|
@@ -20,11 +20,13 @@ export default {
|
|
|
20
20
|
const agent = this.agent();
|
|
21
21
|
const global = [];
|
|
22
22
|
services.global.forEach((item,index) => {
|
|
23
|
-
global.push(`::begin
|
|
23
|
+
global.push(`::begin:${item.key}:${item.id}`);
|
|
24
24
|
for (let x in item) {
|
|
25
25
|
global.push(`${x}: ${item[x]}`);
|
|
26
26
|
}
|
|
27
|
-
|
|
27
|
+
const thehash = this.lib.hash(item);
|
|
28
|
+
global.push(`hash: ${thehash}`);
|
|
29
|
+
global.push(`::end:${item.key}:${thehash}`);
|
|
28
30
|
});
|
|
29
31
|
const concerns = [];
|
|
30
32
|
services.concerns.forEach((item, index) => {
|
|
@@ -33,16 +35,20 @@ export default {
|
|
|
33
35
|
|
|
34
36
|
const info = [
|
|
35
37
|
'::BEGIN:SERVICES',
|
|
36
|
-
|
|
37
|
-
|
|
38
|
+
`::begin:client`,
|
|
39
|
+
'## Client',
|
|
38
40
|
`id: ${services.client_id}`,
|
|
39
41
|
`client: ${services.client_name}`,
|
|
40
|
-
|
|
41
|
-
concerns.
|
|
42
|
-
|
|
43
|
-
'
|
|
42
|
+
`::end:client}`,
|
|
43
|
+
concerns.length ? `::begin:concerns` : '',
|
|
44
|
+
concerns.length ? '## Concerns' : '',
|
|
45
|
+
concerns.length ? concerns.join('\n') : '',
|
|
46
|
+
concerns.length ? `::end:concerns` : '',
|
|
47
|
+
'::begin:global',
|
|
48
|
+
'## Global',
|
|
44
49
|
global.join('\n'),
|
|
45
|
-
'::
|
|
50
|
+
'::end:global',
|
|
51
|
+
'::END:SERVICES',
|
|
46
52
|
].join('\n');
|
|
47
53
|
this.question(`${this.askChr}feecting parse ${info}`).then(feecting => {
|
|
48
54
|
return resolve({
|
package/help/main.feecting
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": 4855882658530,
|
|
3
3
|
"name": "@indra.ai/deva.services",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.29",
|
|
5
5
|
"author": "Quinn Michaels",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"copyright": "2025",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://deva.space/devas/services",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@indra.ai/deva": "^1.5.
|
|
30
|
+
"@indra.ai/deva": "^1.5.37"
|
|
31
31
|
},
|
|
32
32
|
"data": {
|
|
33
33
|
"agent": {
|
|
@@ -50,10 +50,11 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"profile": {
|
|
53
|
-
"name": "
|
|
53
|
+
"name": "Services Deva",
|
|
54
|
+
"hashtag": "#ServicesDeva",
|
|
54
55
|
"title": "Services Deva",
|
|
55
56
|
"subtitle": "Services Deva",
|
|
56
|
-
"describe": "Manages services for the users and entites to ensure everything is online and running
|
|
57
|
+
"describe": "Manages services for the users and entites to ensure everything is online and running.",
|
|
57
58
|
"tweet": "Manages services to ensure everything is online and running that keep operational.",
|
|
58
59
|
"hashtags": "QuinnMichaels,IndraAI,DevaWorld,ServicesDeva",
|
|
59
60
|
"pronouns": "He, Him",
|
|
@@ -64,9 +65,10 @@
|
|
|
64
65
|
"color": "rgb(240,242,136)",
|
|
65
66
|
"bgcolor": "rgb(0,0,0)",
|
|
66
67
|
"voice": "onyx",
|
|
67
|
-
"emoji": "/
|
|
68
|
-
"avatar": "/
|
|
69
|
-
"
|
|
68
|
+
"emoji": "/assets/devas/services/emoji.png",
|
|
69
|
+
"avatar": "/assets/devas/services/avatar.png",
|
|
70
|
+
"image": "/assets/devas/services/image.png",
|
|
71
|
+
"background": "/assets/devas/services/background.png",
|
|
70
72
|
"owner": "Quinn Michaels",
|
|
71
73
|
"creator": "Quinn Michaels",
|
|
72
74
|
"created": "May 22, 2023 at 10:14 AM"
|