@forge/cli-shared 3.25.1-next.2 → 3.25.1-next.3-experimental-7fc11d3
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/CHANGELOG.md +17 -0
- package/out/graphql/graphql-types.d.ts +1138 -310
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +79 -10
- package/package.json +2 -2
|
@@ -1757,7 +1757,7 @@ export declare type AriGraphRelationshipNode = {
|
|
|
1757
1757
|
data?: Maybe<AriGraphRelationshipNodeData>;
|
|
1758
1758
|
id: Scalars['ID']['output'];
|
|
1759
1759
|
};
|
|
1760
|
-
export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsIncidentDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
1760
|
+
export declare type AriGraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
1761
1761
|
export declare type AriGraphRelationshipsErrorReference = {
|
|
1762
1762
|
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
1763
1763
|
from?: Maybe<Scalars['ID']['output']>;
|
|
@@ -1852,6 +1852,7 @@ export declare type AtlassianAccountUser = LocalizationContext & User & {
|
|
|
1852
1852
|
accountId: Scalars['ID']['output'];
|
|
1853
1853
|
accountStatus: AccountStatus;
|
|
1854
1854
|
canonicalAccountId: Scalars['ID']['output'];
|
|
1855
|
+
characteristics?: Maybe<Scalars['JSON']['output']>;
|
|
1855
1856
|
email?: Maybe<Scalars['String']['output']>;
|
|
1856
1857
|
extendedProfile?: Maybe<AtlassianAccountUserExtendedProfile>;
|
|
1857
1858
|
id: Scalars['ID']['output'];
|
|
@@ -1864,10 +1865,13 @@ export declare type AtlassianAccountUser = LocalizationContext & User & {
|
|
|
1864
1865
|
};
|
|
1865
1866
|
export declare type AtlassianAccountUserExtendedProfile = {
|
|
1866
1867
|
__typename?: 'AtlassianAccountUserExtendedProfile';
|
|
1868
|
+
closedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1867
1869
|
department?: Maybe<Scalars['String']['output']>;
|
|
1870
|
+
inactiveDate?: Maybe<Scalars['DateTime']['output']>;
|
|
1868
1871
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
1869
1872
|
location?: Maybe<Scalars['String']['output']>;
|
|
1870
1873
|
organization?: Maybe<Scalars['String']['output']>;
|
|
1874
|
+
phoneNumbers?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
1871
1875
|
};
|
|
1872
1876
|
export declare type AtlassianOAuthClient = {
|
|
1873
1877
|
__typename?: 'AtlassianOAuthClient';
|
|
@@ -1944,6 +1948,32 @@ export declare type Author = {
|
|
|
1944
1948
|
id?: Maybe<Scalars['String']['output']>;
|
|
1945
1949
|
name?: Maybe<Scalars['String']['output']>;
|
|
1946
1950
|
};
|
|
1951
|
+
export declare type AutoSuggestionApi = {
|
|
1952
|
+
__typename?: 'AutoSuggestionAPI';
|
|
1953
|
+
suggest?: Maybe<AutoSuggestionNodes>;
|
|
1954
|
+
};
|
|
1955
|
+
export declare type AutoSuggestionApiSuggestArgs = {
|
|
1956
|
+
filters: AutoSuggestionFilters;
|
|
1957
|
+
limit: Scalars['Int']['input'];
|
|
1958
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
1959
|
+
};
|
|
1960
|
+
export declare type AutoSuggestionFilters = {
|
|
1961
|
+
contextType: Scalars['String']['input'];
|
|
1962
|
+
organizationId: Scalars['String']['input'];
|
|
1963
|
+
principalId: Scalars['String']['input'];
|
|
1964
|
+
productKey: Scalars['String']['input'];
|
|
1965
|
+
siteId: Scalars['String']['input'];
|
|
1966
|
+
};
|
|
1967
|
+
export declare type AutoSuggestionNodes = {
|
|
1968
|
+
__typename?: 'AutoSuggestionNodes';
|
|
1969
|
+
nodes: Array<AutoSuggestionResult>;
|
|
1970
|
+
totalCount: Scalars['Int']['output'];
|
|
1971
|
+
};
|
|
1972
|
+
export declare type AutoSuggestionResult = {
|
|
1973
|
+
__typename?: 'AutoSuggestionResult';
|
|
1974
|
+
title: Scalars['String']['output'];
|
|
1975
|
+
type: Scalars['String']['output'];
|
|
1976
|
+
};
|
|
1947
1977
|
export declare type AuxEffectsInvocationPayload = {
|
|
1948
1978
|
config?: InputMaybe<Scalars['JSON']['input']>;
|
|
1949
1979
|
context: Scalars['JSON']['input'];
|
|
@@ -3041,6 +3071,18 @@ export declare type CompassAcknowledgeAnnouncementPayload = Payload & {
|
|
|
3041
3071
|
errors?: Maybe<Array<MutationError>>;
|
|
3042
3072
|
success: Scalars['Boolean']['output'];
|
|
3043
3073
|
};
|
|
3074
|
+
export declare type CompassAddDocumentInput = {
|
|
3075
|
+
componentId: Scalars['ID']['input'];
|
|
3076
|
+
documentationCategoryId: Scalars['ID']['input'];
|
|
3077
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
3078
|
+
url: Scalars['URL']['input'];
|
|
3079
|
+
};
|
|
3080
|
+
export declare type CompassAddDocumentPayload = Payload & {
|
|
3081
|
+
__typename?: 'CompassAddDocumentPayload';
|
|
3082
|
+
documentDetails?: Maybe<CompassDocument>;
|
|
3083
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3084
|
+
success: Scalars['Boolean']['output'];
|
|
3085
|
+
};
|
|
3044
3086
|
export declare type CompassAddTeamLabelsInput = {
|
|
3045
3087
|
cloudId: Scalars['ID']['input'];
|
|
3046
3088
|
labels: Array<Scalars['String']['input']>;
|
|
@@ -3179,6 +3221,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3179
3221
|
__typename?: 'CompassCatalogMutationApi';
|
|
3180
3222
|
acknowledgeAnnouncement?: Maybe<CompassAcknowledgeAnnouncementPayload>;
|
|
3181
3223
|
addComponentLabels?: Maybe<AddCompassComponentLabelsPayload>;
|
|
3224
|
+
addDocument?: Maybe<CompassAddDocumentPayload>;
|
|
3182
3225
|
addTeamLabels?: Maybe<CompassAddTeamLabelsPayload>;
|
|
3183
3226
|
applyScorecardToComponent?: Maybe<ApplyCompassScorecardToComponentPayload>;
|
|
3184
3227
|
attachComponentDataManager?: Maybe<AttachCompassComponentDataManagerPayload>;
|
|
@@ -3244,6 +3287,9 @@ export declare type CompassCatalogMutationApiAcknowledgeAnnouncementArgs = {
|
|
|
3244
3287
|
export declare type CompassCatalogMutationApiAddComponentLabelsArgs = {
|
|
3245
3288
|
input: AddCompassComponentLabelsInput;
|
|
3246
3289
|
};
|
|
3290
|
+
export declare type CompassCatalogMutationApiAddDocumentArgs = {
|
|
3291
|
+
input: CompassAddDocumentInput;
|
|
3292
|
+
};
|
|
3247
3293
|
export declare type CompassCatalogMutationApiAddTeamLabelsArgs = {
|
|
3248
3294
|
input: CompassAddTeamLabelsInput;
|
|
3249
3295
|
};
|
|
@@ -3955,7 +4001,7 @@ export declare type CompassCreateMetricSourcePayload = Payload & {
|
|
|
3955
4001
|
success: Scalars['Boolean']['output'];
|
|
3956
4002
|
};
|
|
3957
4003
|
export declare type CompassCreatePullRequestEventInput = {
|
|
3958
|
-
cloudId
|
|
4004
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
3959
4005
|
lastUpdated: Scalars['DateTime']['input'];
|
|
3960
4006
|
pullRequestProperties: CompassPullRequestInputProperties;
|
|
3961
4007
|
};
|
|
@@ -4341,11 +4387,20 @@ export declare enum CompassDeploymentEventState {
|
|
|
4341
4387
|
Successful = "SUCCESSFUL",
|
|
4342
4388
|
Unknown = "UNKNOWN"
|
|
4343
4389
|
}
|
|
4390
|
+
export declare type CompassDocument = Node & {
|
|
4391
|
+
__typename?: 'CompassDocument';
|
|
4392
|
+
changeMetadata: CompassChangeMetadata;
|
|
4393
|
+
componentId: Scalars['ID']['output'];
|
|
4394
|
+
documentCategoryId: Scalars['ID']['output'];
|
|
4395
|
+
id: Scalars['ID']['output'];
|
|
4396
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
4397
|
+
url: Scalars['URL']['output'];
|
|
4398
|
+
};
|
|
4344
4399
|
export declare type CompassDocumentationCategoriesConnection = {
|
|
4345
4400
|
__typename?: 'CompassDocumentationCategoriesConnection';
|
|
4346
|
-
edges?: Maybe<Array<
|
|
4401
|
+
edges?: Maybe<Array<CompassDocumentationCategoryEdge>>;
|
|
4347
4402
|
nodes?: Maybe<Array<CompassDocumentationCategory>>;
|
|
4348
|
-
pageInfo
|
|
4403
|
+
pageInfo?: Maybe<PageInfo>;
|
|
4349
4404
|
};
|
|
4350
4405
|
export declare type CompassDocumentationCategory = Node & {
|
|
4351
4406
|
__typename?: 'CompassDocumentationCategory';
|
|
@@ -4417,6 +4472,7 @@ export declare enum CompassEventType {
|
|
|
4417
4472
|
Flag = "FLAG",
|
|
4418
4473
|
Incident = "INCIDENT",
|
|
4419
4474
|
Lifecycle = "LIFECYCLE",
|
|
4475
|
+
PullRequest = "PULL_REQUEST",
|
|
4420
4476
|
Push = "PUSH"
|
|
4421
4477
|
}
|
|
4422
4478
|
export declare type CompassEventsInEventSourceQuery = {
|
|
@@ -4828,6 +4884,23 @@ export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTim
|
|
|
4828
4884
|
export declare type CompassPlainMetricSourceConfigurationInput = {
|
|
4829
4885
|
query: Scalars['String']['input'];
|
|
4830
4886
|
};
|
|
4887
|
+
export declare type CompassPullRequestEvent = CompassEvent & {
|
|
4888
|
+
__typename?: 'CompassPullRequestEvent';
|
|
4889
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4890
|
+
displayName: Scalars['String']['output'];
|
|
4891
|
+
eventType: CompassEventType;
|
|
4892
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
4893
|
+
pullRequestEventProperties: CompassPullRequestEventProperties;
|
|
4894
|
+
updateSequenceNumber: Scalars['Long']['output'];
|
|
4895
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
4896
|
+
};
|
|
4897
|
+
export declare type CompassPullRequestEventProperties = {
|
|
4898
|
+
__typename?: 'CompassPullRequestEventProperties';
|
|
4899
|
+
id: Scalars['String']['output'];
|
|
4900
|
+
pullRequestUrl: Scalars['String']['output'];
|
|
4901
|
+
repoUrl: Scalars['String']['output'];
|
|
4902
|
+
status: CompassCreatePullRequestStatus;
|
|
4903
|
+
};
|
|
4831
4904
|
export declare type CompassPullRequestInputProperties = {
|
|
4832
4905
|
id: Scalars['String']['input'];
|
|
4833
4906
|
pullRequestUrl: Scalars['String']['input'];
|
|
@@ -4945,8 +5018,6 @@ export declare type CompassScorecard = Node & {
|
|
|
4945
5018
|
changeMetadata: CompassChangeMetadata;
|
|
4946
5019
|
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
4947
5020
|
componentTiers?: Maybe<Array<CompassComponentTier>>;
|
|
4948
|
-
componentType: CompassComponentType;
|
|
4949
|
-
componentTypeId: Scalars['ID']['output'];
|
|
4950
5021
|
componentTypeIds: Array<Scalars['ID']['output']>;
|
|
4951
5022
|
criteriaScoreStatisticsHistories?: Maybe<CompassScorecardCriteriaScoreStatisticsHistoryConnection>;
|
|
4952
5023
|
criterias?: Maybe<Array<CompassScorecardCriteria>>;
|
|
@@ -5392,6 +5463,10 @@ export declare type CompassStarredComponentsResult = CompassStarredComponentConn
|
|
|
5392
5463
|
export declare type CompassSynchronizeLinkAssociationsInput = {
|
|
5393
5464
|
cloudId: Scalars['ID']['input'];
|
|
5394
5465
|
forgeAppId: Scalars['ID']['input'];
|
|
5466
|
+
options?: InputMaybe<CompassSynchronizeLinkAssociationsOptions>;
|
|
5467
|
+
};
|
|
5468
|
+
export declare type CompassSynchronizeLinkAssociationsOptions = {
|
|
5469
|
+
eventTypes?: InputMaybe<Array<InputMaybe<CompassEventType>>>;
|
|
5395
5470
|
};
|
|
5396
5471
|
export declare type CompassSynchronizeLinkAssociationsPayload = Payload & {
|
|
5397
5472
|
__typename?: 'CompassSynchronizeLinkAssociationsPayload';
|
|
@@ -6693,7 +6768,36 @@ export declare type ContainerEventObject = {
|
|
|
6693
6768
|
id: Scalars['ID']['output'];
|
|
6694
6769
|
type: Scalars['String']['output'];
|
|
6695
6770
|
};
|
|
6771
|
+
export declare type ContentPlatformAdvocateQuote = {
|
|
6772
|
+
__typename?: 'ContentPlatformAdvocateQuote';
|
|
6773
|
+
advocateHeadshot?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6774
|
+
advocateJobTitle?: Maybe<Scalars['String']['output']>;
|
|
6775
|
+
advocateName?: Maybe<Scalars['String']['output']>;
|
|
6776
|
+
advocateQuote?: Maybe<Scalars['String']['output']>;
|
|
6777
|
+
advocateQuoteId: Scalars['String']['output'];
|
|
6778
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6779
|
+
heroQuote?: Maybe<Scalars['Boolean']['output']>;
|
|
6780
|
+
name: Scalars['String']['output'];
|
|
6781
|
+
organization?: Maybe<ContentPlatformOrganization>;
|
|
6782
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6783
|
+
};
|
|
6696
6784
|
export declare type ContentPlatformAnyContext = ContentPlatformContextApp | ContentPlatformContextProduct | ContentPlatformContextTheme;
|
|
6785
|
+
export declare type ContentPlatformAppName = {
|
|
6786
|
+
__typename?: 'ContentPlatformAppName';
|
|
6787
|
+
appName?: Maybe<Scalars['String']['output']>;
|
|
6788
|
+
appNameId: Scalars['String']['output'];
|
|
6789
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6790
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
6791
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6792
|
+
};
|
|
6793
|
+
export declare type ContentPlatformAssetComponent = {
|
|
6794
|
+
__typename?: 'ContentPlatformAssetComponent';
|
|
6795
|
+
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6796
|
+
assetRelatedText?: Maybe<Scalars['String']['output']>;
|
|
6797
|
+
caption?: Maybe<Scalars['String']['output']>;
|
|
6798
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6799
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6800
|
+
};
|
|
6697
6801
|
export declare type ContentPlatformAuthor = {
|
|
6698
6802
|
__typename?: 'ContentPlatformAuthor';
|
|
6699
6803
|
authorPicture?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
@@ -6708,6 +6812,19 @@ export declare enum ContentPlatformBooleanOperators {
|
|
|
6708
6812
|
And = "AND",
|
|
6709
6813
|
Or = "OR"
|
|
6710
6814
|
}
|
|
6815
|
+
export declare type ContentPlatformCallToAction = {
|
|
6816
|
+
__typename?: 'ContentPlatformCallToAction';
|
|
6817
|
+
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6818
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6819
|
+
dataBlueprintModule?: Maybe<Scalars['String']['output']>;
|
|
6820
|
+
productLogo?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6821
|
+
productName?: Maybe<Scalars['String']['output']>;
|
|
6822
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
6823
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
6824
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6825
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
6826
|
+
valueProposition?: Maybe<Scalars['String']['output']>;
|
|
6827
|
+
};
|
|
6711
6828
|
export declare type ContentPlatformCategory = {
|
|
6712
6829
|
__typename?: 'ContentPlatformCategory';
|
|
6713
6830
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -6801,6 +6918,43 @@ export declare type ContentPlatformContextTheme = {
|
|
|
6801
6918
|
title: Scalars['String']['output'];
|
|
6802
6919
|
url?: Maybe<Scalars['String']['output']>;
|
|
6803
6920
|
};
|
|
6921
|
+
export declare type ContentPlatformCustomerStory = {
|
|
6922
|
+
__typename?: 'ContentPlatformCustomerStory';
|
|
6923
|
+
advocateQuotes?: Maybe<Array<ContentPlatformAdvocateQuote>>;
|
|
6924
|
+
callToAction?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
6925
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6926
|
+
customerCompany?: Maybe<ContentPlatformOrganization>;
|
|
6927
|
+
customerStoryId: Scalars['String']['output'];
|
|
6928
|
+
heroAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6929
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
6930
|
+
marketplaceApps?: Maybe<Array<ContentPlatformAppName>>;
|
|
6931
|
+
numberOfUsers?: Maybe<Scalars['String']['output']>;
|
|
6932
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
6933
|
+
relatedCustomerStories?: Maybe<Array<ContentPlatformCustomerStory>>;
|
|
6934
|
+
relatedPdf?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6935
|
+
relatedVideo?: Maybe<Scalars['String']['output']>;
|
|
6936
|
+
shortTitle?: Maybe<Scalars['String']['output']>;
|
|
6937
|
+
solution?: Maybe<Array<ContentPlatformSolution>>;
|
|
6938
|
+
solutionPartner?: Maybe<ContentPlatformOrganization>;
|
|
6939
|
+
stats?: Maybe<Array<ContentPlatformStat>>;
|
|
6940
|
+
story?: Maybe<Array<ContentPlatformStoryComponent>>;
|
|
6941
|
+
storyDescription?: Maybe<Scalars['String']['output']>;
|
|
6942
|
+
storyIcon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6943
|
+
subtitle?: Maybe<Scalars['String']['output']>;
|
|
6944
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
6945
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6946
|
+
urlSlug?: Maybe<Scalars['String']['output']>;
|
|
6947
|
+
};
|
|
6948
|
+
export declare type ContentPlatformCustomerStoryResultEdge = {
|
|
6949
|
+
__typename?: 'ContentPlatformCustomerStoryResultEdge';
|
|
6950
|
+
cursor: Scalars['String']['output'];
|
|
6951
|
+
node: ContentPlatformCustomerStory;
|
|
6952
|
+
};
|
|
6953
|
+
export declare type ContentPlatformCustomerStorySearchConnection = {
|
|
6954
|
+
__typename?: 'ContentPlatformCustomerStorySearchConnection';
|
|
6955
|
+
edges: Array<ContentPlatformCustomerStoryResultEdge>;
|
|
6956
|
+
pageInfo: PageInfo;
|
|
6957
|
+
};
|
|
6804
6958
|
export declare type ContentPlatformDateCondition = {
|
|
6805
6959
|
dateFieldNamed?: Scalars['String']['input'];
|
|
6806
6960
|
havingDate: Scalars['DateTime']['input'];
|
|
@@ -6809,6 +6963,23 @@ export declare type ContentPlatformDateRangeFilter = {
|
|
|
6809
6963
|
after: Scalars['DateTime']['input'];
|
|
6810
6964
|
before: Scalars['DateTime']['input'];
|
|
6811
6965
|
};
|
|
6966
|
+
export declare type ContentPlatformEmbeddedVideoAsset = {
|
|
6967
|
+
__typename?: 'ContentPlatformEmbeddedVideoAsset';
|
|
6968
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6969
|
+
embedAssetOverlay?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6970
|
+
embedded?: Maybe<Scalars['String']['output']>;
|
|
6971
|
+
embeddedVideoAssetName?: Maybe<Scalars['String']['output']>;
|
|
6972
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6973
|
+
};
|
|
6974
|
+
export declare type ContentPlatformFeaturedVideo = {
|
|
6975
|
+
__typename?: 'ContentPlatformFeaturedVideo';
|
|
6976
|
+
callToActionText?: Maybe<Scalars['String']['output']>;
|
|
6977
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6978
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
6979
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
6980
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6981
|
+
videoName?: Maybe<Scalars['String']['output']>;
|
|
6982
|
+
};
|
|
6812
6983
|
export declare type ContentPlatformField = {
|
|
6813
6984
|
field: ContentPlatformFieldNames;
|
|
6814
6985
|
};
|
|
@@ -6820,6 +6991,18 @@ export declare type ContentPlatformFieldType = {
|
|
|
6820
6991
|
__typename?: 'ContentPlatformFieldType';
|
|
6821
6992
|
field: ContentPlatformFieldNames;
|
|
6822
6993
|
};
|
|
6994
|
+
export declare type ContentPlatformHubArticle = {
|
|
6995
|
+
__typename?: 'ContentPlatformHubArticle';
|
|
6996
|
+
articleBanner?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
6997
|
+
articleName?: Maybe<Scalars['String']['output']>;
|
|
6998
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
6999
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7000
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
7001
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7002
|
+
urlSlug: Scalars['String']['output'];
|
|
7003
|
+
};
|
|
7004
|
+
export declare type ContentPlatformHubArticleAndTutorialAndProductFeatureAndFeaturedVideoUnion = ContentPlatformFeaturedVideo | ContentPlatformHubArticle | ContentPlatformProductFeature | ContentPlatformTutorial;
|
|
7005
|
+
export declare type ContentPlatformHubArticleAndTutorialUnion = ContentPlatformHubArticle | ContentPlatformTutorial;
|
|
6823
7006
|
export declare type ContentPlatformImageAsset = {
|
|
6824
7007
|
__typename?: 'ContentPlatformImageAsset';
|
|
6825
7008
|
contentType: Scalars['String']['output'];
|
|
@@ -6860,6 +7043,22 @@ export declare type ContentPlatformOrganization = {
|
|
|
6860
7043
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
6861
7044
|
};
|
|
6862
7045
|
export declare type ContentPlatformOrganizationAndAuthorUnion = ContentPlatformAuthor | ContentPlatformOrganization;
|
|
7046
|
+
export declare type ContentPlatformProTipComponent = {
|
|
7047
|
+
__typename?: 'ContentPlatformProTipComponent';
|
|
7048
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7049
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7050
|
+
proTipText?: Maybe<Scalars['String']['output']>;
|
|
7051
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7052
|
+
};
|
|
7053
|
+
export declare type ContentPlatformProductFeature = {
|
|
7054
|
+
__typename?: 'ContentPlatformProductFeature';
|
|
7055
|
+
callToAction?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
7056
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7057
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7058
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7059
|
+
slogan?: Maybe<Scalars['String']['output']>;
|
|
7060
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7061
|
+
};
|
|
6863
7062
|
export declare type ContentPlatformReleaseNote = {
|
|
6864
7063
|
__typename?: 'ContentPlatformReleaseNote';
|
|
6865
7064
|
affectedUsers?: Maybe<Array<ContentPlatformTaxonomyUserRole>>;
|
|
@@ -6971,15 +7170,51 @@ export declare enum ContentPlatformSearchTypes {
|
|
|
6971
7170
|
Contains = "CONTAINS",
|
|
6972
7171
|
ExactMatch = "EXACT_MATCH"
|
|
6973
7172
|
}
|
|
7173
|
+
export declare type ContentPlatformSolution = {
|
|
7174
|
+
__typename?: 'ContentPlatformSolution';
|
|
7175
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7176
|
+
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
7177
|
+
solutionId: Scalars['String']['output'];
|
|
7178
|
+
solutionName?: Maybe<Scalars['String']['output']>;
|
|
7179
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7180
|
+
};
|
|
6974
7181
|
export declare type ContentPlatformSortClause = {
|
|
6975
7182
|
fieldNamed?: Scalars['String']['input'];
|
|
6976
7183
|
havingOrder?: Scalars['String']['input'];
|
|
6977
7184
|
};
|
|
7185
|
+
export declare type ContentPlatformStat = {
|
|
7186
|
+
__typename?: 'ContentPlatformStat';
|
|
7187
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7188
|
+
name: Scalars['String']['output'];
|
|
7189
|
+
stat?: Maybe<Scalars['String']['output']>;
|
|
7190
|
+
statDescription?: Maybe<Scalars['String']['output']>;
|
|
7191
|
+
statId: Scalars['String']['output'];
|
|
7192
|
+
statResource?: Maybe<Scalars['String']['output']>;
|
|
7193
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7194
|
+
};
|
|
6978
7195
|
export declare type ContentPlatformStatusOfChange = {
|
|
6979
7196
|
__typename?: 'ContentPlatformStatusOfChange';
|
|
6980
7197
|
description: Scalars['String']['output'];
|
|
6981
7198
|
label: Scalars['String']['output'];
|
|
6982
7199
|
};
|
|
7200
|
+
export declare type ContentPlatformStoryComponent = {
|
|
7201
|
+
__typename?: 'ContentPlatformStoryComponent';
|
|
7202
|
+
bodyAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7203
|
+
bodyAssetCaption?: Maybe<Scalars['String']['output']>;
|
|
7204
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7205
|
+
embeddedVideoLink?: Maybe<Scalars['String']['output']>;
|
|
7206
|
+
quote?: Maybe<ContentPlatformAdvocateQuote>;
|
|
7207
|
+
storyComponentId: Scalars['String']['output'];
|
|
7208
|
+
storyText?: Maybe<Scalars['JSON']['output']>;
|
|
7209
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7210
|
+
};
|
|
7211
|
+
export declare type ContentPlatformSupportingConceptWrapper = {
|
|
7212
|
+
__typename?: 'ContentPlatformSupportingConceptWrapper';
|
|
7213
|
+
contentComponents?: Maybe<Array<ContentPlatformTextComponentAndAssetComponentAndProTipComponentAndTwitterComponentAndEmbeddedVideoAssetAndCallToActionUnion>>;
|
|
7214
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7215
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7216
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7217
|
+
};
|
|
6983
7218
|
export declare type ContentPlatformTaxonomyAnnouncementPlan = {
|
|
6984
7219
|
__typename?: 'ContentPlatformTaxonomyAnnouncementPlan';
|
|
6985
7220
|
description: Scalars['String']['output'];
|
|
@@ -7002,6 +7237,14 @@ export declare type ContentPlatformTaxonomyCompanySize = {
|
|
|
7002
7237
|
shortDescription: Scalars['String']['output'];
|
|
7003
7238
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7004
7239
|
};
|
|
7240
|
+
export declare type ContentPlatformTaxonomyContentHub = {
|
|
7241
|
+
__typename?: 'ContentPlatformTaxonomyContentHub';
|
|
7242
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7243
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7244
|
+
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
7245
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
7246
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7247
|
+
};
|
|
7005
7248
|
export declare type ContentPlatformTaxonomyIndustry = {
|
|
7006
7249
|
__typename?: 'ContentPlatformTaxonomyIndustry';
|
|
7007
7250
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -7122,6 +7365,71 @@ export declare type ContentPlatformTemplateUseStep = {
|
|
|
7122
7365
|
name: Scalars['String']['output'];
|
|
7123
7366
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7124
7367
|
};
|
|
7368
|
+
export declare type ContentPlatformTextComponent = {
|
|
7369
|
+
__typename?: 'ContentPlatformTextComponent';
|
|
7370
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7371
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7372
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
7373
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7374
|
+
};
|
|
7375
|
+
export declare type ContentPlatformTextComponentAndAssetComponentAndProTipComponentAndTwitterComponentAndEmbeddedVideoAssetAndCallToActionUnion = ContentPlatformAssetComponent | ContentPlatformCallToAction | ContentPlatformEmbeddedVideoAsset | ContentPlatformProTipComponent | ContentPlatformTextComponent | ContentPlatformTwitterComponent;
|
|
7376
|
+
export declare type ContentPlatformTopicIntroduction = {
|
|
7377
|
+
__typename?: 'ContentPlatformTopicIntroduction';
|
|
7378
|
+
asset?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
7379
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7380
|
+
details?: Maybe<Scalars['String']['output']>;
|
|
7381
|
+
embedLink?: Maybe<Scalars['String']['output']>;
|
|
7382
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
7383
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7384
|
+
};
|
|
7385
|
+
export declare type ContentPlatformTopicOverview = {
|
|
7386
|
+
__typename?: 'ContentPlatformTopicOverview';
|
|
7387
|
+
author?: Maybe<ContentPlatformAuthor>;
|
|
7388
|
+
bannerImage: ContentPlatformTemplateImageAsset;
|
|
7389
|
+
bodyTextContainer?: Maybe<Array<ContentPlatformSupportingConceptWrapper>>;
|
|
7390
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7391
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7392
|
+
featuredContentContainer?: Maybe<Array<ContentPlatformHubArticleAndTutorialAndProductFeatureAndFeaturedVideoUnion>>;
|
|
7393
|
+
mainCallToAction?: Maybe<ContentPlatformCallToAction>;
|
|
7394
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7395
|
+
nextBestAction: Array<ContentPlatformHubArticleAndTutorialUnion>;
|
|
7396
|
+
relatedHub: Array<ContentPlatformTaxonomyContentHub>;
|
|
7397
|
+
subtitle?: Maybe<Scalars['String']['output']>;
|
|
7398
|
+
title: Scalars['String']['output'];
|
|
7399
|
+
topicIntroduction?: Maybe<Array<ContentPlatformTopicIntroduction>>;
|
|
7400
|
+
topicOverviewId: Scalars['String']['output'];
|
|
7401
|
+
upNextFooter?: Maybe<ContentPlatformHubArticle>;
|
|
7402
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7403
|
+
urlSlug: Scalars['String']['output'];
|
|
7404
|
+
};
|
|
7405
|
+
export declare type ContentPlatformTopicOverviewContentSearchConnection = {
|
|
7406
|
+
__typename?: 'ContentPlatformTopicOverviewContentSearchConnection';
|
|
7407
|
+
edges: Array<ContentPlatformTopicOverviewResultEdge>;
|
|
7408
|
+
pageInfo: PageInfo;
|
|
7409
|
+
};
|
|
7410
|
+
export declare type ContentPlatformTopicOverviewResultEdge = {
|
|
7411
|
+
__typename?: 'ContentPlatformTopicOverviewResultEdge';
|
|
7412
|
+
cursor: Scalars['String']['output'];
|
|
7413
|
+
node: ContentPlatformTopicOverview;
|
|
7414
|
+
};
|
|
7415
|
+
export declare type ContentPlatformTutorial = {
|
|
7416
|
+
__typename?: 'ContentPlatformTutorial';
|
|
7417
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7418
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7419
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7420
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
7421
|
+
tutorialBanner?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7422
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7423
|
+
urlSlug: Scalars['String']['output'];
|
|
7424
|
+
};
|
|
7425
|
+
export declare type ContentPlatformTwitterComponent = {
|
|
7426
|
+
__typename?: 'ContentPlatformTwitterComponent';
|
|
7427
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7428
|
+
tweetText?: Maybe<Scalars['String']['output']>;
|
|
7429
|
+
twitterComponentName?: Maybe<Scalars['String']['output']>;
|
|
7430
|
+
twitterUrl?: Maybe<Scalars['String']['output']>;
|
|
7431
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7432
|
+
};
|
|
7125
7433
|
export declare type ContentPlatformTypeOfChange = {
|
|
7126
7434
|
__typename?: 'ContentPlatformTypeOfChange';
|
|
7127
7435
|
icon: ContentPlatformImageAsset;
|
|
@@ -7767,6 +8075,7 @@ export declare type CustomerServiceAttributeConfigMetadataUpdateInput = {
|
|
|
7767
8075
|
contextConfigurations?: InputMaybe<Array<InputMaybe<CustomerServiceContextConfigurationInput>>>;
|
|
7768
8076
|
id: Scalars['ID']['input'];
|
|
7769
8077
|
position?: InputMaybe<Scalars['Int']['input']>;
|
|
8078
|
+
styleConfiguration?: InputMaybe<CustomerServiceCustomAttributeStyleConfigurationInput>;
|
|
7770
8079
|
};
|
|
7771
8080
|
export declare type CustomerServiceAttributeConfigMetadataUpdatePayload = Payload & {
|
|
7772
8081
|
__typename?: 'CustomerServiceAttributeConfigMetadataUpdatePayload';
|
|
@@ -7810,7 +8119,8 @@ export declare enum CustomerServiceAttributeTypeName {
|
|
|
7810
8119
|
Phone = "PHONE",
|
|
7811
8120
|
Select = "SELECT",
|
|
7812
8121
|
Text = "TEXT",
|
|
7813
|
-
Url = "URL"
|
|
8122
|
+
Url = "URL",
|
|
8123
|
+
User = "USER"
|
|
7814
8124
|
}
|
|
7815
8125
|
export declare type CustomerServiceAttributeUpdateInput = {
|
|
7816
8126
|
id: Scalars['ID']['input'];
|
|
@@ -7832,6 +8142,7 @@ export declare type CustomerServiceAttributeValue = Node & {
|
|
|
7832
8142
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
7833
8143
|
id: Scalars['ID']['output'];
|
|
7834
8144
|
name: Scalars['String']['output'];
|
|
8145
|
+
platformValue?: Maybe<CustomerServicePlatformDetailValue>;
|
|
7835
8146
|
type: CustomerServiceAttributeType;
|
|
7836
8147
|
value?: Maybe<Scalars['String']['output']>;
|
|
7837
8148
|
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -7858,6 +8169,29 @@ export declare enum CustomerServiceContextType {
|
|
|
7858
8169
|
Default = "DEFAULT",
|
|
7859
8170
|
Issue = "ISSUE"
|
|
7860
8171
|
}
|
|
8172
|
+
export declare type CustomerServiceCustomAttributeOptionStyle = {
|
|
8173
|
+
__typename?: 'CustomerServiceCustomAttributeOptionStyle';
|
|
8174
|
+
backgroundColour: Scalars['String']['output'];
|
|
8175
|
+
};
|
|
8176
|
+
export declare type CustomerServiceCustomAttributeOptionStyleInput = {
|
|
8177
|
+
backgroundColour: Scalars['String']['input'];
|
|
8178
|
+
};
|
|
8179
|
+
export declare type CustomerServiceCustomAttributeOptionsStyleConfiguration = {
|
|
8180
|
+
__typename?: 'CustomerServiceCustomAttributeOptionsStyleConfiguration';
|
|
8181
|
+
optionValue: Scalars['String']['output'];
|
|
8182
|
+
style: CustomerServiceCustomAttributeOptionStyle;
|
|
8183
|
+
};
|
|
8184
|
+
export declare type CustomerServiceCustomAttributeOptionsStyleConfigurationInput = {
|
|
8185
|
+
optionValue: Scalars['String']['input'];
|
|
8186
|
+
style: CustomerServiceCustomAttributeOptionStyleInput;
|
|
8187
|
+
};
|
|
8188
|
+
export declare type CustomerServiceCustomAttributeStyleConfiguration = {
|
|
8189
|
+
__typename?: 'CustomerServiceCustomAttributeStyleConfiguration';
|
|
8190
|
+
options?: Maybe<Array<CustomerServiceCustomAttributeOptionsStyleConfiguration>>;
|
|
8191
|
+
};
|
|
8192
|
+
export declare type CustomerServiceCustomAttributeStyleConfigurationInput = {
|
|
8193
|
+
options?: InputMaybe<Array<CustomerServiceCustomAttributeOptionsStyleConfigurationInput>>;
|
|
8194
|
+
};
|
|
7861
8195
|
export declare type CustomerServiceCustomDetail = Node & {
|
|
7862
8196
|
__typename?: 'CustomerServiceCustomDetail';
|
|
7863
8197
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
@@ -7869,11 +8203,13 @@ export declare type CustomerServiceCustomDetailConfigMetadata = {
|
|
|
7869
8203
|
__typename?: 'CustomerServiceCustomDetailConfigMetadata';
|
|
7870
8204
|
contextConfigurations?: Maybe<Array<CustomerServiceContextConfiguration>>;
|
|
7871
8205
|
position?: Maybe<Scalars['Int']['output']>;
|
|
8206
|
+
styleConfiguration?: Maybe<CustomerServiceCustomAttributeStyleConfiguration>;
|
|
7872
8207
|
};
|
|
7873
8208
|
export declare type CustomerServiceCustomDetailConfigMetadataUpdateInput = {
|
|
7874
8209
|
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
7875
8210
|
id: Scalars['ID']['input'];
|
|
7876
8211
|
position?: InputMaybe<Scalars['Int']['input']>;
|
|
8212
|
+
styleConfiguration?: InputMaybe<CustomerServiceCustomAttributeStyleConfigurationInput>;
|
|
7877
8213
|
};
|
|
7878
8214
|
export declare type CustomerServiceCustomDetailConfigMetadataUpdatePayload = Payload & {
|
|
7879
8215
|
__typename?: 'CustomerServiceCustomDetailConfigMetadataUpdatePayload';
|
|
@@ -7885,6 +8221,7 @@ export declare type CustomerServiceCustomDetailCreateInput = {
|
|
|
7885
8221
|
contextConfigurations?: InputMaybe<Array<CustomerServiceContextConfigurationInput>>;
|
|
7886
8222
|
customDetailEntityType: CustomerServiceCustomDetailsEntityType;
|
|
7887
8223
|
name: Scalars['String']['input'];
|
|
8224
|
+
styleConfiguration?: InputMaybe<CustomerServiceCustomAttributeStyleConfigurationInput>;
|
|
7888
8225
|
type?: InputMaybe<CustomerServiceCustomDetailCreateTypeInput>;
|
|
7889
8226
|
};
|
|
7890
8227
|
export declare type CustomerServiceCustomDetailCreatePayload = Payload & {
|
|
@@ -7924,7 +8261,8 @@ export declare enum CustomerServiceCustomDetailTypeName {
|
|
|
7924
8261
|
Phone = "PHONE",
|
|
7925
8262
|
Select = "SELECT",
|
|
7926
8263
|
Text = "TEXT",
|
|
7927
|
-
Url = "URL"
|
|
8264
|
+
Url = "URL",
|
|
8265
|
+
User = "USER"
|
|
7928
8266
|
}
|
|
7929
8267
|
export declare type CustomerServiceCustomDetailUpdateInput = {
|
|
7930
8268
|
id: Scalars['ID']['input'];
|
|
@@ -7946,6 +8284,7 @@ export declare type CustomerServiceCustomDetailValue = Node & {
|
|
|
7946
8284
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
7947
8285
|
id: Scalars['ID']['output'];
|
|
7948
8286
|
name: Scalars['String']['output'];
|
|
8287
|
+
platformValue?: Maybe<CustomerServicePlatformDetailValue>;
|
|
7949
8288
|
type: CustomerServiceCustomDetailType;
|
|
7950
8289
|
value?: Maybe<Scalars['String']['output']>;
|
|
7951
8290
|
values?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -8360,6 +8699,7 @@ export declare type CustomerServiceOrganizationUpdatePayload = Payload & {
|
|
|
8360
8699
|
success: Scalars['Boolean']['output'];
|
|
8361
8700
|
successfullyUpdatedOrganizationId?: Maybe<Scalars['ID']['output']>;
|
|
8362
8701
|
};
|
|
8702
|
+
export declare type CustomerServicePlatformDetailValue = CustomerServiceUserDetailValue;
|
|
8363
8703
|
export declare type CustomerServiceProduct = Node & {
|
|
8364
8704
|
__typename?: 'CustomerServiceProduct';
|
|
8365
8705
|
entitlementsCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -8424,6 +8764,7 @@ export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
|
|
|
8424
8764
|
};
|
|
8425
8765
|
export declare type CustomerServiceQueryApiEntitlementByIdArgs = {
|
|
8426
8766
|
entitlementId: Scalars['ID']['input'];
|
|
8767
|
+
filter?: InputMaybe<CustomerServiceFilterInput>;
|
|
8427
8768
|
};
|
|
8428
8769
|
export declare type CustomerServiceQueryApiIndividualByAccountIdArgs = {
|
|
8429
8770
|
accountId: Scalars['ID']['input'];
|
|
@@ -8460,6 +8801,12 @@ export declare type CustomerServiceUpdateCustomDetailValuePayload = Payload & {
|
|
|
8460
8801
|
errors?: Maybe<Array<MutationError>>;
|
|
8461
8802
|
success: Scalars['Boolean']['output'];
|
|
8462
8803
|
};
|
|
8804
|
+
export declare type CustomerServiceUserDetailValue = {
|
|
8805
|
+
__typename?: 'CustomerServiceUserDetailValue';
|
|
8806
|
+
accountId: Scalars['ID']['output'];
|
|
8807
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
8808
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
8809
|
+
};
|
|
8463
8810
|
export declare type CustomerUser = LocalizationContext & User & {
|
|
8464
8811
|
__typename?: 'CustomerUser';
|
|
8465
8812
|
accountId: Scalars['ID']['output'];
|
|
@@ -8862,6 +9209,8 @@ export declare type DevOps = {
|
|
|
8862
9209
|
designEntityDetails?: Maybe<Array<Maybe<DevOpsDesign>>>;
|
|
8863
9210
|
entitiesByAssociations?: Maybe<DevOpsEntities>;
|
|
8864
9211
|
graph?: Maybe<Graph>;
|
|
9212
|
+
operationsIncidentEntityDetails?: Maybe<Array<Maybe<DevOpsOperationsIncidentDetails>>>;
|
|
9213
|
+
operationsPostIncidentReviewEntityDetails?: Maybe<Array<Maybe<DevOpsOperationsPostIncidentReviewDetails>>>;
|
|
8865
9214
|
providers?: Maybe<DevOpsProviders>;
|
|
8866
9215
|
providersByDomain?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
8867
9216
|
providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
@@ -8875,6 +9224,12 @@ export declare type DevOpsDesignEntityDetailsArgs = {
|
|
|
8875
9224
|
export declare type DevOpsEntitiesByAssociationsArgs = {
|
|
8876
9225
|
ids: Array<Scalars['ID']['input']>;
|
|
8877
9226
|
};
|
|
9227
|
+
export declare type DevOpsOperationsIncidentEntityDetailsArgs = {
|
|
9228
|
+
ids: Array<Scalars['ID']['input']>;
|
|
9229
|
+
};
|
|
9230
|
+
export declare type DevOpsOperationsPostIncidentReviewEntityDetailsArgs = {
|
|
9231
|
+
ids: Array<Scalars['ID']['input']>;
|
|
9232
|
+
};
|
|
8878
9233
|
export declare type DevOpsProvidersArgs = {
|
|
8879
9234
|
id: Scalars['ID']['input'];
|
|
8880
9235
|
providerTypes?: InputMaybe<Array<DevOpsProviderType>>;
|
|
@@ -8949,6 +9304,45 @@ export declare type DevOpsBuildTestInfo = {
|
|
|
8949
9304
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
8950
9305
|
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
8951
9306
|
};
|
|
9307
|
+
export declare enum DevOpsComponentTier {
|
|
9308
|
+
Tier_1 = "TIER_1",
|
|
9309
|
+
Tier_2 = "TIER_2",
|
|
9310
|
+
Tier_3 = "TIER_3",
|
|
9311
|
+
Tier_4 = "TIER_4"
|
|
9312
|
+
}
|
|
9313
|
+
export declare enum DevOpsComponentType {
|
|
9314
|
+
Application = "APPLICATION",
|
|
9315
|
+
Capability = "CAPABILITY",
|
|
9316
|
+
CloudResource = "CLOUD_RESOURCE",
|
|
9317
|
+
DataPipeline = "DATA_PIPELINE",
|
|
9318
|
+
Library = "LIBRARY",
|
|
9319
|
+
MachineLearningModel = "MACHINE_LEARNING_MODEL",
|
|
9320
|
+
Other = "OTHER",
|
|
9321
|
+
Service = "SERVICE",
|
|
9322
|
+
UiElement = "UI_ELEMENT",
|
|
9323
|
+
Website = "WEBSITE"
|
|
9324
|
+
}
|
|
9325
|
+
export declare type DevOpsComponentsProvider = DevOpsDataProvider & {
|
|
9326
|
+
__typename?: 'DevOpsComponentsProvider';
|
|
9327
|
+
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
9328
|
+
configState?: Maybe<JiraAppConfigState>;
|
|
9329
|
+
documentationUrl?: Maybe<Scalars['URL']['output']>;
|
|
9330
|
+
homeUrl?: Maybe<Scalars['URL']['output']>;
|
|
9331
|
+
id: Scalars['ID']['output'];
|
|
9332
|
+
linkedContainers?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentConnection>;
|
|
9333
|
+
logoUrl?: Maybe<Scalars['URL']['output']>;
|
|
9334
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9335
|
+
providerType?: Maybe<DevOpsProviderType>;
|
|
9336
|
+
supportedActions?: Maybe<DevOpsSupportedActions>;
|
|
9337
|
+
};
|
|
9338
|
+
export declare type DevOpsComponentsProviderConfigStateArgs = {
|
|
9339
|
+
cloudId: Scalars['ID']['input'];
|
|
9340
|
+
};
|
|
9341
|
+
export declare type DevOpsComponentsProviderLinkedContainersArgs = {
|
|
9342
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9343
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9344
|
+
id: Scalars['ID']['input'];
|
|
9345
|
+
};
|
|
8952
9346
|
export declare type DevOpsContainerRelationshipEntityPropertyInput = {
|
|
8953
9347
|
key: Scalars['String']['input'];
|
|
8954
9348
|
value: Scalars['JSON']['input'];
|
|
@@ -9407,10 +9801,25 @@ export declare type DevOpsMutation = {
|
|
|
9407
9801
|
export declare type DevOpsMutation_EmptyArgs = {
|
|
9408
9802
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
9409
9803
|
};
|
|
9804
|
+
export declare type DevOpsOperationsComponentDetails = {
|
|
9805
|
+
__typename?: 'DevOpsOperationsComponentDetails';
|
|
9806
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
9807
|
+
componentType?: Maybe<DevOpsComponentType>;
|
|
9808
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
9809
|
+
id: Scalars['ID']['output'];
|
|
9810
|
+
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
9811
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9812
|
+
providerAri?: Maybe<Scalars['String']['output']>;
|
|
9813
|
+
providerComponentId?: Maybe<Scalars['String']['output']>;
|
|
9814
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
9815
|
+
tier?: Maybe<DevOpsComponentTier>;
|
|
9816
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
9817
|
+
};
|
|
9410
9818
|
export declare type DevOpsOperationsIncidentDetails = {
|
|
9411
9819
|
__typename?: 'DevOpsOperationsIncidentDetails';
|
|
9412
9820
|
actionItems?: Maybe<GraphStoreSimplifiedIncidentLinkedJswIssueConnection>;
|
|
9413
9821
|
affectedComponentIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
9822
|
+
affectedComponents?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection>;
|
|
9414
9823
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
9415
9824
|
description?: Maybe<Scalars['String']['output']>;
|
|
9416
9825
|
id: Scalars['ID']['output'];
|
|
@@ -9424,6 +9833,10 @@ export declare type DevOpsOperationsIncidentDetailsActionItemsArgs = {
|
|
|
9424
9833
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
9425
9834
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9426
9835
|
};
|
|
9836
|
+
export declare type DevOpsOperationsIncidentDetailsAffectedComponentsArgs = {
|
|
9837
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9838
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9839
|
+
};
|
|
9427
9840
|
export declare type DevOpsOperationsIncidentDetailsLinkedPostIncidentReviewsArgs = {
|
|
9428
9841
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
9429
9842
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -9442,6 +9855,19 @@ export declare enum DevOpsOperationsIncidentStatus {
|
|
|
9442
9855
|
Resolved = "RESOLVED",
|
|
9443
9856
|
Unknown = "UNKNOWN"
|
|
9444
9857
|
}
|
|
9858
|
+
export declare type DevOpsOperationsPostIncidentReviewDetails = {
|
|
9859
|
+
__typename?: 'DevOpsOperationsPostIncidentReviewDetails';
|
|
9860
|
+
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
9861
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
9862
|
+
id: Scalars['ID']['output'];
|
|
9863
|
+
lastUpdatedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
9864
|
+
providerAri?: Maybe<Scalars['String']['output']>;
|
|
9865
|
+
providerPostIncidentReviewId?: Maybe<Scalars['String']['output']>;
|
|
9866
|
+
reviewsIncidentIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
9867
|
+
status?: Maybe<DevOpsPostIncidentReviewStatus>;
|
|
9868
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
9869
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
9870
|
+
};
|
|
9445
9871
|
export declare type DevOpsOperationsProvider = DevOpsDataProvider & {
|
|
9446
9872
|
__typename?: 'DevOpsOperationsProvider';
|
|
9447
9873
|
appInstallationId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -9463,6 +9889,11 @@ export declare type DevOpsOperationsProviderLinkedContainersArgs = {
|
|
|
9463
9889
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9464
9890
|
id: Scalars['ID']['input'];
|
|
9465
9891
|
};
|
|
9892
|
+
export declare enum DevOpsPostIncidentReviewStatus {
|
|
9893
|
+
Completed = "COMPLETED",
|
|
9894
|
+
InProgress = "IN_PROGRESS",
|
|
9895
|
+
Todo = "TODO"
|
|
9896
|
+
}
|
|
9466
9897
|
export declare type DevOpsProvider = {
|
|
9467
9898
|
__typename?: 'DevOpsProvider';
|
|
9468
9899
|
links?: Maybe<DevOpsProviderLinks>;
|
|
@@ -9479,6 +9910,7 @@ export declare enum DevOpsProviderType {
|
|
|
9479
9910
|
Build = "BUILD",
|
|
9480
9911
|
Deployment = "DEPLOYMENT",
|
|
9481
9912
|
Design = "DESIGN",
|
|
9913
|
+
DevopsComponents = "DEVOPS_COMPONENTS",
|
|
9482
9914
|
DevInfo = "DEV_INFO",
|
|
9483
9915
|
Documentation = "DOCUMENTATION",
|
|
9484
9916
|
FeatureFlag = "FEATURE_FLAG",
|
|
@@ -9492,6 +9924,7 @@ export declare type DevOpsProviders = {
|
|
|
9492
9924
|
deploymentProviders?: Maybe<Array<Maybe<DevOpsDeploymentProvider>>>;
|
|
9493
9925
|
designProviders?: Maybe<Array<Maybe<DevOpsDesignProvider>>>;
|
|
9494
9926
|
devInfoProviders?: Maybe<Array<Maybe<DevOpsDevInfoProvider>>>;
|
|
9927
|
+
devopsComponentsProviders?: Maybe<Array<Maybe<DevOpsComponentsProvider>>>;
|
|
9495
9928
|
documentationProviders?: Maybe<Array<Maybe<DevOpsDocumentationProvider>>>;
|
|
9496
9929
|
featureFlagProviders?: Maybe<Array<Maybe<DevOpsFeatureFlagProvider>>>;
|
|
9497
9930
|
operationsProviders?: Maybe<Array<Maybe<DevOpsOperationsProvider>>>;
|
|
@@ -9511,7 +9944,9 @@ export declare type DevOpsPullRequestDetails = {
|
|
|
9511
9944
|
destinationBranch?: Maybe<DevOpsBranchInfo>;
|
|
9512
9945
|
id: Scalars['ID']['output'];
|
|
9513
9946
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
9947
|
+
providerIcon?: Maybe<Scalars['URL']['output']>;
|
|
9514
9948
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
9949
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
9515
9950
|
pullRequestInternalId?: Maybe<Scalars['String']['output']>;
|
|
9516
9951
|
repositoryId?: Maybe<Scalars['ID']['output']>;
|
|
9517
9952
|
repositoryInternalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -11164,6 +11599,7 @@ export declare type ForgeMetricsChartInsightQueryInput = {
|
|
|
11164
11599
|
chartName?: InputMaybe<ForgeMetricsChartName>;
|
|
11165
11600
|
invocationChartFilters?: InputMaybe<ForgeMetricsQueryFilters>;
|
|
11166
11601
|
invocationGroupBy?: InputMaybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
11602
|
+
latencyBucketsChartFilters?: InputMaybe<ForgeMetricsLatencyBucketsQueryFilters>;
|
|
11167
11603
|
};
|
|
11168
11604
|
export declare type ForgeMetricsChartInsightResult = ForgeMetricsChartInsightData | QueryError;
|
|
11169
11605
|
export declare type ForgeMetricsChartInsightUsage = {
|
|
@@ -11640,6 +12076,7 @@ export declare type Graph = {
|
|
|
11640
12076
|
projectAssociatedVulnerabilityInverse?: Maybe<GraphJiraProjectConnection>;
|
|
11641
12077
|
projectAssociatedVulnerabilityRelationship?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
11642
12078
|
projectAssociatedVulnerabilityRelationshipInverse?: Maybe<GraphProjectAssociatedVulnerabilityRelationshipConnection>;
|
|
12079
|
+
projectHasIssueRelationship?: Maybe<GraphProjectHasIssueRelationshipConnection>;
|
|
11643
12080
|
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphSecurityContainerAssociatedToVulnerabilityRelationshipConnection>;
|
|
11644
12081
|
securityContainerAssociatedToVulnerabilityRelationshipBatch?: Maybe<Array<Maybe<GraphSecurityContainerAssociatedToVulnerabilityRelationshipConnection>>>;
|
|
11645
12082
|
serviceLinkedIncident?: Maybe<GraphJiraIssueConnection>;
|
|
@@ -11900,6 +12337,12 @@ export declare type GraphProjectAssociatedVulnerabilityRelationshipInverseArgs =
|
|
|
11900
12337
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11901
12338
|
to: Scalars['ID']['input'];
|
|
11902
12339
|
};
|
|
12340
|
+
export declare type GraphProjectHasIssueRelationshipArgs = {
|
|
12341
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
12342
|
+
filter?: InputMaybe<GraphQueryMetadataProjectHasIssueInput>;
|
|
12343
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
12344
|
+
from: Scalars['ID']['input'];
|
|
12345
|
+
};
|
|
11903
12346
|
export declare type GraphSecurityContainerAssociatedToVulnerabilityRelationshipArgs = {
|
|
11904
12347
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
11905
12348
|
filter?: InputMaybe<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInput>;
|
|
@@ -12270,6 +12713,29 @@ export declare enum GraphCreateMetadataProjectAssociatedVulnerabilityJiraVulnera
|
|
|
12270
12713
|
Sca = "SCA",
|
|
12271
12714
|
Unknown = "UNKNOWN"
|
|
12272
12715
|
}
|
|
12716
|
+
export declare type GraphCreateMetadataProjectHasIssueJiraIssueOutput = {
|
|
12717
|
+
__typename?: 'GraphCreateMetadataProjectHasIssueJiraIssueOutput';
|
|
12718
|
+
assigneeAri?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutputAri>;
|
|
12719
|
+
creatorAri?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutputAri>;
|
|
12720
|
+
fixVersionIds?: Maybe<Array<Maybe<Scalars['Long']['output']>>>;
|
|
12721
|
+
issueAri?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutputAri>;
|
|
12722
|
+
issueTypeAri?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutputAri>;
|
|
12723
|
+
reporterAri?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutputAri>;
|
|
12724
|
+
statusAri?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutputAri>;
|
|
12725
|
+
};
|
|
12726
|
+
export declare type GraphCreateMetadataProjectHasIssueJiraIssueOutputAri = {
|
|
12727
|
+
__typename?: 'GraphCreateMetadataProjectHasIssueJiraIssueOutputAri';
|
|
12728
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
12729
|
+
};
|
|
12730
|
+
export declare type GraphCreateMetadataProjectHasIssueOutput = {
|
|
12731
|
+
__typename?: 'GraphCreateMetadataProjectHasIssueOutput';
|
|
12732
|
+
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
12733
|
+
sprintAris?: Maybe<Array<Maybe<GraphCreateMetadataProjectHasIssueOutputAri>>>;
|
|
12734
|
+
};
|
|
12735
|
+
export declare type GraphCreateMetadataProjectHasIssueOutputAri = {
|
|
12736
|
+
__typename?: 'GraphCreateMetadataProjectHasIssueOutputAri';
|
|
12737
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
12738
|
+
};
|
|
12273
12739
|
export declare type GraphCreateMetadataSprintAssociatedBuildJiraBuildOutput = {
|
|
12274
12740
|
__typename?: 'GraphCreateMetadataSprintAssociatedBuildJiraBuildOutput';
|
|
12275
12741
|
state?: Maybe<GraphCreateMetadataSprintAssociatedBuildJiraBuildOutputBuildStateEnum>;
|
|
@@ -12906,6 +13372,34 @@ export declare type GraphProjectAssociatedVulnerabilityRelationshipEdge = {
|
|
|
12906
13372
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
12907
13373
|
node: GraphProjectAssociatedVulnerabilityRelationship;
|
|
12908
13374
|
};
|
|
13375
|
+
export declare type GraphProjectHasIssuePayload = Payload & {
|
|
13376
|
+
__typename?: 'GraphProjectHasIssuePayload';
|
|
13377
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13378
|
+
projectHasIssueRelationship: Array<Maybe<GraphProjectHasIssueRelationship>>;
|
|
13379
|
+
success: Scalars['Boolean']['output'];
|
|
13380
|
+
};
|
|
13381
|
+
export declare type GraphProjectHasIssueRelationship = Node & {
|
|
13382
|
+
__typename?: 'GraphProjectHasIssueRelationship';
|
|
13383
|
+
from: GraphJiraProject;
|
|
13384
|
+
id: Scalars['ID']['output'];
|
|
13385
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
13386
|
+
relationshipMetadata?: Maybe<GraphCreateMetadataProjectHasIssueOutput>;
|
|
13387
|
+
to: GraphJiraIssue;
|
|
13388
|
+
toMetadata?: Maybe<GraphCreateMetadataProjectHasIssueJiraIssueOutput>;
|
|
13389
|
+
};
|
|
13390
|
+
export declare type GraphProjectHasIssueRelationshipConnection = {
|
|
13391
|
+
__typename?: 'GraphProjectHasIssueRelationshipConnection';
|
|
13392
|
+
edges: Array<Maybe<GraphProjectHasIssueRelationshipEdge>>;
|
|
13393
|
+
fromId?: Maybe<Scalars['ID']['output']>;
|
|
13394
|
+
pageInfo: PageInfo;
|
|
13395
|
+
toId?: Maybe<Scalars['ID']['output']>;
|
|
13396
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
13397
|
+
};
|
|
13398
|
+
export declare type GraphProjectHasIssueRelationshipEdge = {
|
|
13399
|
+
__typename?: 'GraphProjectHasIssueRelationshipEdge';
|
|
13400
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
13401
|
+
node: GraphProjectHasIssueRelationship;
|
|
13402
|
+
};
|
|
12909
13403
|
export declare type GraphProjectService = Node & {
|
|
12910
13404
|
__typename?: 'GraphProjectService';
|
|
12911
13405
|
id: Scalars['ID']['output'];
|
|
@@ -13721,6 +14215,158 @@ export declare enum GraphQueryMetadataProjectAssociatedVulnerabilityInputToVulne
|
|
|
13721
14215
|
Sca = "SCA",
|
|
13722
14216
|
Unknown = "UNKNOWN"
|
|
13723
14217
|
}
|
|
14218
|
+
export declare type GraphQueryMetadataProjectHasIssueInput = {
|
|
14219
|
+
and?: InputMaybe<Array<GraphQueryMetadataProjectHasIssueInputAnd>>;
|
|
14220
|
+
or?: InputMaybe<Array<GraphQueryMetadataProjectHasIssueInputOr>>;
|
|
14221
|
+
};
|
|
14222
|
+
export declare type GraphQueryMetadataProjectHasIssueInputAnd = {
|
|
14223
|
+
createdAt?: InputMaybe<GraphQueryMetadataProjectHasIssueInputCreatedAt>;
|
|
14224
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataProjectHasIssueInputLastUpdated>;
|
|
14225
|
+
or?: InputMaybe<Array<GraphQueryMetadataProjectHasIssueInputOrInner>>;
|
|
14226
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOn>;
|
|
14227
|
+
relationship_sprintAris?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipAri>;
|
|
14228
|
+
to_assigneeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14229
|
+
to_creatorAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14230
|
+
to_fixVersionIds?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToFixVersionIds>;
|
|
14231
|
+
to_issueAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14232
|
+
to_issueTypeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14233
|
+
to_reporterAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14234
|
+
to_statusAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14235
|
+
};
|
|
14236
|
+
export declare type GraphQueryMetadataProjectHasIssueInputAndInner = {
|
|
14237
|
+
createdAt?: InputMaybe<GraphQueryMetadataProjectHasIssueInputCreatedAt>;
|
|
14238
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataProjectHasIssueInputLastUpdated>;
|
|
14239
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOn>;
|
|
14240
|
+
relationship_sprintAris?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipAri>;
|
|
14241
|
+
to_assigneeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14242
|
+
to_creatorAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14243
|
+
to_fixVersionIds?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToFixVersionIds>;
|
|
14244
|
+
to_issueAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14245
|
+
to_issueTypeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14246
|
+
to_reporterAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14247
|
+
to_statusAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14248
|
+
};
|
|
14249
|
+
export declare type GraphQueryMetadataProjectHasIssueInputCreatedAt = {
|
|
14250
|
+
notValues?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
14251
|
+
range?: InputMaybe<GraphQueryMetadataProjectHasIssueInputCreatedAtRangeField>;
|
|
14252
|
+
sort?: InputMaybe<GraphQueryMetadataProjectHasIssueInputCreatedAtMetadataSortField>;
|
|
14253
|
+
values?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
14254
|
+
};
|
|
14255
|
+
export declare type GraphQueryMetadataProjectHasIssueInputCreatedAtMetadataSortField = {
|
|
14256
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14257
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14258
|
+
};
|
|
14259
|
+
export declare type GraphQueryMetadataProjectHasIssueInputCreatedAtRangeField = {
|
|
14260
|
+
gt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14261
|
+
gte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14262
|
+
lt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14263
|
+
lte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14264
|
+
};
|
|
14265
|
+
export declare type GraphQueryMetadataProjectHasIssueInputLastUpdated = {
|
|
14266
|
+
notValues?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
14267
|
+
range?: InputMaybe<GraphQueryMetadataProjectHasIssueInputLastUpdatedRangeField>;
|
|
14268
|
+
sort?: InputMaybe<GraphQueryMetadataProjectHasIssueInputLastUpdatedMetadataSortField>;
|
|
14269
|
+
values?: InputMaybe<Array<Scalars['DateTime']['input']>>;
|
|
14270
|
+
};
|
|
14271
|
+
export declare type GraphQueryMetadataProjectHasIssueInputLastUpdatedMetadataSortField = {
|
|
14272
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14273
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14274
|
+
};
|
|
14275
|
+
export declare type GraphQueryMetadataProjectHasIssueInputLastUpdatedRangeField = {
|
|
14276
|
+
gt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14277
|
+
gte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14278
|
+
lt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14279
|
+
lte?: InputMaybe<Scalars['DateTime']['input']>;
|
|
14280
|
+
};
|
|
14281
|
+
export declare type GraphQueryMetadataProjectHasIssueInputOr = {
|
|
14282
|
+
and?: InputMaybe<Array<GraphQueryMetadataProjectHasIssueInputAndInner>>;
|
|
14283
|
+
createdAt?: InputMaybe<GraphQueryMetadataProjectHasIssueInputCreatedAt>;
|
|
14284
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataProjectHasIssueInputLastUpdated>;
|
|
14285
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOn>;
|
|
14286
|
+
relationship_sprintAris?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipAri>;
|
|
14287
|
+
to_assigneeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14288
|
+
to_creatorAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14289
|
+
to_fixVersionIds?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToFixVersionIds>;
|
|
14290
|
+
to_issueAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14291
|
+
to_issueTypeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14292
|
+
to_reporterAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14293
|
+
to_statusAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14294
|
+
};
|
|
14295
|
+
export declare type GraphQueryMetadataProjectHasIssueInputOrInner = {
|
|
14296
|
+
createdAt?: InputMaybe<GraphQueryMetadataProjectHasIssueInputCreatedAt>;
|
|
14297
|
+
lastUpdated?: InputMaybe<GraphQueryMetadataProjectHasIssueInputLastUpdated>;
|
|
14298
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOn>;
|
|
14299
|
+
relationship_sprintAris?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipAri>;
|
|
14300
|
+
to_assigneeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14301
|
+
to_creatorAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14302
|
+
to_fixVersionIds?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToFixVersionIds>;
|
|
14303
|
+
to_issueAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14304
|
+
to_issueTypeAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14305
|
+
to_reporterAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14306
|
+
to_statusAri?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAri>;
|
|
14307
|
+
};
|
|
14308
|
+
export declare type GraphQueryMetadataProjectHasIssueInputRelationshipAri = {
|
|
14309
|
+
matchType?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipArimatchTypeEnum>;
|
|
14310
|
+
value?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipAriValue>;
|
|
14311
|
+
};
|
|
14312
|
+
export declare type GraphQueryMetadataProjectHasIssueInputRelationshipAriValue = {
|
|
14313
|
+
notValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14314
|
+
sort?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipAriValueMetadataSortField>;
|
|
14315
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14316
|
+
};
|
|
14317
|
+
export declare type GraphQueryMetadataProjectHasIssueInputRelationshipAriValueMetadataSortField = {
|
|
14318
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14319
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14320
|
+
};
|
|
14321
|
+
export declare enum GraphQueryMetadataProjectHasIssueInputRelationshipArimatchTypeEnum {
|
|
14322
|
+
All = "ALL",
|
|
14323
|
+
Any = "ANY",
|
|
14324
|
+
None = "NONE"
|
|
14325
|
+
}
|
|
14326
|
+
export declare type GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOn = {
|
|
14327
|
+
notValues?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
14328
|
+
range?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOnRangeField>;
|
|
14329
|
+
sort?: InputMaybe<GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOnMetadataSortField>;
|
|
14330
|
+
values?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
14331
|
+
};
|
|
14332
|
+
export declare type GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOnMetadataSortField = {
|
|
14333
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14334
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14335
|
+
};
|
|
14336
|
+
export declare type GraphQueryMetadataProjectHasIssueInputRelationshipIssueLastUpdatedOnRangeField = {
|
|
14337
|
+
gt?: InputMaybe<Scalars['Long']['input']>;
|
|
14338
|
+
gte?: InputMaybe<Scalars['Long']['input']>;
|
|
14339
|
+
lt?: InputMaybe<Scalars['Long']['input']>;
|
|
14340
|
+
lte?: InputMaybe<Scalars['Long']['input']>;
|
|
14341
|
+
};
|
|
14342
|
+
export declare type GraphQueryMetadataProjectHasIssueInputToAri = {
|
|
14343
|
+
value?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAriValue>;
|
|
14344
|
+
};
|
|
14345
|
+
export declare type GraphQueryMetadataProjectHasIssueInputToAriValue = {
|
|
14346
|
+
notValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14347
|
+
sort?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToAriValueMetadataSortField>;
|
|
14348
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
14349
|
+
};
|
|
14350
|
+
export declare type GraphQueryMetadataProjectHasIssueInputToAriValueMetadataSortField = {
|
|
14351
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14352
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14353
|
+
};
|
|
14354
|
+
export declare type GraphQueryMetadataProjectHasIssueInputToFixVersionIds = {
|
|
14355
|
+
notValues?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
14356
|
+
range?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToFixVersionIdsRangeField>;
|
|
14357
|
+
sort?: InputMaybe<GraphQueryMetadataProjectHasIssueInputToFixVersionIdsMetadataSortField>;
|
|
14358
|
+
values?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
14359
|
+
};
|
|
14360
|
+
export declare type GraphQueryMetadataProjectHasIssueInputToFixVersionIdsMetadataSortField = {
|
|
14361
|
+
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14362
|
+
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14363
|
+
};
|
|
14364
|
+
export declare type GraphQueryMetadataProjectHasIssueInputToFixVersionIdsRangeField = {
|
|
14365
|
+
gt?: InputMaybe<Scalars['Long']['input']>;
|
|
14366
|
+
gte?: InputMaybe<Scalars['Long']['input']>;
|
|
14367
|
+
lt?: InputMaybe<Scalars['Long']['input']>;
|
|
14368
|
+
lte?: InputMaybe<Scalars['Long']['input']>;
|
|
14369
|
+
};
|
|
13724
14370
|
export declare type GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInput = {
|
|
13725
14371
|
and?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputAnd>>;
|
|
13726
14372
|
or?: InputMaybe<Array<GraphQueryMetadataSecurityContainerAssociatedToVulnerabilityInputOr>>;
|
|
@@ -14765,7 +15411,7 @@ export declare type GraphQueryMetadataSprintContainsIssueInputToStatusCategoryMe
|
|
|
14765
15411
|
order?: InputMaybe<GraphQueryMetadataSortEnum>;
|
|
14766
15412
|
priority?: InputMaybe<Scalars['Int']['input']>;
|
|
14767
15413
|
};
|
|
14768
|
-
export declare type GraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDocument | DevOpsFeatureFlag | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
15414
|
+
export declare type GraphRelationshipNodeData = ConfluencePage | ConfluenceSpace | DeploymentSummary | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
14769
15415
|
export declare type GraphSecurityContainerAssociatedToVulnerabilityRelationship = Node & {
|
|
14770
15416
|
__typename?: 'GraphSecurityContainerAssociatedToVulnerabilityRelationship';
|
|
14771
15417
|
from: GraphJiraSecurityContainer;
|
|
@@ -14946,6 +15592,7 @@ export declare type GraphStore = {
|
|
|
14946
15592
|
componentAssociatedDocumentInverseRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
14947
15593
|
componentAssociatedDocumentRelationship?: Maybe<GraphStoreFullComponentAssociatedDocumentConnection>;
|
|
14948
15594
|
componentImpactedByIncident?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentConnection>;
|
|
15595
|
+
componentImpactedByIncidentInverse?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection>;
|
|
14949
15596
|
componentImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
14950
15597
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
14951
15598
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
@@ -15004,7 +15651,10 @@ export declare type GraphStore = {
|
|
|
15004
15651
|
issueAssociatedFeatureFlagInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseConnection>;
|
|
15005
15652
|
issueAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedFeatureFlagConnection>;
|
|
15006
15653
|
issueAssociatedFeatureFlagRelationship?: Maybe<GraphStoreFullIssueAssociatedFeatureFlagConnection>;
|
|
15654
|
+
issueAssociatedIssueRemoteLink?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkConnection>;
|
|
15655
|
+
issueAssociatedIssueRemoteLinkBatch?: Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection>;
|
|
15007
15656
|
issueAssociatedIssueRemoteLinkInverse?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseConnection>;
|
|
15657
|
+
issueAssociatedIssueRemoteLinkInverseBatch?: Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection>;
|
|
15008
15658
|
issueAssociatedIssueRemoteLinkInverseRelationship?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkConnection>;
|
|
15009
15659
|
issueAssociatedIssueRemoteLinkRelationship?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkConnection>;
|
|
15010
15660
|
issueAssociatedPr?: Maybe<GraphStoreSimplifiedIssueAssociatedPrConnection>;
|
|
@@ -15175,20 +15825,12 @@ export declare type GraphStore = {
|
|
|
15175
15825
|
serviceLinkedIncidentRelationship?: Maybe<GraphStoreFullServiceLinkedIncidentConnection>;
|
|
15176
15826
|
shipit57IssueLinksToPage?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageConnection>;
|
|
15177
15827
|
shipit57IssueLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageInverseConnection>;
|
|
15178
|
-
shipit57IssueLinksToPageInverseRelationship?: Maybe<GraphStoreFullShipit57IssueLinksToPageConnection>;
|
|
15179
15828
|
shipit57IssueLinksToPageManual?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageManualConnection>;
|
|
15180
15829
|
shipit57IssueLinksToPageManualInverse?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageManualInverseConnection>;
|
|
15181
|
-
shipit57IssueLinksToPageManualInverseRelationship?: Maybe<GraphStoreFullShipit57IssueLinksToPageManualConnection>;
|
|
15182
|
-
shipit57IssueLinksToPageManualRelationship?: Maybe<GraphStoreFullShipit57IssueLinksToPageManualConnection>;
|
|
15183
|
-
shipit57IssueLinksToPageRelationship?: Maybe<GraphStoreFullShipit57IssueLinksToPageConnection>;
|
|
15184
15830
|
shipit57IssueRecursiveLinksToPage?: Maybe<GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageConnection>;
|
|
15185
15831
|
shipit57IssueRecursiveLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57IssueRecursiveLinksToPageInverseConnection>;
|
|
15186
|
-
shipit57IssueRecursiveLinksToPageInverseRelationship?: Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageConnection>;
|
|
15187
|
-
shipit57IssueRecursiveLinksToPageRelationship?: Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageConnection>;
|
|
15188
15832
|
shipit57PullRequestLinksToPage?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageConnection>;
|
|
15189
15833
|
shipit57PullRequestLinksToPageInverse?: Maybe<GraphStoreSimplifiedShipit57PullRequestLinksToPageInverseConnection>;
|
|
15190
|
-
shipit57PullRequestLinksToPageInverseRelationship?: Maybe<GraphStoreFullShipit57PullRequestLinksToPageConnection>;
|
|
15191
|
-
shipit57PullRequestLinksToPageRelationship?: Maybe<GraphStoreFullShipit57PullRequestLinksToPageConnection>;
|
|
15192
15834
|
sprintAssociatedBuildInverseRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
15193
15835
|
sprintAssociatedBuildRelationship?: Maybe<GraphStoreFullSprintAssociatedBuildConnection>;
|
|
15194
15836
|
sprintAssociatedDeployment?: Maybe<GraphStoreSimplifiedSprintAssociatedDeploymentConnection>;
|
|
@@ -15351,6 +15993,11 @@ export declare type GraphStoreComponentImpactedByIncidentArgs = {
|
|
|
15351
15993
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15352
15994
|
id: Scalars['ID']['input'];
|
|
15353
15995
|
};
|
|
15996
|
+
export declare type GraphStoreComponentImpactedByIncidentInverseArgs = {
|
|
15997
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15998
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15999
|
+
id: Scalars['ID']['input'];
|
|
16000
|
+
};
|
|
15354
16001
|
export declare type GraphStoreComponentImpactedByIncidentInverseRelationshipArgs = {
|
|
15355
16002
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15356
16003
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15642,11 +16289,26 @@ export declare type GraphStoreIssueAssociatedFeatureFlagRelationshipArgs = {
|
|
|
15642
16289
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15643
16290
|
id: Scalars['ID']['input'];
|
|
15644
16291
|
};
|
|
16292
|
+
export declare type GraphStoreIssueAssociatedIssueRemoteLinkArgs = {
|
|
16293
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16294
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16295
|
+
id: Scalars['ID']['input'];
|
|
16296
|
+
};
|
|
16297
|
+
export declare type GraphStoreIssueAssociatedIssueRemoteLinkBatchArgs = {
|
|
16298
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16299
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16300
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16301
|
+
};
|
|
15645
16302
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseArgs = {
|
|
15646
16303
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15647
16304
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15648
16305
|
id: Scalars['ID']['input'];
|
|
15649
16306
|
};
|
|
16307
|
+
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseBatchArgs = {
|
|
16308
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16309
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16310
|
+
ids: Array<Scalars['ID']['input']>;
|
|
16311
|
+
};
|
|
15650
16312
|
export declare type GraphStoreIssueAssociatedIssueRemoteLinkInverseRelationshipArgs = {
|
|
15651
16313
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15652
16314
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16430,23 +17092,31 @@ export declare type GraphStoreProjectExplicitlyAssociatedRepoRelationshipArgs =
|
|
|
16430
17092
|
};
|
|
16431
17093
|
export declare type GraphStoreProjectHasIssueArgs = {
|
|
16432
17094
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17095
|
+
filter?: InputMaybe<GraphStoreProjectHasIssueFilterInput>;
|
|
16433
17096
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16434
17097
|
id: Scalars['ID']['input'];
|
|
17098
|
+
sort?: InputMaybe<GraphStoreProjectHasIssueSortInput>;
|
|
16435
17099
|
};
|
|
16436
17100
|
export declare type GraphStoreProjectHasIssueInverseArgs = {
|
|
16437
17101
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17102
|
+
filter?: InputMaybe<GraphStoreProjectHasIssueFilterInput>;
|
|
16438
17103
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16439
17104
|
id: Scalars['ID']['input'];
|
|
17105
|
+
sort?: InputMaybe<GraphStoreProjectHasIssueSortInput>;
|
|
16440
17106
|
};
|
|
16441
17107
|
export declare type GraphStoreProjectHasIssueInverseRelationshipArgs = {
|
|
16442
17108
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17109
|
+
filter?: InputMaybe<GraphStoreProjectHasIssueFilterInput>;
|
|
16443
17110
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16444
17111
|
id: Scalars['ID']['input'];
|
|
17112
|
+
sort?: InputMaybe<GraphStoreProjectHasIssueSortInput>;
|
|
16445
17113
|
};
|
|
16446
17114
|
export declare type GraphStoreProjectHasIssueRelationshipArgs = {
|
|
16447
17115
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
17116
|
+
filter?: InputMaybe<GraphStoreProjectHasIssueFilterInput>;
|
|
16448
17117
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16449
17118
|
id: Scalars['ID']['input'];
|
|
17119
|
+
sort?: InputMaybe<GraphStoreProjectHasIssueSortInput>;
|
|
16450
17120
|
};
|
|
16451
17121
|
export declare type GraphStoreProjectHasSharedVersionWithArgs = {
|
|
16452
17122
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -16551,11 +17221,6 @@ export declare type GraphStoreShipit57IssueLinksToPageInverseArgs = {
|
|
|
16551
17221
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16552
17222
|
id: Scalars['ID']['input'];
|
|
16553
17223
|
};
|
|
16554
|
-
export declare type GraphStoreShipit57IssueLinksToPageInverseRelationshipArgs = {
|
|
16555
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16556
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16557
|
-
id: Scalars['ID']['input'];
|
|
16558
|
-
};
|
|
16559
17224
|
export declare type GraphStoreShipit57IssueLinksToPageManualArgs = {
|
|
16560
17225
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16561
17226
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16566,21 +17231,6 @@ export declare type GraphStoreShipit57IssueLinksToPageManualInverseArgs = {
|
|
|
16566
17231
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16567
17232
|
id: Scalars['ID']['input'];
|
|
16568
17233
|
};
|
|
16569
|
-
export declare type GraphStoreShipit57IssueLinksToPageManualInverseRelationshipArgs = {
|
|
16570
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16571
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16572
|
-
id: Scalars['ID']['input'];
|
|
16573
|
-
};
|
|
16574
|
-
export declare type GraphStoreShipit57IssueLinksToPageManualRelationshipArgs = {
|
|
16575
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16576
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16577
|
-
id: Scalars['ID']['input'];
|
|
16578
|
-
};
|
|
16579
|
-
export declare type GraphStoreShipit57IssueLinksToPageRelationshipArgs = {
|
|
16580
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16581
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16582
|
-
id: Scalars['ID']['input'];
|
|
16583
|
-
};
|
|
16584
17234
|
export declare type GraphStoreShipit57IssueRecursiveLinksToPageArgs = {
|
|
16585
17235
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16586
17236
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16591,16 +17241,6 @@ export declare type GraphStoreShipit57IssueRecursiveLinksToPageInverseArgs = {
|
|
|
16591
17241
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16592
17242
|
id: Scalars['ID']['input'];
|
|
16593
17243
|
};
|
|
16594
|
-
export declare type GraphStoreShipit57IssueRecursiveLinksToPageInverseRelationshipArgs = {
|
|
16595
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16596
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16597
|
-
id: Scalars['ID']['input'];
|
|
16598
|
-
};
|
|
16599
|
-
export declare type GraphStoreShipit57IssueRecursiveLinksToPageRelationshipArgs = {
|
|
16600
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16601
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16602
|
-
id: Scalars['ID']['input'];
|
|
16603
|
-
};
|
|
16604
17244
|
export declare type GraphStoreShipit57PullRequestLinksToPageArgs = {
|
|
16605
17245
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16606
17246
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16611,16 +17251,6 @@ export declare type GraphStoreShipit57PullRequestLinksToPageInverseArgs = {
|
|
|
16611
17251
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16612
17252
|
id: Scalars['ID']['input'];
|
|
16613
17253
|
};
|
|
16614
|
-
export declare type GraphStoreShipit57PullRequestLinksToPageInverseRelationshipArgs = {
|
|
16615
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16616
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16617
|
-
id: Scalars['ID']['input'];
|
|
16618
|
-
};
|
|
16619
|
-
export declare type GraphStoreShipit57PullRequestLinksToPageRelationshipArgs = {
|
|
16620
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
16621
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16622
|
-
id: Scalars['ID']['input'];
|
|
16623
|
-
};
|
|
16624
17254
|
export declare type GraphStoreSprintAssociatedBuildInverseRelationshipArgs = {
|
|
16625
17255
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16626
17256
|
filter?: InputMaybe<GraphStoreSprintAssociatedBuildFilterInput>;
|
|
@@ -17175,7 +17805,7 @@ export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndNo
|
|
|
17175
17805
|
data?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndUnion>;
|
|
17176
17806
|
id: Scalars['ID']['output'];
|
|
17177
17807
|
};
|
|
17178
|
-
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndUnion = JiraIssue | JiraPostIncidentReviewLink;
|
|
17808
|
+
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkEndUnion = DevOpsOperationsPostIncidentReviewDetails | JiraIssue | JiraPostIncidentReviewLink;
|
|
17179
17809
|
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkInnerConnection = {
|
|
17180
17810
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkInnerConnection';
|
|
17181
17811
|
edges: Array<Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkInnerEdge>>;
|
|
@@ -17297,6 +17927,47 @@ export declare type GraphStoreBatchIncidentLinkedJswIssueStartNode = Node & {
|
|
|
17297
17927
|
id: Scalars['ID']['output'];
|
|
17298
17928
|
};
|
|
17299
17929
|
export declare type GraphStoreBatchIncidentLinkedJswIssueStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
17930
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection = HasPageInfo & {
|
|
17931
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkConnection';
|
|
17932
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkEdge>>;
|
|
17933
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkNode>>;
|
|
17934
|
+
pageInfo: PageInfo;
|
|
17935
|
+
};
|
|
17936
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkEdge = {
|
|
17937
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkEdge';
|
|
17938
|
+
node: GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerConnection;
|
|
17939
|
+
};
|
|
17940
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode = Node & {
|
|
17941
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode';
|
|
17942
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkEndUnion>;
|
|
17943
|
+
id: Scalars['ID']['output'];
|
|
17944
|
+
};
|
|
17945
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkEndUnion = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
17946
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerConnection = {
|
|
17947
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerConnection';
|
|
17948
|
+
edges: Array<Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerEdge>>;
|
|
17949
|
+
nodes: Array<Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkNode>>;
|
|
17950
|
+
requestedId: Scalars['ID']['output'];
|
|
17951
|
+
};
|
|
17952
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerEdge = {
|
|
17953
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkInnerEdge';
|
|
17954
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
17955
|
+
node: GraphStoreBatchIssueAssociatedIssueRemoteLinkNode;
|
|
17956
|
+
};
|
|
17957
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkNode = Node & {
|
|
17958
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkNode';
|
|
17959
|
+
createdAt: Scalars['DateTime']['output'];
|
|
17960
|
+
from: GraphStoreBatchIssueAssociatedIssueRemoteLinkStartNode;
|
|
17961
|
+
id: Scalars['ID']['output'];
|
|
17962
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
17963
|
+
to: GraphStoreBatchIssueAssociatedIssueRemoteLinkEndNode;
|
|
17964
|
+
};
|
|
17965
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkStartNode = Node & {
|
|
17966
|
+
__typename?: 'GraphStoreBatchIssueAssociatedIssueRemoteLinkStartNode';
|
|
17967
|
+
data?: Maybe<GraphStoreBatchIssueAssociatedIssueRemoteLinkStartUnion>;
|
|
17968
|
+
id: Scalars['ID']['output'];
|
|
17969
|
+
};
|
|
17970
|
+
export declare type GraphStoreBatchIssueAssociatedIssueRemoteLinkStartUnion = JiraIssue;
|
|
17300
17971
|
export declare type GraphStoreBatchJsmProjectAssociatedServiceConnection = HasPageInfo & {
|
|
17301
17972
|
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceConnection';
|
|
17302
17973
|
edges: Array<Maybe<GraphStoreBatchJsmProjectAssociatedServiceEdge>>;
|
|
@@ -18127,6 +18798,7 @@ export declare type GraphStoreFullComponentImpactedByIncidentNode = Node & {
|
|
|
18127
18798
|
};
|
|
18128
18799
|
export declare type GraphStoreFullComponentImpactedByIncidentRelationshipObjectMetadataOutput = {
|
|
18129
18800
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentRelationshipObjectMetadataOutput';
|
|
18801
|
+
affectedServiceAris?: Maybe<Scalars['String']['output']>;
|
|
18130
18802
|
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
18131
18803
|
majorIncident?: Maybe<Scalars['Boolean']['output']>;
|
|
18132
18804
|
priority?: Maybe<GraphStoreFullComponentImpactedByIncidentJiraIncidentPriorityOutput>;
|
|
@@ -18135,8 +18807,10 @@ export declare type GraphStoreFullComponentImpactedByIncidentRelationshipObjectM
|
|
|
18135
18807
|
};
|
|
18136
18808
|
export declare type GraphStoreFullComponentImpactedByIncidentStartNode = {
|
|
18137
18809
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentStartNode';
|
|
18810
|
+
data?: Maybe<GraphStoreFullComponentImpactedByIncidentStartUnion>;
|
|
18138
18811
|
id: Scalars['ID']['output'];
|
|
18139
18812
|
};
|
|
18813
|
+
export declare type GraphStoreFullComponentImpactedByIncidentStartUnion = DevOpsOperationsComponentDetails;
|
|
18140
18814
|
export declare type GraphStoreFullComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
18141
18815
|
__typename?: 'GraphStoreFullComponentLinkedJswIssueConnection';
|
|
18142
18816
|
edges: Array<Maybe<GraphStoreFullComponentLinkedJswIssueEdge>>;
|
|
@@ -18169,7 +18843,7 @@ export declare type GraphStoreFullComponentLinkedJswIssueStartNode = {
|
|
|
18169
18843
|
data?: Maybe<GraphStoreFullComponentLinkedJswIssueStartUnion>;
|
|
18170
18844
|
id: Scalars['ID']['output'];
|
|
18171
18845
|
};
|
|
18172
|
-
export declare type GraphStoreFullComponentLinkedJswIssueStartUnion = DevOpsService;
|
|
18846
|
+
export declare type GraphStoreFullComponentLinkedJswIssueStartUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
18173
18847
|
export declare type GraphStoreFullContentReferencedEntityConnection = HasPageInfo & {
|
|
18174
18848
|
__typename?: 'GraphStoreFullContentReferencedEntityConnection';
|
|
18175
18849
|
edges: Array<Maybe<GraphStoreFullContentReferencedEntityEdge>>;
|
|
@@ -18238,7 +18912,7 @@ export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndNod
|
|
|
18238
18912
|
data?: Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndUnion>;
|
|
18239
18913
|
id: Scalars['ID']['output'];
|
|
18240
18914
|
};
|
|
18241
|
-
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndUnion = JiraIssue | JiraPostIncidentReviewLink;
|
|
18915
|
+
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkEndUnion = DevOpsOperationsPostIncidentReviewDetails | JiraIssue | JiraPostIncidentReviewLink;
|
|
18242
18916
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkNode = Node & {
|
|
18243
18917
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewLinkNode';
|
|
18244
18918
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -18598,9 +19272,11 @@ export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkEdge = {
|
|
|
18598
19272
|
};
|
|
18599
19273
|
export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkEndNode = {
|
|
18600
19274
|
__typename?: 'GraphStoreFullIssueAssociatedIssueRemoteLinkEndNode';
|
|
19275
|
+
data?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkEndUnion>;
|
|
18601
19276
|
id: Scalars['ID']['output'];
|
|
18602
19277
|
metadata?: Maybe<GraphStoreFullIssueAssociatedIssueRemoteLinkRelationshipObjectMetadataOutput>;
|
|
18603
19278
|
};
|
|
19279
|
+
export declare type GraphStoreFullIssueAssociatedIssueRemoteLinkEndUnion = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
18604
19280
|
export declare enum GraphStoreFullIssueAssociatedIssueRemoteLinkLinkApplicationTypeOutput {
|
|
18605
19281
|
Bamboo = "BAMBOO",
|
|
18606
19282
|
BbPrComment = "BB_PR_COMMENT",
|
|
@@ -19023,7 +19699,7 @@ export declare type GraphStoreFullJswProjectAssociatedComponentEndNode = {
|
|
|
19023
19699
|
data?: Maybe<GraphStoreFullJswProjectAssociatedComponentEndUnion>;
|
|
19024
19700
|
id: Scalars['ID']['output'];
|
|
19025
19701
|
};
|
|
19026
|
-
export declare type GraphStoreFullJswProjectAssociatedComponentEndUnion = DevOpsService;
|
|
19702
|
+
export declare type GraphStoreFullJswProjectAssociatedComponentEndUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
19027
19703
|
export declare type GraphStoreFullJswProjectAssociatedComponentNode = Node & {
|
|
19028
19704
|
__typename?: 'GraphStoreFullJswProjectAssociatedComponentNode';
|
|
19029
19705
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -19085,6 +19761,7 @@ export declare type GraphStoreFullJswProjectAssociatedIncidentNode = Node & {
|
|
|
19085
19761
|
};
|
|
19086
19762
|
export declare type GraphStoreFullJswProjectAssociatedIncidentRelationshipObjectMetadataOutput = {
|
|
19087
19763
|
__typename?: 'GraphStoreFullJswProjectAssociatedIncidentRelationshipObjectMetadataOutput';
|
|
19764
|
+
affectedServiceAris?: Maybe<Scalars['String']['output']>;
|
|
19088
19765
|
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
19089
19766
|
majorIncident?: Maybe<Scalars['Boolean']['output']>;
|
|
19090
19767
|
priority?: Maybe<GraphStoreFullJswProjectAssociatedIncidentJiraIncidentPriorityOutput>;
|
|
@@ -20097,11 +20774,13 @@ export declare type GraphStoreFullProjectExplicitlyAssociatedRepoStartNode = {
|
|
|
20097
20774
|
id: Scalars['ID']['output'];
|
|
20098
20775
|
};
|
|
20099
20776
|
export declare type GraphStoreFullProjectExplicitlyAssociatedRepoStartUnion = JiraProject;
|
|
20100
|
-
export declare type GraphStoreFullProjectHasIssueConnection = HasPageInfo & {
|
|
20777
|
+
export declare type GraphStoreFullProjectHasIssueConnection = HasPageInfo & HasTotal & {
|
|
20101
20778
|
__typename?: 'GraphStoreFullProjectHasIssueConnection';
|
|
20102
20779
|
edges: Array<Maybe<GraphStoreFullProjectHasIssueEdge>>;
|
|
20780
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
20103
20781
|
nodes: Array<Maybe<GraphStoreFullProjectHasIssueNode>>;
|
|
20104
20782
|
pageInfo: PageInfo;
|
|
20783
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20105
20784
|
};
|
|
20106
20785
|
export declare type GraphStoreFullProjectHasIssueEdge = {
|
|
20107
20786
|
__typename?: 'GraphStoreFullProjectHasIssueEdge';
|
|
@@ -20127,6 +20806,7 @@ export declare type GraphStoreFullProjectHasIssueNode = Node & {
|
|
|
20127
20806
|
export declare type GraphStoreFullProjectHasIssueRelationshipMetadataOutput = {
|
|
20128
20807
|
__typename?: 'GraphStoreFullProjectHasIssueRelationshipMetadataOutput';
|
|
20129
20808
|
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
20809
|
+
sprintAris?: Maybe<Scalars['String']['output']>;
|
|
20130
20810
|
};
|
|
20131
20811
|
export declare type GraphStoreFullProjectHasIssueRelationshipObjectMetadataOutput = {
|
|
20132
20812
|
__typename?: 'GraphStoreFullProjectHasIssueRelationshipObjectMetadataOutput';
|
|
@@ -20318,6 +20998,7 @@ export declare type GraphStoreFullServiceLinkedIncidentNode = Node & {
|
|
|
20318
20998
|
};
|
|
20319
20999
|
export declare type GraphStoreFullServiceLinkedIncidentRelationshipObjectMetadataOutput = {
|
|
20320
21000
|
__typename?: 'GraphStoreFullServiceLinkedIncidentRelationshipObjectMetadataOutput';
|
|
21001
|
+
affectedServiceAris?: Maybe<Scalars['String']['output']>;
|
|
20321
21002
|
assigneeAri?: Maybe<Scalars['String']['output']>;
|
|
20322
21003
|
majorIncident?: Maybe<Scalars['Boolean']['output']>;
|
|
20323
21004
|
priority?: Maybe<GraphStoreFullServiceLinkedIncidentJiraServiceManagementIncidentPriorityOutput>;
|
|
@@ -20330,134 +21011,6 @@ export declare type GraphStoreFullServiceLinkedIncidentStartNode = {
|
|
|
20330
21011
|
id: Scalars['ID']['output'];
|
|
20331
21012
|
};
|
|
20332
21013
|
export declare type GraphStoreFullServiceLinkedIncidentStartUnion = DevOpsService;
|
|
20333
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageConnection = HasPageInfo & HasTotal & {
|
|
20334
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageConnection';
|
|
20335
|
-
edges: Array<Maybe<GraphStoreFullShipit57IssueLinksToPageEdge>>;
|
|
20336
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
20337
|
-
nodes: Array<Maybe<GraphStoreFullShipit57IssueLinksToPageNode>>;
|
|
20338
|
-
pageInfo: PageInfo;
|
|
20339
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20340
|
-
};
|
|
20341
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageEdge = {
|
|
20342
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageEdge';
|
|
20343
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
20344
|
-
node: GraphStoreFullShipit57IssueLinksToPageNode;
|
|
20345
|
-
};
|
|
20346
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageEndNode = {
|
|
20347
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageEndNode';
|
|
20348
|
-
data?: Maybe<GraphStoreFullShipit57IssueLinksToPageEndUnion>;
|
|
20349
|
-
id: Scalars['ID']['output'];
|
|
20350
|
-
};
|
|
20351
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageEndUnion = ConfluencePage;
|
|
20352
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualConnection = HasPageInfo & {
|
|
20353
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualConnection';
|
|
20354
|
-
edges: Array<Maybe<GraphStoreFullShipit57IssueLinksToPageManualEdge>>;
|
|
20355
|
-
nodes: Array<Maybe<GraphStoreFullShipit57IssueLinksToPageManualNode>>;
|
|
20356
|
-
pageInfo: PageInfo;
|
|
20357
|
-
};
|
|
20358
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualEdge = {
|
|
20359
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualEdge';
|
|
20360
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
20361
|
-
node: GraphStoreFullShipit57IssueLinksToPageManualNode;
|
|
20362
|
-
};
|
|
20363
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualEndNode = {
|
|
20364
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualEndNode';
|
|
20365
|
-
data?: Maybe<GraphStoreFullShipit57IssueLinksToPageManualEndUnion>;
|
|
20366
|
-
id: Scalars['ID']['output'];
|
|
20367
|
-
};
|
|
20368
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualEndUnion = ConfluencePage;
|
|
20369
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualNode = Node & {
|
|
20370
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualNode';
|
|
20371
|
-
createdAt: Scalars['DateTime']['output'];
|
|
20372
|
-
from: GraphStoreFullShipit57IssueLinksToPageManualStartNode;
|
|
20373
|
-
id: Scalars['ID']['output'];
|
|
20374
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
20375
|
-
to: GraphStoreFullShipit57IssueLinksToPageManualEndNode;
|
|
20376
|
-
};
|
|
20377
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualStartNode = {
|
|
20378
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageManualStartNode';
|
|
20379
|
-
data?: Maybe<GraphStoreFullShipit57IssueLinksToPageManualStartUnion>;
|
|
20380
|
-
id: Scalars['ID']['output'];
|
|
20381
|
-
};
|
|
20382
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageManualStartUnion = JiraIssue;
|
|
20383
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageNode = Node & {
|
|
20384
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageNode';
|
|
20385
|
-
createdAt: Scalars['DateTime']['output'];
|
|
20386
|
-
from: GraphStoreFullShipit57IssueLinksToPageStartNode;
|
|
20387
|
-
id: Scalars['ID']['output'];
|
|
20388
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
20389
|
-
to: GraphStoreFullShipit57IssueLinksToPageEndNode;
|
|
20390
|
-
};
|
|
20391
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageStartNode = {
|
|
20392
|
-
__typename?: 'GraphStoreFullShipit57IssueLinksToPageStartNode';
|
|
20393
|
-
data?: Maybe<GraphStoreFullShipit57IssueLinksToPageStartUnion>;
|
|
20394
|
-
id: Scalars['ID']['output'];
|
|
20395
|
-
};
|
|
20396
|
-
export declare type GraphStoreFullShipit57IssueLinksToPageStartUnion = JiraIssue;
|
|
20397
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageConnection = HasPageInfo & HasTotal & {
|
|
20398
|
-
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageConnection';
|
|
20399
|
-
edges: Array<Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageEdge>>;
|
|
20400
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
20401
|
-
nodes: Array<Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageNode>>;
|
|
20402
|
-
pageInfo: PageInfo;
|
|
20403
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20404
|
-
};
|
|
20405
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageEdge = {
|
|
20406
|
-
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageEdge';
|
|
20407
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
20408
|
-
node: GraphStoreFullShipit57IssueRecursiveLinksToPageNode;
|
|
20409
|
-
};
|
|
20410
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode = {
|
|
20411
|
-
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode';
|
|
20412
|
-
data?: Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageEndUnion>;
|
|
20413
|
-
id: Scalars['ID']['output'];
|
|
20414
|
-
};
|
|
20415
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageEndUnion = ConfluencePage;
|
|
20416
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageNode = Node & {
|
|
20417
|
-
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageNode';
|
|
20418
|
-
createdAt: Scalars['DateTime']['output'];
|
|
20419
|
-
from: GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode;
|
|
20420
|
-
id: Scalars['ID']['output'];
|
|
20421
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
20422
|
-
to: GraphStoreFullShipit57IssueRecursiveLinksToPageEndNode;
|
|
20423
|
-
};
|
|
20424
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode = {
|
|
20425
|
-
__typename?: 'GraphStoreFullShipit57IssueRecursiveLinksToPageStartNode';
|
|
20426
|
-
data?: Maybe<GraphStoreFullShipit57IssueRecursiveLinksToPageStartUnion>;
|
|
20427
|
-
id: Scalars['ID']['output'];
|
|
20428
|
-
};
|
|
20429
|
-
export declare type GraphStoreFullShipit57IssueRecursiveLinksToPageStartUnion = JiraIssue;
|
|
20430
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageConnection = HasPageInfo & {
|
|
20431
|
-
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageConnection';
|
|
20432
|
-
edges: Array<Maybe<GraphStoreFullShipit57PullRequestLinksToPageEdge>>;
|
|
20433
|
-
nodes: Array<Maybe<GraphStoreFullShipit57PullRequestLinksToPageNode>>;
|
|
20434
|
-
pageInfo: PageInfo;
|
|
20435
|
-
};
|
|
20436
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageEdge = {
|
|
20437
|
-
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageEdge';
|
|
20438
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
20439
|
-
node: GraphStoreFullShipit57PullRequestLinksToPageNode;
|
|
20440
|
-
};
|
|
20441
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageEndNode = {
|
|
20442
|
-
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageEndNode';
|
|
20443
|
-
data?: Maybe<GraphStoreFullShipit57PullRequestLinksToPageEndUnion>;
|
|
20444
|
-
id: Scalars['ID']['output'];
|
|
20445
|
-
};
|
|
20446
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageEndUnion = ConfluencePage;
|
|
20447
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageNode = Node & {
|
|
20448
|
-
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageNode';
|
|
20449
|
-
createdAt: Scalars['DateTime']['output'];
|
|
20450
|
-
from: GraphStoreFullShipit57PullRequestLinksToPageStartNode;
|
|
20451
|
-
id: Scalars['ID']['output'];
|
|
20452
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
20453
|
-
to: GraphStoreFullShipit57PullRequestLinksToPageEndNode;
|
|
20454
|
-
};
|
|
20455
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageStartNode = {
|
|
20456
|
-
__typename?: 'GraphStoreFullShipit57PullRequestLinksToPageStartNode';
|
|
20457
|
-
data?: Maybe<GraphStoreFullShipit57PullRequestLinksToPageStartUnion>;
|
|
20458
|
-
id: Scalars['ID']['output'];
|
|
20459
|
-
};
|
|
20460
|
-
export declare type GraphStoreFullShipit57PullRequestLinksToPageStartUnion = DevOpsPullRequestDetails;
|
|
20461
21014
|
export declare enum GraphStoreFullSprintAssociatedBuildBuildStateOutput {
|
|
20462
21015
|
Cancelled = "CANCELLED",
|
|
20463
21016
|
Failed = "FAILED",
|
|
@@ -21476,6 +22029,7 @@ export declare type GraphStoreJswProjectAssociatedIncidentConditionalFilterInput
|
|
|
21476
22029
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
21477
22030
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
21478
22031
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
22032
|
+
to_affectedServiceAris?: InputMaybe<GraphStoreAriFilterInput>;
|
|
21479
22033
|
to_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
21480
22034
|
to_majorIncident?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
21481
22035
|
to_priority?: InputMaybe<GraphStoreJswProjectAssociatedIncidentJiraIncidentPriorityFilterInput>;
|
|
@@ -21516,6 +22070,7 @@ export declare type GraphStoreJswProjectAssociatedIncidentSortInput = {
|
|
|
21516
22070
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
21517
22071
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
21518
22072
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
22073
|
+
to_affectedServiceAris?: InputMaybe<GraphStoreSortInput>;
|
|
21519
22074
|
to_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
21520
22075
|
to_majorIncident?: InputMaybe<GraphStoreSortInput>;
|
|
21521
22076
|
to_priority?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -21969,11 +22524,46 @@ export declare type GraphStoreProjectAssociatedVulnerabilityVulnerabilityTypeFil
|
|
|
21969
22524
|
is?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilityType>>;
|
|
21970
22525
|
isNot?: InputMaybe<Array<GraphStoreProjectAssociatedVulnerabilityVulnerabilityType>>;
|
|
21971
22526
|
};
|
|
22527
|
+
export declare type GraphStoreProjectHasIssueConditionalFilterInput = {
|
|
22528
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
22529
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
22530
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
22531
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
22532
|
+
relationship_sprintAris?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22533
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
22534
|
+
to_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22535
|
+
to_creatorAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22536
|
+
to_fixVersionIds?: InputMaybe<GraphStoreLongFilterInput>;
|
|
22537
|
+
to_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22538
|
+
to_issueTypeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22539
|
+
to_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22540
|
+
to_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
22541
|
+
};
|
|
22542
|
+
export declare type GraphStoreProjectHasIssueFilterInput = {
|
|
22543
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreProjectHasIssueConditionalFilterInput>>>;
|
|
22544
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreProjectHasIssueConditionalFilterInput>>>;
|
|
22545
|
+
};
|
|
22546
|
+
export declare type GraphStoreProjectHasIssueSortInput = {
|
|
22547
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
22548
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
22549
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
22550
|
+
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
22551
|
+
relationship_sprintAris?: InputMaybe<GraphStoreSortInput>;
|
|
22552
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
22553
|
+
to_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
22554
|
+
to_creatorAri?: InputMaybe<GraphStoreSortInput>;
|
|
22555
|
+
to_fixVersionIds?: InputMaybe<GraphStoreSortInput>;
|
|
22556
|
+
to_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
22557
|
+
to_issueTypeAri?: InputMaybe<GraphStoreSortInput>;
|
|
22558
|
+
to_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
22559
|
+
to_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
22560
|
+
};
|
|
21972
22561
|
export declare type GraphStoreServiceLinkedIncidentConditionalFilterInput = {
|
|
21973
22562
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
21974
22563
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
21975
22564
|
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
21976
22565
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
22566
|
+
to_affectedServiceAris?: InputMaybe<GraphStoreAriFilterInput>;
|
|
21977
22567
|
to_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
21978
22568
|
to_majorIncident?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
21979
22569
|
to_priority?: InputMaybe<GraphStoreServiceLinkedIncidentJiraServiceManagementIncidentPriorityFilterInput>;
|
|
@@ -22012,6 +22602,7 @@ export declare type GraphStoreServiceLinkedIncidentSortInput = {
|
|
|
22012
22602
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
22013
22603
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
22014
22604
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
22605
|
+
to_affectedServiceAris?: InputMaybe<GraphStoreSortInput>;
|
|
22015
22606
|
to_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
22016
22607
|
to_majorIncident?: InputMaybe<GraphStoreSortInput>;
|
|
22017
22608
|
to_priority?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -22095,6 +22686,19 @@ export declare type GraphStoreSimplifiedComponentImpactedByIncidentEdge = {
|
|
|
22095
22686
|
lastUpdated: Scalars['DateTime']['output'];
|
|
22096
22687
|
node?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentUnion>;
|
|
22097
22688
|
};
|
|
22689
|
+
export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection = HasPageInfo & {
|
|
22690
|
+
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentInverseConnection';
|
|
22691
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge>>>;
|
|
22692
|
+
pageInfo: PageInfo;
|
|
22693
|
+
};
|
|
22694
|
+
export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge = {
|
|
22695
|
+
__typename?: 'GraphStoreSimplifiedComponentImpactedByIncidentInverseEdge';
|
|
22696
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22697
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
22698
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
22699
|
+
node?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentInverseUnion>;
|
|
22700
|
+
};
|
|
22701
|
+
export declare type GraphStoreSimplifiedComponentImpactedByIncidentInverseUnion = DevOpsOperationsComponentDetails;
|
|
22098
22702
|
export declare type GraphStoreSimplifiedComponentImpactedByIncidentUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
22099
22703
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
22100
22704
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
@@ -22124,7 +22728,7 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
|
22124
22728
|
lastUpdated: Scalars['DateTime']['output'];
|
|
22125
22729
|
node?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion>;
|
|
22126
22730
|
};
|
|
22127
|
-
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = DevOpsService;
|
|
22731
|
+
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
22128
22732
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
|
|
22129
22733
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
22130
22734
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
@@ -22210,7 +22814,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLink
|
|
|
22210
22814
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkInverseUnion>;
|
|
22211
22815
|
};
|
|
22212
22816
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkInverseUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
22213
|
-
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkUnion = JiraIssue | JiraPostIncidentReviewLink;
|
|
22817
|
+
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkUnion = DevOpsOperationsPostIncidentReviewDetails | JiraIssue | JiraPostIncidentReviewLink;
|
|
22214
22818
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewUnion = JiraIssue;
|
|
22215
22819
|
export declare type GraphStoreSimplifiedIncidentHasActionItemConnection = HasPageInfo & HasTotal & {
|
|
22216
22820
|
__typename?: 'GraphStoreSimplifiedIncidentHasActionItemConnection';
|
|
@@ -22389,6 +22993,18 @@ export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseEdge =
|
|
|
22389
22993
|
};
|
|
22390
22994
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagInverseUnion = JiraIssue;
|
|
22391
22995
|
export declare type GraphStoreSimplifiedIssueAssociatedFeatureFlagUnion = DevOpsFeatureFlag;
|
|
22996
|
+
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkConnection = HasPageInfo & {
|
|
22997
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkConnection';
|
|
22998
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge>>>;
|
|
22999
|
+
pageInfo: PageInfo;
|
|
23000
|
+
};
|
|
23001
|
+
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge = {
|
|
23002
|
+
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkEdge';
|
|
23003
|
+
createdAt: Scalars['DateTime']['output'];
|
|
23004
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
23005
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
23006
|
+
node?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkUnion>;
|
|
23007
|
+
};
|
|
22392
23008
|
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseConnection = HasPageInfo & {
|
|
22393
23009
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseConnection';
|
|
22394
23010
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdge>>>;
|
|
@@ -22402,6 +23018,7 @@ export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseEdg
|
|
|
22402
23018
|
node?: Maybe<GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseUnion>;
|
|
22403
23019
|
};
|
|
22404
23020
|
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkInverseUnion = JiraIssue;
|
|
23021
|
+
export declare type GraphStoreSimplifiedIssueAssociatedIssueRemoteLinkUnion = JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssueRemoteIssueLink | JiraWebRemoteIssueLink;
|
|
22405
23022
|
export declare type GraphStoreSimplifiedIssueAssociatedPrConnection = HasPageInfo & {
|
|
22406
23023
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedPrConnection';
|
|
22407
23024
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueAssociatedPrEdge>>>;
|
|
@@ -22691,7 +23308,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseEdge
|
|
|
22691
23308
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentInverseUnion>;
|
|
22692
23309
|
};
|
|
22693
23310
|
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseUnion = JiraProject;
|
|
22694
|
-
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentUnion = DevOpsService;
|
|
23311
|
+
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentUnion = DevOpsOperationsComponentDetails | DevOpsService;
|
|
22695
23312
|
export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentConnection = HasPageInfo & HasTotal & {
|
|
22696
23313
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedIncidentConnection';
|
|
22697
23314
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentEdge>>>;
|
|
@@ -23407,10 +24024,12 @@ export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseEd
|
|
|
23407
24024
|
};
|
|
23408
24025
|
export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoInverseUnion = JiraProject;
|
|
23409
24026
|
export declare type GraphStoreSimplifiedProjectExplicitlyAssociatedRepoUnion = DevOpsRepository;
|
|
23410
|
-
export declare type GraphStoreSimplifiedProjectHasIssueConnection = HasPageInfo & {
|
|
24027
|
+
export declare type GraphStoreSimplifiedProjectHasIssueConnection = HasPageInfo & HasTotal & {
|
|
23411
24028
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueConnection';
|
|
23412
24029
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasIssueEdge>>>;
|
|
24030
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
23413
24031
|
pageInfo: PageInfo;
|
|
24032
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
23414
24033
|
};
|
|
23415
24034
|
export declare type GraphStoreSimplifiedProjectHasIssueEdge = {
|
|
23416
24035
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueEdge';
|
|
@@ -23419,10 +24038,12 @@ export declare type GraphStoreSimplifiedProjectHasIssueEdge = {
|
|
|
23419
24038
|
lastUpdated: Scalars['DateTime']['output'];
|
|
23420
24039
|
node?: Maybe<GraphStoreSimplifiedProjectHasIssueUnion>;
|
|
23421
24040
|
};
|
|
23422
|
-
export declare type GraphStoreSimplifiedProjectHasIssueInverseConnection = HasPageInfo & {
|
|
24041
|
+
export declare type GraphStoreSimplifiedProjectHasIssueInverseConnection = HasPageInfo & HasTotal & {
|
|
23423
24042
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueInverseConnection';
|
|
23424
24043
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectHasIssueInverseEdge>>>;
|
|
24044
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
23425
24045
|
pageInfo: PageInfo;
|
|
24046
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
23426
24047
|
};
|
|
23427
24048
|
export declare type GraphStoreSimplifiedProjectHasIssueInverseEdge = {
|
|
23428
24049
|
__typename?: 'GraphStoreSimplifiedProjectHasIssueInverseEdge';
|
|
@@ -24672,6 +25293,7 @@ export declare type HelpCenterBanner = {
|
|
|
24672
25293
|
};
|
|
24673
25294
|
export declare type HelpCenterBannerInput = {
|
|
24674
25295
|
filedId?: InputMaybe<Scalars['String']['input']>;
|
|
25296
|
+
useDefaultBanner?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24675
25297
|
};
|
|
24676
25298
|
export declare type HelpCenterBranding = {
|
|
24677
25299
|
__typename?: 'HelpCenterBranding';
|
|
@@ -24710,7 +25332,6 @@ export declare type HelpCenterBulkUpdateTopicInput = {
|
|
|
24710
25332
|
export declare type HelpCenterContentGapIndicator = {
|
|
24711
25333
|
__typename?: 'HelpCenterContentGapIndicator';
|
|
24712
25334
|
clusterId: Scalars['ID']['output'];
|
|
24713
|
-
coverage: Scalars['Float']['output'];
|
|
24714
25335
|
keywords: Scalars['String']['output'];
|
|
24715
25336
|
questionsCount: Scalars['Int']['output'];
|
|
24716
25337
|
};
|
|
@@ -24994,6 +25615,7 @@ export declare type HelpCenterQueryApi = {
|
|
|
24994
25615
|
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
|
|
24995
25616
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
24996
25617
|
helpCenters?: Maybe<Array<Maybe<HelpCenterQueryResult>>>;
|
|
25618
|
+
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
24997
25619
|
helpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
24998
25620
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
24999
25621
|
};
|
|
@@ -25014,6 +25636,12 @@ export declare type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
|
|
|
25014
25636
|
export declare type HelpCenterQueryApiHelpCentersArgs = {
|
|
25015
25637
|
workspaceAri: Scalars['ID']['input'];
|
|
25016
25638
|
};
|
|
25639
|
+
export declare type HelpCenterQueryApiHelpCentersListArgs = {
|
|
25640
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
25641
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25642
|
+
sortOrder: HelpCenterSortOrder;
|
|
25643
|
+
workspaceAri: Scalars['ID']['input'];
|
|
25644
|
+
};
|
|
25017
25645
|
export declare type HelpCenterQueryApiHelpDeskByIdArgs = {
|
|
25018
25646
|
helpCenterAri: Scalars['ID']['input'];
|
|
25019
25647
|
helpDeskAri: Scalars['ID']['input'];
|
|
@@ -25023,6 +25651,17 @@ export declare type HelpCenterQueryApiMediaConfigArgs = {
|
|
|
25023
25651
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
25024
25652
|
};
|
|
25025
25653
|
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
25654
|
+
export declare type HelpCenterQueryResultConnection = {
|
|
25655
|
+
__typename?: 'HelpCenterQueryResultConnection';
|
|
25656
|
+
edges?: Maybe<Array<Maybe<HelpCenterQueryResultEdge>>>;
|
|
25657
|
+
nodes?: Maybe<Array<Maybe<HelpCenterQueryResult>>>;
|
|
25658
|
+
pageInfo: PageInfo;
|
|
25659
|
+
};
|
|
25660
|
+
export declare type HelpCenterQueryResultEdge = {
|
|
25661
|
+
__typename?: 'HelpCenterQueryResultEdge';
|
|
25662
|
+
cursor: Scalars['String']['output'];
|
|
25663
|
+
node?: Maybe<HelpCenterQueryResult>;
|
|
25664
|
+
};
|
|
25026
25665
|
export declare type HelpCenterReporting = {
|
|
25027
25666
|
__typename?: 'HelpCenterReporting';
|
|
25028
25667
|
contentGapIndicatorsWithMetaData?: Maybe<HelpCenterContentGapIndicatorsWithMetaData>;
|
|
@@ -25042,6 +25681,10 @@ export declare type HelpCenterReportingPerformanceIndicatorsWithMetaData = {
|
|
|
25042
25681
|
refreshedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
25043
25682
|
};
|
|
25044
25683
|
export declare type HelpCenterReportingResult = HelpCenterReporting | QueryError;
|
|
25684
|
+
export declare enum HelpCenterSortOrder {
|
|
25685
|
+
CreatedDateAscending = "CREATED_DATE_ASCENDING",
|
|
25686
|
+
CreatedDateDescending = "CREATED_DATE_DESCENDING"
|
|
25687
|
+
}
|
|
25045
25688
|
export declare type HelpCenterSuccessfullyCreatedTopicIds = {
|
|
25046
25689
|
__typename?: 'HelpCenterSuccessfullyCreatedTopicIds';
|
|
25047
25690
|
helpCenterId: Scalars['ID']['output'];
|
|
@@ -25139,6 +25782,7 @@ export declare type HelpCenterUpdateTopicsOrderPayload = Payload & {
|
|
|
25139
25782
|
errors?: Maybe<Array<MutationError>>;
|
|
25140
25783
|
success: Scalars['Boolean']['output'];
|
|
25141
25784
|
};
|
|
25785
|
+
export declare type HelpCentersListQueryResult = HelpCenterQueryResultConnection | QueryError;
|
|
25142
25786
|
export declare type HelpExternalResource = Node & {
|
|
25143
25787
|
__typename?: 'HelpExternalResource';
|
|
25144
25788
|
containerAti: Scalars['String']['output'];
|
|
@@ -26200,6 +26844,7 @@ export declare type InsightsBlockingIssueDetails = {
|
|
|
26200
26844
|
blockedIssues?: Maybe<Array<InsightsBlockedIssue>>;
|
|
26201
26845
|
issueIconUrl: Scalars['String']['output'];
|
|
26202
26846
|
issueId: Scalars['String']['output'];
|
|
26847
|
+
issueKey: Scalars['String']['output'];
|
|
26203
26848
|
};
|
|
26204
26849
|
export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
|
|
26205
26850
|
__typename?: 'InsightsBlockingIssueTask';
|
|
@@ -26207,6 +26852,7 @@ export declare type InsightsBlockingIssueTask = InsightsNextBestTaskCommon & {
|
|
|
26207
26852
|
id: Scalars['String']['output'];
|
|
26208
26853
|
issueIconUrl: Scalars['String']['output'];
|
|
26209
26854
|
issueId: Scalars['String']['output'];
|
|
26855
|
+
issueKey: Scalars['String']['output'];
|
|
26210
26856
|
title: Scalars['String']['output'];
|
|
26211
26857
|
url: Scalars['String']['output'];
|
|
26212
26858
|
};
|
|
@@ -26956,6 +27602,10 @@ export declare type JiraAdfToConvertedPlainText = {
|
|
|
26956
27602
|
isTruncated?: Maybe<Scalars['Boolean']['output']>;
|
|
26957
27603
|
plainText?: Maybe<Scalars['String']['output']>;
|
|
26958
27604
|
};
|
|
27605
|
+
export declare type JiraAdjustmentEstimate = {
|
|
27606
|
+
adjustEstimateType: JiraWorklogAdjustmentEstimateOperation;
|
|
27607
|
+
adjustTimeInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
27608
|
+
};
|
|
26959
27609
|
export declare type JiraAdminRichTextFieldConfig = {
|
|
26960
27610
|
__typename?: 'JiraAdminRichTextFieldConfig';
|
|
26961
27611
|
aiEnabledByProject?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -27294,9 +27944,24 @@ export declare type JiraAttachmentFieldPayload = Payload & {
|
|
|
27294
27944
|
};
|
|
27295
27945
|
export declare type JiraAttachmentFilterInput = {
|
|
27296
27946
|
authorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
27297
|
-
dateRange?: InputMaybe<
|
|
27947
|
+
dateRange?: InputMaybe<JiraDateTimeRange>;
|
|
27948
|
+
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
27949
|
+
mimeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
27950
|
+
};
|
|
27951
|
+
export declare type JiraAttachmentSearchViewContext = {
|
|
27952
|
+
__typename?: 'JiraAttachmentSearchViewContext';
|
|
27953
|
+
matchesSearch: Scalars['Boolean']['output'];
|
|
27954
|
+
nextAttachmentId?: Maybe<Scalars['ID']['output']>;
|
|
27955
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
27956
|
+
previousAttachmentId?: Maybe<Scalars['ID']['output']>;
|
|
27957
|
+
};
|
|
27958
|
+
export declare type JiraAttachmentSearchViewContextInput = {
|
|
27959
|
+
authorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
27960
|
+
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
27961
|
+
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
27298
27962
|
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
27299
27963
|
mimeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
27964
|
+
projectKeys: Array<Scalars['String']['input']>;
|
|
27300
27965
|
};
|
|
27301
27966
|
export declare enum JiraAttachmentSortField {
|
|
27302
27967
|
Created = "CREATED"
|
|
@@ -27372,12 +28037,14 @@ export declare type JiraAutodevCreateJobPayload = Payload & {
|
|
|
27372
28037
|
export declare type JiraAutodevJob = {
|
|
27373
28038
|
__typename?: 'JiraAutodevJob';
|
|
27374
28039
|
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
28040
|
+
currentWorkflow?: Maybe<Scalars['String']['output']>;
|
|
27375
28041
|
id: Scalars['ID']['output'];
|
|
27376
28042
|
plan?: Maybe<JiraAutodevPlan>;
|
|
27377
28043
|
progressText?: Maybe<Scalars['String']['output']>;
|
|
27378
28044
|
pullRequests?: Maybe<JiraAutodevPullRequestConnection>;
|
|
27379
28045
|
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
27380
28046
|
state?: Maybe<JiraAutodevState>;
|
|
28047
|
+
status?: Maybe<JiraAutodevStatus>;
|
|
27381
28048
|
};
|
|
27382
28049
|
export declare type JiraAutodevJobConnection = {
|
|
27383
28050
|
__typename?: 'JiraAutodevJobConnection';
|
|
@@ -27413,6 +28080,7 @@ export declare type JiraAutodevPullRequestEdge = {
|
|
|
27413
28080
|
node?: Maybe<JiraAutodevPullRequest>;
|
|
27414
28081
|
};
|
|
27415
28082
|
export declare enum JiraAutodevState {
|
|
28083
|
+
Cancelled = "CANCELLED",
|
|
27416
28084
|
CodeGenerating = "CODE_GENERATING",
|
|
27417
28085
|
CodeGenerationFail = "CODE_GENERATION_FAIL",
|
|
27418
28086
|
CodeGenerationReady = "CODE_GENERATION_READY",
|
|
@@ -27423,7 +28091,15 @@ export declare enum JiraAutodevState {
|
|
|
27423
28091
|
PlanGenerationSuccess = "PLAN_GENERATION_SUCCESS",
|
|
27424
28092
|
PullrequestCreating = "PULLREQUEST_CREATING",
|
|
27425
28093
|
PullrequestCreationFail = "PULLREQUEST_CREATION_FAIL",
|
|
27426
|
-
PullrequestCreationSuccess = "PULLREQUEST_CREATION_SUCCESS"
|
|
28094
|
+
PullrequestCreationSuccess = "PULLREQUEST_CREATION_SUCCESS",
|
|
28095
|
+
Unknown = "UNKNOWN"
|
|
28096
|
+
}
|
|
28097
|
+
export declare enum JiraAutodevStatus {
|
|
28098
|
+
Cancelled = "CANCELLED",
|
|
28099
|
+
Completed = "COMPLETED",
|
|
28100
|
+
Failed = "FAILED",
|
|
28101
|
+
InProgress = "IN_PROGRESS",
|
|
28102
|
+
Pending = "PENDING"
|
|
27427
28103
|
}
|
|
27428
28104
|
export declare type JiraAutofixCreateJobPayload = Payload & {
|
|
27429
28105
|
__typename?: 'JiraAutofixCreateJobPayload';
|
|
@@ -27533,7 +28209,6 @@ export declare type JiraBulkEditInput = {
|
|
|
27533
28209
|
editedFieldsInput: JiraIssueFieldsInput;
|
|
27534
28210
|
selectedActions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
27535
28211
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
27536
|
-
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27537
28212
|
};
|
|
27538
28213
|
export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
27539
28214
|
Add = "ADD",
|
|
@@ -27557,6 +28232,7 @@ export declare type JiraBulkEditResponseBulkEditFieldsArgs = {
|
|
|
27557
28232
|
export declare type JiraBulkOperationInput = {
|
|
27558
28233
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
27559
28234
|
bulkTransitionsInput?: InputMaybe<Array<JiraBulkTransitionsInput>>;
|
|
28235
|
+
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27560
28236
|
};
|
|
27561
28237
|
export declare enum JiraBulkOperationType {
|
|
27562
28238
|
BulkEdit = "BULK_EDIT",
|
|
@@ -27603,9 +28279,34 @@ export declare type JiraBulkTransitionResponseBulkTransitionsArgs = {
|
|
|
27603
28279
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
27604
28280
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
27605
28281
|
};
|
|
28282
|
+
export declare type JiraBulkTransitionScreenConnection = {
|
|
28283
|
+
__typename?: 'JiraBulkTransitionScreenConnection';
|
|
28284
|
+
edges?: Maybe<Array<Maybe<JiraBulkTransitionScreenEdge>>>;
|
|
28285
|
+
errors?: Maybe<Array<QueryError>>;
|
|
28286
|
+
pageInfo: PageInfo;
|
|
28287
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
28288
|
+
};
|
|
28289
|
+
export declare type JiraBulkTransitionScreenEdge = {
|
|
28290
|
+
__typename?: 'JiraBulkTransitionScreenEdge';
|
|
28291
|
+
cursor: Scalars['String']['output'];
|
|
28292
|
+
node?: Maybe<Array<Maybe<JiraScreenTabLayout>>>;
|
|
28293
|
+
};
|
|
28294
|
+
export declare type JiraBulkTransitionScreenInput = {
|
|
28295
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
28296
|
+
transitionId: Scalars['Long']['input'];
|
|
28297
|
+
};
|
|
28298
|
+
export declare type JiraBulkTransitionScreenResponse = {
|
|
28299
|
+
__typename?: 'JiraBulkTransitionScreenResponse';
|
|
28300
|
+
bulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenConnection>;
|
|
28301
|
+
};
|
|
28302
|
+
export declare type JiraBulkTransitionScreenResponseBulkTransitionsScreenArgs = {
|
|
28303
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28304
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
28305
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28306
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28307
|
+
};
|
|
27606
28308
|
export declare type JiraBulkTransitionsInput = {
|
|
27607
28309
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
27608
|
-
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27609
28310
|
transitionId: Scalars['String']['input'];
|
|
27610
28311
|
transitionScreenInput?: InputMaybe<JiraTransitionScreenInput>;
|
|
27611
28312
|
};
|
|
@@ -28283,6 +28984,15 @@ export declare enum JiraConfigStateProviderType {
|
|
|
28283
28984
|
Security = "SECURITY",
|
|
28284
28985
|
Unknown = "UNKNOWN"
|
|
28285
28986
|
}
|
|
28987
|
+
export declare type JiraConfigurableNavigationItem = {
|
|
28988
|
+
__typename?: 'JiraConfigurableNavigationItem';
|
|
28989
|
+
isVisible: Scalars['Boolean']['output'];
|
|
28990
|
+
menuId: Scalars['String']['output'];
|
|
28991
|
+
};
|
|
28992
|
+
export declare type JiraConfigurableNavigationItemInput = {
|
|
28993
|
+
isVisible: Scalars['Boolean']['input'];
|
|
28994
|
+
menuId: Scalars['String']['input'];
|
|
28995
|
+
};
|
|
28286
28996
|
export declare type JiraConfluenceRemoteIssueLink = {
|
|
28287
28997
|
__typename?: 'JiraConfluenceRemoteIssueLink';
|
|
28288
28998
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -28509,6 +29219,7 @@ export declare type JiraCustomFilter = JiraFilter & Node & {
|
|
|
28509
29219
|
editGrants?: Maybe<JiraShareableEntityEditGrantConnection>;
|
|
28510
29220
|
emailSubscriptions?: Maybe<JiraFilterEmailSubscriptionConnection>;
|
|
28511
29221
|
filterId: Scalars['String']['output'];
|
|
29222
|
+
filterUrl?: Maybe<Scalars['URL']['output']>;
|
|
28512
29223
|
id: Scalars['ID']['output'];
|
|
28513
29224
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
28514
29225
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -28563,6 +29274,14 @@ export declare type JiraCustomRemoteIssueLink = {
|
|
|
28563
29274
|
summary?: Maybe<Scalars['String']['output']>;
|
|
28564
29275
|
title?: Maybe<Scalars['String']['output']>;
|
|
28565
29276
|
};
|
|
29277
|
+
export declare type JiraDashboard = Node & {
|
|
29278
|
+
__typename?: 'JiraDashboard';
|
|
29279
|
+
dashboardId?: Maybe<Scalars['Long']['output']>;
|
|
29280
|
+
dashboardUrl?: Maybe<Scalars['URL']['output']>;
|
|
29281
|
+
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
29282
|
+
id: Scalars['ID']['output'];
|
|
29283
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
29284
|
+
};
|
|
28566
29285
|
export declare type JiraDataClassification = {
|
|
28567
29286
|
__typename?: 'JiraDataClassification';
|
|
28568
29287
|
color?: Maybe<JiraColor>;
|
|
@@ -28635,10 +29354,6 @@ export declare type JiraDatePickerField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
28635
29354
|
type: Scalars['String']['output'];
|
|
28636
29355
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
28637
29356
|
};
|
|
28638
|
-
export declare type JiraDateRange = {
|
|
28639
|
-
after?: InputMaybe<Scalars['Date']['input']>;
|
|
28640
|
-
before?: InputMaybe<Scalars['Date']['input']>;
|
|
28641
|
-
};
|
|
28642
29357
|
export declare type JiraDateTimeFieldInput = {
|
|
28643
29358
|
dateTime: JiraDateTimeInput;
|
|
28644
29359
|
fieldId: Scalars['ID']['input'];
|
|
@@ -28669,6 +29384,10 @@ export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldCon
|
|
|
28669
29384
|
type: Scalars['String']['output'];
|
|
28670
29385
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
28671
29386
|
};
|
|
29387
|
+
export declare type JiraDateTimeRange = {
|
|
29388
|
+
after?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29389
|
+
before?: InputMaybe<Scalars['DateTime']['input']>;
|
|
29390
|
+
};
|
|
28672
29391
|
export declare type JiraDateTimeWindow = {
|
|
28673
29392
|
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
28674
29393
|
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -28822,6 +29541,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
28822
29541
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
28823
29542
|
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
28824
29543
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
29544
|
+
retryAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
28825
29545
|
saveAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
28826
29546
|
setProjectSelectedDeploymentAppsProperty?: Maybe<JiraSetProjectSelectedDeploymentAppsPropertyPayload>;
|
|
28827
29547
|
startAutodev?: Maybe<JiraAutodevBasicPayload>;
|
|
@@ -28866,6 +29586,10 @@ export declare type JiraDevOpsMutationRemoveJiraBitbucketWorkspaceConnectionArgs
|
|
|
28866
29586
|
cloudId: Scalars['ID']['input'];
|
|
28867
29587
|
input: JiraRemoveJiraBitbucketWorkspaceConnectionInput;
|
|
28868
29588
|
};
|
|
29589
|
+
export declare type JiraDevOpsMutationRetryAutodevJobArgs = {
|
|
29590
|
+
issueAri: Scalars['ID']['input'];
|
|
29591
|
+
jobId: Scalars['ID']['input'];
|
|
29592
|
+
};
|
|
28869
29593
|
export declare type JiraDevOpsMutationSaveAutodevPlanArgs = {
|
|
28870
29594
|
acceptanceCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
28871
29595
|
currentState?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -28877,6 +29601,9 @@ export declare type JiraDevOpsMutationSetProjectSelectedDeploymentAppsPropertyAr
|
|
|
28877
29601
|
input: JiraSetProjectSelectedDeploymentAppsPropertyInput;
|
|
28878
29602
|
};
|
|
28879
29603
|
export declare type JiraDevOpsMutationStartAutodevArgs = {
|
|
29604
|
+
acceptanceCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
29605
|
+
currentState?: InputMaybe<Scalars['String']['input']>;
|
|
29606
|
+
desiredState?: InputMaybe<Scalars['String']['input']>;
|
|
28880
29607
|
issueAri: Scalars['ID']['input'];
|
|
28881
29608
|
jobId: Scalars['ID']['input'];
|
|
28882
29609
|
};
|
|
@@ -29180,6 +29907,7 @@ export declare type JiraFieldType = {
|
|
|
29180
29907
|
};
|
|
29181
29908
|
export declare type JiraFilter = {
|
|
29182
29909
|
filterId: Scalars['String']['output'];
|
|
29910
|
+
filterUrl?: Maybe<Scalars['URL']['output']>;
|
|
29183
29911
|
id: Scalars['ID']['output'];
|
|
29184
29912
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
29185
29913
|
jql: Scalars['String']['output'];
|
|
@@ -30592,7 +31320,9 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
30592
31320
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
30593
31321
|
JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
|
|
30594
31322
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
31323
|
+
JiraMultipleGroupPickerField?: InputMaybe<Array<JiraUpdateMultipleGroupPickerFieldInput>>;
|
|
30595
31324
|
JiraMultipleSelectField?: InputMaybe<Array<JiraUpdateMultipleSelectFieldInput>>;
|
|
31325
|
+
JiraMultipleSelectUserPickerField?: InputMaybe<Array<JiraUpdateMultipleSelectUserPickerFieldInput>>;
|
|
30596
31326
|
JiraMultipleVersionPickerField?: InputMaybe<Array<JiraUpdateMultipleVersionPickerFieldInput>>;
|
|
30597
31327
|
JiraNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
|
|
30598
31328
|
JiraParentIssueField?: InputMaybe<Array<JiraUpdateParentFieldInput>>;
|
|
@@ -30605,7 +31335,9 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
30605
31335
|
JiraSingleSelectUserPickerField?: InputMaybe<Array<JiraUpdateSingleSelectUserPickerFieldInput>>;
|
|
30606
31336
|
JiraSprintField?: InputMaybe<Array<JiraUpdateSprintFieldInput>>;
|
|
30607
31337
|
JiraTeamViewField?: InputMaybe<Array<JiraUpdateTeamFieldInput>>;
|
|
31338
|
+
JiraTimeTrackingField?: InputMaybe<Array<JiraUpdateTimeTrackingFieldInput>>;
|
|
30608
31339
|
JiraUrlField?: InputMaybe<Array<JiraUpdateUrlFieldInput>>;
|
|
31340
|
+
JiraWorkLogField?: InputMaybe<Array<JiraUpdateWorklogFieldInputForIssueTransitions>>;
|
|
30609
31341
|
};
|
|
30610
31342
|
export declare enum JiraIssueTransitionLayoutMessageType {
|
|
30611
31343
|
Error = "ERROR",
|
|
@@ -31603,6 +32335,7 @@ export declare type JiraMultipleSelectUserPickerFieldSelectedUsersConnectionArgs
|
|
|
31603
32335
|
export declare type JiraMultipleSelectUserPickerFieldUsersArgs = {
|
|
31604
32336
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31605
32337
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
32338
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
31606
32339
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31607
32340
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31608
32341
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31740,6 +32473,7 @@ export declare type JiraMutation = {
|
|
|
31740
32473
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
31741
32474
|
removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
|
|
31742
32475
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
32476
|
+
renameNavigationItem?: Maybe<JiraRenameNavigationItemPayload>;
|
|
31743
32477
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
31744
32478
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
31745
32479
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
@@ -31747,6 +32481,7 @@ export declare type JiraMutation = {
|
|
|
31747
32481
|
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
31748
32482
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
31749
32483
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
32484
|
+
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
31750
32485
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
31751
32486
|
unlinkIssuesFromIncident?: Maybe<JiraUnlinkIssuesFromIncidentMutationPayload>;
|
|
31752
32487
|
updateAttachmentField?: Maybe<JiraAttachmentFieldPayload>;
|
|
@@ -31757,6 +32492,7 @@ export declare type JiraMutation = {
|
|
|
31757
32492
|
updateDataClassificationField?: Maybe<JiraDataClassificationFieldPayload>;
|
|
31758
32493
|
updateDateField?: Maybe<JiraDateFieldPayload>;
|
|
31759
32494
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
32495
|
+
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
31760
32496
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
31761
32497
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
31762
32498
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
@@ -31796,6 +32532,7 @@ export declare type JiraMutation = {
|
|
|
31796
32532
|
updateTeamField?: Maybe<JiraTeamFieldPayload>;
|
|
31797
32533
|
updateTimeTrackingField?: Maybe<JiraTimeTrackingFieldPayload>;
|
|
31798
32534
|
updateUrlField?: Maybe<JiraUrlFieldPayload>;
|
|
32535
|
+
updateUserNavigationConfiguration?: Maybe<JiraUserNavigationConfigurationPayload>;
|
|
31799
32536
|
updateVersionArchivedStatus?: Maybe<JiraUpdateVersionPayload>;
|
|
31800
32537
|
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
31801
32538
|
updateVersionName?: Maybe<JiraUpdateVersionPayload>;
|
|
@@ -31972,6 +32709,9 @@ export declare type JiraMutationRemovePostIncidentReviewLinkArgs = {
|
|
|
31972
32709
|
export declare type JiraMutationRemoveRelatedWorkFromVersionArgs = {
|
|
31973
32710
|
input: JiraRemoveRelatedWorkFromVersionInput;
|
|
31974
32711
|
};
|
|
32712
|
+
export declare type JiraMutationRenameNavigationItemArgs = {
|
|
32713
|
+
input: JiraRenameNavigationItemInput;
|
|
32714
|
+
};
|
|
31975
32715
|
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
31976
32716
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
31977
32717
|
id: Scalars['ID']['input'];
|
|
@@ -31996,6 +32736,9 @@ export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
|
|
|
31996
32736
|
cloudId: Scalars['ID']['input'];
|
|
31997
32737
|
id: Scalars['ID']['input'];
|
|
31998
32738
|
};
|
|
32739
|
+
export declare type JiraMutationSprintUpdateArgs = {
|
|
32740
|
+
sprintUpdateInput: JiraSprintUpdateInput;
|
|
32741
|
+
};
|
|
31999
32742
|
export declare type JiraMutationSubmitBulkOperationArgs = {
|
|
32000
32743
|
cloudId: Scalars['ID']['input'];
|
|
32001
32744
|
input: JiraSubmitBulkOperationInput;
|
|
@@ -32027,6 +32770,9 @@ export declare type JiraMutationUpdateDateFieldArgs = {
|
|
|
32027
32770
|
export declare type JiraMutationUpdateDateTimeFieldArgs = {
|
|
32028
32771
|
input: JiraUpdateDateTimeFieldInput;
|
|
32029
32772
|
};
|
|
32773
|
+
export declare type JiraMutationUpdateEntitlementFieldArgs = {
|
|
32774
|
+
input: JiraServiceManagementUpdateEntitlementFieldInput;
|
|
32775
|
+
};
|
|
32030
32776
|
export declare type JiraMutationUpdateGlobalNotificationOptionsArgs = {
|
|
32031
32777
|
cloudId: Scalars['ID']['input'];
|
|
32032
32778
|
input: JiraUpdateNotificationOptionsInput;
|
|
@@ -32148,6 +32894,9 @@ export declare type JiraMutationUpdateTimeTrackingFieldArgs = {
|
|
|
32148
32894
|
export declare type JiraMutationUpdateUrlFieldArgs = {
|
|
32149
32895
|
input: JiraUpdateUrlFieldInput;
|
|
32150
32896
|
};
|
|
32897
|
+
export declare type JiraMutationUpdateUserNavigationConfigurationArgs = {
|
|
32898
|
+
input: JiraUpdateUserNavigationConfigurationInput;
|
|
32899
|
+
};
|
|
32151
32900
|
export declare type JiraMutationUpdateVersionArchivedStatusArgs = {
|
|
32152
32901
|
input: JiraUpdateVersionArchivedStatusInput;
|
|
32153
32902
|
};
|
|
@@ -32570,10 +33319,12 @@ export declare type JiraOriginalTimeEstimateField = JiraIssueField & JiraIssueFi
|
|
|
32570
33319
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
32571
33320
|
};
|
|
32572
33321
|
export declare enum JiraOverviewPlanMigrationChangeboardingStatus {
|
|
33322
|
+
Completed = "COMPLETED",
|
|
32573
33323
|
Triggered = "TRIGGERED"
|
|
32574
33324
|
}
|
|
32575
33325
|
export declare type JiraOverviewPlanMigrationState = {
|
|
32576
33326
|
__typename?: 'JiraOverviewPlanMigrationState';
|
|
33327
|
+
changeboardingActive?: Maybe<Scalars['Boolean']['output']>;
|
|
32577
33328
|
triggerChangeboarding?: Maybe<Scalars['Boolean']['output']>;
|
|
32578
33329
|
};
|
|
32579
33330
|
export declare type JiraOverviewPlanMigrationStateResult = JiraOverviewPlanMigrationState | QueryError;
|
|
@@ -32844,11 +33595,15 @@ export declare type JiraPlatformAttachment = JiraAttachment & Node & {
|
|
|
32844
33595
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
32845
33596
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
32846
33597
|
parentName?: Maybe<Scalars['String']['output']>;
|
|
33598
|
+
searchViewContext?: Maybe<JiraAttachmentSearchViewContext>;
|
|
32847
33599
|
};
|
|
32848
33600
|
export declare type JiraPlatformAttachmentMediaReadTokenArgs = {
|
|
32849
33601
|
durationInSeconds: Scalars['Int']['input'];
|
|
32850
33602
|
maxTokenLength: Scalars['Int']['input'];
|
|
32851
33603
|
};
|
|
33604
|
+
export declare type JiraPlatformAttachmentSearchViewContextArgs = {
|
|
33605
|
+
filter?: InputMaybe<JiraAttachmentSearchViewContextInput>;
|
|
33606
|
+
};
|
|
32852
33607
|
export declare type JiraPlatformComment = JiraComment & Node & {
|
|
32853
33608
|
__typename?: 'JiraPlatformComment';
|
|
32854
33609
|
author?: Maybe<User>;
|
|
@@ -32981,6 +33736,7 @@ export declare type JiraProject = Node & {
|
|
|
32981
33736
|
lead?: Maybe<User>;
|
|
32982
33737
|
leadId?: Maybe<Scalars['ID']['output']>;
|
|
32983
33738
|
linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
33739
|
+
linkedOperationsComponentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentConnection>;
|
|
32984
33740
|
linkedOperationsIncidentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentConnection>;
|
|
32985
33741
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
32986
33742
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
@@ -33058,6 +33814,10 @@ export declare type JiraProjectLinkedDocumentationContainersArgs = {
|
|
|
33058
33814
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33059
33815
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
33060
33816
|
};
|
|
33817
|
+
export declare type JiraProjectLinkedOperationsComponentsByProjectArgs = {
|
|
33818
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33819
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33820
|
+
};
|
|
33061
33821
|
export declare type JiraProjectLinkedOperationsIncidentsByProjectArgs = {
|
|
33062
33822
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33063
33823
|
filter?: InputMaybe<GraphStoreJswProjectAssociatedIncidentFilterInput>;
|
|
@@ -33394,12 +34154,17 @@ export declare type JiraProjectListViewTemplateItem = {
|
|
|
33394
34154
|
__typename?: 'JiraProjectListViewTemplateItem';
|
|
33395
34155
|
canCreate?: Maybe<Scalars['Boolean']['output']>;
|
|
33396
34156
|
description?: Maybe<Scalars['String']['output']>;
|
|
34157
|
+
iconDarkUrl?: Maybe<Scalars['URL']['output']>;
|
|
33397
34158
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
33398
34159
|
isLastUsed?: Maybe<Scalars['Boolean']['output']>;
|
|
33399
34160
|
isPremiumOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
33400
34161
|
isProductLicensed?: Maybe<Scalars['Boolean']['output']>;
|
|
33401
34162
|
key?: Maybe<Scalars['String']['output']>;
|
|
34163
|
+
previewDarkUrl?: Maybe<Scalars['URL']['output']>;
|
|
34164
|
+
previewUrl?: Maybe<Scalars['URL']['output']>;
|
|
33402
34165
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
34166
|
+
recommendationSessionId?: Maybe<Scalars['String']['output']>;
|
|
34167
|
+
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
33403
34168
|
title?: Maybe<Scalars['String']['output']>;
|
|
33404
34169
|
};
|
|
33405
34170
|
export declare type JiraProjectNavigationMetadata = JiraServiceManagementProjectNavigationMetadata | JiraSoftwareProjectNavigationMetadata | JiraWorkManagementProjectNavigationMetadata;
|
|
@@ -33618,6 +34383,7 @@ export declare type JiraQuery = {
|
|
|
33618
34383
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
33619
34384
|
jiraBulkEditFields?: Maybe<JiraBulkEditResponse>;
|
|
33620
34385
|
jiraBulkEditTransitions?: Maybe<JiraBulkTransitionResponse>;
|
|
34386
|
+
jiraBulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenResponse>;
|
|
33621
34387
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
33622
34388
|
jiraProject?: Maybe<JiraProject>;
|
|
33623
34389
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
@@ -33678,6 +34444,7 @@ export declare type JiraQuery = {
|
|
|
33678
34444
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
33679
34445
|
uiModifications?: Maybe<Array<JiraAppUiModifications>>;
|
|
33680
34446
|
userHomePage?: Maybe<JiraHomePage>;
|
|
34447
|
+
userNavigationConfiguration?: Maybe<JiraUserNavigationConfiguration>;
|
|
33681
34448
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
33682
34449
|
userSegmentation?: Maybe<JiraUserSegmentation>;
|
|
33683
34450
|
version?: Maybe<JiraVersionResult>;
|
|
@@ -33988,6 +34755,9 @@ export declare type JiraQueryJiraBulkEditFieldsArgs = {
|
|
|
33988
34755
|
export declare type JiraQueryJiraBulkEditTransitionsArgs = {
|
|
33989
34756
|
issueIds: Array<Scalars['ID']['input']>;
|
|
33990
34757
|
};
|
|
34758
|
+
export declare type JiraQueryJiraBulkTransitionsScreenArgs = {
|
|
34759
|
+
input: Array<JiraBulkTransitionScreenInput>;
|
|
34760
|
+
};
|
|
33991
34761
|
export declare type JiraQueryJiraFetchBulkOperationDetailsArgs = {
|
|
33992
34762
|
issueIds: Array<Scalars['ID']['input']>;
|
|
33993
34763
|
};
|
|
@@ -34259,6 +35029,10 @@ export declare type JiraQueryUiModificationsArgs = {
|
|
|
34259
35029
|
export declare type JiraQueryUserHomePageArgs = {
|
|
34260
35030
|
cloudId: Scalars['ID']['input'];
|
|
34261
35031
|
};
|
|
35032
|
+
export declare type JiraQueryUserNavigationConfigurationArgs = {
|
|
35033
|
+
cloudID: Scalars['ID']['input'];
|
|
35034
|
+
navKey: Scalars['String']['input'];
|
|
35035
|
+
};
|
|
34262
35036
|
export declare type JiraQueryUserPreferencesArgs = {
|
|
34263
35037
|
cloudId: Scalars['ID']['input'];
|
|
34264
35038
|
};
|
|
@@ -34301,6 +35075,8 @@ export declare type JiraQueryVersionsForProjectsArgs = {
|
|
|
34301
35075
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34302
35076
|
jiraProjectIds: Array<Scalars['ID']['input']>;
|
|
34303
35077
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35078
|
+
releaseDateAfter?: InputMaybe<Scalars['Date']['input']>;
|
|
35079
|
+
releaseDateBefore?: InputMaybe<Scalars['Date']['input']>;
|
|
34304
35080
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
34305
35081
|
};
|
|
34306
35082
|
export declare type JiraQueryViewPermissionSchemeArgs = {
|
|
@@ -34565,6 +35341,16 @@ export declare type JiraRemoveRelatedWorkFromVersionPayload = Payload & {
|
|
|
34565
35341
|
errors?: Maybe<Array<MutationError>>;
|
|
34566
35342
|
success: Scalars['Boolean']['output'];
|
|
34567
35343
|
};
|
|
35344
|
+
export declare type JiraRenameNavigationItemInput = {
|
|
35345
|
+
id: Scalars['ID']['input'];
|
|
35346
|
+
label: Scalars['String']['input'];
|
|
35347
|
+
};
|
|
35348
|
+
export declare type JiraRenameNavigationItemPayload = Payload & {
|
|
35349
|
+
__typename?: 'JiraRenameNavigationItemPayload';
|
|
35350
|
+
errors?: Maybe<Array<MutationError>>;
|
|
35351
|
+
navigationItem?: Maybe<JiraNavigationItem>;
|
|
35352
|
+
success: Scalars['Boolean']['output'];
|
|
35353
|
+
};
|
|
34568
35354
|
export declare type JiraReplaceIssueSearchViewFieldSetsInput = {
|
|
34569
35355
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34570
35356
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35305,6 +36091,12 @@ export declare type JiraServiceManagementEntitlementField = JiraIssueField & Jir
|
|
|
35305
36091
|
type: Scalars['String']['output'];
|
|
35306
36092
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
35307
36093
|
};
|
|
36094
|
+
export declare type JiraServiceManagementEntitlementFieldPayload = Payload & {
|
|
36095
|
+
__typename?: 'JiraServiceManagementEntitlementFieldPayload';
|
|
36096
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36097
|
+
field?: Maybe<JiraServiceManagementEntitlementField>;
|
|
36098
|
+
success: Scalars['Boolean']['output'];
|
|
36099
|
+
};
|
|
35308
36100
|
export declare type JiraServiceManagementFeedback = {
|
|
35309
36101
|
__typename?: 'JiraServiceManagementFeedback';
|
|
35310
36102
|
rating?: Maybe<Scalars['Int']['output']>;
|
|
@@ -35737,6 +36529,14 @@ export declare type JiraServiceManagementUnknownPreviewField = JiraServiceManage
|
|
|
35737
36529
|
required?: Maybe<Scalars['Boolean']['output']>;
|
|
35738
36530
|
type?: Maybe<Scalars['String']['output']>;
|
|
35739
36531
|
};
|
|
36532
|
+
export declare type JiraServiceManagementUpdateEntitlementFieldInput = {
|
|
36533
|
+
id: Scalars['ID']['input'];
|
|
36534
|
+
operation?: InputMaybe<JiraServiceManagementUpdateEntitlementOperationInput>;
|
|
36535
|
+
};
|
|
36536
|
+
export declare type JiraServiceManagementUpdateEntitlementOperationInput = {
|
|
36537
|
+
entitlementId?: InputMaybe<Scalars['ID']['input']>;
|
|
36538
|
+
operation: JiraSingleValueFieldOperations;
|
|
36539
|
+
};
|
|
35740
36540
|
export declare type JiraServiceManagementUserApproverPrincipal = {
|
|
35741
36541
|
__typename?: 'JiraServiceManagementUserApproverPrincipal';
|
|
35742
36542
|
jiraRest?: Maybe<Scalars['URL']['output']>;
|
|
@@ -36231,11 +37031,22 @@ export declare type JiraSprintFilterInput = {
|
|
|
36231
37031
|
export declare type JiraSprintInput = {
|
|
36232
37032
|
sprintId: Scalars['ID']['input'];
|
|
36233
37033
|
};
|
|
37034
|
+
export declare type JiraSprintMutationPayload = Payload & {
|
|
37035
|
+
__typename?: 'JiraSprintMutationPayload';
|
|
37036
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37037
|
+
jiraSprint?: Maybe<JiraSprint>;
|
|
37038
|
+
success: Scalars['Boolean']['output'];
|
|
37039
|
+
};
|
|
36234
37040
|
export declare enum JiraSprintState {
|
|
36235
37041
|
Active = "ACTIVE",
|
|
36236
37042
|
Closed = "CLOSED",
|
|
36237
37043
|
Future = "FUTURE"
|
|
36238
37044
|
}
|
|
37045
|
+
export declare type JiraSprintUpdateInput = {
|
|
37046
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
37047
|
+
sprintId: Scalars['ID']['input'];
|
|
37048
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
37049
|
+
};
|
|
36239
37050
|
export declare type JiraStatus = Node & {
|
|
36240
37051
|
__typename?: 'JiraStatus';
|
|
36241
37052
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -36416,6 +37227,7 @@ export declare type JiraSuggestedIssueFieldValuesResult = {
|
|
|
36416
37227
|
export declare type JiraSystemFilter = JiraFilter & Node & {
|
|
36417
37228
|
__typename?: 'JiraSystemFilter';
|
|
36418
37229
|
filterId: Scalars['String']['output'];
|
|
37230
|
+
filterUrl?: Maybe<Scalars['URL']['output']>;
|
|
36419
37231
|
id: Scalars['ID']['output'];
|
|
36420
37232
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
36421
37233
|
jql: Scalars['String']['output'];
|
|
@@ -36881,6 +37693,11 @@ export declare type JiraUpdateUrlFieldInput = {
|
|
|
36881
37693
|
id: Scalars['ID']['input'];
|
|
36882
37694
|
operation: JiraUrlFieldOperationInput;
|
|
36883
37695
|
};
|
|
37696
|
+
export declare type JiraUpdateUserNavigationConfigurationInput = {
|
|
37697
|
+
cloudID: Scalars['ID']['input'];
|
|
37698
|
+
navItems: Array<JiraConfigurableNavigationItemInput>;
|
|
37699
|
+
navKey: Scalars['String']['input'];
|
|
37700
|
+
};
|
|
36884
37701
|
export declare type JiraUpdateVersionArchivedStatusInput = {
|
|
36885
37702
|
id: Scalars['ID']['input'];
|
|
36886
37703
|
isArchived: Scalars['Boolean']['input'];
|
|
@@ -36961,6 +37778,10 @@ export declare type JiraUpdateWatchesFieldInput = {
|
|
|
36961
37778
|
id: Scalars['ID']['input'];
|
|
36962
37779
|
operation: JiraWatchesFieldOperationInput;
|
|
36963
37780
|
};
|
|
37781
|
+
export declare type JiraUpdateWorklogFieldInputForIssueTransitions = {
|
|
37782
|
+
id: Scalars['ID']['input'];
|
|
37783
|
+
operation: JiraWorklogFieldOperationInputForIssueTransitions;
|
|
37784
|
+
};
|
|
36964
37785
|
export declare type JiraUrlField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
36965
37786
|
__typename?: 'JiraUrlField';
|
|
36966
37787
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -37066,6 +37887,17 @@ export declare type JiraUserMetadata = {
|
|
|
37066
37887
|
info?: Maybe<User>;
|
|
37067
37888
|
status?: Maybe<JiraProjectRoleActorUserStatus>;
|
|
37068
37889
|
};
|
|
37890
|
+
export declare type JiraUserNavigationConfiguration = {
|
|
37891
|
+
__typename?: 'JiraUserNavigationConfiguration';
|
|
37892
|
+
navItems: Array<JiraConfigurableNavigationItem>;
|
|
37893
|
+
navKey: Scalars['String']['output'];
|
|
37894
|
+
};
|
|
37895
|
+
export declare type JiraUserNavigationConfigurationPayload = Payload & {
|
|
37896
|
+
__typename?: 'JiraUserNavigationConfigurationPayload';
|
|
37897
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37898
|
+
success: Scalars['Boolean']['output'];
|
|
37899
|
+
userNavigationConfiguration?: Maybe<JiraUserNavigationConfiguration>;
|
|
37900
|
+
};
|
|
37069
37901
|
export declare type JiraUserPreferences = {
|
|
37070
37902
|
__typename?: 'JiraUserPreferences';
|
|
37071
37903
|
colorSchemeThemeSetting?: Maybe<JiraColorSchemeThemeSetting>;
|
|
@@ -37748,6 +38580,20 @@ export declare type JiraWorkLogEdge = {
|
|
|
37748
38580
|
cursor: Scalars['String']['output'];
|
|
37749
38581
|
node?: Maybe<JiraWorklog>;
|
|
37750
38582
|
};
|
|
38583
|
+
export declare type JiraWorkLogField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38584
|
+
__typename?: 'JiraWorkLogField';
|
|
38585
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
38586
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
38587
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
38588
|
+
fieldId: Scalars['String']['output'];
|
|
38589
|
+
id: Scalars['ID']['output'];
|
|
38590
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
38591
|
+
mediaContext?: Maybe<JiraMediaContext>;
|
|
38592
|
+
name: Scalars['String']['output'];
|
|
38593
|
+
timeTrackingSettings?: Maybe<JiraTimeTrackingSettings>;
|
|
38594
|
+
type: Scalars['String']['output'];
|
|
38595
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
38596
|
+
};
|
|
37751
38597
|
export declare type JiraWorkManagementActiveBackgroundDetailsResult = JiraWorkManagementAttachmentBackground | JiraWorkManagementColorBackground | JiraWorkManagementGradientBackground | JiraWorkManagementMediaBackground | QueryError;
|
|
37752
38598
|
export declare type JiraWorkManagementAttachmentBackground = JiraWorkManagementBackground & {
|
|
37753
38599
|
__typename?: 'JiraWorkManagementAttachmentBackground';
|
|
@@ -37824,12 +38670,6 @@ export declare type JiraWorkManagementCreateOverviewInput = {
|
|
|
37824
38670
|
projectIds: Array<Scalars['ID']['input']>;
|
|
37825
38671
|
theme?: InputMaybe<Scalars['String']['input']>;
|
|
37826
38672
|
};
|
|
37827
|
-
export declare type JiraWorkManagementCreateOverviewPayload = Payload & {
|
|
37828
|
-
__typename?: 'JiraWorkManagementCreateOverviewPayload';
|
|
37829
|
-
errors?: Maybe<Array<MutationError>>;
|
|
37830
|
-
jwmOverview?: Maybe<JiraWorkManagementOverview>;
|
|
37831
|
-
success: Scalars['Boolean']['output'];
|
|
37832
|
-
};
|
|
37833
38673
|
export declare type JiraWorkManagementCreateSavedViewInput = {
|
|
37834
38674
|
label?: InputMaybe<Scalars['String']['input']>;
|
|
37835
38675
|
projectId: Scalars['ID']['input'];
|
|
@@ -37887,11 +38727,6 @@ export declare type JiraWorkManagementDeleteCustomBackgroundPayload = Payload &
|
|
|
37887
38727
|
export declare type JiraWorkManagementDeleteOverviewInput = {
|
|
37888
38728
|
id: Scalars['ID']['input'];
|
|
37889
38729
|
};
|
|
37890
|
-
export declare type JiraWorkManagementDeleteOverviewPayload = Payload & {
|
|
37891
|
-
__typename?: 'JiraWorkManagementDeleteOverviewPayload';
|
|
37892
|
-
errors?: Maybe<Array<MutationError>>;
|
|
37893
|
-
success: Scalars['Boolean']['output'];
|
|
37894
|
-
};
|
|
37895
38730
|
export declare type JiraWorkManagementFilter = Node & {
|
|
37896
38731
|
__typename?: 'JiraWorkManagementFilter';
|
|
37897
38732
|
filter?: Maybe<JiraCustomFilter>;
|
|
@@ -38008,7 +38843,6 @@ export declare type JiraWorkManagementNavigation = {
|
|
|
38008
38843
|
jwmLicensing?: Maybe<JiraWorkManagementLicensing>;
|
|
38009
38844
|
jwmOverviewPlanMigrationState?: Maybe<JiraOverviewPlanMigrationStateResult>;
|
|
38010
38845
|
jwmOverviews?: Maybe<JiraWorkManagementGiraOverviewConnection>;
|
|
38011
|
-
overviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
|
|
38012
38846
|
recentProjects?: Maybe<JiraProjectConnection>;
|
|
38013
38847
|
};
|
|
38014
38848
|
export declare type JiraWorkManagementNavigationFavoriteProjectsArgs = {
|
|
@@ -38022,67 +38856,12 @@ export declare type JiraWorkManagementNavigationJwmOverviewsArgs = {
|
|
|
38022
38856
|
cloudId: Scalars['ID']['input'];
|
|
38023
38857
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38024
38858
|
};
|
|
38025
|
-
export declare type JiraWorkManagementNavigationOverviewsArgs = {
|
|
38026
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
38027
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
38028
|
-
cloudId: Scalars['ID']['input'];
|
|
38029
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38030
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38031
|
-
};
|
|
38032
38859
|
export declare type JiraWorkManagementNavigationRecentProjectsArgs = {
|
|
38033
38860
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38034
38861
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
38035
38862
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38036
38863
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38037
38864
|
};
|
|
38038
|
-
export declare type JiraWorkManagementOverview = Node & {
|
|
38039
|
-
__typename?: 'JiraWorkManagementOverview';
|
|
38040
|
-
author?: Maybe<User>;
|
|
38041
|
-
fields?: Maybe<JiraJqlFieldConnectionResult>;
|
|
38042
|
-
id: Scalars['ID']['output'];
|
|
38043
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
38044
|
-
projects?: Maybe<JiraWorkManagementProjectConnection>;
|
|
38045
|
-
theme?: Maybe<Scalars['String']['output']>;
|
|
38046
|
-
};
|
|
38047
|
-
export declare type JiraWorkManagementOverviewFieldsArgs = {
|
|
38048
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
38049
|
-
cloudId: Scalars['ID']['input'];
|
|
38050
|
-
excludeFields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
38051
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38052
|
-
forClause?: InputMaybe<JiraJqlClauseType>;
|
|
38053
|
-
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
38054
|
-
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
38055
|
-
};
|
|
38056
|
-
export declare type JiraWorkManagementOverviewProjectsArgs = {
|
|
38057
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
38058
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
38059
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38060
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38061
|
-
};
|
|
38062
|
-
export declare type JiraWorkManagementOverviewConnection = {
|
|
38063
|
-
__typename?: 'JiraWorkManagementOverviewConnection';
|
|
38064
|
-
edges?: Maybe<Array<Maybe<JiraWorkManagementOverviewEdge>>>;
|
|
38065
|
-
pageInfo: PageInfo;
|
|
38066
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
38067
|
-
};
|
|
38068
|
-
export declare type JiraWorkManagementOverviewConnectionResult = JiraWorkManagementOverviewConnection | QueryError;
|
|
38069
|
-
export declare type JiraWorkManagementOverviewEdge = {
|
|
38070
|
-
__typename?: 'JiraWorkManagementOverviewEdge';
|
|
38071
|
-
cursor: Scalars['String']['output'];
|
|
38072
|
-
node?: Maybe<JiraWorkManagementOverview>;
|
|
38073
|
-
};
|
|
38074
|
-
export declare type JiraWorkManagementOverviewResult = JiraWorkManagementOverview | QueryError;
|
|
38075
|
-
export declare type JiraWorkManagementProjectConnection = {
|
|
38076
|
-
__typename?: 'JiraWorkManagementProjectConnection';
|
|
38077
|
-
edges?: Maybe<Array<Maybe<JiraWorkManagementProjectEdge>>>;
|
|
38078
|
-
pageInfo: PageInfo;
|
|
38079
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
38080
|
-
};
|
|
38081
|
-
export declare type JiraWorkManagementProjectEdge = {
|
|
38082
|
-
__typename?: 'JiraWorkManagementProjectEdge';
|
|
38083
|
-
cursor: Scalars['String']['output'];
|
|
38084
|
-
node?: Maybe<JiraProject>;
|
|
38085
|
-
};
|
|
38086
38865
|
export declare type JiraWorkManagementProjectNavigationMetadata = {
|
|
38087
38866
|
__typename?: 'JiraWorkManagementProjectNavigationMetadata';
|
|
38088
38867
|
boardName: Scalars['String']['output'];
|
|
@@ -38101,6 +38880,8 @@ export declare type JiraWorkManagementRemoveActiveBackgroundPayload = Payload &
|
|
|
38101
38880
|
};
|
|
38102
38881
|
export declare type JiraWorkManagementSavedView = JiraNavigationItem & Node & {
|
|
38103
38882
|
__typename?: 'JiraWorkManagementSavedView';
|
|
38883
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
38884
|
+
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
38104
38885
|
id: Scalars['ID']['output'];
|
|
38105
38886
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
38106
38887
|
label?: Maybe<Scalars['String']['output']>;
|
|
@@ -38161,12 +38942,6 @@ export declare type JiraWorkManagementUpdateOverviewInput = {
|
|
|
38161
38942
|
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38162
38943
|
theme?: InputMaybe<Scalars['String']['input']>;
|
|
38163
38944
|
};
|
|
38164
|
-
export declare type JiraWorkManagementUpdateOverviewPayload = Payload & {
|
|
38165
|
-
__typename?: 'JiraWorkManagementUpdateOverviewPayload';
|
|
38166
|
-
errors?: Maybe<Array<MutationError>>;
|
|
38167
|
-
jwmOverview?: Maybe<JiraWorkManagementOverview>;
|
|
38168
|
-
success: Scalars['Boolean']['output'];
|
|
38169
|
-
};
|
|
38170
38945
|
export declare enum JiraWorkManagementUserLicenseSeatEdition {
|
|
38171
38946
|
Free = "FREE",
|
|
38172
38947
|
Premium = "PREMIUM",
|
|
@@ -38230,6 +39005,18 @@ export declare type JiraWorklog = Node & {
|
|
|
38230
39005
|
workDescription?: Maybe<JiraRichText>;
|
|
38231
39006
|
worklogId: Scalars['ID']['output'];
|
|
38232
39007
|
};
|
|
39008
|
+
export declare enum JiraWorklogAdjustmentEstimateOperation {
|
|
39009
|
+
Auto = "AUTO",
|
|
39010
|
+
Leave = "LEAVE",
|
|
39011
|
+
Manual = "MANUAL",
|
|
39012
|
+
New = "NEW"
|
|
39013
|
+
}
|
|
39014
|
+
export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
39015
|
+
adjustEstimateInput: JiraAdjustmentEstimate;
|
|
39016
|
+
operation: JiraAddValueFieldOperations;
|
|
39017
|
+
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
39018
|
+
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
39019
|
+
};
|
|
38233
39020
|
export declare type JswMutation = {
|
|
38234
39021
|
__typename?: 'JswMutation';
|
|
38235
39022
|
deleteCard?: Maybe<DeleteCardOutput>;
|
|
@@ -38756,6 +39543,7 @@ export declare type MarketplaceStoreHomePageHighlightedSection = MarketplaceStor
|
|
|
38756
39543
|
description: Scalars['String']['output'];
|
|
38757
39544
|
highlightVariation: MarketplaceStoreHomePageHighlightedSectionVariation;
|
|
38758
39545
|
id: Scalars['ID']['output'];
|
|
39546
|
+
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
38759
39547
|
screenSpecificProperties: MarketplaceStoreHomePageSectionScreenSpecificProperties;
|
|
38760
39548
|
title: Scalars['String']['output'];
|
|
38761
39549
|
};
|
|
@@ -38768,6 +39556,7 @@ export declare type MarketplaceStoreHomePageRegularSection = MarketplaceStoreHom
|
|
|
38768
39556
|
appsFetchCount: Scalars['Int']['output'];
|
|
38769
39557
|
description: Scalars['String']['output'];
|
|
38770
39558
|
id: Scalars['ID']['output'];
|
|
39559
|
+
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
38771
39560
|
screenSpecificProperties: MarketplaceStoreHomePageSectionScreenSpecificProperties;
|
|
38772
39561
|
title: Scalars['String']['output'];
|
|
38773
39562
|
};
|
|
@@ -38968,7 +39757,6 @@ export declare type Mutation = {
|
|
|
38968
39757
|
createJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipCreatePayload>;
|
|
38969
39758
|
createJiraProjectAndOpsgenieTeamRelationship?: Maybe<CreateJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
38970
39759
|
createJiraProjectAndRepositoryRelationship?: Maybe<CreateJiraProjectAndRepositoryRelationshipPayload>;
|
|
38971
|
-
createJwmOverview?: Maybe<JiraWorkManagementCreateOverviewPayload>;
|
|
38972
39760
|
createPolarisComment?: Maybe<CreatePolarisCommentPayload>;
|
|
38973
39761
|
createPolarisIdeaTemplate?: Maybe<CreatePolarisIdeaTemplatePayload>;
|
|
38974
39762
|
createPolarisInsight?: Maybe<CreatePolarisInsightPayload>;
|
|
@@ -38998,7 +39786,6 @@ export declare type Mutation = {
|
|
|
38998
39786
|
deleteJiraProjectAndDevOpsToolRelationship?: Maybe<JiraProjectAndDevOpsToolRelationshipDeletePayload>;
|
|
38999
39787
|
deleteJiraProjectAndOpsgenieTeamRelationship?: Maybe<DeleteJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
39000
39788
|
deleteJiraProjectAndRepositoryRelationship?: Maybe<DeleteJiraProjectAndRepositoryRelationshipPayload>;
|
|
39001
|
-
deleteJwmOverview?: Maybe<JiraWorkManagementDeleteOverviewPayload>;
|
|
39002
39789
|
deletePolarisIdeaTemplate?: Maybe<DeletePolarisIdeaTemplatePayload>;
|
|
39003
39790
|
deletePolarisInsight?: Maybe<DeletePolarisInsightPayload>;
|
|
39004
39791
|
deletePolarisPlayContribution?: Maybe<DeletePolarisPlayContributionPayload>;
|
|
@@ -39080,7 +39867,6 @@ export declare type Mutation = {
|
|
|
39080
39867
|
updateDeveloperLogAccess?: Maybe<UpdateDeveloperLogAccessPayload>;
|
|
39081
39868
|
updateJiraProjectAndOpsgenieTeamRelationship?: Maybe<UpdateJiraProjectAndOpsgenieTeamRelationshipPayload>;
|
|
39082
39869
|
updateJiraProjectAndRepositoryRelationship?: Maybe<UpdateJiraProjectAndRepositoryRelationshipPayload>;
|
|
39083
|
-
updateJwmOverview?: Maybe<JiraWorkManagementUpdateOverviewPayload>;
|
|
39084
39870
|
updatePolarisComment?: Maybe<UpdatePolarisCommentPayload>;
|
|
39085
39871
|
updatePolarisIdea?: Maybe<UpdatePolarisIdeaPayload>;
|
|
39086
39872
|
updatePolarisIdeaTemplate?: Maybe<UpdatePolarisIdeaTemplatePayload>;
|
|
@@ -39172,10 +39958,6 @@ export declare type MutationCreateJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
|
39172
39958
|
export declare type MutationCreateJiraProjectAndRepositoryRelationshipArgs = {
|
|
39173
39959
|
input: CreateJiraProjectAndRepositoryRelationshipInput;
|
|
39174
39960
|
};
|
|
39175
|
-
export declare type MutationCreateJwmOverviewArgs = {
|
|
39176
|
-
cloudId: Scalars['ID']['input'];
|
|
39177
|
-
input: JiraWorkManagementCreateOverviewInput;
|
|
39178
|
-
};
|
|
39179
39961
|
export declare type MutationCreatePolarisCommentArgs = {
|
|
39180
39962
|
input: CreatePolarisCommentInput;
|
|
39181
39963
|
};
|
|
@@ -39279,10 +40061,6 @@ export declare type MutationDeleteJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
|
39279
40061
|
export declare type MutationDeleteJiraProjectAndRepositoryRelationshipArgs = {
|
|
39280
40062
|
input: DeleteJiraProjectAndRepositoryRelationshipInput;
|
|
39281
40063
|
};
|
|
39282
|
-
export declare type MutationDeleteJwmOverviewArgs = {
|
|
39283
|
-
cloudId: Scalars['ID']['input'];
|
|
39284
|
-
input: JiraWorkManagementDeleteOverviewInput;
|
|
39285
|
-
};
|
|
39286
40064
|
export declare type MutationDeletePolarisIdeaTemplateArgs = {
|
|
39287
40065
|
input: DeletePolarisIdeaTemplateInput;
|
|
39288
40066
|
};
|
|
@@ -39473,10 +40251,6 @@ export declare type MutationUpdateJiraProjectAndOpsgenieTeamRelationshipArgs = {
|
|
|
39473
40251
|
export declare type MutationUpdateJiraProjectAndRepositoryRelationshipArgs = {
|
|
39474
40252
|
input: UpdateJiraProjectAndRepositoryRelationshipInput;
|
|
39475
40253
|
};
|
|
39476
|
-
export declare type MutationUpdateJwmOverviewArgs = {
|
|
39477
|
-
cloudId: Scalars['ID']['input'];
|
|
39478
|
-
input: JiraWorkManagementUpdateOverviewInput;
|
|
39479
|
-
};
|
|
39480
40254
|
export declare type MutationUpdatePolarisCommentArgs = {
|
|
39481
40255
|
input: UpdatePolarisCommentInput;
|
|
39482
40256
|
};
|
|
@@ -41117,6 +41891,7 @@ export declare type PolarisPlay = {
|
|
|
41117
41891
|
__typename?: 'PolarisPlay';
|
|
41118
41892
|
contribution?: Maybe<PolarisPlayContribution>;
|
|
41119
41893
|
contributions?: Maybe<Array<PolarisPlayContribution>>;
|
|
41894
|
+
contributionsBySubject?: Maybe<Array<PolarisPlayContribution>>;
|
|
41120
41895
|
fields?: Maybe<Array<PolarisIdeaPlayField>>;
|
|
41121
41896
|
id: Scalars['ID']['output'];
|
|
41122
41897
|
kind: PolarisPlayKind;
|
|
@@ -41127,6 +41902,9 @@ export declare type PolarisPlay = {
|
|
|
41127
41902
|
export declare type PolarisPlayContributionArgs = {
|
|
41128
41903
|
id: Scalars['ID']['input'];
|
|
41129
41904
|
};
|
|
41905
|
+
export declare type PolarisPlayContributionsBySubjectArgs = {
|
|
41906
|
+
subject: Scalars['ID']['input'];
|
|
41907
|
+
};
|
|
41130
41908
|
export declare type PolarisPlayContribution = {
|
|
41131
41909
|
__typename?: 'PolarisPlayContribution';
|
|
41132
41910
|
aaid: Scalars['String']['output'];
|
|
@@ -41646,6 +42424,8 @@ export declare type Query = {
|
|
|
41646
42424
|
connectedData?: Maybe<ConnectedDataQuery>;
|
|
41647
42425
|
contentFacet: ContentPlatformContentFacetConnection;
|
|
41648
42426
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
42427
|
+
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
42428
|
+
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
41649
42429
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
41650
42430
|
devOps?: Maybe<DevOps>;
|
|
41651
42431
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
@@ -41697,8 +42477,6 @@ export declare type Query = {
|
|
|
41697
42477
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
41698
42478
|
jiraReleases?: Maybe<JiraReleases>;
|
|
41699
42479
|
jsw?: Maybe<JswQuery>;
|
|
41700
|
-
jwmOverview?: Maybe<JiraWorkManagementOverviewResult>;
|
|
41701
|
-
jwmOverviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
|
|
41702
42480
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
41703
42481
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
41704
42482
|
marketplaceAppByKey?: Maybe<MarketplaceApp>;
|
|
@@ -41747,6 +42525,7 @@ export declare type Query = {
|
|
|
41747
42525
|
shepherd?: Maybe<ShepherdQuery>;
|
|
41748
42526
|
smarts?: Maybe<SmartsQueryApi>;
|
|
41749
42527
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
42528
|
+
suggestions?: Maybe<AutoSuggestionApi>;
|
|
41750
42529
|
surfacePlatform: SurfacePlatformQueryApi;
|
|
41751
42530
|
team?: Maybe<TeamQuery>;
|
|
41752
42531
|
template?: Maybe<ContentPlatformTemplate>;
|
|
@@ -41755,6 +42534,8 @@ export declare type Query = {
|
|
|
41755
42534
|
templates: ContentPlatformTemplateContentSearchConnection;
|
|
41756
42535
|
tenantContexts?: Maybe<Array<Maybe<TenantContext>>>;
|
|
41757
42536
|
testing?: Maybe<Testing>;
|
|
42537
|
+
topicOverview?: Maybe<ContentPlatformTopicOverview>;
|
|
42538
|
+
topicOverviews: ContentPlatformTopicOverviewContentSearchConnection;
|
|
41758
42539
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
41759
42540
|
trello: TrelloQueryApi;
|
|
41760
42541
|
user?: Maybe<User>;
|
|
@@ -41882,6 +42663,13 @@ export declare type QueryContentFacetArgs = {
|
|
|
41882
42663
|
export declare type QueryCustomerServiceArgs = {
|
|
41883
42664
|
cloudId: Scalars['ID']['input'];
|
|
41884
42665
|
};
|
|
42666
|
+
export declare type QueryCustomerStoriesArgs = {
|
|
42667
|
+
search: ContentPlatformSearchApIv2Query;
|
|
42668
|
+
};
|
|
42669
|
+
export declare type QueryCustomerStoryArgs = {
|
|
42670
|
+
id: Scalars['String']['input'];
|
|
42671
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42672
|
+
};
|
|
41885
42673
|
export declare type QueryDevOpsServiceArgs = {
|
|
41886
42674
|
id: Scalars['ID']['input'];
|
|
41887
42675
|
};
|
|
@@ -42012,18 +42800,6 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
42012
42800
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42013
42801
|
id: Scalars['ID']['input'];
|
|
42014
42802
|
};
|
|
42015
|
-
export declare type QueryJwmOverviewArgs = {
|
|
42016
|
-
id: Scalars['ID']['input'];
|
|
42017
|
-
};
|
|
42018
|
-
export declare type QueryJwmOverviewsArgs = {
|
|
42019
|
-
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
42020
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
42021
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
42022
|
-
cloudId: Scalars['ID']['input'];
|
|
42023
|
-
currentUserSeatEdition?: InputMaybe<JiraWorkManagementUserLicenseSeatEdition>;
|
|
42024
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42025
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
42026
|
-
};
|
|
42027
42803
|
export declare type QueryMarketplaceAppArgs = {
|
|
42028
42804
|
appId: Scalars['ID']['input'];
|
|
42029
42805
|
};
|
|
@@ -42178,6 +42954,13 @@ export declare type QueryTenantContextsArgs = {
|
|
|
42178
42954
|
cloudIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42179
42955
|
hostNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
42180
42956
|
};
|
|
42957
|
+
export declare type QueryTopicOverviewArgs = {
|
|
42958
|
+
id: Scalars['String']['input'];
|
|
42959
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42960
|
+
};
|
|
42961
|
+
export declare type QueryTopicOverviewsArgs = {
|
|
42962
|
+
search: ContentPlatformSearchApIv2Query;
|
|
42963
|
+
};
|
|
42181
42964
|
export declare type QueryUserArgs = {
|
|
42182
42965
|
accountId: Scalars['ID']['input'];
|
|
42183
42966
|
};
|
|
@@ -43660,6 +44443,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
43660
44443
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43661
44444
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
43662
44445
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
44446
|
+
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
43663
44447
|
};
|
|
43664
44448
|
export declare type SearchRecentFilterInput = {
|
|
43665
44449
|
entities: Array<Scalars['String']['input']>;
|
|
@@ -43815,6 +44599,15 @@ export declare enum SearchResultType {
|
|
|
43815
44599
|
Unrecognised = "unrecognised",
|
|
43816
44600
|
Whiteboard = "whiteboard"
|
|
43817
44601
|
}
|
|
44602
|
+
export declare type SearchSortInput = {
|
|
44603
|
+
field: Scalars['String']['input'];
|
|
44604
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
44605
|
+
order: SearchSortOrder;
|
|
44606
|
+
};
|
|
44607
|
+
export declare enum SearchSortOrder {
|
|
44608
|
+
Asc = "ASC",
|
|
44609
|
+
Desc = "DESC"
|
|
44610
|
+
}
|
|
43818
44611
|
export declare type Security = {
|
|
43819
44612
|
__typename?: 'Security';
|
|
43820
44613
|
caiq?: Maybe<Caiq>;
|
|
@@ -44178,8 +44971,11 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
44178
44971
|
AddedDomain = "ADDED_DOMAIN",
|
|
44179
44972
|
AddedJiraGlobalPermission = "ADDED_JIRA_GLOBAL_PERMISSION",
|
|
44180
44973
|
AddedOrgadmin = "ADDED_ORGADMIN",
|
|
44974
|
+
BitbucketRepositoryPrivacy = "BITBUCKET_REPOSITORY_PRIVACY",
|
|
44975
|
+
BitbucketWorkspacePrivacy = "BITBUCKET_WORKSPACE_PRIVACY",
|
|
44181
44976
|
ClassificationLevelArchived = "CLASSIFICATION_LEVEL_ARCHIVED",
|
|
44182
44977
|
ClassificationLevelPublished = "CLASSIFICATION_LEVEL_PUBLISHED",
|
|
44978
|
+
ConfluenceCustomDetection = "CONFLUENCE_CUSTOM_DETECTION",
|
|
44183
44979
|
ConfluenceDataDiscovery = "CONFLUENCE_DATA_DISCOVERY",
|
|
44184
44980
|
ConfluenceDataDiscoveryAtlassianToken = "CONFLUENCE_DATA_DISCOVERY_ATLASSIAN_TOKEN",
|
|
44185
44981
|
ConfluenceDataDiscoveryAwsKeys = "CONFLUENCE_DATA_DISCOVERY_AWS_KEYS",
|
|
@@ -44254,11 +45050,13 @@ export declare type ShepherdAlertsResult = QueryError | ShepherdAlertsConnection
|
|
|
44254
45050
|
export declare type ShepherdAppInfo = {
|
|
44255
45051
|
__typename?: 'ShepherdAppInfo';
|
|
44256
45052
|
apiVersion: Scalars['Int']['output'];
|
|
45053
|
+
commitHash?: Maybe<Scalars['String']['output']>;
|
|
44257
45054
|
env: Scalars['String']['output'];
|
|
44258
45055
|
loginUrl: Scalars['String']['output'];
|
|
44259
45056
|
};
|
|
44260
45057
|
export declare enum ShepherdAtlassianProduct {
|
|
44261
45058
|
AdminHub = "ADMIN_HUB",
|
|
45059
|
+
Bitbucket = "BITBUCKET",
|
|
44262
45060
|
Confluence = "CONFLUENCE",
|
|
44263
45061
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
44264
45062
|
Marketplace = "MARKETPLACE"
|
|
@@ -44349,6 +45147,7 @@ export declare type ShepherdClassificationsResult = QueryError | ShepherdClassif
|
|
|
44349
45147
|
export declare type ShepherdCreateAlertInput = {
|
|
44350
45148
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
44351
45149
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
45150
|
+
customDetectionHighlight?: InputMaybe<ShepherdCustomDetectionHighlightInput>;
|
|
44352
45151
|
highlight?: InputMaybe<ShepherdHighlightInput>;
|
|
44353
45152
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
44354
45153
|
status?: InputMaybe<ShepherdAlertStatus>;
|
|
@@ -46170,7 +46969,7 @@ export declare type ToolchainAssociateEntityInput = {
|
|
|
46170
46969
|
fromId: Scalars['ID']['input'];
|
|
46171
46970
|
toEntityUrl: Scalars['URL']['input'];
|
|
46172
46971
|
};
|
|
46173
|
-
export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsRepository | DevOpsService;
|
|
46972
|
+
export declare type ToolchainAssociatedContainer = DevOpsDocument | DevOpsOperationsComponentDetails | DevOpsRepository | DevOpsService;
|
|
46174
46973
|
export declare type ToolchainAssociatedEntity = DevOpsDesign;
|
|
46175
46974
|
export declare type ToolchainCheck3Lo = {
|
|
46176
46975
|
__typename?: 'ToolchainCheck3LO';
|
|
@@ -46282,6 +47081,7 @@ export declare enum ToolchainProviderType {
|
|
|
46282
47081
|
Build = "BUILD",
|
|
46283
47082
|
Deployment = "DEPLOYMENT",
|
|
46284
47083
|
Design = "DESIGN",
|
|
47084
|
+
DevopsComponents = "DEVOPS_COMPONENTS",
|
|
46285
47085
|
DevInfo = "DEV_INFO",
|
|
46286
47086
|
Documentation = "DOCUMENTATION",
|
|
46287
47087
|
FeatureFlag = "FEATURE_FLAG",
|
|
@@ -46496,6 +47296,7 @@ export declare type TownsquareProject = Node & {
|
|
|
46496
47296
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
46497
47297
|
id: Scalars['ID']['output'];
|
|
46498
47298
|
isArchived: Scalars['Boolean']['output'];
|
|
47299
|
+
isPrivate: Scalars['Boolean']['output'];
|
|
46499
47300
|
key: Scalars['String']['output'];
|
|
46500
47301
|
name: Scalars['String']['output'];
|
|
46501
47302
|
owner?: Maybe<User>;
|
|
@@ -46580,7 +47381,7 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
|
|
|
46580
47381
|
};
|
|
46581
47382
|
export declare type TownsquareQueryApiGoalTqlArgs = {
|
|
46582
47383
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46583
|
-
|
|
47384
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
46584
47385
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46585
47386
|
q: Scalars['String']['input'];
|
|
46586
47387
|
sort?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
@@ -46601,7 +47402,7 @@ export declare type TownsquareQueryApiProjectSearchArgs = {
|
|
|
46601
47402
|
};
|
|
46602
47403
|
export declare type TownsquareQueryApiProjectTqlArgs = {
|
|
46603
47404
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
46604
|
-
|
|
47405
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
46605
47406
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46606
47407
|
q: Scalars['String']['input'];
|
|
46607
47408
|
sort?: InputMaybe<Array<InputMaybe<TownsquareProjectSortEnum>>>;
|
|
@@ -47544,6 +48345,7 @@ export declare type TrelloMutationApi = {
|
|
|
47544
48345
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
47545
48346
|
unarchiveCard?: Maybe<TrelloUnarchiveCardPayload>;
|
|
47546
48347
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
48348
|
+
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
47547
48349
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
47548
48350
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
47549
48351
|
};
|
|
@@ -47571,6 +48373,9 @@ export declare type TrelloMutationApiUnarchiveCardArgs = {
|
|
|
47571
48373
|
export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
47572
48374
|
input: TrelloWatchCardInput;
|
|
47573
48375
|
};
|
|
48376
|
+
export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
48377
|
+
input: TrelloUpdateBoardNameInput;
|
|
48378
|
+
};
|
|
47574
48379
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
47575
48380
|
input: TrelloUpdateCardNameInput;
|
|
47576
48381
|
};
|
|
@@ -47799,6 +48604,16 @@ export declare type TrelloUnarchiveCardPayload = Payload & {
|
|
|
47799
48604
|
errors?: Maybe<Array<MutationError>>;
|
|
47800
48605
|
success: Scalars['Boolean']['output'];
|
|
47801
48606
|
};
|
|
48607
|
+
export declare type TrelloUpdateBoardNameInput = {
|
|
48608
|
+
boardId: Scalars['ID']['input'];
|
|
48609
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
48610
|
+
};
|
|
48611
|
+
export declare type TrelloUpdateBoardNamePayload = Payload & {
|
|
48612
|
+
__typename?: 'TrelloUpdateBoardNamePayload';
|
|
48613
|
+
board?: Maybe<TrelloBoard>;
|
|
48614
|
+
errors?: Maybe<Array<MutationError>>;
|
|
48615
|
+
success: Scalars['Boolean']['output'];
|
|
48616
|
+
};
|
|
47802
48617
|
export declare type TrelloUpdateCardNameInput = {
|
|
47803
48618
|
cardId: Scalars['ID']['input'];
|
|
47804
48619
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -48822,6 +49637,7 @@ export declare type VirtualAgentMutationApi = {
|
|
|
48822
49637
|
updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
|
|
48823
49638
|
updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
|
|
48824
49639
|
updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
|
|
49640
|
+
updateJsmPortalConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
48825
49641
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
48826
49642
|
};
|
|
48827
49643
|
export declare type VirtualAgentMutationApiCreateChatChannelArgs = {
|
|
@@ -48859,6 +49675,10 @@ export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionQuestionsAr
|
|
|
48859
49675
|
input: VirtualAgentUpdateIntentRuleProjectionQuestionsInput;
|
|
48860
49676
|
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
48861
49677
|
};
|
|
49678
|
+
export declare type VirtualAgentMutationApiUpdateJsmPortalConfigurationArgs = {
|
|
49679
|
+
input: VirtualAgentUpdateJsmPortalSettingsInput;
|
|
49680
|
+
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
49681
|
+
};
|
|
48862
49682
|
export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
|
|
48863
49683
|
input: VirtualAgentUpdateConfigurationInput;
|
|
48864
49684
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
@@ -48947,7 +49767,6 @@ export declare type VirtualAgentUpdateChatChannelPayload = Payload & {
|
|
|
48947
49767
|
success: Scalars['Boolean']['output'];
|
|
48948
49768
|
};
|
|
48949
49769
|
export declare type VirtualAgentUpdateConfigurationInput = {
|
|
48950
|
-
isEnabledOnJsmPortal?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48951
49770
|
properties?: InputMaybe<VirtualAgentPropertiesInput>;
|
|
48952
49771
|
respondToQueries?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48953
49772
|
};
|
|
@@ -48987,6 +49806,15 @@ export declare type VirtualAgentUpdateIntentRuleProjectionQuestionsPayload = Pay
|
|
|
48987
49806
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
48988
49807
|
success: Scalars['Boolean']['output'];
|
|
48989
49808
|
};
|
|
49809
|
+
export declare type VirtualAgentUpdateJsmPortalSettingsInput = {
|
|
49810
|
+
isEnabledOnJsmPortal: Scalars['Boolean']['input'];
|
|
49811
|
+
};
|
|
49812
|
+
export declare type VirtualAgentUpdateJsmPortalSettingsPayload = Payload & {
|
|
49813
|
+
__typename?: 'VirtualAgentUpdateJsmPortalSettingsPayload';
|
|
49814
|
+
errors?: Maybe<Array<MutationError>>;
|
|
49815
|
+
success: Scalars['Boolean']['output'];
|
|
49816
|
+
virtualAgentConfiguration?: Maybe<VirtualAgentConfiguration>;
|
|
49817
|
+
};
|
|
48990
49818
|
export declare type VirtualAgentUpdatedQuestionInput = {
|
|
48991
49819
|
id: Scalars['ID']['input'];
|
|
48992
49820
|
question: Scalars['String']['input'];
|