@forge/cli-shared 8.7.0 → 8.7.1-next.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/out/graphql/graphql-types.d.ts +380 -18
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +21 -15
- package/package.json +2 -2
|
@@ -3633,6 +3633,7 @@ export declare type AppInstallation = {
|
|
|
3633
3633
|
createdAt: Scalars['DateTime']['output'];
|
|
3634
3634
|
createdBy?: Maybe<User>;
|
|
3635
3635
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
3636
|
+
icId?: Maybe<Scalars['String']['output']>;
|
|
3636
3637
|
id: Scalars['ID']['output'];
|
|
3637
3638
|
installationContext: Scalars['ID']['output'];
|
|
3638
3639
|
isRecoverable: Scalars['Boolean']['output'];
|
|
@@ -3933,6 +3934,7 @@ export declare enum AppNetworkPermissionTypeExtension {
|
|
|
3933
3934
|
export declare type AppPermission = {
|
|
3934
3935
|
__typename?: 'AppPermission';
|
|
3935
3936
|
egress?: Maybe<Array<AppNetworkEgressPermission>>;
|
|
3937
|
+
icId?: Maybe<Scalars['String']['output']>;
|
|
3936
3938
|
scopes: Array<AppHostServiceScope>;
|
|
3937
3939
|
securityPolicies?: Maybe<Array<AppSecurityPoliciesPermission>>;
|
|
3938
3940
|
};
|
|
@@ -4348,6 +4350,7 @@ export declare type AppVersionEnrolment = {
|
|
|
4348
4350
|
appId: Scalars['String']['output'];
|
|
4349
4351
|
appVersionId?: Maybe<Scalars['String']['output']>;
|
|
4350
4352
|
authClientId?: Maybe<Scalars['String']['output']>;
|
|
4353
|
+
icId?: Maybe<Scalars['String']['output']>;
|
|
4351
4354
|
id: Scalars['String']['output'];
|
|
4352
4355
|
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
4353
4356
|
serviceId: Scalars['ID']['output'];
|
|
@@ -4357,6 +4360,7 @@ export declare type AppVersionExtension = {
|
|
|
4357
4360
|
extensionData: Scalars['JSON']['output'];
|
|
4358
4361
|
extensionGroupId: Scalars['ID']['output'];
|
|
4359
4362
|
extensionTypeKey: Scalars['String']['output'];
|
|
4363
|
+
icId?: Maybe<Scalars['String']['output']>;
|
|
4360
4364
|
id: Scalars['ID']['output'];
|
|
4361
4365
|
key: Scalars['String']['output'];
|
|
4362
4366
|
};
|
|
@@ -5666,6 +5670,7 @@ export declare type AtlassianOAuthClient = {
|
|
|
5666
5670
|
callbacks?: Maybe<Array<Scalars['String']['output']>>;
|
|
5667
5671
|
clientARI: Scalars['ID']['output'];
|
|
5668
5672
|
clientID: Scalars['ID']['output'];
|
|
5673
|
+
icId?: Maybe<Scalars['String']['output']>;
|
|
5669
5674
|
refreshToken?: Maybe<RefreshToken>;
|
|
5670
5675
|
systemUser?: Maybe<SystemUser>;
|
|
5671
5676
|
};
|
|
@@ -14900,6 +14905,42 @@ export declare type ConfluenceCalendarEdge = {
|
|
|
14900
14905
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
14901
14906
|
node?: Maybe<ConfluenceCalendar>;
|
|
14902
14907
|
};
|
|
14908
|
+
export declare type ConfluenceCalendarEvent = {
|
|
14909
|
+
__typename?: 'ConfluenceCalendarEvent';
|
|
14910
|
+
allDay?: Maybe<Scalars['Boolean']['output']>;
|
|
14911
|
+
calendarId?: Maybe<Scalars['String']['output']>;
|
|
14912
|
+
className?: Maybe<Scalars['String']['output']>;
|
|
14913
|
+
colorScheme?: Maybe<Scalars['String']['output']>;
|
|
14914
|
+
customEventTypeId?: Maybe<Scalars['String']['output']>;
|
|
14915
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
14916
|
+
editable?: Maybe<Scalars['Boolean']['output']>;
|
|
14917
|
+
eventType?: Maybe<Scalars['String']['output']>;
|
|
14918
|
+
extraProperties?: Maybe<Array<Maybe<MapOfStringToString>>>;
|
|
14919
|
+
extraPropertiesTemplate?: Maybe<Scalars['String']['output']>;
|
|
14920
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
14921
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
14922
|
+
inviteeUsers?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
14923
|
+
location?: Maybe<Scalars['String']['output']>;
|
|
14924
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14925
|
+
recurrenceRule?: Maybe<ConfluenceCalendarRecurrenceRule>;
|
|
14926
|
+
timeline?: Maybe<ConfluenceCalendarEventTimeline>;
|
|
14927
|
+
urlAlias?: Maybe<Scalars['String']['output']>;
|
|
14928
|
+
workingUrl?: Maybe<Scalars['String']['output']>;
|
|
14929
|
+
};
|
|
14930
|
+
export declare type ConfluenceCalendarEventResponse = {
|
|
14931
|
+
__typename?: 'ConfluenceCalendarEventResponse';
|
|
14932
|
+
events?: Maybe<Array<Maybe<ConfluenceCalendarEvent>>>;
|
|
14933
|
+
isCurrentUserAuthenticated?: Maybe<Scalars['Boolean']['output']>;
|
|
14934
|
+
oAuthUrl?: Maybe<Scalars['String']['output']>;
|
|
14935
|
+
};
|
|
14936
|
+
export declare type ConfluenceCalendarEventTimeline = {
|
|
14937
|
+
__typename?: 'ConfluenceCalendarEventTimeline';
|
|
14938
|
+
endDate?: Maybe<Scalars['String']['output']>;
|
|
14939
|
+
originalEndDateTime?: Maybe<Scalars['String']['output']>;
|
|
14940
|
+
originalStart?: Maybe<Scalars['String']['output']>;
|
|
14941
|
+
originalStartDateTime?: Maybe<Scalars['String']['output']>;
|
|
14942
|
+
startDate?: Maybe<Scalars['String']['output']>;
|
|
14943
|
+
};
|
|
14903
14944
|
export declare type ConfluenceCalendarEventTypeReminder = {
|
|
14904
14945
|
__typename?: 'ConfluenceCalendarEventTypeReminder';
|
|
14905
14946
|
customEventType: Scalars['Boolean']['output'];
|
|
@@ -14953,6 +14994,15 @@ export declare type ConfluenceCalendarPreference = {
|
|
|
14953
14994
|
view: Scalars['String']['output'];
|
|
14954
14995
|
watchedSubCalendars?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
14955
14996
|
};
|
|
14997
|
+
export declare type ConfluenceCalendarRecurrenceRule = {
|
|
14998
|
+
__typename?: 'ConfluenceCalendarRecurrenceRule';
|
|
14999
|
+
byDay?: Maybe<Scalars['String']['output']>;
|
|
15000
|
+
frequency?: Maybe<Scalars['String']['output']>;
|
|
15001
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
15002
|
+
interval?: Maybe<Scalars['String']['output']>;
|
|
15003
|
+
rule?: Maybe<Scalars['String']['output']>;
|
|
15004
|
+
until?: Maybe<Scalars['String']['output']>;
|
|
15005
|
+
};
|
|
14956
15006
|
export declare type ConfluenceCalendarRestriction = {
|
|
14957
15007
|
__typename?: 'ConfluenceCalendarRestriction';
|
|
14958
15008
|
administrable: Scalars['Boolean']['output'];
|
|
@@ -16985,6 +17035,18 @@ export declare type ConfluenceNbmStartScanLongTaskPayload = Payload & {
|
|
|
16985
17035
|
success: Scalars['Boolean']['output'];
|
|
16986
17036
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
16987
17037
|
};
|
|
17038
|
+
export declare type ConfluenceNbmStartVerificationLongTaskInput = {
|
|
17039
|
+
scanId: Scalars['String']['input'];
|
|
17040
|
+
verificationEntryIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
17041
|
+
};
|
|
17042
|
+
export declare type ConfluenceNbmStartVerificationLongTaskPayload = Payload & {
|
|
17043
|
+
__typename?: 'ConfluenceNbmStartVerificationLongTaskPayload';
|
|
17044
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17045
|
+
scanId: Scalars['ID']['output'];
|
|
17046
|
+
success: Scalars['Boolean']['output'];
|
|
17047
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
17048
|
+
verificationEntryIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
17049
|
+
};
|
|
16988
17050
|
export declare enum ConfluenceNbmVerificationAiState {
|
|
16989
17051
|
Broken = "BROKEN",
|
|
16990
17052
|
Unknown = "UNKNOWN",
|
|
@@ -18257,6 +18319,52 @@ export declare type ConfluenceUpdateAnswerPayload = Payload & {
|
|
|
18257
18319
|
errors?: Maybe<Array<MutationError>>;
|
|
18258
18320
|
success: Scalars['Boolean']['output'];
|
|
18259
18321
|
};
|
|
18322
|
+
export declare type ConfluenceUpdateCalendarCustomEventTypePayload = Payload & {
|
|
18323
|
+
__typename?: 'ConfluenceUpdateCalendarCustomEventTypePayload';
|
|
18324
|
+
calendarCustomEventType?: Maybe<ConfluenceCalendarCustomEventType>;
|
|
18325
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18326
|
+
success: Scalars['Boolean']['output'];
|
|
18327
|
+
};
|
|
18328
|
+
export declare type ConfluenceUpdateCalendarEventInput = {
|
|
18329
|
+
allDayEvent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18330
|
+
calendarId: Scalars['ID']['input'];
|
|
18331
|
+
childCalendarId?: InputMaybe<Scalars['String']['input']>;
|
|
18332
|
+
customEventTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
18333
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
18334
|
+
editAllInRecurrenceSeries?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18335
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
18336
|
+
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
18337
|
+
eventType?: InputMaybe<Scalars['String']['input']>;
|
|
18338
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
18339
|
+
location?: InputMaybe<Scalars['String']['input']>;
|
|
18340
|
+
mentionedUserNote?: InputMaybe<Scalars['String']['input']>;
|
|
18341
|
+
name: Scalars['String']['input'];
|
|
18342
|
+
notifyWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18343
|
+
originalCalendarId?: InputMaybe<Scalars['String']['input']>;
|
|
18344
|
+
originalCustomEventTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
18345
|
+
originalEventType?: InputMaybe<Scalars['String']['input']>;
|
|
18346
|
+
originalStartDate?: InputMaybe<Scalars['String']['input']>;
|
|
18347
|
+
persons?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
18348
|
+
recurrenceId?: InputMaybe<Scalars['String']['input']>;
|
|
18349
|
+
recurrenceRule?: InputMaybe<Scalars['String']['input']>;
|
|
18350
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
18351
|
+
startTime?: InputMaybe<Scalars['String']['input']>;
|
|
18352
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
18353
|
+
userTimeZoneId?: InputMaybe<Scalars['String']['input']>;
|
|
18354
|
+
};
|
|
18355
|
+
export declare type ConfluenceUpdateCalendarEventPayload = Payload & {
|
|
18356
|
+
__typename?: 'ConfluenceUpdateCalendarEventPayload';
|
|
18357
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18358
|
+
event?: Maybe<ConfluenceCalendarEvent>;
|
|
18359
|
+
success: Scalars['Boolean']['output'];
|
|
18360
|
+
};
|
|
18361
|
+
export declare type ConfluenceUpdateCalendarEventTypeInput = {
|
|
18362
|
+
calendarId: Scalars['String']['input'];
|
|
18363
|
+
icon: Scalars['String']['input'];
|
|
18364
|
+
id: Scalars['ID']['input'];
|
|
18365
|
+
periodInMins?: InputMaybe<Scalars['Int']['input']>;
|
|
18366
|
+
title: Scalars['String']['input'];
|
|
18367
|
+
};
|
|
18260
18368
|
export declare type ConfluenceUpdateCalendarPermissionInput = {
|
|
18261
18369
|
groups: Array<InputMaybe<ConfluenceCalendarPermissionInput>>;
|
|
18262
18370
|
id: Scalars['ID']['input'];
|
|
@@ -18267,6 +18375,11 @@ export declare type ConfluenceUpdateCalendarPermissionPayload = Payload & {
|
|
|
18267
18375
|
errors?: Maybe<Array<MutationError>>;
|
|
18268
18376
|
success: Scalars['Boolean']['output'];
|
|
18269
18377
|
};
|
|
18378
|
+
export declare type ConfluenceUpdateCalendarSandboxEventTypeReminderPayload = Payload & {
|
|
18379
|
+
__typename?: 'ConfluenceUpdateCalendarSandboxEventTypeReminderPayload';
|
|
18380
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18381
|
+
success: Scalars['Boolean']['output'];
|
|
18382
|
+
};
|
|
18270
18383
|
export declare type ConfluenceUpdateCalendarViewInput = {
|
|
18271
18384
|
view: Scalars['String']['input'];
|
|
18272
18385
|
};
|
|
@@ -35110,6 +35223,10 @@ export declare type GraphStore = {
|
|
|
35110
35223
|
projectHasVersionRelationship?: Maybe<GraphStoreFullProjectHasVersionConnection>;
|
|
35111
35224
|
projectLinkedToCompassComponent?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentConnection>;
|
|
35112
35225
|
projectLinkedToCompassComponentInverse?: Maybe<GraphStoreSimplifiedProjectLinkedToCompassComponentInverseConnection>;
|
|
35226
|
+
projectLinksToEntity?: Maybe<GraphStoreSimplifiedProjectLinksToEntityConnection>;
|
|
35227
|
+
projectLinksToEntityBatch?: Maybe<GraphStoreBatchProjectLinksToEntityConnection>;
|
|
35228
|
+
projectLinksToEntityInverse?: Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseConnection>;
|
|
35229
|
+
projectLinksToEntityInverseBatch?: Maybe<GraphStoreBatchProjectLinksToEntityConnection>;
|
|
35113
35230
|
pullRequestLinksToService?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceConnection>;
|
|
35114
35231
|
pullRequestLinksToServiceInverse?: Maybe<GraphStoreSimplifiedPullRequestLinksToServiceInverseConnection>;
|
|
35115
35232
|
scorecardHasAtlasGoal?: Maybe<GraphStoreSimplifiedScorecardHasAtlasGoalConnection>;
|
|
@@ -38475,6 +38592,32 @@ export declare type GraphStoreProjectLinkedToCompassComponentInverseArgs = {
|
|
|
38475
38592
|
id: Scalars['ID']['input'];
|
|
38476
38593
|
sort?: InputMaybe<GraphStoreProjectLinkedToCompassComponentSortInput>;
|
|
38477
38594
|
};
|
|
38595
|
+
export declare type GraphStoreProjectLinksToEntityArgs = {
|
|
38596
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38597
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38598
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38599
|
+
id: Scalars['ID']['input'];
|
|
38600
|
+
sort?: InputMaybe<GraphStoreProjectLinksToEntitySortInput>;
|
|
38601
|
+
};
|
|
38602
|
+
export declare type GraphStoreProjectLinksToEntityBatchArgs = {
|
|
38603
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38604
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38605
|
+
ids: Array<Scalars['ID']['input']>;
|
|
38606
|
+
sort?: InputMaybe<GraphStoreProjectLinksToEntitySortInput>;
|
|
38607
|
+
};
|
|
38608
|
+
export declare type GraphStoreProjectLinksToEntityInverseArgs = {
|
|
38609
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38610
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38611
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38612
|
+
id: Scalars['ID']['input'];
|
|
38613
|
+
sort?: InputMaybe<GraphStoreProjectLinksToEntitySortInput>;
|
|
38614
|
+
};
|
|
38615
|
+
export declare type GraphStoreProjectLinksToEntityInverseBatchArgs = {
|
|
38616
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38617
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38618
|
+
ids: Array<Scalars['ID']['input']>;
|
|
38619
|
+
sort?: InputMaybe<GraphStoreProjectLinksToEntitySortInput>;
|
|
38620
|
+
};
|
|
38478
38621
|
export declare type GraphStorePullRequestLinksToServiceArgs = {
|
|
38479
38622
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38480
38623
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41910,6 +42053,47 @@ export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPag
|
|
|
41910
42053
|
id: Scalars['ID']['output'];
|
|
41911
42054
|
};
|
|
41912
42055
|
export declare type GraphStoreBatchMeetingRecurrenceHasMeetingRecurrenceNotesPageStartUnion = LoomMeetingRecurrence;
|
|
42056
|
+
export declare type GraphStoreBatchProjectLinksToEntityConnection = HasPageInfo & {
|
|
42057
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityConnection';
|
|
42058
|
+
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityEdge>>;
|
|
42059
|
+
nodes: Array<Maybe<GraphStoreBatchProjectLinksToEntityNode>>;
|
|
42060
|
+
pageInfo: PageInfo;
|
|
42061
|
+
};
|
|
42062
|
+
export declare type GraphStoreBatchProjectLinksToEntityEdge = {
|
|
42063
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityEdge';
|
|
42064
|
+
node: GraphStoreBatchProjectLinksToEntityInnerConnection;
|
|
42065
|
+
};
|
|
42066
|
+
export declare type GraphStoreBatchProjectLinksToEntityEndNode = {
|
|
42067
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityEndNode';
|
|
42068
|
+
data?: Maybe<GraphStoreBatchProjectLinksToEntityEndUnion>;
|
|
42069
|
+
id: Scalars['ID']['output'];
|
|
42070
|
+
};
|
|
42071
|
+
export declare type GraphStoreBatchProjectLinksToEntityEndUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
42072
|
+
export declare type GraphStoreBatchProjectLinksToEntityInnerConnection = {
|
|
42073
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityInnerConnection';
|
|
42074
|
+
edges: Array<Maybe<GraphStoreBatchProjectLinksToEntityInnerEdge>>;
|
|
42075
|
+
nodes: Array<Maybe<GraphStoreBatchProjectLinksToEntityNode>>;
|
|
42076
|
+
requestedId: Scalars['ID']['output'];
|
|
42077
|
+
};
|
|
42078
|
+
export declare type GraphStoreBatchProjectLinksToEntityInnerEdge = {
|
|
42079
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityInnerEdge';
|
|
42080
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42081
|
+
node: GraphStoreBatchProjectLinksToEntityNode;
|
|
42082
|
+
};
|
|
42083
|
+
export declare type GraphStoreBatchProjectLinksToEntityNode = Node & {
|
|
42084
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityNode';
|
|
42085
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42086
|
+
from: GraphStoreBatchProjectLinksToEntityStartNode;
|
|
42087
|
+
id: Scalars['ID']['output'];
|
|
42088
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42089
|
+
to: GraphStoreBatchProjectLinksToEntityEndNode;
|
|
42090
|
+
};
|
|
42091
|
+
export declare type GraphStoreBatchProjectLinksToEntityStartNode = {
|
|
42092
|
+
__typename?: 'GraphStoreBatchProjectLinksToEntityStartNode';
|
|
42093
|
+
data?: Maybe<GraphStoreBatchProjectLinksToEntityStartUnion>;
|
|
42094
|
+
id: Scalars['ID']['output'];
|
|
42095
|
+
};
|
|
42096
|
+
export declare type GraphStoreBatchProjectLinksToEntityStartUnion = TownsquareProject;
|
|
41913
42097
|
export declare type GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection = HasPageInfo & {
|
|
41914
42098
|
__typename?: 'GraphStoreBatchSecurityContainerAssociatedToVulnerabilityConnection';
|
|
41915
42099
|
edges: Array<Maybe<GraphStoreBatchSecurityContainerAssociatedToVulnerabilityEdge>>;
|
|
@@ -47895,6 +48079,9 @@ export declare type GraphStoreProjectLinkedToCompassComponentSortInput = {
|
|
|
47895
48079
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47896
48080
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
47897
48081
|
};
|
|
48082
|
+
export declare type GraphStoreProjectLinksToEntitySortInput = {
|
|
48083
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48084
|
+
};
|
|
47898
48085
|
export declare type GraphStorePullRequestLinksToServiceSortInput = {
|
|
47899
48086
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47900
48087
|
};
|
|
@@ -52363,6 +52550,34 @@ export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseEd
|
|
|
52363
52550
|
};
|
|
52364
52551
|
export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentInverseUnion = JiraProject;
|
|
52365
52552
|
export declare type GraphStoreSimplifiedProjectLinkedToCompassComponentUnion = CompassComponent;
|
|
52553
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityConnection = HasPageInfo & {
|
|
52554
|
+
__typename?: 'GraphStoreSimplifiedProjectLinksToEntityConnection';
|
|
52555
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectLinksToEntityEdge>>>;
|
|
52556
|
+
pageInfo: PageInfo;
|
|
52557
|
+
};
|
|
52558
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityEdge = {
|
|
52559
|
+
__typename?: 'GraphStoreSimplifiedProjectLinksToEntityEdge';
|
|
52560
|
+
createdAt: Scalars['DateTime']['output'];
|
|
52561
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
52562
|
+
id: Scalars['ID']['output'];
|
|
52563
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
52564
|
+
node?: Maybe<GraphStoreSimplifiedProjectLinksToEntityUnion>;
|
|
52565
|
+
};
|
|
52566
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseConnection = HasPageInfo & {
|
|
52567
|
+
__typename?: 'GraphStoreSimplifiedProjectLinksToEntityInverseConnection';
|
|
52568
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseEdge>>>;
|
|
52569
|
+
pageInfo: PageInfo;
|
|
52570
|
+
};
|
|
52571
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseEdge = {
|
|
52572
|
+
__typename?: 'GraphStoreSimplifiedProjectLinksToEntityInverseEdge';
|
|
52573
|
+
createdAt: Scalars['DateTime']['output'];
|
|
52574
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
52575
|
+
id: Scalars['ID']['output'];
|
|
52576
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
52577
|
+
node?: Maybe<GraphStoreSimplifiedProjectLinksToEntityInverseUnion>;
|
|
52578
|
+
};
|
|
52579
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityInverseUnion = TownsquareProject;
|
|
52580
|
+
export declare type GraphStoreSimplifiedProjectLinksToEntityUnion = CompassComponent | ConfluenceBlogPost | ConfluencePage | JiraIssue | LoomSpace | LoomVideo;
|
|
52366
52581
|
export declare type GraphStoreSimplifiedPullRequestLinksToServiceConnection = HasPageInfo & {
|
|
52367
52582
|
__typename?: 'GraphStoreSimplifiedPullRequestLinksToServiceConnection';
|
|
52368
52583
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPullRequestLinksToServiceEdge>>>;
|
|
@@ -61590,6 +61805,11 @@ export declare type JiraAiEnablementIssueInput = {
|
|
|
61590
61805
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
61591
61806
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
61592
61807
|
};
|
|
61808
|
+
export declare type JiraAlignAggCustomProjectType = {
|
|
61809
|
+
__typename?: 'JiraAlignAggCustomProjectType';
|
|
61810
|
+
label: Scalars['String']['output'];
|
|
61811
|
+
value: JiraAlignAggProjectType;
|
|
61812
|
+
};
|
|
61593
61813
|
export declare type JiraAlignAggJiraAlignProjectOwner = {
|
|
61594
61814
|
email?: Maybe<Scalars['String']['output']>;
|
|
61595
61815
|
firstName?: Maybe<Scalars['String']['output']>;
|
|
@@ -61633,6 +61853,30 @@ export declare type JiraAlignAggProject = HasMercuryProjectFields & Node & {
|
|
|
61633
61853
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
61634
61854
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
61635
61855
|
};
|
|
61856
|
+
export declare type JiraAlignAggProjectConnection = {
|
|
61857
|
+
__typename?: 'JiraAlignAggProjectConnection';
|
|
61858
|
+
edges?: Maybe<Array<Maybe<JiraAlignAggProjectEdge>>>;
|
|
61859
|
+
pageInfo: PageInfo;
|
|
61860
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
61861
|
+
};
|
|
61862
|
+
export declare type JiraAlignAggProjectEdge = {
|
|
61863
|
+
__typename?: 'JiraAlignAggProjectEdge';
|
|
61864
|
+
cursor: Scalars['String']['output'];
|
|
61865
|
+
node: JiraAlignAggProject;
|
|
61866
|
+
};
|
|
61867
|
+
export declare enum JiraAlignAggProjectType {
|
|
61868
|
+
Capability = "CAPABILITY",
|
|
61869
|
+
Epic = "EPIC",
|
|
61870
|
+
Theme = "THEME"
|
|
61871
|
+
}
|
|
61872
|
+
export declare type JiraAlignAggSite = {
|
|
61873
|
+
__typename?: 'JiraAlignAggSite';
|
|
61874
|
+
availableProjectTypes?: Maybe<Array<JiraAlignAggCustomProjectType>>;
|
|
61875
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
61876
|
+
id: Scalars['ID']['output'];
|
|
61877
|
+
jiraAlignSiteUrl: Scalars['String']['output'];
|
|
61878
|
+
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
61879
|
+
};
|
|
61636
61880
|
export declare enum JiraAllowedFieldFormatConfig {
|
|
61637
61881
|
NumberFieldFormatConfig = "NUMBER_FIELD_FORMAT_CONFIG"
|
|
61638
61882
|
}
|
|
@@ -62541,11 +62785,6 @@ export declare type JiraBacklogColumn = {
|
|
|
62541
62785
|
name?: Maybe<Scalars['String']['output']>;
|
|
62542
62786
|
statusIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
62543
62787
|
};
|
|
62544
|
-
export declare type JiraBacklogColumnStatistic = {
|
|
62545
|
-
__typename?: 'JiraBacklogColumnStatistic';
|
|
62546
|
-
statFieldId: Scalars['ID']['output'];
|
|
62547
|
-
statFieldValue?: Maybe<JiraBacklogStatFieldValue>;
|
|
62548
|
-
};
|
|
62549
62788
|
export declare type JiraBacklogData = {
|
|
62550
62789
|
__typename?: 'JiraBacklogData';
|
|
62551
62790
|
backlogColumn?: Maybe<JiraBacklogColumn>;
|
|
@@ -62615,12 +62854,14 @@ export declare type JiraBacklogIssue = {
|
|
|
62615
62854
|
assigneeKey?: Maybe<Scalars['String']['output']>;
|
|
62616
62855
|
assigneeName?: Maybe<Scalars['String']['output']>;
|
|
62617
62856
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
62618
|
-
|
|
62857
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
62858
|
+
columnStatistic?: Maybe<JiraBacklogStatisticFieldValue>;
|
|
62619
62859
|
done?: Maybe<Scalars['Boolean']['output']>;
|
|
62620
62860
|
epic?: Maybe<Scalars['String']['output']>;
|
|
62621
62861
|
epicColor?: Maybe<Scalars['String']['output']>;
|
|
62622
62862
|
epicField?: Maybe<JiraBacklogIssueEpicLinkField>;
|
|
62623
62863
|
epicLabel?: Maybe<Scalars['String']['output']>;
|
|
62864
|
+
estimateStatistic?: Maybe<JiraBacklogStatisticFieldValue>;
|
|
62624
62865
|
estimateStatisticRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
62625
62866
|
extraFields?: Maybe<Array<Maybe<JiraBacklogExtraField>>>;
|
|
62626
62867
|
fixVersions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -62643,6 +62884,7 @@ export declare type JiraBacklogIssue = {
|
|
|
62643
62884
|
statusName?: Maybe<Scalars['String']['output']>;
|
|
62644
62885
|
statusUrl?: Maybe<Scalars['String']['output']>;
|
|
62645
62886
|
summary?: Maybe<Scalars['String']['output']>;
|
|
62887
|
+
trackingStatistic?: Maybe<JiraBacklogStatisticFieldValue>;
|
|
62646
62888
|
typeHierarchyLevel?: Maybe<Scalars['Int']['output']>;
|
|
62647
62889
|
typeId?: Maybe<Scalars['String']['output']>;
|
|
62648
62890
|
typeName?: Maybe<Scalars['String']['output']>;
|
|
@@ -62767,7 +63009,12 @@ export declare type JiraBacklogSprintTimeRemaining = {
|
|
|
62767
63009
|
export declare type JiraBacklogStatFieldValue = {
|
|
62768
63010
|
__typename?: 'JiraBacklogStatFieldValue';
|
|
62769
63011
|
text?: Maybe<Scalars['String']['output']>;
|
|
62770
|
-
value?: Maybe<Scalars['
|
|
63012
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
63013
|
+
};
|
|
63014
|
+
export declare type JiraBacklogStatisticFieldValue = {
|
|
63015
|
+
__typename?: 'JiraBacklogStatisticFieldValue';
|
|
63016
|
+
statFieldId: Scalars['ID']['output'];
|
|
63017
|
+
statFieldValue?: Maybe<JiraBacklogStatFieldValue>;
|
|
62771
63018
|
};
|
|
62772
63019
|
export declare type JiraBacklogStatisticsField = {
|
|
62773
63020
|
__typename?: 'JiraBacklogStatisticsField';
|
|
@@ -63110,7 +63357,9 @@ export declare type JiraBoardViewCell = Node & {
|
|
|
63110
63357
|
};
|
|
63111
63358
|
export declare type JiraBoardViewCellIssuesArgs = {
|
|
63112
63359
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
63360
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
63113
63361
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
63362
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
63114
63363
|
};
|
|
63115
63364
|
export declare type JiraBoardViewCellConnection = {
|
|
63116
63365
|
__typename?: 'JiraBoardViewCellConnection';
|
|
@@ -65595,6 +65844,12 @@ export declare type JiraDeleteActivityConfigurationInput = {
|
|
|
65595
65844
|
journeyId: Scalars['ID']['input'];
|
|
65596
65845
|
journeyVersion: Scalars['Long']['input'];
|
|
65597
65846
|
};
|
|
65847
|
+
export declare type JiraDeleteAllAttachmentsPayload = Payload & {
|
|
65848
|
+
__typename?: 'JiraDeleteAllAttachmentsPayload';
|
|
65849
|
+
deletedAttachmentIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
65850
|
+
errors?: Maybe<Array<MutationError>>;
|
|
65851
|
+
success: Scalars['Boolean']['output'];
|
|
65852
|
+
};
|
|
65598
65853
|
export declare type JiraDeleteAttachmentsPayload = Payload & {
|
|
65599
65854
|
__typename?: 'JiraDeleteAttachmentsPayload';
|
|
65600
65855
|
deletedCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -71454,6 +71709,7 @@ export declare type JiraMutation = {
|
|
|
71454
71709
|
createProjectShortcut?: Maybe<JiraProjectShortcutPayload>;
|
|
71455
71710
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
71456
71711
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
71712
|
+
deleteAllAttachments?: Maybe<JiraDeleteAllAttachmentsPayload>;
|
|
71457
71713
|
deleteAttachments?: Maybe<JiraDeleteAttachmentsPayload>;
|
|
71458
71714
|
deleteComment?: Maybe<JiraDeleteCommentPayload>;
|
|
71459
71715
|
deleteCustomBackground?: Maybe<JiraDeleteCustomBackgroundPayload>;
|
|
@@ -71786,6 +72042,9 @@ export declare type JiraMutationCreateReleaseNoteConfluencePageArgs = {
|
|
|
71786
72042
|
export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
71787
72043
|
input: JiraCreateSimpleNavigationItemInput;
|
|
71788
72044
|
};
|
|
72045
|
+
export declare type JiraMutationDeleteAllAttachmentsArgs = {
|
|
72046
|
+
issueId: Scalars['ID']['input'];
|
|
72047
|
+
};
|
|
71789
72048
|
export declare type JiraMutationDeleteAttachmentsArgs = {
|
|
71790
72049
|
ids: Array<Scalars['ID']['input']>;
|
|
71791
72050
|
};
|
|
@@ -84590,11 +84849,13 @@ export declare enum LoomTranscriptLanguage {
|
|
|
84590
84849
|
export declare type LoomUnauthenticatedUserPrimaryAuthType = {
|
|
84591
84850
|
__typename?: 'LoomUnauthenticatedUserPrimaryAuthType';
|
|
84592
84851
|
authType: Scalars['String']['output'];
|
|
84852
|
+
hasActiveMemberships?: Maybe<Scalars['Boolean']['output']>;
|
|
84593
84853
|
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
84594
84854
|
};
|
|
84595
84855
|
export declare type LoomUserPrimaryAuthType = {
|
|
84596
84856
|
__typename?: 'LoomUserPrimaryAuthType';
|
|
84597
84857
|
authType: Scalars['String']['output'];
|
|
84858
|
+
hasActiveMemberships?: Maybe<Scalars['Boolean']['output']>;
|
|
84598
84859
|
redirectUri?: Maybe<Scalars['String']['output']>;
|
|
84599
84860
|
};
|
|
84600
84861
|
export declare enum LoomUserStatus {
|
|
@@ -90452,6 +90713,7 @@ export declare type Mutation = {
|
|
|
90452
90713
|
confluence_nbmBulkUpdateVerificationEntry?: Maybe<ConfluenceNbmBulkUpdateVerificationEntryPayload>;
|
|
90453
90714
|
confluence_nbmRetryScanLongTask?: Maybe<ConfluenceNbmRetryScanLongTaskPayload>;
|
|
90454
90715
|
confluence_nbmStartScanLongTask?: Maybe<ConfluenceNbmStartScanLongTaskPayload>;
|
|
90716
|
+
confluence_nbmStartVerificationLongTask?: Maybe<ConfluenceNbmStartVerificationLongTaskPayload>;
|
|
90455
90717
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
90456
90718
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
90457
90719
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
@@ -90465,7 +90727,10 @@ export declare type Mutation = {
|
|
|
90465
90727
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
90466
90728
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
90467
90729
|
confluence_updateAnswer?: Maybe<ConfluenceUpdateAnswerPayload>;
|
|
90730
|
+
confluence_updateCalendarCustomEventType?: Maybe<ConfluenceUpdateCalendarCustomEventTypePayload>;
|
|
90731
|
+
confluence_updateCalendarEvent?: Maybe<ConfluenceUpdateCalendarEventPayload>;
|
|
90468
90732
|
confluence_updateCalendarPermissions?: Maybe<ConfluenceUpdateCalendarPermissionPayload>;
|
|
90733
|
+
confluence_updateCalendarSandboxEventTypeReminder?: Maybe<ConfluenceUpdateCalendarSandboxEventTypeReminderPayload>;
|
|
90469
90734
|
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
90470
90735
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
90471
90736
|
confluence_updateContentMode?: Maybe<ConfluenceUpdateContentModePayload>;
|
|
@@ -90841,6 +91106,7 @@ export declare type Mutation = {
|
|
|
90841
91106
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
90842
91107
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
90843
91108
|
radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
|
|
91109
|
+
radar_updatePositionLaborCostEstimateSettings?: Maybe<RadarMutationResponse>;
|
|
90844
91110
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
90845
91111
|
radar_upsertWorkTypeAllocations?: Maybe<RadarMutationResponse>;
|
|
90846
91112
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
@@ -91605,6 +91871,10 @@ export declare type MutationConfluence_NbmStartScanLongTaskArgs = {
|
|
|
91605
91871
|
cloudId: Scalars['ID']['input'];
|
|
91606
91872
|
input: ConfluenceNbmStartScanLongTaskInput;
|
|
91607
91873
|
};
|
|
91874
|
+
export declare type MutationConfluence_NbmStartVerificationLongTaskArgs = {
|
|
91875
|
+
cloudId: Scalars['ID']['input'];
|
|
91876
|
+
input: ConfluenceNbmStartVerificationLongTaskInput;
|
|
91877
|
+
};
|
|
91608
91878
|
export declare type MutationConfluence_PatchCalendarArgs = {
|
|
91609
91879
|
cloudId: Scalars['ID']['input'];
|
|
91610
91880
|
input: ConfluencePatchCalendarInput;
|
|
@@ -91658,10 +91928,22 @@ export declare type MutationConfluence_UpdateAnswerArgs = {
|
|
|
91658
91928
|
cloudId: Scalars['ID']['input'];
|
|
91659
91929
|
input: ConfluenceUpdateAnswerInput;
|
|
91660
91930
|
};
|
|
91931
|
+
export declare type MutationConfluence_UpdateCalendarCustomEventTypeArgs = {
|
|
91932
|
+
cloudId: Scalars['ID']['input'];
|
|
91933
|
+
input: ConfluenceUpdateCalendarEventTypeInput;
|
|
91934
|
+
};
|
|
91935
|
+
export declare type MutationConfluence_UpdateCalendarEventArgs = {
|
|
91936
|
+
cloudId: Scalars['ID']['input'];
|
|
91937
|
+
input: ConfluenceUpdateCalendarEventInput;
|
|
91938
|
+
};
|
|
91661
91939
|
export declare type MutationConfluence_UpdateCalendarPermissionsArgs = {
|
|
91662
91940
|
cloudId: Scalars['ID']['input'];
|
|
91663
91941
|
input: ConfluenceUpdateCalendarPermissionInput;
|
|
91664
91942
|
};
|
|
91943
|
+
export declare type MutationConfluence_UpdateCalendarSandboxEventTypeReminderArgs = {
|
|
91944
|
+
cloudId: Scalars['ID']['input'];
|
|
91945
|
+
input: ConfluenceUpdateCalendarEventTypeInput;
|
|
91946
|
+
};
|
|
91665
91947
|
export declare type MutationConfluence_UpdateCalendarViewArgs = {
|
|
91666
91948
|
cloudId: Scalars['ID']['input'];
|
|
91667
91949
|
input: ConfluenceUpdateCalendarViewInput;
|
|
@@ -92872,6 +93154,10 @@ export declare type MutationRadar_UpdateFocusAreaProposalChangesArgs = {
|
|
|
92872
93154
|
cloudId: Scalars['ID']['input'];
|
|
92873
93155
|
input: Array<RadarPositionProposalChangeInput>;
|
|
92874
93156
|
};
|
|
93157
|
+
export declare type MutationRadar_UpdatePositionLaborCostEstimateSettingsArgs = {
|
|
93158
|
+
cloudId: Scalars['ID']['input'];
|
|
93159
|
+
input: RadarUpdatePositionLaborCostEstimateSettingsInput;
|
|
93160
|
+
};
|
|
92875
93161
|
export declare type MutationRadar_UpdateWorkspaceSettingsArgs = {
|
|
92876
93162
|
cloudId: Scalars['ID']['input'];
|
|
92877
93163
|
input: RadarWorkspaceSettingsInput;
|
|
@@ -96493,6 +96779,7 @@ export declare type Query = {
|
|
|
96493
96779
|
confluence_applicationLinksByTypeId?: Maybe<Array<Maybe<ConfluenceApplicationLink>>>;
|
|
96494
96780
|
confluence_assignableSpaceRoles?: Maybe<Array<Maybe<ConfluenceAssignableSpaceRole>>>;
|
|
96495
96781
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
96782
|
+
confluence_calendarEventsByDateRange?: Maybe<ConfluenceCalendarEventResponse>;
|
|
96496
96783
|
confluence_calendarJiraDateFieldsByJql?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
96497
96784
|
confluence_calendarJiraDateFieldsBySearchFilter?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
96498
96785
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
@@ -96564,7 +96851,6 @@ export declare type Query = {
|
|
|
96564
96851
|
confluence_subCalendarEmbedInfo?: Maybe<Array<Maybe<ConfluenceSubCalendarEmbedInfo>>>;
|
|
96565
96852
|
confluence_subCalendarSubscribersCount?: Maybe<ConfluenceSubCalendarSubscribersCount>;
|
|
96566
96853
|
confluence_subCalendarWatchingStatuses?: Maybe<Array<Maybe<ConfluenceSubCalendarWatchingStatus>>>;
|
|
96567
|
-
confluence_teamPresence?: Maybe<ConfluenceTeamPresence>;
|
|
96568
96854
|
confluence_teamPresenceContentSetting?: Maybe<ConfluenceTeamPresence>;
|
|
96569
96855
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
96570
96856
|
confluence_template?: Maybe<ContentTemplate>;
|
|
@@ -96811,6 +97097,8 @@ export declare type Query = {
|
|
|
96811
97097
|
isSiteAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
96812
97098
|
jira?: Maybe<JiraQuery>;
|
|
96813
97099
|
jiraAlignAgg_projectsByAris?: Maybe<Array<Maybe<JiraAlignAggProject>>>;
|
|
97100
|
+
jiraAlignAgg_searchProjects?: Maybe<JiraAlignAggProjectConnection>;
|
|
97101
|
+
jiraAlignAgg_sitesByOrgId?: Maybe<Array<Maybe<JiraAlignAggSite>>>;
|
|
96814
97102
|
jiraCannedResponse?: Maybe<JiraCannedResponseQueryApi>;
|
|
96815
97103
|
jiraOAuthApps?: Maybe<JiraOAuthAppsApps>;
|
|
96816
97104
|
jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
@@ -97882,6 +98170,12 @@ export declare type QueryConfluence_AtlassianUserArgs = {
|
|
|
97882
98170
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
97883
98171
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
97884
98172
|
};
|
|
98173
|
+
export declare type QueryConfluence_CalendarEventsByDateRangeArgs = {
|
|
98174
|
+
calendarId: Scalars['ID']['input'];
|
|
98175
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
98176
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
98177
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
98178
|
+
};
|
|
97885
98179
|
export declare type QueryConfluence_CalendarJiraDateFieldsByJqlArgs = {
|
|
97886
98180
|
applicationId: Scalars['ID']['input'];
|
|
97887
98181
|
cloudId: Scalars['ID']['input'];
|
|
@@ -98239,10 +98533,6 @@ export declare type QueryConfluence_SubCalendarWatchingStatusesArgs = {
|
|
|
98239
98533
|
cloudId: Scalars['ID']['input'];
|
|
98240
98534
|
subCalendarIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
98241
98535
|
};
|
|
98242
|
-
export declare type QueryConfluence_TeamPresenceArgs = {
|
|
98243
|
-
cloudId: Scalars['ID']['input'];
|
|
98244
|
-
spaceId: Scalars['Long']['input'];
|
|
98245
|
-
};
|
|
98246
98536
|
export declare type QueryConfluence_TeamPresenceContentSettingArgs = {
|
|
98247
98537
|
cloudId: Scalars['ID']['input'];
|
|
98248
98538
|
spaceKey: Scalars['String']['input'];
|
|
@@ -99285,6 +99575,19 @@ export declare type QueryIsSainSearchEnabledArgs = {
|
|
|
99285
99575
|
export declare type QueryJiraAlignAgg_ProjectsByArisArgs = {
|
|
99286
99576
|
ids: Array<Scalars['ID']['input']>;
|
|
99287
99577
|
};
|
|
99578
|
+
export declare type QueryJiraAlignAgg_SearchProjectsArgs = {
|
|
99579
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99580
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99581
|
+
id: Scalars['ID']['input'];
|
|
99582
|
+
instanceId: Scalars['ID']['input'];
|
|
99583
|
+
projectType: JiraAlignAggProjectType;
|
|
99584
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
99585
|
+
};
|
|
99586
|
+
export declare type QueryJiraAlignAgg_SitesByOrgIdArgs = {
|
|
99587
|
+
env: Scalars['String']['input'];
|
|
99588
|
+
id: Scalars['ID']['input'];
|
|
99589
|
+
orgId: Scalars['String']['input'];
|
|
99590
|
+
};
|
|
99288
99591
|
export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
99289
99592
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99290
99593
|
filter?: InputMaybe<DevOpsServiceAndJiraProjectRelationshipFilter>;
|
|
@@ -100790,6 +101093,10 @@ export declare type RadarMoneyFieldValue = {
|
|
|
100790
101093
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
100791
101094
|
value?: Maybe<RadarMoney>;
|
|
100792
101095
|
};
|
|
101096
|
+
export declare type RadarMoneyInput = {
|
|
101097
|
+
amount: Scalars['String']['input'];
|
|
101098
|
+
currency: Scalars['String']['input'];
|
|
101099
|
+
};
|
|
100793
101100
|
export declare type RadarMutationResponse = {
|
|
100794
101101
|
__typename?: 'RadarMutationResponse';
|
|
100795
101102
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -100970,6 +101277,10 @@ export declare type RadarUpdateFocusAreaProposalChangesMutationResponse = {
|
|
|
100970
101277
|
changes?: Maybe<Array<Maybe<RadarPositionAllocationChange>>>;
|
|
100971
101278
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
100972
101279
|
};
|
|
101280
|
+
export declare type RadarUpdatePositionLaborCostEstimateSettingsInput = {
|
|
101281
|
+
defaultAmount?: InputMaybe<RadarMoneyInput>;
|
|
101282
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101283
|
+
};
|
|
100973
101284
|
export declare type RadarUrlFieldValue = {
|
|
100974
101285
|
__typename?: 'RadarUrlFieldValue';
|
|
100975
101286
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -103185,6 +103496,22 @@ export declare type SearchResult = {
|
|
|
103185
103496
|
type: SearchResultType;
|
|
103186
103497
|
url: Scalars['URL']['output'];
|
|
103187
103498
|
};
|
|
103499
|
+
export declare type SearchResultAssetsObject = SearchResult & {
|
|
103500
|
+
__typename?: 'SearchResultAssetsObject';
|
|
103501
|
+
description: Scalars['String']['output'];
|
|
103502
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
103503
|
+
id: Scalars['ID']['output'];
|
|
103504
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
103505
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
103506
|
+
objectSchemaEntity?: Maybe<AssetsSchema>;
|
|
103507
|
+
objectTypeEntity?: Maybe<AssetsObjectType>;
|
|
103508
|
+
schemaAri: Scalars['ID']['output'];
|
|
103509
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
103510
|
+
title: Scalars['String']['output'];
|
|
103511
|
+
type: SearchResultType;
|
|
103512
|
+
typeAri: Scalars['ID']['output'];
|
|
103513
|
+
url: Scalars['URL']['output'];
|
|
103514
|
+
};
|
|
103188
103515
|
export declare type SearchResultAssetsObjectSchema = SearchResult & {
|
|
103189
103516
|
__typename?: 'SearchResultAssetsObjectSchema';
|
|
103190
103517
|
description: Scalars['String']['output'];
|
|
@@ -103192,7 +103519,6 @@ export declare type SearchResultAssetsObjectSchema = SearchResult & {
|
|
|
103192
103519
|
id: Scalars['ID']['output'];
|
|
103193
103520
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
103194
103521
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
103195
|
-
schemaAri: Scalars['ID']['output'];
|
|
103196
103522
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
103197
103523
|
title: Scalars['String']['output'];
|
|
103198
103524
|
type: SearchResultType;
|
|
@@ -103205,10 +103531,11 @@ export declare type SearchResultAssetsObjectType = SearchResult & {
|
|
|
103205
103531
|
id: Scalars['ID']['output'];
|
|
103206
103532
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
103207
103533
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
103534
|
+
objectSchemaEntity?: Maybe<AssetsSchema>;
|
|
103535
|
+
schemaAri: Scalars['ID']['output'];
|
|
103208
103536
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
103209
103537
|
title: Scalars['String']['output'];
|
|
103210
103538
|
type: SearchResultType;
|
|
103211
|
-
typeAri: Scalars['ID']['output'];
|
|
103212
103539
|
url: Scalars['URL']['output'];
|
|
103213
103540
|
};
|
|
103214
103541
|
export declare type SearchResultAtlasGoal = SearchResult & {
|
|
@@ -127787,6 +128114,7 @@ export declare type TownsquareProjectsAddGoalLinkPayload = {
|
|
|
127787
128114
|
};
|
|
127788
128115
|
export declare type TownsquareProjectsAddJiraWorkItemLinkInput = {
|
|
127789
128116
|
projectId: Scalars['ID']['input'];
|
|
128117
|
+
replace?: InputMaybe<Scalars['Boolean']['input']>;
|
|
127790
128118
|
workItemId: Scalars['ID']['input'];
|
|
127791
128119
|
};
|
|
127792
128120
|
export declare type TownsquareProjectsAddJiraWorkItemLinkPayload = {
|
|
@@ -128044,6 +128372,13 @@ export declare type TownsquareProjectsShareProjectPayload = {
|
|
|
128044
128372
|
success: Scalars['Boolean']['output'];
|
|
128045
128373
|
usersAdded?: Maybe<Array<User>>;
|
|
128046
128374
|
};
|
|
128375
|
+
export declare type TownsquareProjectsWorkItemAlreadyLinkedMutationErrorExtension = MutationErrorExtension & {
|
|
128376
|
+
__typename?: 'TownsquareProjectsWorkItemAlreadyLinkedMutationErrorExtension';
|
|
128377
|
+
canReplace?: Maybe<Scalars['Boolean']['output']>;
|
|
128378
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
128379
|
+
project?: Maybe<TownsquareProject>;
|
|
128380
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
128381
|
+
};
|
|
128047
128382
|
export declare type TownsquareQueryApi = {
|
|
128048
128383
|
__typename?: 'TownsquareQueryApi';
|
|
128049
128384
|
allWorkspaceSummariesForOrg?: Maybe<TownsquareWorkspaceSummaryConnection>;
|
|
@@ -128834,6 +129169,21 @@ export declare type TrelloAttachmentUpdated = {
|
|
|
128834
129169
|
__typename?: 'TrelloAttachmentUpdated';
|
|
128835
129170
|
id: Scalars['ID']['output'];
|
|
128836
129171
|
};
|
|
129172
|
+
export declare type TrelloBaseBoard = {
|
|
129173
|
+
enterprise?: Maybe<TrelloEnterprise>;
|
|
129174
|
+
enterpriseOwned: Scalars['Boolean']['output'];
|
|
129175
|
+
id: Scalars['ID']['output'];
|
|
129176
|
+
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
129177
|
+
limits?: Maybe<TrelloBoardLimits>;
|
|
129178
|
+
lists?: Maybe<TrelloListConnection>;
|
|
129179
|
+
objectId: Scalars['ID']['output'];
|
|
129180
|
+
workspace?: Maybe<TrelloWorkspace>;
|
|
129181
|
+
};
|
|
129182
|
+
export declare type TrelloBaseBoardListsArgs = {
|
|
129183
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129184
|
+
filter?: InputMaybe<TrelloListFilterInput>;
|
|
129185
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129186
|
+
};
|
|
128837
129187
|
export declare type TrelloBaseBoardPrefs = {
|
|
128838
129188
|
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
128839
129189
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -128888,7 +129238,7 @@ export declare type TrelloBaseCardChecklistsArgs = {
|
|
|
128888
129238
|
checklistId?: InputMaybe<Scalars['ID']['input']>;
|
|
128889
129239
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128890
129240
|
};
|
|
128891
|
-
export declare type TrelloBoard = Node & {
|
|
129241
|
+
export declare type TrelloBoard = Node & TrelloBaseBoard & {
|
|
128892
129242
|
__typename?: 'TrelloBoard';
|
|
128893
129243
|
closed: Scalars['Boolean']['output'];
|
|
128894
129244
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
@@ -129067,7 +129417,6 @@ export declare type TrelloBoardMirrorCardsMirrorCardsArgs = {
|
|
|
129067
129417
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129068
129418
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129069
129419
|
};
|
|
129070
|
-
export declare type TrelloBoardOrInbox = TrelloBoard | TrelloInbox;
|
|
129071
129420
|
export declare type TrelloBoardPowerUpConnection = {
|
|
129072
129421
|
__typename?: 'TrelloBoardPowerUpConnection';
|
|
129073
129422
|
edges?: Maybe<Array<TrelloBoardPowerUpEdge>>;
|
|
@@ -130154,6 +130503,15 @@ export declare type TrelloEnterprisePrefs = {
|
|
|
130154
130503
|
__typename?: 'TrelloEnterprisePrefs';
|
|
130155
130504
|
atlassianIntelligence?: Maybe<TrelloAtlassianIntelligence>;
|
|
130156
130505
|
};
|
|
130506
|
+
export declare type TrelloGenerateChecklistsForCardInput = {
|
|
130507
|
+
cardId: Scalars['ID']['input'];
|
|
130508
|
+
};
|
|
130509
|
+
export declare type TrelloGenerateChecklistsForCardPayload = Payload & {
|
|
130510
|
+
__typename?: 'TrelloGenerateChecklistsForCardPayload';
|
|
130511
|
+
card?: Maybe<TrelloCard>;
|
|
130512
|
+
errors?: Maybe<Array<MutationError>>;
|
|
130513
|
+
success: Scalars['Boolean']['output'];
|
|
130514
|
+
};
|
|
130157
130515
|
export declare type TrelloImagePreview = {
|
|
130158
130516
|
__typename?: 'TrelloImagePreview';
|
|
130159
130517
|
bytes?: Maybe<Scalars['Float']['output']>;
|
|
@@ -130183,7 +130541,7 @@ export declare type TrelloImagePreviewUpdatedConnection = {
|
|
|
130183
130541
|
edges?: Maybe<Array<TrelloImagePreviewEdgeUpdated>>;
|
|
130184
130542
|
nodes?: Maybe<Array<TrelloImagePreview>>;
|
|
130185
130543
|
};
|
|
130186
|
-
export declare type TrelloInbox = {
|
|
130544
|
+
export declare type TrelloInbox = TrelloBaseBoard & {
|
|
130187
130545
|
__typename?: 'TrelloInbox';
|
|
130188
130546
|
board: TrelloBoard;
|
|
130189
130547
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
@@ -130635,6 +130993,7 @@ export declare type TrelloMutationApi = {
|
|
|
130635
130993
|
deletePlannerCalendarEvent?: Maybe<TrelloDeletePlannerCalendarEventPayload>;
|
|
130636
130994
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
130637
130995
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
130996
|
+
generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
|
|
130638
130997
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
130639
130998
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
130640
130999
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
@@ -130707,6 +131066,9 @@ export declare type TrelloMutationApiDeleteWorkspaceTagArgs = {
|
|
|
130707
131066
|
export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
130708
131067
|
input: TrelloEditPlannerCalendarEventInput;
|
|
130709
131068
|
};
|
|
131069
|
+
export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
|
|
131070
|
+
input: TrelloGenerateChecklistsForCardInput;
|
|
131071
|
+
};
|
|
130710
131072
|
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
130711
131073
|
input: TrelloMergeCardsInput;
|
|
130712
131074
|
};
|
|
@@ -131262,7 +131624,7 @@ export declare type TrelloQueryApi = {
|
|
|
131262
131624
|
board?: Maybe<TrelloBoard>;
|
|
131263
131625
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
131264
131626
|
boardMirrorCardInfo?: Maybe<TrelloBoardMirrorCards>;
|
|
131265
|
-
boardOrInbox?: Maybe<
|
|
131627
|
+
boardOrInbox?: Maybe<TrelloBaseBoard>;
|
|
131266
131628
|
card?: Maybe<TrelloCard>;
|
|
131267
131629
|
cardBatch?: Maybe<TrelloCardBatch>;
|
|
131268
131630
|
cardByShortLink?: Maybe<TrelloCard>;
|