@sentry/api 0.28.0 → 0.30.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.
- package/dist/types.gen.d.ts +10 -12
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -6591,11 +6591,10 @@ export type ProjectKeyPost = {
|
|
|
6591
6591
|
/**
|
|
6592
6592
|
* * `user`
|
|
6593
6593
|
* * `profiling`
|
|
6594
|
-
* * `escalating_issues`
|
|
6595
6594
|
* * `tempest`
|
|
6596
6595
|
* * `demo`
|
|
6597
6596
|
*/
|
|
6598
|
-
useCase?: 'user' | 'profiling' | '
|
|
6597
|
+
useCase?: 'user' | 'profiling' | 'tempest' | 'demo';
|
|
6599
6598
|
};
|
|
6600
6599
|
export type ProjectOwnership = {
|
|
6601
6600
|
schema?: {
|
|
@@ -8132,8 +8131,8 @@ export type TagKeyDetailsDict = {
|
|
|
8132
8131
|
query?: string | null;
|
|
8133
8132
|
key: string;
|
|
8134
8133
|
name: string;
|
|
8135
|
-
value: string;
|
|
8136
|
-
count: number;
|
|
8134
|
+
value: string | null;
|
|
8135
|
+
count: number | null;
|
|
8137
8136
|
lastSeen: string | null;
|
|
8138
8137
|
firstSeen: string | null;
|
|
8139
8138
|
}> | null;
|
|
@@ -8144,8 +8143,8 @@ export type TagKeyValuesDict = Array<{
|
|
|
8144
8143
|
query?: string | null;
|
|
8145
8144
|
key: string;
|
|
8146
8145
|
name: string;
|
|
8147
|
-
value: string;
|
|
8148
|
-
count: number;
|
|
8146
|
+
value: string | null;
|
|
8147
|
+
count: number | null;
|
|
8149
8148
|
lastSeen: string | null;
|
|
8150
8149
|
firstSeen: string | null;
|
|
8151
8150
|
}>;
|
|
@@ -24100,11 +24099,10 @@ export type CreateANewClientKeyData = {
|
|
|
24100
24099
|
/**
|
|
24101
24100
|
* * `user`
|
|
24102
24101
|
* * `profiling`
|
|
24103
|
-
* * `escalating_issues`
|
|
24104
24102
|
* * `tempest`
|
|
24105
24103
|
* * `demo`
|
|
24106
24104
|
*/
|
|
24107
|
-
useCase?: 'user' | 'profiling' | '
|
|
24105
|
+
useCase?: 'user' | 'profiling' | 'tempest' | 'demo';
|
|
24108
24106
|
};
|
|
24109
24107
|
path: {
|
|
24110
24108
|
/**
|
|
@@ -29943,8 +29941,8 @@ export type ListATagSValuesForAnIssueResponses = {
|
|
|
29943
29941
|
query?: string | null;
|
|
29944
29942
|
key: string;
|
|
29945
29943
|
name: string;
|
|
29946
|
-
value: string;
|
|
29947
|
-
count: number;
|
|
29944
|
+
value: string | null;
|
|
29945
|
+
count: number | null;
|
|
29948
29946
|
lastSeen: string | null;
|
|
29949
29947
|
firstSeen: string | null;
|
|
29950
29948
|
}>;
|
|
@@ -31963,8 +31961,8 @@ export type RetrieveTagDetailsResponses = {
|
|
|
31963
31961
|
query?: string | null;
|
|
31964
31962
|
key: string;
|
|
31965
31963
|
name: string;
|
|
31966
|
-
value: string;
|
|
31967
|
-
count: number;
|
|
31964
|
+
value: string | null;
|
|
31965
|
+
count: number | null;
|
|
31968
31966
|
lastSeen: string | null;
|
|
31969
31967
|
firstSeen: string | null;
|
|
31970
31968
|
}> | null;
|