@gatling.io/core 3.14.703 → 3.14.900
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 +3 -3
- package/target/session.d.ts +2 -0
- package/target/session.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gatling.io/core",
|
|
3
|
-
"version": "3.14.
|
|
3
|
+
"version": "3.14.900",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"homepage": "https://gatling.io",
|
|
6
6
|
"repository": "github:gatling/gatling-js",
|
|
@@ -20,13 +20,13 @@
|
|
|
20
20
|
"main": "target/index.js",
|
|
21
21
|
"types": "target/index.d.ts",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@gatling.io/jvm-types": "3.14.
|
|
23
|
+
"@gatling.io/jvm-types": "3.14.900"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/jest": "30.0.0",
|
|
27
27
|
"jest": "30.2.0",
|
|
28
28
|
"prettier": "3.6.2",
|
|
29
|
-
"rimraf": "6.0
|
|
29
|
+
"rimraf": "6.1.0",
|
|
30
30
|
"ts-jest": "29.4.5",
|
|
31
31
|
"ts-node": "10.9.2",
|
|
32
32
|
"typescript": "5.9.3"
|
package/target/session.d.ts
CHANGED
|
@@ -121,3 +121,5 @@ export type XWithSessionTo<X, X2> = (x: X, session: Session) => X2;
|
|
|
121
121
|
export declare const underlyingXWithSessionTo: <X, X2>(f: XWithSessionTo<X, X2>) => ((x: X, jvmSession: JvmSession) => X2);
|
|
122
122
|
export declare const underlyingXWithSessionToSession: <X>(f: XWithSessionTo<X, Session>) => ((x: X, jvmSession: JvmSession) => JvmSession);
|
|
123
123
|
export declare const underlyingJvmXToXWithSessionToSession: <X, JvmX>(f: XWithSessionTo<X[], Session>, wrap: (jvmXs: JvmX[]) => X[]) => ((jvmXs: JvmX[], jvmSession: JvmSession) => JvmSession);
|
|
124
|
+
export type XWithBiSessionTo<X, X2> = (x: X, main: Session, forked: Session) => X2;
|
|
125
|
+
export declare const underlyingJvmXToXWithBiSessionToSession: <X, JvmX>(f: XWithBiSessionTo<X[], Session>, wrap: (jvmXs: JvmX[]) => X[]) => ((jvmXs: JvmX[], jvmMain: JvmSession, jvmForked: 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.underlyingJvmXToXWithSessionToSession = exports.underlyingXWithSessionToSession = exports.underlyingXWithSessionTo = exports.underlyingSessionToDuration = exports.underlyingSessionToJava = exports.isSessionTo = exports.underlyingSessionTo = exports.underlyingBiSessionTransform = exports.underlyingSessionTransform = exports.wrapSession = void 0;
|
|
3
|
+
exports.underlyingJvmXToXWithBiSessionToSession = exports.underlyingJvmXToXWithSessionToSession = exports.underlyingXWithSessionToSession = exports.underlyingXWithSessionTo = exports.underlyingSessionToDuration = exports.underlyingSessionToJava = exports.isSessionTo = exports.underlyingSessionTo = exports.underlyingBiSessionTransform = 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");
|
|
@@ -51,3 +51,5 @@ const underlyingXWithSessionToSession = (f) => (x, jvmSession) => f(x, (0, expor
|
|
|
51
51
|
exports.underlyingXWithSessionToSession = underlyingXWithSessionToSession;
|
|
52
52
|
const underlyingJvmXToXWithSessionToSession = (f, wrap) => (jvmXs, jvmSession) => f(wrap(jvmXs), (0, exports.wrapSession)(jvmSession))._underlying;
|
|
53
53
|
exports.underlyingJvmXToXWithSessionToSession = underlyingJvmXToXWithSessionToSession;
|
|
54
|
+
const underlyingJvmXToXWithBiSessionToSession = (f, wrap) => (jvmXs, jvmMain, jvmForked) => f(wrap(jvmXs), (0, exports.wrapSession)(jvmMain), (0, exports.wrapSession)(jvmForked))._underlying;
|
|
55
|
+
exports.underlyingJvmXToXWithBiSessionToSession = underlyingJvmXToXWithBiSessionToSession;
|