@sentry/api 0.191.0 → 0.193.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
@@ -6291,11 +6291,83 @@ export declare const zGroupDetailsResponse: z.ZodObject<{
6291
6291
  lastRelease: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
6292
6292
  tags: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
6293
6293
  stats: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">>>;
6294
- inbox: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
6295
- owners: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">, z.ZodNull]>>;
6294
+ inbox: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
6295
+ reason: z.ZodNumber;
6296
+ reason_details: z.ZodUnion<[z.ZodObject<{
6297
+ until: z.ZodUnion<[z.ZodString, z.ZodNull]>;
6298
+ count: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
6299
+ window: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
6300
+ user_count: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
6301
+ user_window: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
6302
+ }, "strip", z.ZodTypeAny, {
6303
+ window: number | null;
6304
+ count: number | null;
6305
+ until: string | null;
6306
+ user_count: number | null;
6307
+ user_window: number | null;
6308
+ }, {
6309
+ window: number | null;
6310
+ count: number | null;
6311
+ until: string | null;
6312
+ user_count: number | null;
6313
+ user_window: number | null;
6314
+ }>, z.ZodNull]>;
6315
+ date_added: z.ZodString;
6316
+ }, "strip", z.ZodTypeAny, {
6317
+ reason: number;
6318
+ reason_details: {
6319
+ window: number | null;
6320
+ count: number | null;
6321
+ until: string | null;
6322
+ user_count: number | null;
6323
+ user_window: number | null;
6324
+ } | null;
6325
+ date_added: string;
6326
+ }, {
6327
+ reason: number;
6328
+ reason_details: {
6329
+ window: number | null;
6330
+ count: number | null;
6331
+ until: string | null;
6332
+ user_count: number | null;
6333
+ user_window: number | null;
6334
+ } | null;
6335
+ date_added: string;
6336
+ }>, z.ZodNull]>>;
6337
+ owners: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
6338
+ type: z.ZodString;
6339
+ owner: z.ZodString;
6340
+ date_added: z.ZodString;
6341
+ }, "strip", z.ZodTypeAny, {
6342
+ owner: string;
6343
+ type: string;
6344
+ date_added: string;
6345
+ }, {
6346
+ owner: string;
6347
+ type: string;
6348
+ date_added: string;
6349
+ }>, "many">, z.ZodNull]>>;
6296
6350
  forecast: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
6297
6351
  integrationIssues: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
6298
- sentryAppIssues: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
6352
+ sentryAppIssues: z.ZodOptional<z.ZodArray<z.ZodObject<{
6353
+ id: z.ZodString;
6354
+ issueId: z.ZodString;
6355
+ serviceType: z.ZodString;
6356
+ displayName: z.ZodString;
6357
+ webUrl: z.ZodString;
6358
+ }, "strip", z.ZodTypeAny, {
6359
+ id: string;
6360
+ displayName: string;
6361
+ issueId: string;
6362
+ serviceType: string;
6363
+ webUrl: string;
6364
+ }, {
6365
+ id: string;
6366
+ displayName: string;
6367
+ issueId: string;
6368
+ serviceType: string;
6369
+ webUrl: string;
6370
+ }>, "many">>;
6299
6371
  latestEventHasAttachments: z.ZodOptional<z.ZodBoolean>;
6300
6372
  activity: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
6301
6373
  seenBy: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
