@sentry/api 0.61.0 → 0.63.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.
@@ -2024,7 +2024,9 @@ export type DetailedOrganizationSerializerWithProjectsAndTeams = {
2024
2024
  samplingMode?: string;
2025
2025
  planSampleRate?: number;
2026
2026
  desiredSampleRate?: number;
2027
- experiments: unknown;
2027
+ experiments: {
2028
+ [key: string]: string;
2029
+ };
2028
2030
  isDefault: boolean;
2029
2031
  defaultRole: string;
2030
2032
  orgRoleList: Array<{
@@ -6612,8 +6614,19 @@ export type ProjectKeyPost = {
6612
6614
  };
6613
6615
  export type ProjectOwnership = {
6614
6616
  schema?: {
6615
- [key: string]: unknown;
6616
- };
6617
+ $version: number;
6618
+ rules: Array<{
6619
+ matcher: {
6620
+ type: string;
6621
+ pattern: string;
6622
+ };
6623
+ owners: Array<{
6624
+ type: string;
6625
+ name: string;
6626
+ id?: string;
6627
+ }>;
6628
+ }>;
6629
+ } | null;
6617
6630
  raw: string;
6618
6631
  fallthrough: boolean;
6619
6632
  dateCreated: string;
@@ -9759,7 +9772,9 @@ export type UpdateAnOrganizationResponses = {
9759
9772
  samplingMode?: string;
9760
9773
  planSampleRate?: number;
9761
9774
  desiredSampleRate?: number;
9762
- experiments: unknown;
9775
+ experiments: {
9776
+ [key: string]: string;
9777
+ };
9763
9778
  isDefault: boolean;
9764
9779
  defaultRole: string;
9765
9780
  orgRoleList: Array<{
@@ -25647,8 +25662,19 @@ export type RetrieveOwnershipConfigurationForAProjectData = {
25647
25662
  export type RetrieveOwnershipConfigurationForAProjectResponses = {
25648
25663
  200: {
25649
25664
  schema?: {
25650
- [key: string]: unknown;
25651
- };
25665
+ $version: number;
25666
+ rules: Array<{
25667
+ matcher: {
25668
+ type: string;
25669
+ pattern: string;
25670
+ };
25671
+ owners: Array<{
25672
+ type: string;
25673
+ name: string;
25674
+ id?: string;
25675
+ }>;
25676
+ }>;
25677
+ } | null;
25652
25678
  raw: string;
25653
25679
  fallthrough: boolean;
25654
25680
  dateCreated: string;
@@ -25703,8 +25729,19 @@ export type UpdateOwnershipConfigurationForAProjectErrors = {
25703
25729
  export type UpdateOwnershipConfigurationForAProjectResponses = {
25704
25730
  202: {
25705
25731
  schema?: {
25706
- [key: string]: unknown;
25707
- };
25732
+ $version: number;
25733
+ rules: Array<{
25734
+ matcher: {
25735
+ type: string;
25736
+ pattern: string;
25737
+ };
25738
+ owners: Array<{
25739
+ type: string;
25740
+ name: string;
25741
+ id?: string;
25742
+ }>;
25743
+ }>;
25744
+ } | null;
25708
25745
  raw: string;
25709
25746
  fallthrough: boolean;
25710
25747
  dateCreated: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/api",
3
- "version": "0.61.0",
3
+ "version": "0.63.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",