@sentry/api 0.60.0 → 0.62.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 +39 -6
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -6612,8 +6612,19 @@ export type ProjectKeyPost = {
|
|
|
6612
6612
|
};
|
|
6613
6613
|
export type ProjectOwnership = {
|
|
6614
6614
|
schema?: {
|
|
6615
|
-
|
|
6616
|
-
|
|
6615
|
+
$version: number;
|
|
6616
|
+
rules: Array<{
|
|
6617
|
+
matcher: {
|
|
6618
|
+
type: string;
|
|
6619
|
+
pattern: string;
|
|
6620
|
+
};
|
|
6621
|
+
owners: Array<{
|
|
6622
|
+
type: string;
|
|
6623
|
+
name: string;
|
|
6624
|
+
id?: string;
|
|
6625
|
+
}>;
|
|
6626
|
+
}>;
|
|
6627
|
+
} | null;
|
|
6617
6628
|
raw: string;
|
|
6618
6629
|
fallthrough: boolean;
|
|
6619
6630
|
dateCreated: string;
|
|
@@ -25647,8 +25658,19 @@ export type RetrieveOwnershipConfigurationForAProjectData = {
|
|
|
25647
25658
|
export type RetrieveOwnershipConfigurationForAProjectResponses = {
|
|
25648
25659
|
200: {
|
|
25649
25660
|
schema?: {
|
|
25650
|
-
|
|
25651
|
-
|
|
25661
|
+
$version: number;
|
|
25662
|
+
rules: Array<{
|
|
25663
|
+
matcher: {
|
|
25664
|
+
type: string;
|
|
25665
|
+
pattern: string;
|
|
25666
|
+
};
|
|
25667
|
+
owners: Array<{
|
|
25668
|
+
type: string;
|
|
25669
|
+
name: string;
|
|
25670
|
+
id?: string;
|
|
25671
|
+
}>;
|
|
25672
|
+
}>;
|
|
25673
|
+
} | null;
|
|
25652
25674
|
raw: string;
|
|
25653
25675
|
fallthrough: boolean;
|
|
25654
25676
|
dateCreated: string;
|
|
@@ -25703,8 +25725,19 @@ export type UpdateOwnershipConfigurationForAProjectErrors = {
|
|
|
25703
25725
|
export type UpdateOwnershipConfigurationForAProjectResponses = {
|
|
25704
25726
|
202: {
|
|
25705
25727
|
schema?: {
|
|
25706
|
-
|
|
25707
|
-
|
|
25728
|
+
$version: number;
|
|
25729
|
+
rules: Array<{
|
|
25730
|
+
matcher: {
|
|
25731
|
+
type: string;
|
|
25732
|
+
pattern: string;
|
|
25733
|
+
};
|
|
25734
|
+
owners: Array<{
|
|
25735
|
+
type: string;
|
|
25736
|
+
name: string;
|
|
25737
|
+
id?: string;
|
|
25738
|
+
}>;
|
|
25739
|
+
}>;
|
|
25740
|
+
} | null;
|
|
25708
25741
|
raw: string;
|
|
25709
25742
|
fallthrough: boolean;
|
|
25710
25743
|
dateCreated: string;
|