opal-security 3.1.1-beta.4dbd858 → 3.1.1-beta.4e22fcc
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/README.md +26 -26
- package/lib/commands/request/create.d.ts +6 -0
- package/lib/commands/request/create.js +53 -16
- package/lib/commands/request/get.d.ts +2 -0
- package/lib/commands/request/get.js +21 -3
- package/lib/commands/request/list.d.ts +8 -1
- package/lib/commands/request/list.js +113 -6
- package/lib/graphql/gql.d.ts +31 -6
- package/lib/graphql/gql.js +8 -3
- package/lib/graphql/graphql.d.ts +287 -94
- package/lib/graphql/graphql.js +1625 -171
- package/lib/lib/flags.js +1 -1
- package/lib/lib/requests.d.ts +28 -18
- package/lib/lib/requests.js +813 -129
- package/lib/utils/displays.d.ts +6 -4
- package/lib/utils/displays.js +181 -80
- package/oclif.manifest.json +94 -14
- package/package.json +3 -1
package/lib/graphql/graphql.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.RequestDefaultsDocument = exports.ResourceAccessLevelsDocument = exports.PaginatedEntityDropdownDocument = exports.GetRequestableAppsQueryDocument = exports.CheckAuthSessionQueryDocument = exports.GetRequestDocument = exports.GetGroupDocument = exports.RequestDecisionLevel = exports.WebhookPubsubPublishConnectionAuthType = exports.WebhookPubsubPublishConnectionApiKeyLocation = exports.Visibility = exports.VerifyFactorStatus = exports.UsersSortByField = exports.UserProductRole = exports.UserErrorType = exports.UsageAttributionType = exports.UiSource = exports.TimePeriod = exports.TimeBucket = exports.ThirdPartyProvider = void 0;
|
|
3
|
+
exports.GroupUserSource = exports.GroupUserSortByField = exports.GroupType = exports.GroupResourceSource = exports.GroupBindingsSortByField = exports.GroupBindingSuggestionsSortByField = exports.GeneralSettingType = exports.FiltersMatchMode = exports.FilterRule = exports.FactorType = exports.EventType = exports.EventSeverity = exports.ErrorNotificationSettingType = exports.EntityType = exports.ConnectionValidationStatus = exports.ConnectionValidationSeverity = exports.ConnectionType = exports.BundlesSortByField = exports.BundleItemsSortByField = exports.AuthType = exports.AuthSessionStatus = exports.AuthFlowType = exports.AssociatedItemsSortByField = exports.AssignmentsSortByField = exports.AppsSortByField = exports.AppType = exports.AppItemsSortByField = exports.AppCategory = exports.ApiAuthType = exports.ApiAccessLevel = exports.AldwinRole = exports.AccessType = exports.AccessRuleStatus = exports.AccessReviewUserWarningType = exports.AccessReviewType = exports.AccessReviewTab = exports.AccessReviewSummaryStatus = exports.AccessReviewStatus = exports.AccessReviewReviewerAssignmentPolicy = exports.AccessReviewItemsSortByField = exports.AccessReviewItemStatus = exports.AccessReviewItemOutcome = exports.AccessReviewGroupResourceVisibilityPolicy = exports.AccessReviewGroupItemKind = exports.AccessReviewEndUserView = exports.AccessReviewAssignedStatus = exports.AccessReviewAction = exports.AccessOption = exports.AccessChangeType = exports.AwsIdentityCenterImportSetting = void 0;
|
|
4
|
+
exports.TagsSortByField = exports.TagFilterMatchMode = exports.SyncType = exports.SyncTaskStatus = exports.SubEventsSortByField = exports.StringFormatType = exports.SortDirection = exports.ServiceType = exports.SearchType = exports.RolePermissionTargetType = exports.RolePermission = exports.RoleAssignmentsSortByField = exports.RoleAssignmentSource = exports.RiskLevel = exports.ReviewerUserStatus = exports.ReviewerAction = exports.ReviewStageOperator = exports.ResourceUserSource = exports.ResourceUserSortByField = exports.ResourceType = exports.RequestsSortByField = exports.RequestType = exports.RequestTemplateCustomFieldType = exports.RequestStatus = exports.RequestMessageLevel = exports.RequestMessageCode = exports.RequestApprovalType = exports.RecommendationsSubscoreType = exports.RecommendationsMetricType = exports.RecommendationsFeedbackType = exports.RecommendationsEntityType = exports.PubsubPublishMessageType = exports.PubsubPublishMessageStatusCode = exports.PubsubPublishConnectionType = exports.ProvisionSource = exports.PropagationTaskType = exports.PropagationStatusCode = exports.OwnersSortByField = exports.OrganizationType = exports.OidcProviderType = exports.NotificationType = exports.MessageChannelType = exports.MfaProvider = exports.IntegrationType = exports.ImportSetting = exports.IdpConnectionUserAttributeUseAs = exports.IdpConnectionType = exports.IdentityCategory = exports.HrIdpStatus = exports.HealthStatus = void 0;
|
|
5
|
+
exports.GetAssociatedItemsDocument = exports.GetCatalogItemDocument = exports.CreateRequestDocument = exports.RequestDefaultsDocument = exports.GroupAccessLevelsDocument = exports.ResourceAccessLevelsDocument = exports.PaginatedEntityDropdownDocument = exports.GetRequestableAppsQueryDocument = exports.CheckAuthSessionQueryDocument = exports.GetRequestsDocument = exports.GetRequestDocument = exports.GetGroupDocument = exports.RequestDecisionLevel = exports.WebhookPubsubPublishConnectionAuthType = exports.WebhookPubsubPublishConnectionApiKeyLocation = exports.Visibility = exports.VerifyFactorStatus = exports.UsersSortByField = exports.UserProductRole = exports.UserErrorType = exports.UsageAttributionType = exports.UiSource = exports.TimePeriod = exports.TimeBucket = exports.ThirdPartyProvider = exports.TaskTrigger = void 0;
|
|
6
6
|
var AwsIdentityCenterImportSetting;
|
|
7
7
|
(function (AwsIdentityCenterImportSetting) {
|
|
8
8
|
AwsIdentityCenterImportSetting["All"] = "ALL";
|
|
@@ -689,6 +689,11 @@ var FactorType;
|
|
|
689
689
|
FactorType["OktaPush"] = "OKTA_PUSH";
|
|
690
690
|
FactorType["OktaTotp"] = "OKTA_TOTP";
|
|
691
691
|
})(FactorType || (exports.FactorType = FactorType = {}));
|
|
692
|
+
var FilterRule;
|
|
693
|
+
(function (FilterRule) {
|
|
694
|
+
FilterRule["MatchAll"] = "MATCH_ALL";
|
|
695
|
+
FilterRule["MatchAny"] = "MATCH_ANY";
|
|
696
|
+
})(FilterRule || (exports.FilterRule = FilterRule = {}));
|
|
692
697
|
var FiltersMatchMode;
|
|
693
698
|
(function (FiltersMatchMode) {
|
|
694
699
|
FiltersMatchMode["All"] = "ALL";
|
|
@@ -973,6 +978,7 @@ var RecommendationsMetricType;
|
|
|
973
978
|
RecommendationsMetricType["DailyIrregularUserAccess"] = "DAILY_IRREGULAR_USER_ACCESS";
|
|
974
979
|
RecommendationsMetricType["DailyOutsideUserAccess"] = "DAILY_OUTSIDE_USER_ACCESS";
|
|
975
980
|
RecommendationsMetricType["DailyPerpetualUserAccess"] = "DAILY_PERPETUAL_USER_ACCESS";
|
|
981
|
+
RecommendationsMetricType["DailyUnusedNhiAccess"] = "DAILY_UNUSED_NHI_ACCESS";
|
|
976
982
|
RecommendationsMetricType["DailyUnusedUserAccess"] = "DAILY_UNUSED_USER_ACCESS";
|
|
977
983
|
RecommendationsMetricType["EntitiesWithCriticalRiskScore"] = "ENTITIES_WITH_CRITICAL_RISK_SCORE";
|
|
978
984
|
RecommendationsMetricType["EntitiesWithHighRiskScore"] = "ENTITIES_WITH_HIGH_RISK_SCORE";
|
|
@@ -1095,6 +1101,7 @@ var ResourceType;
|
|
|
1095
1101
|
ResourceType["GcpOrganization"] = "GCP_ORGANIZATION";
|
|
1096
1102
|
ResourceType["GcpProject"] = "GCP_PROJECT";
|
|
1097
1103
|
ResourceType["GcpServiceAccount"] = "GCP_SERVICE_ACCOUNT";
|
|
1104
|
+
ResourceType["GitHubOrgRole"] = "GIT_HUB_ORG_ROLE";
|
|
1098
1105
|
ResourceType["GitHubRepo"] = "GIT_HUB_REPO";
|
|
1099
1106
|
ResourceType["GitLabProject"] = "GIT_LAB_PROJECT";
|
|
1100
1107
|
ResourceType["GoogleWorkspaceRole"] = "GOOGLE_WORKSPACE_ROLE";
|
|
@@ -1728,6 +1735,10 @@ exports.GetRequestDocument = {
|
|
|
1728
1735
|
kind: "Field",
|
|
1729
1736
|
name: { kind: "Name", value: "id" },
|
|
1730
1737
|
},
|
|
1738
|
+
{
|
|
1739
|
+
kind: "Field",
|
|
1740
|
+
name: { kind: "Name", value: "createdAt" },
|
|
1741
|
+
},
|
|
1731
1742
|
{
|
|
1732
1743
|
kind: "Field",
|
|
1733
1744
|
name: { kind: "Name", value: "status" },
|
|
@@ -1915,70 +1926,35 @@ exports.GetRequestDocument = {
|
|
|
1915
1926
|
},
|
|
1916
1927
|
],
|
|
1917
1928
|
};
|
|
1918
|
-
exports.
|
|
1919
|
-
kind: "Document",
|
|
1920
|
-
definitions: [
|
|
1921
|
-
{
|
|
1922
|
-
kind: "OperationDefinition",
|
|
1923
|
-
operation: "query",
|
|
1924
|
-
name: { kind: "Name", value: "CheckAuthSessionQuery" },
|
|
1925
|
-
selectionSet: {
|
|
1926
|
-
kind: "SelectionSet",
|
|
1927
|
-
selections: [
|
|
1928
|
-
{
|
|
1929
|
-
kind: "Field",
|
|
1930
|
-
name: { kind: "Name", value: "organizationSettings" },
|
|
1931
|
-
selectionSet: {
|
|
1932
|
-
kind: "SelectionSet",
|
|
1933
|
-
selections: [
|
|
1934
|
-
{
|
|
1935
|
-
kind: "InlineFragment",
|
|
1936
|
-
typeCondition: {
|
|
1937
|
-
kind: "NamedType",
|
|
1938
|
-
name: { kind: "Name", value: "OrganizationSettingsResult" },
|
|
1939
|
-
},
|
|
1940
|
-
selectionSet: {
|
|
1941
|
-
kind: "SelectionSet",
|
|
1942
|
-
selections: [
|
|
1943
|
-
{
|
|
1944
|
-
kind: "Field",
|
|
1945
|
-
name: { kind: "Name", value: "settings" },
|
|
1946
|
-
selectionSet: {
|
|
1947
|
-
kind: "SelectionSet",
|
|
1948
|
-
selections: [
|
|
1949
|
-
{
|
|
1950
|
-
kind: "Field",
|
|
1951
|
-
name: { kind: "Name", value: "id" },
|
|
1952
|
-
},
|
|
1953
|
-
],
|
|
1954
|
-
},
|
|
1955
|
-
},
|
|
1956
|
-
],
|
|
1957
|
-
},
|
|
1958
|
-
},
|
|
1959
|
-
],
|
|
1960
|
-
},
|
|
1961
|
-
},
|
|
1962
|
-
],
|
|
1963
|
-
},
|
|
1964
|
-
},
|
|
1965
|
-
],
|
|
1966
|
-
};
|
|
1967
|
-
exports.GetRequestableAppsQueryDocument = {
|
|
1929
|
+
exports.GetRequestsDocument = {
|
|
1968
1930
|
kind: "Document",
|
|
1969
1931
|
definitions: [
|
|
1970
1932
|
{
|
|
1971
1933
|
kind: "OperationDefinition",
|
|
1972
1934
|
operation: "query",
|
|
1973
|
-
name: { kind: "Name", value: "
|
|
1935
|
+
name: { kind: "Name", value: "GetRequests" },
|
|
1974
1936
|
variableDefinitions: [
|
|
1975
1937
|
{
|
|
1976
1938
|
kind: "VariableDefinition",
|
|
1977
1939
|
variable: {
|
|
1978
1940
|
kind: "Variable",
|
|
1979
|
-
name: { kind: "Name", value: "
|
|
1941
|
+
name: { kind: "Name", value: "pageSize" },
|
|
1942
|
+
},
|
|
1943
|
+
type: { kind: "NamedType", name: { kind: "Name", value: "Int" } },
|
|
1944
|
+
},
|
|
1945
|
+
{
|
|
1946
|
+
kind: "VariableDefinition",
|
|
1947
|
+
variable: {
|
|
1948
|
+
kind: "Variable",
|
|
1949
|
+
name: { kind: "Name", value: "showPendingOnly" },
|
|
1950
|
+
},
|
|
1951
|
+
type: {
|
|
1952
|
+
kind: "NonNullType",
|
|
1953
|
+
type: {
|
|
1954
|
+
kind: "NamedType",
|
|
1955
|
+
name: { kind: "Name", value: "Boolean" },
|
|
1956
|
+
},
|
|
1980
1957
|
},
|
|
1981
|
-
type: { kind: "NamedType", name: { kind: "Name", value: "String" } },
|
|
1982
1958
|
},
|
|
1983
1959
|
],
|
|
1984
1960
|
selectionSet: {
|
|
@@ -1986,77 +1962,101 @@ exports.GetRequestableAppsQueryDocument = {
|
|
|
1986
1962
|
selections: [
|
|
1987
1963
|
{
|
|
1988
1964
|
kind: "Field",
|
|
1989
|
-
name: { kind: "Name", value: "
|
|
1965
|
+
name: { kind: "Name", value: "requests" },
|
|
1990
1966
|
arguments: [
|
|
1991
1967
|
{
|
|
1992
1968
|
kind: "Argument",
|
|
1993
|
-
name: { kind: "Name", value: "
|
|
1969
|
+
name: { kind: "Name", value: "input" },
|
|
1994
1970
|
value: {
|
|
1995
1971
|
kind: "ObjectValue",
|
|
1996
1972
|
fields: [
|
|
1997
1973
|
{
|
|
1998
1974
|
kind: "ObjectField",
|
|
1999
|
-
name: { kind: "Name", value: "
|
|
2000
|
-
value: { kind: "EnumValue", value: "
|
|
1975
|
+
name: { kind: "Name", value: "requestType" },
|
|
1976
|
+
value: { kind: "EnumValue", value: "OUTGOING" },
|
|
2001
1977
|
},
|
|
2002
1978
|
{
|
|
2003
1979
|
kind: "ObjectField",
|
|
2004
|
-
name: { kind: "Name", value: "
|
|
1980
|
+
name: { kind: "Name", value: "maxNumEntries" },
|
|
2005
1981
|
value: {
|
|
2006
1982
|
kind: "Variable",
|
|
2007
|
-
name: { kind: "Name", value: "
|
|
1983
|
+
name: { kind: "Name", value: "pageSize" },
|
|
1984
|
+
},
|
|
1985
|
+
},
|
|
1986
|
+
{
|
|
1987
|
+
kind: "ObjectField",
|
|
1988
|
+
name: { kind: "Name", value: "filters" },
|
|
1989
|
+
value: {
|
|
1990
|
+
kind: "ObjectValue",
|
|
1991
|
+
fields: [
|
|
1992
|
+
{
|
|
1993
|
+
kind: "ObjectField",
|
|
1994
|
+
name: { kind: "Name", value: "showPendingOnly" },
|
|
1995
|
+
value: {
|
|
1996
|
+
kind: "Variable",
|
|
1997
|
+
name: { kind: "Name", value: "showPendingOnly" },
|
|
1998
|
+
},
|
|
1999
|
+
},
|
|
2000
|
+
],
|
|
2008
2001
|
},
|
|
2009
2002
|
},
|
|
2010
2003
|
],
|
|
2011
2004
|
},
|
|
2012
2005
|
},
|
|
2013
2006
|
],
|
|
2014
|
-
directives: [
|
|
2015
|
-
{
|
|
2016
|
-
kind: "Directive",
|
|
2017
|
-
name: { kind: "Name", value: "connection" },
|
|
2018
|
-
arguments: [
|
|
2019
|
-
{
|
|
2020
|
-
kind: "Argument",
|
|
2021
|
-
name: { kind: "Name", value: "key" },
|
|
2022
|
-
value: {
|
|
2023
|
-
kind: "StringValue",
|
|
2024
|
-
value: "paginated-app-dropdown",
|
|
2025
|
-
block: false,
|
|
2026
|
-
},
|
|
2027
|
-
},
|
|
2028
|
-
],
|
|
2029
|
-
},
|
|
2030
|
-
],
|
|
2031
2007
|
selectionSet: {
|
|
2032
2008
|
kind: "SelectionSet",
|
|
2033
2009
|
selections: [
|
|
2010
|
+
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
|
2034
2011
|
{
|
|
2035
|
-
kind: "
|
|
2036
|
-
|
|
2012
|
+
kind: "InlineFragment",
|
|
2013
|
+
typeCondition: {
|
|
2014
|
+
kind: "NamedType",
|
|
2015
|
+
name: { kind: "Name", value: "RequestsResult" },
|
|
2016
|
+
},
|
|
2037
2017
|
selectionSet: {
|
|
2038
2018
|
kind: "SelectionSet",
|
|
2039
2019
|
selections: [
|
|
2040
2020
|
{
|
|
2041
2021
|
kind: "Field",
|
|
2042
|
-
name: { kind: "Name", value: "
|
|
2022
|
+
name: { kind: "Name", value: "requestType" },
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
kind: "Field",
|
|
2026
|
+
name: { kind: "Name", value: "requests" },
|
|
2043
2027
|
selectionSet: {
|
|
2044
2028
|
kind: "SelectionSet",
|
|
2045
2029
|
selections: [
|
|
2046
2030
|
{
|
|
2047
2031
|
kind: "Field",
|
|
2048
|
-
name: {
|
|
2032
|
+
name: {
|
|
2033
|
+
kind: "Name",
|
|
2034
|
+
value: "durationInMinutes",
|
|
2035
|
+
},
|
|
2049
2036
|
},
|
|
2050
2037
|
{
|
|
2051
2038
|
kind: "Field",
|
|
2052
|
-
name: { kind: "Name", value: "
|
|
2039
|
+
name: { kind: "Name", value: "id" },
|
|
2053
2040
|
},
|
|
2054
2041
|
{
|
|
2055
|
-
kind: "
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2042
|
+
kind: "Field",
|
|
2043
|
+
name: { kind: "Name", value: "requester" },
|
|
2044
|
+
selectionSet: {
|
|
2045
|
+
kind: "SelectionSet",
|
|
2046
|
+
selections: [
|
|
2047
|
+
{
|
|
2048
|
+
kind: "Field",
|
|
2049
|
+
name: {
|
|
2050
|
+
kind: "Name",
|
|
2051
|
+
value: "displayName",
|
|
2052
|
+
},
|
|
2053
|
+
},
|
|
2054
|
+
],
|
|
2059
2055
|
},
|
|
2056
|
+
},
|
|
2057
|
+
{
|
|
2058
|
+
kind: "Field",
|
|
2059
|
+
name: { kind: "Name", value: "targetUser" },
|
|
2060
2060
|
selectionSet: {
|
|
2061
2061
|
kind: "SelectionSet",
|
|
2062
2062
|
selections: [
|
|
@@ -2064,41 +2064,328 @@ exports.GetRequestableAppsQueryDocument = {
|
|
|
2064
2064
|
kind: "Field",
|
|
2065
2065
|
name: {
|
|
2066
2066
|
kind: "Name",
|
|
2067
|
-
value: "
|
|
2067
|
+
value: "displayName",
|
|
2068
2068
|
},
|
|
2069
2069
|
},
|
|
2070
2070
|
],
|
|
2071
2071
|
},
|
|
2072
2072
|
},
|
|
2073
2073
|
{
|
|
2074
|
-
kind: "
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2074
|
+
kind: "Field",
|
|
2075
|
+
name: { kind: "Name", value: "reason" },
|
|
2076
|
+
},
|
|
2077
|
+
{
|
|
2078
|
+
kind: "Field",
|
|
2079
|
+
name: {
|
|
2080
|
+
kind: "Name",
|
|
2081
|
+
value: "requestedResources",
|
|
2078
2082
|
},
|
|
2079
2083
|
selectionSet: {
|
|
2080
2084
|
kind: "SelectionSet",
|
|
2081
2085
|
selections: [
|
|
2086
|
+
{
|
|
2087
|
+
kind: "Field",
|
|
2088
|
+
name: { kind: "Name", value: "resource" },
|
|
2089
|
+
selectionSet: {
|
|
2090
|
+
kind: "SelectionSet",
|
|
2091
|
+
selections: [
|
|
2092
|
+
{
|
|
2093
|
+
kind: "Field",
|
|
2094
|
+
name: {
|
|
2095
|
+
kind: "Name",
|
|
2096
|
+
value: "displayName",
|
|
2097
|
+
},
|
|
2098
|
+
},
|
|
2099
|
+
{
|
|
2100
|
+
kind: "Field",
|
|
2101
|
+
name: { kind: "Name", value: "id" },
|
|
2102
|
+
},
|
|
2103
|
+
],
|
|
2104
|
+
},
|
|
2105
|
+
},
|
|
2082
2106
|
{
|
|
2083
2107
|
kind: "Field",
|
|
2084
2108
|
name: {
|
|
2085
2109
|
kind: "Name",
|
|
2086
|
-
value: "
|
|
2110
|
+
value: "accessLevel",
|
|
2111
|
+
},
|
|
2112
|
+
selectionSet: {
|
|
2113
|
+
kind: "SelectionSet",
|
|
2114
|
+
selections: [
|
|
2115
|
+
{
|
|
2116
|
+
kind: "Field",
|
|
2117
|
+
name: {
|
|
2118
|
+
kind: "Name",
|
|
2119
|
+
value: "accessLevelName",
|
|
2120
|
+
},
|
|
2121
|
+
},
|
|
2122
|
+
{
|
|
2123
|
+
kind: "Field",
|
|
2124
|
+
name: {
|
|
2125
|
+
kind: "Name",
|
|
2126
|
+
value: "accessLevelRemoteId",
|
|
2127
|
+
},
|
|
2128
|
+
},
|
|
2129
|
+
],
|
|
2130
|
+
},
|
|
2131
|
+
},
|
|
2132
|
+
],
|
|
2133
|
+
},
|
|
2134
|
+
},
|
|
2135
|
+
{
|
|
2136
|
+
kind: "Field",
|
|
2137
|
+
name: { kind: "Name", value: "requestedGroups" },
|
|
2138
|
+
selectionSet: {
|
|
2139
|
+
kind: "SelectionSet",
|
|
2140
|
+
selections: [
|
|
2141
|
+
{
|
|
2142
|
+
kind: "Field",
|
|
2143
|
+
name: { kind: "Name", value: "group" },
|
|
2144
|
+
selectionSet: {
|
|
2145
|
+
kind: "SelectionSet",
|
|
2146
|
+
selections: [
|
|
2147
|
+
{
|
|
2148
|
+
kind: "Field",
|
|
2149
|
+
name: { kind: "Name", value: "name" },
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
kind: "Field",
|
|
2153
|
+
name: { kind: "Name", value: "id" },
|
|
2154
|
+
},
|
|
2155
|
+
],
|
|
2156
|
+
},
|
|
2157
|
+
},
|
|
2158
|
+
{
|
|
2159
|
+
kind: "Field",
|
|
2160
|
+
name: {
|
|
2161
|
+
kind: "Name",
|
|
2162
|
+
value: "accessLevel",
|
|
2163
|
+
},
|
|
2164
|
+
selectionSet: {
|
|
2165
|
+
kind: "SelectionSet",
|
|
2166
|
+
selections: [
|
|
2167
|
+
{
|
|
2168
|
+
kind: "Field",
|
|
2169
|
+
name: {
|
|
2170
|
+
kind: "Name",
|
|
2171
|
+
value: "accessLevelName",
|
|
2172
|
+
},
|
|
2173
|
+
},
|
|
2174
|
+
{
|
|
2175
|
+
kind: "Field",
|
|
2176
|
+
name: {
|
|
2177
|
+
kind: "Name",
|
|
2178
|
+
value: "accessLevelRemoteId",
|
|
2179
|
+
},
|
|
2180
|
+
},
|
|
2181
|
+
],
|
|
2087
2182
|
},
|
|
2088
2183
|
},
|
|
2089
2184
|
],
|
|
2090
2185
|
},
|
|
2091
2186
|
},
|
|
2187
|
+
{
|
|
2188
|
+
kind: "Field",
|
|
2189
|
+
name: { kind: "Name", value: "status" },
|
|
2190
|
+
},
|
|
2092
2191
|
],
|
|
2093
2192
|
},
|
|
2094
2193
|
},
|
|
2095
2194
|
],
|
|
2096
2195
|
},
|
|
2097
2196
|
},
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2197
|
+
],
|
|
2198
|
+
},
|
|
2199
|
+
},
|
|
2200
|
+
],
|
|
2201
|
+
},
|
|
2202
|
+
},
|
|
2203
|
+
],
|
|
2204
|
+
};
|
|
2205
|
+
exports.CheckAuthSessionQueryDocument = {
|
|
2206
|
+
kind: "Document",
|
|
2207
|
+
definitions: [
|
|
2208
|
+
{
|
|
2209
|
+
kind: "OperationDefinition",
|
|
2210
|
+
operation: "query",
|
|
2211
|
+
name: { kind: "Name", value: "CheckAuthSessionQuery" },
|
|
2212
|
+
selectionSet: {
|
|
2213
|
+
kind: "SelectionSet",
|
|
2214
|
+
selections: [
|
|
2215
|
+
{
|
|
2216
|
+
kind: "Field",
|
|
2217
|
+
name: { kind: "Name", value: "organizationSettings" },
|
|
2218
|
+
selectionSet: {
|
|
2219
|
+
kind: "SelectionSet",
|
|
2220
|
+
selections: [
|
|
2221
|
+
{
|
|
2222
|
+
kind: "InlineFragment",
|
|
2223
|
+
typeCondition: {
|
|
2224
|
+
kind: "NamedType",
|
|
2225
|
+
name: { kind: "Name", value: "OrganizationSettingsResult" },
|
|
2226
|
+
},
|
|
2227
|
+
selectionSet: {
|
|
2228
|
+
kind: "SelectionSet",
|
|
2229
|
+
selections: [
|
|
2230
|
+
{
|
|
2231
|
+
kind: "Field",
|
|
2232
|
+
name: { kind: "Name", value: "settings" },
|
|
2233
|
+
selectionSet: {
|
|
2234
|
+
kind: "SelectionSet",
|
|
2235
|
+
selections: [
|
|
2236
|
+
{
|
|
2237
|
+
kind: "Field",
|
|
2238
|
+
name: { kind: "Name", value: "id" },
|
|
2239
|
+
},
|
|
2240
|
+
],
|
|
2241
|
+
},
|
|
2242
|
+
},
|
|
2243
|
+
],
|
|
2244
|
+
},
|
|
2245
|
+
},
|
|
2246
|
+
],
|
|
2247
|
+
},
|
|
2248
|
+
},
|
|
2249
|
+
],
|
|
2250
|
+
},
|
|
2251
|
+
},
|
|
2252
|
+
],
|
|
2253
|
+
};
|
|
2254
|
+
exports.GetRequestableAppsQueryDocument = {
|
|
2255
|
+
kind: "Document",
|
|
2256
|
+
definitions: [
|
|
2257
|
+
{
|
|
2258
|
+
kind: "OperationDefinition",
|
|
2259
|
+
operation: "query",
|
|
2260
|
+
name: { kind: "Name", value: "GetRequestableAppsQuery" },
|
|
2261
|
+
variableDefinitions: [
|
|
2262
|
+
{
|
|
2263
|
+
kind: "VariableDefinition",
|
|
2264
|
+
variable: {
|
|
2265
|
+
kind: "Variable",
|
|
2266
|
+
name: { kind: "Name", value: "searchQuery" },
|
|
2267
|
+
},
|
|
2268
|
+
type: { kind: "NamedType", name: { kind: "Name", value: "String" } },
|
|
2269
|
+
},
|
|
2270
|
+
],
|
|
2271
|
+
selectionSet: {
|
|
2272
|
+
kind: "SelectionSet",
|
|
2273
|
+
selections: [
|
|
2274
|
+
{
|
|
2275
|
+
kind: "Field",
|
|
2276
|
+
name: { kind: "Name", value: "appsV2" },
|
|
2277
|
+
arguments: [
|
|
2278
|
+
{
|
|
2279
|
+
kind: "Argument",
|
|
2280
|
+
name: { kind: "Name", value: "filters" },
|
|
2281
|
+
value: {
|
|
2282
|
+
kind: "ObjectValue",
|
|
2283
|
+
fields: [
|
|
2284
|
+
{
|
|
2285
|
+
kind: "ObjectField",
|
|
2286
|
+
name: { kind: "Name", value: "access" },
|
|
2287
|
+
value: { kind: "EnumValue", value: "REQUESTABLE" },
|
|
2288
|
+
},
|
|
2289
|
+
{
|
|
2290
|
+
kind: "ObjectField",
|
|
2291
|
+
name: { kind: "Name", value: "searchQuery" },
|
|
2292
|
+
value: {
|
|
2293
|
+
kind: "Variable",
|
|
2294
|
+
name: { kind: "Name", value: "searchQuery" },
|
|
2295
|
+
},
|
|
2296
|
+
},
|
|
2297
|
+
],
|
|
2298
|
+
},
|
|
2299
|
+
},
|
|
2300
|
+
],
|
|
2301
|
+
directives: [
|
|
2302
|
+
{
|
|
2303
|
+
kind: "Directive",
|
|
2304
|
+
name: { kind: "Name", value: "connection" },
|
|
2305
|
+
arguments: [
|
|
2306
|
+
{
|
|
2307
|
+
kind: "Argument",
|
|
2308
|
+
name: { kind: "Name", value: "key" },
|
|
2309
|
+
value: {
|
|
2310
|
+
kind: "StringValue",
|
|
2311
|
+
value: "paginated-app-dropdown",
|
|
2312
|
+
block: false,
|
|
2313
|
+
},
|
|
2314
|
+
},
|
|
2315
|
+
],
|
|
2316
|
+
},
|
|
2317
|
+
],
|
|
2318
|
+
selectionSet: {
|
|
2319
|
+
kind: "SelectionSet",
|
|
2320
|
+
selections: [
|
|
2321
|
+
{
|
|
2322
|
+
kind: "Field",
|
|
2323
|
+
name: { kind: "Name", value: "edges" },
|
|
2324
|
+
selectionSet: {
|
|
2325
|
+
kind: "SelectionSet",
|
|
2326
|
+
selections: [
|
|
2327
|
+
{
|
|
2328
|
+
kind: "Field",
|
|
2329
|
+
name: { kind: "Name", value: "node" },
|
|
2330
|
+
selectionSet: {
|
|
2331
|
+
kind: "SelectionSet",
|
|
2332
|
+
selections: [
|
|
2333
|
+
{
|
|
2334
|
+
kind: "Field",
|
|
2335
|
+
name: { kind: "Name", value: "id" },
|
|
2336
|
+
},
|
|
2337
|
+
{
|
|
2338
|
+
kind: "Field",
|
|
2339
|
+
name: { kind: "Name", value: "displayName" },
|
|
2340
|
+
},
|
|
2341
|
+
{
|
|
2342
|
+
kind: "InlineFragment",
|
|
2343
|
+
typeCondition: {
|
|
2344
|
+
kind: "NamedType",
|
|
2345
|
+
name: { kind: "Name", value: "Connection" },
|
|
2346
|
+
},
|
|
2347
|
+
selectionSet: {
|
|
2348
|
+
kind: "SelectionSet",
|
|
2349
|
+
selections: [
|
|
2350
|
+
{
|
|
2351
|
+
kind: "Field",
|
|
2352
|
+
name: {
|
|
2353
|
+
kind: "Name",
|
|
2354
|
+
value: "connectionType",
|
|
2355
|
+
},
|
|
2356
|
+
},
|
|
2357
|
+
],
|
|
2358
|
+
},
|
|
2359
|
+
},
|
|
2360
|
+
{
|
|
2361
|
+
kind: "InlineFragment",
|
|
2362
|
+
typeCondition: {
|
|
2363
|
+
kind: "NamedType",
|
|
2364
|
+
name: { kind: "Name", value: "Resource" },
|
|
2365
|
+
},
|
|
2366
|
+
selectionSet: {
|
|
2367
|
+
kind: "SelectionSet",
|
|
2368
|
+
selections: [
|
|
2369
|
+
{
|
|
2370
|
+
kind: "Field",
|
|
2371
|
+
name: {
|
|
2372
|
+
kind: "Name",
|
|
2373
|
+
value: "resourceType",
|
|
2374
|
+
},
|
|
2375
|
+
},
|
|
2376
|
+
],
|
|
2377
|
+
},
|
|
2378
|
+
},
|
|
2379
|
+
],
|
|
2380
|
+
},
|
|
2381
|
+
},
|
|
2382
|
+
],
|
|
2383
|
+
},
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
kind: "Field",
|
|
2387
|
+
name: { kind: "Name", value: "pageInfo" },
|
|
2388
|
+
selectionSet: {
|
|
2102
2389
|
kind: "SelectionSet",
|
|
2103
2390
|
selections: [
|
|
2104
2391
|
{
|
|
@@ -2380,10 +2667,6 @@ exports.ResourceAccessLevelsDocument = {
|
|
|
2380
2667
|
selectionSet: {
|
|
2381
2668
|
kind: "SelectionSet",
|
|
2382
2669
|
selections: [
|
|
2383
|
-
{
|
|
2384
|
-
kind: "Field",
|
|
2385
|
-
name: { kind: "Name", value: "__typename" },
|
|
2386
|
-
},
|
|
2387
2670
|
{
|
|
2388
2671
|
kind: "InlineFragment",
|
|
2389
2672
|
typeCondition: {
|
|
@@ -2443,57 +2726,25 @@ exports.ResourceAccessLevelsDocument = {
|
|
|
2443
2726
|
},
|
|
2444
2727
|
],
|
|
2445
2728
|
};
|
|
2446
|
-
exports.
|
|
2729
|
+
exports.GroupAccessLevelsDocument = {
|
|
2447
2730
|
kind: "Document",
|
|
2448
2731
|
definitions: [
|
|
2449
2732
|
{
|
|
2450
2733
|
kind: "OperationDefinition",
|
|
2451
2734
|
operation: "query",
|
|
2452
|
-
name: { kind: "Name", value: "
|
|
2735
|
+
name: { kind: "Name", value: "GroupAccessLevels" },
|
|
2453
2736
|
variableDefinitions: [
|
|
2454
2737
|
{
|
|
2455
2738
|
kind: "VariableDefinition",
|
|
2456
2739
|
variable: {
|
|
2457
2740
|
kind: "Variable",
|
|
2458
|
-
name: { kind: "Name", value: "
|
|
2459
|
-
},
|
|
2460
|
-
type: {
|
|
2461
|
-
kind: "NonNullType",
|
|
2462
|
-
type: {
|
|
2463
|
-
kind: "ListType",
|
|
2464
|
-
type: {
|
|
2465
|
-
kind: "NonNullType",
|
|
2466
|
-
type: {
|
|
2467
|
-
kind: "NamedType",
|
|
2468
|
-
name: {
|
|
2469
|
-
kind: "Name",
|
|
2470
|
-
value: "RequestConfigurationResourceInput",
|
|
2471
|
-
},
|
|
2472
|
-
},
|
|
2473
|
-
},
|
|
2474
|
-
},
|
|
2475
|
-
},
|
|
2476
|
-
},
|
|
2477
|
-
{
|
|
2478
|
-
kind: "VariableDefinition",
|
|
2479
|
-
variable: {
|
|
2480
|
-
kind: "Variable",
|
|
2481
|
-
name: { kind: "Name", value: "requestedGroups" },
|
|
2741
|
+
name: { kind: "Name", value: "groupId" },
|
|
2482
2742
|
},
|
|
2483
2743
|
type: {
|
|
2484
2744
|
kind: "NonNullType",
|
|
2485
2745
|
type: {
|
|
2486
|
-
kind: "
|
|
2487
|
-
|
|
2488
|
-
kind: "NonNullType",
|
|
2489
|
-
type: {
|
|
2490
|
-
kind: "NamedType",
|
|
2491
|
-
name: {
|
|
2492
|
-
kind: "Name",
|
|
2493
|
-
value: "RequestConfigurationGroupInput",
|
|
2494
|
-
},
|
|
2495
|
-
},
|
|
2496
|
-
},
|
|
2746
|
+
kind: "NamedType",
|
|
2747
|
+
name: { kind: "Name", value: "GroupId" },
|
|
2497
2748
|
},
|
|
2498
2749
|
},
|
|
2499
2750
|
},
|
|
@@ -2503,7 +2754,7 @@ exports.RequestDefaultsDocument = {
|
|
|
2503
2754
|
selections: [
|
|
2504
2755
|
{
|
|
2505
2756
|
kind: "Field",
|
|
2506
|
-
name: { kind: "Name", value: "
|
|
2757
|
+
name: { kind: "Name", value: "groupAccessLevels" },
|
|
2507
2758
|
arguments: [
|
|
2508
2759
|
{
|
|
2509
2760
|
kind: "Argument",
|
|
@@ -2513,18 +2764,10 @@ exports.RequestDefaultsDocument = {
|
|
|
2513
2764
|
fields: [
|
|
2514
2765
|
{
|
|
2515
2766
|
kind: "ObjectField",
|
|
2516
|
-
name: { kind: "Name", value: "
|
|
2517
|
-
value: {
|
|
2518
|
-
kind: "Variable",
|
|
2519
|
-
name: { kind: "Name", value: "requestedResources" },
|
|
2520
|
-
},
|
|
2521
|
-
},
|
|
2522
|
-
{
|
|
2523
|
-
kind: "ObjectField",
|
|
2524
|
-
name: { kind: "Name", value: "requestedGroups" },
|
|
2767
|
+
name: { kind: "Name", value: "groupId" },
|
|
2525
2768
|
value: {
|
|
2526
2769
|
kind: "Variable",
|
|
2527
|
-
name: { kind: "Name", value: "
|
|
2770
|
+
name: { kind: "Name", value: "groupId" },
|
|
2528
2771
|
},
|
|
2529
2772
|
},
|
|
2530
2773
|
],
|
|
@@ -2535,42 +2778,1253 @@ exports.RequestDefaultsDocument = {
|
|
|
2535
2778
|
kind: "SelectionSet",
|
|
2536
2779
|
selections: [
|
|
2537
2780
|
{
|
|
2538
|
-
kind: "
|
|
2539
|
-
|
|
2781
|
+
kind: "InlineFragment",
|
|
2782
|
+
typeCondition: {
|
|
2783
|
+
kind: "NamedType",
|
|
2784
|
+
name: { kind: "Name", value: "GroupAccessLevelsResult" },
|
|
2785
|
+
},
|
|
2540
2786
|
selectionSet: {
|
|
2541
2787
|
kind: "SelectionSet",
|
|
2542
2788
|
selections: [
|
|
2543
2789
|
{
|
|
2544
2790
|
kind: "Field",
|
|
2545
|
-
name: { kind: "Name", value: "
|
|
2791
|
+
name: { kind: "Name", value: "groupId" },
|
|
2546
2792
|
},
|
|
2547
|
-
{
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2793
|
+
{
|
|
2794
|
+
kind: "Field",
|
|
2795
|
+
name: { kind: "Name", value: "accessLevels" },
|
|
2796
|
+
selectionSet: {
|
|
2797
|
+
kind: "SelectionSet",
|
|
2798
|
+
selections: [
|
|
2799
|
+
{
|
|
2800
|
+
kind: "InlineFragment",
|
|
2801
|
+
typeCondition: {
|
|
2802
|
+
kind: "NamedType",
|
|
2803
|
+
name: {
|
|
2804
|
+
kind: "Name",
|
|
2805
|
+
value: "GroupAccessLevel",
|
|
2806
|
+
},
|
|
2807
|
+
},
|
|
2808
|
+
selectionSet: {
|
|
2809
|
+
kind: "SelectionSet",
|
|
2810
|
+
selections: [
|
|
2811
|
+
{
|
|
2812
|
+
kind: "Field",
|
|
2813
|
+
name: {
|
|
2814
|
+
kind: "Name",
|
|
2815
|
+
value: "accessLevelName",
|
|
2816
|
+
},
|
|
2817
|
+
},
|
|
2818
|
+
{
|
|
2819
|
+
kind: "Field",
|
|
2820
|
+
name: {
|
|
2821
|
+
kind: "Name",
|
|
2822
|
+
value: "accessLevelRemoteId",
|
|
2823
|
+
},
|
|
2824
|
+
},
|
|
2825
|
+
],
|
|
2826
|
+
},
|
|
2827
|
+
},
|
|
2828
|
+
],
|
|
2829
|
+
},
|
|
2830
|
+
},
|
|
2831
|
+
],
|
|
2832
|
+
},
|
|
2833
|
+
},
|
|
2834
|
+
],
|
|
2835
|
+
},
|
|
2836
|
+
},
|
|
2837
|
+
],
|
|
2838
|
+
},
|
|
2839
|
+
},
|
|
2840
|
+
],
|
|
2841
|
+
};
|
|
2842
|
+
exports.RequestDefaultsDocument = {
|
|
2843
|
+
kind: "Document",
|
|
2844
|
+
definitions: [
|
|
2845
|
+
{
|
|
2846
|
+
kind: "OperationDefinition",
|
|
2847
|
+
operation: "query",
|
|
2848
|
+
name: { kind: "Name", value: "RequestDefaults" },
|
|
2849
|
+
variableDefinitions: [
|
|
2850
|
+
{
|
|
2851
|
+
kind: "VariableDefinition",
|
|
2852
|
+
variable: {
|
|
2853
|
+
kind: "Variable",
|
|
2854
|
+
name: { kind: "Name", value: "requestedResources" },
|
|
2855
|
+
},
|
|
2856
|
+
type: {
|
|
2857
|
+
kind: "NonNullType",
|
|
2858
|
+
type: {
|
|
2859
|
+
kind: "ListType",
|
|
2860
|
+
type: {
|
|
2861
|
+
kind: "NonNullType",
|
|
2862
|
+
type: {
|
|
2863
|
+
kind: "NamedType",
|
|
2864
|
+
name: {
|
|
2865
|
+
kind: "Name",
|
|
2866
|
+
value: "RequestConfigurationResourceInput",
|
|
2867
|
+
},
|
|
2868
|
+
},
|
|
2869
|
+
},
|
|
2870
|
+
},
|
|
2871
|
+
},
|
|
2872
|
+
},
|
|
2873
|
+
{
|
|
2874
|
+
kind: "VariableDefinition",
|
|
2875
|
+
variable: {
|
|
2876
|
+
kind: "Variable",
|
|
2877
|
+
name: { kind: "Name", value: "requestedGroups" },
|
|
2878
|
+
},
|
|
2879
|
+
type: {
|
|
2880
|
+
kind: "NonNullType",
|
|
2881
|
+
type: {
|
|
2882
|
+
kind: "ListType",
|
|
2883
|
+
type: {
|
|
2884
|
+
kind: "NonNullType",
|
|
2885
|
+
type: {
|
|
2886
|
+
kind: "NamedType",
|
|
2887
|
+
name: {
|
|
2888
|
+
kind: "Name",
|
|
2889
|
+
value: "RequestConfigurationGroupInput",
|
|
2890
|
+
},
|
|
2891
|
+
},
|
|
2892
|
+
},
|
|
2893
|
+
},
|
|
2894
|
+
},
|
|
2895
|
+
},
|
|
2896
|
+
],
|
|
2897
|
+
selectionSet: {
|
|
2898
|
+
kind: "SelectionSet",
|
|
2899
|
+
selections: [
|
|
2900
|
+
{
|
|
2901
|
+
kind: "Field",
|
|
2902
|
+
name: { kind: "Name", value: "requestDefaults" },
|
|
2903
|
+
arguments: [
|
|
2904
|
+
{
|
|
2905
|
+
kind: "Argument",
|
|
2906
|
+
name: { kind: "Name", value: "input" },
|
|
2907
|
+
value: {
|
|
2908
|
+
kind: "ObjectValue",
|
|
2909
|
+
fields: [
|
|
2910
|
+
{
|
|
2911
|
+
kind: "ObjectField",
|
|
2912
|
+
name: { kind: "Name", value: "requestedResources" },
|
|
2913
|
+
value: {
|
|
2914
|
+
kind: "Variable",
|
|
2915
|
+
name: { kind: "Name", value: "requestedResources" },
|
|
2916
|
+
},
|
|
2917
|
+
},
|
|
2918
|
+
{
|
|
2919
|
+
kind: "ObjectField",
|
|
2920
|
+
name: { kind: "Name", value: "requestedGroups" },
|
|
2921
|
+
value: {
|
|
2922
|
+
kind: "Variable",
|
|
2923
|
+
name: { kind: "Name", value: "requestedGroups" },
|
|
2924
|
+
},
|
|
2925
|
+
},
|
|
2926
|
+
],
|
|
2927
|
+
},
|
|
2928
|
+
},
|
|
2929
|
+
],
|
|
2930
|
+
selectionSet: {
|
|
2931
|
+
kind: "SelectionSet",
|
|
2932
|
+
selections: [
|
|
2933
|
+
{
|
|
2934
|
+
kind: "InlineFragment",
|
|
2935
|
+
typeCondition: {
|
|
2936
|
+
kind: "NamedType",
|
|
2937
|
+
name: { kind: "Name", value: "RequestDefaults" },
|
|
2938
|
+
},
|
|
2939
|
+
selectionSet: {
|
|
2940
|
+
kind: "SelectionSet",
|
|
2941
|
+
selections: [
|
|
2942
|
+
{
|
|
2943
|
+
kind: "Field",
|
|
2944
|
+
name: { kind: "Name", value: "durationOptions" },
|
|
2945
|
+
selectionSet: {
|
|
2946
|
+
kind: "SelectionSet",
|
|
2947
|
+
selections: [
|
|
2948
|
+
{
|
|
2949
|
+
kind: "Field",
|
|
2950
|
+
name: {
|
|
2951
|
+
kind: "Name",
|
|
2952
|
+
value: "durationInMinutes",
|
|
2953
|
+
},
|
|
2954
|
+
},
|
|
2955
|
+
{
|
|
2956
|
+
kind: "Field",
|
|
2957
|
+
name: { kind: "Name", value: "label" },
|
|
2958
|
+
},
|
|
2959
|
+
],
|
|
2960
|
+
},
|
|
2961
|
+
},
|
|
2962
|
+
{
|
|
2963
|
+
kind: "Field",
|
|
2964
|
+
name: {
|
|
2965
|
+
kind: "Name",
|
|
2966
|
+
value: "recommendedDurationInMinutes",
|
|
2967
|
+
},
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
kind: "Field",
|
|
2971
|
+
name: {
|
|
2972
|
+
kind: "Name",
|
|
2973
|
+
value: "defaultDurationInMinutes",
|
|
2974
|
+
},
|
|
2975
|
+
},
|
|
2976
|
+
{
|
|
2977
|
+
kind: "Field",
|
|
2978
|
+
name: { kind: "Name", value: "maxDurationInMinutes" },
|
|
2979
|
+
},
|
|
2980
|
+
{
|
|
2981
|
+
kind: "Field",
|
|
2982
|
+
name: { kind: "Name", value: "requireSupportTicket" },
|
|
2983
|
+
},
|
|
2984
|
+
{
|
|
2985
|
+
kind: "Field",
|
|
2986
|
+
name: { kind: "Name", value: "reasonOptional" },
|
|
2987
|
+
},
|
|
2988
|
+
{
|
|
2989
|
+
kind: "Field",
|
|
2990
|
+
name: { kind: "Name", value: "requesterIsAdmin" },
|
|
2991
|
+
},
|
|
2992
|
+
],
|
|
2993
|
+
},
|
|
2994
|
+
},
|
|
2995
|
+
],
|
|
2996
|
+
},
|
|
2997
|
+
},
|
|
2998
|
+
],
|
|
2999
|
+
},
|
|
3000
|
+
},
|
|
3001
|
+
],
|
|
3002
|
+
};
|
|
3003
|
+
exports.CreateRequestDocument = {
|
|
3004
|
+
kind: "Document",
|
|
3005
|
+
definitions: [
|
|
3006
|
+
{
|
|
3007
|
+
kind: "OperationDefinition",
|
|
3008
|
+
operation: "mutation",
|
|
3009
|
+
name: { kind: "Name", value: "CreateRequest" },
|
|
3010
|
+
variableDefinitions: [
|
|
3011
|
+
{
|
|
3012
|
+
kind: "VariableDefinition",
|
|
3013
|
+
variable: {
|
|
3014
|
+
kind: "Variable",
|
|
3015
|
+
name: { kind: "Name", value: "requestedResources" },
|
|
3016
|
+
},
|
|
3017
|
+
type: {
|
|
3018
|
+
kind: "NonNullType",
|
|
3019
|
+
type: {
|
|
3020
|
+
kind: "ListType",
|
|
3021
|
+
type: {
|
|
3022
|
+
kind: "NonNullType",
|
|
3023
|
+
type: {
|
|
3024
|
+
kind: "NamedType",
|
|
3025
|
+
name: { kind: "Name", value: "RequestedResourceInput" },
|
|
3026
|
+
},
|
|
3027
|
+
},
|
|
3028
|
+
},
|
|
3029
|
+
},
|
|
3030
|
+
},
|
|
3031
|
+
{
|
|
3032
|
+
kind: "VariableDefinition",
|
|
3033
|
+
variable: {
|
|
3034
|
+
kind: "Variable",
|
|
3035
|
+
name: { kind: "Name", value: "requestedGroups" },
|
|
3036
|
+
},
|
|
3037
|
+
type: {
|
|
3038
|
+
kind: "NonNullType",
|
|
3039
|
+
type: {
|
|
3040
|
+
kind: "ListType",
|
|
3041
|
+
type: {
|
|
3042
|
+
kind: "NonNullType",
|
|
3043
|
+
type: {
|
|
3044
|
+
kind: "NamedType",
|
|
3045
|
+
name: { kind: "Name", value: "RequestedGroupInput" },
|
|
3046
|
+
},
|
|
3047
|
+
},
|
|
3048
|
+
},
|
|
3049
|
+
},
|
|
3050
|
+
},
|
|
3051
|
+
{
|
|
3052
|
+
kind: "VariableDefinition",
|
|
3053
|
+
variable: {
|
|
3054
|
+
kind: "Variable",
|
|
3055
|
+
name: { kind: "Name", value: "reason" },
|
|
3056
|
+
},
|
|
3057
|
+
type: {
|
|
3058
|
+
kind: "NonNullType",
|
|
3059
|
+
type: {
|
|
3060
|
+
kind: "NamedType",
|
|
3061
|
+
name: { kind: "Name", value: "String" },
|
|
3062
|
+
},
|
|
3063
|
+
},
|
|
3064
|
+
},
|
|
3065
|
+
{
|
|
3066
|
+
kind: "VariableDefinition",
|
|
3067
|
+
variable: {
|
|
3068
|
+
kind: "Variable",
|
|
3069
|
+
name: { kind: "Name", value: "durationInMinutes" },
|
|
3070
|
+
},
|
|
3071
|
+
type: { kind: "NamedType", name: { kind: "Name", value: "Int" } },
|
|
3072
|
+
},
|
|
3073
|
+
],
|
|
3074
|
+
selectionSet: {
|
|
3075
|
+
kind: "SelectionSet",
|
|
3076
|
+
selections: [
|
|
3077
|
+
{
|
|
3078
|
+
kind: "Field",
|
|
3079
|
+
name: { kind: "Name", value: "createRequest" },
|
|
3080
|
+
arguments: [
|
|
3081
|
+
{
|
|
3082
|
+
kind: "Argument",
|
|
3083
|
+
name: { kind: "Name", value: "input" },
|
|
3084
|
+
value: {
|
|
3085
|
+
kind: "ObjectValue",
|
|
3086
|
+
fields: [
|
|
3087
|
+
{
|
|
3088
|
+
kind: "ObjectField",
|
|
3089
|
+
name: { kind: "Name", value: "requestedResources" },
|
|
3090
|
+
value: {
|
|
3091
|
+
kind: "Variable",
|
|
3092
|
+
name: { kind: "Name", value: "requestedResources" },
|
|
3093
|
+
},
|
|
3094
|
+
},
|
|
3095
|
+
{
|
|
3096
|
+
kind: "ObjectField",
|
|
3097
|
+
name: { kind: "Name", value: "requestedGroups" },
|
|
3098
|
+
value: {
|
|
3099
|
+
kind: "Variable",
|
|
3100
|
+
name: { kind: "Name", value: "requestedGroups" },
|
|
3101
|
+
},
|
|
3102
|
+
},
|
|
3103
|
+
{
|
|
3104
|
+
kind: "ObjectField",
|
|
3105
|
+
name: { kind: "Name", value: "reason" },
|
|
3106
|
+
value: {
|
|
3107
|
+
kind: "Variable",
|
|
3108
|
+
name: { kind: "Name", value: "reason" },
|
|
3109
|
+
},
|
|
3110
|
+
},
|
|
3111
|
+
{
|
|
3112
|
+
kind: "ObjectField",
|
|
3113
|
+
name: { kind: "Name", value: "durationInMinutes" },
|
|
3114
|
+
value: {
|
|
3115
|
+
kind: "Variable",
|
|
3116
|
+
name: { kind: "Name", value: "durationInMinutes" },
|
|
3117
|
+
},
|
|
3118
|
+
},
|
|
3119
|
+
],
|
|
3120
|
+
},
|
|
3121
|
+
},
|
|
3122
|
+
],
|
|
3123
|
+
selectionSet: {
|
|
3124
|
+
kind: "SelectionSet",
|
|
3125
|
+
selections: [
|
|
3126
|
+
{
|
|
3127
|
+
kind: "InlineFragment",
|
|
3128
|
+
typeCondition: {
|
|
3129
|
+
kind: "NamedType",
|
|
3130
|
+
name: { kind: "Name", value: "CreateRequestResult" },
|
|
3131
|
+
},
|
|
3132
|
+
selectionSet: {
|
|
3133
|
+
kind: "SelectionSet",
|
|
3134
|
+
selections: [
|
|
3135
|
+
{
|
|
3136
|
+
kind: "Field",
|
|
3137
|
+
name: { kind: "Name", value: "request" },
|
|
3138
|
+
selectionSet: {
|
|
3139
|
+
kind: "SelectionSet",
|
|
3140
|
+
selections: [
|
|
3141
|
+
{
|
|
3142
|
+
kind: "Field",
|
|
3143
|
+
name: { kind: "Name", value: "id" },
|
|
3144
|
+
},
|
|
3145
|
+
{
|
|
3146
|
+
kind: "Field",
|
|
3147
|
+
name: { kind: "Name", value: "status" },
|
|
3148
|
+
},
|
|
3149
|
+
],
|
|
3150
|
+
},
|
|
3151
|
+
},
|
|
3152
|
+
],
|
|
3153
|
+
},
|
|
3154
|
+
},
|
|
3155
|
+
{
|
|
3156
|
+
kind: "InlineFragment",
|
|
3157
|
+
typeCondition: {
|
|
3158
|
+
kind: "NamedType",
|
|
3159
|
+
name: {
|
|
3160
|
+
kind: "Name",
|
|
3161
|
+
value: "RequestDurationTooLargeError",
|
|
3162
|
+
},
|
|
3163
|
+
},
|
|
3164
|
+
selectionSet: {
|
|
3165
|
+
kind: "SelectionSet",
|
|
3166
|
+
selections: [
|
|
3167
|
+
{
|
|
3168
|
+
kind: "Field",
|
|
3169
|
+
name: { kind: "Name", value: "message" },
|
|
3170
|
+
},
|
|
3171
|
+
],
|
|
3172
|
+
},
|
|
3173
|
+
},
|
|
3174
|
+
{
|
|
3175
|
+
kind: "InlineFragment",
|
|
3176
|
+
typeCondition: {
|
|
3177
|
+
kind: "NamedType",
|
|
3178
|
+
name: {
|
|
3179
|
+
kind: "Name",
|
|
3180
|
+
value: "RequestRequiresUserAuthTokenForConnectionError",
|
|
3181
|
+
},
|
|
3182
|
+
},
|
|
3183
|
+
selectionSet: {
|
|
3184
|
+
kind: "SelectionSet",
|
|
3185
|
+
selections: [
|
|
3186
|
+
{
|
|
3187
|
+
kind: "Field",
|
|
3188
|
+
name: { kind: "Name", value: "message" },
|
|
3189
|
+
},
|
|
3190
|
+
],
|
|
3191
|
+
},
|
|
3192
|
+
},
|
|
3193
|
+
{
|
|
3194
|
+
kind: "InlineFragment",
|
|
3195
|
+
typeCondition: {
|
|
3196
|
+
kind: "NamedType",
|
|
3197
|
+
name: {
|
|
3198
|
+
kind: "Name",
|
|
3199
|
+
value: "NoReviewersSetForOwnerError",
|
|
3200
|
+
},
|
|
3201
|
+
},
|
|
3202
|
+
selectionSet: {
|
|
3203
|
+
kind: "SelectionSet",
|
|
3204
|
+
selections: [
|
|
3205
|
+
{
|
|
3206
|
+
kind: "Field",
|
|
3207
|
+
name: { kind: "Name", value: "message" },
|
|
3208
|
+
},
|
|
3209
|
+
{
|
|
3210
|
+
kind: "Field",
|
|
3211
|
+
name: { kind: "Name", value: "ownerId" },
|
|
3212
|
+
},
|
|
3213
|
+
],
|
|
3214
|
+
},
|
|
3215
|
+
},
|
|
3216
|
+
{
|
|
3217
|
+
kind: "InlineFragment",
|
|
3218
|
+
typeCondition: {
|
|
3219
|
+
kind: "NamedType",
|
|
3220
|
+
name: {
|
|
3221
|
+
kind: "Name",
|
|
3222
|
+
value: "NoReviewersSetForResourceError",
|
|
3223
|
+
},
|
|
3224
|
+
},
|
|
3225
|
+
selectionSet: {
|
|
3226
|
+
kind: "SelectionSet",
|
|
3227
|
+
selections: [
|
|
3228
|
+
{
|
|
3229
|
+
kind: "Field",
|
|
3230
|
+
name: { kind: "Name", value: "message" },
|
|
3231
|
+
},
|
|
3232
|
+
{
|
|
3233
|
+
kind: "Field",
|
|
3234
|
+
name: { kind: "Name", value: "resourceId" },
|
|
3235
|
+
},
|
|
3236
|
+
],
|
|
3237
|
+
},
|
|
3238
|
+
},
|
|
3239
|
+
{
|
|
3240
|
+
kind: "InlineFragment",
|
|
3241
|
+
typeCondition: {
|
|
3242
|
+
kind: "NamedType",
|
|
3243
|
+
name: {
|
|
3244
|
+
kind: "Name",
|
|
3245
|
+
value: "NoReviewersSetForGroupError",
|
|
3246
|
+
},
|
|
3247
|
+
},
|
|
3248
|
+
selectionSet: {
|
|
3249
|
+
kind: "SelectionSet",
|
|
3250
|
+
selections: [
|
|
3251
|
+
{
|
|
3252
|
+
kind: "Field",
|
|
3253
|
+
name: { kind: "Name", value: "message" },
|
|
3254
|
+
},
|
|
3255
|
+
{
|
|
3256
|
+
kind: "Field",
|
|
3257
|
+
name: { kind: "Name", value: "groupId" },
|
|
3258
|
+
},
|
|
3259
|
+
],
|
|
3260
|
+
},
|
|
3261
|
+
},
|
|
3262
|
+
{
|
|
3263
|
+
kind: "InlineFragment",
|
|
3264
|
+
typeCondition: {
|
|
3265
|
+
kind: "NamedType",
|
|
3266
|
+
name: {
|
|
3267
|
+
kind: "Name",
|
|
3268
|
+
value: "NoManagerSetForRequestingUserError",
|
|
3269
|
+
},
|
|
3270
|
+
},
|
|
3271
|
+
selectionSet: {
|
|
3272
|
+
kind: "SelectionSet",
|
|
3273
|
+
selections: [
|
|
3274
|
+
{
|
|
3275
|
+
kind: "Field",
|
|
3276
|
+
name: { kind: "Name", value: "message" },
|
|
3277
|
+
},
|
|
3278
|
+
],
|
|
3279
|
+
},
|
|
3280
|
+
},
|
|
3281
|
+
{
|
|
3282
|
+
kind: "InlineFragment",
|
|
3283
|
+
typeCondition: {
|
|
3284
|
+
kind: "NamedType",
|
|
3285
|
+
name: { kind: "Name", value: "MfaInvalidError" },
|
|
3286
|
+
},
|
|
3287
|
+
selectionSet: {
|
|
3288
|
+
kind: "SelectionSet",
|
|
3289
|
+
selections: [
|
|
3290
|
+
{
|
|
3291
|
+
kind: "Field",
|
|
3292
|
+
name: { kind: "Name", value: "message" },
|
|
3293
|
+
},
|
|
3294
|
+
],
|
|
3295
|
+
},
|
|
3296
|
+
},
|
|
3297
|
+
{
|
|
3298
|
+
kind: "InlineFragment",
|
|
3299
|
+
typeCondition: {
|
|
3300
|
+
kind: "NamedType",
|
|
3301
|
+
name: { kind: "Name", value: "BulkRequestTooLargeError" },
|
|
3302
|
+
},
|
|
3303
|
+
selectionSet: {
|
|
3304
|
+
kind: "SelectionSet",
|
|
3305
|
+
selections: [
|
|
3306
|
+
{
|
|
3307
|
+
kind: "Field",
|
|
3308
|
+
name: { kind: "Name", value: "message" },
|
|
3309
|
+
},
|
|
3310
|
+
],
|
|
3311
|
+
},
|
|
3312
|
+
},
|
|
3313
|
+
{
|
|
3314
|
+
kind: "InlineFragment",
|
|
3315
|
+
typeCondition: {
|
|
3316
|
+
kind: "NamedType",
|
|
3317
|
+
name: { kind: "Name", value: "ItemCannotBeRequestedError" },
|
|
3318
|
+
},
|
|
3319
|
+
selectionSet: {
|
|
3320
|
+
kind: "SelectionSet",
|
|
3321
|
+
selections: [
|
|
3322
|
+
{
|
|
3323
|
+
kind: "Field",
|
|
3324
|
+
name: { kind: "Name", value: "message" },
|
|
3325
|
+
},
|
|
3326
|
+
],
|
|
3327
|
+
},
|
|
3328
|
+
},
|
|
3329
|
+
{
|
|
3330
|
+
kind: "InlineFragment",
|
|
3331
|
+
typeCondition: {
|
|
3332
|
+
kind: "NamedType",
|
|
3333
|
+
name: {
|
|
3334
|
+
kind: "Name",
|
|
3335
|
+
value: "UserCannotRequestAccessForTargetGroupError",
|
|
3336
|
+
},
|
|
3337
|
+
},
|
|
3338
|
+
selectionSet: {
|
|
3339
|
+
kind: "SelectionSet",
|
|
3340
|
+
selections: [
|
|
3341
|
+
{
|
|
3342
|
+
kind: "Field",
|
|
3343
|
+
name: { kind: "Name", value: "message" },
|
|
3344
|
+
},
|
|
3345
|
+
{
|
|
3346
|
+
kind: "Field",
|
|
3347
|
+
name: { kind: "Name", value: "groupId" },
|
|
3348
|
+
},
|
|
3349
|
+
{
|
|
3350
|
+
kind: "Field",
|
|
3351
|
+
name: { kind: "Name", value: "userId" },
|
|
3352
|
+
},
|
|
3353
|
+
],
|
|
3354
|
+
},
|
|
3355
|
+
},
|
|
3356
|
+
{
|
|
3357
|
+
kind: "InlineFragment",
|
|
3358
|
+
typeCondition: {
|
|
3359
|
+
kind: "NamedType",
|
|
3360
|
+
name: {
|
|
3361
|
+
kind: "Name",
|
|
3362
|
+
value: "GroupNestingNotAllowedError",
|
|
3363
|
+
},
|
|
3364
|
+
},
|
|
3365
|
+
selectionSet: {
|
|
3366
|
+
kind: "SelectionSet",
|
|
3367
|
+
selections: [
|
|
3368
|
+
{
|
|
3369
|
+
kind: "Field",
|
|
3370
|
+
name: { kind: "Name", value: "message" },
|
|
3371
|
+
},
|
|
3372
|
+
{
|
|
3373
|
+
kind: "Field",
|
|
3374
|
+
name: { kind: "Name", value: "fromGroupId" },
|
|
3375
|
+
},
|
|
3376
|
+
{
|
|
3377
|
+
kind: "Field",
|
|
3378
|
+
name: { kind: "Name", value: "toGroupId" },
|
|
3379
|
+
},
|
|
3380
|
+
],
|
|
3381
|
+
},
|
|
3382
|
+
},
|
|
3383
|
+
{
|
|
3384
|
+
kind: "InlineFragment",
|
|
3385
|
+
typeCondition: {
|
|
3386
|
+
kind: "NamedType",
|
|
3387
|
+
name: {
|
|
3388
|
+
kind: "Name",
|
|
3389
|
+
value: "TargetUserHasNestedAccessError",
|
|
3390
|
+
},
|
|
3391
|
+
},
|
|
3392
|
+
selectionSet: {
|
|
3393
|
+
kind: "SelectionSet",
|
|
3394
|
+
selections: [
|
|
3395
|
+
{
|
|
3396
|
+
kind: "Field",
|
|
3397
|
+
name: { kind: "Name", value: "message" },
|
|
3398
|
+
},
|
|
3399
|
+
{
|
|
3400
|
+
kind: "Field",
|
|
3401
|
+
name: { kind: "Name", value: "groupIds" },
|
|
3402
|
+
},
|
|
3403
|
+
],
|
|
3404
|
+
},
|
|
3405
|
+
},
|
|
3406
|
+
{
|
|
3407
|
+
kind: "InlineFragment",
|
|
3408
|
+
typeCondition: {
|
|
3409
|
+
kind: "NamedType",
|
|
3410
|
+
name: { kind: "Name", value: "RequestReasonMissingError" },
|
|
3411
|
+
},
|
|
3412
|
+
selectionSet: {
|
|
3413
|
+
kind: "SelectionSet",
|
|
3414
|
+
selections: [
|
|
3415
|
+
{
|
|
3416
|
+
kind: "Field",
|
|
3417
|
+
name: { kind: "Name", value: "message" },
|
|
3418
|
+
},
|
|
3419
|
+
],
|
|
3420
|
+
},
|
|
3421
|
+
},
|
|
3422
|
+
{
|
|
3423
|
+
kind: "InlineFragment",
|
|
3424
|
+
typeCondition: {
|
|
3425
|
+
kind: "NamedType",
|
|
3426
|
+
name: {
|
|
3427
|
+
kind: "Name",
|
|
3428
|
+
value: "RequestFieldValueMissingError",
|
|
3429
|
+
},
|
|
3430
|
+
},
|
|
3431
|
+
selectionSet: {
|
|
3432
|
+
kind: "SelectionSet",
|
|
3433
|
+
selections: [
|
|
3434
|
+
{
|
|
3435
|
+
kind: "Field",
|
|
3436
|
+
name: { kind: "Name", value: "message" },
|
|
3437
|
+
},
|
|
3438
|
+
{
|
|
3439
|
+
kind: "Field",
|
|
3440
|
+
name: { kind: "Name", value: "fieldName" },
|
|
3441
|
+
},
|
|
3442
|
+
],
|
|
3443
|
+
},
|
|
3444
|
+
},
|
|
3445
|
+
{
|
|
3446
|
+
kind: "InlineFragment",
|
|
3447
|
+
typeCondition: {
|
|
3448
|
+
kind: "NamedType",
|
|
3449
|
+
name: {
|
|
3450
|
+
kind: "Name",
|
|
3451
|
+
value: "LinkedGroupNotRequestableError",
|
|
3452
|
+
},
|
|
3453
|
+
},
|
|
3454
|
+
selectionSet: {
|
|
3455
|
+
kind: "SelectionSet",
|
|
3456
|
+
selections: [
|
|
3457
|
+
{
|
|
3458
|
+
kind: "Field",
|
|
3459
|
+
name: { kind: "Name", value: "message" },
|
|
3460
|
+
},
|
|
3461
|
+
{
|
|
3462
|
+
kind: "Field",
|
|
3463
|
+
name: { kind: "Name", value: "sourceGroupId" },
|
|
3464
|
+
},
|
|
3465
|
+
{
|
|
3466
|
+
kind: "Field",
|
|
3467
|
+
name: { kind: "Name", value: "groupBindingId" },
|
|
3468
|
+
},
|
|
3469
|
+
],
|
|
3470
|
+
},
|
|
3471
|
+
},
|
|
3472
|
+
{
|
|
3473
|
+
kind: "InlineFragment",
|
|
3474
|
+
typeCondition: {
|
|
3475
|
+
kind: "NamedType",
|
|
3476
|
+
name: {
|
|
3477
|
+
kind: "Name",
|
|
3478
|
+
value: "RequestReasonBelowMinLengthError",
|
|
3479
|
+
},
|
|
3480
|
+
},
|
|
3481
|
+
selectionSet: {
|
|
3482
|
+
kind: "SelectionSet",
|
|
3483
|
+
selections: [
|
|
3484
|
+
{
|
|
3485
|
+
kind: "Field",
|
|
3486
|
+
name: { kind: "Name", value: "message" },
|
|
3487
|
+
},
|
|
3488
|
+
],
|
|
3489
|
+
},
|
|
3490
|
+
},
|
|
3491
|
+
],
|
|
3492
|
+
},
|
|
3493
|
+
},
|
|
3494
|
+
],
|
|
3495
|
+
},
|
|
3496
|
+
},
|
|
3497
|
+
],
|
|
3498
|
+
};
|
|
3499
|
+
exports.GetCatalogItemDocument = {
|
|
3500
|
+
kind: "Document",
|
|
3501
|
+
definitions: [
|
|
3502
|
+
{
|
|
3503
|
+
kind: "OperationDefinition",
|
|
3504
|
+
operation: "query",
|
|
3505
|
+
name: { kind: "Name", value: "GetCatalogItem" },
|
|
3506
|
+
variableDefinitions: [
|
|
3507
|
+
{
|
|
3508
|
+
kind: "VariableDefinition",
|
|
3509
|
+
variable: { kind: "Variable", name: { kind: "Name", value: "uuid" } },
|
|
3510
|
+
type: {
|
|
3511
|
+
kind: "NonNullType",
|
|
3512
|
+
type: { kind: "NamedType", name: { kind: "Name", value: "UUID" } },
|
|
3513
|
+
},
|
|
3514
|
+
},
|
|
3515
|
+
],
|
|
3516
|
+
selectionSet: {
|
|
3517
|
+
kind: "SelectionSet",
|
|
3518
|
+
selections: [
|
|
3519
|
+
{
|
|
3520
|
+
kind: "Field",
|
|
3521
|
+
name: { kind: "Name", value: "catalogItem" },
|
|
3522
|
+
arguments: [
|
|
3523
|
+
{
|
|
3524
|
+
kind: "Argument",
|
|
3525
|
+
name: { kind: "Name", value: "id" },
|
|
3526
|
+
value: {
|
|
3527
|
+
kind: "Variable",
|
|
3528
|
+
name: { kind: "Name", value: "uuid" },
|
|
3529
|
+
},
|
|
3530
|
+
},
|
|
3531
|
+
],
|
|
3532
|
+
selectionSet: {
|
|
3533
|
+
kind: "SelectionSet",
|
|
3534
|
+
selections: [
|
|
3535
|
+
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
|
3536
|
+
{
|
|
3537
|
+
kind: "InlineFragment",
|
|
3538
|
+
typeCondition: {
|
|
3539
|
+
kind: "NamedType",
|
|
3540
|
+
name: { kind: "Name", value: "Connection" },
|
|
3541
|
+
},
|
|
3542
|
+
selectionSet: {
|
|
3543
|
+
kind: "SelectionSet",
|
|
3544
|
+
selections: [
|
|
3545
|
+
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
|
3546
|
+
{
|
|
3547
|
+
kind: "Field",
|
|
3548
|
+
name: { kind: "Name", value: "displayName" },
|
|
3549
|
+
},
|
|
3550
|
+
],
|
|
3551
|
+
},
|
|
3552
|
+
},
|
|
3553
|
+
{
|
|
3554
|
+
kind: "InlineFragment",
|
|
3555
|
+
typeCondition: {
|
|
3556
|
+
kind: "NamedType",
|
|
3557
|
+
name: { kind: "Name", value: "Resource" },
|
|
3558
|
+
},
|
|
3559
|
+
selectionSet: {
|
|
3560
|
+
kind: "SelectionSet",
|
|
3561
|
+
selections: [
|
|
3562
|
+
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
|
3563
|
+
{
|
|
3564
|
+
kind: "Field",
|
|
3565
|
+
name: { kind: "Name", value: "displayName" },
|
|
3566
|
+
},
|
|
3567
|
+
{
|
|
3568
|
+
kind: "Field",
|
|
3569
|
+
name: { kind: "Name", value: "connection" },
|
|
3570
|
+
selectionSet: {
|
|
3571
|
+
kind: "SelectionSet",
|
|
3572
|
+
selections: [
|
|
3573
|
+
{
|
|
3574
|
+
kind: "Field",
|
|
3575
|
+
name: { kind: "Name", value: "id" },
|
|
3576
|
+
},
|
|
3577
|
+
{
|
|
3578
|
+
kind: "Field",
|
|
3579
|
+
name: { kind: "Name", value: "displayName" },
|
|
3580
|
+
},
|
|
3581
|
+
],
|
|
3582
|
+
},
|
|
3583
|
+
},
|
|
3584
|
+
{
|
|
3585
|
+
kind: "Field",
|
|
3586
|
+
name: { kind: "Name", value: "accessLevels" },
|
|
3587
|
+
selectionSet: {
|
|
3588
|
+
kind: "SelectionSet",
|
|
3589
|
+
selections: [
|
|
3590
|
+
{
|
|
3591
|
+
kind: "Field",
|
|
3592
|
+
name: { kind: "Name", value: "accessLevelName" },
|
|
3593
|
+
},
|
|
3594
|
+
{
|
|
3595
|
+
kind: "Field",
|
|
3596
|
+
name: {
|
|
3597
|
+
kind: "Name",
|
|
3598
|
+
value: "accessLevelRemoteId",
|
|
3599
|
+
},
|
|
3600
|
+
},
|
|
3601
|
+
],
|
|
3602
|
+
},
|
|
3603
|
+
},
|
|
3604
|
+
],
|
|
3605
|
+
},
|
|
2554
3606
|
},
|
|
2555
3607
|
{
|
|
2556
|
-
kind: "
|
|
2557
|
-
|
|
3608
|
+
kind: "InlineFragment",
|
|
3609
|
+
typeCondition: {
|
|
3610
|
+
kind: "NamedType",
|
|
3611
|
+
name: { kind: "Name", value: "Group" },
|
|
3612
|
+
},
|
|
3613
|
+
selectionSet: {
|
|
3614
|
+
kind: "SelectionSet",
|
|
3615
|
+
selections: [
|
|
3616
|
+
{ kind: "Field", name: { kind: "Name", value: "id" } },
|
|
3617
|
+
{ kind: "Field", name: { kind: "Name", value: "name" } },
|
|
3618
|
+
{
|
|
3619
|
+
kind: "Field",
|
|
3620
|
+
name: { kind: "Name", value: "connection" },
|
|
3621
|
+
selectionSet: {
|
|
3622
|
+
kind: "SelectionSet",
|
|
3623
|
+
selections: [
|
|
3624
|
+
{
|
|
3625
|
+
kind: "Field",
|
|
3626
|
+
name: { kind: "Name", value: "id" },
|
|
3627
|
+
},
|
|
3628
|
+
{
|
|
3629
|
+
kind: "Field",
|
|
3630
|
+
name: { kind: "Name", value: "displayName" },
|
|
3631
|
+
},
|
|
3632
|
+
],
|
|
3633
|
+
},
|
|
3634
|
+
},
|
|
3635
|
+
{
|
|
3636
|
+
kind: "Field",
|
|
3637
|
+
name: { kind: "Name", value: "accessLevels" },
|
|
3638
|
+
selectionSet: {
|
|
3639
|
+
kind: "SelectionSet",
|
|
3640
|
+
selections: [
|
|
3641
|
+
{
|
|
3642
|
+
kind: "Field",
|
|
3643
|
+
name: { kind: "Name", value: "accessLevelName" },
|
|
3644
|
+
},
|
|
3645
|
+
{
|
|
3646
|
+
kind: "Field",
|
|
3647
|
+
name: {
|
|
3648
|
+
kind: "Name",
|
|
3649
|
+
value: "accessLevelRemoteId",
|
|
3650
|
+
},
|
|
3651
|
+
},
|
|
3652
|
+
],
|
|
3653
|
+
},
|
|
3654
|
+
},
|
|
3655
|
+
],
|
|
3656
|
+
},
|
|
2558
3657
|
},
|
|
2559
3658
|
{
|
|
2560
|
-
kind: "
|
|
2561
|
-
|
|
3659
|
+
kind: "InlineFragment",
|
|
3660
|
+
typeCondition: {
|
|
3661
|
+
kind: "NamedType",
|
|
3662
|
+
name: { kind: "Name", value: "UserFacingError" },
|
|
3663
|
+
},
|
|
3664
|
+
selectionSet: {
|
|
3665
|
+
kind: "SelectionSet",
|
|
3666
|
+
selections: [
|
|
3667
|
+
{
|
|
3668
|
+
kind: "Field",
|
|
3669
|
+
name: { kind: "Name", value: "message" },
|
|
3670
|
+
},
|
|
3671
|
+
],
|
|
3672
|
+
},
|
|
2562
3673
|
},
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
3674
|
+
],
|
|
3675
|
+
},
|
|
3676
|
+
},
|
|
3677
|
+
],
|
|
3678
|
+
},
|
|
3679
|
+
},
|
|
3680
|
+
],
|
|
3681
|
+
};
|
|
3682
|
+
exports.GetAssociatedItemsDocument = {
|
|
3683
|
+
kind: "Document",
|
|
3684
|
+
definitions: [
|
|
3685
|
+
{
|
|
3686
|
+
kind: "OperationDefinition",
|
|
3687
|
+
operation: "query",
|
|
3688
|
+
name: { kind: "Name", value: "GetAssociatedItems" },
|
|
3689
|
+
variableDefinitions: [
|
|
3690
|
+
{
|
|
3691
|
+
kind: "VariableDefinition",
|
|
3692
|
+
variable: {
|
|
3693
|
+
kind: "Variable",
|
|
3694
|
+
name: { kind: "Name", value: "resourceId" },
|
|
3695
|
+
},
|
|
3696
|
+
type: {
|
|
3697
|
+
kind: "NonNullType",
|
|
3698
|
+
type: {
|
|
3699
|
+
kind: "NamedType",
|
|
3700
|
+
name: { kind: "Name", value: "ResourceId" },
|
|
3701
|
+
},
|
|
3702
|
+
},
|
|
3703
|
+
},
|
|
3704
|
+
{
|
|
3705
|
+
kind: "VariableDefinition",
|
|
3706
|
+
variable: {
|
|
3707
|
+
kind: "Variable",
|
|
3708
|
+
name: { kind: "Name", value: "searchQuery" },
|
|
3709
|
+
},
|
|
3710
|
+
type: { kind: "NamedType", name: { kind: "Name", value: "String" } },
|
|
3711
|
+
},
|
|
3712
|
+
],
|
|
3713
|
+
selectionSet: {
|
|
3714
|
+
kind: "SelectionSet",
|
|
3715
|
+
selections: [
|
|
3716
|
+
{
|
|
3717
|
+
kind: "Field",
|
|
3718
|
+
name: { kind: "Name", value: "resource" },
|
|
3719
|
+
arguments: [
|
|
3720
|
+
{
|
|
3721
|
+
kind: "Argument",
|
|
3722
|
+
name: { kind: "Name", value: "input" },
|
|
3723
|
+
value: {
|
|
3724
|
+
kind: "ObjectValue",
|
|
3725
|
+
fields: [
|
|
3726
|
+
{
|
|
3727
|
+
kind: "ObjectField",
|
|
3728
|
+
name: { kind: "Name", value: "id" },
|
|
3729
|
+
value: {
|
|
3730
|
+
kind: "Variable",
|
|
3731
|
+
name: { kind: "Name", value: "resourceId" },
|
|
3732
|
+
},
|
|
3733
|
+
},
|
|
3734
|
+
],
|
|
2566
3735
|
},
|
|
3736
|
+
},
|
|
3737
|
+
],
|
|
3738
|
+
selectionSet: {
|
|
3739
|
+
kind: "SelectionSet",
|
|
3740
|
+
selections: [
|
|
3741
|
+
{ kind: "Field", name: { kind: "Name", value: "__typename" } },
|
|
2567
3742
|
{
|
|
2568
|
-
kind: "
|
|
2569
|
-
|
|
3743
|
+
kind: "InlineFragment",
|
|
3744
|
+
typeCondition: {
|
|
3745
|
+
kind: "NamedType",
|
|
3746
|
+
name: { kind: "Name", value: "ResourceResult" },
|
|
3747
|
+
},
|
|
3748
|
+
selectionSet: {
|
|
3749
|
+
kind: "SelectionSet",
|
|
3750
|
+
selections: [
|
|
3751
|
+
{
|
|
3752
|
+
kind: "Field",
|
|
3753
|
+
name: { kind: "Name", value: "__typename" },
|
|
3754
|
+
},
|
|
3755
|
+
{
|
|
3756
|
+
kind: "Field",
|
|
3757
|
+
name: { kind: "Name", value: "resource" },
|
|
3758
|
+
selectionSet: {
|
|
3759
|
+
kind: "SelectionSet",
|
|
3760
|
+
selections: [
|
|
3761
|
+
{
|
|
3762
|
+
kind: "Field",
|
|
3763
|
+
name: { kind: "Name", value: "associatedItems" },
|
|
3764
|
+
arguments: [
|
|
3765
|
+
{
|
|
3766
|
+
kind: "Argument",
|
|
3767
|
+
name: { kind: "Name", value: "first" },
|
|
3768
|
+
value: { kind: "IntValue", value: "200" },
|
|
3769
|
+
},
|
|
3770
|
+
{
|
|
3771
|
+
kind: "Argument",
|
|
3772
|
+
name: { kind: "Name", value: "filters" },
|
|
3773
|
+
value: {
|
|
3774
|
+
kind: "ObjectValue",
|
|
3775
|
+
fields: [
|
|
3776
|
+
{
|
|
3777
|
+
kind: "ObjectField",
|
|
3778
|
+
name: {
|
|
3779
|
+
kind: "Name",
|
|
3780
|
+
value: "searchQuery",
|
|
3781
|
+
},
|
|
3782
|
+
value: {
|
|
3783
|
+
kind: "ObjectValue",
|
|
3784
|
+
fields: [
|
|
3785
|
+
{
|
|
3786
|
+
kind: "ObjectField",
|
|
3787
|
+
name: {
|
|
3788
|
+
kind: "Name",
|
|
3789
|
+
value: "contains",
|
|
3790
|
+
},
|
|
3791
|
+
value: {
|
|
3792
|
+
kind: "Variable",
|
|
3793
|
+
name: {
|
|
3794
|
+
kind: "Name",
|
|
3795
|
+
value: "searchQuery",
|
|
3796
|
+
},
|
|
3797
|
+
},
|
|
3798
|
+
},
|
|
3799
|
+
],
|
|
3800
|
+
},
|
|
3801
|
+
},
|
|
3802
|
+
{
|
|
3803
|
+
kind: "ObjectField",
|
|
3804
|
+
name: { kind: "Name", value: "access" },
|
|
3805
|
+
value: {
|
|
3806
|
+
kind: "EnumValue",
|
|
3807
|
+
value: "REQUESTABLE",
|
|
3808
|
+
},
|
|
3809
|
+
},
|
|
3810
|
+
{
|
|
3811
|
+
kind: "ObjectField",
|
|
3812
|
+
name: {
|
|
3813
|
+
kind: "Name",
|
|
3814
|
+
value: "endUserVisible",
|
|
3815
|
+
},
|
|
3816
|
+
value: {
|
|
3817
|
+
kind: "BooleanValue",
|
|
3818
|
+
value: true,
|
|
3819
|
+
},
|
|
3820
|
+
},
|
|
3821
|
+
{
|
|
3822
|
+
kind: "ObjectField",
|
|
3823
|
+
name: {
|
|
3824
|
+
kind: "Name",
|
|
3825
|
+
value: "entityType",
|
|
3826
|
+
},
|
|
3827
|
+
value: {
|
|
3828
|
+
kind: "ObjectValue",
|
|
3829
|
+
fields: [
|
|
3830
|
+
{
|
|
3831
|
+
kind: "ObjectField",
|
|
3832
|
+
name: {
|
|
3833
|
+
kind: "Name",
|
|
3834
|
+
value: "in",
|
|
3835
|
+
},
|
|
3836
|
+
value: {
|
|
3837
|
+
kind: "ListValue",
|
|
3838
|
+
values: [
|
|
3839
|
+
{
|
|
3840
|
+
kind: "EnumValue",
|
|
3841
|
+
value: "GROUP",
|
|
3842
|
+
},
|
|
3843
|
+
{
|
|
3844
|
+
kind: "EnumValue",
|
|
3845
|
+
value: "RESOURCE",
|
|
3846
|
+
},
|
|
3847
|
+
],
|
|
3848
|
+
},
|
|
3849
|
+
},
|
|
3850
|
+
],
|
|
3851
|
+
},
|
|
3852
|
+
},
|
|
3853
|
+
],
|
|
3854
|
+
},
|
|
3855
|
+
},
|
|
3856
|
+
],
|
|
3857
|
+
selectionSet: {
|
|
3858
|
+
kind: "SelectionSet",
|
|
3859
|
+
selections: [
|
|
3860
|
+
{
|
|
3861
|
+
kind: "Field",
|
|
3862
|
+
name: { kind: "Name", value: "edges" },
|
|
3863
|
+
selectionSet: {
|
|
3864
|
+
kind: "SelectionSet",
|
|
3865
|
+
selections: [
|
|
3866
|
+
{
|
|
3867
|
+
kind: "Field",
|
|
3868
|
+
name: {
|
|
3869
|
+
kind: "Name",
|
|
3870
|
+
value: "__typename",
|
|
3871
|
+
},
|
|
3872
|
+
},
|
|
3873
|
+
{
|
|
3874
|
+
kind: "InlineFragment",
|
|
3875
|
+
typeCondition: {
|
|
3876
|
+
kind: "NamedType",
|
|
3877
|
+
name: {
|
|
3878
|
+
kind: "Name",
|
|
3879
|
+
value: "ResourceAssociatedItemEdge",
|
|
3880
|
+
},
|
|
3881
|
+
},
|
|
3882
|
+
selectionSet: {
|
|
3883
|
+
kind: "SelectionSet",
|
|
3884
|
+
selections: [
|
|
3885
|
+
{
|
|
3886
|
+
kind: "Field",
|
|
3887
|
+
name: {
|
|
3888
|
+
kind: "Name",
|
|
3889
|
+
value: "alias",
|
|
3890
|
+
},
|
|
3891
|
+
},
|
|
3892
|
+
{
|
|
3893
|
+
kind: "Field",
|
|
3894
|
+
name: {
|
|
3895
|
+
kind: "Name",
|
|
3896
|
+
value: "node",
|
|
3897
|
+
},
|
|
3898
|
+
selectionSet: {
|
|
3899
|
+
kind: "SelectionSet",
|
|
3900
|
+
selections: [
|
|
3901
|
+
{
|
|
3902
|
+
kind: "Field",
|
|
3903
|
+
name: {
|
|
3904
|
+
kind: "Name",
|
|
3905
|
+
value: "__typename",
|
|
3906
|
+
},
|
|
3907
|
+
},
|
|
3908
|
+
{
|
|
3909
|
+
kind: "Field",
|
|
3910
|
+
name: {
|
|
3911
|
+
kind: "Name",
|
|
3912
|
+
value: "id",
|
|
3913
|
+
},
|
|
3914
|
+
},
|
|
3915
|
+
{
|
|
3916
|
+
kind: "Field",
|
|
3917
|
+
name: {
|
|
3918
|
+
kind: "Name",
|
|
3919
|
+
value: "name",
|
|
3920
|
+
},
|
|
3921
|
+
},
|
|
3922
|
+
{
|
|
3923
|
+
kind: "InlineFragment",
|
|
3924
|
+
typeCondition: {
|
|
3925
|
+
kind: "NamedType",
|
|
3926
|
+
name: {
|
|
3927
|
+
kind: "Name",
|
|
3928
|
+
value: "Resource",
|
|
3929
|
+
},
|
|
3930
|
+
},
|
|
3931
|
+
selectionSet: {
|
|
3932
|
+
kind: "SelectionSet",
|
|
3933
|
+
selections: [
|
|
3934
|
+
{
|
|
3935
|
+
kind: "Field",
|
|
3936
|
+
name: {
|
|
3937
|
+
kind: "Name",
|
|
3938
|
+
value: "accessLevels",
|
|
3939
|
+
},
|
|
3940
|
+
arguments: [
|
|
3941
|
+
{
|
|
3942
|
+
kind: "Argument",
|
|
3943
|
+
name: {
|
|
3944
|
+
kind: "Name",
|
|
3945
|
+
value: "filters",
|
|
3946
|
+
},
|
|
3947
|
+
value: {
|
|
3948
|
+
kind: "ObjectValue",
|
|
3949
|
+
fields: [
|
|
3950
|
+
{
|
|
3951
|
+
kind: "ObjectField",
|
|
3952
|
+
name: {
|
|
3953
|
+
kind: "Name",
|
|
3954
|
+
value: "skipRemoteAccessLevels",
|
|
3955
|
+
},
|
|
3956
|
+
value: {
|
|
3957
|
+
kind: "BooleanValue",
|
|
3958
|
+
value: false,
|
|
3959
|
+
},
|
|
3960
|
+
},
|
|
3961
|
+
],
|
|
3962
|
+
},
|
|
3963
|
+
},
|
|
3964
|
+
],
|
|
3965
|
+
selectionSet: {
|
|
3966
|
+
kind: "SelectionSet",
|
|
3967
|
+
selections: [
|
|
3968
|
+
{
|
|
3969
|
+
kind: "Field",
|
|
3970
|
+
name: {
|
|
3971
|
+
kind: "Name",
|
|
3972
|
+
value: "__typename",
|
|
3973
|
+
},
|
|
3974
|
+
},
|
|
3975
|
+
{
|
|
3976
|
+
kind: "Field",
|
|
3977
|
+
name: {
|
|
3978
|
+
kind: "Name",
|
|
3979
|
+
value: "accessLevelName",
|
|
3980
|
+
},
|
|
3981
|
+
},
|
|
3982
|
+
{
|
|
3983
|
+
kind: "Field",
|
|
3984
|
+
name: {
|
|
3985
|
+
kind: "Name",
|
|
3986
|
+
value: "accessLevelRemoteId",
|
|
3987
|
+
},
|
|
3988
|
+
},
|
|
3989
|
+
],
|
|
3990
|
+
},
|
|
3991
|
+
},
|
|
3992
|
+
],
|
|
3993
|
+
},
|
|
3994
|
+
},
|
|
3995
|
+
],
|
|
3996
|
+
},
|
|
3997
|
+
},
|
|
3998
|
+
],
|
|
3999
|
+
},
|
|
4000
|
+
},
|
|
4001
|
+
],
|
|
4002
|
+
},
|
|
4003
|
+
},
|
|
4004
|
+
],
|
|
4005
|
+
},
|
|
4006
|
+
},
|
|
4007
|
+
],
|
|
4008
|
+
},
|
|
4009
|
+
},
|
|
4010
|
+
],
|
|
4011
|
+
},
|
|
2570
4012
|
},
|
|
2571
4013
|
{
|
|
2572
|
-
kind: "
|
|
2573
|
-
|
|
4014
|
+
kind: "InlineFragment",
|
|
4015
|
+
typeCondition: {
|
|
4016
|
+
kind: "NamedType",
|
|
4017
|
+
name: { kind: "Name", value: "ResourceNotFoundError" },
|
|
4018
|
+
},
|
|
4019
|
+
selectionSet: {
|
|
4020
|
+
kind: "SelectionSet",
|
|
4021
|
+
selections: [
|
|
4022
|
+
{
|
|
4023
|
+
kind: "Field",
|
|
4024
|
+
name: { kind: "Name", value: "message" },
|
|
4025
|
+
},
|
|
4026
|
+
],
|
|
4027
|
+
},
|
|
2574
4028
|
},
|
|
2575
4029
|
],
|
|
2576
4030
|
},
|