@forge/cli-shared 8.8.0 → 8.8.1-next.1
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 +16 -0
- package/out/graphql/graphql-types.d.ts +762 -55
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +170 -24
- package/package.json +3 -3
|
@@ -2216,6 +2216,20 @@ export declare type AdminUserManagement = {
|
|
|
2216
2216
|
availableRoles?: Maybe<Array<Scalars['String']['output']>>;
|
|
2217
2217
|
userAccessEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2218
2218
|
};
|
|
2219
|
+
export declare type AdminUserRole = {
|
|
2220
|
+
__typename?: 'AdminUserRole';
|
|
2221
|
+
name: Scalars['String']['output'];
|
|
2222
|
+
};
|
|
2223
|
+
export declare type AdminUserRoleConnection = {
|
|
2224
|
+
__typename?: 'AdminUserRoleConnection';
|
|
2225
|
+
edges?: Maybe<Array<AdminUserRoleEdge>>;
|
|
2226
|
+
pageInfo: PageInfo;
|
|
2227
|
+
};
|
|
2228
|
+
export declare type AdminUserRoleEdge = {
|
|
2229
|
+
__typename?: 'AdminUserRoleEdge';
|
|
2230
|
+
cursor: Scalars['String']['output'];
|
|
2231
|
+
node?: Maybe<AdminUserRole>;
|
|
2232
|
+
};
|
|
2219
2233
|
export declare type AdminUserStats = {
|
|
2220
2234
|
__typename?: 'AdminUserStats';
|
|
2221
2235
|
accountStatusCounts?: Maybe<Array<AdminAccountStatusCounts>>;
|
|
@@ -2824,6 +2838,7 @@ export declare type AgentStudioScenarioInput = {
|
|
|
2824
2838
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
2825
2839
|
invocationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
2826
2840
|
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2841
|
+
isDeepResearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2827
2842
|
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2828
2843
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
2829
2844
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2835,6 +2850,7 @@ export declare type AgentStudioScenarioValidateInput = {
|
|
|
2835
2850
|
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
2836
2851
|
invocationDescription: Scalars['String']['input'];
|
|
2837
2852
|
isActive: Scalars['Boolean']['input'];
|
|
2853
|
+
isDeepResearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2838
2854
|
isDefault: Scalars['Boolean']['input'];
|
|
2839
2855
|
isEdited?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2840
2856
|
name: Scalars['String']['input'];
|
|
@@ -2851,6 +2867,7 @@ export declare type AgentStudioScenarioValidateOutput = {
|
|
|
2851
2867
|
clientId?: Maybe<Scalars['String']['output']>;
|
|
2852
2868
|
invocationDescription: Scalars['String']['output'];
|
|
2853
2869
|
isActive: Scalars['Boolean']['output'];
|
|
2870
|
+
isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2854
2871
|
isDefault: Scalars['Boolean']['output'];
|
|
2855
2872
|
isValid: AgentStudioScenarioValidation;
|
|
2856
2873
|
name: Scalars['String']['output'];
|
|
@@ -3056,6 +3073,16 @@ export declare type AgentStudioUpdateCreatePermissionModePayload = Payload & {
|
|
|
3056
3073
|
mode?: Maybe<AgentStudioCreateAgentPermissionMode>;
|
|
3057
3074
|
success: Scalars['Boolean']['output'];
|
|
3058
3075
|
};
|
|
3076
|
+
export declare type AgentStudioUpdateDatasetItemInput = {
|
|
3077
|
+
id: Scalars['ID']['input'];
|
|
3078
|
+
inputQuestion: Scalars['String']['input'];
|
|
3079
|
+
};
|
|
3080
|
+
export declare type AgentStudioUpdateDatasetItemPayload = Payload & {
|
|
3081
|
+
__typename?: 'AgentStudioUpdateDatasetItemPayload';
|
|
3082
|
+
datasetItem?: Maybe<AgentStudioDatasetItem>;
|
|
3083
|
+
errors?: Maybe<Array<MutationError>>;
|
|
3084
|
+
success: Scalars['Boolean']['output'];
|
|
3085
|
+
};
|
|
3059
3086
|
export declare type AgentStudioUpdateScenarioInput = {
|
|
3060
3087
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
3061
3088
|
containerId: Scalars['ID']['input'];
|
|
@@ -6931,6 +6958,18 @@ export declare type CcpCloudMigrationTrialMapping = {
|
|
|
6931
6958
|
dcEntitlementId?: Maybe<Scalars['ID']['output']>;
|
|
6932
6959
|
isCmtMappingActive?: Maybe<Scalars['Boolean']['output']>;
|
|
6933
6960
|
};
|
|
6961
|
+
export declare type CcpCompareOfferingsExperienceCapability = CommerceExperienceCapability & {
|
|
6962
|
+
__typename?: 'CcpCompareOfferingsExperienceCapability';
|
|
6963
|
+
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
6964
|
+
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
6965
|
+
};
|
|
6966
|
+
export declare type CcpCompareOfferingsHighlightedOfferingInput = {
|
|
6967
|
+
offeringKey?: InputMaybe<Scalars['ID']['input']>;
|
|
6968
|
+
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
6969
|
+
};
|
|
6970
|
+
export declare type CcpCompareOfferingsInput = {
|
|
6971
|
+
highlightedOffering?: InputMaybe<CcpCompareOfferingsHighlightedOfferingInput>;
|
|
6972
|
+
};
|
|
6934
6973
|
export declare type CcpConfigurePaymentMethodExperienceCapability = CommerceExperienceCapability & {
|
|
6935
6974
|
__typename?: 'CcpConfigurePaymentMethodExperienceCapability';
|
|
6936
6975
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -7050,7 +7089,6 @@ export declare enum CcpCustomizationSetCouplingOperationComputeArgumentTag {
|
|
|
7050
7089
|
}
|
|
7051
7090
|
export declare type CcpCustomizationSetCouplingOperationRelaxContext = {
|
|
7052
7091
|
__typename?: 'CcpCustomizationSetCouplingOperationRelaxContext';
|
|
7053
|
-
applicableGroups?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
7054
7092
|
inTrial?: Maybe<CcpCustomizationSetCouplingOperationRelaxContextInTrial>;
|
|
7055
7093
|
};
|
|
7056
7094
|
export declare enum CcpCustomizationSetCouplingOperationRelaxContextInTrial {
|
|
@@ -7209,6 +7247,7 @@ export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementEx
|
|
|
7209
7247
|
cancelEntitlement?: Maybe<CcpCancelEntitlementExperienceCapability>;
|
|
7210
7248
|
changeOffering?: Maybe<CcpExperienceCapability>;
|
|
7211
7249
|
changeOfferingV2?: Maybe<CcpChangeOfferingExperienceCapability>;
|
|
7250
|
+
compareOfferings?: Maybe<CcpCompareOfferingsExperienceCapability>;
|
|
7212
7251
|
manageEntitlement?: Maybe<CcpManageEntitlementExperienceCapability>;
|
|
7213
7252
|
};
|
|
7214
7253
|
export declare type CcpEntitlementExperienceCapabilitiesApplyEntitlementPromotionArgs = {
|
|
@@ -7223,6 +7262,9 @@ export declare type CcpEntitlementExperienceCapabilitiesChangeOfferingV2Args = {
|
|
|
7223
7262
|
offeringName?: InputMaybe<Scalars['String']['input']>;
|
|
7224
7263
|
skipTrial?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7225
7264
|
};
|
|
7265
|
+
export declare type CcpEntitlementExperienceCapabilitiesCompareOfferingsArgs = {
|
|
7266
|
+
input?: InputMaybe<CcpCompareOfferingsInput>;
|
|
7267
|
+
};
|
|
7226
7268
|
export declare type CcpEntitlementOfferingTransition = {
|
|
7227
7269
|
__typename?: 'CcpEntitlementOfferingTransition';
|
|
7228
7270
|
id: Scalars['ID']['output'];
|
|
@@ -7501,6 +7543,20 @@ export declare type CcpMutationApiUpdateLicenseServerIdArgs = {
|
|
|
7501
7543
|
serverId: Scalars['ID']['input'];
|
|
7502
7544
|
transactionAccountId: Scalars['ID']['input'];
|
|
7503
7545
|
};
|
|
7546
|
+
export declare type CcpNextCycleChange = {
|
|
7547
|
+
__typename?: 'CcpNextCycleChange';
|
|
7548
|
+
changeTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
7549
|
+
chargeDetails?: Maybe<CcpNextCycleChargeDetails>;
|
|
7550
|
+
orderItemId?: Maybe<Scalars['ID']['output']>;
|
|
7551
|
+
subscriptionScheduleAction?: Maybe<CcpSubscriptionScheduleAction>;
|
|
7552
|
+
};
|
|
7553
|
+
export declare type CcpNextCycleChargeDetails = {
|
|
7554
|
+
__typename?: 'CcpNextCycleChargeDetails';
|
|
7555
|
+
chargeQuantities?: Maybe<Array<Maybe<CcpChargeQuantity>>>;
|
|
7556
|
+
offeringId?: Maybe<Scalars['ID']['output']>;
|
|
7557
|
+
pricingPlanId?: Maybe<Scalars['ID']['output']>;
|
|
7558
|
+
promotionInstances?: Maybe<Array<Maybe<CcpPromotionInstance>>>;
|
|
7559
|
+
};
|
|
7504
7560
|
export declare type CcpOffering = CommerceOffering & Node & {
|
|
7505
7561
|
__typename?: 'CcpOffering';
|
|
7506
7562
|
allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -8543,6 +8599,8 @@ export declare type CcpRelationshipCardinality = {
|
|
|
8543
8599
|
};
|
|
8544
8600
|
export declare type CcpRelationshipGroup = {
|
|
8545
8601
|
__typename?: 'CcpRelationshipGroup';
|
|
8602
|
+
cardinality?: Maybe<CcpRelationshipGroupCardinality>;
|
|
8603
|
+
group?: Maybe<Scalars['String']['output']>;
|
|
8546
8604
|
groupCardinality?: Maybe<CcpRelationshipGroupCardinality>;
|
|
8547
8605
|
groupName?: Maybe<Scalars['String']['output']>;
|
|
8548
8606
|
offerings?: Maybe<Array<Maybe<CcpOffering>>>;
|
|
@@ -8587,6 +8645,10 @@ export declare type CcpRootExperienceCapabilities = {
|
|
|
8587
8645
|
export declare type CcpRootExperienceCapabilitiesCreateEntitlementArgs = {
|
|
8588
8646
|
input: CcpCreateEntitlementInput;
|
|
8589
8647
|
};
|
|
8648
|
+
export declare type CcpScheduledChanges = {
|
|
8649
|
+
__typename?: 'CcpScheduledChanges';
|
|
8650
|
+
nextCycleChange?: Maybe<CcpNextCycleChange>;
|
|
8651
|
+
};
|
|
8590
8652
|
export declare type CcpSearchFieldRangeInput = {
|
|
8591
8653
|
bounds: CcpSearchTimestampBoundsInput;
|
|
8592
8654
|
field: Scalars['String']['input'];
|
|
@@ -8633,6 +8695,7 @@ export declare type CcpSubscription = CommerceSubscription & {
|
|
|
8633
8695
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
8634
8696
|
orderItemId?: Maybe<Scalars['ID']['output']>;
|
|
8635
8697
|
pricingPlan?: Maybe<CcpPricingPlan>;
|
|
8698
|
+
scheduledChanges?: Maybe<CcpScheduledChanges>;
|
|
8636
8699
|
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
8637
8700
|
status?: Maybe<CcpSubscriptionStatus>;
|
|
8638
8701
|
subscriptionSchedule?: Maybe<CcpSubscriptionSchedule>;
|
|
@@ -9674,6 +9737,7 @@ export declare type CompassAutoPopulationMetadata = {
|
|
|
9674
9737
|
__typename?: 'CompassAutoPopulationMetadata';
|
|
9675
9738
|
fieldId: Scalars['String']['output'];
|
|
9676
9739
|
source?: Maybe<CompassAutoPopulationSource>;
|
|
9740
|
+
verified?: Maybe<Scalars['Boolean']['output']>;
|
|
9677
9741
|
};
|
|
9678
9742
|
export declare type CompassAutoPopulationSource = {
|
|
9679
9743
|
__typename?: 'CompassAutoPopulationSource';
|
|
@@ -9833,7 +9897,6 @@ export declare type CompassCatalogMutationApi = {
|
|
|
9833
9897
|
createComponentExternalAlias?: Maybe<CreateCompassComponentExternalAliasPayload>;
|
|
9834
9898
|
createComponentFromTemplate?: Maybe<CreateCompassComponentFromTemplatePayload>;
|
|
9835
9899
|
createComponentLink?: Maybe<CreateCompassComponentLinkPayload>;
|
|
9836
|
-
createComponentScorecardJiraIssue?: Maybe<CompassCreateComponentScorecardJiraIssuePayload>;
|
|
9837
9900
|
createComponentScorecardWorkItem?: Maybe<CompassCreateComponentScorecardWorkItemPayload>;
|
|
9838
9901
|
createComponentSubscription?: Maybe<CompassCreateComponentSubscriptionPayload>;
|
|
9839
9902
|
createComponentType?: Maybe<CreateCompassComponentTypePayload>;
|
|
@@ -9892,7 +9955,6 @@ export declare type CompassCatalogMutationApi = {
|
|
|
9892
9955
|
updateComponentByReference?: Maybe<UpdateCompassComponentPayload>;
|
|
9893
9956
|
updateComponentDataManagerMetadata?: Maybe<UpdateCompassComponentDataManagerMetadataPayload>;
|
|
9894
9957
|
updateComponentLink?: Maybe<UpdateCompassComponentLinkPayload>;
|
|
9895
|
-
updateComponentScorecardJiraIssue?: Maybe<CompassUpdateComponentScorecardJiraIssuePayload>;
|
|
9896
9958
|
updateComponentScorecardWorkItem?: Maybe<CompassUpdateComponentScorecardWorkItemPayload>;
|
|
9897
9959
|
updateComponentType?: Maybe<UpdateCompassComponentTypePayload>;
|
|
9898
9960
|
updateComponentTypeMetadata?: Maybe<UpdateCompassComponentTypeMetadataPayload>;
|
|
@@ -9906,6 +9968,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
9906
9968
|
updateScorecard?: Maybe<UpdateCompassScorecardPayload>;
|
|
9907
9969
|
updateTeamCheckin?: Maybe<CompassUpdateTeamCheckinPayload>;
|
|
9908
9970
|
updateUserDefinedParameters?: Maybe<UpdateCompassUserDefinedParametersPayload>;
|
|
9971
|
+
verifyComponentAutoPopulationField?: Maybe<VerifyComponentAutoPopulationFieldPayload>;
|
|
9909
9972
|
};
|
|
9910
9973
|
export declare type CompassCatalogMutationApiAcknowledgeAnnouncementArgs = {
|
|
9911
9974
|
input: CompassAcknowledgeAnnouncementInput;
|
|
@@ -9964,9 +10027,6 @@ export declare type CompassCatalogMutationApiCreateComponentFromTemplateArgs = {
|
|
|
9964
10027
|
export declare type CompassCatalogMutationApiCreateComponentLinkArgs = {
|
|
9965
10028
|
input: CreateCompassComponentLinkInput;
|
|
9966
10029
|
};
|
|
9967
|
-
export declare type CompassCatalogMutationApiCreateComponentScorecardJiraIssueArgs = {
|
|
9968
|
-
input: CompassCreateComponentScorecardJiraIssueInput;
|
|
9969
|
-
};
|
|
9970
10030
|
export declare type CompassCatalogMutationApiCreateComponentScorecardWorkItemArgs = {
|
|
9971
10031
|
cloudId: Scalars['ID']['input'];
|
|
9972
10032
|
input: CompassCreateComponentScorecardWorkItemInput;
|
|
@@ -10152,9 +10212,6 @@ export declare type CompassCatalogMutationApiUpdateComponentDataManagerMetadataA
|
|
|
10152
10212
|
export declare type CompassCatalogMutationApiUpdateComponentLinkArgs = {
|
|
10153
10213
|
input: UpdateCompassComponentLinkInput;
|
|
10154
10214
|
};
|
|
10155
|
-
export declare type CompassCatalogMutationApiUpdateComponentScorecardJiraIssueArgs = {
|
|
10156
|
-
input: CompassUpdateComponentScorecardJiraIssueInput;
|
|
10157
|
-
};
|
|
10158
10215
|
export declare type CompassCatalogMutationApiUpdateComponentScorecardWorkItemArgs = {
|
|
10159
10216
|
cloudId: Scalars['ID']['input'];
|
|
10160
10217
|
input: CompassUpdateComponentScorecardWorkItemInput;
|
|
@@ -10197,6 +10254,9 @@ export declare type CompassCatalogMutationApiUpdateTeamCheckinArgs = {
|
|
|
10197
10254
|
export declare type CompassCatalogMutationApiUpdateUserDefinedParametersArgs = {
|
|
10198
10255
|
input: UpdateCompassUserDefinedParametersInput;
|
|
10199
10256
|
};
|
|
10257
|
+
export declare type CompassCatalogMutationApiVerifyComponentAutoPopulationFieldArgs = {
|
|
10258
|
+
input: VerifyComponentAutoPopulationField;
|
|
10259
|
+
};
|
|
10200
10260
|
export declare type CompassCatalogQueryApi = {
|
|
10201
10261
|
__typename?: 'CompassCatalogQueryApi';
|
|
10202
10262
|
applicationManagedComponents?: Maybe<CompassApplicationManagedComponentsResult>;
|
|
@@ -10685,16 +10745,12 @@ export declare type CompassComponentHasScorecardsAppliedConnection = {
|
|
|
10685
10745
|
};
|
|
10686
10746
|
export declare type CompassComponentHasScorecardsAppliedEdge = {
|
|
10687
10747
|
__typename?: 'CompassComponentHasScorecardsAppliedEdge';
|
|
10688
|
-
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
10689
10748
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
10690
10749
|
cursor: Scalars['String']['output'];
|
|
10691
10750
|
node?: Maybe<CompassScorecard>;
|
|
10692
10751
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
10693
10752
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
10694
10753
|
};
|
|
10695
|
-
export declare type CompassComponentHasScorecardsAppliedEdgeActiveIssuesArgs = {
|
|
10696
|
-
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
10697
|
-
};
|
|
10698
10754
|
export declare type CompassComponentHasScorecardsAppliedEdgeActiveWorkItemsArgs = {
|
|
10699
10755
|
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
10700
10756
|
};
|
|
@@ -10784,7 +10840,6 @@ export declare type CompassComponentScorecardJiraIssuesQuery = {
|
|
|
10784
10840
|
export declare type CompassComponentScorecardJiraIssuesQueryResult = CompassComponentScorecardJiraIssueConnection | QueryError;
|
|
10785
10841
|
export declare type CompassComponentScorecardRelationship = {
|
|
10786
10842
|
__typename?: 'CompassComponentScorecardRelationship';
|
|
10787
|
-
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
10788
10843
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
10789
10844
|
appliedSince: Scalars['DateTime']['output'];
|
|
10790
10845
|
criteriaScoreHistories?: Maybe<CompassScorecardCriteriaScoreHistoryConnection>;
|
|
@@ -10793,9 +10848,6 @@ export declare type CompassComponentScorecardRelationship = {
|
|
|
10793
10848
|
scorecardScoreHistories?: Maybe<CompassScorecardScoreHistoryConnection>;
|
|
10794
10849
|
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
10795
10850
|
};
|
|
10796
|
-
export declare type CompassComponentScorecardRelationshipActiveIssuesArgs = {
|
|
10797
|
-
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
10798
|
-
};
|
|
10799
10851
|
export declare type CompassComponentScorecardRelationshipActiveWorkItemsArgs = {
|
|
10800
10852
|
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
10801
10853
|
};
|
|
@@ -11843,7 +11895,6 @@ export declare type CompassDeactivateScorecardForComponentPayload = Payload & {
|
|
|
11843
11895
|
};
|
|
11844
11896
|
export declare type CompassDeactivatedScorecard = {
|
|
11845
11897
|
__typename?: 'CompassDeactivatedScorecard';
|
|
11846
|
-
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
11847
11898
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
11848
11899
|
applicationModel: CompassScorecardApplicationModel;
|
|
11849
11900
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -11853,9 +11904,6 @@ export declare type CompassDeactivatedScorecard = {
|
|
|
11853
11904
|
state?: Maybe<Scalars['String']['output']>;
|
|
11854
11905
|
type: Scalars['String']['output'];
|
|
11855
11906
|
};
|
|
11856
|
-
export declare type CompassDeactivatedScorecardActiveIssuesArgs = {
|
|
11857
|
-
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
11858
|
-
};
|
|
11859
11907
|
export declare type CompassDeactivatedScorecardActiveWorkItemsArgs = {
|
|
11860
11908
|
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
11861
11909
|
};
|
|
@@ -13326,16 +13374,12 @@ export declare type CompassScorecardAppliedToComponentsCriteriaFilter = {
|
|
|
13326
13374
|
};
|
|
13327
13375
|
export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
13328
13376
|
__typename?: 'CompassScorecardAppliedToComponentsEdge';
|
|
13329
|
-
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
13330
13377
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
13331
13378
|
cursor: Scalars['String']['output'];
|
|
13332
13379
|
node?: Maybe<CompassComponent>;
|
|
13333
13380
|
score?: Maybe<CompassScorecardScoreResult>;
|
|
13334
13381
|
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
13335
13382
|
};
|
|
13336
|
-
export declare type CompassScorecardAppliedToComponentsEdgeActiveIssuesArgs = {
|
|
13337
|
-
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
13338
|
-
};
|
|
13339
13383
|
export declare type CompassScorecardAppliedToComponentsEdgeActiveWorkItemsArgs = {
|
|
13340
13384
|
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
13341
13385
|
};
|
|
@@ -13704,7 +13748,6 @@ export declare type CompassScorecardDeactivatedComponentsConnection = {
|
|
|
13704
13748
|
};
|
|
13705
13749
|
export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
13706
13750
|
__typename?: 'CompassScorecardDeactivatedComponentsEdge';
|
|
13707
|
-
activeIssues?: Maybe<CompassComponentScorecardJiraIssuesQueryResult>;
|
|
13708
13751
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
13709
13752
|
cursor: Scalars['String']['output'];
|
|
13710
13753
|
deactivatedBy?: Maybe<User>;
|
|
@@ -13712,9 +13755,6 @@ export declare type CompassScorecardDeactivatedComponentsEdge = {
|
|
|
13712
13755
|
lastScorecardScore?: Maybe<Scalars['Int']['output']>;
|
|
13713
13756
|
node?: Maybe<CompassComponent>;
|
|
13714
13757
|
};
|
|
13715
|
-
export declare type CompassScorecardDeactivatedComponentsEdgeActiveIssuesArgs = {
|
|
13716
|
-
query?: InputMaybe<CompassComponentScorecardJiraIssuesQuery>;
|
|
13717
|
-
};
|
|
13718
13758
|
export declare type CompassScorecardDeactivatedComponentsEdgeActiveWorkItemsArgs = {
|
|
13719
13759
|
query?: InputMaybe<CompassComponentScorecardWorkItemsQuery>;
|
|
13720
13760
|
};
|
|
@@ -17446,6 +17486,20 @@ export declare enum ConfluenceNbmVerificationResultOrder {
|
|
|
17446
17486
|
AiState = "AI_STATE",
|
|
17447
17487
|
ManualState = "MANUAL_STATE"
|
|
17448
17488
|
}
|
|
17489
|
+
export declare type ConfluenceNcsPdfExportConfiguration = {
|
|
17490
|
+
__typename?: 'ConfluenceNcsPdfExportConfiguration';
|
|
17491
|
+
bodyFontSize: Scalars['Int']['output'];
|
|
17492
|
+
font?: Maybe<ConfluencePdfExportFontConfiguration>;
|
|
17493
|
+
footer: ConfluencePdfExportFooterInclusionConfiguration;
|
|
17494
|
+
header: ConfluencePdfExportHeaderInclusionConfiguration;
|
|
17495
|
+
lineSpacing: Scalars['Float']['output'];
|
|
17496
|
+
pageMargins: ConfluencePdfExportPageMargins;
|
|
17497
|
+
pageOrientation: ConfluencePdfExportPageOrientation;
|
|
17498
|
+
pageSize: ConfluencePdfExportPageSize;
|
|
17499
|
+
shouldIncludePageNumbers: Scalars['Boolean']['output'];
|
|
17500
|
+
shouldIncludeTableOfContents: Scalars['Boolean']['output'];
|
|
17501
|
+
titlePage: ConfluencePdfExportTitlePageInclusionConfiguration;
|
|
17502
|
+
};
|
|
17449
17503
|
export declare type ConfluenceNewCodeMacro = {
|
|
17450
17504
|
__typename?: 'ConfluenceNewCodeMacro';
|
|
17451
17505
|
languages?: Maybe<Array<Maybe<ConfluenceNewCodeMacroLanguage>>>;
|
|
@@ -17626,6 +17680,147 @@ export declare type ConfluencePdfExportDownloadLink = {
|
|
|
17626
17680
|
__typename?: 'ConfluencePdfExportDownloadLink';
|
|
17627
17681
|
link?: Maybe<Scalars['String']['output']>;
|
|
17628
17682
|
};
|
|
17683
|
+
export declare type ConfluencePdfExportFontConfiguration = ConfluencePdfExportFontCustom | ConfluencePdfExportFontPredefined;
|
|
17684
|
+
export declare type ConfluencePdfExportFontCustom = {
|
|
17685
|
+
__typename?: 'ConfluencePdfExportFontCustom';
|
|
17686
|
+
url: Scalars['String']['output'];
|
|
17687
|
+
};
|
|
17688
|
+
export declare type ConfluencePdfExportFontCustomInput = {
|
|
17689
|
+
url: Scalars['String']['input'];
|
|
17690
|
+
};
|
|
17691
|
+
export declare enum ConfluencePdfExportFontEnum {
|
|
17692
|
+
Arial = "ARIAL",
|
|
17693
|
+
AtlassianSans = "ATLASSIAN_SANS",
|
|
17694
|
+
Courier = "COURIER",
|
|
17695
|
+
TimesNewRoman = "TIMES_NEW_ROMAN"
|
|
17696
|
+
}
|
|
17697
|
+
export declare enum ConfluencePdfExportFontEnumInput {
|
|
17698
|
+
Arial = "ARIAL",
|
|
17699
|
+
AtlassianSans = "ATLASSIAN_SANS",
|
|
17700
|
+
Courier = "COURIER",
|
|
17701
|
+
TimesNewRoman = "TIMES_NEW_ROMAN"
|
|
17702
|
+
}
|
|
17703
|
+
export declare type ConfluencePdfExportFontInput = {
|
|
17704
|
+
custom?: InputMaybe<ConfluencePdfExportFontCustomInput>;
|
|
17705
|
+
kind?: InputMaybe<ConfluencePdfExportFontKind>;
|
|
17706
|
+
predefined?: InputMaybe<ConfluencePdfExportFontPredefinedInput>;
|
|
17707
|
+
};
|
|
17708
|
+
export declare enum ConfluencePdfExportFontKind {
|
|
17709
|
+
Custom = "CUSTOM",
|
|
17710
|
+
Predefined = "PREDEFINED"
|
|
17711
|
+
}
|
|
17712
|
+
export declare type ConfluencePdfExportFontPredefined = {
|
|
17713
|
+
__typename?: 'ConfluencePdfExportFontPredefined';
|
|
17714
|
+
font: ConfluencePdfExportFontEnum;
|
|
17715
|
+
};
|
|
17716
|
+
export declare type ConfluencePdfExportFontPredefinedInput = {
|
|
17717
|
+
font: ConfluencePdfExportFontEnumInput;
|
|
17718
|
+
};
|
|
17719
|
+
export declare type ConfluencePdfExportFooterConfiguration = {
|
|
17720
|
+
__typename?: 'ConfluencePdfExportFooterConfiguration';
|
|
17721
|
+
alignment: ConfluencePdfExportHeaderFooterAlignment;
|
|
17722
|
+
size: Scalars['Int']['output'];
|
|
17723
|
+
text: Scalars['String']['output'];
|
|
17724
|
+
};
|
|
17725
|
+
export declare type ConfluencePdfExportFooterConfigurationInput = {
|
|
17726
|
+
alignment: ConfluencePdfExportHeaderFooterAlignmentInput;
|
|
17727
|
+
size: Scalars['Int']['input'];
|
|
17728
|
+
text: Scalars['String']['input'];
|
|
17729
|
+
};
|
|
17730
|
+
export declare type ConfluencePdfExportFooterInclusionConfiguration = {
|
|
17731
|
+
__typename?: 'ConfluencePdfExportFooterInclusionConfiguration';
|
|
17732
|
+
configuration: ConfluencePdfExportFooterConfiguration;
|
|
17733
|
+
isIncluded: Scalars['Boolean']['output'];
|
|
17734
|
+
};
|
|
17735
|
+
export declare type ConfluencePdfExportFooterInclusionConfigurationInput = {
|
|
17736
|
+
configuration: ConfluencePdfExportFooterConfigurationInput;
|
|
17737
|
+
isIncluded: Scalars['Boolean']['input'];
|
|
17738
|
+
};
|
|
17739
|
+
export declare type ConfluencePdfExportHeaderConfiguration = {
|
|
17740
|
+
__typename?: 'ConfluencePdfExportHeaderConfiguration';
|
|
17741
|
+
alignment: ConfluencePdfExportHeaderFooterAlignment;
|
|
17742
|
+
size: Scalars['Int']['output'];
|
|
17743
|
+
text: Scalars['String']['output'];
|
|
17744
|
+
};
|
|
17745
|
+
export declare type ConfluencePdfExportHeaderConfigurationInput = {
|
|
17746
|
+
alignment: ConfluencePdfExportHeaderFooterAlignmentInput;
|
|
17747
|
+
size: Scalars['Int']['input'];
|
|
17748
|
+
text: Scalars['String']['input'];
|
|
17749
|
+
};
|
|
17750
|
+
export declare enum ConfluencePdfExportHeaderFooterAlignment {
|
|
17751
|
+
Center = "CENTER",
|
|
17752
|
+
Left = "LEFT"
|
|
17753
|
+
}
|
|
17754
|
+
export declare enum ConfluencePdfExportHeaderFooterAlignmentInput {
|
|
17755
|
+
Center = "CENTER",
|
|
17756
|
+
Left = "LEFT"
|
|
17757
|
+
}
|
|
17758
|
+
export declare type ConfluencePdfExportHeaderInclusionConfiguration = {
|
|
17759
|
+
__typename?: 'ConfluencePdfExportHeaderInclusionConfiguration';
|
|
17760
|
+
configuration: ConfluencePdfExportHeaderConfiguration;
|
|
17761
|
+
isIncluded: Scalars['Boolean']['output'];
|
|
17762
|
+
};
|
|
17763
|
+
export declare type ConfluencePdfExportHeaderInclusionConfigurationInput = {
|
|
17764
|
+
configuration: ConfluencePdfExportHeaderConfigurationInput;
|
|
17765
|
+
isIncluded: Scalars['Boolean']['input'];
|
|
17766
|
+
};
|
|
17767
|
+
export declare type ConfluencePdfExportPageMargins = {
|
|
17768
|
+
__typename?: 'ConfluencePdfExportPageMargins';
|
|
17769
|
+
bottom: Scalars['Float']['output'];
|
|
17770
|
+
left: Scalars['Float']['output'];
|
|
17771
|
+
right: Scalars['Float']['output'];
|
|
17772
|
+
sides: ConfluencePdfExportPageMarginsSides;
|
|
17773
|
+
top: Scalars['Float']['output'];
|
|
17774
|
+
unit: ConfluencePdfExportPageMarginsUnit;
|
|
17775
|
+
};
|
|
17776
|
+
export declare type ConfluencePdfExportPageMarginsInput = {
|
|
17777
|
+
bottom: Scalars['Float']['input'];
|
|
17778
|
+
left: Scalars['Float']['input'];
|
|
17779
|
+
right: Scalars['Float']['input'];
|
|
17780
|
+
sides: ConfluencePdfExportPageMarginsSidesInput;
|
|
17781
|
+
top: Scalars['Float']['input'];
|
|
17782
|
+
unit: ConfluencePdfExportPageMarginsUnitInput;
|
|
17783
|
+
};
|
|
17784
|
+
export declare enum ConfluencePdfExportPageMarginsSides {
|
|
17785
|
+
All = "ALL",
|
|
17786
|
+
Individual = "INDIVIDUAL"
|
|
17787
|
+
}
|
|
17788
|
+
export declare enum ConfluencePdfExportPageMarginsSidesInput {
|
|
17789
|
+
All = "ALL",
|
|
17790
|
+
Individual = "INDIVIDUAL"
|
|
17791
|
+
}
|
|
17792
|
+
export declare enum ConfluencePdfExportPageMarginsUnit {
|
|
17793
|
+
Centimeters = "CENTIMETERS",
|
|
17794
|
+
Inches = "INCHES"
|
|
17795
|
+
}
|
|
17796
|
+
export declare enum ConfluencePdfExportPageMarginsUnitInput {
|
|
17797
|
+
Centimeters = "CENTIMETERS",
|
|
17798
|
+
Inches = "INCHES"
|
|
17799
|
+
}
|
|
17800
|
+
export declare enum ConfluencePdfExportPageOrientation {
|
|
17801
|
+
Landscape = "LANDSCAPE",
|
|
17802
|
+
Portrait = "PORTRAIT"
|
|
17803
|
+
}
|
|
17804
|
+
export declare enum ConfluencePdfExportPageOrientationInput {
|
|
17805
|
+
Landscape = "LANDSCAPE",
|
|
17806
|
+
Portrait = "PORTRAIT"
|
|
17807
|
+
}
|
|
17808
|
+
export declare enum ConfluencePdfExportPageSize {
|
|
17809
|
+
A3 = "A3",
|
|
17810
|
+
A4 = "A4",
|
|
17811
|
+
A5 = "A5",
|
|
17812
|
+
Legal = "LEGAL",
|
|
17813
|
+
Tabloid = "TABLOID",
|
|
17814
|
+
UsLetter = "US_LETTER"
|
|
17815
|
+
}
|
|
17816
|
+
export declare enum ConfluencePdfExportPageSizeInput {
|
|
17817
|
+
A3 = "A3",
|
|
17818
|
+
A4 = "A4",
|
|
17819
|
+
A5 = "A5",
|
|
17820
|
+
Legal = "LEGAL",
|
|
17821
|
+
Tabloid = "TABLOID",
|
|
17822
|
+
UsLetter = "US_LETTER"
|
|
17823
|
+
}
|
|
17629
17824
|
export declare type ConfluencePdfExportSettings = {
|
|
17630
17825
|
__typename?: 'ConfluencePdfExportSettings';
|
|
17631
17826
|
footer?: Maybe<Scalars['String']['output']>;
|
|
@@ -17654,6 +17849,48 @@ export declare type ConfluencePdfExportTask = {
|
|
|
17654
17849
|
progressPercent?: Maybe<Scalars['Int']['output']>;
|
|
17655
17850
|
secondsElapsed?: Maybe<Scalars['Long']['output']>;
|
|
17656
17851
|
};
|
|
17852
|
+
export declare type ConfluencePdfExportTitlePageConfiguration = {
|
|
17853
|
+
__typename?: 'ConfluencePdfExportTitlePageConfiguration';
|
|
17854
|
+
horizontalAlignment: ConfluencePdfExportTitlePageHorizontalAlignment;
|
|
17855
|
+
size: Scalars['Int']['output'];
|
|
17856
|
+
text: Scalars['String']['output'];
|
|
17857
|
+
verticalAlignment: ConfluencePdfExportTitlePageVerticalAlignment;
|
|
17858
|
+
};
|
|
17859
|
+
export declare type ConfluencePdfExportTitlePageConfigurationInput = {
|
|
17860
|
+
horizontalAlignment: ConfluencePdfExportTitlePageHorizontalAlignmentInput;
|
|
17861
|
+
size: Scalars['Int']['input'];
|
|
17862
|
+
text: Scalars['String']['input'];
|
|
17863
|
+
verticalAlignment: ConfluencePdfExportTitlePageVerticalAlignmentInput;
|
|
17864
|
+
};
|
|
17865
|
+
export declare enum ConfluencePdfExportTitlePageHorizontalAlignment {
|
|
17866
|
+
Left = "LEFT",
|
|
17867
|
+
Middle = "MIDDLE",
|
|
17868
|
+
Right = "RIGHT"
|
|
17869
|
+
}
|
|
17870
|
+
export declare enum ConfluencePdfExportTitlePageHorizontalAlignmentInput {
|
|
17871
|
+
Left = "LEFT",
|
|
17872
|
+
Middle = "MIDDLE",
|
|
17873
|
+
Right = "RIGHT"
|
|
17874
|
+
}
|
|
17875
|
+
export declare type ConfluencePdfExportTitlePageInclusionConfiguration = {
|
|
17876
|
+
__typename?: 'ConfluencePdfExportTitlePageInclusionConfiguration';
|
|
17877
|
+
configuration: ConfluencePdfExportTitlePageConfiguration;
|
|
17878
|
+
isIncluded: Scalars['Boolean']['output'];
|
|
17879
|
+
};
|
|
17880
|
+
export declare type ConfluencePdfExportTitlePageInclusionConfigurationInput = {
|
|
17881
|
+
configuration: ConfluencePdfExportTitlePageConfigurationInput;
|
|
17882
|
+
isIncluded: Scalars['Boolean']['input'];
|
|
17883
|
+
};
|
|
17884
|
+
export declare enum ConfluencePdfExportTitlePageVerticalAlignment {
|
|
17885
|
+
Bottom = "BOTTOM",
|
|
17886
|
+
Middle = "MIDDLE",
|
|
17887
|
+
Top = "TOP"
|
|
17888
|
+
}
|
|
17889
|
+
export declare enum ConfluencePdfExportTitlePageVerticalAlignmentInput {
|
|
17890
|
+
Bottom = "BOTTOM",
|
|
17891
|
+
Middle = "MIDDLE",
|
|
17892
|
+
Top = "TOP"
|
|
17893
|
+
}
|
|
17657
17894
|
export declare type ConfluencePendingAccessRequest = {
|
|
17658
17895
|
__typename?: 'ConfluencePendingAccessRequest';
|
|
17659
17896
|
isPendingAccessRequestExists?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -18423,6 +18660,7 @@ export declare enum ConfluenceSpaceSettingEditorVersion {
|
|
|
18423
18660
|
export declare type ConfluenceSpaceSettings = {
|
|
18424
18661
|
__typename?: 'ConfluenceSpaceSettings';
|
|
18425
18662
|
editorVersions?: Maybe<ConfluenceSpaceSettingsEditorVersions>;
|
|
18663
|
+
isPdfExportNoCodeStylingOptedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
18426
18664
|
routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
18427
18665
|
};
|
|
18428
18666
|
export declare type ConfluenceSpaceSettingsEditorVersions = {
|
|
@@ -18595,6 +18833,7 @@ export declare type ConfluenceTenantContext = {
|
|
|
18595
18833
|
initialProductList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
18596
18834
|
licenseStates?: Maybe<LicenseStates>;
|
|
18597
18835
|
licensedProducts: Array<LicensedProduct>;
|
|
18836
|
+
monolithRegion?: Maybe<Scalars['String']['output']>;
|
|
18598
18837
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
18599
18838
|
};
|
|
18600
18839
|
export declare type ConfluenceTheme = {
|
|
@@ -19029,6 +19268,12 @@ export declare type ConfluenceUpdateLoomEntryPointsConfigurationPayload = Payloa
|
|
|
19029
19268
|
errors?: Maybe<Array<MutationError>>;
|
|
19030
19269
|
success: Scalars['Boolean']['output'];
|
|
19031
19270
|
};
|
|
19271
|
+
export declare type ConfluenceUpdateNcsPdfExportConfigurationPayload = Payload & {
|
|
19272
|
+
__typename?: 'ConfluenceUpdateNCSPdfExportConfigurationPayload';
|
|
19273
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19274
|
+
pdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
|
|
19275
|
+
success: Scalars['Boolean']['output'];
|
|
19276
|
+
};
|
|
19032
19277
|
export declare type ConfluenceUpdateNav4OptInInput = {
|
|
19033
19278
|
enableNav4: Scalars['Boolean']['input'];
|
|
19034
19279
|
};
|
|
@@ -19058,6 +19303,19 @@ export declare type ConfluenceUpdatePdfExportConfigurationPayload = Payload & {
|
|
|
19058
19303
|
errors?: Maybe<Array<MutationError>>;
|
|
19059
19304
|
success: Scalars['Boolean']['output'];
|
|
19060
19305
|
};
|
|
19306
|
+
export declare type ConfluenceUpdatePdfExportNoCodeStylingConfigInput = {
|
|
19307
|
+
bodyFontSize: Scalars['Int']['input'];
|
|
19308
|
+
font: ConfluencePdfExportFontInput;
|
|
19309
|
+
footer: ConfluencePdfExportFooterInclusionConfigurationInput;
|
|
19310
|
+
header: ConfluencePdfExportHeaderInclusionConfigurationInput;
|
|
19311
|
+
lineSpacing: Scalars['Float']['input'];
|
|
19312
|
+
pageMargins: ConfluencePdfExportPageMarginsInput;
|
|
19313
|
+
pageOrientation: ConfluencePdfExportPageOrientationInput;
|
|
19314
|
+
pageSize: ConfluencePdfExportPageSizeInput;
|
|
19315
|
+
shouldIncludePageNumbers: Scalars['Boolean']['input'];
|
|
19316
|
+
shouldIncludeTableOfContents: Scalars['Boolean']['input'];
|
|
19317
|
+
titlePage: ConfluencePdfExportTitlePageInclusionConfigurationInput;
|
|
19318
|
+
};
|
|
19061
19319
|
export declare type ConfluenceUpdatePdfExportSpaceConfigurationInput = {
|
|
19062
19320
|
footer: Scalars['String']['input'];
|
|
19063
19321
|
header: Scalars['String']['input'];
|
|
@@ -25587,6 +25845,14 @@ export declare type DevAiCreateTechnicalPlannerJobPayload = Payload & {
|
|
|
25587
25845
|
job?: Maybe<DevAiTechnicalPlannerJob>;
|
|
25588
25846
|
success: Scalars['Boolean']['output'];
|
|
25589
25847
|
};
|
|
25848
|
+
export declare type DevAiEntitlementCheckResultResponse = {
|
|
25849
|
+
__typename?: 'DevAiEntitlementCheckResultResponse';
|
|
25850
|
+
atlassianAccountId?: Maybe<Scalars['ID']['output']>;
|
|
25851
|
+
cloudId: Scalars['ID']['output'];
|
|
25852
|
+
entitlementType: DevAiResourceType;
|
|
25853
|
+
isUserAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
25854
|
+
userHasProductAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
25855
|
+
};
|
|
25590
25856
|
export declare type DevAiFlowPipeline = {
|
|
25591
25857
|
__typename?: 'DevAiFlowPipeline';
|
|
25592
25858
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -25789,6 +26055,13 @@ export declare type DevAiRemoveContainerConfigVariablePayload = Payload & {
|
|
|
25789
26055
|
errors?: Maybe<Array<MutationError>>;
|
|
25790
26056
|
success: Scalars['Boolean']['output'];
|
|
25791
26057
|
};
|
|
26058
|
+
export declare enum DevAiResourceType {
|
|
26059
|
+
NoActiveProduct = "NO_ACTIVE_PRODUCT",
|
|
26060
|
+
RovoDevBeta = "ROVO_DEV_BETA",
|
|
26061
|
+
RovoDevEverywhere = "ROVO_DEV_EVERYWHERE",
|
|
26062
|
+
RovoDevStandard = "ROVO_DEV_STANDARD",
|
|
26063
|
+
RovoDevStandardTrial = "ROVO_DEV_STANDARD_TRIAL"
|
|
26064
|
+
}
|
|
25792
26065
|
export declare type DevAiRovoAgent = {
|
|
25793
26066
|
__typename?: 'DevAiRovoAgent';
|
|
25794
26067
|
actionConfig?: Maybe<Array<Maybe<DevAiRovoAgentActionConfig>>>;
|
|
@@ -28137,6 +28410,7 @@ export declare type EcosystemMutation = {
|
|
|
28137
28410
|
devConsole?: Maybe<DevConsoleMutation>;
|
|
28138
28411
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
28139
28412
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
28413
|
+
publishGlobalRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
28140
28414
|
publishRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
28141
28415
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
28142
28416
|
updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
|
|
@@ -28175,6 +28449,12 @@ export declare type EcosystemMutationForgeAlertsArgs = {
|
|
|
28175
28449
|
export declare type EcosystemMutationForgeMetricsArgs = {
|
|
28176
28450
|
appId: Scalars['ID']['input'];
|
|
28177
28451
|
};
|
|
28452
|
+
export declare type EcosystemMutationPublishGlobalRealtimeChannelArgs = {
|
|
28453
|
+
installationId: Scalars['ID']['input'];
|
|
28454
|
+
name: Scalars['String']['input'];
|
|
28455
|
+
payload: Scalars['String']['input'];
|
|
28456
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
28457
|
+
};
|
|
28178
28458
|
export declare type EcosystemMutationPublishRealtimeChannelArgs = {
|
|
28179
28459
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
28180
28460
|
installationId: Scalars['ID']['input'];
|
|
@@ -28343,8 +28623,14 @@ export declare enum EcosystemRequiredProduct {
|
|
|
28343
28623
|
}
|
|
28344
28624
|
export declare type EcosystemSubscription = {
|
|
28345
28625
|
__typename?: 'EcosystemSubscription';
|
|
28626
|
+
globalRealtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
28346
28627
|
realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
28347
28628
|
};
|
|
28629
|
+
export declare type EcosystemSubscriptionGlobalRealtimeChannelArgs = {
|
|
28630
|
+
installationId: Scalars['ID']['input'];
|
|
28631
|
+
name: Scalars['String']['input'];
|
|
28632
|
+
token?: InputMaybe<Scalars['String']['input']>;
|
|
28633
|
+
};
|
|
28348
28634
|
export declare type EcosystemSubscriptionRealtimeChannelArgs = {
|
|
28349
28635
|
context?: InputMaybe<Scalars['String']['input']>;
|
|
28350
28636
|
installationId: Scalars['ID']['input'];
|
|
@@ -43527,7 +43813,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
43527
43813
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
43528
43814
|
id: Scalars['ID']['output'];
|
|
43529
43815
|
};
|
|
43530
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43816
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43531
43817
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
43532
43818
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
43533
43819
|
value: Scalars['String']['output'];
|
|
@@ -43537,13 +43823,13 @@ export declare type GraphStoreCypherQueryV2AriNode = {
|
|
|
43537
43823
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
43538
43824
|
id: Scalars['ID']['output'];
|
|
43539
43825
|
};
|
|
43540
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43826
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43541
43827
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
43542
43828
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
43543
43829
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
43544
43830
|
id: Scalars['ID']['output'];
|
|
43545
43831
|
};
|
|
43546
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43832
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43547
43833
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
43548
43834
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
43549
43835
|
value: Scalars['Boolean']['output'];
|
|
@@ -43644,7 +43930,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
43644
43930
|
V2 = "V2",
|
|
43645
43931
|
V3 = "V3"
|
|
43646
43932
|
}
|
|
43647
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43933
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AssetsObject | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
43648
43934
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
43649
43935
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
43650
43936
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -58585,13 +58871,8 @@ export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
|
58585
58871
|
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
58586
58872
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
58587
58873
|
};
|
|
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';
|
|
58874
|
+
export declare type GrowthUnifiedProfileLinkEngagement = {
|
|
58875
|
+
__typename?: 'GrowthUnifiedProfileLinkEngagement';
|
|
58595
58876
|
step?: Maybe<Scalars['Int']['output']>;
|
|
58596
58877
|
total?: Maybe<Scalars['Int']['output']>;
|
|
58597
58878
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -58778,7 +59059,7 @@ export declare type GrowthUnifiedProfileSiteOnboardingInsightsResult = {
|
|
|
58778
59059
|
earliestDataDate?: Maybe<Scalars['String']['output']>;
|
|
58779
59060
|
engagementsSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileEngagementsSeries>>>;
|
|
58780
59061
|
latestDataDate?: Maybe<Scalars['String']['output']>;
|
|
58781
|
-
|
|
59062
|
+
linkEngagement?: Maybe<Array<Maybe<GrowthUnifiedProfileLinkEngagement>>>;
|
|
58782
59063
|
rollingInterval: Scalars['String']['output'];
|
|
58783
59064
|
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
58784
59065
|
totalCompletions?: Maybe<Scalars['Int']['output']>;
|
|
@@ -63924,9 +64205,10 @@ export declare type JiraBoardViewColumnEdge = {
|
|
|
63924
64205
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
63925
64206
|
node?: Maybe<JiraBoardViewColumn>;
|
|
63926
64207
|
};
|
|
63927
|
-
export declare type JiraBoardViewColumnLayout = {
|
|
64208
|
+
export declare type JiraBoardViewColumnLayout = Node & {
|
|
63928
64209
|
__typename?: 'JiraBoardViewColumnLayout';
|
|
63929
64210
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
64211
|
+
id: Scalars['ID']['output'];
|
|
63930
64212
|
};
|
|
63931
64213
|
export declare type JiraBoardViewColumnLayoutCellsArgs = {
|
|
63932
64214
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63963,6 +64245,7 @@ export declare type JiraBoardViewQueryInput = {
|
|
|
63963
64245
|
export declare type JiraBoardViewSettings = {
|
|
63964
64246
|
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
63965
64247
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
64248
|
+
textSearch?: InputMaybe<Scalars['String']['input']>;
|
|
63966
64249
|
};
|
|
63967
64250
|
export declare type JiraBoardViewStatus = {
|
|
63968
64251
|
__typename?: 'JiraBoardViewStatus';
|
|
@@ -65903,6 +66186,8 @@ export declare type JiraCreateEmptyActivityConfigurationInput = {
|
|
|
65903
66186
|
export declare type JiraCreateFieldSchemeInput = {
|
|
65904
66187
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
65905
66188
|
name: Scalars['String']['input'];
|
|
66189
|
+
sourceFieldConfigurationSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
66190
|
+
sourceFieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
65906
66191
|
};
|
|
65907
66192
|
export declare type JiraCreateFormattingRuleInput = {
|
|
65908
66193
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -66131,6 +66416,7 @@ export declare type JiraCustomFieldUsageMetric = JiraResourceUsageMetricV2 & Nod
|
|
|
66131
66416
|
projectsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
66132
66417
|
projectsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
66133
66418
|
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
66419
|
+
unusedCustomFieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
66134
66420
|
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
66135
66421
|
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
66136
66422
|
};
|
|
@@ -67012,6 +67298,7 @@ export declare type JiraDragAndDropBoardViewIssueInput = {
|
|
|
67012
67298
|
};
|
|
67013
67299
|
export declare type JiraDragAndDropBoardViewIssuePayload = {
|
|
67014
67300
|
__typename?: 'JiraDragAndDropBoardViewIssuePayload';
|
|
67301
|
+
cell?: Maybe<JiraBoardViewCell>;
|
|
67015
67302
|
errors?: Maybe<Array<MutationError>>;
|
|
67016
67303
|
issue?: Maybe<JiraIssue>;
|
|
67017
67304
|
success: Scalars['Boolean']['output'];
|
|
@@ -68399,6 +68686,13 @@ export declare type JiraGenericResourceUsageMetricValuesArgs = {
|
|
|
68399
68686
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
68400
68687
|
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
68401
68688
|
};
|
|
68689
|
+
export declare type JiraGetIssueResourceInput = {
|
|
68690
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
68691
|
+
filters?: InputMaybe<Array<InputMaybe<JiraIssueResourceFilters>>>;
|
|
68692
|
+
first: Scalars['Int']['input'];
|
|
68693
|
+
orderDirection?: InputMaybe<JiraResourcesSortDirection>;
|
|
68694
|
+
orderField?: InputMaybe<JiraResourcesOrderField>;
|
|
68695
|
+
};
|
|
68402
68696
|
export declare enum JiraGlobalIssueCreateView {
|
|
68403
68697
|
FullModal = "FULL_MODAL",
|
|
68404
68698
|
MiniModal = "MINI_MODAL"
|
|
@@ -68440,6 +68734,7 @@ export declare type JiraGlobalPermissionGrantsList = {
|
|
|
68440
68734
|
export declare type JiraGlobalPermissionGrantsResult = JiraGlobalPermissionGrantsList | QueryError;
|
|
68441
68735
|
export declare enum JiraGlobalPermissionType {
|
|
68442
68736
|
Administer = "ADMINISTER",
|
|
68737
|
+
ManageCustomOnboarding = "MANAGE_CUSTOM_ONBOARDING",
|
|
68443
68738
|
UserPicker = "USER_PICKER"
|
|
68444
68739
|
}
|
|
68445
68740
|
export declare type JiraGlobalTimeTrackingSettings = {
|
|
@@ -68843,6 +69138,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
68843
69138
|
configurationUrl?: Maybe<Scalars['URL']['output']>;
|
|
68844
69139
|
confluenceLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
68845
69140
|
confluenceMentionedLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
69141
|
+
connectOperations?: Maybe<JiraIssueConnectOperationConnection>;
|
|
68846
69142
|
contentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
68847
69143
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
68848
69144
|
createdField?: Maybe<JiraDateTimePickerField>;
|
|
@@ -68861,9 +69157,11 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
68861
69157
|
fieldSetsById?: Maybe<JiraIssueFieldSetConnection>;
|
|
68862
69158
|
fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
|
|
68863
69159
|
fields?: Maybe<JiraIssueFieldConnection>;
|
|
69160
|
+
fieldsByContainerTypes: JiraIssueFieldsByContainerTypesResult;
|
|
68864
69161
|
fieldsById?: Maybe<JiraIssueFieldConnection>;
|
|
68865
69162
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
68866
69163
|
fieldsForView?: Maybe<JiraIssueFieldConnection>;
|
|
69164
|
+
getConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
68867
69165
|
groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
68868
69166
|
hasChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
68869
69167
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -69011,6 +69309,12 @@ export declare type JiraIssueConfluenceMentionedLinksArgs = {
|
|
|
69011
69309
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69012
69310
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69013
69311
|
};
|
|
69312
|
+
export declare type JiraIssueConnectOperationsArgs = {
|
|
69313
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
69314
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
69315
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69316
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69317
|
+
};
|
|
69014
69318
|
export declare type JiraIssueContentPanelsArgs = {
|
|
69015
69319
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69016
69320
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69058,6 +69362,9 @@ export declare type JiraIssueFieldsArgs = {
|
|
|
69058
69362
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69059
69363
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69060
69364
|
};
|
|
69365
|
+
export declare type JiraIssueFieldsByContainerTypesArgs = {
|
|
69366
|
+
containerTypes: Array<JiraIssueItemSystemContainerType>;
|
|
69367
|
+
};
|
|
69061
69368
|
export declare type JiraIssueFieldsByIdArgs = {
|
|
69062
69369
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69063
69370
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69074,6 +69381,9 @@ export declare type JiraIssueFieldsForViewArgs = {
|
|
|
69074
69381
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69075
69382
|
view: JiraViewQueryInput;
|
|
69076
69383
|
};
|
|
69384
|
+
export declare type JiraIssueGetConsolidatedResourcesArgs = {
|
|
69385
|
+
input?: InputMaybe<JiraGetIssueResourceInput>;
|
|
69386
|
+
};
|
|
69077
69387
|
export declare type JiraIssueGroupsByFieldIdArgs = {
|
|
69078
69388
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69079
69389
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -69368,6 +69678,24 @@ export declare type JiraIssueCommits = {
|
|
|
69368
69678
|
export declare type JiraIssueCommitsInput = {
|
|
69369
69679
|
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69370
69680
|
};
|
|
69681
|
+
export declare type JiraIssueConnectOperation = {
|
|
69682
|
+
__typename?: 'JiraIssueConnectOperation';
|
|
69683
|
+
href?: Maybe<Scalars['String']['output']>;
|
|
69684
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
69685
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
69686
|
+
styleClass?: Maybe<Scalars['String']['output']>;
|
|
69687
|
+
tooltip?: Maybe<Scalars['String']['output']>;
|
|
69688
|
+
};
|
|
69689
|
+
export declare type JiraIssueConnectOperationConnection = {
|
|
69690
|
+
__typename?: 'JiraIssueConnectOperationConnection';
|
|
69691
|
+
edges?: Maybe<Array<Maybe<JiraIssueConnectOperationEdge>>>;
|
|
69692
|
+
pageInfo: PageInfo;
|
|
69693
|
+
};
|
|
69694
|
+
export declare type JiraIssueConnectOperationEdge = {
|
|
69695
|
+
__typename?: 'JiraIssueConnectOperationEdge';
|
|
69696
|
+
cursor: Scalars['String']['output'];
|
|
69697
|
+
node?: Maybe<JiraIssueConnectOperation>;
|
|
69698
|
+
};
|
|
69371
69699
|
export declare type JiraIssueConnection = {
|
|
69372
69700
|
__typename?: 'JiraIssueConnection';
|
|
69373
69701
|
edges?: Maybe<Array<Maybe<JiraIssueEdge>>>;
|
|
@@ -69811,6 +70139,22 @@ export declare type JiraIssueFieldUnsupportedErrorExtension = QueryErrorExtensio
|
|
|
69811
70139
|
isUserPreferredField?: Maybe<Scalars['Boolean']['output']>;
|
|
69812
70140
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
69813
70141
|
};
|
|
70142
|
+
export declare type JiraIssueFieldsByContainerType = {
|
|
70143
|
+
__typename?: 'JiraIssueFieldsByContainerType';
|
|
70144
|
+
containerType: JiraIssueItemSystemContainerType;
|
|
70145
|
+
fields: JiraIssueFieldConnection;
|
|
70146
|
+
};
|
|
70147
|
+
export declare type JiraIssueFieldsByContainerTypeFieldsArgs = {
|
|
70148
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70149
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
70150
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70151
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
70152
|
+
};
|
|
70153
|
+
export declare type JiraIssueFieldsByContainerTypes = {
|
|
70154
|
+
__typename?: 'JiraIssueFieldsByContainerTypes';
|
|
70155
|
+
containerFields: Array<JiraIssueFieldsByContainerType>;
|
|
70156
|
+
};
|
|
70157
|
+
export declare type JiraIssueFieldsByContainerTypesResult = JiraIssueFieldsByContainerTypes | QueryError;
|
|
69814
70158
|
export declare type JiraIssueFieldsInput = {
|
|
69815
70159
|
affectedServicesField?: InputMaybe<JiraAffectedServicesFieldInput>;
|
|
69816
70160
|
assetsField?: InputMaybe<JiraAssetFieldInput>;
|
|
@@ -70269,6 +70613,10 @@ export declare enum JiraIssueRemoteLinkOperations {
|
|
|
70269
70613
|
Remove = "REMOVE",
|
|
70270
70614
|
Set = "SET"
|
|
70271
70615
|
}
|
|
70616
|
+
export declare type JiraIssueResourceFilters = {
|
|
70617
|
+
integration?: InputMaybe<JiraResourceIntegration>;
|
|
70618
|
+
types?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
70619
|
+
};
|
|
70272
70620
|
export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
70273
70621
|
__typename?: 'JiraIssueRestrictionField';
|
|
70274
70622
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -72045,6 +72393,30 @@ export declare type JiraLinkedIssuesInput = {
|
|
|
72045
72393
|
inwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
72046
72394
|
outwardIssues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
72047
72395
|
};
|
|
72396
|
+
export declare type JiraListSettingMigrationData = {
|
|
72397
|
+
columns?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
72398
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
72399
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
72400
|
+
projectId: Scalars['Long']['input'];
|
|
72401
|
+
};
|
|
72402
|
+
export declare type JiraListSettingMigrationInput = {
|
|
72403
|
+
cloudId: Scalars['ID']['input'];
|
|
72404
|
+
nodes?: InputMaybe<Array<JiraListSettingMigrationData>>;
|
|
72405
|
+
};
|
|
72406
|
+
export declare type JiraListSettingMigrationMutationErrorExtension = MutationErrorExtension & {
|
|
72407
|
+
__typename?: 'JiraListSettingMigrationMutationErrorExtension';
|
|
72408
|
+
columnsError?: Maybe<Scalars['String']['output']>;
|
|
72409
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
72410
|
+
groupByError?: Maybe<Scalars['String']['output']>;
|
|
72411
|
+
jqlError?: Maybe<Scalars['String']['output']>;
|
|
72412
|
+
projectId?: Maybe<Scalars['Long']['output']>;
|
|
72413
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
72414
|
+
};
|
|
72415
|
+
export declare type JiraListSettingMigrationPayload = Payload & {
|
|
72416
|
+
__typename?: 'JiraListSettingMigrationPayload';
|
|
72417
|
+
errors?: Maybe<Array<MutationError>>;
|
|
72418
|
+
success: Scalars['Boolean']['output'];
|
|
72419
|
+
};
|
|
72048
72420
|
export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
72049
72421
|
__typename?: 'JiraListView';
|
|
72050
72422
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -72621,6 +72993,7 @@ export declare type JiraMutation = {
|
|
|
72621
72993
|
setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
|
|
72622
72994
|
sprintUpdate?: Maybe<JiraSprintMutationPayload>;
|
|
72623
72995
|
submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
|
|
72996
|
+
trackRecentIssue?: Maybe<JiraTrackRecentIssuePayload>;
|
|
72624
72997
|
trackRecentProject?: Maybe<JiraTrackRecentProjectPayload>;
|
|
72625
72998
|
unlinkIssuesFromIncident?: Maybe<JiraUnlinkIssuesFromIncidentMutationPayload>;
|
|
72626
72999
|
updateActiveBackground?: Maybe<JiraUpdateActiveBackgroundPayload>;
|
|
@@ -73154,6 +73527,9 @@ export declare type JiraMutationSubmitBulkOperationArgs = {
|
|
|
73154
73527
|
cloudId: Scalars['ID']['input'];
|
|
73155
73528
|
input: JiraSubmitBulkOperationInput;
|
|
73156
73529
|
};
|
|
73530
|
+
export declare type JiraMutationTrackRecentIssueArgs = {
|
|
73531
|
+
input: JiraTrackRecentIssueInput;
|
|
73532
|
+
};
|
|
73157
73533
|
export declare type JiraMutationTrackRecentProjectArgs = {
|
|
73158
73534
|
input: JiraTrackRecentProjectInput;
|
|
73159
73535
|
};
|
|
@@ -76479,6 +76855,7 @@ export declare type JiraQueryGetArchivedIssuesForProjectArgs = {
|
|
|
76479
76855
|
};
|
|
76480
76856
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
76481
76857
|
cloudId: Scalars['ID']['input'];
|
|
76858
|
+
permissionKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
76482
76859
|
};
|
|
76483
76860
|
export declare type JiraQueryGetIssueTransitionByIssueIdArgs = {
|
|
76484
76861
|
issueId: Scalars['ID']['input'];
|
|
@@ -77831,6 +78208,39 @@ export declare type JiraResolutionFieldPayload = Payload & {
|
|
|
77831
78208
|
export declare type JiraResolutionInput = {
|
|
77832
78209
|
resolutionId: Scalars['ID']['input'];
|
|
77833
78210
|
};
|
|
78211
|
+
export declare type JiraResource = {
|
|
78212
|
+
__typename?: 'JiraResource';
|
|
78213
|
+
author?: Maybe<User>;
|
|
78214
|
+
contentId?: Maybe<Scalars['String']['output']>;
|
|
78215
|
+
contentType?: Maybe<Scalars['String']['output']>;
|
|
78216
|
+
contentUrl?: Maybe<Scalars['String']['output']>;
|
|
78217
|
+
created?: Maybe<Scalars['DateTime']['output']>;
|
|
78218
|
+
fileName?: Maybe<Scalars['String']['output']>;
|
|
78219
|
+
fileSize?: Maybe<Scalars['Long']['output']>;
|
|
78220
|
+
hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
|
|
78221
|
+
id: Scalars['ID']['output'];
|
|
78222
|
+
integration?: Maybe<JiraResourceIntegration>;
|
|
78223
|
+
parent?: Maybe<JiraResourceParentName>;
|
|
78224
|
+
parentId?: Maybe<Scalars['String']['output']>;
|
|
78225
|
+
};
|
|
78226
|
+
export declare enum JiraResourceIntegration {
|
|
78227
|
+
Attachment = "ATTACHMENT",
|
|
78228
|
+
Confluence = "CONFLUENCE",
|
|
78229
|
+
Loom = "LOOM"
|
|
78230
|
+
}
|
|
78231
|
+
export declare type JiraResourceNode = {
|
|
78232
|
+
__typename?: 'JiraResourceNode';
|
|
78233
|
+
node?: Maybe<JiraResource>;
|
|
78234
|
+
};
|
|
78235
|
+
export declare enum JiraResourceParentName {
|
|
78236
|
+
Comment = "COMMENT",
|
|
78237
|
+
Customfield = "CUSTOMFIELD",
|
|
78238
|
+
Description = "DESCRIPTION",
|
|
78239
|
+
Environment = "ENVIRONMENT",
|
|
78240
|
+
Form = "FORM",
|
|
78241
|
+
Issue = "ISSUE",
|
|
78242
|
+
Worklog = "WORKLOG"
|
|
78243
|
+
}
|
|
77834
78244
|
export declare type JiraResourceUsageCustomFieldRecommendation = {
|
|
77835
78245
|
__typename?: 'JiraResourceUsageCustomFieldRecommendation';
|
|
77836
78246
|
customFieldAction: JiraResourceUsageCustomFieldRecommendationAction;
|
|
@@ -77948,6 +78358,22 @@ export declare enum JiraResourceUsageRecommendationStatus {
|
|
|
77948
78358
|
Obsolete = "OBSOLETE",
|
|
77949
78359
|
Trashed = "TRASHED"
|
|
77950
78360
|
}
|
|
78361
|
+
export declare enum JiraResourcesOrderField {
|
|
78362
|
+
Created = "CREATED",
|
|
78363
|
+
Filename = "FILENAME",
|
|
78364
|
+
Filesize = "FILESIZE",
|
|
78365
|
+
Mimetype = "MIMETYPE"
|
|
78366
|
+
}
|
|
78367
|
+
export declare type JiraResourcesResult = {
|
|
78368
|
+
__typename?: 'JiraResourcesResult';
|
|
78369
|
+
deletableCount?: Maybe<Scalars['Long']['output']>;
|
|
78370
|
+
edges?: Maybe<Array<Maybe<JiraResourceNode>>>;
|
|
78371
|
+
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
78372
|
+
};
|
|
78373
|
+
export declare enum JiraResourcesSortDirection {
|
|
78374
|
+
Asc = "ASC",
|
|
78375
|
+
Desc = "DESC"
|
|
78376
|
+
}
|
|
77951
78377
|
export declare type JiraRestoreGlobalCustomFieldsInput = {
|
|
77952
78378
|
fieldIds: Array<Scalars['String']['input']>;
|
|
77953
78379
|
};
|
|
@@ -81192,6 +81618,15 @@ export declare type JiraTownsquareProjectField = JiraIssueField & JiraIssueField
|
|
|
81192
81618
|
type: Scalars['String']['output'];
|
|
81193
81619
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
81194
81620
|
};
|
|
81621
|
+
export declare type JiraTrackRecentIssueInput = {
|
|
81622
|
+
cloudId: Scalars['ID']['input'];
|
|
81623
|
+
issueKey: Scalars['String']['input'];
|
|
81624
|
+
};
|
|
81625
|
+
export declare type JiraTrackRecentIssuePayload = Payload & {
|
|
81626
|
+
__typename?: 'JiraTrackRecentIssuePayload';
|
|
81627
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81628
|
+
success: Scalars['Boolean']['output'];
|
|
81629
|
+
};
|
|
81195
81630
|
export declare type JiraTrackRecentProjectInput = {
|
|
81196
81631
|
cloudId: Scalars['ID']['input'];
|
|
81197
81632
|
projectKey: Scalars['String']['input'];
|
|
@@ -82065,6 +82500,7 @@ export declare type JiraUserPreferences = {
|
|
|
82065
82500
|
issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
|
|
82066
82501
|
issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
|
|
82067
82502
|
issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
|
|
82503
|
+
issueViewShouldShowWelcomeMessage?: Maybe<Scalars['Boolean']['output']>;
|
|
82068
82504
|
issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
|
|
82069
82505
|
issueViewTimestampDisplayMode?: Maybe<JiraIssueViewTimestampDisplayMode>;
|
|
82070
82506
|
issueViewUserPreferredLayout?: Maybe<JiraIssueViewUserPreferredLayout>;
|
|
@@ -85992,12 +86428,6 @@ export declare type LoomUnauthenticatedUserPrimaryAuthType = {
|
|
|
85992
86428
|
hasActiveMemberships?: Maybe<Scalars['Boolean']['output']>;
|
|
85993
86429
|
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
85994
86430
|
};
|
|
85995
|
-
export declare type LoomUserPrimaryAuthType = {
|
|
85996
|
-
__typename?: 'LoomUserPrimaryAuthType';
|
|
85997
|
-
authType: Scalars['String']['output'];
|
|
85998
|
-
hasActiveMemberships?: Maybe<Scalars['Boolean']['output']>;
|
|
85999
|
-
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
86000
|
-
};
|
|
86001
86431
|
export declare enum LoomUserStatus {
|
|
86002
86432
|
Linked = "LINKED",
|
|
86003
86433
|
LinkedEnterprise = "LINKED_ENTERPRISE",
|
|
@@ -87007,6 +87437,7 @@ export declare type MarketplaceConsoleForgeAppVersion = {
|
|
|
87007
87437
|
};
|
|
87008
87438
|
export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
87009
87439
|
__typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
|
|
87440
|
+
additionalCompatibilities?: Maybe<Array<Scalars['String']['output']>>;
|
|
87010
87441
|
appAccess?: Maybe<Array<Scalars['String']['output']>>;
|
|
87011
87442
|
appId: Scalars['ID']['output'];
|
|
87012
87443
|
envId: Scalars['ID']['output'];
|
|
@@ -89336,6 +89767,16 @@ export declare type MercuryCreateCostSubtypePayload = Payload & {
|
|
|
89336
89767
|
errors?: Maybe<Array<MutationError>>;
|
|
89337
89768
|
success: Scalars['Boolean']['output'];
|
|
89338
89769
|
};
|
|
89770
|
+
export declare type MercuryCreateFiscalCalendarConfigurationInput = {
|
|
89771
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89772
|
+
startMonthNumber: Scalars['Int']['input'];
|
|
89773
|
+
};
|
|
89774
|
+
export declare type MercuryCreateFiscalCalendarConfigurationPayload = Payload & {
|
|
89775
|
+
__typename?: 'MercuryCreateFiscalCalendarConfigurationPayload';
|
|
89776
|
+
createdFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
89777
|
+
errors?: Maybe<Array<MutationError>>;
|
|
89778
|
+
success: Scalars['Boolean']['output'];
|
|
89779
|
+
};
|
|
89339
89780
|
export declare type MercuryCreateFocusAreaChange = MercuryChangeInterface & Node & {
|
|
89340
89781
|
__typename?: 'MercuryCreateFocusAreaChange';
|
|
89341
89782
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
@@ -89382,6 +89823,28 @@ export declare type MercuryCreateFocusAreaStatusUpdatePayload = Payload & {
|
|
|
89382
89823
|
errors?: Maybe<Array<MutationError>>;
|
|
89383
89824
|
success: Scalars['Boolean']['output'];
|
|
89384
89825
|
};
|
|
89826
|
+
export declare type MercuryCreateInvestmentCategoryInput = {
|
|
89827
|
+
description: Scalars['String']['input'];
|
|
89828
|
+
investmentCategorySetId: Scalars['ID']['input'];
|
|
89829
|
+
key: Scalars['String']['input'];
|
|
89830
|
+
name: Scalars['String']['input'];
|
|
89831
|
+
};
|
|
89832
|
+
export declare type MercuryCreateInvestmentCategoryPayload = Payload & {
|
|
89833
|
+
__typename?: 'MercuryCreateInvestmentCategoryPayload';
|
|
89834
|
+
createdInvestmentCategory?: Maybe<MercuryInvestmentCategory>;
|
|
89835
|
+
errors?: Maybe<Array<MutationError>>;
|
|
89836
|
+
success: Scalars['Boolean']['output'];
|
|
89837
|
+
};
|
|
89838
|
+
export declare type MercuryCreateInvestmentCategorySetInput = {
|
|
89839
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89840
|
+
name: Scalars['String']['input'];
|
|
89841
|
+
};
|
|
89842
|
+
export declare type MercuryCreateInvestmentCategorySetPayload = Payload & {
|
|
89843
|
+
__typename?: 'MercuryCreateInvestmentCategorySetPayload';
|
|
89844
|
+
createdInvestmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
|
|
89845
|
+
errors?: Maybe<Array<MutationError>>;
|
|
89846
|
+
success: Scalars['Boolean']['output'];
|
|
89847
|
+
};
|
|
89385
89848
|
export declare type MercuryCreatePortfolioFocusAreasInput = {
|
|
89386
89849
|
cloudId: Scalars['ID']['input'];
|
|
89387
89850
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -89607,6 +90070,32 @@ export declare enum MercuryEventType {
|
|
|
89607
90070
|
Unlink = "UNLINK",
|
|
89608
90071
|
Update = "UPDATE"
|
|
89609
90072
|
}
|
|
90073
|
+
export declare type MercuryFiscalCalendarConfiguration = Node & {
|
|
90074
|
+
__typename?: 'MercuryFiscalCalendarConfiguration';
|
|
90075
|
+
createdDate?: Maybe<Scalars['String']['output']>;
|
|
90076
|
+
effectiveEndDate?: Maybe<Scalars['String']['output']>;
|
|
90077
|
+
effectiveStartDate: Scalars['String']['output'];
|
|
90078
|
+
id: Scalars['ID']['output'];
|
|
90079
|
+
startMonthNumber: Scalars['Int']['output'];
|
|
90080
|
+
};
|
|
90081
|
+
export declare type MercuryFiscalCalendarConfigurationConnection = {
|
|
90082
|
+
__typename?: 'MercuryFiscalCalendarConfigurationConnection';
|
|
90083
|
+
edges?: Maybe<Array<MercuryFiscalCalendarConfigurationEdge>>;
|
|
90084
|
+
pageInfo: PageInfo;
|
|
90085
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
90086
|
+
};
|
|
90087
|
+
export declare type MercuryFiscalCalendarConfigurationEdge = {
|
|
90088
|
+
__typename?: 'MercuryFiscalCalendarConfigurationEdge';
|
|
90089
|
+
cursor: Scalars['String']['output'];
|
|
90090
|
+
node?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
90091
|
+
};
|
|
90092
|
+
export declare type MercuryFiscalCalendarConfigurationSort = {
|
|
90093
|
+
field: MercuryFiscalCalendarConfigurationSortField;
|
|
90094
|
+
order: SortOrder;
|
|
90095
|
+
};
|
|
90096
|
+
export declare enum MercuryFiscalCalendarConfigurationSortField {
|
|
90097
|
+
EffectiveStartDate = "EFFECTIVE_START_DATE"
|
|
90098
|
+
}
|
|
89610
90099
|
export declare type MercuryFocusArea = Node & {
|
|
89611
90100
|
__typename?: 'MercuryFocusArea';
|
|
89612
90101
|
aboutContent: MercuryFocusAreaAbout;
|
|
@@ -89968,11 +90457,23 @@ export declare type MercuryFundingDeltaByStatus = {
|
|
|
89968
90457
|
export declare type MercuryFundsMutationApi = {
|
|
89969
90458
|
__typename?: 'MercuryFundsMutationApi';
|
|
89970
90459
|
createCostSubtype?: Maybe<MercuryCreateCostSubtypePayload>;
|
|
90460
|
+
createFiscalCalendarConfiguration?: Maybe<MercuryCreateFiscalCalendarConfigurationPayload>;
|
|
90461
|
+
createInvestmentCategory?: Maybe<MercuryCreateInvestmentCategoryPayload>;
|
|
90462
|
+
createInvestmentCategorySet?: Maybe<MercuryCreateInvestmentCategorySetPayload>;
|
|
89971
90463
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
89972
90464
|
};
|
|
89973
90465
|
export declare type MercuryFundsMutationApiCreateCostSubtypeArgs = {
|
|
89974
90466
|
input: MercuryCreateCostSubtypeInput;
|
|
89975
90467
|
};
|
|
90468
|
+
export declare type MercuryFundsMutationApiCreateFiscalCalendarConfigurationArgs = {
|
|
90469
|
+
input: MercuryCreateFiscalCalendarConfigurationInput;
|
|
90470
|
+
};
|
|
90471
|
+
export declare type MercuryFundsMutationApiCreateInvestmentCategoryArgs = {
|
|
90472
|
+
input: MercuryCreateInvestmentCategoryInput;
|
|
90473
|
+
};
|
|
90474
|
+
export declare type MercuryFundsMutationApiCreateInvestmentCategorySetArgs = {
|
|
90475
|
+
input: MercuryCreateInvestmentCategorySetInput;
|
|
90476
|
+
};
|
|
89976
90477
|
export declare type MercuryFundsMutationApiDeleteCostSubtypeArgs = {
|
|
89977
90478
|
input: MercuryDeleteCostSubtypeInput;
|
|
89978
90479
|
};
|
|
@@ -89980,6 +90481,12 @@ export declare type MercuryFundsQueryApi = {
|
|
|
89980
90481
|
__typename?: 'MercuryFundsQueryApi';
|
|
89981
90482
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
89982
90483
|
costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
|
|
90484
|
+
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
90485
|
+
fiscalCalendarConfigurations?: Maybe<Array<Maybe<MercuryFiscalCalendarConfiguration>>>;
|
|
90486
|
+
fiscalCalendarConfigurationsSearch?: Maybe<MercuryFiscalCalendarConfigurationConnection>;
|
|
90487
|
+
investmentCategories?: Maybe<Array<Maybe<MercuryInvestmentCategory>>>;
|
|
90488
|
+
investmentCategorySets?: Maybe<Array<Maybe<MercuryInvestmentCategorySet>>>;
|
|
90489
|
+
investmentCategorySetsSearch?: Maybe<MercuryInvestmentCategorySetConnection>;
|
|
89983
90490
|
};
|
|
89984
90491
|
export declare type MercuryFundsQueryApiCostSubtypesArgs = {
|
|
89985
90492
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -89990,6 +90497,30 @@ export declare type MercuryFundsQueryApiCostSubtypesSearchArgs = {
|
|
|
89990
90497
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89991
90498
|
sort?: InputMaybe<Array<InputMaybe<MercuryCostSubtypeSort>>>;
|
|
89992
90499
|
};
|
|
90500
|
+
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationArgs = {
|
|
90501
|
+
id: Scalars['ID']['input'];
|
|
90502
|
+
};
|
|
90503
|
+
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsArgs = {
|
|
90504
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90505
|
+
};
|
|
90506
|
+
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs = {
|
|
90507
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90508
|
+
cloudId: Scalars['ID']['input'];
|
|
90509
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90510
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
|
|
90511
|
+
};
|
|
90512
|
+
export declare type MercuryFundsQueryApiInvestmentCategoriesArgs = {
|
|
90513
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90514
|
+
};
|
|
90515
|
+
export declare type MercuryFundsQueryApiInvestmentCategorySetsArgs = {
|
|
90516
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90517
|
+
};
|
|
90518
|
+
export declare type MercuryFundsQueryApiInvestmentCategorySetsSearchArgs = {
|
|
90519
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90520
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90521
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90522
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryInvestmentCategorySetSort>>>;
|
|
90523
|
+
};
|
|
89993
90524
|
export declare type MercuryGoalAggregatedStatusCount = {
|
|
89994
90525
|
__typename?: 'MercuryGoalAggregatedStatusCount';
|
|
89995
90526
|
krAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
|
|
@@ -90017,6 +90548,38 @@ export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
|
90017
90548
|
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
90018
90549
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
90019
90550
|
};
|
|
90551
|
+
export declare type MercuryInvestmentCategory = Node & {
|
|
90552
|
+
__typename?: 'MercuryInvestmentCategory';
|
|
90553
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
90554
|
+
id: Scalars['ID']['output'];
|
|
90555
|
+
investmentCategorySetId: Scalars['ID']['output'];
|
|
90556
|
+
key: Scalars['String']['output'];
|
|
90557
|
+
name: Scalars['String']['output'];
|
|
90558
|
+
};
|
|
90559
|
+
export declare type MercuryInvestmentCategorySet = Node & {
|
|
90560
|
+
__typename?: 'MercuryInvestmentCategorySet';
|
|
90561
|
+
id: Scalars['ID']['output'];
|
|
90562
|
+
investmentCategories?: Maybe<Array<MercuryInvestmentCategory>>;
|
|
90563
|
+
name: Scalars['String']['output'];
|
|
90564
|
+
};
|
|
90565
|
+
export declare type MercuryInvestmentCategorySetConnection = {
|
|
90566
|
+
__typename?: 'MercuryInvestmentCategorySetConnection';
|
|
90567
|
+
edges?: Maybe<Array<MercuryInvestmentCategorySetEdge>>;
|
|
90568
|
+
pageInfo: PageInfo;
|
|
90569
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
90570
|
+
};
|
|
90571
|
+
export declare type MercuryInvestmentCategorySetEdge = {
|
|
90572
|
+
__typename?: 'MercuryInvestmentCategorySetEdge';
|
|
90573
|
+
cursor: Scalars['String']['output'];
|
|
90574
|
+
node?: Maybe<MercuryInvestmentCategorySet>;
|
|
90575
|
+
};
|
|
90576
|
+
export declare type MercuryInvestmentCategorySetSort = {
|
|
90577
|
+
field: MercuryInvestmentCategorySetSortField;
|
|
90578
|
+
order: SortOrder;
|
|
90579
|
+
};
|
|
90580
|
+
export declare enum MercuryInvestmentCategorySetSortField {
|
|
90581
|
+
Name = "NAME"
|
|
90582
|
+
}
|
|
90020
90583
|
export declare type MercuryJiraAlignProjectType = {
|
|
90021
90584
|
__typename?: 'MercuryJiraAlignProjectType';
|
|
90022
90585
|
displayName: Scalars['String']['output'];
|
|
@@ -91928,6 +92491,7 @@ export declare type Mutation = {
|
|
|
91928
92491
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
91929
92492
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
91930
92493
|
agentStudio_updateCreatePermissionMode?: Maybe<AgentStudioUpdateCreatePermissionModePayload>;
|
|
92494
|
+
agentStudio_updateDatasetItem: AgentStudioUpdateDatasetItemPayload;
|
|
91931
92495
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
91932
92496
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
91933
92497
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
@@ -92074,6 +92638,7 @@ export declare type Mutation = {
|
|
|
92074
92638
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
92075
92639
|
confluence_updateInstance?: Maybe<ConfluenceUpdateInstancePayload>;
|
|
92076
92640
|
confluence_updateNav4OptIn?: Maybe<ConfluenceUpdateNav4OptInPayload>;
|
|
92641
|
+
confluence_updateNcsPdfExportConfiguration?: Maybe<ConfluenceUpdateNcsPdfExportConfigurationPayload>;
|
|
92077
92642
|
confluence_updateQuestion?: Maybe<ConfluenceUpdateQuestionPayload>;
|
|
92078
92643
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
92079
92644
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
@@ -92244,6 +92809,7 @@ export declare type Mutation = {
|
|
|
92244
92809
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
92245
92810
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
92246
92811
|
goals_clone?: Maybe<TownsquareGoalsClonePayload>;
|
|
92812
|
+
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
92247
92813
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
92248
92814
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
92249
92815
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
@@ -92308,6 +92874,7 @@ export declare type Mutation = {
|
|
|
92308
92874
|
jira_dismissSuggestions?: Maybe<JiraDismissSuggestionActionsPayload>;
|
|
92309
92875
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
92310
92876
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
92877
|
+
jira_listSettingMigrationMutation?: Maybe<JiraListSettingMigrationPayload>;
|
|
92311
92878
|
jira_moveBoardViewIssueToCellEnd?: Maybe<JiraMoveBoardViewIssueToCellEndPayload>;
|
|
92312
92879
|
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
92313
92880
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
@@ -92812,6 +93379,12 @@ export declare type MutationAgentStudio_UpdateCreatePermissionModeArgs = {
|
|
|
92812
93379
|
cloudId: Scalars['ID']['input'];
|
|
92813
93380
|
mode: AgentStudioCreateAgentPermissionMode;
|
|
92814
93381
|
};
|
|
93382
|
+
export declare type MutationAgentStudio_UpdateDatasetItemArgs = {
|
|
93383
|
+
cloudId: Scalars['String']['input'];
|
|
93384
|
+
input: AgentStudioUpdateDatasetItemInput;
|
|
93385
|
+
productType: AgentStudioProductType;
|
|
93386
|
+
projectContainerAri: Scalars['ID']['input'];
|
|
93387
|
+
};
|
|
92815
93388
|
export declare type MutationAgentStudio_UpdateScenarioArgs = {
|
|
92816
93389
|
id: Scalars['ID']['input'];
|
|
92817
93390
|
input: AgentStudioUpdateScenarioInput;
|
|
@@ -93364,6 +93937,11 @@ export declare type MutationConfluence_UpdateNav4OptInArgs = {
|
|
|
93364
93937
|
cloudId: Scalars['ID']['input'];
|
|
93365
93938
|
input: ConfluenceUpdateNav4OptInInput;
|
|
93366
93939
|
};
|
|
93940
|
+
export declare type MutationConfluence_UpdateNcsPdfExportConfigurationArgs = {
|
|
93941
|
+
cloudId: Scalars['ID']['input'];
|
|
93942
|
+
input: ConfluenceUpdatePdfExportNoCodeStylingConfigInput;
|
|
93943
|
+
spaceKey: Scalars['String']['input'];
|
|
93944
|
+
};
|
|
93367
93945
|
export declare type MutationConfluence_UpdateQuestionArgs = {
|
|
93368
93946
|
cloudId: Scalars['ID']['input'];
|
|
93369
93947
|
input: ConfluenceUpdateQuestionInput;
|
|
@@ -93956,6 +94534,9 @@ export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
|
93956
94534
|
export declare type MutationGoals_CloneArgs = {
|
|
93957
94535
|
input: TownsquareGoalsCloneInput;
|
|
93958
94536
|
};
|
|
94537
|
+
export declare type MutationGoals_CreateAndAddMetricTargetArgs = {
|
|
94538
|
+
input: TownsquareGoalsCreateAddMetricTargetInput;
|
|
94539
|
+
};
|
|
93959
94540
|
export declare type MutationGoals_CreateUpdateArgs = {
|
|
93960
94541
|
input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
93961
94542
|
};
|
|
@@ -94142,6 +94723,9 @@ export declare type MutationJira_EditFieldSchemeArgs = {
|
|
|
94142
94723
|
cloudId: Scalars['ID']['input'];
|
|
94143
94724
|
input: JiraEditFieldSchemeInput;
|
|
94144
94725
|
};
|
|
94726
|
+
export declare type MutationJira_ListSettingMigrationMutationArgs = {
|
|
94727
|
+
input: JiraListSettingMigrationInput;
|
|
94728
|
+
};
|
|
94145
94729
|
export declare type MutationJira_MoveBoardViewIssueToCellEndArgs = {
|
|
94146
94730
|
input: JiraMoveBoardViewIssueToCellEndInput;
|
|
94147
94731
|
};
|
|
@@ -98035,6 +98619,13 @@ export declare enum PushNotificationSettingGroup {
|
|
|
98035
98619
|
}
|
|
98036
98620
|
export declare type Query = {
|
|
98037
98621
|
__typename?: 'Query';
|
|
98622
|
+
TeamworkGraph_userCommented?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98623
|
+
TeamworkGraph_userCreated?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98624
|
+
TeamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98625
|
+
TeamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98626
|
+
TeamworkGraph_userTopRecentReferencers?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98627
|
+
TeamworkGraph_userViewed?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98628
|
+
TeamworkGraph_userWorkMentioned?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
98038
98629
|
abTestCohorts?: Maybe<Scalars['String']['output']>;
|
|
98039
98630
|
actions?: Maybe<Actions>;
|
|
98040
98631
|
activities?: Maybe<Activities>;
|
|
@@ -98057,6 +98648,7 @@ export declare type Query = {
|
|
|
98057
98648
|
admin_unitValidateName?: Maybe<AdminUnitValidateName>;
|
|
98058
98649
|
admin_unitsForOrg?: Maybe<AdminUnitConnection>;
|
|
98059
98650
|
admin_user?: Maybe<AdminUser>;
|
|
98651
|
+
admin_userRoles?: Maybe<AdminUserRoleConnection>;
|
|
98060
98652
|
admin_userStats?: Maybe<AdminUserStats>;
|
|
98061
98653
|
admin_users?: Maybe<AdminUserConnection>;
|
|
98062
98654
|
admin_workspaceById?: Maybe<AdminWorkspace>;
|
|
@@ -98158,7 +98750,7 @@ export declare type Query = {
|
|
|
98158
98750
|
availableContentStates?: Maybe<AvailableContentStates>;
|
|
98159
98751
|
avp_getChart?: Maybe<AvpChart>;
|
|
98160
98752
|
avp_getDashboard?: Maybe<AvpDashboard>;
|
|
98161
|
-
avp_getDashboardTemplates
|
|
98753
|
+
avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
|
|
98162
98754
|
bitbucket?: Maybe<BitbucketQuery>;
|
|
98163
98755
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
98164
98756
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
@@ -98254,6 +98846,7 @@ export declare type Query = {
|
|
|
98254
98846
|
confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
|
|
98255
98847
|
confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
|
|
98256
98848
|
confluence_nbmVerificationResult?: Maybe<ConfluenceNbmVerificationResultConnection>;
|
|
98849
|
+
confluence_ncsPdfExportConfiguration?: Maybe<ConfluenceNcsPdfExportConfiguration>;
|
|
98257
98850
|
confluence_note?: Maybe<NoteResponse>;
|
|
98258
98851
|
confluence_notesByProductLink?: Maybe<NoteConnection>;
|
|
98259
98852
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
@@ -98401,6 +98994,7 @@ export declare type Query = {
|
|
|
98401
98994
|
devai_getUserPermissionsForRepo?: Maybe<Scalars['Boolean']['output']>;
|
|
98402
98995
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
98403
98996
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
98997
|
+
devai_rovoDevEntitlements?: Maybe<DevAiEntitlementCheckResultResponse>;
|
|
98404
98998
|
devai_rovodevSessionById?: Maybe<DevAiRovoDevSession>;
|
|
98405
98999
|
devai_rovodevSessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
98406
99000
|
devai_rovodevSessionsByAri?: Maybe<Array<DevAiRovoDevSession>>;
|
|
@@ -98592,7 +99186,6 @@ export declare type Query = {
|
|
|
98592
99186
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
98593
99187
|
loom_meetings?: Maybe<Array<Maybe<LoomMeeting>>>;
|
|
98594
99188
|
loom_meetingsSearch?: Maybe<LoomMeetings>;
|
|
98595
|
-
loom_primaryAuthTypeForEmail?: Maybe<LoomUserPrimaryAuthType>;
|
|
98596
99189
|
loom_settings?: Maybe<LoomSettings>;
|
|
98597
99190
|
loom_space?: Maybe<LoomSpace>;
|
|
98598
99191
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
@@ -98864,6 +99457,34 @@ export declare type Query = {
|
|
|
98864
99457
|
workSuggestions?: Maybe<WorkSuggestions>;
|
|
98865
99458
|
xflow?: Maybe<Scalars['String']['output']>;
|
|
98866
99459
|
};
|
|
99460
|
+
export declare type QueryTeamworkGraph_UserCommentedArgs = {
|
|
99461
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99462
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99463
|
+
};
|
|
99464
|
+
export declare type QueryTeamworkGraph_UserCreatedArgs = {
|
|
99465
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99466
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99467
|
+
};
|
|
99468
|
+
export declare type QueryTeamworkGraph_UserTaggedInArgs = {
|
|
99469
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99470
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99471
|
+
};
|
|
99472
|
+
export declare type QueryTeamworkGraph_UserTopRecentMentionersArgs = {
|
|
99473
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99474
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99475
|
+
};
|
|
99476
|
+
export declare type QueryTeamworkGraph_UserTopRecentReferencersArgs = {
|
|
99477
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99478
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99479
|
+
};
|
|
99480
|
+
export declare type QueryTeamworkGraph_UserViewedArgs = {
|
|
99481
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99482
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99483
|
+
};
|
|
99484
|
+
export declare type QueryTeamworkGraph_UserWorkMentionedArgs = {
|
|
99485
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99486
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99487
|
+
};
|
|
98867
99488
|
export declare type QueryAdminAnnouncementBannerSettingArgs = {
|
|
98868
99489
|
id: Scalars['String']['input'];
|
|
98869
99490
|
};
|
|
@@ -98942,6 +99563,15 @@ export declare type QueryAdmin_UnitsForOrgArgs = {
|
|
|
98942
99563
|
export declare type QueryAdmin_UserArgs = {
|
|
98943
99564
|
input?: InputMaybe<AdminFetchUserInput>;
|
|
98944
99565
|
};
|
|
99566
|
+
export declare type QueryAdmin_UserRolesArgs = {
|
|
99567
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99568
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
99569
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99570
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
99571
|
+
orgId: Scalars['ID']['input'];
|
|
99572
|
+
principalId: Scalars['ID']['input'];
|
|
99573
|
+
resourceId: Scalars['ID']['input'];
|
|
99574
|
+
};
|
|
98945
99575
|
export declare type QueryAdmin_UserStatsArgs = {
|
|
98946
99576
|
input?: InputMaybe<AdminFetchUserStatsInput>;
|
|
98947
99577
|
};
|
|
@@ -99298,7 +99928,7 @@ export declare type QueryAssetsDm_DataSourceConfigArgs = {
|
|
|
99298
99928
|
export declare type QueryAssetsDm_DataSourceDetailsArgs = {
|
|
99299
99929
|
cloudId: Scalars['ID']['input'];
|
|
99300
99930
|
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
99301
|
-
dataSourceTypeId
|
|
99931
|
+
dataSourceTypeId?: InputMaybe<Scalars['Int']['input']>;
|
|
99302
99932
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
99303
99933
|
workspaceId: Scalars['ID']['input'];
|
|
99304
99934
|
};
|
|
@@ -99444,7 +100074,7 @@ export declare type QueryAvp_GetDashboardArgs = {
|
|
|
99444
100074
|
dashboardAri: Scalars['ID']['input'];
|
|
99445
100075
|
};
|
|
99446
100076
|
export declare type QueryAvp_GetDashboardTemplatesArgs = {
|
|
99447
|
-
input
|
|
100077
|
+
input: AvpGetDashboardTemplatesInput;
|
|
99448
100078
|
};
|
|
99449
100079
|
export declare type QueryBitbucketRepositoriesAvailableToLinkWithNewDevOpsServiceArgs = {
|
|
99450
100080
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -99872,6 +100502,10 @@ export declare type QueryConfluence_NbmVerificationResultArgs = {
|
|
|
99872
100502
|
orderBy?: InputMaybe<ConfluenceNbmVerificationResultOrder>;
|
|
99873
100503
|
scanId: Scalars['ID']['input'];
|
|
99874
100504
|
};
|
|
100505
|
+
export declare type QueryConfluence_NcsPdfExportConfigurationArgs = {
|
|
100506
|
+
cloudId: Scalars['ID']['input'];
|
|
100507
|
+
spaceKey: Scalars['String']['input'];
|
|
100508
|
+
};
|
|
99875
100509
|
export declare type QueryConfluence_NoteArgs = {
|
|
99876
100510
|
id: Scalars['ID']['input'];
|
|
99877
100511
|
};
|
|
@@ -100605,6 +101239,10 @@ export declare type QueryDevai_RovoDevAgentsUserArgs = {
|
|
|
100605
101239
|
export declare type QueryDevai_RovoDevAgentsWorkspaceArgs = {
|
|
100606
101240
|
cloudId: Scalars['ID']['input'];
|
|
100607
101241
|
};
|
|
101242
|
+
export declare type QueryDevai_RovoDevEntitlementsArgs = {
|
|
101243
|
+
cloudId: Scalars['ID']['input'];
|
|
101244
|
+
includeUserProductAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101245
|
+
};
|
|
100608
101246
|
export declare type QueryDevai_RovodevSessionByIdArgs = {
|
|
100609
101247
|
id: Scalars['ID']['input'];
|
|
100610
101248
|
};
|
|
@@ -101150,6 +101788,7 @@ export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
|
101150
101788
|
};
|
|
101151
101789
|
export declare type QueryJira_ProjectLevelSidebarMenuCustomizationArgs = {
|
|
101152
101790
|
cloudId: Scalars['ID']['input'];
|
|
101791
|
+
issueKey?: InputMaybe<Scalars['ID']['input']>;
|
|
101153
101792
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
101154
101793
|
projectKey?: InputMaybe<Scalars['ID']['input']>;
|
|
101155
101794
|
};
|
|
@@ -101262,9 +101901,6 @@ export declare type QueryLoom_MeetingsArgs = {
|
|
|
101262
101901
|
export declare type QueryLoom_MeetingsSearchArgs = {
|
|
101263
101902
|
id: Scalars['ID']['input'];
|
|
101264
101903
|
};
|
|
101265
|
-
export declare type QueryLoom_PrimaryAuthTypeForEmailArgs = {
|
|
101266
|
-
email: Scalars['String']['input'];
|
|
101267
|
-
};
|
|
101268
101904
|
export declare type QueryLoom_SettingsArgs = {
|
|
101269
101905
|
siteId: Scalars['ID']['input'];
|
|
101270
101906
|
};
|
|
@@ -102448,6 +103084,7 @@ export declare type RadarDeleteFocusAreaProposalChangesInput = {
|
|
|
102448
103084
|
};
|
|
102449
103085
|
export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
|
|
102450
103086
|
__typename?: 'RadarDynamicFilterOptions';
|
|
103087
|
+
functionOptions: Array<RadarFunction>;
|
|
102451
103088
|
functions: Array<RadarFunctionId>;
|
|
102452
103089
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
102453
103090
|
operators: Array<RadarFilterOperators>;
|
|
@@ -102567,6 +103204,7 @@ export declare enum RadarFilterOperators {
|
|
|
102567
103204
|
NotLike = "NOT_LIKE"
|
|
102568
103205
|
}
|
|
102569
103206
|
export declare type RadarFilterOptions = {
|
|
103207
|
+
functionOptions: Array<RadarFunction>;
|
|
102570
103208
|
functions: Array<RadarFunctionId>;
|
|
102571
103209
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
102572
103210
|
operators: Array<RadarFilterOperators>;
|
|
@@ -102802,6 +103440,7 @@ export declare type RadarSettings = {
|
|
|
102802
103440
|
};
|
|
102803
103441
|
export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
102804
103442
|
__typename?: 'RadarStaticStringFilterOptions';
|
|
103443
|
+
functionOptions: Array<RadarFunction>;
|
|
102805
103444
|
functions: Array<RadarFunctionId>;
|
|
102806
103445
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
102807
103446
|
operators: Array<RadarFilterOperators>;
|
|
@@ -105284,6 +105923,7 @@ export declare type SearchResultItemEdge = {
|
|
|
105284
105923
|
};
|
|
105285
105924
|
export declare type SearchResultJiraBoard = SearchResult & {
|
|
105286
105925
|
__typename?: 'SearchResultJiraBoard';
|
|
105926
|
+
board?: Maybe<JiraBoard>;
|
|
105287
105927
|
boardId?: Maybe<Scalars['ID']['output']>;
|
|
105288
105928
|
container?: Maybe<SearchResultJiraBoardContainer>;
|
|
105289
105929
|
description: Scalars['String']['output'];
|
|
@@ -125560,6 +126200,7 @@ export declare type SpaceSettings = {
|
|
|
125560
126200
|
contentStateSettings: ContentStateSettings;
|
|
125561
126201
|
customHeaderAndFooter: SpaceSettingsMetadata;
|
|
125562
126202
|
editor?: Maybe<EditorVersionsMetadataDto>;
|
|
126203
|
+
isPdfExportNoCodeStylingOptedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
125563
126204
|
links?: Maybe<LinksContextSelfBase>;
|
|
125564
126205
|
routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
125565
126206
|
};
|
|
@@ -129021,6 +129662,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
129021
129662
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
129022
129663
|
focusAreas?: Maybe<GraphStoreSimplifiedFocusAreaHasAtlasGoalInverseConnection>;
|
|
129023
129664
|
goalType?: Maybe<TownsquareGoalType>;
|
|
129665
|
+
highlights?: Maybe<TownsquareHighlightConnection>;
|
|
129024
129666
|
icon?: Maybe<TownsquareGoalIcon>;
|
|
129025
129667
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
129026
129668
|
id: Scalars['ID']['output'];
|
|
@@ -129058,6 +129700,15 @@ export declare type TownsquareGoalFocusAreasArgs = {
|
|
|
129058
129700
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129059
129701
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129060
129702
|
};
|
|
129703
|
+
export declare type TownsquareGoalHighlightsArgs = {
|
|
129704
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129705
|
+
createdAfter?: InputMaybe<Scalars['DateTime']['input']>;
|
|
129706
|
+
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
129707
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129708
|
+
noUpdateAttached?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129709
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareHighlightSortEnum>>>;
|
|
129710
|
+
type?: InputMaybe<TownsquareHighlightType>;
|
|
129711
|
+
};
|
|
129061
129712
|
export declare type TownsquareGoalMetricTargetsArgs = {
|
|
129062
129713
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129063
129714
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -129110,6 +129761,15 @@ export declare type TownsquareGoalConnection = {
|
|
|
129110
129761
|
edges?: Maybe<Array<Maybe<TownsquareGoalEdge>>>;
|
|
129111
129762
|
pageInfo: PageInfo;
|
|
129112
129763
|
};
|
|
129764
|
+
export declare type TownsquareGoalCreateMetricInput = {
|
|
129765
|
+
externalEntityId?: InputMaybe<Scalars['String']['input']>;
|
|
129766
|
+
goalId: Scalars['ID']['input'];
|
|
129767
|
+
name: Scalars['String']['input'];
|
|
129768
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
129769
|
+
subType?: InputMaybe<Scalars['String']['input']>;
|
|
129770
|
+
type: TownsquareMetricType;
|
|
129771
|
+
value: Scalars['Float']['input'];
|
|
129772
|
+
};
|
|
129113
129773
|
export declare type TownsquareGoalEdge = {
|
|
129114
129774
|
__typename?: 'TownsquareGoalEdge';
|
|
129115
129775
|
cursor: Scalars['String']['output'];
|
|
@@ -129312,6 +129972,19 @@ export declare type TownsquareGoalsClonePayload = {
|
|
|
129312
129972
|
goal?: Maybe<TownsquareGoal>;
|
|
129313
129973
|
success: Scalars['Boolean']['output'];
|
|
129314
129974
|
};
|
|
129975
|
+
export declare type TownsquareGoalsCreateAddMetricTargetInput = {
|
|
129976
|
+
createMetric?: InputMaybe<TownsquareGoalCreateMetricInput>;
|
|
129977
|
+
goalId: Scalars['ID']['input'];
|
|
129978
|
+
metricId?: InputMaybe<Scalars['ID']['input']>;
|
|
129979
|
+
startValue: Scalars['Float']['input'];
|
|
129980
|
+
targetValue: Scalars['Float']['input'];
|
|
129981
|
+
};
|
|
129982
|
+
export declare type TownsquareGoalsCreateAddMetricTargetPayload = {
|
|
129983
|
+
__typename?: 'TownsquareGoalsCreateAddMetricTargetPayload';
|
|
129984
|
+
errors?: Maybe<Array<MutationError>>;
|
|
129985
|
+
goal?: Maybe<TownsquareGoal>;
|
|
129986
|
+
success: Scalars['Boolean']['output'];
|
|
129987
|
+
};
|
|
129315
129988
|
export declare type TownsquareGoalsCreateUpdateInput = {
|
|
129316
129989
|
goalId: Scalars['ID']['input'];
|
|
129317
129990
|
score?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -132361,6 +133034,11 @@ export declare type TrelloEnterpriseAdminsArgs = {
|
|
|
132361
133034
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
132362
133035
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132363
133036
|
};
|
|
133037
|
+
export declare type TrelloEnterpriseAccessSummary = {
|
|
133038
|
+
__typename?: 'TrelloEnterpriseAccessSummary';
|
|
133039
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
133040
|
+
id: Scalars['ID']['output'];
|
|
133041
|
+
};
|
|
132364
133042
|
export declare type TrelloEnterprisePrefs = {
|
|
132365
133043
|
__typename?: 'TrelloEnterprisePrefs';
|
|
132366
133044
|
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
@@ -133586,6 +134264,8 @@ export declare type TrelloQueryApi = {
|
|
|
133586
134264
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
133587
134265
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
133588
134266
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
134267
|
+
userUnrestrictedAccessSummary?: Maybe<TrelloUserUnrestrictedAccessSummary>;
|
|
134268
|
+
userWorkspaceAccessSummary?: Maybe<TrelloWorkspaceAccessSummary>;
|
|
133589
134269
|
usersById?: Maybe<Array<Maybe<TrelloMember>>>;
|
|
133590
134270
|
workspace?: Maybe<TrelloWorkspace>;
|
|
133591
134271
|
};
|
|
@@ -133696,6 +134376,9 @@ export declare type TrelloQueryApiTemplateGalleryArgs = {
|
|
|
133696
134376
|
filter?: InputMaybe<TrelloTemplateGalleryFilterInput>;
|
|
133697
134377
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133698
134378
|
};
|
|
134379
|
+
export declare type TrelloQueryApiUserWorkspaceAccessSummaryArgs = {
|
|
134380
|
+
workspaceId: Scalars['String']['input'];
|
|
134381
|
+
};
|
|
133699
134382
|
export declare type TrelloQueryApiUsersByIdArgs = {
|
|
133700
134383
|
ids: Array<Scalars['ID']['input']>;
|
|
133701
134384
|
};
|
|
@@ -134245,6 +134928,12 @@ export declare type TrelloUserGeneratedText = {
|
|
|
134245
134928
|
__typename?: 'TrelloUserGeneratedText';
|
|
134246
134929
|
text?: Maybe<Scalars['String']['output']>;
|
|
134247
134930
|
};
|
|
134931
|
+
export declare type TrelloUserUnrestrictedAccessSummary = {
|
|
134932
|
+
__typename?: 'TrelloUserUnrestrictedAccessSummary';
|
|
134933
|
+
enterpriseAdminSummaries?: Maybe<Array<TrelloEnterpriseAccessSummary>>;
|
|
134934
|
+
topWorkspaces?: Maybe<Array<TrelloWorkspaceAccessSummary>>;
|
|
134935
|
+
totalWorkspaces?: Maybe<Scalars['Int']['output']>;
|
|
134936
|
+
};
|
|
134248
134937
|
export declare type TrelloWatchCardInput = {
|
|
134249
134938
|
cardId: Scalars['ID']['input'];
|
|
134250
134939
|
};
|
|
@@ -134286,6 +134975,12 @@ export declare type TrelloWorkspaceTagsArgs = {
|
|
|
134286
134975
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
134287
134976
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
134288
134977
|
};
|
|
134978
|
+
export declare type TrelloWorkspaceAccessSummary = {
|
|
134979
|
+
__typename?: 'TrelloWorkspaceAccessSummary';
|
|
134980
|
+
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
134981
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
134982
|
+
id: Scalars['ID']['output'];
|
|
134983
|
+
};
|
|
134289
134984
|
export declare type TrelloWorkspaceEnterpriseUpdated = {
|
|
134290
134985
|
__typename?: 'TrelloWorkspaceEnterpriseUpdated';
|
|
134291
134986
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -136815,6 +137510,18 @@ export declare enum VendorType {
|
|
|
136815
137510
|
Internal = "INTERNAL",
|
|
136816
137511
|
ThirdParty = "THIRD_PARTY"
|
|
136817
137512
|
}
|
|
137513
|
+
export declare type VerifyComponentAutoPopulationField = {
|
|
137514
|
+
componentId: Scalars['ID']['input'];
|
|
137515
|
+
fieldId: Scalars['String']['input'];
|
|
137516
|
+
value: Scalars['String']['input'];
|
|
137517
|
+
};
|
|
137518
|
+
export declare type VerifyComponentAutoPopulationFieldPayload = Payload & {
|
|
137519
|
+
__typename?: 'VerifyComponentAutoPopulationFieldPayload';
|
|
137520
|
+
autoPopulationMetadata?: Maybe<CompassAutoPopulationMetadata>;
|
|
137521
|
+
componentId?: Maybe<Scalars['ID']['output']>;
|
|
137522
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137523
|
+
success: Scalars['Boolean']['output'];
|
|
137524
|
+
};
|
|
136818
137525
|
export declare type Version = {
|
|
136819
137526
|
__typename?: 'Version';
|
|
136820
137527
|
by?: Maybe<Person>;
|