@indra.ai/deva.license 0.0.9 → 0.0.11
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 +8 -8
- package/README.md +10 -0
- package/feature/methods.js +1 -1
- package/help/corpus.feecting +2 -1
- package/help/main.feecting +2 -1
- package/index.js +5 -4
- package/index.test.js +4 -2
- package/package.json +7 -7
package/LICENSE.md
CHANGED
|
@@ -161,11 +161,11 @@ By using the Software, you acknowledge that you have read, understood, and agree
|
|
|
161
161
|
|
|
162
162
|
---
|
|
163
163
|
|
|
164
|
-
::begin:uid:license:
|
|
165
|
-
uid:
|
|
166
|
-
time:
|
|
167
|
-
date:
|
|
168
|
-
md5:
|
|
169
|
-
sha256:
|
|
170
|
-
sha512: +
|
|
171
|
-
::end:uid:license:
|
|
164
|
+
::begin:uid:license:70667481520707725226
|
|
165
|
+
uid: 70667481520707725226
|
|
166
|
+
time: 1757418653346
|
|
167
|
+
date: Tuesday, September 9, 2025 - 4:50:53 AM
|
|
168
|
+
md5: Mg8fAia1e9qunPuRRR2s3Q==
|
|
169
|
+
sha256: u0nz/iXca9WNucqgVTrHoBP3/cIrcLbH8gKw1KPPkbo=
|
|
170
|
+
sha512: cp1X8h5Xf8kKJT9RC/oWGwQ1ctA5x/+2AlKehNL8xAYZvLv4VGVsIqIEmBuqQ9caoUkMLy6PNeG3XvFr5pUK+g==
|
|
171
|
+
::end:uid:license:70667481520707725226
|
package/README.md
CHANGED
|
@@ -1,2 +1,12 @@
|
|
|
1
1
|
# deva.license
|
|
2
2
|
The License Deva
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
::begin:uid:license:70667481520707725226
|
|
6
|
+
uid: 70667481520707725226
|
|
7
|
+
time: 1757418653346
|
|
8
|
+
date: Tuesday, September 9, 2025 - 4:50:53 AM
|
|
9
|
+
md5: Mg8fAia1e9qunPuRRR2s3Q==
|
|
10
|
+
sha256: u0nz/iXca9WNucqgVTrHoBP3/cIrcLbH8gKw1KPPkbo=
|
|
11
|
+
sha512: cp1X8h5Xf8kKJT9RC/oWGwQ1ctA5x/+2AlKehNL8xAYZvLv4VGVsIqIEmBuqQ9caoUkMLy6PNeG3XvFr5pUK+g==
|
|
12
|
+
::end:uid:license:70667481520707725226
|
package/feature/methods.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// ©2025 Quinn A Michaels; All rights reserved.
|
|
3
3
|
// Legal Signature Required For Lawful Use.
|
|
4
|
-
// Distributed under VLA:
|
|
4
|
+
// Distributed under VLA:70667481520707725226 LICENSE.md
|
|
5
5
|
|
|
6
6
|
export default {
|
|
7
7
|
async license(packet) {
|
package/help/corpus.feecting
CHANGED
package/help/main.feecting
CHANGED
package/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// ©2025 Quinn A Michaels; All rights reserved.
|
|
3
3
|
// Legal Signature Required For Lawful Use.
|
|
4
|
-
// Distributed under VLA:
|
|
4
|
+
// Distributed under VLA:70667481520707725226 LICENSE.md
|
|
5
5
|
|
|
6
6
|
// License Deva is responsible for the Vedic Tradition Laws.
|
|
7
7
|
import Deva from '@indra.ai/deva';
|
|
@@ -215,13 +215,14 @@ const LICENSE = new Deva({
|
|
|
215
215
|
},
|
|
216
216
|
},
|
|
217
217
|
async onInit(data, resolve) {
|
|
218
|
-
|
|
218
|
+
// check license
|
|
219
|
+
const {personal} = this.license(); // get the license config
|
|
219
220
|
this.vars.license = await this.methods.license_check(personal, pkg.VLA);
|
|
220
221
|
if (this.vars.license) {
|
|
221
|
-
return this.start(data, resolve);
|
|
222
|
+
return this.start(data, resolve); // start load if license valid
|
|
222
223
|
}
|
|
223
224
|
else {
|
|
224
|
-
return this.stop(data, resolve);
|
|
225
|
+
return this.stop(data, resolve); // stop load if license is invalid.
|
|
225
226
|
}
|
|
226
227
|
},
|
|
227
228
|
async onReady(data, resolve) {
|
package/index.test.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
//
|
|
1
|
+
"use strict";
|
|
2
|
+
// ©2025 Quinn A Michaels; All rights reserved.
|
|
3
|
+
// Legal Signature Required For Lawful Use.
|
|
4
|
+
// Distributed under VLA:70667481520707725226 LICENSE.md
|
|
3
5
|
|
|
4
6
|
const {expect} = require('chai')
|
|
5
7
|
const LegalDeva = require('./index.js');
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "41840925813499570000",
|
|
3
3
|
"name": "@indra.ai/deva.license",
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"license": "VLA:
|
|
4
|
+
"version": "0.0.11",
|
|
5
|
+
"license": "VLA:70667481520707725226 LICENSE.md",
|
|
6
6
|
"VLA": {
|
|
7
|
-
"uid":
|
|
7
|
+
"uid": 70667481520707720000,
|
|
8
8
|
"time": 1757363101337,
|
|
9
|
-
"date": "
|
|
10
|
-
"md5": "
|
|
11
|
-
"sha256": "
|
|
12
|
-
"sha512": "+
|
|
9
|
+
"date": "Tuesday, September 9, 2025 - 4:50:53 AM",
|
|
10
|
+
"md5": "Mg8fAia1e9qunPuRRR2s3Q==",
|
|
11
|
+
"sha256": "u0nz/iXca9WNucqgVTrHoBP3/cIrcLbH8gKw1KPPkbo=",
|
|
12
|
+
"sha512": "cp1X8h5Xf8kKJT9RC/oWGwQ1ctA5x/+2AlKehNL8xAYZvLv4VGVsIqIEmBuqQ9caoUkMLy6PNeG3XvFr5pUK+g=="
|
|
13
13
|
},
|
|
14
14
|
"author": {
|
|
15
15
|
"name": "Quinn A Michaels",
|