@sentry/api 0.215.0 → 0.216.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 +4 -2
- package/dist/zod.gen.d.ts +8 -8
- package/dist/zod.js +2 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2526,10 +2526,11 @@ export type ExplorerAutofixRequest = {
|
|
|
2526
2526
|
* * `root_cause`
|
|
2527
2527
|
* * `solution`
|
|
2528
2528
|
* * `code_changes`
|
|
2529
|
+
* * `pr_iteration`
|
|
2529
2530
|
* * `open_pr`
|
|
2530
2531
|
* * `coding_agent_handoff`
|
|
2531
2532
|
*/
|
|
2532
|
-
step?: 'root_cause' | 'solution' | 'code_changes' | 'open_pr' | 'coding_agent_handoff';
|
|
2533
|
+
step?: 'root_cause' | 'solution' | 'code_changes' | 'pr_iteration' | 'open_pr' | 'coding_agent_handoff';
|
|
2533
2534
|
/**
|
|
2534
2535
|
* Where the issue fix process should stop. If not provided, will run to root cause.
|
|
2535
2536
|
*
|
|
@@ -32187,10 +32188,11 @@ export type CreateOrganizationIssueAutofixData = {
|
|
|
32187
32188
|
* * `root_cause`
|
|
32188
32189
|
* * `solution`
|
|
32189
32190
|
* * `code_changes`
|
|
32191
|
+
* * `pr_iteration`
|
|
32190
32192
|
* * `open_pr`
|
|
32191
32193
|
* * `coding_agent_handoff`
|
|
32192
32194
|
*/
|
|
32193
|
-
step?: 'root_cause' | 'solution' | 'code_changes' | 'open_pr' | 'coding_agent_handoff';
|
|
32195
|
+
step?: 'root_cause' | 'solution' | 'code_changes' | 'pr_iteration' | 'open_pr' | 'coding_agent_handoff';
|
|
32194
32196
|
/**
|
|
32195
32197
|
* Where the issue fix process should stop. If not provided, will run to root cause.
|
|
32196
32198
|
*
|
package/dist/zod.gen.d.ts
CHANGED
|
@@ -5310,7 +5310,7 @@ export declare const zEventIdLookupResponse: z.ZodObject<{
|
|
|
5310
5310
|
* Serializer for the agent-based autofix requests.
|
|
5311
5311
|
*/
|
|
5312
5312
|
export declare const zExplorerAutofixRequest: z.ZodObject<{
|
|
5313
|
-
step: z.ZodOptional<z.ZodEnum<["root_cause", "solution", "code_changes", "open_pr", "coding_agent_handoff"]>>;
|
|
5313
|
+
step: z.ZodOptional<z.ZodEnum<["root_cause", "solution", "code_changes", "pr_iteration", "open_pr", "coding_agent_handoff"]>>;
|
|
5314
5314
|
stopping_point: z.ZodOptional<z.ZodEnum<["root_cause", "solution", "code_changes", "open_pr"]>>;
|
|
5315
5315
|
run_id: z.ZodOptional<z.ZodNumber>;
|
|
5316
5316
|
sentry_run_id: z.ZodOptional<z.ZodString>;
|
|
@@ -5326,7 +5326,7 @@ export declare const zExplorerAutofixRequest: z.ZodObject<{
|
|
|
5326
5326
|
run_id?: number | undefined;
|
|
5327
5327
|
sentry_run_id?: string | undefined;
|
|
5328
5328
|
provider?: string | undefined;
|
|
5329
|
-
step?: "root_cause" | "solution" | "code_changes" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
5329
|
+
step?: "root_cause" | "solution" | "code_changes" | "pr_iteration" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
5330
5330
|
stopping_point?: "root_cause" | "solution" | "code_changes" | "open_pr" | undefined;
|
|
5331
5331
|
user_context?: string | undefined;
|
|
5332
5332
|
repo_name?: string | undefined;
|
|
@@ -5337,7 +5337,7 @@ export declare const zExplorerAutofixRequest: z.ZodObject<{
|
|
|
5337
5337
|
run_id?: number | undefined;
|
|
5338
5338
|
sentry_run_id?: string | undefined;
|
|
5339
5339
|
provider?: string | undefined;
|
|
5340
|
-
step?: "root_cause" | "solution" | "code_changes" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
5340
|
+
step?: "root_cause" | "solution" | "code_changes" | "pr_iteration" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
5341
5341
|
stopping_point?: "root_cause" | "solution" | "code_changes" | "open_pr" | undefined;
|
|
5342
5342
|
user_context?: string | undefined;
|
|
5343
5343
|
repo_name?: string | undefined;
|
|
@@ -73098,7 +73098,7 @@ export declare const zListOrganizationIssueAutofixResponse: z.ZodObject<{
|
|
|
73098
73098
|
}>;
|
|
73099
73099
|
export declare const zCreateOrganizationIssueAutofixData: z.ZodObject<{
|
|
73100
73100
|
body: z.ZodOptional<z.ZodObject<{
|
|
73101
|
-
step: z.ZodOptional<z.ZodEnum<["root_cause", "solution", "code_changes", "open_pr", "coding_agent_handoff"]>>;
|
|
73101
|
+
step: z.ZodOptional<z.ZodEnum<["root_cause", "solution", "code_changes", "pr_iteration", "open_pr", "coding_agent_handoff"]>>;
|
|
73102
73102
|
stopping_point: z.ZodOptional<z.ZodEnum<["root_cause", "solution", "code_changes", "open_pr"]>>;
|
|
73103
73103
|
run_id: z.ZodOptional<z.ZodNumber>;
|
|
73104
73104
|
sentry_run_id: z.ZodOptional<z.ZodString>;
|
|
@@ -73114,7 +73114,7 @@ export declare const zCreateOrganizationIssueAutofixData: z.ZodObject<{
|
|
|
73114
73114
|
run_id?: number | undefined;
|
|
73115
73115
|
sentry_run_id?: string | undefined;
|
|
73116
73116
|
provider?: string | undefined;
|
|
73117
|
-
step?: "root_cause" | "solution" | "code_changes" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
73117
|
+
step?: "root_cause" | "solution" | "code_changes" | "pr_iteration" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
73118
73118
|
stopping_point?: "root_cause" | "solution" | "code_changes" | "open_pr" | undefined;
|
|
73119
73119
|
user_context?: string | undefined;
|
|
73120
73120
|
repo_name?: string | undefined;
|
|
@@ -73125,7 +73125,7 @@ export declare const zCreateOrganizationIssueAutofixData: z.ZodObject<{
|
|
|
73125
73125
|
run_id?: number | undefined;
|
|
73126
73126
|
sentry_run_id?: string | undefined;
|
|
73127
73127
|
provider?: string | undefined;
|
|
73128
|
-
step?: "root_cause" | "solution" | "code_changes" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
73128
|
+
step?: "root_cause" | "solution" | "code_changes" | "pr_iteration" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
73129
73129
|
stopping_point?: "root_cause" | "solution" | "code_changes" | "open_pr" | undefined;
|
|
73130
73130
|
user_context?: string | undefined;
|
|
73131
73131
|
repo_name?: string | undefined;
|
|
@@ -73154,7 +73154,7 @@ export declare const zCreateOrganizationIssueAutofixData: z.ZodObject<{
|
|
|
73154
73154
|
run_id?: number | undefined;
|
|
73155
73155
|
sentry_run_id?: string | undefined;
|
|
73156
73156
|
provider?: string | undefined;
|
|
73157
|
-
step?: "root_cause" | "solution" | "code_changes" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
73157
|
+
step?: "root_cause" | "solution" | "code_changes" | "pr_iteration" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
73158
73158
|
stopping_point?: "root_cause" | "solution" | "code_changes" | "open_pr" | undefined;
|
|
73159
73159
|
user_context?: string | undefined;
|
|
73160
73160
|
repo_name?: string | undefined;
|
|
@@ -73172,7 +73172,7 @@ export declare const zCreateOrganizationIssueAutofixData: z.ZodObject<{
|
|
|
73172
73172
|
run_id?: number | undefined;
|
|
73173
73173
|
sentry_run_id?: string | undefined;
|
|
73174
73174
|
provider?: string | undefined;
|
|
73175
|
-
step?: "root_cause" | "solution" | "code_changes" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
73175
|
+
step?: "root_cause" | "solution" | "code_changes" | "pr_iteration" | "open_pr" | "coding_agent_handoff" | undefined;
|
|
73176
73176
|
stopping_point?: "root_cause" | "solution" | "code_changes" | "open_pr" | undefined;
|
|
73177
73177
|
user_context?: string | undefined;
|
|
73178
73178
|
repo_name?: string | undefined;
|
package/dist/zod.js
CHANGED
|
@@ -2376,6 +2376,7 @@ var zExplorerAutofixRequest = z.object({
|
|
|
2376
2376
|
"root_cause",
|
|
2377
2377
|
"solution",
|
|
2378
2378
|
"code_changes",
|
|
2379
|
+
"pr_iteration",
|
|
2379
2380
|
"open_pr",
|
|
2380
2381
|
"coding_agent_handoff"
|
|
2381
2382
|
]).optional(),
|
|
@@ -27562,6 +27563,7 @@ var zCreateOrganizationIssueAutofixData = z.object({
|
|
|
27562
27563
|
"root_cause",
|
|
27563
27564
|
"solution",
|
|
27564
27565
|
"code_changes",
|
|
27566
|
+
"pr_iteration",
|
|
27565
27567
|
"open_pr",
|
|
27566
27568
|
"coding_agent_handoff"
|
|
27567
27569
|
]).optional(),
|