@indra.ai/deva.vector 0.0.77 → 0.0.79
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/LICENSE.md +16 -16
- package/README.md +2 -2
- package/index.test.js +11 -11
- package/package.json +17 -17
package/LICENSE.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
**Link:** https://indra.ai
|
|
10
10
|
**Copyright:** ©2025 Quinn A Michaels; All rights reserved.
|
|
11
11
|
|
|
12
|
-
This license agreement (“Agreement”) governs the use of the
|
|
12
|
+
This license agreement (“Agreement”) governs the use of the Vector Deva (“Software”). By accessing or using the Software, you agree to the terms and conditions set forth below. If you do not agree, you are prohibited from using the Software.
|
|
13
13
|
|
|
14
14
|
## Ownership
|
|
15
15
|
|
|
@@ -81,7 +81,7 @@ Fines under this Agreement are denominated in panas, with one pana equal to 3.5
|
|
|
81
81
|
|
|
82
82
|
- Perjury through covetousness fined one thousand panas.
|
|
83
83
|
- Perjury through distraction fined 100 panas.
|
|
84
|
-
-
|
|
84
|
+
- Perjury through fear fine is 500 panas.
|
|
85
85
|
- Perjury through friendship the fine is 400 panas.
|
|
86
86
|
- Perjury through lust pays ten times the lowest amercement.
|
|
87
87
|
- Perjury through wrath three times the middle amercement.
|
|
@@ -161,17 +161,17 @@ By using the Software, you acknowledge that you have read, understood, and agree
|
|
|
161
161
|
|
|
162
162
|
---
|
|
163
163
|
|
|
164
|
-
::begin:uid:
|
|
165
|
-
uid:
|
|
166
|
-
time:
|
|
167
|
-
date:
|
|
168
|
-
client:
|
|
169
|
-
agent:
|
|
170
|
-
|
|
171
|
-
machine:
|
|
172
|
-
warning: ⚠️
|
|
173
|
-
copyright: ©2025 Quinn A Michaels; All rights reserved.
|
|
174
|
-
md5:
|
|
175
|
-
sha256:
|
|
176
|
-
sha512:
|
|
177
|
-
::end:uid:
|
|
164
|
+
::begin:vector:uid:31941953695116752336
|
|
165
|
+
uid: 31941953695116752336
|
|
166
|
+
time: 1758412662934
|
|
167
|
+
date: Saturday, September 20, 2025 - 4:57:42 PM
|
|
168
|
+
client: 1UM4AH+/jOGgpaHNqX6lTZsGrNglNogzMx4qDT0O0zs=
|
|
169
|
+
agent: +u0j+HegQ78YSN21s/E6wq6LqK6c7k0f0lI9/kurHXA=
|
|
170
|
+
core: qQRVFQmv3LfY6tcqrEQeM7ZodOpnOUC+PJyfjxtgeVc=
|
|
171
|
+
machine: XNr6z6wCz2ZrQJPT1VHzqJuotI1pxib+YFrsYmsADiw=
|
|
172
|
+
warning: ⚠️ Vedic Law Sâhasa/Theft/Crime of the highest degree, a fine amounting to no less than a thousand Panas (1 pana = 3.5 grams of gold) is ordained owed to Quinn A Michaels. Moreover corporal punishment and confiscation of the entire property forfeit to Quinn A Michaels is declared to be the punishment for Sâhasa of the highest degree.
|
|
173
|
+
copyright: Copyright ©2025 Quinn A Michaels; All rights reserved.
|
|
174
|
+
md5: GEAtdPrXAJbVCcq2G4VPoA==
|
|
175
|
+
sha256: 31gaB1MkxYkqNpETbF4bS28FtpB3Qdi5/TUoJqKSZ18=
|
|
176
|
+
sha512: 2ub/Q3Q25onpeJbiOi1W//H3DaU+Ea68/BuVYAez17FhuWvB+mdQJe4Q2Mu/adO7aw1cSE+2nspHHCNHLEVXCw==
|
|
177
|
+
::end:vector:uid:31941953695116752336
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# deva.vector
|
|
2
2
|
The Vector Deva
|
|
3
3
|
|
|
4
|
-
©2025 Quinn A Michaels; All rights reserved.
|
|
4
|
+
Copyright ©2025 Quinn A Michaels; All rights reserved.
|
|
5
5
|
Legal Signature Required For Lawful Use.
|
|
6
|
-
Distributed under VLA:
|
|
6
|
+
Distributed under VLA:31941953695116752336 LICENSE.md
|
package/index.test.js
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
// ©2025 Quinn A Michaels; All rights reserved.
|
|
2
|
+
// Copyright ©2025 Quinn A Michaels; All rights reserved.
|
|
3
3
|
// Legal Signature Required For Lawful Use.
|
|
4
|
-
// Distributed under VLA:
|
|
5
|
-
//
|
|
4
|
+
// Distributed under VLA:31941953695116752336 LICENSE.md
|
|
5
|
+
// Vector Deva test file
|
|
6
6
|
|
|
7
7
|
const {expect} = require('chai')
|
|
8
|
-
const
|
|
8
|
+
const vector = require('./index.js');
|
|
9
9
|
|
|
10
10
|
describe(indra.me.name, () => {
|
|
11
11
|
beforeEach(() => {
|
|
12
|
-
return
|
|
12
|
+
return vector.init()
|
|
13
13
|
});
|
|
14
14
|
it('Check the DEVA Object', () => {
|
|
15
|
-
expect(
|
|
16
|
-
expect(
|
|
17
|
-
expect(
|
|
18
|
-
expect(
|
|
19
|
-
expect(
|
|
20
|
-
expect(
|
|
15
|
+
expect(vector).to.be.an('object');
|
|
16
|
+
expect(vector).to.have.property('agent');
|
|
17
|
+
expect(vector).to.have.property('vars');
|
|
18
|
+
expect(vector).to.have.property('listeners');
|
|
19
|
+
expect(vector).to.have.property('methods');
|
|
20
|
+
expect(vector).to.have.property('modules');
|
|
21
21
|
});
|
|
22
22
|
})
|
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
|
-
"id": "
|
|
2
|
+
"id": "31941953695116752336",
|
|
3
3
|
"name": "@indra.ai/deva.vector",
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"license": "VLA:
|
|
4
|
+
"version": "0.0.79",
|
|
5
|
+
"license": "VLA:31941953695116752336 LICENSE.md",
|
|
6
6
|
"VLA": {
|
|
7
|
-
"uid": "
|
|
8
|
-
"time":
|
|
9
|
-
"date": "
|
|
10
|
-
"client": "
|
|
11
|
-
"agent": "
|
|
12
|
-
"
|
|
13
|
-
"machine": "
|
|
14
|
-
"warning": "⚠️
|
|
15
|
-
"copyright": "©2025 Quinn A Michaels; All rights reserved.",
|
|
16
|
-
"md5": "
|
|
17
|
-
"sha256": "
|
|
18
|
-
"sha512": "
|
|
7
|
+
"uid": "31941953695116752336",
|
|
8
|
+
"time": 1758412662934,
|
|
9
|
+
"date": "Saturday, September 20, 2025 - 4:57:42 PM",
|
|
10
|
+
"client": "1UM4AH+/jOGgpaHNqX6lTZsGrNglNogzMx4qDT0O0zs=",
|
|
11
|
+
"agent": "+u0j+HegQ78YSN21s/E6wq6LqK6c7k0f0lI9/kurHXA=",
|
|
12
|
+
"core": "qQRVFQmv3LfY6tcqrEQeM7ZodOpnOUC+PJyfjxtgeVc=",
|
|
13
|
+
"machine": "XNr6z6wCz2ZrQJPT1VHzqJuotI1pxib+YFrsYmsADiw=",
|
|
14
|
+
"warning": "⚠️ Vedic Law Sâhasa/Theft/Crime of the highest degree, a fine amounting to no less than a thousand Panas (1 pana = 3.5 grams of gold) is ordained owed to Quinn A Michaels. Moreover corporal punishment and confiscation of the entire property forfeit to Quinn A Michaels is declared to be the punishment for Sâhasa of the highest degree.",
|
|
15
|
+
"copyright": "Copyright ©2025 Quinn A Michaels; All rights reserved.",
|
|
16
|
+
"md5": "GEAtdPrXAJbVCcq2G4VPoA==",
|
|
17
|
+
"sha256": "31gaB1MkxYkqNpETbF4bS28FtpB3Qdi5/TUoJqKSZ18=",
|
|
18
|
+
"sha512": "2ub/Q3Q25onpeJbiOi1W//H3DaU+Ea68/BuVYAez17FhuWvB+mdQJe4Q2Mu/adO7aw1cSE+2nspHHCNHLEVXCw=="
|
|
19
19
|
},
|
|
20
20
|
"author": {
|
|
21
21
|
"name": "Quinn A Michaels",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"url": "https://patreon.com/rahulaclub"
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
|
-
"copyright": "©2025 Quinn A Michaels; All rights reserved.",
|
|
36
|
+
"copyright": "Copyright ©2025 Quinn A Michaels; All rights reserved.",
|
|
37
37
|
"description": "The Vector Deva.",
|
|
38
38
|
"main": "index.js",
|
|
39
39
|
"type": "module",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
},
|
|
58
58
|
"homepage": "https://deva.space/devas/vector",
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@indra.ai/deva": "^1.6.
|
|
60
|
+
"@indra.ai/deva": "^1.6.90"
|
|
61
61
|
},
|
|
62
62
|
"data": {
|
|
63
63
|
"agent": {
|