@sentry/api 0.224.0 → 0.226.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/index.d.ts +2 -2
- package/dist/index.js +43 -43
- package/dist/pagination.gen.d.ts +28 -28
- package/dist/sdk.gen.d.ts +170 -16
- package/dist/types.gen.d.ts +67 -67
- package/dist/zod.gen.d.ts +71 -71
- package/dist/zod.js +68 -68
- package/package.json +1 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -28,16 +28,16 @@ export declare const zAutofixStateResponse: z.ZodObject<{
|
|
|
28
28
|
* Errors are output in camel case.
|
|
29
29
|
*/
|
|
30
30
|
export declare const zBaseDataConditionGroupValidator: z.ZodObject<{
|
|
31
|
-
id: z.ZodOptional<z.
|
|
31
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
32
32
|
logic_type: z.ZodEnum<["any", "any-short", "all", "none"]>;
|
|
33
33
|
conditions: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
34
34
|
}, "strip", z.ZodTypeAny, {
|
|
35
35
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
36
|
-
id?:
|
|
36
|
+
id?: number | undefined;
|
|
37
37
|
conditions?: unknown[] | undefined;
|
|
38
38
|
}, {
|
|
39
39
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
40
|
-
id?:
|
|
40
|
+
id?: number | undefined;
|
|
41
41
|
conditions?: unknown[] | undefined;
|
|
42
42
|
}>;
|
|
43
43
|
/**
|
|
@@ -52,16 +52,16 @@ export declare const zBaseDetectorTypeValidator: z.ZodObject<{
|
|
|
52
52
|
data_sources: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
53
53
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
54
54
|
condition_group: z.ZodOptional<z.ZodObject<{
|
|
55
|
-
id: z.ZodOptional<z.
|
|
55
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
56
56
|
logic_type: z.ZodEnum<["any", "any-short", "all", "none"]>;
|
|
57
57
|
conditions: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
58
58
|
}, "strip", z.ZodTypeAny, {
|
|
59
59
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
60
|
-
id?:
|
|
60
|
+
id?: number | undefined;
|
|
61
61
|
conditions?: unknown[] | undefined;
|
|
62
62
|
}, {
|
|
63
63
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
64
|
-
id?:
|
|
64
|
+
id?: number | undefined;
|
|
65
65
|
conditions?: unknown[] | undefined;
|
|
66
66
|
}>>;
|
|
67
67
|
owner: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -76,7 +76,7 @@ export declare const zBaseDetectorTypeValidator: z.ZodObject<{
|
|
|
76
76
|
config?: Record<string, unknown> | undefined;
|
|
77
77
|
condition_group?: {
|
|
78
78
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
79
|
-
id?:
|
|
79
|
+
id?: number | undefined;
|
|
80
80
|
conditions?: unknown[] | undefined;
|
|
81
81
|
} | undefined;
|
|
82
82
|
description?: string | null | undefined;
|
|
@@ -90,7 +90,7 @@ export declare const zBaseDetectorTypeValidator: z.ZodObject<{
|
|
|
90
90
|
config?: Record<string, unknown> | undefined;
|
|
91
91
|
condition_group?: {
|
|
92
92
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
93
|
-
id?:
|
|
93
|
+
id?: number | undefined;
|
|
94
94
|
conditions?: unknown[] | undefined;
|
|
95
95
|
} | undefined;
|
|
96
96
|
description?: string | null | undefined;
|
|
@@ -26387,16 +26387,16 @@ export declare const zWorkflowValidator: z.ZodObject<{
|
|
|
26387
26387
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
26388
26388
|
environment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
26389
26389
|
triggers: z.ZodOptional<z.ZodObject<{
|
|
26390
|
-
id: z.ZodOptional<z.
|
|
26390
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
26391
26391
|
logic_type: z.ZodEnum<["any", "any-short", "all", "none"]>;
|
|
26392
26392
|
conditions: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
26393
26393
|
}, "strip", z.ZodTypeAny, {
|
|
26394
26394
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
26395
|
-
id?:
|
|
26395
|
+
id?: number | undefined;
|
|
26396
26396
|
conditions?: unknown[] | undefined;
|
|
26397
26397
|
}, {
|
|
26398
26398
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
26399
|
-
id?:
|
|
26399
|
+
id?: number | undefined;
|
|
26400
26400
|
conditions?: unknown[] | undefined;
|
|
26401
26401
|
}>>;
|
|
26402
26402
|
action_filters: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -26410,7 +26410,7 @@ export declare const zWorkflowValidator: z.ZodObject<{
|
|
|
26410
26410
|
config?: Record<string, unknown> | undefined;
|
|
26411
26411
|
triggers?: {
|
|
26412
26412
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
26413
|
-
id?:
|
|
26413
|
+
id?: number | undefined;
|
|
26414
26414
|
conditions?: unknown[] | undefined;
|
|
26415
26415
|
} | undefined;
|
|
26416
26416
|
detector_ids?: number[] | undefined;
|
|
@@ -26424,7 +26424,7 @@ export declare const zWorkflowValidator: z.ZodObject<{
|
|
|
26424
26424
|
enabled?: boolean | undefined;
|
|
26425
26425
|
triggers?: {
|
|
26426
26426
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
26427
|
-
id?:
|
|
26427
|
+
id?: number | undefined;
|
|
26428
26428
|
conditions?: unknown[] | undefined;
|
|
26429
26429
|
} | undefined;
|
|
26430
26430
|
detector_ids?: number[] | undefined;
|
|
@@ -32313,16 +32313,16 @@ export declare const zUpdateOrganizationDetectorData: z.ZodObject<{
|
|
|
32313
32313
|
data_sources: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
32314
32314
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
32315
32315
|
condition_group: z.ZodOptional<z.ZodObject<{
|
|
32316
|
-
id: z.ZodOptional<z.
|
|
32316
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
32317
32317
|
logic_type: z.ZodEnum<["any", "any-short", "all", "none"]>;
|
|
32318
32318
|
conditions: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
32319
32319
|
}, "strip", z.ZodTypeAny, {
|
|
32320
32320
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
32321
|
-
id?:
|
|
32321
|
+
id?: number | undefined;
|
|
32322
32322
|
conditions?: unknown[] | undefined;
|
|
32323
32323
|
}, {
|
|
32324
32324
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
32325
|
-
id?:
|
|
32325
|
+
id?: number | undefined;
|
|
32326
32326
|
conditions?: unknown[] | undefined;
|
|
32327
32327
|
}>>;
|
|
32328
32328
|
owner: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -32337,7 +32337,7 @@ export declare const zUpdateOrganizationDetectorData: z.ZodObject<{
|
|
|
32337
32337
|
config?: Record<string, unknown> | undefined;
|
|
32338
32338
|
condition_group?: {
|
|
32339
32339
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
32340
|
-
id?:
|
|
32340
|
+
id?: number | undefined;
|
|
32341
32341
|
conditions?: unknown[] | undefined;
|
|
32342
32342
|
} | undefined;
|
|
32343
32343
|
description?: string | null | undefined;
|
|
@@ -32351,7 +32351,7 @@ export declare const zUpdateOrganizationDetectorData: z.ZodObject<{
|
|
|
32351
32351
|
config?: Record<string, unknown> | undefined;
|
|
32352
32352
|
condition_group?: {
|
|
32353
32353
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
32354
|
-
id?:
|
|
32354
|
+
id?: number | undefined;
|
|
32355
32355
|
conditions?: unknown[] | undefined;
|
|
32356
32356
|
} | undefined;
|
|
32357
32357
|
description?: string | null | undefined;
|
|
@@ -32378,7 +32378,7 @@ export declare const zUpdateOrganizationDetectorData: z.ZodObject<{
|
|
|
32378
32378
|
config?: Record<string, unknown> | undefined;
|
|
32379
32379
|
condition_group?: {
|
|
32380
32380
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
32381
|
-
id?:
|
|
32381
|
+
id?: number | undefined;
|
|
32382
32382
|
conditions?: unknown[] | undefined;
|
|
32383
32383
|
} | undefined;
|
|
32384
32384
|
description?: string | null | undefined;
|
|
@@ -32399,7 +32399,7 @@ export declare const zUpdateOrganizationDetectorData: z.ZodObject<{
|
|
|
32399
32399
|
config?: Record<string, unknown> | undefined;
|
|
32400
32400
|
condition_group?: {
|
|
32401
32401
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
32402
|
-
id?:
|
|
32402
|
+
id?: number | undefined;
|
|
32403
32403
|
conditions?: unknown[] | undefined;
|
|
32404
32404
|
} | undefined;
|
|
32405
32405
|
description?: string | null | undefined;
|
|
@@ -37702,7 +37702,7 @@ export declare const zListOrganizationMembersResponse: z.ZodArray<z.ZodObject<{
|
|
|
37702
37702
|
teamId?: string | undefined;
|
|
37703
37703
|
}[] | undefined;
|
|
37704
37704
|
}>, "many">;
|
|
37705
|
-
export declare const
|
|
37705
|
+
export declare const zAddOrganizationMemberData: z.ZodObject<{
|
|
37706
37706
|
body: z.ZodObject<{
|
|
37707
37707
|
email: z.ZodString;
|
|
37708
37708
|
orgRole: z.ZodOptional<z.ZodEnum<["billing", "member", "manager", "owner", "admin"]>>;
|
|
@@ -37755,7 +37755,7 @@ export declare const zCreateOrganizationMemberData: z.ZodObject<{
|
|
|
37755
37755
|
};
|
|
37756
37756
|
query?: undefined;
|
|
37757
37757
|
}>;
|
|
37758
|
-
export declare const
|
|
37758
|
+
export declare const zAddOrganizationMemberResponse: z.ZodObject<{
|
|
37759
37759
|
externalUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
37760
37760
|
externalId: z.ZodOptional<z.ZodString>;
|
|
37761
37761
|
userId: z.ZodOptional<z.ZodString>;
|
|
@@ -39401,7 +39401,7 @@ export declare const zDeleteOrganizationMemberTeamResponse: z.ZodObject<{
|
|
|
39401
39401
|
avatarUrl?: string | null | undefined;
|
|
39402
39402
|
};
|
|
39403
39403
|
}>;
|
|
39404
|
-
export declare const
|
|
39404
|
+
export declare const zAddOrganizationMemberTeamData: z.ZodObject<{
|
|
39405
39405
|
body: z.ZodOptional<z.ZodNever>;
|
|
39406
39406
|
path: z.ZodObject<{
|
|
39407
39407
|
organization_id_or_slug: z.ZodString;
|
|
@@ -39434,7 +39434,7 @@ export declare const zCreateOrganizationMemberTeamData: z.ZodObject<{
|
|
|
39434
39434
|
query?: undefined;
|
|
39435
39435
|
body?: undefined;
|
|
39436
39436
|
}>;
|
|
39437
|
-
export declare const
|
|
39437
|
+
export declare const zAddOrganizationMemberTeamResponse: z.ZodUnion<[z.ZodObject<{
|
|
39438
39438
|
id: z.ZodString;
|
|
39439
39439
|
slug: z.ZodString;
|
|
39440
39440
|
name: z.ZodString;
|
|
@@ -44230,7 +44230,7 @@ export declare const zListOrganizationProfilingChunksData: z.ZodObject<{
|
|
|
44230
44230
|
body?: undefined;
|
|
44231
44231
|
}>;
|
|
44232
44232
|
export declare const zListOrganizationProfilingChunksResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
44233
|
-
export declare const
|
|
44233
|
+
export declare const zGetOrganizationProfilingFlamegraphData: z.ZodObject<{
|
|
44234
44234
|
body: z.ZodOptional<z.ZodNever>;
|
|
44235
44235
|
path: z.ZodObject<{
|
|
44236
44236
|
organization_id_or_slug: z.ZodString;
|
|
@@ -44303,7 +44303,7 @@ export declare const zListOrganizationProfilingFlamegraphData: z.ZodObject<{
|
|
|
44303
44303
|
} | undefined;
|
|
44304
44304
|
body?: undefined;
|
|
44305
44305
|
}>;
|
|
44306
|
-
export declare const
|
|
44306
|
+
export declare const zGetOrganizationProfilingFlamegraphResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
44307
44307
|
export declare const zListOrganizationProjectKeysData: z.ZodObject<{
|
|
44308
44308
|
body: z.ZodOptional<z.ZodNever>;
|
|
44309
44309
|
path: z.ZodObject<{
|
|
@@ -44983,16 +44983,16 @@ export declare const zCreateOrganizationProjectDetectorData: z.ZodObject<{
|
|
|
44983
44983
|
data_sources: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
44984
44984
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
44985
44985
|
condition_group: z.ZodOptional<z.ZodObject<{
|
|
44986
|
-
id: z.ZodOptional<z.
|
|
44986
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
44987
44987
|
logic_type: z.ZodEnum<["any", "any-short", "all", "none"]>;
|
|
44988
44988
|
conditions: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
44989
44989
|
}, "strip", z.ZodTypeAny, {
|
|
44990
44990
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
44991
|
-
id?:
|
|
44991
|
+
id?: number | undefined;
|
|
44992
44992
|
conditions?: unknown[] | undefined;
|
|
44993
44993
|
}, {
|
|
44994
44994
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
44995
|
-
id?:
|
|
44995
|
+
id?: number | undefined;
|
|
44996
44996
|
conditions?: unknown[] | undefined;
|
|
44997
44997
|
}>>;
|
|
44998
44998
|
owner: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
@@ -45007,7 +45007,7 @@ export declare const zCreateOrganizationProjectDetectorData: z.ZodObject<{
|
|
|
45007
45007
|
config?: Record<string, unknown> | undefined;
|
|
45008
45008
|
condition_group?: {
|
|
45009
45009
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
45010
|
-
id?:
|
|
45010
|
+
id?: number | undefined;
|
|
45011
45011
|
conditions?: unknown[] | undefined;
|
|
45012
45012
|
} | undefined;
|
|
45013
45013
|
description?: string | null | undefined;
|
|
@@ -45021,7 +45021,7 @@ export declare const zCreateOrganizationProjectDetectorData: z.ZodObject<{
|
|
|
45021
45021
|
config?: Record<string, unknown> | undefined;
|
|
45022
45022
|
condition_group?: {
|
|
45023
45023
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
45024
|
-
id?:
|
|
45024
|
+
id?: number | undefined;
|
|
45025
45025
|
conditions?: unknown[] | undefined;
|
|
45026
45026
|
} | undefined;
|
|
45027
45027
|
description?: string | null | undefined;
|
|
@@ -45048,7 +45048,7 @@ export declare const zCreateOrganizationProjectDetectorData: z.ZodObject<{
|
|
|
45048
45048
|
config?: Record<string, unknown> | undefined;
|
|
45049
45049
|
condition_group?: {
|
|
45050
45050
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
45051
|
-
id?:
|
|
45051
|
+
id?: number | undefined;
|
|
45052
45052
|
conditions?: unknown[] | undefined;
|
|
45053
45053
|
} | undefined;
|
|
45054
45054
|
description?: string | null | undefined;
|
|
@@ -45069,7 +45069,7 @@ export declare const zCreateOrganizationProjectDetectorData: z.ZodObject<{
|
|
|
45069
45069
|
config?: Record<string, unknown> | undefined;
|
|
45070
45070
|
condition_group?: {
|
|
45071
45071
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
45072
|
-
id?:
|
|
45072
|
+
id?: number | undefined;
|
|
45073
45073
|
conditions?: unknown[] | undefined;
|
|
45074
45074
|
} | undefined;
|
|
45075
45075
|
description?: string | null | undefined;
|
|
@@ -49343,7 +49343,7 @@ export declare const zListOrganizationScimV2GroupsResponse: z.ZodObject<{
|
|
|
49343
49343
|
}[] | undefined;
|
|
49344
49344
|
}[];
|
|
49345
49345
|
}>;
|
|
49346
|
-
export declare const
|
|
49346
|
+
export declare const zProvisionOrganizationScimV2GroupData: z.ZodObject<{
|
|
49347
49347
|
body: z.ZodObject<{
|
|
49348
49348
|
displayName: z.ZodString;
|
|
49349
49349
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -49376,7 +49376,7 @@ export declare const zCreateOrganizationScimV2GroupData: z.ZodObject<{
|
|
|
49376
49376
|
};
|
|
49377
49377
|
query?: undefined;
|
|
49378
49378
|
}>;
|
|
49379
|
-
export declare const
|
|
49379
|
+
export declare const zProvisionOrganizationScimV2GroupResponse: z.ZodObject<{
|
|
49380
49380
|
schemas: z.ZodArray<z.ZodString, "many">;
|
|
49381
49381
|
id: z.ZodString;
|
|
49382
49382
|
displayName: z.ZodString;
|
|
@@ -49769,7 +49769,7 @@ export declare const zListOrganizationScimV2UsersResponse: z.ZodObject<{
|
|
|
49769
49769
|
active?: boolean | undefined;
|
|
49770
49770
|
}[];
|
|
49771
49771
|
}>;
|
|
49772
|
-
export declare const
|
|
49772
|
+
export declare const zProvisionOrganizationScimV2UserData: z.ZodObject<{
|
|
49773
49773
|
body: z.ZodObject<{
|
|
49774
49774
|
userName: z.ZodString;
|
|
49775
49775
|
sentryOrgRole: z.ZodOptional<z.ZodEnum<["billing", "member", "manager", "admin"]>>;
|
|
@@ -49811,7 +49811,7 @@ export declare const zCreateOrganizationScimV2UserData: z.ZodObject<{
|
|
|
49811
49811
|
* Conforming to the SCIM RFC, this represents a Sentry Org Member
|
|
49812
49812
|
* as a SCIM user object.
|
|
49813
49813
|
*/
|
|
49814
|
-
export declare const
|
|
49814
|
+
export declare const zProvisionOrganizationScimV2UserResponse: z.ZodObject<{
|
|
49815
49815
|
active: z.ZodOptional<z.ZodBoolean>;
|
|
49816
49816
|
schemas: z.ZodArray<z.ZodString, "many">;
|
|
49817
49817
|
id: z.ZodString;
|
|
@@ -50232,7 +50232,7 @@ export declare const zListOrganizationSentryAppsResponse: z.ZodArray<z.ZodObject
|
|
|
50232
50232
|
datePublished?: string | undefined;
|
|
50233
50233
|
clientId?: string | undefined;
|
|
50234
50234
|
}>, "many">;
|
|
50235
|
-
export declare const
|
|
50235
|
+
export declare const zGetOrganizationSessionsData: z.ZodObject<{
|
|
50236
50236
|
body: z.ZodOptional<z.ZodNever>;
|
|
50237
50237
|
path: z.ZodObject<{
|
|
50238
50238
|
organization_id_or_slug: z.ZodString;
|
|
@@ -50325,7 +50325,7 @@ export declare const zListOrganizationSessionsData: z.ZodObject<{
|
|
|
50325
50325
|
};
|
|
50326
50326
|
body?: undefined;
|
|
50327
50327
|
}>;
|
|
50328
|
-
export declare const
|
|
50328
|
+
export declare const zGetOrganizationSessionsResponse: z.ZodObject<{
|
|
50329
50329
|
start: z.ZodString;
|
|
50330
50330
|
end: z.ZodString;
|
|
50331
50331
|
intervals: z.ZodArray<z.ZodString, "many">;
|
|
@@ -51280,7 +51280,7 @@ export declare const zGetOrganizationShortidResponse: z.ZodObject<{
|
|
|
51280
51280
|
lastSeen?: string | null | undefined;
|
|
51281
51281
|
};
|
|
51282
51282
|
}>;
|
|
51283
|
-
export declare const
|
|
51283
|
+
export declare const zGetOrganizationStatsSummaryData: z.ZodObject<{
|
|
51284
51284
|
body: z.ZodOptional<z.ZodNever>;
|
|
51285
51285
|
path: z.ZodObject<{
|
|
51286
51286
|
organization_id_or_slug: z.ZodString;
|
|
@@ -51358,7 +51358,7 @@ export declare const zListOrganizationStatsSummaryData: z.ZodObject<{
|
|
|
51358
51358
|
};
|
|
51359
51359
|
body?: undefined;
|
|
51360
51360
|
}>;
|
|
51361
|
-
export declare const
|
|
51361
|
+
export declare const zGetOrganizationStatsSummaryResponse: z.ZodObject<{
|
|
51362
51362
|
start: z.ZodString;
|
|
51363
51363
|
end: z.ZodString;
|
|
51364
51364
|
projects: z.ZodArray<z.ZodObject<{
|
|
@@ -52806,7 +52806,7 @@ export declare const zCreateOrganizationTeamResponse: z.ZodObject<{
|
|
|
52806
52806
|
teamId?: string | undefined;
|
|
52807
52807
|
}[] | undefined;
|
|
52808
52808
|
}>;
|
|
52809
|
-
export declare const
|
|
52809
|
+
export declare const zListOrganizationTraceItemAttributesData: z.ZodObject<{
|
|
52810
52810
|
body: z.ZodOptional<z.ZodNever>;
|
|
52811
52811
|
path: z.ZodObject<{
|
|
52812
52812
|
organization_id_or_slug: z.ZodString;
|
|
@@ -52879,7 +52879,7 @@ export declare const zListOrganizationTraceItemsAttributesData: z.ZodObject<{
|
|
|
52879
52879
|
} | undefined;
|
|
52880
52880
|
body?: undefined;
|
|
52881
52881
|
}>;
|
|
52882
|
-
export declare const
|
|
52882
|
+
export declare const zListOrganizationTraceItemAttributesResponse: z.ZodArray<z.ZodObject<{
|
|
52883
52883
|
key: z.ZodString;
|
|
52884
52884
|
name: z.ZodString;
|
|
52885
52885
|
secondaryAliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -54520,16 +54520,16 @@ export declare const zCreateOrganizationWorkflowData: z.ZodObject<{
|
|
|
54520
54520
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
54521
54521
|
environment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
54522
54522
|
triggers: z.ZodOptional<z.ZodObject<{
|
|
54523
|
-
id: z.ZodOptional<z.
|
|
54523
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
54524
54524
|
logic_type: z.ZodEnum<["any", "any-short", "all", "none"]>;
|
|
54525
54525
|
conditions: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
54526
54526
|
}, "strip", z.ZodTypeAny, {
|
|
54527
54527
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
54528
|
-
id?:
|
|
54528
|
+
id?: number | undefined;
|
|
54529
54529
|
conditions?: unknown[] | undefined;
|
|
54530
54530
|
}, {
|
|
54531
54531
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
54532
|
-
id?:
|
|
54532
|
+
id?: number | undefined;
|
|
54533
54533
|
conditions?: unknown[] | undefined;
|
|
54534
54534
|
}>>;
|
|
54535
54535
|
action_filters: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -54543,7 +54543,7 @@ export declare const zCreateOrganizationWorkflowData: z.ZodObject<{
|
|
|
54543
54543
|
config?: Record<string, unknown> | undefined;
|
|
54544
54544
|
triggers?: {
|
|
54545
54545
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
54546
|
-
id?:
|
|
54546
|
+
id?: number | undefined;
|
|
54547
54547
|
conditions?: unknown[] | undefined;
|
|
54548
54548
|
} | undefined;
|
|
54549
54549
|
detector_ids?: number[] | undefined;
|
|
@@ -54557,7 +54557,7 @@ export declare const zCreateOrganizationWorkflowData: z.ZodObject<{
|
|
|
54557
54557
|
enabled?: boolean | undefined;
|
|
54558
54558
|
triggers?: {
|
|
54559
54559
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
54560
|
-
id?:
|
|
54560
|
+
id?: number | undefined;
|
|
54561
54561
|
conditions?: unknown[] | undefined;
|
|
54562
54562
|
} | undefined;
|
|
54563
54563
|
detector_ids?: number[] | undefined;
|
|
@@ -54581,7 +54581,7 @@ export declare const zCreateOrganizationWorkflowData: z.ZodObject<{
|
|
|
54581
54581
|
config?: Record<string, unknown> | undefined;
|
|
54582
54582
|
triggers?: {
|
|
54583
54583
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
54584
|
-
id?:
|
|
54584
|
+
id?: number | undefined;
|
|
54585
54585
|
conditions?: unknown[] | undefined;
|
|
54586
54586
|
} | undefined;
|
|
54587
54587
|
detector_ids?: number[] | undefined;
|
|
@@ -54601,7 +54601,7 @@ export declare const zCreateOrganizationWorkflowData: z.ZodObject<{
|
|
|
54601
54601
|
enabled?: boolean | undefined;
|
|
54602
54602
|
triggers?: {
|
|
54603
54603
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
54604
|
-
id?:
|
|
54604
|
+
id?: number | undefined;
|
|
54605
54605
|
conditions?: unknown[] | undefined;
|
|
54606
54606
|
} | undefined;
|
|
54607
54607
|
detector_ids?: number[] | undefined;
|
|
@@ -55556,16 +55556,16 @@ export declare const zUpdateOrganizationWorkflowData: z.ZodObject<{
|
|
|
55556
55556
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
55557
55557
|
environment: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
55558
55558
|
triggers: z.ZodOptional<z.ZodObject<{
|
|
55559
|
-
id: z.ZodOptional<z.
|
|
55559
|
+
id: z.ZodOptional<z.ZodNumber>;
|
|
55560
55560
|
logic_type: z.ZodEnum<["any", "any-short", "all", "none"]>;
|
|
55561
55561
|
conditions: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
55562
55562
|
}, "strip", z.ZodTypeAny, {
|
|
55563
55563
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
55564
|
-
id?:
|
|
55564
|
+
id?: number | undefined;
|
|
55565
55565
|
conditions?: unknown[] | undefined;
|
|
55566
55566
|
}, {
|
|
55567
55567
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
55568
|
-
id?:
|
|
55568
|
+
id?: number | undefined;
|
|
55569
55569
|
conditions?: unknown[] | undefined;
|
|
55570
55570
|
}>>;
|
|
55571
55571
|
action_filters: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
|
|
@@ -55579,7 +55579,7 @@ export declare const zUpdateOrganizationWorkflowData: z.ZodObject<{
|
|
|
55579
55579
|
config?: Record<string, unknown> | undefined;
|
|
55580
55580
|
triggers?: {
|
|
55581
55581
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
55582
|
-
id?:
|
|
55582
|
+
id?: number | undefined;
|
|
55583
55583
|
conditions?: unknown[] | undefined;
|
|
55584
55584
|
} | undefined;
|
|
55585
55585
|
detector_ids?: number[] | undefined;
|
|
@@ -55593,7 +55593,7 @@ export declare const zUpdateOrganizationWorkflowData: z.ZodObject<{
|
|
|
55593
55593
|
enabled?: boolean | undefined;
|
|
55594
55594
|
triggers?: {
|
|
55595
55595
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
55596
|
-
id?:
|
|
55596
|
+
id?: number | undefined;
|
|
55597
55597
|
conditions?: unknown[] | undefined;
|
|
55598
55598
|
} | undefined;
|
|
55599
55599
|
detector_ids?: number[] | undefined;
|
|
@@ -55620,7 +55620,7 @@ export declare const zUpdateOrganizationWorkflowData: z.ZodObject<{
|
|
|
55620
55620
|
config?: Record<string, unknown> | undefined;
|
|
55621
55621
|
triggers?: {
|
|
55622
55622
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
55623
|
-
id?:
|
|
55623
|
+
id?: number | undefined;
|
|
55624
55624
|
conditions?: unknown[] | undefined;
|
|
55625
55625
|
} | undefined;
|
|
55626
55626
|
detector_ids?: number[] | undefined;
|
|
@@ -55641,7 +55641,7 @@ export declare const zUpdateOrganizationWorkflowData: z.ZodObject<{
|
|
|
55641
55641
|
enabled?: boolean | undefined;
|
|
55642
55642
|
triggers?: {
|
|
55643
55643
|
logic_type: "any" | "any-short" | "all" | "none";
|
|
55644
|
-
id?:
|
|
55644
|
+
id?: number | undefined;
|
|
55645
55645
|
conditions?: unknown[] | undefined;
|
|
55646
55646
|
} | undefined;
|
|
55647
55647
|
detector_ids?: number[] | undefined;
|
|
@@ -58446,7 +58446,7 @@ export declare const zGetProjectEventAttachmentResponse: z.ZodObject<{
|
|
|
58446
58446
|
size: number;
|
|
58447
58447
|
sha1: string | null;
|
|
58448
58448
|
}>;
|
|
58449
|
-
export declare const
|
|
58449
|
+
export declare const zGetProjectEventSourceMapDebugData: z.ZodObject<{
|
|
58450
58450
|
body: z.ZodOptional<z.ZodNever>;
|
|
58451
58451
|
path: z.ZodObject<{
|
|
58452
58452
|
organization_id_or_slug: z.ZodString;
|
|
@@ -58479,7 +58479,7 @@ export declare const zListProjectEventSourceMapDebugData: z.ZodObject<{
|
|
|
58479
58479
|
query?: undefined;
|
|
58480
58480
|
body?: undefined;
|
|
58481
58481
|
}>;
|
|
58482
|
-
export declare const
|
|
58482
|
+
export declare const zGetProjectEventSourceMapDebugResponse: z.ZodObject<{
|
|
58483
58483
|
dist: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
58484
58484
|
release: z.ZodUnion<[z.ZodString, z.ZodNull]>;
|
|
58485
58485
|
exceptions: z.ZodArray<z.ZodObject<{
|
|
@@ -58922,7 +58922,7 @@ export declare const zListProjectEventSourceMapDebugResponse: z.ZodObject<{
|
|
|
58922
58922
|
sdk_debug_id_support: "full" | "not-supported" | "unofficial-sdk" | "needs-upgrade";
|
|
58923
58923
|
has_scraping_data: boolean;
|
|
58924
58924
|
}>;
|
|
58925
|
-
export declare const
|
|
58925
|
+
export declare const zListProjectDebugFilesData: z.ZodObject<{
|
|
58926
58926
|
body: z.ZodOptional<z.ZodNever>;
|
|
58927
58927
|
path: z.ZodObject<{
|
|
58928
58928
|
organization_id_or_slug: z.ZodString;
|
|
@@ -58980,7 +58980,7 @@ export declare const zListProjectFilesDsymsData: z.ZodObject<{
|
|
|
58980
58980
|
} | undefined;
|
|
58981
58981
|
body?: undefined;
|
|
58982
58982
|
}>;
|
|
58983
|
-
export declare const
|
|
58983
|
+
export declare const zListProjectDebugFilesResponse2: z.ZodArray<z.ZodObject<{
|
|
58984
58984
|
id: z.ZodString;
|
|
58985
58985
|
uuid: z.ZodString;
|
|
58986
58986
|
debugId: z.ZodString;
|
|
@@ -64150,7 +64150,7 @@ export declare const zGetProjectReplayDeletionJobResponse: z.ZodObject<{
|
|
|
64150
64150
|
countDeleted: number;
|
|
64151
64151
|
};
|
|
64152
64152
|
}>;
|
|
64153
|
-
export declare const
|
|
64153
|
+
export declare const zLinkProjectRepositoryData: z.ZodObject<{
|
|
64154
64154
|
body: z.ZodObject<{
|
|
64155
64155
|
repositoryId: z.ZodNumber;
|
|
64156
64156
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -64188,7 +64188,7 @@ export declare const zCreateProjectRepoData: z.ZodObject<{
|
|
|
64188
64188
|
};
|
|
64189
64189
|
query?: undefined;
|
|
64190
64190
|
}>;
|
|
64191
|
-
export declare const
|
|
64191
|
+
export declare const zLinkProjectRepositoryResponse: z.ZodObject<{
|
|
64192
64192
|
id: z.ZodString;
|
|
64193
64193
|
projectId: z.ZodString;
|
|
64194
64194
|
repositoryId: z.ZodString;
|
|
@@ -64261,7 +64261,7 @@ export declare const zListProjectStatsData: z.ZodObject<{
|
|
|
64261
64261
|
body?: undefined;
|
|
64262
64262
|
}>;
|
|
64263
64263
|
export declare const zListProjectStatsResponse: z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">;
|
|
64264
|
-
export declare const
|
|
64264
|
+
export declare const zDeleteProjectSymbolSourceData: z.ZodObject<{
|
|
64265
64265
|
body: z.ZodOptional<z.ZodNever>;
|
|
64266
64266
|
path: z.ZodObject<{
|
|
64267
64267
|
organization_id_or_slug: z.ZodString;
|
|
@@ -64302,7 +64302,7 @@ export declare const zDeleteProjectSymbolSourcesData: z.ZodObject<{
|
|
|
64302
64302
|
/**
|
|
64303
64303
|
* No Content
|
|
64304
64304
|
*/
|
|
64305
|
-
export declare const
|
|
64305
|
+
export declare const zDeleteProjectSymbolSourceResponse: z.ZodVoid;
|
|
64306
64306
|
export declare const zListProjectSymbolSourcesData: z.ZodObject<{
|
|
64307
64307
|
body: z.ZodOptional<z.ZodNever>;
|
|
64308
64308
|
path: z.ZodObject<{
|
|
@@ -64624,7 +64624,7 @@ export declare const zListProjectSymbolSourcesResponse: z.ZodArray<z.ZodUnion<[z
|
|
|
64624
64624
|
appName: string;
|
|
64625
64625
|
bundleId: string;
|
|
64626
64626
|
}>]>, "many">;
|
|
64627
|
-
export declare const
|
|
64627
|
+
export declare const zAddProjectSymbolSourceData: z.ZodObject<{
|
|
64628
64628
|
body: z.ZodObject<{
|
|
64629
64629
|
type: z.ZodEnum<["http", "gcs", "s3"]>;
|
|
64630
64630
|
name: z.ZodString;
|
|
@@ -64781,7 +64781,7 @@ export declare const zCreateProjectSymbolSourceData: z.ZodObject<{
|
|
|
64781
64781
|
};
|
|
64782
64782
|
query?: undefined;
|
|
64783
64783
|
}>;
|
|
64784
|
-
export declare const
|
|
64784
|
+
export declare const zAddProjectSymbolSourceResponse: z.ZodUnion<[z.ZodObject<{
|
|
64785
64785
|
type: z.ZodEnum<["http"]>;
|
|
64786
64786
|
url: z.ZodString;
|
|
64787
64787
|
username: z.ZodOptional<z.ZodString>;
|
|
@@ -65064,7 +65064,7 @@ export declare const zCreateProjectSymbolSourceResponse: z.ZodUnion<[z.ZodObject
|
|
|
65064
65064
|
appName: string;
|
|
65065
65065
|
bundleId: string;
|
|
65066
65066
|
}>]>;
|
|
65067
|
-
export declare const
|
|
65067
|
+
export declare const zUpdateProjectSymbolSourceData: z.ZodObject<{
|
|
65068
65068
|
body: z.ZodObject<{
|
|
65069
65069
|
type: z.ZodEnum<["http", "gcs", "s3"]>;
|
|
65070
65070
|
name: z.ZodString;
|
|
@@ -65231,7 +65231,7 @@ export declare const zUpdateProjectSymbolSourcesData: z.ZodObject<{
|
|
|
65231
65231
|
project_id_or_slug: string;
|
|
65232
65232
|
};
|
|
65233
65233
|
}>;
|
|
65234
|
-
export declare const
|
|
65234
|
+
export declare const zUpdateProjectSymbolSourceResponse: z.ZodUnion<[z.ZodObject<{
|
|
65235
65235
|
type: z.ZodEnum<["http"]>;
|
|
65236
65236
|
url: z.ZodString;
|
|
65237
65237
|
username: z.ZodOptional<z.ZodString>;
|
|
@@ -65835,7 +65835,7 @@ export declare const zDeleteProjectTeamResponse: z.ZodObject<{
|
|
|
65835
65835
|
transactionStats?: unknown;
|
|
65836
65836
|
sessionStats?: unknown;
|
|
65837
65837
|
}>;
|
|
65838
|
-
export declare const
|
|
65838
|
+
export declare const zAddProjectTeamData: z.ZodObject<{
|
|
65839
65839
|
body: z.ZodOptional<z.ZodNever>;
|
|
65840
65840
|
path: z.ZodObject<{
|
|
65841
65841
|
organization_id_or_slug: z.ZodString;
|
|
@@ -65868,7 +65868,7 @@ export declare const zCreateProjectTeamData: z.ZodObject<{
|
|
|
65868
65868
|
query?: undefined;
|
|
65869
65869
|
body?: undefined;
|
|
65870
65870
|
}>;
|
|
65871
|
-
export declare const
|
|
65871
|
+
export declare const zAddProjectTeamResponse: z.ZodObject<{
|
|
65872
65872
|
stats: z.ZodOptional<z.ZodUnknown>;
|
|
65873
65873
|
transactionStats: z.ZodOptional<z.ZodUnknown>;
|
|
65874
65874
|
sessionStats: z.ZodOptional<z.ZodUnknown>;
|