@sentry/api 0.153.0 → 0.155.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/zod.gen.d.ts CHANGED
@@ -11665,6 +11665,40 @@ export declare const zListTeamProjectResponse: z.ZodArray<z.ZodObject<{
11665
11665
  sessionStats?: unknown;
11666
11666
  latestDeploys?: Record<string, Record<string, string>> | null | undefined;
11667
11667
  }>, "many">;
11668
+ export declare const zListTraceItemAttributesResponse: z.ZodArray<z.ZodObject<{
11669
+ key: z.ZodString;
11670
+ name: z.ZodString;
11671
+ secondaryAliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
11672
+ attributeSource: z.ZodObject<{
11673
+ source_type: z.ZodEnum<["sentry", "user"]>;
11674
+ is_transformed_alias: z.ZodOptional<z.ZodBoolean>;
11675
+ }, "strip", z.ZodTypeAny, {
11676
+ source_type: "user" | "sentry";
11677
+ is_transformed_alias?: boolean | undefined;
11678
+ }, {
11679
+ source_type: "user" | "sentry";
11680
+ is_transformed_alias?: boolean | undefined;
11681
+ }>;
11682
+ attributeType: z.ZodEnum<["string", "number", "boolean"]>;
11683
+ }, "strip", z.ZodTypeAny, {
11684
+ name: string;
11685
+ key: string;
11686
+ attributeType: "string" | "number" | "boolean";
11687
+ attributeSource: {
11688
+ source_type: "user" | "sentry";
11689
+ is_transformed_alias?: boolean | undefined;
11690
+ };
11691
+ secondaryAliases?: string[] | undefined;
11692
+ }, {
11693
+ name: string;
11694
+ key: string;
11695
+ attributeType: "string" | "number" | "boolean";
11696
+ attributeSource: {
11697
+ source_type: "user" | "sentry";
11698
+ is_transformed_alias?: boolean | undefined;
11699
+ };
11700
+ secondaryAliases?: string[] | undefined;
11701
+ }>, "many">;
11668
11702
  export declare const zListWorkflow: z.ZodArray<z.ZodObject<{
11669
11703
  id: z.ZodString;
11670
11704
  name: z.ZodString;
@@ -13648,7 +13682,6 @@ export declare const zOrganizationDetailsPut: z.ZodObject<{
13648
13682
  name: z.ZodOptional<z.ZodString>;
13649
13683
  isEarlyAdopter: z.ZodOptional<z.ZodBoolean>;
13650
13684
  hideAiFeatures: z.ZodOptional<z.ZodBoolean>;
13651
- codecovAccess: z.ZodOptional<z.ZodBoolean>;
13652
13685
  defaultRole: z.ZodOptional<z.ZodEnum<["member", "admin", "manager", "owner"]>>;
13653
13686
  openMembership: z.ZodOptional<z.ZodBoolean>;
13654
13687
  eventsMemberAdmin: z.ZodOptional<z.ZodBoolean>;
@@ -13692,7 +13725,6 @@ export declare const zOrganizationDetailsPut: z.ZodObject<{
13692
13725
  relayPiiConfig?: string | undefined;
13693
13726
  debugFilesRole?: "member" | "admin" | "manager" | "owner" | undefined;
13694
13727
  hideAiFeatures?: boolean | undefined;
13695
- codecovAccess?: boolean | undefined;
13696
13728
  defaultRole?: "member" | "admin" | "manager" | "owner" | undefined;
13697
13729
  openMembership?: boolean | undefined;
13698
13730
  eventsMemberAdmin?: boolean | undefined;
@@ -13724,7 +13756,6 @@ export declare const zOrganizationDetailsPut: z.ZodObject<{
13724
13756
  relayPiiConfig?: string | undefined;
13725
13757
  debugFilesRole?: "member" | "admin" | "manager" | "owner" | undefined;
13726
13758
  hideAiFeatures?: boolean | undefined;
13727
- codecovAccess?: boolean | undefined;
13728
13759
  defaultRole?: "member" | "admin" | "manager" | "owner" | undefined;
13729
13760
  openMembership?: boolean | undefined;
13730
13761
  eventsMemberAdmin?: boolean | undefined;
@@ -16734,7 +16765,6 @@ export declare const zOrganizationWithProjectsAndTeams: z.ZodObject<{
16734
16765
  lastModified?: string | undefined;
16735
16766
  }>, "many">;
16736
16767
  pendingAccessRequests: z.ZodNumber;
16737
- codecovAccess: z.ZodBoolean;
16738
16768
  hideAiFeatures: z.ZodBoolean;
16739
16769
  aggregatedDataConsent: z.ZodBoolean;
16740
16770
  isDynamicallySampled: z.ZodBoolean;
@@ -17676,7 +17706,6 @@ export declare const zOrganizationWithProjectsAndTeams: z.ZodObject<{
17676
17706
  isDynamicallySampled: boolean;
17677
17707
  debugFilesRole: string;
17678
17708
  hideAiFeatures: boolean;
17679
- codecovAccess: boolean;
17680
17709
  defaultRole: string;
17681
17710
  openMembership: boolean;
17682
17711
  eventsMemberAdmin: boolean;
@@ -17946,7 +17975,6 @@ export declare const zOrganizationWithProjectsAndTeams: z.ZodObject<{
17946
17975
  isDynamicallySampled: boolean;
17947
17976
  debugFilesRole: string;
17948
17977
  hideAiFeatures: boolean;
17949
- codecovAccess: boolean;
17950
17978
  defaultRole: string;
17951
17979
  openMembership: boolean;
17952
17980
  eventsMemberAdmin: boolean;
@@ -21291,20 +21319,20 @@ export declare const zSizeAnalysisResponse: z.ZodObject<{
21291
21319
  diffItems: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodNull]>;
21292
21320
  }, "strip", z.ZodTypeAny, {
21293
21321
  path: string;
21322
+ itemType: string | null;
21294
21323
  type: string;
21295
21324
  diffItems: unknown[] | null;
21296
21325
  sizeDiff: number;
21297
21326
  headSize: number | null;
21298
21327
  baseSize: number | null;
21299
- itemType: string | null;
21300
21328
  }, {
21301
21329
  path: string;
21330
+ itemType: string | null;
21302
21331
  type: string;
21303
21332
  diffItems: unknown[] | null;
21304
21333
  sizeDiff: number;
21305
21334
  headSize: number | null;
21306
21335
  baseSize: number | null;
21307
- itemType: string | null;
21308
21336
  }>, "many">, z.ZodNull]>;
21309
21337
  insightDiffItems: z.ZodUnion<[z.ZodArray<z.ZodObject<{
21310
21338
  insightType: z.ZodString;
@@ -21320,20 +21348,20 @@ export declare const zSizeAnalysisResponse: z.ZodObject<{
21320
21348
  diffItems: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodNull]>;
21321
21349
  }, "strip", z.ZodTypeAny, {
21322
21350
  path: string;
21351
+ itemType: string | null;
21323
21352
  type: string;
21324
21353
  diffItems: unknown[] | null;
21325
21354
  sizeDiff: number;
21326
21355
  headSize: number | null;
21327
21356
  baseSize: number | null;
21328
- itemType: string | null;
21329
21357
  }, {
21330
21358
  path: string;
21359
+ itemType: string | null;
21331
21360
  type: string;
21332
21361
  diffItems: unknown[] | null;
21333
21362
  sizeDiff: number;
21334
21363
  headSize: number | null;
21335
21364
  baseSize: number | null;
21336
- itemType: string | null;
21337
21365
  }>, "many">;
21338
21366
  groupDiffs: z.ZodArray<z.ZodObject<{
21339
21367
  sizeDiff: z.ZodNumber;
@@ -21345,20 +21373,20 @@ export declare const zSizeAnalysisResponse: z.ZodObject<{
21345
21373
  diffItems: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodNull]>;
21346
21374
  }, "strip", z.ZodTypeAny, {
21347
21375
  path: string;
21376
+ itemType: string | null;
21348
21377
  type: string;
21349
21378
  diffItems: unknown[] | null;
21350
21379
  sizeDiff: number;
21351
21380
  headSize: number | null;
21352
21381
  baseSize: number | null;
21353
- itemType: string | null;
21354
21382
  }, {
21355
21383
  path: string;
21384
+ itemType: string | null;
21356
21385
  type: string;
21357
21386
  diffItems: unknown[] | null;
21358
21387
  sizeDiff: number;
21359
21388
  headSize: number | null;
21360
21389
  baseSize: number | null;
21361
- itemType: string | null;
21362
21390
  }>, "many">;
21363
21391
  }, "strip", z.ZodTypeAny, {
21364
21392
  status: string;
@@ -21366,21 +21394,21 @@ export declare const zSizeAnalysisResponse: z.ZodObject<{
21366
21394
  totalSavingsChange: number;
21367
21395
  fileDiffs: {
21368
21396
  path: string;
21397
+ itemType: string | null;
21369
21398
  type: string;
21370
21399
  diffItems: unknown[] | null;
21371
21400
  sizeDiff: number;
21372
21401
  headSize: number | null;
21373
21402
  baseSize: number | null;
21374
- itemType: string | null;
21375
21403
  }[];
21376
21404
  groupDiffs: {
21377
21405
  path: string;
21406
+ itemType: string | null;
21378
21407
  type: string;
21379
21408
  diffItems: unknown[] | null;
21380
21409
  sizeDiff: number;
21381
21410
  headSize: number | null;
21382
21411
  baseSize: number | null;
21383
- itemType: string | null;
21384
21412
  }[];
21385
21413
  }, {
21386
21414
  status: string;
@@ -21388,21 +21416,21 @@ export declare const zSizeAnalysisResponse: z.ZodObject<{
21388
21416
  totalSavingsChange: number;
21389
21417
  fileDiffs: {
21390
21418
  path: string;
21419
+ itemType: string | null;
21391
21420
  type: string;
21392
21421
  diffItems: unknown[] | null;
21393
21422
  sizeDiff: number;
21394
21423
  headSize: number | null;
21395
21424
  baseSize: number | null;
21396
- itemType: string | null;
21397
21425
  }[];
21398
21426
  groupDiffs: {
21399
21427
  path: string;
21428
+ itemType: string | null;
21400
21429
  type: string;
21401
21430
  diffItems: unknown[] | null;
21402
21431
  sizeDiff: number;
21403
21432
  headSize: number | null;
21404
21433
  baseSize: number | null;
21405
- itemType: string | null;
21406
21434
  }[];
21407
21435
  }>, "many">, z.ZodNull]>;
21408
21436
  }, "strip", z.ZodTypeAny, {
@@ -21421,12 +21449,12 @@ export declare const zSizeAnalysisResponse: z.ZodObject<{
21421
21449
  } | null;
21422
21450
  diffItems: {
21423
21451
  path: string;
21452
+ itemType: string | null;
21424
21453
  type: string;
21425
21454
  diffItems: unknown[] | null;
21426
21455
  sizeDiff: number;
21427
21456
  headSize: number | null;
21428
21457
  baseSize: number | null;
21429
- itemType: string | null;
21430
21458
  }[] | null;
21431
21459
  insightDiffItems: {
21432
21460
  status: string;
@@ -21434,21 +21462,21 @@ export declare const zSizeAnalysisResponse: z.ZodObject<{
21434
21462
  totalSavingsChange: number;
21435
21463
  fileDiffs: {
21436
21464
  path: string;
21465
+ itemType: string | null;
21437
21466
  type: string;
21438
21467
  diffItems: unknown[] | null;
21439
21468
  sizeDiff: number;
21440
21469
  headSize: number | null;
21441
21470
  baseSize: number | null;
21442
- itemType: string | null;
21443
21471
  }[];
21444
21472
  groupDiffs: {
21445
21473
  path: string;
21474
+ itemType: string | null;
21446
21475
  type: string;
21447
21476
  diffItems: unknown[] | null;
21448
21477
  sizeDiff: number;
21449
21478
  headSize: number | null;
21450
21479
  baseSize: number | null;
21451
- itemType: string | null;
21452
21480
  }[];
21453
21481
  }[] | null;
21454
21482
  }, {
@@ -21467,12 +21495,12 @@ export declare const zSizeAnalysisResponse: z.ZodObject<{
21467
21495
  } | null;
21468
21496
  diffItems: {
21469
21497
  path: string;
21498
+ itemType: string | null;
21470
21499
  type: string;
21471
21500
  diffItems: unknown[] | null;
21472
21501
  sizeDiff: number;
21473
21502
  headSize: number | null;
21474
21503
  baseSize: number | null;
21475
- itemType: string | null;
21476
21504
  }[] | null;
21477
21505
  insightDiffItems: {
21478
21506
  status: string;
@@ -21480,21 +21508,21 @@ export declare const zSizeAnalysisResponse: z.ZodObject<{
21480
21508
  totalSavingsChange: number;
21481
21509
  fileDiffs: {
21482
21510
  path: string;
21511
+ itemType: string | null;
21483
21512
  type: string;
21484
21513
  diffItems: unknown[] | null;
21485
21514
  sizeDiff: number;
21486
21515
  headSize: number | null;
21487
21516
  baseSize: number | null;
21488
- itemType: string | null;
21489
21517
  }[];
21490
21518
  groupDiffs: {
21491
21519
  path: string;
21520
+ itemType: string | null;
21492
21521
  type: string;
21493
21522
  diffItems: unknown[] | null;
21494
21523
  sizeDiff: number;
21495
21524
  headSize: number | null;
21496
21525
  baseSize: number | null;
21497
- itemType: string | null;
21498
21526
  }[];
21499
21527
  }[] | null;
21500
21528
  }>, "many">, z.ZodNull]>;
@@ -21561,12 +21589,12 @@ export declare const zSizeAnalysisResponse: z.ZodObject<{
21561
21589
  } | null;
21562
21590
  diffItems: {
21563
21591
  path: string;
21592
+ itemType: string | null;
21564
21593
  type: string;
21565
21594
  diffItems: unknown[] | null;
21566
21595
  sizeDiff: number;
21567
21596
  headSize: number | null;
21568
21597
  baseSize: number | null;
21569
- itemType: string | null;
21570
21598
  }[] | null;
21571
21599
  insightDiffItems: {
21572
21600
  status: string;
@@ -21574,21 +21602,21 @@ export declare const zSizeAnalysisResponse: z.ZodObject<{
21574
21602
  totalSavingsChange: number;
21575
21603
  fileDiffs: {
21576
21604
  path: string;
21605
+ itemType: string | null;
21577
21606
  type: string;
21578
21607
  diffItems: unknown[] | null;
21579
21608
  sizeDiff: number;
21580
21609
  headSize: number | null;
21581
21610
  baseSize: number | null;
21582
- itemType: string | null;
21583
21611
  }[];
21584
21612
  groupDiffs: {
21585
21613
  path: string;
21614
+ itemType: string | null;
21586
21615
  type: string;
21587
21616
  diffItems: unknown[] | null;
21588
21617
  sizeDiff: number;
21589
21618
  headSize: number | null;
21590
21619
  baseSize: number | null;
21591
- itemType: string | null;
21592
21620
  }[];
21593
21621
  }[] | null;
21594
21622
  }[] | null;
@@ -21655,12 +21683,12 @@ export declare const zSizeAnalysisResponse: z.ZodObject<{
21655
21683
  } | null;
21656
21684
  diffItems: {
21657
21685
  path: string;
21686
+ itemType: string | null;
21658
21687
  type: string;
21659
21688
  diffItems: unknown[] | null;
21660
21689
  sizeDiff: number;
21661
21690
  headSize: number | null;
21662
21691
  baseSize: number | null;
21663
- itemType: string | null;
21664
21692
  }[] | null;
21665
21693
  insightDiffItems: {
21666
21694
  status: string;
@@ -21668,21 +21696,21 @@ export declare const zSizeAnalysisResponse: z.ZodObject<{
21668
21696
  totalSavingsChange: number;
21669
21697
  fileDiffs: {
21670
21698
  path: string;
21699
+ itemType: string | null;
21671
21700
  type: string;
21672
21701
  diffItems: unknown[] | null;
21673
21702
  sizeDiff: number;
21674
21703
  headSize: number | null;
21675
21704
  baseSize: number | null;
21676
- itemType: string | null;
21677
21705
  }[];
21678
21706
  groupDiffs: {
21679
21707
  path: string;
21708
+ itemType: string | null;
21680
21709
  type: string;
21681
21710
  diffItems: unknown[] | null;
21682
21711
  sizeDiff: number;
21683
21712
  headSize: number | null;
21684
21713
  baseSize: number | null;
21685
- itemType: string | null;
21686
21714
  }[];
21687
21715
  }[] | null;
21688
21716
  }[] | null;
@@ -24235,7 +24263,6 @@ export declare const zUpdateAnOrganizationData: z.ZodObject<{
24235
24263
  name: z.ZodOptional<z.ZodString>;
24236
24264
  isEarlyAdopter: z.ZodOptional<z.ZodBoolean>;
24237
24265
  hideAiFeatures: z.ZodOptional<z.ZodBoolean>;
24238
- codecovAccess: z.ZodOptional<z.ZodBoolean>;
24239
24266
  defaultRole: z.ZodOptional<z.ZodEnum<["member", "admin", "manager", "owner"]>>;
24240
24267
  openMembership: z.ZodOptional<z.ZodBoolean>;
24241
24268
  eventsMemberAdmin: z.ZodOptional<z.ZodBoolean>;
@@ -24279,7 +24306,6 @@ export declare const zUpdateAnOrganizationData: z.ZodObject<{
24279
24306
  relayPiiConfig?: string | undefined;
24280
24307
  debugFilesRole?: "member" | "admin" | "manager" | "owner" | undefined;
24281
24308
  hideAiFeatures?: boolean | undefined;
24282
- codecovAccess?: boolean | undefined;
24283
24309
  defaultRole?: "member" | "admin" | "manager" | "owner" | undefined;
24284
24310
  openMembership?: boolean | undefined;
24285
24311
  eventsMemberAdmin?: boolean | undefined;
@@ -24311,7 +24337,6 @@ export declare const zUpdateAnOrganizationData: z.ZodObject<{
24311
24337
  relayPiiConfig?: string | undefined;
24312
24338
  debugFilesRole?: "member" | "admin" | "manager" | "owner" | undefined;
24313
24339
  hideAiFeatures?: boolean | undefined;
24314
- codecovAccess?: boolean | undefined;
24315
24340
  defaultRole?: "member" | "admin" | "manager" | "owner" | undefined;
24316
24341
  openMembership?: boolean | undefined;
24317
24342
  eventsMemberAdmin?: boolean | undefined;
@@ -24357,7 +24382,6 @@ export declare const zUpdateAnOrganizationData: z.ZodObject<{
24357
24382
  relayPiiConfig?: string | undefined;
24358
24383
  debugFilesRole?: "member" | "admin" | "manager" | "owner" | undefined;
24359
24384
  hideAiFeatures?: boolean | undefined;
24360
- codecovAccess?: boolean | undefined;
24361
24385
  defaultRole?: "member" | "admin" | "manager" | "owner" | undefined;
24362
24386
  openMembership?: boolean | undefined;
24363
24387
  eventsMemberAdmin?: boolean | undefined;
@@ -24395,7 +24419,6 @@ export declare const zUpdateAnOrganizationData: z.ZodObject<{
24395
24419
  relayPiiConfig?: string | undefined;
24396
24420
  debugFilesRole?: "member" | "admin" | "manager" | "owner" | undefined;
24397
24421
  hideAiFeatures?: boolean | undefined;
24398
- codecovAccess?: boolean | undefined;
24399
24422
  defaultRole?: "member" | "admin" | "manager" | "owner" | undefined;
24400
24423
  openMembership?: boolean | undefined;
24401
24424
  eventsMemberAdmin?: boolean | undefined;
@@ -24591,7 +24614,6 @@ export declare const zUpdateAnOrganizationResponse: z.ZodObject<{
24591
24614
  lastModified?: string | undefined;
24592
24615
  }>, "many">;
24593
24616
  pendingAccessRequests: z.ZodNumber;
24594
- codecovAccess: z.ZodBoolean;
24595
24617
  hideAiFeatures: z.ZodBoolean;
24596
24618
  aggregatedDataConsent: z.ZodBoolean;
24597
24619
  isDynamicallySampled: z.ZodBoolean;
@@ -25533,7 +25555,6 @@ export declare const zUpdateAnOrganizationResponse: z.ZodObject<{
25533
25555
  isDynamicallySampled: boolean;
25534
25556
  debugFilesRole: string;
25535
25557
  hideAiFeatures: boolean;
25536
- codecovAccess: boolean;
25537
25558
  defaultRole: string;
25538
25559
  openMembership: boolean;
25539
25560
  eventsMemberAdmin: boolean;
@@ -25803,7 +25824,6 @@ export declare const zUpdateAnOrganizationResponse: z.ZodObject<{
25803
25824
  isDynamicallySampled: boolean;
25804
25825
  debugFilesRole: string;
25805
25826
  hideAiFeatures: boolean;
25806
- codecovAccess: boolean;
25807
25827
  defaultRole: string;
25808
25828
  openMembership: boolean;
25809
25829
  eventsMemberAdmin: boolean;
@@ -39903,20 +39923,20 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
39903
39923
  diffItems: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodNull]>;
39904
39924
  }, "strip", z.ZodTypeAny, {
39905
39925
  path: string;
39926
+ itemType: string | null;
39906
39927
  type: string;
39907
39928
  diffItems: unknown[] | null;
39908
39929
  sizeDiff: number;
39909
39930
  headSize: number | null;
39910
39931
  baseSize: number | null;
39911
- itemType: string | null;
39912
39932
  }, {
39913
39933
  path: string;
39934
+ itemType: string | null;
39914
39935
  type: string;
39915
39936
  diffItems: unknown[] | null;
39916
39937
  sizeDiff: number;
39917
39938
  headSize: number | null;
39918
39939
  baseSize: number | null;
39919
- itemType: string | null;
39920
39940
  }>, "many">, z.ZodNull]>;
39921
39941
  insightDiffItems: z.ZodUnion<[z.ZodArray<z.ZodObject<{
39922
39942
  insightType: z.ZodString;
@@ -39932,20 +39952,20 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
39932
39952
  diffItems: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodNull]>;
39933
39953
  }, "strip", z.ZodTypeAny, {
39934
39954
  path: string;
39955
+ itemType: string | null;
39935
39956
  type: string;
39936
39957
  diffItems: unknown[] | null;
39937
39958
  sizeDiff: number;
39938
39959
  headSize: number | null;
39939
39960
  baseSize: number | null;
39940
- itemType: string | null;
39941
39961
  }, {
39942
39962
  path: string;
39963
+ itemType: string | null;
39943
39964
  type: string;
39944
39965
  diffItems: unknown[] | null;
39945
39966
  sizeDiff: number;
39946
39967
  headSize: number | null;
39947
39968
  baseSize: number | null;
39948
- itemType: string | null;
39949
39969
  }>, "many">;
39950
39970
  groupDiffs: z.ZodArray<z.ZodObject<{
39951
39971
  sizeDiff: z.ZodNumber;
@@ -39957,20 +39977,20 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
39957
39977
  diffItems: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodNull]>;
39958
39978
  }, "strip", z.ZodTypeAny, {
39959
39979
  path: string;
39980
+ itemType: string | null;
39960
39981
  type: string;
39961
39982
  diffItems: unknown[] | null;
39962
39983
  sizeDiff: number;
39963
39984
  headSize: number | null;
39964
39985
  baseSize: number | null;
39965
- itemType: string | null;
39966
39986
  }, {
39967
39987
  path: string;
39988
+ itemType: string | null;
39968
39989
  type: string;
39969
39990
  diffItems: unknown[] | null;
39970
39991
  sizeDiff: number;
39971
39992
  headSize: number | null;
39972
39993
  baseSize: number | null;
39973
- itemType: string | null;
39974
39994
  }>, "many">;
39975
39995
  }, "strip", z.ZodTypeAny, {
39976
39996
  status: string;
@@ -39978,21 +39998,21 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
39978
39998
  totalSavingsChange: number;
39979
39999
  fileDiffs: {
39980
40000
  path: string;
40001
+ itemType: string | null;
39981
40002
  type: string;
39982
40003
  diffItems: unknown[] | null;
39983
40004
  sizeDiff: number;
39984
40005
  headSize: number | null;
39985
40006
  baseSize: number | null;
39986
- itemType: string | null;
39987
40007
  }[];
39988
40008
  groupDiffs: {
39989
40009
  path: string;
40010
+ itemType: string | null;
39990
40011
  type: string;
39991
40012
  diffItems: unknown[] | null;
39992
40013
  sizeDiff: number;
39993
40014
  headSize: number | null;
39994
40015
  baseSize: number | null;
39995
- itemType: string | null;
39996
40016
  }[];
39997
40017
  }, {
39998
40018
  status: string;
@@ -40000,21 +40020,21 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
40000
40020
  totalSavingsChange: number;
40001
40021
  fileDiffs: {
40002
40022
  path: string;
40023
+ itemType: string | null;
40003
40024
  type: string;
40004
40025
  diffItems: unknown[] | null;
40005
40026
  sizeDiff: number;
40006
40027
  headSize: number | null;
40007
40028
  baseSize: number | null;
40008
- itemType: string | null;
40009
40029
  }[];
40010
40030
  groupDiffs: {
40011
40031
  path: string;
40032
+ itemType: string | null;
40012
40033
  type: string;
40013
40034
  diffItems: unknown[] | null;
40014
40035
  sizeDiff: number;
40015
40036
  headSize: number | null;
40016
40037
  baseSize: number | null;
40017
- itemType: string | null;
40018
40038
  }[];
40019
40039
  }>, "many">, z.ZodNull]>;
40020
40040
  }, "strip", z.ZodTypeAny, {
@@ -40033,12 +40053,12 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
40033
40053
  } | null;
40034
40054
  diffItems: {
40035
40055
  path: string;
40056
+ itemType: string | null;
40036
40057
  type: string;
40037
40058
  diffItems: unknown[] | null;
40038
40059
  sizeDiff: number;
40039
40060
  headSize: number | null;
40040
40061
  baseSize: number | null;
40041
- itemType: string | null;
40042
40062
  }[] | null;
40043
40063
  insightDiffItems: {
40044
40064
  status: string;
@@ -40046,21 +40066,21 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
40046
40066
  totalSavingsChange: number;
40047
40067
  fileDiffs: {
40048
40068
  path: string;
40069
+ itemType: string | null;
40049
40070
  type: string;
40050
40071
  diffItems: unknown[] | null;
40051
40072
  sizeDiff: number;
40052
40073
  headSize: number | null;
40053
40074
  baseSize: number | null;
40054
- itemType: string | null;
40055
40075
  }[];
40056
40076
  groupDiffs: {
40057
40077
  path: string;
40078
+ itemType: string | null;
40058
40079
  type: string;
40059
40080
  diffItems: unknown[] | null;
40060
40081
  sizeDiff: number;
40061
40082
  headSize: number | null;
40062
40083
  baseSize: number | null;
40063
- itemType: string | null;
40064
40084
  }[];
40065
40085
  }[] | null;
40066
40086
  }, {
@@ -40079,12 +40099,12 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
40079
40099
  } | null;
40080
40100
  diffItems: {
40081
40101
  path: string;
40102
+ itemType: string | null;
40082
40103
  type: string;
40083
40104
  diffItems: unknown[] | null;
40084
40105
  sizeDiff: number;
40085
40106
  headSize: number | null;
40086
40107
  baseSize: number | null;
40087
- itemType: string | null;
40088
40108
  }[] | null;
40089
40109
  insightDiffItems: {
40090
40110
  status: string;
@@ -40092,21 +40112,21 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
40092
40112
  totalSavingsChange: number;
40093
40113
  fileDiffs: {
40094
40114
  path: string;
40115
+ itemType: string | null;
40095
40116
  type: string;
40096
40117
  diffItems: unknown[] | null;
40097
40118
  sizeDiff: number;
40098
40119
  headSize: number | null;
40099
40120
  baseSize: number | null;
40100
- itemType: string | null;
40101
40121
  }[];
40102
40122
  groupDiffs: {
40103
40123
  path: string;
40124
+ itemType: string | null;
40104
40125
  type: string;
40105
40126
  diffItems: unknown[] | null;
40106
40127
  sizeDiff: number;
40107
40128
  headSize: number | null;
40108
40129
  baseSize: number | null;
40109
- itemType: string | null;
40110
40130
  }[];
40111
40131
  }[] | null;
40112
40132
  }>, "many">, z.ZodNull]>;
@@ -40173,12 +40193,12 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
40173
40193
  } | null;
40174
40194
  diffItems: {
40175
40195
  path: string;
40196
+ itemType: string | null;
40176
40197
  type: string;
40177
40198
  diffItems: unknown[] | null;
40178
40199
  sizeDiff: number;
40179
40200
  headSize: number | null;
40180
40201
  baseSize: number | null;
40181
- itemType: string | null;
40182
40202
  }[] | null;
40183
40203
  insightDiffItems: {
40184
40204
  status: string;
@@ -40186,21 +40206,21 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
40186
40206
  totalSavingsChange: number;
40187
40207
  fileDiffs: {
40188
40208
  path: string;
40209
+ itemType: string | null;
40189
40210
  type: string;
40190
40211
  diffItems: unknown[] | null;
40191
40212
  sizeDiff: number;
40192
40213
  headSize: number | null;
40193
40214
  baseSize: number | null;
40194
- itemType: string | null;
40195
40215
  }[];
40196
40216
  groupDiffs: {
40197
40217
  path: string;
40218
+ itemType: string | null;
40198
40219
  type: string;
40199
40220
  diffItems: unknown[] | null;
40200
40221
  sizeDiff: number;
40201
40222
  headSize: number | null;
40202
40223
  baseSize: number | null;
40203
- itemType: string | null;
40204
40224
  }[];
40205
40225
  }[] | null;
40206
40226
  }[] | null;
