@forge/cli-shared 7.0.0 → 7.1.0-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 +13 -0
- package/out/graphql/graphql-types.d.ts +351 -23
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +41 -20
- package/out/ui/text.d.ts +2 -3
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +5 -6
- package/package.json +2 -2
|
@@ -8939,6 +8939,7 @@ export declare type CompassScorecard = Node & {
|
|
|
8939
8939
|
libraryScorecardId?: Maybe<Scalars['ID']['output']>;
|
|
8940
8940
|
name: Scalars['String']['output'];
|
|
8941
8941
|
owner?: Maybe<User>;
|
|
8942
|
+
scoreSystem?: Maybe<CompassScorecardScoreSystem>;
|
|
8942
8943
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
8943
8944
|
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
8944
8945
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
@@ -9433,6 +9434,10 @@ export declare type CompassScorecardMaturityLevelDuration = {
|
|
|
9433
9434
|
__typename?: 'CompassScorecardMaturityLevelDuration';
|
|
9434
9435
|
since?: Maybe<Scalars['DateTime']['output']>;
|
|
9435
9436
|
};
|
|
9437
|
+
export declare type CompassScorecardMaturityLevelScoreSystem = {
|
|
9438
|
+
__typename?: 'CompassScorecardMaturityLevelScoreSystem';
|
|
9439
|
+
maturityLevelConfig?: Maybe<Array<CompassScorecardMaturityLevel>>;
|
|
9440
|
+
};
|
|
9436
9441
|
export declare type CompassScorecardMetricCriterionScore = CompassScorecardCriterionScore & {
|
|
9437
9442
|
__typename?: 'CompassScorecardMetricCriterionScore';
|
|
9438
9443
|
criterionId: Scalars['ID']['output'];
|
|
@@ -9573,6 +9578,7 @@ export declare type CompassScorecardScoreStatusDuration = {
|
|
|
9573
9578
|
__typename?: 'CompassScorecardScoreStatusDuration';
|
|
9574
9579
|
since: Scalars['DateTime']['output'];
|
|
9575
9580
|
};
|
|
9581
|
+
export declare type CompassScorecardScoreSystem = CompassScorecardMaturityLevelScoreSystem | CompassScorecardThresholdStatusScoreSystem;
|
|
9576
9582
|
export declare enum CompassScorecardScoringStrategyType {
|
|
9577
9583
|
PercentageBased = "PERCENTAGE_BASED",
|
|
9578
9584
|
PointBased = "POINT_BASED",
|
|
@@ -9598,6 +9604,11 @@ export declare type CompassScorecardStatusThresholdInput = {
|
|
|
9598
9604
|
lowerBound: Scalars['Int']['input'];
|
|
9599
9605
|
upperBound: Scalars['Int']['input'];
|
|
9600
9606
|
};
|
|
9607
|
+
export declare type CompassScorecardThresholdStatusScoreSystem = {
|
|
9608
|
+
__typename?: 'CompassScorecardThresholdStatusScoreSystem';
|
|
9609
|
+
scoringStrategyType?: Maybe<Scalars['String']['output']>;
|
|
9610
|
+
statusConfig?: Maybe<CompassScorecardStatusConfig>;
|
|
9611
|
+
};
|
|
9601
9612
|
export declare type CompassScorecardTypesFilter = {
|
|
9602
9613
|
in: Array<Scalars['String']['input']>;
|
|
9603
9614
|
};
|
|
@@ -10440,6 +10451,7 @@ export declare type ConfluenceBlogPost = Node & {
|
|
|
10440
10451
|
id: Scalars['ID']['output'];
|
|
10441
10452
|
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
10442
10453
|
latestVersion?: Maybe<ConfluenceBlogPostVersion>;
|
|
10454
|
+
likesSummary?: Maybe<ConfluenceLikesSummary>;
|
|
10443
10455
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
10444
10456
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
10445
10457
|
nativeProperties?: Maybe<ConfluenceContentNativeProperties>;
|
|
@@ -10950,8 +10962,13 @@ export declare type ConfluenceCurrentContentNativeProperties = {
|
|
|
10950
10962
|
};
|
|
10951
10963
|
export declare type ConfluenceDataLifecycleManagementPolicy = {
|
|
10952
10964
|
__typename?: 'ConfluenceDataLifecycleManagementPolicy';
|
|
10965
|
+
dataRetentionPolicyDetailsForWorkspace: ConfluenceDataRetentionPolicyStatus;
|
|
10953
10966
|
isDataRetentionPolicyEnabled: ConfluencePolicyEnabledStatus;
|
|
10954
10967
|
};
|
|
10968
|
+
export declare type ConfluenceDataRetentionPolicyStatus = {
|
|
10969
|
+
__typename?: 'ConfluenceDataRetentionPolicyStatus';
|
|
10970
|
+
policyEnabledStatus: ConfluencePolicyEnabledStatus;
|
|
10971
|
+
};
|
|
10955
10972
|
export declare type ConfluenceDatabase = Node & {
|
|
10956
10973
|
__typename?: 'ConfluenceDatabase';
|
|
10957
10974
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -17454,6 +17471,31 @@ export declare type ConfluenceQueryApiWhiteboardArgs = {
|
|
|
17454
17471
|
export declare type ConfluenceQueryApiWhiteboardsArgs = {
|
|
17455
17472
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
17456
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
|
+
}
|
|
17457
17499
|
export declare type ConfluenceRedactionMetadata = {
|
|
17458
17500
|
__typename?: 'ConfluenceRedactionMetadata';
|
|
17459
17501
|
creationDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -17973,6 +18015,22 @@ export declare type ConfluenceUser = {
|
|
|
17973
18015
|
space?: Maybe<Space>;
|
|
17974
18016
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
17975
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
|
+
};
|
|
17976
18034
|
export declare type ConfluenceUserContentAccessResult = {
|
|
17977
18035
|
__typename?: 'ConfluenceUserContentAccessResult';
|
|
17978
18036
|
canAccessList: Array<Maybe<Scalars['String']['output']>>;
|
|
@@ -32664,6 +32722,8 @@ export declare type GraphStore = {
|
|
|
32664
32722
|
userLastUpdatedDesignInverse?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignInverseConnection>;
|
|
32665
32723
|
userLaunchedRelease?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseConnection>;
|
|
32666
32724
|
userLaunchedReleaseInverse?: Maybe<GraphStoreSimplifiedUserLaunchedReleaseInverseConnection>;
|
|
32725
|
+
userLikedConfluencePage?: Maybe<GraphStoreSimplifiedUserLikedConfluencePageConnection>;
|
|
32726
|
+
userLikedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserLikedConfluencePageInverseConnection>;
|
|
32667
32727
|
userLinkedThirdPartyUser?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserConnection>;
|
|
32668
32728
|
userLinkedThirdPartyUserInverse?: Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserInverseConnection>;
|
|
32669
32729
|
userMemberOfConversation?: Maybe<GraphStoreSimplifiedUserMemberOfConversationConnection>;
|
|
@@ -36867,6 +36927,20 @@ export declare type GraphStoreUserLaunchedReleaseInverseArgs = {
|
|
|
36867
36927
|
id: Scalars['ID']['input'];
|
|
36868
36928
|
sort?: InputMaybe<GraphStoreUserLaunchedReleaseSortInput>;
|
|
36869
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
|
+
};
|
|
36870
36944
|
export declare type GraphStoreUserLinkedThirdPartyUserArgs = {
|
|
36871
36945
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36872
36946
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -50908,6 +50982,34 @@ export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseEdge = {
|
|
|
50908
50982
|
};
|
|
50909
50983
|
export declare type GraphStoreSimplifiedUserLaunchedReleaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50910
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;
|
|
50911
51013
|
export declare type GraphStoreSimplifiedUserLinkedThirdPartyUserConnection = HasPageInfo & HasTotal & {
|
|
50912
51014
|
__typename?: 'GraphStoreSimplifiedUserLinkedThirdPartyUserConnection';
|
|
50913
51015
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserLinkedThirdPartyUserEdge>>>;
|
|
@@ -53000,6 +53102,9 @@ export declare type GraphStoreUserLastUpdatedDesignSortInput = {
|
|
|
53000
53102
|
export declare type GraphStoreUserLaunchedReleaseSortInput = {
|
|
53001
53103
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53002
53104
|
};
|
|
53105
|
+
export declare type GraphStoreUserLikedConfluencePageSortInput = {
|
|
53106
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
53107
|
+
};
|
|
53003
53108
|
export declare type GraphStoreUserLinkedThirdPartyUserConditionalFilterInput = {
|
|
53004
53109
|
createdAt?: InputMaybe<GraphStoreDateFilterInput>;
|
|
53005
53110
|
fromAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
@@ -70336,6 +70441,7 @@ export declare type JiraServer = {
|
|
|
70336
70441
|
id: Scalars['ID']['output'];
|
|
70337
70442
|
isCurrentUserAuthenticated: Scalars['Boolean']['output'];
|
|
70338
70443
|
name: Scalars['String']['output'];
|
|
70444
|
+
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
70339
70445
|
url: Scalars['String']['output'];
|
|
70340
70446
|
};
|
|
70341
70447
|
export declare type JiraServerError = {
|
|
@@ -79356,9 +79462,11 @@ export declare type MarketplaceStoreQueryApiCollectionArgs = {
|
|
|
79356
79462
|
slug: Scalars['String']['input'];
|
|
79357
79463
|
};
|
|
79358
79464
|
export declare type MarketplaceStoreQueryApiEditionsArgs = {
|
|
79465
|
+
countryCode?: InputMaybe<Scalars['String']['input']>;
|
|
79359
79466
|
product: MarketplaceStoreEditionsInput;
|
|
79360
79467
|
};
|
|
79361
79468
|
export declare type MarketplaceStoreQueryApiEditionsByAppKeyArgs = {
|
|
79469
|
+
countryCode?: InputMaybe<Scalars['String']['input']>;
|
|
79362
79470
|
product: MarketplaceStoreEditionsByAppKeyInput;
|
|
79363
79471
|
};
|
|
79364
79472
|
export declare type MarketplaceStoreQueryApiEligibleOfferingsForAppArgs = {
|
|
@@ -81292,6 +81400,22 @@ export declare type MercuryRequestPositionsChangeInput = {
|
|
|
81292
81400
|
positionsAmount: Scalars['Int']['input'];
|
|
81293
81401
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
81294
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
|
+
};
|
|
81295
81419
|
export declare type MercurySetPreferenceInput = {
|
|
81296
81420
|
cloudId: Scalars['ID']['input'];
|
|
81297
81421
|
key: Scalars['String']['input'];
|
|
@@ -81521,6 +81645,7 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
81521
81645
|
changes?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
81522
81646
|
changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
|
|
81523
81647
|
changesSearch?: Maybe<MercuryChangeConnection>;
|
|
81648
|
+
restrictedChangeProposalsSearch?: Maybe<MercuryRestrictedChangeProposalConnection>;
|
|
81524
81649
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
81525
81650
|
strategicEventStatuses: Array<MercuryStrategicEventStatus>;
|
|
81526
81651
|
strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
|
|
@@ -81571,6 +81696,13 @@ export declare type MercuryStrategicEventsQueryApiChangesSearchArgs = {
|
|
|
81571
81696
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
81572
81697
|
sort?: InputMaybe<Array<InputMaybe<MercuryChangeSort>>>;
|
|
81573
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
|
+
};
|
|
81574
81706
|
export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
|
|
81575
81707
|
id: Scalars['ID']['input'];
|
|
81576
81708
|
};
|
|
@@ -82328,6 +82460,7 @@ export declare type Mutation = {
|
|
|
82328
82460
|
confluenceLegacy_watchBlogs?: Maybe<ConfluenceLegacyWatchSpacePayload>;
|
|
82329
82461
|
confluenceLegacy_watchContent?: Maybe<ConfluenceLegacyWatchContentPayload>;
|
|
82330
82462
|
confluenceLegacy_watchSpace?: Maybe<ConfluenceLegacyWatchSpacePayload>;
|
|
82463
|
+
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
82331
82464
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
82332
82465
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
82333
82466
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
@@ -82660,9 +82793,9 @@ export declare type Mutation = {
|
|
|
82660
82793
|
spf_updateDependencyOwner?: Maybe<SpfUpdateDependencyPayload>;
|
|
82661
82794
|
spf_updateDependencyPriority?: Maybe<SpfUpdateDependencyPayload>;
|
|
82662
82795
|
spf_updateDependencyReceivingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
82663
|
-
spf_updateDependencyRequester?: Maybe<SpfUpdateDependencyPayload>;
|
|
82664
|
-
spf_updateDependencyRequestingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
82665
82796
|
spf_updateDependencyStatus?: Maybe<SpfUpdateDependencyPayload>;
|
|
82797
|
+
spf_updateDependencySubmitter?: Maybe<SpfUpdateDependencyPayload>;
|
|
82798
|
+
spf_updateDependencySubmittingTeam?: Maybe<SpfUpdateDependencyPayload>;
|
|
82666
82799
|
spf_updateDependencyTargetDate?: Maybe<SpfUpdateDependencyPayload>;
|
|
82667
82800
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
82668
82801
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -83383,6 +83516,10 @@ export declare type MutationConfluenceLegacy_WatchContentArgs = {
|
|
|
83383
83516
|
export declare type MutationConfluenceLegacy_WatchSpaceArgs = {
|
|
83384
83517
|
watchSpaceInput: ConfluenceLegacyWatchSpaceInput;
|
|
83385
83518
|
};
|
|
83519
|
+
export declare type MutationConfluence_AddReactionArgs = {
|
|
83520
|
+
cloudId: Scalars['ID']['input'];
|
|
83521
|
+
input: ConfluenceReactionInput;
|
|
83522
|
+
};
|
|
83386
83523
|
export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
83387
83524
|
cloudId: Scalars['ID']['input'];
|
|
83388
83525
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
@@ -84434,15 +84571,15 @@ export declare type MutationSpf_UpdateDependencyPriorityArgs = {
|
|
|
84434
84571
|
export declare type MutationSpf_UpdateDependencyReceivingTeamArgs = {
|
|
84435
84572
|
input: SpfUpdateDependencyReceivingTeamInput;
|
|
84436
84573
|
};
|
|
84437
|
-
export declare type MutationSpf_UpdateDependencyRequesterArgs = {
|
|
84438
|
-
input: SpfUpdateDependencyRequesterInput;
|
|
84439
|
-
};
|
|
84440
|
-
export declare type MutationSpf_UpdateDependencyRequestingTeamArgs = {
|
|
84441
|
-
input: SpfUpdateDependencyRequestingTeamInput;
|
|
84442
|
-
};
|
|
84443
84574
|
export declare type MutationSpf_UpdateDependencyStatusArgs = {
|
|
84444
84575
|
input: SpfUpdateDependencyStatusInput;
|
|
84445
84576
|
};
|
|
84577
|
+
export declare type MutationSpf_UpdateDependencySubmitterArgs = {
|
|
84578
|
+
input: SpfUpdateDependencySubmitterInput;
|
|
84579
|
+
};
|
|
84580
|
+
export declare type MutationSpf_UpdateDependencySubmittingTeamArgs = {
|
|
84581
|
+
input: SpfUpdateDependencySubmittingTeamInput;
|
|
84582
|
+
};
|
|
84446
84583
|
export declare type MutationSpf_UpdateDependencyTargetDateArgs = {
|
|
84447
84584
|
input: SpfUpdateDependencyTargetDateInput;
|
|
84448
84585
|
};
|
|
@@ -87767,6 +87904,7 @@ export declare type Query = {
|
|
|
87767
87904
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
87768
87905
|
confluence_template?: Maybe<ContentTemplate>;
|
|
87769
87906
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
87907
|
+
confluence_userClasses?: Maybe<ConfluenceUserClassConnection>;
|
|
87770
87908
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
87771
87909
|
confluence_usersHavePermission?: Maybe<ConfluenceUsersHavePermissionList>;
|
|
87772
87910
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
@@ -89504,6 +89642,11 @@ export declare type QueryConfluence_TemplateArgs = {
|
|
|
89504
89642
|
export declare type QueryConfluence_TenantContextArgs = {
|
|
89505
89643
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
89506
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
|
+
};
|
|
89507
89650
|
export declare type QueryConfluence_UserContentAccessArgs = {
|
|
89508
89651
|
accessType: ResourceAccessType;
|
|
89509
89652
|
accountIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
@@ -91772,6 +91915,7 @@ export declare type ReattachInlineCommentInput = {
|
|
|
91772
91915
|
};
|
|
91773
91916
|
export declare enum RecentFilter {
|
|
91774
91917
|
All = "ALL",
|
|
91918
|
+
CollaboratedOn = "COLLABORATED_ON",
|
|
91775
91919
|
Created = "CREATED",
|
|
91776
91920
|
WorkedOn = "WORKED_ON"
|
|
91777
91921
|
}
|
|
@@ -96427,6 +96571,7 @@ export declare type Space = {
|
|
|
96427
96571
|
admins: Array<Maybe<Person>>;
|
|
96428
96572
|
alias?: Maybe<Scalars['String']['output']>;
|
|
96429
96573
|
archivedContentRoots: PaginatedContentList;
|
|
96574
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
96430
96575
|
containsExternalCollaborators: Scalars['Boolean']['output'];
|
|
96431
96576
|
contentRoots: PaginatedContentList;
|
|
96432
96577
|
creatorAccountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -96623,6 +96768,7 @@ export declare type SpaceManagerRecord = {
|
|
|
96623
96768
|
__typename?: 'SpaceManagerRecord';
|
|
96624
96769
|
alias?: Maybe<Scalars['String']['output']>;
|
|
96625
96770
|
canManage?: Maybe<Scalars['Boolean']['output']>;
|
|
96771
|
+
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
96626
96772
|
canView?: Maybe<Scalars['Boolean']['output']>;
|
|
96627
96773
|
createdBy?: Maybe<GraphQlUserInfo>;
|
|
96628
96774
|
icon?: Maybe<ConfluenceSpaceIcon>;
|
|
@@ -97036,9 +97182,9 @@ export declare type SpfCreateDependencyInput = {
|
|
|
97036
97182
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
97037
97183
|
priority: SpfPriority;
|
|
97038
97184
|
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
97039
|
-
requesterId: Scalars['String']['input'];
|
|
97040
|
-
requestingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
97041
97185
|
status: SpfDependencyStatus;
|
|
97186
|
+
submitterId: Scalars['String']['input'];
|
|
97187
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
97042
97188
|
targetDate?: InputMaybe<SpfTargetDateInput>;
|
|
97043
97189
|
};
|
|
97044
97190
|
export declare type SpfCreateDependencyPayload = Payload & {
|
|
@@ -97073,11 +97219,11 @@ export declare type SpfDependency = Node & {
|
|
|
97073
97219
|
receivingTeam?: Maybe<TeamV2>;
|
|
97074
97220
|
receivingTeamId?: Maybe<Scalars['String']['output']>;
|
|
97075
97221
|
relatedContent?: Maybe<SpfRelatedContentConnection>;
|
|
97076
|
-
requester?: Maybe<User>;
|
|
97077
|
-
requesterId: Scalars['String']['output'];
|
|
97078
|
-
requestingTeam?: Maybe<TeamV2>;
|
|
97079
|
-
requestingTeamId?: Maybe<Scalars['String']['output']>;
|
|
97080
97222
|
status: SpfDependencyStatus;
|
|
97223
|
+
submitter?: Maybe<User>;
|
|
97224
|
+
submitterId: Scalars['String']['output'];
|
|
97225
|
+
submittingTeam?: Maybe<TeamV2>;
|
|
97226
|
+
submittingTeamId?: Maybe<Scalars['String']['output']>;
|
|
97081
97227
|
targetDate?: Maybe<SpfTargetDate>;
|
|
97082
97228
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
97083
97229
|
updatedBy?: Maybe<User>;
|
|
@@ -97200,17 +97346,17 @@ export declare type SpfUpdateDependencyReceivingTeamInput = {
|
|
|
97200
97346
|
id: Scalars['ID']['input'];
|
|
97201
97347
|
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
97202
97348
|
};
|
|
97203
|
-
export declare type
|
|
97349
|
+
export declare type SpfUpdateDependencyStatusInput = {
|
|
97204
97350
|
id: Scalars['ID']['input'];
|
|
97205
|
-
|
|
97351
|
+
status: SpfDependencyStatus;
|
|
97206
97352
|
};
|
|
97207
|
-
export declare type
|
|
97353
|
+
export declare type SpfUpdateDependencySubmitterInput = {
|
|
97208
97354
|
id: Scalars['ID']['input'];
|
|
97209
|
-
|
|
97355
|
+
submitterId: Scalars['String']['input'];
|
|
97210
97356
|
};
|
|
97211
|
-
export declare type
|
|
97357
|
+
export declare type SpfUpdateDependencySubmittingTeamInput = {
|
|
97212
97358
|
id: Scalars['ID']['input'];
|
|
97213
|
-
|
|
97359
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
97214
97360
|
};
|
|
97215
97361
|
export declare type SpfUpdateDependencyTargetDateInput = {
|
|
97216
97362
|
id: Scalars['ID']['input'];
|
|
@@ -99892,6 +100038,16 @@ export declare type TrelloActionCardEntity = {
|
|
|
99892
100038
|
start?: Maybe<Scalars['DateTime']['output']>;
|
|
99893
100039
|
type?: Maybe<Scalars['String']['output']>;
|
|
99894
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
|
+
};
|
|
99895
100051
|
export declare type TrelloActionChecklistEntity = {
|
|
99896
100052
|
__typename?: 'TrelloActionChecklistEntity';
|
|
99897
100053
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
@@ -99905,6 +100061,11 @@ export declare type TrelloActionCommentEntity = {
|
|
|
99905
100061
|
textHtml?: Maybe<Scalars['String']['output']>;
|
|
99906
100062
|
type?: Maybe<Scalars['String']['output']>;
|
|
99907
100063
|
};
|
|
100064
|
+
export declare type TrelloActionCustomFieldItemEntity = {
|
|
100065
|
+
__typename?: 'TrelloActionCustomFieldItemEntity';
|
|
100066
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100067
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
100068
|
+
};
|
|
99908
100069
|
export declare type TrelloActionDateEntity = {
|
|
99909
100070
|
__typename?: 'TrelloActionDateEntity';
|
|
99910
100071
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -100471,18 +100632,25 @@ export declare enum TrelloCardActionType {
|
|
|
100471
100632
|
AddMember = "ADD_MEMBER",
|
|
100472
100633
|
Comment = "COMMENT",
|
|
100473
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",
|
|
100474
100639
|
CreateCardFromEmail = "CREATE_CARD_FROM_EMAIL",
|
|
100640
|
+
CreateInboxCard = "CREATE_INBOX_CARD",
|
|
100475
100641
|
DeleteAttachment = "DELETE_ATTACHMENT",
|
|
100476
100642
|
MoveCard = "MOVE_CARD",
|
|
100477
100643
|
MoveCardToBoard = "MOVE_CARD_TO_BOARD",
|
|
100478
100644
|
MoveInboxCardToBoard = "MOVE_INBOX_CARD_TO_BOARD",
|
|
100479
100645
|
RemoveChecklist = "REMOVE_CHECKLIST",
|
|
100480
100646
|
RemoveMember = "REMOVE_MEMBER",
|
|
100647
|
+
UpdateCardCheckItemState = "UPDATE_CARD_CHECK_ITEM_STATE",
|
|
100481
100648
|
UpdateCardClosed = "UPDATE_CARD_CLOSED",
|
|
100482
100649
|
UpdateCardComplete = "UPDATE_CARD_COMPLETE",
|
|
100483
|
-
UpdateCardDue = "UPDATE_CARD_DUE"
|
|
100650
|
+
UpdateCardDue = "UPDATE_CARD_DUE",
|
|
100651
|
+
UpdateCustomFieldItem = "UPDATE_CUSTOM_FIELD_ITEM"
|
|
100484
100652
|
}
|
|
100485
|
-
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;
|
|
100486
100654
|
export declare type TrelloCardAttachmentsByType = {
|
|
100487
100655
|
__typename?: 'TrelloCardAttachmentsByType';
|
|
100488
100656
|
trello?: Maybe<TrelloCardAttachmentsCount>;
|
|
@@ -100558,10 +100726,14 @@ export declare type TrelloCardClosedClause = {
|
|
|
100558
100726
|
};
|
|
100559
100727
|
export declare type TrelloCardCommand = {
|
|
100560
100728
|
close?: InputMaybe<TrelloCardCloseCommand>;
|
|
100729
|
+
complete?: InputMaybe<TrelloCardCompleteCommand>;
|
|
100561
100730
|
};
|
|
100562
100731
|
export declare type TrelloCardCompleteClause = {
|
|
100563
100732
|
completed: Scalars['Boolean']['input'];
|
|
100564
100733
|
};
|
|
100734
|
+
export declare type TrelloCardCompleteCommand = {
|
|
100735
|
+
complete: Scalars['Boolean']['input'];
|
|
100736
|
+
};
|
|
100565
100737
|
export declare type TrelloCardConnection = {
|
|
100566
100738
|
__typename?: 'TrelloCardConnection';
|
|
100567
100739
|
edges?: Maybe<Array<TrelloCardEdge>>;
|
|
@@ -100775,6 +100947,7 @@ export declare type TrelloChecklist = {
|
|
|
100775
100947
|
board?: Maybe<TrelloBoard>;
|
|
100776
100948
|
card?: Maybe<TrelloCard>;
|
|
100777
100949
|
checkItems?: Maybe<TrelloCheckItemConnection>;
|
|
100950
|
+
id: Scalars['ID']['output'];
|
|
100778
100951
|
name?: Maybe<Scalars['String']['output']>;
|
|
100779
100952
|
objectId: Scalars['ID']['output'];
|
|
100780
100953
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -100809,6 +100982,7 @@ export declare type TrelloChecklistEdgeUpdated = {
|
|
|
100809
100982
|
export declare type TrelloChecklistUpdated = {
|
|
100810
100983
|
__typename?: 'TrelloChecklistUpdated';
|
|
100811
100984
|
checkItems?: Maybe<TrelloCheckItemConnectionUpdated>;
|
|
100985
|
+
id: Scalars['ID']['output'];
|
|
100812
100986
|
name?: Maybe<Scalars['String']['output']>;
|
|
100813
100987
|
objectId: Scalars['ID']['output'];
|
|
100814
100988
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -100840,6 +101014,29 @@ export declare type TrelloCopiedCardSource = {
|
|
|
100840
101014
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100841
101015
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
100842
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
|
+
};
|
|
100843
101040
|
export declare type TrelloCopyCommentCardAction = TrelloAction & TrelloCardActionData & {
|
|
100844
101041
|
__typename?: 'TrelloCopyCommentCardAction';
|
|
100845
101042
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -100862,6 +101059,70 @@ export declare type TrelloCopyCommentCardActionDisplayEntities = {
|
|
|
100862
101059
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
100863
101060
|
originalCommenter?: Maybe<TrelloActionMemberEntity>;
|
|
100864
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
|
+
};
|
|
100865
101126
|
export declare type TrelloCreateCardFromEmailAction = TrelloAction & TrelloCardActionData & {
|
|
100866
101127
|
__typename?: 'TrelloCreateCardFromEmailAction';
|
|
100867
101128
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -100880,6 +101141,7 @@ export declare type TrelloCreateCardFromEmailAction = TrelloAction & TrelloCardA
|
|
|
100880
101141
|
export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
|
|
100881
101142
|
__typename?: 'TrelloCreateCardFromEmailActionDisplayEntities';
|
|
100882
101143
|
card?: Maybe<TrelloActionCardEntity>;
|
|
101144
|
+
list?: Maybe<TrelloActionListEntity>;
|
|
100883
101145
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
100884
101146
|
};
|
|
100885
101147
|
export declare type TrelloCreateCardInput = {
|
|
@@ -100892,10 +101154,30 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
100892
101154
|
errors?: Maybe<Array<MutationError>>;
|
|
100893
101155
|
success: Scalars['Boolean']['output'];
|
|
100894
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
|
+
};
|
|
100895
101176
|
export declare type TrelloCreateOrUpdatePlannerCalendarInput = {
|
|
100896
101177
|
enabled: Scalars['Boolean']['input'];
|
|
101178
|
+
primaryCalendar?: InputMaybe<Scalars['Boolean']['input']>;
|
|
100897
101179
|
providerAccountId: Scalars['ID']['input'];
|
|
100898
|
-
providerCalendarId
|
|
101180
|
+
providerCalendarId?: InputMaybe<Scalars['ID']['input']>;
|
|
100899
101181
|
type: TrelloSupportedPlannerProviders;
|
|
100900
101182
|
workspaceId: Scalars['ID']['input'];
|
|
100901
101183
|
};
|
|
@@ -101541,6 +101823,7 @@ export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterfa
|
|
|
101541
101823
|
color?: Maybe<TrelloPlannerCalendarColor>;
|
|
101542
101824
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
101543
101825
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
101826
|
+
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
101544
101827
|
id: Scalars['ID']['output'];
|
|
101545
101828
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
101546
101829
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -101608,6 +101891,7 @@ export declare enum TrelloPlannerCalendarColor {
|
|
|
101608
101891
|
BlueSubtler = "BLUE_SUBTLER",
|
|
101609
101892
|
BlueSubtlest = "BLUE_SUBTLEST",
|
|
101610
101893
|
GraySubtler = "GRAY_SUBTLER",
|
|
101894
|
+
GraySubtlest = "GRAY_SUBTLEST",
|
|
101611
101895
|
GreenSubtler = "GREEN_SUBTLER",
|
|
101612
101896
|
GreenSubtlest = "GREEN_SUBTLEST",
|
|
101613
101897
|
LimeSubtler = "LIME_SUBTLER",
|
|
@@ -102414,6 +102698,50 @@ export declare type TrelloUpdateCardNamePayload = Payload & {
|
|
|
102414
102698
|
errors?: Maybe<Array<MutationError>>;
|
|
102415
102699
|
success: Scalars['Boolean']['output'];
|
|
102416
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
|
+
};
|
|
102417
102745
|
export declare type TrelloUpdateKeyboardShortcutsPrefInput = {
|
|
102418
102746
|
userId: Scalars['ID']['input'];
|
|
102419
102747
|
value: Scalars['Boolean']['input'];
|