kv-test-lib 1.0.2 → 1.0.21

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.
Files changed (2) hide show
  1. package/dist/kochava.js +3 -1
  2. package/package.json +5 -5
package/dist/kochava.js CHANGED
@@ -316,7 +316,7 @@ export class Kochava {
316
316
  this.instance.disableAutoPage = this.instance.disableAutoPage || false;
317
317
  this.instance.useCookies = this.instance.useCookies || false;
318
318
  this.instance.version = "Web 3.0.0";
319
- this.instance.buildDate = "kbd: 3/29/2022, 9:27:29 AM";
319
+ this.instance.buildDate = "kbd: 3/31/2022, 9:30:57 AM";
320
320
  this.instance.kochavaSession = utils.uuidv4().substring(0, 5);
321
321
  this.instance.startTimeMS = utils.getCurrTimeMS();
322
322
  this.instance.retryWaterfall = [7, 30, 300, 1800];
@@ -434,3 +434,5 @@ export class Kochava {
434
434
  }
435
435
  }
436
436
  window.kochava = new Kochava();
437
+
438
+ window.kochava.executeAdvancedInstruction('wrapper', JSON.stringify({name: 'Node', version: '3.0.0'}));
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "kv-test-lib",
4
- "version": "1.0.2",
5
- "description": "",
4
+ "version": "1.0.21",
6
5
  "main": "dist/kochava.js",
7
6
  "files": [
8
- "dist"
7
+ "dist/"
9
8
  ],
9
+ "description": "",
10
10
  "scripts": {
11
- "build": "tsc -p ../../src/tsconfig.node.json",
12
- "test": "tsc -p ."
11
+ "build": "tsc -p ../../src/tsconfig.node.json && node wrapper.js",
12
+ "test": "tsc -p . && node wrapper.js"
13
13
  },
14
14
  "devDependencies": {
15
15
  "playwright": "^1.16.3",