@forge/cli-shared 3.23.3-next.9-experimental-cf84ac7 → 3.23.4-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -3
- package/out/graphql/graphql-types.d.ts +606 -16
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +31 -6
- package/package.json +3 -3
|
@@ -7135,6 +7135,7 @@ export declare type CreateCompassComponentFromTemplateArgumentInput = {
|
|
|
7135
7135
|
};
|
|
7136
7136
|
export declare type CreateCompassComponentFromTemplateInput = {
|
|
7137
7137
|
createComponentDetails: CreateCompassComponentInput;
|
|
7138
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
7138
7139
|
templateArguments?: InputMaybe<Array<CreateCompassComponentFromTemplateArgumentInput>>;
|
|
7139
7140
|
templateComponentId: Scalars['ID']['input'];
|
|
7140
7141
|
};
|
|
@@ -8923,6 +8924,7 @@ export declare type DevOpsDeploymentProviderConfigStateArgs = {
|
|
|
8923
8924
|
};
|
|
8924
8925
|
export declare type DevOpsDesign = Node & {
|
|
8925
8926
|
__typename?: 'DevOpsDesign';
|
|
8927
|
+
associatedIssues?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignInverseConnection>;
|
|
8926
8928
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
8927
8929
|
id: Scalars['ID']['output'];
|
|
8928
8930
|
inspectUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -8934,6 +8936,10 @@ export declare type DevOpsDesign = Node & {
|
|
|
8934
8936
|
type?: Maybe<DevOpsDesignType>;
|
|
8935
8937
|
url?: Maybe<Scalars['URL']['output']>;
|
|
8936
8938
|
};
|
|
8939
|
+
export declare type DevOpsDesignAssociatedIssuesArgs = {
|
|
8940
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
8941
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8942
|
+
};
|
|
8937
8943
|
export declare type DevOpsDesignProviderArgs = {
|
|
8938
8944
|
id: Scalars['ID']['input'];
|
|
8939
8945
|
providerTypes?: InputMaybe<Array<DevOpsProviderType>>;
|
|
@@ -11241,7 +11247,7 @@ export declare type ForgeMetricsQueryLatencyBucketsArgs = {
|
|
|
11241
11247
|
query: ForgeMetricsLatencyBucketsQueryInput;
|
|
11242
11248
|
};
|
|
11243
11249
|
export declare type ForgeMetricsQueryRequestUrlsArgs = {
|
|
11244
|
-
query:
|
|
11250
|
+
query: ForgeMetricsApiRequestQueryInput;
|
|
11245
11251
|
};
|
|
11246
11252
|
export declare type ForgeMetricsQuerySitesArgs = {
|
|
11247
11253
|
query: ForgeMetricsQueryInput;
|
|
@@ -14564,6 +14570,7 @@ export declare type GraphStore = {
|
|
|
14564
14570
|
componentImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
14565
14571
|
componentImpactedByIncidentRelationship?: Maybe<GraphStoreFullComponentImpactedByIncidentConnection>;
|
|
14566
14572
|
componentLinkedJswIssue?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueConnection>;
|
|
14573
|
+
componentLinkedJswIssueInverse?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection>;
|
|
14567
14574
|
componentLinkedJswIssueInverseRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
14568
14575
|
componentLinkedJswIssueRelationship?: Maybe<GraphStoreFullComponentLinkedJswIssueConnection>;
|
|
14569
14576
|
contentReferencedEntity?: Maybe<GraphStoreSimplifiedContentReferencedEntityConnection>;
|
|
@@ -14638,6 +14645,10 @@ export declare type GraphStore = {
|
|
|
14638
14645
|
issueRecursiveAssociatedPrInverse?: Maybe<GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseConnection>;
|
|
14639
14646
|
issueRecursiveAssociatedPrInverseRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrConnection>;
|
|
14640
14647
|
issueRecursiveAssociatedPrRelationship?: Maybe<GraphStoreFullIssueRecursiveAssociatedPrConnection>;
|
|
14648
|
+
issueToWhiteboard?: Maybe<GraphStoreSimplifiedIssueToWhiteboardConnection>;
|
|
14649
|
+
issueToWhiteboardInverse?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseConnection>;
|
|
14650
|
+
issueToWhiteboardInverseRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
14651
|
+
issueToWhiteboardRelationship?: Maybe<GraphStoreFullIssueToWhiteboardConnection>;
|
|
14641
14652
|
jiraEpicContributesToAtlasGoal?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection>;
|
|
14642
14653
|
jiraEpicContributesToAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalInverseConnection>;
|
|
14643
14654
|
jiraEpicContributesToAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalConnection>;
|
|
@@ -14646,11 +14657,13 @@ export declare type GraphStore = {
|
|
|
14646
14657
|
jiraProjectAssociatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseConnection>;
|
|
14647
14658
|
jiraProjectAssociatedAtlasGoalInverseRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
14648
14659
|
jiraProjectAssociatedAtlasGoalRelationship?: Maybe<GraphStoreFullJiraProjectAssociatedAtlasGoalConnection>;
|
|
14660
|
+
jsmProjectAssociatedService?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceConnection>;
|
|
14649
14661
|
jsmProjectAssociatedServiceBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
|
|
14650
14662
|
jsmProjectAssociatedServiceInverse?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceInverseConnection>;
|
|
14651
14663
|
jsmProjectAssociatedServiceInverseBatch?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceConnection>;
|
|
14652
14664
|
jsmProjectAssociatedServiceInverseRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
|
|
14653
14665
|
jsmProjectAssociatedServiceRelationship?: Maybe<GraphStoreFullJsmProjectAssociatedServiceConnection>;
|
|
14666
|
+
jswProjectAssociatedComponent?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentConnection>;
|
|
14654
14667
|
jswProjectAssociatedComponentInverse?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentInverseConnection>;
|
|
14655
14668
|
jswProjectAssociatedComponentInverseRelationship?: Maybe<GraphStoreFullJswProjectAssociatedComponentConnection>;
|
|
14656
14669
|
jswProjectAssociatedComponentRelationship?: Maybe<GraphStoreFullJswProjectAssociatedComponentConnection>;
|
|
@@ -14667,9 +14680,11 @@ export declare type GraphStore = {
|
|
|
14667
14680
|
linkedProjectHasVersionInverseRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
14668
14681
|
linkedProjectHasVersionRelationship?: Maybe<GraphStoreFullLinkedProjectHasVersionConnection>;
|
|
14669
14682
|
operationsContainerImpactedByIncident?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentConnection>;
|
|
14683
|
+
operationsContainerImpactedByIncidentInverse?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseConnection>;
|
|
14670
14684
|
operationsContainerImpactedByIncidentInverseRelationship?: Maybe<GraphStoreFullOperationsContainerImpactedByIncidentConnection>;
|
|
14671
14685
|
operationsContainerImpactedByIncidentRelationship?: Maybe<GraphStoreFullOperationsContainerImpactedByIncidentConnection>;
|
|
14672
14686
|
operationsContainerImprovedByActionItem?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemConnection>;
|
|
14687
|
+
operationsContainerImprovedByActionItemInverse?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseConnection>;
|
|
14673
14688
|
operationsContainerImprovedByActionItemInverseRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
14674
14689
|
operationsContainerImprovedByActionItemRelationship?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemConnection>;
|
|
14675
14690
|
parentDocumentHasChildDocument?: Maybe<GraphStoreSimplifiedParentDocumentHasChildDocumentConnection>;
|
|
@@ -14714,6 +14729,7 @@ export declare type GraphStore = {
|
|
|
14714
14729
|
projectAssociatedRepoInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoInverseConnection>;
|
|
14715
14730
|
projectAssociatedRepoInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedRepoConnection>;
|
|
14716
14731
|
projectAssociatedRepoRelationship?: Maybe<GraphStoreFullProjectAssociatedRepoConnection>;
|
|
14732
|
+
projectAssociatedService?: Maybe<GraphStoreSimplifiedProjectAssociatedServiceConnection>;
|
|
14717
14733
|
projectAssociatedServiceInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedServiceInverseConnection>;
|
|
14718
14734
|
projectAssociatedServiceInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedServiceConnection>;
|
|
14719
14735
|
projectAssociatedServiceRelationship?: Maybe<GraphStoreFullProjectAssociatedServiceConnection>;
|
|
@@ -14721,6 +14737,7 @@ export declare type GraphStore = {
|
|
|
14721
14737
|
projectAssociatedToIncidentInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedToIncidentInverseConnection>;
|
|
14722
14738
|
projectAssociatedToIncidentInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedToIncidentConnection>;
|
|
14723
14739
|
projectAssociatedToIncidentRelationship?: Maybe<GraphStoreFullProjectAssociatedToIncidentConnection>;
|
|
14740
|
+
projectAssociatedToOperationsContainer?: Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerConnection>;
|
|
14724
14741
|
projectAssociatedToOperationsContainerInverse?: Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseConnection>;
|
|
14725
14742
|
projectAssociatedToOperationsContainerInverseRelationship?: Maybe<GraphStoreFullProjectAssociatedToOperationsContainerConnection>;
|
|
14726
14743
|
projectAssociatedToOperationsContainerRelationship?: Maybe<GraphStoreFullProjectAssociatedToOperationsContainerConnection>;
|
|
@@ -14769,6 +14786,7 @@ export declare type GraphStore = {
|
|
|
14769
14786
|
securityContainerAssociatedToVulnerabilityInverseRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
14770
14787
|
securityContainerAssociatedToVulnerabilityRelationship?: Maybe<GraphStoreFullSecurityContainerAssociatedToVulnerabilityConnection>;
|
|
14771
14788
|
serviceLinkedIncident?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentConnection>;
|
|
14789
|
+
serviceLinkedIncidentInverse?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentInverseConnection>;
|
|
14772
14790
|
serviceLinkedIncidentInverseRelationship?: Maybe<GraphStoreFullServiceLinkedIncidentConnection>;
|
|
14773
14791
|
serviceLinkedIncidentRelationship?: Maybe<GraphStoreFullServiceLinkedIncidentConnection>;
|
|
14774
14792
|
shipit57IssueLinksToPage?: Maybe<GraphStoreSimplifiedShipit57IssueLinksToPageConnection>;
|
|
@@ -14954,6 +14972,11 @@ export declare type GraphStoreComponentLinkedJswIssueArgs = {
|
|
|
14954
14972
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14955
14973
|
id: Scalars['ID']['input'];
|
|
14956
14974
|
};
|
|
14975
|
+
export declare type GraphStoreComponentLinkedJswIssueInverseArgs = {
|
|
14976
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
14977
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
14978
|
+
id: Scalars['ID']['input'];
|
|
14979
|
+
};
|
|
14957
14980
|
export declare type GraphStoreComponentLinkedJswIssueInverseRelationshipArgs = {
|
|
14958
14981
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
14959
14982
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15325,6 +15348,26 @@ export declare type GraphStoreIssueRecursiveAssociatedPrRelationshipArgs = {
|
|
|
15325
15348
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15326
15349
|
id: Scalars['ID']['input'];
|
|
15327
15350
|
};
|
|
15351
|
+
export declare type GraphStoreIssueToWhiteboardArgs = {
|
|
15352
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15353
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15354
|
+
id: Scalars['ID']['input'];
|
|
15355
|
+
};
|
|
15356
|
+
export declare type GraphStoreIssueToWhiteboardInverseArgs = {
|
|
15357
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15358
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15359
|
+
id: Scalars['ID']['input'];
|
|
15360
|
+
};
|
|
15361
|
+
export declare type GraphStoreIssueToWhiteboardInverseRelationshipArgs = {
|
|
15362
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15363
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15364
|
+
id: Scalars['ID']['input'];
|
|
15365
|
+
};
|
|
15366
|
+
export declare type GraphStoreIssueToWhiteboardRelationshipArgs = {
|
|
15367
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15368
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15369
|
+
id: Scalars['ID']['input'];
|
|
15370
|
+
};
|
|
15328
15371
|
export declare type GraphStoreJiraEpicContributesToAtlasGoalArgs = {
|
|
15329
15372
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15330
15373
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15365,6 +15408,11 @@ export declare type GraphStoreJiraProjectAssociatedAtlasGoalRelationshipArgs = {
|
|
|
15365
15408
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15366
15409
|
id: Scalars['ID']['input'];
|
|
15367
15410
|
};
|
|
15411
|
+
export declare type GraphStoreJsmProjectAssociatedServiceArgs = {
|
|
15412
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15413
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15414
|
+
id: Scalars['ID']['input'];
|
|
15415
|
+
};
|
|
15368
15416
|
export declare type GraphStoreJsmProjectAssociatedServiceBatchArgs = {
|
|
15369
15417
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15370
15418
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15390,6 +15438,11 @@ export declare type GraphStoreJsmProjectAssociatedServiceRelationshipArgs = {
|
|
|
15390
15438
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15391
15439
|
id: Scalars['ID']['input'];
|
|
15392
15440
|
};
|
|
15441
|
+
export declare type GraphStoreJswProjectAssociatedComponentArgs = {
|
|
15442
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15443
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15444
|
+
id: Scalars['ID']['input'];
|
|
15445
|
+
};
|
|
15393
15446
|
export declare type GraphStoreJswProjectAssociatedComponentInverseArgs = {
|
|
15394
15447
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15395
15448
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15478,6 +15531,11 @@ export declare type GraphStoreOperationsContainerImpactedByIncidentArgs = {
|
|
|
15478
15531
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15479
15532
|
id: Scalars['ID']['input'];
|
|
15480
15533
|
};
|
|
15534
|
+
export declare type GraphStoreOperationsContainerImpactedByIncidentInverseArgs = {
|
|
15535
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15536
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15537
|
+
id: Scalars['ID']['input'];
|
|
15538
|
+
};
|
|
15481
15539
|
export declare type GraphStoreOperationsContainerImpactedByIncidentInverseRelationshipArgs = {
|
|
15482
15540
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15483
15541
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15493,6 +15551,11 @@ export declare type GraphStoreOperationsContainerImprovedByActionItemArgs = {
|
|
|
15493
15551
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15494
15552
|
id: Scalars['ID']['input'];
|
|
15495
15553
|
};
|
|
15554
|
+
export declare type GraphStoreOperationsContainerImprovedByActionItemInverseArgs = {
|
|
15555
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15556
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15557
|
+
id: Scalars['ID']['input'];
|
|
15558
|
+
};
|
|
15496
15559
|
export declare type GraphStoreOperationsContainerImprovedByActionItemInverseRelationshipArgs = {
|
|
15497
15560
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15498
15561
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15743,6 +15806,11 @@ export declare type GraphStoreProjectAssociatedRepoRelationshipArgs = {
|
|
|
15743
15806
|
id: Scalars['ID']['input'];
|
|
15744
15807
|
sort?: InputMaybe<GraphStoreProjectAssociatedRepoSortInput>;
|
|
15745
15808
|
};
|
|
15809
|
+
export declare type GraphStoreProjectAssociatedServiceArgs = {
|
|
15810
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15811
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15812
|
+
id: Scalars['ID']['input'];
|
|
15813
|
+
};
|
|
15746
15814
|
export declare type GraphStoreProjectAssociatedServiceInverseArgs = {
|
|
15747
15815
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15748
15816
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -15778,6 +15846,11 @@ export declare type GraphStoreProjectAssociatedToIncidentRelationshipArgs = {
|
|
|
15778
15846
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15779
15847
|
id: Scalars['ID']['input'];
|
|
15780
15848
|
};
|
|
15849
|
+
export declare type GraphStoreProjectAssociatedToOperationsContainerArgs = {
|
|
15850
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15851
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15852
|
+
id: Scalars['ID']['input'];
|
|
15853
|
+
};
|
|
15781
15854
|
export declare type GraphStoreProjectAssociatedToOperationsContainerInverseArgs = {
|
|
15782
15855
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15783
15856
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16028,6 +16101,13 @@ export declare type GraphStoreServiceLinkedIncidentArgs = {
|
|
|
16028
16101
|
id: Scalars['ID']['input'];
|
|
16029
16102
|
sort?: InputMaybe<GraphStoreServiceLinkedIncidentSortInput>;
|
|
16030
16103
|
};
|
|
16104
|
+
export declare type GraphStoreServiceLinkedIncidentInverseArgs = {
|
|
16105
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16106
|
+
filter?: InputMaybe<GraphStoreServiceLinkedIncidentFilterInput>;
|
|
16107
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16108
|
+
id: Scalars['ID']['input'];
|
|
16109
|
+
sort?: InputMaybe<GraphStoreServiceLinkedIncidentSortInput>;
|
|
16110
|
+
};
|
|
16031
16111
|
export declare type GraphStoreServiceLinkedIncidentInverseRelationshipArgs = {
|
|
16032
16112
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16033
16113
|
filter?: InputMaybe<GraphStoreServiceLinkedIncidentFilterInput>;
|
|
@@ -16763,8 +16843,10 @@ export declare type GraphStoreBatchJsmProjectAssociatedServiceEdge = {
|
|
|
16763
16843
|
};
|
|
16764
16844
|
export declare type GraphStoreBatchJsmProjectAssociatedServiceEndNode = Node & {
|
|
16765
16845
|
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceEndNode';
|
|
16846
|
+
data?: Maybe<GraphStoreBatchJsmProjectAssociatedServiceEndUnion>;
|
|
16766
16847
|
id: Scalars['ID']['output'];
|
|
16767
16848
|
};
|
|
16849
|
+
export declare type GraphStoreBatchJsmProjectAssociatedServiceEndUnion = DevOpsService;
|
|
16768
16850
|
export declare type GraphStoreBatchJsmProjectAssociatedServiceInnerConnection = {
|
|
16769
16851
|
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceInnerConnection';
|
|
16770
16852
|
edges: Array<Maybe<GraphStoreBatchJsmProjectAssociatedServiceInnerEdge>>;
|
|
@@ -16913,6 +16995,20 @@ export declare type GraphStoreCreateIncidentLinkedJswIssueRelationshipInput = {
|
|
|
16913
16995
|
to: Scalars['ID']['input'];
|
|
16914
16996
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
16915
16997
|
};
|
|
16998
|
+
export declare type GraphStoreCreateIssueToWhiteboardInput = {
|
|
16999
|
+
relationships: Array<GraphStoreCreateIssueToWhiteboardRelationshipInput>;
|
|
17000
|
+
};
|
|
17001
|
+
export declare type GraphStoreCreateIssueToWhiteboardPayload = Payload & {
|
|
17002
|
+
__typename?: 'GraphStoreCreateIssueToWhiteboardPayload';
|
|
17003
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17004
|
+
success: Scalars['Boolean']['output'];
|
|
17005
|
+
};
|
|
17006
|
+
export declare type GraphStoreCreateIssueToWhiteboardRelationshipInput = {
|
|
17007
|
+
from: Scalars['ID']['input'];
|
|
17008
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
17009
|
+
to: Scalars['ID']['input'];
|
|
17010
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
17011
|
+
};
|
|
16916
17012
|
export declare type GraphStoreCreateJswProjectAssociatedComponentInput = {
|
|
16917
17013
|
relationships: Array<GraphStoreCreateJswProjectAssociatedComponentRelationshipInput>;
|
|
16918
17014
|
};
|
|
@@ -17187,6 +17283,18 @@ export declare type GraphStoreDeleteIncidentLinkedJswIssueRelationshipInput = {
|
|
|
17187
17283
|
from: Scalars['ID']['input'];
|
|
17188
17284
|
to: Scalars['ID']['input'];
|
|
17189
17285
|
};
|
|
17286
|
+
export declare type GraphStoreDeleteIssueToWhiteboardInput = {
|
|
17287
|
+
relationships: Array<GraphStoreDeleteIssueToWhiteboardRelationshipInput>;
|
|
17288
|
+
};
|
|
17289
|
+
export declare type GraphStoreDeleteIssueToWhiteboardPayload = Payload & {
|
|
17290
|
+
__typename?: 'GraphStoreDeleteIssueToWhiteboardPayload';
|
|
17291
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17292
|
+
success: Scalars['Boolean']['output'];
|
|
17293
|
+
};
|
|
17294
|
+
export declare type GraphStoreDeleteIssueToWhiteboardRelationshipInput = {
|
|
17295
|
+
from: Scalars['ID']['input'];
|
|
17296
|
+
to: Scalars['ID']['input'];
|
|
17297
|
+
};
|
|
17190
17298
|
export declare type GraphStoreDeleteJswProjectAssociatedComponentInput = {
|
|
17191
17299
|
relationships: Array<GraphStoreDeleteJswProjectAssociatedComponentRelationshipInput>;
|
|
17192
17300
|
};
|
|
@@ -17539,8 +17647,10 @@ export declare type GraphStoreFullComponentLinkedJswIssueNode = Node & {
|
|
|
17539
17647
|
};
|
|
17540
17648
|
export declare type GraphStoreFullComponentLinkedJswIssueStartNode = {
|
|
17541
17649
|
__typename?: 'GraphStoreFullComponentLinkedJswIssueStartNode';
|
|
17650
|
+
data?: Maybe<GraphStoreFullComponentLinkedJswIssueStartUnion>;
|
|
17542
17651
|
id: Scalars['ID']['output'];
|
|
17543
17652
|
};
|
|
17653
|
+
export declare type GraphStoreFullComponentLinkedJswIssueStartUnion = DevOpsService;
|
|
17544
17654
|
export declare type GraphStoreFullContentReferencedEntityConnection = HasPageInfo & {
|
|
17545
17655
|
__typename?: 'GraphStoreFullContentReferencedEntityConnection';
|
|
17546
17656
|
edges: Array<Maybe<GraphStoreFullContentReferencedEntityEdge>>;
|
|
@@ -18176,6 +18286,39 @@ export declare type GraphStoreFullIssueRecursiveAssociatedPrStartNode = {
|
|
|
18176
18286
|
id: Scalars['ID']['output'];
|
|
18177
18287
|
};
|
|
18178
18288
|
export declare type GraphStoreFullIssueRecursiveAssociatedPrStartUnion = JiraIssue;
|
|
18289
|
+
export declare type GraphStoreFullIssueToWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
18290
|
+
__typename?: 'GraphStoreFullIssueToWhiteboardConnection';
|
|
18291
|
+
edges: Array<Maybe<GraphStoreFullIssueToWhiteboardEdge>>;
|
|
18292
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
18293
|
+
nodes: Array<Maybe<GraphStoreFullIssueToWhiteboardNode>>;
|
|
18294
|
+
pageInfo: PageInfo;
|
|
18295
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
18296
|
+
};
|
|
18297
|
+
export declare type GraphStoreFullIssueToWhiteboardEdge = {
|
|
18298
|
+
__typename?: 'GraphStoreFullIssueToWhiteboardEdge';
|
|
18299
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18300
|
+
node: GraphStoreFullIssueToWhiteboardNode;
|
|
18301
|
+
};
|
|
18302
|
+
export declare type GraphStoreFullIssueToWhiteboardEndNode = {
|
|
18303
|
+
__typename?: 'GraphStoreFullIssueToWhiteboardEndNode';
|
|
18304
|
+
data?: Maybe<GraphStoreFullIssueToWhiteboardEndUnion>;
|
|
18305
|
+
id: Scalars['ID']['output'];
|
|
18306
|
+
};
|
|
18307
|
+
export declare type GraphStoreFullIssueToWhiteboardEndUnion = ConfluenceWhiteboard;
|
|
18308
|
+
export declare type GraphStoreFullIssueToWhiteboardNode = Node & {
|
|
18309
|
+
__typename?: 'GraphStoreFullIssueToWhiteboardNode';
|
|
18310
|
+
createdAt: Scalars['DateTime']['output'];
|
|
18311
|
+
from: GraphStoreFullIssueToWhiteboardStartNode;
|
|
18312
|
+
id: Scalars['ID']['output'];
|
|
18313
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
18314
|
+
to: GraphStoreFullIssueToWhiteboardEndNode;
|
|
18315
|
+
};
|
|
18316
|
+
export declare type GraphStoreFullIssueToWhiteboardStartNode = {
|
|
18317
|
+
__typename?: 'GraphStoreFullIssueToWhiteboardStartNode';
|
|
18318
|
+
data?: Maybe<GraphStoreFullIssueToWhiteboardStartUnion>;
|
|
18319
|
+
id: Scalars['ID']['output'];
|
|
18320
|
+
};
|
|
18321
|
+
export declare type GraphStoreFullIssueToWhiteboardStartUnion = JiraIssue;
|
|
18179
18322
|
export declare type GraphStoreFullJiraEpicContributesToAtlasGoalConnection = HasPageInfo & {
|
|
18180
18323
|
__typename?: 'GraphStoreFullJiraEpicContributesToAtlasGoalConnection';
|
|
18181
18324
|
edges: Array<Maybe<GraphStoreFullJiraEpicContributesToAtlasGoalEdge>>;
|
|
@@ -18255,8 +18398,10 @@ export declare type GraphStoreFullJsmProjectAssociatedServiceEdge = {
|
|
|
18255
18398
|
};
|
|
18256
18399
|
export declare type GraphStoreFullJsmProjectAssociatedServiceEndNode = {
|
|
18257
18400
|
__typename?: 'GraphStoreFullJsmProjectAssociatedServiceEndNode';
|
|
18401
|
+
data?: Maybe<GraphStoreFullJsmProjectAssociatedServiceEndUnion>;
|
|
18258
18402
|
id: Scalars['ID']['output'];
|
|
18259
18403
|
};
|
|
18404
|
+
export declare type GraphStoreFullJsmProjectAssociatedServiceEndUnion = DevOpsService;
|
|
18260
18405
|
export declare type GraphStoreFullJsmProjectAssociatedServiceNode = Node & {
|
|
18261
18406
|
__typename?: 'GraphStoreFullJsmProjectAssociatedServiceNode';
|
|
18262
18407
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -18286,8 +18431,10 @@ export declare type GraphStoreFullJswProjectAssociatedComponentEdge = {
|
|
|
18286
18431
|
};
|
|
18287
18432
|
export declare type GraphStoreFullJswProjectAssociatedComponentEndNode = {
|
|
18288
18433
|
__typename?: 'GraphStoreFullJswProjectAssociatedComponentEndNode';
|
|
18434
|
+
data?: Maybe<GraphStoreFullJswProjectAssociatedComponentEndUnion>;
|
|
18289
18435
|
id: Scalars['ID']['output'];
|
|
18290
18436
|
};
|
|
18437
|
+
export declare type GraphStoreFullJswProjectAssociatedComponentEndUnion = DevOpsService;
|
|
18291
18438
|
export declare type GraphStoreFullJswProjectAssociatedComponentNode = Node & {
|
|
18292
18439
|
__typename?: 'GraphStoreFullJswProjectAssociatedComponentNode';
|
|
18293
18440
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -18452,8 +18599,10 @@ export declare type GraphStoreFullOperationsContainerImpactedByIncidentNode = No
|
|
|
18452
18599
|
};
|
|
18453
18600
|
export declare type GraphStoreFullOperationsContainerImpactedByIncidentStartNode = {
|
|
18454
18601
|
__typename?: 'GraphStoreFullOperationsContainerImpactedByIncidentStartNode';
|
|
18602
|
+
data?: Maybe<GraphStoreFullOperationsContainerImpactedByIncidentStartUnion>;
|
|
18455
18603
|
id: Scalars['ID']['output'];
|
|
18456
18604
|
};
|
|
18605
|
+
export declare type GraphStoreFullOperationsContainerImpactedByIncidentStartUnion = DevOpsService;
|
|
18457
18606
|
export declare type GraphStoreFullOperationsContainerImprovedByActionItemConnection = HasPageInfo & {
|
|
18458
18607
|
__typename?: 'GraphStoreFullOperationsContainerImprovedByActionItemConnection';
|
|
18459
18608
|
edges: Array<Maybe<GraphStoreFullOperationsContainerImprovedByActionItemEdge>>;
|
|
@@ -18481,8 +18630,10 @@ export declare type GraphStoreFullOperationsContainerImprovedByActionItemNode =
|
|
|
18481
18630
|
};
|
|
18482
18631
|
export declare type GraphStoreFullOperationsContainerImprovedByActionItemStartNode = {
|
|
18483
18632
|
__typename?: 'GraphStoreFullOperationsContainerImprovedByActionItemStartNode';
|
|
18633
|
+
data?: Maybe<GraphStoreFullOperationsContainerImprovedByActionItemStartUnion>;
|
|
18484
18634
|
id: Scalars['ID']['output'];
|
|
18485
18635
|
};
|
|
18636
|
+
export declare type GraphStoreFullOperationsContainerImprovedByActionItemStartUnion = DevOpsService;
|
|
18486
18637
|
export declare enum GraphStoreFullParentDocumentHasChildDocumentCategoryOutput {
|
|
18487
18638
|
Archive = "ARCHIVE",
|
|
18488
18639
|
Audio = "AUDIO",
|
|
@@ -19003,8 +19154,10 @@ export declare type GraphStoreFullProjectAssociatedServiceEdge = {
|
|
|
19003
19154
|
};
|
|
19004
19155
|
export declare type GraphStoreFullProjectAssociatedServiceEndNode = {
|
|
19005
19156
|
__typename?: 'GraphStoreFullProjectAssociatedServiceEndNode';
|
|
19157
|
+
data?: Maybe<GraphStoreFullProjectAssociatedServiceEndUnion>;
|
|
19006
19158
|
id: Scalars['ID']['output'];
|
|
19007
19159
|
};
|
|
19160
|
+
export declare type GraphStoreFullProjectAssociatedServiceEndUnion = DevOpsService;
|
|
19008
19161
|
export declare type GraphStoreFullProjectAssociatedServiceNode = Node & {
|
|
19009
19162
|
__typename?: 'GraphStoreFullProjectAssociatedServiceNode';
|
|
19010
19163
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -19067,8 +19220,10 @@ export declare type GraphStoreFullProjectAssociatedToOperationsContainerEdge = {
|
|
|
19067
19220
|
};
|
|
19068
19221
|
export declare type GraphStoreFullProjectAssociatedToOperationsContainerEndNode = {
|
|
19069
19222
|
__typename?: 'GraphStoreFullProjectAssociatedToOperationsContainerEndNode';
|
|
19223
|
+
data?: Maybe<GraphStoreFullProjectAssociatedToOperationsContainerEndUnion>;
|
|
19070
19224
|
id: Scalars['ID']['output'];
|
|
19071
19225
|
};
|
|
19226
|
+
export declare type GraphStoreFullProjectAssociatedToOperationsContainerEndUnion = DevOpsService;
|
|
19072
19227
|
export declare type GraphStoreFullProjectAssociatedToOperationsContainerNode = Node & {
|
|
19073
19228
|
__typename?: 'GraphStoreFullProjectAssociatedToOperationsContainerNode';
|
|
19074
19229
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -19580,8 +19735,10 @@ export declare type GraphStoreFullServiceLinkedIncidentRelationshipObjectMetadat
|
|
|
19580
19735
|
};
|
|
19581
19736
|
export declare type GraphStoreFullServiceLinkedIncidentStartNode = {
|
|
19582
19737
|
__typename?: 'GraphStoreFullServiceLinkedIncidentStartNode';
|
|
19738
|
+
data?: Maybe<GraphStoreFullServiceLinkedIncidentStartUnion>;
|
|
19583
19739
|
id: Scalars['ID']['output'];
|
|
19584
19740
|
};
|
|
19741
|
+
export declare type GraphStoreFullServiceLinkedIncidentStartUnion = DevOpsService;
|
|
19585
19742
|
export declare type GraphStoreFullShipit57IssueLinksToPageConnection = HasPageInfo & HasTotal & {
|
|
19586
19743
|
__typename?: 'GraphStoreFullShipit57IssueLinksToPageConnection';
|
|
19587
19744
|
edges: Array<Maybe<GraphStoreFullShipit57IssueLinksToPageEdge>>;
|
|
@@ -20783,6 +20940,7 @@ export declare type GraphStoreMutation = {
|
|
|
20783
20940
|
createIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreCreateIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
20784
20941
|
createIncidentHasActionItem?: Maybe<GraphStoreCreateIncidentHasActionItemPayload>;
|
|
20785
20942
|
createIncidentLinkedJswIssue?: Maybe<GraphStoreCreateIncidentLinkedJswIssuePayload>;
|
|
20943
|
+
createIssueToWhiteboard?: Maybe<GraphStoreCreateIssueToWhiteboardPayload>;
|
|
20786
20944
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
20787
20945
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
20788
20946
|
createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
|
|
@@ -20800,6 +20958,7 @@ export declare type GraphStoreMutation = {
|
|
|
20800
20958
|
deleteIncidentAssociatedPostIncidentReviewLink?: Maybe<GraphStoreDeleteIncidentAssociatedPostIncidentReviewLinkPayload>;
|
|
20801
20959
|
deleteIncidentHasActionItem?: Maybe<GraphStoreDeleteIncidentHasActionItemPayload>;
|
|
20802
20960
|
deleteIncidentLinkedJswIssue?: Maybe<GraphStoreDeleteIncidentLinkedJswIssuePayload>;
|
|
20961
|
+
deleteIssueToWhiteboard?: Maybe<GraphStoreDeleteIssueToWhiteboardPayload>;
|
|
20803
20962
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
20804
20963
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
20805
20964
|
deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
|
|
@@ -20824,6 +20983,9 @@ export declare type GraphStoreMutationCreateIncidentHasActionItemArgs = {
|
|
|
20824
20983
|
export declare type GraphStoreMutationCreateIncidentLinkedJswIssueArgs = {
|
|
20825
20984
|
input?: InputMaybe<GraphStoreCreateIncidentLinkedJswIssueInput>;
|
|
20826
20985
|
};
|
|
20986
|
+
export declare type GraphStoreMutationCreateIssueToWhiteboardArgs = {
|
|
20987
|
+
input?: InputMaybe<GraphStoreCreateIssueToWhiteboardInput>;
|
|
20988
|
+
};
|
|
20827
20989
|
export declare type GraphStoreMutationCreateJswProjectAssociatedComponentArgs = {
|
|
20828
20990
|
input?: InputMaybe<GraphStoreCreateJswProjectAssociatedComponentInput>;
|
|
20829
20991
|
};
|
|
@@ -20875,6 +21037,9 @@ export declare type GraphStoreMutationDeleteIncidentHasActionItemArgs = {
|
|
|
20875
21037
|
export declare type GraphStoreMutationDeleteIncidentLinkedJswIssueArgs = {
|
|
20876
21038
|
input?: InputMaybe<GraphStoreDeleteIncidentLinkedJswIssueInput>;
|
|
20877
21039
|
};
|
|
21040
|
+
export declare type GraphStoreMutationDeleteIssueToWhiteboardArgs = {
|
|
21041
|
+
input?: InputMaybe<GraphStoreDeleteIssueToWhiteboardInput>;
|
|
21042
|
+
};
|
|
20878
21043
|
export declare type GraphStoreMutationDeleteJswProjectAssociatedComponentArgs = {
|
|
20879
21044
|
input?: InputMaybe<GraphStoreDeleteJswProjectAssociatedComponentInput>;
|
|
20880
21045
|
};
|
|
@@ -21350,6 +21515,21 @@ export declare type GraphStoreSimplifiedComponentLinkedJswIssueEdge = {
|
|
|
21350
21515
|
lastUpdated: Scalars['DateTime']['output'];
|
|
21351
21516
|
node?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueUnion>;
|
|
21352
21517
|
};
|
|
21518
|
+
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection = HasPageInfo & HasTotal & {
|
|
21519
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueInverseConnection';
|
|
21520
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge>>>;
|
|
21521
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
21522
|
+
pageInfo: PageInfo;
|
|
21523
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
21524
|
+
};
|
|
21525
|
+
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge = {
|
|
21526
|
+
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueInverseEdge';
|
|
21527
|
+
createdAt: Scalars['DateTime']['output'];
|
|
21528
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
21529
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
21530
|
+
node?: Maybe<GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion>;
|
|
21531
|
+
};
|
|
21532
|
+
export declare type GraphStoreSimplifiedComponentLinkedJswIssueInverseUnion = DevOpsService;
|
|
21353
21533
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueUnion = JiraIssue;
|
|
21354
21534
|
export declare type GraphStoreSimplifiedContentReferencedEntityConnection = HasPageInfo & {
|
|
21355
21535
|
__typename?: 'GraphStoreSimplifiedContentReferencedEntityConnection';
|
|
@@ -21758,6 +21938,36 @@ export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseEdge =
|
|
|
21758
21938
|
};
|
|
21759
21939
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrInverseUnion = JiraIssue;
|
|
21760
21940
|
export declare type GraphStoreSimplifiedIssueRecursiveAssociatedPrUnion = DevOpsPullRequestDetails;
|
|
21941
|
+
export declare type GraphStoreSimplifiedIssueToWhiteboardConnection = HasPageInfo & HasTotal & {
|
|
21942
|
+
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardConnection';
|
|
21943
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueToWhiteboardEdge>>>;
|
|
21944
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
21945
|
+
pageInfo: PageInfo;
|
|
21946
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
21947
|
+
};
|
|
21948
|
+
export declare type GraphStoreSimplifiedIssueToWhiteboardEdge = {
|
|
21949
|
+
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardEdge';
|
|
21950
|
+
createdAt: Scalars['DateTime']['output'];
|
|
21951
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
21952
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
21953
|
+
node?: Maybe<GraphStoreSimplifiedIssueToWhiteboardUnion>;
|
|
21954
|
+
};
|
|
21955
|
+
export declare type GraphStoreSimplifiedIssueToWhiteboardInverseConnection = HasPageInfo & HasTotal & {
|
|
21956
|
+
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardInverseConnection';
|
|
21957
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseEdge>>>;
|
|
21958
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
21959
|
+
pageInfo: PageInfo;
|
|
21960
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
21961
|
+
};
|
|
21962
|
+
export declare type GraphStoreSimplifiedIssueToWhiteboardInverseEdge = {
|
|
21963
|
+
__typename?: 'GraphStoreSimplifiedIssueToWhiteboardInverseEdge';
|
|
21964
|
+
createdAt: Scalars['DateTime']['output'];
|
|
21965
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
21966
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
21967
|
+
node?: Maybe<GraphStoreSimplifiedIssueToWhiteboardInverseUnion>;
|
|
21968
|
+
};
|
|
21969
|
+
export declare type GraphStoreSimplifiedIssueToWhiteboardInverseUnion = JiraIssue;
|
|
21970
|
+
export declare type GraphStoreSimplifiedIssueToWhiteboardUnion = ConfluenceWhiteboard;
|
|
21761
21971
|
export declare type GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection = HasPageInfo & {
|
|
21762
21972
|
__typename?: 'GraphStoreSimplifiedJiraEpicContributesToAtlasGoalConnection';
|
|
21763
21973
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJiraEpicContributesToAtlasGoalEdge>>>;
|
|
@@ -21814,6 +22024,20 @@ export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseEdg
|
|
|
21814
22024
|
};
|
|
21815
22025
|
export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalInverseUnion = JiraProject;
|
|
21816
22026
|
export declare type GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalUnion = TownsquareGoal;
|
|
22027
|
+
export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceConnection = HasPageInfo & HasTotal & {
|
|
22028
|
+
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceConnection';
|
|
22029
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceEdge>>>;
|
|
22030
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
22031
|
+
pageInfo: PageInfo;
|
|
22032
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
22033
|
+
};
|
|
22034
|
+
export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceEdge = {
|
|
22035
|
+
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceEdge';
|
|
22036
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22037
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
22038
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
22039
|
+
node?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceUnion>;
|
|
22040
|
+
};
|
|
21817
22041
|
export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceInverseConnection = HasPageInfo & HasTotal & {
|
|
21818
22042
|
__typename?: 'GraphStoreSimplifiedJsmProjectAssociatedServiceInverseConnection';
|
|
21819
22043
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceInverseEdge>>>;
|
|
@@ -21829,6 +22053,21 @@ export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceInverseEdge =
|
|
|
21829
22053
|
node?: Maybe<GraphStoreSimplifiedJsmProjectAssociatedServiceInverseUnion>;
|
|
21830
22054
|
};
|
|
21831
22055
|
export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceInverseUnion = JiraProject;
|
|
22056
|
+
export declare type GraphStoreSimplifiedJsmProjectAssociatedServiceUnion = DevOpsService;
|
|
22057
|
+
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentConnection = HasPageInfo & HasTotal & {
|
|
22058
|
+
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedComponentConnection';
|
|
22059
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentEdge>>>;
|
|
22060
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
22061
|
+
pageInfo: PageInfo;
|
|
22062
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
22063
|
+
};
|
|
22064
|
+
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentEdge = {
|
|
22065
|
+
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedComponentEdge';
|
|
22066
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22067
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
22068
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
22069
|
+
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentUnion>;
|
|
22070
|
+
};
|
|
21832
22071
|
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseConnection = HasPageInfo & HasTotal & {
|
|
21833
22072
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedComponentInverseConnection';
|
|
21834
22073
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentInverseEdge>>>;
|
|
@@ -21844,6 +22083,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseEdge
|
|
|
21844
22083
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedComponentInverseUnion>;
|
|
21845
22084
|
};
|
|
21846
22085
|
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentInverseUnion = JiraProject;
|
|
22086
|
+
export declare type GraphStoreSimplifiedJswProjectAssociatedComponentUnion = DevOpsService;
|
|
21847
22087
|
export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentConnection = HasPageInfo & HasTotal & {
|
|
21848
22088
|
__typename?: 'GraphStoreSimplifiedJswProjectAssociatedIncidentConnection';
|
|
21849
22089
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentEdge>>>;
|
|
@@ -21946,6 +22186,19 @@ export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentEdg
|
|
|
21946
22186
|
lastUpdated: Scalars['DateTime']['output'];
|
|
21947
22187
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentUnion>;
|
|
21948
22188
|
};
|
|
22189
|
+
export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseConnection = HasPageInfo & {
|
|
22190
|
+
__typename?: 'GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseConnection';
|
|
22191
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseEdge>>>;
|
|
22192
|
+
pageInfo: PageInfo;
|
|
22193
|
+
};
|
|
22194
|
+
export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseEdge = {
|
|
22195
|
+
__typename?: 'GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseEdge';
|
|
22196
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22197
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
22198
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
22199
|
+
node?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseUnion>;
|
|
22200
|
+
};
|
|
22201
|
+
export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentInverseUnion = DevOpsService;
|
|
21949
22202
|
export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
21950
22203
|
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemConnection = HasPageInfo & {
|
|
21951
22204
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImprovedByActionItemConnection';
|
|
@@ -21959,6 +22212,19 @@ export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemE
|
|
|
21959
22212
|
lastUpdated: Scalars['DateTime']['output'];
|
|
21960
22213
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemUnion>;
|
|
21961
22214
|
};
|
|
22215
|
+
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseConnection = HasPageInfo & {
|
|
22216
|
+
__typename?: 'GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseConnection';
|
|
22217
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseEdge>>>;
|
|
22218
|
+
pageInfo: PageInfo;
|
|
22219
|
+
};
|
|
22220
|
+
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseEdge = {
|
|
22221
|
+
__typename?: 'GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseEdge';
|
|
22222
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22223
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
22224
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
22225
|
+
node?: Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseUnion>;
|
|
22226
|
+
};
|
|
22227
|
+
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemInverseUnion = DevOpsService;
|
|
21962
22228
|
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemUnion = JiraIssue;
|
|
21963
22229
|
export declare type GraphStoreSimplifiedParentDocumentHasChildDocumentConnection = HasPageInfo & {
|
|
21964
22230
|
__typename?: 'GraphStoreSimplifiedParentDocumentHasChildDocumentConnection';
|
|
@@ -22248,6 +22514,20 @@ export declare type GraphStoreSimplifiedProjectAssociatedRepoInverseEdge = {
|
|
|
22248
22514
|
};
|
|
22249
22515
|
export declare type GraphStoreSimplifiedProjectAssociatedRepoInverseUnion = JiraProject;
|
|
22250
22516
|
export declare type GraphStoreSimplifiedProjectAssociatedRepoUnion = DevOpsRepository;
|
|
22517
|
+
export declare type GraphStoreSimplifiedProjectAssociatedServiceConnection = HasPageInfo & HasTotal & {
|
|
22518
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedServiceConnection';
|
|
22519
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedServiceEdge>>>;
|
|
22520
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
22521
|
+
pageInfo: PageInfo;
|
|
22522
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
22523
|
+
};
|
|
22524
|
+
export declare type GraphStoreSimplifiedProjectAssociatedServiceEdge = {
|
|
22525
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedServiceEdge';
|
|
22526
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22527
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
22528
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
22529
|
+
node?: Maybe<GraphStoreSimplifiedProjectAssociatedServiceUnion>;
|
|
22530
|
+
};
|
|
22251
22531
|
export declare type GraphStoreSimplifiedProjectAssociatedServiceInverseConnection = HasPageInfo & HasTotal & {
|
|
22252
22532
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedServiceInverseConnection';
|
|
22253
22533
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedServiceInverseEdge>>>;
|
|
@@ -22263,6 +22543,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedServiceInverseEdge = {
|
|
|
22263
22543
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedServiceInverseUnion>;
|
|
22264
22544
|
};
|
|
22265
22545
|
export declare type GraphStoreSimplifiedProjectAssociatedServiceInverseUnion = JiraProject;
|
|
22546
|
+
export declare type GraphStoreSimplifiedProjectAssociatedServiceUnion = DevOpsService;
|
|
22266
22547
|
export declare type GraphStoreSimplifiedProjectAssociatedToIncidentConnection = HasPageInfo & HasTotal & {
|
|
22267
22548
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToIncidentConnection';
|
|
22268
22549
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedToIncidentEdge>>>;
|
|
@@ -22293,6 +22574,20 @@ export declare type GraphStoreSimplifiedProjectAssociatedToIncidentInverseEdge =
|
|
|
22293
22574
|
};
|
|
22294
22575
|
export declare type GraphStoreSimplifiedProjectAssociatedToIncidentInverseUnion = JiraProject;
|
|
22295
22576
|
export declare type GraphStoreSimplifiedProjectAssociatedToIncidentUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
22577
|
+
export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerConnection = HasPageInfo & HasTotal & {
|
|
22578
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedToOperationsContainerConnection';
|
|
22579
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerEdge>>>;
|
|
22580
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
22581
|
+
pageInfo: PageInfo;
|
|
22582
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
22583
|
+
};
|
|
22584
|
+
export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerEdge = {
|
|
22585
|
+
__typename?: 'GraphStoreSimplifiedProjectAssociatedToOperationsContainerEdge';
|
|
22586
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22587
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
22588
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
22589
|
+
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerUnion>;
|
|
22590
|
+
};
|
|
22296
22591
|
export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseConnection = HasPageInfo & HasTotal & {
|
|
22297
22592
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseConnection';
|
|
22298
22593
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseEdge>>>;
|
|
@@ -22308,6 +22603,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerIn
|
|
|
22308
22603
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseUnion>;
|
|
22309
22604
|
};
|
|
22310
22605
|
export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseUnion = JiraProject;
|
|
22606
|
+
export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerUnion = DevOpsService;
|
|
22311
22607
|
export declare type GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseConnection = HasPageInfo & HasTotal & {
|
|
22312
22608
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseConnection';
|
|
22313
22609
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedToSecurityContainerInverseEdge>>>;
|
|
@@ -22616,6 +22912,21 @@ export declare type GraphStoreSimplifiedServiceLinkedIncidentEdge = {
|
|
|
22616
22912
|
lastUpdated: Scalars['DateTime']['output'];
|
|
22617
22913
|
node?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentUnion>;
|
|
22618
22914
|
};
|
|
22915
|
+
export declare type GraphStoreSimplifiedServiceLinkedIncidentInverseConnection = HasPageInfo & HasTotal & {
|
|
22916
|
+
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentInverseConnection';
|
|
22917
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedServiceLinkedIncidentInverseEdge>>>;
|
|
22918
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
22919
|
+
pageInfo: PageInfo;
|
|
22920
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
22921
|
+
};
|
|
22922
|
+
export declare type GraphStoreSimplifiedServiceLinkedIncidentInverseEdge = {
|
|
22923
|
+
__typename?: 'GraphStoreSimplifiedServiceLinkedIncidentInverseEdge';
|
|
22924
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22925
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
22926
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
22927
|
+
node?: Maybe<GraphStoreSimplifiedServiceLinkedIncidentInverseUnion>;
|
|
22928
|
+
};
|
|
22929
|
+
export declare type GraphStoreSimplifiedServiceLinkedIncidentInverseUnion = DevOpsService;
|
|
22619
22930
|
export declare type GraphStoreSimplifiedServiceLinkedIncidentUnion = JiraIssue;
|
|
22620
22931
|
export declare type GraphStoreSimplifiedShipit57IssueLinksToPageConnection = HasPageInfo & HasTotal & {
|
|
22621
22932
|
__typename?: 'GraphStoreSimplifiedShipit57IssueLinksToPageConnection';
|
|
@@ -23632,9 +23943,11 @@ export declare type HelpCenter = Node & {
|
|
|
23632
23943
|
id: Scalars['ID']['output'];
|
|
23633
23944
|
name?: Maybe<HelpCenterName>;
|
|
23634
23945
|
portals?: Maybe<Array<HelpCenterPortal>>;
|
|
23946
|
+
siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
23635
23947
|
slug?: Maybe<Scalars['String']['output']>;
|
|
23636
23948
|
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
23637
23949
|
type?: Maybe<HelpCenterType>;
|
|
23950
|
+
userLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
23638
23951
|
};
|
|
23639
23952
|
export declare type HelpCenterHelpDesksArgs = {
|
|
23640
23953
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -23663,6 +23976,7 @@ export declare enum HelpCenterAnnouncementType {
|
|
|
23663
23976
|
}
|
|
23664
23977
|
export declare type HelpCenterAnnouncements = {
|
|
23665
23978
|
__typename?: 'HelpCenterAnnouncements';
|
|
23979
|
+
canEditAnnouncement?: Maybe<Scalars['Boolean']['output']>;
|
|
23666
23980
|
homePageAnnouncements?: Maybe<Array<HelpCenterAnnouncement>>;
|
|
23667
23981
|
loginAnnouncements?: Maybe<Array<HelpCenterAnnouncement>>;
|
|
23668
23982
|
};
|
|
@@ -23676,16 +23990,20 @@ export declare type HelpCenterBannerInput = {
|
|
|
23676
23990
|
};
|
|
23677
23991
|
export declare type HelpCenterBranding = {
|
|
23678
23992
|
__typename?: 'HelpCenterBranding';
|
|
23993
|
+
banner?: Maybe<HelpCenterBanner>;
|
|
23679
23994
|
colors?: Maybe<HelpCenterBrandingColors>;
|
|
23680
|
-
helpCenterBanner?: Maybe<HelpCenterBanner>;
|
|
23681
23995
|
homePageTitle?: Maybe<HelpCenterHomePageTitle>;
|
|
23996
|
+
isBannerAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
23997
|
+
isLogoAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
23682
23998
|
logo?: Maybe<HelpCenterLogo>;
|
|
23683
23999
|
};
|
|
23684
24000
|
export declare type HelpCenterBrandingColors = {
|
|
23685
24001
|
__typename?: 'HelpCenterBrandingColors';
|
|
24002
|
+
bannerTextColor?: Maybe<Scalars['String']['output']>;
|
|
23686
24003
|
primary?: Maybe<Scalars['String']['output']>;
|
|
23687
24004
|
};
|
|
23688
24005
|
export declare type HelpCenterBrandingColorsInput = {
|
|
24006
|
+
bannerTextColor?: InputMaybe<Scalars['String']['input']>;
|
|
23689
24007
|
primary?: InputMaybe<Scalars['String']['input']>;
|
|
23690
24008
|
};
|
|
23691
24009
|
export declare type HelpCenterBrandingInput = {
|
|
@@ -23849,6 +24167,10 @@ export declare type HelpCenterMediaConfig = {
|
|
|
23849
24167
|
mediaToken?: Maybe<Scalars['String']['output']>;
|
|
23850
24168
|
mediaUrl?: Maybe<Scalars['String']['output']>;
|
|
23851
24169
|
};
|
|
24170
|
+
export declare enum HelpCenterMediaConfigOperationType {
|
|
24171
|
+
BannerUpload = "BANNER_UPLOAD",
|
|
24172
|
+
LogoUpload = "LOGO_UPLOAD"
|
|
24173
|
+
}
|
|
23852
24174
|
export declare type HelpCenterMutationApi = {
|
|
23853
24175
|
__typename?: 'HelpCenterMutationApi';
|
|
23854
24176
|
createHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
|
|
@@ -23939,10 +24261,8 @@ export declare type HelpCenterQueryApi = {
|
|
|
23939
24261
|
__typename?: 'HelpCenterQueryApi';
|
|
23940
24262
|
getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
23941
24263
|
helpCenterById?: Maybe<HelpCenterQueryResult>;
|
|
23942
|
-
helpCenterFromProductName?: Maybe<HelpCenterQueryResult>;
|
|
23943
24264
|
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
|
|
23944
24265
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
23945
|
-
helpCenterTopicFromProductName?: Maybe<HelpCenterTopicResult>;
|
|
23946
24266
|
helpCenters?: Maybe<Array<Maybe<HelpCenterQueryResult>>>;
|
|
23947
24267
|
helpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
23948
24268
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
@@ -23954,9 +24274,6 @@ export declare type HelpCenterQueryApiGetHelpDeskByIdArgs = {
|
|
|
23954
24274
|
export declare type HelpCenterQueryApiHelpCenterByIdArgs = {
|
|
23955
24275
|
helpCenterAri: Scalars['ID']['input'];
|
|
23956
24276
|
};
|
|
23957
|
-
export declare type HelpCenterQueryApiHelpCenterFromProductNameArgs = {
|
|
23958
|
-
productName: Scalars['String']['input'];
|
|
23959
|
-
};
|
|
23960
24277
|
export declare type HelpCenterQueryApiHelpCenterReportingByIdArgs = {
|
|
23961
24278
|
helpCenterAri: Scalars['ID']['input'];
|
|
23962
24279
|
};
|
|
@@ -23964,23 +24281,20 @@ export declare type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
|
|
|
23964
24281
|
helpCenterAri: Scalars['ID']['input'];
|
|
23965
24282
|
topicId: Scalars['ID']['input'];
|
|
23966
24283
|
};
|
|
23967
|
-
export declare type HelpCenterQueryApiHelpCenterTopicFromProductNameArgs = {
|
|
23968
|
-
productName: Scalars['String']['input'];
|
|
23969
|
-
topicId: Scalars['ID']['input'];
|
|
23970
|
-
};
|
|
23971
24284
|
export declare type HelpCenterQueryApiHelpDeskByIdArgs = {
|
|
23972
24285
|
helpCenterAri: Scalars['ID']['input'];
|
|
23973
24286
|
helpDeskAri: Scalars['ID']['input'];
|
|
23974
24287
|
};
|
|
23975
24288
|
export declare type HelpCenterQueryApiMediaConfigArgs = {
|
|
23976
24289
|
helpCenterAri: Scalars['ID']['input'];
|
|
24290
|
+
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
23977
24291
|
};
|
|
23978
24292
|
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
23979
24293
|
export declare type HelpCenterReporting = {
|
|
23980
24294
|
__typename?: 'HelpCenterReporting';
|
|
23981
24295
|
helpCenterId: Scalars['ID']['output'];
|
|
23982
24296
|
performanceIndicators?: Maybe<Array<HelpCenterReportingPerformanceIndicator>>;
|
|
23983
|
-
|
|
24297
|
+
refreshedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
23984
24298
|
};
|
|
23985
24299
|
export declare type HelpCenterReportingPerformanceIndicator = {
|
|
23986
24300
|
__typename?: 'HelpCenterReportingPerformanceIndicator';
|
|
@@ -24184,6 +24498,17 @@ export declare type HelpLayoutAlignmentSettingsInput = {
|
|
|
24184
24498
|
horizontalAlignment?: InputMaybe<HelpLayoutHorizontalAlignment>;
|
|
24185
24499
|
verticalAlignment?: InputMaybe<HelpLayoutVerticalAlignment>;
|
|
24186
24500
|
};
|
|
24501
|
+
export declare type HelpLayoutAnnouncementElement = HelpLayoutVisualEntity & Node & {
|
|
24502
|
+
__typename?: 'HelpLayoutAnnouncementElement';
|
|
24503
|
+
data?: Maybe<HelpLayoutAnnouncementElementData>;
|
|
24504
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
24505
|
+
id: Scalars['ID']['output'];
|
|
24506
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
24507
|
+
};
|
|
24508
|
+
export declare type HelpLayoutAnnouncementElementData = {
|
|
24509
|
+
__typename?: 'HelpLayoutAnnouncementElementData';
|
|
24510
|
+
announcementContent?: Maybe<Scalars['String']['output']>;
|
|
24511
|
+
};
|
|
24187
24512
|
export declare type HelpLayoutAtomicElement = HelpLayoutHeadingAtomicElement | HelpLayoutImageAtomicElement | HelpLayoutParagraphAtomicElement | HelpLayoutSearchAtomicElement;
|
|
24188
24513
|
export declare type HelpLayoutAtomicElementInput = {
|
|
24189
24514
|
elementTypeKey: HelpLayoutAtomicElementKey;
|
|
@@ -24295,6 +24620,13 @@ export declare enum HelpLayoutHeadingType {
|
|
|
24295
24620
|
H5 = "h5",
|
|
24296
24621
|
H6 = "h6"
|
|
24297
24622
|
}
|
|
24623
|
+
export declare type HelpLayoutHeroElement = HelpLayoutCompositeElement & HelpLayoutVisualEntity & Node & {
|
|
24624
|
+
__typename?: 'HelpLayoutHeroElement';
|
|
24625
|
+
children?: Maybe<Array<Maybe<HelpLayoutAtomicElement>>>;
|
|
24626
|
+
elementType?: Maybe<HelpLayoutCompositeElementType>;
|
|
24627
|
+
id: Scalars['ID']['output'];
|
|
24628
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
24629
|
+
};
|
|
24298
24630
|
export declare enum HelpLayoutHorizontalAlignment {
|
|
24299
24631
|
Center = "CENTER",
|
|
24300
24632
|
Left = "LEFT",
|
|
@@ -24387,6 +24719,13 @@ export declare type HelpLayoutParagraphConfigInput = {
|
|
|
24387
24719
|
adf: Scalars['String']['input'];
|
|
24388
24720
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
24389
24721
|
};
|
|
24722
|
+
export declare type HelpLayoutPortalsListElement = HelpLayoutVisualEntity & Node & {
|
|
24723
|
+
__typename?: 'HelpLayoutPortalsListElement';
|
|
24724
|
+
config?: Maybe<Scalars['String']['output']>;
|
|
24725
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
24726
|
+
id: Scalars['ID']['output'];
|
|
24727
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
24728
|
+
};
|
|
24390
24729
|
export declare type HelpLayoutQueryApi = {
|
|
24391
24730
|
__typename?: 'HelpLayoutQueryApi';
|
|
24392
24731
|
elementTypes?: Maybe<Array<HelpLayoutElementType>>;
|
|
@@ -24459,6 +24798,20 @@ export declare type HelpLayoutSubsectionInput = {
|
|
|
24459
24798
|
elements: Array<HelpLayoutElementInput>;
|
|
24460
24799
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
24461
24800
|
};
|
|
24801
|
+
export declare type HelpLayoutSuggestedRequestFormsListElement = HelpLayoutVisualEntity & Node & {
|
|
24802
|
+
__typename?: 'HelpLayoutSuggestedRequestFormsListElement';
|
|
24803
|
+
config?: Maybe<Scalars['String']['output']>;
|
|
24804
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
24805
|
+
id: Scalars['ID']['output'];
|
|
24806
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
24807
|
+
};
|
|
24808
|
+
export declare type HelpLayoutTopicsListElement = HelpLayoutVisualEntity & Node & {
|
|
24809
|
+
__typename?: 'HelpLayoutTopicsListElement';
|
|
24810
|
+
config?: Maybe<Scalars['String']['output']>;
|
|
24811
|
+
elementType?: Maybe<HelpLayoutAtomicElementType>;
|
|
24812
|
+
id: Scalars['ID']['output'];
|
|
24813
|
+
visualConfig?: Maybe<HelpLayoutVisualConfig>;
|
|
24814
|
+
};
|
|
24462
24815
|
export declare type HelpLayoutUpdateInput = {
|
|
24463
24816
|
layoutId: Scalars['ID']['input'];
|
|
24464
24817
|
sections: Array<HelpLayoutSectionInput>;
|
|
@@ -24478,11 +24831,13 @@ export declare type HelpLayoutVisualConfig = {
|
|
|
24478
24831
|
__typename?: 'HelpLayoutVisualConfig';
|
|
24479
24832
|
alignment?: Maybe<HelpLayoutAlignmentSettings>;
|
|
24480
24833
|
backgroundImage?: Maybe<HelpLayoutBackgroundImage>;
|
|
24834
|
+
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
24481
24835
|
themeTemplateId?: Maybe<Scalars['String']['output']>;
|
|
24482
24836
|
};
|
|
24483
24837
|
export declare type HelpLayoutVisualConfigInput = {
|
|
24484
24838
|
alignment?: InputMaybe<HelpLayoutAlignmentSettingsInput>;
|
|
24485
24839
|
backgroundImage?: InputMaybe<HelpLayoutBackgroundImageInput>;
|
|
24840
|
+
hidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24486
24841
|
themeTemplateId?: InputMaybe<Scalars['String']['input']>;
|
|
24487
24842
|
};
|
|
24488
24843
|
export declare type HelpLayoutVisualEntity = {
|
|
@@ -27156,6 +27511,10 @@ export declare type JiraDateTimePickerField = JiraIssueField & JiraIssueFieldCon
|
|
|
27156
27511
|
type: Scalars['String']['output'];
|
|
27157
27512
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
27158
27513
|
};
|
|
27514
|
+
export declare type JiraDateTimeWindow = {
|
|
27515
|
+
end?: InputMaybe<Scalars['DateTime']['input']>;
|
|
27516
|
+
start?: InputMaybe<Scalars['DateTime']['input']>;
|
|
27517
|
+
};
|
|
27159
27518
|
export declare type JiraDefaultGrantTypeValue = Node & {
|
|
27160
27519
|
__typename?: 'JiraDefaultGrantTypeValue';
|
|
27161
27520
|
id: Scalars['ID']['output'];
|
|
@@ -28078,6 +28437,7 @@ export declare type JiraIssue = Node & {
|
|
|
28078
28437
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
28079
28438
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
28080
28439
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
28440
|
+
hasRelationshipToVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
28081
28441
|
hierarchyLevelAbove?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
28082
28442
|
hierarchyLevelBelow?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
28083
28443
|
id: Scalars['ID']['output'];
|
|
@@ -28132,6 +28492,7 @@ export declare type JiraIssueFieldSetsByIdArgs = {
|
|
|
28132
28492
|
export declare type JiraIssueFieldSetsForIssueSearchViewArgs = {
|
|
28133
28493
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28134
28494
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
28495
|
+
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
28135
28496
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28136
28497
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28137
28498
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -28154,6 +28515,9 @@ export declare type JiraIssueFieldsByIdOrAliasArgs = {
|
|
|
28154
28515
|
idsOrAliases: Array<InputMaybe<Scalars['String']['input']>>;
|
|
28155
28516
|
ignoreMissingFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28156
28517
|
};
|
|
28518
|
+
export declare type JiraIssueHasRelationshipToVersionArgs = {
|
|
28519
|
+
versionId: Scalars['ID']['input'];
|
|
28520
|
+
};
|
|
28157
28521
|
export declare type JiraIssueIssueLinksArgs = {
|
|
28158
28522
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28159
28523
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -28922,6 +29286,7 @@ export declare type JiraIssueSearchStatus = {
|
|
|
28922
29286
|
export declare type JiraIssueSearchView = Node & {
|
|
28923
29287
|
__typename?: 'JiraIssueSearchView';
|
|
28924
29288
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
29289
|
+
filterId?: Maybe<Scalars['String']['output']>;
|
|
28925
29290
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
28926
29291
|
id: Scalars['ID']['output'];
|
|
28927
29292
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
@@ -28946,6 +29311,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
28946
29311
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
28947
29312
|
JiraDateField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
28948
29313
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
29314
|
+
JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
|
|
28949
29315
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
28950
29316
|
JiraMultipleSelectField?: InputMaybe<Array<JiraUpdateMultipleSelectFieldInput>>;
|
|
28951
29317
|
JiraMultipleVersionPickerField?: InputMaybe<Array<JiraUpdateMultipleVersionPickerFieldInput>>;
|
|
@@ -29031,6 +29397,16 @@ export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
|
29031
29397
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
29032
29398
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
29033
29399
|
};
|
|
29400
|
+
export declare type JiraIssueTypeFieldOperationInput = {
|
|
29401
|
+
id: Scalars['ID']['input'];
|
|
29402
|
+
operation: JiraSingleValueFieldOperations;
|
|
29403
|
+
};
|
|
29404
|
+
export declare type JiraIssueTypeFieldPayload = Payload & {
|
|
29405
|
+
__typename?: 'JiraIssueTypeFieldPayload';
|
|
29406
|
+
errors?: Maybe<Array<MutationError>>;
|
|
29407
|
+
field?: Maybe<JiraIssueTypeField>;
|
|
29408
|
+
success: Scalars['Boolean']['output'];
|
|
29409
|
+
};
|
|
29034
29410
|
export declare type JiraIssueTypeHierarchyLevel = {
|
|
29035
29411
|
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
29036
29412
|
level?: Maybe<Scalars['Int']['output']>;
|
|
@@ -29976,6 +30352,7 @@ export declare type JiraMutation = {
|
|
|
29976
30352
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
29977
30353
|
updateGlobalNotificationPreferences?: Maybe<JiraUpdateGlobalPreferencesPayload>;
|
|
29978
30354
|
updateIssueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationMutationResult>;
|
|
30355
|
+
updateIssueTypeField?: Maybe<JiraIssueTypeFieldPayload>;
|
|
29979
30356
|
updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
29980
30357
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
29981
30358
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
@@ -30209,6 +30586,9 @@ export declare type JiraMutationUpdateIssueHierarchyConfigArgs = {
|
|
|
30209
30586
|
cloudId: Scalars['ID']['input'];
|
|
30210
30587
|
input: JiraIssueHierarchyConfigurationMutationInput;
|
|
30211
30588
|
};
|
|
30589
|
+
export declare type JiraMutationUpdateIssueTypeFieldArgs = {
|
|
30590
|
+
input: JiraUpdateIssueTypeFieldInput;
|
|
30591
|
+
};
|
|
30212
30592
|
export declare type JiraMutationUpdateJiraVersionArgs = {
|
|
30213
30593
|
input: JiraVersionUpdateMutationInput;
|
|
30214
30594
|
};
|
|
@@ -31726,6 +32106,7 @@ export declare type JiraQuery = {
|
|
|
31726
32106
|
issueByKey?: Maybe<JiraIssue>;
|
|
31727
32107
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
31728
32108
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
32109
|
+
issueFieldsByIds?: Maybe<JiraIssueFieldConnection>;
|
|
31729
32110
|
issueHierarchyConfig?: Maybe<JiraIssueHierarchyConfigurationQuery>;
|
|
31730
32111
|
issueHierarchyConfigUpdateTask?: Maybe<JiraHierarchyConfigTask>;
|
|
31731
32112
|
issueHierarchyLimits?: Maybe<JiraIssueHierarchyLimits>;
|
|
@@ -31744,6 +32125,8 @@ export declare type JiraQuery = {
|
|
|
31744
32125
|
jiraProject?: Maybe<JiraProject>;
|
|
31745
32126
|
jiraProjectByKey?: Maybe<JiraProject>;
|
|
31746
32127
|
jiraProjects?: Maybe<Array<Maybe<JiraProject>>>;
|
|
32128
|
+
jiraProjectsByJql?: Maybe<JiraProjectConnection>;
|
|
32129
|
+
jiraSoftwareNavigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
31747
32130
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
31748
32131
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
31749
32132
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
@@ -31784,6 +32167,8 @@ export declare type JiraQuery = {
|
|
|
31784
32167
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
31785
32168
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
31786
32169
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
32170
|
+
sprintById?: Maybe<JiraSprint>;
|
|
32171
|
+
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
31787
32172
|
stringUserProperty?: Maybe<JiraEntityPropertyString>;
|
|
31788
32173
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
31789
32174
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
@@ -32008,6 +32393,13 @@ export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
|
32008
32393
|
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
32009
32394
|
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
32010
32395
|
};
|
|
32396
|
+
export declare type JiraQueryIssueFieldsByIdsArgs = {
|
|
32397
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32398
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
32399
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32400
|
+
ids: Array<Scalars['ID']['input']>;
|
|
32401
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32402
|
+
};
|
|
32011
32403
|
export declare type JiraQueryIssueHierarchyConfigArgs = {
|
|
32012
32404
|
cloudId: Scalars['ID']['input'];
|
|
32013
32405
|
};
|
|
@@ -32064,6 +32456,7 @@ export declare type JiraQueryIssueSearchViewArgs = {
|
|
|
32064
32456
|
};
|
|
32065
32457
|
export declare type JiraQueryIssueSearchViewByNamespaceAndViewIdArgs = {
|
|
32066
32458
|
cloudId: Scalars['ID']['input'];
|
|
32459
|
+
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
32067
32460
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
32068
32461
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
32069
32462
|
};
|
|
@@ -32085,6 +32478,16 @@ export declare type JiraQueryJiraProjectByKeyArgs = {
|
|
|
32085
32478
|
export declare type JiraQueryJiraProjectsArgs = {
|
|
32086
32479
|
ids: Array<Scalars['ID']['input']>;
|
|
32087
32480
|
};
|
|
32481
|
+
export declare type JiraQueryJiraProjectsByJqlArgs = {
|
|
32482
|
+
cloudId: Scalars['ID']['input'];
|
|
32483
|
+
query: Scalars['String']['input'];
|
|
32484
|
+
};
|
|
32485
|
+
export declare type JiraQueryJiraSoftwareNavigationItemsArgs = {
|
|
32486
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32487
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
32488
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32489
|
+
projectIdOrKey?: InputMaybe<Scalars['String']['input']>;
|
|
32490
|
+
};
|
|
32088
32491
|
export declare type JiraQueryJqlBuilderArgs = {
|
|
32089
32492
|
cloudId: Scalars['ID']['input'];
|
|
32090
32493
|
};
|
|
@@ -32272,6 +32675,16 @@ export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
|
32272
32675
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
32273
32676
|
cloudId: Scalars['ID']['input'];
|
|
32274
32677
|
};
|
|
32678
|
+
export declare type JiraQuerySprintByIdArgs = {
|
|
32679
|
+
id: Scalars['ID']['input'];
|
|
32680
|
+
};
|
|
32681
|
+
export declare type JiraQuerySprintSearchArgs = {
|
|
32682
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32683
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
32684
|
+
filter?: InputMaybe<JiraSprintFilterInput>;
|
|
32685
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32686
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32687
|
+
};
|
|
32275
32688
|
export declare type JiraQueryStringUserPropertyArgs = {
|
|
32276
32689
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
32277
32690
|
cloudId: Scalars['ID']['input'];
|
|
@@ -33953,6 +34366,7 @@ export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssue
|
|
|
33953
34366
|
export declare type JiraSingleSelectUserPickerFieldUsersArgs = {
|
|
33954
34367
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33955
34368
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
34369
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
33956
34370
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33957
34371
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33958
34372
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -34002,6 +34416,13 @@ export declare type JiraSingleVersionPickerFieldInput = {
|
|
|
34002
34416
|
fieldId: Scalars['ID']['input'];
|
|
34003
34417
|
version: JiraVersionInput;
|
|
34004
34418
|
};
|
|
34419
|
+
export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Node & {
|
|
34420
|
+
__typename?: 'JiraSoftwareBuiltInNavigationItem';
|
|
34421
|
+
id: Scalars['ID']['output'];
|
|
34422
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
34423
|
+
itemType?: Maybe<JiraSoftwareSimpleNavigationItemEnum>;
|
|
34424
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
34425
|
+
};
|
|
34005
34426
|
export declare type JiraSoftwareIssueSearchCustomInput = {
|
|
34006
34427
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
34007
34428
|
context?: InputMaybe<JiraSoftwareIssueSearchCustomInputContext>;
|
|
@@ -34020,6 +34441,23 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
|
34020
34441
|
isSimpleBoard: Scalars['Boolean']['output'];
|
|
34021
34442
|
totalBoardsInProject: Scalars['Long']['output'];
|
|
34022
34443
|
};
|
|
34444
|
+
export declare enum JiraSoftwareSimpleNavigationItemEnum {
|
|
34445
|
+
JswBacklog = "JSW_BACKLOG",
|
|
34446
|
+
JswBoard = "JSW_BOARD",
|
|
34447
|
+
JswCode = "JSW_CODE",
|
|
34448
|
+
JswComponents = "JSW_COMPONENTS",
|
|
34449
|
+
JswDeployments = "JSW_DEPLOYMENTS",
|
|
34450
|
+
JswGoals = "JSW_GOALS",
|
|
34451
|
+
JswIncidents = "JSW_INCIDENTS",
|
|
34452
|
+
JswIssues = "JSW_ISSUES",
|
|
34453
|
+
JswOnCall = "JSW_ON_CALL",
|
|
34454
|
+
JswPages = "JSW_PAGES",
|
|
34455
|
+
JswReleases = "JSW_RELEASES",
|
|
34456
|
+
JswReports = "JSW_REPORTS",
|
|
34457
|
+
JswRequests = "JSW_REQUESTS",
|
|
34458
|
+
JswSecurity = "JSW_SECURITY",
|
|
34459
|
+
JswTimeline = "JSW_TIMELINE"
|
|
34460
|
+
}
|
|
34023
34461
|
export declare type JiraSprint = Node & {
|
|
34024
34462
|
__typename?: 'JiraSprint';
|
|
34025
34463
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
@@ -34091,6 +34529,13 @@ export declare type JiraSprintFieldPayload = Payload & {
|
|
|
34091
34529
|
field?: Maybe<JiraSprintField>;
|
|
34092
34530
|
success: Scalars['Boolean']['output'];
|
|
34093
34531
|
};
|
|
34532
|
+
export declare type JiraSprintFilterInput = {
|
|
34533
|
+
activeWithin?: InputMaybe<JiraDateTimeWindow>;
|
|
34534
|
+
boardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
34535
|
+
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
34536
|
+
projectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
34537
|
+
states?: InputMaybe<Array<JiraSprintState>>;
|
|
34538
|
+
};
|
|
34094
34539
|
export declare type JiraSprintInput = {
|
|
34095
34540
|
sprintId: Scalars['ID']['input'];
|
|
34096
34541
|
};
|
|
@@ -34566,6 +35011,10 @@ export declare type JiraUpdateIssueTransitionInput = {
|
|
|
34566
35011
|
issueId: Scalars['ID']['input'];
|
|
34567
35012
|
transitionId: Scalars['Int']['input'];
|
|
34568
35013
|
};
|
|
35014
|
+
export declare type JiraUpdateIssueTypeFieldInput = {
|
|
35015
|
+
id: Scalars['ID']['input'];
|
|
35016
|
+
operation: JiraIssueTypeFieldOperationInput;
|
|
35017
|
+
};
|
|
34569
35018
|
export declare type JiraUpdateLabelsFieldInput = {
|
|
34570
35019
|
id: Scalars['ID']['input'];
|
|
34571
35020
|
operations: Array<JiraLabelsFieldOperationInput>;
|
|
@@ -34933,6 +35382,7 @@ export declare type JiraVersion = Node & {
|
|
|
34933
35382
|
hasReleaseNote?: Maybe<Scalars['Boolean']['output']>;
|
|
34934
35383
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
34935
35384
|
id: Scalars['ID']['output'];
|
|
35385
|
+
issueAssociatedDesigns?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignConnection>;
|
|
34936
35386
|
issues?: Maybe<JiraIssueConnection>;
|
|
34937
35387
|
name?: Maybe<Scalars['String']['output']>;
|
|
34938
35388
|
nativeReleaseNotesOptionsIssueFields?: Maybe<JiraIssueFieldConnection>;
|
|
@@ -34977,6 +35427,11 @@ export declare type JiraVersionContributorsArgs = {
|
|
|
34977
35427
|
export declare type JiraVersionEpicsForFilterArgs = {
|
|
34978
35428
|
searchStr?: InputMaybe<Scalars['String']['input']>;
|
|
34979
35429
|
};
|
|
35430
|
+
export declare type JiraVersionIssueAssociatedDesignsArgs = {
|
|
35431
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35432
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35433
|
+
sort?: InputMaybe<GraphStoreVersionAssociatedDesignSortInput>;
|
|
35434
|
+
};
|
|
34980
35435
|
export declare type JiraVersionIssuesArgs = {
|
|
34981
35436
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34982
35437
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35738,6 +36193,7 @@ export declare type JiraWorkManagementNavigation = {
|
|
|
35738
36193
|
__typename?: 'JiraWorkManagementNavigation';
|
|
35739
36194
|
favoriteProjects?: Maybe<JiraProjectConnection>;
|
|
35740
36195
|
jwmLicensing?: Maybe<JiraWorkManagementLicensing>;
|
|
36196
|
+
jwmOverviews?: Maybe<JiraWorkManagementGiraOverviewConnection>;
|
|
35741
36197
|
overviews?: Maybe<JiraWorkManagementOverviewConnectionResult>;
|
|
35742
36198
|
recentProjects?: Maybe<JiraProjectConnection>;
|
|
35743
36199
|
};
|
|
@@ -35747,6 +36203,11 @@ export declare type JiraWorkManagementNavigationFavoriteProjectsArgs = {
|
|
|
35747
36203
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35748
36204
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35749
36205
|
};
|
|
36206
|
+
export declare type JiraWorkManagementNavigationJwmOverviewsArgs = {
|
|
36207
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36208
|
+
cloudId: Scalars['ID']['input'];
|
|
36209
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36210
|
+
};
|
|
35750
36211
|
export declare type JiraWorkManagementNavigationOverviewsArgs = {
|
|
35751
36212
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35752
36213
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35821,7 +36282,7 @@ export declare type JiraWorkManagementSavedView = JiraNavigationItem & Node & {
|
|
|
35821
36282
|
id: Scalars['ID']['output'];
|
|
35822
36283
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
35823
36284
|
label?: Maybe<Scalars['String']['output']>;
|
|
35824
|
-
type
|
|
36285
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
35825
36286
|
};
|
|
35826
36287
|
export declare type JiraWorkManagementUpdateActiveBackgroundPayload = Payload & {
|
|
35827
36288
|
__typename?: 'JiraWorkManagementUpdateActiveBackgroundPayload';
|
|
@@ -36375,6 +36836,38 @@ export declare type MarketplaceStoreAlgoliaQuerySort = {
|
|
|
36375
36836
|
__typename?: 'MarketplaceStoreAlgoliaQuerySort';
|
|
36376
36837
|
criteria?: Maybe<Scalars['String']['output']>;
|
|
36377
36838
|
};
|
|
36839
|
+
export declare type MarketplaceStoreCollectionHeroSection = {
|
|
36840
|
+
__typename?: 'MarketplaceStoreCollectionHeroSection';
|
|
36841
|
+
backgroundColor: Scalars['String']['output'];
|
|
36842
|
+
description: Scalars['String']['output'];
|
|
36843
|
+
image: MarketplaceStoreCollectionHeroSectionImage;
|
|
36844
|
+
title: Scalars['String']['output'];
|
|
36845
|
+
};
|
|
36846
|
+
export declare type MarketplaceStoreCollectionHeroSectionImage = {
|
|
36847
|
+
__typename?: 'MarketplaceStoreCollectionHeroSectionImage';
|
|
36848
|
+
altText: Scalars['String']['output'];
|
|
36849
|
+
url: Scalars['String']['output'];
|
|
36850
|
+
};
|
|
36851
|
+
export declare type MarketplaceStoreCollectionResponse = {
|
|
36852
|
+
__typename?: 'MarketplaceStoreCollectionResponse';
|
|
36853
|
+
algoliaQueryMetadata: MarketplaceStoreAlgoliaQueryMetadata;
|
|
36854
|
+
heroSection: MarketplaceStoreCollectionHeroSection;
|
|
36855
|
+
id: Scalars['ID']['output'];
|
|
36856
|
+
name: Scalars['String']['output'];
|
|
36857
|
+
slug: Scalars['String']['output'];
|
|
36858
|
+
useCases?: Maybe<MarketplaceStoreCollectionUsecases>;
|
|
36859
|
+
};
|
|
36860
|
+
export declare type MarketplaceStoreCollectionUsecases = {
|
|
36861
|
+
__typename?: 'MarketplaceStoreCollectionUsecases';
|
|
36862
|
+
heading: Scalars['String']['output'];
|
|
36863
|
+
values: Array<MarketplaceStoreCollectionUsecasesValues>;
|
|
36864
|
+
};
|
|
36865
|
+
export declare type MarketplaceStoreCollectionUsecasesValues = {
|
|
36866
|
+
__typename?: 'MarketplaceStoreCollectionUsecasesValues';
|
|
36867
|
+
description: Scalars['String']['output'];
|
|
36868
|
+
title: Scalars['String']['output'];
|
|
36869
|
+
titleColor: Scalars['String']['output'];
|
|
36870
|
+
};
|
|
36378
36871
|
export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
|
|
36379
36872
|
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
36380
36873
|
description: Scalars['String']['output'];
|
|
@@ -36448,9 +36941,13 @@ export declare type MarketplaceStoreMutationApiInstallAppArgs = {
|
|
|
36448
36941
|
};
|
|
36449
36942
|
export declare type MarketplaceStoreQueryApi = {
|
|
36450
36943
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
36944
|
+
collection: MarketplaceStoreCollectionResponse;
|
|
36451
36945
|
homePage: MarketplaceStoreHomePageResponse;
|
|
36452
36946
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
36453
36947
|
};
|
|
36948
|
+
export declare type MarketplaceStoreQueryApiCollectionArgs = {
|
|
36949
|
+
slug: Scalars['String']['input'];
|
|
36950
|
+
};
|
|
36454
36951
|
export declare type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
36455
36952
|
id: Scalars['ID']['input'];
|
|
36456
36953
|
};
|
|
@@ -38144,7 +38641,8 @@ export declare enum PolarisFieldType {
|
|
|
38144
38641
|
PolarisIdeaReactionsField = "PolarisIdeaReactionsField",
|
|
38145
38642
|
PolarisIdeaStringField = "PolarisIdeaStringField",
|
|
38146
38643
|
PolarisIdeaUserField = "PolarisIdeaUserField",
|
|
38147
|
-
PolarisIdeaUsersField = "PolarisIdeaUsersField"
|
|
38644
|
+
PolarisIdeaUsersField = "PolarisIdeaUsersField",
|
|
38645
|
+
PolarisJiraField = "PolarisJiraField"
|
|
38148
38646
|
}
|
|
38149
38647
|
export declare type PolarisFilterInput = {
|
|
38150
38648
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38742,6 +39240,26 @@ export declare type PolarisIssueLinkType = {
|
|
|
38742
39240
|
delivery: Scalars['Int']['output'];
|
|
38743
39241
|
merge: Scalars['Int']['output'];
|
|
38744
39242
|
};
|
|
39243
|
+
export declare type PolarisJiraField = PolarisIdeaField & {
|
|
39244
|
+
__typename?: 'PolarisJiraField';
|
|
39245
|
+
builtin?: Maybe<BuiltinPolarisIdeaField>;
|
|
39246
|
+
decorations?: Maybe<Array<PolarisDecoration>>;
|
|
39247
|
+
defaultSortOrder?: Maybe<PolarisSortOrder>;
|
|
39248
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
39249
|
+
editable: Scalars['Boolean']['output'];
|
|
39250
|
+
emoji?: Maybe<Scalars['String']['output']>;
|
|
39251
|
+
fieldId?: Maybe<Scalars['Int']['output']>;
|
|
39252
|
+
fieldName?: Maybe<Scalars['String']['output']>;
|
|
39253
|
+
formula?: Maybe<Scalars['JSON']['output']>;
|
|
39254
|
+
groupable: Scalars['Boolean']['output'];
|
|
39255
|
+
id: Scalars['ID']['output'];
|
|
39256
|
+
jiraFieldKey?: Maybe<Scalars['String']['output']>;
|
|
39257
|
+
label: Scalars['String']['output'];
|
|
39258
|
+
linearizable: Scalars['Boolean']['output'];
|
|
39259
|
+
presentation?: Maybe<PolarisPresentation>;
|
|
39260
|
+
sortable: Scalars['Boolean']['output'];
|
|
39261
|
+
specialType?: Maybe<Scalars['String']['output']>;
|
|
39262
|
+
};
|
|
38745
39263
|
export declare type PolarisMatrixAxis = {
|
|
38746
39264
|
__typename?: 'PolarisMatrixAxis';
|
|
38747
39265
|
dimension: Scalars['String']['output'];
|
|
@@ -39162,7 +39680,8 @@ export declare type PolarisViewLastViewed = {
|
|
|
39162
39680
|
};
|
|
39163
39681
|
export declare enum PolarisViewLayoutType {
|
|
39164
39682
|
Compact = "COMPACT",
|
|
39165
|
-
Detailed = "DETAILED"
|
|
39683
|
+
Detailed = "DETAILED",
|
|
39684
|
+
Summary = "SUMMARY"
|
|
39166
39685
|
}
|
|
39167
39686
|
export declare type PolarisViewSet = {
|
|
39168
39687
|
__typename?: 'PolarisViewSet';
|
|
@@ -42046,6 +42565,27 @@ export declare type ShepherdDetectionBooleanSetting = {
|
|
|
42046
42565
|
booleanDefault: Scalars['Boolean']['output'];
|
|
42047
42566
|
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
42048
42567
|
};
|
|
42568
|
+
export declare type ShepherdDetectionContentExclusion = {
|
|
42569
|
+
__typename?: 'ShepherdDetectionContentExclusion';
|
|
42570
|
+
key: Scalars['String']['output'];
|
|
42571
|
+
rules: Array<ShepherdDetectionContentExclusionRule>;
|
|
42572
|
+
};
|
|
42573
|
+
export declare type ShepherdDetectionContentExclusionRule = ShepherdCustomScanningStringMatchRule;
|
|
42574
|
+
export declare type ShepherdDetectionExclusion = ShepherdDetectionContentExclusion | ShepherdDetectionResourceExclusion;
|
|
42575
|
+
export declare type ShepherdDetectionExclusionsSetting = {
|
|
42576
|
+
__typename?: 'ShepherdDetectionExclusionsSetting';
|
|
42577
|
+
allowedExclusions: Array<Scalars['String']['output']>;
|
|
42578
|
+
exclusions: Array<ShepherdDetectionExclusion>;
|
|
42579
|
+
};
|
|
42580
|
+
export declare type ShepherdDetectionRemoveSettingValuePayload = Payload & {
|
|
42581
|
+
__typename?: 'ShepherdDetectionRemoveSettingValuePayload';
|
|
42582
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42583
|
+
success: Scalars['Boolean']['output'];
|
|
42584
|
+
};
|
|
42585
|
+
export declare type ShepherdDetectionResourceExclusion = {
|
|
42586
|
+
__typename?: 'ShepherdDetectionResourceExclusion';
|
|
42587
|
+
ari: Scalars['ID']['output'];
|
|
42588
|
+
};
|
|
42049
42589
|
export declare enum ShepherdDetectionScanningFrequency {
|
|
42050
42590
|
RealTime = "REAL_TIME",
|
|
42051
42591
|
Scheduled = "SCHEDULED"
|
|
@@ -42061,7 +42601,36 @@ export declare type ShepherdDetectionSetting = {
|
|
|
42061
42601
|
title: Scalars['String']['output'];
|
|
42062
42602
|
value: ShepherdDetectionSettingValueType;
|
|
42063
42603
|
};
|
|
42064
|
-
export declare type
|
|
42604
|
+
export declare type ShepherdDetectionSettingMutations = {
|
|
42605
|
+
__typename?: 'ShepherdDetectionSettingMutations';
|
|
42606
|
+
removeValue?: Maybe<ShepherdDetectionRemoveSettingValuePayload>;
|
|
42607
|
+
setValue?: Maybe<ShepherdDetectionUpdateSettingValuePayload>;
|
|
42608
|
+
};
|
|
42609
|
+
export declare type ShepherdDetectionSettingMutationsRemoveValueArgs = {
|
|
42610
|
+
id: Scalars['ID']['input'];
|
|
42611
|
+
keys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
42612
|
+
};
|
|
42613
|
+
export declare type ShepherdDetectionSettingMutationsSetValueArgs = {
|
|
42614
|
+
id: Scalars['ID']['input'];
|
|
42615
|
+
input: ShepherdDetectionSettingSetValueInput;
|
|
42616
|
+
};
|
|
42617
|
+
export declare type ShepherdDetectionSettingSetValueEntryInput = {
|
|
42618
|
+
key: Scalars['String']['input'];
|
|
42619
|
+
scanningRules?: InputMaybe<Array<ShepherdCustomScanningRuleInput>>;
|
|
42620
|
+
};
|
|
42621
|
+
export declare type ShepherdDetectionSettingSetValueInput = {
|
|
42622
|
+
booleanValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42623
|
+
entries?: InputMaybe<Array<ShepherdDetectionSettingSetValueEntryInput>>;
|
|
42624
|
+
stringValues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
42625
|
+
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
42626
|
+
};
|
|
42627
|
+
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionExclusionsSetting | ShepherdRateThresholdSetting;
|
|
42628
|
+
export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
42629
|
+
__typename?: 'ShepherdDetectionUpdateSettingValuePayload';
|
|
42630
|
+
errors?: Maybe<Array<MutationError>>;
|
|
42631
|
+
node?: Maybe<ShepherdDetectionSetting>;
|
|
42632
|
+
success: Scalars['Boolean']['output'];
|
|
42633
|
+
};
|
|
42065
42634
|
export declare type ShepherdGenericMutationErrorExtension = MutationErrorExtension & {
|
|
42066
42635
|
__typename?: 'ShepherdGenericMutationErrorExtension';
|
|
42067
42636
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
@@ -42272,6 +42841,7 @@ export declare type ShepherdSubject = {
|
|
|
42272
42841
|
ari?: Maybe<Scalars['String']['output']>;
|
|
42273
42842
|
ati?: Maybe<Scalars['String']['output']>;
|
|
42274
42843
|
containerAri: Scalars['String']['output'];
|
|
42844
|
+
resourceName?: Maybe<Scalars['String']['output']>;
|
|
42275
42845
|
};
|
|
42276
42846
|
export declare type ShepherdSubjectInput = {
|
|
42277
42847
|
ari?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -42464,6 +43034,7 @@ export declare type ShepherdWorkspaceMutations = {
|
|
|
42464
43034
|
__typename?: 'ShepherdWorkspaceMutations';
|
|
42465
43035
|
createCustomDetection?: Maybe<ShepherdCustomDetectionMutationPayload>;
|
|
42466
43036
|
deleteCustomDetection?: Maybe<ShepherdCustomDetectionMutationPayload>;
|
|
43037
|
+
detectionSetting?: Maybe<ShepherdDetectionSettingMutations>;
|
|
42467
43038
|
onboard?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
42468
43039
|
update?: Maybe<ShepherdWorkspaceMutationPayload>;
|
|
42469
43040
|
updateCustomDetection?: Maybe<ShepherdCustomDetectionMutationPayload>;
|
|
@@ -43878,6 +44449,17 @@ export declare type TownsquareDeleteRelationshipsPayload = {
|
|
|
43878
44449
|
relationships?: Maybe<Array<TownsquareRelationship>>;
|
|
43879
44450
|
success: Scalars['Boolean']['output'];
|
|
43880
44451
|
};
|
|
44452
|
+
export declare type TownsquareEditGoalInput = {
|
|
44453
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
44454
|
+
id: Scalars['String']['input'];
|
|
44455
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
44456
|
+
owner?: InputMaybe<Scalars['String']['input']>;
|
|
44457
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
44458
|
+
};
|
|
44459
|
+
export declare type TownsquareEditGoalPayload = {
|
|
44460
|
+
__typename?: 'TownsquareEditGoalPayload';
|
|
44461
|
+
goal?: Maybe<TownsquareGoal>;
|
|
44462
|
+
};
|
|
43881
44463
|
export declare type TownsquareGoal = Node & {
|
|
43882
44464
|
__typename?: 'TownsquareGoal';
|
|
43883
44465
|
archived: Scalars['Boolean']['output'];
|
|
@@ -43952,6 +44534,7 @@ export declare type TownsquareMutationApi = {
|
|
|
43952
44534
|
createGoal?: Maybe<TownsquareCreateGoalPayload>;
|
|
43953
44535
|
createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
|
|
43954
44536
|
deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
|
|
44537
|
+
editGoal?: Maybe<TownsquareEditGoalPayload>;
|
|
43955
44538
|
};
|
|
43956
44539
|
export declare type TownsquareMutationApiCreateGoalArgs = {
|
|
43957
44540
|
input: TownsquareCreateGoalInput;
|
|
@@ -43962,6 +44545,9 @@ export declare type TownsquareMutationApiCreateRelationshipsArgs = {
|
|
|
43962
44545
|
export declare type TownsquareMutationApiDeleteRelationshipsArgs = {
|
|
43963
44546
|
input: TownsquareDeleteRelationshipsInput;
|
|
43964
44547
|
};
|
|
44548
|
+
export declare type TownsquareMutationApiEditGoalArgs = {
|
|
44549
|
+
input: TownsquareEditGoalInput;
|
|
44550
|
+
};
|
|
43965
44551
|
export declare type TownsquareProject = Node & {
|
|
43966
44552
|
__typename?: 'TownsquareProject';
|
|
43967
44553
|
archived: Scalars['Boolean']['output'];
|
|
@@ -44119,6 +44705,10 @@ export declare type TownsquareTargetDate = {
|
|
|
44119
44705
|
dateRange?: Maybe<TownsquareTargetDateRange>;
|
|
44120
44706
|
label?: Maybe<Scalars['String']['output']>;
|
|
44121
44707
|
};
|
|
44708
|
+
export declare type TownsquareTargetDateInput = {
|
|
44709
|
+
confidence?: InputMaybe<TownsquareTargetDateType>;
|
|
44710
|
+
date?: InputMaybe<Scalars['Date']['input']>;
|
|
44711
|
+
};
|
|
44122
44712
|
export declare type TownsquareTargetDateRange = {
|
|
44123
44713
|
__typename?: 'TownsquareTargetDateRange';
|
|
44124
44714
|
end?: Maybe<Scalars['DateTime']['output']>;
|