@forge/cli-shared 3.23.3-next.8 → 3.23.3-next.9-experimental-cf84ac7
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 +54 -0
- package/out/graphql/graphql-types.d.ts +580 -23
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +76 -7
- package/out/service/feature-flag-service.d.ts +2 -0
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +4 -0
- package/out/ui/text.d.ts +7 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +7 -0
- package/package.json +3 -3
|
@@ -333,6 +333,7 @@ export declare type ActivitiesObjectParent = {
|
|
|
333
333
|
export declare enum ActivitiesObjectType {
|
|
334
334
|
Blogpost = "BLOGPOST",
|
|
335
335
|
Database = "DATABASE",
|
|
336
|
+
Embed = "EMBED",
|
|
336
337
|
Goal = "GOAL",
|
|
337
338
|
Issue = "ISSUE",
|
|
338
339
|
Page = "PAGE",
|
|
@@ -438,6 +439,7 @@ export declare enum ActivityObjectType {
|
|
|
438
439
|
Blogpost = "BLOGPOST",
|
|
439
440
|
Comment = "COMMENT",
|
|
440
441
|
Database = "DATABASE",
|
|
442
|
+
Embed = "EMBED",
|
|
441
443
|
Goal = "GOAL",
|
|
442
444
|
Issue = "ISSUE",
|
|
443
445
|
Page = "PAGE",
|
|
@@ -7929,6 +7931,7 @@ export declare type CustomerServiceFilterInput = {
|
|
|
7929
7931
|
export declare type CustomerServiceIndividual = Node & {
|
|
7930
7932
|
__typename?: 'CustomerServiceIndividual';
|
|
7931
7933
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
7934
|
+
entitlementList: Array<CustomerServiceEntitlement>;
|
|
7932
7935
|
entitlements?: Maybe<CustomerServiceEntitlementConnection>;
|
|
7933
7936
|
id: Scalars['ID']['output'];
|
|
7934
7937
|
links: Array<CustomerServiceLink>;
|
|
@@ -7936,6 +7939,9 @@ export declare type CustomerServiceIndividual = Node & {
|
|
|
7936
7939
|
notes: CustomerServiceNotes;
|
|
7937
7940
|
organizations: Array<CustomerServiceOrganization>;
|
|
7938
7941
|
};
|
|
7942
|
+
export declare type CustomerServiceIndividualEntitlementListArgs = {
|
|
7943
|
+
filter?: InputMaybe<CustomerServiceEntitlementFilterInput>;
|
|
7944
|
+
};
|
|
7939
7945
|
export declare type CustomerServiceIndividualEntitlementsArgs = {
|
|
7940
7946
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7941
7947
|
filter?: InputMaybe<CustomerServiceEntitlementFilterInput>;
|
|
@@ -8201,12 +8207,16 @@ export declare type CustomerServiceNotesQueryResult = CustomerServiceNotes | Que
|
|
|
8201
8207
|
export declare type CustomerServiceOrganization = Node & {
|
|
8202
8208
|
__typename?: 'CustomerServiceOrganization';
|
|
8203
8209
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
8210
|
+
entitlementList: Array<CustomerServiceEntitlement>;
|
|
8204
8211
|
entitlements?: Maybe<CustomerServiceEntitlementConnection>;
|
|
8205
8212
|
id: Scalars['ID']['output'];
|
|
8206
8213
|
links: Array<CustomerServiceLink>;
|
|
8207
8214
|
name: Scalars['String']['output'];
|
|
8208
8215
|
notes: CustomerServiceNotes;
|
|
8209
8216
|
};
|
|
8217
|
+
export declare type CustomerServiceOrganizationEntitlementListArgs = {
|
|
8218
|
+
filter?: InputMaybe<CustomerServiceEntitlementFilterInput>;
|
|
8219
|
+
};
|
|
8210
8220
|
export declare type CustomerServiceOrganizationEntitlementsArgs = {
|
|
8211
8221
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8212
8222
|
filter?: InputMaybe<CustomerServiceEntitlementFilterInput>;
|
|
@@ -14831,6 +14841,10 @@ export declare type GraphStore = {
|
|
|
14831
14841
|
versionAssociatedDeploymentInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedDeploymentInverseConnection>;
|
|
14832
14842
|
versionAssociatedDeploymentInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedDeploymentConnection>;
|
|
14833
14843
|
versionAssociatedDeploymentRelationship?: Maybe<GraphStoreFullVersionAssociatedDeploymentConnection>;
|
|
14844
|
+
versionAssociatedDesign?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignConnection>;
|
|
14845
|
+
versionAssociatedDesignInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignInverseConnection>;
|
|
14846
|
+
versionAssociatedDesignInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedDesignConnection>;
|
|
14847
|
+
versionAssociatedDesignRelationship?: Maybe<GraphStoreFullVersionAssociatedDesignConnection>;
|
|
14834
14848
|
versionAssociatedFeatureFlag?: Maybe<GraphStoreSimplifiedVersionAssociatedFeatureFlagConnection>;
|
|
14835
14849
|
versionAssociatedFeatureFlagInverse?: Maybe<GraphStoreSimplifiedVersionAssociatedFeatureFlagInverseConnection>;
|
|
14836
14850
|
versionAssociatedFeatureFlagInverseRelationship?: Maybe<GraphStoreFullVersionAssociatedFeatureFlagConnection>;
|
|
@@ -15393,23 +15407,31 @@ export declare type GraphStoreJswProjectAssociatedComponentRelationshipArgs = {
|
|
|
15393
15407
|
};
|
|
15394
15408
|
export declare type GraphStoreJswProjectAssociatedIncidentArgs = {
|
|
15395
15409
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15410
|
+
filter?: InputMaybe<GraphStoreJswProjectAssociatedIncidentFilterInput>;
|
|
15396
15411
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15397
15412
|
id: Scalars['ID']['input'];
|
|
15413
|
+
sort?: InputMaybe<GraphStoreJswProjectAssociatedIncidentSortInput>;
|
|
15398
15414
|
};
|
|
15399
15415
|
export declare type GraphStoreJswProjectAssociatedIncidentInverseArgs = {
|
|
15400
15416
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15417
|
+
filter?: InputMaybe<GraphStoreJswProjectAssociatedIncidentFilterInput>;
|
|
15401
15418
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15402
15419
|
id: Scalars['ID']['input'];
|
|
15420
|
+
sort?: InputMaybe<GraphStoreJswProjectAssociatedIncidentSortInput>;
|
|
15403
15421
|
};
|
|
15404
15422
|
export declare type GraphStoreJswProjectAssociatedIncidentInverseRelationshipArgs = {
|
|
15405
15423
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15424
|
+
filter?: InputMaybe<GraphStoreJswProjectAssociatedIncidentFilterInput>;
|
|
15406
15425
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15407
15426
|
id: Scalars['ID']['input'];
|
|
15427
|
+
sort?: InputMaybe<GraphStoreJswProjectAssociatedIncidentSortInput>;
|
|
15408
15428
|
};
|
|
15409
15429
|
export declare type GraphStoreJswProjectAssociatedIncidentRelationshipArgs = {
|
|
15410
15430
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
15431
|
+
filter?: InputMaybe<GraphStoreJswProjectAssociatedIncidentFilterInput>;
|
|
15411
15432
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15412
15433
|
id: Scalars['ID']['input'];
|
|
15434
|
+
sort?: InputMaybe<GraphStoreJswProjectAssociatedIncidentSortInput>;
|
|
15413
15435
|
};
|
|
15414
15436
|
export declare type GraphStoreJswProjectSharesComponentWithJsmProjectArgs = {
|
|
15415
15437
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -16392,6 +16414,34 @@ export declare type GraphStoreVersionAssociatedDeploymentRelationshipArgs = {
|
|
|
16392
16414
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16393
16415
|
id: Scalars['ID']['input'];
|
|
16394
16416
|
};
|
|
16417
|
+
export declare type GraphStoreVersionAssociatedDesignArgs = {
|
|
16418
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16419
|
+
filter?: InputMaybe<GraphStoreVersionAssociatedDesignFilterInput>;
|
|
16420
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16421
|
+
id: Scalars['ID']['input'];
|
|
16422
|
+
sort?: InputMaybe<GraphStoreVersionAssociatedDesignSortInput>;
|
|
16423
|
+
};
|
|
16424
|
+
export declare type GraphStoreVersionAssociatedDesignInverseArgs = {
|
|
16425
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16426
|
+
filter?: InputMaybe<GraphStoreVersionAssociatedDesignFilterInput>;
|
|
16427
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16428
|
+
id: Scalars['ID']['input'];
|
|
16429
|
+
sort?: InputMaybe<GraphStoreVersionAssociatedDesignSortInput>;
|
|
16430
|
+
};
|
|
16431
|
+
export declare type GraphStoreVersionAssociatedDesignInverseRelationshipArgs = {
|
|
16432
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16433
|
+
filter?: InputMaybe<GraphStoreVersionAssociatedDesignFilterInput>;
|
|
16434
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16435
|
+
id: Scalars['ID']['input'];
|
|
16436
|
+
sort?: InputMaybe<GraphStoreVersionAssociatedDesignSortInput>;
|
|
16437
|
+
};
|
|
16438
|
+
export declare type GraphStoreVersionAssociatedDesignRelationshipArgs = {
|
|
16439
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
16440
|
+
filter?: InputMaybe<GraphStoreVersionAssociatedDesignFilterInput>;
|
|
16441
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16442
|
+
id: Scalars['ID']['input'];
|
|
16443
|
+
sort?: InputMaybe<GraphStoreVersionAssociatedDesignSortInput>;
|
|
16444
|
+
};
|
|
16395
16445
|
export declare type GraphStoreVersionAssociatedFeatureFlagArgs = {
|
|
16396
16446
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16397
16447
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -16604,7 +16654,7 @@ export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStart
|
|
|
16604
16654
|
data?: Maybe<GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartUnion>;
|
|
16605
16655
|
id: Scalars['ID']['output'];
|
|
16606
16656
|
};
|
|
16607
|
-
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartUnion = JiraIssue;
|
|
16657
|
+
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewLinkStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
16608
16658
|
export declare type GraphStoreBatchIncidentAssociatedPostIncidentReviewNode = Node & {
|
|
16609
16659
|
__typename?: 'GraphStoreBatchIncidentAssociatedPostIncidentReviewNode';
|
|
16610
16660
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -16659,7 +16709,7 @@ export declare type GraphStoreBatchIncidentHasActionItemStartNode = Node & {
|
|
|
16659
16709
|
data?: Maybe<GraphStoreBatchIncidentHasActionItemStartUnion>;
|
|
16660
16710
|
id: Scalars['ID']['output'];
|
|
16661
16711
|
};
|
|
16662
|
-
export declare type GraphStoreBatchIncidentHasActionItemStartUnion = JiraIssue;
|
|
16712
|
+
export declare type GraphStoreBatchIncidentHasActionItemStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
16663
16713
|
export declare type GraphStoreBatchIncidentLinkedJswIssueConnection = HasPageInfo & {
|
|
16664
16714
|
__typename?: 'GraphStoreBatchIncidentLinkedJswIssueConnection';
|
|
16665
16715
|
edges: Array<Maybe<GraphStoreBatchIncidentLinkedJswIssueEdge>>;
|
|
@@ -16700,7 +16750,7 @@ export declare type GraphStoreBatchIncidentLinkedJswIssueStartNode = Node & {
|
|
|
16700
16750
|
data?: Maybe<GraphStoreBatchIncidentLinkedJswIssueStartUnion>;
|
|
16701
16751
|
id: Scalars['ID']['output'];
|
|
16702
16752
|
};
|
|
16703
|
-
export declare type GraphStoreBatchIncidentLinkedJswIssueStartUnion = JiraIssue;
|
|
16753
|
+
export declare type GraphStoreBatchIncidentLinkedJswIssueStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
16704
16754
|
export declare type GraphStoreBatchJsmProjectAssociatedServiceConnection = HasPageInfo & {
|
|
16705
16755
|
__typename?: 'GraphStoreBatchJsmProjectAssociatedServiceConnection';
|
|
16706
16756
|
edges: Array<Maybe<GraphStoreBatchJsmProjectAssociatedServiceEdge>>;
|
|
@@ -17447,7 +17497,7 @@ export declare type GraphStoreFullComponentImpactedByIncidentEndNode = {
|
|
|
17447
17497
|
data?: Maybe<GraphStoreFullComponentImpactedByIncidentEndUnion>;
|
|
17448
17498
|
id: Scalars['ID']['output'];
|
|
17449
17499
|
};
|
|
17450
|
-
export declare type GraphStoreFullComponentImpactedByIncidentEndUnion = JiraIssue;
|
|
17500
|
+
export declare type GraphStoreFullComponentImpactedByIncidentEndUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
17451
17501
|
export declare type GraphStoreFullComponentImpactedByIncidentNode = Node & {
|
|
17452
17502
|
__typename?: 'GraphStoreFullComponentImpactedByIncidentNode';
|
|
17453
17503
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -17573,7 +17623,7 @@ export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkStartN
|
|
|
17573
17623
|
data?: Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewLinkStartUnion>;
|
|
17574
17624
|
id: Scalars['ID']['output'];
|
|
17575
17625
|
};
|
|
17576
|
-
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkStartUnion = JiraIssue;
|
|
17626
|
+
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewLinkStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
17577
17627
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewNode = Node & {
|
|
17578
17628
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewNode';
|
|
17579
17629
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -17620,7 +17670,7 @@ export declare type GraphStoreFullIncidentHasActionItemStartNode = {
|
|
|
17620
17670
|
data?: Maybe<GraphStoreFullIncidentHasActionItemStartUnion>;
|
|
17621
17671
|
id: Scalars['ID']['output'];
|
|
17622
17672
|
};
|
|
17623
|
-
export declare type GraphStoreFullIncidentHasActionItemStartUnion = JiraIssue;
|
|
17673
|
+
export declare type GraphStoreFullIncidentHasActionItemStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
17624
17674
|
export declare type GraphStoreFullIncidentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
17625
17675
|
__typename?: 'GraphStoreFullIncidentLinkedJswIssueConnection';
|
|
17626
17676
|
edges: Array<Maybe<GraphStoreFullIncidentLinkedJswIssueEdge>>;
|
|
@@ -17653,7 +17703,7 @@ export declare type GraphStoreFullIncidentLinkedJswIssueStartNode = {
|
|
|
17653
17703
|
data?: Maybe<GraphStoreFullIncidentLinkedJswIssueStartUnion>;
|
|
17654
17704
|
id: Scalars['ID']['output'];
|
|
17655
17705
|
};
|
|
17656
|
-
export declare type GraphStoreFullIncidentLinkedJswIssueStartUnion = JiraIssue;
|
|
17706
|
+
export declare type GraphStoreFullIncidentLinkedJswIssueStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
17657
17707
|
export declare type GraphStoreFullIssueAssociatedBranchConnection = HasPageInfo & {
|
|
17658
17708
|
__typename?: 'GraphStoreFullIssueAssociatedBranchConnection';
|
|
17659
17709
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedBranchEdge>>;
|
|
@@ -17814,7 +17864,6 @@ export declare type GraphStoreFullIssueAssociatedDeploymentNode = Node & {
|
|
|
17814
17864
|
export declare type GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput = {
|
|
17815
17865
|
__typename?: 'GraphStoreFullIssueAssociatedDeploymentRelationshipObjectMetadataOutput';
|
|
17816
17866
|
author?: Maybe<GraphStoreFullIssueAssociatedDeploymentAuthorOutput>;
|
|
17817
|
-
deploymentLastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
17818
17867
|
environmentType?: Maybe<GraphStoreFullIssueAssociatedDeploymentEnvironmentTypeOutput>;
|
|
17819
17868
|
state?: Maybe<GraphStoreFullIssueAssociatedDeploymentDeploymentStateOutput>;
|
|
17820
17869
|
};
|
|
@@ -18272,7 +18321,7 @@ export declare type GraphStoreFullJswProjectAssociatedIncidentEndNode = {
|
|
|
18272
18321
|
id: Scalars['ID']['output'];
|
|
18273
18322
|
metadata?: Maybe<GraphStoreFullJswProjectAssociatedIncidentRelationshipObjectMetadataOutput>;
|
|
18274
18323
|
};
|
|
18275
|
-
export declare type GraphStoreFullJswProjectAssociatedIncidentEndUnion = JiraIssue;
|
|
18324
|
+
export declare type GraphStoreFullJswProjectAssociatedIncidentEndUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
18276
18325
|
export declare enum GraphStoreFullJswProjectAssociatedIncidentJiraServiceManagementIncidentPriorityOutput {
|
|
18277
18326
|
NotSet = "NOT_SET",
|
|
18278
18327
|
P1 = "P1",
|
|
@@ -18392,7 +18441,7 @@ export declare type GraphStoreFullOperationsContainerImpactedByIncidentEndNode =
|
|
|
18392
18441
|
data?: Maybe<GraphStoreFullOperationsContainerImpactedByIncidentEndUnion>;
|
|
18393
18442
|
id: Scalars['ID']['output'];
|
|
18394
18443
|
};
|
|
18395
|
-
export declare type GraphStoreFullOperationsContainerImpactedByIncidentEndUnion = JiraIssue;
|
|
18444
|
+
export declare type GraphStoreFullOperationsContainerImpactedByIncidentEndUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
18396
18445
|
export declare type GraphStoreFullOperationsContainerImpactedByIncidentNode = Node & {
|
|
18397
18446
|
__typename?: 'GraphStoreFullOperationsContainerImpactedByIncidentNode';
|
|
18398
18447
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -18988,7 +19037,7 @@ export declare type GraphStoreFullProjectAssociatedToIncidentEndNode = {
|
|
|
18988
19037
|
data?: Maybe<GraphStoreFullProjectAssociatedToIncidentEndUnion>;
|
|
18989
19038
|
id: Scalars['ID']['output'];
|
|
18990
19039
|
};
|
|
18991
|
-
export declare type GraphStoreFullProjectAssociatedToIncidentEndUnion = JiraIssue;
|
|
19040
|
+
export declare type GraphStoreFullProjectAssociatedToIncidentEndUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
18992
19041
|
export declare type GraphStoreFullProjectAssociatedToIncidentNode = Node & {
|
|
18993
19042
|
__typename?: 'GraphStoreFullProjectAssociatedToIncidentNode';
|
|
18994
19043
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -20382,6 +20431,61 @@ export declare type GraphStoreFullVersionAssociatedDeploymentStartNode = {
|
|
|
20382
20431
|
id: Scalars['ID']['output'];
|
|
20383
20432
|
};
|
|
20384
20433
|
export declare type GraphStoreFullVersionAssociatedDeploymentStartUnion = JiraVersion;
|
|
20434
|
+
export declare type GraphStoreFullVersionAssociatedDesignConnection = HasPageInfo & HasTotal & {
|
|
20435
|
+
__typename?: 'GraphStoreFullVersionAssociatedDesignConnection';
|
|
20436
|
+
edges: Array<Maybe<GraphStoreFullVersionAssociatedDesignEdge>>;
|
|
20437
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
20438
|
+
nodes: Array<Maybe<GraphStoreFullVersionAssociatedDesignNode>>;
|
|
20439
|
+
pageInfo: PageInfo;
|
|
20440
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20441
|
+
};
|
|
20442
|
+
export declare enum GraphStoreFullVersionAssociatedDesignDesignStatusOutput {
|
|
20443
|
+
None = "NONE",
|
|
20444
|
+
NotSet = "NOT_SET",
|
|
20445
|
+
ReadyForDevelopment = "READY_FOR_DEVELOPMENT",
|
|
20446
|
+
Unknown = "UNKNOWN"
|
|
20447
|
+
}
|
|
20448
|
+
export declare enum GraphStoreFullVersionAssociatedDesignDesignTypeOutput {
|
|
20449
|
+
Canvas = "CANVAS",
|
|
20450
|
+
File = "FILE",
|
|
20451
|
+
Group = "GROUP",
|
|
20452
|
+
Node = "NODE",
|
|
20453
|
+
NotSet = "NOT_SET",
|
|
20454
|
+
Other = "OTHER",
|
|
20455
|
+
Prototype = "PROTOTYPE"
|
|
20456
|
+
}
|
|
20457
|
+
export declare type GraphStoreFullVersionAssociatedDesignEdge = {
|
|
20458
|
+
__typename?: 'GraphStoreFullVersionAssociatedDesignEdge';
|
|
20459
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
20460
|
+
node: GraphStoreFullVersionAssociatedDesignNode;
|
|
20461
|
+
};
|
|
20462
|
+
export declare type GraphStoreFullVersionAssociatedDesignEndNode = {
|
|
20463
|
+
__typename?: 'GraphStoreFullVersionAssociatedDesignEndNode';
|
|
20464
|
+
data?: Maybe<GraphStoreFullVersionAssociatedDesignEndUnion>;
|
|
20465
|
+
id: Scalars['ID']['output'];
|
|
20466
|
+
metadata?: Maybe<GraphStoreFullVersionAssociatedDesignRelationshipObjectMetadataOutput>;
|
|
20467
|
+
};
|
|
20468
|
+
export declare type GraphStoreFullVersionAssociatedDesignEndUnion = DevOpsDesign;
|
|
20469
|
+
export declare type GraphStoreFullVersionAssociatedDesignNode = Node & {
|
|
20470
|
+
__typename?: 'GraphStoreFullVersionAssociatedDesignNode';
|
|
20471
|
+
createdAt: Scalars['DateTime']['output'];
|
|
20472
|
+
from: GraphStoreFullVersionAssociatedDesignStartNode;
|
|
20473
|
+
id: Scalars['ID']['output'];
|
|
20474
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
20475
|
+
to: GraphStoreFullVersionAssociatedDesignEndNode;
|
|
20476
|
+
};
|
|
20477
|
+
export declare type GraphStoreFullVersionAssociatedDesignRelationshipObjectMetadataOutput = {
|
|
20478
|
+
__typename?: 'GraphStoreFullVersionAssociatedDesignRelationshipObjectMetadataOutput';
|
|
20479
|
+
designLastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
20480
|
+
status?: Maybe<GraphStoreFullVersionAssociatedDesignDesignStatusOutput>;
|
|
20481
|
+
type?: Maybe<GraphStoreFullVersionAssociatedDesignDesignTypeOutput>;
|
|
20482
|
+
};
|
|
20483
|
+
export declare type GraphStoreFullVersionAssociatedDesignStartNode = {
|
|
20484
|
+
__typename?: 'GraphStoreFullVersionAssociatedDesignStartNode';
|
|
20485
|
+
data?: Maybe<GraphStoreFullVersionAssociatedDesignStartUnion>;
|
|
20486
|
+
id: Scalars['ID']['output'];
|
|
20487
|
+
};
|
|
20488
|
+
export declare type GraphStoreFullVersionAssociatedDesignStartUnion = JiraVersion;
|
|
20385
20489
|
export declare type GraphStoreFullVersionAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
20386
20490
|
__typename?: 'GraphStoreFullVersionAssociatedFeatureFlagConnection';
|
|
20387
20491
|
edges: Array<Maybe<GraphStoreFullVersionAssociatedFeatureFlagEdge>>;
|
|
@@ -20617,6 +20721,55 @@ export declare type GraphStoreIntFilterInput = {
|
|
|
20617
20721
|
lessThan?: InputMaybe<Scalars['Int']['input']>;
|
|
20618
20722
|
lessThanOrEqual?: InputMaybe<Scalars['Int']['input']>;
|
|
20619
20723
|
};
|
|
20724
|
+
export declare type GraphStoreJswProjectAssociatedIncidentConditionalFilterInput = {
|
|
20725
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
20726
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
20727
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
20728
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
20729
|
+
to_assigneeAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
20730
|
+
to_majorIncident?: InputMaybe<GraphStoreBooleanFilterInput>;
|
|
20731
|
+
to_priority?: InputMaybe<GraphStoreJswProjectAssociatedIncidentJiraServiceManagementIncidentPriorityFilterInput>;
|
|
20732
|
+
to_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
20733
|
+
to_status?: InputMaybe<GraphStoreJswProjectAssociatedIncidentJiraServiceManagementIncidentStatusFilterInput>;
|
|
20734
|
+
};
|
|
20735
|
+
export declare type GraphStoreJswProjectAssociatedIncidentFilterInput = {
|
|
20736
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreJswProjectAssociatedIncidentConditionalFilterInput>>>;
|
|
20737
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreJswProjectAssociatedIncidentConditionalFilterInput>>>;
|
|
20738
|
+
};
|
|
20739
|
+
export declare enum GraphStoreJswProjectAssociatedIncidentJiraServiceManagementIncidentPriority {
|
|
20740
|
+
NotSet = "NOT_SET",
|
|
20741
|
+
P1 = "P1",
|
|
20742
|
+
P2 = "P2",
|
|
20743
|
+
P3 = "P3",
|
|
20744
|
+
P4 = "P4",
|
|
20745
|
+
P5 = "P5"
|
|
20746
|
+
}
|
|
20747
|
+
export declare type GraphStoreJswProjectAssociatedIncidentJiraServiceManagementIncidentPriorityFilterInput = {
|
|
20748
|
+
is?: InputMaybe<Array<GraphStoreJswProjectAssociatedIncidentJiraServiceManagementIncidentPriority>>;
|
|
20749
|
+
isNot?: InputMaybe<Array<GraphStoreJswProjectAssociatedIncidentJiraServiceManagementIncidentPriority>>;
|
|
20750
|
+
};
|
|
20751
|
+
export declare enum GraphStoreJswProjectAssociatedIncidentJiraServiceManagementIncidentStatus {
|
|
20752
|
+
Done = "DONE",
|
|
20753
|
+
Indeterminate = "INDETERMINATE",
|
|
20754
|
+
New = "NEW",
|
|
20755
|
+
NotSet = "NOT_SET",
|
|
20756
|
+
Undefined = "UNDEFINED"
|
|
20757
|
+
}
|
|
20758
|
+
export declare type GraphStoreJswProjectAssociatedIncidentJiraServiceManagementIncidentStatusFilterInput = {
|
|
20759
|
+
is?: InputMaybe<Array<GraphStoreJswProjectAssociatedIncidentJiraServiceManagementIncidentStatus>>;
|
|
20760
|
+
isNot?: InputMaybe<Array<GraphStoreJswProjectAssociatedIncidentJiraServiceManagementIncidentStatus>>;
|
|
20761
|
+
};
|
|
20762
|
+
export declare type GraphStoreJswProjectAssociatedIncidentSortInput = {
|
|
20763
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
20764
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
20765
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
20766
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
20767
|
+
to_assigneeAri?: InputMaybe<GraphStoreSortInput>;
|
|
20768
|
+
to_majorIncident?: InputMaybe<GraphStoreSortInput>;
|
|
20769
|
+
to_priority?: InputMaybe<GraphStoreSortInput>;
|
|
20770
|
+
to_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
20771
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
20772
|
+
};
|
|
20620
20773
|
export declare type GraphStoreLongFilterInput = {
|
|
20621
20774
|
greaterThan?: InputMaybe<Scalars['Long']['input']>;
|
|
20622
20775
|
greaterThanOrEqual?: InputMaybe<Scalars['Long']['input']>;
|
|
@@ -21182,7 +21335,7 @@ export declare type GraphStoreSimplifiedComponentImpactedByIncidentEdge = {
|
|
|
21182
21335
|
lastUpdated: Scalars['DateTime']['output'];
|
|
21183
21336
|
node?: Maybe<GraphStoreSimplifiedComponentImpactedByIncidentUnion>;
|
|
21184
21337
|
};
|
|
21185
|
-
export declare type GraphStoreSimplifiedComponentImpactedByIncidentUnion = JiraIssue;
|
|
21338
|
+
export declare type GraphStoreSimplifiedComponentImpactedByIncidentUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
21186
21339
|
export declare type GraphStoreSimplifiedComponentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
21187
21340
|
__typename?: 'GraphStoreSimplifiedComponentLinkedJswIssueConnection';
|
|
21188
21341
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedComponentLinkedJswIssueEdge>>>;
|
|
@@ -21281,7 +21434,7 @@ export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLink
|
|
|
21281
21434
|
lastUpdated: Scalars['DateTime']['output'];
|
|
21282
21435
|
node?: Maybe<GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkInverseUnion>;
|
|
21283
21436
|
};
|
|
21284
|
-
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkInverseUnion = JiraIssue;
|
|
21437
|
+
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkInverseUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
21285
21438
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewLinkUnion = JiraIssue | JiraPostIncidentReviewLink;
|
|
21286
21439
|
export declare type GraphStoreSimplifiedIncidentAssociatedPostIncidentReviewUnion = JiraIssue;
|
|
21287
21440
|
export declare type GraphStoreSimplifiedIncidentHasActionItemConnection = HasPageInfo & HasTotal & {
|
|
@@ -21312,7 +21465,7 @@ export declare type GraphStoreSimplifiedIncidentHasActionItemInverseEdge = {
|
|
|
21312
21465
|
lastUpdated: Scalars['DateTime']['output'];
|
|
21313
21466
|
node?: Maybe<GraphStoreSimplifiedIncidentHasActionItemInverseUnion>;
|
|
21314
21467
|
};
|
|
21315
|
-
export declare type GraphStoreSimplifiedIncidentHasActionItemInverseUnion = JiraIssue;
|
|
21468
|
+
export declare type GraphStoreSimplifiedIncidentHasActionItemInverseUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
21316
21469
|
export declare type GraphStoreSimplifiedIncidentHasActionItemUnion = JiraIssue;
|
|
21317
21470
|
export declare type GraphStoreSimplifiedIncidentLinkedJswIssueConnection = HasPageInfo & HasTotal & {
|
|
21318
21471
|
__typename?: 'GraphStoreSimplifiedIncidentLinkedJswIssueConnection';
|
|
@@ -21342,7 +21495,7 @@ export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseEdge = {
|
|
|
21342
21495
|
lastUpdated: Scalars['DateTime']['output'];
|
|
21343
21496
|
node?: Maybe<GraphStoreSimplifiedIncidentLinkedJswIssueInverseUnion>;
|
|
21344
21497
|
};
|
|
21345
|
-
export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseUnion = JiraIssue;
|
|
21498
|
+
export declare type GraphStoreSimplifiedIncidentLinkedJswIssueInverseUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
21346
21499
|
export declare type GraphStoreSimplifiedIncidentLinkedJswIssueUnion = JiraIssue;
|
|
21347
21500
|
export declare type GraphStoreSimplifiedIssueAssociatedBranchInverseConnection = HasPageInfo & {
|
|
21348
21501
|
__typename?: 'GraphStoreSimplifiedIssueAssociatedBranchInverseConnection';
|
|
@@ -21720,7 +21873,7 @@ export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentInverseEdge
|
|
|
21720
21873
|
node?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentInverseUnion>;
|
|
21721
21874
|
};
|
|
21722
21875
|
export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentInverseUnion = JiraProject;
|
|
21723
|
-
export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentUnion = JiraIssue;
|
|
21876
|
+
export declare type GraphStoreSimplifiedJswProjectAssociatedIncidentUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
21724
21877
|
export declare type GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectConnection = HasPageInfo & HasTotal & {
|
|
21725
21878
|
__typename?: 'GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectConnection';
|
|
21726
21879
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedJswProjectSharesComponentWithJsmProjectEdge>>>;
|
|
@@ -21793,7 +21946,7 @@ export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentEdg
|
|
|
21793
21946
|
lastUpdated: Scalars['DateTime']['output'];
|
|
21794
21947
|
node?: Maybe<GraphStoreSimplifiedOperationsContainerImpactedByIncidentUnion>;
|
|
21795
21948
|
};
|
|
21796
|
-
export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentUnion = JiraIssue;
|
|
21949
|
+
export declare type GraphStoreSimplifiedOperationsContainerImpactedByIncidentUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
21797
21950
|
export declare type GraphStoreSimplifiedOperationsContainerImprovedByActionItemConnection = HasPageInfo & {
|
|
21798
21951
|
__typename?: 'GraphStoreSimplifiedOperationsContainerImprovedByActionItemConnection';
|
|
21799
21952
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedOperationsContainerImprovedByActionItemEdge>>>;
|
|
@@ -22139,7 +22292,7 @@ export declare type GraphStoreSimplifiedProjectAssociatedToIncidentInverseEdge =
|
|
|
22139
22292
|
node?: Maybe<GraphStoreSimplifiedProjectAssociatedToIncidentInverseUnion>;
|
|
22140
22293
|
};
|
|
22141
22294
|
export declare type GraphStoreSimplifiedProjectAssociatedToIncidentInverseUnion = JiraProject;
|
|
22142
|
-
export declare type GraphStoreSimplifiedProjectAssociatedToIncidentUnion = JiraIssue;
|
|
22295
|
+
export declare type GraphStoreSimplifiedProjectAssociatedToIncidentUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
22143
22296
|
export declare type GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseConnection = HasPageInfo & HasTotal & {
|
|
22144
22297
|
__typename?: 'GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseConnection';
|
|
22145
22298
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectAssociatedToOperationsContainerInverseEdge>>>;
|
|
@@ -22812,6 +22965,36 @@ export declare type GraphStoreSimplifiedVersionAssociatedDeploymentInverseEdge =
|
|
|
22812
22965
|
};
|
|
22813
22966
|
export declare type GraphStoreSimplifiedVersionAssociatedDeploymentInverseUnion = JiraVersion;
|
|
22814
22967
|
export declare type GraphStoreSimplifiedVersionAssociatedDeploymentUnion = DeploymentSummary;
|
|
22968
|
+
export declare type GraphStoreSimplifiedVersionAssociatedDesignConnection = HasPageInfo & HasTotal & {
|
|
22969
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedDesignConnection';
|
|
22970
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedDesignEdge>>>;
|
|
22971
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
22972
|
+
pageInfo: PageInfo;
|
|
22973
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
22974
|
+
};
|
|
22975
|
+
export declare type GraphStoreSimplifiedVersionAssociatedDesignEdge = {
|
|
22976
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedDesignEdge';
|
|
22977
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22978
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
22979
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
22980
|
+
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignUnion>;
|
|
22981
|
+
};
|
|
22982
|
+
export declare type GraphStoreSimplifiedVersionAssociatedDesignInverseConnection = HasPageInfo & HasTotal & {
|
|
22983
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedDesignInverseConnection';
|
|
22984
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedDesignInverseEdge>>>;
|
|
22985
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
22986
|
+
pageInfo: PageInfo;
|
|
22987
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
22988
|
+
};
|
|
22989
|
+
export declare type GraphStoreSimplifiedVersionAssociatedDesignInverseEdge = {
|
|
22990
|
+
__typename?: 'GraphStoreSimplifiedVersionAssociatedDesignInverseEdge';
|
|
22991
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22992
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
22993
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
22994
|
+
node?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignInverseUnion>;
|
|
22995
|
+
};
|
|
22996
|
+
export declare type GraphStoreSimplifiedVersionAssociatedDesignInverseUnion = JiraVersion;
|
|
22997
|
+
export declare type GraphStoreSimplifiedVersionAssociatedDesignUnion = DevOpsDesign;
|
|
22815
22998
|
export declare type GraphStoreSimplifiedVersionAssociatedFeatureFlagConnection = HasPageInfo & HasTotal & {
|
|
22816
22999
|
__typename?: 'GraphStoreSimplifiedVersionAssociatedFeatureFlagConnection';
|
|
22817
23000
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedVersionAssociatedFeatureFlagEdge>>>;
|
|
@@ -23238,6 +23421,51 @@ export declare type GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatusFi
|
|
|
23238
23421
|
is?: InputMaybe<Array<GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatus>>;
|
|
23239
23422
|
isNot?: InputMaybe<Array<GraphStoreSprintAssociatedVulnerabilityVulnerabilityStatus>>;
|
|
23240
23423
|
};
|
|
23424
|
+
export declare type GraphStoreVersionAssociatedDesignConditionalFilterInput = {
|
|
23425
|
+
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
23426
|
+
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
23427
|
+
lastModified?: InputMaybe<GraphStoreDateFilterInput>;
|
|
23428
|
+
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
23429
|
+
to_designLastUpdated?: InputMaybe<GraphStoreLongFilterInput>;
|
|
23430
|
+
to_status?: InputMaybe<GraphStoreVersionAssociatedDesignDesignStatusFilterInput>;
|
|
23431
|
+
to_type?: InputMaybe<GraphStoreVersionAssociatedDesignDesignTypeFilterInput>;
|
|
23432
|
+
};
|
|
23433
|
+
export declare enum GraphStoreVersionAssociatedDesignDesignStatus {
|
|
23434
|
+
None = "NONE",
|
|
23435
|
+
NotSet = "NOT_SET",
|
|
23436
|
+
ReadyForDevelopment = "READY_FOR_DEVELOPMENT",
|
|
23437
|
+
Unknown = "UNKNOWN"
|
|
23438
|
+
}
|
|
23439
|
+
export declare type GraphStoreVersionAssociatedDesignDesignStatusFilterInput = {
|
|
23440
|
+
is?: InputMaybe<Array<GraphStoreVersionAssociatedDesignDesignStatus>>;
|
|
23441
|
+
isNot?: InputMaybe<Array<GraphStoreVersionAssociatedDesignDesignStatus>>;
|
|
23442
|
+
};
|
|
23443
|
+
export declare enum GraphStoreVersionAssociatedDesignDesignType {
|
|
23444
|
+
Canvas = "CANVAS",
|
|
23445
|
+
File = "FILE",
|
|
23446
|
+
Group = "GROUP",
|
|
23447
|
+
Node = "NODE",
|
|
23448
|
+
NotSet = "NOT_SET",
|
|
23449
|
+
Other = "OTHER",
|
|
23450
|
+
Prototype = "PROTOTYPE"
|
|
23451
|
+
}
|
|
23452
|
+
export declare type GraphStoreVersionAssociatedDesignDesignTypeFilterInput = {
|
|
23453
|
+
is?: InputMaybe<Array<GraphStoreVersionAssociatedDesignDesignType>>;
|
|
23454
|
+
isNot?: InputMaybe<Array<GraphStoreVersionAssociatedDesignDesignType>>;
|
|
23455
|
+
};
|
|
23456
|
+
export declare type GraphStoreVersionAssociatedDesignFilterInput = {
|
|
23457
|
+
and?: InputMaybe<Array<InputMaybe<GraphStoreVersionAssociatedDesignConditionalFilterInput>>>;
|
|
23458
|
+
or?: InputMaybe<Array<InputMaybe<GraphStoreVersionAssociatedDesignConditionalFilterInput>>>;
|
|
23459
|
+
};
|
|
23460
|
+
export declare type GraphStoreVersionAssociatedDesignSortInput = {
|
|
23461
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
23462
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
23463
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
23464
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
23465
|
+
to_designLastUpdated?: InputMaybe<GraphStoreSortInput>;
|
|
23466
|
+
to_status?: InputMaybe<GraphStoreSortInput>;
|
|
23467
|
+
to_type?: InputMaybe<GraphStoreSortInput>;
|
|
23468
|
+
};
|
|
23241
23469
|
export declare type GrowthRecContext = {
|
|
23242
23470
|
anonymousId?: InputMaybe<Scalars['ID']['input']>;
|
|
23243
23471
|
containers?: InputMaybe<Scalars['JSON']['input']>;
|
|
@@ -23396,12 +23624,14 @@ export declare type HasTotal = {
|
|
|
23396
23624
|
};
|
|
23397
23625
|
export declare type HelpCenter = Node & {
|
|
23398
23626
|
__typename?: 'HelpCenter';
|
|
23627
|
+
announcements?: Maybe<HelpCenterAnnouncements>;
|
|
23399
23628
|
conversation?: Maybe<HelpCenterConversation>;
|
|
23400
23629
|
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
23401
23630
|
helpDesks: HelpCenterHelpDeskItemConnection;
|
|
23402
23631
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
23403
23632
|
id: Scalars['ID']['output'];
|
|
23404
23633
|
name?: Maybe<HelpCenterName>;
|
|
23634
|
+
portals?: Maybe<Array<HelpCenterPortal>>;
|
|
23405
23635
|
slug?: Maybe<Scalars['String']['output']>;
|
|
23406
23636
|
topics?: Maybe<Array<HelpCenterTopic>>;
|
|
23407
23637
|
type?: Maybe<HelpCenterType>;
|
|
@@ -23410,6 +23640,32 @@ export declare type HelpCenterHelpDesksArgs = {
|
|
|
23410
23640
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
23411
23641
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
23412
23642
|
};
|
|
23643
|
+
export declare type HelpCenterPortalsArgs = {
|
|
23644
|
+
portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
|
|
23645
|
+
sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
|
|
23646
|
+
};
|
|
23647
|
+
export declare type HelpCenterAnnouncement = {
|
|
23648
|
+
__typename?: 'HelpCenterAnnouncement';
|
|
23649
|
+
announcementType?: Maybe<HelpCenterAnnouncementType>;
|
|
23650
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
23651
|
+
descriptionTranslationsRaw?: Maybe<Array<HelpCenterTranslation>>;
|
|
23652
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
23653
|
+
nameTranslationsRaw?: Maybe<Array<HelpCenterTranslation>>;
|
|
23654
|
+
};
|
|
23655
|
+
export declare type HelpCenterAnnouncementInput = {
|
|
23656
|
+
announcementType: HelpCenterAnnouncementType;
|
|
23657
|
+
descriptionTranslations?: InputMaybe<Array<HelpCenterTranslationInput>>;
|
|
23658
|
+
helpCenterAri: Scalars['String']['input'];
|
|
23659
|
+
nameTranslations?: InputMaybe<Array<HelpCenterTranslationInput>>;
|
|
23660
|
+
};
|
|
23661
|
+
export declare enum HelpCenterAnnouncementType {
|
|
23662
|
+
Wiki = "WIKI"
|
|
23663
|
+
}
|
|
23664
|
+
export declare type HelpCenterAnnouncements = {
|
|
23665
|
+
__typename?: 'HelpCenterAnnouncements';
|
|
23666
|
+
homePageAnnouncements?: Maybe<Array<HelpCenterAnnouncement>>;
|
|
23667
|
+
loginAnnouncements?: Maybe<Array<HelpCenterAnnouncement>>;
|
|
23668
|
+
};
|
|
23413
23669
|
export declare type HelpCenterBanner = {
|
|
23414
23670
|
__typename?: 'HelpCenterBanner';
|
|
23415
23671
|
fileId?: Maybe<Scalars['String']['output']>;
|
|
@@ -23422,6 +23678,7 @@ export declare type HelpCenterBranding = {
|
|
|
23422
23678
|
__typename?: 'HelpCenterBranding';
|
|
23423
23679
|
colors?: Maybe<HelpCenterBrandingColors>;
|
|
23424
23680
|
helpCenterBanner?: Maybe<HelpCenterBanner>;
|
|
23681
|
+
homePageTitle?: Maybe<HelpCenterHomePageTitle>;
|
|
23425
23682
|
logo?: Maybe<HelpCenterLogo>;
|
|
23426
23683
|
};
|
|
23427
23684
|
export declare type HelpCenterBrandingColors = {
|
|
@@ -23434,6 +23691,7 @@ export declare type HelpCenterBrandingColorsInput = {
|
|
|
23434
23691
|
export declare type HelpCenterBrandingInput = {
|
|
23435
23692
|
banner?: InputMaybe<HelpCenterBannerInput>;
|
|
23436
23693
|
colors?: InputMaybe<HelpCenterBrandingColorsInput>;
|
|
23694
|
+
homePageTitle?: InputMaybe<HelpCenterHomePageTitleInput>;
|
|
23437
23695
|
logo?: InputMaybe<HelpCenterLogoInput>;
|
|
23438
23696
|
};
|
|
23439
23697
|
export declare type HelpCenterBulkCreateTopicsInput = {
|
|
@@ -23552,11 +23810,30 @@ export declare type HelpCenterHelpDeskUpdateInput = {
|
|
|
23552
23810
|
name: Scalars['String']['input'];
|
|
23553
23811
|
};
|
|
23554
23812
|
export declare type HelpCenterHelpObject = HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError | HelpObjectStoreRequestForm;
|
|
23813
|
+
export declare type HelpCenterHomePageAnnouncementUpdatePayload = Payload & {
|
|
23814
|
+
__typename?: 'HelpCenterHomePageAnnouncementUpdatePayload';
|
|
23815
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23816
|
+
success: Scalars['Boolean']['output'];
|
|
23817
|
+
};
|
|
23555
23818
|
export declare type HelpCenterHomePageLayout = {
|
|
23556
23819
|
__typename?: 'HelpCenterHomePageLayout';
|
|
23557
23820
|
data?: Maybe<HelpLayoutResult>;
|
|
23558
23821
|
layoutId: Scalars['ID']['output'];
|
|
23559
23822
|
};
|
|
23823
|
+
export declare type HelpCenterHomePageTitle = {
|
|
23824
|
+
__typename?: 'HelpCenterHomePageTitle';
|
|
23825
|
+
default: Scalars['String']['output'];
|
|
23826
|
+
translations?: Maybe<Array<Maybe<HelpCenterTranslation>>>;
|
|
23827
|
+
};
|
|
23828
|
+
export declare type HelpCenterHomePageTitleInput = {
|
|
23829
|
+
default: Scalars['String']['input'];
|
|
23830
|
+
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
23831
|
+
};
|
|
23832
|
+
export declare type HelpCenterLoginAnnouncementUpdatePayload = Payload & {
|
|
23833
|
+
__typename?: 'HelpCenterLoginAnnouncementUpdatePayload';
|
|
23834
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23835
|
+
success: Scalars['Boolean']['output'];
|
|
23836
|
+
};
|
|
23560
23837
|
export declare type HelpCenterLogo = {
|
|
23561
23838
|
__typename?: 'HelpCenterLogo';
|
|
23562
23839
|
fileId?: Maybe<Scalars['String']['output']>;
|
|
@@ -23580,6 +23857,9 @@ export declare type HelpCenterMutationApi = {
|
|
|
23580
23857
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
23581
23858
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
23582
23859
|
updateHelpDesk?: Maybe<HelpCenterHelpDeskPayload>;
|
|
23860
|
+
updateHomePageAnnouncements?: Maybe<HelpCenterHomePageAnnouncementUpdatePayload>;
|
|
23861
|
+
updateLoginAnnouncements?: Maybe<HelpCenterLoginAnnouncementUpdatePayload>;
|
|
23862
|
+
updatePortalsConfiguration?: Maybe<HelpCenterPortalsConfigurationUpdatePayload>;
|
|
23583
23863
|
updateTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
23584
23864
|
updateTopicsOrder?: Maybe<HelpCenterUpdateTopicsOrderPayload>;
|
|
23585
23865
|
};
|
|
@@ -23601,6 +23881,15 @@ export declare type HelpCenterMutationApiUpdateHelpCenterArgs = {
|
|
|
23601
23881
|
export declare type HelpCenterMutationApiUpdateHelpDeskArgs = {
|
|
23602
23882
|
input: HelpCenterHelpDeskUpdateInput;
|
|
23603
23883
|
};
|
|
23884
|
+
export declare type HelpCenterMutationApiUpdateHomePageAnnouncementsArgs = {
|
|
23885
|
+
input: Array<InputMaybe<HelpCenterAnnouncementInput>>;
|
|
23886
|
+
};
|
|
23887
|
+
export declare type HelpCenterMutationApiUpdateLoginAnnouncementsArgs = {
|
|
23888
|
+
input: Array<InputMaybe<HelpCenterAnnouncementInput>>;
|
|
23889
|
+
};
|
|
23890
|
+
export declare type HelpCenterMutationApiUpdatePortalsConfigurationArgs = {
|
|
23891
|
+
input: HelpCenterPortalsConfigurationUpdateInput;
|
|
23892
|
+
};
|
|
23604
23893
|
export declare type HelpCenterMutationApiUpdateTopicArgs = {
|
|
23605
23894
|
input: HelpCenterBulkUpdateTopicInput;
|
|
23606
23895
|
};
|
|
@@ -23610,15 +23899,48 @@ export declare type HelpCenterMutationApiUpdateTopicsOrderArgs = {
|
|
|
23610
23899
|
export declare type HelpCenterName = {
|
|
23611
23900
|
__typename?: 'HelpCenterName';
|
|
23612
23901
|
default: Scalars['String']['output'];
|
|
23902
|
+
translations?: Maybe<Array<Maybe<HelpCenterTranslation>>>;
|
|
23613
23903
|
};
|
|
23614
23904
|
export declare type HelpCenterNameInput = {
|
|
23615
23905
|
default: Scalars['String']['input'];
|
|
23906
|
+
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
23907
|
+
};
|
|
23908
|
+
export declare type HelpCenterPortal = {
|
|
23909
|
+
__typename?: 'HelpCenterPortal';
|
|
23910
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
23911
|
+
id: Scalars['String']['output'];
|
|
23912
|
+
isFeatured: Scalars['Boolean']['output'];
|
|
23913
|
+
isHidden: Scalars['Boolean']['output'];
|
|
23914
|
+
key: Scalars['String']['output'];
|
|
23915
|
+
logoUrl: Scalars['String']['output'];
|
|
23916
|
+
name: Scalars['String']['output'];
|
|
23917
|
+
portalBaseUrl: Scalars['String']['output'];
|
|
23918
|
+
};
|
|
23919
|
+
export declare type HelpCenterPortalFilter = {
|
|
23920
|
+
featured: Scalars['Boolean']['input'];
|
|
23921
|
+
visible: Scalars['Boolean']['input'];
|
|
23922
|
+
};
|
|
23923
|
+
export declare type HelpCenterPortalsConfigurationUpdateInput = {
|
|
23924
|
+
featuredPortals: Array<Scalars['String']['input']>;
|
|
23925
|
+
helpCenterAri: Scalars['String']['input'];
|
|
23926
|
+
hiddenPortals: Array<Scalars['String']['input']>;
|
|
23927
|
+
sortOrder: HelpCenterPortalsSortOrder;
|
|
23928
|
+
};
|
|
23929
|
+
export declare type HelpCenterPortalsConfigurationUpdatePayload = Payload & {
|
|
23930
|
+
__typename?: 'HelpCenterPortalsConfigurationUpdatePayload';
|
|
23931
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23932
|
+
success: Scalars['Boolean']['output'];
|
|
23616
23933
|
};
|
|
23934
|
+
export declare enum HelpCenterPortalsSortOrder {
|
|
23935
|
+
NameAscending = "NAME_ASCENDING",
|
|
23936
|
+
Popularity = "POPULARITY"
|
|
23937
|
+
}
|
|
23617
23938
|
export declare type HelpCenterQueryApi = {
|
|
23618
23939
|
__typename?: 'HelpCenterQueryApi';
|
|
23619
23940
|
getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
23620
23941
|
helpCenterById?: Maybe<HelpCenterQueryResult>;
|
|
23621
23942
|
helpCenterFromProductName?: Maybe<HelpCenterQueryResult>;
|
|
23943
|
+
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
|
|
23622
23944
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
23623
23945
|
helpCenterTopicFromProductName?: Maybe<HelpCenterTopicResult>;
|
|
23624
23946
|
helpCenters?: Maybe<Array<Maybe<HelpCenterQueryResult>>>;
|
|
@@ -23635,6 +23957,9 @@ export declare type HelpCenterQueryApiHelpCenterByIdArgs = {
|
|
|
23635
23957
|
export declare type HelpCenterQueryApiHelpCenterFromProductNameArgs = {
|
|
23636
23958
|
productName: Scalars['String']['input'];
|
|
23637
23959
|
};
|
|
23960
|
+
export declare type HelpCenterQueryApiHelpCenterReportingByIdArgs = {
|
|
23961
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
23962
|
+
};
|
|
23638
23963
|
export declare type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
|
|
23639
23964
|
helpCenterAri: Scalars['ID']['input'];
|
|
23640
23965
|
topicId: Scalars['ID']['input'];
|
|
@@ -23651,6 +23976,20 @@ export declare type HelpCenterQueryApiMediaConfigArgs = {
|
|
|
23651
23976
|
helpCenterAri: Scalars['ID']['input'];
|
|
23652
23977
|
};
|
|
23653
23978
|
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
23979
|
+
export declare type HelpCenterReporting = {
|
|
23980
|
+
__typename?: 'HelpCenterReporting';
|
|
23981
|
+
helpCenterId: Scalars['ID']['output'];
|
|
23982
|
+
performanceIndicators?: Maybe<Array<HelpCenterReportingPerformanceIndicator>>;
|
|
23983
|
+
scheduledAt?: Maybe<Scalars['DateTime']['output']>;
|
|
23984
|
+
};
|
|
23985
|
+
export declare type HelpCenterReportingPerformanceIndicator = {
|
|
23986
|
+
__typename?: 'HelpCenterReportingPerformanceIndicator';
|
|
23987
|
+
currentValue: Scalars['String']['output'];
|
|
23988
|
+
name: Scalars['String']['output'];
|
|
23989
|
+
previousValue?: Maybe<Scalars['String']['output']>;
|
|
23990
|
+
timeWindow?: Maybe<Scalars['String']['output']>;
|
|
23991
|
+
};
|
|
23992
|
+
export declare type HelpCenterReportingResult = HelpCenterReporting | QueryError;
|
|
23654
23993
|
export declare type HelpCenterSuccessfullyCreatedTopicIds = {
|
|
23655
23994
|
__typename?: 'HelpCenterSuccessfullyCreatedTopicIds';
|
|
23656
23995
|
helpCenterId: Scalars['ID']['output'];
|
|
@@ -23701,6 +24040,17 @@ export declare type HelpCenterTopicItemInput = {
|
|
|
23701
24040
|
ari: Scalars['ID']['input'];
|
|
23702
24041
|
};
|
|
23703
24042
|
export declare type HelpCenterTopicResult = HelpCenterTopic | QueryError;
|
|
24043
|
+
export declare type HelpCenterTranslation = {
|
|
24044
|
+
__typename?: 'HelpCenterTranslation';
|
|
24045
|
+
locale: Scalars['String']['output'];
|
|
24046
|
+
localeDisplayName: Scalars['String']['output'];
|
|
24047
|
+
value: Scalars['String']['output'];
|
|
24048
|
+
};
|
|
24049
|
+
export declare type HelpCenterTranslationInput = {
|
|
24050
|
+
locale: Scalars['String']['input'];
|
|
24051
|
+
localeDisplayName: Scalars['String']['input'];
|
|
24052
|
+
value: Scalars['String']['input'];
|
|
24053
|
+
};
|
|
23704
24054
|
export declare enum HelpCenterType {
|
|
23705
24055
|
Advanced = "ADVANCED",
|
|
23706
24056
|
Basic = "BASIC",
|
|
@@ -25463,6 +25813,19 @@ export declare type JiraAppConfigStateEdge = {
|
|
|
25463
25813
|
cursor: Scalars['String']['output'];
|
|
25464
25814
|
node?: Maybe<JiraAppConfigState>;
|
|
25465
25815
|
};
|
|
25816
|
+
export declare type JiraAppNavigationItem = JiraNavigationItem & Node & {
|
|
25817
|
+
__typename?: 'JiraAppNavigationItem';
|
|
25818
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
25819
|
+
id: Scalars['ID']['output'];
|
|
25820
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
25821
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
25822
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
25823
|
+
};
|
|
25824
|
+
export declare type JiraAppUiModifications = {
|
|
25825
|
+
__typename?: 'JiraAppUiModifications';
|
|
25826
|
+
appEnvId: Scalars['String']['output'];
|
|
25827
|
+
uiModifications: Array<JiraUiModification>;
|
|
25828
|
+
};
|
|
25466
25829
|
export declare type JiraApplicationProperty = Node & {
|
|
25467
25830
|
__typename?: 'JiraApplicationProperty';
|
|
25468
25831
|
allowedValues?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -26422,6 +26785,7 @@ export declare type JiraComponentsField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
26422
26785
|
export declare type JiraComponentsFieldComponentsArgs = {
|
|
26423
26786
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
26424
26787
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
26788
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
26425
26789
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26426
26790
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
26427
26791
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -26811,6 +27175,15 @@ export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
|
26811
27175
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
26812
27176
|
success: Scalars['Boolean']['output'];
|
|
26813
27177
|
};
|
|
27178
|
+
export declare type JiraDeleteNavigationItemInput = {
|
|
27179
|
+
id: Scalars['ID']['input'];
|
|
27180
|
+
};
|
|
27181
|
+
export declare type JiraDeleteNavigationItemPayload = Payload & {
|
|
27182
|
+
__typename?: 'JiraDeleteNavigationItemPayload';
|
|
27183
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27184
|
+
navigationItem?: Maybe<Scalars['ID']['output']>;
|
|
27185
|
+
success: Scalars['Boolean']['output'];
|
|
27186
|
+
};
|
|
26814
27187
|
export declare type JiraDeleteProjectNotificationPreferencesInput = {
|
|
26815
27188
|
projectId: Scalars['ID']['input'];
|
|
26816
27189
|
};
|
|
@@ -28570,6 +28943,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
28570
28943
|
export declare type JiraIssueTransitionFieldLevelInput = {
|
|
28571
28944
|
JiraCascadingSelectField?: InputMaybe<Array<JiraUpdateCascadingSelectFieldInput>>;
|
|
28572
28945
|
JiraCheckboxesField?: InputMaybe<Array<JiraUpdateCheckboxesFieldInput>>;
|
|
28946
|
+
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
28573
28947
|
JiraDateField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
28574
28948
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
28575
28949
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
@@ -28651,6 +29025,7 @@ export declare type JiraIssueTypeField = JiraIssueField & JiraIssueFieldConfigur
|
|
|
28651
29025
|
export declare type JiraIssueTypeFieldIssueTypesArgs = {
|
|
28652
29026
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
28653
29027
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
29028
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
28654
29029
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28655
29030
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28656
29031
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -29562,6 +29937,7 @@ export declare type JiraMutation = {
|
|
|
29562
29937
|
deleteIssueNavigatorJQLHistory?: Maybe<JiraIssueNavigatorJqlHistoryDeletePayload>;
|
|
29563
29938
|
deleteJiraVersionApprover?: Maybe<JiraVersionDeleteApproverPayload>;
|
|
29564
29939
|
deleteJwmOverview?: Maybe<JiraWorkManagementGiraDeleteOverviewPayload>;
|
|
29940
|
+
deleteNavigationItem?: Maybe<JiraDeleteNavigationItemPayload>;
|
|
29565
29941
|
deleteProjectNotificationPreferences?: Maybe<JiraDeleteProjectNotificationPreferencesPayload>;
|
|
29566
29942
|
deleteProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
29567
29943
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
@@ -29569,11 +29945,13 @@ export declare type JiraMutation = {
|
|
|
29569
29945
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
29570
29946
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
29571
29947
|
jwmDeleteAttachment?: Maybe<JiraWorkManagementDeleteAttachmentPayload>;
|
|
29948
|
+
jwmUpdateActiveBackground?: Maybe<JiraWorkManagementUpdateActiveBackgroundPayload>;
|
|
29572
29949
|
linkIssueToVersionRelatedWork?: Maybe<JiraLinkIssueToVersionRelatedWorkPayload>;
|
|
29573
29950
|
linkIssuesToIncident?: Maybe<JiraLinkIssuesToIncidentMutationPayload>;
|
|
29574
29951
|
makeTransition?: Maybe<JiraIssueTransitionResponse>;
|
|
29575
29952
|
moveIssuesToFixVersion?: Maybe<JiraMoveIssuesToFixVersionPayload>;
|
|
29576
29953
|
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
29954
|
+
rankNavigationItem?: Maybe<JiraRankNavigationItemPayload>;
|
|
29577
29955
|
removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
|
|
29578
29956
|
removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
|
|
29579
29957
|
removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
|
|
@@ -29583,6 +29961,7 @@ export declare type JiraMutation = {
|
|
|
29583
29961
|
saveVersionDetailsCollapsedUis?: Maybe<JiraVersionDetailsCollapsedUisPayload>;
|
|
29584
29962
|
saveVersionIssueTableColumnHiddenState?: Maybe<JiraVersionIssueTableColumnHiddenStatePayload>;
|
|
29585
29963
|
setApplicationProperties?: Maybe<JiraSetApplicationPropertiesPayload>;
|
|
29964
|
+
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
29586
29965
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
29587
29966
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
29588
29967
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
@@ -29709,6 +30088,9 @@ export declare type JiraMutationDeleteJiraVersionApproverArgs = {
|
|
|
29709
30088
|
export declare type JiraMutationDeleteJwmOverviewArgs = {
|
|
29710
30089
|
input: JiraWorkManagementDeleteOverviewInput;
|
|
29711
30090
|
};
|
|
30091
|
+
export declare type JiraMutationDeleteNavigationItemArgs = {
|
|
30092
|
+
input: JiraDeleteNavigationItemInput;
|
|
30093
|
+
};
|
|
29712
30094
|
export declare type JiraMutationDeleteProjectNotificationPreferencesArgs = {
|
|
29713
30095
|
cloudId: Scalars['ID']['input'];
|
|
29714
30096
|
input: JiraDeleteProjectNotificationPreferencesInput;
|
|
@@ -29727,6 +30109,9 @@ export declare type JiraMutationInitializeProjectNotificationPreferencesArgs = {
|
|
|
29727
30109
|
export declare type JiraMutationJwmDeleteAttachmentArgs = {
|
|
29728
30110
|
input: JiraWorkManagementDeleteAttachmentInput;
|
|
29729
30111
|
};
|
|
30112
|
+
export declare type JiraMutationJwmUpdateActiveBackgroundArgs = {
|
|
30113
|
+
input: JiraWorkManagementUpdateBackgroundInput;
|
|
30114
|
+
};
|
|
29730
30115
|
export declare type JiraMutationLinkIssueToVersionRelatedWorkArgs = {
|
|
29731
30116
|
input: JiraLinkIssueToVersionRelatedWorkInput;
|
|
29732
30117
|
};
|
|
@@ -29742,6 +30127,9 @@ export declare type JiraMutationMoveIssuesToFixVersionArgs = {
|
|
|
29742
30127
|
export declare type JiraMutationRankIssuesArgs = {
|
|
29743
30128
|
rankInput: JiraRankMutationInput;
|
|
29744
30129
|
};
|
|
30130
|
+
export declare type JiraMutationRankNavigationItemArgs = {
|
|
30131
|
+
input: JiraRankNavigationItemInput;
|
|
30132
|
+
};
|
|
29745
30133
|
export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
|
|
29746
30134
|
input: JiraRemoveIssuesFromAllFixVersionsInput;
|
|
29747
30135
|
};
|
|
@@ -29771,6 +30159,9 @@ export declare type JiraMutationSetApplicationPropertiesArgs = {
|
|
|
29771
30159
|
cloudId: Scalars['ID']['input'];
|
|
29772
30160
|
input: Array<JiraSetApplicationPropertyInput>;
|
|
29773
30161
|
};
|
|
30162
|
+
export declare type JiraMutationSetDefaultNavigationItemArgs = {
|
|
30163
|
+
input: JiraSetDefaultNavigationItemInput;
|
|
30164
|
+
};
|
|
29774
30165
|
export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
29775
30166
|
input: JiraSetIsFavouriteInput;
|
|
29776
30167
|
};
|
|
@@ -29956,6 +30347,22 @@ export declare type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload
|
|
|
29956
30347
|
export declare type JiraNaturalLanguageToJqlInput = {
|
|
29957
30348
|
naturalLanguageInput: Scalars['String']['input'];
|
|
29958
30349
|
};
|
|
30350
|
+
export declare type JiraNavigationItem = {
|
|
30351
|
+
id: Scalars['ID']['output'];
|
|
30352
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
30353
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
30354
|
+
};
|
|
30355
|
+
export declare type JiraNavigationItemConnection = HasPageInfo & {
|
|
30356
|
+
__typename?: 'JiraNavigationItemConnection';
|
|
30357
|
+
edges?: Maybe<Array<Maybe<JiraNavigationItemEdge>>>;
|
|
30358
|
+
errors?: Maybe<Array<QueryError>>;
|
|
30359
|
+
pageInfo: PageInfo;
|
|
30360
|
+
};
|
|
30361
|
+
export declare type JiraNavigationItemEdge = {
|
|
30362
|
+
__typename?: 'JiraNavigationItemEdge';
|
|
30363
|
+
cursor: Scalars['String']['output'];
|
|
30364
|
+
node?: Maybe<JiraNavigationItem>;
|
|
30365
|
+
};
|
|
29959
30366
|
export declare type JiraNavigationUiStateUserProperty = JiraEntityProperty & Node & {
|
|
29960
30367
|
__typename?: 'JiraNavigationUIStateUserProperty';
|
|
29961
30368
|
id: Scalars['ID']['output'];
|
|
@@ -30430,6 +30837,7 @@ export declare type JiraPermission = {
|
|
|
30430
30837
|
export declare type JiraPermissionConfiguration = {
|
|
30431
30838
|
__typename?: 'JiraPermissionConfiguration';
|
|
30432
30839
|
documentation?: Maybe<JiraPermissionDocumentationExtension>;
|
|
30840
|
+
isEditable: Scalars['Boolean']['output'];
|
|
30433
30841
|
message?: Maybe<JiraPermissionMessageExtension>;
|
|
30434
30842
|
tag: JiraPermissionTagEnum;
|
|
30435
30843
|
};
|
|
@@ -30701,6 +31109,7 @@ export declare type JiraProject = Node & {
|
|
|
30701
31109
|
lead?: Maybe<User>;
|
|
30702
31110
|
leadId?: Maybe<Scalars['ID']['output']>;
|
|
30703
31111
|
linkedDocumentationContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
31112
|
+
linkedOperationsIncidentsByProject?: Maybe<GraphStoreSimplifiedJswProjectAssociatedIncidentConnection>;
|
|
30704
31113
|
linkedSecurityContainers?: Maybe<AriGraphRelationshipConnection>;
|
|
30705
31114
|
linkedSecurityVulnerabilitiesByProject?: Maybe<GraphJiraVulnerabilityConnection>;
|
|
30706
31115
|
name: Scalars['String']['output'];
|
|
@@ -30777,6 +31186,11 @@ export declare type JiraProjectLinkedDocumentationContainersArgs = {
|
|
|
30777
31186
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30778
31187
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
30779
31188
|
};
|
|
31189
|
+
export declare type JiraProjectLinkedOperationsIncidentsByProjectArgs = {
|
|
31190
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
31191
|
+
filter?: InputMaybe<GraphStoreJswProjectAssociatedIncidentFilterInput>;
|
|
31192
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31193
|
+
};
|
|
30780
31194
|
export declare type JiraProjectLinkedSecurityContainersArgs = {
|
|
30781
31195
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30782
31196
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -31172,6 +31586,7 @@ export declare type JiraProjectRoleActorRecommendationConnection = {
|
|
|
31172
31586
|
nodes?: Maybe<Array<Maybe<JiraProjectRoleActorRecommendation>>>;
|
|
31173
31587
|
pageInfo: PageInfo;
|
|
31174
31588
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
31589
|
+
totalDeletedUsersCount?: Maybe<Scalars['Int']['output']>;
|
|
31175
31590
|
};
|
|
31176
31591
|
export declare type JiraProjectRoleActorRecommendationEdge = {
|
|
31177
31592
|
__typename?: 'JiraProjectRoleActorRecommendationEdge';
|
|
@@ -31295,6 +31710,7 @@ export declare type JiraQuery = {
|
|
|
31295
31710
|
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
31296
31711
|
getGlobalPermissionsAndGrants?: Maybe<JiraGlobalPermissionGrantsResult>;
|
|
31297
31712
|
getIssueTransitionByIssueId?: Maybe<JiraIssueTransitionModal>;
|
|
31713
|
+
getIssueTransitionByIssueKey?: Maybe<JiraIssueTransitionModal>;
|
|
31298
31714
|
getPermissionSchemeGrants?: Maybe<JiraPermissionGrantConnection>;
|
|
31299
31715
|
getPermissionSchemeGrantsHierarchy?: Maybe<Array<JiraPermissionGrants>>;
|
|
31300
31716
|
getProjectsByPermissionScheme?: Maybe<JiraProjectConnection>;
|
|
@@ -31332,6 +31748,7 @@ export declare type JiraQuery = {
|
|
|
31332
31748
|
jsmProjectTeamType?: Maybe<JiraServiceManagementProjectTeamType>;
|
|
31333
31749
|
jsmWorkflowTemplates?: Maybe<JiraServiceManagementWorkflowTemplatesMetadataConnection>;
|
|
31334
31750
|
jsonUserProperty?: Maybe<JiraEntityPropertyJson>;
|
|
31751
|
+
jwmCustomBackgrounds?: Maybe<JiraWorkManagementCustomBackgroundConnection>;
|
|
31335
31752
|
jwmFilters?: Maybe<JiraWorkManagementFilterConnectionResult>;
|
|
31336
31753
|
jwmForm?: Maybe<JiraWorkManagementFormConfiguration>;
|
|
31337
31754
|
jwmLicensing?: Maybe<JiraWorkManagementLicensing>;
|
|
@@ -31340,6 +31757,7 @@ export declare type JiraQuery = {
|
|
|
31340
31757
|
jwmNavigationByProjectKey?: Maybe<JiraWorkManagementNavigation>;
|
|
31341
31758
|
jwmOverview?: Maybe<JiraWorkManagementGiraOverviewResult>;
|
|
31342
31759
|
jwmOverviews?: Maybe<JiraWorkManagementGiraOverviewConnection>;
|
|
31760
|
+
jwmSavedViewsByProject?: Maybe<JiraNavigationItemConnection>;
|
|
31343
31761
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
31344
31762
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
31345
31763
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -31369,7 +31787,7 @@ export declare type JiraQuery = {
|
|
|
31369
31787
|
stringUserProperty?: Maybe<JiraEntityPropertyString>;
|
|
31370
31788
|
systemFilters?: Maybe<JiraSystemFilterConnection>;
|
|
31371
31789
|
timeTrackingSettings?: Maybe<JiraGlobalTimeTrackingSettings>;
|
|
31372
|
-
uiModifications?: Maybe<Array<
|
|
31790
|
+
uiModifications?: Maybe<Array<JiraAppUiModifications>>;
|
|
31373
31791
|
userHomePage?: Maybe<JiraHomePage>;
|
|
31374
31792
|
userPreferences?: Maybe<JiraUserPreferences>;
|
|
31375
31793
|
userSegmentation?: Maybe<JiraUserSegmentation>;
|
|
@@ -31519,6 +31937,11 @@ export declare type JiraQueryGetIssueTransitionByIssueIdArgs = {
|
|
|
31519
31937
|
issueId: Scalars['ID']['input'];
|
|
31520
31938
|
transitionId: Scalars['String']['input'];
|
|
31521
31939
|
};
|
|
31940
|
+
export declare type JiraQueryGetIssueTransitionByIssueKeyArgs = {
|
|
31941
|
+
cloudId: Scalars['ID']['input'];
|
|
31942
|
+
issueKey: Scalars['String']['input'];
|
|
31943
|
+
transitionId: Scalars['String']['input'];
|
|
31944
|
+
};
|
|
31522
31945
|
export declare type JiraQueryGetPermissionSchemeGrantsArgs = {
|
|
31523
31946
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31524
31947
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31681,6 +32104,13 @@ export declare type JiraQueryJsonUserPropertyArgs = {
|
|
|
31681
32104
|
cloudId: Scalars['ID']['input'];
|
|
31682
32105
|
propertyKey: Scalars['String']['input'];
|
|
31683
32106
|
};
|
|
32107
|
+
export declare type JiraQueryJwmCustomBackgroundsArgs = {
|
|
32108
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32109
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
32110
|
+
cloudId: Scalars['ID']['input'];
|
|
32111
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32112
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
32113
|
+
};
|
|
31684
32114
|
export declare type JiraQueryJwmFiltersArgs = {
|
|
31685
32115
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31686
32116
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31714,6 +32144,12 @@ export declare type JiraQueryJwmOverviewsArgs = {
|
|
|
31714
32144
|
cloudId: Scalars['ID']['input'];
|
|
31715
32145
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31716
32146
|
};
|
|
32147
|
+
export declare type JiraQueryJwmSavedViewsByProjectArgs = {
|
|
32148
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32149
|
+
cloudId: Scalars['ID']['input'];
|
|
32150
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32151
|
+
projectIdOrKey: Scalars['String']['input'];
|
|
32152
|
+
};
|
|
31717
32153
|
export declare type JiraQueryJwmViewItemsArgs = {
|
|
31718
32154
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31719
32155
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31786,6 +32222,7 @@ export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
|
31786
32222
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31787
32223
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31788
32224
|
statuses?: InputMaybe<Array<InputMaybe<JiraResourceUsageRecommendationStatus>>>;
|
|
32225
|
+
userStatus?: InputMaybe<JiraProjectRoleActorUserStatus>;
|
|
31789
32226
|
};
|
|
31790
32227
|
export declare type JiraQueryRequestTypeTemplateByIdArgs = {
|
|
31791
32228
|
cloudId: Scalars['ID']['input'];
|
|
@@ -31939,6 +32376,21 @@ export declare type JiraRankMutationPayload = Payload & {
|
|
|
31939
32376
|
errors?: Maybe<Array<MutationError>>;
|
|
31940
32377
|
success: Scalars['Boolean']['output'];
|
|
31941
32378
|
};
|
|
32379
|
+
export declare type JiraRankNavigationItemInput = {
|
|
32380
|
+
afterId?: InputMaybe<Scalars['ID']['input']>;
|
|
32381
|
+
beforeId?: InputMaybe<Scalars['ID']['input']>;
|
|
32382
|
+
id: Scalars['ID']['input'];
|
|
32383
|
+
};
|
|
32384
|
+
export declare type JiraRankNavigationItemPayload = Payload & {
|
|
32385
|
+
__typename?: 'JiraRankNavigationItemPayload';
|
|
32386
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32387
|
+
navigationItems?: Maybe<JiraNavigationItemConnection>;
|
|
32388
|
+
success: Scalars['Boolean']['output'];
|
|
32389
|
+
};
|
|
32390
|
+
export declare type JiraRankNavigationItemPayloadNavigationItemsArgs = {
|
|
32391
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32392
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32393
|
+
};
|
|
31942
32394
|
export declare enum JiraRecommendationCategory {
|
|
31943
32395
|
CustomField = "CUSTOM_FIELD",
|
|
31944
32396
|
IssueArchival = "ISSUE_ARCHIVAL",
|
|
@@ -33247,6 +33699,15 @@ export declare type JiraSetApplicationPropertyInput = {
|
|
|
33247
33699
|
key: Scalars['String']['input'];
|
|
33248
33700
|
value: Scalars['String']['input'];
|
|
33249
33701
|
};
|
|
33702
|
+
export declare type JiraSetDefaultNavigationItemInput = {
|
|
33703
|
+
id: Scalars['ID']['input'];
|
|
33704
|
+
};
|
|
33705
|
+
export declare type JiraSetDefaultNavigationItemPayload = Payload & {
|
|
33706
|
+
__typename?: 'JiraSetDefaultNavigationItemPayload';
|
|
33707
|
+
errors?: Maybe<Array<MutationError>>;
|
|
33708
|
+
newDefault?: Maybe<JiraNavigationItem>;
|
|
33709
|
+
success: Scalars['Boolean']['output'];
|
|
33710
|
+
};
|
|
33250
33711
|
export declare type JiraSetIsFavouriteInput = {
|
|
33251
33712
|
beforeEntityId?: InputMaybe<Scalars['ID']['input']>;
|
|
33252
33713
|
entityId: Scalars['ID']['input'];
|
|
@@ -33373,6 +33834,13 @@ export declare type JiraShortcutDataInput = {
|
|
|
33373
33834
|
name: Scalars['String']['input'];
|
|
33374
33835
|
url: Scalars['String']['input'];
|
|
33375
33836
|
};
|
|
33837
|
+
export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
|
|
33838
|
+
__typename?: 'JiraShortcutNavigationItem';
|
|
33839
|
+
id: Scalars['ID']['output'];
|
|
33840
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
33841
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
33842
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
33843
|
+
};
|
|
33376
33844
|
export declare type JiraSimilarIssues = {
|
|
33377
33845
|
__typename?: 'JiraSimilarIssues';
|
|
33378
33846
|
featureEnabled: Scalars['Boolean']['output'];
|
|
@@ -34007,7 +34475,6 @@ export declare type JiraUiExposedError = {
|
|
|
34007
34475
|
};
|
|
34008
34476
|
export declare type JiraUiModification = {
|
|
34009
34477
|
__typename?: 'JiraUiModification';
|
|
34010
|
-
appEnvId: Scalars['String']['output'];
|
|
34011
34478
|
data?: Maybe<Scalars['String']['output']>;
|
|
34012
34479
|
id: Scalars['ID']['output'];
|
|
34013
34480
|
};
|
|
@@ -35055,11 +35522,30 @@ export declare type JiraWorkLogEdge = {
|
|
|
35055
35522
|
cursor: Scalars['String']['output'];
|
|
35056
35523
|
node?: Maybe<JiraWorklog>;
|
|
35057
35524
|
};
|
|
35525
|
+
export declare type JiraWorkManagementAttachmentBackground = JiraWorkManagementBackground & {
|
|
35526
|
+
__typename?: 'JiraWorkManagementAttachmentBackground';
|
|
35527
|
+
attachment?: Maybe<JiraAttachment>;
|
|
35528
|
+
entityId?: Maybe<Scalars['ID']['output']>;
|
|
35529
|
+
};
|
|
35530
|
+
export declare type JiraWorkManagementBackground = {
|
|
35531
|
+
entityId?: Maybe<Scalars['ID']['output']>;
|
|
35532
|
+
};
|
|
35533
|
+
export declare enum JiraWorkManagementBackgroundType {
|
|
35534
|
+
Attachment = "ATTACHMENT",
|
|
35535
|
+
Color = "COLOR",
|
|
35536
|
+
Custom = "CUSTOM",
|
|
35537
|
+
Gradient = "GRADIENT"
|
|
35538
|
+
}
|
|
35058
35539
|
export declare type JiraWorkManagementChildSummary = {
|
|
35059
35540
|
__typename?: 'JiraWorkManagementChildSummary';
|
|
35060
35541
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
35061
35542
|
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
35062
35543
|
};
|
|
35544
|
+
export declare type JiraWorkManagementColorBackground = JiraWorkManagementBackground & {
|
|
35545
|
+
__typename?: 'JiraWorkManagementColorBackground';
|
|
35546
|
+
colorValue?: Maybe<Scalars['String']['output']>;
|
|
35547
|
+
entityId?: Maybe<Scalars['ID']['output']>;
|
|
35548
|
+
};
|
|
35063
35549
|
export declare type JiraWorkManagementCommentSummary = {
|
|
35064
35550
|
__typename?: 'JiraWorkManagementCommentSummary';
|
|
35065
35551
|
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
@@ -35099,6 +35585,28 @@ export declare type JiraWorkManagementCreateOverviewPayload = Payload & {
|
|
|
35099
35585
|
jwmOverview?: Maybe<JiraWorkManagementOverview>;
|
|
35100
35586
|
success: Scalars['Boolean']['output'];
|
|
35101
35587
|
};
|
|
35588
|
+
export declare type JiraWorkManagementCustomBackground = {
|
|
35589
|
+
__typename?: 'JiraWorkManagementCustomBackground';
|
|
35590
|
+
activeCount?: Maybe<Scalars['Long']['output']>;
|
|
35591
|
+
altText?: Maybe<Scalars['String']['output']>;
|
|
35592
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
35593
|
+
mediaApiFileId?: Maybe<Scalars['String']['output']>;
|
|
35594
|
+
mediaReadToken?: Maybe<Scalars['String']['output']>;
|
|
35595
|
+
};
|
|
35596
|
+
export declare type JiraWorkManagementCustomBackgroundMediaReadTokenArgs = {
|
|
35597
|
+
durationInSeconds: Scalars['Int']['input'];
|
|
35598
|
+
};
|
|
35599
|
+
export declare type JiraWorkManagementCustomBackgroundConnection = {
|
|
35600
|
+
__typename?: 'JiraWorkManagementCustomBackgroundConnection';
|
|
35601
|
+
edges?: Maybe<Array<Maybe<JiraWorkManagementCustomBackgroundEdge>>>;
|
|
35602
|
+
pageInfo?: Maybe<PageInfo>;
|
|
35603
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
35604
|
+
};
|
|
35605
|
+
export declare type JiraWorkManagementCustomBackgroundEdge = {
|
|
35606
|
+
__typename?: 'JiraWorkManagementCustomBackgroundEdge';
|
|
35607
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
35608
|
+
node?: Maybe<JiraWorkManagementCustomBackground>;
|
|
35609
|
+
};
|
|
35102
35610
|
export declare type JiraWorkManagementDeleteAttachmentInput = {
|
|
35103
35611
|
id: Scalars['ID']['input'];
|
|
35104
35612
|
};
|
|
@@ -35212,10 +35720,20 @@ export declare type JiraWorkManagementGiraUpdateOverviewPayload = Payload & {
|
|
|
35212
35720
|
jwmOverview?: Maybe<JiraWorkManagementGiraOverview>;
|
|
35213
35721
|
success: Scalars['Boolean']['output'];
|
|
35214
35722
|
};
|
|
35723
|
+
export declare type JiraWorkManagementGradientBackground = JiraWorkManagementBackground & {
|
|
35724
|
+
__typename?: 'JiraWorkManagementGradientBackground';
|
|
35725
|
+
entityId?: Maybe<Scalars['ID']['output']>;
|
|
35726
|
+
gradientValue?: Maybe<Scalars['String']['output']>;
|
|
35727
|
+
};
|
|
35215
35728
|
export declare type JiraWorkManagementLicensing = {
|
|
35216
35729
|
__typename?: 'JiraWorkManagementLicensing';
|
|
35217
35730
|
currentUserSeatEdition?: Maybe<JiraWorkManagementUserLicenseSeatEdition>;
|
|
35218
35731
|
};
|
|
35732
|
+
export declare type JiraWorkManagementMediaBackground = JiraWorkManagementBackground & {
|
|
35733
|
+
__typename?: 'JiraWorkManagementMediaBackground';
|
|
35734
|
+
customBackground?: Maybe<JiraWorkManagementCustomBackground>;
|
|
35735
|
+
entityId?: Maybe<Scalars['ID']['output']>;
|
|
35736
|
+
};
|
|
35219
35737
|
export declare type JiraWorkManagementNavigation = {
|
|
35220
35738
|
__typename?: 'JiraWorkManagementNavigation';
|
|
35221
35739
|
favoriteProjects?: Maybe<JiraProjectConnection>;
|
|
@@ -35298,6 +35816,24 @@ export declare type JiraWorkManagementRankInput = {
|
|
|
35298
35816
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
35299
35817
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
35300
35818
|
};
|
|
35819
|
+
export declare type JiraWorkManagementSavedView = JiraNavigationItem & Node & {
|
|
35820
|
+
__typename?: 'JiraWorkManagementSavedView';
|
|
35821
|
+
id: Scalars['ID']['output'];
|
|
35822
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
35823
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
35824
|
+
type: Scalars['String']['output'];
|
|
35825
|
+
};
|
|
35826
|
+
export declare type JiraWorkManagementUpdateActiveBackgroundPayload = Payload & {
|
|
35827
|
+
__typename?: 'JiraWorkManagementUpdateActiveBackgroundPayload';
|
|
35828
|
+
background?: Maybe<JiraWorkManagementBackground>;
|
|
35829
|
+
errors?: Maybe<Array<MutationError>>;
|
|
35830
|
+
success: Scalars['Boolean']['output'];
|
|
35831
|
+
};
|
|
35832
|
+
export declare type JiraWorkManagementUpdateBackgroundInput = {
|
|
35833
|
+
backgroundType: JiraWorkManagementBackgroundType;
|
|
35834
|
+
backgroundValue: Scalars['String']['input'];
|
|
35835
|
+
entityId: Scalars['ID']['input'];
|
|
35836
|
+
};
|
|
35301
35837
|
export declare type JiraWorkManagementUpdateFilterInput = {
|
|
35302
35838
|
id: Scalars['ID']['input'];
|
|
35303
35839
|
name: Scalars['String']['input'];
|
|
@@ -35832,6 +36368,7 @@ export declare type MarketplaceStoreAlgoliaQueryFilter = {
|
|
|
35832
36368
|
export declare type MarketplaceStoreAlgoliaQueryMetadata = {
|
|
35833
36369
|
__typename?: 'MarketplaceStoreAlgoliaQueryMetadata';
|
|
35834
36370
|
filter: MarketplaceStoreAlgoliaQueryFilter;
|
|
36371
|
+
searchIndex: Scalars['String']['output'];
|
|
35835
36372
|
sort?: Maybe<MarketplaceStoreAlgoliaQuerySort>;
|
|
35836
36373
|
};
|
|
35837
36374
|
export declare type MarketplaceStoreAlgoliaQuerySort = {
|
|
@@ -35849,7 +36386,7 @@ export declare type MarketplaceStoreHomePageHighlightedSection = MarketplaceStor
|
|
|
35849
36386
|
__typename?: 'MarketplaceStoreHomePageHighlightedSection';
|
|
35850
36387
|
algoliaQueryMetadata: MarketplaceStoreAlgoliaQueryMetadata;
|
|
35851
36388
|
description: Scalars['String']['output'];
|
|
35852
|
-
|
|
36389
|
+
highlightVariation: MarketplaceStoreHomePageHighlightedSectionVariation;
|
|
35853
36390
|
id: Scalars['ID']['output'];
|
|
35854
36391
|
tagline: Scalars['String']['output'];
|
|
35855
36392
|
tilesVariation: MarketplaceStoreTilesVariation;
|
|
@@ -43303,9 +43840,9 @@ export declare type TownsquareCommentEdge = {
|
|
|
43303
43840
|
node?: Maybe<TownsquareComment>;
|
|
43304
43841
|
};
|
|
43305
43842
|
export declare type TownsquareCreateGoalInput = {
|
|
43843
|
+
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
43306
43844
|
name: Scalars['String']['input'];
|
|
43307
43845
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
43308
|
-
workspaceId: Scalars['String']['input'];
|
|
43309
43846
|
};
|
|
43310
43847
|
export declare type TownsquareCreateGoalPayload = {
|
|
43311
43848
|
__typename?: 'TownsquareCreateGoalPayload';
|
|
@@ -43326,6 +43863,21 @@ export declare type TownsquareCreateRelationshipsPayload = {
|
|
|
43326
43863
|
relationships?: Maybe<Array<TownsquareRelationship>>;
|
|
43327
43864
|
success: Scalars['Boolean']['output'];
|
|
43328
43865
|
};
|
|
43866
|
+
export declare type TownsquareDeleteRelationshipsInput = {
|
|
43867
|
+
relationships: Array<TownsquareRelationshipInput>;
|
|
43868
|
+
};
|
|
43869
|
+
export declare type TownsquareDeleteRelationshipsMutationErrorExtension = MutationErrorExtension & {
|
|
43870
|
+
__typename?: 'TownsquareDeleteRelationshipsMutationErrorExtension';
|
|
43871
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
43872
|
+
relationship: TownsquareRelationship;
|
|
43873
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
43874
|
+
};
|
|
43875
|
+
export declare type TownsquareDeleteRelationshipsPayload = {
|
|
43876
|
+
__typename?: 'TownsquareDeleteRelationshipsPayload';
|
|
43877
|
+
errors?: Maybe<Array<MutationError>>;
|
|
43878
|
+
relationships?: Maybe<Array<TownsquareRelationship>>;
|
|
43879
|
+
success: Scalars['Boolean']['output'];
|
|
43880
|
+
};
|
|
43329
43881
|
export declare type TownsquareGoal = Node & {
|
|
43330
43882
|
__typename?: 'TownsquareGoal';
|
|
43331
43883
|
archived: Scalars['Boolean']['output'];
|
|
@@ -43399,6 +43951,7 @@ export declare type TownsquareMutationApi = {
|
|
|
43399
43951
|
__typename?: 'TownsquareMutationApi';
|
|
43400
43952
|
createGoal?: Maybe<TownsquareCreateGoalPayload>;
|
|
43401
43953
|
createRelationships?: Maybe<TownsquareCreateRelationshipsPayload>;
|
|
43954
|
+
deleteRelationships?: Maybe<TownsquareDeleteRelationshipsPayload>;
|
|
43402
43955
|
};
|
|
43403
43956
|
export declare type TownsquareMutationApiCreateGoalArgs = {
|
|
43404
43957
|
input: TownsquareCreateGoalInput;
|
|
@@ -43406,6 +43959,9 @@ export declare type TownsquareMutationApiCreateGoalArgs = {
|
|
|
43406
43959
|
export declare type TownsquareMutationApiCreateRelationshipsArgs = {
|
|
43407
43960
|
input: TownsquareCreateRelationshipsInput;
|
|
43408
43961
|
};
|
|
43962
|
+
export declare type TownsquareMutationApiDeleteRelationshipsArgs = {
|
|
43963
|
+
input: TownsquareDeleteRelationshipsInput;
|
|
43964
|
+
};
|
|
43409
43965
|
export declare type TownsquareProject = Node & {
|
|
43410
43966
|
__typename?: 'TownsquareProject';
|
|
43411
43967
|
archived: Scalars['Boolean']['output'];
|
|
@@ -45675,7 +46231,6 @@ export declare type VirtualAgentIntentStatisticsProjection = {
|
|
|
45675
46231
|
};
|
|
45676
46232
|
export declare type VirtualAgentIntentTemplate = Node & {
|
|
45677
46233
|
__typename?: 'VirtualAgentIntentTemplate';
|
|
45678
|
-
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
45679
46234
|
description?: Maybe<Scalars['String']['output']>;
|
|
45680
46235
|
id: Scalars['ID']['output'];
|
|
45681
46236
|
name: Scalars['String']['output'];
|
|
@@ -45696,6 +46251,8 @@ export declare enum VirtualAgentIntentTemplateType {
|
|
|
45696
46251
|
export declare type VirtualAgentIntentTemplatesConnection = {
|
|
45697
46252
|
__typename?: 'VirtualAgentIntentTemplatesConnection';
|
|
45698
46253
|
edges?: Maybe<Array<VirtualAgentIntentTemplateEdge>>;
|
|
46254
|
+
hasDiscoveredTemplates?: Maybe<Scalars['Boolean']['output']>;
|
|
46255
|
+
lastDiscoveredTemplatesGenerationTime?: Maybe<Scalars['DateTime']['output']>;
|
|
45699
46256
|
nodes?: Maybe<Array<VirtualAgentIntentTemplate>>;
|
|
45700
46257
|
pageInfo: PageInfo;
|
|
45701
46258
|
};
|