@alwaysmeticulous/sdk-bundles-api 2.199.1 → 2.206.0

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.
@@ -65,4 +65,19 @@ export interface MeticulousPublicRecordApi {
65
65
  * is of course only accessible by users with access to the Meticulous project.
66
66
  */
67
67
  getSessionUrl(): string;
68
+ /**
69
+ * Record the id of the logged in user (e.g. a user id from a database for the application Meticulous
70
+ * is testing). This is associated with the session and can make it easier to find sessions for a
71
+ * specific user.
72
+ */
73
+ recordUserId(userId: string): {
74
+ success: boolean;
75
+ };
76
+ /**
77
+ * Record the email address of the logged in user. This is associated with the session
78
+ * and can make it easier to find sessions for a specific user.
79
+ */
80
+ recordUserEmail(emailAddress: string): {
81
+ success: boolean;
82
+ };
68
83
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.199.1",
3
+ "version": "2.206.0",
4
4
  "description": "Meticulous common types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -19,7 +19,7 @@
19
19
  "depcheck": "depcheck --ignore-patterns=dist"
20
20
  },
21
21
  "dependencies": {
22
- "@alwaysmeticulous/api": "^2.199.1"
22
+ "@alwaysmeticulous/api": "^2.206.0"
23
23
  },
24
24
  "author": {
25
25
  "name": "The Meticulous Team",
@@ -38,5 +38,5 @@
38
38
  "bugs": {
39
39
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
40
40
  },
41
- "gitHead": "395cb04fd66dd36eb5f011ea4b6ae5fef123fd14"
41
+ "gitHead": "831a3fdf09d721002c5ef77d32c11fe471d208f3"
42
42
  }