@sentry/api 0.208.0 → 0.210.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.
@@ -11408,13 +11408,14 @@ export type DeleteOrganizationDetectorsData = {
11408
11408
  };
11409
11409
  query?: {
11410
11410
  /**
11411
- * The IDs of projects to filter by. `-1` means all available projects.
11411
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
11412
11412
  * For example, the following are valid parameters:
11413
11413
  * - `/?project=1234&project=56789`
11414
+ * - `/?project=android&project=javascript-react`
11414
11415
  * - `/?project=-1`
11415
11416
  *
11416
11417
  */
11417
- project?: Array<number>;
11418
+ project?: Array<number | string>;
11418
11419
  /**
11419
11420
  * An optional search query for filtering monitors.
11420
11421
  *
@@ -11486,13 +11487,14 @@ export type ListOrganizationDetectorsData = {
11486
11487
  };
11487
11488
  query?: {
11488
11489
  /**
11489
- * The IDs of projects to filter by. `-1` means all available projects.
11490
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
11490
11491
  * For example, the following are valid parameters:
11491
11492
  * - `/?project=1234&project=56789`
11493
+ * - `/?project=android&project=javascript-react`
11492
11494
  * - `/?project=-1`
11493
11495
  *
11494
11496
  */
11495
- project?: Array<number>;
11497
+ project?: Array<number | string>;
11496
11498
  /**
11497
11499
  * An optional search query for filtering monitors.
11498
11500
  *
@@ -11591,13 +11593,14 @@ export type UpdateOrganizationDetectorsData = {
11591
11593
  };
11592
11594
  query?: {
11593
11595
  /**
11594
- * The IDs of projects to filter by. `-1` means all available projects.
11596
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
11595
11597
  * For example, the following are valid parameters:
11596
11598
  * - `/?project=1234&project=56789`
11599
+ * - `/?project=android&project=javascript-react`
11597
11600
  * - `/?project=-1`
11598
11601
  *
11599
11602
  */
11600
- project?: Array<number>;
11603
+ project?: Array<number | string>;
11601
11604
  /**
11602
11605
  * An optional search query for filtering monitors.
11603
11606
  *
@@ -12856,13 +12859,14 @@ export type ListOrganizationEventsData = {
12856
12859
  */
12857
12860
  environment?: Array<string>;
12858
12861
  /**
12859
- * The IDs of projects to filter by. `-1` means all available projects.
12862
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
12860
12863
  * For example, the following are valid parameters:
12861
12864
  * - `/?project=1234&project=56789`
12865
+ * - `/?project=android&project=javascript-react`
12862
12866
  * - `/?project=-1`
12863
12867
  *
12864
12868
  */
12865
- project?: Array<number>;
12869
+ project?: Array<number | string>;
12866
12870
  /**
12867
12871
  * The start of the period of time for the query, expected in ISO-8601 format. For example, `2001-12-14T12:34:56.7890`.
12868
12872
  */
@@ -12977,13 +12981,14 @@ export type ListOrganizationEventsTimeseriesData = {
12977
12981
  */
12978
12982
  environment?: Array<string>;
12979
12983
  /**
12980
- * The IDs of projects to filter by. `-1` means all available projects.
12984
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
12981
12985
  * For example, the following are valid parameters:
12982
12986
  * - `/?project=1234&project=56789`
12987
+ * - `/?project=android&project=javascript-react`
12983
12988
  * - `/?project=-1`
12984
12989
  *
12985
12990
  */
12986
- project?: Array<number>;
12991
+ project?: Array<number | string>;
12987
12992
  /**
12988
12993
  * The start of the period of time for the query, expected in ISO-8601 format. For example, `2001-12-14T12:34:56.7890`.
12989
12994
  */
@@ -13695,13 +13700,14 @@ export type DeleteOrganizationIssuesData = {
13695
13700
  */
13696
13701
  environment?: Array<string>;
13697
13702
  /**
13698
- * The IDs of projects to filter by. `-1` means all available projects.
13703
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
13699
13704
  * For example, the following are valid parameters:
13700
13705
  * - `/?project=1234&project=56789`
13706
+ * - `/?project=android&project=javascript-react`
13701
13707
  * - `/?project=-1`
13702
13708
  *
13703
13709
  */
13704
- project?: Array<number>;
13710
+ project?: Array<number | string>;
13705
13711
  /**
13706
13712
  * The list of issue IDs to be removed. If not provided, it will attempt to remove the first 1000 issues.
13707
13713
  */
@@ -13764,13 +13770,14 @@ export type ListOrganizationIssuesData = {
13764
13770
  */
13765
13771
  environment?: Array<string>;
13766
13772
  /**
13767
- * The IDs of projects to filter by. `-1` means all available projects.
13773
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
13768
13774
  * For example, the following are valid parameters:
13769
13775
  * - `/?project=1234&project=56789`
13776
+ * - `/?project=android&project=javascript-react`
13770
13777
  * - `/?project=-1`
13771
13778
  *
13772
13779
  */
13773
- project?: Array<number>;
13780
+ project?: Array<number | string>;
13774
13781
  /**
13775
13782
  * The period of time for the query, will override the start & end parameters, a number followed by one of:
13776
13783
  * - `d` for days
@@ -14131,13 +14138,14 @@ export type UpdateOrganizationIssuesData = {
14131
14138
  */
14132
14139
  environment?: Array<string>;
14133
14140
  /**
14134
- * The IDs of projects to filter by. `-1` means all available projects.
14141
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
14135
14142
  * For example, the following are valid parameters:
14136
14143
  * - `/?project=1234&project=56789`
14144
+ * - `/?project=android&project=javascript-react`
14137
14145
  * - `/?project=-1`
14138
14146
  *
14139
14147
  */
14140
- project?: Array<number>;
14148
+ project?: Array<number | string>;
14141
14149
  /**
14142
14150
  * The list of issue IDs to mutate. It is optional for status updates, in which an implicit `update all` is assumed.
14143
14151
  */
@@ -15000,13 +15008,14 @@ export type ListOrganizationMonitorsData = {
15000
15008
  };
15001
15009
  query?: {
15002
15010
  /**
15003
- * The IDs of projects to filter by. `-1` means all available projects.
15011
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
15004
15012
  * For example, the following are valid parameters:
15005
15013
  * - `/?project=1234&project=56789`
15014
+ * - `/?project=android&project=javascript-react`
15006
15015
  * - `/?project=-1`
15007
15016
  *
15008
15017
  */
15009
- project?: Array<number>;
15018
+ project?: Array<number | string>;
15010
15019
  /**
15011
15020
  * The name of environments to filter by.
15012
15021
  */
@@ -16970,15 +16979,16 @@ export type ListOrganizationNotificationsActionsData = {
16970
16979
  };
16971
16980
  query?: {
16972
16981
  /**
16973
- * The IDs of projects to filter by. `-1` means all available projects.
16982
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
16974
16983
  * For example, the following are valid parameters:
16975
16984
  * - `/?project=1234&project=56789`
16985
+ * - `/?project=android&project=javascript-react`
16976
16986
  * - `/?project=-1`
16977
16987
  *
16978
16988
  */
16979
- project?: Array<number>;
16989
+ project?: Array<number | string>;
16980
16990
  /**
16981
- * The project slugs to filter by. Use `$all` to include all available projects. For example, the following are valid parameters:
16991
+ * The legacy project slug filter. Prefer `project`, which accepts project IDs or slugs. Use `$all` to include all available projects. For example, the following are valid parameters:
16982
16992
  * - `/?projectSlug=$all`
16983
16993
  * - `/?projectSlug=android&projectSlug=javascript-react`
16984
16994
  *
@@ -17840,13 +17850,14 @@ export type ListOrganizationProfilingFlamegraphData = {
17840
17850
  };
17841
17851
  query?: {
17842
17852
  /**
17843
- * The IDs of projects to filter by. `-1` means all available projects.
17853
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
17844
17854
  * For example, the following are valid parameters:
17845
17855
  * - `/?project=1234&project=56789`
17856
+ * - `/?project=android&project=javascript-react`
17846
17857
  * - `/?project=-1`
17847
17858
  *
17848
17859
  */
17849
- project?: Array<number>;
17860
+ project?: Array<number | string>;
17850
17861
  /**
17851
17862
  * The name of environments to filter by.
17852
17863
  */
@@ -18452,7 +18463,7 @@ export type CreateOrganizationProjectDetectorData = {
18452
18463
  */
18453
18464
  organization_id_or_slug: string;
18454
18465
  /**
18455
- * The ID or slug of the project the resource belongs to.
18466
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
18456
18467
  */
18457
18468
  project_id_or_slug: string;
18458
18469
  };
@@ -19194,15 +19205,16 @@ export type GetOrganizationReplayCountData = {
19194
19205
  */
19195
19206
  statsPeriod?: string;
19196
19207
  /**
19197
- * The IDs of projects to filter by. `-1` means all available projects.
19208
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
19198
19209
  * For example, the following are valid parameters:
19199
19210
  * - `/?project=1234&project=56789`
19211
+ * - `/?project=android&project=javascript-react`
19200
19212
  * - `/?project=-1`
19201
19213
  *
19202
19214
  */
19203
- project?: Array<number>;
19215
+ project?: Array<number | string>;
19204
19216
  /**
19205
- * The project slugs to filter by. Use `$all` to include all available projects. For example, the following are valid parameters:
19217
+ * The legacy project slug filter. Prefer `project`, which accepts project IDs or slugs. Use `$all` to include all available projects. For example, the following are valid parameters:
19206
19218
  * - `/?projectSlug=$all`
19207
19219
  * - `/?projectSlug=android&projectSlug=javascript-react`
19208
19220
  *
@@ -20581,13 +20593,14 @@ export type ListOrganizationSessionsData = {
20581
20593
  */
20582
20594
  statsPeriod?: string;
20583
20595
  /**
20584
- * The IDs of projects to filter by. `-1` means all available projects.
20596
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
20585
20597
  * For example, the following are valid parameters:
20586
20598
  * - `/?project=1234&project=56789`
20599
+ * - `/?project=android&project=javascript-react`
20587
20600
  * - `/?project=-1`
20588
20601
  *
20589
20602
  */
20590
- project?: Array<number>;
20603
+ project?: Array<number | string>;
20591
20604
  /**
20592
20605
  * The number of groups to return per request.
20593
20606
  */
@@ -21047,13 +21060,14 @@ export type ListOrganizationTagsData = {
21047
21060
  };
21048
21061
  query?: {
21049
21062
  /**
21050
- * The IDs of projects to filter by. `-1` means all available projects.
21063
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
21051
21064
  * For example, the following are valid parameters:
21052
21065
  * - `/?project=1234&project=56789`
21066
+ * - `/?project=android&project=javascript-react`
21053
21067
  * - `/?project=-1`
21054
21068
  *
21055
21069
  */
21056
- project?: Array<number>;
21070
+ project?: Array<number | string>;
21057
21071
  /**
21058
21072
  * The name of environments to filter by.
21059
21073
  */
@@ -21946,13 +21960,14 @@ export type DeleteOrganizationWorkflowsData = {
21946
21960
  */
21947
21961
  id?: Array<number>;
21948
21962
  /**
21949
- * The IDs of projects to filter by. `-1` means all available projects.
21963
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
21950
21964
  * For example, the following are valid parameters:
21951
21965
  * - `/?project=1234&project=56789`
21966
+ * - `/?project=android&project=javascript-react`
21952
21967
  * - `/?project=-1`
21953
21968
  *
21954
21969
  */
21955
- project?: Array<number>;
21970
+ project?: Array<number | string>;
21956
21971
  };
21957
21972
  url: '/api/0/organizations/{organization_id_or_slug}/workflows/';
21958
21973
  };
@@ -22019,13 +22034,14 @@ export type ListOrganizationWorkflowsData = {
22019
22034
  */
22020
22035
  id?: Array<number>;
22021
22036
  /**
22022
- * The IDs of projects to filter by. `-1` means all available projects.
22037
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
22023
22038
  * For example, the following are valid parameters:
22024
22039
  * - `/?project=1234&project=56789`
22040
+ * - `/?project=android&project=javascript-react`
22025
22041
  * - `/?project=-1`
22026
22042
  *
22027
22043
  */
22028
- project?: Array<number>;
22044
+ project?: Array<number | string>;
22029
22045
  };
22030
22046
  url: '/api/0/organizations/{organization_id_or_slug}/workflows/';
22031
22047
  };
@@ -22891,13 +22907,14 @@ export type UpdateOrganizationWorkflowsData = {
22891
22907
  */
22892
22908
  id?: Array<number>;
22893
22909
  /**
22894
- * The IDs of projects to filter by. `-1` means all available projects.
22910
+ * The IDs or slugs of projects to filter by. Project slugs are unique within each organization. Omit this parameter to include all accessible projects. `-1` is also accepted to include all accessible projects.
22895
22911
  * For example, the following are valid parameters:
22896
22912
  * - `/?project=1234&project=56789`
22913
+ * - `/?project=android&project=javascript-react`
22897
22914
  * - `/?project=-1`
22898
22915
  *
22899
22916
  */
22900
- project?: Array<number>;
22917
+ project?: Array<number | string>;
22901
22918
  };
22902
22919
  url: '/api/0/organizations/{organization_id_or_slug}/workflows/';
22903
22920
  };
@@ -23890,7 +23907,7 @@ export type DeleteProjectData = {
23890
23907
  */
23891
23908
  organization_id_or_slug: string;
23892
23909
  /**
23893
- * The ID or slug of the project the resource belongs to.
23910
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
23894
23911
  */
23895
23912
  project_id_or_slug: string;
23896
23913
  };
@@ -23922,7 +23939,7 @@ export type GetProjectData = {
23922
23939
  */
23923
23940
  organization_id_or_slug: string;
23924
23941
  /**
23925
- * The ID or slug of the project the resource belongs to.
23942
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
23926
23943
  */
23927
23944
  project_id_or_slug: string;
23928
23945
  };
@@ -24184,7 +24201,7 @@ export type UpdateProjectData = {
24184
24201
  */
24185
24202
  organization_id_or_slug: string;
24186
24203
  /**
24187
- * The ID or slug of the project the resource belongs to.
24204
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
24188
24205
  */
24189
24206
  project_id_or_slug: string;
24190
24207
  };
@@ -24396,7 +24413,7 @@ export type ListProjectEnvironmentsData = {
24396
24413
  */
24397
24414
  organization_id_or_slug: string;
24398
24415
  /**
24399
- * The ID or slug of the project the resource belongs to.
24416
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
24400
24417
  */
24401
24418
  project_id_or_slug: string;
24402
24419
  };
@@ -24451,7 +24468,7 @@ export type UpdateProjectEnvironmentsData = {
24451
24468
  */
24452
24469
  organization_id_or_slug: string;
24453
24470
  /**
24454
- * The ID or slug of the project the resource belongs to.
24471
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
24455
24472
  */
24456
24473
  project_id_or_slug: string;
24457
24474
  };
@@ -24492,7 +24509,7 @@ export type GetProjectEnvironmentData = {
24492
24509
  */
24493
24510
  organization_id_or_slug: string;
24494
24511
  /**
24495
- * The ID or slug of the project the resource belongs to.
24512
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
24496
24513
  */
24497
24514
  project_id_or_slug: string;
24498
24515
  /**
@@ -24538,7 +24555,7 @@ export type UpdateProjectEnvironmentData = {
24538
24555
  */
24539
24556
  organization_id_or_slug: string;
24540
24557
  /**
24541
- * The ID or slug of the project the resource belongs to.
24558
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
24542
24559
  */
24543
24560
  project_id_or_slug: string;
24544
24561
  /**
@@ -24583,7 +24600,7 @@ export type ListProjectEventsData = {
24583
24600
  */
24584
24601
  organization_id_or_slug: string;
24585
24602
  /**
24586
- * The ID or slug of the project the resource belongs to.
24603
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
24587
24604
  */
24588
24605
  project_id_or_slug: string;
24589
24606
  };
@@ -24682,7 +24699,7 @@ export type GetProjectEventData = {
24682
24699
  */
24683
24700
  organization_id_or_slug: string;
24684
24701
  /**
24685
- * The ID or slug of the project the resource belongs to.
24702
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
24686
24703
  */
24687
24704
  project_id_or_slug: string;
24688
24705
  /**
@@ -24843,7 +24860,7 @@ export type ListProjectEventAttachmentsData = {
24843
24860
  */
24844
24861
  organization_id_or_slug: string;
24845
24862
  /**
24846
- * The ID or slug of the project the resource belongs to.
24863
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
24847
24864
  */
24848
24865
  project_id_or_slug: string;
24849
24866
  /**
@@ -24901,7 +24918,7 @@ export type GetProjectEventAttachmentData = {
24901
24918
  */
24902
24919
  organization_id_or_slug: string;
24903
24920
  /**
24904
- * The ID or slug of the project the resource belongs to.
24921
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
24905
24922
  */
24906
24923
  project_id_or_slug: string;
24907
24924
  /**
@@ -24954,7 +24971,7 @@ export type ListProjectEventSourceMapDebugData = {
24954
24971
  */
24955
24972
  organization_id_or_slug: string;
24956
24973
  /**
24957
- * The ID or slug of the project the resource belongs to.
24974
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
24958
24975
  */
24959
24976
  project_id_or_slug: string;
24960
24977
  /**
@@ -25049,7 +25066,7 @@ export type ListProjectFilesDsymsData = {
25049
25066
  */
25050
25067
  organization_id_or_slug: string;
25051
25068
  /**
25052
- * The ID or slug of the project the resource belongs to.
25069
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
25053
25070
  */
25054
25071
  project_id_or_slug: string;
25055
25072
  };
@@ -25120,7 +25137,7 @@ export type ListProjectFiltersData = {
25120
25137
  */
25121
25138
  organization_id_or_slug: string;
25122
25139
  /**
25123
- * The ID or slug of the project the resource belongs to.
25140
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
25124
25141
  */
25125
25142
  project_id_or_slug: string;
25126
25143
  };
@@ -25179,7 +25196,7 @@ export type UpdateProjectFilterData = {
25179
25196
  */
25180
25197
  organization_id_or_slug: string;
25181
25198
  /**
25182
- * The ID or slug of the project the resource belongs to.
25199
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
25183
25200
  */
25184
25201
  project_id_or_slug: string;
25185
25202
  /**
@@ -25229,7 +25246,7 @@ export type ListProjectKeysData = {
25229
25246
  */
25230
25247
  organization_id_or_slug: string;
25231
25248
  /**
25232
- * The ID or slug of the project the resource belongs to.
25249
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
25233
25250
  */
25234
25251
  project_id_or_slug: string;
25235
25252
  };
@@ -25338,7 +25355,7 @@ export type CreateProjectKeyData = {
25338
25355
  */
25339
25356
  organization_id_or_slug: string;
25340
25357
  /**
25341
- * The ID or slug of the project the resource belongs to.
25358
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
25342
25359
  */
25343
25360
  project_id_or_slug: string;
25344
25361
  };
@@ -25410,7 +25427,7 @@ export type DeleteProjectKeyData = {
25410
25427
  */
25411
25428
  organization_id_or_slug: string;
25412
25429
  /**
25413
- * The ID or slug of the project the resource belongs to.
25430
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
25414
25431
  */
25415
25432
  project_id_or_slug: string;
25416
25433
  /**
@@ -25446,7 +25463,7 @@ export type GetProjectKeyData = {
25446
25463
  */
25447
25464
  organization_id_or_slug: string;
25448
25465
  /**
25449
- * The ID or slug of the project the resource belongs to.
25466
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
25450
25467
  */
25451
25468
  project_id_or_slug: string;
25452
25469
  /**
@@ -25580,7 +25597,7 @@ export type UpdateProjectKeyData = {
25580
25597
  */
25581
25598
  organization_id_or_slug: string;
25582
25599
  /**
25583
- * The ID or slug of the project the resource belongs to.
25600
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
25584
25601
  */
25585
25602
  project_id_or_slug: string;
25586
25603
  /**
@@ -25660,7 +25677,7 @@ export type ListProjectMembersData = {
25660
25677
  */
25661
25678
  organization_id_or_slug: string;
25662
25679
  /**
25663
- * The ID or slug of the project the resource belongs to.
25680
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
25664
25681
  */
25665
25682
  project_id_or_slug: string;
25666
25683
  };
@@ -25762,7 +25779,7 @@ export type DeleteProjectMonitorData = {
25762
25779
  */
25763
25780
  organization_id_or_slug: string;
25764
25781
  /**
25765
- * The ID or slug of the project the resource belongs to.
25782
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
25766
25783
  */
25767
25784
  project_id_or_slug: string;
25768
25785
  /**
@@ -25806,7 +25823,7 @@ export type GetProjectMonitorData = {
25806
25823
  */
25807
25824
  organization_id_or_slug: string;
25808
25825
  /**
25809
- * The ID or slug of the project the resource belongs to.
25826
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
25810
25827
  */
25811
25828
  project_id_or_slug: string;
25812
25829
  /**
@@ -26605,7 +26622,7 @@ export type UpdateProjectMonitorData = {
26605
26622
  */
26606
26623
  organization_id_or_slug: string;
26607
26624
  /**
26608
- * The ID or slug of the project the resource belongs to.
26625
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
26609
26626
  */
26610
26627
  project_id_or_slug: string;
26611
26628
  /**
@@ -26740,7 +26757,7 @@ export type ListProjectMonitorCheckinsData = {
26740
26757
  */
26741
26758
  organization_id_or_slug: string;
26742
26759
  /**
26743
- * The ID or slug of the project the resource belongs to.
26760
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
26744
26761
  */
26745
26762
  project_id_or_slug: string;
26746
26763
  /**
@@ -26799,7 +26816,7 @@ export type ListProjectOwnershipData = {
26799
26816
  */
26800
26817
  organization_id_or_slug: string;
26801
26818
  /**
26802
- * The ID or slug of the project the resource belongs to.
26819
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
26803
26820
  */
26804
26821
  project_id_or_slug: string;
26805
26822
  };
@@ -26860,7 +26877,7 @@ export type UpdateProjectOwnershipData = {
26860
26877
  */
26861
26878
  organization_id_or_slug: string;
26862
26879
  /**
26863
- * The ID or slug of the project the resource belongs to.
26880
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
26864
26881
  */
26865
26882
  project_id_or_slug: string;
26866
26883
  };
@@ -26907,7 +26924,7 @@ export type ListProjectPreprodSizeAnalysisStatusCheckRulesData = {
26907
26924
  */
26908
26925
  organization_id_or_slug: string;
26909
26926
  /**
26910
- * The ID or slug of the project the resource belongs to.
26927
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
26911
26928
  */
26912
26929
  project_id_or_slug: string;
26913
26930
  };
@@ -26953,7 +26970,7 @@ export type ListProjectPreprodSnapshotsStatusCheckRulesData = {
26953
26970
  */
26954
26971
  organization_id_or_slug: string;
26955
26972
  /**
26956
- * The ID or slug of the project the resource belongs to.
26973
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
26957
26974
  */
26958
26975
  project_id_or_slug: string;
26959
26976
  };
@@ -26990,7 +27007,7 @@ export type ListProjectPreprodartifactsBuildDistributionLatestData = {
26990
27007
  */
26991
27008
  organization_id_or_slug: string;
26992
27009
  /**
26993
- * The ID or slug of the project the resource belongs to.
27010
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
26994
27011
  */
26995
27012
  project_id_or_slug: string;
26996
27013
  };
@@ -27125,7 +27142,7 @@ export type CreateProjectPreprodartifactsSnapshotData = {
27125
27142
  */
27126
27143
  organization_id_or_slug: string;
27127
27144
  /**
27128
- * The ID or slug of the project the resource belongs to.
27145
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27129
27146
  */
27130
27147
  project_id_or_slug: string;
27131
27148
  };
@@ -27159,7 +27176,7 @@ export type GetProjectProfilingProfileData = {
27159
27176
  */
27160
27177
  organization_id_or_slug: string;
27161
27178
  /**
27162
- * The ID or slug of the project the resource belongs to.
27179
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27163
27180
  */
27164
27181
  project_id_or_slug: string;
27165
27182
  /**
@@ -27198,7 +27215,7 @@ export type ListProjectReleasesData = {
27198
27215
  */
27199
27216
  organization_id_or_slug: string;
27200
27217
  /**
27201
- * The ID or slug of the project the resource belongs to.
27218
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27202
27219
  */
27203
27220
  project_id_or_slug: string;
27204
27221
  };
@@ -27372,7 +27389,7 @@ export type DeleteProjectReplayData = {
27372
27389
  */
27373
27390
  organization_id_or_slug: string;
27374
27391
  /**
27375
- * The ID or slug of the project the resource belongs to.
27392
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27376
27393
  */
27377
27394
  project_id_or_slug: string;
27378
27395
  /**
@@ -27404,7 +27421,7 @@ export type ListProjectReplayClicksData = {
27404
27421
  */
27405
27422
  organization_id_or_slug: string;
27406
27423
  /**
27407
- * The ID or slug of the project the resource belongs to.
27424
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27408
27425
  */
27409
27426
  project_id_or_slug: string;
27410
27427
  /**
@@ -27466,7 +27483,7 @@ export type ListProjectReplayRecordingSegmentsData = {
27466
27483
  */
27467
27484
  organization_id_or_slug: string;
27468
27485
  /**
27469
- * The ID or slug of the project the resource belongs to.
27486
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27470
27487
  */
27471
27488
  project_id_or_slug: string;
27472
27489
  /**
@@ -27514,7 +27531,7 @@ export type GetProjectReplayRecordingSegmentData = {
27514
27531
  */
27515
27532
  organization_id_or_slug: string;
27516
27533
  /**
27517
- * The ID or slug of the project the resource belongs to.
27534
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27518
27535
  */
27519
27536
  project_id_or_slug: string;
27520
27537
  /**
@@ -27562,7 +27579,7 @@ export type ListProjectReplayViewedByData = {
27562
27579
  */
27563
27580
  organization_id_or_slug: string;
27564
27581
  /**
27565
- * The ID or slug of the project the resource belongs to.
27582
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27566
27583
  */
27567
27584
  project_id_or_slug: string;
27568
27585
  /**
@@ -27605,7 +27622,7 @@ export type ListProjectReplayDeletionJobsData = {
27605
27622
  */
27606
27623
  organization_id_or_slug: string;
27607
27624
  /**
27608
- * The ID or slug of the project the resource belongs to.
27625
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27609
27626
  */
27610
27627
  project_id_or_slug: string;
27611
27628
  };
@@ -27649,7 +27666,7 @@ export type CreateProjectReplayDeletionJobData = {
27649
27666
  */
27650
27667
  organization_id_or_slug: string;
27651
27668
  /**
27652
- * The ID or slug of the project the resource belongs to.
27669
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27653
27670
  */
27654
27671
  project_id_or_slug: string;
27655
27672
  };
@@ -27690,7 +27707,7 @@ export type GetProjectReplayDeletionJobData = {
27690
27707
  */
27691
27708
  organization_id_or_slug: string;
27692
27709
  /**
27693
- * The ID or slug of the project the resource belongs to.
27710
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27694
27711
  */
27695
27712
  project_id_or_slug: string;
27696
27713
  /**
@@ -27740,7 +27757,7 @@ export type CreateProjectRepoData = {
27740
27757
  */
27741
27758
  organization_id_or_slug: string;
27742
27759
  /**
27743
- * The ID or slug of the project the resource belongs to.
27760
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27744
27761
  */
27745
27762
  project_id_or_slug: string;
27746
27763
  };
@@ -27775,7 +27792,7 @@ export type ListProjectStatsData = {
27775
27792
  */
27776
27793
  organization_id_or_slug: string;
27777
27794
  /**
27778
- * The ID or slug of the project the resource belongs to.
27795
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27779
27796
  */
27780
27797
  project_id_or_slug: string;
27781
27798
  };
@@ -27825,7 +27842,7 @@ export type DeleteProjectSymbolSourcesData = {
27825
27842
  */
27826
27843
  organization_id_or_slug: string;
27827
27844
  /**
27828
- * The ID or slug of the project the resource belongs to.
27845
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27829
27846
  */
27830
27847
  project_id_or_slug: string;
27831
27848
  };
@@ -27862,7 +27879,7 @@ export type ListProjectSymbolSourcesData = {
27862
27879
  */
27863
27880
  organization_id_or_slug: string;
27864
27881
  /**
27865
- * The ID or slug of the project the resource belongs to.
27882
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
27866
27883
  */
27867
27884
  project_id_or_slug: string;
27868
27885
  };
@@ -28145,7 +28162,7 @@ export type CreateProjectSymbolSourceData = {
28145
28162
  */
28146
28163
  organization_id_or_slug: string;
28147
28164
  /**
28148
- * The ID or slug of the project the resource belongs to.
28165
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
28149
28166
  */
28150
28167
  project_id_or_slug: string;
28151
28168
  };
@@ -28423,7 +28440,7 @@ export type UpdateProjectSymbolSourcesData = {
28423
28440
  */
28424
28441
  organization_id_or_slug: string;
28425
28442
  /**
28426
- * The ID or slug of the project the resource belongs to.
28443
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
28427
28444
  */
28428
28445
  project_id_or_slug: string;
28429
28446
  };
@@ -28537,7 +28554,7 @@ export type ListProjectTeamsData = {
28537
28554
  */
28538
28555
  organization_id_or_slug: string;
28539
28556
  /**
28540
- * The ID or slug of the project the resource belongs to.
28557
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
28541
28558
  */
28542
28559
  project_id_or_slug: string;
28543
28560
  };
@@ -28590,7 +28607,7 @@ export type DeleteProjectTeamData = {
28590
28607
  */
28591
28608
  organization_id_or_slug: string;
28592
28609
  /**
28593
- * The ID or slug of the project the resource belongs to.
28610
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
28594
28611
  */
28595
28612
  project_id_or_slug: string;
28596
28613
  /**
@@ -28678,7 +28695,7 @@ export type CreateProjectTeamData = {
28678
28695
  */
28679
28696
  organization_id_or_slug: string;
28680
28697
  /**
28681
- * The ID or slug of the project the resource belongs to.
28698
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
28682
28699
  */
28683
28700
  project_id_or_slug: string;
28684
28701
  /**
@@ -28766,7 +28783,7 @@ export type ListProjectUsersData = {
28766
28783
  */
28767
28784
  organization_id_or_slug: string;
28768
28785
  /**
28769
- * The ID or slug of the project the resource belongs to.
28786
+ * The ID or slug of the project the resource belongs to. Project slugs are unique within each organization.
28770
28787
  */
28771
28788
  project_id_or_slug: string;
28772
28789
  };