@kogeet/sagent-plugin-dataset 0.1.2 → 0.1.4

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.
@@ -1,4 +1,4 @@
1
- import StepContext from "@kogeet/scapin-core-agent/bin/core/step.context.js";
1
+ import { StepContext } from "@kogeet/scapin-core-agent";
2
2
  export default class DatasetLib {
3
3
  static entryPoints: Map<string, typeof DatasetLib.addRow>;
4
4
  static addRow(stepCtx: StepContext): Promise<boolean>;
@@ -7,3 +7,4 @@ export default class DatasetLib {
7
7
  static getData(stepCtx: StepContext): Promise<boolean>;
8
8
  static updateData(stepCtx: StepContext): Promise<boolean>;
9
9
  }
10
+ //# sourceMappingURL=DatasetLib.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DatasetLib.d.ts","sourceRoot":"","sources":["../src/DatasetLib.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,WAAW,EAAY,MAAM,2BAA2B,CAAC;AA6ClF,MAAM,CAAC,OAAO,OAAO,UAAU;IAE7B,OAAc,WAAW,wCAMvB;WAEkB,MAAM,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC;WAoB9C,SAAS,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC;WAgBjD,SAAS,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC;WAsBjD,OAAO,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC;WAwB/C,UAAU,CAAC,OAAO,EAAE,WAAW,GAAG,OAAO,CAAC,OAAO,CAAC;CAyBvE"}
package/bin/DatasetLib.js CHANGED
@@ -1,5 +1,4 @@
1
- import { context, report } from "@kogeet/scapin-core-agent";
2
- import wSocketIo from "@kogeet/scapin-core-agent/bin/core/wsocket.io.js";
1
+ import { context, report, StepContext, wSocketIo } from "@kogeet/scapin-core-agent";
3
2
  const emptyData = {
4
3
  data0: null,
5
4
  data1: null,
package/bin/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  import DatasetLib from "./DatasetLib.js";
2
2
  declare const DatasetEntryPoints: Map<string, typeof DatasetLib.addRow>;
3
3
  export default DatasetEntryPoints;
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,iBAAiB,CAAC;AACzC,QAAA,MAAM,kBAAkB,uCAAyB,CAAA;AACjD,eAAe,kBAAkB,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kogeet/sagent-plugin-dataset",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Scapin Agent Dataset Plugin ",
5
5
  "main": "bin/index.js",
6
6
  "publishConfig": {
@@ -16,14 +16,15 @@
16
16
  "author": "Loïc Griveau",
17
17
  "license": "MIT",
18
18
  "devDependencies": {
19
- "@types/selenium-webdriver": "^4.1.18",
20
- "@typescript-eslint/eslint-plugin": "^6.8.0",
21
- "@typescript-eslint/parser": "^6.8.0",
22
- "eslint": "^8.51.0",
23
- "typescript": "^5.2.2"
19
+ "@types/node": "^25.3.3",
20
+ "@types/selenium-webdriver": "^4.35.5",
21
+ "@typescript-eslint/eslint-plugin": "^8.56.1",
22
+ "@typescript-eslint/parser": "^8.56.1",
23
+ "eslint": "^9.39.3",
24
+ "typescript": "^5.9.3"
24
25
  },
25
26
  "type": "module",
26
27
  "dependencies": {
27
- "@kogeet/scapin-core-agent": "^0.1.6"
28
+ "@kogeet/scapin-core-agent": "^0.1.8"
28
29
  }
29
30
  }