@sentry/api 0.18.0 → 0.19.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.
Files changed (2) hide show
  1. package/dist/types.gen.d.ts +104 -14
  2. package/package.json +1 -1
@@ -13572,6 +13572,10 @@ export type ListAnOrganizationSAvailableIntegrationsData = {
13572
13572
  * Specify `True` to fetch third-party integration configurations. Note that this can add several seconds to the response time.
13573
13573
  */
13574
13574
  includeConfig?: boolean;
13575
+ /**
13576
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
13577
+ */
13578
+ cursor?: string;
13575
13579
  };
13576
13580
  url: '/api/0/organizations/{organization_id_or_slug}/integrations/';
13577
13581
  };
@@ -14204,7 +14208,12 @@ export type ListAnOrganizationSMembersData = {
14204
14208
  */
14205
14209
  organization_id_or_slug: string;
14206
14210
  };
14207
- query?: never;
14211
+ query?: {
14212
+ /**
14213
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
14214
+ */
14215
+ cursor?: string;
14216
+ };
14208
14217
  url: '/api/0/organizations/{organization_id_or_slug}/members/';
14209
14218
  };
14210
14219
  export type ListAnOrganizationSMembersErrors = {
@@ -14977,6 +14986,10 @@ export type RetrieveMonitorsForAnOrganizationData = {
14977
14986
  * The owner of the monitor, in the format `user:id` or `team:id`. May be specified multiple times.
14978
14987
  */
14979
14988
  owner?: string;
14989
+ /**
14990
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
14991
+ */
14992
+ cursor?: string;
14980
14993
  };
14981
14994
  url: '/api/0/organizations/{organization_id_or_slug}/monitors/';
14982
14995
  };
@@ -16870,7 +16883,12 @@ export type RetrieveCheckInsForAMonitorData = {
16870
16883
  */
16871
16884
  monitor_id_or_slug: string;
16872
16885
  };
16873
- query?: never;
16886
+ query?: {
16887
+ /**
16888
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
16889
+ */
16890
+ cursor?: string;
16891
+ };
16874
16892
  url: '/api/0/organizations/{organization_id_or_slug}/monitors/{monitor_id_or_slug}/checkins/';
16875
16893
  };
16876
16894
  export type RetrieveCheckInsForAMonitorErrors = {
@@ -18617,7 +18635,12 @@ export type ListAReleaseSDeploysData = {
18617
18635
  */
18618
18636
  version: string;
18619
18637
  };
18620
- query?: never;
18638
+ query?: {
18639
+ /**
18640
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
18641
+ */
18642
+ cursor?: string;
18643
+ };
18621
18644
  url: '/api/0/organizations/{organization_id_or_slug}/releases/{version}/deploys/';
18622
18645
  };
18623
18646
  export type ListAReleaseSDeploysResponses = {
@@ -19217,7 +19240,12 @@ export type ListARepositorySCommitsData = {
19217
19240
  */
19218
19241
  repo_id: string;
19219
19242
  };
19220
- query?: never;
19243
+ query?: {
19244
+ /**
19245
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
19246
+ */
19247
+ cursor?: string;
19248
+ };
19221
19249
  url: '/api/0/organizations/{organization_id_or_slug}/repos/{repo_id}/commits/';
19222
19250
  };
19223
19251
  export type ListARepositorySCommitsErrors = {
@@ -25604,7 +25632,12 @@ export type DeprecatedListAProjectSissueAlertRulesData = {
25604
25632
  */
25605
25633
  project_id_or_slug: string;
25606
25634
  };
25607
- query?: never;
25635
+ query?: {
25636
+ /**
25637
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
25638
+ */
25639
+ cursor?: string;
25640
+ };
25608
25641
  url: '/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/rules/';
25609
25642
  };
25610
25643
  export type DeprecatedListAProjectSissueAlertRulesErrors = {
@@ -27089,7 +27122,12 @@ export type ListAProjectSTeamsData = {
27089
27122
  */
27090
27123
  project_id_or_slug: string;
27091
27124
  };
27092
- query?: never;
27125
+ query?: {
27126
+ /**
27127
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
27128
+ */
27129
+ cursor?: string;
27130
+ };
27093
27131
  url: '/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/teams/';
27094
27132
  };
27095
27133
  export type ListAProjectSTeamsErrors = {
@@ -28358,7 +28396,12 @@ export type ListAnOrganizationSRepositoriesData = {
28358
28396
  */
28359
28397
  organization_id_or_slug: string;
28360
28398
  };
28361
- query?: never;
28399
+ query?: {
28400
+ /**
28401
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
28402
+ */
28403
+ cursor?: string;
28404
+ };
28362
28405
  url: '/api/0/organizations/{organization_id_or_slug}/repos/';
28363
28406
  };
28364
28407
  export type ListAnOrganizationSRepositoriesErrors = {
@@ -28507,6 +28550,10 @@ export type ListAProjectSusersData = {
28507
28550
  * Limit results to users matching the given query. Prefixes should be used to suggest the field to match on: `id`, `email`, `username`, `ip`. For example, `query=email:foo@example.com`
28508
28551
  */
28509
28552
  query?: string;
28553
+ /**
28554
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
28555
+ */
28556
+ cursor?: string;
28510
28557
  };
28511
28558
  url: '/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/users/';
28512
28559
  };
