@forge/cli-shared 7.0.0-next.1 → 7.0.0-next.10
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 +64 -0
- package/out/app-logs/graphql-client.d.ts.map +1 -1
- package/out/app-logs/graphql-client.js +3 -1
- package/out/app-logs/view-logs.d.ts +7 -1
- package/out/app-logs/view-logs.d.ts.map +1 -1
- package/out/app-logs/view-logs.js +10 -2
- package/out/graphql/graphql-types.d.ts +986 -34
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +79 -18
- package/out/service/statsig-service.d.ts +1 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +1 -1
- package/out/ui/text.d.ts +8 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +8 -1
- package/package.json +2 -2
|
@@ -1070,6 +1070,12 @@ export declare type AgentStudioUpdateCustomActionInput = {
|
|
|
1070
1070
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
1071
1071
|
name: Scalars['String']['input'];
|
|
1072
1072
|
};
|
|
1073
|
+
export declare type AgentStudioUpdateCustomActionMappingsPayload = Payload & {
|
|
1074
|
+
__typename?: 'AgentStudioUpdateCustomActionMappingsPayload';
|
|
1075
|
+
customActionList?: Maybe<Array<AgentStudioCustomAction>>;
|
|
1076
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1077
|
+
success: Scalars['Boolean']['output'];
|
|
1078
|
+
};
|
|
1073
1079
|
export declare type AgentStudioUpdateCustomActionPayload = Payload & {
|
|
1074
1080
|
__typename?: 'AgentStudioUpdateCustomActionPayload';
|
|
1075
1081
|
customAction?: Maybe<AgentStudioCustomAction>;
|
|
@@ -3894,8 +3900,13 @@ export declare type CcpEntitlementTemplate = {
|
|
|
3894
3900
|
data?: Maybe<Scalars['String']['output']>;
|
|
3895
3901
|
key?: Maybe<Scalars['ID']['output']>;
|
|
3896
3902
|
provisionedBy?: Maybe<Scalars['String']['output']>;
|
|
3903
|
+
userUsageInclusions?: Maybe<CcpEntitlementTemplateUserUsageInclusions>;
|
|
3897
3904
|
version?: Maybe<Scalars['Int']['output']>;
|
|
3898
3905
|
};
|
|
3906
|
+
export declare type CcpEntitlementTemplateUserUsageInclusions = {
|
|
3907
|
+
__typename?: 'CcpEntitlementTemplateUserUsageInclusions';
|
|
3908
|
+
references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
3909
|
+
};
|
|
3899
3910
|
export declare type CcpEntitlementUsage = {
|
|
3900
3911
|
__typename?: 'CcpEntitlementUsage';
|
|
3901
3912
|
offeringChargeElement?: Maybe<CcpOfferingChargeElement>;
|
|
@@ -3973,6 +3984,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
3973
3984
|
derivedFromOffering?: Maybe<CcpDerivedFromOffering>;
|
|
3974
3985
|
derivedOfferings?: Maybe<Array<Maybe<CcpDerivedOffering>>>;
|
|
3975
3986
|
effectiveUncollectibleAction?: Maybe<CcpEffectiveUncollectibleAction>;
|
|
3987
|
+
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
3976
3988
|
entitlementTemplateId?: Maybe<Scalars['ID']['output']>;
|
|
3977
3989
|
expiryDate?: Maybe<Scalars['Float']['output']>;
|
|
3978
3990
|
hostingType?: Maybe<CcpOfferingHostingType>;
|
|
@@ -4096,6 +4108,21 @@ export declare type CcpOrderDefaultsInput = {
|
|
|
4096
4108
|
currentEntitlementId?: InputMaybe<Scalars['String']['input']>;
|
|
4097
4109
|
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
4098
4110
|
};
|
|
4111
|
+
export declare type CcpPostalAddress = {
|
|
4112
|
+
__typename?: 'CcpPostalAddress';
|
|
4113
|
+
city?: Maybe<Scalars['String']['output']>;
|
|
4114
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
4115
|
+
line1?: Maybe<Scalars['String']['output']>;
|
|
4116
|
+
line2?: Maybe<Scalars['String']['output']>;
|
|
4117
|
+
phone?: Maybe<Scalars['String']['output']>;
|
|
4118
|
+
postcode?: Maybe<Scalars['String']['output']>;
|
|
4119
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
4120
|
+
};
|
|
4121
|
+
export declare type CcpPriceEligibilityMapEntry = {
|
|
4122
|
+
__typename?: 'CcpPriceEligibilityMapEntry';
|
|
4123
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
4124
|
+
value?: Maybe<Scalars['Boolean']['output']>;
|
|
4125
|
+
};
|
|
4099
4126
|
export declare type CcpPricingPlan = CommercePricingPlan & Node & {
|
|
4100
4127
|
__typename?: 'CcpPricingPlan';
|
|
4101
4128
|
activatedWithReason?: Maybe<CcpActivationReason>;
|
|
@@ -4199,6 +4226,7 @@ export declare type CcpQueryApi = {
|
|
|
4199
4226
|
pricingPlans?: Maybe<Array<Maybe<CcpPricingPlan>>>;
|
|
4200
4227
|
product?: Maybe<CcpProduct>;
|
|
4201
4228
|
quotes?: Maybe<Array<Maybe<CcpQuote>>>;
|
|
4229
|
+
shipToParties?: Maybe<Array<Maybe<CcpShipToParty>>>;
|
|
4202
4230
|
transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
4203
4231
|
transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
|
|
4204
4232
|
};
|
|
@@ -4226,6 +4254,9 @@ export declare type CcpQueryApiProductArgs = {
|
|
|
4226
4254
|
export declare type CcpQueryApiQuotesArgs = {
|
|
4227
4255
|
ids: Array<Scalars['ID']['input']>;
|
|
4228
4256
|
};
|
|
4257
|
+
export declare type CcpQueryApiShipToPartiesArgs = {
|
|
4258
|
+
ids: Array<Scalars['ID']['input']>;
|
|
4259
|
+
};
|
|
4229
4260
|
export declare type CcpQueryApiTransactionAccountArgs = {
|
|
4230
4261
|
id: Scalars['ID']['input'];
|
|
4231
4262
|
};
|
|
@@ -4562,6 +4593,20 @@ export declare type CcpRootExperienceCapabilities = {
|
|
|
4562
4593
|
export declare type CcpRootExperienceCapabilitiesCreateEntitlementArgs = {
|
|
4563
4594
|
input: CcpCreateEntitlementInput;
|
|
4564
4595
|
};
|
|
4596
|
+
export declare type CcpShipToParty = Node & {
|
|
4597
|
+
__typename?: 'CcpShipToParty';
|
|
4598
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
4599
|
+
id: Scalars['ID']['output'];
|
|
4600
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
4601
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4602
|
+
postalAddress?: Maybe<CcpPostalAddress>;
|
|
4603
|
+
priceEligibility?: Maybe<Array<Maybe<CcpPriceEligibilityMapEntry>>>;
|
|
4604
|
+
taxId?: Maybe<Scalars['String']['output']>;
|
|
4605
|
+
taxIds?: Maybe<Array<Maybe<CcpTaxId>>>;
|
|
4606
|
+
transactionAccount?: Maybe<CcpTransactionAccountPartition>;
|
|
4607
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
4608
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
4609
|
+
};
|
|
4565
4610
|
export declare type CcpSubscription = CommerceSubscription & {
|
|
4566
4611
|
__typename?: 'CcpSubscription';
|
|
4567
4612
|
accountDetails?: Maybe<CcpAccountDetails>;
|
|
@@ -4608,6 +4653,13 @@ export declare enum CcpSupportedBillingSystems {
|
|
|
4608
4653
|
Hams = "HAMS",
|
|
4609
4654
|
Opsgenie = "OPSGENIE"
|
|
4610
4655
|
}
|
|
4656
|
+
export declare type CcpTaxId = {
|
|
4657
|
+
__typename?: 'CcpTaxId';
|
|
4658
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
4659
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
4660
|
+
taxIdDescription?: Maybe<Scalars['String']['output']>;
|
|
4661
|
+
taxIdLabel?: Maybe<Scalars['String']['output']>;
|
|
4662
|
+
};
|
|
4611
4663
|
export declare enum CcpTiersMode {
|
|
4612
4664
|
Graduated = "GRADUATED",
|
|
4613
4665
|
Volume = "VOLUME"
|
|
@@ -4633,6 +4685,11 @@ export declare type CcpTransactionAccountExperienceCapabilities = CommerceTransa
|
|
|
4633
4685
|
addPaymentMethodV2?: Maybe<CcpAddPaymentMethodExperienceCapability>;
|
|
4634
4686
|
multipleProductUpgrades?: Maybe<CcpMultipleProductUpgradesExperienceCapability>;
|
|
4635
4687
|
};
|
|
4688
|
+
export declare type CcpTransactionAccountPartition = {
|
|
4689
|
+
__typename?: 'CcpTransactionAccountPartition';
|
|
4690
|
+
key?: Maybe<Scalars['ID']['output']>;
|
|
4691
|
+
partitionKey?: Maybe<Scalars['String']['output']>;
|
|
4692
|
+
};
|
|
4636
4693
|
export declare enum CcpTransactionAccountType {
|
|
4637
4694
|
Direct = "DIRECT",
|
|
4638
4695
|
Partner = "PARTNER",
|
|
@@ -5419,17 +5476,36 @@ export declare enum CompassBuildEventState {
|
|
|
5419
5476
|
}
|
|
5420
5477
|
export declare type CompassCampaign = Node & {
|
|
5421
5478
|
__typename?: 'CompassCampaign';
|
|
5479
|
+
appliedToComponents?: Maybe<CompassGoalAppliedToComponentsConnection>;
|
|
5422
5480
|
createdByUser?: Maybe<User>;
|
|
5481
|
+
criteriaScoreStatisticsHistories?: Maybe<CompassScorecardCriteriaScoreStatisticsHistoryConnection>;
|
|
5423
5482
|
description?: Maybe<Scalars['String']['output']>;
|
|
5424
5483
|
dueDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5484
|
+
filters?: Maybe<CompassGoalFilters>;
|
|
5425
5485
|
goal?: Maybe<TownsquareGoal>;
|
|
5426
5486
|
goalId?: Maybe<Scalars['ID']['output']>;
|
|
5427
5487
|
id: Scalars['ID']['output'];
|
|
5428
5488
|
name?: Maybe<Scalars['String']['output']>;
|
|
5429
5489
|
scorecard?: Maybe<CompassScorecard>;
|
|
5490
|
+
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
5430
5491
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
5431
5492
|
status?: Maybe<Scalars['String']['output']>;
|
|
5432
5493
|
};
|
|
5494
|
+
export declare type CompassCampaignAppliedToComponentsArgs = {
|
|
5495
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5496
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5497
|
+
query?: InputMaybe<CompassGoalAppliedToComponentsQuery>;
|
|
5498
|
+
};
|
|
5499
|
+
export declare type CompassCampaignCriteriaScoreStatisticsHistoriesArgs = {
|
|
5500
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5501
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5502
|
+
query?: InputMaybe<CompassGoalCriteriaScoreStatisticsHistoryQuery>;
|
|
5503
|
+
};
|
|
5504
|
+
export declare type CompassCampaignScorecardScoreStatisticsHistoriesArgs = {
|
|
5505
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
5506
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5507
|
+
query?: InputMaybe<CompassGoalScoreStatisticsHistoryQuery>;
|
|
5508
|
+
};
|
|
5433
5509
|
export declare type CompassCampaignConnection = {
|
|
5434
5510
|
__typename?: 'CompassCampaignConnection';
|
|
5435
5511
|
edges?: Maybe<Array<CompassCampaignEdge>>;
|
|
@@ -5478,6 +5554,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
5478
5554
|
createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
|
|
5479
5555
|
createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
|
|
5480
5556
|
createComponentScorecardJiraIssue?: Maybe<CompassCreateComponentScorecardJiraIssuePayload>;
|
|
5557
|
+
createComponentScorecardWorkItem?: Maybe<CompassCreateComponentScorecardWorkItemPayload>;
|
|
5481
5558
|
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
5482
5559
|
createComponentType?: Maybe<CreateCompassComponentTypePayload>;
|
|
5483
5560
|
createCriterionExemption?: Maybe<CompassCreateCriterionExemptionPayload>;
|
|
@@ -5536,6 +5613,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
5536
5613
|
updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
|
|
5537
5614
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
5538
5615
|
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
5616
|
+
updateComponentScorecardWorkItem?: Maybe<CompassUpdateComponentScorecardWorkItemPayload>;
|
|
5539
5617
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
5540
5618
|
updateComponentTypeMetadata?: Maybe<UpdateCompassComponentTypeMetadataPayload>;
|
|
5541
5619
|
updateComponents?: Maybe<BulkUpdateCompassComponentsPayload>;
|
|
@@ -5609,6 +5687,10 @@ export declare type CompassCatalogMutationApiCreateComponentLinkArgs = {
|
|
|
5609
5687
|
export declare type CompassCatalogMutationApiCreateComponentScorecardJiraIssueArgs = {
|
|
5610
5688
|
input: CompassCreateComponentScorecardJiraIssueInput;
|
|
5611
5689
|
};
|
|
5690
|
+
export declare type CompassCatalogMutationApiCreateComponentScorecardWorkItemArgs = {
|
|
5691
|
+
cloudId: Scalars['ID']['input'];
|
|
5692
|
+
input: CompassCreateComponentScorecardWorkItemInput;
|
|
5693
|
+
};
|
|
5612
5694
|
export declare type CompassCatalogMutationApiCreateComponentSubscriptionArgs = {
|
|
5613
5695
|
input: CompassCreateComponentSubscriptionInput;
|
|
5614
5696
|
};
|
|
@@ -5793,6 +5875,10 @@ export declare type CompassCatalogMutationApiUpdateComponentLinkArgs = {
|
|
|
5793
5875
|
export declare type CompassCatalogMutationApiUpdateComponentScorecardJiraIssueArgs = {
|
|
5794
5876
|
input: CompassUpdateComponentScorecardJiraIssueInput;
|
|
5795
5877
|
};
|
|
5878
|
+
export declare type CompassCatalogMutationApiUpdateComponentScorecardWorkItemArgs = {
|
|
5879
|
+
cloudId: Scalars['ID']['input'];
|
|
5880
|
+
input: CompassUpdateComponentScorecardWorkItemInput;
|
|
5881
|
+
};
|
|
5796
5882
|
export declare type CompassCatalogMutationApiUpdateComponentTypeArgs = {
|
|
5797
5883
|
input: UpdateCompassComponentTypeInput;
|
|
5798
5884
|
};
|
|
@@ -5875,6 +5961,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
5875
5961
|
starredComponents?: Maybe<CompassStarredComponentsResult>;
|
|
5876
5962
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
5877
5963
|
teamData?: Maybe<CompassTeamDataResult>;
|
|
5964
|
+
topScorecards?: Maybe<CompassScorecardConnection>;
|
|
5878
5965
|
userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
|
|
5879
5966
|
viewerGlobalPermissions?: Maybe<CompassGlobalPermissionsResult>;
|
|
5880
5967
|
};
|
|
@@ -6039,6 +6126,12 @@ export declare type CompassCatalogQueryApiTeamCheckinsArgs = {
|
|
|
6039
6126
|
export declare type CompassCatalogQueryApiTeamDataArgs = {
|
|
6040
6127
|
input: CompassTeamDataInput;
|
|
6041
6128
|
};
|
|
6129
|
+
export declare type CompassCatalogQueryApiTopScorecardsArgs = {
|
|
6130
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
6131
|
+
cloudId: Scalars['ID']['input'];
|
|
6132
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6133
|
+
query?: InputMaybe<CompassTopScorecardsQuery>;
|
|
6134
|
+
};
|
|
6042
6135
|
export declare type CompassCatalogQueryApiUserDefinedParametersArgs = {
|
|
6043
6136
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6044
6137
|
componentId: Scalars['ID']['input'];
|
|
@@ -6302,13 +6395,18 @@ export declare type CompassComponentHasScorecardsAppliedConnection = {
|
|
|
6302
6395
|
export declare type CompassComponentHasScorecardsAppliedEdge = {
|
|
6303
6396
|
__typename?: 'CompassComponentHasScorecardsAppliedEdge';
|
|
6304
6397
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
6398
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
6305
6399
|
cursor: Scalars['String']['output'];
|
|
6306
6400
|
node?: Maybe<CompassScorecard>;
|
|
6401
|
+
score?: Maybe<CompassScorecardScoreResult>;
|
|
6307
6402
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
6308
6403
|
};
|
|
6309
6404
|
export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
|
|
6310
6405
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
6311
6406
|
};
|
|
6407
|
+
export declare type CompassComponentHasScorecardsAppliedEdgeActiveWorkItemsArgs = {
|
|
6408
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
6409
|
+
};
|
|
6312
6410
|
export declare type CompassComponentInstancePermissions = {
|
|
6313
6411
|
__typename?: 'CompassComponentInstancePermissions';
|
|
6314
6412
|
applyScorecard?: Maybe<CompassPermissionResult>;
|
|
@@ -6396,6 +6494,7 @@ export declare type CompassComponentScorecardJiraIssuesQueryResult = CompassComp
|
|
|
6396
6494
|
export declare type CompassComponentScorecardRelationship = {
|
|
6397
6495
|
__typename?: 'CompassComponentScorecardRelationship';
|
|
6398
6496
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
6497
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
6399
6498
|
appliedSince: Scalars['DateTime']['output'];
|
|
6400
6499
|
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
6401
6500
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
@@ -6405,6 +6504,9 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
6405
6504
|
export declare type CompassComponentScorecardRelationshipActiveIssuesArgs = {
|
|
6406
6505
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
6407
6506
|
};
|
|
6507
|
+
export declare type CompassComponentScorecardRelationshipActiveWorkItemsArgs = {
|
|
6508
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
6509
|
+
};
|
|
6408
6510
|
export declare type CompassComponentScorecardRelationshipCriteriaScoreHistoriesArgs = {
|
|
6409
6511
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
6410
6512
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -6418,12 +6520,30 @@ export declare type CompassComponentScorecardRelationshipScorecardScoreHistories
|
|
|
6418
6520
|
export declare type CompassComponentScorecardRelationshipInstancePermissions = {
|
|
6419
6521
|
__typename?: 'CompassComponentScorecardRelationshipInstancePermissions';
|
|
6420
6522
|
createJiraIssueForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
6523
|
+
createWorkItemForAppliedScorecard?: Maybe<CompassPermissionResult>;
|
|
6421
6524
|
removeScorecard?: Maybe<CompassPermissionResult>;
|
|
6422
6525
|
};
|
|
6423
6526
|
export declare type CompassComponentScorecardRelationshipResult = CompassComponentScorecardRelationship | QueryError;
|
|
6424
6527
|
export declare type CompassComponentScorecardScoreQuery = {
|
|
6425
6528
|
scorecardId: Scalars['ID']['input'];
|
|
6426
6529
|
};
|
|
6530
|
+
export declare type CompassComponentScorecardWorkItemConnection = {
|
|
6531
|
+
__typename?: 'CompassComponentScorecardWorkItemConnection';
|
|
6532
|
+
edges?: Maybe<Array<Maybe<CompassComponentScorecardWorkItemEdge>>>;
|
|
6533
|
+
nodes?: Maybe<Array<Maybe<CompassWorkItem>>>;
|
|
6534
|
+
pageInfo: PageInfo;
|
|
6535
|
+
};
|
|
6536
|
+
export declare type CompassComponentScorecardWorkItemEdge = CompassWorkItemEdge & {
|
|
6537
|
+
__typename?: 'CompassComponentScorecardWorkItemEdge';
|
|
6538
|
+
cursor: Scalars['String']['output'];
|
|
6539
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
6540
|
+
node?: Maybe<CompassWorkItem>;
|
|
6541
|
+
};
|
|
6542
|
+
export declare type CompassComponentScorecardWorkItemsQuery = {
|
|
6543
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
6544
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6545
|
+
};
|
|
6546
|
+
export declare type CompassComponentScorecardWorkItemsQueryResult = CompassComponentScorecardWorkItemConnection | QueryError;
|
|
6427
6547
|
export declare type CompassComponentSpec = {
|
|
6428
6548
|
__typename?: 'CompassComponentSpec';
|
|
6429
6549
|
api?: Maybe<CompassComponentApi>;
|
|
@@ -6586,6 +6706,17 @@ export declare type CompassCreateComponentScorecardJiraIssuePayload = Payload &
|
|
|
6586
6706
|
errors?: Maybe<Array<MutationError>>;
|
|
6587
6707
|
success: Scalars['Boolean']['output'];
|
|
6588
6708
|
};
|
|
6709
|
+
export declare type CompassCreateComponentScorecardWorkItemInput = {
|
|
6710
|
+
componentId: Scalars['ID']['input'];
|
|
6711
|
+
scorecardId: Scalars['ID']['input'];
|
|
6712
|
+
url: Scalars['URL']['input'];
|
|
6713
|
+
workItemId: Scalars['ID']['input'];
|
|
6714
|
+
};
|
|
6715
|
+
export declare type CompassCreateComponentScorecardWorkItemPayload = Payload & {
|
|
6716
|
+
__typename?: 'CompassCreateComponentScorecardWorkItemPayload';
|
|
6717
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6718
|
+
success: Scalars['Boolean']['output'];
|
|
6719
|
+
};
|
|
6589
6720
|
export declare type CompassCreateComponentSubscriptionInput = {
|
|
6590
6721
|
componentId: Scalars['ID']['input'];
|
|
6591
6722
|
};
|
|
@@ -7011,6 +7142,17 @@ export declare enum CompassCriteriaCollectionComparatorOptions {
|
|
|
7011
7142
|
IsPresent = "IS_PRESENT",
|
|
7012
7143
|
NoneOf = "NONE_OF"
|
|
7013
7144
|
}
|
|
7145
|
+
export declare type CompassCriteriaGraduatedSeries = {
|
|
7146
|
+
__typename?: 'CompassCriteriaGraduatedSeries';
|
|
7147
|
+
comparator?: Maybe<Scalars['String']['output']>;
|
|
7148
|
+
comparatorValue?: Maybe<Scalars['Float']['output']>;
|
|
7149
|
+
fractionalWeight?: Maybe<Scalars['Int']['output']>;
|
|
7150
|
+
};
|
|
7151
|
+
export declare type CompassCriteriaGraduatedSeriesInput = {
|
|
7152
|
+
comparator: CompassCriteriaNumberComparatorOptions;
|
|
7153
|
+
comparatorValue: Scalars['Float']['input'];
|
|
7154
|
+
fractionalWeight: Scalars['Int']['input'];
|
|
7155
|
+
};
|
|
7014
7156
|
export declare enum CompassCriteriaMembershipComparatorOptions {
|
|
7015
7157
|
In = "IN",
|
|
7016
7158
|
IsPresent = "IS_PRESENT",
|
|
@@ -7395,6 +7537,7 @@ export declare type CompassDeactivateScorecardForComponentPayload = Payload & {
|
|
|
7395
7537
|
export declare type CompassDeactivatedScorecard = {
|
|
7396
7538
|
__typename?: 'CompassDeactivatedScorecard';
|
|
7397
7539
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
7540
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
7398
7541
|
applicationModel: CompassScorecardApplicationModel;
|
|
7399
7542
|
description?: Maybe<Scalars['String']['output']>;
|
|
7400
7543
|
id: Scalars['ID']['output'];
|
|
@@ -7406,6 +7549,9 @@ export declare type CompassDeactivatedScorecard = {
|
|
|
7406
7549
|
export declare type CompassDeactivatedScorecardActiveIssuesArgs = {
|
|
7407
7550
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
7408
7551
|
};
|
|
7552
|
+
export declare type CompassDeactivatedScorecardActiveWorkItemsArgs = {
|
|
7553
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
7554
|
+
};
|
|
7409
7555
|
export declare type CompassDeactivatedScorecardsConnection = {
|
|
7410
7556
|
__typename?: 'CompassDeactivatedScorecardsConnection';
|
|
7411
7557
|
edges?: Maybe<Array<CompassComponentDeactivatedScorecardsEdge>>;
|
|
@@ -7791,6 +7937,54 @@ export declare type CompassGlobalPermissions = {
|
|
|
7791
7937
|
viewMetricDefinitions?: Maybe<CompassPermissionResult>;
|
|
7792
7938
|
};
|
|
7793
7939
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
7940
|
+
export declare type CompassGoalAppliedToComponentsConnection = {
|
|
7941
|
+
__typename?: 'CompassGoalAppliedToComponentsConnection';
|
|
7942
|
+
edges?: Maybe<Array<CompassGoalAppliedToComponentsEdge>>;
|
|
7943
|
+
nodes?: Maybe<Array<CompassComponent>>;
|
|
7944
|
+
pageInfo: PageInfo;
|
|
7945
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
7946
|
+
};
|
|
7947
|
+
export declare type CompassGoalAppliedToComponentsEdge = {
|
|
7948
|
+
__typename?: 'CompassGoalAppliedToComponentsEdge';
|
|
7949
|
+
cursor: Scalars['String']['output'];
|
|
7950
|
+
node?: Maybe<CompassComponent>;
|
|
7951
|
+
};
|
|
7952
|
+
export declare type CompassGoalAppliedToComponentsQuery = {
|
|
7953
|
+
sort?: InputMaybe<CompassGoalAppliedToComponentsQuerySort>;
|
|
7954
|
+
};
|
|
7955
|
+
export declare type CompassGoalAppliedToComponentsQuerySort = {
|
|
7956
|
+
name: Scalars['String']['input'];
|
|
7957
|
+
order: CompassQuerySortOrder;
|
|
7958
|
+
};
|
|
7959
|
+
export declare type CompassGoalCriteriaScoreStatisticsHistoryQuery = {
|
|
7960
|
+
filter?: InputMaybe<CompassGoalCriteriaScoreStatisticsHistoryQueryFilter>;
|
|
7961
|
+
};
|
|
7962
|
+
export declare type CompassGoalCriteriaScoreStatisticsHistoryQueryFilter = {
|
|
7963
|
+
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
7964
|
+
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
7965
|
+
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
7966
|
+
};
|
|
7967
|
+
export declare type CompassGoalFilters = {
|
|
7968
|
+
__typename?: 'CompassGoalFilters';
|
|
7969
|
+
applicationTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
7970
|
+
componentLabels?: Maybe<Array<Scalars['String']['output']>>;
|
|
7971
|
+
componentOwnerIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
7972
|
+
componentTiers?: Maybe<Array<Scalars['String']['output']>>;
|
|
7973
|
+
};
|
|
7974
|
+
export declare type CompassGoalFiltersInput = {
|
|
7975
|
+
applicationTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7976
|
+
componentLabels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7977
|
+
componentOwnerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
7978
|
+
componentTiers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7979
|
+
};
|
|
7980
|
+
export declare type CompassGoalScoreStatisticsHistoryQuery = {
|
|
7981
|
+
filter?: InputMaybe<CompassGoalScoreStatisticsHistoryQueryFilter>;
|
|
7982
|
+
};
|
|
7983
|
+
export declare type CompassGoalScoreStatisticsHistoryQueryFilter = {
|
|
7984
|
+
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
7985
|
+
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
7986
|
+
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
7987
|
+
};
|
|
7794
7988
|
export declare type CompassHasCustomBooleanFieldLibraryScorecardCriterion = CompassLibraryScorecardCriterion & {
|
|
7795
7989
|
__typename?: 'CompassHasCustomBooleanFieldLibraryScorecardCriterion';
|
|
7796
7990
|
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
@@ -8801,13 +8995,18 @@ export declare type CompassScorecardAppliedToComponentsCriteriaFilter = {
|
|
|
8801
8995
|
export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
8802
8996
|
__typename?: 'CompassScorecardAppliedToComponentsEdge';
|
|
8803
8997
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
8998
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
8804
8999
|
cursor: Scalars['String']['output'];
|
|
8805
9000
|
node?: Maybe<CompassComponent>;
|
|
9001
|
+
score?: Maybe<CompassScorecardScoreResult>;
|
|
8806
9002
|
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
8807
9003
|
};
|
|
8808
9004
|
export declare type CompassScorecardAppliedToComponentsEdgeActiveIssuesArgs = {
|
|
8809
9005
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
8810
9006
|
};
|
|
9007
|
+
export declare type CompassScorecardAppliedToComponentsEdgeActiveWorkItemsArgs = {
|
|
9008
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
9009
|
+
};
|
|
8811
9010
|
export declare type CompassScorecardAppliedToComponentsFieldFilter = {
|
|
8812
9011
|
definition: Scalars['ID']['input'];
|
|
8813
9012
|
in: Array<CompassFieldValueInput>;
|
|
@@ -8885,6 +9084,13 @@ export declare type CompassScorecardCriteria = {
|
|
|
8885
9084
|
export declare type CompassScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
8886
9085
|
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
8887
9086
|
};
|
|
9087
|
+
export declare type CompassScorecardCriteriaMaturityScore = {
|
|
9088
|
+
__typename?: 'CompassScorecardCriteriaMaturityScore';
|
|
9089
|
+
dataSourceLastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
9090
|
+
explanation?: Maybe<Scalars['String']['output']>;
|
|
9091
|
+
metadata?: Maybe<CompassScorecardCriterionScoreMetadata>;
|
|
9092
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
9093
|
+
};
|
|
8888
9094
|
export declare type CompassScorecardCriteriaScore = {
|
|
8889
9095
|
__typename?: 'CompassScorecardCriteriaScore';
|
|
8890
9096
|
dataSourceLastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -9146,6 +9352,7 @@ export declare type CompassScorecardDeactivatedComponentsConnection = {
|
|
|
9146
9352
|
export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
9147
9353
|
__typename?: 'CompassScorecardDeactivatedComponentsEdge';
|
|
9148
9354
|
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
9355
|
+
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
9149
9356
|
cursor: Scalars['String']['output'];
|
|
9150
9357
|
deactivatedBy?: Maybe<User>;
|
|
9151
9358
|
deactivatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -9155,6 +9362,9 @@ export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
|
9155
9362
|
export declare type CompassScorecardDeactivatedComponentsEdgeActiveIssuesArgs = {
|
|
9156
9363
|
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
9157
9364
|
};
|
|
9365
|
+
export declare type CompassScorecardDeactivatedComponentsEdgeActiveWorkItemsArgs = {
|
|
9366
|
+
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
9367
|
+
};
|
|
9158
9368
|
export declare type CompassScorecardDeactivatedComponentsQuery = {
|
|
9159
9369
|
filter?: InputMaybe<CompassScorecardDeactivatedComponentsQueryFilter>;
|
|
9160
9370
|
sort?: InputMaybe<CompassScorecardDeactivatedComponentsQuerySort>;
|
|
@@ -9194,6 +9404,28 @@ export declare type CompassScorecardManualApplicationModel = CompassScorecardApp
|
|
|
9194
9404
|
__typename?: 'CompassScorecardManualApplicationModel';
|
|
9195
9405
|
applicationType: Scalars['String']['output'];
|
|
9196
9406
|
};
|
|
9407
|
+
export declare type CompassScorecardMaturityGroupCriteriaScores = {
|
|
9408
|
+
__typename?: 'CompassScorecardMaturityGroupCriteriaScores';
|
|
9409
|
+
criteriaScores?: Maybe<Array<CompassScorecardCriteriaMaturityScore>>;
|
|
9410
|
+
maturityGroup?: Maybe<CompassScorecardMaturityLevel>;
|
|
9411
|
+
passingCount?: Maybe<Scalars['Int']['output']>;
|
|
9412
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
9413
|
+
};
|
|
9414
|
+
export declare type CompassScorecardMaturityLevel = {
|
|
9415
|
+
__typename?: 'CompassScorecardMaturityLevel';
|
|
9416
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
9417
|
+
id: Scalars['ID']['output'];
|
|
9418
|
+
};
|
|
9419
|
+
export declare type CompassScorecardMaturityLevelAwarded = {
|
|
9420
|
+
__typename?: 'CompassScorecardMaturityLevelAwarded';
|
|
9421
|
+
maturityGroupCriteriaScores?: Maybe<Array<CompassScorecardMaturityGroupCriteriaScores>>;
|
|
9422
|
+
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
9423
|
+
maturityLevelDuration?: Maybe<CompassScorecardMaturityLevelDuration>;
|
|
9424
|
+
};
|
|
9425
|
+
export declare type CompassScorecardMaturityLevelDuration = {
|
|
9426
|
+
__typename?: 'CompassScorecardMaturityLevelDuration';
|
|
9427
|
+
since?: Maybe<Scalars['DateTime']['output']>;
|
|
9428
|
+
};
|
|
9197
9429
|
export declare type CompassScorecardMetricCriterionScore = CompassScorecardCriterionScore & {
|
|
9198
9430
|
__typename?: 'CompassScorecardMetricCriterionScore';
|
|
9199
9431
|
criterionId: Scalars['ID']['output'];
|
|
@@ -9285,7 +9517,7 @@ export declare type CompassScorecardScorePoints = {
|
|
|
9285
9517
|
export declare type CompassScorecardScoreQuery = {
|
|
9286
9518
|
componentId: Scalars['ID']['input'];
|
|
9287
9519
|
};
|
|
9288
|
-
export declare type CompassScorecardScoreResult = CompassScorecardScore | QueryError;
|
|
9520
|
+
export declare type CompassScorecardScoreResult = CompassScorecardMaturityLevelAwarded | CompassScorecardScore | QueryError;
|
|
9289
9521
|
export declare type CompassScorecardScoreStatistic = {
|
|
9290
9522
|
__typename?: 'CompassScorecardScoreStatistic';
|
|
9291
9523
|
count: Scalars['Int']['output'];
|
|
@@ -9414,6 +9646,7 @@ export declare type CompassSearchPackagesEdge = {
|
|
|
9414
9646
|
node?: Maybe<CompassPackage>;
|
|
9415
9647
|
};
|
|
9416
9648
|
export declare type CompassSearchPackagesQuery = {
|
|
9649
|
+
packageManager?: InputMaybe<CompassPackageDependencyManagerOptions>;
|
|
9417
9650
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
9418
9651
|
};
|
|
9419
9652
|
export declare type CompassSearchTeamLabelsConnection = {
|
|
@@ -9583,6 +9816,16 @@ export declare type CompassTeamMetricSourceEdge = {
|
|
|
9583
9816
|
cursor: Scalars['String']['output'];
|
|
9584
9817
|
node?: Maybe<CompassTeamMetricSource>;
|
|
9585
9818
|
};
|
|
9819
|
+
export declare type CompassTopScorecardsQuery = {
|
|
9820
|
+
filter?: InputMaybe<CompassTopScorecardsQueryFilter>;
|
|
9821
|
+
sort?: InputMaybe<CompassTopScorecardsQuerySort>;
|
|
9822
|
+
};
|
|
9823
|
+
export declare type CompassTopScorecardsQueryFilter = {
|
|
9824
|
+
teams?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
|
|
9825
|
+
};
|
|
9826
|
+
export declare type CompassTopScorecardsQuerySort = {
|
|
9827
|
+
order?: InputMaybe<CompassScorecardQuerySortOrder>;
|
|
9828
|
+
};
|
|
9586
9829
|
export declare type CompassUnsetEntityPropertyInput = {
|
|
9587
9830
|
cloudId: Scalars['ID']['input'];
|
|
9588
9831
|
key: Scalars['String']['input'];
|
|
@@ -9610,6 +9853,7 @@ export declare type CompassUpdateAnnouncementPayload = Payload & {
|
|
|
9610
9853
|
export declare type CompassUpdateCampaignInput = {
|
|
9611
9854
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
9612
9855
|
dueDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
9856
|
+
filters?: InputMaybe<CompassGoalFiltersInput>;
|
|
9613
9857
|
goalId?: InputMaybe<Scalars['ID']['input']>;
|
|
9614
9858
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
9615
9859
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -9632,6 +9876,17 @@ export declare type CompassUpdateComponentScorecardJiraIssuePayload = Payload &
|
|
|
9632
9876
|
errors?: Maybe<Array<MutationError>>;
|
|
9633
9877
|
success: Scalars['Boolean']['output'];
|
|
9634
9878
|
};
|
|
9879
|
+
export declare type CompassUpdateComponentScorecardWorkItemInput = {
|
|
9880
|
+
componentId: Scalars['ID']['input'];
|
|
9881
|
+
isActive: Scalars['Boolean']['input'];
|
|
9882
|
+
scorecardId: Scalars['ID']['input'];
|
|
9883
|
+
workItemId: Scalars['ID']['input'];
|
|
9884
|
+
};
|
|
9885
|
+
export declare type CompassUpdateComponentScorecardWorkItemPayload = Payload & {
|
|
9886
|
+
__typename?: 'CompassUpdateComponentScorecardWorkItemPayload';
|
|
9887
|
+
errors?: Maybe<Array<MutationError>>;
|
|
9888
|
+
success: Scalars['Boolean']['output'];
|
|
9889
|
+
};
|
|
9635
9890
|
export declare type CompassUpdateCustomBooleanFieldDefinitionInput = {
|
|
9636
9891
|
componentTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
9637
9892
|
componentTypes?: InputMaybe<Array<CompassComponentType>>;
|
|
@@ -9997,6 +10252,18 @@ export declare type CompassWebhook = {
|
|
|
9997
10252
|
id: Scalars['ID']['output'];
|
|
9998
10253
|
url: Scalars['String']['output'];
|
|
9999
10254
|
};
|
|
10255
|
+
export declare type CompassWorkItem = {
|
|
10256
|
+
__typename?: 'CompassWorkItem';
|
|
10257
|
+
changeMetadata: CompassChangeMetadata;
|
|
10258
|
+
id: Scalars['ID']['output'];
|
|
10259
|
+
url: Scalars['URL']['output'];
|
|
10260
|
+
workItemId?: Maybe<Scalars['ID']['output']>;
|
|
10261
|
+
};
|
|
10262
|
+
export declare type CompassWorkItemEdge = {
|
|
10263
|
+
cursor: Scalars['String']['output'];
|
|
10264
|
+
isActive?: Maybe<Scalars['Boolean']['output']>;
|
|
10265
|
+
node?: Maybe<CompassWorkItem>;
|
|
10266
|
+
};
|
|
10000
10267
|
export declare type CompatibleAtlassianCloudProduct = CompatibleAtlassianProduct & {
|
|
10001
10268
|
__typename?: 'CompatibleAtlassianCloudProduct';
|
|
10002
10269
|
atlassianProduct?: Maybe<MarketplaceSupportedAtlassianProduct>;
|
|
@@ -19941,6 +20208,35 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
19941
20208
|
isValid: Scalars['Boolean']['output'];
|
|
19942
20209
|
message?: Maybe<Scalars['String']['output']>;
|
|
19943
20210
|
};
|
|
20211
|
+
export declare type ConvoAiJiraSimilarWorkItemSuggestion = {
|
|
20212
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemSuggestion';
|
|
20213
|
+
id: Scalars['ID']['output'];
|
|
20214
|
+
similarityScore: Scalars['Float']['output'];
|
|
20215
|
+
workItem?: Maybe<JiraIssue>;
|
|
20216
|
+
};
|
|
20217
|
+
export declare type ConvoAiJiraSimilarWorkItemsConnection = {
|
|
20218
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemsConnection';
|
|
20219
|
+
edges?: Maybe<Array<ConvoAiJiraSimilarWorkItemsEdge>>;
|
|
20220
|
+
errors?: Maybe<Array<QueryError>>;
|
|
20221
|
+
pageInfo: PageInfo;
|
|
20222
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
20223
|
+
};
|
|
20224
|
+
export declare type ConvoAiJiraSimilarWorkItemsEdge = {
|
|
20225
|
+
__typename?: 'ConvoAiJiraSimilarWorkItemsEdge';
|
|
20226
|
+
cursor: Scalars['String']['output'];
|
|
20227
|
+
node?: Maybe<ConvoAiJiraSimilarWorkItemSuggestion>;
|
|
20228
|
+
};
|
|
20229
|
+
export declare type ConvoAiJiraSimilarWorkItemsInput = {
|
|
20230
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
20231
|
+
excludeWorkItemIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
20232
|
+
projectId: Scalars['String']['input'];
|
|
20233
|
+
similarityConfig?: InputMaybe<ConvoAiJiraSimilarWorkItemsSimilarityConfig>;
|
|
20234
|
+
summary: Scalars['String']['input'];
|
|
20235
|
+
workItemId?: InputMaybe<Scalars['String']['input']>;
|
|
20236
|
+
};
|
|
20237
|
+
export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
20238
|
+
minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
|
|
20239
|
+
};
|
|
19944
20240
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
19945
20241
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
19946
20242
|
project: Scalars['ID']['input'];
|
|
@@ -20220,6 +20516,7 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
20220
20516
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
20221
20517
|
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
20222
20518
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
20519
|
+
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
20223
20520
|
metricDefinitionId: Scalars['ID']['input'];
|
|
20224
20521
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
20225
20522
|
scoringStrategyRules?: InputMaybe<CompassCreateScorecardCriteriaScoringStrategyRulesInput>;
|
|
@@ -20945,6 +21242,7 @@ export declare type CsmAiUpdateHandoffConfigPayload = Payload & {
|
|
|
20945
21242
|
__typename?: 'CsmAiUpdateHandoffConfigPayload';
|
|
20946
21243
|
errors?: Maybe<Array<MutationError>>;
|
|
20947
21244
|
handoffConfig?: Maybe<CsmAiHandoffConfig>;
|
|
21245
|
+
handoffConfigs?: Maybe<Array<CsmAiHandoffConfig>>;
|
|
20948
21246
|
success: Scalars['Boolean']['output'];
|
|
20949
21247
|
};
|
|
20950
21248
|
export declare type CumulativeFlowDiagram = {
|
|
@@ -22019,6 +22317,7 @@ export declare type CustomerServiceTemplateForm = Node & {
|
|
|
22019
22317
|
helpCenter?: Maybe<HelpCenterQueryResult>;
|
|
22020
22318
|
helpCenterId: Scalars['ID']['output'];
|
|
22021
22319
|
id: Scalars['ID']['output'];
|
|
22320
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
22022
22321
|
name?: Maybe<Scalars['String']['output']>;
|
|
22023
22322
|
};
|
|
22024
22323
|
export declare type CustomerServiceTemplateFormConnection = {
|
|
@@ -22742,6 +23041,12 @@ export declare type DevAiGetSupportedReposArgs = {
|
|
|
22742
23041
|
repoUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
|
|
22743
23042
|
workspaceId: Scalars['ID']['input'];
|
|
22744
23043
|
};
|
|
23044
|
+
export declare type DevAiArchivedTechnicalPlannerJobPayload = Payload & {
|
|
23045
|
+
__typename?: 'DevAiArchivedTechnicalPlannerJobPayload';
|
|
23046
|
+
errors?: Maybe<Array<MutationError>>;
|
|
23047
|
+
jobId?: Maybe<Scalars['ID']['output']>;
|
|
23048
|
+
success: Scalars['Boolean']['output'];
|
|
23049
|
+
};
|
|
22745
23050
|
export declare type DevAiAutodevContinueJobWithPromptPayload = Payload & {
|
|
22746
23051
|
__typename?: 'DevAiAutodevContinueJobWithPromptPayload';
|
|
22747
23052
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -23215,9 +23520,17 @@ export declare enum DevAiSupportedRepoFilterOption {
|
|
|
23215
23520
|
DisabledOnly = "DISABLED_ONLY",
|
|
23216
23521
|
EnabledOnly = "ENABLED_ONLY"
|
|
23217
23522
|
}
|
|
23523
|
+
export declare type DevAiTechnicalPlannerFileCounts = {
|
|
23524
|
+
__typename?: 'DevAiTechnicalPlannerFileCounts';
|
|
23525
|
+
addedCount: Scalars['Int']['output'];
|
|
23526
|
+
deletedCount: Scalars['Int']['output'];
|
|
23527
|
+
modifiedCount: Scalars['Int']['output'];
|
|
23528
|
+
};
|
|
23218
23529
|
export declare type DevAiTechnicalPlannerJob = {
|
|
23219
23530
|
__typename?: 'DevAiTechnicalPlannerJob';
|
|
23531
|
+
createdAt: Scalars['String']['output'];
|
|
23220
23532
|
error?: Maybe<DevAiWorkflowRunError>;
|
|
23533
|
+
fileCounts?: Maybe<DevAiTechnicalPlannerFileCounts>;
|
|
23221
23534
|
id: Scalars['ID']['output'];
|
|
23222
23535
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
23223
23536
|
planAdf?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -24958,6 +25271,7 @@ export declare type EcosystemMutation = {
|
|
|
24958
25271
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
24959
25272
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
24960
25273
|
publishAppClientEvent?: Maybe<EcosystemPublishEventBody>;
|
|
25274
|
+
publishRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
24961
25275
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
24962
25276
|
updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
|
|
24963
25277
|
updateAppHostServiceScopes?: Maybe<UpdateAppHostServiceScopesResponsePayload>;
|
|
@@ -25002,6 +25316,12 @@ export declare type EcosystemMutationPublishAppClientEventArgs = {
|
|
|
25002
25316
|
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
25003
25317
|
payload: Scalars['String']['input'];
|
|
25004
25318
|
};
|
|
25319
|
+
export declare type EcosystemMutationPublishRealtimeChannelArgs = {
|
|
25320
|
+
context?: InputMaybe<Scalars['String']['input']>;
|
|
25321
|
+
installationId: Scalars['ID']['input'];
|
|
25322
|
+
name: Scalars['String']['input'];
|
|
25323
|
+
payload: Scalars['String']['input'];
|
|
25324
|
+
};
|
|
25005
25325
|
export declare type EcosystemMutationRemoveAppContributorsArgs = {
|
|
25006
25326
|
input: RemoveAppContributorsInput;
|
|
25007
25327
|
};
|
|
@@ -25153,6 +25473,15 @@ export declare type EcosystemQueryUserGrantsArgs = {
|
|
|
25153
25473
|
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
25154
25474
|
cloudId: Scalars['ID']['input'];
|
|
25155
25475
|
};
|
|
25476
|
+
export declare type EcosystemRealtimePublishBody = {
|
|
25477
|
+
__typename?: 'EcosystemRealtimePublishBody';
|
|
25478
|
+
eventId?: Maybe<Scalars['String']['output']>;
|
|
25479
|
+
eventTimestamp?: Maybe<Scalars['Int']['output']>;
|
|
25480
|
+
};
|
|
25481
|
+
export declare type EcosystemRealtimeSubscriptionBody = {
|
|
25482
|
+
__typename?: 'EcosystemRealtimeSubscriptionBody';
|
|
25483
|
+
payload?: Maybe<Scalars['String']['output']>;
|
|
25484
|
+
};
|
|
25156
25485
|
export declare enum EcosystemRequiredProduct {
|
|
25157
25486
|
Compass = "COMPASS",
|
|
25158
25487
|
Confluence = "CONFLUENCE",
|
|
@@ -25161,6 +25490,7 @@ export declare enum EcosystemRequiredProduct {
|
|
|
25161
25490
|
export declare type EcosystemSubscription = {
|
|
25162
25491
|
__typename?: 'EcosystemSubscription';
|
|
25163
25492
|
onAppClientEvent?: Maybe<EcosystemOnEventBody>;
|
|
25493
|
+
realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
25164
25494
|
};
|
|
25165
25495
|
export declare type EcosystemSubscriptionOnAppClientEventArgs = {
|
|
25166
25496
|
appId: Scalars['ID']['input'];
|
|
@@ -25168,6 +25498,11 @@ export declare type EcosystemSubscriptionOnAppClientEventArgs = {
|
|
|
25168
25498
|
contextAri: Scalars['ID']['input'];
|
|
25169
25499
|
eventName?: InputMaybe<Scalars['String']['input']>;
|
|
25170
25500
|
};
|
|
25501
|
+
export declare type EcosystemSubscriptionRealtimeChannelArgs = {
|
|
25502
|
+
context?: InputMaybe<Scalars['String']['input']>;
|
|
25503
|
+
installationId: Scalars['ID']['input'];
|
|
25504
|
+
name: Scalars['String']['input'];
|
|
25505
|
+
};
|
|
25171
25506
|
export declare type EcosystemUpdateAppOAuthClientResult = Payload & {
|
|
25172
25507
|
__typename?: 'EcosystemUpdateAppOAuthClientResult';
|
|
25173
25508
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -25922,6 +26257,7 @@ export declare type ExternalDeal = Node & {
|
|
|
25922
26257
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
25923
26258
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
25924
26259
|
url?: Maybe<Scalars['String']['output']>;
|
|
26260
|
+
userContributors?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
25925
26261
|
};
|
|
25926
26262
|
export declare type ExternalDealLastActivity = {
|
|
25927
26263
|
__typename?: 'ExternalDealLastActivity';
|
|
@@ -31810,6 +32146,8 @@ export declare type GraphStore = {
|
|
|
31810
32146
|
deploymentAssociatedRepoInverse?: Maybe<GraphStoreSimplifiedDeploymentAssociatedRepoInverseConnection>;
|
|
31811
32147
|
deploymentContainsCommit?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitConnection>;
|
|
31812
32148
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
32149
|
+
entityHasTopicInferredEntity?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityConnection>;
|
|
32150
|
+
entityHasTopicInferredEntityInverse?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityInverseConnection>;
|
|
31813
32151
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
31814
32152
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
31815
32153
|
externalOrgHasExternalPosition?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalPositionConnection>;
|
|
@@ -32259,6 +32597,8 @@ export declare type GraphStore = {
|
|
|
32259
32597
|
userCreatedConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentInverseConnection>;
|
|
32260
32598
|
userCreatedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection>;
|
|
32261
32599
|
userCreatedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection>;
|
|
32600
|
+
userCreatedConfluenceEmbed?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedConnection>;
|
|
32601
|
+
userCreatedConfluenceEmbedInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseConnection>;
|
|
32262
32602
|
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
32263
32603
|
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
32264
32604
|
userCreatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection>;
|
|
@@ -32337,6 +32677,8 @@ export declare type GraphStore = {
|
|
|
32337
32677
|
userOwnsFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserOwnsFocusAreaInverseConnection>;
|
|
32338
32678
|
userOwnsPage?: Maybe<GraphStoreSimplifiedUserOwnsPageConnection>;
|
|
32339
32679
|
userOwnsPageInverse?: Maybe<GraphStoreSimplifiedUserOwnsPageInverseConnection>;
|
|
32680
|
+
userReactionVideo?: Maybe<GraphStoreSimplifiedUserReactionVideoConnection>;
|
|
32681
|
+
userReactionVideoInverse?: Maybe<GraphStoreSimplifiedUserReactionVideoInverseConnection>;
|
|
32340
32682
|
userReportedIncident?: Maybe<GraphStoreSimplifiedUserReportedIncidentConnection>;
|
|
32341
32683
|
userReportedIncidentInverse?: Maybe<GraphStoreSimplifiedUserReportedIncidentInverseConnection>;
|
|
32342
32684
|
userReportsIssue?: Maybe<GraphStoreSimplifiedUserReportsIssueConnection>;
|
|
@@ -33174,6 +33516,20 @@ export declare type GraphStoreDeploymentContainsCommitInverseArgs = {
|
|
|
33174
33516
|
id: Scalars['ID']['input'];
|
|
33175
33517
|
sort?: InputMaybe<GraphStoreDeploymentContainsCommitSortInput>;
|
|
33176
33518
|
};
|
|
33519
|
+
export declare type GraphStoreEntityHasTopicInferredEntityArgs = {
|
|
33520
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33521
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33522
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33523
|
+
id: Scalars['ID']['input'];
|
|
33524
|
+
sort?: InputMaybe<GraphStoreEntityHasTopicInferredEntitySortInput>;
|
|
33525
|
+
};
|
|
33526
|
+
export declare type GraphStoreEntityHasTopicInferredEntityInverseArgs = {
|
|
33527
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33528
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33529
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33530
|
+
id: Scalars['ID']['input'];
|
|
33531
|
+
sort?: InputMaybe<GraphStoreEntityHasTopicInferredEntitySortInput>;
|
|
33532
|
+
};
|
|
33177
33533
|
export declare type GraphStoreEntityIsRelatedToEntityArgs = {
|
|
33178
33534
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
33179
33535
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36132,6 +36488,20 @@ export declare type GraphStoreUserCreatedConfluenceDatabaseInverseArgs = {
|
|
|
36132
36488
|
id: Scalars['ID']['input'];
|
|
36133
36489
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceDatabaseSortInput>;
|
|
36134
36490
|
};
|
|
36491
|
+
export declare type GraphStoreUserCreatedConfluenceEmbedArgs = {
|
|
36492
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36493
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36494
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36495
|
+
id: Scalars['ID']['input'];
|
|
36496
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceEmbedSortInput>;
|
|
36497
|
+
};
|
|
36498
|
+
export declare type GraphStoreUserCreatedConfluenceEmbedInverseArgs = {
|
|
36499
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36500
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36501
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36502
|
+
id: Scalars['ID']['input'];
|
|
36503
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceEmbedSortInput>;
|
|
36504
|
+
};
|
|
36135
36505
|
export declare type GraphStoreUserCreatedConfluencePageArgs = {
|
|
36136
36506
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36137
36507
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36682,6 +37052,20 @@ export declare type GraphStoreUserOwnsPageInverseArgs = {
|
|
|
36682
37052
|
id: Scalars['ID']['input'];
|
|
36683
37053
|
sort?: InputMaybe<GraphStoreUserOwnsPageSortInput>;
|
|
36684
37054
|
};
|
|
37055
|
+
export declare type GraphStoreUserReactionVideoArgs = {
|
|
37056
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37057
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37058
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37059
|
+
id: Scalars['ID']['input'];
|
|
37060
|
+
sort?: InputMaybe<GraphStoreUserReactionVideoSortInput>;
|
|
37061
|
+
};
|
|
37062
|
+
export declare type GraphStoreUserReactionVideoInverseArgs = {
|
|
37063
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37064
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37065
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37066
|
+
id: Scalars['ID']['input'];
|
|
37067
|
+
sort?: InputMaybe<GraphStoreUserReactionVideoSortInput>;
|
|
37068
|
+
};
|
|
36685
37069
|
export declare type GraphStoreUserReportedIncidentArgs = {
|
|
36686
37070
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36687
37071
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37743,7 +38127,7 @@ export declare type GraphStoreBatchContentReferencedEntityStartNode = {
|
|
|
37743
38127
|
data?: Maybe<GraphStoreBatchContentReferencedEntityStartUnion>;
|
|
37744
38128
|
id: Scalars['ID']['output'];
|
|
37745
38129
|
};
|
|
37746
|
-
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
38130
|
+
export declare type GraphStoreBatchContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
37747
38131
|
export declare type GraphStoreBatchFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
37748
38132
|
__typename?: 'GraphStoreBatchFocusAreaAssociatedToProjectConnection';
|
|
37749
38133
|
edges: Array<Maybe<GraphStoreBatchFocusAreaAssociatedToProjectEdge>>;
|
|
@@ -38854,10 +39238,14 @@ export declare type GraphStoreCreateTeamConnectedToContainerPayload = Payload &
|
|
|
38854
39238
|
};
|
|
38855
39239
|
export declare type GraphStoreCreateTeamConnectedToContainerRelationshipInput = {
|
|
38856
39240
|
from: Scalars['ID']['input'];
|
|
39241
|
+
relationshipMetadata?: InputMaybe<GraphStoreCreateTeamConnectedToContainerRelationshipMetadataInput>;
|
|
38857
39242
|
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
38858
39243
|
to: Scalars['ID']['input'];
|
|
38859
39244
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
38860
39245
|
};
|
|
39246
|
+
export declare type GraphStoreCreateTeamConnectedToContainerRelationshipMetadataInput = {
|
|
39247
|
+
createdFromAutocreate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
39248
|
+
};
|
|
38861
39249
|
export declare type GraphStoreCreateTestPerfhammerRelationshipInput = {
|
|
38862
39250
|
relationships: Array<GraphStoreCreateTestPerfhammerRelationshipRelationshipInput>;
|
|
38863
39251
|
};
|
|
@@ -38989,7 +39377,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
38989
39377
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
38990
39378
|
id: Scalars['ID']['output'];
|
|
38991
39379
|
};
|
|
38992
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39380
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
38993
39381
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
38994
39382
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
38995
39383
|
value: Scalars['Int']['output'];
|
|
@@ -39016,7 +39404,7 @@ export declare type GraphStoreCypherQueryResultRowItem = {
|
|
|
39016
39404
|
__typename?: 'GraphStoreCypherQueryResultRowItem';
|
|
39017
39405
|
key: Scalars['String']['output'];
|
|
39018
39406
|
value: Array<GraphStoreCypherQueryValueNode>;
|
|
39019
|
-
valueUnion
|
|
39407
|
+
valueUnion?: Maybe<GraphStoreCypherQueryResultRowItemValueUnion>;
|
|
39020
39408
|
};
|
|
39021
39409
|
export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject;
|
|
39022
39410
|
export declare type GraphStoreCypherQueryRowItemNode = {
|
|
@@ -39024,7 +39412,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
39024
39412
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
39025
39413
|
id: Scalars['ID']['output'];
|
|
39026
39414
|
};
|
|
39027
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39415
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39028
39416
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
39029
39417
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
39030
39418
|
value: Scalars['String']['output'];
|
|
@@ -39034,13 +39422,13 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
39034
39422
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
39035
39423
|
id: Scalars['ID']['output'];
|
|
39036
39424
|
};
|
|
39037
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39425
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39038
39426
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
39039
39427
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
39040
39428
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
39041
39429
|
id: Scalars['ID']['output'];
|
|
39042
39430
|
};
|
|
39043
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39431
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39044
39432
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
39045
39433
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
39046
39434
|
value: Scalars['Boolean']['output'];
|
|
@@ -39048,7 +39436,7 @@ export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
|
39048
39436
|
export declare type GraphStoreCypherQueryV2Column = {
|
|
39049
39437
|
__typename?: 'GraphStoreCypherQueryV2Column';
|
|
39050
39438
|
key: Scalars['String']['output'];
|
|
39051
|
-
value
|
|
39439
|
+
value?: Maybe<GraphStoreCypherQueryV2ResultRowItemValueUnion>;
|
|
39052
39440
|
};
|
|
39053
39441
|
export declare type GraphStoreCypherQueryV2Connection = {
|
|
39054
39442
|
__typename?: 'GraphStoreCypherQueryV2Connection';
|
|
@@ -39085,7 +39473,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
39085
39473
|
V2 = "V2",
|
|
39086
39474
|
V3 = "V3"
|
|
39087
39475
|
}
|
|
39088
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39476
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39089
39477
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
39090
39478
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
39091
39479
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -39442,6 +39830,9 @@ export declare type GraphStoreDeploymentAssociatedRepoSortInput = {
|
|
|
39442
39830
|
export declare type GraphStoreDeploymentContainsCommitSortInput = {
|
|
39443
39831
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39444
39832
|
};
|
|
39833
|
+
export declare type GraphStoreEntityHasTopicInferredEntitySortInput = {
|
|
39834
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39835
|
+
};
|
|
39445
39836
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
39446
39837
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39447
39838
|
};
|
|
@@ -39778,7 +40169,7 @@ export declare type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
39778
40169
|
data?: Maybe<GraphStoreFullContentReferencedEntityStartUnion>;
|
|
39779
40170
|
id: Scalars['ID']['output'];
|
|
39780
40171
|
};
|
|
39781
|
-
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
40172
|
+
export declare type GraphStoreFullContentReferencedEntityStartUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
39782
40173
|
export declare type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
39783
40174
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
39784
40175
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -45312,7 +45703,7 @@ export declare type GraphStoreSimplifiedContentReferencedEntityInverseEdge = {
|
|
|
45312
45703
|
lastUpdated: Scalars['DateTime']['output'];
|
|
45313
45704
|
node?: Maybe<GraphStoreSimplifiedContentReferencedEntityInverseUnion>;
|
|
45314
45705
|
};
|
|
45315
|
-
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
45706
|
+
export declare type GraphStoreSimplifiedContentReferencedEntityInverseUnion = ConfluenceBlogPost | ConfluencePage | DevOpsPullRequestDetails | ExternalPullRequest | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
45316
45707
|
export declare type GraphStoreSimplifiedContentReferencedEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue;
|
|
45317
45708
|
export declare type GraphStoreSimplifiedConversationHasMessageConnection = HasPageInfo & {
|
|
45318
45709
|
__typename?: 'GraphStoreSimplifiedConversationHasMessageConnection';
|
|
@@ -45426,6 +45817,34 @@ export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseEdge = {
|
|
|
45426
45817
|
};
|
|
45427
45818
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitInverseUnion = DeploymentSummary | ExternalDeployment;
|
|
45428
45819
|
export declare type GraphStoreSimplifiedDeploymentContainsCommitUnion = ExternalCommit;
|
|
45820
|
+
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityConnection = HasPageInfo & {
|
|
45821
|
+
__typename?: 'GraphStoreSimplifiedEntityHasTopicInferredEntityConnection';
|
|
45822
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityEdge>>>;
|
|
45823
|
+
pageInfo: PageInfo;
|
|
45824
|
+
};
|
|
45825
|
+
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityEdge = {
|
|
45826
|
+
__typename?: 'GraphStoreSimplifiedEntityHasTopicInferredEntityEdge';
|
|
45827
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45828
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45829
|
+
id: Scalars['ID']['output'];
|
|
45830
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45831
|
+
node?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityUnion>;
|
|
45832
|
+
};
|
|
45833
|
+
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityInverseConnection = HasPageInfo & {
|
|
45834
|
+
__typename?: 'GraphStoreSimplifiedEntityHasTopicInferredEntityInverseConnection';
|
|
45835
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityInverseEdge>>>;
|
|
45836
|
+
pageInfo: PageInfo;
|
|
45837
|
+
};
|
|
45838
|
+
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityInverseEdge = {
|
|
45839
|
+
__typename?: 'GraphStoreSimplifiedEntityHasTopicInferredEntityInverseEdge';
|
|
45840
|
+
createdAt: Scalars['DateTime']['output'];
|
|
45841
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
45842
|
+
id: Scalars['ID']['output'];
|
|
45843
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
45844
|
+
node?: Maybe<GraphStoreSimplifiedEntityHasTopicInferredEntityInverseUnion>;
|
|
45845
|
+
};
|
|
45846
|
+
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityInverseUnion = ConfluencePage;
|
|
45847
|
+
export declare type GraphStoreSimplifiedEntityHasTopicInferredEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
45429
45848
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityConnection = HasPageInfo & {
|
|
45430
45849
|
__typename?: 'GraphStoreSimplifiedEntityIsRelatedToEntityConnection';
|
|
45431
45850
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityEdge>>>;
|
|
@@ -49742,6 +50161,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseEdge
|
|
|
49742
50161
|
};
|
|
49743
50162
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49744
50163
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
50164
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceEmbedConnection = HasPageInfo & {
|
|
50165
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceEmbedConnection';
|
|
50166
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedEdge>>>;
|
|
50167
|
+
pageInfo: PageInfo;
|
|
50168
|
+
};
|
|
50169
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceEmbedEdge = {
|
|
50170
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceEmbedEdge';
|
|
50171
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50172
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50173
|
+
id: Scalars['ID']['output'];
|
|
50174
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50175
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedUnion>;
|
|
50176
|
+
};
|
|
50177
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseConnection = HasPageInfo & {
|
|
50178
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseConnection';
|
|
50179
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseEdge>>>;
|
|
50180
|
+
pageInfo: PageInfo;
|
|
50181
|
+
};
|
|
50182
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseEdge = {
|
|
50183
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseEdge';
|
|
50184
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50185
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50186
|
+
id: Scalars['ID']['output'];
|
|
50187
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50188
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseUnion>;
|
|
50189
|
+
};
|
|
50190
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50191
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceEmbedUnion = ConfluenceEmbed;
|
|
49745
50192
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageConnection = HasPageInfo & {
|
|
49746
50193
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageConnection';
|
|
49747
50194
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageEdge>>>;
|
|
@@ -50846,6 +51293,34 @@ export declare type GraphStoreSimplifiedUserOwnsPageInverseEdge = {
|
|
|
50846
51293
|
};
|
|
50847
51294
|
export declare type GraphStoreSimplifiedUserOwnsPageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50848
51295
|
export declare type GraphStoreSimplifiedUserOwnsPageUnion = ConfluencePage;
|
|
51296
|
+
export declare type GraphStoreSimplifiedUserReactionVideoConnection = HasPageInfo & {
|
|
51297
|
+
__typename?: 'GraphStoreSimplifiedUserReactionVideoConnection';
|
|
51298
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactionVideoEdge>>>;
|
|
51299
|
+
pageInfo: PageInfo;
|
|
51300
|
+
};
|
|
51301
|
+
export declare type GraphStoreSimplifiedUserReactionVideoEdge = {
|
|
51302
|
+
__typename?: 'GraphStoreSimplifiedUserReactionVideoEdge';
|
|
51303
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51304
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51305
|
+
id: Scalars['ID']['output'];
|
|
51306
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51307
|
+
node?: Maybe<GraphStoreSimplifiedUserReactionVideoUnion>;
|
|
51308
|
+
};
|
|
51309
|
+
export declare type GraphStoreSimplifiedUserReactionVideoInverseConnection = HasPageInfo & {
|
|
51310
|
+
__typename?: 'GraphStoreSimplifiedUserReactionVideoInverseConnection';
|
|
51311
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReactionVideoInverseEdge>>>;
|
|
51312
|
+
pageInfo: PageInfo;
|
|
51313
|
+
};
|
|
51314
|
+
export declare type GraphStoreSimplifiedUserReactionVideoInverseEdge = {
|
|
51315
|
+
__typename?: 'GraphStoreSimplifiedUserReactionVideoInverseEdge';
|
|
51316
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51317
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51318
|
+
id: Scalars['ID']['output'];
|
|
51319
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51320
|
+
node?: Maybe<GraphStoreSimplifiedUserReactionVideoInverseUnion>;
|
|
51321
|
+
};
|
|
51322
|
+
export declare type GraphStoreSimplifiedUserReactionVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51323
|
+
export declare type GraphStoreSimplifiedUserReactionVideoUnion = LoomVideo;
|
|
50849
51324
|
export declare type GraphStoreSimplifiedUserReportedIncidentConnection = HasPageInfo & {
|
|
50850
51325
|
__typename?: 'GraphStoreSimplifiedUserReportedIncidentConnection';
|
|
50851
51326
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserReportedIncidentEdge>>>;
|
|
@@ -52282,6 +52757,7 @@ export declare type GraphStoreTeamConnectedToContainerSortInput = {
|
|
|
52282
52757
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
52283
52758
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
52284
52759
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52760
|
+
relationship_createdFromAutocreate?: InputMaybe<GraphStoreSortInput>;
|
|
52285
52761
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
52286
52762
|
};
|
|
52287
52763
|
export declare type GraphStoreTeamOwnsComponentSortInput = {
|
|
@@ -52428,6 +52904,9 @@ export declare type GraphStoreUserCreatedConfluenceCommentSortInput = {
|
|
|
52428
52904
|
export declare type GraphStoreUserCreatedConfluenceDatabaseSortInput = {
|
|
52429
52905
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52430
52906
|
};
|
|
52907
|
+
export declare type GraphStoreUserCreatedConfluenceEmbedSortInput = {
|
|
52908
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52909
|
+
};
|
|
52431
52910
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
52432
52911
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52433
52912
|
};
|
|
@@ -52578,6 +53057,9 @@ export declare type GraphStoreUserOwnsFocusAreaSortInput = {
|
|
|
52578
53057
|
export declare type GraphStoreUserOwnsPageSortInput = {
|
|
52579
53058
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52580
53059
|
};
|
|
53060
|
+
export declare type GraphStoreUserReactionVideoSortInput = {
|
|
53061
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53062
|
+
};
|
|
52581
53063
|
export declare type GraphStoreUserReportedIncidentSortInput = {
|
|
52582
53064
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52583
53065
|
};
|
|
@@ -53130,12 +53612,14 @@ export declare type GrowthUnifiedProfileProductDetails = {
|
|
|
53130
53612
|
d0Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
53131
53613
|
d1to6Active?: Maybe<Scalars['Boolean']['output']>;
|
|
53132
53614
|
d1to6Eligible?: Maybe<Scalars['Boolean']['output']>;
|
|
53615
|
+
firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
|
|
53133
53616
|
isTrial?: Maybe<Scalars['Boolean']['output']>;
|
|
53134
53617
|
nbeRecommendation?: Maybe<GrowthUnifiedProfileProductNbe>;
|
|
53135
53618
|
productEdition?: Maybe<Scalars['String']['output']>;
|
|
53136
53619
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
53137
53620
|
productName?: Maybe<Scalars['String']['output']>;
|
|
53138
53621
|
provisionedAt?: Maybe<Scalars['String']['output']>;
|
|
53622
|
+
trialContext?: Maybe<GrowthUnifiedProfileTrialContext>;
|
|
53139
53623
|
};
|
|
53140
53624
|
export declare enum GrowthUnifiedProfileProductEdition {
|
|
53141
53625
|
Enterprise = "ENTERPRISE",
|
|
@@ -53195,6 +53679,21 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
53195
53679
|
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT",
|
|
53196
53680
|
SoftwareEngineering = "SOFTWARE_ENGINEERING"
|
|
53197
53681
|
}
|
|
53682
|
+
export declare type GrowthUnifiedProfileTrialContext = {
|
|
53683
|
+
__typename?: 'GrowthUnifiedProfileTrialContext';
|
|
53684
|
+
paymentDetailsOnFile?: Maybe<Scalars['Boolean']['output']>;
|
|
53685
|
+
trialEndTimeStamp?: Maybe<Scalars['String']['output']>;
|
|
53686
|
+
trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
|
|
53687
|
+
trialType?: Maybe<GrowthUnifiedProfileTrialType>;
|
|
53688
|
+
};
|
|
53689
|
+
export declare enum GrowthUnifiedProfileTrialTrigger {
|
|
53690
|
+
EditionParity = "EDITION_PARITY",
|
|
53691
|
+
ReverseTrial = "REVERSE_TRIAL"
|
|
53692
|
+
}
|
|
53693
|
+
export declare enum GrowthUnifiedProfileTrialType {
|
|
53694
|
+
DirectTrial = "DIRECT_TRIAL",
|
|
53695
|
+
ReverseTrial = "REVERSE_TRIAL"
|
|
53696
|
+
}
|
|
53198
53697
|
export declare type GrowthUnifiedProfileUserActivityContext = {
|
|
53199
53698
|
__typename?: 'GrowthUnifiedProfileUserActivityContext';
|
|
53200
53699
|
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileUserActivitySiteDetails>>>;
|
|
@@ -57352,8 +57851,14 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
|
57352
57851
|
__typename?: 'JiraBoardViewStatusColumn';
|
|
57353
57852
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
57354
57853
|
id: Scalars['ID']['output'];
|
|
57854
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
57355
57855
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
57356
57856
|
};
|
|
57857
|
+
export declare type JiraBoardViewStatusColumnMapping = {
|
|
57858
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
57859
|
+
name: Scalars['String']['input'];
|
|
57860
|
+
statusIds: Array<Scalars['ID']['input']>;
|
|
57861
|
+
};
|
|
57357
57862
|
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
57358
57863
|
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
57359
57864
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -58242,6 +58747,13 @@ export declare type JiraCmdbStatusType = {
|
|
|
58242
58747
|
name?: Maybe<Scalars['String']['output']>;
|
|
58243
58748
|
objectSchemaId?: Maybe<Scalars['String']['output']>;
|
|
58244
58749
|
};
|
|
58750
|
+
export declare enum JiraCollapsibleSection {
|
|
58751
|
+
Activity = "ACTIVITY",
|
|
58752
|
+
Attachments = "ATTACHMENTS",
|
|
58753
|
+
ChildWorkItem = "CHILD_WORK_ITEM",
|
|
58754
|
+
Description = "DESCRIPTION",
|
|
58755
|
+
LinkedWorkItem = "LINKED_WORK_ITEM"
|
|
58756
|
+
}
|
|
58245
58757
|
export declare type JiraColor = {
|
|
58246
58758
|
__typename?: 'JiraColor';
|
|
58247
58759
|
colorKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -58353,6 +58865,9 @@ export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldCon
|
|
|
58353
58865
|
name: Scalars['String']['output'];
|
|
58354
58866
|
type: Scalars['String']['output'];
|
|
58355
58867
|
};
|
|
58868
|
+
export declare enum JiraCommentThirdPartySource {
|
|
58869
|
+
Slack = "SLACK"
|
|
58870
|
+
}
|
|
58356
58871
|
export declare type JiraComponent = Node & {
|
|
58357
58872
|
__typename?: 'JiraComponent';
|
|
58358
58873
|
ari?: Maybe<Scalars['String']['output']>;
|
|
@@ -58975,6 +59490,7 @@ export declare type JiraCreateCustomBackgroundPayload = Payload & {
|
|
|
58975
59490
|
export declare type JiraCreateCustomFieldInput = {
|
|
58976
59491
|
cloudId: Scalars['ID']['input'];
|
|
58977
59492
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
59493
|
+
fieldFormatConfig?: InputMaybe<JiraFieldFormatConfigInput>;
|
|
58978
59494
|
name: Scalars['String']['input'];
|
|
58979
59495
|
options?: InputMaybe<Array<JiraCustomFieldOptionInput>>;
|
|
58980
59496
|
projectId: Scalars['String']['input'];
|
|
@@ -59158,6 +59674,7 @@ export declare type JiraCustomBackgroundEdge = {
|
|
|
59158
59674
|
node?: Maybe<JiraCustomBackground>;
|
|
59159
59675
|
};
|
|
59160
59676
|
export declare type JiraCustomFieldOptionInput = {
|
|
59677
|
+
color?: InputMaybe<JiraOptionColorInput>;
|
|
59161
59678
|
externalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
59162
59679
|
optionId?: InputMaybe<Scalars['Long']['input']>;
|
|
59163
59680
|
parentExternalUuid?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -59507,6 +60024,16 @@ export declare type JiraDeleteFormattingRulePayload = Payload & {
|
|
|
59507
60024
|
errors?: Maybe<Array<MutationError>>;
|
|
59508
60025
|
success: Scalars['Boolean']['output'];
|
|
59509
60026
|
};
|
|
60027
|
+
export declare type JiraDeleteGlobalCustomFieldsInput = {
|
|
60028
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
60029
|
+
};
|
|
60030
|
+
export declare type JiraDeleteGlobalCustomFieldsPayload = Payload & {
|
|
60031
|
+
__typename?: 'JiraDeleteGlobalCustomFieldsPayload';
|
|
60032
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60033
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
60034
|
+
success: Scalars['Boolean']['output'];
|
|
60035
|
+
tasks?: Maybe<Array<JiraFieldLongRunningTask>>;
|
|
60036
|
+
};
|
|
59510
60037
|
export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
59511
60038
|
__typename?: 'JiraDeleteIssueLinkPayload';
|
|
59512
60039
|
deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -60332,10 +60859,19 @@ export declare type JiraFieldEdge = {
|
|
|
60332
60859
|
node?: Maybe<JiraField>;
|
|
60333
60860
|
};
|
|
60334
60861
|
export declare type JiraFieldFormatConfig = JiraNumberFieldFormatConfig;
|
|
60862
|
+
export declare type JiraFieldFormatConfigInput = {
|
|
60863
|
+
jiraNumberFieldFormatConfigInput?: InputMaybe<JiraNumberFieldFormatConfigInput>;
|
|
60864
|
+
};
|
|
60335
60865
|
export declare type JiraFieldKeyValueInput = {
|
|
60336
60866
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
60337
60867
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
60338
60868
|
};
|
|
60869
|
+
export declare type JiraFieldLongRunningTask = {
|
|
60870
|
+
__typename?: 'JiraFieldLongRunningTask';
|
|
60871
|
+
fieldConfigId?: Maybe<Scalars['ID']['output']>;
|
|
60872
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
60873
|
+
task?: Maybe<JiraLongRunningTaskProgress>;
|
|
60874
|
+
};
|
|
60339
60875
|
export declare type JiraFieldNonEditableReason = {
|
|
60340
60876
|
__typename?: 'JiraFieldNonEditableReason';
|
|
60341
60877
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -60350,6 +60886,7 @@ export declare type JiraFieldOperation = {
|
|
|
60350
60886
|
};
|
|
60351
60887
|
export declare type JiraFieldOption = {
|
|
60352
60888
|
__typename?: 'JiraFieldOption';
|
|
60889
|
+
color?: Maybe<JiraColor>;
|
|
60353
60890
|
optionId?: Maybe<Scalars['Long']['output']>;
|
|
60354
60891
|
parentOptionId?: Maybe<Scalars['Long']['output']>;
|
|
60355
60892
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -60372,6 +60909,22 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
60372
60909
|
Allow = "ALLOW",
|
|
60373
60910
|
Exclude = "EXCLUDE"
|
|
60374
60911
|
}
|
|
60912
|
+
export declare type JiraFieldSearcherTemplate = {
|
|
60913
|
+
__typename?: 'JiraFieldSearcherTemplate';
|
|
60914
|
+
displayName: Scalars['String']['output'];
|
|
60915
|
+
searcherKey?: Maybe<Scalars['String']['output']>;
|
|
60916
|
+
};
|
|
60917
|
+
export declare type JiraFieldSearcherTemplateConnection = {
|
|
60918
|
+
__typename?: 'JiraFieldSearcherTemplateConnection';
|
|
60919
|
+
edges?: Maybe<Array<Maybe<JiraFieldSearcherTemplateEdge>>>;
|
|
60920
|
+
pageInfo: PageInfo;
|
|
60921
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
60922
|
+
};
|
|
60923
|
+
export declare type JiraFieldSearcherTemplateEdge = {
|
|
60924
|
+
__typename?: 'JiraFieldSearcherTemplateEdge';
|
|
60925
|
+
cursor: Scalars['String']['output'];
|
|
60926
|
+
node?: Maybe<JiraFieldSearcherTemplate>;
|
|
60927
|
+
};
|
|
60375
60928
|
export declare type JiraFieldSetPreferences = {
|
|
60376
60929
|
__typename?: 'JiraFieldSetPreferences';
|
|
60377
60930
|
width?: Maybe<Scalars['Int']['output']>;
|
|
@@ -60623,7 +61176,6 @@ export declare type JiraForgeExtension = {
|
|
|
60623
61176
|
installationId: Scalars['String']['output'];
|
|
60624
61177
|
license?: Maybe<JiraForgeExtensionLicense>;
|
|
60625
61178
|
moduleId?: Maybe<Scalars['ID']['output']>;
|
|
60626
|
-
overrides?: Maybe<Scalars['JSON']['output']>;
|
|
60627
61179
|
properties: Scalars['JSON']['output'];
|
|
60628
61180
|
scopes: Array<Scalars['String']['output']>;
|
|
60629
61181
|
type: Scalars['String']['output'];
|
|
@@ -61173,6 +61725,10 @@ export declare type JiraGroup = Node & {
|
|
|
61173
61725
|
id: Scalars['ID']['output'];
|
|
61174
61726
|
name: Scalars['String']['output'];
|
|
61175
61727
|
};
|
|
61728
|
+
export declare type JiraGroupByDropdownFilter = {
|
|
61729
|
+
projectId?: InputMaybe<Scalars['Long']['input']>;
|
|
61730
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
61731
|
+
};
|
|
61176
61732
|
export declare type JiraGroupConnection = {
|
|
61177
61733
|
__typename?: 'JiraGroupConnection';
|
|
61178
61734
|
edges?: Maybe<Array<Maybe<JiraGroupEdge>>>;
|
|
@@ -61915,6 +62471,7 @@ export declare type JiraIssueExportError = {
|
|
|
61915
62471
|
export declare type JiraIssueExportEvent = JiraIssueExportTaskCompleted | JiraIssueExportTaskProgress | JiraIssueExportTaskSubmitted | JiraIssueExportTaskTerminated;
|
|
61916
62472
|
export declare type JiraIssueExportInput = {
|
|
61917
62473
|
cloudId: Scalars['ID']['input'];
|
|
62474
|
+
excludeDoneWorkItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
61918
62475
|
exportType?: InputMaybe<JiraIssueExportType>;
|
|
61919
62476
|
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
61920
62477
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -62004,6 +62561,8 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
62004
62561
|
lastUsedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
62005
62562
|
name: Scalars['String']['output'];
|
|
62006
62563
|
plannedDeletionTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
62564
|
+
searcherTemplate?: Maybe<JiraFieldSearcherTemplate>;
|
|
62565
|
+
searcherTemplateOptions?: Maybe<JiraFieldSearcherTemplateConnection>;
|
|
62007
62566
|
trashedByUser?: Maybe<User>;
|
|
62008
62567
|
trashedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
62009
62568
|
type: JiraConfigFieldType;
|
|
@@ -62067,6 +62626,12 @@ export declare type JiraIssueFieldConfigDefaultFieldOptionsArgs = {
|
|
|
62067
62626
|
export declare type JiraIssueFieldConfigIsDefaultFieldOptionsCountOverLimitArgs = {
|
|
62068
62627
|
limit: Scalars['Int']['input'];
|
|
62069
62628
|
};
|
|
62629
|
+
export declare type JiraIssueFieldConfigSearcherTemplateOptionsArgs = {
|
|
62630
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62631
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
62632
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62633
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62634
|
+
};
|
|
62070
62635
|
export declare type JiraIssueFieldConfiguration = {
|
|
62071
62636
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
62072
62637
|
};
|
|
@@ -62849,6 +63414,10 @@ export declare type JiraIssueSearchViewInput = {
|
|
|
62849
63414
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
62850
63415
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
62851
63416
|
};
|
|
63417
|
+
export declare enum JiraIssueSearchViewLayout {
|
|
63418
|
+
Detail = "DETAIL",
|
|
63419
|
+
List = "LIST"
|
|
63420
|
+
}
|
|
62852
63421
|
export declare type JiraIssueSearchViewMetadata = {
|
|
62853
63422
|
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
62854
63423
|
filterId?: Maybe<Scalars['String']['output']>;
|
|
@@ -62889,6 +63458,7 @@ export declare type JiraIssueStreamHubEventPayloadProject = {
|
|
|
62889
63458
|
export declare type JiraIssueTransitionComment = {
|
|
62890
63459
|
__typename?: 'JiraIssueTransitionComment';
|
|
62891
63460
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
63461
|
+
defaultCommentType?: Maybe<JiraIssueTransitionCommentType>;
|
|
62892
63462
|
enableCannedResponses?: Maybe<Scalars['Boolean']['output']>;
|
|
62893
63463
|
enableCommentVisibility?: Maybe<Scalars['Boolean']['output']>;
|
|
62894
63464
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
@@ -63084,6 +63654,15 @@ export declare enum JiraIssueViewAttachmentPanelViewMode {
|
|
|
63084
63654
|
ListView = "LIST_VIEW",
|
|
63085
63655
|
StripView = "STRIP_VIEW"
|
|
63086
63656
|
}
|
|
63657
|
+
export declare type JiraIssueViewCollapsibleSection = {
|
|
63658
|
+
__typename?: 'JiraIssueViewCollapsibleSection';
|
|
63659
|
+
isCollapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
63660
|
+
section?: Maybe<JiraCollapsibleSection>;
|
|
63661
|
+
};
|
|
63662
|
+
export declare type JiraIssueViewCollapsibleSections = {
|
|
63663
|
+
__typename?: 'JiraIssueViewCollapsibleSections';
|
|
63664
|
+
sections?: Maybe<Array<Maybe<JiraIssueViewCollapsibleSection>>>;
|
|
63665
|
+
};
|
|
63087
63666
|
export declare type JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType = {
|
|
63088
63667
|
__typename?: 'JiraIssueViewPanelAutomationDiscoverabilityDismissedTemplateType';
|
|
63089
63668
|
dismissUntilDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -63103,6 +63682,17 @@ export declare enum JiraIssueViewTimestampDisplayMode {
|
|
|
63103
63682
|
Absolute = "ABSOLUTE",
|
|
63104
63683
|
Relative = "RELATIVE"
|
|
63105
63684
|
}
|
|
63685
|
+
export declare enum JiraIssueViewUserPreferenceLayoutType {
|
|
63686
|
+
Custom = "CUSTOM",
|
|
63687
|
+
Discussion = "DISCUSSION",
|
|
63688
|
+
Standard = "STANDARD",
|
|
63689
|
+
Wide = "WIDE"
|
|
63690
|
+
}
|
|
63691
|
+
export declare type JiraIssueViewUserPreferredLayout = {
|
|
63692
|
+
__typename?: 'JiraIssueViewUserPreferredLayout';
|
|
63693
|
+
layoutId?: Maybe<Scalars['String']['output']>;
|
|
63694
|
+
layoutType?: Maybe<JiraIssueViewUserPreferenceLayoutType>;
|
|
63695
|
+
};
|
|
63106
63696
|
export declare type JiraIssueWithScenario = {
|
|
63107
63697
|
__typename?: 'JiraIssueWithScenario';
|
|
63108
63698
|
errors?: Maybe<Array<QueryError>>;
|
|
@@ -63196,6 +63786,7 @@ export declare type JiraJourneyConfiguration = Node & {
|
|
|
63196
63786
|
triggerConfiguration?: Maybe<JiraJourneyTriggerConfiguration>;
|
|
63197
63787
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
63198
63788
|
updatedBy?: Maybe<User>;
|
|
63789
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63199
63790
|
version?: Maybe<Scalars['Long']['output']>;
|
|
63200
63791
|
};
|
|
63201
63792
|
export declare type JiraJourneyConfigurationConnection = {
|
|
@@ -63214,6 +63805,7 @@ export declare type JiraJourneyItem = JiraJourneyStatusDependency | JiraJourneyW
|
|
|
63214
63805
|
export declare type JiraJourneyItemCommon = {
|
|
63215
63806
|
id: Scalars['ID']['output'];
|
|
63216
63807
|
name?: Maybe<Scalars['String']['output']>;
|
|
63808
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63217
63809
|
};
|
|
63218
63810
|
export declare type JiraJourneyItemConfigurationInput = {
|
|
63219
63811
|
statusDependencyConfiguration?: InputMaybe<JiraJourneyStatusDependencyConfigurationInput>;
|
|
@@ -63222,6 +63814,7 @@ export declare type JiraJourneyItemConfigurationInput = {
|
|
|
63222
63814
|
export declare type JiraJourneyParentIssue = {
|
|
63223
63815
|
__typename?: 'JiraJourneyParentIssue';
|
|
63224
63816
|
project?: Maybe<JiraProject>;
|
|
63817
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63225
63818
|
value?: Maybe<JiraJourneyParentIssueValueType>;
|
|
63226
63819
|
};
|
|
63227
63820
|
export declare type JiraJourneyParentIssueInput = {
|
|
@@ -63242,6 +63835,7 @@ export declare enum JiraJourneyParentIssueType {
|
|
|
63242
63835
|
export declare type JiraJourneyParentIssueValueType = JiraServiceManagementRequestType;
|
|
63243
63836
|
export declare type JiraJourneyProjectSettings = {
|
|
63244
63837
|
__typename?: 'JiraJourneyProjectSettings';
|
|
63838
|
+
isJourneyEntitlementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
63245
63839
|
isJourneyFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
63246
63840
|
};
|
|
63247
63841
|
export declare type JiraJourneySettings = {
|
|
@@ -63263,6 +63857,7 @@ export declare type JiraJourneyStatusDependency = JiraJourneyItemCommon & {
|
|
|
63263
63857
|
statusIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
63264
63858
|
statusType?: Maybe<JiraJourneyStatusDependencyType>;
|
|
63265
63859
|
statuses?: Maybe<Array<JiraJourneyStatusDependencyStatus>>;
|
|
63860
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63266
63861
|
workItemIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
63267
63862
|
workItems?: Maybe<Array<JiraJourneyWorkItem>>;
|
|
63268
63863
|
};
|
|
@@ -63300,6 +63895,10 @@ export declare enum JiraJourneyTriggerType {
|
|
|
63300
63895
|
ParentIssueCreated = "PARENT_ISSUE_CREATED",
|
|
63301
63896
|
WorkdayIntegrationTriggered = "WORKDAY_INTEGRATION_TRIGGERED"
|
|
63302
63897
|
}
|
|
63898
|
+
export declare type JiraJourneyValidationError = {
|
|
63899
|
+
__typename?: 'JiraJourneyValidationError';
|
|
63900
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
63901
|
+
};
|
|
63303
63902
|
export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
63304
63903
|
__typename?: 'JiraJourneyWorkItem';
|
|
63305
63904
|
associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
|
|
@@ -63309,6 +63908,7 @@ export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
|
|
|
63309
63908
|
name?: Maybe<Scalars['String']['output']>;
|
|
63310
63909
|
project?: Maybe<JiraProject>;
|
|
63311
63910
|
requestType?: Maybe<JiraServiceManagementRequestType>;
|
|
63911
|
+
validationErrors?: Maybe<Array<JiraJourneyValidationError>>;
|
|
63312
63912
|
};
|
|
63313
63913
|
export declare type JiraJourneyWorkItemConfigurationInput = {
|
|
63314
63914
|
fieldValues?: InputMaybe<Array<InputMaybe<JiraJourneyWorkItemFieldValueKeyValuePairInput>>>;
|
|
@@ -64108,6 +64708,7 @@ export declare type JiraLongRunningTaskProgress = {
|
|
|
64108
64708
|
result?: Maybe<Scalars['String']['output']>;
|
|
64109
64709
|
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
64110
64710
|
status: JiraLongRunningTaskStatus;
|
|
64711
|
+
taskId?: Maybe<Scalars['String']['output']>;
|
|
64111
64712
|
};
|
|
64112
64713
|
export declare enum JiraLongRunningTaskStatus {
|
|
64113
64714
|
Cancelled = "CANCELLED",
|
|
@@ -65579,6 +66180,11 @@ export declare type JiraNumberFieldFormatConfig = {
|
|
|
65579
66180
|
formatStyle?: Maybe<JiraNumberFieldFormatStyle>;
|
|
65580
66181
|
formatUnit?: Maybe<Scalars['String']['output']>;
|
|
65581
66182
|
};
|
|
66183
|
+
export declare type JiraNumberFieldFormatConfigInput = {
|
|
66184
|
+
formatDecimals?: InputMaybe<Scalars['Int']['input']>;
|
|
66185
|
+
formatStyle: JiraNumberFieldFormatStyle;
|
|
66186
|
+
formatUnit?: InputMaybe<Scalars['String']['input']>;
|
|
66187
|
+
};
|
|
65582
66188
|
export declare enum JiraNumberFieldFormatStyle {
|
|
65583
66189
|
Currency = "CURRENCY",
|
|
65584
66190
|
Decimal = "DECIMAL",
|
|
@@ -66330,10 +66936,13 @@ export declare type JiraPlatformComment = JiraComment & Node & {
|
|
|
66330
66936
|
created: Scalars['DateTime']['output'];
|
|
66331
66937
|
id: Scalars['ID']['output'];
|
|
66332
66938
|
isDeleted?: Maybe<Scalars['Boolean']['output']>;
|
|
66939
|
+
isThirdPartySyncOn?: Maybe<Scalars['Boolean']['output']>;
|
|
66333
66940
|
issue?: Maybe<JiraIssue>;
|
|
66334
66941
|
issueCommentAri?: Maybe<Scalars['ID']['output']>;
|
|
66335
66942
|
permissionLevel?: Maybe<JiraPermissionLevel>;
|
|
66336
66943
|
richText?: Maybe<JiraRichText>;
|
|
66944
|
+
thirdPartyCommentSource?: Maybe<JiraCommentThirdPartySource>;
|
|
66945
|
+
thirdPartyLink?: Maybe<Scalars['URL']['output']>;
|
|
66337
66946
|
threadParentId?: Maybe<Scalars['ID']['output']>;
|
|
66338
66947
|
updateAuthor?: Maybe<User>;
|
|
66339
66948
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -66455,6 +67064,7 @@ export declare type JiraPlaybookStepOutputKeyValuePair = {
|
|
|
66455
67064
|
export declare type JiraPlaybookStepRun = Node & {
|
|
66456
67065
|
__typename?: 'JiraPlaybookStepRun';
|
|
66457
67066
|
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
67067
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
66458
67068
|
id: Scalars['ID']['output'];
|
|
66459
67069
|
issue?: Maybe<JiraIssue>;
|
|
66460
67070
|
playbookId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -67371,6 +67981,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
67371
67981
|
moreFavourites?: Maybe<JiraProjectConnection>;
|
|
67372
67982
|
moreRecents?: Maybe<JiraProjectConnection>;
|
|
67373
67983
|
mostRecent?: Maybe<JiraProject>;
|
|
67984
|
+
mostRecentFromHistory?: Maybe<JiraProject>;
|
|
67374
67985
|
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
67375
67986
|
recents?: Maybe<JiraProjectConnection>;
|
|
67376
67987
|
};
|
|
@@ -67595,6 +68206,7 @@ export declare type JiraQuery = {
|
|
|
67595
68206
|
recentQueues?: Maybe<JiraSearchableEntityConnection>;
|
|
67596
68207
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
67597
68208
|
reportsPage?: Maybe<JiraReportsPage>;
|
|
68209
|
+
requestTypeField?: Maybe<JiraJqlField>;
|
|
67598
68210
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
67599
68211
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
67600
68212
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -68442,6 +69054,9 @@ export declare type JiraQueryReportsPageArgs = {
|
|
|
68442
69054
|
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
68443
69055
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
68444
69056
|
};
|
|
69057
|
+
export declare type JiraQueryRequestTypeFieldArgs = {
|
|
69058
|
+
cloudId: Scalars['ID']['input'];
|
|
69059
|
+
};
|
|
68445
69060
|
export declare type JiraQueryRequestTypeTemplateByIdArgs = {
|
|
68446
69061
|
cloudId: Scalars['ID']['input'];
|
|
68447
69062
|
templateId: Scalars['ID']['input'];
|
|
@@ -70822,6 +71437,17 @@ export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
|
70822
71437
|
success: Scalars['Boolean']['output'];
|
|
70823
71438
|
view?: Maybe<JiraBoardView>;
|
|
70824
71439
|
};
|
|
71440
|
+
export declare type JiraSetBoardViewStatusColumnMappingInput = {
|
|
71441
|
+
columns: Array<JiraBoardViewStatusColumnMapping>;
|
|
71442
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
71443
|
+
viewId: Scalars['ID']['input'];
|
|
71444
|
+
};
|
|
71445
|
+
export declare type JiraSetBoardViewStatusColumnMappingPayload = Payload & {
|
|
71446
|
+
__typename?: 'JiraSetBoardViewStatusColumnMappingPayload';
|
|
71447
|
+
boardView?: Maybe<JiraBoardView>;
|
|
71448
|
+
errors?: Maybe<Array<MutationError>>;
|
|
71449
|
+
success: Scalars['Boolean']['output'];
|
|
71450
|
+
};
|
|
70825
71451
|
export declare type JiraSetBoardViewWorkflowSelectedInput = {
|
|
70826
71452
|
selectedWorkflowId: Scalars['ID']['input'];
|
|
70827
71453
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -70877,6 +71503,15 @@ export declare type JiraSetIssueSearchHideDoneItemsPayload = Payload & {
|
|
|
70877
71503
|
errors?: Maybe<Array<MutationError>>;
|
|
70878
71504
|
success: Scalars['Boolean']['output'];
|
|
70879
71505
|
};
|
|
71506
|
+
export declare type JiraSetIssueSearchViewLayoutInput = {
|
|
71507
|
+
viewId: Scalars['ID']['input'];
|
|
71508
|
+
viewLayout: JiraIssueSearchViewLayout;
|
|
71509
|
+
};
|
|
71510
|
+
export declare type JiraSetIssueSearchViewLayoutPayload = Payload & {
|
|
71511
|
+
__typename?: 'JiraSetIssueSearchViewLayoutPayload';
|
|
71512
|
+
errors?: Maybe<Array<MutationError>>;
|
|
71513
|
+
success: Scalars['Boolean']['output'];
|
|
71514
|
+
};
|
|
70880
71515
|
export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
|
|
70881
71516
|
__typename?: 'JiraSetMostRecentlyViewedBoardPayload';
|
|
70882
71517
|
board?: Maybe<JiraBoard>;
|
|
@@ -71331,14 +71966,23 @@ export declare type JiraSpreadsheetGroupByConfig = {
|
|
|
71331
71966
|
__typename?: 'JiraSpreadsheetGroupByConfig';
|
|
71332
71967
|
availableGroupByFieldOptions?: Maybe<JiraSpreadsheetGroupByFieldOptionConnection>;
|
|
71333
71968
|
groupByField?: Maybe<JiraField>;
|
|
71969
|
+
recentlyUsed?: Maybe<JiraSpreadsheetGroupByFieldOptionConnection>;
|
|
71334
71970
|
};
|
|
71335
71971
|
export declare type JiraSpreadsheetGroupByConfigAvailableGroupByFieldOptionsArgs = {
|
|
71336
71972
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
71337
71973
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
71974
|
+
filter?: InputMaybe<JiraGroupByDropdownFilter>;
|
|
71338
71975
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71339
71976
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
71340
71977
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
71341
71978
|
};
|
|
71979
|
+
export declare type JiraSpreadsheetGroupByConfigRecentlyUsedArgs = {
|
|
71980
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
71981
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
71982
|
+
filter?: InputMaybe<JiraGroupByDropdownFilter>;
|
|
71983
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71984
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
71985
|
+
};
|
|
71342
71986
|
export declare type JiraSpreadsheetGroupByFieldOptionConnection = {
|
|
71343
71987
|
__typename?: 'JiraSpreadsheetGroupByFieldOptionConnection';
|
|
71344
71988
|
edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupByFieldOptionEdge>>>;
|
|
@@ -72817,12 +73461,14 @@ export declare type JiraUserPreferences = {
|
|
|
72817
73461
|
issueViewActivityFeedSortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
72818
73462
|
issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
|
|
72819
73463
|
issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
|
|
73464
|
+
issueViewCollapsibleSectionsState?: Maybe<JiraIssueViewCollapsibleSections>;
|
|
72820
73465
|
issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
|
|
72821
73466
|
issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
|
|
72822
73467
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
72823
73468
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
|
|
72824
73469
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
72825
73470
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
73471
|
+
issueViewUserPreferredLayout?: Maybe<JiraIssueViewUserPreferredLayout>;
|
|
72826
73472
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
72827
73473
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
72828
73474
|
requestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
@@ -72835,6 +73481,9 @@ export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplat
|
|
|
72835
73481
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
72836
73482
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
72837
73483
|
};
|
|
73484
|
+
export declare type JiraUserPreferencesIssueViewCollapsibleSectionsStateArgs = {
|
|
73485
|
+
projectKey: Scalars['String']['input'];
|
|
73486
|
+
};
|
|
72838
73487
|
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
72839
73488
|
projectKey: Scalars['String']['input'];
|
|
72840
73489
|
};
|
|
@@ -75197,6 +75846,7 @@ export declare type KnowledgeDiscoveryBookmarkProperties = {
|
|
|
75197
75846
|
keyPhrase: Scalars['String']['output'];
|
|
75198
75847
|
lastModifiedTimestamp: Scalars['String']['output'];
|
|
75199
75848
|
lastModifierAccountId: Scalars['String']['output'];
|
|
75849
|
+
parentAdminhubBookmarkId?: Maybe<Scalars['ID']['output']>;
|
|
75200
75850
|
title: Scalars['String']['output'];
|
|
75201
75851
|
url: Scalars['String']['output'];
|
|
75202
75852
|
};
|
|
@@ -75447,6 +76097,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
75447
76097
|
searchUser?: Maybe<KnowledgeDiscoveryUserSearchResult>;
|
|
75448
76098
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
75449
76099
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
76100
|
+
zeroQueries?: Maybe<KnowledgeDiscoveryZeroQueriesResult>;
|
|
75450
76101
|
};
|
|
75451
76102
|
export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarkArgs = {
|
|
75452
76103
|
cloudId: Scalars['ID']['input'];
|
|
@@ -75546,6 +76197,9 @@ export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
|
75546
76197
|
id: Scalars['String']['input'];
|
|
75547
76198
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
75548
76199
|
};
|
|
76200
|
+
export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
76201
|
+
cloudId: Scalars['String']['input'];
|
|
76202
|
+
};
|
|
75549
76203
|
export declare type KnowledgeDiscoveryRelatedEntitiesResult = KnowledgeDiscoveryRelatedEntityConnection | QueryError;
|
|
75550
76204
|
export declare type KnowledgeDiscoveryRelatedEntityAction = {
|
|
75551
76205
|
action?: InputMaybe<KnowledgeDiscoveryRelatedEntityActionType>;
|
|
@@ -75682,6 +76336,11 @@ export declare type KnowledgeDiscoveryUsers = {
|
|
|
75682
76336
|
__typename?: 'KnowledgeDiscoveryUsers';
|
|
75683
76337
|
users?: Maybe<Array<Maybe<KnowledgeDiscoverySearchUser>>>;
|
|
75684
76338
|
};
|
|
76339
|
+
export declare type KnowledgeDiscoveryZeroQueries = {
|
|
76340
|
+
__typename?: 'KnowledgeDiscoveryZeroQueries';
|
|
76341
|
+
zeroQueries?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
76342
|
+
};
|
|
76343
|
+
export declare type KnowledgeDiscoveryZeroQueriesResult = KnowledgeDiscoveryZeroQueries | QueryError;
|
|
75685
76344
|
export declare enum KnowledgeGraphContentType {
|
|
75686
76345
|
Blogpost = "BLOGPOST",
|
|
75687
76346
|
Page = "PAGE"
|
|
@@ -75958,6 +76617,7 @@ export declare type LogQueryInput = {
|
|
|
75958
76617
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
75959
76618
|
moduleType?: InputMaybe<Scalars['String']['input']>;
|
|
75960
76619
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
76620
|
+
runtime?: InputMaybe<Scalars['String']['input']>;
|
|
75961
76621
|
traceId?: InputMaybe<Scalars['String']['input']>;
|
|
75962
76622
|
};
|
|
75963
76623
|
export declare type LookAndFeel = {
|
|
@@ -76175,6 +76835,8 @@ export declare enum LoomUserStatus {
|
|
|
76175
76835
|
export declare type LoomVideo = Node & {
|
|
76176
76836
|
__typename?: 'LoomVideo';
|
|
76177
76837
|
collaborators?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
76838
|
+
commentCount?: Maybe<Scalars['Int']['output']>;
|
|
76839
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
76178
76840
|
description?: Maybe<Scalars['String']['output']>;
|
|
76179
76841
|
id: Scalars['ID']['output'];
|
|
76180
76842
|
isArchived: Scalars['Boolean']['output'];
|
|
@@ -76184,16 +76846,30 @@ export declare type LoomVideo = Node & {
|
|
|
76184
76846
|
owner?: Maybe<User>;
|
|
76185
76847
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
76186
76848
|
playableDuration?: Maybe<Scalars['Float']['output']>;
|
|
76849
|
+
reactionCount?: Maybe<Scalars['Int']['output']>;
|
|
76187
76850
|
sourceDuration?: Maybe<Scalars['Float']['output']>;
|
|
76851
|
+
thumbnails?: Maybe<LoomVideoDefaultThumbnailsSources>;
|
|
76188
76852
|
transcript?: Maybe<LoomTranscript>;
|
|
76189
76853
|
transcriptLanguage?: Maybe<LoomTranscriptLanguage>;
|
|
76854
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
76190
76855
|
url: Scalars['String']['output'];
|
|
76856
|
+
viewCounts?: Maybe<LoomVideoViewCounts>;
|
|
76857
|
+
};
|
|
76858
|
+
export declare type LoomVideoDefaultThumbnailsSources = {
|
|
76859
|
+
__typename?: 'LoomVideoDefaultThumbnailsSources';
|
|
76860
|
+
default?: Maybe<Scalars['String']['output']>;
|
|
76861
|
+
static?: Maybe<Scalars['String']['output']>;
|
|
76191
76862
|
};
|
|
76192
76863
|
export declare type LoomVideoDurations = {
|
|
76193
76864
|
__typename?: 'LoomVideoDurations';
|
|
76194
76865
|
playableDuration?: Maybe<Scalars['Float']['output']>;
|
|
76195
76866
|
sourceDuration?: Maybe<Scalars['Float']['output']>;
|
|
76196
76867
|
};
|
|
76868
|
+
export declare type LoomVideoViewCounts = {
|
|
76869
|
+
__typename?: 'LoomVideoViewCounts';
|
|
76870
|
+
distinct?: Maybe<Scalars['Int']['output']>;
|
|
76871
|
+
total?: Maybe<Scalars['Int']['output']>;
|
|
76872
|
+
};
|
|
76197
76873
|
export declare type LpCertSort = {
|
|
76198
76874
|
sortDirection?: InputMaybe<SortDirection>;
|
|
76199
76875
|
sortField?: InputMaybe<LpCertSortField>;
|
|
@@ -76313,11 +76989,19 @@ export declare type LpLearnerCoursesArgs = {
|
|
|
76313
76989
|
export declare type LpLearnerData = {
|
|
76314
76990
|
__typename?: 'LpLearnerData';
|
|
76315
76991
|
learnerByAtlassianId?: Maybe<LpLearner>;
|
|
76992
|
+
learnersByAtlassianIds?: Maybe<Array<Maybe<LpLearner>>>;
|
|
76993
|
+
learnersByIds?: Maybe<Array<Maybe<LpLearner>>>;
|
|
76316
76994
|
node?: Maybe<Node>;
|
|
76317
76995
|
};
|
|
76318
76996
|
export declare type LpLearnerDataLearnerByAtlassianIdArgs = {
|
|
76319
76997
|
atlassianId: Scalars['String']['input'];
|
|
76320
76998
|
};
|
|
76999
|
+
export declare type LpLearnerDataLearnersByAtlassianIdsArgs = {
|
|
77000
|
+
atlassianIds: Array<Scalars['String']['input']>;
|
|
77001
|
+
};
|
|
77002
|
+
export declare type LpLearnerDataLearnersByIdsArgs = {
|
|
77003
|
+
ids: Array<Scalars['ID']['input']>;
|
|
77004
|
+
};
|
|
76321
77005
|
export declare type LpLearnerDataNodeArgs = {
|
|
76322
77006
|
id: Scalars['ID']['input'];
|
|
76323
77007
|
};
|
|
@@ -76341,10 +77025,6 @@ export declare type LpQueryError = Node & {
|
|
|
76341
77025
|
identifier?: Maybe<Scalars['ID']['output']>;
|
|
76342
77026
|
message?: Maybe<Scalars['String']['output']>;
|
|
76343
77027
|
};
|
|
76344
|
-
export declare enum LpSortOrder {
|
|
76345
|
-
Asc = "ASC",
|
|
76346
|
-
Desc = "DESC"
|
|
76347
|
-
}
|
|
76348
77028
|
export declare type Macro = {
|
|
76349
77029
|
__typename?: 'Macro';
|
|
76350
77030
|
adf: Scalars['String']['output'];
|
|
@@ -76653,8 +77333,8 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
76653
77333
|
appKey: Scalars['ID']['output'];
|
|
76654
77334
|
appSoftwareId: Scalars['ID']['output'];
|
|
76655
77335
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
77336
|
+
hasActiveCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76656
77337
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76657
|
-
hasCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76658
77338
|
hasDecoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76659
77339
|
hasPublicVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
76660
77340
|
hosting: MarketplaceConsoleHosting;
|
|
@@ -81404,6 +82084,7 @@ export declare type Mutation = {
|
|
|
81404
82084
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
81405
82085
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
81406
82086
|
agentStudio_updateCustomAction?: Maybe<AgentStudioUpdateCustomActionPayload>;
|
|
82087
|
+
agentStudio_updateCustomActionMappingsForContainer?: Maybe<AgentStudioUpdateCustomActionMappingsPayload>;
|
|
81407
82088
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
81408
82089
|
appStorage?: Maybe<AppStorageMutation>;
|
|
81409
82090
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -81423,6 +82104,8 @@ export declare type Mutation = {
|
|
|
81423
82104
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
81424
82105
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
81425
82106
|
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
82107
|
+
channelPlatform_createAttendee?: Maybe<ChannelPlatformConnectionData>;
|
|
82108
|
+
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
81426
82109
|
channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
|
|
81427
82110
|
channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
|
|
81428
82111
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
@@ -81722,6 +82405,7 @@ export declare type Mutation = {
|
|
|
81722
82405
|
deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
|
|
81723
82406
|
devAi?: Maybe<DevAiMutations>;
|
|
81724
82407
|
devOps?: Maybe<DevOpsMutation>;
|
|
82408
|
+
devai_archiveTechnicalPlannerJob?: Maybe<DevAiArchivedTechnicalPlannerJobPayload>;
|
|
81725
82409
|
devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
|
|
81726
82410
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
81727
82411
|
devai_createFlow?: Maybe<DevAiFlowSessionCreatePayload>;
|
|
@@ -81769,6 +82453,7 @@ export declare type Mutation = {
|
|
|
81769
82453
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
81770
82454
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
81771
82455
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
82456
|
+
jira_deleteGlobalCustomFields?: Maybe<JiraDeleteGlobalCustomFieldsPayload>;
|
|
81772
82457
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
81773
82458
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
81774
82459
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
@@ -81784,8 +82469,10 @@ export declare type Mutation = {
|
|
|
81784
82469
|
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
81785
82470
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
81786
82471
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
82472
|
+
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
81787
82473
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
81788
82474
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
82475
|
+
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
81789
82476
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
81790
82477
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
81791
82478
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
@@ -81817,6 +82504,8 @@ export declare type Mutation = {
|
|
|
81817
82504
|
newPage?: Maybe<NewPagePayload>;
|
|
81818
82505
|
notifications?: Maybe<InfluentsNotificationMutation>;
|
|
81819
82506
|
notifyUsersOnFirstView?: Maybe<NotificationResponsePayload>;
|
|
82507
|
+
offlineUserAuthToken?: Maybe<OfflineUserAuthTokenResponse>;
|
|
82508
|
+
offlineUserAuthTokenForExtension?: Maybe<OfflineUserAuthTokenResponse>;
|
|
81820
82509
|
openUpSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
81821
82510
|
partnerEarlyAccess?: Maybe<PeapMutationApi>;
|
|
81822
82511
|
planModeCardCreate?: Maybe<CreateCardsOutput>;
|
|
@@ -81915,10 +82604,14 @@ export declare type Mutation = {
|
|
|
81915
82604
|
spf_updateDependencyOwner?: Maybe<SpfUpdateDependencyPayload>;
|
|
81916
82605
|
spf_updateDependencyPriority?: Maybe<SpfUpdateDependencyPayload>;
|
|
81917
82606
|
spf_updateDependencyReceivingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
82607
|
+
spf_updateDependencyRequester?: Maybe<SpfUpdateDependencyPayload>;
|
|
81918
82608
|
spf_updateDependencyRequestingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
81919
82609
|
spf_updateDependencyStatus?: Maybe<SpfUpdateDependencyPayload>;
|
|
81920
82610
|
spf_updateDependencyTargetDate?: Maybe<SpfUpdateDependencyPayload>;
|
|
81921
82611
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
82612
|
+
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
82613
|
+
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
82614
|
+
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
81922
82615
|
startSprint?: Maybe<SprintResponse>;
|
|
81923
82616
|
subscribeToApp?: Maybe<AppSubscribePayload>;
|
|
81924
82617
|
team?: Maybe<TeamMutation>;
|
|
@@ -82060,6 +82753,11 @@ export declare type MutationAgentStudio_UpdateCustomActionArgs = {
|
|
|
82060
82753
|
id: Scalars['ID']['input'];
|
|
82061
82754
|
input: AgentStudioUpdateCustomActionInput;
|
|
82062
82755
|
};
|
|
82756
|
+
export declare type MutationAgentStudio_UpdateCustomActionMappingsForContainerArgs = {
|
|
82757
|
+
cloudId: Scalars['String']['input'];
|
|
82758
|
+
containerId: Scalars['String']['input'];
|
|
82759
|
+
customActionIds: Array<Scalars['ID']['input']>;
|
|
82760
|
+
};
|
|
82063
82761
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
82064
82762
|
input: ApplyPolarisProjectTemplateInput;
|
|
82065
82763
|
};
|
|
@@ -82113,6 +82811,13 @@ export declare type MutationChannelPlatform_AssignAgentToContactArgs = {
|
|
|
82113
82811
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
82114
82812
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
82115
82813
|
};
|
|
82814
|
+
export declare type MutationChannelPlatform_CreateAttendeeArgs = {
|
|
82815
|
+
meetingId?: InputMaybe<Scalars['String']['input']>;
|
|
82816
|
+
};
|
|
82817
|
+
export declare type MutationChannelPlatform_CreateMeetingDetailsArgs = {
|
|
82818
|
+
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
82819
|
+
requestUuid?: InputMaybe<Scalars['String']['input']>;
|
|
82820
|
+
};
|
|
82116
82821
|
export declare type MutationChannelPlatform_CreateQueuesArgs = {
|
|
82117
82822
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
82118
82823
|
hoursOfOperationId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -83089,6 +83794,10 @@ export declare type MutationDeleteTemplateArgs = {
|
|
|
83089
83794
|
export declare type MutationDeleteWebTriggerUrlArgs = {
|
|
83090
83795
|
id: Scalars['ID']['input'];
|
|
83091
83796
|
};
|
|
83797
|
+
export declare type MutationDevai_ArchiveTechnicalPlannerJobArgs = {
|
|
83798
|
+
cloudId: Scalars['ID']['input'];
|
|
83799
|
+
jobId: Scalars['ID']['input'];
|
|
83800
|
+
};
|
|
83092
83801
|
export declare type MutationDevai_CompleteFlowSessionArgs = {
|
|
83093
83802
|
id: Scalars['ID']['input'];
|
|
83094
83803
|
};
|
|
@@ -83223,6 +83932,10 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
83223
83932
|
export declare type MutationJira_DeleteCustomBackgroundArgs = {
|
|
83224
83933
|
input: JiraProjectDeleteCustomBackgroundInput;
|
|
83225
83934
|
};
|
|
83935
|
+
export declare type MutationJira_DeleteGlobalCustomFieldsArgs = {
|
|
83936
|
+
cloudId: Scalars['ID']['input'];
|
|
83937
|
+
input: JiraDeleteGlobalCustomFieldsInput;
|
|
83938
|
+
};
|
|
83226
83939
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
83227
83940
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
83228
83941
|
};
|
|
@@ -83269,12 +83982,18 @@ export declare type MutationJira_SetBoardViewFilterArgs = {
|
|
|
83269
83982
|
export declare type MutationJira_SetBoardViewGroupByArgs = {
|
|
83270
83983
|
input: JiraSetBoardViewGroupByInput;
|
|
83271
83984
|
};
|
|
83985
|
+
export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
83986
|
+
input: JiraSetBoardViewStatusColumnMappingInput;
|
|
83987
|
+
};
|
|
83272
83988
|
export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
83273
83989
|
input: JiraSetBoardViewWorkflowSelectedInput;
|
|
83274
83990
|
};
|
|
83275
83991
|
export declare type MutationJira_SetIssueSearchHideDoneItemsArgs = {
|
|
83276
83992
|
input: JiraSetIssueSearchHideDoneItemsInput;
|
|
83277
83993
|
};
|
|
83994
|
+
export declare type MutationJira_SetIssueSearchViewLayoutArgs = {
|
|
83995
|
+
input: JiraSetIssueSearchViewLayoutInput;
|
|
83996
|
+
};
|
|
83278
83997
|
export declare type MutationJira_SetViewFilterArgs = {
|
|
83279
83998
|
input: JiraSetViewFilterInput;
|
|
83280
83999
|
};
|
|
@@ -83347,6 +84066,12 @@ export declare type MutationNewPageArgs = {
|
|
|
83347
84066
|
export declare type MutationNotifyUsersOnFirstViewArgs = {
|
|
83348
84067
|
contentId: Scalars['ID']['input'];
|
|
83349
84068
|
};
|
|
84069
|
+
export declare type MutationOfflineUserAuthTokenArgs = {
|
|
84070
|
+
input: OfflineUserAuthTokenInput;
|
|
84071
|
+
};
|
|
84072
|
+
export declare type MutationOfflineUserAuthTokenForExtensionArgs = {
|
|
84073
|
+
input: OfflineUserAuthTokenForExtensionInput;
|
|
84074
|
+
};
|
|
83350
84075
|
export declare type MutationOpenUpSpacePermissionsArgs = {
|
|
83351
84076
|
spaceKey: Scalars['String']['input'];
|
|
83352
84077
|
};
|
|
@@ -83653,6 +84378,9 @@ export declare type MutationSpf_UpdateDependencyPriorityArgs = {
|
|
|
83653
84378
|
export declare type MutationSpf_UpdateDependencyReceivingTeamArgs = {
|
|
83654
84379
|
input: SpfUpdateDependencyReceivingTeamInput;
|
|
83655
84380
|
};
|
|
84381
|
+
export declare type MutationSpf_UpdateDependencyRequesterArgs = {
|
|
84382
|
+
input: SpfUpdateDependencyRequesterInput;
|
|
84383
|
+
};
|
|
83656
84384
|
export declare type MutationSpf_UpdateDependencyRequestingTeamArgs = {
|
|
83657
84385
|
input: SpfUpdateDependencyRequestingTeamInput;
|
|
83658
84386
|
};
|
|
@@ -83665,6 +84393,15 @@ export declare type MutationSpf_UpdateDependencyTargetDateArgs = {
|
|
|
83665
84393
|
export declare type MutationSplitIssueArgs = {
|
|
83666
84394
|
input?: InputMaybe<SplitIssueInput>;
|
|
83667
84395
|
};
|
|
84396
|
+
export declare type MutationStakeholderComms_CreateStakeholderArgs = {
|
|
84397
|
+
stakeholder: StakeholderCommsCreateStakeholderInput;
|
|
84398
|
+
};
|
|
84399
|
+
export declare type MutationStakeholderComms_RemoveStakeholderAssignmentArgs = {
|
|
84400
|
+
stakeholderAssignmentInput: StakeholderCommsStakeholderAssignmentIdInput;
|
|
84401
|
+
};
|
|
84402
|
+
export declare type MutationStakeholderComms_UpdateStakeholderArgs = {
|
|
84403
|
+
updateStakeholderInput: StakeholderCommsUpdateStakeholderInput;
|
|
84404
|
+
};
|
|
83668
84405
|
export declare type MutationStartSprintArgs = {
|
|
83669
84406
|
input?: InputMaybe<StartSprintInput>;
|
|
83670
84407
|
};
|
|
@@ -84290,6 +85027,21 @@ export declare type OAuthClientsScopeDetails = {
|
|
|
84290
85027
|
description?: Maybe<Scalars['String']['output']>;
|
|
84291
85028
|
key: Scalars['String']['output'];
|
|
84292
85029
|
};
|
|
85030
|
+
export declare type OfflineUserAuthTokenForExtensionInput = {
|
|
85031
|
+
contextIds: Array<Scalars['ID']['input']>;
|
|
85032
|
+
extensionId: Scalars['ID']['input'];
|
|
85033
|
+
userId: Scalars['String']['input'];
|
|
85034
|
+
};
|
|
85035
|
+
export declare type OfflineUserAuthTokenInput = {
|
|
85036
|
+
contextIds: Array<Scalars['ID']['input']>;
|
|
85037
|
+
userId: Scalars['String']['input'];
|
|
85038
|
+
};
|
|
85039
|
+
export declare type OfflineUserAuthTokenResponse = Payload & {
|
|
85040
|
+
__typename?: 'OfflineUserAuthTokenResponse';
|
|
85041
|
+
authToken?: Maybe<AuthToken>;
|
|
85042
|
+
errors?: Maybe<Array<MutationError>>;
|
|
85043
|
+
success: Scalars['Boolean']['output'];
|
|
85044
|
+
};
|
|
84293
85045
|
export declare type OnboardingState = {
|
|
84294
85046
|
__typename?: 'OnboardingState';
|
|
84295
85047
|
key: Scalars['String']['output'];
|
|
@@ -86990,6 +87742,7 @@ export declare type Query = {
|
|
|
86990
87742
|
contentVersionHistory?: Maybe<ContentVersionHistoryConnection>;
|
|
86991
87743
|
contentWatchers?: Maybe<PaginatedPersonList>;
|
|
86992
87744
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
87745
|
+
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
86993
87746
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
86994
87747
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
86995
87748
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
@@ -87175,7 +87928,7 @@ export declare type Query = {
|
|
|
87175
87928
|
loom_settings?: Maybe<LoomSettings>;
|
|
87176
87929
|
loom_space?: Maybe<LoomSpace>;
|
|
87177
87930
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
87178
|
-
loom_spacesSearch
|
|
87931
|
+
loom_spacesSearch?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
87179
87932
|
loom_video?: Maybe<LoomVideo>;
|
|
87180
87933
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
87181
87934
|
loom_videos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
@@ -87328,9 +88081,12 @@ export declare type Query = {
|
|
|
87328
88081
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
87329
88082
|
spf_dependencies?: Maybe<SpfDependencyConnection>;
|
|
87330
88083
|
spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
|
|
87331
|
-
spf_dependency?: Maybe<
|
|
88084
|
+
spf_dependency?: Maybe<SpfDependencyResult>;
|
|
87332
88085
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
87333
88086
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
88087
|
+
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
88088
|
+
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
88089
|
+
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
87334
88090
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
87335
88091
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
87336
88092
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -88873,6 +89629,15 @@ export declare type QueryConvoai_JiraEchoAiFeatureArgs = {
|
|
|
88873
89629
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
88874
89630
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
88875
89631
|
};
|
|
89632
|
+
export declare type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
89633
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89634
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
89635
|
+
cloudId: Scalars['ID']['input'];
|
|
89636
|
+
experience: Scalars['String']['input'];
|
|
89637
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89638
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
89639
|
+
workItemInput: ConvoAiJiraSimilarWorkItemsInput;
|
|
89640
|
+
};
|
|
88876
89641
|
export declare type QueryCountGroupByEventNameArgs = {
|
|
88877
89642
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
88878
89643
|
eventName: Array<AnalyticsEventName>;
|
|
@@ -89089,7 +89854,7 @@ export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
|
|
|
89089
89854
|
statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
|
|
89090
89855
|
};
|
|
89091
89856
|
export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
89092
|
-
atlassianAccountId
|
|
89857
|
+
atlassianAccountId?: InputMaybe<Scalars['ID']['input']>;
|
|
89093
89858
|
cloudId: Scalars['ID']['input'];
|
|
89094
89859
|
};
|
|
89095
89860
|
export declare type QueryDevai_RovoDevAgentsWorkspaceArgs = {
|
|
@@ -90091,6 +90856,15 @@ export declare type QuerySqlSlowQueryLogsArgs = {
|
|
|
90091
90856
|
interval: QueryInterval;
|
|
90092
90857
|
queryType: Array<QueryType>;
|
|
90093
90858
|
};
|
|
90859
|
+
export declare type QueryStakeholderComms_GetAssignmentsByStakeholderArgs = {
|
|
90860
|
+
paginatedAssignmentByStakeholderIdInput: StakeholderCommsPaginatedAssignmentByStakeholderInput;
|
|
90861
|
+
};
|
|
90862
|
+
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
90863
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
90864
|
+
};
|
|
90865
|
+
export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
|
|
90866
|
+
paginatedStakeholderInput: StakeholderCommsPaginatedStakeholderInput;
|
|
90867
|
+
};
|
|
90094
90868
|
export declare type QueryStalePagesArgs = {
|
|
90095
90869
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
90096
90870
|
includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -90383,13 +91157,23 @@ export declare type RadarConnector = {
|
|
|
90383
91157
|
connectorId: Scalars['ID']['output'];
|
|
90384
91158
|
connectorName?: Maybe<Scalars['String']['output']>;
|
|
90385
91159
|
connectorType?: Maybe<Scalars['String']['output']>;
|
|
91160
|
+
hasData?: Maybe<Scalars['Boolean']['output']>;
|
|
90386
91161
|
id: Scalars['ID']['output'];
|
|
90387
91162
|
isEnabled: Scalars['Boolean']['output'];
|
|
90388
91163
|
isHealthy?: Maybe<Scalars['Boolean']['output']>;
|
|
91164
|
+
type?: Maybe<RadarConnectorType>;
|
|
90389
91165
|
};
|
|
91166
|
+
export declare enum RadarConnectorType {
|
|
91167
|
+
Csv = "CSV",
|
|
91168
|
+
Workday = "WORKDAY"
|
|
91169
|
+
}
|
|
90390
91170
|
export declare type RadarConnectorsInput = {
|
|
90391
91171
|
connectorId: Scalars['ID']['input'];
|
|
91172
|
+
connectorName?: InputMaybe<Scalars['String']['input']>;
|
|
91173
|
+
connectorType?: InputMaybe<Scalars['String']['input']>;
|
|
91174
|
+
hasData?: InputMaybe<Scalars['Boolean']['input']>;
|
|
90392
91175
|
isEnabled: Scalars['Boolean']['input'];
|
|
91176
|
+
type?: InputMaybe<RadarConnectorType>;
|
|
90393
91177
|
};
|
|
90394
91178
|
export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
|
|
90395
91179
|
__typename?: 'RadarCustomFieldDefinition';
|
|
@@ -92310,6 +93094,7 @@ export declare enum Scope {
|
|
|
92310
93094
|
PullRequest = "PULL_REQUEST",
|
|
92311
93095
|
PullRequestWrite = "PULL_REQUEST_WRITE",
|
|
92312
93096
|
ReadAccount = "READ_ACCOUNT",
|
|
93097
|
+
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
92313
93098
|
ReadCompassAttentionItem = "READ_COMPASS_ATTENTION_ITEM",
|
|
92314
93099
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
92315
93100
|
ReadCompassEvent = "READ_COMPASS_EVENT",
|
|
@@ -92746,6 +93531,7 @@ export declare type SearchL2FeatureProvider = {
|
|
|
92746
93531
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
92747
93532
|
};
|
|
92748
93533
|
export declare type SearchLayerDefinition = {
|
|
93534
|
+
abTestId?: InputMaybe<Scalars['String']['input']>;
|
|
92749
93535
|
entity?: InputMaybe<Scalars['String']['input']>;
|
|
92750
93536
|
layerId?: InputMaybe<Scalars['String']['input']>;
|
|
92751
93537
|
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -95355,6 +96141,7 @@ export declare type SmartsRecommendedObject = {
|
|
|
95355
96141
|
__typename?: 'SmartsRecommendedObject';
|
|
95356
96142
|
id: Scalars['ID']['output'];
|
|
95357
96143
|
object?: Maybe<SmartsRecommendedObjectData>;
|
|
96144
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
95358
96145
|
score?: Maybe<Scalars['Float']['output']>;
|
|
95359
96146
|
};
|
|
95360
96147
|
export declare type SmartsRecommendedObjectData = ConfluenceBlogPost | ConfluencePage;
|
|
@@ -96155,11 +96942,12 @@ export declare type SpfAttachRelatedContentPayload = Payload & {
|
|
|
96155
96942
|
};
|
|
96156
96943
|
export declare type SpfComment = {
|
|
96157
96944
|
__typename?: 'SpfComment';
|
|
96158
|
-
createdAt
|
|
96945
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96159
96946
|
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
96160
96947
|
data: Scalars['String']['output'];
|
|
96948
|
+
dependencyId: Scalars['String']['output'];
|
|
96161
96949
|
id: Scalars['ID']['output'];
|
|
96162
|
-
updatedAt
|
|
96950
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96163
96951
|
};
|
|
96164
96952
|
export declare type SpfCommentConnection = {
|
|
96165
96953
|
__typename?: 'SpfCommentConnection';
|
|
@@ -96170,8 +96958,9 @@ export declare type SpfCommentConnection = {
|
|
|
96170
96958
|
export declare type SpfCommentEdge = {
|
|
96171
96959
|
__typename?: 'SpfCommentEdge';
|
|
96172
96960
|
cursor: Scalars['String']['output'];
|
|
96173
|
-
node?: Maybe<
|
|
96961
|
+
node?: Maybe<SpfCommentResult>;
|
|
96174
96962
|
};
|
|
96963
|
+
export declare type SpfCommentResult = QueryError | SpfComment;
|
|
96175
96964
|
export declare type SpfCreateCommentInput = {
|
|
96176
96965
|
data: Scalars['String']['input'];
|
|
96177
96966
|
dependencyId: Scalars['ID']['input'];
|
|
@@ -96185,7 +96974,7 @@ export declare type SpfCreateCommentPayload = Payload & {
|
|
|
96185
96974
|
export declare type SpfCreateDependencyInput = {
|
|
96186
96975
|
cloudId: Scalars['ID']['input'];
|
|
96187
96976
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
96188
|
-
impactedWorkId
|
|
96977
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
96189
96978
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
96190
96979
|
name: Scalars['String']['input'];
|
|
96191
96980
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96213,13 +97002,13 @@ export declare type SpfDeleteDependencyPayload = Payload & {
|
|
|
96213
97002
|
export declare type SpfDependency = Node & {
|
|
96214
97003
|
__typename?: 'SpfDependency';
|
|
96215
97004
|
comments?: Maybe<SpfCommentConnection>;
|
|
96216
|
-
createdAt
|
|
97005
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96217
97006
|
createdBy?: Maybe<User>;
|
|
96218
|
-
createdByUserId
|
|
97007
|
+
createdByUserId?: Maybe<Scalars['String']['output']>;
|
|
96219
97008
|
description?: Maybe<Scalars['String']['output']>;
|
|
96220
97009
|
id: Scalars['ID']['output'];
|
|
96221
97010
|
impactedWork?: Maybe<SpfImpactedWork>;
|
|
96222
|
-
impactedWorkId
|
|
97011
|
+
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
96223
97012
|
justification?: Maybe<Scalars['String']['output']>;
|
|
96224
97013
|
name: Scalars['String']['output'];
|
|
96225
97014
|
owner?: Maybe<User>;
|
|
@@ -96234,7 +97023,7 @@ export declare type SpfDependency = Node & {
|
|
|
96234
97023
|
requestingTeamId?: Maybe<Scalars['String']['output']>;
|
|
96235
97024
|
status: SpfDependencyStatus;
|
|
96236
97025
|
targetDate?: Maybe<SpfTargetDate>;
|
|
96237
|
-
updatedAt
|
|
97026
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96238
97027
|
updatedBy?: Maybe<User>;
|
|
96239
97028
|
updatedByUserId?: Maybe<Scalars['String']['output']>;
|
|
96240
97029
|
};
|
|
@@ -96257,8 +97046,9 @@ export declare type SpfDependencyConnection = {
|
|
|
96257
97046
|
export declare type SpfDependencyEdge = {
|
|
96258
97047
|
__typename?: 'SpfDependencyEdge';
|
|
96259
97048
|
cursor: Scalars['String']['output'];
|
|
96260
|
-
node?: Maybe<
|
|
97049
|
+
node?: Maybe<SpfDependencyResult>;
|
|
96261
97050
|
};
|
|
97051
|
+
export declare type SpfDependencyResult = QueryError | SpfDependency;
|
|
96262
97052
|
export declare enum SpfDependencyStatus {
|
|
96263
97053
|
Accepted = "ACCEPTED",
|
|
96264
97054
|
Canceled = "CANCELED",
|
|
@@ -96279,7 +97069,8 @@ export declare enum SpfPriority {
|
|
|
96279
97069
|
export declare type SpfRelatedContent = {
|
|
96280
97070
|
__typename?: 'SpfRelatedContent';
|
|
96281
97071
|
attachedByUserId?: Maybe<Scalars['String']['output']>;
|
|
96282
|
-
attachedDateTime
|
|
97072
|
+
attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
97073
|
+
dependencyId: Scalars['String']['output'];
|
|
96283
97074
|
id: Scalars['ID']['output'];
|
|
96284
97075
|
url: Scalars['URL']['output'];
|
|
96285
97076
|
};
|
|
@@ -96292,8 +97083,9 @@ export declare type SpfRelatedContentConnection = {
|
|
|
96292
97083
|
export declare type SpfRelatedContentEdge = {
|
|
96293
97084
|
__typename?: 'SpfRelatedContentEdge';
|
|
96294
97085
|
cursor: Scalars['String']['output'];
|
|
96295
|
-
node?: Maybe<
|
|
97086
|
+
node?: Maybe<SpfRelatedContentResult>;
|
|
96296
97087
|
};
|
|
97088
|
+
export declare type SpfRelatedContentResult = QueryError | SpfRelatedContent;
|
|
96297
97089
|
export declare type SpfTargetDate = {
|
|
96298
97090
|
__typename?: 'SpfTargetDate';
|
|
96299
97091
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -96324,7 +97116,7 @@ export declare type SpfUpdateDependencyDescriptionInput = {
|
|
|
96324
97116
|
};
|
|
96325
97117
|
export declare type SpfUpdateDependencyImpactedWorkInput = {
|
|
96326
97118
|
id: Scalars['ID']['input'];
|
|
96327
|
-
impactedWorkId
|
|
97119
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
96328
97120
|
};
|
|
96329
97121
|
export declare type SpfUpdateDependencyJustificationInput = {
|
|
96330
97122
|
id: Scalars['ID']['input'];
|
|
@@ -96352,6 +97144,10 @@ export declare type SpfUpdateDependencyReceivingTeamInput = {
|
|
|
96352
97144
|
id: Scalars['ID']['input'];
|
|
96353
97145
|
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
96354
97146
|
};
|
|
97147
|
+
export declare type SpfUpdateDependencyRequesterInput = {
|
|
97148
|
+
id: Scalars['ID']['input'];
|
|
97149
|
+
requesterId: Scalars['String']['input'];
|
|
97150
|
+
};
|
|
96355
97151
|
export declare type SpfUpdateDependencyRequestingTeamInput = {
|
|
96356
97152
|
id: Scalars['ID']['input'];
|
|
96357
97153
|
requestingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96456,6 +97252,153 @@ export declare type SprintWithStatistics = BaseSprint & {
|
|
|
96456
97252
|
sprintState: SprintState;
|
|
96457
97253
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
96458
97254
|
};
|
|
97255
|
+
export declare enum StakeholderCommsAddedFromType {
|
|
97256
|
+
Jsm = "JSM",
|
|
97257
|
+
Statuspage = "STATUSPAGE"
|
|
97258
|
+
}
|
|
97259
|
+
export declare type StakeholderCommsAssignment = {
|
|
97260
|
+
__typename?: 'StakeholderCommsAssignment';
|
|
97261
|
+
addedFrom?: Maybe<StakeholderCommsAddedFromType>;
|
|
97262
|
+
assignmentType?: Maybe<StakeholderCommsAssignmentType>;
|
|
97263
|
+
externalAssignmentId?: Maybe<Scalars['String']['output']>;
|
|
97264
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
97265
|
+
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
97266
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
97267
|
+
};
|
|
97268
|
+
export declare type StakeholderCommsAssignmentIdInput = {
|
|
97269
|
+
assignmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
97270
|
+
assignmentType?: InputMaybe<StakeholderCommsAssignmentType>;
|
|
97271
|
+
externalAssignmentId?: InputMaybe<Scalars['String']['input']>;
|
|
97272
|
+
};
|
|
97273
|
+
export declare enum StakeholderCommsAssignmentType {
|
|
97274
|
+
Asset = "ASSET",
|
|
97275
|
+
Incident = "INCIDENT",
|
|
97276
|
+
Org = "ORG",
|
|
97277
|
+
Page = "PAGE",
|
|
97278
|
+
Product = "PRODUCT",
|
|
97279
|
+
Services = "SERVICES",
|
|
97280
|
+
Site = "SITE"
|
|
97281
|
+
}
|
|
97282
|
+
export declare type StakeholderCommsCreateStakeholderInput = {
|
|
97283
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
97284
|
+
addedFrom: StakeholderCommsAddedFromType;
|
|
97285
|
+
assignmentType: StakeholderCommsAssignmentType;
|
|
97286
|
+
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
97287
|
+
externalAssignmentId: Scalars['String']['input'];
|
|
97288
|
+
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
97289
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
97290
|
+
preference: StakeholderCommsPreferencesInput;
|
|
97291
|
+
skipConfirmation: Scalars['Boolean']['input'];
|
|
97292
|
+
stakeholderType: StakeholderCommsStakeholderType;
|
|
97293
|
+
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
97294
|
+
};
|
|
97295
|
+
export declare type StakeholderCommsModePreference = {
|
|
97296
|
+
__typename?: 'StakeholderCommsModePreference';
|
|
97297
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
97298
|
+
};
|
|
97299
|
+
export declare type StakeholderCommsModePreferenceInput = {
|
|
97300
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97301
|
+
};
|
|
97302
|
+
export declare type StakeholderCommsNotificationPreference = {
|
|
97303
|
+
__typename?: 'StakeholderCommsNotificationPreference';
|
|
97304
|
+
emailId?: Maybe<Scalars['String']['output']>;
|
|
97305
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
97306
|
+
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
97307
|
+
phoneCountry?: Maybe<Scalars['String']['output']>;
|
|
97308
|
+
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
97309
|
+
preference?: Maybe<StakeholderCommsPreferences>;
|
|
97310
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
97311
|
+
webhook?: Maybe<Scalars['String']['output']>;
|
|
97312
|
+
};
|
|
97313
|
+
export declare type StakeholderCommsNotificationPreferenceInput = {
|
|
97314
|
+
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
97315
|
+
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
97316
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
97317
|
+
preference?: InputMaybe<StakeholderCommsPreferencesInput>;
|
|
97318
|
+
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
97319
|
+
};
|
|
97320
|
+
export declare type StakeholderCommsPaginatedAssignmentByStakeholderInput = {
|
|
97321
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
97322
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
97323
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
97324
|
+
};
|
|
97325
|
+
export declare type StakeholderCommsPaginatedAssignmentResults = {
|
|
97326
|
+
__typename?: 'StakeholderCommsPaginatedAssignmentResults';
|
|
97327
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
97328
|
+
nextPageCursor?: Maybe<Scalars['String']['output']>;
|
|
97329
|
+
results?: Maybe<Array<Maybe<StakeholderCommsAssignment>>>;
|
|
97330
|
+
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
97331
|
+
};
|
|
97332
|
+
export declare type StakeholderCommsPaginatedStakeholderInput = {
|
|
97333
|
+
assignmentIdInput: StakeholderCommsAssignmentIdInput;
|
|
97334
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
97335
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
97336
|
+
};
|
|
97337
|
+
export declare type StakeholderCommsPaginatedStakeholderResults = {
|
|
97338
|
+
__typename?: 'StakeholderCommsPaginatedStakeholderResults';
|
|
97339
|
+
assignment?: Maybe<StakeholderCommsAssignment>;
|
|
97340
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
97341
|
+
nextPageCursor?: Maybe<Scalars['String']['output']>;
|
|
97342
|
+
results?: Maybe<Array<Maybe<StakeholderCommsStakeholder>>>;
|
|
97343
|
+
};
|
|
97344
|
+
export declare type StakeholderCommsPreferences = {
|
|
97345
|
+
__typename?: 'StakeholderCommsPreferences';
|
|
97346
|
+
email?: Maybe<StakeholderCommsModePreference>;
|
|
97347
|
+
sms?: Maybe<StakeholderCommsModePreference>;
|
|
97348
|
+
webhook?: Maybe<StakeholderCommsModePreference>;
|
|
97349
|
+
};
|
|
97350
|
+
export declare type StakeholderCommsPreferencesInput = {
|
|
97351
|
+
email?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
97352
|
+
sms?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
97353
|
+
webhook?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
97354
|
+
};
|
|
97355
|
+
export declare type StakeholderCommsStakeholder = {
|
|
97356
|
+
__typename?: 'StakeholderCommsStakeholder';
|
|
97357
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
97358
|
+
id: Scalars['ID']['output'];
|
|
97359
|
+
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
97360
|
+
notificationPreference?: Maybe<StakeholderCommsNotificationPreference>;
|
|
97361
|
+
skipConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
97362
|
+
status?: Maybe<StakeholderCommsStakeholderStatus>;
|
|
97363
|
+
type?: Maybe<StakeholderCommsStakeholderType>;
|
|
97364
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
97365
|
+
};
|
|
97366
|
+
export declare type StakeholderCommsStakeholderAssignmentIdInput = {
|
|
97367
|
+
assignmentIdInput: StakeholderCommsAssignmentIdInput;
|
|
97368
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
97369
|
+
};
|
|
97370
|
+
export declare type StakeholderCommsStakeholderAssignmentResponse = {
|
|
97371
|
+
__typename?: 'StakeholderCommsStakeholderAssignmentResponse';
|
|
97372
|
+
assignment?: Maybe<StakeholderCommsAssignment>;
|
|
97373
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
97374
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
97375
|
+
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
97376
|
+
};
|
|
97377
|
+
export declare type StakeholderCommsStakeholderIdInput = {
|
|
97378
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
97379
|
+
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
97380
|
+
stakeholderId?: InputMaybe<Scalars['ID']['input']>;
|
|
97381
|
+
stakeholderType?: InputMaybe<StakeholderCommsStakeholderType>;
|
|
97382
|
+
};
|
|
97383
|
+
export declare type StakeholderCommsStakeholderResponse = {
|
|
97384
|
+
__typename?: 'StakeholderCommsStakeholderResponse';
|
|
97385
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
97386
|
+
stakeholder?: Maybe<StakeholderCommsStakeholder>;
|
|
97387
|
+
};
|
|
97388
|
+
export declare enum StakeholderCommsStakeholderStatus {
|
|
97389
|
+
Active = "ACTIVE",
|
|
97390
|
+
Deleted = "DELETED",
|
|
97391
|
+
Quarantined = "QUARANTINED"
|
|
97392
|
+
}
|
|
97393
|
+
export declare enum StakeholderCommsStakeholderType {
|
|
97394
|
+
External = "EXTERNAL",
|
|
97395
|
+
Internal = "INTERNAL"
|
|
97396
|
+
}
|
|
97397
|
+
export declare type StakeholderCommsUpdateStakeholderInput = {
|
|
97398
|
+
notificationPreference?: InputMaybe<StakeholderCommsNotificationPreferenceInput>;
|
|
97399
|
+
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
97400
|
+
status?: InputMaybe<StakeholderCommsStakeholderStatus>;
|
|
97401
|
+
};
|
|
96459
97402
|
export declare type StalePagePayload = {
|
|
96460
97403
|
__typename?: 'StalePagePayload';
|
|
96461
97404
|
lastActivityDate: Scalars['String']['output'];
|
|
@@ -99548,6 +100491,7 @@ export declare enum TrelloCardBatchStatus {
|
|
|
99548
100491
|
}
|
|
99549
100492
|
export declare type TrelloCardClause = {
|
|
99550
100493
|
closed?: InputMaybe<TrelloCardClosedClause>;
|
|
100494
|
+
completed?: InputMaybe<TrelloCardCompleteClause>;
|
|
99551
100495
|
list?: InputMaybe<TrelloCardListClause>;
|
|
99552
100496
|
};
|
|
99553
100497
|
export declare type TrelloCardCloseCommand = {
|
|
@@ -99559,6 +100503,9 @@ export declare type TrelloCardClosedClause = {
|
|
|
99559
100503
|
export declare type TrelloCardCommand = {
|
|
99560
100504
|
close?: InputMaybe<TrelloCardCloseCommand>;
|
|
99561
100505
|
};
|
|
100506
|
+
export declare type TrelloCardCompleteClause = {
|
|
100507
|
+
completed: Scalars['Boolean']['input'];
|
|
100508
|
+
};
|
|
99562
100509
|
export declare type TrelloCardConnection = {
|
|
99563
100510
|
__typename?: 'TrelloCardConnection';
|
|
99564
100511
|
edges?: Maybe<Array<TrelloCardEdge>>;
|
|
@@ -100238,6 +101185,7 @@ export declare enum TrelloListType {
|
|
|
100238
101185
|
}
|
|
100239
101186
|
export declare type TrelloListUpdated = {
|
|
100240
101187
|
__typename?: 'TrelloListUpdated';
|
|
101188
|
+
bulkArchivedCards?: Maybe<Array<Scalars['ID']['output']>>;
|
|
100241
101189
|
cards?: Maybe<TrelloCardUpdatedConnection>;
|
|
100242
101190
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
100243
101191
|
id: Scalars['ID']['output'];
|
|
@@ -100799,6 +101747,7 @@ export declare type TrelloPlannerCalendarUpdated = {
|
|
|
100799
101747
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
100800
101748
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
100801
101749
|
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
101750
|
+
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
100802
101751
|
id: Scalars['ID']['output'];
|
|
100803
101752
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
100804
101753
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -101185,6 +102134,7 @@ export declare type TrelloSubscriptionApi = {
|
|
|
101185
102134
|
__typename?: 'TrelloSubscriptionApi';
|
|
101186
102135
|
onBoardCardSetUpdated?: Maybe<TrelloBoardUpdated>;
|
|
101187
102136
|
onBoardUpdated?: Maybe<TrelloBoardUpdated>;
|
|
102137
|
+
onCardBatchUpdated?: Maybe<TrelloCardBatch>;
|
|
101188
102138
|
onMemberUpdated?: Maybe<TrelloMemberUpdated>;
|
|
101189
102139
|
onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
|
|
101190
102140
|
};
|
|
@@ -101196,6 +102146,9 @@ export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
|
101196
102146
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
101197
102147
|
id: Scalars['ID']['input'];
|
|
101198
102148
|
};
|
|
102149
|
+
export declare type TrelloSubscriptionApiOnCardBatchUpdatedArgs = {
|
|
102150
|
+
id: Scalars['ID']['input'];
|
|
102151
|
+
};
|
|
101199
102152
|
export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
101200
102153
|
id: Scalars['ID']['input'];
|
|
101201
102154
|
};
|
|
@@ -102578,6 +103531,7 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
102578
103531
|
comparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
102579
103532
|
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
102580
103533
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
103534
|
+
graduatedSeriesComparators?: InputMaybe<Array<CompassCriteriaGraduatedSeriesInput>>;
|
|
102581
103535
|
id: Scalars['ID']['input'];
|
|
102582
103536
|
metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
102583
103537
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -104825,7 +105779,6 @@ export declare type WorkSuggestionsPurgeUserProfilePayload = Payload & {
|
|
|
104825
105779
|
};
|
|
104826
105780
|
export declare type WorkSuggestionsSaveUserProfileInput = {
|
|
104827
105781
|
cloudId: Scalars['ID']['input'];
|
|
104828
|
-
isUpdate: Scalars['Boolean']['input'];
|
|
104829
105782
|
persona?: InputMaybe<WorkSuggestionsUserPersona>;
|
|
104830
105783
|
projectAris: Array<Scalars['ID']['input']>;
|
|
104831
105784
|
};
|
|
@@ -104877,7 +105830,6 @@ export declare type WorkSuggestionsUserProfile = {
|
|
|
104877
105830
|
__typename?: 'WorkSuggestionsUserProfile';
|
|
104878
105831
|
aaid: Scalars['String']['output'];
|
|
104879
105832
|
createdOn: Scalars['String']['output'];
|
|
104880
|
-
id: Scalars['String']['output'];
|
|
104881
105833
|
persona?: Maybe<WorkSuggestionsUserPersona>;
|
|
104882
105834
|
projectAris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
104883
105835
|
};
|