@forge/cli-shared 8.8.0-next.9-experimental-5c29c84 → 8.8.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -2
- package/out/graphql/graphql-types.d.ts +768 -49
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +170 -24
- package/package.json +3 -3
|
@@ -2835,6 +2835,7 @@ export declare type AgentStudioScenarioValidateInput = {
|
|
|
2835
2835
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
2836
2836
|
invocationDescription: Scalars['String']['input'];
|
|
2837
2837
|
isActive: Scalars['Boolean']['input'];
|
|
2838
|
+
isDeepResearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2838
2839
|
isDefault: Scalars['Boolean']['input'];
|
|
2839
2840
|
isEdited?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2840
2841
|
name: Scalars['String']['input'];
|
|
@@ -2851,6 +2852,7 @@ export declare type AgentStudioScenarioValidateOutput = {
|
|
|
2851
2852
|
clientId?: Maybe<Scalars['String']['output']>;
|
|
2852
2853
|
invocationDescription: Scalars['String']['output'];
|
|
2853
2854
|
isActive: Scalars['Boolean']['output'];
|
|
2855
|
+
isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2854
2856
|
isDefault: Scalars['Boolean']['output'];
|
|
2855
2857
|
isValid: AgentStudioScenarioValidation;
|
|
2856
2858
|
name: Scalars['String']['output'];
|
|
@@ -6931,6 +6933,18 @@ export declare type CcpCloudMigrationTrialMapping = {
|
|
|
6931
6933
|
dcEntitlementId?: Maybe<Scalars['ID']['output']>;
|
|
6932
6934
|
isCmtMappingActive?: Maybe<Scalars['Boolean']['output']>;
|
|
6933
6935
|
};
|
|
6936
|
+
export declare type CcpCompareOfferingsExperienceCapability = CommerceExperienceCapability & {
|
|
6937
|
+
__typename?: 'CcpCompareOfferingsExperienceCapability';
|
|
6938
|
+
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
6939
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
6940
|
+
};
|
|
6941
|
+
export declare type CcpCompareOfferingsHighlightedOfferingInput = {
|
|
6942
|
+
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
6943
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
6944
|
+
};
|
|
6945
|
+
export declare type CcpCompareOfferingsInput = {
|
|
6946
|
+
highlightedOffering?: InputMaybe<CcpCompareOfferingsHighlightedOfferingInput>;
|
|
6947
|
+
};
|
|
6934
6948
|
export declare type CcpConfigurePaymentMethodExperienceCapability = CommerceExperienceCapability & {
|
|
6935
6949
|
__typename?: 'CcpConfigurePaymentMethodExperienceCapability';
|
|
6936
6950
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -7050,7 +7064,6 @@ export declare enum CcpCustomizationSetCouplingOperationComputeArgumentTag {
|
|
|
7050
7064
|
}
|
|
7051
7065
|
export declare type CcpCustomizationSetCouplingOperationRelaxContext = {
|
|
7052
7066
|
__typename?: 'CcpCustomizationSetCouplingOperationRelaxContext';
|
|
7053
|
-
applicableGroups?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
7054
7067
|
inTrial?: Maybe<CcpCustomizationSetCouplingOperationRelaxContextInTrial>;
|
|
7055
7068
|
};
|
|
7056
7069
|
export declare enum CcpCustomizationSetCouplingOperationRelaxContextInTrial {
|
|
@@ -7209,6 +7222,7 @@ export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementEx
|
|
|
7209
7222
|
cancelEntitlement?: Maybe<CcpCancelEntitlementExperienceCapability>;
|
|
7210
7223
|
changeOffering?: Maybe<CcpExperienceCapability>;
|
|
7211
7224
|
changeOfferingV2?: Maybe<CcpChangeOfferingExperienceCapability>;
|
|
7225
|
+
compareOfferings?: Maybe<CcpCompareOfferingsExperienceCapability>;
|
|
7212
7226
|
manageEntitlement?: Maybe<CcpManageEntitlementExperienceCapability>;
|
|
7213
7227
|
};
|
|
7214
7228
|
export declare type CcpEntitlementExperienceCapabilitiesApplyEntitlementPromotionArgs = {
|
|
@@ -7223,6 +7237,9 @@ export declare type CcpEntitlementExperienceCapabilitiesChangeOfferingV2Args = {
|
|
|
7223
7237
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
7224
7238
|
skipTrial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7225
7239
|
};
|
|
7240
|
+
export declare type CcpEntitlementExperienceCapabilitiesCompareOfferingsArgs = {
|
|
7241
|
+
input?: InputMaybe<CcpCompareOfferingsInput>;
|
|
7242
|
+
};
|
|
7226
7243
|
export declare type CcpEntitlementOfferingTransition = {
|
|
7227
7244
|
__typename?: 'CcpEntitlementOfferingTransition';
|
|
7228
7245
|
id: Scalars['ID']['output'];
|
|
@@ -7501,6 +7518,20 @@ export declare type CcpMutationApiUpdateLicenseServerIdArgs = {
|
|
|
7501
7518
|
serverId: Scalars['ID']['input'];
|
|
7502
7519
|
transactionAccountId: Scalars['ID']['input'];
|
|
7503
7520
|
};
|
|
7521
|
+
export declare type CcpNextCycleChange = {
|
|
7522
|
+
__typename?: 'CcpNextCycleChange';
|
|
7523
|
+
changeTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
7524
|
+
chargeDetails?: Maybe<CcpNextCycleChargeDetails>;
|
|
7525
|
+
orderItemId?: Maybe<Scalars['ID']['output']>;
|
|
7526
|
+
subscriptionScheduleAction?: Maybe<CcpSubscriptionScheduleAction>;
|
|
7527
|
+
};
|
|
7528
|
+
export declare type CcpNextCycleChargeDetails = {
|
|
7529
|
+
__typename?: 'CcpNextCycleChargeDetails';
|
|
7530
|
+
chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
|
|
7531
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
7532
|
+
pricingPlanId?: Maybe<Scalars['ID']['output']>;
|
|
7533
|
+
promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
|
|
7534
|
+
};
|
|
7504
7535
|
export declare type CcpOffering = CommerceOffering & Node & {
|
|
7505
7536
|
__typename?: 'CcpOffering';
|
|
7506
7537
|
allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -8543,6 +8574,8 @@ export declare type CcpRelationshipCardinality = {
|
|
|
8543
8574
|
};
|
|
8544
8575
|
export declare type CcpRelationshipGroup = {
|
|
8545
8576
|
__typename?: 'CcpRelationshipGroup';
|
|
8577
|
+
cardinality?: Maybe<CcpRelationshipGroupCardinality>;
|
|
8578
|
+
group?: Maybe<Scalars['String']['output']>;
|
|
8546
8579
|
groupCardinality?: Maybe<CcpRelationshipGroupCardinality>;
|
|
8547
8580
|
groupName?: Maybe<Scalars['String']['output']>;
|
|
8548
8581
|
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
@@ -8587,6 +8620,10 @@ export declare type CcpRootExperienceCapabilities = {
|
|
|
8587
8620
|
export declare type CcpRootExperienceCapabilitiesCreateEntitlementArgs = {
|
|
8588
8621
|
input: CcpCreateEntitlementInput;
|
|
8589
8622
|
};
|
|
8623
|
+
export declare type CcpScheduledChanges = {
|
|
8624
|
+
__typename?: 'CcpScheduledChanges';
|
|
8625
|
+
nextCycleChange?: Maybe<CcpNextCycleChange>;
|
|
8626
|
+
};
|
|
8590
8627
|
export declare type CcpSearchFieldRangeInput = {
|
|
8591
8628
|
bounds: CcpSearchTimestampBoundsInput;
|
|
8592
8629
|
field: Scalars['String']['input'];
|
|
@@ -8633,6 +8670,7 @@ export declare type CcpSubscription = CommerceSubscription & {
|
|
|
8633
8670
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
8634
8671
|
orderItemId?: Maybe<Scalars['ID']['output']>;
|
|
8635
8672
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
8673
|
+
scheduledChanges?: Maybe<CcpScheduledChanges>;
|
|
8636
8674
|
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
8637
8675
|
status?: Maybe<CcpSubscriptionStatus>;
|
|
8638
8676
|
subscriptionSchedule?: Maybe<CcpSubscriptionSchedule>;
|
|
@@ -9674,6 +9712,7 @@ export declare type CompassAutoPopulationMetadata = {
|
|
|
9674
9712
|
__typename?: 'CompassAutoPopulationMetadata';
|
|
9675
9713
|
fieldId: Scalars['String']['output'];
|
|
9676
9714
|
source?: Maybe<CompassAutoPopulationSource>;
|
|
9715
|
+
verified?: Maybe<Scalars['Boolean']['output']>;
|
|
9677
9716
|
};
|
|
9678
9717
|
export declare type CompassAutoPopulationSource = {
|
|
9679
9718
|
__typename?: 'CompassAutoPopulationSource';
|
|
@@ -9833,7 +9872,6 @@ export declare type CompassCatalogMutationApi = {
|
|
|
9833
9872
|
createComponentExternalAlias?: Maybe<CreateCompassComponentExternalAliasPayload>;
|
|
9834
9873
|
createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
|
|
9835
9874
|
createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
|
|
9836
|
-
createComponentScorecardJiraIssue?: Maybe<CompassCreateComponentScorecardJiraIssuePayload>;
|
|
9837
9875
|
createComponentScorecardWorkItem?: Maybe<CompassCreateComponentScorecardWorkItemPayload>;
|
|
9838
9876
|
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
9839
9877
|
createComponentType?: Maybe<CreateCompassComponentTypePayload>;
|
|
@@ -9892,7 +9930,6 @@ export declare type CompassCatalogMutationApi = {
|
|
|
9892
9930
|
updateComponentByReference?: Maybe<UpdateCompassComponentPayload>;
|
|
9893
9931
|
updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
|
|
9894
9932
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
9895
|
-
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
9896
9933
|
updateComponentScorecardWorkItem?: Maybe<CompassUpdateComponentScorecardWorkItemPayload>;
|
|
9897
9934
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
9898
9935
|
updateComponentTypeMetadata?: Maybe<UpdateCompassComponentTypeMetadataPayload>;
|
|
@@ -9906,6 +9943,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
9906
9943
|
updateScorecard?: Maybe<UpdateCompassScorecardPayload>;
|
|
9907
9944
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
9908
9945
|
updateUserDefinedParameters?: Maybe<UpdateCompassUserDefinedParametersPayload>;
|
|
9946
|
+
verifyComponentAutoPopulationField?: Maybe<VerifyComponentAutoPopulationFieldPayload>;
|
|
9909
9947
|
};
|
|
9910
9948
|
export declare type CompassCatalogMutationApiAcknowledgeAnnouncementArgs = {
|
|
9911
9949
|
input: CompassAcknowledgeAnnouncementInput;
|
|
@@ -9964,9 +10002,6 @@ export declare type CompassCatalogMutationApiCreateComponentFromTemplateArgs = {
|
|
|
9964
10002
|
export declare type CompassCatalogMutationApiCreateComponentLinkArgs = {
|
|
9965
10003
|
input: CreateCompassComponentLinkInput;
|
|
9966
10004
|
};
|
|
9967
|
-
export declare type CompassCatalogMutationApiCreateComponentScorecardJiraIssueArgs = {
|
|
9968
|
-
input: CompassCreateComponentScorecardJiraIssueInput;
|
|
9969
|
-
};
|
|
9970
10005
|
export declare type CompassCatalogMutationApiCreateComponentScorecardWorkItemArgs = {
|
|
9971
10006
|
cloudId: Scalars['ID']['input'];
|
|
9972
10007
|
input: CompassCreateComponentScorecardWorkItemInput;
|
|
@@ -10152,9 +10187,6 @@ export declare type CompassCatalogMutationApiUpdateComponentDataManagerMetadataA
|
|
|
10152
10187
|
export declare type CompassCatalogMutationApiUpdateComponentLinkArgs = {
|
|
10153
10188
|
input: UpdateCompassComponentLinkInput;
|
|
10154
10189
|
};
|
|
10155
|
-
export declare type CompassCatalogMutationApiUpdateComponentScorecardJiraIssueArgs = {
|
|
10156
|
-
input: CompassUpdateComponentScorecardJiraIssueInput;
|
|
10157
|
-
};
|
|
10158
10190
|
export declare type CompassCatalogMutationApiUpdateComponentScorecardWorkItemArgs = {
|
|
10159
10191
|
cloudId: Scalars['ID']['input'];
|
|
10160
10192
|
input: CompassUpdateComponentScorecardWorkItemInput;
|
|
@@ -10197,6 +10229,9 @@ export declare type CompassCatalogMutationApiUpdateTeamCheckinArgs = {
|
|
|
10197
10229
|
export declare type CompassCatalogMutationApiUpdateUserDefinedParametersArgs = {
|
|
10198
10230
|
input: UpdateCompassUserDefinedParametersInput;
|
|
10199
10231
|
};
|
|
10232
|
+
export declare type CompassCatalogMutationApiVerifyComponentAutoPopulationFieldArgs = {
|
|
10233
|
+
input: VerifyComponentAutoPopulationField;
|
|
10234
|
+
};
|
|
10200
10235
|
export declare type CompassCatalogQueryApi = {
|
|
10201
10236
|
__typename?: 'CompassCatalogQueryApi';
|
|
10202
10237
|
applicationManagedComponents?: Maybe<CompassApplicationManagedComponentsResult>;
|
|
@@ -10685,16 +10720,12 @@ export declare type CompassComponentHasScorecardsAppliedConnection = {
|
|
|
10685
10720
|
};
|
|
10686
10721
|
export declare type CompassComponentHasScorecardsAppliedEdge = {
|
|
10687
10722
|
__typename?: 'CompassComponentHasScorecardsAppliedEdge';
|
|
10688
|
-
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
10689
10723
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
10690
10724
|
cursor: Scalars['String']['output'];
|
|
10691
10725
|
node?: Maybe<CompassScorecard>;
|
|
10692
10726
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
10693
10727
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
10694
10728
|
};
|
|
10695
|
-
export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
|
|
10696
|
-
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
10697
|
-
};
|
|
10698
10729
|
export declare type CompassComponentHasScorecardsAppliedEdgeActiveWorkItemsArgs = {
|
|
10699
10730
|
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
10700
10731
|
};
|
|
@@ -10784,7 +10815,6 @@ export declare type CompassComponentScorecardJiraIssuesQuery = {
|
|
|
10784
10815
|
export declare type CompassComponentScorecardJiraIssuesQueryResult = CompassComponentScorecardJiraIssueConnection | QueryError;
|
|
10785
10816
|
export declare type CompassComponentScorecardRelationship = {
|
|
10786
10817
|
__typename?: 'CompassComponentScorecardRelationship';
|
|
10787
|
-
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
10788
10818
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
10789
10819
|
appliedSince: Scalars['DateTime']['output'];
|
|
10790
10820
|
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
@@ -10793,9 +10823,6 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
10793
10823
|
scorecardScoreHistories?: Maybe<CompassScorecardScoreHistoryConnection>;
|
|
10794
10824
|
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
10795
10825
|
};
|
|
10796
|
-
export declare type CompassComponentScorecardRelationshipActiveIssuesArgs = {
|
|
10797
|
-
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
10798
|
-
};
|
|
10799
10826
|
export declare type CompassComponentScorecardRelationshipActiveWorkItemsArgs = {
|
|
10800
10827
|
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
10801
10828
|
};
|
|
@@ -11843,7 +11870,6 @@ export declare type CompassDeactivateScorecardForComponentPayload = Payload & {
|
|
|
11843
11870
|
};
|
|
11844
11871
|
export declare type CompassDeactivatedScorecard = {
|
|
11845
11872
|
__typename?: 'CompassDeactivatedScorecard';
|
|
11846
|
-
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
11847
11873
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
11848
11874
|
applicationModel: CompassScorecardApplicationModel;
|
|
11849
11875
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -11853,9 +11879,6 @@ export declare type CompassDeactivatedScorecard = {
|
|
|
11853
11879
|
state?: Maybe<Scalars['String']['output']>;
|
|
11854
11880
|
type: Scalars['String']['output'];
|
|
11855
11881
|
};
|
|
11856
|
-
export declare type CompassDeactivatedScorecardActiveIssuesArgs = {
|
|
11857
|
-
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
11858
|
-
};
|
|
11859
11882
|
export declare type CompassDeactivatedScorecardActiveWorkItemsArgs = {
|
|
11860
11883
|
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
11861
11884
|
};
|
|
@@ -13326,16 +13349,12 @@ export declare type CompassScorecardAppliedToComponentsCriteriaFilter = {
|
|
|
13326
13349
|
};
|
|
13327
13350
|
export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
13328
13351
|
__typename?: 'CompassScorecardAppliedToComponentsEdge';
|
|
13329
|
-
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
13330
13352
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
13331
13353
|
cursor: Scalars['String']['output'];
|
|
13332
13354
|
node?: Maybe<CompassComponent>;
|
|
13333
13355
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
13334
13356
|
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
13335
13357
|
};
|
|
13336
|
-
export declare type CompassScorecardAppliedToComponentsEdgeActiveIssuesArgs = {
|
|
13337
|
-
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
13338
|
-
};
|
|
13339
13358
|
export declare type CompassScorecardAppliedToComponentsEdgeActiveWorkItemsArgs = {
|
|
13340
13359
|
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
13341
13360
|
};
|
|
@@ -13704,7 +13723,6 @@ export declare type CompassScorecardDeactivatedComponentsConnection = {
|
|
|
13704
13723
|
};
|
|
13705
13724
|
export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
13706
13725
|
__typename?: 'CompassScorecardDeactivatedComponentsEdge';
|
|
13707
|
-
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
13708
13726
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
13709
13727
|
cursor: Scalars['String']['output'];
|
|
13710
13728
|
deactivatedBy?: Maybe<User>;
|
|
@@ -13712,9 +13730,6 @@ export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
|
13712
13730
|
lastScorecardScore?: Maybe<Scalars['Int']['output']>;
|
|
13713
13731
|
node?: Maybe<CompassComponent>;
|
|
13714
13732
|
};
|
|
13715
|
-
export declare type CompassScorecardDeactivatedComponentsEdgeActiveIssuesArgs = {
|
|
13716
|
-
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
13717
|
-
};
|
|
13718
13733
|
export declare type CompassScorecardDeactivatedComponentsEdgeActiveWorkItemsArgs = {
|
|
13719
13734
|
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
13720
13735
|
};
|
|
@@ -17446,6 +17461,20 @@ export declare enum ConfluenceNbmVerificationResultOrder {
|
|
|
17446
17461
|
AiState = "AI_STATE",
|
|
17447
17462
|
ManualState = "MANUAL_STATE"
|
|
17448
17463
|
}
|
|
17464
|
+
export declare type ConfluenceNcsPdfExportConfiguration = {
|
|
17465
|
+
__typename?: 'ConfluenceNcsPdfExportConfiguration';
|
|
17466
|
+
bodyFontSize: Scalars['Int']['output'];
|
|
17467
|
+
font?: Maybe<ConfluencePdfExportFontConfiguration>;
|
|
17468
|
+
footer: ConfluencePdfExportFooterInclusionConfiguration;
|
|
17469
|
+
header: ConfluencePdfExportHeaderInclusionConfiguration;
|
|
17470
|
+
lineSpacing: Scalars['Float']['output'];
|
|
17471
|
+
pageMargins: ConfluencePdfExportPageMargins;
|
|
17472
|
+
pageOrientation: ConfluencePdfExportPageOrientation;
|
|
17473
|
+
pageSize: ConfluencePdfExportPageSize;
|
|
17474
|
+
shouldIncludePageNumbers: Scalars['Boolean']['output'];
|
|
17475
|
+
shouldIncludeTableOfContents: Scalars['Boolean']['output'];
|
|
17476
|
+
titlePage: ConfluencePdfExportTitlePageInclusionConfiguration;
|
|
17477
|
+
};
|
|
17449
17478
|
export declare type ConfluenceNewCodeMacro = {
|
|
17450
17479
|
__typename?: 'ConfluenceNewCodeMacro';
|
|
17451
17480
|
languages?: Maybe<Array<Maybe<ConfluenceNewCodeMacroLanguage>>>;
|
|
@@ -17626,6 +17655,147 @@ export declare type ConfluencePdfExportDownloadLink = {
|
|
|
17626
17655
|
__typename?: 'ConfluencePdfExportDownloadLink';
|
|
17627
17656
|
link?: Maybe<Scalars['String']['output']>;
|
|
17628
17657
|
};
|
|
17658
|
+
export declare type ConfluencePdfExportFontConfiguration = ConfluencePdfExportFontCustom | ConfluencePdfExportFontPredefined;
|
|
17659
|
+
export declare type ConfluencePdfExportFontCustom = {
|
|
17660
|
+
__typename?: 'ConfluencePdfExportFontCustom';
|
|
17661
|
+
url: Scalars['String']['output'];
|
|
17662
|
+
};
|
|
17663
|
+
export declare type ConfluencePdfExportFontCustomInput = {
|
|
17664
|
+
url: Scalars['String']['input'];
|
|
17665
|
+
};
|
|
17666
|
+
export declare enum ConfluencePdfExportFontEnum {
|
|
17667
|
+
Arial = "ARIAL",
|
|
17668
|
+
AtlassianSans = "ATLASSIAN_SANS",
|
|
17669
|
+
Courier = "COURIER",
|
|
17670
|
+
TimesNewRoman = "TIMES_NEW_ROMAN"
|
|
17671
|
+
}
|
|
17672
|
+
export declare enum ConfluencePdfExportFontEnumInput {
|
|
17673
|
+
Arial = "ARIAL",
|
|
17674
|
+
AtlassianSans = "ATLASSIAN_SANS",
|
|
17675
|
+
Courier = "COURIER",
|
|
17676
|
+
TimesNewRoman = "TIMES_NEW_ROMAN"
|
|
17677
|
+
}
|
|
17678
|
+
export declare type ConfluencePdfExportFontInput = {
|
|
17679
|
+
custom?: InputMaybe<ConfluencePdfExportFontCustomInput>;
|
|
17680
|
+
kind?: InputMaybe<ConfluencePdfExportFontKind>;
|
|
17681
|
+
predefined?: InputMaybe<ConfluencePdfExportFontPredefinedInput>;
|
|
17682
|
+
};
|
|
17683
|
+
export declare enum ConfluencePdfExportFontKind {
|
|
17684
|
+
Custom = "CUSTOM",
|
|
17685
|
+
Predefined = "PREDEFINED"
|
|
17686
|
+
}
|
|
17687
|
+
export declare type ConfluencePdfExportFontPredefined = {
|
|
17688
|
+
__typename?: 'ConfluencePdfExportFontPredefined';
|
|
17689
|
+
font: ConfluencePdfExportFontEnum;
|
|
17690
|
+
};
|
|
17691
|
+
export declare type ConfluencePdfExportFontPredefinedInput = {
|
|
17692
|
+
font: ConfluencePdfExportFontEnumInput;
|
|
17693
|
+
};
|
|
17694
|
+
export declare type ConfluencePdfExportFooterConfiguration = {
|
|
17695
|
+
__typename?: 'ConfluencePdfExportFooterConfiguration';
|
|
17696
|
+
alignment: ConfluencePdfExportHeaderFooterAlignment;
|
|
17697
|
+
size: Scalars['Int']['output'];
|
|
17698
|
+
text: Scalars['String']['output'];
|
|
17699
|
+
};
|
|
17700
|
+
export declare type ConfluencePdfExportFooterConfigurationInput = {
|
|
17701
|
+
alignment: ConfluencePdfExportHeaderFooterAlignmentInput;
|
|
17702
|
+
size: Scalars['Int']['input'];
|
|
17703
|
+
text: Scalars['String']['input'];
|
|
17704
|
+
};
|
|
17705
|
+
export declare type ConfluencePdfExportFooterInclusionConfiguration = {
|
|
17706
|
+
__typename?: 'ConfluencePdfExportFooterInclusionConfiguration';
|
|
17707
|
+
configuration: ConfluencePdfExportFooterConfiguration;
|
|
17708
|
+
isIncluded: Scalars['Boolean']['output'];
|
|
17709
|
+
};
|
|
17710
|
+
export declare type ConfluencePdfExportFooterInclusionConfigurationInput = {
|
|
17711
|
+
configuration: ConfluencePdfExportFooterConfigurationInput;
|
|
17712
|
+
isIncluded: Scalars['Boolean']['input'];
|
|
17713
|
+
};
|
|
17714
|
+
export declare type ConfluencePdfExportHeaderConfiguration = {
|
|
17715
|
+
__typename?: 'ConfluencePdfExportHeaderConfiguration';
|
|
17716
|
+
alignment: ConfluencePdfExportHeaderFooterAlignment;
|
|
17717
|
+
size: Scalars['Int']['output'];
|
|
17718
|
+
text: Scalars['String']['output'];
|
|
17719
|
+
};
|
|
17720
|
+
export declare type ConfluencePdfExportHeaderConfigurationInput = {
|
|
17721
|
+
alignment: ConfluencePdfExportHeaderFooterAlignmentInput;
|
|
17722
|
+
size: Scalars['Int']['input'];
|
|
17723
|
+
text: Scalars['String']['input'];
|
|
17724
|
+
};
|
|
17725
|
+
export declare enum ConfluencePdfExportHeaderFooterAlignment {
|
|
17726
|
+
Center = "CENTER",
|
|
17727
|
+
Left = "LEFT"
|
|
17728
|
+
}
|
|
17729
|
+
export declare enum ConfluencePdfExportHeaderFooterAlignmentInput {
|
|
17730
|
+
Center = "CENTER",
|
|
17731
|
+
Left = "LEFT"
|
|
17732
|
+
}
|
|
17733
|
+
export declare type ConfluencePdfExportHeaderInclusionConfiguration = {
|
|
17734
|
+
__typename?: 'ConfluencePdfExportHeaderInclusionConfiguration';
|
|
17735
|
+
configuration: ConfluencePdfExportHeaderConfiguration;
|
|
17736
|
+
isIncluded: Scalars['Boolean']['output'];
|
|
17737
|
+
};
|
|
17738
|
+
export declare type ConfluencePdfExportHeaderInclusionConfigurationInput = {
|
|
17739
|
+
configuration: ConfluencePdfExportHeaderConfigurationInput;
|
|
17740
|
+
isIncluded: Scalars['Boolean']['input'];
|
|
17741
|
+
};
|
|
17742
|
+
export declare type ConfluencePdfExportPageMargins = {
|
|
17743
|
+
__typename?: 'ConfluencePdfExportPageMargins';
|
|
17744
|
+
bottom: Scalars['Float']['output'];
|
|
17745
|
+
left: Scalars['Float']['output'];
|
|
17746
|
+
right: Scalars['Float']['output'];
|
|
17747
|
+
sides: ConfluencePdfExportPageMarginsSides;
|
|
17748
|
+
top: Scalars['Float']['output'];
|
|
17749
|
+
unit: ConfluencePdfExportPageMarginsUnit;
|
|
17750
|
+
};
|
|
17751
|
+
export declare type ConfluencePdfExportPageMarginsInput = {
|
|
17752
|
+
bottom: Scalars['Float']['input'];
|
|
17753
|
+
left: Scalars['Float']['input'];
|
|
17754
|
+
right: Scalars['Float']['input'];
|
|
17755
|
+
sides: ConfluencePdfExportPageMarginsSidesInput;
|
|
17756
|
+
top: Scalars['Float']['input'];
|
|
17757
|
+
unit: ConfluencePdfExportPageMarginsUnitInput;
|
|
17758
|
+
};
|
|
17759
|
+
export declare enum ConfluencePdfExportPageMarginsSides {
|
|
17760
|
+
All = "ALL",
|
|
17761
|
+
Individual = "INDIVIDUAL"
|
|
17762
|
+
}
|
|
17763
|
+
export declare enum ConfluencePdfExportPageMarginsSidesInput {
|
|
17764
|
+
All = "ALL",
|
|
17765
|
+
Individual = "INDIVIDUAL"
|
|
17766
|
+
}
|
|
17767
|
+
export declare enum ConfluencePdfExportPageMarginsUnit {
|
|
17768
|
+
Centimeters = "CENTIMETERS",
|
|
17769
|
+
Inches = "INCHES"
|
|
17770
|
+
}
|
|
17771
|
+
export declare enum ConfluencePdfExportPageMarginsUnitInput {
|
|
17772
|
+
Centimeters = "CENTIMETERS",
|
|
17773
|
+
Inches = "INCHES"
|
|
17774
|
+
}
|
|
17775
|
+
export declare enum ConfluencePdfExportPageOrientation {
|
|
17776
|
+
Landscape = "LANDSCAPE",
|
|
17777
|
+
Portrait = "PORTRAIT"
|
|
17778
|
+
}
|
|
17779
|
+
export declare enum ConfluencePdfExportPageOrientationInput {
|
|
17780
|
+
Landscape = "LANDSCAPE",
|
|
17781
|
+
Portrait = "PORTRAIT"
|
|
17782
|
+
}
|
|
17783
|
+
export declare enum ConfluencePdfExportPageSize {
|
|
17784
|
+
A3 = "A3",
|
|
17785
|
+
A4 = "A4",
|
|
17786
|
+
A5 = "A5",
|
|
17787
|
+
Legal = "LEGAL",
|
|
17788
|
+
Tabloid = "TABLOID",
|
|
17789
|
+
UsLetter = "US_LETTER"
|
|
17790
|
+
}
|
|
17791
|
+
export declare enum ConfluencePdfExportPageSizeInput {
|
|
17792
|
+
A3 = "A3",
|
|
17793
|
+
A4 = "A4",
|
|
17794
|
+
A5 = "A5",
|
|
17795
|
+
Legal = "LEGAL",
|
|
17796
|
+
Tabloid = "TABLOID",
|
|
17797
|
+
UsLetter = "US_LETTER"
|
|
17798
|
+
}
|
|
17629
17799
|
export declare type ConfluencePdfExportSettings = {
|
|
17630
17800
|
__typename?: 'ConfluencePdfExportSettings';
|
|
17631
17801
|
footer?: Maybe<Scalars['String']['output']>;
|
|
@@ -17654,6 +17824,48 @@ export declare type ConfluencePdfExportTask = {
|
|
|
17654
17824
|
progressPercent?: Maybe<Scalars['Int']['output']>;
|
|
17655
17825
|
secondsElapsed?: Maybe<Scalars['Long']['output']>;
|
|
17656
17826
|
};
|
|
17827
|
+
export declare type ConfluencePdfExportTitlePageConfiguration = {
|
|
17828
|
+
__typename?: 'ConfluencePdfExportTitlePageConfiguration';
|
|
17829
|
+
horizontalAlignment: ConfluencePdfExportTitlePageHorizontalAlignment;
|
|
17830
|
+
size: Scalars['Int']['output'];
|
|
17831
|
+
text: Scalars['String']['output'];
|
|
17832
|
+
verticalAlignment: ConfluencePdfExportTitlePageVerticalAlignment;
|
|
17833
|
+
};
|
|
17834
|
+
export declare type ConfluencePdfExportTitlePageConfigurationInput = {
|
|
17835
|
+
horizontalAlignment: ConfluencePdfExportTitlePageHorizontalAlignmentInput;
|
|
17836
|
+
size: Scalars['Int']['input'];
|
|
17837
|
+
text: Scalars['String']['input'];
|
|
17838
|
+
verticalAlignment: ConfluencePdfExportTitlePageVerticalAlignmentInput;
|
|
17839
|
+
};
|
|
17840
|
+
export declare enum ConfluencePdfExportTitlePageHorizontalAlignment {
|
|
17841
|
+
Left = "LEFT",
|
|
17842
|
+
Middle = "MIDDLE",
|
|
17843
|
+
Right = "RIGHT"
|
|
17844
|
+
}
|
|
17845
|
+
export declare enum ConfluencePdfExportTitlePageHorizontalAlignmentInput {
|
|
17846
|
+
Left = "LEFT",
|
|
17847
|
+
Middle = "MIDDLE",
|
|
17848
|
+
Right = "RIGHT"
|
|
17849
|
+
}
|
|
17850
|
+
export declare type ConfluencePdfExportTitlePageInclusionConfiguration = {
|
|
17851
|
+
__typename?: 'ConfluencePdfExportTitlePageInclusionConfiguration';
|
|
17852
|
+
configuration: ConfluencePdfExportTitlePageConfiguration;
|
|
17853
|
+
isIncluded: Scalars['Boolean']['output'];
|
|
17854
|
+
};
|
|
17855
|
+
export declare type ConfluencePdfExportTitlePageInclusionConfigurationInput = {
|
|
17856
|
+
configuration: ConfluencePdfExportTitlePageConfigurationInput;
|
|
17857
|
+
isIncluded: Scalars['Boolean']['input'];
|
|
17858
|
+
};
|
|
17859
|
+
export declare enum ConfluencePdfExportTitlePageVerticalAlignment {
|
|
17860
|
+
Bottom = "BOTTOM",
|
|
17861
|
+
Middle = "MIDDLE",
|
|
17862
|
+
Top = "TOP"
|
|
17863
|
+
}
|
|
17864
|
+
export declare enum ConfluencePdfExportTitlePageVerticalAlignmentInput {
|
|
17865
|
+
Bottom = "BOTTOM",
|
|
17866
|
+
Middle = "MIDDLE",
|
|
17867
|
+
Top = "TOP"
|
|
17868
|
+
}
|
|
17657
17869
|
export declare type ConfluencePendingAccessRequest = {
|
|
17658
17870
|
__typename?: 'ConfluencePendingAccessRequest';
|
|
17659
17871
|
isPendingAccessRequestExists?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18423,6 +18635,7 @@ export declare enum ConfluenceSpaceSettingEditorVersion {
|
|
|
18423
18635
|
export declare type ConfluenceSpaceSettings = {
|
|
18424
18636
|
__typename?: 'ConfluenceSpaceSettings';
|
|
18425
18637
|
editorVersions?: Maybe<ConfluenceSpaceSettingsEditorVersions>;
|
|
18638
|
+
isPdfExportNoCodeStylingOptedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
18426
18639
|
routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
18427
18640
|
};
|
|
18428
18641
|
export declare type ConfluenceSpaceSettingsEditorVersions = {
|
|
@@ -18595,6 +18808,7 @@ export declare type ConfluenceTenantContext = {
|
|
|
18595
18808
|
initialProductList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
18596
18809
|
licenseStates?: Maybe<LicenseStates>;
|
|
18597
18810
|
licensedProducts: Array<LicensedProduct>;
|
|
18811
|
+
monolithRegion?: Maybe<Scalars['String']['output']>;
|
|
18598
18812
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
18599
18813
|
};
|
|
18600
18814
|
export declare type ConfluenceTheme = {
|
|
@@ -19029,6 +19243,12 @@ export declare type ConfluenceUpdateLoomEntryPointsConfigurationPayload = Payloa
|
|
|
19029
19243
|
errors?: Maybe<Array<MutationError>>;
|
|
19030
19244
|
success: Scalars['Boolean']['output'];
|
|
19031
19245
|
};
|
|
19246
|
+
export declare type ConfluenceUpdateNcsPdfExportConfigurationPayload = Payload & {
|
|
19247
|
+
__typename?: 'ConfluenceUpdateNCSPdfExportConfigurationPayload';
|
|
19248
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19249
|
+
pdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
|
|
19250
|
+
success: Scalars['Boolean']['output'];
|
|
19251
|
+
};
|
|
19032
19252
|
export declare type ConfluenceUpdateNav4OptInInput = {
|
|
19033
19253
|
enableNav4: Scalars['Boolean']['input'];
|
|
19034
19254
|
};
|
|
@@ -19058,6 +19278,19 @@ export declare type ConfluenceUpdatePdfExportConfigurationPayload = Payload & {
|
|
|
19058
19278
|
errors?: Maybe<Array<MutationError>>;
|
|
19059
19279
|
success: Scalars['Boolean']['output'];
|
|
19060
19280
|
};
|
|
19281
|
+
export declare type ConfluenceUpdatePdfExportNoCodeStylingConfigInput = {
|
|
19282
|
+
bodyFontSize: Scalars['Int']['input'];
|
|
19283
|
+
font: ConfluencePdfExportFontInput;
|
|
19284
|
+
footer: ConfluencePdfExportFooterInclusionConfigurationInput;
|
|
19285
|
+
header: ConfluencePdfExportHeaderInclusionConfigurationInput;
|
|
19286
|
+
lineSpacing: Scalars['Float']['input'];
|
|
19287
|
+
pageMargins: ConfluencePdfExportPageMarginsInput;
|
|
19288
|
+
pageOrientation: ConfluencePdfExportPageOrientationInput;
|
|
19289
|
+
pageSize: ConfluencePdfExportPageSizeInput;
|
|
19290
|
+
shouldIncludePageNumbers: Scalars['Boolean']['input'];
|
|
19291
|
+
shouldIncludeTableOfContents: Scalars['Boolean']['input'];
|
|
19292
|
+
titlePage: ConfluencePdfExportTitlePageInclusionConfigurationInput;
|
|
19293
|
+
};
|
|
19061
19294
|
export declare type ConfluenceUpdatePdfExportSpaceConfigurationInput = {
|
|
19062
19295
|
footer: Scalars['String']['input'];
|
|
19063
19296
|
header: Scalars['String']['input'];
|
|
@@ -25587,6 +25820,14 @@ export declare type DevAiCreateTechnicalPlannerJobPayload = Payload & {
|
|
|
25587
25820
|
job?: Maybe<DevAiTechnicalPlannerJob>;
|
|
25588
25821
|
success: Scalars['Boolean']['output'];
|
|
25589
25822
|
};
|
|
25823
|
+
export declare type DevAiEntitlementCheckResultResponse = {
|
|
25824
|
+
__typename?: 'DevAiEntitlementCheckResultResponse';
|
|
25825
|
+
atlassianAccountId?: Maybe<Scalars['ID']['output']>;
|
|
25826
|
+
cloudId: Scalars['ID']['output'];
|
|
25827
|
+
entitlementType: DevAiResourceType;
|
|
25828
|
+
isUserAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
25829
|
+
userHasProductAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
25830
|
+
};
|
|
25590
25831
|
export declare type DevAiFlowPipeline = {
|
|
25591
25832
|
__typename?: 'DevAiFlowPipeline';
|
|
25592
25833
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -25789,6 +26030,13 @@ export declare type DevAiRemoveContainerConfigVariablePayload = Payload & {
|
|
|
25789
26030
|
errors?: Maybe<Array<MutationError>>;
|
|
25790
26031
|
success: Scalars['Boolean']['output'];
|
|
25791
26032
|
};
|
|
26033
|
+
export declare enum DevAiResourceType {
|
|
26034
|
+
NoActiveProduct = "NO_ACTIVE_PRODUCT",
|
|
26035
|
+
RovoDevBeta = "ROVO_DEV_BETA",
|
|
26036
|
+
RovoDevEverywhere = "ROVO_DEV_EVERYWHERE",
|
|
26037
|
+
RovoDevStandard = "ROVO_DEV_STANDARD",
|
|
26038
|
+
RovoDevStandardTrial = "ROVO_DEV_STANDARD_TRIAL"
|
|
26039
|
+
}
|
|
25792
26040
|
export declare type DevAiRovoAgent = {
|
|
25793
26041
|
__typename?: 'DevAiRovoAgent';
|
|
25794
26042
|
actionConfig?: Maybe<Array<Maybe<DevAiRovoAgentActionConfig>>>;
|
|
@@ -28137,6 +28385,7 @@ export declare type EcosystemMutation = {
|
|
|
28137
28385
|
devConsole?: Maybe<DevConsoleMutation>;
|
|
28138
28386
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
28139
28387
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
28388
|
+
publishGlobalRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
28140
28389
|
publishRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
28141
28390
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
28142
28391
|
updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
|
|
@@ -28175,6 +28424,12 @@ export declare type EcosystemMutationForgeAlertsArgs = {
|
|
|
28175
28424
|
export declare type EcosystemMutationForgeMetricsArgs = {
|
|
28176
28425
|
appId: Scalars['ID']['input'];
|
|
28177
28426
|
};
|
|
28427
|
+
export declare type EcosystemMutationPublishGlobalRealtimeChannelArgs = {
|
|
28428
|
+
installationId: Scalars['ID']['input'];
|
|
28429
|
+
name: Scalars['String']['input'];
|
|
28430
|
+
payload: Scalars['String']['input'];
|
|
28431
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
28432
|
+
};
|
|
28178
28433
|
export declare type EcosystemMutationPublishRealtimeChannelArgs = {
|
|
28179
28434
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
28180
28435
|
installationId: Scalars['ID']['input'];
|
|
@@ -28343,8 +28598,14 @@ export declare enum EcosystemRequiredProduct {
|
|
|
28343
28598
|
}
|
|
28344
28599
|
export declare type EcosystemSubscription = {
|
|
28345
28600
|
__typename?: 'EcosystemSubscription';
|
|
28601
|
+
globalRealtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
28346
28602
|
realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
28347
28603
|
};
|
|
28604
|
+
export declare type EcosystemSubscriptionGlobalRealtimeChannelArgs = {
|
|
28605
|
+
installationId: Scalars['ID']['input'];
|
|
28606
|
+
name: Scalars['String']['input'];
|
|
28607
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
28608
|
+
};
|
|
28348
28609
|
export declare type EcosystemSubscriptionRealtimeChannelArgs = {
|
|
28349
28610
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
28350
28611
|
installationId: Scalars['ID']['input'];
|
|
@@ -58585,13 +58846,8 @@ export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
|
58585
58846
|
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
58586
58847
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
58587
58848
|
};
|
|
58588
|
-
export declare type
|
|
58589
|
-
__typename?: '
|
|
58590
|
-
data?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkEngagementSeriesData>>>;
|
|
58591
|
-
date?: Maybe<Scalars['String']['output']>;
|
|
58592
|
-
};
|
|
58593
|
-
export declare type GrowthUnifiedProfileLinkEngagementSeriesData = {
|
|
58594
|
-
__typename?: 'GrowthUnifiedProfileLinkEngagementSeriesData';
|
|
58849
|
+
export declare type GrowthUnifiedProfileLinkEngagement = {
|
|
58850
|
+
__typename?: 'GrowthUnifiedProfileLinkEngagement';
|
|
58595
58851
|
step?: Maybe<Scalars['Int']['output']>;
|
|
58596
58852
|
total?: Maybe<Scalars['Int']['output']>;
|
|
58597
58853
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -58778,7 +59034,7 @@ export declare type GrowthUnifiedProfileSiteOnboardingInsightsResult = {
|
|
|
58778
59034
|
earliestDataDate?: Maybe<Scalars['String']['output']>;
|
|
58779
59035
|
engagementsSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileEngagementsSeries>>>;
|
|
58780
59036
|
latestDataDate?: Maybe<Scalars['String']['output']>;
|
|
58781
|
-
|
|
59037
|
+
linkEngagement?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkEngagement>>>;
|
|
58782
59038
|
rollingInterval: Scalars['String']['output'];
|
|
58783
59039
|
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
58784
59040
|
totalCompletions?: Maybe<Scalars['Int']['output']>;
|
|
@@ -63869,15 +64125,27 @@ export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & Node & {
|
|
|
63869
64125
|
};
|
|
63870
64126
|
export declare type JiraBoardViewCell = Node & {
|
|
63871
64127
|
__typename?: 'JiraBoardViewCell';
|
|
64128
|
+
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
63872
64129
|
column?: Maybe<JiraBoardViewColumn>;
|
|
63873
64130
|
id: Scalars['ID']['output'];
|
|
64131
|
+
issuePositions?: Maybe<Array<JiraBoardViewCellIssuePosition>>;
|
|
63874
64132
|
issues?: Maybe<JiraIssueConnection>;
|
|
64133
|
+
workflows?: Maybe<JiraBoardViewWorkflowConnection>;
|
|
64134
|
+
};
|
|
64135
|
+
export declare type JiraBoardViewCellIssuePositionsArgs = {
|
|
64136
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
64137
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
63875
64138
|
};
|
|
63876
64139
|
export declare type JiraBoardViewCellIssuesArgs = {
|
|
63877
64140
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63878
64141
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
63879
64142
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63880
64143
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64144
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
64145
|
+
};
|
|
64146
|
+
export declare type JiraBoardViewCellWorkflowsArgs = {
|
|
64147
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64148
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63881
64149
|
};
|
|
63882
64150
|
export declare type JiraBoardViewCellConnection = {
|
|
63883
64151
|
__typename?: 'JiraBoardViewCellConnection';
|
|
@@ -63890,6 +64158,11 @@ export declare type JiraBoardViewCellEdge = {
|
|
|
63890
64158
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
63891
64159
|
node?: Maybe<JiraBoardViewCell>;
|
|
63892
64160
|
};
|
|
64161
|
+
export declare type JiraBoardViewCellIssuePosition = {
|
|
64162
|
+
__typename?: 'JiraBoardViewCellIssuePosition';
|
|
64163
|
+
issue?: Maybe<JiraIssue>;
|
|
64164
|
+
previousIssue?: Maybe<JiraIssue>;
|
|
64165
|
+
};
|
|
63893
64166
|
export declare type JiraBoardViewColumn = {
|
|
63894
64167
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
63895
64168
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -63907,9 +64180,10 @@ export declare type JiraBoardViewColumnEdge = {
|
|
|
63907
64180
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
63908
64181
|
node?: Maybe<JiraBoardViewColumn>;
|
|
63909
64182
|
};
|
|
63910
|
-
export declare type JiraBoardViewColumnLayout = {
|
|
64183
|
+
export declare type JiraBoardViewColumnLayout = Node & {
|
|
63911
64184
|
__typename?: 'JiraBoardViewColumnLayout';
|
|
63912
64185
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
64186
|
+
id: Scalars['ID']['output'];
|
|
63913
64187
|
};
|
|
63914
64188
|
export declare type JiraBoardViewColumnLayoutCellsArgs = {
|
|
63915
64189
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63946,6 +64220,7 @@ export declare type JiraBoardViewQueryInput = {
|
|
|
63946
64220
|
export declare type JiraBoardViewSettings = {
|
|
63947
64221
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
63948
64222
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
64223
|
+
textSearch?: InputMaybe<Scalars['String']['input']>;
|
|
63949
64224
|
};
|
|
63950
64225
|
export declare type JiraBoardViewStatus = {
|
|
63951
64226
|
__typename?: 'JiraBoardViewStatus';
|
|
@@ -63994,6 +64269,30 @@ export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOpt
|
|
|
63994
64269
|
name?: Maybe<Scalars['String']['output']>;
|
|
63995
64270
|
type?: Maybe<JiraSyntheticFieldCardOptionType>;
|
|
63996
64271
|
};
|
|
64272
|
+
export declare type JiraBoardViewWorkflow = {
|
|
64273
|
+
__typename?: 'JiraBoardViewWorkflow';
|
|
64274
|
+
eligibleTransitions?: Maybe<JiraTransitionConnection>;
|
|
64275
|
+
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
64276
|
+
};
|
|
64277
|
+
export declare type JiraBoardViewWorkflowEligibleTransitionsArgs = {
|
|
64278
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64279
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64280
|
+
};
|
|
64281
|
+
export declare type JiraBoardViewWorkflowIssueTypesArgs = {
|
|
64282
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64283
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64284
|
+
};
|
|
64285
|
+
export declare type JiraBoardViewWorkflowConnection = {
|
|
64286
|
+
__typename?: 'JiraBoardViewWorkflowConnection';
|
|
64287
|
+
edges?: Maybe<Array<Maybe<JiraBoardViewWorkflowEdge>>>;
|
|
64288
|
+
errors?: Maybe<Array<QueryError>>;
|
|
64289
|
+
pageInfo?: Maybe<PageInfo>;
|
|
64290
|
+
};
|
|
64291
|
+
export declare type JiraBoardViewWorkflowEdge = {
|
|
64292
|
+
__typename?: 'JiraBoardViewWorkflowEdge';
|
|
64293
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
64294
|
+
node?: Maybe<JiraBoardViewWorkflow>;
|
|
64295
|
+
};
|
|
63997
64296
|
export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
63998
64297
|
__typename?: 'JiraBooleanField';
|
|
63999
64298
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -65862,6 +66161,8 @@ export declare type JiraCreateEmptyActivityConfigurationInput = {
|
|
|
65862
66161
|
export declare type JiraCreateFieldSchemeInput = {
|
|
65863
66162
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
65864
66163
|
name: Scalars['String']['input'];
|
|
66164
|
+
sourceFieldConfigurationSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
66165
|
+
sourceFieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
65865
66166
|
};
|
|
65866
66167
|
export declare type JiraCreateFormattingRuleInput = {
|
|
65867
66168
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -66090,6 +66391,7 @@ export declare type JiraCustomFieldUsageMetric = JiraResourceUsageMetricV2 & Nod
|
|
|
66090
66391
|
projectsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
66091
66392
|
projectsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
66092
66393
|
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
66394
|
+
unusedCustomFieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
66093
66395
|
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
66094
66396
|
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
66095
66397
|
};
|
|
@@ -66971,6 +67273,7 @@ export declare type JiraDragAndDropBoardViewIssueInput = {
|
|
|
66971
67273
|
};
|
|
66972
67274
|
export declare type JiraDragAndDropBoardViewIssuePayload = {
|
|
66973
67275
|
__typename?: 'JiraDragAndDropBoardViewIssuePayload';
|
|
67276
|
+
cell?: Maybe<JiraBoardViewCell>;
|
|
66974
67277
|
errors?: Maybe<Array<MutationError>>;
|
|
66975
67278
|
issue?: Maybe<JiraIssue>;
|
|
66976
67279
|
success: Scalars['Boolean']['output'];
|
|
@@ -68358,6 +68661,13 @@ export declare type JiraGenericResourceUsageMetricValuesArgs = {
|
|
|
68358
68661
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
68359
68662
|
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
68360
68663
|
};
|
|
68664
|
+
export declare type JiraGetIssueResourceInput = {
|
|
68665
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68666
|
+
filters?: InputMaybe<Array<InputMaybe<JiraIssueResourceFilters>>>;
|
|
68667
|
+
first: Scalars['Int']['input'];
|
|
68668
|
+
orderDirection?: InputMaybe<JiraResourcesSortDirection>;
|
|
68669
|
+
orderField?: InputMaybe<JiraResourcesOrderField>;
|
|
68670
|
+
};
|
|
68361
68671
|
export declare enum JiraGlobalIssueCreateView {
|
|
68362
68672
|
FullModal = "FULL_MODAL",
|
|
68363
68673
|
MiniModal = "MINI_MODAL"
|
|
@@ -68399,6 +68709,7 @@ export declare type JiraGlobalPermissionGrantsList = {
|
|
|
68399
68709
|
export declare type JiraGlobalPermissionGrantsResult = JiraGlobalPermissionGrantsList | QueryError;
|
|
68400
68710
|
export declare enum JiraGlobalPermissionType {
|
|
68401
68711
|
Administer = "ADMINISTER",
|
|
68712
|
+
ManageCustomOnboarding = "MANAGE_CUSTOM_ONBOARDING",
|
|
68402
68713
|
UserPicker = "USER_PICKER"
|
|
68403
68714
|
}
|
|
68404
68715
|
export declare type JiraGlobalTimeTrackingSettings = {
|
|
@@ -68802,6 +69113,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
68802
69113
|
configurationUrl?: Maybe<Scalars['URL']['output']>;
|
|
68803
69114
|
confluenceLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
68804
69115
|
confluenceMentionedLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
69116
|
+
connectOperations?: Maybe<JiraIssueConnectOperationConnection>;
|
|
68805
69117
|
contentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
68806
69118
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
68807
69119
|
createdField?: Maybe<JiraDateTimePickerField>;
|
|
@@ -68820,9 +69132,11 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
68820
69132
|
fieldSetsById?: Maybe<JiraIssueFieldSetConnection>;
|
|
68821
69133
|
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
68822
69134
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
69135
|
+
fieldsByContainerTypes: JiraIssueFieldsByContainerTypesResult;
|
|
68823
69136
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
68824
69137
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
68825
69138
|
fieldsForView?: Maybe<JiraIssueFieldConnection>;
|
|
69139
|
+
getConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
68826
69140
|
groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
68827
69141
|
hasChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
68828
69142
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -68970,6 +69284,12 @@ export declare type JiraIssueConfluenceMentionedLinksArgs = {
|
|
|
68970
69284
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
68971
69285
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
68972
69286
|
};
|
|
69287
|
+
export declare type JiraIssueConnectOperationsArgs = {
|
|
69288
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69289
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
69290
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69291
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69292
|
+
};
|
|
68973
69293
|
export declare type JiraIssueContentPanelsArgs = {
|
|
68974
69294
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
68975
69295
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69017,6 +69337,9 @@ export declare type JiraIssueFieldsArgs = {
|
|
|
69017
69337
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69018
69338
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69019
69339
|
};
|
|
69340
|
+
export declare type JiraIssueFieldsByContainerTypesArgs = {
|
|
69341
|
+
containerTypes: Array<JiraIssueItemSystemContainerType>;
|
|
69342
|
+
};
|
|
69020
69343
|
export declare type JiraIssueFieldsByIdArgs = {
|
|
69021
69344
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69022
69345
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69033,6 +69356,9 @@ export declare type JiraIssueFieldsForViewArgs = {
|
|
|
69033
69356
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69034
69357
|
view: JiraViewQueryInput;
|
|
69035
69358
|
};
|
|
69359
|
+
export declare type JiraIssueGetConsolidatedResourcesArgs = {
|
|
69360
|
+
input?: InputMaybe<JiraGetIssueResourceInput>;
|
|
69361
|
+
};
|
|
69036
69362
|
export declare type JiraIssueGroupsByFieldIdArgs = {
|
|
69037
69363
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69038
69364
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69327,6 +69653,24 @@ export declare type JiraIssueCommits = {
|
|
|
69327
69653
|
export declare type JiraIssueCommitsInput = {
|
|
69328
69654
|
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69329
69655
|
};
|
|
69656
|
+
export declare type JiraIssueConnectOperation = {
|
|
69657
|
+
__typename?: 'JiraIssueConnectOperation';
|
|
69658
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
69659
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
69660
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
69661
|
+
styleClass?: Maybe<Scalars['String']['output']>;
|
|
69662
|
+
tooltip?: Maybe<Scalars['String']['output']>;
|
|
69663
|
+
};
|
|
69664
|
+
export declare type JiraIssueConnectOperationConnection = {
|
|
69665
|
+
__typename?: 'JiraIssueConnectOperationConnection';
|
|
69666
|
+
edges?: Maybe<Array<Maybe<JiraIssueConnectOperationEdge>>>;
|
|
69667
|
+
pageInfo: PageInfo;
|
|
69668
|
+
};
|
|
69669
|
+
export declare type JiraIssueConnectOperationEdge = {
|
|
69670
|
+
__typename?: 'JiraIssueConnectOperationEdge';
|
|
69671
|
+
cursor: Scalars['String']['output'];
|
|
69672
|
+
node?: Maybe<JiraIssueConnectOperation>;
|
|
69673
|
+
};
|
|
69330
69674
|
export declare type JiraIssueConnection = {
|
|
69331
69675
|
__typename?: 'JiraIssueConnection';
|
|
69332
69676
|
edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
|
|
@@ -69770,6 +70114,22 @@ export declare type JiraIssueFieldUnsupportedErrorExtension = QueryErrorExtensio
|
|
|
69770
70114
|
isUserPreferredField?: Maybe<Scalars['Boolean']['output']>;
|
|
69771
70115
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
69772
70116
|
};
|
|
70117
|
+
export declare type JiraIssueFieldsByContainerType = {
|
|
70118
|
+
__typename?: 'JiraIssueFieldsByContainerType';
|
|
70119
|
+
containerType: JiraIssueItemSystemContainerType;
|
|
70120
|
+
fields: JiraIssueFieldConnection;
|
|
70121
|
+
};
|
|
70122
|
+
export declare type JiraIssueFieldsByContainerTypeFieldsArgs = {
|
|
70123
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70124
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
70125
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70126
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
70127
|
+
};
|
|
70128
|
+
export declare type JiraIssueFieldsByContainerTypes = {
|
|
70129
|
+
__typename?: 'JiraIssueFieldsByContainerTypes';
|
|
70130
|
+
containerFields: Array<JiraIssueFieldsByContainerType>;
|
|
70131
|
+
};
|
|
70132
|
+
export declare type JiraIssueFieldsByContainerTypesResult = JiraIssueFieldsByContainerTypes | QueryError;
|
|
69773
70133
|
export declare type JiraIssueFieldsInput = {
|
|
69774
70134
|
affectedServicesField?: InputMaybe<JiraAffectedServicesFieldInput>;
|
|
69775
70135
|
assetsField?: InputMaybe<JiraAssetFieldInput>;
|
|
@@ -70228,6 +70588,10 @@ export declare enum JiraIssueRemoteLinkOperations {
|
|
|
70228
70588
|
Remove = "REMOVE",
|
|
70229
70589
|
Set = "SET"
|
|
70230
70590
|
}
|
|
70591
|
+
export declare type JiraIssueResourceFilters = {
|
|
70592
|
+
integration?: InputMaybe<JiraResourceIntegration>;
|
|
70593
|
+
types?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
70594
|
+
};
|
|
70231
70595
|
export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
70232
70596
|
__typename?: 'JiraIssueRestrictionField';
|
|
70233
70597
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -72004,6 +72368,30 @@ export declare type JiraLinkedIssuesInput = {
|
|
|
72004
72368
|
inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
72005
72369
|
outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
72006
72370
|
};
|
|
72371
|
+
export declare type JiraListSettingMigrationData = {
|
|
72372
|
+
columns?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
72373
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
72374
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
72375
|
+
projectId: Scalars['Long']['input'];
|
|
72376
|
+
};
|
|
72377
|
+
export declare type JiraListSettingMigrationInput = {
|
|
72378
|
+
cloudId: Scalars['ID']['input'];
|
|
72379
|
+
nodes?: InputMaybe<Array<JiraListSettingMigrationData>>;
|
|
72380
|
+
};
|
|
72381
|
+
export declare type JiraListSettingMigrationMutationErrorExtension = MutationErrorExtension & {
|
|
72382
|
+
__typename?: 'JiraListSettingMigrationMutationErrorExtension';
|
|
72383
|
+
columnsError?: Maybe<Scalars['String']['output']>;
|
|
72384
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
72385
|
+
groupByError?: Maybe<Scalars['String']['output']>;
|
|
72386
|
+
jqlError?: Maybe<Scalars['String']['output']>;
|
|
72387
|
+
projectId?: Maybe<Scalars['Long']['output']>;
|
|
72388
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
72389
|
+
};
|
|
72390
|
+
export declare type JiraListSettingMigrationPayload = Payload & {
|
|
72391
|
+
__typename?: 'JiraListSettingMigrationPayload';
|
|
72392
|
+
errors?: Maybe<Array<MutationError>>;
|
|
72393
|
+
success: Scalars['Boolean']['output'];
|
|
72394
|
+
};
|
|
72007
72395
|
export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
72008
72396
|
__typename?: 'JiraListView';
|
|
72009
72397
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -72580,6 +72968,7 @@ export declare type JiraMutation = {
|
|
|
72580
72968
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
72581
72969
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
72582
72970
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
72971
|
+
trackRecentIssue?: Maybe<JiraTrackRecentIssuePayload>;
|
|
72583
72972
|
trackRecentProject?: Maybe<JiraTrackRecentProjectPayload>;
|
|
72584
72973
|
unlinkIssuesFromIncident?: Maybe<JiraUnlinkIssuesFromIncidentMutationPayload>;
|
|
72585
72974
|
updateActiveBackground?: Maybe<JiraUpdateActiveBackgroundPayload>;
|
|
@@ -73113,6 +73502,9 @@ export declare type JiraMutationSubmitBulkOperationArgs = {
|
|
|
73113
73502
|
cloudId: Scalars['ID']['input'];
|
|
73114
73503
|
input: JiraSubmitBulkOperationInput;
|
|
73115
73504
|
};
|
|
73505
|
+
export declare type JiraMutationTrackRecentIssueArgs = {
|
|
73506
|
+
input: JiraTrackRecentIssueInput;
|
|
73507
|
+
};
|
|
73116
73508
|
export declare type JiraMutationTrackRecentProjectArgs = {
|
|
73117
73509
|
input: JiraTrackRecentProjectInput;
|
|
73118
73510
|
};
|
|
@@ -76438,6 +76830,7 @@ export declare type JiraQueryGetArchivedIssuesForProjectArgs = {
|
|
|
76438
76830
|
};
|
|
76439
76831
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
76440
76832
|
cloudId: Scalars['ID']['input'];
|
|
76833
|
+
permissionKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
76441
76834
|
};
|
|
76442
76835
|
export declare type JiraQueryGetIssueTransitionByIssueIdArgs = {
|
|
76443
76836
|
issueId: Scalars['ID']['input'];
|
|
@@ -77790,6 +78183,39 @@ export declare type JiraResolutionFieldPayload = Payload & {
|
|
|
77790
78183
|
export declare type JiraResolutionInput = {
|
|
77791
78184
|
resolutionId: Scalars['ID']['input'];
|
|
77792
78185
|
};
|
|
78186
|
+
export declare type JiraResource = {
|
|
78187
|
+
__typename?: 'JiraResource';
|
|
78188
|
+
author?: Maybe<User>;
|
|
78189
|
+
contentId?: Maybe<Scalars['String']['output']>;
|
|
78190
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
78191
|
+
contentUrl?: Maybe<Scalars['String']['output']>;
|
|
78192
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
78193
|
+
fileName?: Maybe<Scalars['String']['output']>;
|
|
78194
|
+
fileSize?: Maybe<Scalars['Long']['output']>;
|
|
78195
|
+
hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
|
|
78196
|
+
id: Scalars['ID']['output'];
|
|
78197
|
+
integration?: Maybe<JiraResourceIntegration>;
|
|
78198
|
+
parent?: Maybe<JiraResourceParentName>;
|
|
78199
|
+
parentId?: Maybe<Scalars['String']['output']>;
|
|
78200
|
+
};
|
|
78201
|
+
export declare enum JiraResourceIntegration {
|
|
78202
|
+
Attachment = "ATTACHMENT",
|
|
78203
|
+
Confluence = "CONFLUENCE",
|
|
78204
|
+
Loom = "LOOM"
|
|
78205
|
+
}
|
|
78206
|
+
export declare type JiraResourceNode = {
|
|
78207
|
+
__typename?: 'JiraResourceNode';
|
|
78208
|
+
node?: Maybe<JiraResource>;
|
|
78209
|
+
};
|
|
78210
|
+
export declare enum JiraResourceParentName {
|
|
78211
|
+
Comment = "COMMENT",
|
|
78212
|
+
Customfield = "CUSTOMFIELD",
|
|
78213
|
+
Description = "DESCRIPTION",
|
|
78214
|
+
Environment = "ENVIRONMENT",
|
|
78215
|
+
Form = "FORM",
|
|
78216
|
+
Issue = "ISSUE",
|
|
78217
|
+
Worklog = "WORKLOG"
|
|
78218
|
+
}
|
|
77793
78219
|
export declare type JiraResourceUsageCustomFieldRecommendation = {
|
|
77794
78220
|
__typename?: 'JiraResourceUsageCustomFieldRecommendation';
|
|
77795
78221
|
customFieldAction: JiraResourceUsageCustomFieldRecommendationAction;
|
|
@@ -77907,6 +78333,22 @@ export declare enum JiraResourceUsageRecommendationStatus {
|
|
|
77907
78333
|
Obsolete = "OBSOLETE",
|
|
77908
78334
|
Trashed = "TRASHED"
|
|
77909
78335
|
}
|
|
78336
|
+
export declare enum JiraResourcesOrderField {
|
|
78337
|
+
Created = "CREATED",
|
|
78338
|
+
Filename = "FILENAME",
|
|
78339
|
+
Filesize = "FILESIZE",
|
|
78340
|
+
Mimetype = "MIMETYPE"
|
|
78341
|
+
}
|
|
78342
|
+
export declare type JiraResourcesResult = {
|
|
78343
|
+
__typename?: 'JiraResourcesResult';
|
|
78344
|
+
deletableCount?: Maybe<Scalars['Long']['output']>;
|
|
78345
|
+
edges?: Maybe<Array<Maybe<JiraResourceNode>>>;
|
|
78346
|
+
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
78347
|
+
};
|
|
78348
|
+
export declare enum JiraResourcesSortDirection {
|
|
78349
|
+
Asc = "ASC",
|
|
78350
|
+
Desc = "DESC"
|
|
78351
|
+
}
|
|
77910
78352
|
export declare type JiraRestoreGlobalCustomFieldsInput = {
|
|
77911
78353
|
fieldIds: Array<Scalars['String']['input']>;
|
|
77912
78354
|
};
|
|
@@ -79629,6 +80071,15 @@ export declare type JiraSetIsFavouritePayload = Payload & {
|
|
|
79629
80071
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
79630
80072
|
success: Scalars['Boolean']['output'];
|
|
79631
80073
|
};
|
|
80074
|
+
export declare type JiraSetIssueSearchAggregationConfigInput = {
|
|
80075
|
+
aggregationFields?: InputMaybe<Array<JiraIssueSearchFieldAggregationInput>>;
|
|
80076
|
+
viewId: Scalars['ID']['input'];
|
|
80077
|
+
};
|
|
80078
|
+
export declare type JiraSetIssueSearchAggregationConfigPayload = Payload & {
|
|
80079
|
+
__typename?: 'JiraSetIssueSearchAggregationConfigPayload';
|
|
80080
|
+
errors?: Maybe<Array<MutationError>>;
|
|
80081
|
+
success: Scalars['Boolean']['output'];
|
|
80082
|
+
};
|
|
79632
80083
|
export declare type JiraSetIssueSearchFieldSetsInput = {
|
|
79633
80084
|
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSets>;
|
|
79634
80085
|
viewId: Scalars['ID']['input'];
|
|
@@ -81142,6 +81593,15 @@ export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueField
|
|
|
81142
81593
|
type: Scalars['String']['output'];
|
|
81143
81594
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
81144
81595
|
};
|
|
81596
|
+
export declare type JiraTrackRecentIssueInput = {
|
|
81597
|
+
cloudId: Scalars['ID']['input'];
|
|
81598
|
+
issueKey: Scalars['String']['input'];
|
|
81599
|
+
};
|
|
81600
|
+
export declare type JiraTrackRecentIssuePayload = Payload & {
|
|
81601
|
+
__typename?: 'JiraTrackRecentIssuePayload';
|
|
81602
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81603
|
+
success: Scalars['Boolean']['output'];
|
|
81604
|
+
};
|
|
81145
81605
|
export declare type JiraTrackRecentProjectInput = {
|
|
81146
81606
|
cloudId: Scalars['ID']['input'];
|
|
81147
81607
|
projectKey: Scalars['String']['input'];
|
|
@@ -82015,6 +82475,7 @@ export declare type JiraUserPreferences = {
|
|
|
82015
82475
|
issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
|
|
82016
82476
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
82017
82477
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
|
|
82478
|
+
issueViewShouldShowWelcomeMessage?: Maybe<Scalars['Boolean']['output']>;
|
|
82018
82479
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
82019
82480
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
82020
82481
|
issueViewUserPreferredLayout?: Maybe<JiraIssueViewUserPreferredLayout>;
|
|
@@ -85942,12 +86403,6 @@ export declare type LoomUnauthenticatedUserPrimaryAuthType = {
|
|
|
85942
86403
|
hasActiveMemberships?: Maybe<Scalars['Boolean']['output']>;
|
|
85943
86404
|
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
85944
86405
|
};
|
|
85945
|
-
export declare type LoomUserPrimaryAuthType = {
|
|
85946
|
-
__typename?: 'LoomUserPrimaryAuthType';
|
|
85947
|
-
authType: Scalars['String']['output'];
|
|
85948
|
-
hasActiveMemberships?: Maybe<Scalars['Boolean']['output']>;
|
|
85949
|
-
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
85950
|
-
};
|
|
85951
86406
|
export declare enum LoomUserStatus {
|
|
85952
86407
|
Linked = "LINKED",
|
|
85953
86408
|
LinkedEnterprise = "LINKED_ENTERPRISE",
|
|
@@ -86957,6 +87412,7 @@ export declare type MarketplaceConsoleForgeAppVersion = {
|
|
|
86957
87412
|
};
|
|
86958
87413
|
export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
86959
87414
|
__typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
|
|
87415
|
+
additionalCompatibilities?: Maybe<Array<Scalars['String']['output']>>;
|
|
86960
87416
|
appAccess?: Maybe<Array<Scalars['String']['output']>>;
|
|
86961
87417
|
appId: Scalars['ID']['output'];
|
|
86962
87418
|
envId: Scalars['ID']['output'];
|
|
@@ -89286,6 +89742,16 @@ export declare type MercuryCreateCostSubtypePayload = Payload & {
|
|
|
89286
89742
|
errors?: Maybe<Array<MutationError>>;
|
|
89287
89743
|
success: Scalars['Boolean']['output'];
|
|
89288
89744
|
};
|
|
89745
|
+
export declare type MercuryCreateFiscalCalendarConfigurationInput = {
|
|
89746
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89747
|
+
startMonthNumber: Scalars['Int']['input'];
|
|
89748
|
+
};
|
|
89749
|
+
export declare type MercuryCreateFiscalCalendarConfigurationPayload = Payload & {
|
|
89750
|
+
__typename?: 'MercuryCreateFiscalCalendarConfigurationPayload';
|
|
89751
|
+
createdFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
89752
|
+
errors?: Maybe<Array<MutationError>>;
|
|
89753
|
+
success: Scalars['Boolean']['output'];
|
|
89754
|
+
};
|
|
89289
89755
|
export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node & {
|
|
89290
89756
|
__typename?: 'MercuryCreateFocusAreaChange';
|
|
89291
89757
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -89332,6 +89798,28 @@ export declare type MercuryCreateFocusAreaStatusUpdatePayload = Payload & {
|
|
|
89332
89798
|
errors?: Maybe<Array<MutationError>>;
|
|
89333
89799
|
success: Scalars['Boolean']['output'];
|
|
89334
89800
|
};
|
|
89801
|
+
export declare type MercuryCreateInvestmentCategoryInput = {
|
|
89802
|
+
description: Scalars['String']['input'];
|
|
89803
|
+
investmentCategorySetId: Scalars['ID']['input'];
|
|
89804
|
+
key: Scalars['String']['input'];
|
|
89805
|
+
name: Scalars['String']['input'];
|
|
89806
|
+
};
|
|
89807
|
+
export declare type MercuryCreateInvestmentCategoryPayload = Payload & {
|
|
89808
|
+
__typename?: 'MercuryCreateInvestmentCategoryPayload';
|
|
89809
|
+
createdInvestmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
89810
|
+
errors?: Maybe<Array<MutationError>>;
|
|
89811
|
+
success: Scalars['Boolean']['output'];
|
|
89812
|
+
};
|
|
89813
|
+
export declare type MercuryCreateInvestmentCategorySetInput = {
|
|
89814
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89815
|
+
name: Scalars['String']['input'];
|
|
89816
|
+
};
|
|
89817
|
+
export declare type MercuryCreateInvestmentCategorySetPayload = Payload & {
|
|
89818
|
+
__typename?: 'MercuryCreateInvestmentCategorySetPayload';
|
|
89819
|
+
createdInvestmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
|
|
89820
|
+
errors?: Maybe<Array<MutationError>>;
|
|
89821
|
+
success: Scalars['Boolean']['output'];
|
|
89822
|
+
};
|
|
89335
89823
|
export declare type MercuryCreatePortfolioFocusAreasInput = {
|
|
89336
89824
|
cloudId: Scalars['ID']['input'];
|
|
89337
89825
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -89557,6 +90045,32 @@ export declare enum MercuryEventType {
|
|
|
89557
90045
|
Unlink = "UNLINK",
|
|
89558
90046
|
Update = "UPDATE"
|
|
89559
90047
|
}
|
|
90048
|
+
export declare type MercuryFiscalCalendarConfiguration = Node & {
|
|
90049
|
+
__typename?: 'MercuryFiscalCalendarConfiguration';
|
|
90050
|
+
createdDate?: Maybe<Scalars['String']['output']>;
|
|
90051
|
+
effectiveEndDate?: Maybe<Scalars['String']['output']>;
|
|
90052
|
+
effectiveStartDate: Scalars['String']['output'];
|
|
90053
|
+
id: Scalars['ID']['output'];
|
|
90054
|
+
startMonthNumber: Scalars['Int']['output'];
|
|
90055
|
+
};
|
|
90056
|
+
export declare type MercuryFiscalCalendarConfigurationConnection = {
|
|
90057
|
+
__typename?: 'MercuryFiscalCalendarConfigurationConnection';
|
|
90058
|
+
edges?: Maybe<Array<MercuryFiscalCalendarConfigurationEdge>>;
|
|
90059
|
+
pageInfo: PageInfo;
|
|
90060
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
90061
|
+
};
|
|
90062
|
+
export declare type MercuryFiscalCalendarConfigurationEdge = {
|
|
90063
|
+
__typename?: 'MercuryFiscalCalendarConfigurationEdge';
|
|
90064
|
+
cursor: Scalars['String']['output'];
|
|
90065
|
+
node?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
90066
|
+
};
|
|
90067
|
+
export declare type MercuryFiscalCalendarConfigurationSort = {
|
|
90068
|
+
field: MercuryFiscalCalendarConfigurationSortField;
|
|
90069
|
+
order: SortOrder;
|
|
90070
|
+
};
|
|
90071
|
+
export declare enum MercuryFiscalCalendarConfigurationSortField {
|
|
90072
|
+
EffectiveStartDate = "EFFECTIVE_START_DATE"
|
|
90073
|
+
}
|
|
89560
90074
|
export declare type MercuryFocusArea = Node & {
|
|
89561
90075
|
__typename?: 'MercuryFocusArea';
|
|
89562
90076
|
aboutContent: MercuryFocusAreaAbout;
|
|
@@ -89918,11 +90432,23 @@ export declare type MercuryFundingDeltaByStatus = {
|
|
|
89918
90432
|
export declare type MercuryFundsMutationApi = {
|
|
89919
90433
|
__typename?: 'MercuryFundsMutationApi';
|
|
89920
90434
|
createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
|
|
90435
|
+
createFiscalCalendarConfiguration?: Maybe<MercuryCreateFiscalCalendarConfigurationPayload>;
|
|
90436
|
+
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
90437
|
+
createInvestmentCategorySet?: Maybe<MercuryCreateInvestmentCategorySetPayload>;
|
|
89921
90438
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
89922
90439
|
};
|
|
89923
90440
|
export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
89924
90441
|
input: MercuryCreateCostSubtypeInput;
|
|
89925
90442
|
};
|
|
90443
|
+
export declare type MercuryFundsMutationApiCreateFiscalCalendarConfigurationArgs = {
|
|
90444
|
+
input: MercuryCreateFiscalCalendarConfigurationInput;
|
|
90445
|
+
};
|
|
90446
|
+
export declare type MercuryFundsMutationApiCreateInvestmentCategoryArgs = {
|
|
90447
|
+
input: MercuryCreateInvestmentCategoryInput;
|
|
90448
|
+
};
|
|
90449
|
+
export declare type MercuryFundsMutationApiCreateInvestmentCategorySetArgs = {
|
|
90450
|
+
input: MercuryCreateInvestmentCategorySetInput;
|
|
90451
|
+
};
|
|
89926
90452
|
export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
89927
90453
|
input: MercuryDeleteCostSubtypeInput;
|
|
89928
90454
|
};
|
|
@@ -89930,6 +90456,12 @@ export declare type MercuryFundsQueryApi = {
|
|
|
89930
90456
|
__typename?: 'MercuryFundsQueryApi';
|
|
89931
90457
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
89932
90458
|
costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
|
|
90459
|
+
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
90460
|
+
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
90461
|
+
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
90462
|
+
investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
|
|
90463
|
+
investmentCategorySets?: Maybe<Array<Maybe<MercuryInvestmentCategorySet>>>;
|
|
90464
|
+
investmentCategorySetsSearch?: Maybe<MercuryInvestmentCategorySetConnection>;
|
|
89933
90465
|
};
|
|
89934
90466
|
export declare type MercuryFundsQueryApiCostSubtypesArgs = {
|
|
89935
90467
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -89940,6 +90472,30 @@ export declare type MercuryFundsQueryApiCostSubtypesSearchArgs = {
|
|
|
89940
90472
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89941
90473
|
sort?: InputMaybe<Array<InputMaybe<MercuryCostSubtypeSort>>>;
|
|
89942
90474
|
};
|
|
90475
|
+
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationArgs = {
|
|
90476
|
+
id: Scalars['ID']['input'];
|
|
90477
|
+
};
|
|
90478
|
+
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsArgs = {
|
|
90479
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90480
|
+
};
|
|
90481
|
+
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs = {
|
|
90482
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90483
|
+
cloudId: Scalars['ID']['input'];
|
|
90484
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90485
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
|
|
90486
|
+
};
|
|
90487
|
+
export declare type MercuryFundsQueryApiInvestmentCategoriesArgs = {
|
|
90488
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90489
|
+
};
|
|
90490
|
+
export declare type MercuryFundsQueryApiInvestmentCategorySetsArgs = {
|
|
90491
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90492
|
+
};
|
|
90493
|
+
export declare type MercuryFundsQueryApiInvestmentCategorySetsSearchArgs = {
|
|
90494
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90495
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90496
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90497
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryInvestmentCategorySetSort>>>;
|
|
90498
|
+
};
|
|
89943
90499
|
export declare type MercuryGoalAggregatedStatusCount = {
|
|
89944
90500
|
__typename?: 'MercuryGoalAggregatedStatusCount';
|
|
89945
90501
|
krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
@@ -89967,6 +90523,38 @@ export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
|
89967
90523
|
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
89968
90524
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
89969
90525
|
};
|
|
90526
|
+
export declare type MercuryInvestmentCategory = Node & {
|
|
90527
|
+
__typename?: 'MercuryInvestmentCategory';
|
|
90528
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
90529
|
+
id: Scalars['ID']['output'];
|
|
90530
|
+
investmentCategorySetId: Scalars['ID']['output'];
|
|
90531
|
+
key: Scalars['String']['output'];
|
|
90532
|
+
name: Scalars['String']['output'];
|
|
90533
|
+
};
|
|
90534
|
+
export declare type MercuryInvestmentCategorySet = Node & {
|
|
90535
|
+
__typename?: 'MercuryInvestmentCategorySet';
|
|
90536
|
+
id: Scalars['ID']['output'];
|
|
90537
|
+
investmentCategories?: Maybe<Array<MercuryInvestmentCategory>>;
|
|
90538
|
+
name: Scalars['String']['output'];
|
|
90539
|
+
};
|
|
90540
|
+
export declare type MercuryInvestmentCategorySetConnection = {
|
|
90541
|
+
__typename?: 'MercuryInvestmentCategorySetConnection';
|
|
90542
|
+
edges?: Maybe<Array<MercuryInvestmentCategorySetEdge>>;
|
|
90543
|
+
pageInfo: PageInfo;
|
|
90544
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
90545
|
+
};
|
|
90546
|
+
export declare type MercuryInvestmentCategorySetEdge = {
|
|
90547
|
+
__typename?: 'MercuryInvestmentCategorySetEdge';
|
|
90548
|
+
cursor: Scalars['String']['output'];
|
|
90549
|
+
node?: Maybe<MercuryInvestmentCategorySet>;
|
|
90550
|
+
};
|
|
90551
|
+
export declare type MercuryInvestmentCategorySetSort = {
|
|
90552
|
+
field: MercuryInvestmentCategorySetSortField;
|
|
90553
|
+
order: SortOrder;
|
|
90554
|
+
};
|
|
90555
|
+
export declare enum MercuryInvestmentCategorySetSortField {
|
|
90556
|
+
Name = "NAME"
|
|
90557
|
+
}
|
|
89970
90558
|
export declare type MercuryJiraAlignProjectType = {
|
|
89971
90559
|
__typename?: 'MercuryJiraAlignProjectType';
|
|
89972
90560
|
displayName: Scalars['String']['output'];
|
|
@@ -92024,6 +92612,7 @@ export declare type Mutation = {
|
|
|
92024
92612
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
92025
92613
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
92026
92614
|
confluence_updateNav4OptIn?: Maybe<ConfluenceUpdateNav4OptInPayload>;
|
|
92615
|
+
confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
|
|
92027
92616
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
92028
92617
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
92029
92618
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
@@ -92194,6 +92783,7 @@ export declare type Mutation = {
|
|
|
92194
92783
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
92195
92784
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
92196
92785
|
goals_clone?: Maybe<TownsquareGoalsClonePayload>;
|
|
92786
|
+
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
92197
92787
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
92198
92788
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
92199
92789
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
@@ -92258,6 +92848,7 @@ export declare type Mutation = {
|
|
|
92258
92848
|
jira_dismissSuggestions?: Maybe<JiraDismissSuggestionActionsPayload>;
|
|
92259
92849
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
92260
92850
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
92851
|
+
jira_listSettingMigrationMutation?: Maybe<JiraListSettingMigrationPayload>;
|
|
92261
92852
|
jira_moveBoardViewIssueToCellEnd?: Maybe<JiraMoveBoardViewIssueToCellEndPayload>;
|
|
92262
92853
|
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
92263
92854
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
@@ -92296,6 +92887,7 @@ export declare type Mutation = {
|
|
|
92296
92887
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
92297
92888
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
92298
92889
|
jira_setFieldSetsPreferences?: Maybe<JiraSetFieldSetsPreferencesPayload>;
|
|
92890
|
+
jira_setIssueSearchAggregationConfig?: Maybe<JiraSetIssueSearchAggregationConfigPayload>;
|
|
92299
92891
|
jira_setIssueSearchFieldSets?: Maybe<JiraSetIssueSearchFieldSetsPayload>;
|
|
92300
92892
|
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
92301
92893
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
@@ -93313,6 +93905,11 @@ export declare type MutationConfluence_UpdateNav4OptInArgs = {
|
|
|
93313
93905
|
cloudId: Scalars['ID']['input'];
|
|
93314
93906
|
input: ConfluenceUpdateNav4OptInInput;
|
|
93315
93907
|
};
|
|
93908
|
+
export declare type MutationConfluence_UpdateNcsPdfExportConfigurationArgs = {
|
|
93909
|
+
cloudId: Scalars['ID']['input'];
|
|
93910
|
+
input: ConfluenceUpdatePdfExportNoCodeStylingConfigInput;
|
|
93911
|
+
spaceKey: Scalars['String']['input'];
|
|
93912
|
+
};
|
|
93316
93913
|
export declare type MutationConfluence_UpdateQuestionArgs = {
|
|
93317
93914
|
cloudId: Scalars['ID']['input'];
|
|
93318
93915
|
input: ConfluenceUpdateQuestionInput;
|
|
@@ -93905,6 +94502,9 @@ export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
|
93905
94502
|
export declare type MutationGoals_CloneArgs = {
|
|
93906
94503
|
input: TownsquareGoalsCloneInput;
|
|
93907
94504
|
};
|
|
94505
|
+
export declare type MutationGoals_CreateAndAddMetricTargetArgs = {
|
|
94506
|
+
input: TownsquareGoalsCreateAddMetricTargetInput;
|
|
94507
|
+
};
|
|
93908
94508
|
export declare type MutationGoals_CreateUpdateArgs = {
|
|
93909
94509
|
input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
93910
94510
|
};
|
|
@@ -94091,6 +94691,9 @@ export declare type MutationJira_EditFieldSchemeArgs = {
|
|
|
94091
94691
|
cloudId: Scalars['ID']['input'];
|
|
94092
94692
|
input: JiraEditFieldSchemeInput;
|
|
94093
94693
|
};
|
|
94694
|
+
export declare type MutationJira_ListSettingMigrationMutationArgs = {
|
|
94695
|
+
input: JiraListSettingMigrationInput;
|
|
94696
|
+
};
|
|
94094
94697
|
export declare type MutationJira_MoveBoardViewIssueToCellEndArgs = {
|
|
94095
94698
|
input: JiraMoveBoardViewIssueToCellEndInput;
|
|
94096
94699
|
};
|
|
@@ -94209,6 +94812,9 @@ export declare type MutationJira_SetBoardViewWorkflowSelectedArgs = {
|
|
|
94209
94812
|
export declare type MutationJira_SetFieldSetsPreferencesArgs = {
|
|
94210
94813
|
input: JiraSetFieldSetsPreferencesInput;
|
|
94211
94814
|
};
|
|
94815
|
+
export declare type MutationJira_SetIssueSearchAggregationConfigArgs = {
|
|
94816
|
+
input: JiraSetIssueSearchAggregationConfigInput;
|
|
94817
|
+
};
|
|
94212
94818
|
export declare type MutationJira_SetIssueSearchFieldSetsArgs = {
|
|
94213
94819
|
input: JiraSetIssueSearchFieldSetsInput;
|
|
94214
94820
|
};
|
|
@@ -97981,6 +98587,13 @@ export declare enum PushNotificationSettingGroup {
|
|
|
97981
98587
|
}
|
|
97982
98588
|
export declare type Query = {
|
|
97983
98589
|
__typename?: 'Query';
|
|
98590
|
+
TeamworkGraph_userCommented?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98591
|
+
TeamworkGraph_userCreated?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98592
|
+
TeamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98593
|
+
TeamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98594
|
+
TeamworkGraph_userTopRecentReferencers?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98595
|
+
TeamworkGraph_userViewed?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98596
|
+
TeamworkGraph_userWorkMentioned?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
97984
98597
|
abTestCohorts?: Maybe<Scalars['String']['output']>;
|
|
97985
98598
|
actions?: Maybe<Actions>;
|
|
97986
98599
|
activities?: Maybe<Activities>;
|
|
@@ -98200,6 +98813,7 @@ export declare type Query = {
|
|
|
98200
98813
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
98201
98814
|
confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
|
|
98202
98815
|
confluence_nbmVerificationResult?: Maybe<ConfluenceNbmVerificationResultConnection>;
|
|
98816
|
+
confluence_ncsPdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
|
|
98203
98817
|
confluence_note?: Maybe<NoteResponse>;
|
|
98204
98818
|
confluence_notesByProductLink?: Maybe<NoteConnection>;
|
|
98205
98819
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
@@ -98347,6 +98961,7 @@ export declare type Query = {
|
|
|
98347
98961
|
devai_getUserPermissionsForRepo?: Maybe<Scalars['Boolean']['output']>;
|
|
98348
98962
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
98349
98963
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
98964
|
+
devai_rovoDevEntitlements?: Maybe<DevAiEntitlementCheckResultResponse>;
|
|
98350
98965
|
devai_rovodevSessionById?: Maybe<DevAiRovoDevSession>;
|
|
98351
98966
|
devai_rovodevSessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
98352
98967
|
devai_rovodevSessionsByAri?: Maybe<Array<DevAiRovoDevSession>>;
|
|
@@ -98538,7 +99153,6 @@ export declare type Query = {
|
|
|
98538
99153
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
98539
99154
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
98540
99155
|
loom_meetingsSearch?: Maybe<LoomMeetings>;
|
|
98541
|
-
loom_primaryAuthTypeForEmail?: Maybe<LoomUserPrimaryAuthType>;
|
|
98542
99156
|
loom_settings?: Maybe<LoomSettings>;
|
|
98543
99157
|
loom_space?: Maybe<LoomSpace>;
|
|
98544
99158
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
@@ -98810,6 +99424,34 @@ export declare type Query = {
|
|
|
98810
99424
|
workSuggestions?: Maybe<WorkSuggestions>;
|
|
98811
99425
|
xflow?: Maybe<Scalars['String']['output']>;
|
|
98812
99426
|
};
|
|
99427
|
+
export declare type QueryTeamworkGraph_UserCommentedArgs = {
|
|
99428
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99429
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99430
|
+
};
|
|
99431
|
+
export declare type QueryTeamworkGraph_UserCreatedArgs = {
|
|
99432
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99433
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99434
|
+
};
|
|
99435
|
+
export declare type QueryTeamworkGraph_UserTaggedInArgs = {
|
|
99436
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99437
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99438
|
+
};
|
|
99439
|
+
export declare type QueryTeamworkGraph_UserTopRecentMentionersArgs = {
|
|
99440
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99441
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99442
|
+
};
|
|
99443
|
+
export declare type QueryTeamworkGraph_UserTopRecentReferencersArgs = {
|
|
99444
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99445
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99446
|
+
};
|
|
99447
|
+
export declare type QueryTeamworkGraph_UserViewedArgs = {
|
|
99448
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99449
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99450
|
+
};
|
|
99451
|
+
export declare type QueryTeamworkGraph_UserWorkMentionedArgs = {
|
|
99452
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99453
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99454
|
+
};
|
|
98813
99455
|
export declare type QueryAdminAnnouncementBannerSettingArgs = {
|
|
98814
99456
|
id: Scalars['String']['input'];
|
|
98815
99457
|
};
|
|
@@ -99244,7 +99886,7 @@ export declare type QueryAssetsDm_DataSourceConfigArgs = {
|
|
|
99244
99886
|
export declare type QueryAssetsDm_DataSourceDetailsArgs = {
|
|
99245
99887
|
cloudId: Scalars['ID']['input'];
|
|
99246
99888
|
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
99247
|
-
dataSourceTypeId
|
|
99889
|
+
dataSourceTypeId?: InputMaybe<Scalars['Int']['input']>;
|
|
99248
99890
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
99249
99891
|
workspaceId: Scalars['ID']['input'];
|
|
99250
99892
|
};
|
|
@@ -99818,6 +100460,10 @@ export declare type QueryConfluence_NbmVerificationResultArgs = {
|
|
|
99818
100460
|
orderBy?: InputMaybe<ConfluenceNbmVerificationResultOrder>;
|
|
99819
100461
|
scanId: Scalars['ID']['input'];
|
|
99820
100462
|
};
|
|
100463
|
+
export declare type QueryConfluence_NcsPdfExportConfigurationArgs = {
|
|
100464
|
+
cloudId: Scalars['ID']['input'];
|
|
100465
|
+
spaceKey: Scalars['String']['input'];
|
|
100466
|
+
};
|
|
99821
100467
|
export declare type QueryConfluence_NoteArgs = {
|
|
99822
100468
|
id: Scalars['ID']['input'];
|
|
99823
100469
|
};
|
|
@@ -100551,6 +101197,10 @@ export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
|
100551
101197
|
export declare type QueryDevai_RovoDevAgentsWorkspaceArgs = {
|
|
100552
101198
|
cloudId: Scalars['ID']['input'];
|
|
100553
101199
|
};
|
|
101200
|
+
export declare type QueryDevai_RovoDevEntitlementsArgs = {
|
|
101201
|
+
cloudId: Scalars['ID']['input'];
|
|
101202
|
+
includeUserProductAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101203
|
+
};
|
|
100554
101204
|
export declare type QueryDevai_RovodevSessionByIdArgs = {
|
|
100555
101205
|
id: Scalars['ID']['input'];
|
|
100556
101206
|
};
|
|
@@ -101096,6 +101746,7 @@ export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
|
101096
101746
|
};
|
|
101097
101747
|
export declare type QueryJira_ProjectLevelSidebarMenuCustomizationArgs = {
|
|
101098
101748
|
cloudId: Scalars['ID']['input'];
|
|
101749
|
+
issueKey?: InputMaybe<Scalars['ID']['input']>;
|
|
101099
101750
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
101100
101751
|
projectKey?: InputMaybe<Scalars['ID']['input']>;
|
|
101101
101752
|
};
|
|
@@ -101208,9 +101859,6 @@ export declare type QueryLoom_MeetingsArgs = {
|
|
|
101208
101859
|
export declare type QueryLoom_MeetingsSearchArgs = {
|
|
101209
101860
|
id: Scalars['ID']['input'];
|
|
101210
101861
|
};
|
|
101211
|
-
export declare type QueryLoom_PrimaryAuthTypeForEmailArgs = {
|
|
101212
|
-
email: Scalars['String']['input'];
|
|
101213
|
-
};
|
|
101214
101862
|
export declare type QueryLoom_SettingsArgs = {
|
|
101215
101863
|
siteId: Scalars['ID']['input'];
|
|
101216
101864
|
};
|
|
@@ -102394,6 +103042,7 @@ export declare type RadarDeleteFocusAreaProposalChangesInput = {
|
|
|
102394
103042
|
};
|
|
102395
103043
|
export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
|
|
102396
103044
|
__typename?: 'RadarDynamicFilterOptions';
|
|
103045
|
+
functionOptions: Array<RadarFunction>;
|
|
102397
103046
|
functions: Array<RadarFunctionId>;
|
|
102398
103047
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
102399
103048
|
operators: Array<RadarFilterOperators>;
|
|
@@ -102513,6 +103162,7 @@ export declare enum RadarFilterOperators {
|
|
|
102513
103162
|
NotLike = "NOT_LIKE"
|
|
102514
103163
|
}
|
|
102515
103164
|
export declare type RadarFilterOptions = {
|
|
103165
|
+
functionOptions: Array<RadarFunction>;
|
|
102516
103166
|
functions: Array<RadarFunctionId>;
|
|
102517
103167
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
102518
103168
|
operators: Array<RadarFilterOperators>;
|
|
@@ -102748,6 +103398,7 @@ export declare type RadarSettings = {
|
|
|
102748
103398
|
};
|
|
102749
103399
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
102750
103400
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
103401
|
+
functionOptions: Array<RadarFunction>;
|
|
102751
103402
|
functions: Array<RadarFunctionId>;
|
|
102752
103403
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
102753
103404
|
operators: Array<RadarFilterOperators>;
|
|
@@ -105230,6 +105881,7 @@ export declare type SearchResultItemEdge = {
|
|
|
105230
105881
|
};
|
|
105231
105882
|
export declare type SearchResultJiraBoard = SearchResult & {
|
|
105232
105883
|
__typename?: 'SearchResultJiraBoard';
|
|
105884
|
+
board?: Maybe<JiraBoard>;
|
|
105233
105885
|
boardId?: Maybe<Scalars['ID']['output']>;
|
|
105234
105886
|
container?: Maybe<SearchResultJiraBoardContainer>;
|
|
105235
105887
|
description: Scalars['String']['output'];
|
|
@@ -125506,6 +126158,7 @@ export declare type SpaceSettings = {
|
|
|
125506
126158
|
contentStateSettings: ContentStateSettings;
|
|
125507
126159
|
customHeaderAndFooter: SpaceSettingsMetadata;
|
|
125508
126160
|
editor?: Maybe<EditorVersionsMetadataDto>;
|
|
126161
|
+
isPdfExportNoCodeStylingOptedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
125509
126162
|
links?: Maybe<LinksContextSelfBase>;
|
|
125510
126163
|
routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
125511
126164
|
};
|
|
@@ -128967,6 +129620,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
128967
129620
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
128968
129621
|
focusAreas?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseConnection>;
|
|
128969
129622
|
goalType?: Maybe<TownsquareGoalType>;
|
|
129623
|
+
highlights?: Maybe<TownsquareHighlightConnection>;
|
|
128970
129624
|
icon?: Maybe<TownsquareGoalIcon>;
|
|
128971
129625
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
128972
129626
|
id: Scalars['ID']['output'];
|
|
@@ -129004,6 +129658,15 @@ export declare type TownsquareGoalFocusAreasArgs = {
|
|
|
129004
129658
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129005
129659
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129006
129660
|
};
|
|
129661
|
+
export declare type TownsquareGoalHighlightsArgs = {
|
|
129662
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129663
|
+
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
129664
|
+
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
129665
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129666
|
+
noUpdateAttached?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129667
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareHighlightSortEnum>>>;
|
|
129668
|
+
type?: InputMaybe<TownsquareHighlightType>;
|
|
129669
|
+
};
|
|
129007
129670
|
export declare type TownsquareGoalMetricTargetsArgs = {
|
|
129008
129671
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129009
129672
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -129056,6 +129719,15 @@ export declare type TownsquareGoalConnection = {
|
|
|
129056
129719
|
edges?: Maybe<Array<Maybe<TownsquareGoalEdge>>>;
|
|
129057
129720
|
pageInfo: PageInfo;
|
|
129058
129721
|
};
|
|
129722
|
+
export declare type TownsquareGoalCreateMetricInput = {
|
|
129723
|
+
externalEntityId?: InputMaybe<Scalars['String']['input']>;
|
|
129724
|
+
goalId: Scalars['ID']['input'];
|
|
129725
|
+
name: Scalars['String']['input'];
|
|
129726
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
129727
|
+
subType?: InputMaybe<Scalars['String']['input']>;
|
|
129728
|
+
type: TownsquareMetricType;
|
|
129729
|
+
value: Scalars['Float']['input'];
|
|
129730
|
+
};
|
|
129059
129731
|
export declare type TownsquareGoalEdge = {
|
|
129060
129732
|
__typename?: 'TownsquareGoalEdge';
|
|
129061
129733
|
cursor: Scalars['String']['output'];
|
|
@@ -129258,6 +129930,19 @@ export declare type TownsquareGoalsClonePayload = {
|
|
|
129258
129930
|
goal?: Maybe<TownsquareGoal>;
|
|
129259
129931
|
success: Scalars['Boolean']['output'];
|
|
129260
129932
|
};
|
|
129933
|
+
export declare type TownsquareGoalsCreateAddMetricTargetInput = {
|
|
129934
|
+
createMetric?: InputMaybe<TownsquareGoalCreateMetricInput>;
|
|
129935
|
+
goalId: Scalars['ID']['input'];
|
|
129936
|
+
metricId?: InputMaybe<Scalars['ID']['input']>;
|
|
129937
|
+
startValue: Scalars['Float']['input'];
|
|
129938
|
+
targetValue: Scalars['Float']['input'];
|
|
129939
|
+
};
|
|
129940
|
+
export declare type TownsquareGoalsCreateAddMetricTargetPayload = {
|
|
129941
|
+
__typename?: 'TownsquareGoalsCreateAddMetricTargetPayload';
|
|
129942
|
+
errors?: Maybe<Array<MutationError>>;
|
|
129943
|
+
goal?: Maybe<TownsquareGoal>;
|
|
129944
|
+
success: Scalars['Boolean']['output'];
|
|
129945
|
+
};
|
|
129261
129946
|
export declare type TownsquareGoalsCreateUpdateInput = {
|
|
129262
129947
|
goalId: Scalars['ID']['input'];
|
|
129263
129948
|
score?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -132307,6 +132992,11 @@ export declare type TrelloEnterpriseAdminsArgs = {
|
|
|
132307
132992
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
132308
132993
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132309
132994
|
};
|
|
132995
|
+
export declare type TrelloEnterpriseAccessSummary = {
|
|
132996
|
+
__typename?: 'TrelloEnterpriseAccessSummary';
|
|
132997
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
132998
|
+
id: Scalars['ID']['output'];
|
|
132999
|
+
};
|
|
132310
133000
|
export declare type TrelloEnterprisePrefs = {
|
|
132311
133001
|
__typename?: 'TrelloEnterprisePrefs';
|
|
132312
133002
|
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
@@ -133532,6 +134222,8 @@ export declare type TrelloQueryApi = {
|
|
|
133532
134222
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
133533
134223
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
133534
134224
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
134225
|
+
userUnrestrictedAccessSummary?: Maybe<TrelloUserUnrestrictedAccessSummary>;
|
|
134226
|
+
userWorkspaceAccessSummary?: Maybe<TrelloWorkspaceAccessSummary>;
|
|
133535
134227
|
usersById?: Maybe<Array<Maybe<TrelloMember>>>;
|
|
133536
134228
|
workspace?: Maybe<TrelloWorkspace>;
|
|
133537
134229
|
};
|
|
@@ -133642,6 +134334,9 @@ export declare type TrelloQueryApiTemplateGalleryArgs = {
|
|
|
133642
134334
|
filter?: InputMaybe<TrelloTemplateGalleryFilterInput>;
|
|
133643
134335
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133644
134336
|
};
|
|
134337
|
+
export declare type TrelloQueryApiUserWorkspaceAccessSummaryArgs = {
|
|
134338
|
+
workspaceId: Scalars['String']['input'];
|
|
134339
|
+
};
|
|
133645
134340
|
export declare type TrelloQueryApiUsersByIdArgs = {
|
|
133646
134341
|
ids: Array<Scalars['ID']['input']>;
|
|
133647
134342
|
};
|
|
@@ -134191,6 +134886,12 @@ export declare type TrelloUserGeneratedText = {
|
|
|
134191
134886
|
__typename?: 'TrelloUserGeneratedText';
|
|
134192
134887
|
text?: Maybe<Scalars['String']['output']>;
|
|
134193
134888
|
};
|
|
134889
|
+
export declare type TrelloUserUnrestrictedAccessSummary = {
|
|
134890
|
+
__typename?: 'TrelloUserUnrestrictedAccessSummary';
|
|
134891
|
+
enterpriseAdminSummaries?: Maybe<Array<TrelloEnterpriseAccessSummary>>;
|
|
134892
|
+
topWorkspaces?: Maybe<Array<TrelloWorkspaceAccessSummary>>;
|
|
134893
|
+
totalWorkspaces?: Maybe<Scalars['Int']['output']>;
|
|
134894
|
+
};
|
|
134194
134895
|
export declare type TrelloWatchCardInput = {
|
|
134195
134896
|
cardId: Scalars['ID']['input'];
|
|
134196
134897
|
};
|
|
@@ -134232,6 +134933,12 @@ export declare type TrelloWorkspaceTagsArgs = {
|
|
|
134232
134933
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
134233
134934
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
134234
134935
|
};
|
|
134936
|
+
export declare type TrelloWorkspaceAccessSummary = {
|
|
134937
|
+
__typename?: 'TrelloWorkspaceAccessSummary';
|
|
134938
|
+
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
134939
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
134940
|
+
id: Scalars['ID']['output'];
|
|
134941
|
+
};
|
|
134235
134942
|
export declare type TrelloWorkspaceEnterpriseUpdated = {
|
|
134236
134943
|
__typename?: 'TrelloWorkspaceEnterpriseUpdated';
|
|
134237
134944
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -136761,6 +137468,18 @@ export declare enum VendorType {
|
|
|
136761
137468
|
Internal = "INTERNAL",
|
|
136762
137469
|
ThirdParty = "THIRD_PARTY"
|
|
136763
137470
|
}
|
|
137471
|
+
export declare type VerifyComponentAutoPopulationField = {
|
|
137472
|
+
componentId: Scalars['ID']['input'];
|
|
137473
|
+
fieldId: Scalars['String']['input'];
|
|
137474
|
+
value: Scalars['String']['input'];
|
|
137475
|
+
};
|
|
137476
|
+
export declare type VerifyComponentAutoPopulationFieldPayload = Payload & {
|
|
137477
|
+
__typename?: 'VerifyComponentAutoPopulationFieldPayload';
|
|
137478
|
+
autoPopulationMetadata?: Maybe<CompassAutoPopulationMetadata>;
|
|
137479
|
+
componentId?: Maybe<Scalars['ID']['output']>;
|
|
137480
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137481
|
+
success: Scalars['Boolean']['output'];
|
|
137482
|
+
};
|
|
136764
137483
|
export declare type Version = {
|
|
136765
137484
|
__typename?: 'Version';
|
|
136766
137485
|
by?: Maybe<Person>;
|