vtb-appit 0.1.8 → 0.1.10
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/appit-base-transformer.js +5 -3
- package/appit.js +868 -224
- package/package.json +7 -2
- package/tracing.js +26 -0
|
@@ -23,6 +23,11 @@ class AppitBaseTransformer {
|
|
|
23
23
|
return false;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
+
explores()
|
|
27
|
+
{
|
|
28
|
+
return false;
|
|
29
|
+
}
|
|
30
|
+
|
|
26
31
|
menu()
|
|
27
32
|
{
|
|
28
33
|
return false;
|
|
@@ -248,7 +253,6 @@ class AppitBaseTransformer {
|
|
|
248
253
|
|
|
249
254
|
r.on('end', () => {
|
|
250
255
|
let res = JSON.parse(data);
|
|
251
|
-
console.log('RES', res);
|
|
252
256
|
resolve(res);
|
|
253
257
|
});
|
|
254
258
|
});
|
|
@@ -283,7 +287,6 @@ class AppitBaseTransformer {
|
|
|
283
287
|
|
|
284
288
|
r.on('end', () => {
|
|
285
289
|
let res = JSON.parse(data);
|
|
286
|
-
console.log('RES', res);
|
|
287
290
|
resolve(res);
|
|
288
291
|
});
|
|
289
292
|
});
|
|
@@ -323,7 +326,6 @@ class AppitBaseTransformer {
|
|
|
323
326
|
});
|
|
324
327
|
|
|
325
328
|
res.on('end', () => {
|
|
326
|
-
console.log('JWT', JSON.parse(data).data.tsJWT.jwt);
|
|
327
329
|
resolve(JSON.parse(data).data.tsJWT.jwt);
|
|
328
330
|
});
|
|
329
331
|
});
|