@forge/cli-shared 6.8.1-next.1 → 6.9.0-next.3
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 +678 -61
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +67 -28
- package/package.json +5 -5
|
@@ -579,9 +579,12 @@ export declare type ActivityFilter = {
|
|
|
579
579
|
};
|
|
580
580
|
export declare type ActivityFilterArgs = {
|
|
581
581
|
containerIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
582
|
+
earliestStart?: InputMaybe<Scalars['DateTime']['input']>;
|
|
582
583
|
eventTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
584
|
+
latestStart?: InputMaybe<Scalars['DateTime']['input']>;
|
|
583
585
|
objectTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
584
586
|
products?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
587
|
+
transitions?: InputMaybe<Array<TransitionFilter>>;
|
|
585
588
|
};
|
|
586
589
|
export declare type ActivityItemEdge = {
|
|
587
590
|
__typename?: 'ActivityItemEdge';
|
|
@@ -1579,6 +1582,7 @@ export declare type AppInstallationEdge = {
|
|
|
1579
1582
|
};
|
|
1580
1583
|
export declare type AppInstallationInput = {
|
|
1581
1584
|
appId: Scalars['ID']['input'];
|
|
1585
|
+
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1582
1586
|
environmentKey: Scalars['String']['input'];
|
|
1583
1587
|
installationContext: Scalars['ID']['input'];
|
|
1584
1588
|
licenseOverride?: InputMaybe<LicenseOverrideState>;
|
|
@@ -1649,6 +1653,7 @@ export declare type AppInstallationUnsubscribeTask = AppInstallationTask & {
|
|
|
1649
1653
|
};
|
|
1650
1654
|
export declare type AppInstallationUpgradeInput = {
|
|
1651
1655
|
appId: Scalars['ID']['input'];
|
|
1656
|
+
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1652
1657
|
environmentKey: Scalars['String']['input'];
|
|
1653
1658
|
installationContext: Scalars['ID']['input'];
|
|
1654
1659
|
sourceBillingType?: InputMaybe<SourceBillingType>;
|
|
@@ -2083,6 +2088,7 @@ export declare type AppTunnelDefinitions = {
|
|
|
2083
2088
|
};
|
|
2084
2089
|
export declare type AppUninstallationInput = {
|
|
2085
2090
|
appId: Scalars['ID']['input'];
|
|
2091
|
+
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2086
2092
|
environmentKey: Scalars['String']['input'];
|
|
2087
2093
|
installationContext?: InputMaybe<Scalars['ID']['input']>;
|
|
2088
2094
|
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -2247,6 +2253,7 @@ export declare type AquaOutgoingEmailLogsQueryApi = {
|
|
|
2247
2253
|
GetNotificationLogs?: Maybe<AquaOutgoingEmailLogsQueryResult>;
|
|
2248
2254
|
};
|
|
2249
2255
|
export declare type AquaOutgoingEmailLogsQueryApiGetNotificationLogsArgs = {
|
|
2256
|
+
filterActionable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2250
2257
|
filters?: InputMaybe<AquaNotificationLogsFilter>;
|
|
2251
2258
|
fromTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
|
|
2252
2259
|
notificationActionType?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4112,6 +4119,7 @@ export declare enum Classification {
|
|
|
4112
4119
|
}
|
|
4113
4120
|
export declare type ClassificationLevelDetails = {
|
|
4114
4121
|
__typename?: 'ClassificationLevelDetails';
|
|
4122
|
+
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
4115
4123
|
classificationLevelId?: Maybe<Scalars['ID']['output']>;
|
|
4116
4124
|
source?: Maybe<ClassificationLevelSource>;
|
|
4117
4125
|
};
|
|
@@ -7887,6 +7895,7 @@ export declare type CompassRelationshipEdge = {
|
|
|
7887
7895
|
export declare type CompassRelationshipQuery = {
|
|
7888
7896
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
7889
7897
|
direction?: CompassRelationshipDirection;
|
|
7898
|
+
filters?: InputMaybe<CompassRelationshipQueryFilters>;
|
|
7890
7899
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7891
7900
|
relationshipType?: CompassRelationshipTypeInput;
|
|
7892
7901
|
};
|
|
@@ -8417,6 +8426,7 @@ export declare type CompassScorecardMetricCriterionScore = CompassScorecardCrite
|
|
|
8417
8426
|
export declare type CompassScorecardQueryFilter = {
|
|
8418
8427
|
componentTypeIds?: InputMaybe<CompassScorecardAppliedToComponentsTypesFilter>;
|
|
8419
8428
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
8429
|
+
ownerId?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
8420
8430
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
8421
8431
|
type?: InputMaybe<CompassScorecardTypesFilter>;
|
|
8422
8432
|
};
|
|
@@ -9515,11 +9525,29 @@ export declare type ConfluenceCommentFilter = {
|
|
|
9515
9525
|
commentState?: InputMaybe<Array<InputMaybe<ConfluenceCommentState>>>;
|
|
9516
9526
|
commentType?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
9517
9527
|
};
|
|
9528
|
+
export declare enum ConfluenceCommentLevel {
|
|
9529
|
+
Reply = "REPLY",
|
|
9530
|
+
TopLevel = "TOP_LEVEL"
|
|
9531
|
+
}
|
|
9518
9532
|
export declare type ConfluenceCommentLinks = {
|
|
9519
9533
|
__typename?: 'ConfluenceCommentLinks';
|
|
9520
9534
|
base?: Maybe<Scalars['String']['output']>;
|
|
9521
9535
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
9522
9536
|
};
|
|
9537
|
+
export declare type ConfluenceCommentModified = {
|
|
9538
|
+
__typename?: 'ConfluenceCommentModified';
|
|
9539
|
+
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
9540
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
9541
|
+
eventType?: Maybe<ConfluenceCommentModifiedType>;
|
|
9542
|
+
pageCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
9543
|
+
};
|
|
9544
|
+
export declare enum ConfluenceCommentModifiedType {
|
|
9545
|
+
CommentCreated = "COMMENT_CREATED",
|
|
9546
|
+
CommentDeleted = "COMMENT_DELETED",
|
|
9547
|
+
CommentReopened = "COMMENT_REOPENED",
|
|
9548
|
+
CommentResolved = "COMMENT_RESOLVED",
|
|
9549
|
+
CommentUpdated = "COMMENT_UPDATED"
|
|
9550
|
+
}
|
|
9523
9551
|
export declare type ConfluenceCommentResolutionState = {
|
|
9524
9552
|
__typename?: 'ConfluenceCommentResolutionState';
|
|
9525
9553
|
commentId: Scalars['ID']['output'];
|
|
@@ -9570,8 +9598,26 @@ export declare type ConfluenceContentMetadata = {
|
|
|
9570
9598
|
export declare type ConfluenceContentModified = {
|
|
9571
9599
|
__typename?: 'ConfluenceContentModified';
|
|
9572
9600
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
9601
|
+
commentModified?: Maybe<ConfluenceCommentModified>;
|
|
9602
|
+
contentRestrictionUpdated?: Maybe<ConfluenceContentRestrictionUpdated>;
|
|
9603
|
+
contentStateDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
9604
|
+
contentStateUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
9573
9605
|
contentTitleUpdated?: Maybe<ConfluenceContentTitleUpdated>;
|
|
9574
|
-
|
|
9606
|
+
contentUpdatedWithTemplate?: Maybe<ConfluenceContentUpdatedWithTemplate>;
|
|
9607
|
+
coverPictureDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
9608
|
+
coverPictureUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
9609
|
+
coverPictureWidthUpdated?: Maybe<ConfluenceCoverPictureWidthUpdated>;
|
|
9610
|
+
embedUpdated?: Maybe<ConfluenceEmbedUpdated>;
|
|
9611
|
+
emojiTitleDeleted?: Maybe<ConfluenceContentPropertyDeleted>;
|
|
9612
|
+
emojiTitleUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
9613
|
+
id: Scalars['ID']['output'];
|
|
9614
|
+
inlineCommentModified?: Maybe<ConfluenceInlineCommentModified>;
|
|
9615
|
+
pageBlogified?: Maybe<ConfluencePageBlogified>;
|
|
9616
|
+
pageMigrated?: Maybe<ConfluencePageMigrated>;
|
|
9617
|
+
pageMoved?: Maybe<ConfluencePageMoved>;
|
|
9618
|
+
pageTitlePropertyUpdated?: Maybe<ConfluenceContentPropertyUpdated>;
|
|
9619
|
+
pageUpdated?: Maybe<ConfluencePageUpdated>;
|
|
9620
|
+
schedulePublished?: Maybe<ConfluenceSchedulePublished>;
|
|
9575
9621
|
type: ConfluenceSubscriptionContentType;
|
|
9576
9622
|
};
|
|
9577
9623
|
export declare type ConfluenceContentNativeProperties = {
|
|
@@ -9579,6 +9625,16 @@ export declare type ConfluenceContentNativeProperties = {
|
|
|
9579
9625
|
current?: Maybe<ConfluenceCurrentContentNativeProperties>;
|
|
9580
9626
|
draft?: Maybe<ConfluenceDraftContentNativeProperties>;
|
|
9581
9627
|
};
|
|
9628
|
+
export declare type ConfluenceContentPropertyDeleted = {
|
|
9629
|
+
__typename?: 'ConfluenceContentPropertyDeleted';
|
|
9630
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
9631
|
+
};
|
|
9632
|
+
export declare type ConfluenceContentPropertyUpdated = {
|
|
9633
|
+
__typename?: 'ConfluenceContentPropertyUpdated';
|
|
9634
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
9635
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
9636
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
9637
|
+
};
|
|
9582
9638
|
export declare enum ConfluenceContentRepresentation {
|
|
9583
9639
|
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
9584
9640
|
Editor = "EDITOR",
|
|
@@ -9591,6 +9647,10 @@ export declare enum ConfluenceContentRepresentation {
|
|
|
9591
9647
|
View = "VIEW",
|
|
9592
9648
|
Wiki = "WIKI"
|
|
9593
9649
|
}
|
|
9650
|
+
export declare type ConfluenceContentRestrictionUpdated = {
|
|
9651
|
+
__typename?: 'ConfluenceContentRestrictionUpdated';
|
|
9652
|
+
contentId?: Maybe<Scalars['ID']['output']>;
|
|
9653
|
+
};
|
|
9594
9654
|
export declare type ConfluenceContentState = {
|
|
9595
9655
|
__typename?: 'ConfluenceContentState';
|
|
9596
9656
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -9627,6 +9687,12 @@ export declare enum ConfluenceContentType {
|
|
|
9627
9687
|
Page = "PAGE",
|
|
9628
9688
|
Whiteboard = "WHITEBOARD"
|
|
9629
9689
|
}
|
|
9690
|
+
export declare type ConfluenceContentUpdatedWithTemplate = {
|
|
9691
|
+
__typename?: 'ConfluenceContentUpdatedWithTemplate';
|
|
9692
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
9693
|
+
subtype?: Maybe<Scalars['String']['output']>;
|
|
9694
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
9695
|
+
};
|
|
9630
9696
|
export declare type ConfluenceContentVersion = {
|
|
9631
9697
|
__typename?: 'ConfluenceContentVersion';
|
|
9632
9698
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -9664,6 +9730,10 @@ export declare type ConfluenceCopySpaceSecurityConfigurationPayload = Payload &
|
|
|
9664
9730
|
errors?: Maybe<Array<MutationError>>;
|
|
9665
9731
|
success: Scalars['Boolean']['output'];
|
|
9666
9732
|
};
|
|
9733
|
+
export declare type ConfluenceCoverPictureWidthUpdated = {
|
|
9734
|
+
__typename?: 'ConfluenceCoverPictureWidthUpdated';
|
|
9735
|
+
coverPictureWidth?: Maybe<Scalars['String']['output']>;
|
|
9736
|
+
};
|
|
9667
9737
|
export declare type ConfluenceCreateAdminAnnouncementBannerInput = {
|
|
9668
9738
|
appearance: Scalars['String']['input'];
|
|
9669
9739
|
content: Scalars['String']['input'];
|
|
@@ -9960,6 +10030,11 @@ export declare type ConfluenceEmbedLinks = {
|
|
|
9960
10030
|
base?: Maybe<Scalars['String']['output']>;
|
|
9961
10031
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
9962
10032
|
};
|
|
10033
|
+
export declare type ConfluenceEmbedUpdated = {
|
|
10034
|
+
__typename?: 'ConfluenceEmbedUpdated';
|
|
10035
|
+
isBlankStateUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
10036
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
10037
|
+
};
|
|
9963
10038
|
export declare type ConfluenceFavoritedSummary = {
|
|
9964
10039
|
__typename?: 'ConfluenceFavoritedSummary';
|
|
9965
10040
|
favoritedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -10009,10 +10084,56 @@ export declare type ConfluenceInlineComment = ConfluenceComment & {
|
|
|
10009
10084
|
resolutionStatus?: Maybe<ConfluenceInlineCommentResolutionStatus>;
|
|
10010
10085
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
10011
10086
|
};
|
|
10087
|
+
export declare type ConfluenceInlineCommentModified = {
|
|
10088
|
+
__typename?: 'ConfluenceInlineCommentModified';
|
|
10089
|
+
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
10090
|
+
commentId?: Maybe<Scalars['ID']['output']>;
|
|
10091
|
+
eventType?: Maybe<ConfluenceInlineCommentModifiedType>;
|
|
10092
|
+
inlineCommentType?: Maybe<ConfluenceCommentLevel>;
|
|
10093
|
+
inlineResolveProperties?: Maybe<ConfluenceInlineCommentResolveProperties>;
|
|
10094
|
+
inlineText?: Maybe<Scalars['String']['output']>;
|
|
10095
|
+
markerRef?: Maybe<Scalars['String']['output']>;
|
|
10096
|
+
publishVersionNumber?: Maybe<Scalars['Int']['output']>;
|
|
10097
|
+
step?: Maybe<ConfluenceInlineCommentStep>;
|
|
10098
|
+
};
|
|
10099
|
+
export declare enum ConfluenceInlineCommentModifiedType {
|
|
10100
|
+
EditorInlineCommentCreated = "EDITOR_INLINE_COMMENT_CREATED",
|
|
10101
|
+
InlineCommentCreated = "INLINE_COMMENT_CREATED",
|
|
10102
|
+
InlineCommentDeleted = "INLINE_COMMENT_DELETED",
|
|
10103
|
+
InlineCommentReattached = "INLINE_COMMENT_REATTACHED",
|
|
10104
|
+
InlineCommentResolved = "INLINE_COMMENT_RESOLVED",
|
|
10105
|
+
InlineCommentUnresolved = "INLINE_COMMENT_UNRESOLVED",
|
|
10106
|
+
InlineCommentUpdated = "INLINE_COMMENT_UPDATED",
|
|
10107
|
+
RendererInlineCommentCreated = "RENDERER_INLINE_COMMENT_CREATED"
|
|
10108
|
+
}
|
|
10012
10109
|
export declare enum ConfluenceInlineCommentResolutionStatus {
|
|
10013
10110
|
Resolved = "RESOLVED",
|
|
10014
10111
|
Unresolved = "UNRESOLVED"
|
|
10015
10112
|
}
|
|
10113
|
+
export declare type ConfluenceInlineCommentResolveProperties = {
|
|
10114
|
+
__typename?: 'ConfluenceInlineCommentResolveProperties';
|
|
10115
|
+
isDangling?: Maybe<Scalars['Boolean']['output']>;
|
|
10116
|
+
resolved?: Maybe<Scalars['Boolean']['output']>;
|
|
10117
|
+
resolvedByDangling?: Maybe<Scalars['Boolean']['output']>;
|
|
10118
|
+
resolvedFriendlyDate?: Maybe<Scalars['String']['output']>;
|
|
10119
|
+
resolvedTime?: Maybe<Scalars['String']['output']>;
|
|
10120
|
+
resolvedUser?: Maybe<Scalars['String']['output']>;
|
|
10121
|
+
};
|
|
10122
|
+
export declare type ConfluenceInlineCommentStep = {
|
|
10123
|
+
__typename?: 'ConfluenceInlineCommentStep';
|
|
10124
|
+
from?: Maybe<Scalars['Int']['output']>;
|
|
10125
|
+
mark?: Maybe<ConfluenceInlineCommentStepMark>;
|
|
10126
|
+
pos?: Maybe<Scalars['Int']['output']>;
|
|
10127
|
+
to?: Maybe<Scalars['Int']['output']>;
|
|
10128
|
+
};
|
|
10129
|
+
export declare type ConfluenceInlineCommentStepMark = {
|
|
10130
|
+
__typename?: 'ConfluenceInlineCommentStepMark';
|
|
10131
|
+
attrs?: Maybe<ConfluenceInlineCommentStepMarkAttrs>;
|
|
10132
|
+
};
|
|
10133
|
+
export declare type ConfluenceInlineCommentStepMarkAttrs = {
|
|
10134
|
+
__typename?: 'ConfluenceInlineCommentStepMarkAttrs';
|
|
10135
|
+
annotationType?: Maybe<Scalars['String']['output']>;
|
|
10136
|
+
};
|
|
10016
10137
|
export declare type ConfluenceInlineTask = {
|
|
10017
10138
|
__typename?: 'ConfluenceInlineTask';
|
|
10018
10139
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -15909,6 +16030,13 @@ export declare type ConfluencePageCommentsArgs = {
|
|
|
15909
16030
|
export declare type ConfluencePagePropertiesArgs = {
|
|
15910
16031
|
keys: Array<InputMaybe<Scalars['String']['input']>>;
|
|
15911
16032
|
};
|
|
16033
|
+
export declare type ConfluencePageBlogified = {
|
|
16034
|
+
__typename?: 'ConfluencePageBlogified';
|
|
16035
|
+
blogTitle?: Maybe<Scalars['String']['output']>;
|
|
16036
|
+
converterDisplayName?: Maybe<Scalars['String']['output']>;
|
|
16037
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
16038
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
16039
|
+
};
|
|
15912
16040
|
export declare type ConfluencePageInfo = {
|
|
15913
16041
|
__typename?: 'ConfluencePageInfo';
|
|
15914
16042
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -15920,6 +16048,19 @@ export declare type ConfluencePageLinks = {
|
|
|
15920
16048
|
editUi?: Maybe<Scalars['String']['output']>;
|
|
15921
16049
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
15922
16050
|
};
|
|
16051
|
+
export declare type ConfluencePageMigrated = {
|
|
16052
|
+
__typename?: 'ConfluencePageMigrated';
|
|
16053
|
+
fabricEligibility?: Maybe<Scalars['String']['output']>;
|
|
16054
|
+
};
|
|
16055
|
+
export declare type ConfluencePageMoved = {
|
|
16056
|
+
__typename?: 'ConfluencePageMoved';
|
|
16057
|
+
newSpaceAlias?: Maybe<Scalars['String']['output']>;
|
|
16058
|
+
newSpaceKey?: Maybe<Scalars['String']['output']>;
|
|
16059
|
+
oldParentId?: Maybe<Scalars['String']['output']>;
|
|
16060
|
+
oldPosition?: Maybe<Scalars['Int']['output']>;
|
|
16061
|
+
oldSpaceAlias?: Maybe<Scalars['String']['output']>;
|
|
16062
|
+
oldSpaceKey?: Maybe<Scalars['String']['output']>;
|
|
16063
|
+
};
|
|
15923
16064
|
export declare type ConfluencePageProperty = {
|
|
15924
16065
|
__typename?: 'ConfluencePageProperty';
|
|
15925
16066
|
key: Scalars['String']['output'];
|
|
@@ -15936,6 +16077,11 @@ export declare enum ConfluencePageStatus {
|
|
|
15936
16077
|
export declare enum ConfluencePageSubType {
|
|
15937
16078
|
Live = "LIVE"
|
|
15938
16079
|
}
|
|
16080
|
+
export declare type ConfluencePageUpdated = {
|
|
16081
|
+
__typename?: 'ConfluencePageUpdated';
|
|
16082
|
+
confVersion?: Maybe<Scalars['Int']['output']>;
|
|
16083
|
+
trigger?: Maybe<Scalars['String']['output']>;
|
|
16084
|
+
};
|
|
15939
16085
|
export declare type ConfluencePageVersion = {
|
|
15940
16086
|
__typename?: 'ConfluencePageVersion';
|
|
15941
16087
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -15976,6 +16122,7 @@ export declare type ConfluencePerson = {
|
|
|
15976
16122
|
permissionType?: Maybe<SitePermissionType>;
|
|
15977
16123
|
profilePicture?: Maybe<Icon>;
|
|
15978
16124
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
16125
|
+
spacesAssigned?: Maybe<PaginatedSpaceList>;
|
|
15979
16126
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
15980
16127
|
type?: Maybe<Scalars['String']['output']>;
|
|
15981
16128
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -16206,6 +16353,17 @@ export declare type ConfluenceResolveInlineCommentPayload = {
|
|
|
16206
16353
|
errors?: Maybe<Array<MutationError>>;
|
|
16207
16354
|
success: Scalars['Boolean']['output'];
|
|
16208
16355
|
};
|
|
16356
|
+
export declare type ConfluenceSchedulePublished = {
|
|
16357
|
+
__typename?: 'ConfluenceSchedulePublished';
|
|
16358
|
+
confVersion?: Maybe<Scalars['Int']['output']>;
|
|
16359
|
+
eventType?: Maybe<ConfluenceSchedulePublishedType>;
|
|
16360
|
+
publishTime?: Maybe<Scalars['String']['output']>;
|
|
16361
|
+
};
|
|
16362
|
+
export declare enum ConfluenceSchedulePublishedType {
|
|
16363
|
+
Published = "PUBLISHED",
|
|
16364
|
+
Scheduled = "SCHEDULED",
|
|
16365
|
+
Unscheduled = "UNSCHEDULED"
|
|
16366
|
+
}
|
|
16209
16367
|
export declare type ConfluenceSearchConnection = {
|
|
16210
16368
|
__typename?: 'ConfluenceSearchConnection';
|
|
16211
16369
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -17397,6 +17555,8 @@ export declare type Content = {
|
|
|
17397
17555
|
currentUserHasAncestorWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
17398
17556
|
currentUserIsWatching: Scalars['Boolean']['output'];
|
|
17399
17557
|
currentUserIsWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
17558
|
+
dataClassificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
17559
|
+
dataClassificationLevelId?: Maybe<Scalars['String']['output']>;
|
|
17400
17560
|
deletableDescendantsCount: Scalars['Long']['output'];
|
|
17401
17561
|
dynamicMobileBody?: Maybe<ContentBody>;
|
|
17402
17562
|
embeddedProduct?: Maybe<Scalars['String']['output']>;
|
|
@@ -17414,7 +17574,6 @@ export declare type Content = {
|
|
|
17414
17574
|
id?: Maybe<Scalars['ID']['output']>;
|
|
17415
17575
|
inContentTree: Scalars['Boolean']['output'];
|
|
17416
17576
|
incomingLinks?: Maybe<PaginatedContentList>;
|
|
17417
|
-
isExportEnabled: Scalars['Boolean']['output'];
|
|
17418
17577
|
labels?: Maybe<PaginatedLabelList>;
|
|
17419
17578
|
likes?: Maybe<LikesResponse>;
|
|
17420
17579
|
links?: Maybe<LinksDownloadEdituiWebuiContextSelfTinyuiCollectionBase>;
|
|
@@ -19660,6 +19819,7 @@ export declare type CreateCompassRelationshipInput = {
|
|
|
19660
19819
|
endNodeId: Scalars['ID']['input'];
|
|
19661
19820
|
relationshipType?: CompassRelationshipTypeInput;
|
|
19662
19821
|
startNodeId: Scalars['ID']['input'];
|
|
19822
|
+
type?: InputMaybe<CompassRelationshipType>;
|
|
19663
19823
|
};
|
|
19664
19824
|
export declare type CreateCompassRelationshipPayload = Payload & {
|
|
19665
19825
|
__typename?: 'CreateCompassRelationshipPayload';
|
|
@@ -21633,6 +21793,7 @@ export declare type DeleteCompassRelationshipInput = {
|
|
|
21633
21793
|
endNodeId: Scalars['ID']['input'];
|
|
21634
21794
|
relationshipType?: CompassRelationshipTypeInput;
|
|
21635
21795
|
startNodeId: Scalars['ID']['input'];
|
|
21796
|
+
type?: InputMaybe<CompassRelationshipType>;
|
|
21636
21797
|
};
|
|
21637
21798
|
export declare type DeleteCompassRelationshipPayload = Payload & {
|
|
21638
21799
|
__typename?: 'DeleteCompassRelationshipPayload';
|
|
@@ -21754,6 +21915,7 @@ export declare type DeleteDevOpsServiceRelationshipPayload = Payload & {
|
|
|
21754
21915
|
};
|
|
21755
21916
|
export declare type DeleteEventSourceInput = {
|
|
21756
21917
|
cloudId: Scalars['ID']['input'];
|
|
21918
|
+
deleteIfAttachedToComponents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
21757
21919
|
eventType: CompassEventType;
|
|
21758
21920
|
externalEventSourceId: Scalars['ID']['input'];
|
|
21759
21921
|
};
|
|
@@ -31261,12 +31423,18 @@ export declare type GraphStore = {
|
|
|
31261
31423
|
deploymentContainsCommitInverse?: Maybe<GraphStoreSimplifiedDeploymentContainsCommitInverseConnection>;
|
|
31262
31424
|
entityIsRelatedToEntity?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityConnection>;
|
|
31263
31425
|
entityIsRelatedToEntityInverse?: Maybe<GraphStoreSimplifiedEntityIsRelatedToEntityInverseConnection>;
|
|
31426
|
+
externalOrgHasExternalWorker?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerConnection>;
|
|
31427
|
+
externalOrgHasExternalWorkerInverse?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerInverseConnection>;
|
|
31428
|
+
externalOrgHasUserAsMember?: Maybe<GraphStoreSimplifiedExternalOrgHasUserAsMemberConnection>;
|
|
31429
|
+
externalOrgHasUserAsMemberInverse?: Maybe<GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseConnection>;
|
|
31264
31430
|
externalPositionIsFilledByExternalWorker?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection>;
|
|
31265
31431
|
externalPositionIsFilledByExternalWorkerInverse?: Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerInverseConnection>;
|
|
31266
31432
|
externalPositionManagesExternalPosition?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionConnection>;
|
|
31267
31433
|
externalPositionManagesExternalPositionInverse?: Maybe<GraphStoreSimplifiedExternalPositionManagesExternalPositionInverseConnection>;
|
|
31268
31434
|
externalWorkerConflatesToIdentity3pUser?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserConnection>;
|
|
31269
31435
|
externalWorkerConflatesToIdentity3pUserInverse?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserInverseConnection>;
|
|
31436
|
+
externalWorkerConflatesToUser?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToUserConnection>;
|
|
31437
|
+
externalWorkerConflatesToUserInverse?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToUserInverseConnection>;
|
|
31270
31438
|
fetchAllRelationships: GraphStoreAllRelationshipsConnection;
|
|
31271
31439
|
focusAreaAssociatedToProject?: Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection>;
|
|
31272
31440
|
focusAreaAssociatedToProjectBatch?: Maybe<GraphStoreBatchFocusAreaAssociatedToProjectConnection>;
|
|
@@ -31701,10 +31869,10 @@ export declare type GraphStore = {
|
|
|
31701
31869
|
userFavoritedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection>;
|
|
31702
31870
|
userFavoritedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection>;
|
|
31703
31871
|
userFavoritedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection>;
|
|
31704
|
-
userHasCollaborators?: Maybe<GraphStoreSimplifiedUserHasCollaboratorsConnection>;
|
|
31705
|
-
userHasCollaboratorsInverse?: Maybe<GraphStoreSimplifiedUserHasCollaboratorsInverseConnection>;
|
|
31706
31872
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
31707
31873
|
userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
|
|
31874
|
+
userHasTopCollaborator?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorConnection>;
|
|
31875
|
+
userHasTopCollaboratorInverse?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorInverseConnection>;
|
|
31708
31876
|
userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
|
|
31709
31877
|
userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
|
|
31710
31878
|
userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
|
|
@@ -32504,6 +32672,34 @@ export declare type GraphStoreEntityIsRelatedToEntityInverseArgs = {
|
|
|
32504
32672
|
id: Scalars['ID']['input'];
|
|
32505
32673
|
sort?: InputMaybe<GraphStoreEntityIsRelatedToEntitySortInput>;
|
|
32506
32674
|
};
|
|
32675
|
+
export declare type GraphStoreExternalOrgHasExternalWorkerArgs = {
|
|
32676
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32677
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32678
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32679
|
+
id: Scalars['ID']['input'];
|
|
32680
|
+
sort?: InputMaybe<GraphStoreExternalOrgHasExternalWorkerSortInput>;
|
|
32681
|
+
};
|
|
32682
|
+
export declare type GraphStoreExternalOrgHasExternalWorkerInverseArgs = {
|
|
32683
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32684
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32685
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32686
|
+
id: Scalars['ID']['input'];
|
|
32687
|
+
sort?: InputMaybe<GraphStoreExternalOrgHasExternalWorkerSortInput>;
|
|
32688
|
+
};
|
|
32689
|
+
export declare type GraphStoreExternalOrgHasUserAsMemberArgs = {
|
|
32690
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32691
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32692
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32693
|
+
id: Scalars['ID']['input'];
|
|
32694
|
+
sort?: InputMaybe<GraphStoreExternalOrgHasUserAsMemberSortInput>;
|
|
32695
|
+
};
|
|
32696
|
+
export declare type GraphStoreExternalOrgHasUserAsMemberInverseArgs = {
|
|
32697
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32698
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32699
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32700
|
+
id: Scalars['ID']['input'];
|
|
32701
|
+
sort?: InputMaybe<GraphStoreExternalOrgHasUserAsMemberSortInput>;
|
|
32702
|
+
};
|
|
32507
32703
|
export declare type GraphStoreExternalPositionIsFilledByExternalWorkerArgs = {
|
|
32508
32704
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32509
32705
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -32546,6 +32742,20 @@ export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserInverseArgs
|
|
|
32546
32742
|
id: Scalars['ID']['input'];
|
|
32547
32743
|
sort?: InputMaybe<GraphStoreExternalWorkerConflatesToIdentity3pUserSortInput>;
|
|
32548
32744
|
};
|
|
32745
|
+
export declare type GraphStoreExternalWorkerConflatesToUserArgs = {
|
|
32746
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32747
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32748
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32749
|
+
id: Scalars['ID']['input'];
|
|
32750
|
+
sort?: InputMaybe<GraphStoreExternalWorkerConflatesToUserSortInput>;
|
|
32751
|
+
};
|
|
32752
|
+
export declare type GraphStoreExternalWorkerConflatesToUserInverseArgs = {
|
|
32753
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32754
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32755
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32756
|
+
id: Scalars['ID']['input'];
|
|
32757
|
+
sort?: InputMaybe<GraphStoreExternalWorkerConflatesToUserSortInput>;
|
|
32758
|
+
};
|
|
32549
32759
|
export declare type GraphStoreFetchAllRelationshipsArgs = {
|
|
32550
32760
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32551
32761
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -35396,33 +35606,33 @@ export declare type GraphStoreUserFavoritedConfluenceWhiteboardInverseArgs = {
|
|
|
35396
35606
|
id: Scalars['ID']['input'];
|
|
35397
35607
|
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceWhiteboardSortInput>;
|
|
35398
35608
|
};
|
|
35399
|
-
export declare type
|
|
35609
|
+
export declare type GraphStoreUserHasRelevantProjectArgs = {
|
|
35400
35610
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35401
35611
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35402
35612
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35403
35613
|
id: Scalars['ID']['input'];
|
|
35404
|
-
sort?: InputMaybe<
|
|
35614
|
+
sort?: InputMaybe<GraphStoreUserHasRelevantProjectSortInput>;
|
|
35405
35615
|
};
|
|
35406
|
-
export declare type
|
|
35616
|
+
export declare type GraphStoreUserHasRelevantProjectInverseArgs = {
|
|
35407
35617
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35408
35618
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35409
35619
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35410
35620
|
id: Scalars['ID']['input'];
|
|
35411
|
-
sort?: InputMaybe<
|
|
35621
|
+
sort?: InputMaybe<GraphStoreUserHasRelevantProjectSortInput>;
|
|
35412
35622
|
};
|
|
35413
|
-
export declare type
|
|
35623
|
+
export declare type GraphStoreUserHasTopCollaboratorArgs = {
|
|
35414
35624
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35415
35625
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35416
35626
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35417
35627
|
id: Scalars['ID']['input'];
|
|
35418
|
-
sort?: InputMaybe<
|
|
35628
|
+
sort?: InputMaybe<GraphStoreUserHasTopCollaboratorSortInput>;
|
|
35419
35629
|
};
|
|
35420
|
-
export declare type
|
|
35630
|
+
export declare type GraphStoreUserHasTopCollaboratorInverseArgs = {
|
|
35421
35631
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35422
35632
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35423
35633
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35424
35634
|
id: Scalars['ID']['input'];
|
|
35425
|
-
sort?: InputMaybe<
|
|
35635
|
+
sort?: InputMaybe<GraphStoreUserHasTopCollaboratorSortInput>;
|
|
35426
35636
|
};
|
|
35427
35637
|
export declare type GraphStoreUserHasTopProjectArgs = {
|
|
35428
35638
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -38197,6 +38407,18 @@ export declare type GraphStoreDeploymentContainsCommitSortInput = {
|
|
|
38197
38407
|
export declare type GraphStoreEntityIsRelatedToEntitySortInput = {
|
|
38198
38408
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38199
38409
|
};
|
|
38410
|
+
export declare type GraphStoreExternalOrgHasExternalWorkerSortInput = {
|
|
38411
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38412
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38413
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38414
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38415
|
+
};
|
|
38416
|
+
export declare type GraphStoreExternalOrgHasUserAsMemberSortInput = {
|
|
38417
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38418
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38419
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38420
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38421
|
+
};
|
|
38200
38422
|
export declare type GraphStoreExternalPositionIsFilledByExternalWorkerSortInput = {
|
|
38201
38423
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38202
38424
|
};
|
|
@@ -38206,6 +38428,12 @@ export declare type GraphStoreExternalPositionManagesExternalPositionSortInput =
|
|
|
38206
38428
|
export declare type GraphStoreExternalWorkerConflatesToIdentity3pUserSortInput = {
|
|
38207
38429
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38208
38430
|
};
|
|
38431
|
+
export declare type GraphStoreExternalWorkerConflatesToUserSortInput = {
|
|
38432
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
38433
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
38434
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
38435
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
38436
|
+
};
|
|
38209
38437
|
export declare type GraphStoreFloatFilterInput = {
|
|
38210
38438
|
greaterThan?: InputMaybe<Scalars['Float']['input']>;
|
|
38211
38439
|
greaterThanOrEqual?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -44023,6 +44251,70 @@ export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseEdge = {
|
|
|
44023
44251
|
};
|
|
44024
44252
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityInverseUnion = ConfluenceBlogPost | ConfluencePage;
|
|
44025
44253
|
export declare type GraphStoreSimplifiedEntityIsRelatedToEntityUnion = ConfluenceBlogPost | ConfluencePage;
|
|
44254
|
+
export declare type GraphStoreSimplifiedExternalOrgHasExternalWorkerConnection = HasPageInfo & HasTotal & {
|
|
44255
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgHasExternalWorkerConnection';
|
|
44256
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerEdge>>>;
|
|
44257
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44258
|
+
pageInfo: PageInfo;
|
|
44259
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44260
|
+
};
|
|
44261
|
+
export declare type GraphStoreSimplifiedExternalOrgHasExternalWorkerEdge = {
|
|
44262
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgHasExternalWorkerEdge';
|
|
44263
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44264
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44265
|
+
id: Scalars['ID']['output'];
|
|
44266
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44267
|
+
node?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerUnion>;
|
|
44268
|
+
};
|
|
44269
|
+
export declare type GraphStoreSimplifiedExternalOrgHasExternalWorkerInverseConnection = HasPageInfo & HasTotal & {
|
|
44270
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgHasExternalWorkerInverseConnection';
|
|
44271
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerInverseEdge>>>;
|
|
44272
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44273
|
+
pageInfo: PageInfo;
|
|
44274
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44275
|
+
};
|
|
44276
|
+
export declare type GraphStoreSimplifiedExternalOrgHasExternalWorkerInverseEdge = {
|
|
44277
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgHasExternalWorkerInverseEdge';
|
|
44278
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44279
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44280
|
+
id: Scalars['ID']['output'];
|
|
44281
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44282
|
+
node?: Maybe<GraphStoreSimplifiedExternalOrgHasExternalWorkerInverseUnion>;
|
|
44283
|
+
};
|
|
44284
|
+
export declare type GraphStoreSimplifiedExternalOrgHasExternalWorkerInverseUnion = ExternalOrganisation;
|
|
44285
|
+
export declare type GraphStoreSimplifiedExternalOrgHasExternalWorkerUnion = ExternalWorker;
|
|
44286
|
+
export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberConnection = HasPageInfo & HasTotal & {
|
|
44287
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgHasUserAsMemberConnection';
|
|
44288
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgHasUserAsMemberEdge>>>;
|
|
44289
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44290
|
+
pageInfo: PageInfo;
|
|
44291
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44292
|
+
};
|
|
44293
|
+
export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberEdge = {
|
|
44294
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgHasUserAsMemberEdge';
|
|
44295
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44296
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44297
|
+
id: Scalars['ID']['output'];
|
|
44298
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44299
|
+
node?: Maybe<GraphStoreSimplifiedExternalOrgHasUserAsMemberUnion>;
|
|
44300
|
+
};
|
|
44301
|
+
export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseConnection = HasPageInfo & HasTotal & {
|
|
44302
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseConnection';
|
|
44303
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseEdge>>>;
|
|
44304
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44305
|
+
pageInfo: PageInfo;
|
|
44306
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44307
|
+
};
|
|
44308
|
+
export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseEdge = {
|
|
44309
|
+
__typename?: 'GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseEdge';
|
|
44310
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44311
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44312
|
+
id: Scalars['ID']['output'];
|
|
44313
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44314
|
+
node?: Maybe<GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseUnion>;
|
|
44315
|
+
};
|
|
44316
|
+
export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberInverseUnion = ExternalOrganisation;
|
|
44317
|
+
export declare type GraphStoreSimplifiedExternalOrgHasUserAsMemberUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
44026
44318
|
export declare type GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection = HasPageInfo & {
|
|
44027
44319
|
__typename?: 'GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerConnection';
|
|
44028
44320
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalPositionIsFilledByExternalWorkerEdge>>>;
|
|
@@ -44107,6 +44399,38 @@ export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserI
|
|
|
44107
44399
|
};
|
|
44108
44400
|
export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserInverseUnion = ExternalWorker;
|
|
44109
44401
|
export declare type GraphStoreSimplifiedExternalWorkerConflatesToIdentity3pUserUnion = ThirdPartyUser;
|
|
44402
|
+
export declare type GraphStoreSimplifiedExternalWorkerConflatesToUserConnection = HasPageInfo & HasTotal & {
|
|
44403
|
+
__typename?: 'GraphStoreSimplifiedExternalWorkerConflatesToUserConnection';
|
|
44404
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalWorkerConflatesToUserEdge>>>;
|
|
44405
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44406
|
+
pageInfo: PageInfo;
|
|
44407
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44408
|
+
};
|
|
44409
|
+
export declare type GraphStoreSimplifiedExternalWorkerConflatesToUserEdge = {
|
|
44410
|
+
__typename?: 'GraphStoreSimplifiedExternalWorkerConflatesToUserEdge';
|
|
44411
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44412
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44413
|
+
id: Scalars['ID']['output'];
|
|
44414
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44415
|
+
node?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToUserUnion>;
|
|
44416
|
+
};
|
|
44417
|
+
export declare type GraphStoreSimplifiedExternalWorkerConflatesToUserInverseConnection = HasPageInfo & HasTotal & {
|
|
44418
|
+
__typename?: 'GraphStoreSimplifiedExternalWorkerConflatesToUserInverseConnection';
|
|
44419
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedExternalWorkerConflatesToUserInverseEdge>>>;
|
|
44420
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
44421
|
+
pageInfo: PageInfo;
|
|
44422
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
44423
|
+
};
|
|
44424
|
+
export declare type GraphStoreSimplifiedExternalWorkerConflatesToUserInverseEdge = {
|
|
44425
|
+
__typename?: 'GraphStoreSimplifiedExternalWorkerConflatesToUserInverseEdge';
|
|
44426
|
+
createdAt: Scalars['DateTime']['output'];
|
|
44427
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
44428
|
+
id: Scalars['ID']['output'];
|
|
44429
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
44430
|
+
node?: Maybe<GraphStoreSimplifiedExternalWorkerConflatesToUserInverseUnion>;
|
|
44431
|
+
};
|
|
44432
|
+
export declare type GraphStoreSimplifiedExternalWorkerConflatesToUserInverseUnion = ExternalWorker;
|
|
44433
|
+
export declare type GraphStoreSimplifiedExternalWorkerConflatesToUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
44110
44434
|
export declare type GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection = HasPageInfo & {
|
|
44111
44435
|
__typename?: 'GraphStoreSimplifiedFocusAreaAssociatedToProjectConnection';
|
|
44112
44436
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedFocusAreaAssociatedToProjectEdge>>>;
|
|
@@ -48157,34 +48481,6 @@ export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverse
|
|
|
48157
48481
|
};
|
|
48158
48482
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48159
48483
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
48160
|
-
export declare type GraphStoreSimplifiedUserHasCollaboratorsConnection = HasPageInfo & {
|
|
48161
|
-
__typename?: 'GraphStoreSimplifiedUserHasCollaboratorsConnection';
|
|
48162
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasCollaboratorsEdge>>>;
|
|
48163
|
-
pageInfo: PageInfo;
|
|
48164
|
-
};
|
|
48165
|
-
export declare type GraphStoreSimplifiedUserHasCollaboratorsEdge = {
|
|
48166
|
-
__typename?: 'GraphStoreSimplifiedUserHasCollaboratorsEdge';
|
|
48167
|
-
createdAt: Scalars['DateTime']['output'];
|
|
48168
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
48169
|
-
id: Scalars['ID']['output'];
|
|
48170
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
48171
|
-
node?: Maybe<GraphStoreSimplifiedUserHasCollaboratorsUnion>;
|
|
48172
|
-
};
|
|
48173
|
-
export declare type GraphStoreSimplifiedUserHasCollaboratorsInverseConnection = HasPageInfo & {
|
|
48174
|
-
__typename?: 'GraphStoreSimplifiedUserHasCollaboratorsInverseConnection';
|
|
48175
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasCollaboratorsInverseEdge>>>;
|
|
48176
|
-
pageInfo: PageInfo;
|
|
48177
|
-
};
|
|
48178
|
-
export declare type GraphStoreSimplifiedUserHasCollaboratorsInverseEdge = {
|
|
48179
|
-
__typename?: 'GraphStoreSimplifiedUserHasCollaboratorsInverseEdge';
|
|
48180
|
-
createdAt: Scalars['DateTime']['output'];
|
|
48181
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
48182
|
-
id: Scalars['ID']['output'];
|
|
48183
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
48184
|
-
node?: Maybe<GraphStoreSimplifiedUserHasCollaboratorsInverseUnion>;
|
|
48185
|
-
};
|
|
48186
|
-
export declare type GraphStoreSimplifiedUserHasCollaboratorsInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48187
|
-
export declare type GraphStoreSimplifiedUserHasCollaboratorsUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48188
48484
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectConnection = HasPageInfo & HasTotal & {
|
|
48189
48485
|
__typename?: 'GraphStoreSimplifiedUserHasRelevantProjectConnection';
|
|
48190
48486
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasRelevantProjectEdge>>>;
|
|
@@ -48217,6 +48513,34 @@ export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseEdge = {
|
|
|
48217
48513
|
};
|
|
48218
48514
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48219
48515
|
export declare type GraphStoreSimplifiedUserHasRelevantProjectUnion = JiraProject;
|
|
48516
|
+
export declare type GraphStoreSimplifiedUserHasTopCollaboratorConnection = HasPageInfo & {
|
|
48517
|
+
__typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorConnection';
|
|
48518
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopCollaboratorEdge>>>;
|
|
48519
|
+
pageInfo: PageInfo;
|
|
48520
|
+
};
|
|
48521
|
+
export declare type GraphStoreSimplifiedUserHasTopCollaboratorEdge = {
|
|
48522
|
+
__typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorEdge';
|
|
48523
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48524
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48525
|
+
id: Scalars['ID']['output'];
|
|
48526
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48527
|
+
node?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorUnion>;
|
|
48528
|
+
};
|
|
48529
|
+
export declare type GraphStoreSimplifiedUserHasTopCollaboratorInverseConnection = HasPageInfo & {
|
|
48530
|
+
__typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorInverseConnection';
|
|
48531
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopCollaboratorInverseEdge>>>;
|
|
48532
|
+
pageInfo: PageInfo;
|
|
48533
|
+
};
|
|
48534
|
+
export declare type GraphStoreSimplifiedUserHasTopCollaboratorInverseEdge = {
|
|
48535
|
+
__typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorInverseEdge';
|
|
48536
|
+
createdAt: Scalars['DateTime']['output'];
|
|
48537
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
48538
|
+
id: Scalars['ID']['output'];
|
|
48539
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
48540
|
+
node?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorInverseUnion>;
|
|
48541
|
+
};
|
|
48542
|
+
export declare type GraphStoreSimplifiedUserHasTopCollaboratorInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48543
|
+
export declare type GraphStoreSimplifiedUserHasTopCollaboratorUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
48220
48544
|
export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
|
|
48221
48545
|
__typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
|
|
48222
48546
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopProjectEdge>>>;
|
|
@@ -50318,15 +50642,15 @@ export declare type GraphStoreUserFavoritedConfluencePageSortInput = {
|
|
|
50318
50642
|
export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
50319
50643
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50320
50644
|
};
|
|
50321
|
-
export declare type GraphStoreUserHasCollaboratorsSortInput = {
|
|
50322
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50323
|
-
};
|
|
50324
50645
|
export declare type GraphStoreUserHasRelevantProjectSortInput = {
|
|
50325
50646
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
50326
50647
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
50327
50648
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50328
50649
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
50329
50650
|
};
|
|
50651
|
+
export declare type GraphStoreUserHasTopCollaboratorSortInput = {
|
|
50652
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50653
|
+
};
|
|
50330
50654
|
export declare type GraphStoreUserHasTopProjectSortInput = {
|
|
50331
50655
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
50332
50656
|
};
|
|
@@ -50663,6 +50987,7 @@ export declare type GrowthRecContext = {
|
|
|
50663
50987
|
subproduct?: InputMaybe<Scalars['String']['input']>;
|
|
50664
50988
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
50665
50989
|
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
50990
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
50666
50991
|
workspaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
50667
50992
|
};
|
|
50668
50993
|
export declare type GrowthRecJiraTemplateRecommendation = GrowthRecRecommendation & {
|
|
@@ -50747,10 +51072,6 @@ export declare enum GrowthUnifiedProfileCompanyType {
|
|
|
50747
51072
|
Private = "PRIVATE",
|
|
50748
51073
|
Public = "PUBLIC"
|
|
50749
51074
|
}
|
|
50750
|
-
export declare type GrowthUnifiedProfileConfluenceActivityContext = {
|
|
50751
|
-
__typename?: 'GrowthUnifiedProfileConfluenceActivityContext';
|
|
50752
|
-
r28PageDwells?: Maybe<Scalars['Int']['output']>;
|
|
50753
|
-
};
|
|
50754
51075
|
export declare type GrowthUnifiedProfileConfluenceOnboardingContext = {
|
|
50755
51076
|
__typename?: 'GrowthUnifiedProfileConfluenceOnboardingContext';
|
|
50756
51077
|
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
@@ -50760,6 +51081,10 @@ export declare type GrowthUnifiedProfileConfluenceOnboardingContextInput = {
|
|
|
50760
51081
|
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
50761
51082
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
50762
51083
|
};
|
|
51084
|
+
export declare type GrowthUnifiedProfileConfluenceUserActivityContext = {
|
|
51085
|
+
__typename?: 'GrowthUnifiedProfileConfluenceUserActivityContext';
|
|
51086
|
+
r28PageDwells?: Maybe<Scalars['Int']['output']>;
|
|
51087
|
+
};
|
|
50763
51088
|
export declare type GrowthUnifiedProfileCreateProfileInput = {
|
|
50764
51089
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
50765
51090
|
anonymousId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -50793,6 +51118,9 @@ export declare enum GrowthUnifiedProfileEntryType {
|
|
|
50793
51118
|
Existing = "EXISTING",
|
|
50794
51119
|
New = "NEW"
|
|
50795
51120
|
}
|
|
51121
|
+
export declare type GrowthUnifiedProfileGetUnifiedUserProfileWhereInput = {
|
|
51122
|
+
tenantId: Scalars['String']['input'];
|
|
51123
|
+
};
|
|
50796
51124
|
export declare type GrowthUnifiedProfileInput = {
|
|
50797
51125
|
marketingContext?: InputMaybe<GrowthUnifiedProfileMarketingContextInput>;
|
|
50798
51126
|
onboardingContext?: InputMaybe<GrowthUnifiedProfileOnboardingContextInput>;
|
|
@@ -51013,19 +51341,27 @@ export declare type GrowthUnifiedProfileUserActivityContext = {
|
|
|
51013
51341
|
export declare type GrowthUnifiedProfileUserActivitySiteDetails = {
|
|
51014
51342
|
__typename?: 'GrowthUnifiedProfileUserActivitySiteDetails';
|
|
51015
51343
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
51016
|
-
confluence?: Maybe<
|
|
51344
|
+
confluence?: Maybe<GrowthUnifiedProfileConfluenceUserActivityContext>;
|
|
51017
51345
|
};
|
|
51018
51346
|
export declare type GrowthUnifiedProfileUserFootprints = {
|
|
51019
51347
|
__typename?: 'GrowthUnifiedProfileUserFootprints';
|
|
51020
51348
|
hasAtlassianAccount?: Maybe<Scalars['Boolean']['output']>;
|
|
51021
51349
|
products?: Maybe<Array<Maybe<GrowthUnifiedProfileProduct>>>;
|
|
51022
51350
|
};
|
|
51351
|
+
export declare enum GrowthUnifiedProfileUserIdType {
|
|
51352
|
+
AccountId = "ACCOUNT_ID",
|
|
51353
|
+
AnonymousId = "ANONYMOUS_ID"
|
|
51354
|
+
}
|
|
51023
51355
|
export declare type GrowthUnifiedProfileUserProfile = {
|
|
51024
51356
|
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
51025
51357
|
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
51026
51358
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
51027
51359
|
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
51028
51360
|
};
|
|
51361
|
+
export declare type GrowthUnifiedProfileUserProfileResult = {
|
|
51362
|
+
__typename?: 'GrowthUnifiedProfileUserProfileResult';
|
|
51363
|
+
userActivityContext?: Maybe<GrowthUnifiedProfileUserActivityContext>;
|
|
51364
|
+
};
|
|
51029
51365
|
export declare type GrowthUnifiedProfileUtm = {
|
|
51030
51366
|
__typename?: 'GrowthUnifiedProfileUtm';
|
|
51031
51367
|
channel?: Maybe<GrowthUnifiedProfileChannel>;
|
|
@@ -52156,7 +52492,7 @@ export declare type HelpLayoutCreatePayload = Payload & {
|
|
|
52156
52492
|
export declare type HelpLayoutCreationInput = {
|
|
52157
52493
|
parentAri: Scalars['ID']['input'];
|
|
52158
52494
|
sections: Array<HelpLayoutSectionInput>;
|
|
52159
|
-
type
|
|
52495
|
+
type: HelpLayoutType;
|
|
52160
52496
|
};
|
|
52161
52497
|
export declare type HelpLayoutEditorElement = HelpLayoutVisualEntity & Node & {
|
|
52162
52498
|
__typename?: 'HelpLayoutEditorElement';
|
|
@@ -53541,6 +53877,7 @@ export declare type InvocationResponsePayload = {
|
|
|
53541
53877
|
export declare type InvokeAuxEffectsInput = {
|
|
53542
53878
|
contextIds: Array<Scalars['ID']['input']>;
|
|
53543
53879
|
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
53880
|
+
extensionDetails?: InputMaybe<ExtensionDetailsInput>;
|
|
53544
53881
|
extensionId?: InputMaybe<Scalars['ID']['input']>;
|
|
53545
53882
|
payload: AuxEffectsInvocationPayload;
|
|
53546
53883
|
};
|
|
@@ -53554,6 +53891,7 @@ export declare type InvokeExtensionInput = {
|
|
|
53554
53891
|
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53555
53892
|
contextIds: Array<Scalars['ID']['input']>;
|
|
53556
53893
|
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
53894
|
+
extensionDetails?: InputMaybe<ExtensionDetailsInput>;
|
|
53557
53895
|
extensionId?: InputMaybe<Scalars['ID']['input']>;
|
|
53558
53896
|
payload: Scalars['JSON']['input'];
|
|
53559
53897
|
};
|
|
@@ -55073,6 +55411,19 @@ export declare type JiraBoardViewCardOptionsArgs = {
|
|
|
55073
55411
|
export declare type JiraBoardViewColumnsArgs = {
|
|
55074
55412
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
55075
55413
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55414
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
55415
|
+
};
|
|
55416
|
+
export declare type JiraBoardViewFilterConfigArgs = {
|
|
55417
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
55418
|
+
};
|
|
55419
|
+
export declare type JiraBoardViewGroupByConfigArgs = {
|
|
55420
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
55421
|
+
};
|
|
55422
|
+
export declare type JiraBoardViewIsViewConfigModifiedArgs = {
|
|
55423
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
55424
|
+
};
|
|
55425
|
+
export declare type JiraBoardViewSelectedWorkflowIdArgs = {
|
|
55426
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
55076
55427
|
};
|
|
55077
55428
|
export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
|
|
55078
55429
|
__typename?: 'JiraBoardViewAssigneeColumn';
|
|
@@ -55227,6 +55578,7 @@ export declare type JiraBulkEditInput = {
|
|
|
55227
55578
|
editedFieldsInput: JiraIssueFieldsInput;
|
|
55228
55579
|
selectedActions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
55229
55580
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
55581
|
+
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55230
55582
|
};
|
|
55231
55583
|
export declare enum JiraBulkEditMultiSelectFieldOptions {
|
|
55232
55584
|
Add = "ADD",
|
|
@@ -55307,6 +55659,7 @@ export declare type JiraBulkTransitionScreenLayoutIssuesToBeEditedArgs = {
|
|
|
55307
55659
|
};
|
|
55308
55660
|
export declare type JiraBulkTransitionsInput = {
|
|
55309
55661
|
selectedIssueIds: Array<Scalars['ID']['input']>;
|
|
55662
|
+
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55310
55663
|
transitionId: Scalars['String']['input'];
|
|
55311
55664
|
transitionScreenInput?: InputMaybe<JiraTransitionScreenInput>;
|
|
55312
55665
|
};
|
|
@@ -56713,6 +57066,7 @@ export declare type JiraCreateEmptyActivityConfigurationInput = {
|
|
|
56713
57066
|
export declare type JiraCreateFormattingRuleInput = {
|
|
56714
57067
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
56715
57068
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
57069
|
+
color?: InputMaybe<JiraFormattingColor>;
|
|
56716
57070
|
expression: JiraFormattingRuleExpressionInput;
|
|
56717
57071
|
formattingArea: JiraFormattingArea;
|
|
56718
57072
|
formattingColor?: InputMaybe<JiraColorInput>;
|
|
@@ -57158,6 +57512,7 @@ export declare type JiraDeleteCustomFilterPayload = Payload & {
|
|
|
57158
57512
|
};
|
|
57159
57513
|
export declare type JiraDeleteFormattingRuleInput = {
|
|
57160
57514
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
57515
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
57161
57516
|
ruleId: Scalars['ID']['input'];
|
|
57162
57517
|
};
|
|
57163
57518
|
export declare type JiraDeleteFormattingRulePayload = Payload & {
|
|
@@ -59155,7 +59510,9 @@ export declare type JiraIssueGroupsByFieldIdArgs = {
|
|
|
59155
59510
|
};
|
|
59156
59511
|
export declare type JiraIssueHasChildrenArgs = {
|
|
59157
59512
|
filterByProjectKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
59513
|
+
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
59158
59514
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
59515
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
59159
59516
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
59160
59517
|
};
|
|
59161
59518
|
export declare type JiraIssueHasProjectPermissionArgs = {
|
|
@@ -59537,6 +59894,7 @@ export declare type JiraIssueExportInput = {
|
|
|
59537
59894
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
59538
59895
|
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
59539
59896
|
modified?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59897
|
+
pagerStart?: InputMaybe<Scalars['Int']['input']>;
|
|
59540
59898
|
};
|
|
59541
59899
|
export declare type JiraIssueExportTask = {
|
|
59542
59900
|
__typename?: 'JiraIssueExportTask';
|
|
@@ -59948,6 +60306,7 @@ export declare type JiraIssueLinkFieldIssuesArgs = {
|
|
|
59948
60306
|
showSubTasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59949
60307
|
};
|
|
59950
60308
|
export declare type JiraIssueLinkFieldOperationInputForIssueTransitions = {
|
|
60309
|
+
inwardIssue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
59951
60310
|
linkIssues?: InputMaybe<JiraLinkedIssuesInput>;
|
|
59952
60311
|
linkType: Scalars['ID']['input'];
|
|
59953
60312
|
operation: JiraAddValueFieldOperations;
|
|
@@ -60914,10 +61273,13 @@ export declare type JiraJqlBuilderFieldValuesArgs = {
|
|
|
60914
61273
|
};
|
|
60915
61274
|
export declare type JiraJqlBuilderFieldsArgs = {
|
|
60916
61275
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61276
|
+
excludeFields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
60917
61277
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61278
|
+
forClause?: InputMaybe<JiraJqlClauseType>;
|
|
60918
61279
|
jqlContext?: InputMaybe<Scalars['String']['input']>;
|
|
60919
61280
|
jqlContextFieldsFilter?: InputMaybe<JiraJqlContextFieldsFilter>;
|
|
60920
61281
|
scope?: InputMaybe<JiraJqlScopeInput>;
|
|
61282
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
60921
61283
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
60922
61284
|
};
|
|
60923
61285
|
export declare type JiraJqlBuilderHydrateJqlQueryArgs = {
|
|
@@ -61760,6 +62122,7 @@ export declare type JiraMultipleGroupPickerFieldInput = {
|
|
|
61760
62122
|
groups: Array<JiraGroupInput>;
|
|
61761
62123
|
};
|
|
61762
62124
|
export declare type JiraMultipleGroupPickerFieldOperationInput = {
|
|
62125
|
+
groupIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
61763
62126
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
61764
62127
|
operation: JiraMultiValueFieldOperations;
|
|
61765
62128
|
};
|
|
@@ -62453,6 +62816,7 @@ export declare type JiraMutationRenameNavigationItemArgs = {
|
|
|
62453
62816
|
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
62454
62817
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
62455
62818
|
id: Scalars['ID']['input'];
|
|
62819
|
+
input?: InputMaybe<JiraReplaceIssueSearchViewFieldSetsInput>;
|
|
62456
62820
|
};
|
|
62457
62821
|
export declare type JiraMutationReplaceSpreadsheetViewFieldSetsArgs = {
|
|
62458
62822
|
fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
|
|
@@ -62833,6 +63197,7 @@ export declare type JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload
|
|
|
62833
63197
|
success: Scalars['Boolean']['output'];
|
|
62834
63198
|
};
|
|
62835
63199
|
export declare type JiraNaturalLanguageToJqlInput = {
|
|
63200
|
+
iteration?: InputMaybe<JiraIteration>;
|
|
62836
63201
|
naturalLanguageInput: Scalars['String']['input'];
|
|
62837
63202
|
searchContext?: InputMaybe<JiraSearchContextInput>;
|
|
62838
63203
|
};
|
|
@@ -62978,6 +63343,7 @@ export declare type JiraNotificationPreference = {
|
|
|
62978
63343
|
};
|
|
62979
63344
|
export declare type JiraNotificationPreferenceInput = {
|
|
62980
63345
|
channel?: InputMaybe<JiraNotificationChannelType>;
|
|
63346
|
+
channelsEnabled?: InputMaybe<Array<JiraNotificationChannelType>>;
|
|
62981
63347
|
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62982
63348
|
type: JiraNotificationType;
|
|
62983
63349
|
};
|
|
@@ -63299,6 +63665,7 @@ export declare type JiraOrderDirection = {
|
|
|
63299
63665
|
export declare type JiraOrderFormattingRuleInput = {
|
|
63300
63666
|
afterRuleId?: InputMaybe<Scalars['ID']['input']>;
|
|
63301
63667
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
63668
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
63302
63669
|
ruleId: Scalars['ID']['input'];
|
|
63303
63670
|
};
|
|
63304
63671
|
export declare type JiraOrderFormattingRulePayload = Payload & {
|
|
@@ -63622,6 +63989,7 @@ export declare type JiraPermissionSchemeGrantInput = {
|
|
|
63622
63989
|
};
|
|
63623
63990
|
export declare type JiraPermissionSchemeRemoveGrantInput = {
|
|
63624
63991
|
grantIds: Array<Scalars['Long']['input']>;
|
|
63992
|
+
grants?: InputMaybe<Array<JiraPermissionSchemeGrantInput>>;
|
|
63625
63993
|
schemeId: Scalars['ID']['input'];
|
|
63626
63994
|
};
|
|
63627
63995
|
export declare type JiraPermissionSchemeRemoveGrantPayload = Payload & {
|
|
@@ -63852,6 +64220,7 @@ export declare type JiraPlaybookStepRun = Node & {
|
|
|
63852
64220
|
id: Scalars['ID']['output'];
|
|
63853
64221
|
playbookId?: Maybe<Scalars['ID']['output']>;
|
|
63854
64222
|
playbookName?: Maybe<Scalars['String']['output']>;
|
|
64223
|
+
ruleId?: Maybe<Scalars['String']['output']>;
|
|
63855
64224
|
stepDuration?: Maybe<Scalars['Long']['output']>;
|
|
63856
64225
|
stepId?: Maybe<Scalars['ID']['output']>;
|
|
63857
64226
|
stepName?: Maybe<Scalars['String']['output']>;
|
|
@@ -63956,6 +64325,7 @@ export declare type JiraPriorityFieldPrioritiesArgs = {
|
|
|
63956
64325
|
export declare type JiraPriorityFieldOperationInput = {
|
|
63957
64326
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
63958
64327
|
operation: JiraSingleValueFieldOperations;
|
|
64328
|
+
priority?: InputMaybe<Scalars['String']['input']>;
|
|
63959
64329
|
};
|
|
63960
64330
|
export declare type JiraPriorityFieldPayload = Payload & {
|
|
63961
64331
|
__typename?: 'JiraPriorityFieldPayload';
|
|
@@ -65220,9 +65590,12 @@ export declare type JiraQueryFieldSetsByIdArgs = {
|
|
|
65220
65590
|
export declare type JiraQueryFieldsArgs = {
|
|
65221
65591
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
65222
65592
|
cloudId: Scalars['ID']['input'];
|
|
65593
|
+
excludeFields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
65223
65594
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65595
|
+
forClause?: InputMaybe<JiraJqlClauseType>;
|
|
65224
65596
|
jqlContext?: InputMaybe<Scalars['String']['input']>;
|
|
65225
65597
|
jqlContextFieldsFilter?: InputMaybe<JiraJqlContextFieldsFilter>;
|
|
65598
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
65226
65599
|
viewContext?: InputMaybe<JiraJqlViewContext>;
|
|
65227
65600
|
};
|
|
65228
65601
|
export declare type JiraQueryFilterArgs = {
|
|
@@ -65256,6 +65629,7 @@ export declare type JiraQueryGetArchivedIssuesFilterOptionsArgs = {
|
|
|
65256
65629
|
projectId: Scalars['ID']['input'];
|
|
65257
65630
|
};
|
|
65258
65631
|
export declare type JiraQueryGetArchivedIssuesForProjectArgs = {
|
|
65632
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
65259
65633
|
cloudId: Scalars['ID']['input'];
|
|
65260
65634
|
filterBy?: InputMaybe<JiraArchivedIssuesFilterInput>;
|
|
65261
65635
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -65514,6 +65888,8 @@ export declare type JiraQueryJiraFieldConfigsArgs = {
|
|
|
65514
65888
|
};
|
|
65515
65889
|
export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
65516
65890
|
cloudId: Scalars['ID']['input'];
|
|
65891
|
+
filterId?: InputMaybe<Scalars['String']['input']>;
|
|
65892
|
+
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65517
65893
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
65518
65894
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
65519
65895
|
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
@@ -68426,6 +68802,7 @@ export declare type JiraSingleGroupPickerFieldInput = {
|
|
|
68426
68802
|
group: JiraGroupInput;
|
|
68427
68803
|
};
|
|
68428
68804
|
export declare type JiraSingleGroupPickerFieldOperationInput = {
|
|
68805
|
+
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
68429
68806
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
68430
68807
|
operation: JiraSingleValueFieldOperations;
|
|
68431
68808
|
};
|
|
@@ -68516,6 +68893,7 @@ export declare type JiraSingleSelectFieldPayload = Payload & {
|
|
|
68516
68893
|
success: Scalars['Boolean']['output'];
|
|
68517
68894
|
};
|
|
68518
68895
|
export declare type JiraSingleSelectOperationInput = {
|
|
68896
|
+
fieldOption?: InputMaybe<Scalars['ID']['input']>;
|
|
68519
68897
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
68520
68898
|
operation: JiraSingleValueFieldOperations;
|
|
68521
68899
|
};
|
|
@@ -68552,6 +68930,7 @@ export declare type JiraSingleSelectUserPickerFieldInput = {
|
|
|
68552
68930
|
user: JiraUserInput;
|
|
68553
68931
|
};
|
|
68554
68932
|
export declare type JiraSingleSelectUserPickerFieldOperationInput = {
|
|
68933
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
68555
68934
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
68556
68935
|
operation: JiraSingleValueFieldOperations;
|
|
68557
68936
|
};
|
|
@@ -69619,9 +69998,11 @@ export declare type JiraUpdateForgeSingleGroupPickerFieldInput = {
|
|
|
69619
69998
|
};
|
|
69620
69999
|
export declare type JiraUpdateFormattingRuleInput = {
|
|
69621
70000
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
70001
|
+
color?: InputMaybe<JiraFormattingColor>;
|
|
69622
70002
|
expression?: InputMaybe<JiraFormattingRuleExpressionInput>;
|
|
69623
70003
|
formatType?: InputMaybe<JiraFormattingArea>;
|
|
69624
70004
|
formattingColor?: InputMaybe<JiraColorInput>;
|
|
70005
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
69625
70006
|
ruleId: Scalars['ID']['input'];
|
|
69626
70007
|
};
|
|
69627
70008
|
export declare type JiraUpdateFormattingRulePayload = Payload & {
|
|
@@ -70830,6 +71211,7 @@ export declare type JiraWatchesFieldSuggestedWatchersArgs = {
|
|
|
70830
71211
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
70831
71212
|
};
|
|
70832
71213
|
export declare type JiraWatchesFieldOperationInput = {
|
|
71214
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
70833
71215
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
70834
71216
|
operation: JiraWatchesOperations;
|
|
70835
71217
|
};
|
|
@@ -72857,6 +73239,7 @@ export declare type KnowledgeDiscoverySearchUser = {
|
|
|
72857
73239
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
72858
73240
|
id: Scalars['String']['output'];
|
|
72859
73241
|
locale?: Maybe<Scalars['String']['output']>;
|
|
73242
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
72860
73243
|
name: Scalars['String']['output'];
|
|
72861
73244
|
title?: Maybe<Scalars['String']['output']>;
|
|
72862
73245
|
zoneInfo?: Maybe<Scalars['String']['output']>;
|
|
@@ -73272,6 +73655,10 @@ export declare type LoomSpace = Node & {
|
|
|
73272
73655
|
id: Scalars['ID']['output'];
|
|
73273
73656
|
name: Scalars['String']['output'];
|
|
73274
73657
|
};
|
|
73658
|
+
export declare enum LoomSpacePrivacyType {
|
|
73659
|
+
Private = "private",
|
|
73660
|
+
Workspace = "workspace"
|
|
73661
|
+
}
|
|
73275
73662
|
export declare type LoomToken = {
|
|
73276
73663
|
__typename?: 'LoomToken';
|
|
73277
73664
|
token: Scalars['String']['output'];
|
|
@@ -73405,6 +73792,8 @@ export declare type LoomVideo = Node & {
|
|
|
73405
73792
|
name: Scalars['String']['output'];
|
|
73406
73793
|
owner?: Maybe<User>;
|
|
73407
73794
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
73795
|
+
playableDuration?: Maybe<Scalars['Float']['output']>;
|
|
73796
|
+
sourceDuration?: Maybe<Scalars['Float']['output']>;
|
|
73408
73797
|
transcript?: Maybe<LoomTranscript>;
|
|
73409
73798
|
transcriptLanguage?: Maybe<LoomTranscriptLanguage>;
|
|
73410
73799
|
url: Scalars['String']['output'];
|
|
@@ -75941,7 +76330,9 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
75941
76330
|
__typename?: 'MercuryChangeProposal';
|
|
75942
76331
|
comments?: Maybe<MercuryChangeProposalCommentConnection>;
|
|
75943
76332
|
description?: Maybe<Scalars['String']['output']>;
|
|
76333
|
+
focusArea?: Maybe<MercuryFocusArea>;
|
|
75944
76334
|
id: Scalars['ID']['output'];
|
|
76335
|
+
impact?: Maybe<Scalars['Int']['output']>;
|
|
75945
76336
|
name: Scalars['String']['output'];
|
|
75946
76337
|
owner?: Maybe<User>;
|
|
75947
76338
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
@@ -76057,6 +76448,8 @@ export declare type MercuryCreateChangeProposalCommentPayload = Payload & {
|
|
|
76057
76448
|
export declare type MercuryCreateChangeProposalInput = {
|
|
76058
76449
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
76059
76450
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
76451
|
+
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
76452
|
+
impact?: InputMaybe<Scalars['Int']['input']>;
|
|
76060
76453
|
name: Scalars['String']['input'];
|
|
76061
76454
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
76062
76455
|
strategicEventId: Scalars['ID']['input'];
|
|
@@ -76745,6 +77138,16 @@ export declare type MercuryMediaToken = {
|
|
|
76745
77138
|
__typename?: 'MercuryMediaToken';
|
|
76746
77139
|
token: Scalars['String']['output'];
|
|
76747
77140
|
};
|
|
77141
|
+
export declare type MercuryMoveChangesInput = {
|
|
77142
|
+
changes: Array<Scalars['ID']['input']>;
|
|
77143
|
+
sourceChangeProposalId: Scalars['ID']['input'];
|
|
77144
|
+
targetChangeProposalId: Scalars['ID']['input'];
|
|
77145
|
+
};
|
|
77146
|
+
export declare type MercuryMoveChangesPayload = Payload & {
|
|
77147
|
+
__typename?: 'MercuryMoveChangesPayload';
|
|
77148
|
+
errors?: Maybe<Array<MutationError>>;
|
|
77149
|
+
success: Scalars['Boolean']['output'];
|
|
77150
|
+
};
|
|
76748
77151
|
export declare type MercuryMoveFundsChange = MercuryChangeInterface & Node & {
|
|
76749
77152
|
__typename?: 'MercuryMoveFundsChange';
|
|
76750
77153
|
amount: Scalars['BigDecimal']['output'];
|
|
@@ -77504,13 +77907,19 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
77504
77907
|
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
77505
77908
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
77506
77909
|
deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
|
|
77910
|
+
moveChanges?: Maybe<MercuryMoveChangesPayload>;
|
|
77507
77911
|
proposeChanges?: Maybe<MercuryProposeChangesPayload>;
|
|
77508
77912
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
77509
77913
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
77510
77914
|
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
77511
77915
|
updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
77916
|
+
updateChangeProposalImpact?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
77512
77917
|
updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
77513
77918
|
updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
77919
|
+
updateMoveFundsChange: MercuryUpdateChangePayload;
|
|
77920
|
+
updateMovePositionsChange: MercuryUpdateChangePayload;
|
|
77921
|
+
updateRequestFundsChange: MercuryUpdateChangePayload;
|
|
77922
|
+
updateRequestPositionsChange: MercuryUpdateChangePayload;
|
|
77514
77923
|
updateStrategicEventComment?: Maybe<MercuryUpdateStrategicEventCommentPayload>;
|
|
77515
77924
|
updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
77516
77925
|
updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
@@ -77541,6 +77950,9 @@ export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
|
|
|
77541
77950
|
export declare type MercuryStrategicEventsMutationApiDeleteStrategicEventCommentArgs = {
|
|
77542
77951
|
input: MercuryDeleteStrategicEventCommentInput;
|
|
77543
77952
|
};
|
|
77953
|
+
export declare type MercuryStrategicEventsMutationApiMoveChangesArgs = {
|
|
77954
|
+
input: MercuryMoveChangesInput;
|
|
77955
|
+
};
|
|
77544
77956
|
export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
|
|
77545
77957
|
input: MercuryProposeChangesInput;
|
|
77546
77958
|
};
|
|
@@ -77556,12 +77968,27 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalComment
|
|
|
77556
77968
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalDescriptionArgs = {
|
|
77557
77969
|
input: MercuryUpdateChangeProposalDescriptionInput;
|
|
77558
77970
|
};
|
|
77971
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalImpactArgs = {
|
|
77972
|
+
input: MercuryUpdateChangeProposalImpactInput;
|
|
77973
|
+
};
|
|
77559
77974
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalNameArgs = {
|
|
77560
77975
|
input: MercuryUpdateChangeProposalNameInput;
|
|
77561
77976
|
};
|
|
77562
77977
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerArgs = {
|
|
77563
77978
|
input: MercuryUpdateChangeProposalOwnerInput;
|
|
77564
77979
|
};
|
|
77980
|
+
export declare type MercuryStrategicEventsMutationApiUpdateMoveFundsChangeArgs = {
|
|
77981
|
+
input: MercuryUpdateMoveFundsChangeInput;
|
|
77982
|
+
};
|
|
77983
|
+
export declare type MercuryStrategicEventsMutationApiUpdateMovePositionsChangeArgs = {
|
|
77984
|
+
input: MercuryUpdateMovePositionsChangeInput;
|
|
77985
|
+
};
|
|
77986
|
+
export declare type MercuryStrategicEventsMutationApiUpdateRequestFundsChangeArgs = {
|
|
77987
|
+
input: MercuryUpdateRequestFundsChangeInput;
|
|
77988
|
+
};
|
|
77989
|
+
export declare type MercuryStrategicEventsMutationApiUpdateRequestPositionsChangeArgs = {
|
|
77990
|
+
input: MercuryUpdateRequestPositionsChangeInput;
|
|
77991
|
+
};
|
|
77565
77992
|
export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventCommentArgs = {
|
|
77566
77993
|
input: MercuryUpdateStrategicEventCommentInput;
|
|
77567
77994
|
};
|
|
@@ -77739,6 +78166,18 @@ export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
|
|
|
77739
78166
|
errors?: Maybe<Array<MutationError>>;
|
|
77740
78167
|
success: Scalars['Boolean']['output'];
|
|
77741
78168
|
};
|
|
78169
|
+
export declare type MercuryUpdateChangeFocusArea = {
|
|
78170
|
+
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
78171
|
+
};
|
|
78172
|
+
export declare type MercuryUpdateChangeMonetaryAmount = {
|
|
78173
|
+
monetaryAmount?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
78174
|
+
};
|
|
78175
|
+
export declare type MercuryUpdateChangePayload = Payload & {
|
|
78176
|
+
__typename?: 'MercuryUpdateChangePayload';
|
|
78177
|
+
change?: Maybe<MercuryChange>;
|
|
78178
|
+
errors?: Maybe<Array<MutationError>>;
|
|
78179
|
+
success: Scalars['Boolean']['output'];
|
|
78180
|
+
};
|
|
77742
78181
|
export declare type MercuryUpdateChangeProposalCommentInput = {
|
|
77743
78182
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
77744
78183
|
content: Scalars['String']['input'];
|
|
@@ -77755,6 +78194,14 @@ export declare type MercuryUpdateChangeProposalDescriptionInput = {
|
|
|
77755
78194
|
description: Scalars['String']['input'];
|
|
77756
78195
|
id: Scalars['ID']['input'];
|
|
77757
78196
|
};
|
|
78197
|
+
export declare type MercuryUpdateChangeProposalFocusAreaInput = {
|
|
78198
|
+
focusAreaId: Scalars['ID']['input'];
|
|
78199
|
+
id: Scalars['ID']['input'];
|
|
78200
|
+
};
|
|
78201
|
+
export declare type MercuryUpdateChangeProposalImpactInput = {
|
|
78202
|
+
id: Scalars['ID']['input'];
|
|
78203
|
+
impact: Scalars['Int']['input'];
|
|
78204
|
+
};
|
|
77758
78205
|
export declare type MercuryUpdateChangeProposalNameInput = {
|
|
77759
78206
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
77760
78207
|
id: Scalars['ID']['input'];
|
|
@@ -77771,6 +78218,9 @@ export declare type MercuryUpdateChangeProposalPayload = Payload & {
|
|
|
77771
78218
|
success: Scalars['Boolean']['output'];
|
|
77772
78219
|
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
77773
78220
|
};
|
|
78221
|
+
export declare type MercuryUpdateChangeQuantity = {
|
|
78222
|
+
quantity?: InputMaybe<Scalars['Int']['input']>;
|
|
78223
|
+
};
|
|
77774
78224
|
export declare type MercuryUpdateCommentInput = {
|
|
77775
78225
|
cloudId: Scalars['ID']['input'];
|
|
77776
78226
|
commentText: Scalars['MercuryJSONString']['input'];
|
|
@@ -77822,6 +78272,19 @@ export declare type MercuryUpdateFocusAreaTargetDateInput = {
|
|
|
77822
78272
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
77823
78273
|
targetDateType?: InputMaybe<MercuryTargetDateType>;
|
|
77824
78274
|
};
|
|
78275
|
+
export declare type MercuryUpdateMoveFundsChangeInput = {
|
|
78276
|
+
amount?: InputMaybe<MercuryUpdateChangeMonetaryAmount>;
|
|
78277
|
+
changeId: Scalars['ID']['input'];
|
|
78278
|
+
sourceFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusArea>;
|
|
78279
|
+
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusArea>;
|
|
78280
|
+
};
|
|
78281
|
+
export declare type MercuryUpdateMovePositionsChangeInput = {
|
|
78282
|
+
changeId: Scalars['ID']['input'];
|
|
78283
|
+
cost?: InputMaybe<MercuryUpdateChangeMonetaryAmount>;
|
|
78284
|
+
positionsAmount?: InputMaybe<MercuryUpdateChangeQuantity>;
|
|
78285
|
+
sourceFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusArea>;
|
|
78286
|
+
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusArea>;
|
|
78287
|
+
};
|
|
77825
78288
|
export declare type MercuryUpdatePortfolioNameInput = {
|
|
77826
78289
|
cloudId: Scalars['ID']['input'];
|
|
77827
78290
|
id: Scalars['ID']['input'];
|
|
@@ -77833,6 +78296,17 @@ export declare type MercuryUpdatePortfolioPayload = Payload & {
|
|
|
77833
78296
|
success: Scalars['Boolean']['output'];
|
|
77834
78297
|
updatedPortfolio?: Maybe<MercuryPortfolio>;
|
|
77835
78298
|
};
|
|
78299
|
+
export declare type MercuryUpdateRequestFundsChangeInput = {
|
|
78300
|
+
amount?: InputMaybe<MercuryUpdateChangeMonetaryAmount>;
|
|
78301
|
+
changeId: Scalars['ID']['input'];
|
|
78302
|
+
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusArea>;
|
|
78303
|
+
};
|
|
78304
|
+
export declare type MercuryUpdateRequestPositionsChangeInput = {
|
|
78305
|
+
changeId: Scalars['ID']['input'];
|
|
78306
|
+
cost?: InputMaybe<MercuryUpdateChangeMonetaryAmount>;
|
|
78307
|
+
positionsAmount?: InputMaybe<MercuryUpdateChangeQuantity>;
|
|
78308
|
+
targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusArea>;
|
|
78309
|
+
};
|
|
77836
78310
|
export declare type MercuryUpdateStrategicEventCommentInput = {
|
|
77837
78311
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
77838
78312
|
content: Scalars['String']['input'];
|
|
@@ -78542,6 +79016,7 @@ export declare type Mutation = {
|
|
|
78542
79016
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
78543
79017
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
78544
79018
|
radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
79019
|
+
radar_updateConnector?: Maybe<RadarConnector>;
|
|
78545
79020
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
78546
79021
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
78547
79022
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
@@ -79979,6 +80454,10 @@ export declare type MutationRadar_DeleteRoleAssignmentArgs = {
|
|
|
79979
80454
|
cloudId: Scalars['ID']['input'];
|
|
79980
80455
|
input: RadarRoleAssignmentRequest;
|
|
79981
80456
|
};
|
|
80457
|
+
export declare type MutationRadar_UpdateConnectorArgs = {
|
|
80458
|
+
cloudId: Scalars['ID']['input'];
|
|
80459
|
+
input: RadarConnectorsInput;
|
|
80460
|
+
};
|
|
79982
80461
|
export declare type MutationRadar_UpdateFieldSettingsArgs = {
|
|
79983
80462
|
cloudId: Scalars['ID']['input'];
|
|
79984
80463
|
input: Array<RadarFieldSettingsInput>;
|
|
@@ -81369,6 +81848,7 @@ export declare type PageInfo = {
|
|
|
81369
81848
|
export declare type PageInput = {
|
|
81370
81849
|
body?: InputMaybe<PageBodyInput>;
|
|
81371
81850
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
81851
|
+
restrictions?: InputMaybe<PageRestrictionsInput>;
|
|
81372
81852
|
status?: InputMaybe<PageStatusInput>;
|
|
81373
81853
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
81374
81854
|
};
|
|
@@ -83501,6 +83981,7 @@ export declare type Query = {
|
|
|
83501
83981
|
groupsWithContentRestrictions?: Maybe<Array<Maybe<GroupWithRestrictions>>>;
|
|
83502
83982
|
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
83503
83983
|
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
83984
|
+
growthUnifiedProfile_getUnifiedUserProfile?: Maybe<GrowthUnifiedProfileUserProfileResult>;
|
|
83504
83985
|
hasUserAccessAdminRole?: Maybe<Scalars['Boolean']['output']>;
|
|
83505
83986
|
hasUserCommented?: Maybe<Scalars['Boolean']['output']>;
|
|
83506
83987
|
helpCenter?: Maybe<HelpCenterQueryApi>;
|
|
@@ -83544,6 +84025,7 @@ export declare type Query = {
|
|
|
83544
84025
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
83545
84026
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
83546
84027
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
84028
|
+
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
83547
84029
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
83548
84030
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
83549
84031
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
@@ -83560,6 +84042,7 @@ export declare type Query = {
|
|
|
83560
84042
|
loomUserStatus?: Maybe<LoomUserStatus>;
|
|
83561
84043
|
loom_comment?: Maybe<LoomComment>;
|
|
83562
84044
|
loom_comments?: Maybe<Array<Maybe<LoomComment>>>;
|
|
84045
|
+
loom_createSpace?: Maybe<LoomSpace>;
|
|
83563
84046
|
loom_meeting?: Maybe<LoomMeeting>;
|
|
83564
84047
|
loom_meetingRecurrence?: Maybe<LoomMeetingRecurrence>;
|
|
83565
84048
|
loom_meetingRecurrences?: Maybe<Array<Maybe<LoomMeetingRecurrence>>>;
|
|
@@ -83651,6 +84134,7 @@ export declare type Query = {
|
|
|
83651
84134
|
publishConditions?: Maybe<Array<Maybe<PublishConditions>>>;
|
|
83652
84135
|
pushNotificationSettings?: Maybe<ConfluencePushNotificationSettings>;
|
|
83653
84136
|
quickReload?: Maybe<QuickReload>;
|
|
84137
|
+
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
83654
84138
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
83655
84139
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
83656
84140
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
@@ -85676,6 +86160,11 @@ export declare type QueryGrowthUnifiedProfile_GetUnifiedProfileArgs = {
|
|
|
85676
86160
|
anonymousId?: InputMaybe<Scalars['ID']['input']>;
|
|
85677
86161
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
|
85678
86162
|
};
|
|
86163
|
+
export declare type QueryGrowthUnifiedProfile_GetUnifiedUserProfileArgs = {
|
|
86164
|
+
id: Scalars['String']['input'];
|
|
86165
|
+
idType: GrowthUnifiedProfileUserIdType;
|
|
86166
|
+
where?: InputMaybe<GrowthUnifiedProfileGetUnifiedUserProfileWhereInput>;
|
|
86167
|
+
};
|
|
85679
86168
|
export declare type QueryHasUserCommentedArgs = {
|
|
85680
86169
|
accountId: Scalars['String']['input'];
|
|
85681
86170
|
};
|
|
@@ -85800,6 +86289,9 @@ export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
|
85800
86289
|
export declare type QueryJira_IssueSearchViewsByIdsArgs = {
|
|
85801
86290
|
ids: Array<Scalars['ID']['input']>;
|
|
85802
86291
|
};
|
|
86292
|
+
export declare type QueryJira_IssuesByIdsArgs = {
|
|
86293
|
+
ids: Array<Scalars['ID']['input']>;
|
|
86294
|
+
};
|
|
85803
86295
|
export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
85804
86296
|
cloudId: Scalars['ID']['input'];
|
|
85805
86297
|
idOrKey: Scalars['String']['input'];
|
|
@@ -85834,6 +86326,12 @@ export declare type QueryLoom_CommentArgs = {
|
|
|
85834
86326
|
export declare type QueryLoom_CommentsArgs = {
|
|
85835
86327
|
ids: Array<Scalars['ID']['input']>;
|
|
85836
86328
|
};
|
|
86329
|
+
export declare type QueryLoom_CreateSpaceArgs = {
|
|
86330
|
+
analyticsSource?: InputMaybe<Scalars['String']['input']>;
|
|
86331
|
+
name: Scalars['String']['input'];
|
|
86332
|
+
privacy?: InputMaybe<LoomSpacePrivacyType>;
|
|
86333
|
+
siteId: Scalars['ID']['input'];
|
|
86334
|
+
};
|
|
85837
86335
|
export declare type QueryLoom_MeetingArgs = {
|
|
85838
86336
|
id: Scalars['ID']['input'];
|
|
85839
86337
|
};
|
|
@@ -86125,6 +86623,9 @@ export declare type QueryQuickReloadArgs = {
|
|
|
86125
86623
|
pageId: Scalars['Long']['input'];
|
|
86126
86624
|
since: Scalars['Long']['input'];
|
|
86127
86625
|
};
|
|
86626
|
+
export declare type QueryRadar_ConnectorsArgs = {
|
|
86627
|
+
cloudId: Scalars['ID']['input'];
|
|
86628
|
+
};
|
|
86128
86629
|
export declare type QueryRadar_FieldValuesArgs = {
|
|
86129
86630
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86130
86631
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -86153,6 +86654,7 @@ export declare type QueryRadar_PositionsSearchArgs = {
|
|
|
86153
86654
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86154
86655
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
86155
86656
|
cloudId: Scalars['ID']['input'];
|
|
86657
|
+
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
86156
86658
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
86157
86659
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
86158
86660
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -86662,6 +87164,19 @@ export declare type RadarConnection = {
|
|
|
86662
87164
|
pageInfo: PageInfo;
|
|
86663
87165
|
totalCount: Scalars['Int']['output'];
|
|
86664
87166
|
};
|
|
87167
|
+
export declare type RadarConnector = {
|
|
87168
|
+
__typename?: 'RadarConnector';
|
|
87169
|
+
connectorId: Scalars['ID']['output'];
|
|
87170
|
+
connectorName?: Maybe<Scalars['String']['output']>;
|
|
87171
|
+
connectorType?: Maybe<Scalars['String']['output']>;
|
|
87172
|
+
id: Scalars['ID']['output'];
|
|
87173
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
87174
|
+
isHealthy?: Maybe<Scalars['Boolean']['output']>;
|
|
87175
|
+
};
|
|
87176
|
+
export declare type RadarConnectorsInput = {
|
|
87177
|
+
connectorId: Scalars['ID']['input'];
|
|
87178
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
87179
|
+
};
|
|
86665
87180
|
export declare type RadarCustomFieldInput = {
|
|
86666
87181
|
displayName: Scalars['String']['input'];
|
|
86667
87182
|
entity: RadarEntityType;
|
|
@@ -86680,7 +87195,6 @@ export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
|
|
|
86680
87195
|
functions: Array<RadarFunctionId>;
|
|
86681
87196
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
86682
87197
|
operators: Array<RadarFilterOperators>;
|
|
86683
|
-
plurality: RadarFilterPlurality;
|
|
86684
87198
|
type: RadarFilterInputType;
|
|
86685
87199
|
};
|
|
86686
87200
|
export declare type RadarEdge = {
|
|
@@ -86765,14 +87279,8 @@ export declare type RadarFilterOptions = {
|
|
|
86765
87279
|
functions: Array<RadarFunctionId>;
|
|
86766
87280
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
86767
87281
|
operators: Array<RadarFilterOperators>;
|
|
86768
|
-
plurality: RadarFilterPlurality;
|
|
86769
87282
|
type: RadarFilterInputType;
|
|
86770
87283
|
};
|
|
86771
|
-
export declare enum RadarFilterPlurality {
|
|
86772
|
-
And = "AND",
|
|
86773
|
-
None = "NONE",
|
|
86774
|
-
Or = "OR"
|
|
86775
|
-
}
|
|
86776
87284
|
export declare type RadarFocusAreaMappingsInput = {
|
|
86777
87285
|
focusAreaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
86778
87286
|
positionAri: Scalars['ID']['input'];
|
|
@@ -86922,7 +87430,6 @@ export declare type RadarStaticStringFilterOptions = RadarFilterOptions & {
|
|
|
86922
87430
|
functions: Array<RadarFunctionId>;
|
|
86923
87431
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
86924
87432
|
operators: Array<RadarFilterOperators>;
|
|
86925
|
-
plurality: RadarFilterPlurality;
|
|
86926
87433
|
type: RadarFilterInputType;
|
|
86927
87434
|
values?: Maybe<Array<Maybe<RadarFieldValue>>>;
|
|
86928
87435
|
};
|
|
@@ -88808,10 +89315,13 @@ export declare type SearchDefaultResult = SearchResult & {
|
|
|
88808
89315
|
export declare type SearchExperimentContextInput = {
|
|
88809
89316
|
experimentId?: InputMaybe<Scalars['String']['input']>;
|
|
88810
89317
|
experimentLayers?: InputMaybe<Array<InputMaybe<SearchExperimentLayer>>>;
|
|
89318
|
+
shadowExperimentId?: InputMaybe<Scalars['String']['input']>;
|
|
88811
89319
|
};
|
|
88812
89320
|
export declare type SearchExperimentLayer = {
|
|
88813
89321
|
definitions?: InputMaybe<Array<InputMaybe<SearchLayerDefinition>>>;
|
|
89322
|
+
layerId?: InputMaybe<Scalars['String']['input']>;
|
|
88814
89323
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
89324
|
+
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
88815
89325
|
};
|
|
88816
89326
|
export declare type SearchExternalContainerFilter = {
|
|
88817
89327
|
type: Scalars['String']['input'];
|
|
@@ -88890,6 +89400,7 @@ export declare type SearchJiraIssueFilter = {
|
|
|
88890
89400
|
watcherARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
88891
89401
|
};
|
|
88892
89402
|
export declare type SearchJiraProjectFilter = {
|
|
89403
|
+
projectType?: InputMaybe<SearchProjectType>;
|
|
88893
89404
|
projectTypes?: InputMaybe<Array<SearchProjectType>>;
|
|
88894
89405
|
};
|
|
88895
89406
|
export declare type SearchL2Feature = {
|
|
@@ -90306,10 +90817,13 @@ export declare type ShepherdCreateAlertInput = {
|
|
|
90306
90817
|
actor?: InputMaybe<ShepherdActorInput>;
|
|
90307
90818
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
90308
90819
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90820
|
+
customDetectionHighlight?: InputMaybe<ShepherdCustomDetectionHighlightInput>;
|
|
90309
90821
|
customFields?: InputMaybe<Scalars['JSON']['input']>;
|
|
90310
90822
|
deduplicationKey?: InputMaybe<Scalars['String']['input']>;
|
|
90823
|
+
highlight?: InputMaybe<ShepherdHighlightInput>;
|
|
90311
90824
|
orgId?: InputMaybe<Scalars['ID']['input']>;
|
|
90312
90825
|
status?: InputMaybe<ShepherdAlertStatus>;
|
|
90826
|
+
template?: InputMaybe<ShepherdAlertTemplateType>;
|
|
90313
90827
|
time?: InputMaybe<ShepherdTimeInput>;
|
|
90314
90828
|
title: Scalars['String']['input'];
|
|
90315
90829
|
type?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -90706,6 +91220,7 @@ export declare type ShepherdQuery = {
|
|
|
90706
91220
|
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
90707
91221
|
};
|
|
90708
91222
|
export declare type ShepherdQueryShepherdActivityArgs = {
|
|
91223
|
+
actions?: InputMaybe<Array<InputMaybe<ShepherdActionType>>>;
|
|
90709
91224
|
actor?: InputMaybe<Scalars['ID']['input']>;
|
|
90710
91225
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90711
91226
|
alertType?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -90714,6 +91229,7 @@ export declare type ShepherdQueryShepherdActivityArgs = {
|
|
|
90714
91229
|
first: Scalars['Int']['input'];
|
|
90715
91230
|
orgId?: InputMaybe<Scalars['String']['input']>;
|
|
90716
91231
|
startTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
91232
|
+
subject?: InputMaybe<ShepherdSubjectInput>;
|
|
90717
91233
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
90718
91234
|
};
|
|
90719
91235
|
export declare type ShepherdQueryShepherdActorArgs = {
|
|
@@ -94433,6 +94949,7 @@ export declare type TownsquareQueryApiGoalSearchArgs = {
|
|
|
94433
94949
|
};
|
|
94434
94950
|
export declare type TownsquareQueryApiGoalTqlArgs = {
|
|
94435
94951
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
94952
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
94436
94953
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
94437
94954
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94438
94955
|
q: Scalars['String']['input'];
|
|
@@ -94474,6 +94991,7 @@ export declare type TownsquareQueryApiProjectSearchArgs = {
|
|
|
94474
94991
|
};
|
|
94475
94992
|
export declare type TownsquareQueryApiProjectTqlArgs = {
|
|
94476
94993
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
94994
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
94477
94995
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
94478
94996
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94479
94997
|
q: Scalars['String']['input'];
|
|
@@ -94722,6 +95240,14 @@ export declare type TrelloActionAttachmentPreviewEntity = {
|
|
|
94722
95240
|
type?: Maybe<Scalars['String']['output']>;
|
|
94723
95241
|
url?: Maybe<Scalars['URL']['output']>;
|
|
94724
95242
|
};
|
|
95243
|
+
export declare type TrelloActionBoardEntity = {
|
|
95244
|
+
__typename?: 'TrelloActionBoardEntity';
|
|
95245
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
95246
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
95247
|
+
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
95248
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
95249
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
95250
|
+
};
|
|
94725
95251
|
export declare type TrelloActionCardEntity = {
|
|
94726
95252
|
__typename?: 'TrelloActionCardEntity';
|
|
94727
95253
|
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -94752,6 +95278,11 @@ export declare type TrelloActionCommentEntity = {
|
|
|
94752
95278
|
textHtml?: Maybe<Scalars['String']['output']>;
|
|
94753
95279
|
type?: Maybe<Scalars['String']['output']>;
|
|
94754
95280
|
};
|
|
95281
|
+
export declare type TrelloActionDateEntity = {
|
|
95282
|
+
__typename?: 'TrelloActionDateEntity';
|
|
95283
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
95284
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
95285
|
+
};
|
|
94755
95286
|
export declare type TrelloActionLimits = {
|
|
94756
95287
|
__typename?: 'TrelloActionLimits';
|
|
94757
95288
|
reactions?: Maybe<TrelloReactionLimits>;
|
|
@@ -94951,6 +95482,7 @@ export declare type TrelloBoard = Node & {
|
|
|
94951
95482
|
shortLink: Scalars['TrelloShortLink']['output'];
|
|
94952
95483
|
shortUrl?: Maybe<Scalars['URL']['output']>;
|
|
94953
95484
|
tags?: Maybe<TrelloTagConnection>;
|
|
95485
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
94954
95486
|
url?: Maybe<Scalars['URL']['output']>;
|
|
94955
95487
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
94956
95488
|
workspace?: Maybe<TrelloWorkspace>;
|
|
@@ -95246,6 +95778,7 @@ export declare type TrelloCard = Node & {
|
|
|
95246
95778
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
95247
95779
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
95248
95780
|
shortUrl?: Maybe<Scalars['URL']['output']>;
|
|
95781
|
+
singleInstrumentationId?: Maybe<Scalars['String']['output']>;
|
|
95249
95782
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
95250
95783
|
stickers?: Maybe<TrelloStickerConnection>;
|
|
95251
95784
|
url?: Maybe<Scalars['URL']['output']>;
|
|
@@ -95305,10 +95838,13 @@ export declare enum TrelloCardActionType {
|
|
|
95305
95838
|
AddMember = "ADD_MEMBER",
|
|
95306
95839
|
Comment = "COMMENT",
|
|
95307
95840
|
MoveCard = "MOVE_CARD",
|
|
95841
|
+
MoveCardToBoard = "MOVE_CARD_TO_BOARD",
|
|
95842
|
+
MoveInboxCardToBoard = "MOVE_INBOX_CARD_TO_BOARD",
|
|
95308
95843
|
RemoveChecklist = "REMOVE_CHECKLIST",
|
|
95309
|
-
RemoveMember = "REMOVE_MEMBER"
|
|
95844
|
+
RemoveMember = "REMOVE_MEMBER",
|
|
95845
|
+
UpdateCardDue = "UPDATE_CARD_DUE"
|
|
95310
95846
|
}
|
|
95311
|
-
export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloMoveCardAction | TrelloRemoveChecklistFromCardAction | TrelloRemoveMemberFromCardAction;
|
|
95847
|
+
export declare type TrelloCardActions = TrelloAddAttachmentToCardAction | TrelloAddChecklistToCardAction | TrelloAddMemberToCardAction | TrelloCommentCardAction | TrelloMoveCardAction | TrelloMoveCardToBoardAction | TrelloMoveInboxCardToBoardAction | TrelloRemoveChecklistFromCardAction | TrelloRemoveMemberFromCardAction | TrelloUpdateCardDueAction;
|
|
95312
95848
|
export declare type TrelloCardAttachmentsByType = {
|
|
95313
95849
|
__typename?: 'TrelloCardAttachmentsByType';
|
|
95314
95850
|
trello?: Maybe<TrelloCardAttachmentsCount>;
|
|
@@ -96029,6 +96565,45 @@ export declare type TrelloMoveCardActionDisplayEntities = {
|
|
|
96029
96565
|
listBefore?: Maybe<TrelloActionListEntity>;
|
|
96030
96566
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
96031
96567
|
};
|
|
96568
|
+
export declare type TrelloMoveCardBoardEntities = {
|
|
96569
|
+
__typename?: 'TrelloMoveCardBoardEntities';
|
|
96570
|
+
board?: Maybe<TrelloActionBoardEntity>;
|
|
96571
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
96572
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
96573
|
+
};
|
|
96574
|
+
export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
96575
|
+
__typename?: 'TrelloMoveCardToBoardAction';
|
|
96576
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
96577
|
+
board?: Maybe<TrelloBoard>;
|
|
96578
|
+
card?: Maybe<TrelloCard>;
|
|
96579
|
+
creator?: Maybe<TrelloMember>;
|
|
96580
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
96581
|
+
displayEntities?: Maybe<TrelloMoveCardBoardEntities>;
|
|
96582
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
96583
|
+
id: Scalars['ID']['output'];
|
|
96584
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
96585
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
96586
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
96587
|
+
};
|
|
96588
|
+
export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCardActionData & {
|
|
96589
|
+
__typename?: 'TrelloMoveInboxCardToBoardAction';
|
|
96590
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
96591
|
+
board?: Maybe<TrelloBoard>;
|
|
96592
|
+
card?: Maybe<TrelloCard>;
|
|
96593
|
+
creator?: Maybe<TrelloMember>;
|
|
96594
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
96595
|
+
displayEntities?: Maybe<TrelloMoveInboxCardToBoardEntities>;
|
|
96596
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
96597
|
+
id: Scalars['ID']['output'];
|
|
96598
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
96599
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
96600
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
96601
|
+
};
|
|
96602
|
+
export declare type TrelloMoveInboxCardToBoardEntities = {
|
|
96603
|
+
__typename?: 'TrelloMoveInboxCardToBoardEntities';
|
|
96604
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
96605
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
96606
|
+
};
|
|
96032
96607
|
export declare type TrelloMutationApi = {
|
|
96033
96608
|
__typename?: 'TrelloMutationApi';
|
|
96034
96609
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
@@ -96562,7 +97137,8 @@ export declare type TrelloQueryApiBoardByShortLinkArgs = {
|
|
|
96562
97137
|
shortLink: Scalars['TrelloShortLink']['input'];
|
|
96563
97138
|
};
|
|
96564
97139
|
export declare type TrelloQueryApiBoardMirrorCardInfoArgs = {
|
|
96565
|
-
id
|
|
97140
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
97141
|
+
shortLink?: InputMaybe<Scalars['TrelloShortLink']['input']>;
|
|
96566
97142
|
};
|
|
96567
97143
|
export declare type TrelloQueryApiCardArgs = {
|
|
96568
97144
|
id: Scalars['ID']['input'];
|
|
@@ -96776,7 +97352,8 @@ export declare type TrelloSubscriptionApiOnWorkspaceUpdatedArgs = {
|
|
|
96776
97352
|
id: Scalars['ID']['input'];
|
|
96777
97353
|
};
|
|
96778
97354
|
export declare enum TrelloSupportedPlannerProviders {
|
|
96779
|
-
Google = "GOOGLE"
|
|
97355
|
+
Google = "GOOGLE",
|
|
97356
|
+
Outlook = "OUTLOOK"
|
|
96780
97357
|
}
|
|
96781
97358
|
export declare type TrelloSwitcherViewsInfo = {
|
|
96782
97359
|
__typename?: 'TrelloSwitcherViewsInfo';
|
|
@@ -96909,6 +97486,26 @@ export declare type TrelloUpdateBoardViewerShowCompactMirrorCardPayload = Payloa
|
|
|
96909
97486
|
success: Scalars['Boolean']['output'];
|
|
96910
97487
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
96911
97488
|
};
|
|
97489
|
+
export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
|
|
97490
|
+
__typename?: 'TrelloUpdateCardDueAction';
|
|
97491
|
+
appCreator?: Maybe<TrelloAppCreator>;
|
|
97492
|
+
board?: Maybe<TrelloBoard>;
|
|
97493
|
+
card?: Maybe<TrelloCard>;
|
|
97494
|
+
creator?: Maybe<TrelloMember>;
|
|
97495
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
97496
|
+
displayEntities?: Maybe<TrelloUpdateCardDueActionDisplayEntities>;
|
|
97497
|
+
displayKey?: Maybe<Scalars['String']['output']>;
|
|
97498
|
+
id: Scalars['ID']['output'];
|
|
97499
|
+
limits?: Maybe<TrelloActionLimits>;
|
|
97500
|
+
reactions?: Maybe<Array<TrelloReaction>>;
|
|
97501
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
97502
|
+
};
|
|
97503
|
+
export declare type TrelloUpdateCardDueActionDisplayEntities = {
|
|
97504
|
+
__typename?: 'TrelloUpdateCardDueActionDisplayEntities';
|
|
97505
|
+
card?: Maybe<TrelloActionCardEntity>;
|
|
97506
|
+
date?: Maybe<TrelloActionDateEntity>;
|
|
97507
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
97508
|
+
};
|
|
96912
97509
|
export declare type TrelloUpdateCardNameInput = {
|
|
96913
97510
|
cardId: Scalars['ID']['input'];
|
|
96914
97511
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96966,6 +97563,10 @@ export declare type TrelloWorkspaceTagsArgs = {
|
|
|
96966
97563
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96967
97564
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96968
97565
|
};
|
|
97566
|
+
export declare type TrelloWorkspaceEnterpriseUpdated = {
|
|
97567
|
+
__typename?: 'TrelloWorkspaceEnterpriseUpdated';
|
|
97568
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
97569
|
+
};
|
|
96969
97570
|
export declare type TrelloWorkspaceLimits = {
|
|
96970
97571
|
__typename?: 'TrelloWorkspaceLimits';
|
|
96971
97572
|
freeBoards?: Maybe<TrelloLimitProps>;
|
|
@@ -97014,6 +97615,7 @@ export declare enum TrelloWorkspaceTier {
|
|
|
97014
97615
|
export declare type TrelloWorkspaceUpdated = {
|
|
97015
97616
|
__typename?: 'TrelloWorkspaceUpdated';
|
|
97016
97617
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
97618
|
+
enterprise?: Maybe<TrelloWorkspaceEnterpriseUpdated>;
|
|
97017
97619
|
id: Scalars['ID']['output'];
|
|
97018
97620
|
offering?: Maybe<Scalars['String']['output']>;
|
|
97019
97621
|
planner?: Maybe<TrelloPlannerUpdated>;
|
|
@@ -98402,9 +99004,14 @@ export declare type UpdatePageExtensionInput = {
|
|
|
98402
99004
|
value: Scalars['String']['input'];
|
|
98403
99005
|
};
|
|
98404
99006
|
export declare type UpdatePageInput = {
|
|
99007
|
+
body?: InputMaybe<PageBodyInput>;
|
|
98405
99008
|
extensions?: InputMaybe<Array<InputMaybe<UpdatePageExtensionInput>>>;
|
|
99009
|
+
mediaAttachments?: InputMaybe<Array<MediaAttachmentInput>>;
|
|
99010
|
+
minorEdit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
98406
99011
|
pageId: Scalars['ID']['input'];
|
|
98407
99012
|
restrictions?: InputMaybe<PageRestrictionsInput>;
|
|
99013
|
+
status?: InputMaybe<PageStatusInput>;
|
|
99014
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
98408
99015
|
};
|
|
98409
99016
|
export declare type UpdatePageOwnersInput = {
|
|
98410
99017
|
ownerId: Scalars['ID']['input'];
|
|
@@ -99116,6 +99723,12 @@ export declare type VirtualAgentConversationsFilter = {
|
|
|
99116
99723
|
startDate: Scalars['DateTime']['input'];
|
|
99117
99724
|
states?: InputMaybe<Array<VirtualAgentConversationState>>;
|
|
99118
99725
|
};
|
|
99726
|
+
export declare type VirtualAgentCopyIntentRuleProjectionPayload = {
|
|
99727
|
+
__typename?: 'VirtualAgentCopyIntentRuleProjectionPayload';
|
|
99728
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99729
|
+
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
99730
|
+
success: Scalars['Boolean']['output'];
|
|
99731
|
+
};
|
|
99119
99732
|
export declare type VirtualAgentCreateChatChannelInput = {
|
|
99120
99733
|
isTriageChannel: Scalars['Boolean']['input'];
|
|
99121
99734
|
isVirtualAgentTestChannel: Scalars['Boolean']['input'];
|
|
@@ -99346,6 +99959,7 @@ export declare type VirtualAgentLiveIntentCountResponse = {
|
|
|
99346
99959
|
};
|
|
99347
99960
|
export declare type VirtualAgentMutationApi = {
|
|
99348
99961
|
__typename?: 'VirtualAgentMutationApi';
|
|
99962
|
+
copyIntentRuleProjection?: Maybe<VirtualAgentCopyIntentRuleProjectionPayload>;
|
|
99349
99963
|
createChatChannel?: Maybe<VirtualAgentCreateChatChannelPayload>;
|
|
99350
99964
|
createIntentRuleProjection?: Maybe<VirtualAgentCreateIntentRuleProjectionPayload>;
|
|
99351
99965
|
createVirtualAgentConfiguration?: Maybe<VirtualAgentCreateConfigurationPayload>;
|
|
@@ -99358,6 +99972,9 @@ export declare type VirtualAgentMutationApi = {
|
|
|
99358
99972
|
updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
|
|
99359
99973
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
99360
99974
|
};
|
|
99975
|
+
export declare type VirtualAgentMutationApiCopyIntentRuleProjectionArgs = {
|
|
99976
|
+
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
99977
|
+
};
|
|
99361
99978
|
export declare type VirtualAgentMutationApiCreateChatChannelArgs = {
|
|
99362
99979
|
input: VirtualAgentCreateChatChannelInput;
|
|
99363
99980
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|