@@ -28542,7 +28589,12 @@ export type ListATagSValuesData = {
28542
28589
  */
28543
28590
  key: string;
28544
28591
  };
28545
- query?: never;
28592
+ query?: {
28593
+ /**
28594
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
28595
+ */
28596
+ cursor?: string;
28597
+ };
28546
28598
  url: '/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/tags/{key}/values/';
28547
28599
  };
28548
28600
  export type ListATagSValuesErrors = {
@@ -28617,7 +28669,12 @@ export type ListAProjectSuserFeedbackData = {
28617
28669
  */
28618
28670
  project_id_or_slug: string;
28619
28671
  };
28620
- query?: never;
28672
+ query?: {
28673
+ /**
28674
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
28675
+ */
28676
+ cursor?: string;
28677
+ };
28621
28678
  url: '/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/user-feedback/';
28622
28679
  };
28623
28680
  export type ListAProjectSuserFeedbackErrors = {
@@ -30026,6 +30083,10 @@ export type ListAnOrganizationSReleasesData = {
30026
30083
  * This parameter can be used to create a "starts with" filter for the version.
30027
30084
  */
30028
30085
  query?: string;
30086
+ /**
30087
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
30088
+ */
30089
+ cursor?: string;
30029
30090
  };
30030
30091
  url: '/api/0/organizations/{organization_id_or_slug}/releases/';
30031
30092
  };
@@ -30244,7 +30305,12 @@ export type ListAnOrganizationSReleaseFilesData = {
30244
30305
  */
30245
30306
  version: string;
30246
30307
  };
30247
- query?: never;
30308
+ query?: {
30309
+ /**
30310
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
30311
+ */
30312
+ cursor?: string;
30313
+ };
30248
30314
  url: '/api/0/organizations/{organization_id_or_slug}/releases/{version}/files/';
30249
30315
  };
30250
30316
  export type ListAnOrganizationSReleaseFilesErrors = {
@@ -30338,7 +30404,12 @@ export type ListAProjectSReleaseFilesData = {
30338
30404
  */
30339
30405
  version: string;
30340
30406
  };
30341
- query?: never;
30407
+ query?: {
30408
+ /**
30409
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
30410
+ */
30411
+ cursor?: string;
30412
+ };
30342
30413
  url: '/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/{version}/files/';
30343
30414
  };
30344
30415
  export type ListAProjectSReleaseFilesErrors = {
@@ -30739,7 +30810,12 @@ export type ListAnOrganizationReleaseSCommitsData = {
30739
30810
  */
30740
30811
  version: string;
30741
30812
  };
30742
- query?: never;
30813
+ query?: {
30814
+ /**
30815
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
30816
+ */
30817
+ cursor?: string;
30818
+ };
30743
30819
  url: '/api/0/organizations/{organization_id_or_slug}/releases/{version}/commits/';
30744
30820
  };
30745
30821
  export type ListAnOrganizationReleaseSCommitsErrors = {
@@ -30779,7 +30855,12 @@ export type ListAProjectReleaseSCommitsData = {
30779
30855
  */
30780
30856
  version: string;
30781
30857
  };
30782
- query?: never;
30858
+ query?: {
30859
+ /**
30860
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
30861
+ */
30862
+ cursor?: string;
30863
+ };
30783
30864
  url: '/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/{version}/commits/';
30784
30865
  };
30785
30866
  export type ListAProjectReleaseSCommitsErrors = {
@@ -30842,7 +30923,12 @@ export type ListAnOrganizationSIntegrationPlatformInstallationsData = {
30842
30923
  */
30843
30924
  organization_id_or_slug: string;
30844
30925
  };
30845
- query?: never;
30926
+ query?: {
30927
+ /**
30928
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
30929
+ */
30930
+ cursor?: string;
30931
+ };
30846
30932
  url: '/api/0/organizations/{organization_id_or_slug}/sentry-app-installations/';
30847
30933
  };
30848
30934
  export type ListAnOrganizationSIntegrationPlatformInstallationsErrors = {
@@ -31183,6 +31269,10 @@ export type ListAnIssueSEventsData = {
31183
31269
  * An optional search query for filtering events. See [search syntax](https://docs.sentry.io/concepts/search/) and queryable event properties at [Sentry Search Documentation](https://docs.sentry.io/concepts/search/searchable-properties/events/) for more information. An example query might be `query=transaction:foo AND release:abc`
31184
31270
  */
31185
31271
  query?: string;
31272
+ /**
31273
+ * A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
31274
+ */
31275
+ cursor?: string;
31186
31276
  };
31187
31277
  url: '/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/events/';
31188
31278
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/api",
3
- "version": "0.18.0",
3
+ "version": "0.19.0",
4
4
  "description": "Auto-generated TypeScript client for the Sentry API",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",