@sentry/api 0.62.0 → 0.64.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 +6 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2024,7 +2024,9 @@ export type DetailedOrganizationSerializerWithProjectsAndTeams = {
|
|
|
2024
2024
|
samplingMode?: string;
|
|
2025
2025
|
planSampleRate?: number;
|
|
2026
2026
|
desiredSampleRate?: number;
|
|
2027
|
-
experiments:
|
|
2027
|
+
experiments: {
|
|
2028
|
+
[key: string]: string;
|
|
2029
|
+
};
|
|
2028
2030
|
isDefault: boolean;
|
|
2029
2031
|
defaultRole: string;
|
|
2030
2032
|
orgRoleList: Array<{
|
|
@@ -9770,7 +9772,9 @@ export type UpdateAnOrganizationResponses = {
|
|
|
9770
9772
|
samplingMode?: string;
|
|
9771
9773
|
planSampleRate?: number;
|
|
9772
9774
|
desiredSampleRate?: number;
|
|
9773
|
-
experiments:
|
|
9775
|
+
experiments: {
|
|
9776
|
+
[key: string]: string;
|
|
9777
|
+
};
|
|
9774
9778
|
isDefault: boolean;
|
|
9775
9779
|
defaultRole: string;
|
|
9776
9780
|
orgRoleList: Array<{
|