@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 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: Fri, 16 Jun 2023 07:32:49 GMT
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
- * Hash to set or get VU tags.
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