@sentry/api 0.28.0 → 0.29.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.
@@ -8132,8 +8132,8 @@ export type TagKeyDetailsDict = {
8132
8132
  query?: string | null;
8133
8133
  key: string;
8134
8134
  name: string;
8135
- value: string;
8136
- count: number;
8135
+ value: string | null;
8136
+ count: number | null;
8137
8137
  lastSeen: string | null;
8138
8138
  firstSeen: string | null;
8139
8139
  }> | null;
@@ -8144,8 +8144,8 @@ export type TagKeyValuesDict = Array<{
8144
8144
  query?: string | null;
8145
8145
  key: string;
8146
8146
  name: string;
8147
- value: string;
8148
- count: number;
8147
+ value: string | null;
8148
+ count: number | null;
8149
8149
  lastSeen: string | null;
8150
8150
  firstSeen: string | null;
8151
8151
  }>;
@@ -29943,8 +29943,8 @@ export type ListATagSValuesForAnIssueResponses = {
29943
29943
  query?: string | null;
29944
29944
  key: string;
29945
29945
  name: string;
29946
- value: string;
29947
- count: number;
29946
+ value: string | null;
29947
+ count: number | null;
29948
29948
  lastSeen: string | null;
29949
29949
  firstSeen: string | null;
29950
29950
  }>;
@@ -31963,8 +31963,8 @@ export type RetrieveTagDetailsResponses = {
31963
31963
  query?: string | null;
31964
31964
  key: string;
31965
31965
  name: string;
31966
- value: string;
31967
- count: number;
31966
+ value: string | null;
31967
+ count: number | null;
31968
31968
  lastSeen: string | null;
31969
31969
  firstSeen: string | null;
31970
31970
  }> | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/api",
3
- "version": "0.28.0",
3
+ "version": "0.29.0",
4
4
  "description": "Auto-generated TypeScript client for the Sentry API",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",