@alwaysmeticulous/api 2.192.0 → 2.199.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.
@@ -189,10 +189,18 @@ export type CustomUserEvent = {
189
189
  data: string;
190
190
  };
191
191
  export declare enum CustomDataSingletonInternalKey {
192
- SystemThemePreferredColor = "met-system-theme-preferred-color"
192
+ SystemThemePreferredColor = "met-system-theme-preferred-color",
193
+ /**
194
+ * System timezone of the browser the session was recorded on. This is an IANA timezone string,
195
+ * as defined in https://data.iana.org/time-zones/tzdb-2021a/zone1970.tab
196
+ * For example, "America/New_York" or "Europe/Paris".
197
+ * Present on recordings since ~Feb 2025.
198
+ */
199
+ TimezoneName = "met-timezone-name"
193
200
  }
194
201
  export type CustomDataSingletonInternalValues = {
195
202
  [CustomDataSingletonInternalKey.SystemThemePreferredColor]: "light" | "dark";
203
+ [CustomDataSingletonInternalKey.TimezoneName]: string;
196
204
  };
197
205
  export type CustomData = {
198
206
  singletons: Record<string, string> & Partial<CustomDataSingletonInternalValues>;
@@ -4,5 +4,12 @@ exports.CustomDataSingletonInternalKey = void 0;
4
4
  var CustomDataSingletonInternalKey;
5
5
  (function (CustomDataSingletonInternalKey) {
6
6
  CustomDataSingletonInternalKey["SystemThemePreferredColor"] = "met-system-theme-preferred-color";
7
+ /**
8
+ * System timezone of the browser the session was recorded on. This is an IANA timezone string,
9
+ * as defined in https://data.iana.org/time-zones/tzdb-2021a/zone1970.tab
10
+ * For example, "America/New_York" or "Europe/Paris".
11
+ * Present on recordings since ~Feb 2025.
12
+ */
13
+ CustomDataSingletonInternalKey["TimezoneName"] = "met-timezone-name";
7
14
  })(CustomDataSingletonInternalKey = exports.CustomDataSingletonInternalKey || (exports.CustomDataSingletonInternalKey = {}));
8
15
  //# sourceMappingURL=session-data.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"session-data.js","sourceRoot":"","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/session-data.ts"],"names":[],"mappings":";;;AAuNA,IAAY,8BAEX;AAFD,WAAY,8BAA8B;IACxC,gGAA8D,CAAA;AAChE,CAAC,EAFW,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QAEzC"}
1
+ {"version":3,"file":"session-data.js","sourceRoot":"","sources":["../../../src/sdk-bundle-api/sdk-to-bundle/session-data.ts"],"names":[],"mappings":";;;AAuNA,IAAY,8BAUX;AAVD,WAAY,8BAA8B;IACxC,gGAA8D,CAAA;IAE9D;;;;;OAKG;IACH,oEAAkC,CAAA;AACpC,CAAC,EAVW,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QAUzC"}
@@ -114,4 +114,4 @@ export interface TestRunBitbucketPushContext {
114
114
  /** Git ref for the branch (/refs/head/<branch>) */
115
115
  ref: string;
116
116
  }
117
- export type ReasonPullRequestIsNotAvailable = "no-pull-requests-found-for-commit" | "multiple-pull-requests-for-same-commit" | "all-pull-requests-had-skip-meticulous-label" | "only-found-merged-pull-requests-for-which-commit-is-the-merge-commit";
117
+ export type ReasonPullRequestIsNotAvailable = "no-pull-requests-found-for-commit" | "multiple-pull-requests-for-same-commit" | "all-pull-requests-had-skip-meticulous-label" | "only-found-merged-pull-requests-for-which-commit-is-the-merge-commit" | "commit-is-already-on-base-branch";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/api",
3
- "version": "2.192.0",
3
+ "version": "2.199.1",
4
4
  "description": "Meticulous API types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -35,5 +35,5 @@
35
35
  "bugs": {
36
36
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
37
37
  },
38
- "gitHead": "3fa1ccc14d7803319ea1f007eea51eead1085c6d"
38
+ "gitHead": "395cb04fd66dd36eb5f011ea4b6ae5fef123fd14"
39
39
  }