@types/k6 0.44.3 → 0.45.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.
- k6/README.md +1 -1
- k6/execution.d.ts +12 -1
- k6/experimental/browser.d.ts +3360 -0
- k6/experimental/grpc.d.ts +154 -0
- k6/index.d.ts +2 -1
- k6/options.d.ts +8 -0
- k6/package.json +2 -2
- k6/experimental/browser/element_handle.d.ts +0 -213
- k6/experimental/browser/frame.d.ts +0 -370
- k6/experimental/browser/index.d.ts +0 -389
- k6/experimental/browser/js_handle.d.ts +0 -51
- k6/experimental/browser/keyboard.d.ts +0 -43
- k6/experimental/browser/locator.d.ts +0 -194
- k6/experimental/browser/mouse.d.ts +0 -43
- k6/experimental/browser/page.d.ts +0 -1524
- k6/experimental/browser/request.d.ts +0 -101
- k6/experimental/browser/response.d.ts +0 -115
- k6/experimental/browser/touchscreen.d.ts +0 -13
- k6/experimental/browser/worker.d.ts +0 -13
k6/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for k6 (https://k6.io/docs/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/k6.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Thu, 03 Aug 2023 10:32:49 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: none
|
|
14
14
|
|
k6/execution.d.ts
CHANGED
|
@@ -101,9 +101,20 @@ declare namespace execution {
|
|
|
101
101
|
idInTest: number;
|
|
102
102
|
|
|
103
103
|
/**
|
|
104
|
-
*
|
|
104
|
+
* Map to set or get VU tags.
|
|
105
|
+
* @deprecated should use `metrics.tags` instead of just `tags`
|
|
105
106
|
*/
|
|
106
107
|
tags: Record<string, number | string | boolean>;
|
|
108
|
+
metrics: {
|
|
109
|
+
/**
|
|
110
|
+
* Map to set or get VU tags.
|
|
111
|
+
*/
|
|
112
|
+
tags: Record<string, number | string | boolean>;
|
|
113
|
+
/**
|
|
114
|
+
* Map to set or get VU metadata.
|
|
115
|
+
*/
|
|
116
|
+
metadata: Record<string, number | string | boolean>;
|
|
117
|
+
}
|
|
107
118
|
};
|
|
108
119
|
}
|
|
109
120
|
|