@forge/cli-shared 7.0.0-next.9-experimental-76b1041 → 7.0.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -5
- package/out/app-logs/graphql-client.d.ts.map +1 -1
- package/out/app-logs/graphql-client.js +3 -1
- package/out/app-logs/view-logs.d.ts +7 -1
- package/out/app-logs/view-logs.d.ts.map +1 -1
- package/out/app-logs/view-logs.js +10 -2
- package/out/apps/template.js +1 -1
- package/out/graphql/graphql-types.d.ts +478 -32
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +42 -20
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/shared/test.js +1 -1
- package/out/ui/text.d.ts +2 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -1
- package/package.json +3 -3
|
@@ -8175,6 +8175,7 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
|
|
|
8175
8175
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
8176
8176
|
comparatorValue: Scalars['Float']['output'];
|
|
8177
8177
|
description?: Maybe<Scalars['String']['output']>;
|
|
8178
|
+
graduatedSeriesComparators?: Maybe<Array<CompassCriteriaGraduatedSeries>>;
|
|
8178
8179
|
id: Scalars['ID']['output'];
|
|
8179
8180
|
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
8180
8181
|
metricDefinitionId: Scalars['ID']['output'];
|
|
@@ -8938,6 +8939,7 @@ export declare type CompassScorecard = Node & {
|
|
|
8938
8939
|
libraryScorecardId?: Maybe<Scalars['ID']['output']>;
|
|
8939
8940
|
name: Scalars['String']['output'];
|
|
8940
8941
|
owner?: Maybe<User>;
|
|
8942
|
+
scoreSystem?: Maybe<CompassScorecardScoreSystem>;
|
|
8941
8943
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
8942
8944
|
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
8943
8945
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
@@ -8998,6 +9000,7 @@ export declare type CompassScorecardAppliedToComponentsEdge = {
|
|
|
8998
9000
|
activeWorkItems?: Maybe<CompassComponentScorecardWorkItemsQueryResult>;
|
|
8999
9001
|
cursor: Scalars['String']['output'];
|
|
9000
9002
|
node?: Maybe<CompassComponent>;
|
|
9003
|
+
score?: Maybe<CompassScorecardScoreResult>;
|
|
9001
9004
|
viewerPermissions?: Maybe<CompassComponentScorecardRelationshipInstancePermissions>;
|
|
9002
9005
|
};
|
|
9003
9006
|
export declare type CompassScorecardAppliedToComponentsEdgeActiveIssuesArgs = {
|
|
@@ -9023,6 +9026,7 @@ export declare type CompassScorecardAppliedToComponentsQuery = {
|
|
|
9023
9026
|
sort?: InputMaybe<CompassScorecardAppliedToComponentsQuerySort>;
|
|
9024
9027
|
};
|
|
9025
9028
|
export declare type CompassScorecardAppliedToComponentsQueryFilter = {
|
|
9029
|
+
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
9026
9030
|
fields?: InputMaybe<Array<CompassScorecardAppliedToComponentsFieldFilter>>;
|
|
9027
9031
|
labels?: InputMaybe<CompassScorecardAppliedToComponentsLabelsFilter>;
|
|
9028
9032
|
owners?: InputMaybe<CompassScorecardAppliedToComponentsOwnerFilter>;
|
|
@@ -9092,6 +9096,7 @@ export declare type CompassScorecardCriteriaMaturityScore = {
|
|
|
9092
9096
|
};
|
|
9093
9097
|
export declare type CompassScorecardCriteriaScore = {
|
|
9094
9098
|
__typename?: 'CompassScorecardCriteriaScore';
|
|
9099
|
+
criterionId: Scalars['ID']['output'];
|
|
9095
9100
|
dataSourceLastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
9096
9101
|
exemptionDetails?: Maybe<CompassCriterionExemptionDetails>;
|
|
9097
9102
|
explanation?: Maybe<Scalars['String']['output']>;
|
|
@@ -9153,7 +9158,9 @@ export declare type CompassScorecardCriteriaScoreStatisticsHistoryQuery = {
|
|
|
9153
9158
|
};
|
|
9154
9159
|
export declare type CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter = {
|
|
9155
9160
|
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
9161
|
+
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
9156
9162
|
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
9163
|
+
labels?: InputMaybe<CompassScorecardScoreStatisticsLabelsFilter>;
|
|
9157
9164
|
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
9158
9165
|
};
|
|
9159
9166
|
export declare enum CompassScorecardCriteriaScoringStrategyRuleAction {
|
|
@@ -9406,6 +9413,7 @@ export declare type CompassScorecardManualApplicationModel = CompassScorecardApp
|
|
|
9406
9413
|
export declare type CompassScorecardMaturityGroupCriteriaScores = {
|
|
9407
9414
|
__typename?: 'CompassScorecardMaturityGroupCriteriaScores';
|
|
9408
9415
|
criteriaScores?: Maybe<Array<CompassScorecardCriteriaMaturityScore>>;
|
|
9416
|
+
criterionId: Scalars['ID']['output'];
|
|
9409
9417
|
maturityGroup?: Maybe<CompassScorecardMaturityLevel>;
|
|
9410
9418
|
passingCount?: Maybe<Scalars['Int']['output']>;
|
|
9411
9419
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -9420,11 +9428,16 @@ export declare type CompassScorecardMaturityLevelAwarded = {
|
|
|
9420
9428
|
maturityGroupCriteriaScores?: Maybe<Array<CompassScorecardMaturityGroupCriteriaScores>>;
|
|
9421
9429
|
maturityLevel?: Maybe<CompassScorecardMaturityLevel>;
|
|
9422
9430
|
maturityLevelDuration?: Maybe<CompassScorecardMaturityLevelDuration>;
|
|
9431
|
+
scorecardId: Scalars['ID']['output'];
|
|
9423
9432
|
};
|
|
9424
9433
|
export declare type CompassScorecardMaturityLevelDuration = {
|
|
9425
9434
|
__typename?: 'CompassScorecardMaturityLevelDuration';
|
|
9426
9435
|
since?: Maybe<Scalars['DateTime']['output']>;
|
|
9427
9436
|
};
|
|
9437
|
+
export declare type CompassScorecardMaturityLevelScoreSystem = {
|
|
9438
|
+
__typename?: 'CompassScorecardMaturityLevelScoreSystem';
|
|
9439
|
+
maturityLevelConfig?: Maybe<Array<CompassScorecardMaturityLevel>>;
|
|
9440
|
+
};
|
|
9428
9441
|
export declare type CompassScorecardMetricCriterionScore = CompassScorecardCriterionScore & {
|
|
9429
9442
|
__typename?: 'CompassScorecardMetricCriterionScore';
|
|
9430
9443
|
criterionId: Scalars['ID']['output'];
|
|
@@ -9453,6 +9466,7 @@ export declare type CompassScorecardScore = {
|
|
|
9453
9466
|
criteriaScores?: Maybe<Array<CompassScorecardCriteriaScore>>;
|
|
9454
9467
|
maxTotalScore: Scalars['Int']['output'];
|
|
9455
9468
|
points?: Maybe<CompassScorecardScorePoints>;
|
|
9469
|
+
scorecardId: Scalars['ID']['output'];
|
|
9456
9470
|
status?: Maybe<CompassScorecardScoreStatus>;
|
|
9457
9471
|
statusDuration?: Maybe<CompassScorecardScoreStatusDuration>;
|
|
9458
9472
|
totalScore: Scalars['Int']['output'];
|
|
@@ -9478,6 +9492,8 @@ export declare type CompassScorecardScoreDurationStatisticsQuery = {
|
|
|
9478
9492
|
};
|
|
9479
9493
|
export declare type CompassScorecardScoreDurationStatisticsQueryFilter = {
|
|
9480
9494
|
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
9495
|
+
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
9496
|
+
labels?: InputMaybe<CompassScorecardScoreStatisticsLabelsFilter>;
|
|
9481
9497
|
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
9482
9498
|
};
|
|
9483
9499
|
export declare type CompassScorecardScoreDurationStatisticsResult = CompassScorecardScoreDurationStatistics | QueryError;
|
|
@@ -9544,9 +9560,14 @@ export declare type CompassScorecardScoreStatisticsHistoryQuery = {
|
|
|
9544
9560
|
};
|
|
9545
9561
|
export declare type CompassScorecardScoreStatisticsHistoryQueryFilter = {
|
|
9546
9562
|
componentTypes?: InputMaybe<CompassScoreStatisticsHistoryComponentTypesFilter>;
|
|
9563
|
+
customFields?: InputMaybe<Array<CompassCustomFieldFilterInput>>;
|
|
9547
9564
|
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
9565
|
+
labels?: InputMaybe<CompassScorecardScoreStatisticsLabelsFilter>;
|
|
9548
9566
|
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
9549
9567
|
};
|
|
9568
|
+
export declare type CompassScorecardScoreStatisticsLabelsFilter = {
|
|
9569
|
+
in: Array<Scalars['String']['input']>;
|
|
9570
|
+
};
|
|
9550
9571
|
export declare type CompassScorecardScoreStatus = {
|
|
9551
9572
|
__typename?: 'CompassScorecardScoreStatus';
|
|
9552
9573
|
lowerBound: Scalars['Int']['output'];
|
|
@@ -9557,6 +9578,7 @@ export declare type CompassScorecardScoreStatusDuration = {
|
|
|
9557
9578
|
__typename?: 'CompassScorecardScoreStatusDuration';
|
|
9558
9579
|
since: Scalars['DateTime']['output'];
|
|
9559
9580
|
};
|
|
9581
|
+
export declare type CompassScorecardScoreSystem = CompassScorecardMaturityLevelScoreSystem | CompassScorecardThresholdStatusScoreSystem;
|
|
9560
9582
|
export declare enum CompassScorecardScoringStrategyType {
|
|
9561
9583
|
PercentageBased = "PERCENTAGE_BASED",
|
|
9562
9584
|
PointBased = "POINT_BASED",
|
|
@@ -9582,6 +9604,11 @@ export declare type CompassScorecardStatusThresholdInput = {
|
|
|
9582
9604
|
lowerBound: Scalars['Int']['input'];
|
|
9583
9605
|
upperBound: Scalars['Int']['input'];
|
|
9584
9606
|
};
|
|
9607
|
+
export declare type CompassScorecardThresholdStatusScoreSystem = {
|
|
9608
|
+
__typename?: 'CompassScorecardThresholdStatusScoreSystem';
|
|
9609
|
+
scoringStrategyType?: Maybe<Scalars['String']['output']>;
|
|
9610
|
+
statusConfig?: Maybe<CompassScorecardStatusConfig>;
|
|
9611
|
+
};
|
|
9585
9612
|
export declare type CompassScorecardTypesFilter = {
|
|
9586
9613
|
in: Array<Scalars['String']['input']>;
|
|
9587
9614
|
};
|
|
@@ -10424,6 +10451,7 @@ export declare type ConfluenceBlogPost = Node & {
|
|
|
10424
10451
|
id: Scalars['ID']['output'];
|
|
10425
10452
|
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
10426
10453
|
latestVersion?: Maybe<ConfluenceBlogPostVersion>;
|
|
10454
|
+
likesSummary?: Maybe<ConfluenceLikesSummary>;
|
|
10427
10455
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
10428
10456
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
10429
10457
|
nativeProperties?: Maybe<ConfluenceContentNativeProperties>;
|
|
@@ -10934,8 +10962,13 @@ export declare type ConfluenceCurrentContentNativeProperties = {
|
|
|
10934
10962
|
};
|
|
10935
10963
|
export declare type ConfluenceDataLifecycleManagementPolicy = {
|
|
10936
10964
|
__typename?: 'ConfluenceDataLifecycleManagementPolicy';
|
|
10965
|
+
dataRetentionPolicyDetailsForWorkspace: ConfluenceDataRetentionPolicyStatus;
|
|
10937
10966
|
isDataRetentionPolicyEnabled: ConfluencePolicyEnabledStatus;
|
|
10938
10967
|
};
|
|
10968
|
+
export declare type ConfluenceDataRetentionPolicyStatus = {
|
|
10969
|
+
__typename?: 'ConfluenceDataRetentionPolicyStatus';
|
|
10970
|
+
policyEnabledStatus: ConfluencePolicyEnabledStatus;
|
|
10971
|
+
};
|
|
10939
10972
|
export declare type ConfluenceDatabase = Node & {
|
|
10940
10973
|
__typename?: 'ConfluenceDatabase';
|
|
10941
10974
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -17438,6 +17471,31 @@ export declare type ConfluenceQueryApiWhiteboardArgs = {
|
|
|
17438
17471
|
export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
17439
17472
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
17440
17473
|
};
|
|
17474
|
+
export declare type ConfluenceReactionInput = {
|
|
17475
|
+
containerId?: InputMaybe<Scalars['Long']['input']>;
|
|
17476
|
+
containerType?: InputMaybe<ConfluenceReactionableContainerType>;
|
|
17477
|
+
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
17478
|
+
contentType?: InputMaybe<ConfluenceReactionableContentType>;
|
|
17479
|
+
emojiId?: InputMaybe<Scalars['String']['input']>;
|
|
17480
|
+
};
|
|
17481
|
+
export declare type ConfluenceReactionPayload = Payload & {
|
|
17482
|
+
__typename?: 'ConfluenceReactionPayload';
|
|
17483
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
17484
|
+
containerAri?: Maybe<Scalars['String']['output']>;
|
|
17485
|
+
emojiId?: Maybe<Scalars['String']['output']>;
|
|
17486
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17487
|
+
success: Scalars['Boolean']['output'];
|
|
17488
|
+
};
|
|
17489
|
+
export declare enum ConfluenceReactionableContainerType {
|
|
17490
|
+
Blogpost = "BLOGPOST",
|
|
17491
|
+
Page = "PAGE",
|
|
17492
|
+
Space = "SPACE"
|
|
17493
|
+
}
|
|
17494
|
+
export declare enum ConfluenceReactionableContentType {
|
|
17495
|
+
Blogpost = "BLOGPOST",
|
|
17496
|
+
Comment = "COMMENT",
|
|
17497
|
+
Page = "PAGE"
|
|
17498
|
+
}
|
|
17441
17499
|
export declare type ConfluenceRedactionMetadata = {
|
|
17442
17500
|
__typename?: 'ConfluenceRedactionMetadata';
|
|
17443
17501
|
creationDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -17957,6 +18015,22 @@ export declare type ConfluenceUser = {
|
|
|
17957
18015
|
space?: Maybe<Space>;
|
|
17958
18016
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
17959
18017
|
};
|
|
18018
|
+
export declare type ConfluenceUserClass = {
|
|
18019
|
+
__typename?: 'ConfluenceUserClass';
|
|
18020
|
+
displayName: Scalars['String']['output'];
|
|
18021
|
+
principalId: Scalars['ID']['output'];
|
|
18022
|
+
};
|
|
18023
|
+
export declare type ConfluenceUserClassConnection = {
|
|
18024
|
+
__typename?: 'ConfluenceUserClassConnection';
|
|
18025
|
+
edges?: Maybe<Array<ConfluenceUserClassEdge>>;
|
|
18026
|
+
nodes?: Maybe<Array<ConfluenceUserClass>>;
|
|
18027
|
+
pageInfo: PageInfo;
|
|
18028
|
+
};
|
|
18029
|
+
export declare type ConfluenceUserClassEdge = {
|
|
18030
|
+
__typename?: 'ConfluenceUserClassEdge';
|
|
18031
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
18032
|
+
node: ConfluenceUserClass;
|
|
18033
|
+
};
|
|
17960
18034
|
export declare type ConfluenceUserContentAccessResult = {
|
|
17961
18035
|
__typename?: 'ConfluenceUserContentAccessResult';
|
|
17962
18036
|
canAccessList: Array<Maybe<Scalars['String']['output']>>;
|
|
@@ -32596,6 +32670,8 @@ export declare type GraphStore = {
|
|
|
32596
32670
|
userCreatedConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentInverseConnection>;
|
|
32597
32671
|
userCreatedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection>;
|
|
32598
32672
|
userCreatedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection>;
|
|
32673
|
+
userCreatedConfluenceEmbed?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedConnection>;
|
|
32674
|
+
userCreatedConfluenceEmbedInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseConnection>;
|
|
32599
32675
|
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
32600
32676
|
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
32601
32677
|
userCreatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection>;
|
|
@@ -32646,6 +32722,8 @@ export declare type GraphStore = {
|
|
|
32646
32722
|
userLastUpdatedDesignInverse?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection>;
|
|
32647
32723
|
userLaunchedRelease?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseConnection>;
|
|
32648
32724
|
userLaunchedReleaseInverse?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseInverseConnection>;
|
|
32725
|
+
userLikedConfluencePage?: Maybe<GraphStoreSimplifiedUserLikedConfluencePageConnection>;
|
|
32726
|
+
userLikedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserLikedConfluencePageInverseConnection>;
|
|
32649
32727
|
userLinkedThirdPartyUser?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserConnection>;
|
|
32650
32728
|
userLinkedThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserInverseConnection>;
|
|
32651
32729
|
userMemberOfConversation?: Maybe<GraphStoreSimplifiedUserMemberOfConversationConnection>;
|
|
@@ -36485,6 +36563,20 @@ export declare type GraphStoreUserCreatedConfluenceDatabaseInverseArgs = {
|
|
|
36485
36563
|
id: Scalars['ID']['input'];
|
|
36486
36564
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceDatabaseSortInput>;
|
|
36487
36565
|
};
|
|
36566
|
+
export declare type GraphStoreUserCreatedConfluenceEmbedArgs = {
|
|
36567
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36568
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36569
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36570
|
+
id: Scalars['ID']['input'];
|
|
36571
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceEmbedSortInput>;
|
|
36572
|
+
};
|
|
36573
|
+
export declare type GraphStoreUserCreatedConfluenceEmbedInverseArgs = {
|
|
36574
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36575
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36576
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36577
|
+
id: Scalars['ID']['input'];
|
|
36578
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceEmbedSortInput>;
|
|
36579
|
+
};
|
|
36488
36580
|
export declare type GraphStoreUserCreatedConfluencePageArgs = {
|
|
36489
36581
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36490
36582
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36835,6 +36927,20 @@ export declare type GraphStoreUserLaunchedReleaseInverseArgs = {
|
|
|
36835
36927
|
id: Scalars['ID']['input'];
|
|
36836
36928
|
sort?: InputMaybe<GraphStoreUserLaunchedReleaseSortInput>;
|
|
36837
36929
|
};
|
|
36930
|
+
export declare type GraphStoreUserLikedConfluencePageArgs = {
|
|
36931
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36932
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36933
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36934
|
+
id: Scalars['ID']['input'];
|
|
36935
|
+
sort?: InputMaybe<GraphStoreUserLikedConfluencePageSortInput>;
|
|
36936
|
+
};
|
|
36937
|
+
export declare type GraphStoreUserLikedConfluencePageInverseArgs = {
|
|
36938
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36939
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36940
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36941
|
+
id: Scalars['ID']['input'];
|
|
36942
|
+
sort?: InputMaybe<GraphStoreUserLikedConfluencePageSortInput>;
|
|
36943
|
+
};
|
|
36838
36944
|
export declare type GraphStoreUserLinkedThirdPartyUserArgs = {
|
|
36839
36945
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36840
36946
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39360,7 +39466,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
39360
39466
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
39361
39467
|
id: Scalars['ID']['output'];
|
|
39362
39468
|
};
|
|
39363
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39469
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39364
39470
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
39365
39471
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
39366
39472
|
value: Scalars['Int']['output'];
|
|
@@ -39395,7 +39501,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
39395
39501
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
39396
39502
|
id: Scalars['ID']['output'];
|
|
39397
39503
|
};
|
|
39398
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39504
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39399
39505
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
39400
39506
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
39401
39507
|
value: Scalars['String']['output'];
|
|
@@ -39405,13 +39511,13 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
39405
39511
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
39406
39512
|
id: Scalars['ID']['output'];
|
|
39407
39513
|
};
|
|
39408
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39514
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39409
39515
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
39410
39516
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
39411
39517
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
39412
39518
|
id: Scalars['ID']['output'];
|
|
39413
39519
|
};
|
|
39414
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39520
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39415
39521
|
export declare type GraphStoreCypherQueryV2BooleanObject = {
|
|
39416
39522
|
__typename?: 'GraphStoreCypherQueryV2BooleanObject';
|
|
39417
39523
|
value: Scalars['Boolean']['output'];
|
|
@@ -39456,7 +39562,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
39456
39562
|
V2 = "V2",
|
|
39457
39563
|
V3 = "V3"
|
|
39458
39564
|
}
|
|
39459
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39565
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | SpfDependency | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
39460
39566
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
39461
39567
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
39462
39568
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -50144,6 +50250,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseEdge
|
|
|
50144
50250
|
};
|
|
50145
50251
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50146
50252
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
50253
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceEmbedConnection = HasPageInfo & {
|
|
50254
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceEmbedConnection';
|
|
50255
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedEdge>>>;
|
|
50256
|
+
pageInfo: PageInfo;
|
|
50257
|
+
};
|
|
50258
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceEmbedEdge = {
|
|
50259
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceEmbedEdge';
|
|
50260
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50261
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50262
|
+
id: Scalars['ID']['output'];
|
|
50263
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50264
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedUnion>;
|
|
50265
|
+
};
|
|
50266
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseConnection = HasPageInfo & {
|
|
50267
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseConnection';
|
|
50268
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseEdge>>>;
|
|
50269
|
+
pageInfo: PageInfo;
|
|
50270
|
+
};
|
|
50271
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseEdge = {
|
|
50272
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseEdge';
|
|
50273
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50274
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50275
|
+
id: Scalars['ID']['output'];
|
|
50276
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50277
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseUnion>;
|
|
50278
|
+
};
|
|
50279
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50280
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceEmbedUnion = ConfluenceEmbed;
|
|
50147
50281
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageConnection = HasPageInfo & {
|
|
50148
50282
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageConnection';
|
|
50149
50283
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageEdge>>>;
|
|
@@ -50848,6 +50982,34 @@ export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseEdge = {
|
|
|
50848
50982
|
};
|
|
50849
50983
|
export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50850
50984
|
export declare type GraphStoreSimplifiedUserLaunchedReleaseUnion = JiraVersion;
|
|
50985
|
+
export declare type GraphStoreSimplifiedUserLikedConfluencePageConnection = HasPageInfo & {
|
|
50986
|
+
__typename?: 'GraphStoreSimplifiedUserLikedConfluencePageConnection';
|
|
50987
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLikedConfluencePageEdge>>>;
|
|
50988
|
+
pageInfo: PageInfo;
|
|
50989
|
+
};
|
|
50990
|
+
export declare type GraphStoreSimplifiedUserLikedConfluencePageEdge = {
|
|
50991
|
+
__typename?: 'GraphStoreSimplifiedUserLikedConfluencePageEdge';
|
|
50992
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50993
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50994
|
+
id: Scalars['ID']['output'];
|
|
50995
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50996
|
+
node?: Maybe<GraphStoreSimplifiedUserLikedConfluencePageUnion>;
|
|
50997
|
+
};
|
|
50998
|
+
export declare type GraphStoreSimplifiedUserLikedConfluencePageInverseConnection = HasPageInfo & {
|
|
50999
|
+
__typename?: 'GraphStoreSimplifiedUserLikedConfluencePageInverseConnection';
|
|
51000
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLikedConfluencePageInverseEdge>>>;
|
|
51001
|
+
pageInfo: PageInfo;
|
|
51002
|
+
};
|
|
51003
|
+
export declare type GraphStoreSimplifiedUserLikedConfluencePageInverseEdge = {
|
|
51004
|
+
__typename?: 'GraphStoreSimplifiedUserLikedConfluencePageInverseEdge';
|
|
51005
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51006
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51007
|
+
id: Scalars['ID']['output'];
|
|
51008
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51009
|
+
node?: Maybe<GraphStoreSimplifiedUserLikedConfluencePageInverseUnion>;
|
|
51010
|
+
};
|
|
51011
|
+
export declare type GraphStoreSimplifiedUserLikedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51012
|
+
export declare type GraphStoreSimplifiedUserLikedConfluencePageUnion = ConfluencePage;
|
|
50851
51013
|
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserConnection = HasPageInfo & HasTotal & {
|
|
50852
51014
|
__typename?: 'GraphStoreSimplifiedUserLinkedThirdPartyUserConnection';
|
|
50853
51015
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserEdge>>>;
|
|
@@ -52859,6 +53021,9 @@ export declare type GraphStoreUserCreatedConfluenceCommentSortInput = {
|
|
|
52859
53021
|
export declare type GraphStoreUserCreatedConfluenceDatabaseSortInput = {
|
|
52860
53022
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52861
53023
|
};
|
|
53024
|
+
export declare type GraphStoreUserCreatedConfluenceEmbedSortInput = {
|
|
53025
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53026
|
+
};
|
|
52862
53027
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
52863
53028
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52864
53029
|
};
|
|
@@ -52937,6 +53102,9 @@ export declare type GraphStoreUserLastUpdatedDesignSortInput = {
|
|
|
52937
53102
|
export declare type GraphStoreUserLaunchedReleaseSortInput = {
|
|
52938
53103
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52939
53104
|
};
|
|
53105
|
+
export declare type GraphStoreUserLikedConfluencePageSortInput = {
|
|
53106
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53107
|
+
};
|
|
52940
53108
|
export declare type GraphStoreUserLinkedThirdPartyUserConditionalFilterInput = {
|
|
52941
53109
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
52942
53110
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -54003,6 +54171,7 @@ export declare type HelpCenterContentGapIndicatorsWithMetaData = {
|
|
|
54003
54171
|
contentGapIndicators?: Maybe<Array<HelpCenterContentGapIndicator>>;
|
|
54004
54172
|
};
|
|
54005
54173
|
export declare type HelpCenterCreateInput = {
|
|
54174
|
+
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
54006
54175
|
name: HelpCenterNameInput;
|
|
54007
54176
|
slug: Scalars['String']['input'];
|
|
54008
54177
|
workspaceARI: Scalars['String']['input'];
|
|
@@ -54050,8 +54219,12 @@ export declare type HelpCenterHelpObject = HelpObjectStoreArticle | HelpObjectSt
|
|
|
54050
54219
|
export declare type HelpCenterHomePageLayout = {
|
|
54051
54220
|
__typename?: 'HelpCenterHomePageLayout';
|
|
54052
54221
|
data?: Maybe<HelpLayoutResult>;
|
|
54222
|
+
layoutAdf?: Maybe<HelpCenterLayoutAdf>;
|
|
54053
54223
|
layoutId: Scalars['ID']['output'];
|
|
54054
54224
|
};
|
|
54225
|
+
export declare type HelpCenterHomePageLayoutInput = {
|
|
54226
|
+
layoutAdf?: InputMaybe<Scalars['String']['input']>;
|
|
54227
|
+
};
|
|
54055
54228
|
export declare type HelpCenterHomePageTitle = {
|
|
54056
54229
|
__typename?: 'HelpCenterHomePageTitle';
|
|
54057
54230
|
default: Scalars['String']['output'];
|
|
@@ -54061,6 +54234,32 @@ export declare type HelpCenterHomePageTitleInput = {
|
|
|
54061
54234
|
default: Scalars['String']['input'];
|
|
54062
54235
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
54063
54236
|
};
|
|
54237
|
+
export declare type HelpCenterLayoutAdf = {
|
|
54238
|
+
__typename?: 'HelpCenterLayoutAdf';
|
|
54239
|
+
content?: Maybe<HelpCenterLayoutAdfContentConnection>;
|
|
54240
|
+
};
|
|
54241
|
+
export declare type HelpCenterLayoutAdfContentArgs = {
|
|
54242
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54243
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
54244
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54245
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
54246
|
+
};
|
|
54247
|
+
export declare type HelpCenterLayoutAdfContent = {
|
|
54248
|
+
__typename?: 'HelpCenterLayoutAdfContent';
|
|
54249
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
54250
|
+
};
|
|
54251
|
+
export declare type HelpCenterLayoutAdfContentConnection = {
|
|
54252
|
+
__typename?: 'HelpCenterLayoutAdfContentConnection';
|
|
54253
|
+
edges?: Maybe<Array<Maybe<HelpCenterLayoutAdfContentEdge>>>;
|
|
54254
|
+
nodes?: Maybe<Array<Maybe<HelpCenterLayoutAdfContent>>>;
|
|
54255
|
+
pageInfo: PageInfo;
|
|
54256
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
54257
|
+
};
|
|
54258
|
+
export declare type HelpCenterLayoutAdfContentEdge = {
|
|
54259
|
+
__typename?: 'HelpCenterLayoutAdfContentEdge';
|
|
54260
|
+
cursor: Scalars['String']['output'];
|
|
54261
|
+
node?: Maybe<HelpCenterLayoutAdfContent>;
|
|
54262
|
+
};
|
|
54064
54263
|
export declare type HelpCenterLogo = {
|
|
54065
54264
|
__typename?: 'HelpCenterLogo';
|
|
54066
54265
|
fileId?: Maybe<Scalars['String']['output']>;
|
|
@@ -54167,6 +54366,7 @@ export declare type HelpCenterPageCreateInput = {
|
|
|
54167
54366
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
54168
54367
|
helpCenterAri: Scalars['String']['input'];
|
|
54169
54368
|
name: Scalars['String']['input'];
|
|
54369
|
+
pageLayout?: InputMaybe<HelpCenterPageLayoutInput>;
|
|
54170
54370
|
};
|
|
54171
54371
|
export declare type HelpCenterPageCreatePayload = Payload & {
|
|
54172
54372
|
__typename?: 'HelpCenterPageCreatePayload';
|
|
@@ -54189,8 +54389,12 @@ export declare type HelpCenterPageDescription = {
|
|
|
54189
54389
|
};
|
|
54190
54390
|
export declare type HelpCenterPageLayout = {
|
|
54191
54391
|
__typename?: 'HelpCenterPageLayout';
|
|
54392
|
+
layoutAdf?: Maybe<HelpCenterLayoutAdf>;
|
|
54192
54393
|
layoutAri: Scalars['ID']['output'];
|
|
54193
54394
|
};
|
|
54395
|
+
export declare type HelpCenterPageLayoutInput = {
|
|
54396
|
+
layoutAdf?: InputMaybe<Scalars['String']['input']>;
|
|
54397
|
+
};
|
|
54194
54398
|
export declare type HelpCenterPageName = {
|
|
54195
54399
|
__typename?: 'HelpCenterPageName';
|
|
54196
54400
|
default: Scalars['String']['output'];
|
|
@@ -54214,6 +54418,7 @@ export declare type HelpCenterPageUpdateInput = {
|
|
|
54214
54418
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
54215
54419
|
helpCenterPageAri: Scalars['String']['input'];
|
|
54216
54420
|
name: Scalars['String']['input'];
|
|
54421
|
+
pageLayout?: InputMaybe<HelpCenterPageLayoutInput>;
|
|
54217
54422
|
};
|
|
54218
54423
|
export declare type HelpCenterPageUpdatePayload = Payload & {
|
|
54219
54424
|
__typename?: 'HelpCenterPageUpdatePayload';
|
|
@@ -54510,6 +54715,7 @@ export declare enum HelpCenterType {
|
|
|
54510
54715
|
export declare type HelpCenterUpdateInput = {
|
|
54511
54716
|
helpCenterAri: Scalars['String']['input'];
|
|
54512
54717
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
54718
|
+
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
54513
54719
|
name?: InputMaybe<HelpCenterNameInput>;
|
|
54514
54720
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
54515
54721
|
virtualAgentEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -59442,6 +59648,7 @@ export declare type JiraCreateCustomBackgroundPayload = Payload & {
|
|
|
59442
59648
|
export declare type JiraCreateCustomFieldInput = {
|
|
59443
59649
|
cloudId: Scalars['ID']['input'];
|
|
59444
59650
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
59651
|
+
fieldFormatConfig?: InputMaybe<JiraFieldFormatConfigInput>;
|
|
59445
59652
|
name: Scalars['String']['input'];
|
|
59446
59653
|
options?: InputMaybe<Array<JiraCustomFieldOptionInput>>;
|
|
59447
59654
|
projectId: Scalars['String']['input'];
|
|
@@ -60810,6 +61017,9 @@ export declare type JiraFieldEdge = {
|
|
|
60810
61017
|
node?: Maybe<JiraField>;
|
|
60811
61018
|
};
|
|
60812
61019
|
export declare type JiraFieldFormatConfig = JiraNumberFieldFormatConfig;
|
|
61020
|
+
export declare type JiraFieldFormatConfigInput = {
|
|
61021
|
+
jiraNumberFieldFormatConfigInput?: InputMaybe<JiraNumberFieldFormatConfigInput>;
|
|
61022
|
+
};
|
|
60813
61023
|
export declare type JiraFieldKeyValueInput = {
|
|
60814
61024
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
60815
61025
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -63308,6 +63518,7 @@ export declare type JiraIssueSearchViewConfigSettings = {
|
|
|
63308
63518
|
__typename?: 'JiraIssueSearchViewConfigSettings';
|
|
63309
63519
|
canEnableGrouping?: Maybe<Scalars['Boolean']['output']>;
|
|
63310
63520
|
canEnableHierarchy?: Maybe<Scalars['Boolean']['output']>;
|
|
63521
|
+
canEnableReranking?: Maybe<Scalars['Boolean']['output']>;
|
|
63311
63522
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
63312
63523
|
groupByConfig?: Maybe<JiraSpreadsheetGroupByConfig>;
|
|
63313
63524
|
hideDone?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -66128,6 +66339,11 @@ export declare type JiraNumberFieldFormatConfig = {
|
|
|
66128
66339
|
formatStyle?: Maybe<JiraNumberFieldFormatStyle>;
|
|
66129
66340
|
formatUnit?: Maybe<Scalars['String']['output']>;
|
|
66130
66341
|
};
|
|
66342
|
+
export declare type JiraNumberFieldFormatConfigInput = {
|
|
66343
|
+
formatDecimals?: InputMaybe<Scalars['Int']['input']>;
|
|
66344
|
+
formatStyle: JiraNumberFieldFormatStyle;
|
|
66345
|
+
formatUnit?: InputMaybe<Scalars['String']['input']>;
|
|
66346
|
+
};
|
|
66131
66347
|
export declare enum JiraNumberFieldFormatStyle {
|
|
66132
66348
|
Currency = "CURRENCY",
|
|
66133
66349
|
Decimal = "DECIMAL",
|
|
@@ -68149,6 +68365,7 @@ export declare type JiraQuery = {
|
|
|
68149
68365
|
recentQueues?: Maybe<JiraSearchableEntityConnection>;
|
|
68150
68366
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
68151
68367
|
reportsPage?: Maybe<JiraReportsPage>;
|
|
68368
|
+
requestTypeField?: Maybe<JiraJqlField>;
|
|
68152
68369
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
68153
68370
|
requestTypeTemplateDefaultConfigurationDependencies?: Maybe<JiraServiceManagementRequestTypeTemplateDefaultConfigurationDependencies>;
|
|
68154
68371
|
requestTypeTemplates?: Maybe<Array<JiraServiceManagementRequestTypeTemplate>>;
|
|
@@ -68996,6 +69213,9 @@ export declare type JiraQueryReportsPageArgs = {
|
|
|
68996
69213
|
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
68997
69214
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
68998
69215
|
};
|
|
69216
|
+
export declare type JiraQueryRequestTypeFieldArgs = {
|
|
69217
|
+
cloudId: Scalars['ID']['input'];
|
|
69218
|
+
};
|
|
68999
69219
|
export declare type JiraQueryRequestTypeTemplateByIdArgs = {
|
|
69000
69220
|
cloudId: Scalars['ID']['input'];
|
|
69001
69221
|
templateId: Scalars['ID']['input'];
|
|
@@ -70221,6 +70441,7 @@ export declare type JiraServer = {
|
|
|
70221
70441
|
id: Scalars['ID']['output'];
|
|
70222
70442
|
isCurrentUserAuthenticated: Scalars['Boolean']['output'];
|
|
70223
70443
|
name: Scalars['String']['output'];
|
|
70444
|
+
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
70224
70445
|
url: Scalars['String']['output'];
|
|
70225
70446
|
};
|
|
70226
70447
|
export declare type JiraServerError = {
|
|
@@ -75785,6 +76006,7 @@ export declare type KnowledgeDiscoveryBookmarkProperties = {
|
|
|
75785
76006
|
keyPhrase: Scalars['String']['output'];
|
|
75786
76007
|
lastModifiedTimestamp: Scalars['String']['output'];
|
|
75787
76008
|
lastModifierAccountId: Scalars['String']['output'];
|
|
76009
|
+
parentAdminhubBookmarkId?: Maybe<Scalars['ID']['output']>;
|
|
75788
76010
|
title: Scalars['String']['output'];
|
|
75789
76011
|
url: Scalars['String']['output'];
|
|
75790
76012
|
};
|
|
@@ -76169,7 +76391,8 @@ export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
|
76169
76391
|
Navigational = "NAVIGATIONAL",
|
|
76170
76392
|
None = "NONE",
|
|
76171
76393
|
Person = "PERSON",
|
|
76172
|
-
Team = "TEAM"
|
|
76394
|
+
Team = "TEAM",
|
|
76395
|
+
Topic = "TOPIC"
|
|
76173
76396
|
}
|
|
76174
76397
|
export declare enum KnowledgeDiscoverySearchQueryClassificationSubtype {
|
|
76175
76398
|
Command = "COMMAND",
|
|
@@ -79239,9 +79462,11 @@ export declare type MarketplaceStoreQueryApiCollectionArgs = {
|
|
|
79239
79462
|
slug: Scalars['String']['input'];
|
|
79240
79463
|
};
|
|
79241
79464
|
export declare type MarketplaceStoreQueryApiEditionsArgs = {
|
|
79465
|
+
countryCode?: InputMaybe<Scalars['String']['input']>;
|
|
79242
79466
|
product: MarketplaceStoreEditionsInput;
|
|
79243
79467
|
};
|
|
79244
79468
|
export declare type MarketplaceStoreQueryApiEditionsByAppKeyArgs = {
|
|
79469
|
+
countryCode?: InputMaybe<Scalars['String']['input']>;
|
|
79245
79470
|
product: MarketplaceStoreEditionsByAppKeyInput;
|
|
79246
79471
|
};
|
|
79247
79472
|
export declare type MarketplaceStoreQueryApiEligibleOfferingsForAppArgs = {
|
|
@@ -79554,6 +79779,7 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
79554
79779
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
79555
79780
|
statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
|
|
79556
79781
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
79782
|
+
updatedDate: Scalars['String']['output'];
|
|
79557
79783
|
};
|
|
79558
79784
|
export declare type MercuryChangeProposalCommentsArgs = {
|
|
79559
79785
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -81174,6 +81400,22 @@ export declare type MercuryRequestPositionsChangeInput = {
|
|
|
81174
81400
|
positionsAmount: Scalars['Int']['input'];
|
|
81175
81401
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
81176
81402
|
};
|
|
81403
|
+
export declare type MercuryRestrictedChangeProposal = {
|
|
81404
|
+
__typename?: 'MercuryRestrictedChangeProposal';
|
|
81405
|
+
id: Scalars['ID']['output'];
|
|
81406
|
+
name: Scalars['String']['output'];
|
|
81407
|
+
};
|
|
81408
|
+
export declare type MercuryRestrictedChangeProposalConnection = {
|
|
81409
|
+
__typename?: 'MercuryRestrictedChangeProposalConnection';
|
|
81410
|
+
edges?: Maybe<Array<Maybe<MercuryRestrictedChangeProposalEdge>>>;
|
|
81411
|
+
pageInfo: PageInfo;
|
|
81412
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
81413
|
+
};
|
|
81414
|
+
export declare type MercuryRestrictedChangeProposalEdge = {
|
|
81415
|
+
__typename?: 'MercuryRestrictedChangeProposalEdge';
|
|
81416
|
+
cursor: Scalars['String']['output'];
|
|
81417
|
+
node?: Maybe<MercuryRestrictedChangeProposal>;
|
|
81418
|
+
};
|
|
81177
81419
|
export declare type MercurySetPreferenceInput = {
|
|
81178
81420
|
cloudId: Scalars['ID']['input'];
|
|
81179
81421
|
key: Scalars['String']['input'];
|
|
@@ -81403,6 +81645,7 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
81403
81645
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
81404
81646
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
81405
81647
|
changesSearch?: Maybe<MercuryChangeConnection>;
|
|
81648
|
+
restrictedChangeProposalsSearch?: Maybe<MercuryRestrictedChangeProposalConnection>;
|
|
81406
81649
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
81407
81650
|
strategicEventStatuses: Array<MercuryStrategicEventStatus>;
|
|
81408
81651
|
strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
|
|
@@ -81453,6 +81696,13 @@ export declare type MercuryStrategicEventsQueryApiChangesSearchArgs = {
|
|
|
81453
81696
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
81454
81697
|
sort?: InputMaybe<Array<InputMaybe<MercuryChangeSort>>>;
|
|
81455
81698
|
};
|
|
81699
|
+
export declare type MercuryStrategicEventsQueryApiRestrictedChangeProposalsSearchArgs = {
|
|
81700
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
81701
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
81702
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
81703
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
81704
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalSort>>>;
|
|
81705
|
+
};
|
|
81456
81706
|
export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
|
|
81457
81707
|
id: Scalars['ID']['input'];
|
|
81458
81708
|
};
|
|
@@ -82210,6 +82460,7 @@ export declare type Mutation = {
|
|
|
82210
82460
|
confluenceLegacy_watchBlogs?: Maybe<ConfluenceLegacyWatchSpacePayload>;
|
|
82211
82461
|
confluenceLegacy_watchContent?: Maybe<ConfluenceLegacyWatchContentPayload>;
|
|
82212
82462
|
confluenceLegacy_watchSpace?: Maybe<ConfluenceLegacyWatchSpacePayload>;
|
|
82463
|
+
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
82213
82464
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
82214
82465
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
82215
82466
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
@@ -82542,9 +82793,9 @@ export declare type Mutation = {
|
|
|
82542
82793
|
spf_updateDependencyOwner?: Maybe<SpfUpdateDependencyPayload>;
|
|
82543
82794
|
spf_updateDependencyPriority?: Maybe<SpfUpdateDependencyPayload>;
|
|
82544
82795
|
spf_updateDependencyReceivingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
82545
|
-
spf_updateDependencyRequester?: Maybe<SpfUpdateDependencyPayload>;
|
|
82546
|
-
spf_updateDependencyRequestingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
82547
82796
|
spf_updateDependencyStatus?: Maybe<SpfUpdateDependencyPayload>;
|
|
82797
|
+
spf_updateDependencySubmitter?: Maybe<SpfUpdateDependencyPayload>;
|
|
82798
|
+
spf_updateDependencySubmittingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
82548
82799
|
spf_updateDependencyTargetDate?: Maybe<SpfUpdateDependencyPayload>;
|
|
82549
82800
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
82550
82801
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -83265,6 +83516,10 @@ export declare type MutationConfluenceLegacy_WatchContentArgs = {
|
|
|
83265
83516
|
export declare type MutationConfluenceLegacy_WatchSpaceArgs = {
|
|
83266
83517
|
watchSpaceInput: ConfluenceLegacyWatchSpaceInput;
|
|
83267
83518
|
};
|
|
83519
|
+
export declare type MutationConfluence_AddReactionArgs = {
|
|
83520
|
+
cloudId: Scalars['ID']['input'];
|
|
83521
|
+
input: ConfluenceReactionInput;
|
|
83522
|
+
};
|
|
83268
83523
|
export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
83269
83524
|
cloudId: Scalars['ID']['input'];
|
|
83270
83525
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
@@ -84316,15 +84571,15 @@ export declare type MutationSpf_UpdateDependencyPriorityArgs = {
|
|
|
84316
84571
|
export declare type MutationSpf_UpdateDependencyReceivingTeamArgs = {
|
|
84317
84572
|
input: SpfUpdateDependencyReceivingTeamInput;
|
|
84318
84573
|
};
|
|
84319
|
-
export declare type MutationSpf_UpdateDependencyRequesterArgs = {
|
|
84320
|
-
input: SpfUpdateDependencyRequesterInput;
|
|
84321
|
-
};
|
|
84322
|
-
export declare type MutationSpf_UpdateDependencyRequestingTeamArgs = {
|
|
84323
|
-
input: SpfUpdateDependencyRequestingTeamInput;
|
|
84324
|
-
};
|
|
84325
84574
|
export declare type MutationSpf_UpdateDependencyStatusArgs = {
|
|
84326
84575
|
input: SpfUpdateDependencyStatusInput;
|
|
84327
84576
|
};
|
|
84577
|
+
export declare type MutationSpf_UpdateDependencySubmitterArgs = {
|
|
84578
|
+
input: SpfUpdateDependencySubmitterInput;
|
|
84579
|
+
};
|
|
84580
|
+
export declare type MutationSpf_UpdateDependencySubmittingTeamArgs = {
|
|
84581
|
+
input: SpfUpdateDependencySubmittingTeamInput;
|
|
84582
|
+
};
|
|
84328
84583
|
export declare type MutationSpf_UpdateDependencyTargetDateArgs = {
|
|
84329
84584
|
input: SpfUpdateDependencyTargetDateInput;
|
|
84330
84585
|
};
|
|
@@ -87649,6 +87904,7 @@ export declare type Query = {
|
|
|
87649
87904
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
87650
87905
|
confluence_template?: Maybe<ContentTemplate>;
|
|
87651
87906
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
87907
|
+
confluence_userClasses?: Maybe<ConfluenceUserClassConnection>;
|
|
87652
87908
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
87653
87909
|
confluence_usersHavePermission?: Maybe<ConfluenceUsersHavePermissionList>;
|
|
87654
87910
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
@@ -89386,6 +89642,11 @@ export declare type QueryConfluence_TemplateArgs = {
|
|
|
89386
89642
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
89387
89643
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89388
89644
|
};
|
|
89645
|
+
export declare type QueryConfluence_UserClassesArgs = {
|
|
89646
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89647
|
+
cloudId: Scalars['ID']['input'];
|
|
89648
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89649
|
+
};
|
|
89389
89650
|
export declare type QueryConfluence_UserContentAccessArgs = {
|
|
89390
89651
|
accessType: ResourceAccessType;
|
|
89391
89652
|
accountIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
@@ -91654,6 +91915,7 @@ export declare type ReattachInlineCommentInput = {
|
|
|
91654
91915
|
};
|
|
91655
91916
|
export declare enum RecentFilter {
|
|
91656
91917
|
All = "ALL",
|
|
91918
|
+
CollaboratedOn = "COLLABORATED_ON",
|
|
91657
91919
|
Created = "CREATED",
|
|
91658
91920
|
WorkedOn = "WORKED_ON"
|
|
91659
91921
|
}
|
|
@@ -96309,6 +96571,7 @@ export declare type Space = {
|
|
|
96309
96571
|
admins: Array<Maybe<Person>>;
|
|
96310
96572
|
alias?: Maybe<Scalars['String']['output']>;
|
|
96311
96573
|
archivedContentRoots: PaginatedContentList;
|
|
96574
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
96312
96575
|
containsExternalCollaborators: Scalars['Boolean']['output'];
|
|
96313
96576
|
contentRoots: PaginatedContentList;
|
|
96314
96577
|
creatorAccountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -96505,6 +96768,7 @@ export declare type SpaceManagerRecord = {
|
|
|
96505
96768
|
__typename?: 'SpaceManagerRecord';
|
|
96506
96769
|
alias?: Maybe<Scalars['String']['output']>;
|
|
96507
96770
|
canManage?: Maybe<Scalars['Boolean']['output']>;
|
|
96771
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
96508
96772
|
canView?: Maybe<Scalars['Boolean']['output']>;
|
|
96509
96773
|
createdBy?: Maybe<GraphQlUserInfo>;
|
|
96510
96774
|
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
@@ -96912,15 +97176,15 @@ export declare type SpfCreateCommentPayload = Payload & {
|
|
|
96912
97176
|
export declare type SpfCreateDependencyInput = {
|
|
96913
97177
|
cloudId: Scalars['ID']['input'];
|
|
96914
97178
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
96915
|
-
impactedWorkId
|
|
97179
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
96916
97180
|
justification?: InputMaybe<Scalars['String']['input']>;
|
|
96917
97181
|
name: Scalars['String']['input'];
|
|
96918
97182
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
96919
97183
|
priority: SpfPriority;
|
|
96920
97184
|
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
96921
|
-
requesterId: Scalars['String']['input'];
|
|
96922
|
-
requestingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
96923
97185
|
status: SpfDependencyStatus;
|
|
97186
|
+
submitterId: Scalars['String']['input'];
|
|
97187
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
96924
97188
|
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
96925
97189
|
};
|
|
96926
97190
|
export declare type SpfCreateDependencyPayload = Payload & {
|
|
@@ -96946,7 +97210,7 @@ export declare type SpfDependency = Node & {
|
|
|
96946
97210
|
description?: Maybe<Scalars['String']['output']>;
|
|
96947
97211
|
id: Scalars['ID']['output'];
|
|
96948
97212
|
impactedWork?: Maybe<SpfImpactedWork>;
|
|
96949
|
-
impactedWorkId
|
|
97213
|
+
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
96950
97214
|
justification?: Maybe<Scalars['String']['output']>;
|
|
96951
97215
|
name: Scalars['String']['output'];
|
|
96952
97216
|
owner?: Maybe<User>;
|
|
@@ -96955,11 +97219,11 @@ export declare type SpfDependency = Node & {
|
|
|
96955
97219
|
receivingTeam?: Maybe<TeamV2>;
|
|
96956
97220
|
receivingTeamId?: Maybe<Scalars['String']['output']>;
|
|
96957
97221
|
relatedContent?: Maybe<SpfRelatedContentConnection>;
|
|
96958
|
-
requester?: Maybe<User>;
|
|
96959
|
-
requesterId: Scalars['String']['output'];
|
|
96960
|
-
requestingTeam?: Maybe<TeamV2>;
|
|
96961
|
-
requestingTeamId?: Maybe<Scalars['String']['output']>;
|
|
96962
97222
|
status: SpfDependencyStatus;
|
|
97223
|
+
submitter?: Maybe<User>;
|
|
97224
|
+
submitterId: Scalars['String']['output'];
|
|
97225
|
+
submittingTeam?: Maybe<TeamV2>;
|
|
97226
|
+
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
96963
97227
|
targetDate?: Maybe<SpfTargetDate>;
|
|
96964
97228
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
96965
97229
|
updatedBy?: Maybe<User>;
|
|
@@ -97054,7 +97318,7 @@ export declare type SpfUpdateDependencyDescriptionInput = {
|
|
|
97054
97318
|
};
|
|
97055
97319
|
export declare type SpfUpdateDependencyImpactedWorkInput = {
|
|
97056
97320
|
id: Scalars['ID']['input'];
|
|
97057
|
-
impactedWorkId
|
|
97321
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
97058
97322
|
};
|
|
97059
97323
|
export declare type SpfUpdateDependencyJustificationInput = {
|
|
97060
97324
|
id: Scalars['ID']['input'];
|
|
@@ -97082,17 +97346,17 @@ export declare type SpfUpdateDependencyReceivingTeamInput = {
|
|
|
97082
97346
|
id: Scalars['ID']['input'];
|
|
97083
97347
|
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
97084
97348
|
};
|
|
97085
|
-
export declare type
|
|
97349
|
+
export declare type SpfUpdateDependencyStatusInput = {
|
|
97086
97350
|
id: Scalars['ID']['input'];
|
|
97087
|
-
|
|
97351
|
+
status: SpfDependencyStatus;
|
|
97088
97352
|
};
|
|
97089
|
-
export declare type
|
|
97353
|
+
export declare type SpfUpdateDependencySubmitterInput = {
|
|
97090
97354
|
id: Scalars['ID']['input'];
|
|
97091
|
-
|
|
97355
|
+
submitterId: Scalars['String']['input'];
|
|
97092
97356
|
};
|
|
97093
|
-
export declare type
|
|
97357
|
+
export declare type SpfUpdateDependencySubmittingTeamInput = {
|
|
97094
97358
|
id: Scalars['ID']['input'];
|
|
97095
|
-
|
|
97359
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
97096
97360
|
};
|
|
97097
97361
|
export declare type SpfUpdateDependencyTargetDateInput = {
|
|
97098
97362
|
id: Scalars['ID']['input'];
|
|
@@ -99774,6 +100038,16 @@ export declare type TrelloActionCardEntity = {
|
|
|
99774
100038
|
start?: Maybe<Scalars['DateTime']['output']>;
|
|
99775
100039
|
type?: Maybe<Scalars['String']['output']>;
|
|
99776
100040
|
};
|
|
100041
|
+
export declare type TrelloActionCheckItemEntity = {
|
|
100042
|
+
__typename?: 'TrelloActionCheckItemEntity';
|
|
100043
|
+
id: Scalars['ID']['output'];
|
|
100044
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
100045
|
+
nameHtml?: Maybe<Scalars['String']['output']>;
|
|
100046
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
100047
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100048
|
+
textData?: Maybe<Scalars['String']['output']>;
|
|
100049
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
100050
|
+
};
|
|
99777
100051
|
export declare type TrelloActionChecklistEntity = {
|
|
99778
100052
|
__typename?: 'TrelloActionChecklistEntity';
|
|
99779
100053
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
@@ -99787,6 +100061,11 @@ export declare type TrelloActionCommentEntity = {
|
|
|
99787
100061
|
textHtml?: Maybe<Scalars['String']['output']>;
|
|
99788
100062
|
type?: Maybe<Scalars['String']['output']>;
|
|
99789
100063
|
};
|
|
100064
|
+
export declare type TrelloActionCustomFieldItemEntity = {
|
|
100065
|
+
__typename?: 'TrelloActionCustomFieldItemEntity';
|
|
100066
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100067
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
100068
|
+
};
|
|
99790
100069
|
export declare type TrelloActionDateEntity = {
|
|
99791
100070
|
__typename?: 'TrelloActionDateEntity';
|
|
99792
100071
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -100353,18 +100632,25 @@ export declare enum TrelloCardActionType {
|
|
|
100353
100632
|
AddMember = "ADD_MEMBER",
|
|
100354
100633
|
Comment = "COMMENT",
|
|
100355
100634
|
CommentFromCopiedCard = "COMMENT_FROM_COPIED_CARD",
|
|
100635
|
+
CopyCard = "COPY_CARD",
|
|
100636
|
+
CopyInboxCard = "COPY_INBOX_CARD",
|
|
100637
|
+
CreateCard = "CREATE_CARD",
|
|
100638
|
+
CreateCardFromCheckItem = "CREATE_CARD_FROM_CHECK_ITEM",
|
|
100356
100639
|
CreateCardFromEmail = "CREATE_CARD_FROM_EMAIL",
|
|
100640
|
+
CreateInboxCard = "CREATE_INBOX_CARD",
|
|
100357
100641
|
DeleteAttachment = "DELETE_ATTACHMENT",
|
|
100358
100642
|
MoveCard = "MOVE_CARD",
|
|
100359
100643
|
MoveCardToBoard = "MOVE_CARD_TO_BOARD",
|
|
100360
100644
|
MoveInboxCardToBoard = "MOVE_INBOX_CARD_TO_BOARD",
|
|
100361
100645
|
RemoveChecklist = "REMOVE_CHECKLIST",
|
|
100362
100646
|
RemoveMember = "REMOVE_MEMBER",
|
|
100647
|
+
UpdateCardCheckItemState = "UPDATE_CARD_CHECK_ITEM_STATE",
|
|
100363
100648
|
UpdateCardClosed = "UPDATE_CARD_CLOSED",
|
|
100364
100649
|
UpdateCardComplete = "UPDATE_CARD_COMPLETE",
|
|
100365
|
-
UpdateCardDue = "UPDATE_CARD_DUE"
|
|
100650
|
+
UpdateCardDue = "UPDATE_CARD_DUE",
|
|
100651
|
+
UpdateCustomFieldItem = "UPDATE_CUSTOM_FIELD_ITEM"
|
|
100366
100652
|
}
|
|
100367
|
-
export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloCopyCommentCardAction | TrelloCreateCardFromEmailAction | TrelloDeleteAttachmentFromCardAction | TrelloMoveCardAction | TrelloMoveCardToBoardAction | TrelloMoveInboxCardToBoardAction | TrelloRemoveChecklistFromCardAction | TrelloRemoveMemberFromCardAction | TrelloUpdateCardClosedAction | TrelloUpdateCardCompleteAction | TrelloUpdateCardDueAction;
|
|
100653
|
+
export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloCopyCardAction | TrelloCopyCommentCardAction | TrelloCopyInboxCardAction | TrelloCreateCardAction | TrelloCreateCardFromCheckItemAction | TrelloCreateCardFromEmailAction | TrelloCreateInboxCardAction | TrelloDeleteAttachmentFromCardAction | TrelloMoveCardAction | TrelloMoveCardToBoardAction | TrelloMoveInboxCardToBoardAction | TrelloRemoveChecklistFromCardAction | TrelloRemoveMemberFromCardAction | TrelloUpdateCardClosedAction | TrelloUpdateCardCompleteAction | TrelloUpdateCardDueAction | TrelloUpdateCheckItemStateOnCardAction | TrelloUpdateCustomFieldItemAction;
|
|
100368
100654
|
export declare type TrelloCardAttachmentsByType = {
|
|
100369
100655
|
__typename?: 'TrelloCardAttachmentsByType';
|
|
100370
100656
|
trello?: Maybe<TrelloCardAttachmentsCount>;
|
|
@@ -100440,10 +100726,14 @@ export declare type TrelloCardClosedClause = {
|
|
|
100440
100726
|
};
|
|
100441
100727
|
export declare type TrelloCardCommand = {
|
|
100442
100728
|
close?: InputMaybe<TrelloCardCloseCommand>;
|
|
100729
|
+
complete?: InputMaybe<TrelloCardCompleteCommand>;
|
|
100443
100730
|
};
|
|
100444
100731
|
export declare type TrelloCardCompleteClause = {
|
|
100445
100732
|
completed: Scalars['Boolean']['input'];
|
|
100446
100733
|
};
|
|
100734
|
+
export declare type TrelloCardCompleteCommand = {
|
|
100735
|
+
complete: Scalars['Boolean']['input'];
|
|
100736
|
+
};
|
|
100447
100737
|
export declare type TrelloCardConnection = {
|
|
100448
100738
|
__typename?: 'TrelloCardConnection';
|
|
100449
100739
|
edges?: Maybe<Array<TrelloCardEdge>>;
|
|
@@ -100657,6 +100947,7 @@ export declare type TrelloChecklist = {
|
|
|
100657
100947
|
board?: Maybe<TrelloBoard>;
|
|
100658
100948
|
card?: Maybe<TrelloCard>;
|
|
100659
100949
|
checkItems?: Maybe<TrelloCheckItemConnection>;
|
|
100950
|
+
id: Scalars['ID']['output'];
|
|
100660
100951
|
name?: Maybe<Scalars['String']['output']>;
|
|
100661
100952
|
objectId: Scalars['ID']['output'];
|
|
100662
100953
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -100691,6 +100982,7 @@ export declare type TrelloChecklistEdgeUpdated = {
|
|
|
100691
100982
|
export declare type TrelloChecklistUpdated = {
|
|
100692
100983
|
__typename?: 'TrelloChecklistUpdated';
|
|
100693
100984
|
checkItems?: Maybe<TrelloCheckItemConnectionUpdated>;
|
|
100985
|
+
id: Scalars['ID']['output'];
|
|
100694
100986
|
name?: Maybe<Scalars['String']['output']>;
|
|
100695
100987
|
objectId: Scalars['ID']['output'];
|
|
100696
100988
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -100722,6 +101014,29 @@ export declare type TrelloCopiedCardSource = {
|
|
|
100722
101014
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100723
101015
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
100724
101016
|
};
|
|
101017
|
+
export declare type TrelloCopyCardAction = TrelloAction & TrelloCardActionData & {
|
|
101018
|
+
__typename?: 'TrelloCopyCardAction';
|
|
101019
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
101020
|
+
board?: Maybe<TrelloBoard>;
|
|
101021
|
+
card?: Maybe<TrelloCard>;
|
|
101022
|
+
cardSource?: Maybe<TrelloCard>;
|
|
101023
|
+
creator?: Maybe<TrelloMember>;
|
|
101024
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
101025
|
+
displayEntities?: Maybe<TrelloCopyCardActionDisplayEntities>;
|
|
101026
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
101027
|
+
id: Scalars['ID']['output'];
|
|
101028
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
101029
|
+
list?: Maybe<TrelloList>;
|
|
101030
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
101031
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
101032
|
+
};
|
|
101033
|
+
export declare type TrelloCopyCardActionDisplayEntities = {
|
|
101034
|
+
__typename?: 'TrelloCopyCardActionDisplayEntities';
|
|
101035
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
101036
|
+
cardSource?: Maybe<TrelloActionCardEntity>;
|
|
101037
|
+
list?: Maybe<TrelloActionListEntity>;
|
|
101038
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
101039
|
+
};
|
|
100725
101040
|
export declare type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
100726
101041
|
__typename?: 'TrelloCopyCommentCardAction';
|
|
100727
101042
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -100744,6 +101059,70 @@ export declare type TrelloCopyCommentCardActionDisplayEntities = {
|
|
|
100744
101059
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
100745
101060
|
originalCommenter?: Maybe<TrelloActionMemberEntity>;
|
|
100746
101061
|
};
|
|
101062
|
+
export declare type TrelloCopyInboxCardAction = TrelloAction & TrelloCardActionData & {
|
|
101063
|
+
__typename?: 'TrelloCopyInboxCardAction';
|
|
101064
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
101065
|
+
board?: Maybe<TrelloBoard>;
|
|
101066
|
+
card?: Maybe<TrelloCard>;
|
|
101067
|
+
cardSource?: Maybe<TrelloCard>;
|
|
101068
|
+
creator?: Maybe<TrelloMember>;
|
|
101069
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
101070
|
+
displayEntities?: Maybe<TrelloCopyInboxCardActionDisplayEntities>;
|
|
101071
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
101072
|
+
id: Scalars['ID']['output'];
|
|
101073
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
101074
|
+
list?: Maybe<TrelloList>;
|
|
101075
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
101076
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
101077
|
+
};
|
|
101078
|
+
export declare type TrelloCopyInboxCardActionDisplayEntities = {
|
|
101079
|
+
__typename?: 'TrelloCopyInboxCardActionDisplayEntities';
|
|
101080
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
101081
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
101082
|
+
};
|
|
101083
|
+
export declare type TrelloCreateCardAction = TrelloAction & TrelloCardActionData & {
|
|
101084
|
+
__typename?: 'TrelloCreateCardAction';
|
|
101085
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
101086
|
+
board?: Maybe<TrelloBoard>;
|
|
101087
|
+
card?: Maybe<TrelloCard>;
|
|
101088
|
+
creator?: Maybe<TrelloMember>;
|
|
101089
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
101090
|
+
displayEntities?: Maybe<TrelloCreateCardActionDisplayEntities>;
|
|
101091
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
101092
|
+
id: Scalars['ID']['output'];
|
|
101093
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
101094
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
101095
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
101096
|
+
};
|
|
101097
|
+
export declare type TrelloCreateCardActionDisplayEntities = {
|
|
101098
|
+
__typename?: 'TrelloCreateCardActionDisplayEntities';
|
|
101099
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
101100
|
+
list?: Maybe<TrelloActionListEntity>;
|
|
101101
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
101102
|
+
};
|
|
101103
|
+
export declare type TrelloCreateCardFromCheckItemAction = TrelloAction & TrelloCardActionData & {
|
|
101104
|
+
__typename?: 'TrelloCreateCardFromCheckItemAction';
|
|
101105
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
101106
|
+
board?: Maybe<TrelloBoard>;
|
|
101107
|
+
card?: Maybe<TrelloCard>;
|
|
101108
|
+
cardSource?: Maybe<TrelloCard>;
|
|
101109
|
+
checklist?: Maybe<TrelloChecklist>;
|
|
101110
|
+
creator?: Maybe<TrelloMember>;
|
|
101111
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
101112
|
+
displayEntities?: Maybe<TrelloCreateCardFromCheckItemActionDisplayEntities>;
|
|
101113
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
101114
|
+
id: Scalars['ID']['output'];
|
|
101115
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
101116
|
+
list?: Maybe<TrelloList>;
|
|
101117
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
101118
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
101119
|
+
};
|
|
101120
|
+
export declare type TrelloCreateCardFromCheckItemActionDisplayEntities = {
|
|
101121
|
+
__typename?: 'TrelloCreateCardFromCheckItemActionDisplayEntities';
|
|
101122
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
101123
|
+
cardSource?: Maybe<TrelloActionCardEntity>;
|
|
101124
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
101125
|
+
};
|
|
100747
101126
|
export declare type TrelloCreateCardFromEmailAction = TrelloAction & TrelloCardActionData & {
|
|
100748
101127
|
__typename?: 'TrelloCreateCardFromEmailAction';
|
|
100749
101128
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -100762,6 +101141,7 @@ export declare type TrelloCreateCardFromEmailAction = TrelloAction & TrelloCardA
|
|
|
100762
101141
|
export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
|
|
100763
101142
|
__typename?: 'TrelloCreateCardFromEmailActionDisplayEntities';
|
|
100764
101143
|
card?: Maybe<TrelloActionCardEntity>;
|
|
101144
|
+
list?: Maybe<TrelloActionListEntity>;
|
|
100765
101145
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
100766
101146
|
};
|
|
100767
101147
|
export declare type TrelloCreateCardInput = {
|
|
@@ -100774,10 +101154,30 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
100774
101154
|
errors?: Maybe<Array<MutationError>>;
|
|
100775
101155
|
success: Scalars['Boolean']['output'];
|
|
100776
101156
|
};
|
|
101157
|
+
export declare type TrelloCreateInboxCardAction = TrelloAction & TrelloCardActionData & {
|
|
101158
|
+
__typename?: 'TrelloCreateInboxCardAction';
|
|
101159
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
101160
|
+
board?: Maybe<TrelloBoard>;
|
|
101161
|
+
card?: Maybe<TrelloCard>;
|
|
101162
|
+
creator?: Maybe<TrelloMember>;
|
|
101163
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
101164
|
+
displayEntities?: Maybe<TrelloCreateInboxCardActionDisplayEntities>;
|
|
101165
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
101166
|
+
id: Scalars['ID']['output'];
|
|
101167
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
101168
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
101169
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
101170
|
+
};
|
|
101171
|
+
export declare type TrelloCreateInboxCardActionDisplayEntities = {
|
|
101172
|
+
__typename?: 'TrelloCreateInboxCardActionDisplayEntities';
|
|
101173
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
101174
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
101175
|
+
};
|
|
100777
101176
|
export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
100778
101177
|
enabled: Scalars['Boolean']['input'];
|
|
101178
|
+
primaryCalendar?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100779
101179
|
providerAccountId: Scalars['ID']['input'];
|
|
100780
|
-
providerCalendarId
|
|
101180
|
+
providerCalendarId?: InputMaybe<Scalars['ID']['input']>;
|
|
100781
101181
|
type: TrelloSupportedPlannerProviders;
|
|
100782
101182
|
workspaceId: Scalars['ID']['input'];
|
|
100783
101183
|
};
|
|
@@ -101423,6 +101823,7 @@ export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterfa
|
|
|
101423
101823
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
101424
101824
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
101425
101825
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
101826
|
+
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
101426
101827
|
id: Scalars['ID']['output'];
|
|
101427
101828
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
101428
101829
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -101490,6 +101891,7 @@ export declare enum TrelloPlannerCalendarColor {
|
|
|
101490
101891
|
BlueSubtler = "BLUE_SUBTLER",
|
|
101491
101892
|
BlueSubtlest = "BLUE_SUBTLEST",
|
|
101492
101893
|
GraySubtler = "GRAY_SUBTLER",
|
|
101894
|
+
GraySubtlest = "GRAY_SUBTLEST",
|
|
101493
101895
|
GreenSubtler = "GREEN_SUBTLER",
|
|
101494
101896
|
GreenSubtlest = "GREEN_SUBTLEST",
|
|
101495
101897
|
LimeSubtler = "LIME_SUBTLER",
|
|
@@ -102296,6 +102698,50 @@ export declare type TrelloUpdateCardNamePayload = Payload & {
|
|
|
102296
102698
|
errors?: Maybe<Array<MutationError>>;
|
|
102297
102699
|
success: Scalars['Boolean']['output'];
|
|
102298
102700
|
};
|
|
102701
|
+
export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
|
|
102702
|
+
__typename?: 'TrelloUpdateCheckItemStateOnCardAction';
|
|
102703
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
102704
|
+
board?: Maybe<TrelloBoard>;
|
|
102705
|
+
card?: Maybe<TrelloCard>;
|
|
102706
|
+
checkItem?: Maybe<TrelloCheckItem>;
|
|
102707
|
+
checklist?: Maybe<TrelloChecklist>;
|
|
102708
|
+
creator?: Maybe<TrelloMember>;
|
|
102709
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
102710
|
+
displayEntities?: Maybe<TrelloUpdateCheckItemStateOnCardActionDisplayEntities>;
|
|
102711
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
102712
|
+
id: Scalars['ID']['output'];
|
|
102713
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
102714
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
102715
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
102716
|
+
};
|
|
102717
|
+
export declare type TrelloUpdateCheckItemStateOnCardActionDisplayEntities = {
|
|
102718
|
+
__typename?: 'TrelloUpdateCheckItemStateOnCardActionDisplayEntities';
|
|
102719
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
102720
|
+
checkItem?: Maybe<TrelloActionCheckItemEntity>;
|
|
102721
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
102722
|
+
};
|
|
102723
|
+
export declare type TrelloUpdateCustomFieldItemAction = TrelloAction & TrelloCardActionData & {
|
|
102724
|
+
__typename?: 'TrelloUpdateCustomFieldItemAction';
|
|
102725
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
102726
|
+
board?: Maybe<TrelloBoard>;
|
|
102727
|
+
card?: Maybe<TrelloCard>;
|
|
102728
|
+
creator?: Maybe<TrelloMember>;
|
|
102729
|
+
customField?: Maybe<TrelloCustomField>;
|
|
102730
|
+
customFieldItem?: Maybe<TrelloCustomFieldItem>;
|
|
102731
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
102732
|
+
displayEntities?: Maybe<TrelloUpdateCustomFieldItemActionDisplayEntities>;
|
|
102733
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
102734
|
+
id: Scalars['ID']['output'];
|
|
102735
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
102736
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
102737
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
102738
|
+
};
|
|
102739
|
+
export declare type TrelloUpdateCustomFieldItemActionDisplayEntities = {
|
|
102740
|
+
__typename?: 'TrelloUpdateCustomFieldItemActionDisplayEntities';
|
|
102741
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
102742
|
+
customFieldItem?: Maybe<TrelloActionCustomFieldItemEntity>;
|
|
102743
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
102744
|
+
};
|
|
102299
102745
|
export declare type TrelloUpdateKeyboardShortcutsPrefInput = {
|
|
102300
102746
|
userId: Scalars['ID']['input'];
|
|
102301
102747
|
value: Scalars['Boolean']['input'];
|