@sentry/api 0.294.0 → 0.296.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 +18 -0
- package/dist/valibot.gen.d.ts +18 -0
- package/dist/valibot.js +20 -2
- package/dist/zod.gen.d.ts +122 -0
- package/dist/zod.js +20 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -7086,6 +7086,15 @@ export type OrganizationEventsTimeseriesResponse = {
|
|
|
7086
7086
|
dataset: string;
|
|
7087
7087
|
start: number;
|
|
7088
7088
|
end: number;
|
|
7089
|
+
annotations?: Array<{
|
|
7090
|
+
type: 'system';
|
|
7091
|
+
category: string;
|
|
7092
|
+
reason: string;
|
|
7093
|
+
start: number;
|
|
7094
|
+
end: number;
|
|
7095
|
+
droppedCount: number;
|
|
7096
|
+
label: string;
|
|
7097
|
+
}>;
|
|
7089
7098
|
};
|
|
7090
7099
|
timeSeries: Array<{
|
|
7091
7100
|
values: Array<{
|
|
@@ -15284,6 +15293,15 @@ export type ListOrganizationEventsTimeseriesResponses = {
|
|
|
15284
15293
|
dataset: string;
|
|
15285
15294
|
start: number;
|
|
15286
15295
|
end: number;
|
|
15296
|
+
annotations?: Array<{
|
|
15297
|
+
type: 'system';
|
|
15298
|
+
category: string;
|
|
15299
|
+
reason: string;
|
|
15300
|
+
start: number;
|
|
15301
|
+
end: number;
|
|
15302
|
+
droppedCount: number;
|
|
15303
|
+
label: string;
|
|
15304
|
+
}>;
|
|
15287
15305
|
};
|
|
15288
15306
|
timeSeries: Array<{
|
|
15289
15307
|
values: Array<{
|
package/dist/valibot.gen.d.ts
CHANGED
|
@@ -3989,6 +3989,15 @@ export declare const vOrganizationEventsTimeseriesResponse: v.ObjectSchema<{
|
|
|
3989
3989
|
readonly dataset: v.StringSchema<undefined>;
|
|
3990
3990
|
readonly start: v.NumberSchema<undefined>;
|
|
3991
3991
|
readonly end: v.NumberSchema<undefined>;
|
|
3992
|
+
readonly annotations: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
3993
|
+
readonly type: v.PicklistSchema<["system"], undefined>;
|
|
3994
|
+
readonly category: v.StringSchema<undefined>;
|
|
3995
|
+
readonly reason: v.StringSchema<undefined>;
|
|
3996
|
+
readonly start: v.NumberSchema<undefined>;
|
|
3997
|
+
readonly end: v.NumberSchema<undefined>;
|
|
3998
|
+
readonly droppedCount: v.NumberSchema<undefined>;
|
|
3999
|
+
readonly label: v.StringSchema<undefined>;
|
|
4000
|
+
}, undefined>, undefined>, undefined>;
|
|
3992
4001
|
}, undefined>, undefined>;
|
|
3993
4002
|
readonly timeSeries: v.ArraySchema<v.ObjectSchema<{
|
|
3994
4003
|
readonly values: v.ArraySchema<v.ObjectSchema<{
|
|
@@ -8400,6 +8409,15 @@ export declare const vListOrganizationEventsTimeseriesResponse: v.ObjectSchema<{
|
|
|
8400
8409
|
readonly dataset: v.StringSchema<undefined>;
|
|
8401
8410
|
readonly start: v.NumberSchema<undefined>;
|
|
8402
8411
|
readonly end: v.NumberSchema<undefined>;
|
|
8412
|
+
readonly annotations: v.OptionalSchema<v.ArraySchema<v.ObjectSchema<{
|
|
8413
|
+
readonly type: v.PicklistSchema<["system"], undefined>;
|
|
8414
|
+
readonly category: v.StringSchema<undefined>;
|
|
8415
|
+
readonly reason: v.StringSchema<undefined>;
|
|
8416
|
+
readonly start: v.NumberSchema<undefined>;
|
|
8417
|
+
readonly end: v.NumberSchema<undefined>;
|
|
8418
|
+
readonly droppedCount: v.NumberSchema<undefined>;
|
|
8419
|
+
readonly label: v.StringSchema<undefined>;
|
|
8420
|
+
}, undefined>, undefined>, undefined>;
|
|
8403
8421
|
}, undefined>, undefined>;
|
|
8404
8422
|
readonly timeSeries: v.ArraySchema<v.ObjectSchema<{
|
|
8405
8423
|
readonly values: v.ArraySchema<v.ObjectSchema<{
|
package/dist/valibot.js
CHANGED
|
@@ -5407,7 +5407,16 @@ var vOrganizationEventsTimeseriesResponse = v.object({
|
|
|
5407
5407
|
meta: v.optional(v.object({
|
|
5408
5408
|
dataset: v.string(),
|
|
5409
5409
|
start: v.number(),
|
|
5410
|
-
end: v.number()
|
|
5410
|
+
end: v.number(),
|
|
5411
|
+
annotations: v.optional(v.array(v.object({
|
|
5412
|
+
type: v.picklist(["system"]),
|
|
5413
|
+
category: v.string(),
|
|
5414
|
+
reason: v.string(),
|
|
5415
|
+
start: v.number(),
|
|
5416
|
+
end: v.number(),
|
|
5417
|
+
droppedCount: v.number(),
|
|
5418
|
+
label: v.string()
|
|
5419
|
+
})))
|
|
5411
5420
|
})),
|
|
5412
5421
|
timeSeries: v.array(v.object({
|
|
5413
5422
|
values: v.array(v.object({
|
|
@@ -10201,7 +10210,16 @@ var vListOrganizationEventsTimeseriesResponse = v.object({
|
|
|
10201
10210
|
meta: v.optional(v.object({
|
|
10202
10211
|
dataset: v.string(),
|
|
10203
10212
|
start: v.number(),
|
|
10204
|
-
end: v.number()
|
|
10213
|
+
end: v.number(),
|
|
10214
|
+
annotations: v.optional(v.array(v.object({
|
|
10215
|
+
type: v.picklist(["system"]),
|
|
10216
|
+
category: v.string(),
|
|
10217
|
+
reason: v.string(),
|
|
10218
|
+
start: v.number(),
|
|
10219
|
+
end: v.number(),
|
|
10220
|
+
droppedCount: v.number(),
|
|
10221
|
+
label: v.string()
|
|
10222
|
+
})))
|
|
10205
10223
|
})),
|
|
10206
10224
|
timeSeries: v.array(v.object({
|
|
10207
10225
|
values: v.array(v.object({
|
package/dist/zod.gen.d.ts
CHANGED
|
@@ -19935,14 +19935,57 @@ export declare const zOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
19935
19935
|
dataset: z.ZodString;
|
|
19936
19936
|
start: z.ZodNumber;
|
|
19937
19937
|
end: z.ZodNumber;
|
|
19938
|
+
annotations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19939
|
+
type: z.ZodEnum<["system"]>;
|
|
19940
|
+
category: z.ZodString;
|
|
19941
|
+
reason: z.ZodString;
|
|
19942
|
+
start: z.ZodNumber;
|
|
19943
|
+
end: z.ZodNumber;
|
|
19944
|
+
droppedCount: z.ZodNumber;
|
|
19945
|
+
label: z.ZodString;
|
|
19946
|
+
}, "strip", z.ZodTypeAny, {
|
|
19947
|
+
label: string;
|
|
19948
|
+
category: string;
|
|
19949
|
+
reason: string;
|
|
19950
|
+
start: number;
|
|
19951
|
+
end: number;
|
|
19952
|
+
type: "system";
|
|
19953
|
+
droppedCount: number;
|
|
19954
|
+
}, {
|
|
19955
|
+
label: string;
|
|
19956
|
+
category: string;
|
|
19957
|
+
reason: string;
|
|
19958
|
+
start: number;
|
|
19959
|
+
end: number;
|
|
19960
|
+
type: "system";
|
|
19961
|
+
droppedCount: number;
|
|
19962
|
+
}>, "many">>;
|
|
19938
19963
|
}, "strip", z.ZodTypeAny, {
|
|
19939
19964
|
start: number;
|
|
19940
19965
|
end: number;
|
|
19941
19966
|
dataset: string;
|
|
19967
|
+
annotations?: {
|
|
19968
|
+
label: string;
|
|
19969
|
+
category: string;
|
|
19970
|
+
reason: string;
|
|
19971
|
+
start: number;
|
|
19972
|
+
end: number;
|
|
19973
|
+
type: "system";
|
|
19974
|
+
droppedCount: number;
|
|
19975
|
+
}[] | undefined;
|
|
19942
19976
|
}, {
|
|
19943
19977
|
start: number;
|
|
19944
19978
|
end: number;
|
|
19945
19979
|
dataset: string;
|
|
19980
|
+
annotations?: {
|
|
19981
|
+
label: string;
|
|
19982
|
+
category: string;
|
|
19983
|
+
reason: string;
|
|
19984
|
+
start: number;
|
|
19985
|
+
end: number;
|
|
19986
|
+
type: "system";
|
|
19987
|
+
droppedCount: number;
|
|
19988
|
+
}[] | undefined;
|
|
19946
19989
|
}>>;
|
|
19947
19990
|
timeSeries: z.ZodArray<z.ZodObject<{
|
|
19948
19991
|
values: z.ZodArray<z.ZodObject<{
|
|
@@ -20085,6 +20128,15 @@ export declare const zOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
20085
20128
|
start: number;
|
|
20086
20129
|
end: number;
|
|
20087
20130
|
dataset: string;
|
|
20131
|
+
annotations?: {
|
|
20132
|
+
label: string;
|
|
20133
|
+
category: string;
|
|
20134
|
+
reason: string;
|
|
20135
|
+
start: number;
|
|
20136
|
+
end: number;
|
|
20137
|
+
type: "system";
|
|
20138
|
+
droppedCount: number;
|
|
20139
|
+
}[] | undefined;
|
|
20088
20140
|
} | undefined;
|
|
20089
20141
|
}, {
|
|
20090
20142
|
timeSeries: {
|
|
@@ -20116,6 +20168,15 @@ export declare const zOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
20116
20168
|
start: number;
|
|
20117
20169
|
end: number;
|
|
20118
20170
|
dataset: string;
|
|
20171
|
+
annotations?: {
|
|
20172
|
+
label: string;
|
|
20173
|
+
category: string;
|
|
20174
|
+
reason: string;
|
|
20175
|
+
start: number;
|
|
20176
|
+
end: number;
|
|
20177
|
+
type: "system";
|
|
20178
|
+
droppedCount: number;
|
|
20179
|
+
}[] | undefined;
|
|
20119
20180
|
} | undefined;
|
|
20120
20181
|
}>;
|
|
20121
20182
|
export declare const zOrganizationGroupIndexGetResponse: z.ZodArray<z.ZodObject<{
|
|
@@ -41645,14 +41706,57 @@ export declare const zListOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
41645
41706
|
dataset: z.ZodString;
|
|
41646
41707
|
start: z.ZodNumber;
|
|
41647
41708
|
end: z.ZodNumber;
|
|
41709
|
+
annotations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
41710
|
+
type: z.ZodEnum<["system"]>;
|
|
41711
|
+
category: z.ZodString;
|
|
41712
|
+
reason: z.ZodString;
|
|
41713
|
+
start: z.ZodNumber;
|
|
41714
|
+
end: z.ZodNumber;
|
|
41715
|
+
droppedCount: z.ZodNumber;
|
|
41716
|
+
label: z.ZodString;
|
|
41717
|
+
}, "strip", z.ZodTypeAny, {
|
|
41718
|
+
label: string;
|
|
41719
|
+
category: string;
|
|
41720
|
+
reason: string;
|
|
41721
|
+
start: number;
|
|
41722
|
+
end: number;
|
|
41723
|
+
type: "system";
|
|
41724
|
+
droppedCount: number;
|
|
41725
|
+
}, {
|
|
41726
|
+
label: string;
|
|
41727
|
+
category: string;
|
|
41728
|
+
reason: string;
|
|
41729
|
+
start: number;
|
|
41730
|
+
end: number;
|
|
41731
|
+
type: "system";
|
|
41732
|
+
droppedCount: number;
|
|
41733
|
+
}>, "many">>;
|
|
41648
41734
|
}, "strip", z.ZodTypeAny, {
|
|
41649
41735
|
start: number;
|
|
41650
41736
|
end: number;
|
|
41651
41737
|
dataset: string;
|
|
41738
|
+
annotations?: {
|
|
41739
|
+
label: string;
|
|
41740
|
+
category: string;
|
|
41741
|
+
reason: string;
|
|
41742
|
+
start: number;
|
|
41743
|
+
end: number;
|
|
41744
|
+
type: "system";
|
|
41745
|
+
droppedCount: number;
|
|
41746
|
+
}[] | undefined;
|
|
41652
41747
|
}, {
|
|
41653
41748
|
start: number;
|
|
41654
41749
|
end: number;
|
|
41655
41750
|
dataset: string;
|
|
41751
|
+
annotations?: {
|
|
41752
|
+
label: string;
|
|
41753
|
+
category: string;
|
|
41754
|
+
reason: string;
|
|
41755
|
+
start: number;
|
|
41756
|
+
end: number;
|
|
41757
|
+
type: "system";
|
|
41758
|
+
droppedCount: number;
|
|
41759
|
+
}[] | undefined;
|
|
41656
41760
|
}>>;
|
|
41657
41761
|
timeSeries: z.ZodArray<z.ZodObject<{
|
|
41658
41762
|
values: z.ZodArray<z.ZodObject<{
|
|
@@ -41795,6 +41899,15 @@ export declare const zListOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
41795
41899
|
start: number;
|
|
41796
41900
|
end: number;
|
|
41797
41901
|
dataset: string;
|
|
41902
|
+
annotations?: {
|
|
41903
|
+
label: string;
|
|
41904
|
+
category: string;
|
|
41905
|
+
reason: string;
|
|
41906
|
+
start: number;
|
|
41907
|
+
end: number;
|
|
41908
|
+
type: "system";
|
|
41909
|
+
droppedCount: number;
|
|
41910
|
+
}[] | undefined;
|
|
41798
41911
|
} | undefined;
|
|
41799
41912
|
}, {
|
|
41800
41913
|
timeSeries: {
|
|
@@ -41826,6 +41939,15 @@ export declare const zListOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
41826
41939
|
start: number;
|
|
41827
41940
|
end: number;
|
|
41828
41941
|
dataset: string;
|
|
41942
|
+
annotations?: {
|
|
41943
|
+
label: string;
|
|
41944
|
+
category: string;
|
|
41945
|
+
reason: string;
|
|
41946
|
+
start: number;
|
|
41947
|
+
end: number;
|
|
41948
|
+
type: "system";
|
|
41949
|
+
droppedCount: number;
|
|
41950
|
+
}[] | undefined;
|
|
41829
41951
|
} | undefined;
|
|
41830
41952
|
}>;
|
|
41831
41953
|
export declare const zCreateOrganizationExternalUserData: z.ZodObject<{
|
package/dist/zod.js
CHANGED
|
@@ -8414,7 +8414,16 @@ var zOrganizationEventsTimeseriesResponse = z.object({
|
|
|
8414
8414
|
meta: z.object({
|
|
8415
8415
|
dataset: z.string(),
|
|
8416
8416
|
start: z.number(),
|
|
8417
|
-
end: z.number()
|
|
8417
|
+
end: z.number(),
|
|
8418
|
+
annotations: z.array(z.object({
|
|
8419
|
+
type: z.enum(["system"]),
|
|
8420
|
+
category: z.string(),
|
|
8421
|
+
reason: z.string(),
|
|
8422
|
+
start: z.number(),
|
|
8423
|
+
end: z.number(),
|
|
8424
|
+
droppedCount: z.number(),
|
|
8425
|
+
label: z.string()
|
|
8426
|
+
})).optional()
|
|
8418
8427
|
}).optional(),
|
|
8419
8428
|
timeSeries: z.array(z.object({
|
|
8420
8429
|
values: z.array(z.object({
|
|
@@ -15613,7 +15622,16 @@ var zListOrganizationEventsTimeseriesResponse = z.object({
|
|
|
15613
15622
|
meta: z.object({
|
|
15614
15623
|
dataset: z.string(),
|
|
15615
15624
|
start: z.number(),
|
|
15616
|
-
end: z.number()
|
|
15625
|
+
end: z.number(),
|
|
15626
|
+
annotations: z.array(z.object({
|
|
15627
|
+
type: z.enum(["system"]),
|
|
15628
|
+
category: z.string(),
|
|
15629
|
+
reason: z.string(),
|
|
15630
|
+
start: z.number(),
|
|
15631
|
+
end: z.number(),
|
|
15632
|
+
droppedCount: z.number(),
|
|
15633
|
+
label: z.string()
|
|
15634
|
+
})).optional()
|
|
15617
15635
|
}).optional(),
|
|
15618
15636
|
timeSeries: z.array(z.object({
|
|
15619
15637
|
values: z.array(z.object({
|