@@ -6414,11 +6486,31 @@ export declare const zGroupDetailsResponse: z.ZodObject<{
6414
6486
  pluginContexts: Record<string, unknown>[];
6415
6487
  userReportCount: number;
6416
6488
  participants: Record<string, unknown>[];
6417
- inbox?: Record<string, unknown> | null | undefined;
6489
+ inbox?: {
6490
+ reason: number;
6491
+ reason_details: {
6492
+ window: number | null;
6493
+ count: number | null;
6494
+ until: string | null;
6495
+ user_count: number | null;
6496
+ user_window: number | null;
6497
+ } | null;
6498
+ date_added: string;
6499
+ } | null | undefined;
6418
6500
  integrationIssues?: Record<string, unknown>[] | undefined;
6419
6501
  latestEventHasAttachments?: boolean | undefined;
6420
- owners?: Record<string, unknown>[] | null | undefined;
6421
- sentryAppIssues?: Record<string, unknown>[] | undefined;
6502
+ owners?: {
6503
+ owner: string;
6504
+ type: string;
6505
+ date_added: string;
6506
+ }[] | null | undefined;
6507
+ sentryAppIssues?: {
6508
+ id: string;
6509
+ displayName: string;
6510
+ issueId: string;
6511
+ serviceType: string;
6512
+ webUrl: string;
6513
+ }[] | undefined;
6422
6514
  stats?: Record<string, number[][]> | undefined;
6423
6515
  tags?: Record<string, unknown>[] | undefined;
6424
6516
  count?: string | undefined;
@@ -6539,11 +6631,31 @@ export declare const zGroupDetailsResponse: z.ZodObject<{
6539
6631
  pluginContexts: Record<string, unknown>[];
6540
6632
  userReportCount: number;
6541
6633
  participants: Record<string, unknown>[];
6542
- inbox?: Record<string, unknown> | null | undefined;
6634
+ inbox?: {
6635
+ reason: number;
6636
+ reason_details: {
6637
+ window: number | null;
6638
+ count: number | null;
6639
+ until: string | null;
6640
+ user_count: number | null;
6641
+ user_window: number | null;
6642
+ } | null;
6643
+ date_added: string;
6644
+ } | null | undefined;
6543
6645
  integrationIssues?: Record<string, unknown>[] | undefined;
6544
6646
  latestEventHasAttachments?: boolean | undefined;
6545
- owners?: Record<string, unknown>[] | null | undefined;
6546
- sentryAppIssues?: Record<string, unknown>[] | undefined;
6647
+ owners?: {
6648
+ owner: string;
6649
+ type: string;
6650
+ date_added: string;
6651
+ }[] | null | undefined;
6652
+ sentryAppIssues?: {
6653
+ id: string;
6654
+ displayName: string;
6655
+ issueId: string;
6656
+ serviceType: string;
6657
+ webUrl: string;
6658
+ }[] | undefined;
6547
6659
  stats?: Record<string, number[][]> | undefined;
6548
6660
  tags?: Record<string, unknown>[] | undefined;
6549
6661
  count?: string | undefined;
@@ -8484,6 +8596,7 @@ export declare const zLatestBaseSnapshotResponse: z.ZodObject<{
8484
8596
  }, "strip", z.ZodTypeAny, {
8485
8597
  app_id?: string | null | undefined;
8486
8598
  project_id?: string | undefined;
8599
+ date_added?: string | undefined;
8487
8600
  head_artifact_id?: string | undefined;
8488
8601
  project_slug?: string | undefined;
8489
8602
  image_count?: number | undefined;
@@ -8497,7 +8610,6 @@ export declare const zLatestBaseSnapshotResponse: z.ZodObject<{
8497
8610
  image_url?: string | undefined;
8498
8611
  }[] | undefined;
8499
8612
  diff_threshold?: number | null | undefined;
8500
- date_added?: string | undefined;
8501
8613
  vcs_info?: {
8502
8614
  head_sha?: string | null | undefined;
8503
8615
  base_sha?: string | null | undefined;
@@ -8509,6 +8621,7 @@ export declare const zLatestBaseSnapshotResponse: z.ZodObject<{
8509
8621
  }, {
8510
8622
  app_id?: string | null | undefined;
8511
8623
  project_id?: string | undefined;
8624
+ date_added?: string | undefined;
8512
8625
  head_artifact_id?: string | undefined;
8513
8626
  project_slug?: string | undefined;
8514
8627
  image_count?: number | undefined;
@@ -8522,7 +8635,6 @@ export declare const zLatestBaseSnapshotResponse: z.ZodObject<{
8522
8635
  image_url?: string | undefined;
8523
8636
  }[] | undefined;
8524
8637
  diff_threshold?: number | null | undefined;
8525
- date_added?: string | undefined;
8526
8638
  vcs_info?: {
8527
8639
  head_sha?: string | null | undefined;
8528
8640
  base_sha?: string | null | undefined;
@@ -15671,7 +15783,6 @@ export declare const zOrganizationGroupIndexGetResponse: z.ZodArray<z.ZodObject<
15671
15783
  date_added: z.ZodString;
15672
15784
  }, "strip", z.ZodTypeAny, {
15673
15785
  reason: number;
15674
- date_added: string;
15675
15786
  reason_details: {
15676
15787
  window: number | null;
15677
15788
  count: number | null;
@@ -15679,9 +15790,9 @@ export declare const zOrganizationGroupIndexGetResponse: z.ZodArray<z.ZodObject<
15679
15790
  user_count: number | null;
15680
15791
  user_window: number | null;
15681
15792
  } | null;
15793
+ date_added: string;
15682
15794
  }, {
15683
15795
  reason: number;
15684
- date_added: string;
15685
15796
  reason_details: {
15686
15797
  window: number | null;
15687
15798
  count: number | null;
@@ -15689,6 +15800,7 @@ export declare const zOrganizationGroupIndexGetResponse: z.ZodArray<z.ZodObject<
15689
15800
  user_count: number | null;
15690
15801
  user_window: number | null;
15691
15802
  } | null;
15803
+ date_added: string;
15692
15804
  }>;
15693
15805
  owners: z.ZodObject<{
15694
15806
  type: z.ZodString;
@@ -15708,11 +15820,12 @@ export declare const zOrganizationGroupIndexGetResponse: z.ZodArray<z.ZodObject<
15708
15820
  integrationIssues: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
15709
15821
  sentryAppIssues: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
15710
15822
  latestEventHasAttachments: z.ZodBoolean;
15823
+ matchingEventId: z.ZodUnion<[z.ZodString, z.ZodNull]>;
15824
+ matchingEventEnvironment: z.ZodUnion<[z.ZodString, z.ZodNull]>;
15711
15825
  }, "strip", z.ZodTypeAny, {
15712
15826
  priority: string | null;
15713
15827
  inbox: {
15714
15828
  reason: number;
15715
- date_added: string;
15716
15829
  reason_details: {
15717
15830
  window: number | null;
15718
15831
  count: number | null;
@@ -15720,6 +15833,7 @@ export declare const zOrganizationGroupIndexGetResponse: z.ZodArray<z.ZodObject<
15720
15833
  user_count: number | null;
15721
15834
  user_window: number | null;
15722
15835
  } | null;
15836
+ date_added: string;
15723
15837
  };
15724
15838
  integrationIssues: Record<string, unknown>[];
15725
15839
  latestEventHasAttachments: boolean;
@@ -15847,11 +15961,12 @@ export declare const zOrganizationGroupIndexGetResponse: z.ZodArray<z.ZodObject<
15847
15961
  displayName: string;
15848
15962
  }[];
15849
15963
  sessionCount: number;
15964
+ matchingEventId: string | null;
15965
+ matchingEventEnvironment: string | null;
15850
15966
  }, {
15851
15967
  priority: string | null;
15852
15968
  inbox: {
15853
15969
  reason: number;
15854
- date_added: string;
15855
15970
  reason_details: {
15856
15971
  window: number | null;
15857
15972
  count: number | null;
@@ -15859,6 +15974,7 @@ export declare const zOrganizationGroupIndexGetResponse: z.ZodArray<z.ZodObject<
15859
15974
  user_count: number | null;
15860
15975
  user_window: number | null;
15861
15976
  } | null;
15977
+ date_added: string;
15862
15978
  };
15863
15979
  integrationIssues: Record<string, unknown>[];
15864
15980
  latestEventHasAttachments: boolean;
@@ -15986,6 +16102,8 @@ export declare const zOrganizationGroupIndexGetResponse: z.ZodArray<z.ZodObject<
15986
16102
  displayName: string;
15987
16103
  }[];
15988
16104
  sessionCount: number;
16105
+ matchingEventId: string | null;
16106
+ matchingEventEnvironment: string | null;
15989
16107
  }>, "many">;
15990
16108
  export declare const zOrganizationGroupIndexPutResponse: z.ZodObject<{
15991
16109
  assignedTo: z.ZodOptional<z.ZodObject<{
@@ -26109,7 +26227,7 @@ export declare const zOrganizationMemberRequestWritable: z.ZodObject<{
26109
26227
  reinvite?: boolean | undefined;
26110
26228
  sendInvite?: boolean | undefined;
26111
26229
  }>;
26112
- export declare const zListYourOrganizationsData: z.ZodObject<{
26230
+ export declare const zListOrganizationsData: z.ZodObject<{
26113
26231
  body: z.ZodOptional<z.ZodNever>;
26114
26232
  path: z.ZodOptional<z.ZodNever>;
26115
26233
  query: z.ZodOptional<z.ZodObject<{
@@ -26152,7 +26270,7 @@ export declare const zListYourOrganizationsData: z.ZodObject<{
26152
26270
  body?: undefined;
26153
26271
  path?: undefined;
26154
26272
  }>;
26155
- export declare const zListYourOrganizationsResponse: z.ZodArray<z.ZodObject<{
26273
+ export declare const zListOrganizationsResponse: z.ZodArray<z.ZodObject<{
26156
26274
  features: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
26157
26275
  extraOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
26158
26276
  access: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -26287,7 +26405,7 @@ export declare const zListYourOrganizationsResponse: z.ZodArray<z.ZodObject<{
26287
26405
  data?: unknown;
26288
26406
  }[] | undefined;
26289
26407
  }>, "many">;
26290
- export declare const zRetrieveAnOrganizationData: z.ZodObject<{
26408
+ export declare const zGetOrganizationData: z.ZodObject<{
26291
26409
  body: z.ZodOptional<z.ZodNever>;
26292
26410
  path: z.ZodObject<{
26293
26411
  organization_id_or_slug: z.ZodString;
@@ -26320,7 +26438,7 @@ export declare const zRetrieveAnOrganizationData: z.ZodObject<{
26320
26438
  } | undefined;
26321
26439
  body?: undefined;
26322
26440
  }>;
26323
- export declare const zRetrieveAnOrganizationResponse: z.ZodObject<{
26441
+ export declare const zGetOrganizationResponse: z.ZodObject<{
26324
26442
  features: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
26325
26443
  extraOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
26326
26444
  access: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -26455,7 +26573,7 @@ export declare const zRetrieveAnOrganizationResponse: z.ZodObject<{
26455
26573
  data?: unknown;
26456
26574
  }[] | undefined;
26457
26575
  }>;
26458
- export declare const zUpdateAnOrganizationData: z.ZodObject<{
26576
+ export declare const zUpdateOrganizationData: z.ZodObject<{
26459
26577
  body: z.ZodOptional<z.ZodObject<{
26460
26578
  slug: z.ZodOptional<z.ZodString>;
26461
26579
  name: z.ZodOptional<z.ZodString>;
@@ -26633,7 +26751,7 @@ export declare const zUpdateAnOrganizationData: z.ZodObject<{
26633
26751
  cancelDeletion?: boolean | undefined;
26634
26752
  } | undefined;
26635
26753
  }>;
26636
- export declare const zUpdateAnOrganizationResponse: z.ZodObject<{
26754
+ export declare const zUpdateOrganizationResponse: z.ZodObject<{
26637
26755
  features: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
26638
26756
  extraOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
26639
26757
  access: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -28093,7 +28211,7 @@ export declare const zUpdateAnOrganizationResponse: z.ZodObject<{
28093
28211
  planSampleRate?: number | undefined;
28094
28212
  desiredSampleRate?: number | undefined;
28095
28213
  }>;
28096
- export declare const zGetIntegrationProviderInformationData: z.ZodObject<{
28214
+ export declare const zListOrganizationConfigIntegrationsData: z.ZodObject<{
28097
28215
  body: z.ZodOptional<z.ZodNever>;
28098
28216
  path: z.ZodObject<{
28099
28217
  organization_id_or_slug: z.ZodString;
@@ -28126,7 +28244,7 @@ export declare const zGetIntegrationProviderInformationData: z.ZodObject<{
28126
28244
  } | undefined;
28127
28245
  body?: undefined;
28128
28246
  }>;
28129
- export declare const zGetIntegrationProviderInformationResponse: z.ZodObject<{
28247
+ export declare const zListOrganizationConfigIntegrationsResponse: z.ZodObject<{
28130
28248
  providers: z.ZodArray<z.ZodObject<{
28131
28249
  key: z.ZodString;
28132
28250
  slug: z.ZodString;
@@ -28178,7 +28296,7 @@ export declare const zGetIntegrationProviderInformationResponse: z.ZodObject<{
28178
28296
  metadata?: unknown;
28179
28297
  }[];
28180
28298
  }>;
28181
- export declare const zListAnOrganizationSCustomDashboardsData: z.ZodObject<{
28299
+ export declare const zListOrganizationDashboardsData: z.ZodObject<{
28182
28300
  body: z.ZodOptional<z.ZodNever>;
28183
28301
  path: z.ZodObject<{
28184
28302
  organization_id_or_slug: z.ZodString;
@@ -28216,7 +28334,7 @@ export declare const zListAnOrganizationSCustomDashboardsData: z.ZodObject<{
28216
28334
  } | undefined;
28217
28335
  body?: undefined;
28218
28336
  }>;
28219
- export declare const zListAnOrganizationSCustomDashboardsResponse: z.ZodArray<z.ZodObject<{
28337
+ export declare const zListOrganizationDashboardsResponse: z.ZodArray<z.ZodObject<{
28220
28338
  id: z.ZodString;
28221
28339
  title: z.ZodString;
28222
28340
  dateCreated: z.ZodString;
@@ -28563,7 +28681,7 @@ export declare const zListAnOrganizationSCustomDashboardsResponse: z.ZodArray<z.
28563
28681
  widgetDisplay: string[];
28564
28682
  widgetPreview: Record<string, string>[];
28565
28683
  }>, "many">;
28566
- export declare const zCreateANewDashboardForAnOrganizationData: z.ZodObject<{
28684
+ export declare const zCreateOrganizationDashboardData: z.ZodObject<{
28567
28685
  body: z.ZodObject<{
28568
28686
  title: z.ZodString;
28569
28687
  id: z.ZodOptional<z.ZodString>;
@@ -29009,7 +29127,7 @@ export declare const zCreateANewDashboardForAnOrganizationData: z.ZodObject<{
29009
29127
  };
29010
29128
  query?: undefined;
29011
29129
  }>;
29012
- export declare const zCreateANewDashboardForAnOrganizationResponse: z.ZodObject<{
29130
+ export declare const zCreateOrganizationDashboardResponse: z.ZodObject<{
29013
29131
  environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
29014
29132
  period: z.ZodOptional<z.ZodString>;
29015
29133
  utc: z.ZodOptional<z.ZodString>;
@@ -29672,7 +29790,7 @@ export declare const zCreateANewDashboardForAnOrganizationResponse: z.ZodObject<
29672
29790
  utc?: string | undefined;
29673
29791
  expired?: boolean | undefined;
29674
29792
  }>;
29675
- export declare const zDeleteAnOrganizationSCustomDashboardData: z.ZodObject<{
29793
+ export declare const zDeleteOrganizationDashboardData: z.ZodObject<{
29676
29794
  body: z.ZodOptional<z.ZodNever>;
29677
29795
  path: z.ZodObject<{
29678
29796
  organization_id_or_slug: z.ZodString;
@@ -29703,8 +29821,8 @@ export declare const zDeleteAnOrganizationSCustomDashboardData: z.ZodObject<{
29703
29821
  /**
29704
29822
  * No Content
29705
29823
  */
29706
- export declare const zDeleteAnOrganizationSCustomDashboardResponse: z.ZodVoid;
29707
- export declare const zRetrieveAnOrganizationSCustomDashboardData: z.ZodObject<{
29824
+ export declare const zDeleteOrganizationDashboardResponse: z.ZodVoid;
29825
+ export declare const zGetOrganizationDashboardData: z.ZodObject<{
29708
29826
  body: z.ZodOptional<z.ZodNever>;
29709
29827
  path: z.ZodObject<{
29710
29828
  organization_id_or_slug: z.ZodString;
@@ -29732,7 +29850,7 @@ export declare const zRetrieveAnOrganizationSCustomDashboardData: z.ZodObject<{
29732
29850
  query?: undefined;
29733
29851
  body?: undefined;
29734
29852
  }>;
29735
- export declare const zRetrieveAnOrganizationSCustomDashboardResponse: z.ZodObject<{
29853
+ export declare const zGetOrganizationDashboardResponse: z.ZodObject<{
29736
29854
  environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
29737
29855
  period: z.ZodOptional<z.ZodString>;
29738
29856
  utc: z.ZodOptional<z.ZodString>;
@@ -30395,7 +30513,7 @@ export declare const zRetrieveAnOrganizationSCustomDashboardResponse: z.ZodObjec
30395
30513
  utc?: string | undefined;
30396
30514
  expired?: boolean | undefined;
30397
30515
  }>;
30398
- export declare const zEditAnOrganizationSCustomDashboardData: z.ZodObject<{
30516
+ export declare const zUpdateOrganizationDashboardData: z.ZodObject<{
30399
30517
  body: z.ZodOptional<z.ZodObject<{
30400
30518
  id: z.ZodOptional<z.ZodString>;
30401
30519
  title: z.ZodOptional<z.ZodString>;
@@ -30841,7 +30959,7 @@ export declare const zEditAnOrganizationSCustomDashboardData: z.ZodObject<{
30841
30959
  } | null | undefined;
30842
30960
  } | undefined;
30843
30961
  }>;
30844
- export declare const zEditAnOrganizationSCustomDashboardResponse: z.ZodObject<{
30962
+ export declare const zUpdateOrganizationDashboardResponse: z.ZodObject<{
30845
30963
  environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
30846
30964
  period: z.ZodOptional<z.ZodString>;
30847
30965
  utc: z.ZodOptional<z.ZodString>;
@@ -31504,7 +31622,7 @@ export declare const zEditAnOrganizationSCustomDashboardResponse: z.ZodObject<{
31504
31622
  utc?: string | undefined;
31505
31623
  expired?: boolean | undefined;
31506
31624
  }>;
31507
- export declare const zBulkDeleteMonitorsData: z.ZodObject<{
31625
+ export declare const zDeleteOrganizationDetectorsData: z.ZodObject<{
31508
31626
  body: z.ZodOptional<z.ZodNever>;
31509
31627
  path: z.ZodObject<{
31510
31628
  organization_id_or_slug: z.ZodString;
@@ -31552,8 +31670,8 @@ export declare const zBulkDeleteMonitorsData: z.ZodObject<{
31552
31670
  } | undefined;
31553
31671
  body?: undefined;
31554
31672
  }>;
31555
- export declare const zBulkDeleteMonitorsResponse: z.ZodUnion<[z.ZodUnknown, z.ZodVoid]>;
31556
- export declare const zFetchAnOrganizationSMonitorsData: z.ZodObject<{
31673
+ export declare const zDeleteOrganizationDetectorsResponse: z.ZodUnion<[z.ZodUnknown, z.ZodVoid]>;
31674
+ export declare const zListOrganizationDetectorsData: z.ZodObject<{
31557
31675
  body: z.ZodOptional<z.ZodNever>;
31558
31676
  path: z.ZodObject<{
31559
31677
  organization_id_or_slug: z.ZodString;
@@ -31601,7 +31719,7 @@ export declare const zFetchAnOrganizationSMonitorsData: z.ZodObject<{
31601
31719
  } | undefined;
31602
31720
  body?: undefined;
31603
31721
  }>;
31604
- export declare const zFetchAnOrganizationSMonitorsResponse: z.ZodArray<z.ZodObject<{
31722
+ export declare const zListOrganizationDetectorsResponse: z.ZodArray<z.ZodObject<{
31605
31723
  owner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
31606
31724
  type: z.ZodEnum<["user", "team"]>;
31607
31725
  id: z.ZodString;
@@ -31675,7 +31793,7 @@ export declare const zFetchAnOrganizationSMonitorsResponse: z.ZodArray<z.ZodObje
31675
31793
  createdBy?: string | null | undefined;
31676
31794
  latestGroup?: Record<string, unknown> | null | undefined;
31677
31795
  }>, "many">;
31678
- export declare const zMutateAnOrganizationSMonitorsData: z.ZodObject<{
31796
+ export declare const zUpdateOrganizationDetectorsData: z.ZodObject<{
31679
31797
  body: z.ZodObject<{
31680
31798
  enabled: z.ZodBoolean;
31681
31799
  }, "strip", z.ZodTypeAny, {
@@ -31728,7 +31846,7 @@ export declare const zMutateAnOrganizationSMonitorsData: z.ZodObject<{
31728
31846
  project?: number[] | undefined;
31729
31847
  } | undefined;
31730
31848
  }>;
31731
- export declare const zMutateAnOrganizationSMonitorsResponse: z.ZodArray<z.ZodObject<{
31849
+ export declare const zUpdateOrganizationDetectorsResponse: z.ZodArray<z.ZodObject<{
31732
31850
  owner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
31733
31851
  type: z.ZodEnum<["user", "team"]>;
31734
31852
  id: z.ZodString;
@@ -31802,7 +31920,7 @@ export declare const zMutateAnOrganizationSMonitorsResponse: z.ZodArray<z.ZodObj
31802
31920
  createdBy?: string | null | undefined;
31803
31921
  latestGroup?: Record<string, unknown> | null | undefined;
31804
31922
  }>, "many">;
31805
- export declare const zDeleteAMonitorData: z.ZodObject<{
31923
+ export declare const zDeleteOrganizationDetectorData: z.ZodObject<{
31806
31924
  body: z.ZodOptional<z.ZodNever>;
31807
31925
  path: z.ZodObject<{
31808
31926
  organization_id_or_slug: z.ZodString;
@@ -31833,8 +31951,8 @@ export declare const zDeleteAMonitorData: z.ZodObject<{
31833
31951
  /**
31834
31952
  * No Content
31835
31953
  */
31836
- export declare const zDeleteAMonitorResponse: z.ZodVoid;
31837
- export declare const zFetchAMonitorData: z.ZodObject<{
31954
+ export declare const zDeleteOrganizationDetectorResponse: z.ZodVoid;
31955
+ export declare const zGetOrganizationDetectorData: z.ZodObject<{
31838
31956
  body: z.ZodOptional<z.ZodNever>;
31839
31957
  path: z.ZodObject<{
31840
31958
  organization_id_or_slug: z.ZodString;
@@ -31862,7 +31980,7 @@ export declare const zFetchAMonitorData: z.ZodObject<{
31862
31980
  query?: undefined;
31863
31981
  body?: undefined;
31864
31982
  }>;
31865
- export declare const zFetchAMonitorResponse: z.ZodObject<{
31983
+ export declare const zGetOrganizationDetectorResponse: z.ZodObject<{
31866
31984
  owner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
31867
31985
  type: z.ZodEnum<["user", "team"]>;
31868
31986
  id: z.ZodString;
@@ -31936,7 +32054,7 @@ export declare const zFetchAMonitorResponse: z.ZodObject<{
31936
32054
  createdBy?: string | null | undefined;
31937
32055
  latestGroup?: Record<string, unknown> | null | undefined;
31938
32056
  }>;
31939
- export declare const zUpdateAMonitorByIdData: z.ZodObject<{
32057
+ export declare const zUpdateOrganizationDetectorData: z.ZodObject<{
31940
32058
  body: z.ZodObject<{
31941
32059
  name: z.ZodString;
31942
32060
  type: z.ZodString;
@@ -32042,7 +32160,7 @@ export declare const zUpdateAMonitorByIdData: z.ZodObject<{
32042
32160
  };
32043
32161
  query?: undefined;
32044
32162
  }>;
32045
- export declare const zUpdateAMonitorByIdResponse: z.ZodObject<{
32163
+ export declare const zUpdateOrganizationDetectorResponse: z.ZodObject<{
32046
32164
  owner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
32047
32165
  type: z.ZodEnum<["user", "team"]>;
32048
32166
  id: z.ZodString;
@@ -32116,7 +32234,7 @@ export declare const zUpdateAMonitorByIdResponse: z.ZodObject<{
32116
32234
  createdBy?: string | null | undefined;
32117
32235
  latestGroup?: Record<string, unknown> | null | undefined;
32118
32236
  }>;
32119
- export declare const zListAnOrganizationSDiscoverSavedQueriesData: z.ZodObject<{
32237
+ export declare const zListOrganizationDiscoverSavedData: z.ZodObject<{
32120
32238
  body: z.ZodOptional<z.ZodNever>;
32121
32239
  path: z.ZodObject<{
32122
32240
  organization_id_or_slug: z.ZodString;
@@ -32164,7 +32282,7 @@ export declare const zListAnOrganizationSDiscoverSavedQueriesData: z.ZodObject<{
32164
32282
  } | undefined;
32165
32283
  body?: undefined;
32166
32284
  }>;
32167
- export declare const zListAnOrganizationSDiscoverSavedQueriesResponse: z.ZodArray<z.ZodObject<{
32285
+ export declare const zListOrganizationDiscoverSavedResponse: z.ZodArray<z.ZodObject<{
32168
32286
  environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
32169
32287
  query: z.ZodOptional<z.ZodString>;
32170
32288
  fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -32515,7 +32633,7 @@ export declare const zListAnOrganizationSDiscoverSavedQueriesResponse: z.ZodArra
32515
32633
  aggregations?: string[] | undefined;
32516
32634
  exploreQuery?: Record<string, unknown> | undefined;
32517
32635
  }>, "many">;
32518
- export declare const zCreateANewSavedQueryData: z.ZodObject<{
32636
+ export declare const zCreateOrganizationDiscoverSavedData: z.ZodObject<{
32519
32637
  body: z.ZodObject<{
32520
32638
  name: z.ZodString;
32521
32639
  projects: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
@@ -32613,7 +32731,7 @@ export declare const zCreateANewSavedQueryData: z.ZodObject<{
32613
32731
  };
32614
32732
  query?: undefined;
32615
32733
  }>;
32616
- export declare const zCreateANewSavedQueryResponse: z.ZodObject<{
32734
+ export declare const zCreateOrganizationDiscoverSavedResponse: z.ZodObject<{
32617
32735
  environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
32618
32736
  query: z.ZodOptional<z.ZodString>;
32619
32737
  fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -32964,7 +33082,7 @@ export declare const zCreateANewSavedQueryResponse: z.ZodObject<{
32964
33082
  aggregations?: string[] | undefined;
32965
33083
  exploreQuery?: Record<string, unknown> | undefined;
32966
33084
  }>;
32967
- export declare const zDeleteAnOrganizationSDiscoverSavedQueryData: z.ZodObject<{
33085
+ export declare const zDeleteOrganizationDiscoverSavedData: z.ZodObject<{
32968
33086
  body: z.ZodOptional<z.ZodNever>;
32969
33087
  path: z.ZodObject<{
32970
33088
  organization_id_or_slug: z.ZodString;
@@ -32995,8 +33113,8 @@ export declare const zDeleteAnOrganizationSDiscoverSavedQueryData: z.ZodObject<{
32995
33113
  /**
32996
33114
  * No Content
32997
33115
  */
32998
- export declare const zDeleteAnOrganizationSDiscoverSavedQueryResponse: z.ZodVoid;
32999
- export declare const zRetrieveAnOrganizationSDiscoverSavedQueryData: z.ZodObject<{
33116
+ export declare const zDeleteOrganizationDiscoverSavedResponse: z.ZodVoid;
33117
+ export declare const zGetOrganizationDiscoverSavedData: z.ZodObject<{
33000
33118
  body: z.ZodOptional<z.ZodNever>;
33001
33119
  path: z.ZodObject<{
33002
33120
  organization_id_or_slug: z.ZodString;
@@ -33024,7 +33142,7 @@ export declare const zRetrieveAnOrganizationSDiscoverSavedQueryData: z.ZodObject
33024
33142
  query?: undefined;
33025
33143
  body?: undefined;
33026
33144
  }>;
33027
- export declare const zRetrieveAnOrganizationSDiscoverSavedQueryResponse: z.ZodObject<{
33145
+ export declare const zGetOrganizationDiscoverSavedResponse: z.ZodObject<{
33028
33146
  environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
33029
33147
  query: z.ZodOptional<z.ZodString>;
33030
33148
  fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -33375,7 +33493,7 @@ export declare const zRetrieveAnOrganizationSDiscoverSavedQueryResponse: z.ZodOb
33375
33493
  aggregations?: string[] | undefined;
33376
33494
  exploreQuery?: Record<string, unknown> | undefined;
33377
33495
  }>;
33378
- export declare const zEditAnOrganizationSDiscoverSavedQueryData: z.ZodObject<{
33496
+ export declare const zUpdateOrganizationDiscoverSavedData: z.ZodObject<{
33379
33497
  body: z.ZodObject<{
33380
33498
  name: z.ZodString;
33381
33499
  projects: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
@@ -33478,7 +33596,7 @@ export declare const zEditAnOrganizationSDiscoverSavedQueryData: z.ZodObject<{
33478
33596
  };
33479
33597
  query?: undefined;
33480
33598
  }>;
33481
- export declare const zEditAnOrganizationSDiscoverSavedQueryResponse: z.ZodObject<{
33599
+ export declare const zUpdateOrganizationDiscoverSavedResponse: z.ZodObject<{
33482
33600
  environment: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
33483
33601
  query: z.ZodOptional<z.ZodString>;
33484
33602
  fields: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -33829,7 +33947,7 @@ export declare const zEditAnOrganizationSDiscoverSavedQueryResponse: z.ZodObject
33829
33947
  aggregations?: string[] | undefined;
33830
33948
  exploreQuery?: Record<string, unknown> | undefined;
33831
33949
  }>;
33832
- export declare const zListAnOrganizationSEnvironmentsData: z.ZodObject<{
33950
+ export declare const zListOrganizationEnvironmentsData: z.ZodObject<{
33833
33951
  body: z.ZodOptional<z.ZodNever>;
33834
33952
  path: z.ZodObject<{
33835
33953
  organization_id_or_slug: z.ZodString;
@@ -33862,7 +33980,7 @@ export declare const zListAnOrganizationSEnvironmentsData: z.ZodObject<{
33862
33980
  } | undefined;
33863
33981
  body?: undefined;
33864
33982
  }>;
33865
- export declare const zListAnOrganizationSEnvironmentsResponse: z.ZodArray<z.ZodObject<{
33983
+ export declare const zListOrganizationEnvironmentsResponse: z.ZodArray<z.ZodObject<{
33866
33984
  id: z.ZodString;
33867
33985
  name: z.ZodString;
33868
33986
  }, "strip", z.ZodTypeAny, {
@@ -33872,7 +33990,7 @@ export declare const zListAnOrganizationSEnvironmentsResponse: z.ZodArray<z.ZodO
33872
33990
  name: string;
33873
33991
  id: string;
33874
33992
  }>, "many">;
33875
- export declare const zResolveAnEventIdData: z.ZodObject<{
33993
+ export declare const zGetOrganizationEventidData: z.ZodObject<{
33876
33994
  body: z.ZodOptional<z.ZodNever>;
33877
33995
  path: z.ZodObject<{
33878
33996
  organization_id_or_slug: z.ZodString;
@@ -33900,7 +34018,7 @@ export declare const zResolveAnEventIdData: z.ZodObject<{
33900
34018
  query?: undefined;
33901
34019
  body?: undefined;
33902
34020
  }>;
33903
- export declare const zResolveAnEventIdResponse: z.ZodObject<{
34021
+ export declare const zGetOrganizationEventidResponse: z.ZodObject<{
33904
34022
  organizationSlug: z.ZodString;
33905
34023
  projectSlug: z.ZodString;
33906
34024
  groupId: z.ZodString;
@@ -34168,7 +34286,7 @@ export declare const zResolveAnEventIdResponse: z.ZodObject<{
34168
34286
  breakdowns?: unknown;
34169
34287
  };
34170
34288
  }>;
34171
- export declare const zQueryExploreEventsInTableFormatData: z.ZodObject<{
34289
+ export declare const zListOrganizationEventsData: z.ZodObject<{
34172
34290
  body: z.ZodOptional<z.ZodNever>;
34173
34291
  path: z.ZodObject<{
34174
34292
  organization_id_or_slug: z.ZodString;
@@ -34256,7 +34374,7 @@ export declare const zQueryExploreEventsInTableFormatData: z.ZodObject<{
34256
34374
  };
34257
34375
  body?: undefined;
34258
34376
  }>;
34259
- export declare const zQueryExploreEventsInTableFormatResponse: z.ZodObject<{
34377
+ export declare const zListOrganizationEventsResponse: z.ZodObject<{
34260
34378
  data: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
34261
34379
  meta: z.ZodObject<{
34262
34380
  fields: z.ZodRecord<z.ZodString, z.ZodString>;
@@ -34291,7 +34409,7 @@ export declare const zQueryExploreEventsInTableFormatResponse: z.ZodObject<{
34291
34409
  isMetricsExtractedData?: boolean | undefined;
34292
34410
  };
34293
34411
  }>;
34294
- export declare const zQueryExploreEventsInTimeseriesFormatData: z.ZodObject<{
34412
+ export declare const zListOrganizationEventsTimeseriesData: z.ZodObject<{
34295
34413
  body: z.ZodOptional<z.ZodNever>;
34296
34414
  path: z.ZodObject<{
34297
34415
  organization_id_or_slug: z.ZodString;
@@ -34399,7 +34517,7 @@ export declare const zQueryExploreEventsInTimeseriesFormatData: z.ZodObject<{
34399
34517
  };
34400
34518
  body?: undefined;
34401
34519
  }>;
34402
- export declare const zQueryExploreEventsInTimeseriesFormatResponse: z.ZodObject<{
34520
+ export declare const zListOrganizationEventsTimeseriesResponse: z.ZodObject<{
34403
34521
  meta: z.ZodOptional<z.ZodObject<{
34404
34522
  dataset: z.ZodString;
34405
34523
  start: z.ZodNumber;
@@ -34587,7 +34705,7 @@ export declare const zQueryExploreEventsInTimeseriesFormatResponse: z.ZodObject<
34587
34705
  start: number;
34588
34706
  } | undefined;
34589
34707
  }>;
34590
- export declare const zCreateAnExternalUserData: z.ZodObject<{
34708
+ export declare const zCreateOrganizationExternalUserData: z.ZodObject<{
34591
34709
  body: z.ZodObject<{
34592
34710
  user_id: z.ZodNumber;
34593
34711
  external_name: z.ZodString;
@@ -34645,7 +34763,7 @@ export declare const zCreateAnExternalUserData: z.ZodObject<{
34645
34763
  };
34646
34764
  query?: undefined;
34647
34765
  }>;
34648
- export declare const zCreateAnExternalUserResponse: z.ZodUnion<[z.ZodObject<{
34766
+ export declare const zCreateOrganizationExternalUserResponse: z.ZodUnion<[z.ZodObject<{
34649
34767
  externalId: z.ZodOptional<z.ZodString>;
34650
34768
  userId: z.ZodOptional<z.ZodString>;
34651
34769
  teamId: z.ZodOptional<z.ZodString>;
@@ -34694,7 +34812,7 @@ export declare const zCreateAnExternalUserResponse: z.ZodUnion<[z.ZodObject<{
34694
34812
  userId?: string | undefined;
34695
34813
  teamId?: string | undefined;
34696
34814
  }>]>;
34697
- export declare const zDeleteAnExternalUserData: z.ZodObject<{
34815
+ export declare const zDeleteOrganizationExternalUserData: z.ZodObject<{
34698
34816
  body: z.ZodOptional<z.ZodNever>;
34699
34817
  path: z.ZodObject<{
34700
34818
  organization_id_or_slug: z.ZodString;
@@ -34725,8 +34843,8 @@ export declare const zDeleteAnExternalUserData: z.ZodObject<{
34725
34843
  /**
34726
34844
  * No Content
34727
34845
  */
34728
- export declare const zDeleteAnExternalUserResponse: z.ZodVoid;
34729
- export declare const zUpdateAnExternalUserData: z.ZodObject<{
34846
+ export declare const zDeleteOrganizationExternalUserResponse: z.ZodVoid;
34847
+ export declare const zUpdateOrganizationExternalUserData: z.ZodObject<{
34730
34848
  body: z.ZodObject<{
34731
34849
  user_id: z.ZodNumber;
34732
34850
  external_name: z.ZodString;
@@ -34789,7 +34907,7 @@ export declare const zUpdateAnExternalUserData: z.ZodObject<{
34789
34907
  };
34790
34908
  query?: undefined;
34791
34909
  }>;
34792
- export declare const zUpdateAnExternalUserResponse: z.ZodObject<{
34910
+ export declare const zUpdateOrganizationExternalUserResponse: z.ZodObject<{
34793
34911
  externalId: z.ZodOptional<z.ZodString>;
34794
34912
  userId: z.ZodOptional<z.ZodString>;
34795
34913
  teamId: z.ZodOptional<z.ZodString>;
@@ -34814,7 +34932,7 @@ export declare const zUpdateAnExternalUserResponse: z.ZodObject<{
34814
34932
  userId?: string | undefined;
34815
34933
  teamId?: string | undefined;
34816
34934
  }>;
34817
- export declare const zRetrieveDataForwardersForAnOrganizationData: z.ZodObject<{
34935
+ export declare const zListOrganizationForwardingData: z.ZodObject<{
34818
34936
  body: z.ZodOptional<z.ZodNever>;
34819
34937
  path: z.ZodObject<{
34820
34938
  organization_id_or_slug: z.ZodString;
@@ -34837,7 +34955,7 @@ export declare const zRetrieveDataForwardersForAnOrganizationData: z.ZodObject<{
34837
34955
  query?: undefined;
34838
34956
  body?: undefined;
34839
34957
  }>;
34840
- export declare const zRetrieveDataForwardersForAnOrganizationResponse: z.ZodArray<z.ZodObject<{
34958
+ export declare const zListOrganizationForwardingResponse: z.ZodArray<z.ZodObject<{
34841
34959
  id: z.ZodString;
34842
34960
  organizationId: z.ZodString;
34843
34961
  isEnabled: z.ZodBoolean;
@@ -34964,7 +35082,7 @@ export declare const zRetrieveDataForwardersForAnOrganizationResponse: z.ZodArra
34964
35082
  effectiveConfig: Record<string, string>;
34965
35083
  }[];
34966
35084
  }>, "many">;
34967
- export declare const zCreateADataForwarderForAnOrganizationData: z.ZodObject<{
35085
+ export declare const zCreateOrganizationForwardingData: z.ZodObject<{
34968
35086
  body: z.ZodObject<{
34969
35087
  organization_id: z.ZodNumber;
34970
35088
  provider: z.ZodEnum<["segment", "sqs", "splunk"]>;
@@ -35022,7 +35140,7 @@ export declare const zCreateADataForwarderForAnOrganizationData: z.ZodObject<{
35022
35140
  };
35023
35141
  query?: undefined;
35024
35142
  }>;
35025
- export declare const zCreateADataForwarderForAnOrganizationResponse: z.ZodObject<{
35143
+ export declare const zCreateOrganizationForwardingResponse: z.ZodObject<{
35026
35144
  id: z.ZodString;
35027
35145
  organizationId: z.ZodString;
35028
35146
  isEnabled: z.ZodBoolean;
@@ -35149,7 +35267,7 @@ export declare const zCreateADataForwarderForAnOrganizationResponse: z.ZodObject
35149
35267
  effectiveConfig: Record<string, string>;
35150
35268
  }[];
35151
35269
  }>;
35152
- export declare const zDeleteADataForwarderForAnOrganizationData: z.ZodObject<{
35270
+ export declare const zDeleteOrganizationForwardingData: z.ZodObject<{
35153
35271
  body: z.ZodOptional<z.ZodNever>;
35154
35272
  path: z.ZodObject<{
35155
35273
  organization_id_or_slug: z.ZodString;
@@ -35180,8 +35298,8 @@ export declare const zDeleteADataForwarderForAnOrganizationData: z.ZodObject<{
35180
35298
  /**
35181
35299
  * No Content
35182
35300
  */
35183
- export declare const zDeleteADataForwarderForAnOrganizationResponse: z.ZodVoid;
35184
- export declare const zUpdateADataForwarderForAnOrganizationData: z.ZodObject<{
35301
+ export declare const zDeleteOrganizationForwardingResponse: z.ZodVoid;
35302
+ export declare const zUpdateOrganizationForwardingData: z.ZodObject<{
35185
35303
  body: z.ZodObject<{
35186
35304
  organization_id: z.ZodNumber;
35187
35305
  provider: z.ZodEnum<["segment", "sqs", "splunk"]>;
@@ -35244,7 +35362,7 @@ export declare const zUpdateADataForwarderForAnOrganizationData: z.ZodObject<{
35244
35362
  };
35245
35363
  query?: undefined;
35246
35364
  }>;
35247
- export declare const zUpdateADataForwarderForAnOrganizationResponse: z.ZodObject<{
35365
+ export declare const zUpdateOrganizationForwardingResponse: z.ZodObject<{
35248
35366
  id: z.ZodString;
35249
35367
  organizationId: z.ZodString;
35250
35368
  isEnabled: z.ZodBoolean;
@@ -35371,7 +35489,7 @@ export declare const zUpdateADataForwarderForAnOrganizationResponse: z.ZodObject
35371
35489
  effectiveConfig: Record<string, string>;
35372
35490
  }[];
35373
35491
  }>;
35374
- export declare const zListAnOrganizationSAvailableIntegrationsData: z.ZodObject<{
35492
+ export declare const zListOrganizationIntegrationsData: z.ZodObject<{
35375
35493
  body: z.ZodOptional<z.ZodNever>;
35376
35494
  path: z.ZodObject<{
35377
35495
  organization_id_or_slug: z.ZodString;
@@ -35419,7 +35537,7 @@ export declare const zListAnOrganizationSAvailableIntegrationsData: z.ZodObject<
35419
35537
  } | undefined;
35420
35538
  body?: undefined;
35421
35539
  }>;
35422
- export declare const zListAnOrganizationSAvailableIntegrationsResponse: z.ZodArray<z.ZodObject<{
35540
+ export declare const zListOrganizationIntegrationsResponse: z.ZodArray<z.ZodObject<{
35423
35541
  id: z.ZodString;
35424
35542
  name: z.ZodString;
35425
35543
  icon: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -35465,7 +35583,7 @@ export declare const zListAnOrganizationSAvailableIntegrationsResponse: z.ZodArr
35465
35583
  configOrganization?: unknown;
35466
35584
  configData?: unknown;
35467
35585
  }>, "many">;
35468
- export declare const zDeleteAnIntegrationForAnOrganizationData: z.ZodObject<{
35586
+ export declare const zDeleteOrganizationIntegrationData: z.ZodObject<{
35469
35587
  body: z.ZodOptional<z.ZodNever>;
35470
35588
  path: z.ZodObject<{
35471
35589
  organization_id_or_slug: z.ZodString;
@@ -35496,8 +35614,8 @@ export declare const zDeleteAnIntegrationForAnOrganizationData: z.ZodObject<{
35496
35614
  /**
35497
35615
  * No Content
35498
35616
  */
35499
- export declare const zDeleteAnIntegrationForAnOrganizationResponse: z.ZodVoid;
35500
- export declare const zRetrieveAnIntegrationForAnOrganizationData: z.ZodObject<{
35617
+ export declare const zDeleteOrganizationIntegrationResponse: z.ZodVoid;
35618
+ export declare const zGetOrganizationIntegrationData: z.ZodObject<{
35501
35619
  body: z.ZodOptional<z.ZodNever>;
35502
35620
  path: z.ZodObject<{
35503
35621
  organization_id_or_slug: z.ZodString;
@@ -35525,7 +35643,7 @@ export declare const zRetrieveAnIntegrationForAnOrganizationData: z.ZodObject<{
35525
35643
  query?: undefined;
35526
35644
  body?: undefined;
35527
35645
  }>;
35528
- export declare const zRetrieveAnIntegrationForAnOrganizationResponse: z.ZodObject<{
35646
+ export declare const zGetOrganizationIntegrationResponse: z.ZodObject<{
35529
35647
  id: z.ZodString;
35530
35648
  name: z.ZodString;
35531
35649
  icon: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -35571,7 +35689,7 @@ export declare const zRetrieveAnIntegrationForAnOrganizationResponse: z.ZodObjec
35571
35689
  configOrganization?: unknown;
35572
35690
  configData?: unknown;
35573
35691
  }>;
35574
- export declare const zBulkRemoveAnOrganizationSissuesData: z.ZodObject<{
35692
+ export declare const zDeleteOrganizationIssuesData: z.ZodObject<{
35575
35693
  body: z.ZodOptional<z.ZodNever>;
35576
35694
  path: z.ZodObject<{
35577
35695
  organization_id_or_slug: z.ZodString;
@@ -35637,8 +35755,8 @@ export declare const zBulkRemoveAnOrganizationSissuesData: z.ZodObject<{
35637
35755
  /**
35638
35756
  * No Content
35639
35757
  */
35640
- export declare const zBulkRemoveAnOrganizationSissuesResponse: z.ZodVoid;
35641
- export declare const zListAnOrganizationSissuesData: z.ZodObject<{
35758
+ export declare const zDeleteOrganizationIssuesResponse: z.ZodVoid;
35759
+ export declare const zListOrganizationIssuesData: z.ZodObject<{
35642
35760
  body: z.ZodOptional<z.ZodNever>;
35643
35761
  path: z.ZodObject<{
35644
35762
  organization_id_or_slug: z.ZodString;
@@ -35736,7 +35854,7 @@ export declare const zListAnOrganizationSissuesData: z.ZodObject<{
35736
35854
  } | undefined;
35737
35855
  body?: undefined;
35738
35856
  }>;
35739
- export declare const zListAnOrganizationSissuesResponse: z.ZodArray<z.ZodObject<{
35857
+ export declare const zListOrganizationIssuesResponse: z.ZodArray<z.ZodObject<{
35740
35858
  id: z.ZodString;
35741
35859
  shareId: z.ZodUnion<[z.ZodString, z.ZodNull]>;
35742
35860
  shortId: z.ZodString;
@@ -36174,7 +36292,6 @@ export declare const zListAnOrganizationSissuesResponse: z.ZodArray<z.ZodObject<
36174
36292
  date_added: z.ZodString;
36175
36293
  }, "strip", z.ZodTypeAny, {
36176
36294
  reason: number;
36177
- date_added: string;
36178
36295
  reason_details: {
36179
36296
  window: number | null;
36180
36297
  count: number | null;
@@ -36182,9 +36299,9 @@ export declare const zListAnOrganizationSissuesResponse: z.ZodArray<z.ZodObject<
36182
36299
  user_count: number | null;
36183
36300
  user_window: number | null;
36184
36301
  } | null;
36302
+ date_added: string;
36185
36303
  }, {
36186
36304
  reason: number;
36187
- date_added: string;
36188
36305
  reason_details: {
36189
36306
  window: number | null;
36190
36307
  count: number | null;
@@ -36192,6 +36309,7 @@ export declare const zListAnOrganizationSissuesResponse: z.ZodArray<z.ZodObject<
36192
36309
  user_count: number | null;
36193
36310
  user_window: number | null;
36194
36311
  } | null;
36312
+ date_added: string;
36195
36313
  }>;
36196
36314
  owners: z.ZodObject<{
36197
36315
  type: z.ZodString;
@@ -36211,11 +36329,12 @@ export declare const zListAnOrganizationSissuesResponse: z.ZodArray<z.ZodObject<
36211
36329
  integrationIssues: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
36212
36330
  sentryAppIssues: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
36213
36331
  latestEventHasAttachments: z.ZodBoolean;
36332
+ matchingEventId: z.ZodUnion<[z.ZodString, z.ZodNull]>;
36333
+ matchingEventEnvironment: z.ZodUnion<[z.ZodString, z.ZodNull]>;
36214
36334
  }, "strip", z.ZodTypeAny, {
36215
36335
  priority: string | null;
36216
36336
  inbox: {
36217
36337
  reason: number;
36218
- date_added: string;
36219
36338
  reason_details: {
36220
36339
  window: number | null;
36221
36340
  count: number | null;
@@ -36223,6 +36342,7 @@ export declare const zListAnOrganizationSissuesResponse: z.ZodArray<z.ZodObject<
36223
36342
  user_count: number | null;
36224
36343
  user_window: number | null;
36225
36344
  } | null;
36345
+ date_added: string;
36226
36346
  };
36227
36347
  integrationIssues: Record<string, unknown>[];
36228
36348
  latestEventHasAttachments: boolean;
@@ -36350,11 +36470,12 @@ export declare const zListAnOrganizationSissuesResponse: z.ZodArray<z.ZodObject<
36350
36470
  displayName: string;
36351
36471
  }[];
36352
36472
  sessionCount: number;
36473
+ matchingEventId: string | null;
36474
+ matchingEventEnvironment: string | null;
36353
36475
  }, {
36354
36476
  priority: string | null;
36355
36477
  inbox: {
36356
36478
  reason: number;
36357
- date_added: string;
36358
36479
  reason_details: {
36359
36480
  window: number | null;
36360
36481
  count: number | null;
@@ -36362,6 +36483,7 @@ export declare const zListAnOrganizationSissuesResponse: z.ZodArray<z.ZodObject<
36362
36483
  user_count: number | null;
36363
36484
  user_window: number | null;
36364
36485
  } | null;
36486
+ date_added: string;
36365
36487
  };
36366
36488
  integrationIssues: Record<string, unknown>[];
36367
36489
  latestEventHasAttachments: boolean;
@@ -36489,8 +36611,10 @@ export declare const zListAnOrganizationSissuesResponse: z.ZodArray<z.ZodObject<
36489
36611
  displayName: string;
36490
36612
  }[];
36491
36613
  sessionCount: number;
36614
+ matchingEventId: string | null;
36615
+ matchingEventEnvironment: string | null;
36492
36616
  }>, "many">;
36493
- export declare const zBulkMutateAnOrganizationSissuesData: z.ZodObject<{
36617
+ export declare const zUpdateOrganizationIssuesData: z.ZodObject<{
36494
36618
  body: z.ZodObject<{
36495
36619
  inbox: z.ZodBoolean;
36496
36620
  status: z.ZodEnum<["resolved", "unresolved", "ignored", "resolvedInNextRelease", "muted"]>;
@@ -36708,7 +36832,7 @@ export declare const zBulkMutateAnOrganizationSissuesData: z.ZodObject<{
36708
36832
  limit?: number | undefined;
36709
36833
  } | undefined;
36710
36834
  }>;
36711
- export declare const zBulkMutateAnOrganizationSissuesResponse: z.ZodUnion<[z.ZodObject<{
36835
+ export declare const zUpdateOrganizationIssuesResponse: z.ZodUnion<[z.ZodObject<{
36712
36836
  assignedTo: z.ZodOptional<z.ZodObject<{
36713
36837
  type: z.ZodEnum<["user", "team"]>;
36714
36838
  id: z.ZodString;
@@ -36875,7 +36999,7 @@ export declare const zBulkMutateAnOrganizationSissuesResponse: z.ZodUnion<[z.Zod
36875
36999
  } | undefined;
36876
37000
  discard?: boolean | undefined;
36877
37001
  }>, z.ZodVoid]>;
36878
- export declare const zListAnOrganizationSMembersData: z.ZodObject<{
37002
+ export declare const zListOrganizationMembersData: z.ZodObject<{
36879
37003
  body: z.ZodOptional<z.ZodNever>;
36880
37004
  path: z.ZodObject<{
36881
37005
  organization_id_or_slug: z.ZodString;
@@ -36908,7 +37032,7 @@ export declare const zListAnOrganizationSMembersData: z.ZodObject<{
36908
37032
  } | undefined;
36909
37033
  body?: undefined;
36910
37034
  }>;
36911
- export declare const zListAnOrganizationSMembersResponse: z.ZodArray<z.ZodObject<{
37035
+ export declare const zListOrganizationMembersResponse: z.ZodArray<z.ZodObject<{
36912
37036
  externalUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
36913
37037
  externalId: z.ZodOptional<z.ZodString>;
36914
37038
  userId: z.ZodOptional<z.ZodString>;
@@ -37292,7 +37416,7 @@ export declare const zListAnOrganizationSMembersResponse: z.ZodArray<z.ZodObject
37292
37416
  teamId?: string | undefined;
37293
37417
  }[] | undefined;
37294
37418
  }>, "many">;
37295
- export declare const zAddAMemberToAnOrganizationData: z.ZodObject<{
37419
+ export declare const zCreateOrganizationMemberData: z.ZodObject<{
37296
37420
  body: z.ZodObject<{
37297
37421
  email: z.ZodString;
37298
37422
  orgRole: z.ZodOptional<z.ZodEnum<["billing", "member", "manager", "owner", "admin"]>>;
@@ -37345,7 +37469,7 @@ export declare const zAddAMemberToAnOrganizationData: z.ZodObject<{
37345
37469
  };
37346
37470
  query?: undefined;
37347
37471
  }>;
37348
- export declare const zAddAMemberToAnOrganizationResponse: z.ZodObject<{
37472
+ export declare const zCreateOrganizationMemberResponse: z.ZodObject<{
37349
37473
  externalUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
37350
37474
  externalId: z.ZodOptional<z.ZodString>;
37351
37475
  userId: z.ZodOptional<z.ZodString>;
@@ -37729,7 +37853,7 @@ export declare const zAddAMemberToAnOrganizationResponse: z.ZodObject<{
37729
37853
  teamId?: string | undefined;
37730
37854
  }[] | undefined;
37731
37855
  }>;
37732
- export declare const zDeleteAnOrganizationMemberData: z.ZodObject<{
37856
+ export declare const zDeleteOrganizationMemberData: z.ZodObject<{
37733
37857
  body: z.ZodOptional<z.ZodNever>;
37734
37858
  path: z.ZodObject<{
37735
37859
  organization_id_or_slug: z.ZodString;
@@ -37760,8 +37884,8 @@ export declare const zDeleteAnOrganizationMemberData: z.ZodObject<{
37760
37884
  /**
37761
37885
  * No Content
37762
37886
  */
37763
- export declare const zDeleteAnOrganizationMemberResponse: z.ZodVoid;
37764
- export declare const zRetrieveAnOrganizationMemberData: z.ZodObject<{
37887
+ export declare const zDeleteOrganizationMemberResponse: z.ZodVoid;
37888
+ export declare const zGetOrganizationMemberData: z.ZodObject<{
37765
37889
  body: z.ZodOptional<z.ZodNever>;
37766
37890
  path: z.ZodObject<{
37767
37891
  organization_id_or_slug: z.ZodString;
@@ -37789,7 +37913,7 @@ export declare const zRetrieveAnOrganizationMemberData: z.ZodObject<{
37789
37913
  query?: undefined;
37790
37914
  body?: undefined;
37791
37915
  }>;
37792
- export declare const zRetrieveAnOrganizationMemberResponse: z.ZodObject<{
37916
+ export declare const zGetOrganizationMemberResponse: z.ZodObject<{
37793
37917
  externalUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
37794
37918
  externalId: z.ZodOptional<z.ZodString>;
37795
37919
  userId: z.ZodOptional<z.ZodString>;
@@ -38322,7 +38446,7 @@ export declare const zRetrieveAnOrganizationMemberResponse: z.ZodObject<{
38322
38446
  role?: string | undefined;
38323
38447
  roleName?: string | undefined;
38324
38448
  }>;
38325
- export declare const zUpdateAnOrganizationMemberSRolesData: z.ZodObject<{
38449
+ export declare const zUpdateOrganizationMemberData: z.ZodObject<{
38326
38450
  body: z.ZodOptional<z.ZodObject<{
38327
38451
  orgRole: z.ZodOptional<z.ZodEnum<["billing", "member", "manager", "owner", "admin"]>>;
38328
38452
  teamRoles: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">, z.ZodNull]>>;
@@ -38365,7 +38489,7 @@ export declare const zUpdateAnOrganizationMemberSRolesData: z.ZodObject<{
38365
38489
  teamRoles?: Record<string, unknown>[] | null | undefined;
38366
38490
  } | undefined;
38367
38491
  }>;
38368
- export declare const zUpdateAnOrganizationMemberSRolesResponse: z.ZodObject<{
38492
+ export declare const zUpdateOrganizationMemberResponse: z.ZodObject<{
38369
38493
  externalUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
38370
38494
  externalId: z.ZodOptional<z.ZodString>;
38371
38495
  userId: z.ZodOptional<z.ZodString>;
@@ -38898,7 +39022,7 @@ export declare const zUpdateAnOrganizationMemberSRolesResponse: z.ZodObject<{
38898
39022
  role?: string | undefined;
38899
39023
  roleName?: string | undefined;
38900
39024
  }>;
38901
- export declare const zDeleteAnOrganizationMemberFromATeamData: z.ZodObject<{
39025
+ export declare const zDeleteOrganizationMemberTeamData: z.ZodObject<{
38902
39026
  body: z.ZodOptional<z.ZodNever>;
38903
39027
  path: z.ZodObject<{
38904
39028
  organization_id_or_slug: z.ZodString;
@@ -38931,7 +39055,7 @@ export declare const zDeleteAnOrganizationMemberFromATeamData: z.ZodObject<{
38931
39055
  query?: undefined;
38932
39056
  body?: undefined;
38933
39057
  }>;
38934
- export declare const zDeleteAnOrganizationMemberFromATeamResponse: z.ZodObject<{
39058
+ export declare const zDeleteOrganizationMemberTeamResponse: z.ZodObject<{
38935
39059
  id: z.ZodString;
38936
39060
  slug: z.ZodString;
38937
39061
  name: z.ZodString;
@@ -38991,7 +39115,7 @@ export declare const zDeleteAnOrganizationMemberFromATeamResponse: z.ZodObject<{
38991
39115
  avatarUrl?: string | null | undefined;
38992
39116
  };
38993
39117
  }>;
38994
- export declare const zAddAnOrganizationMemberToATeamData: z.ZodObject<{
39118
+ export declare const zCreateOrganizationMemberTeamData: z.ZodObject<{
38995
39119
  body: z.ZodOptional<z.ZodNever>;
38996
39120
  path: z.ZodObject<{
38997
39121
  organization_id_or_slug: z.ZodString;
@@ -39024,7 +39148,7 @@ export declare const zAddAnOrganizationMemberToATeamData: z.ZodObject<{
39024
39148
  query?: undefined;
39025
39149
  body?: undefined;
39026
39150
  }>;
39027
- export declare const zAddAnOrganizationMemberToATeamResponse: z.ZodUnion<[z.ZodObject<{
39151
+ export declare const zCreateOrganizationMemberTeamResponse: z.ZodUnion<[z.ZodObject<{
39028
39152
  id: z.ZodString;
39029
39153
  slug: z.ZodString;
39030
39154
  name: z.ZodString;
@@ -39084,7 +39208,7 @@ export declare const zAddAnOrganizationMemberToATeamResponse: z.ZodUnion<[z.ZodO
39084
39208
  avatarUrl?: string | null | undefined;
39085
39209
  };
39086
39210
  }>, z.ZodUnknown, z.ZodVoid]>;
39087
- export declare const zUpdateAnOrganizationMemberSTeamRoleData: z.ZodObject<{
39211
+ export declare const zUpdateOrganizationMemberTeamData: z.ZodObject<{
39088
39212
  body: z.ZodOptional<z.ZodObject<{
39089
39213
  teamRole: z.ZodOptional<z.ZodEnum<["contributor", "admin"]>>;
39090
39214
  }, "strip", z.ZodTypeAny, {
@@ -39127,7 +39251,7 @@ export declare const zUpdateAnOrganizationMemberSTeamRoleData: z.ZodObject<{
39127
39251
  teamRole?: "admin" | "contributor" | undefined;
39128
39252
  } | undefined;
39129
39253
  }>;
39130
- export declare const zUpdateAnOrganizationMemberSTeamRoleResponse: z.ZodObject<{
39254
+ export declare const zUpdateOrganizationMemberTeamResponse: z.ZodObject<{
39131
39255
  isActive: z.ZodBoolean;
39132
39256
  teamRole: z.ZodEnum<["contributor", "admin"]>;
39133
39257
  }, "strip", z.ZodTypeAny, {
@@ -39137,7 +39261,7 @@ export declare const zUpdateAnOrganizationMemberSTeamRoleResponse: z.ZodObject<{
39137
39261
  teamRole: "admin" | "contributor";
39138
39262
  isActive: boolean;
39139
39263
  }>;
39140
- export declare const zRetrieveMonitorsForAnOrganizationData: z.ZodObject<{
39264
+ export declare const zListOrganizationMonitorsData: z.ZodObject<{
39141
39265
  body: z.ZodOptional<z.ZodNever>;
39142
39266
  path: z.ZodObject<{
39143
39267
  organization_id_or_slug: z.ZodString;
@@ -39185,7 +39309,7 @@ export declare const zRetrieveMonitorsForAnOrganizationData: z.ZodObject<{
39185
39309
  } | undefined;
39186
39310
  body?: undefined;
39187
39311
  }>;
39188
- export declare const zRetrieveMonitorsForAnOrganizationResponse: z.ZodArray<z.ZodObject<{
39312
+ export declare const zListOrganizationMonitorsResponse: z.ZodArray<z.ZodObject<{
39189
39313
  alertRule: z.ZodOptional<z.ZodObject<{
39190
39314
  targets: z.ZodArray<z.ZodObject<{
39191
39315
  targetIdentifier: z.ZodNumber;
@@ -39664,7 +39788,7 @@ export declare const zRetrieveMonitorsForAnOrganizationResponse: z.ZodArray<z.Zo
39664
39788
  }[];
39665
39789
  } | undefined;
39666
39790
  }>, "many">;
39667
- export declare const zCreateAMonitorData: z.ZodObject<{
39791
+ export declare const zCreateOrganizationMonitorData: z.ZodObject<{
39668
39792
  body: z.ZodObject<{
39669
39793
  project: z.ZodString;
39670
39794
  name: z.ZodString;
@@ -39783,7 +39907,7 @@ export declare const zCreateAMonitorData: z.ZodObject<{
39783
39907
  };
39784
39908
  query?: undefined;
39785
39909
  }>;
39786
- export declare const zCreateAMonitorResponse: z.ZodObject<{
39910
+ export declare const zCreateOrganizationMonitorResponse: z.ZodObject<{
39787
39911
  alertRule: z.ZodOptional<z.ZodObject<{
39788
39912
  targets: z.ZodArray<z.ZodObject<{
39789
39913
  targetIdentifier: z.ZodNumber;
@@ -40262,7 +40386,7 @@ export declare const zCreateAMonitorResponse: z.ZodObject<{
40262
40386
  }[];
40263
40387
  } | undefined;
40264
40388
  }>;
40265
- export declare const zDeleteAMonitorOrMonitorEnvironmentsData: z.ZodObject<{
40389
+ export declare const zDeleteOrganizationMonitorData: z.ZodObject<{
40266
40390
  body: z.ZodOptional<z.ZodNever>;
40267
40391
  path: z.ZodObject<{
40268
40392
  organization_id_or_slug: z.ZodString;
@@ -40300,7 +40424,7 @@ export declare const zDeleteAMonitorOrMonitorEnvironmentsData: z.ZodObject<{
40300
40424
  } | undefined;
40301
40425
  body?: undefined;
40302
40426
  }>;
40303
- export declare const zRetrieveAMonitorData: z.ZodObject<{
40427
+ export declare const zGetOrganizationMonitorData: z.ZodObject<{
40304
40428
  body: z.ZodOptional<z.ZodNever>;
40305
40429
  path: z.ZodObject<{
40306
40430
  organization_id_or_slug: z.ZodString;
@@ -40338,7 +40462,7 @@ export declare const zRetrieveAMonitorData: z.ZodObject<{
40338
40462
  } | undefined;
40339
40463
  body?: undefined;
40340
40464
  }>;
40341
- export declare const zRetrieveAMonitorResponse: z.ZodObject<{
40465
+ export declare const zGetOrganizationMonitorResponse: z.ZodObject<{
40342
40466
  alertRule: z.ZodOptional<z.ZodObject<{
40343
40467
  targets: z.ZodArray<z.ZodObject<{
40344
40468
  targetIdentifier: z.ZodNumber;
@@ -40817,7 +40941,7 @@ export declare const zRetrieveAMonitorResponse: z.ZodObject<{
40817
40941
  }[];
40818
40942
  } | undefined;
40819
40943
  }>;
40820
- export declare const zUpdateAMonitorData: z.ZodObject<{
40944
+ export declare const zUpdateOrganizationMonitorData: z.ZodObject<{
40821
40945
  body: z.ZodObject<{
40822
40946
  project: z.ZodString;
40823
40947
  name: z.ZodString;
@@ -40941,7 +41065,7 @@ export declare const zUpdateAMonitorData: z.ZodObject<{
40941
41065
  };
40942
41066
  query?: undefined;
40943
41067
  }>;
40944
- export declare const zUpdateAMonitorResponse: z.ZodObject<{
41068
+ export declare const zUpdateOrganizationMonitorResponse: z.ZodObject<{
40945
41069
  alertRule: z.ZodOptional<z.ZodObject<{
40946
41070
  targets: z.ZodArray<z.ZodObject<{
40947
41071
  targetIdentifier: z.ZodNumber;
@@ -41420,7 +41544,7 @@ export declare const zUpdateAMonitorResponse: z.ZodObject<{
41420
41544
  }[];
41421
41545
  } | undefined;
41422
41546
  }>;
41423
- export declare const zRetrieveCheckInsForAMonitorData: z.ZodObject<{
41547
+ export declare const zListOrganizationMonitorCheckinsData: z.ZodObject<{
41424
41548
  body: z.ZodOptional<z.ZodNever>;
41425
41549
  path: z.ZodObject<{
41426
41550
  organization_id_or_slug: z.ZodString;
@@ -41458,7 +41582,7 @@ export declare const zRetrieveCheckInsForAMonitorData: z.ZodObject<{
41458
41582
  } | undefined;
41459
41583
  body?: undefined;
41460
41584
  }>;
41461
- export declare const zRetrieveCheckInsForAMonitorResponse: z.ZodArray<z.ZodObject<{
41585
+ export declare const zListOrganizationMonitorCheckinsResponse: z.ZodArray<z.ZodObject<{
41462
41586
  groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
41463
41587
  id: z.ZodString;
41464
41588
  environment: z.ZodString;
@@ -41543,7 +41667,7 @@ export declare const zRetrieveCheckInsForAMonitorResponse: z.ZodArray<z.ZodObjec
41543
41667
  };
41544
41668
  groups?: string[] | undefined;
41545
41669
  }>, "many">;
41546
- export declare const zListSpikeProtectionNotificationsData: z.ZodObject<{
41670
+ export declare const zListOrganizationNotificationsActionsData: z.ZodObject<{
41547
41671
  body: z.ZodOptional<z.ZodNever>;
41548
41672
  path: z.ZodObject<{
41549
41673
  organization_id_or_slug: z.ZodString;
@@ -41586,8 +41710,8 @@ export declare const zListSpikeProtectionNotificationsData: z.ZodObject<{
41586
41710
  } | undefined;
41587
41711
  body?: undefined;
41588
41712
  }>;
41589
- export declare const zListSpikeProtectionNotificationsResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
41590
- export declare const zCreateASpikeProtectionNotificationActionData: z.ZodObject<{
41713
+ export declare const zListOrganizationNotificationsActionsResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
41714
+ export declare const zCreateOrganizationNotificationsActionData: z.ZodObject<{
41591
41715
  body: z.ZodObject<{
41592
41716
  trigger_type: z.ZodString;
41593
41717
  service_type: z.ZodString;
@@ -41645,8 +41769,8 @@ export declare const zCreateASpikeProtectionNotificationActionData: z.ZodObject<
41645
41769
  };
41646
41770
  query?: undefined;
41647
41771
  }>;
41648
- export declare const zCreateASpikeProtectionNotificationActionResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
41649
- export declare const zDeleteASpikeProtectionNotificationActionData: z.ZodObject<{
41772
+ export declare const zCreateOrganizationNotificationsActionResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
41773
+ export declare const zDeleteOrganizationNotificationsActionData: z.ZodObject<{
41650
41774
  body: z.ZodOptional<z.ZodNever>;
41651
41775
  path: z.ZodObject<{
41652
41776
  organization_id_or_slug: z.ZodString;
@@ -41677,8 +41801,8 @@ export declare const zDeleteASpikeProtectionNotificationActionData: z.ZodObject<
41677
41801
  /**
41678
41802
  * No Content
41679
41803
  */
41680
- export declare const zDeleteASpikeProtectionNotificationActionResponse: z.ZodVoid;
41681
- export declare const zRetrieveASpikeProtectionNotificationActionData: z.ZodObject<{
41804
+ export declare const zDeleteOrganizationNotificationsActionResponse: z.ZodVoid;
41805
+ export declare const zGetOrganizationNotificationsActionData: z.ZodObject<{
41682
41806
  body: z.ZodOptional<z.ZodNever>;
41683
41807
  path: z.ZodObject<{
41684
41808
  organization_id_or_slug: z.ZodString;
@@ -41706,8 +41830,8 @@ export declare const zRetrieveASpikeProtectionNotificationActionData: z.ZodObjec
41706
41830
  query?: undefined;
41707
41831
  body?: undefined;
41708
41832
  }>;
41709
- export declare const zRetrieveASpikeProtectionNotificationActionResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
41710
- export declare const zUpdateASpikeProtectionNotificationActionData: z.ZodObject<{
41833
+ export declare const zGetOrganizationNotificationsActionResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
41834
+ export declare const zUpdateOrganizationNotificationsActionData: z.ZodObject<{
41711
41835
  body: z.ZodObject<{
41712
41836
  trigger_type: z.ZodString;
41713
41837
  service_type: z.ZodString;
@@ -41770,8 +41894,8 @@ export declare const zUpdateASpikeProtectionNotificationActionData: z.ZodObject<
41770
41894
  };
41771
41895
  query?: undefined;
41772
41896
  }>;
41773
- export declare const zUpdateASpikeProtectionNotificationActionResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
41774
- export declare const zRetrieveInstallInfoForAGivenArtifactData: z.ZodObject<{
41897
+ export declare const zUpdateOrganizationNotificationsActionResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
41898
+ export declare const zListOrganizationPreprodartifactInstallDetailsData: z.ZodObject<{
41775
41899
  body: z.ZodOptional<z.ZodNever>;
41776
41900
  path: z.ZodObject<{
41777
41901
  organization_id_or_slug: z.ZodString;
@@ -41799,7 +41923,7 @@ export declare const zRetrieveInstallInfoForAGivenArtifactData: z.ZodObject<{
41799
41923
  query?: undefined;
41800
41924
  body?: undefined;
41801
41925
  }>;
41802
- export declare const zRetrieveInstallInfoForAGivenArtifactResponse: z.ZodObject<{
41926
+ export declare const zListOrganizationPreprodartifactInstallDetailsResponse: z.ZodObject<{
41803
41927
  buildId: z.ZodString;
41804
41928
  state: z.ZodString;
41805
41929
  appInfo: z.ZodObject<{
@@ -41939,7 +42063,7 @@ export declare const zRetrieveInstallInfoForAGivenArtifactResponse: z.ZodObject<
41939
42063
  isCodeSignatureValid: boolean | null;
41940
42064
  profileName: string | null;
41941
42065
  }>;
41942
- export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactData: z.ZodObject<{
42066
+ export declare const zListOrganizationPreprodartifactSizeAnalysisData: z.ZodObject<{
41943
42067
  body: z.ZodOptional<z.ZodNever>;
41944
42068
  path: z.ZodObject<{
41945
42069
  organization_id_or_slug: z.ZodString;
@@ -41977,7 +42101,7 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactData: z.ZodObj
41977
42101
  } | undefined;
41978
42102
  body?: undefined;
41979
42103
  }>;
41980
- export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.ZodObject<{
42104
+ export declare const zListOrganizationPreprodartifactSizeAnalysisResponse: z.ZodObject<{
41981
42105
  buildId: z.ZodString;
41982
42106
  state: z.ZodString;
41983
42107
  appInfo: z.ZodObject<{
@@ -42522,7 +42646,7 @@ export declare const zRetrieveSizeAnalysisResultsForAGivenArtifactResponse: z.Zo
42522
42646
  }[] | null;
42523
42647
  }[] | null;
42524
42648
  }>;
42525
- export declare const zDeleteASnapshotData: z.ZodObject<{
42649
+ export declare const zDeleteOrganizationPreprodartifactsSnapshotData: z.ZodObject<{
42526
42650
  body: z.ZodOptional<z.ZodNever>;
42527
42651
  path: z.ZodObject<{
42528
42652
  organization_id_or_slug: z.ZodString;
@@ -42553,8 +42677,8 @@ export declare const zDeleteASnapshotData: z.ZodObject<{
42553
42677
  /**
42554
42678
  * No response body
42555
42679
  */
42556
- export declare const zDeleteASnapshotResponse: z.ZodVoid;
42557
- export declare const zRetrieveSnapshotDetailsData: z.ZodObject<{
42680
+ export declare const zDeleteOrganizationPreprodartifactsSnapshotResponse: z.ZodVoid;
42681
+ export declare const zGetOrganizationPreprodartifactsSnapshotData: z.ZodObject<{
42558
42682
  body: z.ZodOptional<z.ZodNever>;
42559
42683
  path: z.ZodObject<{
42560
42684
  organization_id_or_slug: z.ZodString;
@@ -42592,7 +42716,7 @@ export declare const zRetrieveSnapshotDetailsData: z.ZodObject<{
42592
42716
  } | undefined;
42593
42717
  body?: undefined;
42594
42718
  }>;
42595
- export declare const zRetrieveSnapshotDetailsResponse: z.ZodObject<{
42719
+ export declare const zGetOrganizationPreprodartifactsSnapshotResponse: z.ZodObject<{
42596
42720
  head_artifact_id: z.ZodOptional<z.ZodString>;
42597
42721
  base_artifact_id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
42598
42722
  project_id: z.ZodOptional<z.ZodString>;
@@ -43312,7 +43436,7 @@ export declare const zRetrieveSnapshotDetailsResponse: z.ZodObject<{
43312
43436
  approved_at?: string | null | undefined;
43313
43437
  }[] | undefined;
43314
43438
  }>;
43315
- export declare const zDownloadSnapshotImagesAsZipData: z.ZodObject<{
43439
+ export declare const zListOrganizationPreprodartifactsSnapshotDownloadData: z.ZodObject<{
43316
43440
  body: z.ZodOptional<z.ZodNever>;
43317
43441
  path: z.ZodObject<{
43318
43442
  organization_id_or_slug: z.ZodString;
@@ -43340,7 +43464,7 @@ export declare const zDownloadSnapshotImagesAsZipData: z.ZodObject<{
43340
43464
  query?: undefined;
43341
43465
  body?: undefined;
43342
43466
  }>;
43343
- export declare const zRetrieveSnapshotImageDetailData: z.ZodObject<{
43467
+ export declare const zGetOrganizationPreprodartifactsSnapshotImageData: z.ZodObject<{
43344
43468
  body: z.ZodOptional<z.ZodNever>;
43345
43469
  path: z.ZodObject<{
43346
43470
  organization_id_or_slug: z.ZodString;
@@ -43373,7 +43497,7 @@ export declare const zRetrieveSnapshotImageDetailData: z.ZodObject<{
43373
43497
  query?: undefined;
43374
43498
  body?: undefined;
43375
43499
  }>;
43376
- export declare const zRetrieveSnapshotImageDetailResponse: z.ZodObject<{
43500
+ export declare const zGetOrganizationPreprodartifactsSnapshotImageResponse: z.ZodObject<{
43377
43501
  image_file_name: z.ZodOptional<z.ZodString>;
43378
43502
  comparison_status: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
43379
43503
  head_image: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
@@ -43508,7 +43632,7 @@ export declare const zRetrieveSnapshotImageDetailResponse: z.ZodObject<{
43508
43632
  diff_percentage?: number | null | undefined;
43509
43633
  previous_image_file_name?: string | null | undefined;
43510
43634
  }>;
43511
- export declare const zRetrieveLatestBaseSnapshotData: z.ZodObject<{
43635
+ export declare const zListOrganizationPreprodartifactsSnapshotsLatestBaseData: z.ZodObject<{
43512
43636
  body: z.ZodOptional<z.ZodNever>;
43513
43637
  path: z.ZodObject<{
43514
43638
  organization_id_or_slug: z.ZodString;
@@ -43556,7 +43680,7 @@ export declare const zRetrieveLatestBaseSnapshotData: z.ZodObject<{
43556
43680
  };
43557
43681
  body?: undefined;
43558
43682
  }>;
43559
- export declare const zRetrieveLatestBaseSnapshotResponse: z.ZodObject<{
43683
+ export declare const zListOrganizationPreprodartifactsSnapshotsLatestBaseResponse: z.ZodObject<{
43560
43684
  head_artifact_id: z.ZodOptional<z.ZodString>;
43561
43685
  project_id: z.ZodOptional<z.ZodString>;
43562
43686
  project_slug: z.ZodOptional<z.ZodString>;
@@ -43614,6 +43738,7 @@ export declare const zRetrieveLatestBaseSnapshotResponse: z.ZodObject<{
43614
43738
  }, "strip", z.ZodTypeAny, {
43615
43739
  app_id?: string | null | undefined;
43616
43740
  project_id?: string | undefined;
43741
+ date_added?: string | undefined;
43617
43742
  head_artifact_id?: string | undefined;
43618
43743
  project_slug?: string | undefined;
43619
43744
  image_count?: number | undefined;
@@ -43627,7 +43752,6 @@ export declare const zRetrieveLatestBaseSnapshotResponse: z.ZodObject<{
43627
43752
  image_url?: string | undefined;
43628
43753
  }[] | undefined;
43629
43754
  diff_threshold?: number | null | undefined;
43630
- date_added?: string | undefined;
43631
43755
  vcs_info?: {
43632
43756
  head_sha?: string | null | undefined;
43633
43757
  base_sha?: string | null | undefined;
@@ -43639,6 +43763,7 @@ export declare const zRetrieveLatestBaseSnapshotResponse: z.ZodObject<{
43639
43763
  }, {
43640
43764
  app_id?: string | null | undefined;
43641
43765
  project_id?: string | undefined;
43766
+ date_added?: string | undefined;
43642
43767
  head_artifact_id?: string | undefined;
43643
43768
  project_slug?: string | undefined;
43644
43769
  image_count?: number | undefined;
@@ -43652,7 +43777,6 @@ export declare const zRetrieveLatestBaseSnapshotResponse: z.ZodObject<{
43652
43777
  image_url?: string | undefined;
43653
43778
  }[] | undefined;
43654
43779
  diff_threshold?: number | null | undefined;
43655
- date_added?: string | undefined;
43656
43780
  vcs_info?: {
43657
43781
  head_sha?: string | null | undefined;
43658
43782
  base_sha?: string | null | undefined;
@@ -43662,7 +43786,7 @@ export declare const zRetrieveLatestBaseSnapshotResponse: z.ZodObject<{
43662
43786
  pr_number?: number | null | undefined;
43663
43787
  } | undefined;
43664
43788
  }>;
43665
- export declare const zRetrieveProfileChunksForAnOrganizationData: z.ZodObject<{
43789
+ export declare const zListOrganizationProfilingChunksData: z.ZodObject<{
43666
43790
  body: z.ZodOptional<z.ZodNever>;
43667
43791
  path: z.ZodObject<{
43668
43792
  organization_id_or_slug: z.ZodString;
@@ -43715,8 +43839,8 @@ export declare const zRetrieveProfileChunksForAnOrganizationData: z.ZodObject<{
43715
43839
  };
43716
43840
  body?: undefined;
43717
43841
  }>;
43718
- export declare const zRetrieveProfileChunksForAnOrganizationResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
43719
- export declare const zRetrieveAFlamegraphForAnOrganizationData: z.ZodObject<{
43842
+ export declare const zListOrganizationProfilingChunksResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
43843
+ export declare const zListOrganizationProfilingFlamegraphData: z.ZodObject<{
43720
43844
  body: z.ZodOptional<z.ZodNever>;
43721
43845
  path: z.ZodObject<{
43722
43846
  organization_id_or_slug: z.ZodString;
@@ -43789,8 +43913,8 @@ export declare const zRetrieveAFlamegraphForAnOrganizationData: z.ZodObject<{
43789
43913
  } | undefined;
43790
43914
  body?: undefined;
43791
43915
  }>;
43792
- export declare const zRetrieveAFlamegraphForAnOrganizationResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
43793
- export declare const zListAnOrganizationSClientKeysData: z.ZodObject<{
43916
+ export declare const zListOrganizationProfilingFlamegraphResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
43917
+ export declare const zListOrganizationProjectKeysData: z.ZodObject<{
43794
43918
  body: z.ZodOptional<z.ZodNever>;
43795
43919
  path: z.ZodObject<{
43796
43920
  organization_id_or_slug: z.ZodString;
@@ -43833,7 +43957,7 @@ export declare const zListAnOrganizationSClientKeysData: z.ZodObject<{
43833
43957
  } | undefined;
43834
43958
  body?: undefined;
43835
43959
  }>;
43836
- export declare const zListAnOrganizationSClientKeysResponse: z.ZodArray<z.ZodObject<{
43960
+ export declare const zListOrganizationProjectKeysResponse: z.ZodArray<z.ZodObject<{
43837
43961
  id: z.ZodString;
43838
43962
  name: z.ZodString;
43839
43963
  label: z.ZodString;
@@ -44004,7 +44128,7 @@ export declare const zListAnOrganizationSClientKeysResponse: z.ZodArray<z.ZodObj
44004
44128
  };
44005
44129
  useCase?: string | undefined;
44006
44130
  }>, "many">;
44007
- export declare const zListAnOrganizationSProjectsData: z.ZodObject<{
44131
+ export declare const zListOrganizationProjectsData: z.ZodObject<{
44008
44132
  body: z.ZodOptional<z.ZodNever>;
44009
44133
  path: z.ZodObject<{
44010
44134
  organization_id_or_slug: z.ZodString;
@@ -44047,7 +44171,7 @@ export declare const zListAnOrganizationSProjectsData: z.ZodObject<{
44047
44171
  } | undefined;
44048
44172
  body?: undefined;
44049
44173
  }>;
44050
- export declare const zListAnOrganizationSProjectsResponse: z.ZodArray<z.ZodObject<{
44174
+ export declare const zListOrganizationProjectsResponse: z.ZodArray<z.ZodObject<{
44051
44175
  latestDeploys: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodNull]>>;
44052
44176
  options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
44053
44177
  stats: z.ZodOptional<z.ZodUnknown>;
@@ -44230,7 +44354,7 @@ export declare const zListAnOrganizationSProjectsResponse: z.ZodArray<z.ZodObjec
44230
44354
  sessionStats?: unknown;
44231
44355
  latestDeploys?: Record<string, Record<string, string>> | null | undefined;
44232
44356
  }>, "many">;
44233
- export declare const zCreateAProjectForAnOrganizationData: z.ZodObject<{
44357
+ export declare const zCreateOrganizationProjectData: z.ZodObject<{
44234
44358
  body: z.ZodObject<{
44235
44359
  name: z.ZodString;
44236
44360
  slug: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
@@ -44278,7 +44402,7 @@ export declare const zCreateAProjectForAnOrganizationData: z.ZodObject<{
44278
44402
  };
44279
44403
  query?: undefined;
44280
44404
  }>;
44281
- export declare const zCreateAProjectForAnOrganizationResponse: z.ZodObject<{
44405
+ export declare const zCreateOrganizationProjectResponse: z.ZodObject<{
44282
44406
  latestDeploys: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodNull]>>;
44283
44407
  options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
44284
44408
  stats: z.ZodOptional<z.ZodUnknown>;
@@ -44461,7 +44585,7 @@ export declare const zCreateAProjectForAnOrganizationResponse: z.ZodObject<{
44461
44585
  sessionStats?: unknown;
44462
44586
  latestDeploys?: Record<string, Record<string, string>> | null | undefined;
44463
44587
  }>;
44464
- export declare const zCreateAMonitorForAProjectData: z.ZodObject<{
44588
+ export declare const zCreateOrganizationProjectDetectorData: z.ZodObject<{
44465
44589
  body: z.ZodObject<{
44466
44590
  name: z.ZodString;
44467
44591
  type: z.ZodString;
@@ -44567,7 +44691,7 @@ export declare const zCreateAMonitorForAProjectData: z.ZodObject<{
44567
44691
  };
44568
44692
  query?: undefined;
44569
44693
  }>;
44570
- export declare const zCreateAMonitorForAProjectResponse: z.ZodObject<{
44694
+ export declare const zCreateOrganizationProjectDetectorResponse: z.ZodObject<{
44571
44695
  owner: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
44572
44696
  type: z.ZodEnum<["user", "team"]>;
44573
44697
  id: z.ZodString;
@@ -44641,7 +44765,7 @@ export declare const zCreateAMonitorForAProjectResponse: z.ZodObject<{
44641
44765
  createdBy?: string | null | undefined;
44642
44766
  latestGroup?: Record<string, unknown> | null | undefined;
44643
44767
  }>;
44644
- export declare const zListAnOrganizationSTrustedRelaysData: z.ZodObject<{
44768
+ export declare const zListOrganizationRelayUsageData: z.ZodObject<{
44645
44769
  body: z.ZodOptional<z.ZodNever>;
44646
44770
  path: z.ZodObject<{
44647
44771
  organization_id_or_slug: z.ZodString;
@@ -44664,7 +44788,7 @@ export declare const zListAnOrganizationSTrustedRelaysData: z.ZodObject<{
44664
44788
  query?: undefined;
44665
44789
  body?: undefined;
44666
44790
  }>;
44667
- export declare const zListAnOrganizationSTrustedRelaysResponse: z.ZodArray<z.ZodObject<{
44791
+ export declare const zListOrganizationRelayUsageResponse: z.ZodArray<z.ZodObject<{
44668
44792
  relayId: z.ZodString;
44669
44793
  version: z.ZodString;
44670
44794
  publicKey: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -44683,7 +44807,7 @@ export declare const zListAnOrganizationSTrustedRelaysResponse: z.ZodArray<z.Zod
44683
44807
  relayId: string;
44684
44808
  publicKey: string | null;
44685
44809
  }>, "many">;
44686
- export declare const zRetrieveStatusesOfReleaseThresholdsAlphaData: z.ZodObject<{
44810
+ export declare const zListOrganizationReleaseThresholdStatusesData: z.ZodObject<{
44687
44811
  body: z.ZodOptional<z.ZodNever>;
44688
44812
  path: z.ZodObject<{
44689
44813
  organization_id_or_slug: z.ZodString;
@@ -44736,7 +44860,7 @@ export declare const zRetrieveStatusesOfReleaseThresholdsAlphaData: z.ZodObject<
44736
44860
  };
44737
44861
  body?: undefined;
44738
44862
  }>;
44739
- export declare const zRetrieveStatusesOfReleaseThresholdsAlphaResponse: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
44863
+ export declare const zListOrganizationReleaseThresholdStatusesResponse: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
44740
44864
  id: z.ZodOptional<z.ZodString>;
44741
44865
  date: z.ZodOptional<z.ZodString>;
44742
44866
  environment: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
@@ -44788,7 +44912,7 @@ export declare const zRetrieveStatusesOfReleaseThresholdsAlphaResponse: z.ZodRec
44788
44912
  threshold_type?: number | undefined;
44789
44913
  window_in_seconds?: number | undefined;
44790
44914
  }>, "many">>;
44791
- export declare const zDeleteAnOrganizationSReleaseData: z.ZodObject<{
44915
+ export declare const zDeleteOrganizationReleaseData: z.ZodObject<{
44792
44916
  body: z.ZodOptional<z.ZodNever>;
44793
44917
  path: z.ZodObject<{
44794
44918
  organization_id_or_slug: z.ZodString;
@@ -44819,8 +44943,8 @@ export declare const zDeleteAnOrganizationSReleaseData: z.ZodObject<{
44819
44943
  /**
44820
44944
  * No Content
44821
44945
  */
44822
- export declare const zDeleteAnOrganizationSReleaseResponse: z.ZodVoid;
44823
- export declare const zRetrieveAnOrganizationSReleaseData: z.ZodObject<{
44946
+ export declare const zDeleteOrganizationReleaseResponse: z.ZodVoid;
44947
+ export declare const zGetOrganizationReleaseData: z.ZodObject<{
44824
44948
  body: z.ZodOptional<z.ZodNever>;
44825
44949
  path: z.ZodObject<{
44826
44950
  organization_id_or_slug: z.ZodString;
@@ -44893,7 +45017,7 @@ export declare const zRetrieveAnOrganizationSReleaseData: z.ZodObject<{
44893
45017
  } | undefined;
44894
45018
  body?: undefined;
44895
45019
  }>;
44896
- export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
45020
+ export declare const zGetOrganizationReleaseResponse: z.ZodObject<{
44897
45021
  ref: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
44898
45022
  url: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
44899
45023
  dateReleased: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
@@ -45492,7 +45616,7 @@ export declare const zRetrieveAnOrganizationSReleaseResponse: z.ZodObject<{
45492
45616
  lastEvent?: string | null | undefined;
45493
45617
  currentProjectMeta?: Record<string, unknown> | null | undefined;
45494
45618
  }>;
45495
- export declare const zUpdateAnOrganizationSReleaseData: z.ZodObject<{
45619
+ export declare const zUpdateOrganizationReleaseData: z.ZodObject<{
45496
45620
  body: z.ZodOptional<z.ZodObject<{
45497
45621
  ref: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
45498
45622
  url: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
@@ -45661,7 +45785,7 @@ export declare const zUpdateAnOrganizationSReleaseData: z.ZodObject<{
45661
45785
  }[] | undefined;
45662
45786
  } | undefined;
45663
45787
  }>;
45664
- export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
45788
+ export declare const zUpdateOrganizationReleaseResponse: z.ZodObject<{
45665
45789
  ref: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
45666
45790
  url: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
45667
45791
  dateReleased: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
@@ -46260,7 +46384,7 @@ export declare const zUpdateAnOrganizationSReleaseResponse: z.ZodObject<{
46260
46384
  lastEvent?: string | null | undefined;
46261
46385
  currentProjectMeta?: Record<string, unknown> | null | undefined;
46262
46386
  }>;
46263
- export declare const zListAReleaseSDeploysData: z.ZodObject<{
46387
+ export declare const zListOrganizationReleaseDeploysData: z.ZodObject<{
46264
46388
  body: z.ZodOptional<z.ZodNever>;
46265
46389
  path: z.ZodObject<{
46266
46390
  organization_id_or_slug: z.ZodString;
@@ -46298,7 +46422,7 @@ export declare const zListAReleaseSDeploysData: z.ZodObject<{
46298
46422
  } | undefined;
46299
46423
  body?: undefined;
46300
46424
  }>;
46301
- export declare const zListAReleaseSDeploysResponse: z.ZodArray<z.ZodObject<{
46425
+ export declare const zListOrganizationReleaseDeploysResponse: z.ZodArray<z.ZodObject<{
46302
46426
  id: z.ZodString;
46303
46427
  environment: z.ZodString;
46304
46428
  dateStarted: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -46320,7 +46444,7 @@ export declare const zListAReleaseSDeploysResponse: z.ZodArray<z.ZodObject<{
46320
46444
  dateStarted: string | null;
46321
46445
  dateFinished: string;
46322
46446
  }>, "many">;
46323
- export declare const zCreateADeployData: z.ZodObject<{
46447
+ export declare const zCreateOrganizationReleaseDeployData: z.ZodObject<{
46324
46448
  body: z.ZodObject<{
46325
46449
  environment: z.ZodString;
46326
46450
  name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
@@ -46386,7 +46510,7 @@ export declare const zCreateADeployData: z.ZodObject<{
46386
46510
  /**
46387
46511
  * Serializer for Deploy response objects
46388
46512
  */
46389
- export declare const zCreateADeployResponse: z.ZodObject<{
46513
+ export declare const zCreateOrganizationReleaseDeployResponse: z.ZodObject<{
46390
46514
  id: z.ZodString;
46391
46515
  environment: z.ZodString;
46392
46516
  dateStarted: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -46408,7 +46532,7 @@ export declare const zCreateADeployResponse: z.ZodObject<{
46408
46532
  dateStarted: string | null;
46409
46533
  dateFinished: string;
46410
46534
  }>;
46411
- export declare const zRetrieveACountOfReplaysForAGivenIssueOrTransactionData: z.ZodObject<{
46535
+ export declare const zListOrganizationReplayCountData: z.ZodObject<{
46412
46536
  body: z.ZodOptional<z.ZodNever>;
46413
46537
  path: z.ZodObject<{
46414
46538
  organization_id_or_slug: z.ZodString;
@@ -46481,8 +46605,8 @@ export declare const zRetrieveACountOfReplaysForAGivenIssueOrTransactionData: z.
46481
46605
  } | undefined;
46482
46606
  body?: undefined;
46483
46607
  }>;
46484
- export declare const zRetrieveACountOfReplaysForAGivenIssueOrTransactionResponse: z.ZodRecord<z.ZodString, z.ZodNumber>;
46485
- export declare const zListAnOrganizationSSelectorsData: z.ZodObject<{
46608
+ export declare const zListOrganizationReplayCountResponse: z.ZodRecord<z.ZodString, z.ZodNumber>;
46609
+ export declare const zListOrganizationReplaySelectorsData: z.ZodObject<{
46486
46610
  body: z.ZodOptional<z.ZodNever>;
46487
46611
  path: z.ZodObject<{
46488
46612
  organization_id_or_slug: z.ZodString;
@@ -46570,7 +46694,7 @@ export declare const zListAnOrganizationSSelectorsData: z.ZodObject<{
46570
46694
  } | undefined;
46571
46695
  body?: undefined;
46572
46696
  }>;
46573
- export declare const zListAnOrganizationSSelectorsResponse: z.ZodObject<{
46697
+ export declare const zListOrganizationReplaySelectorsResponse: z.ZodObject<{
46574
46698
  data: z.ZodArray<z.ZodObject<{
46575
46699
  count_dead_clicks: z.ZodOptional<z.ZodNumber>;
46576
46700
  count_rage_clicks: z.ZodOptional<z.ZodNumber>;
@@ -46677,7 +46801,7 @@ export declare const zListAnOrganizationSSelectorsResponse: z.ZodObject<{
46677
46801
  } | undefined;
46678
46802
  }[];
46679
46803
  }>;
46680
- export declare const zListAnOrganizationSReplaysData: z.ZodObject<{
46804
+ export declare const zListOrganizationReplaysData: z.ZodObject<{
46681
46805
  body: z.ZodOptional<z.ZodNever>;
46682
46806
  path: z.ZodObject<{
46683
46807
  organization_id_or_slug: z.ZodString;
@@ -46770,7 +46894,7 @@ export declare const zListAnOrganizationSReplaysData: z.ZodObject<{
46770
46894
  } | undefined;
46771
46895
  body?: undefined;
46772
46896
  }>;
46773
- export declare const zListAnOrganizationSReplaysResponse: z.ZodArray<z.ZodObject<{
46897
+ export declare const zListOrganizationReplaysResponse: z.ZodArray<z.ZodObject<{
46774
46898
  id: z.ZodOptional<z.ZodString>;
46775
46899
  project_id: z.ZodOptional<z.ZodString>;
46776
46900
  trace_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -47027,7 +47151,7 @@ export declare const zListAnOrganizationSReplaysResponse: z.ZodArray<z.ZodObject
47027
47151
  } | undefined;
47028
47152
  replay_type?: string | undefined;
47029
47153
  }>, "many">;
47030
- export declare const zRetrieveAReplayInstanceData: z.ZodObject<{
47154
+ export declare const zGetOrganizationReplayData: z.ZodObject<{
47031
47155
  body: z.ZodOptional<z.ZodNever>;
47032
47156
  path: z.ZodObject<{
47033
47157
  organization_id_or_slug: z.ZodString;
@@ -47125,7 +47249,7 @@ export declare const zRetrieveAReplayInstanceData: z.ZodObject<{
47125
47249
  } | undefined;
47126
47250
  body?: undefined;
47127
47251
  }>;
47128
- export declare const zRetrieveAReplayInstanceResponse: z.ZodObject<{
47252
+ export declare const zGetOrganizationReplayResponse: z.ZodObject<{
47129
47253
  data: z.ZodObject<{
47130
47254
  id: z.ZodOptional<z.ZodString>;
47131
47255
  project_id: z.ZodOptional<z.ZodString>;
@@ -47512,7 +47636,7 @@ export declare const zRetrieveAReplayInstanceResponse: z.ZodObject<{
47512
47636
  replay_type?: string | undefined;
47513
47637
  };
47514
47638
  }>;
47515
- export declare const zListAnOrganizationSRepositoriesData: z.ZodObject<{
47639
+ export declare const zListOrganizationReposData: z.ZodObject<{
47516
47640
  body: z.ZodOptional<z.ZodNever>;
47517
47641
  path: z.ZodObject<{
47518
47642
  organization_id_or_slug: z.ZodString;
@@ -47565,7 +47689,7 @@ export declare const zListAnOrganizationSRepositoriesData: z.ZodObject<{
47565
47689
  } | undefined;
47566
47690
  body?: undefined;
47567
47691
  }>;
47568
- export declare const zListAnOrganizationSRepositoriesResponse: z.ZodArray<z.ZodObject<{
47692
+ export declare const zListOrganizationReposResponse: z.ZodArray<z.ZodObject<{
47569
47693
  url: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
47570
47694
  provider: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
47571
47695
  status: z.ZodOptional<z.ZodString>;
@@ -47614,7 +47738,7 @@ export declare const zListAnOrganizationSRepositoriesResponse: z.ZodArray<z.ZodO
47614
47738
  codeReviewTriggers: string[];
47615
47739
  } | null | undefined;
47616
47740
  }>, "many">;
47617
- export declare const zListARepositorySCommitsData: z.ZodObject<{
47741
+ export declare const zListOrganizationRepoCommitsData: z.ZodObject<{
47618
47742
  body: z.ZodOptional<z.ZodNever>;
47619
47743
  path: z.ZodObject<{
47620
47744
  organization_id_or_slug: z.ZodString;
@@ -47652,7 +47776,7 @@ export declare const zListARepositorySCommitsData: z.ZodObject<{
47652
47776
  } | undefined;
47653
47777
  body?: undefined;
47654
47778
  }>;
47655
- export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
47779
+ export declare const zListOrganizationRepoCommitsResponse: z.ZodArray<z.ZodObject<{
47656
47780
  id: z.ZodString;
47657
47781
  message: z.ZodUnion<[z.ZodString, z.ZodNull]>;
47658
47782
  dateCreated: z.ZodString;
@@ -48557,7 +48681,7 @@ export declare const zListARepositorySCommitsResponse: z.ZodArray<z.ZodObject<{
48557
48681
  email: string;
48558
48682
  } | undefined;
48559
48683
  }>, "many">;
48560
- export declare const zListAnOrganizationSPaginatedTeamsData: z.ZodObject<{
48684
+ export declare const zListOrganizationScimV2GroupsData: z.ZodObject<{
48561
48685
  body: z.ZodOptional<z.ZodNever>;
48562
48686
  path: z.ZodObject<{
48563
48687
  organization_id_or_slug: z.ZodString;
@@ -48605,7 +48729,7 @@ export declare const zListAnOrganizationSPaginatedTeamsData: z.ZodObject<{
48605
48729
  } | undefined;
48606
48730
  body?: undefined;
48607
48731
  }>;
48608
- export declare const zListAnOrganizationSPaginatedTeamsResponse: z.ZodObject<{
48732
+ export declare const zListOrganizationScimV2GroupsResponse: z.ZodObject<{
48609
48733
  schemas: z.ZodArray<z.ZodString, "many">;
48610
48734
  totalResults: z.ZodNumber;
48611
48735
  startIndex: z.ZodNumber;
@@ -48689,7 +48813,7 @@ export declare const zListAnOrganizationSPaginatedTeamsResponse: z.ZodObject<{
48689
48813
  }[] | undefined;
48690
48814
  }[];
48691
48815
  }>;
48692
- export declare const zProvisionANewTeamData: z.ZodObject<{
48816
+ export declare const zCreateOrganizationScimV2GroupData: z.ZodObject<{
48693
48817
  body: z.ZodObject<{
48694
48818
  displayName: z.ZodString;
48695
48819
  }, "strip", z.ZodTypeAny, {
@@ -48722,7 +48846,7 @@ export declare const zProvisionANewTeamData: z.ZodObject<{
48722
48846
  };
48723
48847
  query?: undefined;
48724
48848
  }>;
48725
- export declare const zProvisionANewTeamResponse: z.ZodObject<{
48849
+ export declare const zCreateOrganizationScimV2GroupResponse: z.ZodObject<{
48726
48850
  schemas: z.ZodArray<z.ZodString, "many">;
48727
48851
  id: z.ZodString;
48728
48852
  displayName: z.ZodString;
@@ -48766,7 +48890,7 @@ export declare const zProvisionANewTeamResponse: z.ZodObject<{
48766
48890
  display: string;
48767
48891
  }[] | undefined;
48768
48892
  }>;
48769
- export declare const zDeleteAnIndividualTeamData: z.ZodObject<{
48893
+ export declare const zDeleteOrganizationScimV2GroupData: z.ZodObject<{
48770
48894
  body: z.ZodOptional<z.ZodNever>;
48771
48895
  path: z.ZodObject<{
48772
48896
  organization_id_or_slug: z.ZodString;
@@ -48797,8 +48921,8 @@ export declare const zDeleteAnIndividualTeamData: z.ZodObject<{
48797
48921
  /**
48798
48922
  * Success
48799
48923
  */
48800
- export declare const zDeleteAnIndividualTeamResponse: z.ZodVoid;
48801
- export declare const zQueryAnIndividualTeamData: z.ZodObject<{
48924
+ export declare const zDeleteOrganizationScimV2GroupResponse: z.ZodVoid;
48925
+ export declare const zGetOrganizationScimV2GroupData: z.ZodObject<{
48802
48926
  body: z.ZodOptional<z.ZodNever>;
48803
48927
  path: z.ZodObject<{
48804
48928
  team_id_or_slug: z.ZodString;
@@ -48826,7 +48950,7 @@ export declare const zQueryAnIndividualTeamData: z.ZodObject<{
48826
48950
  query?: undefined;
48827
48951
  body?: undefined;
48828
48952
  }>;
48829
- export declare const zQueryAnIndividualTeamResponse: z.ZodObject<{
48953
+ export declare const zGetOrganizationScimV2GroupResponse: z.ZodObject<{
48830
48954
  schemas: z.ZodArray<z.ZodString, "many">;
48831
48955
  id: z.ZodString;
48832
48956
  displayName: z.ZodString;
@@ -48870,7 +48994,7 @@ export declare const zQueryAnIndividualTeamResponse: z.ZodObject<{
48870
48994
  display: string;
48871
48995
  }[] | undefined;
48872
48996
  }>;
48873
- export declare const zUpdateATeamSAttributesData: z.ZodObject<{
48997
+ export declare const zUpdateOrganizationScimV2GroupData: z.ZodObject<{
48874
48998
  body: z.ZodObject<{
48875
48999
  Operations: z.ZodArray<z.ZodObject<{
48876
49000
  op: z.ZodString;
@@ -48939,8 +49063,8 @@ export declare const zUpdateATeamSAttributesData: z.ZodObject<{
48939
49063
  /**
48940
49064
  * Success
48941
49065
  */
48942
- export declare const zUpdateATeamSAttributesResponse: z.ZodVoid;
48943
- export declare const zListAnOrganizationSScimMembersData: z.ZodObject<{
49066
+ export declare const zUpdateOrganizationScimV2GroupResponse: z.ZodVoid;
49067
+ export declare const zListOrganizationScimV2UsersData: z.ZodObject<{
48944
49068
  body: z.ZodOptional<z.ZodNever>;
48945
49069
  path: z.ZodObject<{
48946
49070
  organization_id_or_slug: z.ZodString;
@@ -48988,7 +49112,7 @@ export declare const zListAnOrganizationSScimMembersData: z.ZodObject<{
48988
49112
  } | undefined;
48989
49113
  body?: undefined;
48990
49114
  }>;
48991
- export declare const zListAnOrganizationSScimMembersResponse: z.ZodObject<{
49115
+ export declare const zListOrganizationScimV2UsersResponse: z.ZodObject<{
48992
49116
  schemas: z.ZodArray<z.ZodString, "many">;
48993
49117
  totalResults: z.ZodNumber;
48994
49118
  startIndex: z.ZodNumber;
@@ -49115,7 +49239,7 @@ export declare const zListAnOrganizationSScimMembersResponse: z.ZodObject<{
49115
49239
  active?: boolean | undefined;
49116
49240
  }[];
49117
49241
  }>;
49118
- export declare const zProvisionANewOrganizationMemberData: z.ZodObject<{
49242
+ export declare const zCreateOrganizationScimV2UserData: z.ZodObject<{
49119
49243
  body: z.ZodObject<{
49120
49244
  userName: z.ZodString;
49121
49245
  sentryOrgRole: z.ZodOptional<z.ZodEnum<["billing", "member", "manager", "admin"]>>;
@@ -49157,7 +49281,7 @@ export declare const zProvisionANewOrganizationMemberData: z.ZodObject<{
49157
49281
  * Conforming to the SCIM RFC, this represents a Sentry Org Member
49158
49282
  * as a SCIM user object.
49159
49283
  */
49160
- export declare const zProvisionANewOrganizationMemberResponse: z.ZodObject<{
49284
+ export declare const zCreateOrganizationScimV2UserResponse: z.ZodObject<{
49161
49285
  active: z.ZodOptional<z.ZodBoolean>;
49162
49286
  schemas: z.ZodArray<z.ZodString, "many">;
49163
49287
  id: z.ZodString;
@@ -49230,7 +49354,7 @@ export declare const zProvisionANewOrganizationMemberResponse: z.ZodObject<{
49230
49354
  sentryOrgRole: string;
49231
49355
  active?: boolean | undefined;
49232
49356
  }>;
49233
- export declare const zDeleteAnOrganizationMemberViaScimData: z.ZodObject<{
49357
+ export declare const zDeleteOrganizationScimV2UserData: z.ZodObject<{
49234
49358
  body: z.ZodOptional<z.ZodNever>;
49235
49359
  path: z.ZodObject<{
49236
49360
  organization_id_or_slug: z.ZodString;
@@ -49261,8 +49385,8 @@ export declare const zDeleteAnOrganizationMemberViaScimData: z.ZodObject<{
49261
49385
  /**
49262
49386
  * Success
49263
49387
  */
49264
- export declare const zDeleteAnOrganizationMemberViaScimResponse: z.ZodVoid;
49265
- export declare const zQueryAnIndividualOrganizationMemberData: z.ZodObject<{
49388
+ export declare const zDeleteOrganizationScimV2UserResponse: z.ZodVoid;
49389
+ export declare const zGetOrganizationScimV2UserData: z.ZodObject<{
49266
49390
  body: z.ZodOptional<z.ZodNever>;
49267
49391
  path: z.ZodObject<{
49268
49392
  organization_id_or_slug: z.ZodString;
@@ -49294,7 +49418,7 @@ export declare const zQueryAnIndividualOrganizationMemberData: z.ZodObject<{
49294
49418
  * Conforming to the SCIM RFC, this represents a Sentry Org Member
49295
49419
  * as a SCIM user object.
49296
49420
  */
49297
- export declare const zQueryAnIndividualOrganizationMemberResponse: z.ZodObject<{
49421
+ export declare const zGetOrganizationScimV2UserResponse: z.ZodObject<{
49298
49422
  active: z.ZodOptional<z.ZodBoolean>;
49299
49423
  schemas: z.ZodArray<z.ZodString, "many">;
49300
49424
  id: z.ZodString;
@@ -49367,7 +49491,7 @@ export declare const zQueryAnIndividualOrganizationMemberResponse: z.ZodObject<{
49367
49491
  sentryOrgRole: string;
49368
49492
  active?: boolean | undefined;
49369
49493
  }>;
49370
- export declare const zUpdateAnOrganizationMemberSAttributesData: z.ZodObject<{
49494
+ export declare const zUpdateOrganizationScimV2UserData: z.ZodObject<{
49371
49495
  body: z.ZodObject<{
49372
49496
  Operations: z.ZodArray<z.ZodObject<{
49373
49497
  op: z.ZodString;
@@ -49436,8 +49560,8 @@ export declare const zUpdateAnOrganizationMemberSAttributesData: z.ZodObject<{
49436
49560
  /**
49437
49561
  * Success
49438
49562
  */
49439
- export declare const zUpdateAnOrganizationMemberSAttributesResponse: z.ZodVoid;
49440
- export declare const zRetrieveTheCustomIntegrationsCreatedByAnOrganizationData: z.ZodObject<{
49563
+ export declare const zUpdateOrganizationScimV2UserResponse: z.ZodVoid;
49564
+ export declare const zListOrganizationSentryAppsData: z.ZodObject<{
49441
49565
  body: z.ZodOptional<z.ZodNever>;
49442
49566
  path: z.ZodObject<{
49443
49567
  organization_id_or_slug: z.ZodString;
@@ -49460,7 +49584,7 @@ export declare const zRetrieveTheCustomIntegrationsCreatedByAnOrganizationData:
49460
49584
  query?: undefined;
49461
49585
  body?: undefined;
49462
49586
  }>;
49463
- export declare const zRetrieveTheCustomIntegrationsCreatedByAnOrganizationResponse: z.ZodArray<z.ZodObject<{
49587
+ export declare const zListOrganizationSentryAppsResponse: z.ZodArray<z.ZodObject<{
49464
49588
  allowedOrigins: z.ZodArray<z.ZodString, "many">;
49465
49589
  avatars: z.ZodArray<z.ZodObject<{
49466
49590
  avatarType: z.ZodString;
@@ -49578,7 +49702,7 @@ export declare const zRetrieveTheCustomIntegrationsCreatedByAnOrganizationRespon
49578
49702
  datePublished?: string | undefined;
49579
49703
  clientId?: string | undefined;
49580
49704
  }>, "many">;
49581
- export declare const zRetrieveReleaseHealthSessionStatisticsData: z.ZodObject<{
49705
+ export declare const zListOrganizationSessionsData: z.ZodObject<{
49582
49706
  body: z.ZodOptional<z.ZodNever>;
49583
49707
  path: z.ZodObject<{
49584
49708
  organization_id_or_slug: z.ZodString;
@@ -49671,7 +49795,7 @@ export declare const zRetrieveReleaseHealthSessionStatisticsData: z.ZodObject<{
49671
49795
  };
49672
49796
  body?: undefined;
49673
49797
  }>;
49674
- export declare const zRetrieveReleaseHealthSessionStatisticsResponse: z.ZodObject<{
49798
+ export declare const zListOrganizationSessionsResponse: z.ZodObject<{
49675
49799
  start: z.ZodString;
49676
49800
  end: z.ZodString;
49677
49801
  intervals: z.ZodArray<z.ZodString, "many">;
@@ -49745,7 +49869,7 @@ export declare const zRetrieveReleaseHealthSessionStatisticsResponse: z.ZodObjec
49745
49869
  }[];
49746
49870
  intervals: string[];
49747
49871
  }>;
49748
- export declare const zResolveAShortIdData: z.ZodObject<{
49872
+ export declare const zGetOrganizationShortidData: z.ZodObject<{
49749
49873
  body: z.ZodOptional<z.ZodNever>;
49750
49874
  path: z.ZodObject<{
49751
49875
  organization_id_or_slug: z.ZodString;
@@ -49783,7 +49907,7 @@ export declare const zResolveAShortIdData: z.ZodObject<{
49783
49907
  } | undefined;
49784
49908
  body?: undefined;
49785
49909
  }>;
49786
- export declare const zResolveAShortIdResponse: z.ZodObject<{
49910
+ export declare const zGetOrganizationShortidResponse: z.ZodObject<{
49787
49911
  organizationSlug: z.ZodString;
49788
49912
  projectSlug: z.ZodString;
49789
49913
  groupId: z.ZodString;
@@ -50626,7 +50750,7 @@ export declare const zResolveAShortIdResponse: z.ZodObject<{
50626
50750
  lastSeen?: string | null | undefined;
50627
50751
  };
50628
50752
  }>;
50629
- export declare const zRetrieveAnOrganizationSEventsCountByProjectData: z.ZodObject<{
50753
+ export declare const zListOrganizationStatsSummaryData: z.ZodObject<{
50630
50754
  body: z.ZodOptional<z.ZodNever>;
50631
50755
  path: z.ZodObject<{
50632
50756
  organization_id_or_slug: z.ZodString;
@@ -50704,7 +50828,7 @@ export declare const zRetrieveAnOrganizationSEventsCountByProjectData: z.ZodObje
50704
50828
  };
50705
50829
  body?: undefined;
50706
50830
  }>;
50707
- export declare const zRetrieveAnOrganizationSEventsCountByProjectResponse: z.ZodObject<{
50831
+ export declare const zListOrganizationStatsSummaryResponse: z.ZodObject<{
50708
50832
  start: z.ZodString;
50709
50833
  end: z.ZodString;
50710
50834
  projects: z.ZodArray<z.ZodObject<{
@@ -50737,7 +50861,7 @@ export declare const zRetrieveAnOrganizationSEventsCountByProjectResponse: z.Zod
50737
50861
  slug: string;
50738
50862
  }[];
50739
50863
  }>;
50740
- export declare const zRetrieveEventCountsForAnOrganizationV2Data: z.ZodObject<{
50864
+ export declare const zListOrganizationStatsV2Data: z.ZodObject<{
50741
50865
  body: z.ZodOptional<z.ZodNever>;
50742
50866
  path: z.ZodObject<{
50743
50867
  organization_id_or_slug: z.ZodString;
@@ -50815,7 +50939,7 @@ export declare const zRetrieveEventCountsForAnOrganizationV2Data: z.ZodObject<{
50815
50939
  };
50816
50940
  body?: undefined;
50817
50941
  }>;
50818
- export declare const zRetrieveEventCountsForAnOrganizationV2Response: z.ZodObject<{
50942
+ export declare const zListOrganizationStatsV2Response: z.ZodObject<{
50819
50943
  start: z.ZodString;
50820
50944
  end: z.ZodString;
50821
50945
  intervals: z.ZodArray<z.ZodString, "many">;
@@ -50851,7 +50975,7 @@ export declare const zRetrieveEventCountsForAnOrganizationV2Response: z.ZodObjec
50851
50975
  }[];
50852
50976
  intervals: string[];
50853
50977
  }>;
50854
- export declare const zListAnOrganizationSTagsData: z.ZodObject<{
50978
+ export declare const zListOrganizationTagsData: z.ZodObject<{
50855
50979
  body: z.ZodOptional<z.ZodNever>;
50856
50980
  path: z.ZodObject<{
50857
50981
  organization_id_or_slug: z.ZodString;
@@ -50919,7 +51043,7 @@ export declare const zListAnOrganizationSTagsData: z.ZodObject<{
50919
51043
  } | undefined;
50920
51044
  body?: undefined;
50921
51045
  }>;
50922
- export declare const zListAnOrganizationSTagsResponse: z.ZodArray<z.ZodObject<{
51046
+ export declare const zListOrganizationTagsResponse2: z.ZodArray<z.ZodObject<{
50923
51047
  uniqueValues: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
50924
51048
  totalValues: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
50925
51049
  topValues: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
@@ -50978,7 +51102,7 @@ export declare const zListAnOrganizationSTagsResponse: z.ZodArray<z.ZodObject<{
50978
51102
  query?: string | null | undefined;
50979
51103
  }[] | null | undefined;
50980
51104
  }>, "many">;
50981
- export declare const zListAnOrganizationSTeamsData: z.ZodObject<{
51105
+ export declare const zListOrganizationTeamsData: z.ZodObject<{
50982
51106
  body: z.ZodOptional<z.ZodNever>;
50983
51107
  path: z.ZodObject<{
50984
51108
  organization_id_or_slug: z.ZodString;
@@ -51026,7 +51150,7 @@ export declare const zListAnOrganizationSTeamsData: z.ZodObject<{
51026
51150
  } | undefined;
51027
51151
  body?: undefined;
51028
51152
  }>;
51029
- export declare const zListAnOrganizationSTeamsResponse: z.ZodArray<z.ZodObject<{
51153
+ export declare const zListOrganizationTeamsResponse: z.ZodArray<z.ZodObject<{
51030
51154
  id: z.ZodString;
51031
51155
  slug: z.ZodString;
51032
51156
  name: z.ZodString;
@@ -51570,7 +51694,7 @@ export declare const zListAnOrganizationSTeamsResponse: z.ZodArray<z.ZodObject<{
51570
51694
  teamId?: string | undefined;
51571
51695
  }[] | undefined;
51572
51696
  }>, "many">;
51573
- export declare const zCreateANewTeamData: z.ZodObject<{
51697
+ export declare const zCreateOrganizationTeamData: z.ZodObject<{
51574
51698
  body: z.ZodOptional<z.ZodObject<{
51575
51699
  slug: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
51576
51700
  name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
@@ -51608,7 +51732,7 @@ export declare const zCreateANewTeamData: z.ZodObject<{
51608
51732
  slug?: string | null | undefined;
51609
51733
  } | undefined;
51610
51734
  }>;
51611
- export declare const zCreateANewTeamResponse: z.ZodObject<{
51735
+ export declare const zCreateOrganizationTeamResponse: z.ZodObject<{
51612
51736
  id: z.ZodString;
51613
51737
  slug: z.ZodString;
51614
51738
  name: z.ZodString;
@@ -52152,7 +52276,7 @@ export declare const zCreateANewTeamResponse: z.ZodObject<{
52152
52276
  teamId?: string | undefined;
52153
52277
  }[] | undefined;
52154
52278
  }>;
52155
- export declare const zListTraceItemAttributesData: z.ZodObject<{
52279
+ export declare const zListOrganizationTraceItemsAttributesData: z.ZodObject<{
52156
52280
  body: z.ZodOptional<z.ZodNever>;
52157
52281
  path: z.ZodObject<{
52158
52282
  organization_id_or_slug: z.ZodString;
@@ -52225,7 +52349,7 @@ export declare const zListTraceItemAttributesData: z.ZodObject<{
52225
52349
  } | undefined;
52226
52350
  body?: undefined;
52227
52351
  }>;
52228
- export declare const zListTraceItemAttributesResponse2: z.ZodArray<z.ZodObject<{
52352
+ export declare const zListOrganizationTraceItemsAttributesResponse: z.ZodArray<z.ZodObject<{
52229
52353
  key: z.ZodString;
52230
52354
  name: z.ZodString;
52231
52355
  secondaryAliases: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -52259,7 +52383,7 @@ export declare const zListTraceItemAttributesResponse2: z.ZodArray<z.ZodObject<{
52259
52383
  };
52260
52384
  secondaryAliases?: string[] | undefined;
52261
52385
  }>, "many">;
52262
- export declare const zRetrieveTraceMetadataData: z.ZodObject<{
52386
+ export declare const zGetOrganizationTraceMetaData: z.ZodObject<{
52263
52387
  body: z.ZodOptional<z.ZodNever>;
52264
52388
  path: z.ZodObject<{
52265
52389
  organization_id_or_slug: z.ZodString;
@@ -52312,7 +52436,7 @@ export declare const zRetrieveTraceMetadataData: z.ZodObject<{
52312
52436
  } | undefined;
52313
52437
  body?: undefined;
52314
52438
  }>;
52315
- export declare const zRetrieveTraceMetadataResponse: z.ZodObject<{
52439
+ export declare const zGetOrganizationTraceMetaResponse: z.ZodObject<{
52316
52440
  uptimeCount: z.ZodOptional<z.ZodNumber>;
52317
52441
  errorsCount: z.ZodNumber;
52318
52442
  logsCount: z.ZodNumber;
@@ -52340,7 +52464,7 @@ export declare const zRetrieveTraceMetadataResponse: z.ZodObject<{
52340
52464
  spansCountMap: Record<string, number>;
52341
52465
  uptimeCount?: number | undefined;
52342
52466
  }>;
52343
- export declare const zRetrieveATraceData: z.ZodObject<{
52467
+ export declare const zGetOrganizationTraceData: z.ZodObject<{
52344
52468
  body: z.ZodOptional<z.ZodNever>;
52345
52469
  path: z.ZodObject<{
52346
52470
  organization_id_or_slug: z.ZodString;
@@ -52408,7 +52532,7 @@ export declare const zRetrieveATraceData: z.ZodObject<{
52408
52532
  } | undefined;
52409
52533
  body?: undefined;
52410
52534
  }>;
52411
- export declare const zRetrieveATraceResponse: z.ZodArray<z.ZodUnion<[z.ZodObject<{
52535
+ export declare const zGetOrganizationTraceResponse: z.ZodArray<z.ZodUnion<[z.ZodObject<{
52412
52536
  description: z.ZodString;
52413
52537
  event_id: z.ZodString;
52414
52538
  event_type: z.ZodString;
@@ -52924,7 +53048,7 @@ export declare const zRetrieveATraceResponse: z.ZodArray<z.ZodUnion<[z.ZodObject
52924
53048
  transaction_id: string;
52925
53049
  region_name: string;
52926
53050
  }>]>, "many">;
52927
- export declare const zListAuserSTeamsForAnOrganizationData: z.ZodObject<{
53051
+ export declare const zListOrganizationUserTeamsData: z.ZodObject<{
52928
53052
  body: z.ZodOptional<z.ZodNever>;
52929
53053
  path: z.ZodObject<{
52930
53054
  organization_id_or_slug: z.ZodString;
@@ -52947,7 +53071,7 @@ export declare const zListAuserSTeamsForAnOrganizationData: z.ZodObject<{
52947
53071
  query?: undefined;
52948
53072
  body?: undefined;
52949
53073
  }>;
52950
- export declare const zListAuserSTeamsForAnOrganizationResponse: z.ZodArray<z.ZodObject<{
53074
+ export declare const zListOrganizationUserTeamsResponse: z.ZodArray<z.ZodObject<{
52951
53075
  id: z.ZodString;
52952
53076
  slug: z.ZodString;
52953
53077
  name: z.ZodString;
@@ -53491,7 +53615,7 @@ export declare const zListAuserSTeamsForAnOrganizationResponse: z.ZodArray<z.Zod
53491
53615
  teamId?: string | undefined;
53492
53616
  }[] | undefined;
53493
53617
  }>, "many">;
53494
- export declare const zBulkDeleteAlertsData: z.ZodObject<{
53618
+ export declare const zDeleteOrganizationWorkflowsData: z.ZodObject<{
53495
53619
  body: z.ZodOptional<z.ZodNever>;
53496
53620
  path: z.ZodObject<{
53497
53621
  organization_id_or_slug: z.ZodString;
@@ -53534,8 +53658,8 @@ export declare const zBulkDeleteAlertsData: z.ZodObject<{
53534
53658
  } | undefined;
53535
53659
  body?: undefined;
53536
53660
  }>;
53537
- export declare const zBulkDeleteAlertsResponse: z.ZodUnion<[z.ZodUnknown, z.ZodVoid]>;
53538
- export declare const zFetchAlertsData: z.ZodObject<{
53661
+ export declare const zDeleteOrganizationWorkflowsResponse: z.ZodUnion<[z.ZodUnknown, z.ZodVoid]>;
53662
+ export declare const zListOrganizationWorkflowsData: z.ZodObject<{
53539
53663
  body: z.ZodOptional<z.ZodNever>;
53540
53664
  path: z.ZodObject<{
53541
53665
  organization_id_or_slug: z.ZodString;
@@ -53583,7 +53707,7 @@ export declare const zFetchAlertsData: z.ZodObject<{
53583
53707
  } | undefined;
53584
53708
  body?: undefined;
53585
53709
  }>;
53586
- export declare const zFetchAlertsResponse: z.ZodArray<z.ZodObject<{
53710
+ export declare const zListOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<{
53587
53711
  id: z.ZodString;
53588
53712
  name: z.ZodString;
53589
53713
  organizationId: z.ZodString;
@@ -53857,7 +53981,7 @@ export declare const zFetchAlertsResponse: z.ZodArray<z.ZodObject<{
53857
53981
  detectorIds: string[] | null;
53858
53982
  lastTriggered: string | null;
53859
53983
  }>, "many">;
53860
- export declare const zCreateAnAlertForAnOrganizationData: z.ZodObject<{
53984
+ export declare const zCreateOrganizationWorkflowData: z.ZodObject<{
53861
53985
  body: z.ZodObject<{
53862
53986
  name: z.ZodString;
53863
53987
  id: z.ZodOptional<z.ZodString>;
@@ -53958,7 +54082,7 @@ export declare const zCreateAnAlertForAnOrganizationData: z.ZodObject<{
53958
54082
  };
53959
54083
  query?: undefined;
53960
54084
  }>;
53961
- export declare const zCreateAnAlertForAnOrganizationResponse: z.ZodObject<{
54085
+ export declare const zCreateOrganizationWorkflowResponse: z.ZodObject<{
53962
54086
  id: z.ZodString;
53963
54087
  name: z.ZodString;
53964
54088
  organizationId: z.ZodString;
@@ -54232,7 +54356,7 @@ export declare const zCreateAnAlertForAnOrganizationResponse: z.ZodObject<{
54232
54356
  detectorIds: string[] | null;
54233
54357
  lastTriggered: string | null;
54234
54358
  }>;
54235
- export declare const zMutateAnOrganizationSAlertsData: z.ZodObject<{
54359
+ export declare const zUpdateOrganizationWorkflowsData: z.ZodObject<{
54236
54360
  body: z.ZodObject<{
54237
54361
  enabled: z.ZodBoolean;
54238
54362
  }, "strip", z.ZodTypeAny, {
@@ -54285,7 +54409,7 @@ export declare const zMutateAnOrganizationSAlertsData: z.ZodObject<{
54285
54409
  project?: number[] | undefined;
54286
54410
  } | undefined;
54287
54411
  }>;
54288
- export declare const zMutateAnOrganizationSAlertsResponse: z.ZodArray<z.ZodObject<{
54412
+ export declare const zUpdateOrganizationWorkflowsResponse: z.ZodArray<z.ZodObject<{
54289
54413
  id: z.ZodString;
54290
54414
  name: z.ZodString;
54291
54415
  organizationId: z.ZodString;
@@ -54559,7 +54683,7 @@ export declare const zMutateAnOrganizationSAlertsResponse: z.ZodArray<z.ZodObjec
54559
54683
  detectorIds: string[] | null;
54560
54684
  lastTriggered: string | null;
54561
54685
  }>, "many">;
54562
- export declare const zDeleteAnAlertData: z.ZodObject<{
54686
+ export declare const zDeleteOrganizationWorkflowData: z.ZodObject<{
54563
54687
  body: z.ZodOptional<z.ZodNever>;
54564
54688
  path: z.ZodObject<{
54565
54689
  organization_id_or_slug: z.ZodString;
@@ -54590,8 +54714,8 @@ export declare const zDeleteAnAlertData: z.ZodObject<{
54590
54714
  /**
54591
54715
  * No Content
54592
54716
  */
54593
- export declare const zDeleteAnAlertResponse: z.ZodVoid;
54594
- export declare const zFetchAnAlertData: z.ZodObject<{
54717
+ export declare const zDeleteOrganizationWorkflowResponse: z.ZodVoid;
54718
+ export declare const zGetOrganizationWorkflowData: z.ZodObject<{
54595
54719
  body: z.ZodOptional<z.ZodNever>;
54596
54720
  path: z.ZodObject<{
54597
54721
  organization_id_or_slug: z.ZodString;
@@ -54619,7 +54743,7 @@ export declare const zFetchAnAlertData: z.ZodObject<{
54619
54743
  query?: undefined;
54620
54744
  body?: undefined;
54621
54745
  }>;
54622
- export declare const zFetchAnAlertResponse: z.ZodObject<{
54746
+ export declare const zGetOrganizationWorkflowResponse: z.ZodObject<{
54623
54747
  id: z.ZodString;
54624
54748
  name: z.ZodString;
54625
54749
  organizationId: z.ZodString;
@@ -54893,7 +55017,7 @@ export declare const zFetchAnAlertResponse: z.ZodObject<{
54893
55017
  detectorIds: string[] | null;
54894
55018
  lastTriggered: string | null;
54895
55019
  }>;
54896
- export declare const zUpdateAnAlertByIdData: z.ZodObject<{
55020
+ export declare const zUpdateOrganizationWorkflowData: z.ZodObject<{
54897
55021
  body: z.ZodObject<{
54898
55022
  name: z.ZodString;
54899
55023
  id: z.ZodOptional<z.ZodString>;
@@ -54999,7 +55123,7 @@ export declare const zUpdateAnAlertByIdData: z.ZodObject<{
54999
55123
  };
55000
55124
  query?: undefined;
55001
55125
  }>;
55002
- export declare const zUpdateAnAlertByIdResponse: z.ZodObject<{
55126
+ export declare const zUpdateOrganizationWorkflowResponse: z.ZodObject<{
55003
55127
  id: z.ZodString;
55004
55128
  name: z.ZodString;
55005
55129
  organizationId: z.ZodString;
@@ -55273,7 +55397,7 @@ export declare const zUpdateAnAlertByIdResponse: z.ZodObject<{
55273
55397
  detectorIds: string[] | null;
55274
55398
  lastTriggered: string | null;
55275
55399
  }>;
55276
- export declare const zDeleteAProjectData: z.ZodObject<{
55400
+ export declare const zDeleteProjectData: z.ZodObject<{
55277
55401
  body: z.ZodOptional<z.ZodNever>;
55278
55402
  path: z.ZodObject<{
55279
55403
  organization_id_or_slug: z.ZodString;
@@ -55304,8 +55428,8 @@ export declare const zDeleteAProjectData: z.ZodObject<{
55304
55428
  /**
55305
55429
  * No Content
55306
55430
  */
55307
- export declare const zDeleteAProjectResponse: z.ZodVoid;
55308
- export declare const zRetrieveAProjectData: z.ZodObject<{
55431
+ export declare const zDeleteProjectResponse: z.ZodVoid;
55432
+ export declare const zGetProjectData: z.ZodObject<{
55309
55433
  body: z.ZodOptional<z.ZodNever>;
55310
55434
  path: z.ZodObject<{
55311
55435
  organization_id_or_slug: z.ZodString;
@@ -55333,7 +55457,7 @@ export declare const zRetrieveAProjectData: z.ZodObject<{
55333
55457
  query?: undefined;
55334
55458
  body?: undefined;
55335
55459
  }>;
55336
- export declare const zRetrieveAProjectResponse: z.ZodObject<{
55460
+ export declare const zGetProjectResponse: z.ZodObject<{
55337
55461
  stats: z.ZodOptional<z.ZodUnknown>;
55338
55462
  transactionStats: z.ZodOptional<z.ZodUnknown>;
55339
55463
  sessionStats: z.ZodOptional<z.ZodUnknown>;
@@ -56009,7 +56133,7 @@ export declare const zRetrieveAProjectResponse: z.ZodObject<{
56009
56133
  sessionStats?: unknown;
56010
56134
  seerNightshiftTweaks?: unknown;
56011
56135
  }>;
56012
- export declare const zUpdateAProjectData: z.ZodObject<{
56136
+ export declare const zUpdateProjectData: z.ZodObject<{
56013
56137
  body: z.ZodOptional<z.ZodObject<{
56014
56138
  isBookmarked: z.ZodOptional<z.ZodBoolean>;
56015
56139
  name: z.ZodOptional<z.ZodString>;
@@ -56092,7 +56216,7 @@ export declare const zUpdateAProjectData: z.ZodObject<{
56092
56216
  scmSourceContextEnabled?: boolean | undefined;
56093
56217
  } | undefined;
56094
56218
  }>;
56095
- export declare const zUpdateAProjectResponse: z.ZodObject<{
56219
+ export declare const zUpdateProjectResponse: z.ZodObject<{
56096
56220
  stats: z.ZodOptional<z.ZodUnknown>;
56097
56221
  transactionStats: z.ZodOptional<z.ZodUnknown>;
56098
56222
  sessionStats: z.ZodOptional<z.ZodUnknown>;
@@ -56768,7 +56892,7 @@ export declare const zUpdateAProjectResponse: z.ZodObject<{
56768
56892
  sessionStats?: unknown;
56769
56893
  seerNightshiftTweaks?: unknown;
56770
56894
  }>;
56771
- export declare const zListAProjectSEnvironmentsData: z.ZodObject<{
56895
+ export declare const zListProjectEnvironmentsData: z.ZodObject<{
56772
56896
  body: z.ZodOptional<z.ZodNever>;
56773
56897
  path: z.ZodObject<{
56774
56898
  organization_id_or_slug: z.ZodString;
@@ -56806,7 +56930,7 @@ export declare const zListAProjectSEnvironmentsData: z.ZodObject<{
56806
56930
  } | undefined;
56807
56931
  body?: undefined;
56808
56932
  }>;
56809
- export declare const zListAProjectSEnvironmentsResponse: z.ZodArray<z.ZodObject<{
56933
+ export declare const zListProjectEnvironmentsResponse: z.ZodArray<z.ZodObject<{
56810
56934
  id: z.ZodString;
56811
56935
  name: z.ZodString;
56812
56936
  isHidden: z.ZodBoolean;
@@ -56819,7 +56943,7 @@ export declare const zListAProjectSEnvironmentsResponse: z.ZodArray<z.ZodObject<
56819
56943
  id: string;
56820
56944
  isHidden: boolean;
56821
56945
  }>, "many">;
56822
- export declare const zRetrieveAProjectEnvironmentData: z.ZodObject<{
56946
+ export declare const zGetProjectEnvironmentData: z.ZodObject<{
56823
56947
  body: z.ZodOptional<z.ZodNever>;
56824
56948
  path: z.ZodObject<{
56825
56949
  organization_id_or_slug: z.ZodString;
@@ -56852,7 +56976,7 @@ export declare const zRetrieveAProjectEnvironmentData: z.ZodObject<{
56852
56976
  query?: undefined;
56853
56977
  body?: undefined;
56854
56978
  }>;
56855
- export declare const zRetrieveAProjectEnvironmentResponse: z.ZodObject<{
56979
+ export declare const zGetProjectEnvironmentResponse: z.ZodObject<{
56856
56980
  id: z.ZodString;
56857
56981
  name: z.ZodString;
56858
56982
  isHidden: z.ZodBoolean;
@@ -56865,7 +56989,7 @@ export declare const zRetrieveAProjectEnvironmentResponse: z.ZodObject<{
56865
56989
  id: string;
56866
56990
  isHidden: boolean;
56867
56991
  }>;
56868
- export declare const zUpdateAProjectEnvironmentData: z.ZodObject<{
56992
+ export declare const zUpdateProjectEnvironmentData: z.ZodObject<{
56869
56993
  body: z.ZodObject<{
56870
56994
  isHidden: z.ZodBoolean;
56871
56995
  }, "strip", z.ZodTypeAny, {
@@ -56908,7 +57032,7 @@ export declare const zUpdateAProjectEnvironmentData: z.ZodObject<{
56908
57032
  };
56909
57033
  query?: undefined;
56910
57034
  }>;
56911
- export declare const zUpdateAProjectEnvironmentResponse: z.ZodObject<{
57035
+ export declare const zUpdateProjectEnvironmentResponse: z.ZodObject<{
56912
57036
  id: z.ZodString;
56913
57037
  name: z.ZodString;
56914
57038
  isHidden: z.ZodBoolean;
@@ -56921,7 +57045,7 @@ export declare const zUpdateAProjectEnvironmentResponse: z.ZodObject<{
56921
57045
  id: string;
56922
57046
  isHidden: boolean;
56923
57047
  }>;
56924
- export declare const zListAProjectSErrorEventsData: z.ZodObject<{
57048
+ export declare const zListProjectEventsData: z.ZodObject<{
56925
57049
  body: z.ZodOptional<z.ZodNever>;
56926
57050
  path: z.ZodObject<{
56927
57051
  organization_id_or_slug: z.ZodString;
@@ -56984,7 +57108,7 @@ export declare const zListAProjectSErrorEventsData: z.ZodObject<{
56984
57108
  } | undefined;
56985
57109
  body?: undefined;
56986
57110
  }>;
56987
- export declare const zListAProjectSErrorEventsResponse: z.ZodArray<z.ZodObject<{
57111
+ export declare const zListProjectEventsResponse: z.ZodArray<z.ZodObject<{
56988
57112
  id: z.ZodString;
56989
57113
  'event.type': z.ZodString;
56990
57114
  groupID: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -57093,7 +57217,7 @@ export declare const zListAProjectSErrorEventsResponse: z.ZodArray<z.ZodObject<{
57093
57217
  culprit: string | null;
57094
57218
  'event.type': string;
57095
57219
  }>, "many">;
57096
- export declare const zRetrieveAnEventForAProjectData: z.ZodObject<{
57220
+ export declare const zGetProjectEventData: z.ZodObject<{
57097
57221
  body: z.ZodOptional<z.ZodNever>;
57098
57222
  path: z.ZodObject<{
57099
57223
  organization_id_or_slug: z.ZodString;
@@ -57136,7 +57260,7 @@ export declare const zRetrieveAnEventForAProjectData: z.ZodObject<{
57136
57260
  } | undefined;
57137
57261
  body?: undefined;
57138
57262
  }>;
57139
- export declare const zRetrieveAnEventForAProjectResponse: z.ZodObject<{
57263
+ export declare const zGetProjectEventResponse: z.ZodObject<{
57140
57264
  id: z.ZodString;
57141
57265
  groupID: z.ZodUnion<[z.ZodString, z.ZodNull]>;
57142
57266
  eventID: z.ZodString;
@@ -57588,7 +57712,7 @@ export declare const zRetrieveAnEventForAProjectResponse: z.ZodObject<{
57588
57712
  measurements?: unknown;
57589
57713
  breakdowns?: unknown;
57590
57714
  }>;
57591
- export declare const zListAnEventSAttachmentsData: z.ZodObject<{
57715
+ export declare const zListProjectEventAttachmentsData: z.ZodObject<{
57592
57716
  body: z.ZodOptional<z.ZodNever>;
57593
57717
  path: z.ZodObject<{
57594
57718
  organization_id_or_slug: z.ZodString;
@@ -57636,7 +57760,7 @@ export declare const zListAnEventSAttachmentsData: z.ZodObject<{
57636
57760
  } | undefined;
57637
57761
  body?: undefined;
57638
57762
  }>;
57639
- export declare const zListAnEventSAttachmentsResponse: z.ZodArray<z.ZodObject<{
57763
+ export declare const zListProjectEventAttachmentsResponse: z.ZodArray<z.ZodObject<{
57640
57764
  id: z.ZodString;
57641
57765
  event_id: z.ZodString;
57642
57766
  type: z.ZodString;
@@ -57667,7 +57791,7 @@ export declare const zListAnEventSAttachmentsResponse: z.ZodArray<z.ZodObject<{
57667
57791
  size: number;
57668
57792
  sha1: string | null;
57669
57793
  }>, "many">;
57670
- export declare const zRetrieveAnEventAttachmentData: z.ZodObject<{
57794
+ export declare const zGetProjectEventAttachmentData: z.ZodObject<{
57671
57795
  body: z.ZodOptional<z.ZodNever>;
57672
57796
  path: z.ZodObject<{
57673
57797
  organization_id_or_slug: z.ZodString;
@@ -57705,7 +57829,7 @@ export declare const zRetrieveAnEventAttachmentData: z.ZodObject<{
57705
57829
  query?: undefined;
57706
57830
  body?: undefined;
57707
57831
  }>;
57708
- export declare const zRetrieveAnEventAttachmentResponse: z.ZodObject<{
57832
+ export declare const zGetProjectEventAttachmentResponse: z.ZodObject<{
57709
57833
  id: z.ZodString;
57710
57834
  event_id: z.ZodString;
57711
57835
  type: z.ZodString;
@@ -57736,7 +57860,7 @@ export declare const zRetrieveAnEventAttachmentResponse: z.ZodObject<{
57736
57860
  size: number;
57737
57861
  sha1: string | null;
57738
57862
  }>;
57739
- export declare const zGetDebugInformationRelatedToSourceMapsForAGivenEventData: z.ZodObject<{
57863
+ export declare const zListProjectEventSourceMapDebugData: z.ZodObject<{
57740
57864
  body: z.ZodOptional<z.ZodNever>;
57741
57865
  path: z.ZodObject<{
57742
57866
  organization_id_or_slug: z.ZodString;
@@ -57769,7 +57893,7 @@ export declare const zGetDebugInformationRelatedToSourceMapsForAGivenEventData:
57769
57893
  query?: undefined;
57770
57894
  body?: undefined;
57771
57895
  }>;
57772
- export declare const zGetDebugInformationRelatedToSourceMapsForAGivenEventResponse: z.ZodObject<{
57896
+ export declare const zListProjectEventSourceMapDebugResponse: z.ZodObject<{
57773
57897
  dist: z.ZodUnion<[z.ZodString, z.ZodNull]>;
57774
57898
  release: z.ZodUnion<[z.ZodString, z.ZodNull]>;
57775
57899
  exceptions: z.ZodArray<z.ZodObject<{
@@ -58212,7 +58336,7 @@ export declare const zGetDebugInformationRelatedToSourceMapsForAGivenEventRespon
58212
58336
  sdk_debug_id_support: "full" | "not-supported" | "unofficial-sdk" | "needs-upgrade";
58213
58337
  has_scraping_data: boolean;
58214
58338
  }>;
58215
- export declare const zListAProjectSDebugInformationFilesData: z.ZodObject<{
58339
+ export declare const zListProjectFilesDsymsData: z.ZodObject<{
58216
58340
  body: z.ZodOptional<z.ZodNever>;
58217
58341
  path: z.ZodObject<{
58218
58342
  organization_id_or_slug: z.ZodString;
@@ -58270,7 +58394,7 @@ export declare const zListAProjectSDebugInformationFilesData: z.ZodObject<{
58270
58394
  } | undefined;
58271
58395
  body?: undefined;
58272
58396
  }>;
58273
- export declare const zListAProjectSDebugInformationFilesResponse: z.ZodArray<z.ZodObject<{
58397
+ export declare const zListProjectFilesDsymsResponse: z.ZodArray<z.ZodObject<{
58274
58398
  id: z.ZodString;
58275
58399
  uuid: z.ZodString;
58276
58400
  debugId: z.ZodString;
@@ -58310,7 +58434,7 @@ export declare const zListAProjectSDebugInformationFilesResponse: z.ZodArray<z.Z
58310
58434
  objectName: string;
58311
58435
  symbolType: string;
58312
58436
  }>, "many">;
58313
- export declare const zListAProjectSDataFiltersData: z.ZodObject<{
58437
+ export declare const zListProjectFiltersData: z.ZodObject<{
58314
58438
  body: z.ZodOptional<z.ZodNever>;
58315
58439
  path: z.ZodObject<{
58316
58440
  organization_id_or_slug: z.ZodString;
@@ -58338,7 +58462,7 @@ export declare const zListAProjectSDataFiltersData: z.ZodObject<{
58338
58462
  query?: undefined;
58339
58463
  body?: undefined;
58340
58464
  }>;
58341
- export declare const zListAProjectSDataFiltersResponse: z.ZodArray<z.ZodObject<{
58465
+ export declare const zListProjectFiltersResponse: z.ZodArray<z.ZodObject<{
58342
58466
  id: z.ZodString;
58343
58467
  active: z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodString, "many">]>;
58344
58468
  }, "strip", z.ZodTypeAny, {
@@ -58348,7 +58472,7 @@ export declare const zListAProjectSDataFiltersResponse: z.ZodArray<z.ZodObject<{
58348
58472
  active: boolean | string[];
58349
58473
  id: string;
58350
58474
  }>, "many">;
58351
- export declare const zUpdateAnInboundDataFilterData: z.ZodObject<{
58475
+ export declare const zUpdateProjectFilterData: z.ZodObject<{
58352
58476
  body: z.ZodOptional<z.ZodObject<{
58353
58477
  active: z.ZodOptional<z.ZodBoolean>;
58354
58478
  subfilters: z.ZodOptional<z.ZodArray<z.ZodEnum<["ie", "edge", "safari", "firefox", "chrome", "opera", "android", "opera_mini", "ie_pre_9", "ie9", "ie10", "ie11", "opera_pre_15", "android_pre_4", "safari_pre_6", "opera_mini_pre_8", "edge_pre_79"]>, "many">>;
@@ -58399,8 +58523,8 @@ export declare const zUpdateAnInboundDataFilterData: z.ZodObject<{
58399
58523
  /**
58400
58524
  * No Content
58401
58525
  */
58402
- export declare const zUpdateAnInboundDataFilterResponse: z.ZodVoid;
58403
- export declare const zListAProjectSClientKeysData: z.ZodObject<{
58526
+ export declare const zUpdateProjectFilterResponse: z.ZodVoid;
58527
+ export declare const zListProjectKeysData: z.ZodObject<{
58404
58528
  body: z.ZodOptional<z.ZodNever>;
58405
58529
  path: z.ZodObject<{
58406
58530
  organization_id_or_slug: z.ZodString;
@@ -58443,7 +58567,7 @@ export declare const zListAProjectSClientKeysData: z.ZodObject<{
58443
58567
  } | undefined;
58444
58568
  body?: undefined;
58445
58569
  }>;
58446
- export declare const zListAProjectSClientKeysResponse: z.ZodArray<z.ZodObject<{
58570
+ export declare const zListProjectKeysResponse: z.ZodArray<z.ZodObject<{
58447
58571
  id: z.ZodString;
58448
58572
  name: z.ZodString;
58449
58573
  label: z.ZodString;
@@ -58614,7 +58738,7 @@ export declare const zListAProjectSClientKeysResponse: z.ZodArray<z.ZodObject<{
58614
58738
  };
58615
58739
  useCase?: string | undefined;
58616
58740
  }>, "many">;
58617
- export declare const zCreateANewClientKeyData: z.ZodObject<{
58741
+ export declare const zCreateProjectKeyData: z.ZodObject<{
58618
58742
  body: z.ZodOptional<z.ZodObject<{
58619
58743
  name: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
58620
58744
  rateLimit: z.ZodOptional<z.ZodObject<{
@@ -58686,7 +58810,7 @@ export declare const zCreateANewClientKeyData: z.ZodObject<{
58686
58810
  /**
58687
58811
  * This represents a Sentry Project Client Key.
58688
58812
  */
58689
- export declare const zCreateANewClientKeyResponse: z.ZodObject<{
58813
+ export declare const zCreateProjectKeyResponse: z.ZodObject<{
58690
58814
  id: z.ZodString;
58691
58815
  name: z.ZodString;
58692
58816
  label: z.ZodString;
@@ -58857,7 +58981,7 @@ export declare const zCreateANewClientKeyResponse: z.ZodObject<{
58857
58981
  };
58858
58982
  useCase?: string | undefined;
58859
58983
  }>;
58860
- export declare const zDeleteAClientKeyData: z.ZodObject<{
58984
+ export declare const zDeleteProjectKeyData: z.ZodObject<{
58861
58985
  body: z.ZodOptional<z.ZodNever>;
58862
58986
  path: z.ZodObject<{
58863
58987
  organization_id_or_slug: z.ZodString;
@@ -58893,8 +59017,8 @@ export declare const zDeleteAClientKeyData: z.ZodObject<{
58893
59017
  /**
58894
59018
  * No Content
58895
59019
  */
58896
- export declare const zDeleteAClientKeyResponse: z.ZodVoid;
58897
- export declare const zRetrieveAClientKeyData: z.ZodObject<{
59020
+ export declare const zDeleteProjectKeyResponse: z.ZodVoid;
59021
+ export declare const zGetProjectKeyData: z.ZodObject<{
58898
59022
  body: z.ZodOptional<z.ZodNever>;
58899
59023
  path: z.ZodObject<{
58900
59024
  organization_id_or_slug: z.ZodString;
@@ -58930,7 +59054,7 @@ export declare const zRetrieveAClientKeyData: z.ZodObject<{
58930
59054
  /**
58931
59055
  * This represents a Sentry Project Client Key.
58932
59056
  */
58933
- export declare const zRetrieveAClientKeyResponse: z.ZodObject<{
59057
+ export declare const zGetProjectKeyResponse: z.ZodObject<{
58934
59058
  id: z.ZodString;
58935
59059
  name: z.ZodString;
58936
59060
  label: z.ZodString;
@@ -59101,7 +59225,7 @@ export declare const zRetrieveAClientKeyResponse: z.ZodObject<{
59101
59225
  };
59102
59226
  useCase?: string | undefined;
59103
59227
  }>;
59104
- export declare const zUpdateAClientKeyData: z.ZodObject<{
59228
+ export declare const zUpdateProjectKeyData: z.ZodObject<{
59105
59229
  body: z.ZodOptional<z.ZodObject<{
59106
59230
  name: z.ZodOptional<z.ZodString>;
59107
59231
  isActive: z.ZodOptional<z.ZodBoolean>;
@@ -59230,7 +59354,7 @@ export declare const zUpdateAClientKeyData: z.ZodObject<{
59230
59354
  /**
59231
59355
  * This represents a Sentry Project Client Key.
59232
59356
  */
59233
- export declare const zUpdateAClientKeyResponse: z.ZodObject<{
59357
+ export declare const zUpdateProjectKeyResponse: z.ZodObject<{
59234
59358
  id: z.ZodString;
59235
59359
  name: z.ZodString;
59236
59360
  label: z.ZodString;
@@ -59401,7 +59525,7 @@ export declare const zUpdateAClientKeyResponse: z.ZodObject<{
59401
59525
  };
59402
59526
  useCase?: string | undefined;
59403
59527
  }>;
59404
- export declare const zListAProjectSOrganizationMembersData: z.ZodObject<{
59528
+ export declare const zListProjectMembersData: z.ZodObject<{
59405
59529
  body: z.ZodOptional<z.ZodNever>;
59406
59530
  path: z.ZodObject<{
59407
59531
  organization_id_or_slug: z.ZodString;
@@ -59429,7 +59553,7 @@ export declare const zListAProjectSOrganizationMembersData: z.ZodObject<{
59429
59553
  query?: undefined;
59430
59554
  body?: undefined;
59431
59555
  }>;
59432
- export declare const zListAProjectSOrganizationMembersResponse: z.ZodArray<z.ZodObject<{
59556
+ export declare const zListProjectMembersResponse: z.ZodArray<z.ZodObject<{
59433
59557
  externalUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
59434
59558
  externalId: z.ZodOptional<z.ZodString>;
59435
59559
  userId: z.ZodOptional<z.ZodString>;
@@ -59813,7 +59937,7 @@ export declare const zListAProjectSOrganizationMembersResponse: z.ZodArray<z.Zod
59813
59937
  teamId?: string | undefined;
59814
59938
  }[] | undefined;
59815
59939
  }>, "many">;
59816
- export declare const zDeleteAMonitorOrMonitorEnvironmentsForAProjectData: z.ZodObject<{
59940
+ export declare const zDeleteProjectMonitorData: z.ZodObject<{
59817
59941
  body: z.ZodOptional<z.ZodNever>;
59818
59942
  path: z.ZodObject<{
59819
59943
  organization_id_or_slug: z.ZodString;
@@ -59856,7 +59980,7 @@ export declare const zDeleteAMonitorOrMonitorEnvironmentsForAProjectData: z.ZodO
59856
59980
  } | undefined;
59857
59981
  body?: undefined;
59858
59982
  }>;
59859
- export declare const zRetrieveAMonitorForAProjectData: z.ZodObject<{
59983
+ export declare const zGetProjectMonitorData: z.ZodObject<{
59860
59984
  body: z.ZodOptional<z.ZodNever>;
59861
59985
  path: z.ZodObject<{
59862
59986
  organization_id_or_slug: z.ZodString;
@@ -59889,7 +60013,7 @@ export declare const zRetrieveAMonitorForAProjectData: z.ZodObject<{
59889
60013
  query?: undefined;
59890
60014
  body?: undefined;
59891
60015
  }>;
59892
- export declare const zRetrieveAMonitorForAProjectResponse: z.ZodObject<{
60016
+ export declare const zGetProjectMonitorResponse: z.ZodObject<{
59893
60017
  alertRule: z.ZodOptional<z.ZodObject<{
59894
60018
  targets: z.ZodArray<z.ZodObject<{
59895
60019
  targetIdentifier: z.ZodNumber;
@@ -60368,7 +60492,7 @@ export declare const zRetrieveAMonitorForAProjectResponse: z.ZodObject<{
60368
60492
  }[];
60369
60493
  } | undefined;
60370
60494
  }>;
60371
- export declare const zUpdateAMonitorForAProjectData: z.ZodObject<{
60495
+ export declare const zUpdateProjectMonitorData: z.ZodObject<{
60372
60496
  body: z.ZodObject<{
60373
60497
  project: z.ZodString;
60374
60498
  name: z.ZodString;
@@ -60497,7 +60621,7 @@ export declare const zUpdateAMonitorForAProjectData: z.ZodObject<{
60497
60621
  };
60498
60622
  query?: undefined;
60499
60623
  }>;
60500
- export declare const zUpdateAMonitorForAProjectResponse: z.ZodObject<{
60624
+ export declare const zUpdateProjectMonitorResponse: z.ZodObject<{
60501
60625
  alertRule: z.ZodOptional<z.ZodObject<{
60502
60626
  targets: z.ZodArray<z.ZodObject<{
60503
60627
  targetIdentifier: z.ZodNumber;
@@ -60976,7 +61100,7 @@ export declare const zUpdateAMonitorForAProjectResponse: z.ZodObject<{
60976
61100
  }[];
60977
61101
  } | undefined;
60978
61102
  }>;
60979
- export declare const zRetrieveCheckInsForAMonitorByProjectData: z.ZodObject<{
61103
+ export declare const zListProjectMonitorCheckinsData: z.ZodObject<{
60980
61104
  body: z.ZodOptional<z.ZodNever>;
60981
61105
  path: z.ZodObject<{
60982
61106
  organization_id_or_slug: z.ZodString;
@@ -61009,7 +61133,7 @@ export declare const zRetrieveCheckInsForAMonitorByProjectData: z.ZodObject<{
61009
61133
  query?: undefined;
61010
61134
  body?: undefined;
61011
61135
  }>;
61012
- export declare const zRetrieveCheckInsForAMonitorByProjectResponse: z.ZodArray<z.ZodObject<{
61136
+ export declare const zListProjectMonitorCheckinsResponse: z.ZodArray<z.ZodObject<{
61013
61137
  groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
61014
61138
  id: z.ZodString;
61015
61139
  environment: z.ZodString;
@@ -61094,7 +61218,7 @@ export declare const zRetrieveCheckInsForAMonitorByProjectResponse: z.ZodArray<z
61094
61218
  };
61095
61219
  groups?: string[] | undefined;
61096
61220
  }>, "many">;
61097
- export declare const zRetrieveOwnershipConfigurationForAProjectData: z.ZodObject<{
61221
+ export declare const zListProjectOwnershipData: z.ZodObject<{
61098
61222
  body: z.ZodOptional<z.ZodNever>;
61099
61223
  path: z.ZodObject<{
61100
61224
  organization_id_or_slug: z.ZodString;
@@ -61122,7 +61246,7 @@ export declare const zRetrieveOwnershipConfigurationForAProjectData: z.ZodObject
61122
61246
  query?: undefined;
61123
61247
  body?: undefined;
61124
61248
  }>;
61125
- export declare const zRetrieveOwnershipConfigurationForAProjectResponse: z.ZodObject<{
61249
+ export declare const zListProjectOwnershipResponse: z.ZodObject<{
61126
61250
  schema: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
61127
61251
  $version: z.ZodNumber;
61128
61252
  rules: z.ZodArray<z.ZodObject<{
@@ -61249,7 +61373,7 @@ export declare const zRetrieveOwnershipConfigurationForAProjectResponse: z.ZodOb
61249
61373
  }[];
61250
61374
  } | null | undefined;
61251
61375
  }>;
61252
- export declare const zUpdateOwnershipConfigurationForAProjectData: z.ZodObject<{
61376
+ export declare const zUpdateProjectOwnershipData: z.ZodObject<{
61253
61377
  body: z.ZodOptional<z.ZodObject<{
61254
61378
  raw: z.ZodOptional<z.ZodString>;
61255
61379
  fallthrough: z.ZodOptional<z.ZodBoolean>;
@@ -61302,7 +61426,7 @@ export declare const zUpdateOwnershipConfigurationForAProjectData: z.ZodObject<{
61302
61426
  codeownersAutoSync?: boolean | undefined;
61303
61427
  } | undefined;
61304
61428
  }>;
61305
- export declare const zUpdateOwnershipConfigurationForAProjectResponse: z.ZodObject<{
61429
+ export declare const zUpdateProjectOwnershipResponse: z.ZodObject<{
61306
61430
  schema: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
61307
61431
  $version: z.ZodNumber;
61308
61432
  rules: z.ZodArray<z.ZodObject<{
@@ -61429,7 +61553,7 @@ export declare const zUpdateOwnershipConfigurationForAProjectResponse: z.ZodObje
61429
61553
  }[];
61430
61554
  } | null | undefined;
61431
61555
  }>;
61432
- export declare const zRetrieveSizeAnalysisStatusCheckRulesForAProjectData: z.ZodObject<{
61556
+ export declare const zListProjectPreprodSizeAnalysisStatusCheckRulesData: z.ZodObject<{
61433
61557
  body: z.ZodOptional<z.ZodNever>;
61434
61558
  path: z.ZodObject<{
61435
61559
  organization_id_or_slug: z.ZodString;
@@ -61457,7 +61581,7 @@ export declare const zRetrieveSizeAnalysisStatusCheckRulesForAProjectData: z.Zod
61457
61581
  query?: undefined;
61458
61582
  body?: undefined;
61459
61583
  }>;
61460
- export declare const zRetrieveSizeAnalysisStatusCheckRulesForAProjectResponse: z.ZodObject<{
61584
+ export declare const zListProjectPreprodSizeAnalysisStatusCheckRulesResponse: z.ZodObject<{
61461
61585
  enabled: z.ZodBoolean;
61462
61586
  rules: z.ZodArray<z.ZodObject<{
61463
61587
  id: z.ZodString;
@@ -61555,7 +61679,7 @@ export declare const zRetrieveSizeAnalysisStatusCheckRulesForAProjectResponse: z
61555
61679
  filterQuery: string;
61556
61680
  }[];
61557
61681
  }>;
61558
- export declare const zRetrieveSnapshotStatusCheckRulesForAProjectData: z.ZodObject<{
61682
+ export declare const zListProjectPreprodSnapshotsStatusCheckRulesData: z.ZodObject<{
61559
61683
  body: z.ZodOptional<z.ZodNever>;
61560
61684
  path: z.ZodObject<{
61561
61685
  organization_id_or_slug: z.ZodString;
@@ -61583,7 +61707,7 @@ export declare const zRetrieveSnapshotStatusCheckRulesForAProjectData: z.ZodObje
61583
61707
  query?: undefined;
61584
61708
  body?: undefined;
61585
61709
  }>;
61586
- export declare const zRetrieveSnapshotStatusCheckRulesForAProjectResponse: z.ZodObject<{
61710
+ export declare const zListProjectPreprodSnapshotsStatusCheckRulesResponse: z.ZodObject<{
61587
61711
  enabled: z.ZodBoolean;
61588
61712
  rules: z.ZodObject<{
61589
61713
  failOnAdded: z.ZodBoolean;
@@ -61618,7 +61742,7 @@ export declare const zRetrieveSnapshotStatusCheckRulesForAProjectResponse: z.Zod
61618
61742
  failOnRenamed: boolean;
61619
61743
  };
61620
61744
  }>;
61621
- export declare const zGetTheLatestInstallableBuildForAProjectData: z.ZodObject<{
61745
+ export declare const zListProjectPreprodartifactsBuildDistributionLatestData: z.ZodObject<{
61622
61746
  body: z.ZodOptional<z.ZodNever>;
61623
61747
  path: z.ZodObject<{
61624
61748
  organization_id_or_slug: z.ZodString;
@@ -61691,7 +61815,7 @@ export declare const zGetTheLatestInstallableBuildForAProjectData: z.ZodObject<{
61691
61815
  };
61692
61816
  body?: undefined;
61693
61817
  }>;
61694
- export declare const zGetTheLatestInstallableBuildForAProjectResponse: z.ZodObject<{
61818
+ export declare const zListProjectPreprodartifactsBuildDistributionLatestResponse: z.ZodObject<{
61695
61819
  latestArtifact: z.ZodUnion<[z.ZodObject<{
61696
61820
  buildId: z.ZodString;
61697
61821
  state: z.ZodString;
@@ -62119,7 +62243,7 @@ export declare const zGetTheLatestInstallableBuildForAProjectResponse: z.ZodObje
62119
62243
  profileName: string | null;
62120
62244
  } | null;
62121
62245
  }>;
62122
- export declare const zUploadASnapshotData: z.ZodObject<{
62246
+ export declare const zCreateProjectPreprodartifactsSnapshotData: z.ZodObject<{
62123
62247
  body: z.ZodOptional<z.ZodNever>;
62124
62248
  path: z.ZodObject<{
62125
62249
  organization_id_or_slug: z.ZodString;
@@ -62147,7 +62271,7 @@ export declare const zUploadASnapshotData: z.ZodObject<{
62147
62271
  query?: undefined;
62148
62272
  body?: undefined;
62149
62273
  }>;
62150
- export declare const zUploadASnapshotResponse: z.ZodObject<{
62274
+ export declare const zCreateProjectPreprodartifactsSnapshotResponse: z.ZodObject<{
62151
62275
  artifactId: z.ZodString;
62152
62276
  snapshotMetricsId: z.ZodString;
62153
62277
  imageCount: z.ZodNumber;
@@ -62163,7 +62287,7 @@ export declare const zUploadASnapshotResponse: z.ZodObject<{
62163
62287
  imageCount: number;
62164
62288
  snapshotUrl: string;
62165
62289
  }>;
62166
- export declare const zRetrieveAProfileData: z.ZodObject<{
62290
+ export declare const zGetProjectProfilingProfileData: z.ZodObject<{
62167
62291
  body: z.ZodOptional<z.ZodNever>;
62168
62292
  path: z.ZodObject<{
62169
62293
  organization_id_or_slug: z.ZodString;
@@ -62196,8 +62320,8 @@ export declare const zRetrieveAProfileData: z.ZodObject<{
62196
62320
  query?: undefined;
62197
62321
  body?: undefined;
62198
62322
  }>;
62199
- export declare const zRetrieveAProfileResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
62200
- export declare const zListAProjectSReleasesData: z.ZodObject<{
62323
+ export declare const zGetProjectProfilingProfileResponse: z.ZodRecord<z.ZodString, z.ZodUnknown>;
62324
+ export declare const zListProjectReleasesData: z.ZodObject<{
62201
62325
  body: z.ZodOptional<z.ZodNever>;
62202
62326
  path: z.ZodObject<{
62203
62327
  organization_id_or_slug: z.ZodString;
@@ -62245,7 +62369,7 @@ export declare const zListAProjectSReleasesData: z.ZodObject<{
62245
62369
  } | undefined;
62246
62370
  body?: undefined;
62247
62371
  }>;
62248
- export declare const zListAProjectSReleasesResponse: z.ZodArray<z.ZodObject<{
62372
+ export declare const zListProjectReleasesResponse2: z.ZodArray<z.ZodObject<{
62249
62373
  ref: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
62250
62374
  url: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
62251
62375
  dateReleased: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
@@ -62844,7 +62968,7 @@ export declare const zListAProjectSReleasesResponse: z.ZodArray<z.ZodObject<{
62844
62968
  lastEvent?: string | null | undefined;
62845
62969
  currentProjectMeta?: Record<string, unknown> | null | undefined;
62846
62970
  }>, "many">;
62847
- export declare const zDeleteAReplayInstanceData: z.ZodObject<{
62971
+ export declare const zDeleteProjectReplayData: z.ZodObject<{
62848
62972
  body: z.ZodOptional<z.ZodNever>;
62849
62973
  path: z.ZodObject<{
62850
62974
  organization_id_or_slug: z.ZodString;
@@ -62880,8 +63004,8 @@ export declare const zDeleteAReplayInstanceData: z.ZodObject<{
62880
63004
  /**
62881
63005
  * No Content
62882
63006
  */
62883
- export declare const zDeleteAReplayInstanceResponse: z.ZodVoid;
62884
- export declare const zListClickedNodesData: z.ZodObject<{
63007
+ export declare const zDeleteProjectReplayResponse: z.ZodVoid;
63008
+ export declare const zListProjectReplayClicksData: z.ZodObject<{
62885
63009
  body: z.ZodOptional<z.ZodNever>;
62886
63010
  path: z.ZodObject<{
62887
63011
  organization_id_or_slug: z.ZodString;
@@ -62939,7 +63063,7 @@ export declare const zListClickedNodesData: z.ZodObject<{
62939
63063
  } | undefined;
62940
63064
  body?: undefined;
62941
63065
  }>;
62942
- export declare const zListClickedNodesResponse: z.ZodObject<{
63066
+ export declare const zListProjectReplayClicksResponse: z.ZodObject<{
62943
63067
  data: z.ZodArray<z.ZodObject<{
62944
63068
  node_id: z.ZodNumber;
62945
63069
  timestamp: z.ZodString;
@@ -62961,7 +63085,7 @@ export declare const zListClickedNodesResponse: z.ZodObject<{
62961
63085
  node_id: number;
62962
63086
  }[];
62963
63087
  }>;
62964
- export declare const zListRecordingSegmentsData: z.ZodObject<{
63088
+ export declare const zListProjectReplayRecordingSegmentsData: z.ZodObject<{
62965
63089
  body: z.ZodOptional<z.ZodNever>;
62966
63090
  path: z.ZodObject<{
62967
63091
  organization_id_or_slug: z.ZodString;
@@ -63009,8 +63133,8 @@ export declare const zListRecordingSegmentsData: z.ZodObject<{
63009
63133
  } | undefined;
63010
63134
  body?: undefined;
63011
63135
  }>;
63012
- export declare const zListRecordingSegmentsResponse: z.ZodArray<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">, "many">;
63013
- export declare const zRetrieveARecordingSegmentData: z.ZodObject<{
63136
+ export declare const zListProjectReplayRecordingSegmentsResponse: z.ZodArray<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">, "many">;
63137
+ export declare const zGetProjectReplayRecordingSegmentData: z.ZodObject<{
63014
63138
  body: z.ZodOptional<z.ZodNever>;
63015
63139
  path: z.ZodObject<{
63016
63140
  organization_id_or_slug: z.ZodString;
@@ -63048,8 +63172,8 @@ export declare const zRetrieveARecordingSegmentData: z.ZodObject<{
63048
63172
  query?: undefined;
63049
63173
  body?: undefined;
63050
63174
  }>;
63051
- export declare const zRetrieveARecordingSegmentResponse: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
63052
- export declare const zListUsersWhoHaveViewedAReplayData: z.ZodObject<{
63175
+ export declare const zGetProjectReplayRecordingSegmentResponse: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
63176
+ export declare const zListProjectReplayViewedByData: z.ZodObject<{
63053
63177
  body: z.ZodOptional<z.ZodNever>;
63054
63178
  path: z.ZodObject<{
63055
63179
  organization_id_or_slug: z.ZodString;
@@ -63082,7 +63206,7 @@ export declare const zListUsersWhoHaveViewedAReplayData: z.ZodObject<{
63082
63206
  query?: undefined;
63083
63207
  body?: undefined;
63084
63208
  }>;
63085
- export declare const zListUsersWhoHaveViewedAReplayResponse: z.ZodObject<{
63209
+ export declare const zListProjectReplayViewedByResponse: z.ZodObject<{
63086
63210
  data: z.ZodObject<{
63087
63211
  viewed_by: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
63088
63212
  }, "strip", z.ZodTypeAny, {
@@ -63099,7 +63223,7 @@ export declare const zListUsersWhoHaveViewedAReplayResponse: z.ZodObject<{
63099
63223
  viewed_by: Record<string, unknown>[];
63100
63224
  };
63101
63225
  }>;
63102
- export declare const zListReplayBatchDeletionJobsData: z.ZodObject<{
63226
+ export declare const zListProjectReplaysJobsDeleteData: z.ZodObject<{
63103
63227
  body: z.ZodOptional<z.ZodNever>;
63104
63228
  path: z.ZodObject<{
63105
63229
  organization_id_or_slug: z.ZodString;
@@ -63127,7 +63251,7 @@ export declare const zListReplayBatchDeletionJobsData: z.ZodObject<{
63127
63251
  query?: undefined;
63128
63252
  body?: undefined;
63129
63253
  }>;
63130
- export declare const zListReplayBatchDeletionJobsResponse: z.ZodObject<{
63254
+ export declare const zListProjectReplaysJobsDeleteResponse: z.ZodObject<{
63131
63255
  data: z.ZodArray<z.ZodObject<{
63132
63256
  id: z.ZodNumber;
63133
63257
  dateCreated: z.ZodString;
@@ -63184,7 +63308,7 @@ export declare const zListReplayBatchDeletionJobsResponse: z.ZodObject<{
63184
63308
  countDeleted: number;
63185
63309
  }[];
63186
63310
  }>;
63187
- export declare const zCreateReplayBatchDeletionJobData: z.ZodObject<{
63311
+ export declare const zCreateProjectReplaysJobsDeleteData: z.ZodObject<{
63188
63312
  body: z.ZodObject<{
63189
63313
  data: z.ZodObject<{
63190
63314
  rangeStart: z.ZodString;
@@ -63257,7 +63381,7 @@ export declare const zCreateReplayBatchDeletionJobData: z.ZodObject<{
63257
63381
  };
63258
63382
  query?: undefined;
63259
63383
  }>;
63260
- export declare const zCreateReplayBatchDeletionJobResponse: z.ZodObject<{
63384
+ export declare const zCreateProjectReplaysJobsDeleteResponse: z.ZodObject<{
63261
63385
  data: z.ZodObject<{
63262
63386
  id: z.ZodNumber;
63263
63387
  dateCreated: z.ZodString;
@@ -63314,7 +63438,7 @@ export declare const zCreateReplayBatchDeletionJobResponse: z.ZodObject<{
63314
63438
  countDeleted: number;
63315
63439
  };
63316
63440
  }>;
63317
- export declare const zRetrieveAReplayBatchDeletionJobData: z.ZodObject<{
63441
+ export declare const zGetProjectReplaysJobsDeleteData: z.ZodObject<{
63318
63442
  body: z.ZodOptional<z.ZodNever>;
63319
63443
  path: z.ZodObject<{
63320
63444
  organization_id_or_slug: z.ZodString;
@@ -63347,7 +63471,7 @@ export declare const zRetrieveAReplayBatchDeletionJobData: z.ZodObject<{
63347
63471
  query?: undefined;
63348
63472
  body?: undefined;
63349
63473
  }>;
63350
- export declare const zRetrieveAReplayBatchDeletionJobResponse: z.ZodObject<{
63474
+ export declare const zGetProjectReplaysJobsDeleteResponse: z.ZodObject<{
63351
63475
  data: z.ZodObject<{
63352
63476
  id: z.ZodNumber;
63353
63477
  dateCreated: z.ZodString;
@@ -63404,7 +63528,7 @@ export declare const zRetrieveAReplayBatchDeletionJobResponse: z.ZodObject<{
63404
63528
  countDeleted: number;
63405
63529
  };
63406
63530
  }>;
63407
- export declare const zLinkARepositoryToAProjectData: z.ZodObject<{
63531
+ export declare const zCreateProjectRepoData: z.ZodObject<{
63408
63532
  body: z.ZodObject<{
63409
63533
  repositoryId: z.ZodNumber;
63410
63534
  }, "strip", z.ZodTypeAny, {
@@ -63442,7 +63566,7 @@ export declare const zLinkARepositoryToAProjectData: z.ZodObject<{
63442
63566
  };
63443
63567
  query?: undefined;
63444
63568
  }>;
63445
- export declare const zLinkARepositoryToAProjectResponse: z.ZodObject<{
63569
+ export declare const zCreateProjectRepoResponse: z.ZodObject<{
63446
63570
  id: z.ZodString;
63447
63571
  projectId: z.ZodString;
63448
63572
  repositoryId: z.ZodString;
@@ -63461,7 +63585,7 @@ export declare const zLinkARepositoryToAProjectResponse: z.ZodObject<{
63461
63585
  repositoryId: string;
63462
63586
  source: string;
63463
63587
  }>;
63464
- export declare const zRetrieveEventCountsForAProjectData: z.ZodObject<{
63588
+ export declare const zListProjectStatsData: z.ZodObject<{
63465
63589
  body: z.ZodOptional<z.ZodNever>;
63466
63590
  path: z.ZodObject<{
63467
63591
  organization_id_or_slug: z.ZodString;
@@ -63514,8 +63638,8 @@ export declare const zRetrieveEventCountsForAProjectData: z.ZodObject<{
63514
63638
  } | undefined;
63515
63639
  body?: undefined;
63516
63640
  }>;
63517
- export declare const zRetrieveEventCountsForAProjectResponse: z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">;
63518
- export declare const zDeleteASymbolSourceFromAProjectData: z.ZodObject<{
63641
+ export declare const zListProjectStatsResponse: z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">;
63642
+ export declare const zDeleteProjectSymbolSourcesData: z.ZodObject<{
63519
63643
  body: z.ZodOptional<z.ZodNever>;
63520
63644
  path: z.ZodObject<{
63521
63645
  organization_id_or_slug: z.ZodString;
@@ -63556,8 +63680,8 @@ export declare const zDeleteASymbolSourceFromAProjectData: z.ZodObject<{
63556
63680
  /**
63557
63681
  * No Content
63558
63682
  */
63559
- export declare const zDeleteASymbolSourceFromAProjectResponse: z.ZodVoid;
63560
- export declare const zRetrieveAProjectSSymbolSourcesData: z.ZodObject<{
63683
+ export declare const zDeleteProjectSymbolSourcesResponse: z.ZodVoid;
63684
+ export declare const zListProjectSymbolSourcesData: z.ZodObject<{
63561
63685
  body: z.ZodOptional<z.ZodNever>;
63562
63686
  path: z.ZodObject<{
63563
63687
  organization_id_or_slug: z.ZodString;
@@ -63595,7 +63719,7 @@ export declare const zRetrieveAProjectSSymbolSourcesData: z.ZodObject<{
63595
63719
  } | undefined;
63596
63720
  body?: undefined;
63597
63721
  }>;
63598
- export declare const zRetrieveAProjectSSymbolSourcesResponse: z.ZodArray<z.ZodUnion<[z.ZodObject<{
63722
+ export declare const zListProjectSymbolSourcesResponse: z.ZodArray<z.ZodUnion<[z.ZodObject<{
63599
63723
  type: z.ZodEnum<["http"]>;
63600
63724
  url: z.ZodString;
63601
63725
  username: z.ZodOptional<z.ZodString>;
@@ -63878,7 +64002,7 @@ export declare const zRetrieveAProjectSSymbolSourcesResponse: z.ZodArray<z.ZodUn
63878
64002
  appName: string;
63879
64003
  bundleId: string;
63880
64004
  }>]>, "many">;
63881
- export declare const zAddASymbolSourceToAProjectData: z.ZodObject<{
64005
+ export declare const zCreateProjectSymbolSourceData: z.ZodObject<{
63882
64006
  body: z.ZodObject<{
63883
64007
  type: z.ZodEnum<["http", "gcs", "s3"]>;
63884
64008
  name: z.ZodString;
@@ -64035,7 +64159,7 @@ export declare const zAddASymbolSourceToAProjectData: z.ZodObject<{
64035
64159
  };
64036
64160
  query?: undefined;
64037
64161
  }>;
64038
- export declare const zAddASymbolSourceToAProjectResponse: z.ZodUnion<[z.ZodObject<{
64162
+ export declare const zCreateProjectSymbolSourceResponse: z.ZodUnion<[z.ZodObject<{
64039
64163
  type: z.ZodEnum<["http"]>;
64040
64164
  url: z.ZodString;
64041
64165
  username: z.ZodOptional<z.ZodString>;
@@ -64318,7 +64442,7 @@ export declare const zAddASymbolSourceToAProjectResponse: z.ZodUnion<[z.ZodObjec
64318
64442
  appName: string;
64319
64443
  bundleId: string;
64320
64444
  }>]>;
64321
- export declare const zUpdateAProjectSSymbolSourceData: z.ZodObject<{
64445
+ export declare const zUpdateProjectSymbolSourcesData: z.ZodObject<{
64322
64446
  body: z.ZodObject<{
64323
64447
  type: z.ZodEnum<["http", "gcs", "s3"]>;
64324
64448
  name: z.ZodString;
@@ -64485,7 +64609,7 @@ export declare const zUpdateAProjectSSymbolSourceData: z.ZodObject<{
64485
64609
  project_id_or_slug: string;
64486
64610
  };
64487
64611
  }>;
64488
- export declare const zUpdateAProjectSSymbolSourceResponse: z.ZodUnion<[z.ZodObject<{
64612
+ export declare const zUpdateProjectSymbolSourcesResponse: z.ZodUnion<[z.ZodObject<{
64489
64613
  type: z.ZodEnum<["http"]>;
64490
64614
  url: z.ZodString;
64491
64615
  username: z.ZodOptional<z.ZodString>;
@@ -64768,7 +64892,7 @@ export declare const zUpdateAProjectSSymbolSourceResponse: z.ZodUnion<[z.ZodObje
64768
64892
  appName: string;
64769
64893
  bundleId: string;
64770
64894
  }>]>;
64771
- export declare const zListAProjectSTeamsData: z.ZodObject<{
64895
+ export declare const zListProjectTeamsData: z.ZodObject<{
64772
64896
  body: z.ZodOptional<z.ZodNever>;
64773
64897
  path: z.ZodObject<{
64774
64898
  organization_id_or_slug: z.ZodString;
@@ -64806,7 +64930,7 @@ export declare const zListAProjectSTeamsData: z.ZodObject<{
64806
64930
  } | undefined;
64807
64931
  body?: undefined;
64808
64932
  }>;
64809
- export declare const zListAProjectSTeamsResponse: z.ZodArray<z.ZodObject<{
64933
+ export declare const zListProjectTeamsResponse: z.ZodArray<z.ZodObject<{
64810
64934
  id: z.ZodString;
64811
64935
  slug: z.ZodString;
64812
64936
  name: z.ZodString;
@@ -64866,7 +64990,7 @@ export declare const zListAProjectSTeamsResponse: z.ZodArray<z.ZodObject<{
64866
64990
  avatarUrl?: string | null | undefined;
64867
64991
  };
64868
64992
  }>, "many">;
64869
- export declare const zDeleteATeamFromAProjectData: z.ZodObject<{
64993
+ export declare const zDeleteProjectTeamData: z.ZodObject<{
64870
64994
  body: z.ZodOptional<z.ZodNever>;
64871
64995
  path: z.ZodObject<{
64872
64996
  organization_id_or_slug: z.ZodString;
@@ -64899,7 +65023,7 @@ export declare const zDeleteATeamFromAProjectData: z.ZodObject<{
64899
65023
  query?: undefined;
64900
65024
  body?: undefined;
64901
65025
  }>;
64902
- export declare const zDeleteATeamFromAProjectResponse: z.ZodObject<{
65026
+ export declare const zDeleteProjectTeamResponse: z.ZodObject<{
64903
65027
  stats: z.ZodOptional<z.ZodUnknown>;
64904
65028
  transactionStats: z.ZodOptional<z.ZodUnknown>;
64905
65029
  sessionStats: z.ZodOptional<z.ZodUnknown>;
@@ -65089,7 +65213,7 @@ export declare const zDeleteATeamFromAProjectResponse: z.ZodObject<{
65089
65213
  transactionStats?: unknown;
65090
65214
  sessionStats?: unknown;
65091
65215
  }>;
65092
- export declare const zAddATeamToAProjectData: z.ZodObject<{
65216
+ export declare const zCreateProjectTeamData: z.ZodObject<{
65093
65217
  body: z.ZodOptional<z.ZodNever>;
65094
65218
  path: z.ZodObject<{
65095
65219
  organization_id_or_slug: z.ZodString;
@@ -65122,7 +65246,7 @@ export declare const zAddATeamToAProjectData: z.ZodObject<{
65122
65246
  query?: undefined;
65123
65247
  body?: undefined;
65124
65248
  }>;
65125
- export declare const zAddATeamToAProjectResponse: z.ZodObject<{
65249
+ export declare const zCreateProjectTeamResponse: z.ZodObject<{
65126
65250
  stats: z.ZodOptional<z.ZodUnknown>;
65127
65251
  transactionStats: z.ZodOptional<z.ZodUnknown>;
65128
65252
  sessionStats: z.ZodOptional<z.ZodUnknown>;
@@ -65312,7 +65436,7 @@ export declare const zAddATeamToAProjectResponse: z.ZodObject<{
65312
65436
  transactionStats?: unknown;
65313
65437
  sessionStats?: unknown;
65314
65438
  }>;
65315
- export declare const zListAProjectSusersData: z.ZodObject<{
65439
+ export declare const zListProjectUsersData: z.ZodObject<{
65316
65440
  body: z.ZodOptional<z.ZodNever>;
65317
65441
  path: z.ZodObject<{
65318
65442
  organization_id_or_slug: z.ZodString;
@@ -65355,7 +65479,7 @@ export declare const zListAProjectSusersData: z.ZodObject<{
65355
65479
  } | undefined;
65356
65480
  body?: undefined;
65357
65481
  }>;
65358
- export declare const zListAProjectSusersResponse: z.ZodArray<z.ZodObject<{
65482
+ export declare const zListProjectUsersResponse2: z.ZodArray<z.ZodObject<{
65359
65483
  id: z.ZodUnion<[z.ZodString, z.ZodNull]>;
65360
65484
  tagValue: z.ZodString;
65361
65485
  identifier: z.ZodString;
@@ -65389,7 +65513,7 @@ export declare const zListAProjectSusersResponse: z.ZodArray<z.ZodObject<{
65389
65513
  identifier: string;
65390
65514
  hash: string;
65391
65515
  }>, "many">;
65392
- export declare const zListSeerAiModelsData: z.ZodObject<{
65516
+ export declare const zListSeerModelsData: z.ZodObject<{
65393
65517
  body: z.ZodOptional<z.ZodNever>;
65394
65518
  path: z.ZodOptional<z.ZodNever>;
65395
65519
  query: z.ZodOptional<z.ZodNever>;
@@ -65405,14 +65529,14 @@ export declare const zListSeerAiModelsData: z.ZodObject<{
65405
65529
  /**
65406
65530
  * Response containing list of actively used LLM model names from Seer.
65407
65531
  */
65408
- export declare const zListSeerAiModelsResponse: z.ZodObject<{
65532
+ export declare const zListSeerModelsResponse: z.ZodObject<{
65409
65533
  models: z.ZodArray<z.ZodString, "many">;
65410
65534
  }, "strip", z.ZodTypeAny, {
65411
65535
  models: string[];
65412
65536
  }, {
65413
65537
  models: string[];
65414
65538
  }>;
65415
- export declare const zDeleteACustomIntegrationData: z.ZodObject<{
65539
+ export declare const zDeleteSentryAppData: z.ZodObject<{
65416
65540
  body: z.ZodOptional<z.ZodNever>;
65417
65541
  path: z.ZodObject<{
65418
65542
  sentry_app_id_or_slug: z.ZodString;
@@ -65438,8 +65562,8 @@ export declare const zDeleteACustomIntegrationData: z.ZodObject<{
65438
65562
  /**
65439
65563
  * No Content
65440
65564
  */
65441
- export declare const zDeleteACustomIntegrationResponse: z.ZodVoid;
65442
- export declare const zRetrieveACustomIntegrationByIdOrSlugData: z.ZodObject<{
65565
+ export declare const zDeleteSentryAppResponse: z.ZodVoid;
65566
+ export declare const zGetSentryAppData: z.ZodObject<{
65443
65567
  body: z.ZodOptional<z.ZodNever>;
65444
65568
  path: z.ZodObject<{
65445
65569
  sentry_app_id_or_slug: z.ZodString;
@@ -65462,7 +65586,7 @@ export declare const zRetrieveACustomIntegrationByIdOrSlugData: z.ZodObject<{
65462
65586
  query?: undefined;
65463
65587
  body?: undefined;
65464
65588
  }>;
65465
- export declare const zRetrieveACustomIntegrationByIdOrSlugResponse: z.ZodObject<{
65589
+ export declare const zGetSentryAppResponse: z.ZodObject<{
65466
65590
  allowedOrigins: z.ZodArray<z.ZodString, "many">;
65467
65591
  avatars: z.ZodArray<z.ZodObject<{
65468
65592
  avatarType: z.ZodString;
@@ -65580,7 +65704,7 @@ export declare const zRetrieveACustomIntegrationByIdOrSlugResponse: z.ZodObject<
65580
65704
  datePublished?: string | undefined;
65581
65705
  clientId?: string | undefined;
65582
65706
  }>;
65583
- export declare const zUpdateAnExistingCustomIntegrationData: z.ZodObject<{
65707
+ export declare const zUpdateSentryAppData: z.ZodObject<{
65584
65708
  body: z.ZodObject<{
65585
65709
  name: z.ZodString;
65586
65710
  scopes: z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodNull]>;
@@ -65668,7 +65792,7 @@ export declare const zUpdateAnExistingCustomIntegrationData: z.ZodObject<{
65668
65792
  };
65669
65793
  query?: undefined;
65670
65794
  }>;
65671
- export declare const zUpdateAnExistingCustomIntegrationResponse: z.ZodObject<{
65795
+ export declare const zUpdateSentryAppResponse: z.ZodObject<{
65672
65796
  allowedOrigins: z.ZodArray<z.ZodString, "many">;
65673
65797
  avatars: z.ZodArray<z.ZodObject<{
65674
65798
  avatarType: z.ZodString;
@@ -65786,7 +65910,7 @@ export declare const zUpdateAnExistingCustomIntegrationResponse: z.ZodObject<{
65786
65910
  datePublished?: string | undefined;
65787
65911
  clientId?: string | undefined;
65788
65912
  }>;
65789
- export declare const zDeleteATeamData: z.ZodObject<{
65913
+ export declare const zDeleteTeamData: z.ZodObject<{
65790
65914
  body: z.ZodOptional<z.ZodNever>;
65791
65915
  path: z.ZodObject<{
65792
65916
  organization_id_or_slug: z.ZodString;
@@ -65817,8 +65941,8 @@ export declare const zDeleteATeamData: z.ZodObject<{
65817
65941
  /**
65818
65942
  * No Content
65819
65943
  */
65820
- export declare const zDeleteATeamResponse: z.ZodVoid;
65821
- export declare const zRetrieveATeamData: z.ZodObject<{
65944
+ export declare const zDeleteTeamResponse: z.ZodVoid;
65945
+ export declare const zGetTeamData: z.ZodObject<{
65822
65946
  body: z.ZodOptional<z.ZodNever>;
65823
65947
  path: z.ZodObject<{
65824
65948
  organization_id_or_slug: z.ZodString;
@@ -65861,7 +65985,7 @@ export declare const zRetrieveATeamData: z.ZodObject<{
65861
65985
  } | undefined;
65862
65986
  body?: undefined;
65863
65987
  }>;
65864
- export declare const zRetrieveATeamResponse: z.ZodObject<{
65988
+ export declare const zGetTeamResponse: z.ZodObject<{
65865
65989
  id: z.ZodString;
65866
65990
  slug: z.ZodString;
65867
65991
  name: z.ZodString;
@@ -66405,7 +66529,7 @@ export declare const zRetrieveATeamResponse: z.ZodObject<{
66405
66529
  teamId?: string | undefined;
66406
66530
  }[] | undefined;
66407
66531
  }>;
66408
- export declare const zUpdateATeamData: z.ZodObject<{
66532
+ export declare const zUpdateTeamData: z.ZodObject<{
66409
66533
  body: z.ZodObject<{
66410
66534
  slug: z.ZodString;
66411
66535
  }, "strip", z.ZodTypeAny, {
@@ -66443,7 +66567,7 @@ export declare const zUpdateATeamData: z.ZodObject<{
66443
66567
  };
66444
66568
  query?: undefined;
66445
66569
  }>;
66446
- export declare const zUpdateATeamResponse: z.ZodObject<{
66570
+ export declare const zUpdateTeamResponse: z.ZodObject<{
66447
66571
  id: z.ZodString;
66448
66572
  slug: z.ZodString;
66449
66573
  name: z.ZodString;
@@ -66987,7 +67111,7 @@ export declare const zUpdateATeamResponse: z.ZodObject<{
66987
67111
  teamId?: string | undefined;
66988
67112
  }[] | undefined;
66989
67113
  }>;
66990
- export declare const zCreateAnExternalTeamData: z.ZodObject<{
67114
+ export declare const zCreateTeamExternalTeamData: z.ZodObject<{
66991
67115
  body: z.ZodObject<{
66992
67116
  external_name: z.ZodString;
66993
67117
  provider: z.ZodEnum<["github", "github_enterprise", "jira_server", "slack", "slack_staging", "perforce", "gitlab", "msteams", "custom_scm"]>;
@@ -67040,7 +67164,7 @@ export declare const zCreateAnExternalTeamData: z.ZodObject<{
67040
67164
  };
67041
67165
  query?: undefined;
67042
67166
  }>;
67043
- export declare const zCreateAnExternalTeamResponse: z.ZodUnion<[z.ZodObject<{
67167
+ export declare const zCreateTeamExternalTeamResponse: z.ZodUnion<[z.ZodObject<{
67044
67168
  externalId: z.ZodOptional<z.ZodString>;
67045
67169
  userId: z.ZodOptional<z.ZodString>;
67046
67170
  teamId: z.ZodOptional<z.ZodString>;
@@ -67089,7 +67213,7 @@ export declare const zCreateAnExternalTeamResponse: z.ZodUnion<[z.ZodObject<{
67089
67213
  userId?: string | undefined;
67090
67214
  teamId?: string | undefined;
67091
67215
  }>]>;
67092
- export declare const zDeleteAnExternalTeamData: z.ZodObject<{
67216
+ export declare const zDeleteTeamExternalTeamData: z.ZodObject<{
67093
67217
  body: z.ZodOptional<z.ZodNever>;
67094
67218
  path: z.ZodObject<{
67095
67219
  organization_id_or_slug: z.ZodString;
@@ -67125,8 +67249,8 @@ export declare const zDeleteAnExternalTeamData: z.ZodObject<{
67125
67249
  /**
67126
67250
  * No Content
67127
67251
  */
67128
- export declare const zDeleteAnExternalTeamResponse: z.ZodVoid;
67129
- export declare const zUpdateAnExternalTeamData: z.ZodObject<{
67252
+ export declare const zDeleteTeamExternalTeamResponse: z.ZodVoid;
67253
+ export declare const zUpdateTeamExternalTeamData: z.ZodObject<{
67130
67254
  body: z.ZodObject<{
67131
67255
  external_name: z.ZodString;
67132
67256
  provider: z.ZodEnum<["github", "github_enterprise", "jira_server", "slack", "slack_staging", "perforce", "gitlab", "msteams", "custom_scm"]>;
@@ -67184,7 +67308,7 @@ export declare const zUpdateAnExternalTeamData: z.ZodObject<{
67184
67308
  };
67185
67309
  query?: undefined;
67186
67310
  }>;
67187
- export declare const zUpdateAnExternalTeamResponse: z.ZodObject<{
67311
+ export declare const zUpdateTeamExternalTeamResponse: z.ZodObject<{
67188
67312
  externalId: z.ZodOptional<z.ZodString>;
67189
67313
  userId: z.ZodOptional<z.ZodString>;
67190
67314
  teamId: z.ZodOptional<z.ZodString>;
@@ -67209,7 +67333,7 @@ export declare const zUpdateAnExternalTeamResponse: z.ZodObject<{
67209
67333
  userId?: string | undefined;
67210
67334
  teamId?: string | undefined;
67211
67335
  }>;
67212
- export declare const zListATeamSMembersData: z.ZodObject<{
67336
+ export declare const zListTeamMembersData: z.ZodObject<{
67213
67337
  body: z.ZodOptional<z.ZodNever>;
67214
67338
  path: z.ZodObject<{
67215
67339
  organization_id_or_slug: z.ZodString;
@@ -67247,7 +67371,7 @@ export declare const zListATeamSMembersData: z.ZodObject<{
67247
67371
  } | undefined;
67248
67372
  body?: undefined;
67249
67373
  }>;
67250
- export declare const zListATeamSMembersResponse: z.ZodArray<z.ZodObject<{
67374
+ export declare const zListTeamMembersResponse: z.ZodArray<z.ZodObject<{
67251
67375
  externalUsers: z.ZodOptional<z.ZodArray<z.ZodObject<{
67252
67376
  externalId: z.ZodOptional<z.ZodString>;
67253
67377
  userId: z.ZodOptional<z.ZodString>;
@@ -67643,7 +67767,7 @@ export declare const zListATeamSMembersResponse: z.ZodArray<z.ZodObject<{
67643
67767
  role?: string | undefined;
67644
67768
  roleName?: string | undefined;
67645
67769
  }>, "many">;
67646
- export declare const zListATeamSProjectsData: z.ZodObject<{
67770
+ export declare const zListTeamProjectsData: z.ZodObject<{
67647
67771
  body: z.ZodOptional<z.ZodNever>;
67648
67772
  path: z.ZodObject<{
67649
67773
  organization_id_or_slug: z.ZodString;
@@ -67681,7 +67805,7 @@ export declare const zListATeamSProjectsData: z.ZodObject<{
67681
67805
  } | undefined;
67682
67806
  body?: undefined;
67683
67807
  }>;
67684
- export declare const zListATeamSProjectsResponse: z.ZodArray<z.ZodObject<{
67808
+ export declare const zListTeamProjectsResponse: z.ZodArray<z.ZodObject<{
67685
67809
  latestDeploys: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodNull]>>;
67686
67810
  options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
67687
67811
  stats: z.ZodOptional<z.ZodUnknown>;
@@ -67864,7 +67988,7 @@ export declare const zListATeamSProjectsResponse: z.ZodArray<z.ZodObject<{
67864
67988
  sessionStats?: unknown;
67865
67989
  latestDeploys?: Record<string, Record<string, string>> | null | undefined;
67866
67990
  }>, "many">;
67867
- export declare const zCreateANewProjectData: z.ZodObject<{
67991
+ export declare const zCreateTeamProjectData: z.ZodObject<{
67868
67992
  body: z.ZodObject<{
67869
67993
  name: z.ZodString;
67870
67994
  slug: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
@@ -67917,7 +68041,7 @@ export declare const zCreateANewProjectData: z.ZodObject<{
67917
68041
  };
67918
68042
  query?: undefined;
67919
68043
  }>;
67920
- export declare const zCreateANewProjectResponse: z.ZodObject<{
68044
+ export declare const zCreateTeamProjectResponse: z.ZodObject<{
67921
68045
  latestDeploys: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>, z.ZodNull]>>;
67922
68046
  options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
67923
68047
  stats: z.ZodOptional<z.ZodUnknown>;
@@ -68100,7 +68224,7 @@ export declare const zCreateANewProjectResponse: z.ZodObject<{
68100
68224
  sessionStats?: unknown;
68101
68225
  latestDeploys?: Record<string, Record<string, string>> | null | undefined;
68102
68226
  }>;
68103
- export declare const zListATagSValuesData: z.ZodObject<{
68227
+ export declare const zListProjectTagValuesData: z.ZodObject<{
68104
68228
  body: z.ZodOptional<z.ZodNever>;
68105
68229
  path: z.ZodObject<{
68106
68230
  organization_id_or_slug: z.ZodString;
@@ -68146,14 +68270,14 @@ export declare const zListATagSValuesData: z.ZodObject<{
68146
68270
  /**
68147
68271
  * Success
68148
68272
  */
68149
- export declare const zListATagSValuesResponse: z.ZodArray<z.ZodObject<{
68273
+ export declare const zListProjectTagValuesResponse: z.ZodArray<z.ZodObject<{
68150
68274
  name: z.ZodString;
68151
68275
  }, "strip", z.ZodTypeAny, {
68152
68276
  name: string;
68153
68277
  }, {
68154
68278
  name: string;
68155
68279
  }>, "many">;
68156
- export declare const zListAProjectSuserFeedbackData: z.ZodObject<{
68280
+ export declare const zListProjectUserFeedbackData: z.ZodObject<{
68157
68281
  body: z.ZodOptional<z.ZodNever>;
68158
68282
  path: z.ZodObject<{
68159
68283
  organization_id_or_slug: z.ZodString;
@@ -68194,7 +68318,7 @@ export declare const zListAProjectSuserFeedbackData: z.ZodObject<{
68194
68318
  /**
68195
68319
  * Success
68196
68320
  */
68197
- export declare const zListAProjectSuserFeedbackResponse: z.ZodArray<z.ZodObject<{
68321
+ export declare const zListProjectUserFeedbackResponse: z.ZodArray<z.ZodObject<{
68198
68322
  comments: z.ZodString;
68199
68323
  dateCreated: z.ZodString;
68200
68324
  email: z.ZodString;
@@ -68240,7 +68364,7 @@ export declare const zListAProjectSuserFeedbackResponse: z.ZodArray<z.ZodObject<
68240
68364
  eventID: string;
68241
68365
  comments: string;
68242
68366
  }>, "many">;
68243
- export declare const zSubmitUserFeedbackData: z.ZodObject<{
68367
+ export declare const zCreateProjectUserFeedbackData: z.ZodObject<{
68244
68368
  body: z.ZodOptional<z.ZodObject<{
68245
68369
  event_id: z.ZodString;
68246
68370
  name: z.ZodString;
@@ -68296,7 +68420,7 @@ export declare const zSubmitUserFeedbackData: z.ZodObject<{
68296
68420
  /**
68297
68421
  * Success
68298
68422
  */
68299
- export declare const zSubmitUserFeedbackResponse: z.ZodObject<{
68423
+ export declare const zCreateProjectUserFeedbackResponse: z.ZodObject<{
68300
68424
  comments: z.ZodString;
68301
68425
  dateCreated: z.ZodString;
68302
68426
  email: z.ZodString;
@@ -68342,7 +68466,7 @@ export declare const zSubmitUserFeedbackResponse: z.ZodObject<{
68342
68466
  eventID: string;
68343
68467
  comments: string;
68344
68468
  }>;
68345
- export declare const zListAProjectSServiceHooksData: z.ZodObject<{
68469
+ export declare const zListProjectHooksData: z.ZodObject<{
68346
68470
  body: z.ZodOptional<z.ZodNever>;
68347
68471
  path: z.ZodObject<{
68348
68472
  organization_id_or_slug: z.ZodString;
@@ -68383,7 +68507,7 @@ export declare const zListAProjectSServiceHooksData: z.ZodObject<{
68383
68507
  /**
68384
68508
  * Success
68385
68509
  */
68386
- export declare const zListAProjectSServiceHooksResponse: z.ZodArray<z.ZodObject<{
68510
+ export declare const zListProjectHooksResponse: z.ZodArray<z.ZodObject<{
68387
68511
  dateCreated: z.ZodString;
68388
68512
  events: z.ZodArray<z.ZodString, "many">;
68389
68513
  id: z.ZodString;
@@ -68405,7 +68529,7 @@ export declare const zListAProjectSServiceHooksResponse: z.ZodArray<z.ZodObject<
68405
68529
  dateCreated: string;
68406
68530
  secret: string;
68407
68531
  }>, "many">;
68408
- export declare const zRegisterANewServiceHookData: z.ZodObject<{
68532
+ export declare const zCreateProjectHookData: z.ZodObject<{
68409
68533
  body: z.ZodObject<{
68410
68534
  url: z.ZodString;
68411
68535
  events: z.ZodArray<z.ZodString, "many">;
@@ -68451,7 +68575,7 @@ export declare const zRegisterANewServiceHookData: z.ZodObject<{
68451
68575
  /**
68452
68576
  * Success
68453
68577
  */
68454
- export declare const zRegisterANewServiceHookResponse: z.ZodObject<{
68578
+ export declare const zCreateProjectHookResponse: z.ZodObject<{
68455
68579
  dateCreated: z.ZodString;
68456
68580
  events: z.ZodArray<z.ZodString, "many">;
68457
68581
  id: z.ZodString;
@@ -68473,7 +68597,7 @@ export declare const zRegisterANewServiceHookResponse: z.ZodObject<{
68473
68597
  dateCreated: string;
68474
68598
  secret: string;
68475
68599
  }>;
68476
- export declare const zRemoveAServiceHookData: z.ZodObject<{
68600
+ export declare const zDeleteProjectHookData: z.ZodObject<{
68477
68601
  body: z.ZodOptional<z.ZodNever>;
68478
68602
  path: z.ZodObject<{
68479
68603
  organization_id_or_slug: z.ZodString;
@@ -68509,8 +68633,8 @@ export declare const zRemoveAServiceHookData: z.ZodObject<{
68509
68633
  /**
68510
68634
  * Success
68511
68635
  */
68512
- export declare const zRemoveAServiceHookResponse: z.ZodVoid;
68513
- export declare const zRetrieveAServiceHookData: z.ZodObject<{
68636
+ export declare const zDeleteProjectHookResponse: z.ZodVoid;
68637
+ export declare const zGetProjectHookData: z.ZodObject<{
68514
68638
  body: z.ZodOptional<z.ZodNever>;
68515
68639
  path: z.ZodObject<{
68516
68640
  organization_id_or_slug: z.ZodString;
@@ -68546,7 +68670,7 @@ export declare const zRetrieveAServiceHookData: z.ZodObject<{
68546
68670
  /**
68547
68671
  * Success
68548
68672
  */
68549
- export declare const zRetrieveAServiceHookResponse: z.ZodObject<{
68673
+ export declare const zGetProjectHookResponse: z.ZodObject<{
68550
68674
  dateCreated: z.ZodString;
68551
68675
  events: z.ZodArray<z.ZodString, "many">;
68552
68676
  id: z.ZodString;
@@ -68568,7 +68692,7 @@ export declare const zRetrieveAServiceHookResponse: z.ZodObject<{
68568
68692
  dateCreated: string;
68569
68693
  secret: string;
68570
68694
  }>;
68571
- export declare const zUpdateAServiceHookData: z.ZodObject<{
68695
+ export declare const zUpdateProjectHookData: z.ZodObject<{
68572
68696
  body: z.ZodOptional<z.ZodObject<{
68573
68697
  url: z.ZodString;
68574
68698
  events: z.ZodArray<z.ZodString, "many">;
@@ -68619,7 +68743,7 @@ export declare const zUpdateAServiceHookData: z.ZodObject<{
68619
68743
  /**
68620
68744
  * Success
68621
68745
  */
68622
- export declare const zUpdateAServiceHookResponse: z.ZodObject<{
68746
+ export declare const zUpdateProjectHookResponse: z.ZodObject<{
68623
68747
  dateCreated: z.ZodString;
68624
68748
  events: z.ZodArray<z.ZodString, "many">;
68625
68749
  id: z.ZodString;
@@ -68641,7 +68765,7 @@ export declare const zUpdateAServiceHookResponse: z.ZodObject<{
68641
68765
  dateCreated: string;
68642
68766
  secret: string;
68643
68767
  }>;
68644
- export declare const zBulkRemoveAListOfIssuesData: z.ZodObject<{
68768
+ export declare const zDeleteProjectIssuesData: z.ZodObject<{
68645
68769
  body: z.ZodOptional<z.ZodNever>;
68646
68770
  path: z.ZodObject<{
68647
68771
  organization_id_or_slug: z.ZodString;
@@ -68682,8 +68806,8 @@ export declare const zBulkRemoveAListOfIssuesData: z.ZodObject<{
68682
68806
  /**
68683
68807
  * Success
68684
68808
  */
68685
- export declare const zBulkRemoveAListOfIssuesResponse: z.ZodVoid;
68686
- export declare const zListAProjectSissuesData: z.ZodObject<{
68809
+ export declare const zDeleteProjectIssuesResponse: z.ZodVoid;
68810
+ export declare const zListProjectIssuesData: z.ZodObject<{
68687
68811
  body: z.ZodOptional<z.ZodNever>;
68688
68812
  path: z.ZodObject<{
68689
68813
  organization_id_or_slug: z.ZodString;
@@ -68744,7 +68868,7 @@ export declare const zListAProjectSissuesData: z.ZodObject<{
68744
68868
  /**
68745
68869
  * Success
68746
68870
  */
68747
- export declare const zListAProjectSissuesResponse: z.ZodArray<z.ZodObject<{
68871
+ export declare const zListProjectIssuesResponse: z.ZodArray<z.ZodObject<{
68748
68872
  annotations: z.ZodArray<z.ZodString, "many">;
68749
68873
  assignedTo: z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>;
68750
68874
  count: z.ZodString;
@@ -68886,7 +69010,7 @@ export declare const zListAProjectSissuesResponse: z.ZodArray<z.ZodObject<{
68886
69010
  hasSeen: boolean;
68887
69011
  annotations: string[];
68888
69012
  }>, "many">;
68889
- export declare const zBulkMutateAListOfIssuesData: z.ZodObject<{
69013
+ export declare const zUpdateProjectIssuesData: z.ZodObject<{
68890
69014
  body: z.ZodObject<{
68891
69015
  status: z.ZodOptional<z.ZodString>;
68892
69016
  statusDetails: z.ZodOptional<z.ZodObject<{
@@ -69040,7 +69164,7 @@ export declare const zBulkMutateAListOfIssuesData: z.ZodObject<{
69040
69164
  /**
69041
69165
  * Success
69042
69166
  */
69043
- export declare const zBulkMutateAListOfIssuesResponse: z.ZodObject<{
69167
+ export declare const zUpdateProjectIssuesResponse: z.ZodObject<{
69044
69168
  isPublic: z.ZodBoolean;
69045
69169
  status: z.ZodEnum<["resolved", "unresolved", "ignored"]>;
69046
69170
  statusDetails: z.ZodRecord<z.ZodString, z.ZodUnknown>;
@@ -69053,7 +69177,7 @@ export declare const zBulkMutateAListOfIssuesResponse: z.ZodObject<{
69053
69177
  isPublic: boolean;
69054
69178
  statusDetails: Record<string, unknown>;
69055
69179
  }>;
69056
- export declare const zListATagSValuesForAnIssueData: z.ZodObject<{
69180
+ export declare const zListOrganizationIssueTagValuesData: z.ZodObject<{
69057
69181
  body: z.ZodOptional<z.ZodNever>;
69058
69182
  path: z.ZodObject<{
69059
69183
  issue_id: z.ZodString;
@@ -69101,7 +69225,7 @@ export declare const zListATagSValuesForAnIssueData: z.ZodObject<{
69101
69225
  } | undefined;
69102
69226
  body?: undefined;
69103
69227
  }>;
69104
- export declare const zListATagSValuesForAnIssueResponse: z.ZodArray<z.ZodObject<{
69228
+ export declare const zListOrganizationIssueTagValuesResponse: z.ZodArray<z.ZodObject<{
69105
69229
  query: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
69106
69230
  key: z.ZodString;
69107
69231
  name: z.ZodString;
@@ -69126,7 +69250,7 @@ export declare const zListATagSValuesForAnIssueResponse: z.ZodArray<z.ZodObject<
69126
69250
  lastSeen: string | null;
69127
69251
  query?: string | null | undefined;
69128
69252
  }>, "many">;
69129
- export declare const zListAnOrganizationSReleasesData: z.ZodObject<{
69253
+ export declare const zListOrganizationReleasesData: z.ZodObject<{
69130
69254
  body: z.ZodOptional<z.ZodNever>;
69131
69255
  path: z.ZodObject<{
69132
69256
  organization_id_or_slug: z.ZodString;
@@ -69167,7 +69291,7 @@ export declare const zListAnOrganizationSReleasesData: z.ZodObject<{
69167
69291
  /**
69168
69292
  * Success
69169
69293
  */
69170
- export declare const zListAnOrganizationSReleasesResponse: z.ZodArray<z.ZodObject<{
69294
+ export declare const zListOrganizationReleasesResponse: z.ZodArray<z.ZodObject<{
69171
69295
  id: z.ZodOptional<z.ZodNumber>;
69172
69296
  authors: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
69173
69297
  commitCount: z.ZodBigInt;
@@ -69275,7 +69399,7 @@ export declare const zListAnOrganizationSReleasesResponse: z.ZodArray<z.ZodObjec
69275
69399
  authors: Record<string, unknown>[];
69276
69400
  id?: number | undefined;
69277
69401
  }>, "many">;
69278
- export declare const zCreateANewReleaseForAnOrganizationData: z.ZodObject<{
69402
+ export declare const zCreateOrganizationReleaseData: z.ZodObject<{
69279
69403
  body: z.ZodOptional<z.ZodObject<{
69280
69404
  version: z.ZodString;
69281
69405
  projects: z.ZodArray<z.ZodString, "many">;
@@ -69452,7 +69576,7 @@ export declare const zCreateANewReleaseForAnOrganizationData: z.ZodObject<{
69452
69576
  /**
69453
69577
  * Success
69454
69578
  */
69455
- export declare const zCreateANewReleaseForAnOrganizationResponse: z.ZodObject<{
69579
+ export declare const zCreateOrganizationReleaseResponse: z.ZodObject<{
69456
69580
  id: z.ZodOptional<z.ZodNumber>;
69457
69581
  authors: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
69458
69582
  commitCount: z.ZodBigInt;
@@ -69560,7 +69684,7 @@ export declare const zCreateANewReleaseForAnOrganizationResponse: z.ZodObject<{
69560
69684
  authors: Record<string, unknown>[];
69561
69685
  id?: number | undefined;
69562
69686
  }>;
69563
- export declare const zListAnOrganizationSReleaseFilesData: z.ZodObject<{
69687
+ export declare const zListOrganizationReleaseFilesData: z.ZodObject<{
69564
69688
  body: z.ZodOptional<z.ZodNever>;
69565
69689
  path: z.ZodObject<{
69566
69690
  organization_id_or_slug: z.ZodString;
@@ -69601,7 +69725,7 @@ export declare const zListAnOrganizationSReleaseFilesData: z.ZodObject<{
69601
69725
  /**
69602
69726
  * Success
69603
69727
  */
69604
- export declare const zListAnOrganizationSReleaseFilesResponse: z.ZodArray<z.ZodObject<{
69728
+ export declare const zListOrganizationReleaseFilesResponse: z.ZodArray<z.ZodObject<{
69605
69729
  sha1: z.ZodString;
69606
69730
  dist: z.ZodUnion<[z.ZodString, z.ZodNull]>;
69607
69731
  name: z.ZodString;
@@ -69636,7 +69760,7 @@ export declare const zListAnOrganizationSReleaseFilesResponse: z.ZodArray<z.ZodO
69636
69760
  size: number;
69637
69761
  sha1: string;
69638
69762
  }>, "many">;
69639
- export declare const zUploadANewOrganizationReleaseFileData: z.ZodObject<{
69763
+ export declare const zCreateOrganizationReleaseFileData: z.ZodObject<{
69640
69764
  body: z.ZodOptional<z.ZodObject<{
69641
69765
  file: z.ZodString;
69642
69766
  name: z.ZodOptional<z.ZodString>;
@@ -69689,7 +69813,7 @@ export declare const zUploadANewOrganizationReleaseFileData: z.ZodObject<{
69689
69813
  dist?: string | undefined;
69690
69814
  } | undefined;
69691
69815
  }>;
69692
- export declare const zListAProjectSReleaseFilesData: z.ZodObject<{
69816
+ export declare const zListProjectReleaseFilesData: z.ZodObject<{
69693
69817
  body: z.ZodOptional<z.ZodNever>;
69694
69818
  path: z.ZodObject<{
69695
69819
  organization_id_or_slug: z.ZodString;
@@ -69735,7 +69859,7 @@ export declare const zListAProjectSReleaseFilesData: z.ZodObject<{
69735
69859
  /**
69736
69860
  * Success
69737
69861
  */
69738
- export declare const zListAProjectSReleaseFilesResponse: z.ZodArray<z.ZodObject<{
69862
+ export declare const zListProjectReleaseFilesResponse: z.ZodArray<z.ZodObject<{
69739
69863
  sha1: z.ZodString;
69740
69864
  dist: z.ZodUnion<[z.ZodString, z.ZodNull]>;
69741
69865
  name: z.ZodString;
@@ -69770,7 +69894,7 @@ export declare const zListAProjectSReleaseFilesResponse: z.ZodArray<z.ZodObject<
69770
69894
  size: number;
69771
69895
  sha1: string;
69772
69896
  }>, "many">;
69773
- export declare const zUploadANewProjectReleaseFileData: z.ZodObject<{
69897
+ export declare const zCreateProjectReleaseFileData: z.ZodObject<{
69774
69898
  body: z.ZodOptional<z.ZodObject<{
69775
69899
  file: z.ZodString;
69776
69900
  name: z.ZodOptional<z.ZodString>;
@@ -69831,7 +69955,7 @@ export declare const zUploadANewProjectReleaseFileData: z.ZodObject<{
69831
69955
  /**
69832
69956
  * Success
69833
69957
  */
69834
- export declare const zUploadANewProjectReleaseFileResponse: z.ZodObject<{
69958
+ export declare const zCreateProjectReleaseFileResponse: z.ZodObject<{
69835
69959
  sha1: z.ZodString;
69836
69960
  dist: z.ZodUnion<[z.ZodString, z.ZodNull]>;
69837
69961
  name: z.ZodString;
@@ -69866,7 +69990,7 @@ export declare const zUploadANewProjectReleaseFileResponse: z.ZodObject<{
69866
69990
  size: number;
69867
69991
  sha1: string;
69868
69992
  }>;
69869
- export declare const zDeleteAnOrganizationReleaseSFileData: z.ZodObject<{
69993
+ export declare const zDeleteOrganizationReleaseFileData: z.ZodObject<{
69870
69994
  body: z.ZodOptional<z.ZodNever>;
69871
69995
  path: z.ZodObject<{
69872
69996
  organization_id_or_slug: z.ZodString;
@@ -69902,8 +70026,8 @@ export declare const zDeleteAnOrganizationReleaseSFileData: z.ZodObject<{
69902
70026
  /**
69903
70027
  * Success
69904
70028
  */
69905
- export declare const zDeleteAnOrganizationReleaseSFileResponse: z.ZodVoid;
69906
- export declare const zRetrieveAnOrganizationReleaseSFileData: z.ZodObject<{
70029
+ export declare const zDeleteOrganizationReleaseFileResponse: z.ZodVoid;
70030
+ export declare const zGetOrganizationReleaseFileData: z.ZodObject<{
69907
70031
  body: z.ZodOptional<z.ZodNever>;
69908
70032
  path: z.ZodObject<{
69909
70033
  organization_id_or_slug: z.ZodString;
@@ -69949,7 +70073,7 @@ export declare const zRetrieveAnOrganizationReleaseSFileData: z.ZodObject<{
69949
70073
  /**
69950
70074
  * Success
69951
70075
  */
69952
- export declare const zRetrieveAnOrganizationReleaseSFileResponse: z.ZodObject<{
70076
+ export declare const zGetOrganizationReleaseFileResponse: z.ZodObject<{
69953
70077
  sha1: z.ZodString;
69954
70078
  dist: z.ZodUnion<[z.ZodString, z.ZodNull]>;
69955
70079
  name: z.ZodString;
@@ -69984,7 +70108,7 @@ export declare const zRetrieveAnOrganizationReleaseSFileResponse: z.ZodObject<{
69984
70108
  size: number;
69985
70109
  sha1: string;
69986
70110
  }>;
69987
- export declare const zUpdateAnOrganizationReleaseFileData: z.ZodObject<{
70111
+ export declare const zUpdateOrganizationReleaseFileData: z.ZodObject<{
69988
70112
  body: z.ZodOptional<z.ZodObject<{
69989
70113
  name: z.ZodOptional<z.ZodString>;
69990
70114
  dist: z.ZodOptional<z.ZodString>;
@@ -70035,7 +70159,7 @@ export declare const zUpdateAnOrganizationReleaseFileData: z.ZodObject<{
70035
70159
  /**
70036
70160
  * Success
70037
70161
  */
70038
- export declare const zUpdateAnOrganizationReleaseFileResponse: z.ZodObject<{
70162
+ export declare const zUpdateOrganizationReleaseFileResponse: z.ZodObject<{
70039
70163
  sha1: z.ZodString;
70040
70164
  dist: z.ZodUnion<[z.ZodString, z.ZodNull]>;
70041
70165
  name: z.ZodString;
@@ -70070,7 +70194,7 @@ export declare const zUpdateAnOrganizationReleaseFileResponse: z.ZodObject<{
70070
70194
  size: number;
70071
70195
  sha1: string;
70072
70196
  }>;
70073
- export declare const zDeleteAProjectReleaseSFileData: z.ZodObject<{
70197
+ export declare const zDeleteProjectReleaseFileData: z.ZodObject<{
70074
70198
  body: z.ZodOptional<z.ZodNever>;
70075
70199
  path: z.ZodObject<{
70076
70200
  organization_id_or_slug: z.ZodString;
@@ -70111,8 +70235,8 @@ export declare const zDeleteAProjectReleaseSFileData: z.ZodObject<{
70111
70235
  /**
70112
70236
  * Success
70113
70237
  */
70114
- export declare const zDeleteAProjectReleaseSFileResponse: z.ZodVoid;
70115
- export declare const zRetrieveAProjectReleaseSFileData: z.ZodObject<{
70238
+ export declare const zDeleteProjectReleaseFileResponse: z.ZodVoid;
70239
+ export declare const zGetProjectReleaseFileData: z.ZodObject<{
70116
70240
  body: z.ZodOptional<z.ZodNever>;
70117
70241
  path: z.ZodObject<{
70118
70242
  organization_id_or_slug: z.ZodString;
@@ -70163,7 +70287,7 @@ export declare const zRetrieveAProjectReleaseSFileData: z.ZodObject<{
70163
70287
  /**
70164
70288
  * Success
70165
70289
  */
70166
- export declare const zRetrieveAProjectReleaseSFileResponse: z.ZodObject<{
70290
+ export declare const zGetProjectReleaseFileResponse: z.ZodObject<{
70167
70291
  sha1: z.ZodString;
70168
70292
  dist: z.ZodUnion<[z.ZodString, z.ZodNull]>;
70169
70293
  name: z.ZodString;
@@ -70198,7 +70322,7 @@ export declare const zRetrieveAProjectReleaseSFileResponse: z.ZodObject<{
70198
70322
  size: number;
70199
70323
  sha1: string;
70200
70324
  }>;
70201
- export declare const zUpdateAProjectReleaseFileData: z.ZodObject<{
70325
+ export declare const zUpdateProjectReleaseFileData: z.ZodObject<{
70202
70326
  body: z.ZodOptional<z.ZodObject<{
70203
70327
  name: z.ZodOptional<z.ZodString>;
70204
70328
  dist: z.ZodOptional<z.ZodString>;
@@ -70254,7 +70378,7 @@ export declare const zUpdateAProjectReleaseFileData: z.ZodObject<{
70254
70378
  /**
70255
70379
  * Success
70256
70380
  */
70257
- export declare const zUpdateAProjectReleaseFileResponse: z.ZodObject<{
70381
+ export declare const zUpdateProjectReleaseFileResponse: z.ZodObject<{
70258
70382
  sha1: z.ZodString;
70259
70383
  dist: z.ZodUnion<[z.ZodString, z.ZodNull]>;
70260
70384
  name: z.ZodString;
@@ -70289,7 +70413,7 @@ export declare const zUpdateAProjectReleaseFileResponse: z.ZodObject<{
70289
70413
  size: number;
70290
70414
  sha1: string;
70291
70415
  }>;
70292
- export declare const zListAnOrganizationReleaseSCommitsData: z.ZodObject<{
70416
+ export declare const zListOrganizationReleaseCommitsData: z.ZodObject<{
70293
70417
  body: z.ZodOptional<z.ZodNever>;
70294
70418
  path: z.ZodObject<{
70295
70419
  organization_id_or_slug: z.ZodString;
@@ -70330,7 +70454,7 @@ export declare const zListAnOrganizationReleaseSCommitsData: z.ZodObject<{
70330
70454
  /**
70331
70455
  * Success
70332
70456
  */
70333
- export declare const zListAnOrganizationReleaseSCommitsResponse: z.ZodArray<z.ZodObject<{
70457
+ export declare const zListOrganizationReleaseCommitsResponse: z.ZodArray<z.ZodObject<{
70334
70458
  dateCreated: z.ZodString;
70335
70459
  id: z.ZodString;
70336
70460
  message: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -70343,7 +70467,7 @@ export declare const zListAnOrganizationReleaseSCommitsResponse: z.ZodArray<z.Zo
70343
70467
  message: string | null;
70344
70468
  dateCreated: string;
70345
70469
  }>, "many">;
70346
- export declare const zListAProjectReleaseSCommitsData: z.ZodObject<{
70470
+ export declare const zListProjectReleaseCommitsData: z.ZodObject<{
70347
70471
  body: z.ZodOptional<z.ZodNever>;
70348
70472
  path: z.ZodObject<{
70349
70473
  organization_id_or_slug: z.ZodString;
@@ -70389,7 +70513,7 @@ export declare const zListAProjectReleaseSCommitsData: z.ZodObject<{
70389
70513
  /**
70390
70514
  * Success
70391
70515
  */
70392
- export declare const zListAProjectReleaseSCommitsResponse: z.ZodArray<z.ZodObject<{
70516
+ export declare const zListProjectReleaseCommitsResponse: z.ZodArray<z.ZodObject<{
70393
70517
  dateCreated: z.ZodString;
70394
70518
  id: z.ZodString;
70395
70519
  message: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -70402,7 +70526,7 @@ export declare const zListAProjectReleaseSCommitsResponse: z.ZodArray<z.ZodObjec
70402
70526
  message: string | null;
70403
70527
  dateCreated: string;
70404
70528
  }>, "many">;
70405
- export declare const zRetrieveFilesChangedInAReleaseSCommitsData: z.ZodObject<{
70529
+ export declare const zListOrganizationReleaseCommitfilesData: z.ZodObject<{
70406
70530
  body: z.ZodOptional<z.ZodNever>;
70407
70531
  path: z.ZodObject<{
70408
70532
  organization_id_or_slug: z.ZodString;
@@ -70430,7 +70554,7 @@ export declare const zRetrieveFilesChangedInAReleaseSCommitsData: z.ZodObject<{
70430
70554
  query?: undefined;
70431
70555
  body?: undefined;
70432
70556
  }>;
70433
- export declare const zListAnOrganizationSIntegrationPlatformInstallationsData: z.ZodObject<{
70557
+ export declare const zListOrganizationSentryAppInstallationsData: z.ZodObject<{
70434
70558
  body: z.ZodOptional<z.ZodNever>;
70435
70559
  path: z.ZodObject<{
70436
70560
  organization_id_or_slug: z.ZodString;
@@ -70466,7 +70590,7 @@ export declare const zListAnOrganizationSIntegrationPlatformInstallationsData: z
70466
70590
  /**
70467
70591
  * Success
70468
70592
  */
70469
- export declare const zListAnOrganizationSIntegrationPlatformInstallationsResponse: z.ZodArray<z.ZodObject<{
70593
+ export declare const zListOrganizationSentryAppInstallationsResponse: z.ZodArray<z.ZodObject<{
70470
70594
  app: z.ZodObject<{
70471
70595
  uuid: z.ZodString;
70472
70596
  slug: z.ZodString;
@@ -70512,7 +70636,7 @@ export declare const zListAnOrganizationSIntegrationPlatformInstallationsRespons
70512
70636
  sentryAppId: number;
70513
70637
  };
70514
70638
  }>, "many">;
70515
- export declare const zCreateOrUpdateAnExternalIssueData: z.ZodObject<{
70639
+ export declare const zCreateSentryAppInstallationExternalIssueData: z.ZodObject<{
70516
70640
  body: z.ZodObject<{
70517
70641
  issueId: z.ZodNumber;
70518
70642
  webUrl: z.ZodString;
@@ -70563,7 +70687,7 @@ export declare const zCreateOrUpdateAnExternalIssueData: z.ZodObject<{
70563
70687
  /**
70564
70688
  * Success
70565
70689
  */
70566
- export declare const zCreateOrUpdateAnExternalIssueResponse: z.ZodObject<{
70690
+ export declare const zCreateSentryAppInstallationExternalIssueResponse: z.ZodObject<{
70567
70691
  id: z.ZodString;
70568
70692
  issueId: z.ZodString;
70569
70693
  serviceType: z.ZodString;
@@ -70582,7 +70706,7 @@ export declare const zCreateOrUpdateAnExternalIssueResponse: z.ZodObject<{
70582
70706
  serviceType: string;
70583
70707
  webUrl: string;
70584
70708
  }>;
70585
- export declare const zDeleteAnExternalIssueData: z.ZodObject<{
70709
+ export declare const zDeleteSentryAppInstallationExternalIssueData: z.ZodObject<{
70586
70710
  body: z.ZodOptional<z.ZodNever>;
70587
70711
  path: z.ZodObject<{
70588
70712
  uuid: z.ZodString;
@@ -70613,8 +70737,8 @@ export declare const zDeleteAnExternalIssueData: z.ZodObject<{
70613
70737
  /**
70614
70738
  * Success
70615
70739
  */
70616
- export declare const zDeleteAnExternalIssueResponse: z.ZodVoid;
70617
- export declare const zDisableSpikeProtectionData: z.ZodObject<{
70740
+ export declare const zDeleteSentryAppInstallationExternalIssueResponse: z.ZodVoid;
70741
+ export declare const zDeleteOrganizationSpikeProtectionsData: z.ZodObject<{
70618
70742
  body: z.ZodObject<{
70619
70743
  projects: z.ZodArray<z.ZodString, "many">;
70620
70744
  }, "strip", z.ZodTypeAny, {
@@ -70647,7 +70771,7 @@ export declare const zDisableSpikeProtectionData: z.ZodObject<{
70647
70771
  };
70648
70772
  query?: undefined;
70649
70773
  }>;
70650
- export declare const zEnableSpikeProtectionData: z.ZodObject<{
70774
+ export declare const zCreateOrganizationSpikeProtectionData: z.ZodObject<{
70651
70775
  body: z.ZodObject<{
70652
70776
  projects: z.ZodArray<z.ZodString, "many">;
70653
70777
  }, "strip", z.ZodTypeAny, {
@@ -70680,7 +70804,7 @@ export declare const zEnableSpikeProtectionData: z.ZodObject<{
70680
70804
  };
70681
70805
  query?: undefined;
70682
70806
  }>;
70683
- export declare const zRemoveAnIssueData: z.ZodObject<{
70807
+ export declare const zDeleteOrganizationIssueData: z.ZodObject<{
70684
70808
  body: z.ZodOptional<z.ZodNever>;
70685
70809
  path: z.ZodObject<{
70686
70810
  organization_id_or_slug: z.ZodString;
@@ -70708,7 +70832,7 @@ export declare const zRemoveAnIssueData: z.ZodObject<{
70708
70832
  query?: undefined;
70709
70833
  body?: undefined;
70710
70834
  }>;
70711
- export declare const zRetrieveAnIssueData: z.ZodObject<{
70835
+ export declare const zGetOrganizationIssueData: z.ZodObject<{
70712
70836
  body: z.ZodOptional<z.ZodNever>;
70713
70837
  path: z.ZodObject<{
70714
70838
  organization_id_or_slug: z.ZodString;
@@ -70756,7 +70880,7 @@ export declare const zRetrieveAnIssueData: z.ZodObject<{
70756
70880
  } | undefined;
70757
70881
  body?: undefined;
70758
70882
  }>;
70759
- export declare const zRetrieveAnIssueResponse: z.ZodObject<{
70883
+ export declare const zGetOrganizationIssueResponse: z.ZodObject<{
70760
70884
  isUnhandled: z.ZodOptional<z.ZodBoolean>;
70761
70885
  count: z.ZodOptional<z.ZodString>;
70762
70886
  userCount: z.ZodOptional<z.ZodNumber>;
@@ -71152,11 +71276,83 @@ export declare const zRetrieveAnIssueResponse: z.ZodObject<{
71152
71276
  lastRelease: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
71153
71277
  tags: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
71154
71278
  stats: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodArray<z.ZodNumber, "many">, "many">>>;
71155
- inbox: z.ZodOptional<z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
71156
- owners: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">, z.ZodNull]>>;
71279
+ inbox: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
71280
+ reason: z.ZodNumber;
71281
+ reason_details: z.ZodUnion<[z.ZodObject<{
71282
+ until: z.ZodUnion<[z.ZodString, z.ZodNull]>;
71283
+ count: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
71284
+ window: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
71285
+ user_count: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
71286
+ user_window: z.ZodUnion<[z.ZodNumber, z.ZodNull]>;
71287
+ }, "strip", z.ZodTypeAny, {
71288
+ window: number | null;
71289
+ count: number | null;
71290
+ until: string | null;
71291
+ user_count: number | null;
71292
+ user_window: number | null;
71293
+ }, {
71294
+ window: number | null;
71295
+ count: number | null;
71296
+ until: string | null;
71297
+ user_count: number | null;
71298
+ user_window: number | null;
71299
+ }>, z.ZodNull]>;
71300
+ date_added: z.ZodString;
71301
+ }, "strip", z.ZodTypeAny, {
71302
+ reason: number;
71303
+ reason_details: {
71304
+ window: number | null;
71305
+ count: number | null;
71306
+ until: string | null;
71307
+ user_count: number | null;
71308
+ user_window: number | null;
71309
+ } | null;
71310
+ date_added: string;
71311
+ }, {
71312
+ reason: number;
71313
+ reason_details: {
71314
+ window: number | null;
71315
+ count: number | null;
71316
+ until: string | null;
71317
+ user_count: number | null;
71318
+ user_window: number | null;
71319
+ } | null;
71320
+ date_added: string;
71321
+ }>, z.ZodNull]>>;
71322
+ owners: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{
71323
+ type: z.ZodString;
71324
+ owner: z.ZodString;
71325
+ date_added: z.ZodString;
71326
+ }, "strip", z.ZodTypeAny, {
71327
+ owner: string;
71328
+ type: string;
71329
+ date_added: string;
71330
+ }, {
71331
+ owner: string;
71332
+ type: string;
71333
+ date_added: string;
71334
+ }>, "many">, z.ZodNull]>>;
71157
71335
  forecast: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
71158
71336
  integrationIssues: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
71159
- sentryAppIssues: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
71337
+ sentryAppIssues: z.ZodOptional<z.ZodArray<z.ZodObject<{
71338
+ id: z.ZodString;
71339
+ issueId: z.ZodString;
71340
+ serviceType: z.ZodString;
71341
+ displayName: z.ZodString;
71342
+ webUrl: z.ZodString;
71343
+ }, "strip", z.ZodTypeAny, {
71344
+ id: string;
71345
+ displayName: string;
71346
+ issueId: string;
71347
+ serviceType: string;
71348
+ webUrl: string;
71349
+ }, {
71350
+ id: string;
71351
+ displayName: string;
71352
+ issueId: string;
71353
+ serviceType: string;
71354
+ webUrl: string;
71355
+ }>, "many">>;
71160
71356
  latestEventHasAttachments: z.ZodOptional<z.ZodBoolean>;
71161
71357
  activity: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
71162
71358
  seenBy: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
@@ -71275,11 +71471,31 @@ export declare const zRetrieveAnIssueResponse: z.ZodObject<{
71275
71471
  pluginContexts: Record<string, unknown>[];
71276
71472
  userReportCount: number;
71277
71473
  participants: Record<string, unknown>[];
71278
- inbox?: Record<string, unknown> | null | undefined;
71474
+ inbox?: {
71475
+ reason: number;
71476
+ reason_details: {
71477
+ window: number | null;
71478
+ count: number | null;
71479
+ until: string | null;
71480
+ user_count: number | null;
71481
+ user_window: number | null;
71482
+ } | null;
71483
+ date_added: string;
71484
+ } | null | undefined;
71279
71485
  integrationIssues?: Record<string, unknown>[] | undefined;
71280
71486
  latestEventHasAttachments?: boolean | undefined;
71281
- owners?: Record<string, unknown>[] | null | undefined;
71282
- sentryAppIssues?: Record<string, unknown>[] | undefined;
71487
+ owners?: {
71488
+ owner: string;
71489
+ type: string;
71490
+ date_added: string;
71491
+ }[] | null | undefined;
71492
+ sentryAppIssues?: {
71493
+ id: string;
71494
+ displayName: string;
71495
+ issueId: string;
71496
+ serviceType: string;
71497
+ webUrl: string;
71498
+ }[] | undefined;
71283
71499
  stats?: Record<string, number[][]> | undefined;
71284
71500
  tags?: Record<string, unknown>[] | undefined;
71285
71501
  count?: string | undefined;
@@ -71400,11 +71616,31 @@ export declare const zRetrieveAnIssueResponse: z.ZodObject<{
71400
71616
  pluginContexts: Record<string, unknown>[];
71401
71617
  userReportCount: number;
71402
71618
  participants: Record<string, unknown>[];
71403
- inbox?: Record<string, unknown> | null | undefined;
71619
+ inbox?: {
71620
+ reason: number;
71621
+ reason_details: {
71622
+ window: number | null;
71623
+ count: number | null;
71624
+ until: string | null;
71625
+ user_count: number | null;
71626
+ user_window: number | null;
71627
+ } | null;
71628
+ date_added: string;
71629
+ } | null | undefined;
71404
71630
  integrationIssues?: Record<string, unknown>[] | undefined;
71405
71631
  latestEventHasAttachments?: boolean | undefined;
71406
- owners?: Record<string, unknown>[] | null | undefined;
71407
- sentryAppIssues?: Record<string, unknown>[] | undefined;
71632
+ owners?: {
71633
+ owner: string;
71634
+ type: string;
71635
+ date_added: string;
71636
+ }[] | null | undefined;
71637
+ sentryAppIssues?: {
71638
+ id: string;
71639
+ displayName: string;
71640
+ issueId: string;
71641
+ serviceType: string;
71642
+ webUrl: string;
71643
+ }[] | undefined;
71408
71644
  stats?: Record<string, number[][]> | undefined;
71409
71645
  tags?: Record<string, unknown>[] | undefined;
71410
71646
  count?: string | undefined;
@@ -71416,7 +71652,7 @@ export declare const zRetrieveAnIssueResponse: z.ZodObject<{
71416
71652
  firstRelease?: Record<string, unknown> | null | undefined;
71417
71653
  lastRelease?: Record<string, unknown> | null | undefined;
71418
71654
  }>;
71419
- export declare const zUpdateAnIssueData: z.ZodObject<{
71655
+ export declare const zUpdateOrganizationIssueData: z.ZodObject<{
71420
71656
  body: z.ZodObject<{
71421
71657
  inbox: z.ZodBoolean;
71422
71658
  status: z.ZodEnum<["resolved", "unresolved", "ignored", "resolvedInNextRelease", "muted"]>;
@@ -71599,7 +71835,7 @@ export declare const zUpdateAnIssueData: z.ZodObject<{
71599
71835
  };
71600
71836
  query?: undefined;
71601
71837
  }>;
71602
- export declare const zUpdateAnIssueResponse: z.ZodObject<{
71838
+ export declare const zUpdateOrganizationIssueResponse: z.ZodObject<{
71603
71839
  isUnhandled: z.ZodOptional<z.ZodBoolean>;
71604
71840
  count: z.ZodOptional<z.ZodString>;
71605
71841
  userCount: z.ZodOptional<z.ZodNumber>;
@@ -72208,7 +72444,7 @@ export declare const zUpdateAnIssueResponse: z.ZodObject<{
72208
72444
  firstSeen?: string | null | undefined;
72209
72445
  lastSeen?: string | null | undefined;
72210
72446
  }>;
72211
- export declare const zRetrieveSeerIssueFixStateData: z.ZodObject<{
72447
+ export declare const zListOrganizationIssueAutofixData: z.ZodObject<{
72212
72448
  body: z.ZodOptional<z.ZodNever>;
72213
72449
  path: z.ZodObject<{
72214
72450
  organization_id_or_slug: z.ZodString;
@@ -72239,14 +72475,14 @@ export declare const zRetrieveSeerIssueFixStateData: z.ZodObject<{
72239
72475
  /**
72240
72476
  * Response type for the GET endpoint
72241
72477
  */
72242
- export declare const zRetrieveSeerIssueFixStateResponse: z.ZodObject<{
72478
+ export declare const zListOrganizationIssueAutofixResponse: z.ZodObject<{
72243
72479
  autofix: z.ZodUnion<[z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>;
72244
72480
  }, "strip", z.ZodTypeAny, {
72245
72481
  autofix: Record<string, unknown> | null;
72246
72482
  }, {
72247
72483
  autofix: Record<string, unknown> | null;
72248
72484
  }>;
72249
- export declare const zStartSeerIssueFixData: z.ZodObject<{
72485
+ export declare const zCreateOrganizationIssueAutofixData: z.ZodObject<{
72250
72486
  body: z.ZodOptional<z.ZodObject<{
72251
72487
  step: z.ZodOptional<z.ZodEnum<["root_cause", "solution", "code_changes", "open_pr", "coding_agent_handoff"]>>;
72252
72488
  stopping_point: z.ZodOptional<z.ZodEnum<["root_cause", "solution", "code_changes", "open_pr"]>>;
@@ -72327,14 +72563,14 @@ export declare const zStartSeerIssueFixData: z.ZodObject<{
72327
72563
  /**
72328
72564
  * Response type for the POST endpoint
72329
72565
  */
72330
- export declare const zStartSeerIssueFixResponse: z.ZodObject<{
72566
+ export declare const zCreateOrganizationIssueAutofixResponse: z.ZodObject<{
72331
72567
  run_id: z.ZodNumber;
72332
72568
  }, "strip", z.ZodTypeAny, {
72333
72569
  run_id: number;
72334
72570
  }, {
72335
72571
  run_id: number;
72336
72572
  }>;
72337
- export declare const zListAnIssueSEventsData: z.ZodObject<{
72573
+ export declare const zListOrganizationIssueEventsData: z.ZodObject<{
72338
72574
  body: z.ZodOptional<z.ZodNever>;
72339
72575
  path: z.ZodObject<{
72340
72576
  organization_id_or_slug: z.ZodString;
@@ -72407,7 +72643,7 @@ export declare const zListAnIssueSEventsData: z.ZodObject<{
72407
72643
  } | undefined;
72408
72644
  body?: undefined;
72409
72645
  }>;
72410
- export declare const zListAnIssueSEventsResponse: z.ZodArray<z.ZodObject<{
72646
+ export declare const zListOrganizationIssueEventsResponse: z.ZodArray<z.ZodObject<{
72411
72647
  id: z.ZodString;
72412
72648
  'event.type': z.ZodString;
72413
72649
  groupID: z.ZodUnion<[z.ZodString, z.ZodNull]>;
@@ -72516,7 +72752,7 @@ export declare const zListAnIssueSEventsResponse: z.ZodArray<z.ZodObject<{
72516
72752
  culprit: string | null;
72517
72753
  'event.type': string;
72518
72754
  }>, "many">;
72519
- export declare const zRetrieveAnIssueEventData: z.ZodObject<{
72755
+ export declare const zGetOrganizationIssueEventData: z.ZodObject<{
72520
72756
  body: z.ZodOptional<z.ZodNever>;
72521
72757
  path: z.ZodObject<{
72522
72758
  organization_id_or_slug: z.ZodString;
@@ -72559,7 +72795,7 @@ export declare const zRetrieveAnIssueEventData: z.ZodObject<{
72559
72795
  } | undefined;
72560
72796
  body?: undefined;
72561
72797
  }>;
72562
- export declare const zRetrieveAnIssueEventResponse: z.ZodObject<{
72798
+ export declare const zGetOrganizationIssueEventResponse: z.ZodObject<{
72563
72799
  id: z.ZodString;
72564
72800
  groupID: z.ZodUnion<[z.ZodString, z.ZodNull]>;
72565
72801
  eventID: z.ZodString;
@@ -73011,7 +73247,7 @@ export declare const zRetrieveAnIssueEventResponse: z.ZodObject<{
73011
73247
  measurements?: unknown;
73012
73248
  breakdowns?: unknown;
73013
73249
  }>;
73014
- export declare const zRetrieveCustomIntegrationIssueLinksForTheGivenSentryIssueData: z.ZodObject<{
73250
+ export declare const zListOrganizationIssueExternalIssuesData: z.ZodObject<{
73015
73251
  body: z.ZodOptional<z.ZodNever>;
73016
73252
  path: z.ZodObject<{
73017
73253
  organization_id_or_slug: z.ZodString;
@@ -73039,7 +73275,7 @@ export declare const zRetrieveCustomIntegrationIssueLinksForTheGivenSentryIssueD
73039
73275
  query?: undefined;
73040
73276
  body?: undefined;
73041
73277
  }>;
73042
- export declare const zRetrieveCustomIntegrationIssueLinksForTheGivenSentryIssueResponse: z.ZodArray<z.ZodObject<{
73278
+ export declare const zListOrganizationIssueExternalIssuesResponse: z.ZodArray<z.ZodObject<{
73043
73279
  id: z.ZodString;
73044
73280
  issueId: z.ZodString;
73045
73281
  serviceType: z.ZodString;
@@ -73058,7 +73294,7 @@ export declare const zRetrieveCustomIntegrationIssueLinksForTheGivenSentryIssueR
73058
73294
  serviceType: string;
73059
73295
  webUrl: string;
73060
73296
  }>, "many">;
73061
- export declare const zListAnIssueSHashesData: z.ZodObject<{
73297
+ export declare const zListOrganizationIssueHashesData: z.ZodObject<{
73062
73298
  body: z.ZodOptional<z.ZodNever>;
73063
73299
  path: z.ZodObject<{
73064
73300
  organization_id_or_slug: z.ZodString;
@@ -73101,7 +73337,7 @@ export declare const zListAnIssueSHashesData: z.ZodObject<{
73101
73337
  } | undefined;
73102
73338
  body?: undefined;
73103
73339
  }>;
73104
- export declare const zListAnIssueSHashesResponse: z.ZodArray<z.ZodObject<{
73340
+ export declare const zListOrganizationIssueHashesResponse: z.ZodArray<z.ZodObject<{
73105
73341
  id: z.ZodString;
73106
73342
  latestEvent: z.ZodUnion<[z.ZodObject<{
73107
73343
  id: z.ZodString;
@@ -73527,7 +73763,7 @@ export declare const zListAnIssueSHashesResponse: z.ZodArray<z.ZodObject<{
73527
73763
  } | null;
73528
73764
  mergedBySeer: boolean;
73529
73765
  }>, "many">;
73530
- export declare const zRetrieveTagDetailsData: z.ZodObject<{
73766
+ export declare const zGetOrganizationIssueTagData: z.ZodObject<{
73531
73767
  body: z.ZodOptional<z.ZodNever>;
73532
73768
  path: z.ZodObject<{
73533
73769
  issue_id: z.ZodString;
@@ -73570,7 +73806,7 @@ export declare const zRetrieveTagDetailsData: z.ZodObject<{
73570
73806
  } | undefined;
73571
73807
  body?: undefined;
73572
73808
  }>;
73573
- export declare const zRetrieveTagDetailsResponse: z.ZodObject<{
73809
+ export declare const zGetOrganizationIssueTagResponse: z.ZodObject<{
73574
73810
  uniqueValues: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
73575
73811
  totalValues: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
73576
73812
  topValues: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodObject<{