@sentry/api 0.192.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/index.d.ts +2 -2
- package/dist/index.js +668 -668
- package/dist/pagination.gen.d.ts +585 -585
- package/dist/sdk.gen.d.ts +217 -217
- package/dist/types.gen.d.ts +845 -845
- package/dist/zod.gen.d.ts +424 -424
- package/dist/zod.js +849 -849
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -822,17 +822,17 @@ var createClient = (config = {}) => {
|
|
|
822
822
|
var client = createClient(createConfig());
|
|
823
823
|
|
|
824
824
|
// src/sdk.gen.ts
|
|
825
|
-
var
|
|
825
|
+
var listOrganizations = (options) => (options?.client ?? client).get({
|
|
826
826
|
security: [{ scheme: "bearer", type: "http" }],
|
|
827
827
|
url: "/api/0/organizations/",
|
|
828
828
|
...options
|
|
829
829
|
});
|
|
830
|
-
var
|
|
830
|
+
var getOrganization = (options) => (options.client ?? client).get({
|
|
831
831
|
security: [{ scheme: "bearer", type: "http" }],
|
|
832
832
|
url: "/api/0/organizations/{organization_id_or_slug}/",
|
|
833
833
|
...options
|
|
834
834
|
});
|
|
835
|
-
var
|
|
835
|
+
var updateOrganization = (options) => (options.client ?? client).put({
|
|
836
836
|
security: [{ scheme: "bearer", type: "http" }],
|
|
837
837
|
url: "/api/0/organizations/{organization_id_or_slug}/",
|
|
838
838
|
...options,
|
|
@@ -841,17 +841,17 @@ var updateAnOrganization = (options) => (options.client ?? client).put({
|
|
|
841
841
|
...options.headers
|
|
842
842
|
}
|
|
843
843
|
});
|
|
844
|
-
var
|
|
844
|
+
var listOrganizationConfigIntegrations = (options) => (options.client ?? client).get({
|
|
845
845
|
security: [{ scheme: "bearer", type: "http" }],
|
|
846
846
|
url: "/api/0/organizations/{organization_id_or_slug}/config/integrations/",
|
|
847
847
|
...options
|
|
848
848
|
});
|
|
849
|
-
var
|
|
849
|
+
var listOrganizationDashboards = (options) => (options.client ?? client).get({
|
|
850
850
|
security: [{ scheme: "bearer", type: "http" }],
|
|
851
851
|
url: "/api/0/organizations/{organization_id_or_slug}/dashboards/",
|
|
852
852
|
...options
|
|
853
853
|
});
|
|
854
|
-
var
|
|
854
|
+
var createOrganizationDashboard = (options) => (options.client ?? client).post({
|
|
855
855
|
security: [{ scheme: "bearer", type: "http" }],
|
|
856
856
|
url: "/api/0/organizations/{organization_id_or_slug}/dashboards/",
|
|
857
857
|
...options,
|
|
@@ -860,17 +860,17 @@ var createANewDashboardForAnOrganization = (options) => (options.client ?? clien
|
|
|
860
860
|
...options.headers
|
|
861
861
|
}
|
|
862
862
|
});
|
|
863
|
-
var
|
|
863
|
+
var deleteOrganizationDashboard = (options) => (options.client ?? client).delete({
|
|
864
864
|
security: [{ scheme: "bearer", type: "http" }],
|
|
865
865
|
url: "/api/0/organizations/{organization_id_or_slug}/dashboards/{dashboard_id}/",
|
|
866
866
|
...options
|
|
867
867
|
});
|
|
868
|
-
var
|
|
868
|
+
var getOrganizationDashboard = (options) => (options.client ?? client).get({
|
|
869
869
|
security: [{ scheme: "bearer", type: "http" }],
|
|
870
870
|
url: "/api/0/organizations/{organization_id_or_slug}/dashboards/{dashboard_id}/",
|
|
871
871
|
...options
|
|
872
872
|
});
|
|
873
|
-
var
|
|
873
|
+
var updateOrganizationDashboard = (options) => (options.client ?? client).put({
|
|
874
874
|
security: [{ scheme: "bearer", type: "http" }],
|
|
875
875
|
url: "/api/0/organizations/{organization_id_or_slug}/dashboards/{dashboard_id}/",
|
|
876
876
|
...options,
|
|
@@ -879,17 +879,17 @@ var editAnOrganization_sCustomDashboard = (options) => (options.client ?? client
|
|
|
879
879
|
...options.headers
|
|
880
880
|
}
|
|
881
881
|
});
|
|
882
|
-
var
|
|
882
|
+
var deleteOrganizationDetectors = (options) => (options.client ?? client).delete({
|
|
883
883
|
security: [{ scheme: "bearer", type: "http" }],
|
|
884
884
|
url: "/api/0/organizations/{organization_id_or_slug}/detectors/",
|
|
885
885
|
...options
|
|
886
886
|
});
|
|
887
|
-
var
|
|
887
|
+
var listOrganizationDetectors = (options) => (options.client ?? client).get({
|
|
888
888
|
security: [{ scheme: "bearer", type: "http" }],
|
|
889
889
|
url: "/api/0/organizations/{organization_id_or_slug}/detectors/",
|
|
890
890
|
...options
|
|
891
891
|
});
|
|
892
|
-
var
|
|
892
|
+
var updateOrganizationDetectors = (options) => (options.client ?? client).put({
|
|
893
893
|
security: [{ scheme: "bearer", type: "http" }],
|
|
894
894
|
url: "/api/0/organizations/{organization_id_or_slug}/detectors/",
|
|
895
895
|
...options,
|
|
@@ -898,17 +898,17 @@ var mutateAnOrganization_sMonitors = (options) => (options.client ?? client).put
|
|
|
898
898
|
...options.headers
|
|
899
899
|
}
|
|
900
900
|
});
|
|
901
|
-
var
|
|
901
|
+
var deleteOrganizationDetector = (options) => (options.client ?? client).delete({
|
|
902
902
|
security: [{ scheme: "bearer", type: "http" }],
|
|
903
903
|
url: "/api/0/organizations/{organization_id_or_slug}/detectors/{detector_id}/",
|
|
904
904
|
...options
|
|
905
905
|
});
|
|
906
|
-
var
|
|
906
|
+
var getOrganizationDetector = (options) => (options.client ?? client).get({
|
|
907
907
|
security: [{ scheme: "bearer", type: "http" }],
|
|
908
908
|
url: "/api/0/organizations/{organization_id_or_slug}/detectors/{detector_id}/",
|
|
909
909
|
...options
|
|
910
910
|
});
|
|
911
|
-
var
|
|
911
|
+
var updateOrganizationDetector = (options) => (options.client ?? client).put({
|
|
912
912
|
security: [{ scheme: "bearer", type: "http" }],
|
|
913
913
|
url: "/api/0/organizations/{organization_id_or_slug}/detectors/{detector_id}/",
|
|
914
914
|
...options,
|
|
@@ -917,12 +917,12 @@ var updateAMonitorById = (options) => (options.client ?? client).put({
|
|
|
917
917
|
...options.headers
|
|
918
918
|
}
|
|
919
919
|
});
|
|
920
|
-
var
|
|
920
|
+
var listOrganizationDiscoverSaved = (options) => (options.client ?? client).get({
|
|
921
921
|
security: [{ scheme: "bearer", type: "http" }],
|
|
922
922
|
url: "/api/0/organizations/{organization_id_or_slug}/discover/saved/",
|
|
923
923
|
...options
|
|
924
924
|
});
|
|
925
|
-
var
|
|
925
|
+
var createOrganizationDiscoverSaved = (options) => (options.client ?? client).post({
|
|
926
926
|
security: [{ scheme: "bearer", type: "http" }],
|
|
927
927
|
url: "/api/0/organizations/{organization_id_or_slug}/discover/saved/",
|
|
928
928
|
...options,
|
|
@@ -931,17 +931,17 @@ var createANewSavedQuery = (options) => (options.client ?? client).post({
|
|
|
931
931
|
...options.headers
|
|
932
932
|
}
|
|
933
933
|
});
|
|
934
|
-
var
|
|
934
|
+
var deleteOrganizationDiscoverSaved = (options) => (options.client ?? client).delete({
|
|
935
935
|
security: [{ scheme: "bearer", type: "http" }],
|
|
936
936
|
url: "/api/0/organizations/{organization_id_or_slug}/discover/saved/{query_id}/",
|
|
937
937
|
...options
|
|
938
938
|
});
|
|
939
|
-
var
|
|
939
|
+
var getOrganizationDiscoverSaved = (options) => (options.client ?? client).get({
|
|
940
940
|
security: [{ scheme: "bearer", type: "http" }],
|
|
941
941
|
url: "/api/0/organizations/{organization_id_or_slug}/discover/saved/{query_id}/",
|
|
942
942
|
...options
|
|
943
943
|
});
|
|
944
|
-
var
|
|
944
|
+
var updateOrganizationDiscoverSaved = (options) => (options.client ?? client).put({
|
|
945
945
|
security: [{ scheme: "bearer", type: "http" }],
|
|
946
946
|
url: "/api/0/organizations/{organization_id_or_slug}/discover/saved/{query_id}/",
|
|
947
947
|
...options,
|
|
@@ -950,27 +950,27 @@ var editAnOrganization_sDiscoverSavedQuery = (options) => (options.client ?? cli
|
|
|
950
950
|
...options.headers
|
|
951
951
|
}
|
|
952
952
|
});
|
|
953
|
-
var
|
|
953
|
+
var listOrganizationEnvironments = (options) => (options.client ?? client).get({
|
|
954
954
|
security: [{ scheme: "bearer", type: "http" }],
|
|
955
955
|
url: "/api/0/organizations/{organization_id_or_slug}/environments/",
|
|
956
956
|
...options
|
|
957
957
|
});
|
|
958
|
-
var
|
|
958
|
+
var getOrganizationEventid = (options) => (options.client ?? client).get({
|
|
959
959
|
security: [{ scheme: "bearer", type: "http" }],
|
|
960
960
|
url: "/api/0/organizations/{organization_id_or_slug}/eventids/{event_id}/",
|
|
961
961
|
...options
|
|
962
962
|
});
|
|
963
|
-
var
|
|
963
|
+
var listOrganizationEvents = (options) => (options.client ?? client).get({
|
|
964
964
|
security: [{ scheme: "bearer", type: "http" }],
|
|
965
965
|
url: "/api/0/organizations/{organization_id_or_slug}/events/",
|
|
966
966
|
...options
|
|
967
967
|
});
|
|
968
|
-
var
|
|
968
|
+
var listOrganizationEventsTimeseries = (options) => (options.client ?? client).get({
|
|
969
969
|
security: [{ scheme: "bearer", type: "http" }],
|
|
970
970
|
url: "/api/0/organizations/{organization_id_or_slug}/events-timeseries/",
|
|
971
971
|
...options
|
|
972
972
|
});
|
|
973
|
-
var
|
|
973
|
+
var createOrganizationExternalUser = (options) => (options.client ?? client).post({
|
|
974
974
|
security: [{ scheme: "bearer", type: "http" }],
|
|
975
975
|
url: "/api/0/organizations/{organization_id_or_slug}/external-users/",
|
|
976
976
|
...options,
|
|
@@ -979,12 +979,12 @@ var createAnExternalUser = (options) => (options.client ?? client).post({
|
|
|
979
979
|
...options.headers
|
|
980
980
|
}
|
|
981
981
|
});
|
|
982
|
-
var
|
|
982
|
+
var deleteOrganizationExternalUser = (options) => (options.client ?? client).delete({
|
|
983
983
|
security: [{ scheme: "bearer", type: "http" }],
|
|
984
984
|
url: "/api/0/organizations/{organization_id_or_slug}/external-users/{external_user_id}/",
|
|
985
985
|
...options
|
|
986
986
|
});
|
|
987
|
-
var
|
|
987
|
+
var updateOrganizationExternalUser = (options) => (options.client ?? client).put({
|
|
988
988
|
security: [{ scheme: "bearer", type: "http" }],
|
|
989
989
|
url: "/api/0/organizations/{organization_id_or_slug}/external-users/{external_user_id}/",
|
|
990
990
|
...options,
|
|
@@ -993,12 +993,12 @@ var updateAnExternalUser = (options) => (options.client ?? client).put({
|
|
|
993
993
|
...options.headers
|
|
994
994
|
}
|
|
995
995
|
});
|
|
996
|
-
var
|
|
996
|
+
var listOrganizationForwarding = (options) => (options.client ?? client).get({
|
|
997
997
|
security: [{ scheme: "bearer", type: "http" }],
|
|
998
998
|
url: "/api/0/organizations/{organization_id_or_slug}/forwarding/",
|
|
999
999
|
...options
|
|
1000
1000
|
});
|
|
1001
|
-
var
|
|
1001
|
+
var createOrganizationForwarding = (options) => (options.client ?? client).post({
|
|
1002
1002
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1003
1003
|
url: "/api/0/organizations/{organization_id_or_slug}/forwarding/",
|
|
1004
1004
|
...options,
|
|
@@ -1007,12 +1007,12 @@ var createADataForwarderForAnOrganization = (options) => (options.client ?? clie
|
|
|
1007
1007
|
...options.headers
|
|
1008
1008
|
}
|
|
1009
1009
|
});
|
|
1010
|
-
var
|
|
1010
|
+
var deleteOrganizationForwarding = (options) => (options.client ?? client).delete({
|
|
1011
1011
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1012
1012
|
url: "/api/0/organizations/{organization_id_or_slug}/forwarding/{data_forwarder_id}/",
|
|
1013
1013
|
...options
|
|
1014
1014
|
});
|
|
1015
|
-
var
|
|
1015
|
+
var updateOrganizationForwarding = (options) => (options.client ?? client).put({
|
|
1016
1016
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1017
1017
|
url: "/api/0/organizations/{organization_id_or_slug}/forwarding/{data_forwarder_id}/",
|
|
1018
1018
|
...options,
|
|
@@ -1021,32 +1021,32 @@ var updateADataForwarderForAnOrganization = (options) => (options.client ?? clie
|
|
|
1021
1021
|
...options.headers
|
|
1022
1022
|
}
|
|
1023
1023
|
});
|
|
1024
|
-
var
|
|
1024
|
+
var listOrganizationIntegrations = (options) => (options.client ?? client).get({
|
|
1025
1025
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1026
1026
|
url: "/api/0/organizations/{organization_id_or_slug}/integrations/",
|
|
1027
1027
|
...options
|
|
1028
1028
|
});
|
|
1029
|
-
var
|
|
1029
|
+
var deleteOrganizationIntegration = (options) => (options.client ?? client).delete({
|
|
1030
1030
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1031
1031
|
url: "/api/0/organizations/{organization_id_or_slug}/integrations/{integration_id}/",
|
|
1032
1032
|
...options
|
|
1033
1033
|
});
|
|
1034
|
-
var
|
|
1034
|
+
var getOrganizationIntegration = (options) => (options.client ?? client).get({
|
|
1035
1035
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1036
1036
|
url: "/api/0/organizations/{organization_id_or_slug}/integrations/{integration_id}/",
|
|
1037
1037
|
...options
|
|
1038
1038
|
});
|
|
1039
|
-
var
|
|
1039
|
+
var deleteOrganizationIssues = (options) => (options.client ?? client).delete({
|
|
1040
1040
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1041
1041
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/",
|
|
1042
1042
|
...options
|
|
1043
1043
|
});
|
|
1044
|
-
var
|
|
1044
|
+
var listOrganizationIssues = (options) => (options.client ?? client).get({
|
|
1045
1045
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1046
1046
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/",
|
|
1047
1047
|
...options
|
|
1048
1048
|
});
|
|
1049
|
-
var
|
|
1049
|
+
var updateOrganizationIssues = (options) => (options.client ?? client).put({
|
|
1050
1050
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1051
1051
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/",
|
|
1052
1052
|
...options,
|
|
@@ -1055,12 +1055,12 @@ var bulkMutateAnOrganization_sIssues = (options) => (options.client ?? client).p
|
|
|
1055
1055
|
...options.headers
|
|
1056
1056
|
}
|
|
1057
1057
|
});
|
|
1058
|
-
var
|
|
1058
|
+
var listOrganizationMembers = (options) => (options.client ?? client).get({
|
|
1059
1059
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1060
1060
|
url: "/api/0/organizations/{organization_id_or_slug}/members/",
|
|
1061
1061
|
...options
|
|
1062
1062
|
});
|
|
1063
|
-
var
|
|
1063
|
+
var createOrganizationMember = (options) => (options.client ?? client).post({
|
|
1064
1064
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1065
1065
|
url: "/api/0/organizations/{organization_id_or_slug}/members/",
|
|
1066
1066
|
...options,
|
|
@@ -1069,17 +1069,17 @@ var addAMemberToAnOrganization = (options) => (options.client ?? client).post({
|
|
|
1069
1069
|
...options.headers
|
|
1070
1070
|
}
|
|
1071
1071
|
});
|
|
1072
|
-
var
|
|
1072
|
+
var deleteOrganizationMember = (options) => (options.client ?? client).delete({
|
|
1073
1073
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1074
1074
|
url: "/api/0/organizations/{organization_id_or_slug}/members/{member_id}/",
|
|
1075
1075
|
...options
|
|
1076
1076
|
});
|
|
1077
|
-
var
|
|
1077
|
+
var getOrganizationMember = (options) => (options.client ?? client).get({
|
|
1078
1078
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1079
1079
|
url: "/api/0/organizations/{organization_id_or_slug}/members/{member_id}/",
|
|
1080
1080
|
...options
|
|
1081
1081
|
});
|
|
1082
|
-
var
|
|
1082
|
+
var updateOrganizationMember = (options) => (options.client ?? client).put({
|
|
1083
1083
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1084
1084
|
url: "/api/0/organizations/{organization_id_or_slug}/members/{member_id}/",
|
|
1085
1085
|
...options,
|
|
@@ -1088,17 +1088,17 @@ var updateAnOrganizationMember_sRoles = (options) => (options.client ?? client).
|
|
|
1088
1088
|
...options.headers
|
|
1089
1089
|
}
|
|
1090
1090
|
});
|
|
1091
|
-
var
|
|
1091
|
+
var deleteOrganizationMemberTeam = (options) => (options.client ?? client).delete({
|
|
1092
1092
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1093
1093
|
url: "/api/0/organizations/{organization_id_or_slug}/members/{member_id}/teams/{team_id_or_slug}/",
|
|
1094
1094
|
...options
|
|
1095
1095
|
});
|
|
1096
|
-
var
|
|
1096
|
+
var createOrganizationMemberTeam = (options) => (options.client ?? client).post({
|
|
1097
1097
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1098
1098
|
url: "/api/0/organizations/{organization_id_or_slug}/members/{member_id}/teams/{team_id_or_slug}/",
|
|
1099
1099
|
...options
|
|
1100
1100
|
});
|
|
1101
|
-
var
|
|
1101
|
+
var updateOrganizationMemberTeam = (options) => (options.client ?? client).put({
|
|
1102
1102
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1103
1103
|
url: "/api/0/organizations/{organization_id_or_slug}/members/{member_id}/teams/{team_id_or_slug}/",
|
|
1104
1104
|
...options,
|
|
@@ -1107,12 +1107,12 @@ var updateAnOrganizationMember_sTeamRole = (options) => (options.client ?? clien
|
|
|
1107
1107
|
...options.headers
|
|
1108
1108
|
}
|
|
1109
1109
|
});
|
|
1110
|
-
var
|
|
1110
|
+
var listOrganizationMonitors = (options) => (options.client ?? client).get({
|
|
1111
1111
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1112
1112
|
url: "/api/0/organizations/{organization_id_or_slug}/monitors/",
|
|
1113
1113
|
...options
|
|
1114
1114
|
});
|
|
1115
|
-
var
|
|
1115
|
+
var createOrganizationMonitor = (options) => (options.client ?? client).post({
|
|
1116
1116
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1117
1117
|
url: "/api/0/organizations/{organization_id_or_slug}/monitors/",
|
|
1118
1118
|
...options,
|
|
@@ -1121,17 +1121,17 @@ var createAMonitor = (options) => (options.client ?? client).post({
|
|
|
1121
1121
|
...options.headers
|
|
1122
1122
|
}
|
|
1123
1123
|
});
|
|
1124
|
-
var
|
|
1124
|
+
var deleteOrganizationMonitor = (options) => (options.client ?? client).delete({
|
|
1125
1125
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1126
1126
|
url: "/api/0/organizations/{organization_id_or_slug}/monitors/{monitor_id_or_slug}/",
|
|
1127
1127
|
...options
|
|
1128
1128
|
});
|
|
1129
|
-
var
|
|
1129
|
+
var getOrganizationMonitor = (options) => (options.client ?? client).get({
|
|
1130
1130
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1131
1131
|
url: "/api/0/organizations/{organization_id_or_slug}/monitors/{monitor_id_or_slug}/",
|
|
1132
1132
|
...options
|
|
1133
1133
|
});
|
|
1134
|
-
var
|
|
1134
|
+
var updateOrganizationMonitor = (options) => (options.client ?? client).put({
|
|
1135
1135
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1136
1136
|
url: "/api/0/organizations/{organization_id_or_slug}/monitors/{monitor_id_or_slug}/",
|
|
1137
1137
|
...options,
|
|
@@ -1140,17 +1140,17 @@ var updateAMonitor = (options) => (options.client ?? client).put({
|
|
|
1140
1140
|
...options.headers
|
|
1141
1141
|
}
|
|
1142
1142
|
});
|
|
1143
|
-
var
|
|
1143
|
+
var listOrganizationMonitorCheckins = (options) => (options.client ?? client).get({
|
|
1144
1144
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1145
1145
|
url: "/api/0/organizations/{organization_id_or_slug}/monitors/{monitor_id_or_slug}/checkins/",
|
|
1146
1146
|
...options
|
|
1147
1147
|
});
|
|
1148
|
-
var
|
|
1148
|
+
var listOrganizationNotificationsActions = (options) => (options.client ?? client).get({
|
|
1149
1149
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1150
1150
|
url: "/api/0/organizations/{organization_id_or_slug}/notifications/actions/",
|
|
1151
1151
|
...options
|
|
1152
1152
|
});
|
|
1153
|
-
var
|
|
1153
|
+
var createOrganizationNotificationsAction = (options) => (options.client ?? client).post({
|
|
1154
1154
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1155
1155
|
url: "/api/0/organizations/{organization_id_or_slug}/notifications/actions/",
|
|
1156
1156
|
...options,
|
|
@@ -1159,17 +1159,17 @@ var createASpikeProtectionNotificationAction = (options) => (options.client ?? c
|
|
|
1159
1159
|
...options.headers
|
|
1160
1160
|
}
|
|
1161
1161
|
});
|
|
1162
|
-
var
|
|
1162
|
+
var deleteOrganizationNotificationsAction = (options) => (options.client ?? client).delete({
|
|
1163
1163
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1164
1164
|
url: "/api/0/organizations/{organization_id_or_slug}/notifications/actions/{action_id}/",
|
|
1165
1165
|
...options
|
|
1166
1166
|
});
|
|
1167
|
-
var
|
|
1167
|
+
var getOrganizationNotificationsAction = (options) => (options.client ?? client).get({
|
|
1168
1168
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1169
1169
|
url: "/api/0/organizations/{organization_id_or_slug}/notifications/actions/{action_id}/",
|
|
1170
1170
|
...options
|
|
1171
1171
|
});
|
|
1172
|
-
var
|
|
1172
|
+
var updateOrganizationNotificationsAction = (options) => (options.client ?? client).put({
|
|
1173
1173
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1174
1174
|
url: "/api/0/organizations/{organization_id_or_slug}/notifications/actions/{action_id}/",
|
|
1175
1175
|
...options,
|
|
@@ -1178,62 +1178,62 @@ var updateASpikeProtectionNotificationAction = (options) => (options.client ?? c
|
|
|
1178
1178
|
...options.headers
|
|
1179
1179
|
}
|
|
1180
1180
|
});
|
|
1181
|
-
var
|
|
1181
|
+
var listOrganizationPreprodartifactInstallDetails = (options) => (options.client ?? client).get({
|
|
1182
1182
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1183
1183
|
url: "/api/0/organizations/{organization_id_or_slug}/preprodartifacts/{artifact_id}/install-details/",
|
|
1184
1184
|
...options
|
|
1185
1185
|
});
|
|
1186
|
-
var
|
|
1186
|
+
var listOrganizationPreprodartifactSizeAnalysis = (options) => (options.client ?? client).get({
|
|
1187
1187
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1188
1188
|
url: "/api/0/organizations/{organization_id_or_slug}/preprodartifacts/{artifact_id}/size-analysis/",
|
|
1189
1189
|
...options
|
|
1190
1190
|
});
|
|
1191
|
-
var
|
|
1191
|
+
var deleteOrganizationPreprodartifactsSnapshot = (options) => (options.client ?? client).delete({
|
|
1192
1192
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1193
1193
|
url: "/api/0/organizations/{organization_id_or_slug}/preprodartifacts/snapshots/{snapshot_id}/",
|
|
1194
1194
|
...options
|
|
1195
1195
|
});
|
|
1196
|
-
var
|
|
1196
|
+
var getOrganizationPreprodartifactsSnapshot = (options) => (options.client ?? client).get({
|
|
1197
1197
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1198
1198
|
url: "/api/0/organizations/{organization_id_or_slug}/preprodartifacts/snapshots/{snapshot_id}/",
|
|
1199
1199
|
...options
|
|
1200
1200
|
});
|
|
1201
|
-
var
|
|
1201
|
+
var listOrganizationPreprodartifactsSnapshotDownload = (options) => (options.client ?? client).get({
|
|
1202
1202
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1203
1203
|
url: "/api/0/organizations/{organization_id_or_slug}/preprodartifacts/snapshots/{snapshot_id}/download/",
|
|
1204
1204
|
...options
|
|
1205
1205
|
});
|
|
1206
|
-
var
|
|
1206
|
+
var getOrganizationPreprodartifactsSnapshotImage = (options) => (options.client ?? client).get({
|
|
1207
1207
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1208
1208
|
url: "/api/0/organizations/{organization_id_or_slug}/preprodartifacts/snapshots/{snapshot_id}/images/{image_identifier}/",
|
|
1209
1209
|
...options
|
|
1210
1210
|
});
|
|
1211
|
-
var
|
|
1211
|
+
var listOrganizationPreprodartifactsSnapshotsLatestBase = (options) => (options.client ?? client).get({
|
|
1212
1212
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1213
1213
|
url: "/api/0/organizations/{organization_id_or_slug}/preprodartifacts/snapshots/latest-base/",
|
|
1214
1214
|
...options
|
|
1215
1215
|
});
|
|
1216
|
-
var
|
|
1216
|
+
var listOrganizationProfilingChunks = (options) => (options.client ?? client).get({
|
|
1217
1217
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1218
1218
|
url: "/api/0/organizations/{organization_id_or_slug}/profiling/chunks/",
|
|
1219
1219
|
...options
|
|
1220
1220
|
});
|
|
1221
|
-
var
|
|
1221
|
+
var listOrganizationProfilingFlamegraph = (options) => (options.client ?? client).get({
|
|
1222
1222
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1223
1223
|
url: "/api/0/organizations/{organization_id_or_slug}/profiling/flamegraph/",
|
|
1224
1224
|
...options
|
|
1225
1225
|
});
|
|
1226
|
-
var
|
|
1226
|
+
var listOrganizationProjectKeys = (options) => (options.client ?? client).get({
|
|
1227
1227
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1228
1228
|
url: "/api/0/organizations/{organization_id_or_slug}/project-keys/",
|
|
1229
1229
|
...options
|
|
1230
1230
|
});
|
|
1231
|
-
var
|
|
1231
|
+
var listOrganizationProjects = (options) => (options.client ?? client).get({
|
|
1232
1232
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1233
1233
|
url: "/api/0/organizations/{organization_id_or_slug}/projects/",
|
|
1234
1234
|
...options
|
|
1235
1235
|
});
|
|
1236
|
-
var
|
|
1236
|
+
var createOrganizationProject = (options) => (options.client ?? client).post({
|
|
1237
1237
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1238
1238
|
url: "/api/0/organizations/{organization_id_or_slug}/projects/",
|
|
1239
1239
|
...options,
|
|
@@ -1242,7 +1242,7 @@ var createAProjectForAnOrganization = (options) => (options.client ?? client).po
|
|
|
1242
1242
|
...options.headers
|
|
1243
1243
|
}
|
|
1244
1244
|
});
|
|
1245
|
-
var
|
|
1245
|
+
var createOrganizationProjectDetector = (options) => (options.client ?? client).post({
|
|
1246
1246
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1247
1247
|
url: "/api/0/organizations/{organization_id_or_slug}/projects/{project_id_or_slug}/detectors/",
|
|
1248
1248
|
...options,
|
|
@@ -1251,27 +1251,27 @@ var createAMonitorForAProject = (options) => (options.client ?? client).post({
|
|
|
1251
1251
|
...options.headers
|
|
1252
1252
|
}
|
|
1253
1253
|
});
|
|
1254
|
-
var
|
|
1254
|
+
var listOrganizationRelayUsage = (options) => (options.client ?? client).get({
|
|
1255
1255
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1256
1256
|
url: "/api/0/organizations/{organization_id_or_slug}/relay_usage/",
|
|
1257
1257
|
...options
|
|
1258
1258
|
});
|
|
1259
|
-
var
|
|
1259
|
+
var listOrganizationReleaseThresholdStatuses = (options) => (options.client ?? client).get({
|
|
1260
1260
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1261
1261
|
url: "/api/0/organizations/{organization_id_or_slug}/release-threshold-statuses/",
|
|
1262
1262
|
...options
|
|
1263
1263
|
});
|
|
1264
|
-
var
|
|
1264
|
+
var deleteOrganizationRelease = (options) => (options.client ?? client).delete({
|
|
1265
1265
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1266
1266
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/{version}/",
|
|
1267
1267
|
...options
|
|
1268
1268
|
});
|
|
1269
|
-
var
|
|
1269
|
+
var getOrganizationRelease = (options) => (options.client ?? client).get({
|
|
1270
1270
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1271
1271
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/{version}/",
|
|
1272
1272
|
...options
|
|
1273
1273
|
});
|
|
1274
|
-
var
|
|
1274
|
+
var updateOrganizationRelease = (options) => (options.client ?? client).put({
|
|
1275
1275
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1276
1276
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/{version}/",
|
|
1277
1277
|
...options,
|
|
@@ -1280,12 +1280,12 @@ var updateAnOrganization_sRelease = (options) => (options.client ?? client).put(
|
|
|
1280
1280
|
...options.headers
|
|
1281
1281
|
}
|
|
1282
1282
|
});
|
|
1283
|
-
var
|
|
1283
|
+
var listOrganizationReleaseDeploys = (options) => (options.client ?? client).get({
|
|
1284
1284
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1285
1285
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/{version}/deploys/",
|
|
1286
1286
|
...options
|
|
1287
1287
|
});
|
|
1288
|
-
var
|
|
1288
|
+
var createOrganizationReleaseDeploy = (options) => (options.client ?? client).post({
|
|
1289
1289
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1290
1290
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/{version}/deploys/",
|
|
1291
1291
|
...options,
|
|
@@ -1294,42 +1294,42 @@ var createADeploy = (options) => (options.client ?? client).post({
|
|
|
1294
1294
|
...options.headers
|
|
1295
1295
|
}
|
|
1296
1296
|
});
|
|
1297
|
-
var
|
|
1297
|
+
var listOrganizationReplayCount = (options) => (options.client ?? client).get({
|
|
1298
1298
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1299
1299
|
url: "/api/0/organizations/{organization_id_or_slug}/replay-count/",
|
|
1300
1300
|
...options
|
|
1301
1301
|
});
|
|
1302
|
-
var
|
|
1302
|
+
var listOrganizationReplaySelectors = (options) => (options.client ?? client).get({
|
|
1303
1303
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1304
1304
|
url: "/api/0/organizations/{organization_id_or_slug}/replay-selectors/",
|
|
1305
1305
|
...options
|
|
1306
1306
|
});
|
|
1307
|
-
var
|
|
1307
|
+
var listOrganizationReplays = (options) => (options.client ?? client).get({
|
|
1308
1308
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1309
1309
|
url: "/api/0/organizations/{organization_id_or_slug}/replays/",
|
|
1310
1310
|
...options
|
|
1311
1311
|
});
|
|
1312
|
-
var
|
|
1312
|
+
var getOrganizationReplay = (options) => (options.client ?? client).get({
|
|
1313
1313
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1314
1314
|
url: "/api/0/organizations/{organization_id_or_slug}/replays/{replay_id}/",
|
|
1315
1315
|
...options
|
|
1316
1316
|
});
|
|
1317
|
-
var
|
|
1317
|
+
var listOrganizationRepos = (options) => (options.client ?? client).get({
|
|
1318
1318
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1319
1319
|
url: "/api/0/organizations/{organization_id_or_slug}/repos/",
|
|
1320
1320
|
...options
|
|
1321
1321
|
});
|
|
1322
|
-
var
|
|
1322
|
+
var listOrganizationRepoCommits = (options) => (options.client ?? client).get({
|
|
1323
1323
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1324
1324
|
url: "/api/0/organizations/{organization_id_or_slug}/repos/{repo_id}/commits/",
|
|
1325
1325
|
...options
|
|
1326
1326
|
});
|
|
1327
|
-
var
|
|
1327
|
+
var listOrganizationScimV2Groups = (options) => (options.client ?? client).get({
|
|
1328
1328
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1329
1329
|
url: "/api/0/organizations/{organization_id_or_slug}/scim/v2/Groups",
|
|
1330
1330
|
...options
|
|
1331
1331
|
});
|
|
1332
|
-
var
|
|
1332
|
+
var createOrganizationScimV2Group = (options) => (options.client ?? client).post({
|
|
1333
1333
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1334
1334
|
url: "/api/0/organizations/{organization_id_or_slug}/scim/v2/Groups",
|
|
1335
1335
|
...options,
|
|
@@ -1338,17 +1338,17 @@ var provisionANewTeam = (options) => (options.client ?? client).post({
|
|
|
1338
1338
|
...options.headers
|
|
1339
1339
|
}
|
|
1340
1340
|
});
|
|
1341
|
-
var
|
|
1341
|
+
var deleteOrganizationScimV2Group = (options) => (options.client ?? client).delete({
|
|
1342
1342
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1343
1343
|
url: "/api/0/organizations/{organization_id_or_slug}/scim/v2/Groups/{team_id_or_slug}",
|
|
1344
1344
|
...options
|
|
1345
1345
|
});
|
|
1346
|
-
var
|
|
1346
|
+
var getOrganizationScimV2Group = (options) => (options.client ?? client).get({
|
|
1347
1347
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1348
1348
|
url: "/api/0/organizations/{organization_id_or_slug}/scim/v2/Groups/{team_id_or_slug}",
|
|
1349
1349
|
...options
|
|
1350
1350
|
});
|
|
1351
|
-
var
|
|
1351
|
+
var updateOrganizationScimV2Group = (options) => (options.client ?? client).patch({
|
|
1352
1352
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1353
1353
|
url: "/api/0/organizations/{organization_id_or_slug}/scim/v2/Groups/{team_id_or_slug}",
|
|
1354
1354
|
...options,
|
|
@@ -1357,12 +1357,12 @@ var updateATeam_sAttributes = (options) => (options.client ?? client).patch({
|
|
|
1357
1357
|
...options.headers
|
|
1358
1358
|
}
|
|
1359
1359
|
});
|
|
1360
|
-
var
|
|
1360
|
+
var listOrganizationScimV2Users = (options) => (options.client ?? client).get({
|
|
1361
1361
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1362
1362
|
url: "/api/0/organizations/{organization_id_or_slug}/scim/v2/Users",
|
|
1363
1363
|
...options
|
|
1364
1364
|
});
|
|
1365
|
-
var
|
|
1365
|
+
var createOrganizationScimV2User = (options) => (options.client ?? client).post({
|
|
1366
1366
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1367
1367
|
url: "/api/0/organizations/{organization_id_or_slug}/scim/v2/Users",
|
|
1368
1368
|
...options,
|
|
@@ -1371,17 +1371,17 @@ var provisionANewOrganizationMember = (options) => (options.client ?? client).po
|
|
|
1371
1371
|
...options.headers
|
|
1372
1372
|
}
|
|
1373
1373
|
});
|
|
1374
|
-
var
|
|
1374
|
+
var deleteOrganizationScimV2User = (options) => (options.client ?? client).delete({
|
|
1375
1375
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1376
1376
|
url: "/api/0/organizations/{organization_id_or_slug}/scim/v2/Users/{member_id}",
|
|
1377
1377
|
...options
|
|
1378
1378
|
});
|
|
1379
|
-
var
|
|
1379
|
+
var getOrganizationScimV2User = (options) => (options.client ?? client).get({
|
|
1380
1380
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1381
1381
|
url: "/api/0/organizations/{organization_id_or_slug}/scim/v2/Users/{member_id}",
|
|
1382
1382
|
...options
|
|
1383
1383
|
});
|
|
1384
|
-
var
|
|
1384
|
+
var updateOrganizationScimV2User = (options) => (options.client ?? client).patch({
|
|
1385
1385
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1386
1386
|
url: "/api/0/organizations/{organization_id_or_slug}/scim/v2/Users/{member_id}",
|
|
1387
1387
|
...options,
|
|
@@ -1390,42 +1390,42 @@ var updateAnOrganizationMember_sAttributes = (options) => (options.client ?? cli
|
|
|
1390
1390
|
...options.headers
|
|
1391
1391
|
}
|
|
1392
1392
|
});
|
|
1393
|
-
var
|
|
1393
|
+
var listOrganizationSentryApps = (options) => (options.client ?? client).get({
|
|
1394
1394
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1395
1395
|
url: "/api/0/organizations/{organization_id_or_slug}/sentry-apps/",
|
|
1396
1396
|
...options
|
|
1397
1397
|
});
|
|
1398
|
-
var
|
|
1398
|
+
var listOrganizationSessions = (options) => (options.client ?? client).get({
|
|
1399
1399
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1400
1400
|
url: "/api/0/organizations/{organization_id_or_slug}/sessions/",
|
|
1401
1401
|
...options
|
|
1402
1402
|
});
|
|
1403
|
-
var
|
|
1403
|
+
var getOrganizationShortid = (options) => (options.client ?? client).get({
|
|
1404
1404
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1405
1405
|
url: "/api/0/organizations/{organization_id_or_slug}/shortids/{issue_id}/",
|
|
1406
1406
|
...options
|
|
1407
1407
|
});
|
|
1408
|
-
var
|
|
1408
|
+
var listOrganizationStatsSummary = (options) => (options.client ?? client).get({
|
|
1409
1409
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1410
1410
|
url: "/api/0/organizations/{organization_id_or_slug}/stats-summary/",
|
|
1411
1411
|
...options
|
|
1412
1412
|
});
|
|
1413
|
-
var
|
|
1413
|
+
var listOrganizationStatsV2 = (options) => (options.client ?? client).get({
|
|
1414
1414
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1415
1415
|
url: "/api/0/organizations/{organization_id_or_slug}/stats_v2/",
|
|
1416
1416
|
...options
|
|
1417
1417
|
});
|
|
1418
|
-
var
|
|
1418
|
+
var listOrganizationTags = (options) => (options.client ?? client).get({
|
|
1419
1419
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1420
1420
|
url: "/api/0/organizations/{organization_id_or_slug}/tags/",
|
|
1421
1421
|
...options
|
|
1422
1422
|
});
|
|
1423
|
-
var
|
|
1423
|
+
var listOrganizationTeams = (options) => (options.client ?? client).get({
|
|
1424
1424
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1425
1425
|
url: "/api/0/organizations/{organization_id_or_slug}/teams/",
|
|
1426
1426
|
...options
|
|
1427
1427
|
});
|
|
1428
|
-
var
|
|
1428
|
+
var createOrganizationTeam = (options) => (options.client ?? client).post({
|
|
1429
1429
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1430
1430
|
url: "/api/0/organizations/{organization_id_or_slug}/teams/",
|
|
1431
1431
|
...options,
|
|
@@ -1434,37 +1434,37 @@ var createANewTeam = (options) => (options.client ?? client).post({
|
|
|
1434
1434
|
...options.headers
|
|
1435
1435
|
}
|
|
1436
1436
|
});
|
|
1437
|
-
var
|
|
1437
|
+
var listOrganizationTraceItemsAttributes = (options) => (options.client ?? client).get({
|
|
1438
1438
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1439
1439
|
url: "/api/0/organizations/{organization_id_or_slug}/trace-items/attributes/",
|
|
1440
1440
|
...options
|
|
1441
1441
|
});
|
|
1442
|
-
var
|
|
1442
|
+
var getOrganizationTraceMeta = (options) => (options.client ?? client).get({
|
|
1443
1443
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1444
1444
|
url: "/api/0/organizations/{organization_id_or_slug}/trace-meta/{trace_id}/",
|
|
1445
1445
|
...options
|
|
1446
1446
|
});
|
|
1447
|
-
var
|
|
1447
|
+
var getOrganizationTrace = (options) => (options.client ?? client).get({
|
|
1448
1448
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1449
1449
|
url: "/api/0/organizations/{organization_id_or_slug}/trace/{trace_id}/",
|
|
1450
1450
|
...options
|
|
1451
1451
|
});
|
|
1452
|
-
var
|
|
1452
|
+
var listOrganizationUserTeams = (options) => (options.client ?? client).get({
|
|
1453
1453
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1454
1454
|
url: "/api/0/organizations/{organization_id_or_slug}/user-teams/",
|
|
1455
1455
|
...options
|
|
1456
1456
|
});
|
|
1457
|
-
var
|
|
1457
|
+
var deleteOrganizationWorkflows = (options) => (options.client ?? client).delete({
|
|
1458
1458
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1459
1459
|
url: "/api/0/organizations/{organization_id_or_slug}/workflows/",
|
|
1460
1460
|
...options
|
|
1461
1461
|
});
|
|
1462
|
-
var
|
|
1462
|
+
var listOrganizationWorkflows = (options) => (options.client ?? client).get({
|
|
1463
1463
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1464
1464
|
url: "/api/0/organizations/{organization_id_or_slug}/workflows/",
|
|
1465
1465
|
...options
|
|
1466
1466
|
});
|
|
1467
|
-
var
|
|
1467
|
+
var createOrganizationWorkflow = (options) => (options.client ?? client).post({
|
|
1468
1468
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1469
1469
|
url: "/api/0/organizations/{organization_id_or_slug}/workflows/",
|
|
1470
1470
|
...options,
|
|
@@ -1473,7 +1473,7 @@ var createAnAlertForAnOrganization = (options) => (options.client ?? client).pos
|
|
|
1473
1473
|
...options.headers
|
|
1474
1474
|
}
|
|
1475
1475
|
});
|
|
1476
|
-
var
|
|
1476
|
+
var updateOrganizationWorkflows = (options) => (options.client ?? client).put({
|
|
1477
1477
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1478
1478
|
url: "/api/0/organizations/{organization_id_or_slug}/workflows/",
|
|
1479
1479
|
...options,
|
|
@@ -1482,17 +1482,17 @@ var mutateAnOrganization_sAlerts = (options) => (options.client ?? client).put({
|
|
|
1482
1482
|
...options.headers
|
|
1483
1483
|
}
|
|
1484
1484
|
});
|
|
1485
|
-
var
|
|
1485
|
+
var deleteOrganizationWorkflow = (options) => (options.client ?? client).delete({
|
|
1486
1486
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1487
1487
|
url: "/api/0/organizations/{organization_id_or_slug}/workflows/{workflow_id}/",
|
|
1488
1488
|
...options
|
|
1489
1489
|
});
|
|
1490
|
-
var
|
|
1490
|
+
var getOrganizationWorkflow = (options) => (options.client ?? client).get({
|
|
1491
1491
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1492
1492
|
url: "/api/0/organizations/{organization_id_or_slug}/workflows/{workflow_id}/",
|
|
1493
1493
|
...options
|
|
1494
1494
|
});
|
|
1495
|
-
var
|
|
1495
|
+
var updateOrganizationWorkflow = (options) => (options.client ?? client).put({
|
|
1496
1496
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1497
1497
|
url: "/api/0/organizations/{organization_id_or_slug}/workflows/{workflow_id}/",
|
|
1498
1498
|
...options,
|
|
@@ -1501,17 +1501,17 @@ var updateAnAlertById = (options) => (options.client ?? client).put({
|
|
|
1501
1501
|
...options.headers
|
|
1502
1502
|
}
|
|
1503
1503
|
});
|
|
1504
|
-
var
|
|
1504
|
+
var deleteProject = (options) => (options.client ?? client).delete({
|
|
1505
1505
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1506
1506
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/",
|
|
1507
1507
|
...options
|
|
1508
1508
|
});
|
|
1509
|
-
var
|
|
1509
|
+
var getProject = (options) => (options.client ?? client).get({
|
|
1510
1510
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1511
1511
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/",
|
|
1512
1512
|
...options
|
|
1513
1513
|
});
|
|
1514
|
-
var
|
|
1514
|
+
var updateProject = (options) => (options.client ?? client).put({
|
|
1515
1515
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1516
1516
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/",
|
|
1517
1517
|
...options,
|
|
@@ -1520,17 +1520,17 @@ var updateAProject = (options) => (options.client ?? client).put({
|
|
|
1520
1520
|
...options.headers
|
|
1521
1521
|
}
|
|
1522
1522
|
});
|
|
1523
|
-
var
|
|
1523
|
+
var listProjectEnvironments = (options) => (options.client ?? client).get({
|
|
1524
1524
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1525
1525
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/environments/",
|
|
1526
1526
|
...options
|
|
1527
1527
|
});
|
|
1528
|
-
var
|
|
1528
|
+
var getProjectEnvironment = (options) => (options.client ?? client).get({
|
|
1529
1529
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1530
1530
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/environments/{environment}/",
|
|
1531
1531
|
...options
|
|
1532
1532
|
});
|
|
1533
|
-
var
|
|
1533
|
+
var updateProjectEnvironment = (options) => (options.client ?? client).put({
|
|
1534
1534
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1535
1535
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/environments/{environment}/",
|
|
1536
1536
|
...options,
|
|
@@ -1539,42 +1539,42 @@ var updateAProjectEnvironment = (options) => (options.client ?? client).put({
|
|
|
1539
1539
|
...options.headers
|
|
1540
1540
|
}
|
|
1541
1541
|
});
|
|
1542
|
-
var
|
|
1542
|
+
var listProjectEvents = (options) => (options.client ?? client).get({
|
|
1543
1543
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1544
1544
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/events/",
|
|
1545
1545
|
...options
|
|
1546
1546
|
});
|
|
1547
|
-
var
|
|
1547
|
+
var getProjectEvent = (options) => (options.client ?? client).get({
|
|
1548
1548
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1549
1549
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/events/{event_id}/",
|
|
1550
1550
|
...options
|
|
1551
1551
|
});
|
|
1552
|
-
var
|
|
1552
|
+
var listProjectEventAttachments = (options) => (options.client ?? client).get({
|
|
1553
1553
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1554
1554
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/events/{event_id}/attachments/",
|
|
1555
1555
|
...options
|
|
1556
1556
|
});
|
|
1557
|
-
var
|
|
1557
|
+
var getProjectEventAttachment = (options) => (options.client ?? client).get({
|
|
1558
1558
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1559
1559
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/events/{event_id}/attachments/{attachment_id}/",
|
|
1560
1560
|
...options
|
|
1561
1561
|
});
|
|
1562
|
-
var
|
|
1562
|
+
var listProjectEventSourceMapDebug = (options) => (options.client ?? client).get({
|
|
1563
1563
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1564
1564
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/events/{event_id}/source-map-debug/",
|
|
1565
1565
|
...options
|
|
1566
1566
|
});
|
|
1567
|
-
var
|
|
1567
|
+
var listProjectFilesDsyms = (options) => (options.client ?? client).get({
|
|
1568
1568
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1569
1569
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/files/dsyms/",
|
|
1570
1570
|
...options
|
|
1571
1571
|
});
|
|
1572
|
-
var
|
|
1572
|
+
var listProjectFilters = (options) => (options.client ?? client).get({
|
|
1573
1573
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1574
1574
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/filters/",
|
|
1575
1575
|
...options
|
|
1576
1576
|
});
|
|
1577
|
-
var
|
|
1577
|
+
var updateProjectFilter = (options) => (options.client ?? client).put({
|
|
1578
1578
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1579
1579
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/filters/{filter_id}/",
|
|
1580
1580
|
...options,
|
|
@@ -1583,12 +1583,12 @@ var updateAnInboundDataFilter = (options) => (options.client ?? client).put({
|
|
|
1583
1583
|
...options.headers
|
|
1584
1584
|
}
|
|
1585
1585
|
});
|
|
1586
|
-
var
|
|
1586
|
+
var listProjectKeys = (options) => (options.client ?? client).get({
|
|
1587
1587
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1588
1588
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/keys/",
|
|
1589
1589
|
...options
|
|
1590
1590
|
});
|
|
1591
|
-
var
|
|
1591
|
+
var createProjectKey = (options) => (options.client ?? client).post({
|
|
1592
1592
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1593
1593
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/keys/",
|
|
1594
1594
|
...options,
|
|
@@ -1597,17 +1597,17 @@ var createANewClientKey = (options) => (options.client ?? client).post({
|
|
|
1597
1597
|
...options.headers
|
|
1598
1598
|
}
|
|
1599
1599
|
});
|
|
1600
|
-
var
|
|
1600
|
+
var deleteProjectKey = (options) => (options.client ?? client).delete({
|
|
1601
1601
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1602
1602
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/keys/{key_id}/",
|
|
1603
1603
|
...options
|
|
1604
1604
|
});
|
|
1605
|
-
var
|
|
1605
|
+
var getProjectKey = (options) => (options.client ?? client).get({
|
|
1606
1606
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1607
1607
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/keys/{key_id}/",
|
|
1608
1608
|
...options
|
|
1609
1609
|
});
|
|
1610
|
-
var
|
|
1610
|
+
var updateProjectKey = (options) => (options.client ?? client).put({
|
|
1611
1611
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1612
1612
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/keys/{key_id}/",
|
|
1613
1613
|
...options,
|
|
@@ -1616,22 +1616,22 @@ var updateAClientKey = (options) => (options.client ?? client).put({
|
|
|
1616
1616
|
...options.headers
|
|
1617
1617
|
}
|
|
1618
1618
|
});
|
|
1619
|
-
var
|
|
1619
|
+
var listProjectMembers = (options) => (options.client ?? client).get({
|
|
1620
1620
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1621
1621
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/members/",
|
|
1622
1622
|
...options
|
|
1623
1623
|
});
|
|
1624
|
-
var
|
|
1624
|
+
var deleteProjectMonitor = (options) => (options.client ?? client).delete({
|
|
1625
1625
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1626
1626
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/monitors/{monitor_id_or_slug}/",
|
|
1627
1627
|
...options
|
|
1628
1628
|
});
|
|
1629
|
-
var
|
|
1629
|
+
var getProjectMonitor = (options) => (options.client ?? client).get({
|
|
1630
1630
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1631
1631
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/monitors/{monitor_id_or_slug}/",
|
|
1632
1632
|
...options
|
|
1633
1633
|
});
|
|
1634
|
-
var
|
|
1634
|
+
var updateProjectMonitor = (options) => (options.client ?? client).put({
|
|
1635
1635
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1636
1636
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/monitors/{monitor_id_or_slug}/",
|
|
1637
1637
|
...options,
|
|
@@ -1640,17 +1640,17 @@ var updateAMonitorForAProject = (options) => (options.client ?? client).put({
|
|
|
1640
1640
|
...options.headers
|
|
1641
1641
|
}
|
|
1642
1642
|
});
|
|
1643
|
-
var
|
|
1643
|
+
var listProjectMonitorCheckins = (options) => (options.client ?? client).get({
|
|
1644
1644
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1645
1645
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/monitors/{monitor_id_or_slug}/checkins/",
|
|
1646
1646
|
...options
|
|
1647
1647
|
});
|
|
1648
|
-
var
|
|
1648
|
+
var listProjectOwnership = (options) => (options.client ?? client).get({
|
|
1649
1649
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1650
1650
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/ownership/",
|
|
1651
1651
|
...options
|
|
1652
1652
|
});
|
|
1653
|
-
var
|
|
1653
|
+
var updateProjectOwnership = (options) => (options.client ?? client).put({
|
|
1654
1654
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1655
1655
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/ownership/",
|
|
1656
1656
|
...options,
|
|
@@ -1659,67 +1659,67 @@ var updateOwnershipConfigurationForAProject = (options) => (options.client ?? cl
|
|
|
1659
1659
|
...options.headers
|
|
1660
1660
|
}
|
|
1661
1661
|
});
|
|
1662
|
-
var
|
|
1662
|
+
var listProjectPreprodSizeAnalysisStatusCheckRules = (options) => (options.client ?? client).get({
|
|
1663
1663
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1664
1664
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/preprod/size-analysis/status-check-rules/",
|
|
1665
1665
|
...options
|
|
1666
1666
|
});
|
|
1667
|
-
var
|
|
1667
|
+
var listProjectPreprodSnapshotsStatusCheckRules = (options) => (options.client ?? client).get({
|
|
1668
1668
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1669
1669
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/preprod/snapshots/status-check-rules/",
|
|
1670
1670
|
...options
|
|
1671
1671
|
});
|
|
1672
|
-
var
|
|
1672
|
+
var listProjectPreprodartifactsBuildDistributionLatest = (options) => (options.client ?? client).get({
|
|
1673
1673
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1674
1674
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/preprodartifacts/build-distribution/latest/",
|
|
1675
1675
|
...options
|
|
1676
1676
|
});
|
|
1677
|
-
var
|
|
1677
|
+
var createProjectPreprodartifactsSnapshot = (options) => (options.client ?? client).post({
|
|
1678
1678
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1679
1679
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/preprodartifacts/snapshots/",
|
|
1680
1680
|
...options
|
|
1681
1681
|
});
|
|
1682
|
-
var
|
|
1682
|
+
var getProjectProfilingProfile = (options) => (options.client ?? client).get({
|
|
1683
1683
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1684
1684
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/profiling/profiles/{profile_id}/",
|
|
1685
1685
|
...options
|
|
1686
1686
|
});
|
|
1687
|
-
var
|
|
1687
|
+
var listProjectReleases = (options) => (options.client ?? client).get({
|
|
1688
1688
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1689
1689
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/",
|
|
1690
1690
|
...options
|
|
1691
1691
|
});
|
|
1692
|
-
var
|
|
1692
|
+
var deleteProjectReplay = (options) => (options.client ?? client).delete({
|
|
1693
1693
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1694
1694
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/replays/{replay_id}/",
|
|
1695
1695
|
...options
|
|
1696
1696
|
});
|
|
1697
|
-
var
|
|
1697
|
+
var listProjectReplayClicks = (options) => (options.client ?? client).get({
|
|
1698
1698
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1699
1699
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/replays/{replay_id}/clicks/",
|
|
1700
1700
|
...options
|
|
1701
1701
|
});
|
|
1702
|
-
var
|
|
1702
|
+
var listProjectReplayRecordingSegments = (options) => (options.client ?? client).get({
|
|
1703
1703
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1704
1704
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/replays/{replay_id}/recording-segments/",
|
|
1705
1705
|
...options
|
|
1706
1706
|
});
|
|
1707
|
-
var
|
|
1707
|
+
var getProjectReplayRecordingSegment = (options) => (options.client ?? client).get({
|
|
1708
1708
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1709
1709
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/replays/{replay_id}/recording-segments/{segment_id}/",
|
|
1710
1710
|
...options
|
|
1711
1711
|
});
|
|
1712
|
-
var
|
|
1712
|
+
var listProjectReplayViewedBy = (options) => (options.client ?? client).get({
|
|
1713
1713
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1714
1714
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/replays/{replay_id}/viewed-by/",
|
|
1715
1715
|
...options
|
|
1716
1716
|
});
|
|
1717
|
-
var
|
|
1717
|
+
var listProjectReplaysJobsDelete = (options) => (options.client ?? client).get({
|
|
1718
1718
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1719
1719
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/replays/jobs/delete/",
|
|
1720
1720
|
...options
|
|
1721
1721
|
});
|
|
1722
|
-
var
|
|
1722
|
+
var createProjectReplaysJobsDelete = (options) => (options.client ?? client).post({
|
|
1723
1723
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1724
1724
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/replays/jobs/delete/",
|
|
1725
1725
|
...options,
|
|
@@ -1728,12 +1728,12 @@ var createReplayBatchDeletionJob = (options) => (options.client ?? client).post(
|
|
|
1728
1728
|
...options.headers
|
|
1729
1729
|
}
|
|
1730
1730
|
});
|
|
1731
|
-
var
|
|
1731
|
+
var getProjectReplaysJobsDelete = (options) => (options.client ?? client).get({
|
|
1732
1732
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1733
1733
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/replays/jobs/delete/{job_id}/",
|
|
1734
1734
|
...options
|
|
1735
1735
|
});
|
|
1736
|
-
var
|
|
1736
|
+
var createProjectRepo = (options) => (options.client ?? client).post({
|
|
1737
1737
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1738
1738
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/repo/",
|
|
1739
1739
|
...options,
|
|
@@ -1742,22 +1742,22 @@ var linkARepositoryToAProject = (options) => (options.client ?? client).post({
|
|
|
1742
1742
|
...options.headers
|
|
1743
1743
|
}
|
|
1744
1744
|
});
|
|
1745
|
-
var
|
|
1745
|
+
var listProjectStats = (options) => (options.client ?? client).get({
|
|
1746
1746
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1747
1747
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/stats/",
|
|
1748
1748
|
...options
|
|
1749
1749
|
});
|
|
1750
|
-
var
|
|
1750
|
+
var deleteProjectSymbolSources = (options) => (options.client ?? client).delete({
|
|
1751
1751
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1752
1752
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/symbol-sources/",
|
|
1753
1753
|
...options
|
|
1754
1754
|
});
|
|
1755
|
-
var
|
|
1755
|
+
var listProjectSymbolSources = (options) => (options.client ?? client).get({
|
|
1756
1756
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1757
1757
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/symbol-sources/",
|
|
1758
1758
|
...options
|
|
1759
1759
|
});
|
|
1760
|
-
var
|
|
1760
|
+
var createProjectSymbolSource = (options) => (options.client ?? client).post({
|
|
1761
1761
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1762
1762
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/symbol-sources/",
|
|
1763
1763
|
...options,
|
|
@@ -1766,7 +1766,7 @@ var addASymbolSourceToAProject = (options) => (options.client ?? client).post({
|
|
|
1766
1766
|
...options.headers
|
|
1767
1767
|
}
|
|
1768
1768
|
});
|
|
1769
|
-
var
|
|
1769
|
+
var updateProjectSymbolSources = (options) => (options.client ?? client).put({
|
|
1770
1770
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1771
1771
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/symbol-sources/",
|
|
1772
1772
|
...options,
|
|
@@ -1775,42 +1775,42 @@ var updateAProject_sSymbolSource = (options) => (options.client ?? client).put({
|
|
|
1775
1775
|
...options.headers
|
|
1776
1776
|
}
|
|
1777
1777
|
});
|
|
1778
|
-
var
|
|
1778
|
+
var listProjectTeams = (options) => (options.client ?? client).get({
|
|
1779
1779
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1780
1780
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/teams/",
|
|
1781
1781
|
...options
|
|
1782
1782
|
});
|
|
1783
|
-
var
|
|
1783
|
+
var deleteProjectTeam = (options) => (options.client ?? client).delete({
|
|
1784
1784
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1785
1785
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/teams/{team_id_or_slug}/",
|
|
1786
1786
|
...options
|
|
1787
1787
|
});
|
|
1788
|
-
var
|
|
1788
|
+
var createProjectTeam = (options) => (options.client ?? client).post({
|
|
1789
1789
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1790
1790
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/teams/{team_id_or_slug}/",
|
|
1791
1791
|
...options
|
|
1792
1792
|
});
|
|
1793
|
-
var
|
|
1793
|
+
var listProjectUsers = (options) => (options.client ?? client).get({
|
|
1794
1794
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1795
1795
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/users/",
|
|
1796
1796
|
...options
|
|
1797
1797
|
});
|
|
1798
|
-
var
|
|
1798
|
+
var listSeerModels = (options) => (options?.client ?? client).get({
|
|
1799
1799
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1800
1800
|
url: "/api/0/seer/models/",
|
|
1801
1801
|
...options
|
|
1802
1802
|
});
|
|
1803
|
-
var
|
|
1803
|
+
var deleteSentryApp = (options) => (options.client ?? client).delete({
|
|
1804
1804
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1805
1805
|
url: "/api/0/sentry-apps/{sentry_app_id_or_slug}/",
|
|
1806
1806
|
...options
|
|
1807
1807
|
});
|
|
1808
|
-
var
|
|
1808
|
+
var getSentryApp = (options) => (options.client ?? client).get({
|
|
1809
1809
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1810
1810
|
url: "/api/0/sentry-apps/{sentry_app_id_or_slug}/",
|
|
1811
1811
|
...options
|
|
1812
1812
|
});
|
|
1813
|
-
var
|
|
1813
|
+
var updateSentryApp = (options) => (options.client ?? client).put({
|
|
1814
1814
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1815
1815
|
url: "/api/0/sentry-apps/{sentry_app_id_or_slug}/",
|
|
1816
1816
|
...options,
|
|
@@ -1819,17 +1819,17 @@ var updateAnExistingCustomIntegration = (options) => (options.client ?? client).
|
|
|
1819
1819
|
...options.headers
|
|
1820
1820
|
}
|
|
1821
1821
|
});
|
|
1822
|
-
var
|
|
1822
|
+
var deleteTeam = (options) => (options.client ?? client).delete({
|
|
1823
1823
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1824
1824
|
url: "/api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/",
|
|
1825
1825
|
...options
|
|
1826
1826
|
});
|
|
1827
|
-
var
|
|
1827
|
+
var getTeam = (options) => (options.client ?? client).get({
|
|
1828
1828
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1829
1829
|
url: "/api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/",
|
|
1830
1830
|
...options
|
|
1831
1831
|
});
|
|
1832
|
-
var
|
|
1832
|
+
var updateTeam = (options) => (options.client ?? client).put({
|
|
1833
1833
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1834
1834
|
url: "/api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/",
|
|
1835
1835
|
...options,
|
|
@@ -1838,7 +1838,7 @@ var updateATeam = (options) => (options.client ?? client).put({
|
|
|
1838
1838
|
...options.headers
|
|
1839
1839
|
}
|
|
1840
1840
|
});
|
|
1841
|
-
var
|
|
1841
|
+
var createTeamExternalTeam = (options) => (options.client ?? client).post({
|
|
1842
1842
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1843
1843
|
url: "/api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/external-teams/",
|
|
1844
1844
|
...options,
|
|
@@ -1847,12 +1847,12 @@ var createAnExternalTeam = (options) => (options.client ?? client).post({
|
|
|
1847
1847
|
...options.headers
|
|
1848
1848
|
}
|
|
1849
1849
|
});
|
|
1850
|
-
var
|
|
1850
|
+
var deleteTeamExternalTeam = (options) => (options.client ?? client).delete({
|
|
1851
1851
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1852
1852
|
url: "/api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/external-teams/{external_team_id}/",
|
|
1853
1853
|
...options
|
|
1854
1854
|
});
|
|
1855
|
-
var
|
|
1855
|
+
var updateTeamExternalTeam = (options) => (options.client ?? client).put({
|
|
1856
1856
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1857
1857
|
url: "/api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/external-teams/{external_team_id}/",
|
|
1858
1858
|
...options,
|
|
@@ -1861,17 +1861,17 @@ var updateAnExternalTeam = (options) => (options.client ?? client).put({
|
|
|
1861
1861
|
...options.headers
|
|
1862
1862
|
}
|
|
1863
1863
|
});
|
|
1864
|
-
var
|
|
1864
|
+
var listTeamMembers = (options) => (options.client ?? client).get({
|
|
1865
1865
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1866
1866
|
url: "/api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/members/",
|
|
1867
1867
|
...options
|
|
1868
1868
|
});
|
|
1869
|
-
var
|
|
1869
|
+
var listTeamProjects = (options) => (options.client ?? client).get({
|
|
1870
1870
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1871
1871
|
url: "/api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/projects/",
|
|
1872
1872
|
...options
|
|
1873
1873
|
});
|
|
1874
|
-
var
|
|
1874
|
+
var createTeamProject = (options) => (options.client ?? client).post({
|
|
1875
1875
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1876
1876
|
url: "/api/0/teams/{organization_id_or_slug}/{team_id_or_slug}/projects/",
|
|
1877
1877
|
...options,
|
|
@@ -1880,17 +1880,17 @@ var createANewProject = (options) => (options.client ?? client).post({
|
|
|
1880
1880
|
...options.headers
|
|
1881
1881
|
}
|
|
1882
1882
|
});
|
|
1883
|
-
var
|
|
1883
|
+
var listProjectTagValues = (options) => (options.client ?? client).get({
|
|
1884
1884
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1885
1885
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/tags/{key}/values/",
|
|
1886
1886
|
...options
|
|
1887
1887
|
});
|
|
1888
|
-
var
|
|
1888
|
+
var listProjectUserFeedback = (options) => (options.client ?? client).get({
|
|
1889
1889
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1890
1890
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/user-feedback/",
|
|
1891
1891
|
...options
|
|
1892
1892
|
});
|
|
1893
|
-
var
|
|
1893
|
+
var createProjectUserFeedback = (options) => (options.client ?? client).post({
|
|
1894
1894
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1895
1895
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/user-feedback/",
|
|
1896
1896
|
...options,
|
|
@@ -1899,12 +1899,12 @@ var submitUserFeedback = (options) => (options.client ?? client).post({
|
|
|
1899
1899
|
...options.headers
|
|
1900
1900
|
}
|
|
1901
1901
|
});
|
|
1902
|
-
var
|
|
1902
|
+
var listProjectHooks = (options) => (options.client ?? client).get({
|
|
1903
1903
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1904
1904
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/hooks/",
|
|
1905
1905
|
...options
|
|
1906
1906
|
});
|
|
1907
|
-
var
|
|
1907
|
+
var createProjectHook = (options) => (options.client ?? client).post({
|
|
1908
1908
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1909
1909
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/hooks/",
|
|
1910
1910
|
...options,
|
|
@@ -1913,17 +1913,17 @@ var registerANewServiceHook = (options) => (options.client ?? client).post({
|
|
|
1913
1913
|
...options.headers
|
|
1914
1914
|
}
|
|
1915
1915
|
});
|
|
1916
|
-
var
|
|
1916
|
+
var deleteProjectHook = (options) => (options.client ?? client).delete({
|
|
1917
1917
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1918
1918
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/hooks/{hook_id}/",
|
|
1919
1919
|
...options
|
|
1920
1920
|
});
|
|
1921
|
-
var
|
|
1921
|
+
var getProjectHook = (options) => (options.client ?? client).get({
|
|
1922
1922
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1923
1923
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/hooks/{hook_id}/",
|
|
1924
1924
|
...options
|
|
1925
1925
|
});
|
|
1926
|
-
var
|
|
1926
|
+
var updateProjectHook = (options) => (options.client ?? client).put({
|
|
1927
1927
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1928
1928
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/hooks/{hook_id}/",
|
|
1929
1929
|
...options,
|
|
@@ -1932,17 +1932,17 @@ var updateAServiceHook = (options) => (options.client ?? client).put({
|
|
|
1932
1932
|
...options.headers
|
|
1933
1933
|
}
|
|
1934
1934
|
});
|
|
1935
|
-
var
|
|
1935
|
+
var deleteProjectIssues = (options) => (options.client ?? client).delete({
|
|
1936
1936
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1937
1937
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/issues/",
|
|
1938
1938
|
...options
|
|
1939
1939
|
});
|
|
1940
|
-
var
|
|
1940
|
+
var listProjectIssues = (options) => (options.client ?? client).get({
|
|
1941
1941
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1942
1942
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/issues/",
|
|
1943
1943
|
...options
|
|
1944
1944
|
});
|
|
1945
|
-
var
|
|
1945
|
+
var updateProjectIssues = (options) => (options.client ?? client).put({
|
|
1946
1946
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1947
1947
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/issues/",
|
|
1948
1948
|
...options,
|
|
@@ -1951,17 +1951,17 @@ var bulkMutateAListOfIssues = (options) => (options.client ?? client).put({
|
|
|
1951
1951
|
...options.headers
|
|
1952
1952
|
}
|
|
1953
1953
|
});
|
|
1954
|
-
var
|
|
1954
|
+
var listOrganizationIssueTagValues = (options) => (options.client ?? client).get({
|
|
1955
1955
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1956
1956
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/tags/{key}/values/",
|
|
1957
1957
|
...options
|
|
1958
1958
|
});
|
|
1959
|
-
var
|
|
1959
|
+
var listOrganizationReleases = (options) => (options.client ?? client).get({
|
|
1960
1960
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1961
1961
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/",
|
|
1962
1962
|
...options
|
|
1963
1963
|
});
|
|
1964
|
-
var
|
|
1964
|
+
var createOrganizationRelease = (options) => (options.client ?? client).post({
|
|
1965
1965
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1966
1966
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/",
|
|
1967
1967
|
...options,
|
|
@@ -1970,12 +1970,12 @@ var createANewReleaseForAnOrganization = (options) => (options.client ?? client)
|
|
|
1970
1970
|
...options.headers
|
|
1971
1971
|
}
|
|
1972
1972
|
});
|
|
1973
|
-
var
|
|
1973
|
+
var listOrganizationReleaseFiles = (options) => (options.client ?? client).get({
|
|
1974
1974
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1975
1975
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/{version}/files/",
|
|
1976
1976
|
...options
|
|
1977
1977
|
});
|
|
1978
|
-
var
|
|
1978
|
+
var createOrganizationReleaseFile = (options) => (options.client ?? client).post({
|
|
1979
1979
|
...formDataBodySerializer,
|
|
1980
1980
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1981
1981
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/{version}/files/",
|
|
@@ -1985,12 +1985,12 @@ var uploadANewOrganizationReleaseFile = (options) => (options.client ?? client).
|
|
|
1985
1985
|
...options.headers
|
|
1986
1986
|
}
|
|
1987
1987
|
});
|
|
1988
|
-
var
|
|
1988
|
+
var listProjectReleaseFiles = (options) => (options.client ?? client).get({
|
|
1989
1989
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1990
1990
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/{version}/files/",
|
|
1991
1991
|
...options
|
|
1992
1992
|
});
|
|
1993
|
-
var
|
|
1993
|
+
var createProjectReleaseFile = (options) => (options.client ?? client).post({
|
|
1994
1994
|
...formDataBodySerializer,
|
|
1995
1995
|
security: [{ scheme: "bearer", type: "http" }],
|
|
1996
1996
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/{version}/files/",
|
|
@@ -2000,17 +2000,17 @@ var uploadANewProjectReleaseFile = (options) => (options.client ?? client).post(
|
|
|
2000
2000
|
...options.headers
|
|
2001
2001
|
}
|
|
2002
2002
|
});
|
|
2003
|
-
var
|
|
2003
|
+
var deleteOrganizationReleaseFile = (options) => (options.client ?? client).delete({
|
|
2004
2004
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2005
2005
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/{version}/files/{file_id}/",
|
|
2006
2006
|
...options
|
|
2007
2007
|
});
|
|
2008
|
-
var
|
|
2008
|
+
var getOrganizationReleaseFile = (options) => (options.client ?? client).get({
|
|
2009
2009
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2010
2010
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/{version}/files/{file_id}/",
|
|
2011
2011
|
...options
|
|
2012
2012
|
});
|
|
2013
|
-
var
|
|
2013
|
+
var updateOrganizationReleaseFile = (options) => (options.client ?? client).put({
|
|
2014
2014
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2015
2015
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/{version}/files/{file_id}/",
|
|
2016
2016
|
...options,
|
|
@@ -2019,17 +2019,17 @@ var updateAnOrganizationReleaseFile = (options) => (options.client ?? client).pu
|
|
|
2019
2019
|
...options.headers
|
|
2020
2020
|
}
|
|
2021
2021
|
});
|
|
2022
|
-
var
|
|
2022
|
+
var deleteProjectReleaseFile = (options) => (options.client ?? client).delete({
|
|
2023
2023
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2024
2024
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/{version}/files/{file_id}/",
|
|
2025
2025
|
...options
|
|
2026
2026
|
});
|
|
2027
|
-
var
|
|
2027
|
+
var getProjectReleaseFile = (options) => (options.client ?? client).get({
|
|
2028
2028
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2029
2029
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/{version}/files/{file_id}/",
|
|
2030
2030
|
...options
|
|
2031
2031
|
});
|
|
2032
|
-
var
|
|
2032
|
+
var updateProjectReleaseFile = (options) => (options.client ?? client).put({
|
|
2033
2033
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2034
2034
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/{version}/files/{file_id}/",
|
|
2035
2035
|
...options,
|
|
@@ -2038,27 +2038,27 @@ var updateAProjectReleaseFile = (options) => (options.client ?? client).put({
|
|
|
2038
2038
|
...options.headers
|
|
2039
2039
|
}
|
|
2040
2040
|
});
|
|
2041
|
-
var
|
|
2041
|
+
var listOrganizationReleaseCommits = (options) => (options.client ?? client).get({
|
|
2042
2042
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2043
2043
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/{version}/commits/",
|
|
2044
2044
|
...options
|
|
2045
2045
|
});
|
|
2046
|
-
var
|
|
2046
|
+
var listProjectReleaseCommits = (options) => (options.client ?? client).get({
|
|
2047
2047
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2048
2048
|
url: "/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/releases/{version}/commits/",
|
|
2049
2049
|
...options
|
|
2050
2050
|
});
|
|
2051
|
-
var
|
|
2051
|
+
var listOrganizationReleaseCommitfiles = (options) => (options.client ?? client).get({
|
|
2052
2052
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2053
2053
|
url: "/api/0/organizations/{organization_id_or_slug}/releases/{version}/commitfiles/",
|
|
2054
2054
|
...options
|
|
2055
2055
|
});
|
|
2056
|
-
var
|
|
2056
|
+
var listOrganizationSentryAppInstallations = (options) => (options.client ?? client).get({
|
|
2057
2057
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2058
2058
|
url: "/api/0/organizations/{organization_id_or_slug}/sentry-app-installations/",
|
|
2059
2059
|
...options
|
|
2060
2060
|
});
|
|
2061
|
-
var
|
|
2061
|
+
var createSentryAppInstallationExternalIssue = (options) => (options.client ?? client).post({
|
|
2062
2062
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2063
2063
|
url: "/api/0/sentry-app-installations/{uuid}/external-issues/",
|
|
2064
2064
|
...options,
|
|
@@ -2067,12 +2067,12 @@ var createOrUpdateAnExternalIssue = (options) => (options.client ?? client).post
|
|
|
2067
2067
|
...options.headers
|
|
2068
2068
|
}
|
|
2069
2069
|
});
|
|
2070
|
-
var
|
|
2070
|
+
var deleteSentryAppInstallationExternalIssue = (options) => (options.client ?? client).delete({
|
|
2071
2071
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2072
2072
|
url: "/api/0/sentry-app-installations/{uuid}/external-issues/{external_issue_id}/",
|
|
2073
2073
|
...options
|
|
2074
2074
|
});
|
|
2075
|
-
var
|
|
2075
|
+
var deleteOrganizationSpikeProtections = (options) => (options.client ?? client).delete({
|
|
2076
2076
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2077
2077
|
url: "/api/0/organizations/{organization_id_or_slug}/spike-protections/",
|
|
2078
2078
|
...options,
|
|
@@ -2081,7 +2081,7 @@ var disableSpikeProtection = (options) => (options.client ?? client).delete({
|
|
|
2081
2081
|
...options.headers
|
|
2082
2082
|
}
|
|
2083
2083
|
});
|
|
2084
|
-
var
|
|
2084
|
+
var createOrganizationSpikeProtection = (options) => (options.client ?? client).post({
|
|
2085
2085
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2086
2086
|
url: "/api/0/organizations/{organization_id_or_slug}/spike-protections/",
|
|
2087
2087
|
...options,
|
|
@@ -2090,17 +2090,17 @@ var enableSpikeProtection = (options) => (options.client ?? client).post({
|
|
|
2090
2090
|
...options.headers
|
|
2091
2091
|
}
|
|
2092
2092
|
});
|
|
2093
|
-
var
|
|
2093
|
+
var deleteOrganizationIssue = (options) => (options.client ?? client).delete({
|
|
2094
2094
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2095
2095
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/",
|
|
2096
2096
|
...options
|
|
2097
2097
|
});
|
|
2098
|
-
var
|
|
2098
|
+
var getOrganizationIssue = (options) => (options.client ?? client).get({
|
|
2099
2099
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2100
2100
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/",
|
|
2101
2101
|
...options
|
|
2102
2102
|
});
|
|
2103
|
-
var
|
|
2103
|
+
var updateOrganizationIssue = (options) => (options.client ?? client).put({
|
|
2104
2104
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2105
2105
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/",
|
|
2106
2106
|
...options,
|
|
@@ -2109,12 +2109,12 @@ var updateAnIssue = (options) => (options.client ?? client).put({
|
|
|
2109
2109
|
...options.headers
|
|
2110
2110
|
}
|
|
2111
2111
|
});
|
|
2112
|
-
var
|
|
2112
|
+
var listOrganizationIssueAutofix = (options) => (options.client ?? client).get({
|
|
2113
2113
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2114
2114
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/autofix/",
|
|
2115
2115
|
...options
|
|
2116
2116
|
});
|
|
2117
|
-
var
|
|
2117
|
+
var createOrganizationIssueAutofix = (options) => (options.client ?? client).post({
|
|
2118
2118
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2119
2119
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/autofix/",
|
|
2120
2120
|
...options,
|
|
@@ -2123,27 +2123,27 @@ var startSeerIssueFix = (options) => (options.client ?? client).post({
|
|
|
2123
2123
|
...options.headers
|
|
2124
2124
|
}
|
|
2125
2125
|
});
|
|
2126
|
-
var
|
|
2126
|
+
var listOrganizationIssueEvents = (options) => (options.client ?? client).get({
|
|
2127
2127
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2128
2128
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/events/",
|
|
2129
2129
|
...options
|
|
2130
2130
|
});
|
|
2131
|
-
var
|
|
2131
|
+
var getOrganizationIssueEvent = (options) => (options.client ?? client).get({
|
|
2132
2132
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2133
2133
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/events/{event_id}/",
|
|
2134
2134
|
...options
|
|
2135
2135
|
});
|
|
2136
|
-
var
|
|
2136
|
+
var listOrganizationIssueExternalIssues = (options) => (options.client ?? client).get({
|
|
2137
2137
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2138
2138
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/external-issues/",
|
|
2139
2139
|
...options
|
|
2140
2140
|
});
|
|
2141
|
-
var
|
|
2141
|
+
var listOrganizationIssueHashes = (options) => (options.client ?? client).get({
|
|
2142
2142
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2143
2143
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/hashes/",
|
|
2144
2144
|
...options
|
|
2145
2145
|
});
|
|
2146
|
-
var
|
|
2146
|
+
var getOrganizationIssueTag = (options) => (options.client ?? client).get({
|
|
2147
2147
|
security: [{ scheme: "bearer", type: "http" }],
|
|
2148
2148
|
url: "/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/tags/{key}/",
|
|
2149
2149
|
...options
|
|
@@ -2272,463 +2272,463 @@ var paginateUpTo = async (fetcher, options, context) => {
|
|
|
2272
2272
|
return { data: allItems.slice(0, options.limit) };
|
|
2273
2273
|
};
|
|
2274
2274
|
// src/pagination.gen.ts
|
|
2275
|
-
var
|
|
2276
|
-
var
|
|
2277
|
-
var
|
|
2278
|
-
var
|
|
2279
|
-
var
|
|
2280
|
-
var
|
|
2281
|
-
var
|
|
2282
|
-
var
|
|
2283
|
-
var
|
|
2284
|
-
var
|
|
2285
|
-
var
|
|
2286
|
-
var
|
|
2287
|
-
var
|
|
2288
|
-
var
|
|
2289
|
-
var
|
|
2290
|
-
var
|
|
2291
|
-
var
|
|
2292
|
-
var
|
|
2293
|
-
var
|
|
2294
|
-
var
|
|
2295
|
-
var
|
|
2296
|
-
var
|
|
2297
|
-
var
|
|
2298
|
-
var
|
|
2299
|
-
var
|
|
2300
|
-
var
|
|
2301
|
-
var
|
|
2302
|
-
var
|
|
2303
|
-
var
|
|
2304
|
-
var
|
|
2305
|
-
var
|
|
2306
|
-
var
|
|
2307
|
-
var
|
|
2308
|
-
var
|
|
2309
|
-
var
|
|
2310
|
-
var
|
|
2311
|
-
var
|
|
2312
|
-
var
|
|
2313
|
-
var
|
|
2314
|
-
var
|
|
2315
|
-
var
|
|
2316
|
-
var
|
|
2317
|
-
var
|
|
2318
|
-
var
|
|
2319
|
-
var
|
|
2320
|
-
var
|
|
2321
|
-
var
|
|
2322
|
-
var
|
|
2323
|
-
var
|
|
2324
|
-
var
|
|
2325
|
-
var
|
|
2326
|
-
var
|
|
2327
|
-
var
|
|
2328
|
-
var
|
|
2329
|
-
var
|
|
2330
|
-
var
|
|
2331
|
-
var
|
|
2332
|
-
var
|
|
2333
|
-
var
|
|
2334
|
-
var
|
|
2335
|
-
var
|
|
2336
|
-
var
|
|
2337
|
-
var
|
|
2338
|
-
var
|
|
2339
|
-
var
|
|
2340
|
-
var
|
|
2341
|
-
var
|
|
2342
|
-
var
|
|
2343
|
-
var
|
|
2344
|
-
var
|
|
2345
|
-
var
|
|
2346
|
-
var
|
|
2347
|
-
var
|
|
2348
|
-
var
|
|
2349
|
-
var
|
|
2350
|
-
var
|
|
2351
|
-
var
|
|
2352
|
-
var
|
|
2353
|
-
var
|
|
2354
|
-
var
|
|
2355
|
-
var
|
|
2356
|
-
var
|
|
2357
|
-
var
|
|
2358
|
-
var
|
|
2359
|
-
var
|
|
2360
|
-
var
|
|
2361
|
-
var
|
|
2362
|
-
var
|
|
2363
|
-
var
|
|
2364
|
-
var
|
|
2365
|
-
var
|
|
2366
|
-
var
|
|
2367
|
-
var
|
|
2368
|
-
var
|
|
2369
|
-
var
|
|
2370
|
-
var
|
|
2371
|
-
var
|
|
2372
|
-
var
|
|
2373
|
-
var
|
|
2374
|
-
var
|
|
2375
|
-
var
|
|
2376
|
-
var
|
|
2377
|
-
var
|
|
2378
|
-
var
|
|
2379
|
-
var
|
|
2380
|
-
var
|
|
2381
|
-
var
|
|
2382
|
-
var
|
|
2383
|
-
var
|
|
2384
|
-
var
|
|
2385
|
-
var
|
|
2386
|
-
var
|
|
2387
|
-
var
|
|
2388
|
-
var
|
|
2389
|
-
var
|
|
2390
|
-
var
|
|
2391
|
-
var
|
|
2392
|
-
var
|
|
2275
|
+
var fetchPage_getOrganizationReplay = (options, cursor) => fetchPage((c) => getOrganizationReplay(_withCursor(options, c)), "getOrganizationReplay", cursor);
|
|
2276
|
+
var fetchPage_listOrganizationDashboards = (options, cursor) => fetchPage((c) => listOrganizationDashboards(_withCursor(options, c)), "listOrganizationDashboards", cursor);
|
|
2277
|
+
var paginateAll_listOrganizationDashboards = (options, paginateOptions) => paginateAll((c) => listOrganizationDashboards(_withCursor(options, c)), "listOrganizationDashboards", paginateOptions);
|
|
2278
|
+
var paginateUpTo_listOrganizationDashboards = (options, paginateOptions) => paginateUpTo((c) => listOrganizationDashboards(_withCursor(options, c)), paginateOptions, "listOrganizationDashboards");
|
|
2279
|
+
var fetchPage_listOrganizationDiscoverSaved = (options, cursor) => fetchPage((c) => listOrganizationDiscoverSaved(_withCursor(options, c)), "listOrganizationDiscoverSaved", cursor);
|
|
2280
|
+
var paginateAll_listOrganizationDiscoverSaved = (options, paginateOptions) => paginateAll((c) => listOrganizationDiscoverSaved(_withCursor(options, c)), "listOrganizationDiscoverSaved", paginateOptions);
|
|
2281
|
+
var paginateUpTo_listOrganizationDiscoverSaved = (options, paginateOptions) => paginateUpTo((c) => listOrganizationDiscoverSaved(_withCursor(options, c)), paginateOptions, "listOrganizationDiscoverSaved");
|
|
2282
|
+
var fetchPage_listOrganizationEvents = (options, cursor) => fetchPage((c) => listOrganizationEvents(_withCursor(options, c)), "listOrganizationEvents", cursor);
|
|
2283
|
+
var fetchPage_listOrganizationIntegrations = (options, cursor) => fetchPage((c) => listOrganizationIntegrations(_withCursor(options, c)), "listOrganizationIntegrations", cursor);
|
|
2284
|
+
var paginateAll_listOrganizationIntegrations = (options, paginateOptions) => paginateAll((c) => listOrganizationIntegrations(_withCursor(options, c)), "listOrganizationIntegrations", paginateOptions);
|
|
2285
|
+
var paginateUpTo_listOrganizationIntegrations = (options, paginateOptions) => paginateUpTo((c) => listOrganizationIntegrations(_withCursor(options, c)), paginateOptions, "listOrganizationIntegrations");
|
|
2286
|
+
var fetchPage_listOrganizationIssueEvents = (options, cursor) => fetchPage((c) => listOrganizationIssueEvents(_withCursor(options, c)), "listOrganizationIssueEvents", cursor);
|
|
2287
|
+
var paginateAll_listOrganizationIssueEvents = (options, paginateOptions) => paginateAll((c) => listOrganizationIssueEvents(_withCursor(options, c)), "listOrganizationIssueEvents", paginateOptions);
|
|
2288
|
+
var paginateUpTo_listOrganizationIssueEvents = (options, paginateOptions) => paginateUpTo((c) => listOrganizationIssueEvents(_withCursor(options, c)), paginateOptions, "listOrganizationIssueEvents");
|
|
2289
|
+
var fetchPage_listOrganizationIssueHashes = (options, cursor) => fetchPage((c) => listOrganizationIssueHashes(_withCursor(options, c)), "listOrganizationIssueHashes", cursor);
|
|
2290
|
+
var paginateAll_listOrganizationIssueHashes = (options, paginateOptions) => paginateAll((c) => listOrganizationIssueHashes(_withCursor(options, c)), "listOrganizationIssueHashes", paginateOptions);
|
|
2291
|
+
var paginateUpTo_listOrganizationIssueHashes = (options, paginateOptions) => paginateUpTo((c) => listOrganizationIssueHashes(_withCursor(options, c)), paginateOptions, "listOrganizationIssueHashes");
|
|
2292
|
+
var fetchPage_listOrganizationIssues = (options, cursor) => fetchPage((c) => listOrganizationIssues(_withCursor(options, c)), "listOrganizationIssues", cursor);
|
|
2293
|
+
var paginateAll_listOrganizationIssues = (options, paginateOptions) => paginateAll((c) => listOrganizationIssues(_withCursor(options, c)), "listOrganizationIssues", paginateOptions);
|
|
2294
|
+
var paginateUpTo_listOrganizationIssues = (options, paginateOptions) => paginateUpTo((c) => listOrganizationIssues(_withCursor(options, c)), paginateOptions, "listOrganizationIssues");
|
|
2295
|
+
var fetchPage_listOrganizationMembers = (options, cursor) => fetchPage((c) => listOrganizationMembers(_withCursor(options, c)), "listOrganizationMembers", cursor);
|
|
2296
|
+
var paginateAll_listOrganizationMembers = (options, paginateOptions) => paginateAll((c) => listOrganizationMembers(_withCursor(options, c)), "listOrganizationMembers", paginateOptions);
|
|
2297
|
+
var paginateUpTo_listOrganizationMembers = (options, paginateOptions) => paginateUpTo((c) => listOrganizationMembers(_withCursor(options, c)), paginateOptions, "listOrganizationMembers");
|
|
2298
|
+
var fetchPage_listOrganizationMonitorCheckins = (options, cursor) => fetchPage((c) => listOrganizationMonitorCheckins(_withCursor(options, c)), "listOrganizationMonitorCheckins", cursor);
|
|
2299
|
+
var paginateAll_listOrganizationMonitorCheckins = (options, paginateOptions) => paginateAll((c) => listOrganizationMonitorCheckins(_withCursor(options, c)), "listOrganizationMonitorCheckins", paginateOptions);
|
|
2300
|
+
var paginateUpTo_listOrganizationMonitorCheckins = (options, paginateOptions) => paginateUpTo((c) => listOrganizationMonitorCheckins(_withCursor(options, c)), paginateOptions, "listOrganizationMonitorCheckins");
|
|
2301
|
+
var fetchPage_listOrganizationMonitors = (options, cursor) => fetchPage((c) => listOrganizationMonitors(_withCursor(options, c)), "listOrganizationMonitors", cursor);
|
|
2302
|
+
var paginateAll_listOrganizationMonitors = (options, paginateOptions) => paginateAll((c) => listOrganizationMonitors(_withCursor(options, c)), "listOrganizationMonitors", paginateOptions);
|
|
2303
|
+
var paginateUpTo_listOrganizationMonitors = (options, paginateOptions) => paginateUpTo((c) => listOrganizationMonitors(_withCursor(options, c)), paginateOptions, "listOrganizationMonitors");
|
|
2304
|
+
var fetchPage_listOrganizationProjectKeys = (options, cursor) => fetchPage((c) => listOrganizationProjectKeys(_withCursor(options, c)), "listOrganizationProjectKeys", cursor);
|
|
2305
|
+
var paginateAll_listOrganizationProjectKeys = (options, paginateOptions) => paginateAll((c) => listOrganizationProjectKeys(_withCursor(options, c)), "listOrganizationProjectKeys", paginateOptions);
|
|
2306
|
+
var paginateUpTo_listOrganizationProjectKeys = (options, paginateOptions) => paginateUpTo((c) => listOrganizationProjectKeys(_withCursor(options, c)), paginateOptions, "listOrganizationProjectKeys");
|
|
2307
|
+
var fetchPage_listOrganizationProjects = (options, cursor) => fetchPage((c) => listOrganizationProjects(_withCursor(options, c)), "listOrganizationProjects", cursor);
|
|
2308
|
+
var paginateAll_listOrganizationProjects = (options, paginateOptions) => paginateAll((c) => listOrganizationProjects(_withCursor(options, c)), "listOrganizationProjects", paginateOptions);
|
|
2309
|
+
var paginateUpTo_listOrganizationProjects = (options, paginateOptions) => paginateUpTo((c) => listOrganizationProjects(_withCursor(options, c)), paginateOptions, "listOrganizationProjects");
|
|
2310
|
+
var fetchPage_listOrganizationReleaseCommits = (options, cursor) => fetchPage((c) => listOrganizationReleaseCommits(_withCursor(options, c)), "listOrganizationReleaseCommits", cursor);
|
|
2311
|
+
var paginateAll_listOrganizationReleaseCommits = (options, paginateOptions) => paginateAll((c) => listOrganizationReleaseCommits(_withCursor(options, c)), "listOrganizationReleaseCommits", paginateOptions);
|
|
2312
|
+
var paginateUpTo_listOrganizationReleaseCommits = (options, paginateOptions) => paginateUpTo((c) => listOrganizationReleaseCommits(_withCursor(options, c)), paginateOptions, "listOrganizationReleaseCommits");
|
|
2313
|
+
var fetchPage_listOrganizationReleaseDeploys = (options, cursor) => fetchPage((c) => listOrganizationReleaseDeploys(_withCursor(options, c)), "listOrganizationReleaseDeploys", cursor);
|
|
2314
|
+
var paginateAll_listOrganizationReleaseDeploys = (options, paginateOptions) => paginateAll((c) => listOrganizationReleaseDeploys(_withCursor(options, c)), "listOrganizationReleaseDeploys", paginateOptions);
|
|
2315
|
+
var paginateUpTo_listOrganizationReleaseDeploys = (options, paginateOptions) => paginateUpTo((c) => listOrganizationReleaseDeploys(_withCursor(options, c)), paginateOptions, "listOrganizationReleaseDeploys");
|
|
2316
|
+
var fetchPage_listOrganizationReleaseFiles = (options, cursor) => fetchPage((c) => listOrganizationReleaseFiles(_withCursor(options, c)), "listOrganizationReleaseFiles", cursor);
|
|
2317
|
+
var paginateAll_listOrganizationReleaseFiles = (options, paginateOptions) => paginateAll((c) => listOrganizationReleaseFiles(_withCursor(options, c)), "listOrganizationReleaseFiles", paginateOptions);
|
|
2318
|
+
var paginateUpTo_listOrganizationReleaseFiles = (options, paginateOptions) => paginateUpTo((c) => listOrganizationReleaseFiles(_withCursor(options, c)), paginateOptions, "listOrganizationReleaseFiles");
|
|
2319
|
+
var fetchPage_listOrganizationReleases = (options, cursor) => fetchPage((c) => listOrganizationReleases(_withCursor(options, c)), "listOrganizationReleases", cursor);
|
|
2320
|
+
var paginateAll_listOrganizationReleases = (options, paginateOptions) => paginateAll((c) => listOrganizationReleases(_withCursor(options, c)), "listOrganizationReleases", paginateOptions);
|
|
2321
|
+
var paginateUpTo_listOrganizationReleases = (options, paginateOptions) => paginateUpTo((c) => listOrganizationReleases(_withCursor(options, c)), paginateOptions, "listOrganizationReleases");
|
|
2322
|
+
var fetchPage_listOrganizationReplays = (options, cursor) => fetchPage((c) => listOrganizationReplays(_withCursor(options, c)), "listOrganizationReplays", cursor);
|
|
2323
|
+
var paginateAll_listOrganizationReplays = (options, paginateOptions) => paginateAll((c) => listOrganizationReplays(_withCursor(options, c)), "listOrganizationReplays", paginateOptions);
|
|
2324
|
+
var paginateUpTo_listOrganizationReplays = (options, paginateOptions) => paginateUpTo((c) => listOrganizationReplays(_withCursor(options, c)), paginateOptions, "listOrganizationReplays");
|
|
2325
|
+
var fetchPage_listOrganizationReplaySelectors = (options, cursor) => fetchPage((c) => listOrganizationReplaySelectors(_withCursor(options, c)), "listOrganizationReplaySelectors", cursor);
|
|
2326
|
+
var fetchPage_listOrganizationRepoCommits = (options, cursor) => fetchPage((c) => listOrganizationRepoCommits(_withCursor(options, c)), "listOrganizationRepoCommits", cursor);
|
|
2327
|
+
var paginateAll_listOrganizationRepoCommits = (options, paginateOptions) => paginateAll((c) => listOrganizationRepoCommits(_withCursor(options, c)), "listOrganizationRepoCommits", paginateOptions);
|
|
2328
|
+
var paginateUpTo_listOrganizationRepoCommits = (options, paginateOptions) => paginateUpTo((c) => listOrganizationRepoCommits(_withCursor(options, c)), paginateOptions, "listOrganizationRepoCommits");
|
|
2329
|
+
var fetchPage_listOrganizationRepos = (options, cursor) => fetchPage((c) => listOrganizationRepos(_withCursor(options, c)), "listOrganizationRepos", cursor);
|
|
2330
|
+
var paginateAll_listOrganizationRepos = (options, paginateOptions) => paginateAll((c) => listOrganizationRepos(_withCursor(options, c)), "listOrganizationRepos", paginateOptions);
|
|
2331
|
+
var paginateUpTo_listOrganizationRepos = (options, paginateOptions) => paginateUpTo((c) => listOrganizationRepos(_withCursor(options, c)), paginateOptions, "listOrganizationRepos");
|
|
2332
|
+
var fetchPage_listOrganizations = (options, cursor) => fetchPage((c) => listOrganizations(_withCursor(options, c)), "listOrganizations", cursor);
|
|
2333
|
+
var paginateAll_listOrganizations = (options, paginateOptions) => paginateAll((c) => listOrganizations(_withCursor(options, c)), "listOrganizations", paginateOptions);
|
|
2334
|
+
var paginateUpTo_listOrganizations = (options, paginateOptions) => paginateUpTo((c) => listOrganizations(_withCursor(options, c)), paginateOptions, "listOrganizations");
|
|
2335
|
+
var fetchPage_listOrganizationSentryAppInstallations = (options, cursor) => fetchPage((c) => listOrganizationSentryAppInstallations(_withCursor(options, c)), "listOrganizationSentryAppInstallations", cursor);
|
|
2336
|
+
var paginateAll_listOrganizationSentryAppInstallations = (options, paginateOptions) => paginateAll((c) => listOrganizationSentryAppInstallations(_withCursor(options, c)), "listOrganizationSentryAppInstallations", paginateOptions);
|
|
2337
|
+
var paginateUpTo_listOrganizationSentryAppInstallations = (options, paginateOptions) => paginateUpTo((c) => listOrganizationSentryAppInstallations(_withCursor(options, c)), paginateOptions, "listOrganizationSentryAppInstallations");
|
|
2338
|
+
var fetchPage_listOrganizationTeams = (options, cursor) => fetchPage((c) => listOrganizationTeams(_withCursor(options, c)), "listOrganizationTeams", cursor);
|
|
2339
|
+
var paginateAll_listOrganizationTeams = (options, paginateOptions) => paginateAll((c) => listOrganizationTeams(_withCursor(options, c)), "listOrganizationTeams", paginateOptions);
|
|
2340
|
+
var paginateUpTo_listOrganizationTeams = (options, paginateOptions) => paginateUpTo((c) => listOrganizationTeams(_withCursor(options, c)), paginateOptions, "listOrganizationTeams");
|
|
2341
|
+
var fetchPage_listOrganizationTraceItemsAttributes = (options, cursor) => fetchPage((c) => listOrganizationTraceItemsAttributes(_withCursor(options, c)), "listOrganizationTraceItemsAttributes", cursor);
|
|
2342
|
+
var paginateAll_listOrganizationTraceItemsAttributes = (options, paginateOptions) => paginateAll((c) => listOrganizationTraceItemsAttributes(_withCursor(options, c)), "listOrganizationTraceItemsAttributes", paginateOptions);
|
|
2343
|
+
var paginateUpTo_listOrganizationTraceItemsAttributes = (options, paginateOptions) => paginateUpTo((c) => listOrganizationTraceItemsAttributes(_withCursor(options, c)), paginateOptions, "listOrganizationTraceItemsAttributes");
|
|
2344
|
+
var fetchPage_listProjectEventAttachments = (options, cursor) => fetchPage((c) => listProjectEventAttachments(_withCursor(options, c)), "listProjectEventAttachments", cursor);
|
|
2345
|
+
var paginateAll_listProjectEventAttachments = (options, paginateOptions) => paginateAll((c) => listProjectEventAttachments(_withCursor(options, c)), "listProjectEventAttachments", paginateOptions);
|
|
2346
|
+
var paginateUpTo_listProjectEventAttachments = (options, paginateOptions) => paginateUpTo((c) => listProjectEventAttachments(_withCursor(options, c)), paginateOptions, "listProjectEventAttachments");
|
|
2347
|
+
var fetchPage_listProjectEvents = (options, cursor) => fetchPage((c) => listProjectEvents(_withCursor(options, c)), "listProjectEvents", cursor);
|
|
2348
|
+
var paginateAll_listProjectEvents = (options, paginateOptions) => paginateAll((c) => listProjectEvents(_withCursor(options, c)), "listProjectEvents", paginateOptions);
|
|
2349
|
+
var paginateUpTo_listProjectEvents = (options, paginateOptions) => paginateUpTo((c) => listProjectEvents(_withCursor(options, c)), paginateOptions, "listProjectEvents");
|
|
2350
|
+
var fetchPage_listProjectFilesDsyms = (options, cursor) => fetchPage((c) => listProjectFilesDsyms(_withCursor(options, c)), "listProjectFilesDsyms", cursor);
|
|
2351
|
+
var paginateAll_listProjectFilesDsyms = (options, paginateOptions) => paginateAll((c) => listProjectFilesDsyms(_withCursor(options, c)), "listProjectFilesDsyms", paginateOptions);
|
|
2352
|
+
var paginateUpTo_listProjectFilesDsyms = (options, paginateOptions) => paginateUpTo((c) => listProjectFilesDsyms(_withCursor(options, c)), paginateOptions, "listProjectFilesDsyms");
|
|
2353
|
+
var fetchPage_listProjectHooks = (options, cursor) => fetchPage((c) => listProjectHooks(_withCursor(options, c)), "listProjectHooks", cursor);
|
|
2354
|
+
var paginateAll_listProjectHooks = (options, paginateOptions) => paginateAll((c) => listProjectHooks(_withCursor(options, c)), "listProjectHooks", paginateOptions);
|
|
2355
|
+
var paginateUpTo_listProjectHooks = (options, paginateOptions) => paginateUpTo((c) => listProjectHooks(_withCursor(options, c)), paginateOptions, "listProjectHooks");
|
|
2356
|
+
var fetchPage_listProjectIssues = (options, cursor) => fetchPage((c) => listProjectIssues(_withCursor(options, c)), "listProjectIssues", cursor);
|
|
2357
|
+
var paginateAll_listProjectIssues = (options, paginateOptions) => paginateAll((c) => listProjectIssues(_withCursor(options, c)), "listProjectIssues", paginateOptions);
|
|
2358
|
+
var paginateUpTo_listProjectIssues = (options, paginateOptions) => paginateUpTo((c) => listProjectIssues(_withCursor(options, c)), paginateOptions, "listProjectIssues");
|
|
2359
|
+
var fetchPage_listProjectKeys = (options, cursor) => fetchPage((c) => listProjectKeys(_withCursor(options, c)), "listProjectKeys", cursor);
|
|
2360
|
+
var paginateAll_listProjectKeys = (options, paginateOptions) => paginateAll((c) => listProjectKeys(_withCursor(options, c)), "listProjectKeys", paginateOptions);
|
|
2361
|
+
var paginateUpTo_listProjectKeys = (options, paginateOptions) => paginateUpTo((c) => listProjectKeys(_withCursor(options, c)), paginateOptions, "listProjectKeys");
|
|
2362
|
+
var fetchPage_listProjectReleaseCommits = (options, cursor) => fetchPage((c) => listProjectReleaseCommits(_withCursor(options, c)), "listProjectReleaseCommits", cursor);
|
|
2363
|
+
var paginateAll_listProjectReleaseCommits = (options, paginateOptions) => paginateAll((c) => listProjectReleaseCommits(_withCursor(options, c)), "listProjectReleaseCommits", paginateOptions);
|
|
2364
|
+
var paginateUpTo_listProjectReleaseCommits = (options, paginateOptions) => paginateUpTo((c) => listProjectReleaseCommits(_withCursor(options, c)), paginateOptions, "listProjectReleaseCommits");
|
|
2365
|
+
var fetchPage_listProjectReleaseFiles = (options, cursor) => fetchPage((c) => listProjectReleaseFiles(_withCursor(options, c)), "listProjectReleaseFiles", cursor);
|
|
2366
|
+
var paginateAll_listProjectReleaseFiles = (options, paginateOptions) => paginateAll((c) => listProjectReleaseFiles(_withCursor(options, c)), "listProjectReleaseFiles", paginateOptions);
|
|
2367
|
+
var paginateUpTo_listProjectReleaseFiles = (options, paginateOptions) => paginateUpTo((c) => listProjectReleaseFiles(_withCursor(options, c)), paginateOptions, "listProjectReleaseFiles");
|
|
2368
|
+
var fetchPage_listProjectReleases = (options, cursor) => fetchPage((c) => listProjectReleases(_withCursor(options, c)), "listProjectReleases", cursor);
|
|
2369
|
+
var paginateAll_listProjectReleases = (options, paginateOptions) => paginateAll((c) => listProjectReleases(_withCursor(options, c)), "listProjectReleases", paginateOptions);
|
|
2370
|
+
var paginateUpTo_listProjectReleases = (options, paginateOptions) => paginateUpTo((c) => listProjectReleases(_withCursor(options, c)), paginateOptions, "listProjectReleases");
|
|
2371
|
+
var fetchPage_listProjectReplayClicks = (options, cursor) => fetchPage((c) => listProjectReplayClicks(_withCursor(options, c)), "listProjectReplayClicks", cursor);
|
|
2372
|
+
var fetchPage_listProjectReplayRecordingSegments = (options, cursor) => fetchPage((c) => listProjectReplayRecordingSegments(_withCursor(options, c)), "listProjectReplayRecordingSegments", cursor);
|
|
2373
|
+
var paginateAll_listProjectReplayRecordingSegments = (options, paginateOptions) => paginateAll((c) => listProjectReplayRecordingSegments(_withCursor(options, c)), "listProjectReplayRecordingSegments", paginateOptions);
|
|
2374
|
+
var paginateUpTo_listProjectReplayRecordingSegments = (options, paginateOptions) => paginateUpTo((c) => listProjectReplayRecordingSegments(_withCursor(options, c)), paginateOptions, "listProjectReplayRecordingSegments");
|
|
2375
|
+
var fetchPage_listProjectTagValues = (options, cursor) => fetchPage((c) => listProjectTagValues(_withCursor(options, c)), "listProjectTagValues", cursor);
|
|
2376
|
+
var paginateAll_listProjectTagValues = (options, paginateOptions) => paginateAll((c) => listProjectTagValues(_withCursor(options, c)), "listProjectTagValues", paginateOptions);
|
|
2377
|
+
var paginateUpTo_listProjectTagValues = (options, paginateOptions) => paginateUpTo((c) => listProjectTagValues(_withCursor(options, c)), paginateOptions, "listProjectTagValues");
|
|
2378
|
+
var fetchPage_listProjectTeams = (options, cursor) => fetchPage((c) => listProjectTeams(_withCursor(options, c)), "listProjectTeams", cursor);
|
|
2379
|
+
var paginateAll_listProjectTeams = (options, paginateOptions) => paginateAll((c) => listProjectTeams(_withCursor(options, c)), "listProjectTeams", paginateOptions);
|
|
2380
|
+
var paginateUpTo_listProjectTeams = (options, paginateOptions) => paginateUpTo((c) => listProjectTeams(_withCursor(options, c)), paginateOptions, "listProjectTeams");
|
|
2381
|
+
var fetchPage_listProjectUserFeedback = (options, cursor) => fetchPage((c) => listProjectUserFeedback(_withCursor(options, c)), "listProjectUserFeedback", cursor);
|
|
2382
|
+
var paginateAll_listProjectUserFeedback = (options, paginateOptions) => paginateAll((c) => listProjectUserFeedback(_withCursor(options, c)), "listProjectUserFeedback", paginateOptions);
|
|
2383
|
+
var paginateUpTo_listProjectUserFeedback = (options, paginateOptions) => paginateUpTo((c) => listProjectUserFeedback(_withCursor(options, c)), paginateOptions, "listProjectUserFeedback");
|
|
2384
|
+
var fetchPage_listProjectUsers = (options, cursor) => fetchPage((c) => listProjectUsers(_withCursor(options, c)), "listProjectUsers", cursor);
|
|
2385
|
+
var paginateAll_listProjectUsers = (options, paginateOptions) => paginateAll((c) => listProjectUsers(_withCursor(options, c)), "listProjectUsers", paginateOptions);
|
|
2386
|
+
var paginateUpTo_listProjectUsers = (options, paginateOptions) => paginateUpTo((c) => listProjectUsers(_withCursor(options, c)), paginateOptions, "listProjectUsers");
|
|
2387
|
+
var fetchPage_listTeamMembers = (options, cursor) => fetchPage((c) => listTeamMembers(_withCursor(options, c)), "listTeamMembers", cursor);
|
|
2388
|
+
var paginateAll_listTeamMembers = (options, paginateOptions) => paginateAll((c) => listTeamMembers(_withCursor(options, c)), "listTeamMembers", paginateOptions);
|
|
2389
|
+
var paginateUpTo_listTeamMembers = (options, paginateOptions) => paginateUpTo((c) => listTeamMembers(_withCursor(options, c)), paginateOptions, "listTeamMembers");
|
|
2390
|
+
var fetchPage_listTeamProjects = (options, cursor) => fetchPage((c) => listTeamProjects(_withCursor(options, c)), "listTeamProjects", cursor);
|
|
2391
|
+
var paginateAll_listTeamProjects = (options, paginateOptions) => paginateAll((c) => listTeamProjects(_withCursor(options, c)), "listTeamProjects", paginateOptions);
|
|
2392
|
+
var paginateUpTo_listTeamProjects = (options, paginateOptions) => paginateUpTo((c) => listTeamProjects(_withCursor(options, c)), paginateOptions, "listTeamProjects");
|
|
2393
2393
|
export {
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2394
|
+
updateTeamExternalTeam,
|
|
2395
|
+
updateTeam,
|
|
2396
|
+
updateSentryApp,
|
|
2397
|
+
updateProjectSymbolSources,
|
|
2398
|
+
updateProjectReleaseFile,
|
|
2399
|
+
updateProjectOwnership,
|
|
2400
|
+
updateProjectMonitor,
|
|
2401
|
+
updateProjectKey,
|
|
2402
|
+
updateProjectIssues,
|
|
2403
|
+
updateProjectHook,
|
|
2404
|
+
updateProjectFilter,
|
|
2405
|
+
updateProjectEnvironment,
|
|
2406
|
+
updateProject,
|
|
2407
|
+
updateOrganizationWorkflows,
|
|
2408
|
+
updateOrganizationWorkflow,
|
|
2409
|
+
updateOrganizationScimV2User,
|
|
2410
|
+
updateOrganizationScimV2Group,
|
|
2411
|
+
updateOrganizationReleaseFile,
|
|
2412
|
+
updateOrganizationRelease,
|
|
2413
|
+
updateOrganizationNotificationsAction,
|
|
2414
|
+
updateOrganizationMonitor,
|
|
2415
|
+
updateOrganizationMemberTeam,
|
|
2416
|
+
updateOrganizationMember,
|
|
2417
|
+
updateOrganizationIssues,
|
|
2418
|
+
updateOrganizationIssue,
|
|
2419
|
+
updateOrganizationForwarding,
|
|
2420
|
+
updateOrganizationExternalUser,
|
|
2421
|
+
updateOrganizationDiscoverSaved,
|
|
2422
|
+
updateOrganizationDetectors,
|
|
2423
|
+
updateOrganizationDetector,
|
|
2424
|
+
updateOrganizationDashboard,
|
|
2425
|
+
updateOrganization,
|
|
2423
2426
|
unwrapResult,
|
|
2424
2427
|
unwrapPaginatedResult,
|
|
2425
|
-
submitUserFeedback,
|
|
2426
|
-
startSeerIssueFix,
|
|
2427
|
-
retrieveTraceMetadata,
|
|
2428
|
-
retrieveTheCustomIntegrationsCreatedByAnOrganization,
|
|
2429
|
-
retrieveTagDetails,
|
|
2430
|
-
retrieveStatusesOfReleaseThresholdsAlpha,
|
|
2431
|
-
retrieveSnapshotStatusCheckRulesForAProject,
|
|
2432
|
-
retrieveSnapshotImageDetail,
|
|
2433
|
-
retrieveSnapshotDetails,
|
|
2434
|
-
retrieveSizeAnalysisStatusCheckRulesForAProject,
|
|
2435
|
-
retrieveSizeAnalysisResultsForAGivenArtifact,
|
|
2436
|
-
retrieveSeerIssueFixState,
|
|
2437
|
-
retrieveReleaseHealthSessionStatistics,
|
|
2438
|
-
retrieveProfileChunksForAnOrganization,
|
|
2439
|
-
retrieveOwnershipConfigurationForAProject,
|
|
2440
|
-
retrieveMonitorsForAnOrganization,
|
|
2441
|
-
retrieveLatestBaseSnapshot,
|
|
2442
|
-
retrieveInstallInfoForAGivenArtifact,
|
|
2443
|
-
retrieveFilesChangedInARelease_sCommits,
|
|
2444
|
-
retrieveEventCountsForAnOrganizationV2,
|
|
2445
|
-
retrieveEventCountsForAProject,
|
|
2446
|
-
retrieveDataForwardersForAnOrganization,
|
|
2447
|
-
retrieveCustomIntegrationIssueLinksForTheGivenSentryIssue,
|
|
2448
|
-
retrieveCheckInsForAMonitorByProject,
|
|
2449
|
-
retrieveCheckInsForAMonitor,
|
|
2450
|
-
retrieveAnOrganization_sRelease,
|
|
2451
|
-
retrieveAnOrganization_sEventsCountByProject,
|
|
2452
|
-
retrieveAnOrganization_sDiscoverSavedQuery,
|
|
2453
|
-
retrieveAnOrganization_sCustomDashboard,
|
|
2454
|
-
retrieveAnOrganizationRelease_sFile,
|
|
2455
|
-
retrieveAnOrganizationMember,
|
|
2456
|
-
retrieveAnOrganization,
|
|
2457
|
-
retrieveAnIssueEvent,
|
|
2458
|
-
retrieveAnIssue,
|
|
2459
|
-
retrieveAnIntegrationForAnOrganization,
|
|
2460
|
-
retrieveAnEventForAProject,
|
|
2461
|
-
retrieveAnEventAttachment,
|
|
2462
|
-
retrieveATrace,
|
|
2463
|
-
retrieveATeam,
|
|
2464
|
-
retrieveASpikeProtectionNotificationAction,
|
|
2465
|
-
retrieveAServiceHook,
|
|
2466
|
-
retrieveAReplayInstance,
|
|
2467
|
-
retrieveAReplayBatchDeletionJob,
|
|
2468
|
-
retrieveARecordingSegment,
|
|
2469
|
-
retrieveAProject_sSymbolSources,
|
|
2470
|
-
retrieveAProjectRelease_sFile,
|
|
2471
|
-
retrieveAProjectEnvironment,
|
|
2472
|
-
retrieveAProject,
|
|
2473
|
-
retrieveAProfile,
|
|
2474
|
-
retrieveAMonitorForAProject,
|
|
2475
|
-
retrieveAMonitor,
|
|
2476
|
-
retrieveAFlamegraphForAnOrganization,
|
|
2477
|
-
retrieveACustomIntegrationByIdOrSlug,
|
|
2478
|
-
retrieveACountOfReplaysForAGivenIssueOrTransaction,
|
|
2479
|
-
retrieveAClientKey,
|
|
2480
|
-
resolveAnEventId,
|
|
2481
|
-
resolveAShortId,
|
|
2482
|
-
removeAnIssue,
|
|
2483
|
-
removeAServiceHook,
|
|
2484
|
-
registerANewServiceHook,
|
|
2485
|
-
queryExploreEventsInTimeseriesFormat,
|
|
2486
|
-
queryExploreEventsInTableFormat,
|
|
2487
|
-
queryAnIndividualTeam,
|
|
2488
|
-
queryAnIndividualOrganizationMember,
|
|
2489
|
-
provisionANewTeam,
|
|
2490
|
-
provisionANewOrganizationMember,
|
|
2491
2428
|
parseSentryLinkHeader,
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2429
|
+
paginateUpTo_listTeamProjects,
|
|
2430
|
+
paginateUpTo_listTeamMembers,
|
|
2431
|
+
paginateUpTo_listProjectUsers,
|
|
2432
|
+
paginateUpTo_listProjectUserFeedback,
|
|
2433
|
+
paginateUpTo_listProjectTeams,
|
|
2434
|
+
paginateUpTo_listProjectTagValues,
|
|
2435
|
+
paginateUpTo_listProjectReplayRecordingSegments,
|
|
2436
|
+
paginateUpTo_listProjectReleases,
|
|
2437
|
+
paginateUpTo_listProjectReleaseFiles,
|
|
2438
|
+
paginateUpTo_listProjectReleaseCommits,
|
|
2439
|
+
paginateUpTo_listProjectKeys,
|
|
2440
|
+
paginateUpTo_listProjectIssues,
|
|
2441
|
+
paginateUpTo_listProjectHooks,
|
|
2442
|
+
paginateUpTo_listProjectFilesDsyms,
|
|
2443
|
+
paginateUpTo_listProjectEvents,
|
|
2444
|
+
paginateUpTo_listProjectEventAttachments,
|
|
2445
|
+
paginateUpTo_listOrganizations,
|
|
2446
|
+
paginateUpTo_listOrganizationTraceItemsAttributes,
|
|
2447
|
+
paginateUpTo_listOrganizationTeams,
|
|
2448
|
+
paginateUpTo_listOrganizationSentryAppInstallations,
|
|
2449
|
+
paginateUpTo_listOrganizationRepos,
|
|
2450
|
+
paginateUpTo_listOrganizationRepoCommits,
|
|
2451
|
+
paginateUpTo_listOrganizationReplays,
|
|
2452
|
+
paginateUpTo_listOrganizationReleases,
|
|
2453
|
+
paginateUpTo_listOrganizationReleaseFiles,
|
|
2454
|
+
paginateUpTo_listOrganizationReleaseDeploys,
|
|
2455
|
+
paginateUpTo_listOrganizationReleaseCommits,
|
|
2456
|
+
paginateUpTo_listOrganizationProjects,
|
|
2457
|
+
paginateUpTo_listOrganizationProjectKeys,
|
|
2458
|
+
paginateUpTo_listOrganizationMonitors,
|
|
2459
|
+
paginateUpTo_listOrganizationMonitorCheckins,
|
|
2460
|
+
paginateUpTo_listOrganizationMembers,
|
|
2461
|
+
paginateUpTo_listOrganizationIssues,
|
|
2462
|
+
paginateUpTo_listOrganizationIssueHashes,
|
|
2463
|
+
paginateUpTo_listOrganizationIssueEvents,
|
|
2464
|
+
paginateUpTo_listOrganizationIntegrations,
|
|
2465
|
+
paginateUpTo_listOrganizationDiscoverSaved,
|
|
2466
|
+
paginateUpTo_listOrganizationDashboards,
|
|
2530
2467
|
paginateUpTo,
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2468
|
+
paginateAll_listTeamProjects,
|
|
2469
|
+
paginateAll_listTeamMembers,
|
|
2470
|
+
paginateAll_listProjectUsers,
|
|
2471
|
+
paginateAll_listProjectUserFeedback,
|
|
2472
|
+
paginateAll_listProjectTeams,
|
|
2473
|
+
paginateAll_listProjectTagValues,
|
|
2474
|
+
paginateAll_listProjectReplayRecordingSegments,
|
|
2475
|
+
paginateAll_listProjectReleases,
|
|
2476
|
+
paginateAll_listProjectReleaseFiles,
|
|
2477
|
+
paginateAll_listProjectReleaseCommits,
|
|
2478
|
+
paginateAll_listProjectKeys,
|
|
2479
|
+
paginateAll_listProjectIssues,
|
|
2480
|
+
paginateAll_listProjectHooks,
|
|
2481
|
+
paginateAll_listProjectFilesDsyms,
|
|
2482
|
+
paginateAll_listProjectEvents,
|
|
2483
|
+
paginateAll_listProjectEventAttachments,
|
|
2484
|
+
paginateAll_listOrganizations,
|
|
2485
|
+
paginateAll_listOrganizationTraceItemsAttributes,
|
|
2486
|
+
paginateAll_listOrganizationTeams,
|
|
2487
|
+
paginateAll_listOrganizationSentryAppInstallations,
|
|
2488
|
+
paginateAll_listOrganizationRepos,
|
|
2489
|
+
paginateAll_listOrganizationRepoCommits,
|
|
2490
|
+
paginateAll_listOrganizationReplays,
|
|
2491
|
+
paginateAll_listOrganizationReleases,
|
|
2492
|
+
paginateAll_listOrganizationReleaseFiles,
|
|
2493
|
+
paginateAll_listOrganizationReleaseDeploys,
|
|
2494
|
+
paginateAll_listOrganizationReleaseCommits,
|
|
2495
|
+
paginateAll_listOrganizationProjects,
|
|
2496
|
+
paginateAll_listOrganizationProjectKeys,
|
|
2497
|
+
paginateAll_listOrganizationMonitors,
|
|
2498
|
+
paginateAll_listOrganizationMonitorCheckins,
|
|
2499
|
+
paginateAll_listOrganizationMembers,
|
|
2500
|
+
paginateAll_listOrganizationIssues,
|
|
2501
|
+
paginateAll_listOrganizationIssueHashes,
|
|
2502
|
+
paginateAll_listOrganizationIssueEvents,
|
|
2503
|
+
paginateAll_listOrganizationIntegrations,
|
|
2504
|
+
paginateAll_listOrganizationDiscoverSaved,
|
|
2505
|
+
paginateAll_listOrganizationDashboards,
|
|
2569
2506
|
paginateAll,
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2507
|
+
listTeamProjects,
|
|
2508
|
+
listTeamMembers,
|
|
2509
|
+
listSeerModels,
|
|
2510
|
+
listProjectUsers,
|
|
2511
|
+
listProjectUserFeedback,
|
|
2512
|
+
listProjectTeams,
|
|
2513
|
+
listProjectTagValues,
|
|
2514
|
+
listProjectSymbolSources,
|
|
2515
|
+
listProjectStats,
|
|
2516
|
+
listProjectReplaysJobsDelete,
|
|
2517
|
+
listProjectReplayViewedBy,
|
|
2518
|
+
listProjectReplayRecordingSegments,
|
|
2519
|
+
listProjectReplayClicks,
|
|
2520
|
+
listProjectReleases,
|
|
2521
|
+
listProjectReleaseFiles,
|
|
2522
|
+
listProjectReleaseCommits,
|
|
2523
|
+
listProjectPreprodartifactsBuildDistributionLatest,
|
|
2524
|
+
listProjectPreprodSnapshotsStatusCheckRules,
|
|
2525
|
+
listProjectPreprodSizeAnalysisStatusCheckRules,
|
|
2526
|
+
listProjectOwnership,
|
|
2527
|
+
listProjectMonitorCheckins,
|
|
2528
|
+
listProjectMembers,
|
|
2529
|
+
listProjectKeys,
|
|
2530
|
+
listProjectIssues,
|
|
2531
|
+
listProjectHooks,
|
|
2532
|
+
listProjectFilters,
|
|
2533
|
+
listProjectFilesDsyms,
|
|
2534
|
+
listProjectEvents,
|
|
2535
|
+
listProjectEventSourceMapDebug,
|
|
2536
|
+
listProjectEventAttachments,
|
|
2537
|
+
listProjectEnvironments,
|
|
2538
|
+
listOrganizations,
|
|
2539
|
+
listOrganizationWorkflows,
|
|
2540
|
+
listOrganizationUserTeams,
|
|
2541
|
+
listOrganizationTraceItemsAttributes,
|
|
2542
|
+
listOrganizationTeams,
|
|
2543
|
+
listOrganizationTags,
|
|
2544
|
+
listOrganizationStatsV2,
|
|
2545
|
+
listOrganizationStatsSummary,
|
|
2546
|
+
listOrganizationSessions,
|
|
2547
|
+
listOrganizationSentryApps,
|
|
2548
|
+
listOrganizationSentryAppInstallations,
|
|
2549
|
+
listOrganizationScimV2Users,
|
|
2550
|
+
listOrganizationScimV2Groups,
|
|
2551
|
+
listOrganizationRepos,
|
|
2552
|
+
listOrganizationRepoCommits,
|
|
2553
|
+
listOrganizationReplays,
|
|
2554
|
+
listOrganizationReplaySelectors,
|
|
2555
|
+
listOrganizationReplayCount,
|
|
2556
|
+
listOrganizationReleases,
|
|
2557
|
+
listOrganizationReleaseThresholdStatuses,
|
|
2558
|
+
listOrganizationReleaseFiles,
|
|
2559
|
+
listOrganizationReleaseDeploys,
|
|
2560
|
+
listOrganizationReleaseCommits,
|
|
2561
|
+
listOrganizationReleaseCommitfiles,
|
|
2562
|
+
listOrganizationRelayUsage,
|
|
2563
|
+
listOrganizationProjects,
|
|
2564
|
+
listOrganizationProjectKeys,
|
|
2565
|
+
listOrganizationProfilingFlamegraph,
|
|
2566
|
+
listOrganizationProfilingChunks,
|
|
2567
|
+
listOrganizationPreprodartifactsSnapshotsLatestBase,
|
|
2568
|
+
listOrganizationPreprodartifactsSnapshotDownload,
|
|
2569
|
+
listOrganizationPreprodartifactSizeAnalysis,
|
|
2570
|
+
listOrganizationPreprodartifactInstallDetails,
|
|
2571
|
+
listOrganizationNotificationsActions,
|
|
2572
|
+
listOrganizationMonitors,
|
|
2573
|
+
listOrganizationMonitorCheckins,
|
|
2574
|
+
listOrganizationMembers,
|
|
2575
|
+
listOrganizationIssues,
|
|
2576
|
+
listOrganizationIssueTagValues,
|
|
2577
|
+
listOrganizationIssueHashes,
|
|
2578
|
+
listOrganizationIssueExternalIssues,
|
|
2579
|
+
listOrganizationIssueEvents,
|
|
2580
|
+
listOrganizationIssueAutofix,
|
|
2581
|
+
listOrganizationIntegrations,
|
|
2582
|
+
listOrganizationForwarding,
|
|
2583
|
+
listOrganizationEventsTimeseries,
|
|
2584
|
+
listOrganizationEvents,
|
|
2585
|
+
listOrganizationEnvironments,
|
|
2586
|
+
listOrganizationDiscoverSaved,
|
|
2587
|
+
listOrganizationDetectors,
|
|
2588
|
+
listOrganizationDashboards,
|
|
2589
|
+
listOrganizationConfigIntegrations,
|
|
2590
|
+
getTeam,
|
|
2591
|
+
getSentryApp,
|
|
2592
|
+
getProjectReplaysJobsDelete,
|
|
2593
|
+
getProjectReplayRecordingSegment,
|
|
2594
|
+
getProjectReleaseFile,
|
|
2595
|
+
getProjectProfilingProfile,
|
|
2596
|
+
getProjectMonitor,
|
|
2597
|
+
getProjectKey,
|
|
2598
|
+
getProjectHook,
|
|
2599
|
+
getProjectEventAttachment,
|
|
2600
|
+
getProjectEvent,
|
|
2601
|
+
getProjectEnvironment,
|
|
2602
|
+
getProject,
|
|
2603
|
+
getOrganizationWorkflow,
|
|
2604
|
+
getOrganizationTraceMeta,
|
|
2605
|
+
getOrganizationTrace,
|
|
2606
|
+
getOrganizationShortid,
|
|
2607
|
+
getOrganizationScimV2User,
|
|
2608
|
+
getOrganizationScimV2Group,
|
|
2609
|
+
getOrganizationReplay,
|
|
2610
|
+
getOrganizationReleaseFile,
|
|
2611
|
+
getOrganizationRelease,
|
|
2612
|
+
getOrganizationPreprodartifactsSnapshotImage,
|
|
2613
|
+
getOrganizationPreprodartifactsSnapshot,
|
|
2614
|
+
getOrganizationNotificationsAction,
|
|
2615
|
+
getOrganizationMonitor,
|
|
2616
|
+
getOrganizationMember,
|
|
2617
|
+
getOrganizationIssueTag,
|
|
2618
|
+
getOrganizationIssueEvent,
|
|
2619
|
+
getOrganizationIssue,
|
|
2620
|
+
getOrganizationIntegration,
|
|
2621
|
+
getOrganizationEventid,
|
|
2622
|
+
getOrganizationDiscoverSaved,
|
|
2623
|
+
getOrganizationDetector,
|
|
2624
|
+
getOrganizationDashboard,
|
|
2625
|
+
getOrganization,
|
|
2626
|
+
fetchPage_listTeamProjects,
|
|
2627
|
+
fetchPage_listTeamMembers,
|
|
2628
|
+
fetchPage_listProjectUsers,
|
|
2629
|
+
fetchPage_listProjectUserFeedback,
|
|
2630
|
+
fetchPage_listProjectTeams,
|
|
2631
|
+
fetchPage_listProjectTagValues,
|
|
2632
|
+
fetchPage_listProjectReplayRecordingSegments,
|
|
2633
|
+
fetchPage_listProjectReplayClicks,
|
|
2634
|
+
fetchPage_listProjectReleases,
|
|
2635
|
+
fetchPage_listProjectReleaseFiles,
|
|
2636
|
+
fetchPage_listProjectReleaseCommits,
|
|
2637
|
+
fetchPage_listProjectKeys,
|
|
2638
|
+
fetchPage_listProjectIssues,
|
|
2639
|
+
fetchPage_listProjectHooks,
|
|
2640
|
+
fetchPage_listProjectFilesDsyms,
|
|
2641
|
+
fetchPage_listProjectEvents,
|
|
2642
|
+
fetchPage_listProjectEventAttachments,
|
|
2643
|
+
fetchPage_listOrganizations,
|
|
2644
|
+
fetchPage_listOrganizationTraceItemsAttributes,
|
|
2645
|
+
fetchPage_listOrganizationTeams,
|
|
2646
|
+
fetchPage_listOrganizationSentryAppInstallations,
|
|
2647
|
+
fetchPage_listOrganizationRepos,
|
|
2648
|
+
fetchPage_listOrganizationRepoCommits,
|
|
2649
|
+
fetchPage_listOrganizationReplays,
|
|
2650
|
+
fetchPage_listOrganizationReplaySelectors,
|
|
2651
|
+
fetchPage_listOrganizationReleases,
|
|
2652
|
+
fetchPage_listOrganizationReleaseFiles,
|
|
2653
|
+
fetchPage_listOrganizationReleaseDeploys,
|
|
2654
|
+
fetchPage_listOrganizationReleaseCommits,
|
|
2655
|
+
fetchPage_listOrganizationProjects,
|
|
2656
|
+
fetchPage_listOrganizationProjectKeys,
|
|
2657
|
+
fetchPage_listOrganizationMonitors,
|
|
2658
|
+
fetchPage_listOrganizationMonitorCheckins,
|
|
2659
|
+
fetchPage_listOrganizationMembers,
|
|
2660
|
+
fetchPage_listOrganizationIssues,
|
|
2661
|
+
fetchPage_listOrganizationIssueHashes,
|
|
2662
|
+
fetchPage_listOrganizationIssueEvents,
|
|
2663
|
+
fetchPage_listOrganizationIntegrations,
|
|
2664
|
+
fetchPage_listOrganizationEvents,
|
|
2665
|
+
fetchPage_listOrganizationDiscoverSaved,
|
|
2666
|
+
fetchPage_listOrganizationDashboards,
|
|
2667
|
+
fetchPage_getOrganizationReplay,
|
|
2670
2668
|
fetchPage,
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2669
|
+
deleteTeamExternalTeam,
|
|
2670
|
+
deleteTeam,
|
|
2671
|
+
deleteSentryAppInstallationExternalIssue,
|
|
2672
|
+
deleteSentryApp,
|
|
2673
|
+
deleteProjectTeam,
|
|
2674
|
+
deleteProjectSymbolSources,
|
|
2675
|
+
deleteProjectReplay,
|
|
2676
|
+
deleteProjectReleaseFile,
|
|
2677
|
+
deleteProjectMonitor,
|
|
2678
|
+
deleteProjectKey,
|
|
2679
|
+
deleteProjectIssues,
|
|
2680
|
+
deleteProjectHook,
|
|
2681
|
+
deleteProject,
|
|
2682
|
+
deleteOrganizationWorkflows,
|
|
2683
|
+
deleteOrganizationWorkflow,
|
|
2684
|
+
deleteOrganizationSpikeProtections,
|
|
2685
|
+
deleteOrganizationScimV2User,
|
|
2686
|
+
deleteOrganizationScimV2Group,
|
|
2687
|
+
deleteOrganizationReleaseFile,
|
|
2688
|
+
deleteOrganizationRelease,
|
|
2689
|
+
deleteOrganizationPreprodartifactsSnapshot,
|
|
2690
|
+
deleteOrganizationNotificationsAction,
|
|
2691
|
+
deleteOrganizationMonitor,
|
|
2692
|
+
deleteOrganizationMemberTeam,
|
|
2693
|
+
deleteOrganizationMember,
|
|
2694
|
+
deleteOrganizationIssues,
|
|
2695
|
+
deleteOrganizationIssue,
|
|
2696
|
+
deleteOrganizationIntegration,
|
|
2697
|
+
deleteOrganizationForwarding,
|
|
2698
|
+
deleteOrganizationExternalUser,
|
|
2699
|
+
deleteOrganizationDiscoverSaved,
|
|
2700
|
+
deleteOrganizationDetectors,
|
|
2701
|
+
deleteOrganizationDetector,
|
|
2702
|
+
deleteOrganizationDashboard,
|
|
2703
|
+
createTeamProject,
|
|
2704
|
+
createTeamExternalTeam,
|
|
2705
|
+
createSentryAppInstallationExternalIssue,
|
|
2706
|
+
createProjectUserFeedback,
|
|
2707
|
+
createProjectTeam,
|
|
2708
|
+
createProjectSymbolSource,
|
|
2709
|
+
createProjectRepo,
|
|
2710
|
+
createProjectReplaysJobsDelete,
|
|
2711
|
+
createProjectReleaseFile,
|
|
2712
|
+
createProjectPreprodartifactsSnapshot,
|
|
2713
|
+
createProjectKey,
|
|
2714
|
+
createProjectHook,
|
|
2715
|
+
createOrganizationWorkflow,
|
|
2716
|
+
createOrganizationTeam,
|
|
2717
|
+
createOrganizationSpikeProtection,
|
|
2718
|
+
createOrganizationScimV2User,
|
|
2719
|
+
createOrganizationScimV2Group,
|
|
2720
|
+
createOrganizationReleaseFile,
|
|
2721
|
+
createOrganizationReleaseDeploy,
|
|
2722
|
+
createOrganizationRelease,
|
|
2723
|
+
createOrganizationProjectDetector,
|
|
2724
|
+
createOrganizationProject,
|
|
2725
|
+
createOrganizationNotificationsAction,
|
|
2726
|
+
createOrganizationMonitor,
|
|
2727
|
+
createOrganizationMemberTeam,
|
|
2728
|
+
createOrganizationMember,
|
|
2729
|
+
createOrganizationIssueAutofix,
|
|
2730
|
+
createOrganizationForwarding,
|
|
2731
|
+
createOrganizationExternalUser,
|
|
2732
|
+
createOrganizationDiscoverSaved,
|
|
2733
|
+
createOrganizationDashboard
|
|
2734
2734
|
};
|