@sentry/api 0.204.0 → 0.206.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 +40 -10
- package/dist/zod.gen.d.ts +98 -38
- package/dist/zod.js +26 -8
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export type ClientOptions = {
|
|
|
2
2
|
baseUrl: 'https://{region}.sentry.io' | 'https://{region}.sentry.io' | 'https://{region}.sentry.io' | 'https://{region}.sentry.io' | (string & {});
|
|
3
3
|
};
|
|
4
4
|
/**
|
|
5
|
-
* Response type for the POST endpoint
|
|
5
|
+
* Response type for the POST endpoint (default kickoff and step paths).
|
|
6
6
|
*/
|
|
7
7
|
export type AutofixPostResponse = {
|
|
8
8
|
run_id: number;
|
|
@@ -5687,9 +5687,6 @@ export type OrganizationConfigIntegrationsEndpointResponse = {
|
|
|
5687
5687
|
canAdd: boolean;
|
|
5688
5688
|
canDisable: boolean;
|
|
5689
5689
|
features: Array<string>;
|
|
5690
|
-
setupDialog: {
|
|
5691
|
-
[key: string]: unknown;
|
|
5692
|
-
};
|
|
5693
5690
|
}>;
|
|
5694
5691
|
};
|
|
5695
5692
|
export type OrganizationDetailsPut = {
|
|
@@ -5875,13 +5872,31 @@ export type OrganizationEventsResponseDict = {
|
|
|
5875
5872
|
data: Array<{
|
|
5876
5873
|
[key: string]: unknown;
|
|
5877
5874
|
}>;
|
|
5875
|
+
/**
|
|
5876
|
+
* Meta envelope emitted by `handle_results_with_meta` and the
|
|
5877
|
+
* empty-projects short-circuit. Every key is optional because the path
|
|
5878
|
+
* that emits it depends on flags (`standard_meta`, debug, dataset) — the
|
|
5879
|
+
* no-projects path only carries `tips`, the standard path carries
|
|
5880
|
+
* everything below.
|
|
5881
|
+
*/
|
|
5878
5882
|
meta: {
|
|
5879
|
-
fields
|
|
5883
|
+
fields?: {
|
|
5884
|
+
[key: string]: string;
|
|
5885
|
+
};
|
|
5886
|
+
units?: {
|
|
5887
|
+
[key: string]: string | null;
|
|
5888
|
+
};
|
|
5889
|
+
tips?: {
|
|
5880
5890
|
[key: string]: string;
|
|
5881
5891
|
};
|
|
5882
5892
|
datasetReason?: string;
|
|
5883
5893
|
isMetricsData?: boolean;
|
|
5884
5894
|
isMetricsExtractedData?: boolean;
|
|
5895
|
+
dataset?: string;
|
|
5896
|
+
discoverSplitDecision?: unknown;
|
|
5897
|
+
dataScanned?: string;
|
|
5898
|
+
bytesScanned?: number;
|
|
5899
|
+
debug_info?: unknown;
|
|
5885
5900
|
};
|
|
5886
5901
|
};
|
|
5887
5902
|
export type OrganizationEventsTimeseriesResponse = {
|
|
@@ -10431,9 +10446,6 @@ export type ListOrganizationConfigIntegrationsResponses = {
|
|
|
10431
10446
|
canAdd: boolean;
|
|
10432
10447
|
canDisable: boolean;
|
|
10433
10448
|
features: Array<string>;
|
|
10434
|
-
setupDialog: {
|
|
10435
|
-
[key: string]: unknown;
|
|
10436
|
-
};
|
|
10437
10449
|
}>;
|
|
10438
10450
|
};
|
|
10439
10451
|
};
|
|
@@ -12902,13 +12914,31 @@ export type ListOrganizationEventsResponses = {
|
|
|
12902
12914
|
data: Array<{
|
|
12903
12915
|
[key: string]: unknown;
|
|
12904
12916
|
}>;
|
|
12917
|
+
/**
|
|
12918
|
+
* Meta envelope emitted by `handle_results_with_meta` and the
|
|
12919
|
+
* empty-projects short-circuit. Every key is optional because the path
|
|
12920
|
+
* that emits it depends on flags (`standard_meta`, debug, dataset) — the
|
|
12921
|
+
* no-projects path only carries `tips`, the standard path carries
|
|
12922
|
+
* everything below.
|
|
12923
|
+
*/
|
|
12905
12924
|
meta: {
|
|
12906
|
-
fields
|
|
12925
|
+
fields?: {
|
|
12926
|
+
[key: string]: string;
|
|
12927
|
+
};
|
|
12928
|
+
units?: {
|
|
12929
|
+
[key: string]: string | null;
|
|
12930
|
+
};
|
|
12931
|
+
tips?: {
|
|
12907
12932
|
[key: string]: string;
|
|
12908
12933
|
};
|
|
12909
12934
|
datasetReason?: string;
|
|
12910
12935
|
isMetricsData?: boolean;
|
|
12911
12936
|
isMetricsExtractedData?: boolean;
|
|
12937
|
+
dataset?: string;
|
|
12938
|
+
discoverSplitDecision?: unknown;
|
|
12939
|
+
dataScanned?: string;
|
|
12940
|
+
bytesScanned?: number;
|
|
12941
|
+
debug_info?: unknown;
|
|
12912
12942
|
};
|
|
12913
12943
|
};
|
|
12914
12944
|
};
|
|
@@ -32211,7 +32241,7 @@ export type CreateOrganizationIssueAutofixErrors = {
|
|
|
32211
32241
|
};
|
|
32212
32242
|
export type CreateOrganizationIssueAutofixResponses = {
|
|
32213
32243
|
/**
|
|
32214
|
-
* Response type for the POST endpoint
|
|
32244
|
+
* Response type for the POST endpoint (default kickoff and step paths).
|
|
32215
32245
|
*/
|
|
32216
32246
|
202: {
|
|
32217
32247
|
run_id: number;
|
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
|
}>;
|
|
@@ -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;
|
|
@@ -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;
|
package/dist/zod.js
CHANGED
|
@@ -6611,8 +6611,7 @@ var zOrganizationConfigIntegrationsEndpointResponse = z.object({
|
|
|
6611
6611
|
metadata: z.unknown(),
|
|
6612
6612
|
canAdd: z.boolean(),
|
|
6613
6613
|
canDisable: z.boolean(),
|
|
6614
|
-
features: z.array(z.string())
|
|
6615
|
-
setupDialog: z.record(z.unknown())
|
|
6614
|
+
features: z.array(z.string())
|
|
6616
6615
|
}))
|
|
6617
6616
|
});
|
|
6618
6617
|
var zOrganizationDetailsPut = z.object({
|
|
@@ -6681,10 +6680,20 @@ var zOrganizationEnvironmentResponse = z.array(z.object({
|
|
|
6681
6680
|
var zOrganizationEventsResponseDict = z.object({
|
|
6682
6681
|
data: z.array(z.record(z.unknown())),
|
|
6683
6682
|
meta: z.object({
|
|
6684
|
-
fields: z.record(z.string()),
|
|
6683
|
+
fields: z.record(z.string()).optional(),
|
|
6684
|
+
units: z.record(z.union([
|
|
6685
|
+
z.string(),
|
|
6686
|
+
z.null()
|
|
6687
|
+
])).optional(),
|
|
6688
|
+
tips: z.record(z.string()).optional(),
|
|
6685
6689
|
datasetReason: z.string().optional(),
|
|
6686
6690
|
isMetricsData: z.boolean().optional(),
|
|
6687
|
-
isMetricsExtractedData: z.boolean().optional()
|
|
6691
|
+
isMetricsExtractedData: z.boolean().optional(),
|
|
6692
|
+
dataset: z.string().optional(),
|
|
6693
|
+
discoverSplitDecision: z.unknown().optional(),
|
|
6694
|
+
dataScanned: z.string().optional(),
|
|
6695
|
+
bytesScanned: z.number().int().optional(),
|
|
6696
|
+
debug_info: z.unknown().optional()
|
|
6688
6697
|
})
|
|
6689
6698
|
});
|
|
6690
6699
|
var zOrganizationEventsTimeseriesResponse = z.object({
|
|
@@ -11033,8 +11042,7 @@ var zListOrganizationConfigIntegrationsResponse = z.object({
|
|
|
11033
11042
|
metadata: z.unknown(),
|
|
11034
11043
|
canAdd: z.boolean(),
|
|
11035
11044
|
canDisable: z.boolean(),
|
|
11036
|
-
features: z.array(z.string())
|
|
11037
|
-
setupDialog: z.record(z.unknown())
|
|
11045
|
+
features: z.array(z.string())
|
|
11038
11046
|
}))
|
|
11039
11047
|
});
|
|
11040
11048
|
var zListOrganizationDashboardsData = z.object({
|
|
@@ -12833,10 +12841,20 @@ var zListOrganizationEventsData = z.object({
|
|
|
12833
12841
|
var zListOrganizationEventsResponse = z.object({
|
|
12834
12842
|
data: z.array(z.record(z.unknown())),
|
|
12835
12843
|
meta: z.object({
|
|
12836
|
-
fields: z.record(z.string()),
|
|
12844
|
+
fields: z.record(z.string()).optional(),
|
|
12845
|
+
units: z.record(z.union([
|
|
12846
|
+
z.string(),
|
|
12847
|
+
z.null()
|
|
12848
|
+
])).optional(),
|
|
12849
|
+
tips: z.record(z.string()).optional(),
|
|
12837
12850
|
datasetReason: z.string().optional(),
|
|
12838
12851
|
isMetricsData: z.boolean().optional(),
|
|
12839
|
-
isMetricsExtractedData: z.boolean().optional()
|
|
12852
|
+
isMetricsExtractedData: z.boolean().optional(),
|
|
12853
|
+
dataset: z.string().optional(),
|
|
12854
|
+
discoverSplitDecision: z.unknown().optional(),
|
|
12855
|
+
dataScanned: z.string().optional(),
|
|
12856
|
+
bytesScanned: z.number().int().optional(),
|
|
12857
|
+
debug_info: z.unknown().optional()
|
|
12840
12858
|
})
|
|
12841
12859
|
});
|
|
12842
12860
|
var zListOrganizationEventsTimeseriesData = z.object({
|