@gatling.io/jvm-types 3.12.0 → 3.13.1
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/gatling.d.ts +6 -0
- package/index.d.ts +1 -1
- package/index.ts +7 -5
- package/package.json +2 -2
package/gatling.d.ts
CHANGED
|
@@ -71,6 +71,8 @@ declare namespace io.gatling.http.client {
|
|
|
71
71
|
getMethod(): any /*io.netty.handler.codec.http.HttpMethod*/;
|
|
72
72
|
getName(): string;
|
|
73
73
|
getNameResolver(): any /*io.gatling.http.client.resolver.InetAddressNameResolver*/;
|
|
74
|
+
getProxyProtocolSourceIpV4Address(): string;
|
|
75
|
+
getProxyProtocolSourceIpV6Address(): string;
|
|
74
76
|
getProxyServer(): any /*io.gatling.http.client.proxy.ProxyServer*/;
|
|
75
77
|
getRealm(): any /*io.gatling.http.client.realm.Realm*/;
|
|
76
78
|
getRequestTimeout(): long;
|
|
@@ -3082,6 +3084,10 @@ declare namespace io.gatling.javaapi.http {
|
|
|
3082
3084
|
perUserNameResolution(): HttpProtocolBuilder;
|
|
3083
3085
|
protocol(): any /*io.gatling.core.protocol.Protocol*/;
|
|
3084
3086
|
proxy(arg0: Proxy): HttpProtocolBuilder;
|
|
3087
|
+
proxyProtocolSourceIpV4Address(arg0: Func<io.gatling.javaapi.core.Session, string>): HttpProtocolBuilder;
|
|
3088
|
+
proxyProtocolSourceIpV4Address(arg0: string): HttpProtocolBuilder;
|
|
3089
|
+
proxyProtocolSourceIpV6Address(arg0: Func<io.gatling.javaapi.core.Session, string>): HttpProtocolBuilder;
|
|
3090
|
+
proxyProtocolSourceIpV6Address(arg0: string): HttpProtocolBuilder;
|
|
3085
3091
|
redirectNamingStrategy(
|
|
3086
3092
|
arg0: any /*io.gatling.javaapi.http.HttpProtocolBuilder$RedirectNamingStrategy*/
|
|
3087
3093
|
): HttpProtocolBuilder;
|
package/index.d.ts
CHANGED
|
@@ -979,7 +979,7 @@ interface RequestBodyStatic {
|
|
|
979
979
|
export declare const RequestBody: RequestBodyStatic;
|
|
980
980
|
interface RequestStatic {
|
|
981
981
|
readonly class: any;
|
|
982
|
-
new (arg0: string, arg1: any, arg2: any, arg3: io.netty.handler.codec.http.HttpHeaders, arg4: java.util.List<any>, arg5: io.gatling.http.client.body.RequestBody, arg6: long, arg7: boolean, arg8: any, arg9: any, arg10: any, arg11: Func<io.gatling.http.client.Request, io.gatling.http.client.Request>,
|
|
982
|
+
new (arg0: string, arg1: any, arg2: any, arg3: io.netty.handler.codec.http.HttpHeaders, arg4: java.util.List<any>, arg5: io.gatling.http.client.body.RequestBody, arg6: long, arg7: boolean, arg8: any, arg9: any, arg10: any, arg11: string, arg12: string, arg13: Func<io.gatling.http.client.Request, io.gatling.http.client.Request>, arg14: any, arg15: boolean, arg16: any, arg17: string): io.gatling.http.client.Request;
|
|
983
983
|
}
|
|
984
984
|
export declare const Request: RequestStatic;
|
|
985
985
|
interface ResponseBodyStatic {
|
package/index.ts
CHANGED
|
@@ -1951,11 +1951,13 @@ interface RequestStatic {
|
|
|
1951
1951
|
arg8: any /*io.gatling.http.client.LocalAddresses*/,
|
|
1952
1952
|
arg9: any /*io.gatling.http.client.realm.Realm*/,
|
|
1953
1953
|
arg10: any /*io.gatling.http.client.proxy.ProxyServer*/,
|
|
1954
|
-
arg11:
|
|
1955
|
-
arg12:
|
|
1956
|
-
arg13:
|
|
1957
|
-
arg14: any /*io.gatling.http.client.
|
|
1958
|
-
arg15:
|
|
1954
|
+
arg11: string,
|
|
1955
|
+
arg12: string,
|
|
1956
|
+
arg13: Func<io.gatling.http.client.Request, io.gatling.http.client.Request>,
|
|
1957
|
+
arg14: any /*io.gatling.http.client.resolver.InetAddressNameResolver*/,
|
|
1958
|
+
arg15: boolean,
|
|
1959
|
+
arg16: any /*io.gatling.http.client.Http2PriorKnowledge*/,
|
|
1960
|
+
arg17: string
|
|
1959
1961
|
): io.gatling.http.client.Request;
|
|
1960
1962
|
}
|
|
1961
1963
|
|
package/package.json
CHANGED