@gatling.io/core 3.14.305 → 3.14.400

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gatling.io/core",
3
- "version": "3.14.305",
3
+ "version": "3.14.400",
4
4
  "license": "Apache-2.0",
5
5
  "homepage": "https://gatling.io",
6
6
  "repository": "github:gatling/gatling-js",
@@ -20,16 +20,16 @@
20
20
  "main": "target/index.js",
21
21
  "types": "target/index.d.ts",
22
22
  "dependencies": {
23
- "@gatling.io/jvm-types": "3.14.305"
23
+ "@gatling.io/jvm-types": "3.14.400"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/jest": "30.0.0",
27
- "jest": "30.0.4",
27
+ "jest": "30.1.3",
28
28
  "prettier": "3.6.2",
29
29
  "rimraf": "6.0.1",
30
- "ts-jest": "29.4.0",
30
+ "ts-jest": "29.4.1",
31
31
  "ts-node": "10.9.2",
32
- "typescript": "5.8.3"
32
+ "typescript": "5.9.2"
33
33
  },
34
34
  "scripts": {
35
35
  "clean": "rimraf target",
@@ -117,3 +117,4 @@ export declare const underlyingSessionToDuration: (f: SessionTo<Duration>) => ((
117
117
  export type XWithSessionTo<X, X2> = (x: X, session: Session) => X2;
118
118
  export declare const underlyingXWithSessionTo: <X, X2>(f: XWithSessionTo<X, X2>) => ((x: X, jvmSession: JvmSession) => X2);
119
119
  export declare const underlyingXWithSessionToSession: <X>(f: XWithSessionTo<X, Session>) => ((x: X, jvmSession: JvmSession) => JvmSession);
120
+ export declare const underlyingJvmXToXWithSessionToSession: <X, JvmX>(f: XWithSessionTo<X[], Session>, wrap: (jvmXs: JvmX[]) => X[]) => ((jvmXs: JvmX[], jvmSession: JvmSession) => JvmSession);
package/target/session.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.underlyingXWithSessionToSession = exports.underlyingXWithSessionTo = exports.underlyingSessionToDuration = exports.underlyingSessionToJava = exports.underlyingSessionTo = exports.underlyingSessionTransform = exports.wrapSession = void 0;
3
+ exports.underlyingJvmXToXWithSessionToSession = exports.underlyingXWithSessionToSession = exports.underlyingXWithSessionTo = exports.underlyingSessionToDuration = exports.underlyingSessionToJava = exports.underlyingSessionTo = exports.underlyingSessionTransform = exports.wrapSession = void 0;
4
4
  const byteArrays_1 = require("./gatlingJvm/byteArrays");
5
5
  const collections_1 = require("./gatlingJvm/collections");
6
6
  const duration_1 = require("./utils/duration");
@@ -43,3 +43,5 @@ const underlyingXWithSessionTo = (f) => (x, jvmSession) => f(x, (0, exports.wrap
43
43
  exports.underlyingXWithSessionTo = underlyingXWithSessionTo;
44
44
  const underlyingXWithSessionToSession = (f) => (x, jvmSession) => f(x, (0, exports.wrapSession)(jvmSession))._underlying;
45
45
  exports.underlyingXWithSessionToSession = underlyingXWithSessionToSession;
46
+ const underlyingJvmXToXWithSessionToSession = (f, wrap) => (jvmXs, jvmSession) => f(wrap(jvmXs), (0, exports.wrapSession)(jvmSession))._underlying;
47
+ exports.underlyingJvmXToXWithSessionToSession = underlyingJvmXToXWithSessionToSession;