@sentry/api 0.203.0 → 0.205.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 +24 -24
- package/dist/pagination.gen.d.ts +13 -13
- package/dist/sdk.gen.d.ts +44 -10
- package/dist/types.gen.d.ts +76 -46
- package/dist/zod.gen.d.ts +116 -56
- package/dist/zod.js +62 -44
- package/package.json +1 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
/**
|
|
3
|
-
* Response type for the POST endpoint
|
|
3
|
+
* Response type for the POST endpoint (default kickoff and step paths).
|
|
4
4
|
*/
|
|
5
5
|
export declare const zAutofixPostResponse: z.ZodObject<{
|
|
6
6
|
run_id: z.ZodNumber;
|
|
@@ -15159,7 +15159,6 @@ export declare const zOrganizationConfigIntegrationsEndpointResponse: z.ZodObjec
|
|
|
15159
15159
|
canAdd: z.ZodBoolean;
|
|
15160
15160
|
canDisable: z.ZodBoolean;
|
|
15161
15161
|
features: z.ZodArray<z.ZodString, "many">;
|
|
15162
|
-
setupDialog: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
15163
15162
|
}, "strip", z.ZodTypeAny, {
|
|
15164
15163
|
name: string;
|
|
15165
15164
|
key: string;
|
|
@@ -15167,7 +15166,6 @@ export declare const zOrganizationConfigIntegrationsEndpointResponse: z.ZodObjec
|
|
|
15167
15166
|
slug: string;
|
|
15168
15167
|
canDisable: boolean;
|
|
15169
15168
|
canAdd: boolean;
|
|
15170
|
-
setupDialog: Record<string, unknown>;
|
|
15171
15169
|
metadata?: unknown;
|
|
15172
15170
|
}, {
|
|
15173
15171
|
name: string;
|
|
@@ -15176,7 +15174,6 @@ export declare const zOrganizationConfigIntegrationsEndpointResponse: z.ZodObjec
|
|
|
15176
15174
|
slug: string;
|
|
15177
15175
|
canDisable: boolean;
|
|
15178
15176
|
canAdd: boolean;
|
|
15179
|
-
setupDialog: Record<string, unknown>;
|
|
15180
15177
|
metadata?: unknown;
|
|
15181
15178
|
}>, "many">;
|
|
15182
15179
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15187,7 +15184,6 @@ export declare const zOrganizationConfigIntegrationsEndpointResponse: z.ZodObjec
|
|
|
15187
15184
|
slug: string;
|
|
15188
15185
|
canDisable: boolean;
|
|
15189
15186
|
canAdd: boolean;
|
|
15190
|
-
setupDialog: Record<string, unknown>;
|
|
15191
15187
|
metadata?: unknown;
|
|
15192
15188
|
}[];
|
|
15193
15189
|
}, {
|
|
@@ -15198,7 +15194,6 @@ export declare const zOrganizationConfigIntegrationsEndpointResponse: z.ZodObjec
|
|
|
15198
15194
|
slug: string;
|
|
15199
15195
|
canDisable: boolean;
|
|
15200
15196
|
canAdd: boolean;
|
|
15201
|
-
setupDialog: Record<string, unknown>;
|
|
15202
15197
|
metadata?: unknown;
|
|
15203
15198
|
}[];
|
|
15204
15199
|
}>;
|
|
@@ -15309,36 +15304,71 @@ export declare const zOrganizationEnvironmentResponse: z.ZodArray<z.ZodObject<{
|
|
|
15309
15304
|
export declare const zOrganizationEventsResponseDict: z.ZodObject<{
|
|
15310
15305
|
data: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
15311
15306
|
meta: z.ZodObject<{
|
|
15312
|
-
fields: z.ZodRecord<z.ZodString, z.ZodString
|
|
15307
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
15308
|
+
units: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNull]>>>;
|
|
15309
|
+
tips: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
15313
15310
|
datasetReason: z.ZodOptional<z.ZodString>;
|
|
15314
15311
|
isMetricsData: z.ZodOptional<z.ZodBoolean>;
|
|
15315
15312
|
isMetricsExtractedData: z.ZodOptional<z.ZodBoolean>;
|
|
15316
|
-
|
|
15317
|
-
|
|
15313
|
+
dataset: z.ZodOptional<z.ZodString>;
|
|
15314
|
+
discoverSplitDecision: z.ZodOptional<z.ZodUnknown>;
|
|
15315
|
+
dataScanned: z.ZodOptional<z.ZodString>;
|
|
15316
|
+
bytesScanned: z.ZodOptional<z.ZodNumber>;
|
|
15317
|
+
debug_info: z.ZodOptional<z.ZodUnknown>;
|
|
15318
|
+
}, "strip", z.ZodTypeAny, {
|
|
15319
|
+
fields?: Record<string, string> | undefined;
|
|
15320
|
+
dataset?: string | undefined;
|
|
15321
|
+
units?: Record<string, string | null> | undefined;
|
|
15322
|
+
tips?: Record<string, string> | undefined;
|
|
15318
15323
|
datasetReason?: string | undefined;
|
|
15319
15324
|
isMetricsData?: boolean | undefined;
|
|
15320
15325
|
isMetricsExtractedData?: boolean | undefined;
|
|
15321
|
-
|
|
15322
|
-
|
|
15326
|
+
discoverSplitDecision?: unknown;
|
|
15327
|
+
dataScanned?: string | undefined;
|
|
15328
|
+
bytesScanned?: number | undefined;
|
|
15329
|
+
debug_info?: unknown;
|
|
15330
|
+
}, {
|
|
15331
|
+
fields?: Record<string, string> | undefined;
|
|
15332
|
+
dataset?: string | undefined;
|
|
15333
|
+
units?: Record<string, string | null> | undefined;
|
|
15334
|
+
tips?: Record<string, string> | undefined;
|
|
15323
15335
|
datasetReason?: string | undefined;
|
|
15324
15336
|
isMetricsData?: boolean | undefined;
|
|
15325
15337
|
isMetricsExtractedData?: boolean | undefined;
|
|
15338
|
+
discoverSplitDecision?: unknown;
|
|
15339
|
+
dataScanned?: string | undefined;
|
|
15340
|
+
bytesScanned?: number | undefined;
|
|
15341
|
+
debug_info?: unknown;
|
|
15326
15342
|
}>;
|
|
15327
15343
|
}, "strip", z.ZodTypeAny, {
|
|
15328
15344
|
data: Record<string, unknown>[];
|
|
15329
15345
|
meta: {
|
|
15330
|
-
fields
|
|
15346
|
+
fields?: Record<string, string> | undefined;
|
|
15347
|
+
dataset?: string | undefined;
|
|
15348
|
+
units?: Record<string, string | null> | undefined;
|
|
15349
|
+
tips?: Record<string, string> | undefined;
|
|
15331
15350
|
datasetReason?: string | undefined;
|
|
15332
15351
|
isMetricsData?: boolean | undefined;
|
|
15333
15352
|
isMetricsExtractedData?: boolean | undefined;
|
|
15353
|
+
discoverSplitDecision?: unknown;
|
|
15354
|
+
dataScanned?: string | undefined;
|
|
15355
|
+
bytesScanned?: number | undefined;
|
|
15356
|
+
debug_info?: unknown;
|
|
15334
15357
|
};
|
|
15335
15358
|
}, {
|
|
15336
15359
|
data: Record<string, unknown>[];
|
|
15337
15360
|
meta: {
|
|
15338
|
-
fields
|
|
15361
|
+
fields?: Record<string, string> | undefined;
|
|
15362
|
+
dataset?: string | undefined;
|
|
15363
|
+
units?: Record<string, string | null> | undefined;
|
|
15364
|
+
tips?: Record<string, string> | undefined;
|
|
15339
15365
|
datasetReason?: string | undefined;
|
|
15340
15366
|
isMetricsData?: boolean | undefined;
|
|
15341
15367
|
isMetricsExtractedData?: boolean | undefined;
|
|
15368
|
+
discoverSplitDecision?: unknown;
|
|
15369
|
+
dataScanned?: string | undefined;
|
|
15370
|
+
bytesScanned?: number | undefined;
|
|
15371
|
+
debug_info?: unknown;
|
|
15342
15372
|
};
|
|
15343
15373
|
}>;
|
|
15344
15374
|
export declare const zOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
@@ -15406,16 +15436,16 @@ export declare const zOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
15406
15436
|
interval: number;
|
|
15407
15437
|
valueUnit: string | null;
|
|
15408
15438
|
valueType: string;
|
|
15439
|
+
dataScanned?: "partial" | "full" | undefined;
|
|
15409
15440
|
order?: number | undefined;
|
|
15410
15441
|
isOther?: boolean | undefined;
|
|
15411
|
-
dataScanned?: "partial" | "full" | undefined;
|
|
15412
15442
|
}, {
|
|
15413
15443
|
interval: number;
|
|
15414
15444
|
valueUnit: string | null;
|
|
15415
15445
|
valueType: string;
|
|
15446
|
+
dataScanned?: "partial" | "full" | undefined;
|
|
15416
15447
|
order?: number | undefined;
|
|
15417
15448
|
isOther?: boolean | undefined;
|
|
15418
|
-
dataScanned?: "partial" | "full" | undefined;
|
|
15419
15449
|
}>;
|
|
15420
15450
|
}, "strip", z.ZodTypeAny, {
|
|
15421
15451
|
values: {
|
|
@@ -15433,9 +15463,9 @@ export declare const zOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
15433
15463
|
interval: number;
|
|
15434
15464
|
valueUnit: string | null;
|
|
15435
15465
|
valueType: string;
|
|
15466
|
+
dataScanned?: "partial" | "full" | undefined;
|
|
15436
15467
|
order?: number | undefined;
|
|
15437
15468
|
isOther?: boolean | undefined;
|
|
15438
|
-
dataScanned?: "partial" | "full" | undefined;
|
|
15439
15469
|
};
|
|
15440
15470
|
groupBy?: {
|
|
15441
15471
|
value: string | number | Record<string, unknown> | null;
|
|
@@ -15457,9 +15487,9 @@ export declare const zOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
15457
15487
|
interval: number;
|
|
15458
15488
|
valueUnit: string | null;
|
|
15459
15489
|
valueType: string;
|
|
15490
|
+
dataScanned?: "partial" | "full" | undefined;
|
|
15460
15491
|
order?: number | undefined;
|
|
15461
15492
|
isOther?: boolean | undefined;
|
|
15462
|
-
dataScanned?: "partial" | "full" | undefined;
|
|
15463
15493
|
};
|
|
15464
15494
|
groupBy?: {
|
|
15465
15495
|
value: string | number | Record<string, unknown> | null;
|
|
@@ -15483,9 +15513,9 @@ export declare const zOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
15483
15513
|
interval: number;
|
|
15484
15514
|
valueUnit: string | null;
|
|
15485
15515
|
valueType: string;
|
|
15516
|
+
dataScanned?: "partial" | "full" | undefined;
|
|
15486
15517
|
order?: number | undefined;
|
|
15487
15518
|
isOther?: boolean | undefined;
|
|
15488
|
-
dataScanned?: "partial" | "full" | undefined;
|
|
15489
15519
|
};
|
|
15490
15520
|
groupBy?: {
|
|
15491
15521
|
value: string | number | Record<string, unknown> | null;
|
|
@@ -15514,9 +15544,9 @@ export declare const zOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
15514
15544
|
interval: number;
|
|
15515
15545
|
valueUnit: string | null;
|
|
15516
15546
|
valueType: string;
|
|
15547
|
+
dataScanned?: "partial" | "full" | undefined;
|
|
15517
15548
|
order?: number | undefined;
|
|
15518
15549
|
isOther?: boolean | undefined;
|
|
15519
|
-
dataScanned?: "partial" | "full" | undefined;
|
|
15520
15550
|
};
|
|
15521
15551
|
groupBy?: {
|
|
15522
15552
|
value: string | number | Record<string, unknown> | null;
|
|
@@ -28470,7 +28500,6 @@ export declare const zListOrganizationConfigIntegrationsResponse: z.ZodObject<{
|
|
|
28470
28500
|
canAdd: z.ZodBoolean;
|
|
28471
28501
|
canDisable: z.ZodBoolean;
|
|
28472
28502
|
features: z.ZodArray<z.ZodString, "many">;
|
|
28473
|
-
setupDialog: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
28474
28503
|
}, "strip", z.ZodTypeAny, {
|
|
28475
28504
|
name: string;
|
|
28476
28505
|
key: string;
|
|
@@ -28478,7 +28507,6 @@ export declare const zListOrganizationConfigIntegrationsResponse: z.ZodObject<{
|
|
|
28478
28507
|
slug: string;
|
|
28479
28508
|
canDisable: boolean;
|
|
28480
28509
|
canAdd: boolean;
|
|
28481
|
-
setupDialog: Record<string, unknown>;
|
|
28482
28510
|
metadata?: unknown;
|
|
28483
28511
|
}, {
|
|
28484
28512
|
name: string;
|
|
@@ -28487,7 +28515,6 @@ export declare const zListOrganizationConfigIntegrationsResponse: z.ZodObject<{
|
|
|
28487
28515
|
slug: string;
|
|
28488
28516
|
canDisable: boolean;
|
|
28489
28517
|
canAdd: boolean;
|
|
28490
|
-
setupDialog: Record<string, unknown>;
|
|
28491
28518
|
metadata?: unknown;
|
|
28492
28519
|
}>, "many">;
|
|
28493
28520
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -28498,7 +28525,6 @@ export declare const zListOrganizationConfigIntegrationsResponse: z.ZodObject<{
|
|
|
28498
28525
|
slug: string;
|
|
28499
28526
|
canDisable: boolean;
|
|
28500
28527
|
canAdd: boolean;
|
|
28501
|
-
setupDialog: Record<string, unknown>;
|
|
28502
28528
|
metadata?: unknown;
|
|
28503
28529
|
}[];
|
|
28504
28530
|
}, {
|
|
@@ -28509,7 +28535,6 @@ export declare const zListOrganizationConfigIntegrationsResponse: z.ZodObject<{
|
|
|
28509
28535
|
slug: string;
|
|
28510
28536
|
canDisable: boolean;
|
|
28511
28537
|
canAdd: boolean;
|
|
28512
|
-
setupDialog: Record<string, unknown>;
|
|
28513
28538
|
metadata?: unknown;
|
|
28514
28539
|
}[];
|
|
28515
28540
|
}>;
|
|
@@ -32451,7 +32476,7 @@ export declare const zUpdateOrganizationDetectorResponse: z.ZodObject<{
|
|
|
32451
32476
|
createdBy?: string | null | undefined;
|
|
32452
32477
|
latestGroup?: Record<string, unknown> | null | undefined;
|
|
32453
32478
|
}>;
|
|
32454
|
-
export declare const
|
|
32479
|
+
export declare const zListOrganizationDiscoverSavedQueriesData: z.ZodObject<{
|
|
32455
32480
|
body: z.ZodOptional<z.ZodNever>;
|
|
32456
32481
|
path: z.ZodObject<{
|
|
32457
32482
|
organization_id_or_slug: z.ZodString;
|
|
@@ -32499,7 +32524,7 @@ export declare const zListOrganizationDiscoverSavedData: z.ZodObject<{
|
|
|
32499
32524
|
} | undefined;
|
|
32500
32525
|
body?: undefined;
|
|
32501
32526
|
}>;
|
|
32502
|
-
export declare const
|
|
32527
|
+
export declare const zListOrganizationDiscoverSavedQueriesResponse: z.ZodArray<z.ZodObject<{
|
|
32503
32528
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
32504
32529
|
query: z.ZodOptional<z.ZodString>;
|
|
32505
32530
|
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -32850,7 +32875,7 @@ export declare const zListOrganizationDiscoverSavedResponse: z.ZodArray<z.ZodObj
|
|
|
32850
32875
|
aggregations?: string[] | undefined;
|
|
32851
32876
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
32852
32877
|
}>, "many">;
|
|
32853
|
-
export declare const
|
|
32878
|
+
export declare const zCreateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
32854
32879
|
body: z.ZodObject<{
|
|
32855
32880
|
name: z.ZodString;
|
|
32856
32881
|
projects: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
@@ -32948,7 +32973,7 @@ export declare const zCreateOrganizationDiscoverSavedData: z.ZodObject<{
|
|
|
32948
32973
|
};
|
|
32949
32974
|
query?: undefined;
|
|
32950
32975
|
}>;
|
|
32951
|
-
export declare const
|
|
32976
|
+
export declare const zCreateOrganizationDiscoverSavedQueryResponse: z.ZodObject<{
|
|
32952
32977
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
32953
32978
|
query: z.ZodOptional<z.ZodString>;
|
|
32954
32979
|
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -33299,7 +33324,7 @@ export declare const zCreateOrganizationDiscoverSavedResponse: z.ZodObject<{
|
|
|
33299
33324
|
aggregations?: string[] | undefined;
|
|
33300
33325
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
33301
33326
|
}>;
|
|
33302
|
-
export declare const
|
|
33327
|
+
export declare const zDeleteOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
33303
33328
|
body: z.ZodOptional<z.ZodNever>;
|
|
33304
33329
|
path: z.ZodObject<{
|
|
33305
33330
|
organization_id_or_slug: z.ZodString;
|
|
@@ -33330,8 +33355,8 @@ export declare const zDeleteOrganizationDiscoverSavedData: z.ZodObject<{
|
|
|
33330
33355
|
/**
|
|
33331
33356
|
* No Content
|
|
33332
33357
|
*/
|
|
33333
|
-
export declare const
|
|
33334
|
-
export declare const
|
|
33358
|
+
export declare const zDeleteOrganizationDiscoverSavedQueryResponse: z.ZodVoid;
|
|
33359
|
+
export declare const zGetOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
33335
33360
|
body: z.ZodOptional<z.ZodNever>;
|
|
33336
33361
|
path: z.ZodObject<{
|
|
33337
33362
|
organization_id_or_slug: z.ZodString;
|
|
@@ -33359,7 +33384,7 @@ export declare const zGetOrganizationDiscoverSavedData: z.ZodObject<{
|
|
|
33359
33384
|
query?: undefined;
|
|
33360
33385
|
body?: undefined;
|
|
33361
33386
|
}>;
|
|
33362
|
-
export declare const
|
|
33387
|
+
export declare const zGetOrganizationDiscoverSavedQueryResponse: z.ZodObject<{
|
|
33363
33388
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
33364
33389
|
query: z.ZodOptional<z.ZodString>;
|
|
33365
33390
|
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -33710,7 +33735,7 @@ export declare const zGetOrganizationDiscoverSavedResponse: z.ZodObject<{
|
|
|
33710
33735
|
aggregations?: string[] | undefined;
|
|
33711
33736
|
exploreQuery?: Record<string, unknown> | undefined;
|
|
33712
33737
|
}>;
|
|
33713
|
-
export declare const
|
|
33738
|
+
export declare const zUpdateOrganizationDiscoverSavedQueryData: z.ZodObject<{
|
|
33714
33739
|
body: z.ZodObject<{
|
|
33715
33740
|
name: z.ZodString;
|
|
33716
33741
|
projects: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
@@ -33813,7 +33838,7 @@ export declare const zUpdateOrganizationDiscoverSavedData: z.ZodObject<{
|
|
|
33813
33838
|
};
|
|
33814
33839
|
query?: undefined;
|
|
33815
33840
|
}>;
|
|
33816
|
-
export declare const
|
|
33841
|
+
export declare const zUpdateOrganizationDiscoverSavedQueryResponse: z.ZodObject<{
|
|
33817
33842
|
environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
33818
33843
|
query: z.ZodOptional<z.ZodString>;
|
|
33819
33844
|
fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -34594,36 +34619,71 @@ export declare const zListOrganizationEventsData: z.ZodObject<{
|
|
|
34594
34619
|
export declare const zListOrganizationEventsResponse: z.ZodObject<{
|
|
34595
34620
|
data: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
|
|
34596
34621
|
meta: z.ZodObject<{
|
|
34597
|
-
fields: z.ZodRecord<z.ZodString, z.ZodString
|
|
34622
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
34623
|
+
units: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNull]>>>;
|
|
34624
|
+
tips: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
34598
34625
|
datasetReason: z.ZodOptional<z.ZodString>;
|
|
34599
34626
|
isMetricsData: z.ZodOptional<z.ZodBoolean>;
|
|
34600
34627
|
isMetricsExtractedData: z.ZodOptional<z.ZodBoolean>;
|
|
34601
|
-
|
|
34602
|
-
|
|
34628
|
+
dataset: z.ZodOptional<z.ZodString>;
|
|
34629
|
+
discoverSplitDecision: z.ZodOptional<z.ZodUnknown>;
|
|
34630
|
+
dataScanned: z.ZodOptional<z.ZodString>;
|
|
34631
|
+
bytesScanned: z.ZodOptional<z.ZodNumber>;
|
|
34632
|
+
debug_info: z.ZodOptional<z.ZodUnknown>;
|
|
34633
|
+
}, "strip", z.ZodTypeAny, {
|
|
34634
|
+
fields?: Record<string, string> | undefined;
|
|
34635
|
+
dataset?: string | undefined;
|
|
34636
|
+
units?: Record<string, string | null> | undefined;
|
|
34637
|
+
tips?: Record<string, string> | undefined;
|
|
34603
34638
|
datasetReason?: string | undefined;
|
|
34604
34639
|
isMetricsData?: boolean | undefined;
|
|
34605
34640
|
isMetricsExtractedData?: boolean | undefined;
|
|
34606
|
-
|
|
34607
|
-
|
|
34641
|
+
discoverSplitDecision?: unknown;
|
|
34642
|
+
dataScanned?: string | undefined;
|
|
34643
|
+
bytesScanned?: number | undefined;
|
|
34644
|
+
debug_info?: unknown;
|
|
34645
|
+
}, {
|
|
34646
|
+
fields?: Record<string, string> | undefined;
|
|
34647
|
+
dataset?: string | undefined;
|
|
34648
|
+
units?: Record<string, string | null> | undefined;
|
|
34649
|
+
tips?: Record<string, string> | undefined;
|
|
34608
34650
|
datasetReason?: string | undefined;
|
|
34609
34651
|
isMetricsData?: boolean | undefined;
|
|
34610
34652
|
isMetricsExtractedData?: boolean | undefined;
|
|
34653
|
+
discoverSplitDecision?: unknown;
|
|
34654
|
+
dataScanned?: string | undefined;
|
|
34655
|
+
bytesScanned?: number | undefined;
|
|
34656
|
+
debug_info?: unknown;
|
|
34611
34657
|
}>;
|
|
34612
34658
|
}, "strip", z.ZodTypeAny, {
|
|
34613
34659
|
data: Record<string, unknown>[];
|
|
34614
34660
|
meta: {
|
|
34615
|
-
fields
|
|
34661
|
+
fields?: Record<string, string> | undefined;
|
|
34662
|
+
dataset?: string | undefined;
|
|
34663
|
+
units?: Record<string, string | null> | undefined;
|
|
34664
|
+
tips?: Record<string, string> | undefined;
|
|
34616
34665
|
datasetReason?: string | undefined;
|
|
34617
34666
|
isMetricsData?: boolean | undefined;
|
|
34618
34667
|
isMetricsExtractedData?: boolean | undefined;
|
|
34668
|
+
discoverSplitDecision?: unknown;
|
|
34669
|
+
dataScanned?: string | undefined;
|
|
34670
|
+
bytesScanned?: number | undefined;
|
|
34671
|
+
debug_info?: unknown;
|
|
34619
34672
|
};
|
|
34620
34673
|
}, {
|
|
34621
34674
|
data: Record<string, unknown>[];
|
|
34622
34675
|
meta: {
|
|
34623
|
-
fields
|
|
34676
|
+
fields?: Record<string, string> | undefined;
|
|
34677
|
+
dataset?: string | undefined;
|
|
34678
|
+
units?: Record<string, string | null> | undefined;
|
|
34679
|
+
tips?: Record<string, string> | undefined;
|
|
34624
34680
|
datasetReason?: string | undefined;
|
|
34625
34681
|
isMetricsData?: boolean | undefined;
|
|
34626
34682
|
isMetricsExtractedData?: boolean | undefined;
|
|
34683
|
+
discoverSplitDecision?: unknown;
|
|
34684
|
+
dataScanned?: string | undefined;
|
|
34685
|
+
bytesScanned?: number | undefined;
|
|
34686
|
+
debug_info?: unknown;
|
|
34627
34687
|
};
|
|
34628
34688
|
}>;
|
|
34629
34689
|
export declare const zListOrganizationEventsTimeseriesData: z.ZodObject<{
|
|
@@ -34799,16 +34859,16 @@ export declare const zListOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
34799
34859
|
interval: number;
|
|
34800
34860
|
valueUnit: string | null;
|
|
34801
34861
|
valueType: string;
|
|
34862
|
+
dataScanned?: "partial" | "full" | undefined;
|
|
34802
34863
|
order?: number | undefined;
|
|
34803
34864
|
isOther?: boolean | undefined;
|
|
34804
|
-
dataScanned?: "partial" | "full" | undefined;
|
|
34805
34865
|
}, {
|
|
34806
34866
|
interval: number;
|
|
34807
34867
|
valueUnit: string | null;
|
|
34808
34868
|
valueType: string;
|
|
34869
|
+
dataScanned?: "partial" | "full" | undefined;
|
|
34809
34870
|
order?: number | undefined;
|
|
34810
34871
|
isOther?: boolean | undefined;
|
|
34811
|
-
dataScanned?: "partial" | "full" | undefined;
|
|
34812
34872
|
}>;
|
|
34813
34873
|
}, "strip", z.ZodTypeAny, {
|
|
34814
34874
|
values: {
|
|
@@ -34826,9 +34886,9 @@ export declare const zListOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
34826
34886
|
interval: number;
|
|
34827
34887
|
valueUnit: string | null;
|
|
34828
34888
|
valueType: string;
|
|
34889
|
+
dataScanned?: "partial" | "full" | undefined;
|
|
34829
34890
|
order?: number | undefined;
|
|
34830
34891
|
isOther?: boolean | undefined;
|
|
34831
|
-
dataScanned?: "partial" | "full" | undefined;
|
|
34832
34892
|
};
|
|
34833
34893
|
groupBy?: {
|
|
34834
34894
|
value: string | number | Record<string, unknown> | null;
|
|
@@ -34850,9 +34910,9 @@ export declare const zListOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
34850
34910
|
interval: number;
|
|
34851
34911
|
valueUnit: string | null;
|
|
34852
34912
|
valueType: string;
|
|
34913
|
+
dataScanned?: "partial" | "full" | undefined;
|
|
34853
34914
|
order?: number | undefined;
|
|
34854
34915
|
isOther?: boolean | undefined;
|
|
34855
|
-
dataScanned?: "partial" | "full" | undefined;
|
|
34856
34916
|
};
|
|
34857
34917
|
groupBy?: {
|
|
34858
34918
|
value: string | number | Record<string, unknown> | null;
|
|
@@ -34876,9 +34936,9 @@ export declare const zListOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
34876
34936
|
interval: number;
|
|
34877
34937
|
valueUnit: string | null;
|
|
34878
34938
|
valueType: string;
|
|
34939
|
+
dataScanned?: "partial" | "full" | undefined;
|
|
34879
34940
|
order?: number | undefined;
|
|
34880
34941
|
isOther?: boolean | undefined;
|
|
34881
|
-
dataScanned?: "partial" | "full" | undefined;
|
|
34882
34942
|
};
|
|
34883
34943
|
groupBy?: {
|
|
34884
34944
|
value: string | number | Record<string, unknown> | null;
|
|
@@ -34907,9 +34967,9 @@ export declare const zListOrganizationEventsTimeseriesResponse: z.ZodObject<{
|
|
|
34907
34967
|
interval: number;
|
|
34908
34968
|
valueUnit: string | null;
|
|
34909
34969
|
valueType: string;
|
|
34970
|
+
dataScanned?: "partial" | "full" | undefined;
|
|
34910
34971
|
order?: number | undefined;
|
|
34911
34972
|
isOther?: boolean | undefined;
|
|
34912
|
-
dataScanned?: "partial" | "full" | undefined;
|
|
34913
34973
|
};
|
|
34914
34974
|
groupBy?: {
|
|
34915
34975
|
value: string | number | Record<string, unknown> | null;
|
|
@@ -46881,7 +46941,7 @@ export declare const zCreateOrganizationReleaseDeployResponse: z.ZodObject<{
|
|
|
46881
46941
|
dateStarted: string | null;
|
|
46882
46942
|
dateFinished: string;
|
|
46883
46943
|
}>;
|
|
46884
|
-
export declare const
|
|
46944
|
+
export declare const zGetOrganizationReplayCountData: z.ZodObject<{
|
|
46885
46945
|
body: z.ZodOptional<z.ZodNever>;
|
|
46886
46946
|
path: z.ZodObject<{
|
|
46887
46947
|
organization_id_or_slug: z.ZodString;
|
|
@@ -46954,7 +47014,7 @@ export declare const zListOrganizationReplayCountData: z.ZodObject<{
|
|
|
46954
47014
|
} | undefined;
|
|
46955
47015
|
body?: undefined;
|
|
46956
47016
|
}>;
|
|
46957
|
-
export declare const
|
|
47017
|
+
export declare const zGetOrganizationReplayCountResponse: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
46958
47018
|
export declare const zListOrganizationReplaySelectorsData: z.ZodObject<{
|
|
46959
47019
|
body: z.ZodOptional<z.ZodNever>;
|
|
46960
47020
|
path: z.ZodObject<{
|
|
@@ -63789,7 +63849,7 @@ export declare const zListProjectReplayViewedByResponse: z.ZodObject<{
|
|
|
63789
63849
|
viewed_by: Record<string, unknown>[];
|
|
63790
63850
|
};
|
|
63791
63851
|
}>;
|
|
63792
|
-
export declare const
|
|
63852
|
+
export declare const zListProjectReplayDeletionJobsData: z.ZodObject<{
|
|
63793
63853
|
body: z.ZodOptional<z.ZodNever>;
|
|
63794
63854
|
path: z.ZodObject<{
|
|
63795
63855
|
organization_id_or_slug: z.ZodString;
|
|
@@ -63817,7 +63877,7 @@ export declare const zListProjectReplaysJobsDeleteData: z.ZodObject<{
|
|
|
63817
63877
|
query?: undefined;
|
|
63818
63878
|
body?: undefined;
|
|
63819
63879
|
}>;
|
|
63820
|
-
export declare const
|
|
63880
|
+
export declare const zListProjectReplayDeletionJobsResponse: z.ZodObject<{
|
|
63821
63881
|
data: z.ZodArray<z.ZodObject<{
|
|
63822
63882
|
id: z.ZodNumber;
|
|
63823
63883
|
dateCreated: z.ZodString;
|
|
@@ -63874,7 +63934,7 @@ export declare const zListProjectReplaysJobsDeleteResponse: z.ZodObject<{
|
|
|
63874
63934
|
countDeleted: number;
|
|
63875
63935
|
}[];
|
|
63876
63936
|
}>;
|
|
63877
|
-
export declare const
|
|
63937
|
+
export declare const zCreateProjectReplayDeletionJobData: z.ZodObject<{
|
|
63878
63938
|
body: z.ZodObject<{
|
|
63879
63939
|
data: z.ZodObject<{
|
|
63880
63940
|
rangeStart: z.ZodString;
|
|
@@ -63947,7 +64007,7 @@ export declare const zCreateProjectReplaysJobsDeleteData: z.ZodObject<{
|
|
|
63947
64007
|
};
|
|
63948
64008
|
query?: undefined;
|
|
63949
64009
|
}>;
|
|
63950
|
-
export declare const
|
|
64010
|
+
export declare const zCreateProjectReplayDeletionJobResponse: z.ZodObject<{
|
|
63951
64011
|
data: z.ZodObject<{
|
|
63952
64012
|
id: z.ZodNumber;
|
|
63953
64013
|
dateCreated: z.ZodString;
|
|
@@ -64004,7 +64064,7 @@ export declare const zCreateProjectReplaysJobsDeleteResponse: z.ZodObject<{
|
|
|
64004
64064
|
countDeleted: number;
|
|
64005
64065
|
};
|
|
64006
64066
|
}>;
|
|
64007
|
-
export declare const
|
|
64067
|
+
export declare const zGetProjectReplayDeletionJobData: z.ZodObject<{
|
|
64008
64068
|
body: z.ZodOptional<z.ZodNever>;
|
|
64009
64069
|
path: z.ZodObject<{
|
|
64010
64070
|
organization_id_or_slug: z.ZodString;
|
|
@@ -64037,7 +64097,7 @@ export declare const zGetProjectReplaysJobsDeleteData: z.ZodObject<{
|
|
|
64037
64097
|
query?: undefined;
|
|
64038
64098
|
body?: undefined;
|
|
64039
64099
|
}>;
|
|
64040
|
-
export declare const
|
|
64100
|
+
export declare const zGetProjectReplayDeletionJobResponse: z.ZodObject<{
|
|
64041
64101
|
data: z.ZodObject<{
|
|
64042
64102
|
id: z.ZodNumber;
|
|
64043
64103
|
dateCreated: z.ZodString;
|
|
@@ -73127,7 +73187,7 @@ export declare const zCreateOrganizationIssueAutofixData: z.ZodObject<{
|
|
|
73127
73187
|
} | undefined;
|
|
73128
73188
|
}>;
|
|
73129
73189
|
/**
|
|
73130
|
-
* Response type for the POST endpoint
|
|
73190
|
+
* Response type for the POST endpoint (default kickoff and step paths).
|
|
73131
73191
|
*/
|
|
73132
73192
|
export declare const zCreateOrganizationIssueAutofixResponse: z.ZodObject<{
|
|
73133
73193
|
run_id: z.ZodNumber;
|