@sentry/api 0.78.0 → 0.80.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 +40 -36
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -5895,6 +5895,7 @@ export type OrganizationGroupIndexGetResponse = Array<{
|
|
|
5895
5895
|
priorityLockedAt: string | null;
|
|
5896
5896
|
seerFixabilityScore: number | null;
|
|
5897
5897
|
seerAutofixLastTriggered: string | null;
|
|
5898
|
+
seerExplorerAutofixLastTriggered: string | null;
|
|
5898
5899
|
project: {
|
|
5899
5900
|
id: string;
|
|
5900
5901
|
name: string;
|
|
@@ -7791,6 +7792,7 @@ export type ShortIdLookupResponse = {
|
|
|
7791
7792
|
priorityLockedAt: string | null;
|
|
7792
7793
|
seerFixabilityScore: number | null;
|
|
7793
7794
|
seerAutofixLastTriggered: string | null;
|
|
7795
|
+
seerExplorerAutofixLastTriggered: string | null;
|
|
7794
7796
|
project: {
|
|
7795
7797
|
id: string;
|
|
7796
7798
|
name: string;
|
|
@@ -7852,6 +7854,16 @@ export type SizeAnalysisResponse = {
|
|
|
7852
7854
|
installSize: number | null;
|
|
7853
7855
|
analysisDuration: number | null;
|
|
7854
7856
|
analysisVersion: string | null;
|
|
7857
|
+
baseBuildId: string | null;
|
|
7858
|
+
baseAppInfo: {
|
|
7859
|
+
appId: string | null;
|
|
7860
|
+
name: string | null;
|
|
7861
|
+
version: string | null;
|
|
7862
|
+
buildNumber: number | null;
|
|
7863
|
+
artifactType: string | null;
|
|
7864
|
+
dateAdded: string | null;
|
|
7865
|
+
dateBuilt: string | null;
|
|
7866
|
+
} | null;
|
|
7855
7867
|
insights: {
|
|
7856
7868
|
[key: string]: unknown;
|
|
7857
7869
|
} | null;
|
|
@@ -7863,22 +7875,20 @@ export type SizeAnalysisResponse = {
|
|
|
7863
7875
|
downloadSize: number;
|
|
7864
7876
|
installSize: number;
|
|
7865
7877
|
}> | null;
|
|
7866
|
-
baseBuildId: string | null;
|
|
7867
|
-
baseAppInfo: {
|
|
7868
|
-
appId: string | null;
|
|
7869
|
-
name: string | null;
|
|
7870
|
-
version: string | null;
|
|
7871
|
-
buildNumber: number | null;
|
|
7872
|
-
artifactType: string | null;
|
|
7873
|
-
dateAdded: string | null;
|
|
7874
|
-
dateBuilt: string | null;
|
|
7875
|
-
} | null;
|
|
7876
7878
|
comparisons: Array<{
|
|
7877
7879
|
metricsArtifactType: string;
|
|
7878
7880
|
identifier: string | null;
|
|
7879
7881
|
state: string;
|
|
7880
7882
|
errorCode: string | null;
|
|
7881
7883
|
errorMessage: string | null;
|
|
7884
|
+
sizeMetricDiff: {
|
|
7885
|
+
metricsArtifactType: string;
|
|
7886
|
+
identifier: string | null;
|
|
7887
|
+
headInstallSize: number;
|
|
7888
|
+
headDownloadSize: number;
|
|
7889
|
+
baseInstallSize: number;
|
|
7890
|
+
baseDownloadSize: number;
|
|
7891
|
+
} | null;
|
|
7882
7892
|
diffItems: Array<{
|
|
7883
7893
|
sizeDiff: number;
|
|
7884
7894
|
headSize: number | null;
|
|
@@ -7911,14 +7921,6 @@ export type SizeAnalysisResponse = {
|
|
|
7911
7921
|
diffItems: Array<unknown> | null;
|
|
7912
7922
|
}>;
|
|
7913
7923
|
}> | null;
|
|
7914
|
-
sizeMetricDiff: {
|
|
7915
|
-
metricsArtifactType: string;
|
|
7916
|
-
identifier: string | null;
|
|
7917
|
-
headInstallSize: number;
|
|
7918
|
-
headDownloadSize: number;
|
|
7919
|
-
baseInstallSize: number;
|
|
7920
|
-
baseDownloadSize: number;
|
|
7921
|
-
} | null;
|
|
7922
7924
|
}> | null;
|
|
7923
7925
|
};
|
|
7924
7926
|
export type Source = {
|
|
@@ -14199,6 +14201,7 @@ export type ListAnOrganizationSissuesResponses = {
|
|
|
14199
14201
|
priorityLockedAt: string | null;
|
|
14200
14202
|
seerFixabilityScore: number | null;
|
|
14201
14203
|
seerAutofixLastTriggered: string | null;
|
|
14204
|
+
seerExplorerAutofixLastTriggered: string | null;
|
|
14202
14205
|
project: {
|
|
14203
14206
|
id: string;
|
|
14204
14207
|
name: string;
|
|
@@ -17588,6 +17591,16 @@ export type RetrieveSizeAnalysisResultsForAGivenArtifactResponses = {
|
|
|
17588
17591
|
installSize: number | null;
|
|
17589
17592
|
analysisDuration: number | null;
|
|
17590
17593
|
analysisVersion: string | null;
|
|
17594
|
+
baseBuildId: string | null;
|
|
17595
|
+
baseAppInfo: {
|
|
17596
|
+
appId: string | null;
|
|
17597
|
+
name: string | null;
|
|
17598
|
+
version: string | null;
|
|
17599
|
+
buildNumber: number | null;
|
|
17600
|
+
artifactType: string | null;
|
|
17601
|
+
dateAdded: string | null;
|
|
17602
|
+
dateBuilt: string | null;
|
|
17603
|
+
} | null;
|
|
17591
17604
|
insights: {
|
|
17592
17605
|
[key: string]: unknown;
|
|
17593
17606
|
} | null;
|
|
@@ -17599,22 +17612,20 @@ export type RetrieveSizeAnalysisResultsForAGivenArtifactResponses = {
|
|
|
17599
17612
|
downloadSize: number;
|
|
17600
17613
|
installSize: number;
|
|
17601
17614
|
}> | null;
|
|
17602
|
-
baseBuildId: string | null;
|
|
17603
|
-
baseAppInfo: {
|
|
17604
|
-
appId: string | null;
|
|
17605
|
-
name: string | null;
|
|
17606
|
-
version: string | null;
|
|
17607
|
-
buildNumber: number | null;
|
|
17608
|
-
artifactType: string | null;
|
|
17609
|
-
dateAdded: string | null;
|
|
17610
|
-
dateBuilt: string | null;
|
|
17611
|
-
} | null;
|
|
17612
17615
|
comparisons: Array<{
|
|
17613
17616
|
metricsArtifactType: string;
|
|
17614
17617
|
identifier: string | null;
|
|
17615
17618
|
state: string;
|
|
17616
17619
|
errorCode: string | null;
|
|
17617
17620
|
errorMessage: string | null;
|
|
17621
|
+
sizeMetricDiff: {
|
|
17622
|
+
metricsArtifactType: string;
|
|
17623
|
+
identifier: string | null;
|
|
17624
|
+
headInstallSize: number;
|
|
17625
|
+
headDownloadSize: number;
|
|
17626
|
+
baseInstallSize: number;
|
|
17627
|
+
baseDownloadSize: number;
|
|
17628
|
+
} | null;
|
|
17618
17629
|
diffItems: Array<{
|
|
17619
17630
|
sizeDiff: number;
|
|
17620
17631
|
headSize: number | null;
|
|
@@ -17647,14 +17658,6 @@ export type RetrieveSizeAnalysisResultsForAGivenArtifactResponses = {
|
|
|
17647
17658
|
diffItems: Array<unknown> | null;
|
|
17648
17659
|
}>;
|
|
17649
17660
|
}> | null;
|
|
17650
|
-
sizeMetricDiff: {
|
|
17651
|
-
metricsArtifactType: string;
|
|
17652
|
-
identifier: string | null;
|
|
17653
|
-
headInstallSize: number;
|
|
17654
|
-
headDownloadSize: number;
|
|
17655
|
-
baseInstallSize: number;
|
|
17656
|
-
baseDownloadSize: number;
|
|
17657
|
-
} | null;
|
|
17658
17661
|
}> | null;
|
|
17659
17662
|
};
|
|
17660
17663
|
};
|
|
@@ -20591,6 +20594,7 @@ export type ResolveAShortIdResponses = {
|
|
|
20591
20594
|
priorityLockedAt: string | null;
|
|
20592
20595
|
seerFixabilityScore: number | null;
|
|
20593
20596
|
seerAutofixLastTriggered: string | null;
|
|
20597
|
+
seerExplorerAutofixLastTriggered: string | null;
|
|
20594
20598
|
project: {
|
|
20595
20599
|
id: string;
|
|
20596
20600
|
name: string;
|