@@ -40267,12 +40287,12 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
40267
40287
  } | null;
40268
40288
  diffItems: {
40269
40289
  path: string;
40290
+ itemType: string | null;
40270
40291
  type: string;
40271
40292
  diffItems: unknown[] | null;
40272
40293
  sizeDiff: number;
40273
40294
  headSize: number | null;
40274
40295
  baseSize: number | null;
40275
- itemType: string | null;
40276
40296
  }[] | null;
40277
40297
  insightDiffItems: {
40278
40298
  status: string;
@@ -40280,21 +40300,21 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
40280
40300
  totalSavingsChange: number;
40281
40301
  fileDiffs: {
40282
40302
  path: string;
40303
+ itemType: string | null;
40283
40304
  type: string;
40284
40305
  diffItems: unknown[] | null;
40285
40306
  sizeDiff: number;
40286
40307
  headSize: number | null;
40287
40308
  baseSize: number | null;
40288
- itemType: string | null;
40289
40309
  }[];
40290
40310
  groupDiffs: {
40291
40311
  path: string;
40312
+ itemType: string | null;
40292
40313
  type: string;
40293
40314
  diffItems: unknown[] | null;
40294
40315
  sizeDiff: number;
40295
40316
  headSize: number | null;
40296
40317
  baseSize: number | null;
40297
- itemType: string | null;
40298
40318
  }[];
40299
40319
  }[] | null;
