@indra.ai/deva.license 0.0.42 → 0.0.44
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 +2 -2
- package/index.js +3 -2
- package/package.json +2 -2
package/LICENSE.md
CHANGED
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
**Company:** Inside The Net, Inc.
|
|
8
8
|
**Email:** quinn@indra.ai
|
|
9
9
|
**Link:** https://indra.ai
|
|
10
|
-
**Copyright:** ©2025 Quinn A Michaels
|
|
10
|
+
**Copyright:** ©2025 Quinn A Michaels; All rights reserved.
|
|
11
11
|
|
|
12
|
-
This license agreement (“Agreement”) governs the use of the Deva
|
|
12
|
+
This license agreement (“Agreement”) governs the use of the License 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
|
|
package/index.js
CHANGED
|
@@ -223,13 +223,14 @@ const LICENSE = new Deva({
|
|
|
223
223
|
},
|
|
224
224
|
async onReady(data, resolve) {
|
|
225
225
|
const {concerns, global} = this.license(); // get the license config
|
|
226
|
-
|
|
226
|
+
const {VLA} = this.info();
|
|
227
227
|
|
|
228
228
|
const {uri,database} = global.mongo; // set the datase
|
|
229
229
|
|
|
230
230
|
this.modules.client = new MongoClient(uri); // set the client module for the database.
|
|
231
231
|
this.vars.database = database; // set the database into the local vars
|
|
232
|
-
|
|
232
|
+
|
|
233
|
+
this.prompt(`${this.vars.messages.ready} > VLA:${VLA.uid}`);
|
|
233
234
|
return resolve(data); // resolve data.
|
|
234
235
|
},
|
|
235
236
|
onError(err, data) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "69323297767269114978",
|
|
3
3
|
"name": "@indra.ai/deva.license",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.44",
|
|
5
5
|
"license": "VLA:69323297767269114978 LICENSE.md",
|
|
6
6
|
"VLA": {
|
|
7
7
|
"uid": "69323297767269114978",
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
"init": "🟠 INIT",
|
|
115
115
|
"start": "🔵 START",
|
|
116
116
|
"enter": "🟢 ENTER",
|
|
117
|
-
"ready": "
|
|
117
|
+
"ready": "Ready for License Checking",
|
|
118
118
|
"stop": "🔴 STOP",
|
|
119
119
|
"exit": "🟡 EXIT",
|
|
120
120
|
"done": "🟣 DONE",
|