40300
40320
  }[] | null;
@@ -49537,6 +49557,113 @@ export declare const zCreateANewTeamResponse: z.ZodObject<{
49537
49557
  teamId?: string | undefined;
49538
49558
  }[] | undefined;
49539
49559
  }>;
49560
+ export declare const zListTraceItemAttributesData: z.ZodObject<{
49561
+ body: z.ZodOptional<z.ZodNever>;
49562
+ path: z.ZodObject<{
49563
+ organization_id_or_slug: z.ZodString;
49564
+ }, "strip", z.ZodTypeAny, {
49565
+ organization_id_or_slug: string;
49566
+ }, {
49567
+ organization_id_or_slug: string;
49568
+ }>;
49569
+ query: z.ZodOptional<z.ZodObject<{
49570
+ statsPeriod: z.ZodOptional<z.ZodString>;
49571
+ start: z.ZodOptional<z.ZodString>;
49572
+ end: z.ZodOptional<z.ZodString>;
49573
+ dataset: z.ZodOptional<z.ZodEnum<["logs", "preprod", "processing_errors", "spans", "tracemetrics"]>>;
49574
+ itemType: z.ZodOptional<z.ZodEnum<["logs", "preprod", "processing_errors", "spans", "tracemetrics"]>>;
49575
+ attributeType: z.ZodOptional<z.ZodArray<z.ZodEnum<["boolean", "number", "string"]>, "many">>;
49576
+ substringMatch: z.ZodOptional<z.ZodString>;
49577
+ query: z.ZodOptional<z.ZodString>;
49578
+ cursor: z.ZodOptional<z.ZodString>;
49579
+ }, "strip", z.ZodTypeAny, {
49580
+ query?: string | undefined;
49581
+ cursor?: string | undefined;
49582
+ dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
49583
+ end?: string | undefined;
49584
+ start?: string | undefined;
49585
+ statsPeriod?: string | undefined;
49586
+ itemType?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
49587
+ attributeType?: ("string" | "number" | "boolean")[] | undefined;
49588
+ substringMatch?: string | undefined;
49589
+ }, {
49590
+ query?: string | undefined;
49591
+ cursor?: string | undefined;
49592
+ dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
49593
+ end?: string | undefined;
49594
+ start?: string | undefined;
49595
+ statsPeriod?: string | undefined;
49596
+ itemType?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
49597
+ attributeType?: ("string" | "number" | "boolean")[] | undefined;
49598
+ substringMatch?: string | undefined;
49599
+ }>>;
49600
+ }, "strip", z.ZodTypeAny, {
49601
+ path: {
49602
+ organization_id_or_slug: string;
49603
+ };
49604
+ query?: {
49605
+ query?: string | undefined;
49606
+ cursor?: string | undefined;
49607
+ dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
49608
+ end?: string | undefined;
49609
+ start?: string | undefined;
49610
+ statsPeriod?: string | undefined;
49611
+ itemType?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
49612
+ attributeType?: ("string" | "number" | "boolean")[] | undefined;
49613
+ substringMatch?: string | undefined;
49614
+ } | undefined;
49615
+ body?: undefined;
49616
+ }, {
49617
+ path: {
49618
+ organization_id_or_slug: string;
49619
+ };
49620
+ query?: {
49621
+ query?: string | undefined;
49622
+ cursor?: string | undefined;
49623
+ dataset?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
49624
+ end?: string | undefined;
49625
+ start?: string | undefined;
49626
+ statsPeriod?: string | undefined;
49627
+ itemType?: "spans" | "logs" | "tracemetrics" | "preprod" | "processing_errors" | undefined;
49628
+ attributeType?: ("string" | "number" | "boolean")[] | undefined;
49629
+ substringMatch?: string | undefined;
49630
+ } | undefined;
49631
+ body?: undefined;
49632
+ }>;
49633
+ export declare const zListTraceItemAttributesResponse2: z.ZodArray<z.ZodObject<{
49634
+ key: z.ZodString;
49635
+ name: z.ZodString;
49636
+ secondaryAliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
49637
+ attributeSource: z.ZodObject<{
49638
+ source_type: z.ZodEnum<["sentry", "user"]>;
49639
+ is_transformed_alias: z.ZodOptional<z.ZodBoolean>;
49640
+ }, "strip", z.ZodTypeAny, {
49641
+ source_type: "user" | "sentry";
49642
+ is_transformed_alias?: boolean | undefined;
49643
+ }, {
49644
+ source_type: "user" | "sentry";
49645
+ is_transformed_alias?: boolean | undefined;
49646
+ }>;
49647
+ attributeType: z.ZodEnum<["string", "number", "boolean"]>;
49648
+ }, "strip", z.ZodTypeAny, {
49649
+ name: string;
49650
+ key: string;
49651
+ attributeType: "string" | "number" | "boolean";
49652
+ attributeSource: {
49653
+ source_type: "user" | "sentry";
49654
+ is_transformed_alias?: boolean | undefined;
49655
+ };
49656
+ secondaryAliases?: string[] | undefined;
49657
+ }, {
49658
+ name: string;
49659
+ key: string;
49660
+ attributeType: "string" | "number" | "boolean";
49661
+ attributeSource: {
49662
+ source_type: "user" | "sentry";
49663
+ is_transformed_alias?: boolean | undefined;
49664
+ };
49665
+ secondaryAliases?: string[] | undefined;
49666
+ }>, "many">;
49540
49667
  export declare const zListAuserSTeamsForAnOrganizationData: z.ZodObject<{
49541
49668
  body: z.ZodOptional<z.ZodNever>;
49542
49669
  path: z.ZodObject<{