@forge/cli-shared 8.8.0-next.3 → 8.8.0-next.4
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 +397 -105
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +67 -22
- package/package.json +2 -2
|
@@ -6052,6 +6052,8 @@ export declare type BitbucketPullRequest = Node & {
|
|
|
6052
6052
|
__typename?: 'BitbucketPullRequest';
|
|
6053
6053
|
author?: Maybe<User>;
|
|
6054
6054
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
6055
|
+
diff?: Maybe<Scalars['URL']['output']>;
|
|
6056
|
+
diffstat?: Maybe<Scalars['URL']['output']>;
|
|
6055
6057
|
href?: Maybe<Scalars['URL']['output']>;
|
|
6056
6058
|
id: Scalars['ID']['output'];
|
|
6057
6059
|
state?: Maybe<Scalars['String']['output']>;
|
|
@@ -6059,11 +6061,15 @@ export declare type BitbucketPullRequest = Node & {
|
|
|
6059
6061
|
};
|
|
6060
6062
|
export declare type BitbucketQuery = {
|
|
6061
6063
|
__typename?: 'BitbucketQuery';
|
|
6064
|
+
bitbucketPullRequest?: Maybe<BitbucketPullRequest>;
|
|
6062
6065
|
bitbucketPullRequests?: Maybe<Array<Maybe<BitbucketPullRequest>>>;
|
|
6063
6066
|
bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
|
|
6064
6067
|
bitbucketRepository?: Maybe<BitbucketRepository>;
|
|
6065
6068
|
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
6066
6069
|
};
|
|
6070
|
+
export declare type BitbucketQueryBitbucketPullRequestArgs = {
|
|
6071
|
+
id: Scalars['ID']['input'];
|
|
6072
|
+
};
|
|
6067
6073
|
export declare type BitbucketQueryBitbucketPullRequestsArgs = {
|
|
6068
6074
|
ids: Array<Scalars['ID']['input']>;
|
|
6069
6075
|
};
|
|
@@ -21598,6 +21604,11 @@ export declare type ConvoAiAgentTraceMessage = ConvoAiAgentMessage & {
|
|
|
21598
21604
|
status: ConvoAiAgentSessionStatus;
|
|
21599
21605
|
timeCreated: Scalars['DateTime']['output'];
|
|
21600
21606
|
};
|
|
21607
|
+
export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
21608
|
+
__typename?: 'ConvoAiConfluenceSpaceRecommendation';
|
|
21609
|
+
id: Scalars['ID']['output'];
|
|
21610
|
+
name: Scalars['String']['output'];
|
|
21611
|
+
};
|
|
21601
21612
|
export declare type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
|
|
21602
21613
|
__typename?: 'ConvoAiEmptyConversation';
|
|
21603
21614
|
status: ConvoAiAgentSessionStatus;
|
|
@@ -26007,6 +26018,46 @@ export declare type DevAiWorkspace = {
|
|
|
26007
26018
|
status?: Maybe<Scalars['String']['output']>;
|
|
26008
26019
|
workspaceAri: Scalars['ID']['output'];
|
|
26009
26020
|
};
|
|
26021
|
+
export declare type DevConsoleAppResourceUsageDetailedViewFiltersInput = {
|
|
26022
|
+
contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
26023
|
+
environment?: InputMaybe<Scalars['ID']['input']>;
|
|
26024
|
+
interval: DevConsoleDateIntervalInput;
|
|
26025
|
+
resource: DevConsoleResource;
|
|
26026
|
+
};
|
|
26027
|
+
export declare type DevConsoleAppResourceUsageDetailedViewResponse = {
|
|
26028
|
+
__typename?: 'DevConsoleAppResourceUsageDetailedViewResponse';
|
|
26029
|
+
error?: Maybe<QueryError>;
|
|
26030
|
+
resourceUsage?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
26031
|
+
};
|
|
26032
|
+
export declare type DevConsoleAppResourceUsageFiltersInput = {
|
|
26033
|
+
contextAris?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
26034
|
+
environment?: InputMaybe<Scalars['ID']['input']>;
|
|
26035
|
+
interval: DevConsoleDateIntervalInput;
|
|
26036
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
26037
|
+
resource: DevConsoleResource;
|
|
26038
|
+
};
|
|
26039
|
+
export declare type DevConsoleAppResourceUsageFlatResponse = {
|
|
26040
|
+
__typename?: 'DevConsoleAppResourceUsageFlatResponse';
|
|
26041
|
+
error?: Maybe<QueryError>;
|
|
26042
|
+
pagination: DevConsolePagination;
|
|
26043
|
+
resourceUsage: Array<DevConsoleResourceUsage>;
|
|
26044
|
+
};
|
|
26045
|
+
export declare type DevConsoleAppResourceUsageGroupedResponse = {
|
|
26046
|
+
__typename?: 'DevConsoleAppResourceUsageGroupedResponse';
|
|
26047
|
+
error?: Maybe<QueryError>;
|
|
26048
|
+
pagination: DevConsolePagination;
|
|
26049
|
+
resourceUsage: Array<DevConsoleResourceUsagePeriod>;
|
|
26050
|
+
};
|
|
26051
|
+
export declare type DevConsoleAppResourceUsageResponse = DevConsoleAppResourceUsageFlatResponse | DevConsoleAppResourceUsageGroupedResponse;
|
|
26052
|
+
export declare type DevConsoleAppUsageFiltersInput = {
|
|
26053
|
+
interval: DevConsoleDateIntervalInput;
|
|
26054
|
+
resource: Array<DevConsoleResource>;
|
|
26055
|
+
};
|
|
26056
|
+
export declare type DevConsoleAppUsageOverviewResponse = {
|
|
26057
|
+
__typename?: 'DevConsoleAppUsageOverviewResponse';
|
|
26058
|
+
error?: Maybe<QueryError>;
|
|
26059
|
+
resourceUsage?: Maybe<DevConsoleResourceUsageData>;
|
|
26060
|
+
};
|
|
26010
26061
|
export declare type DevConsoleArchiveDeveloperSpaceInput = {
|
|
26011
26062
|
developerSpaceId: Scalars['String']['input'];
|
|
26012
26063
|
};
|
|
@@ -26027,6 +26078,10 @@ export declare type DevConsoleBulkDeveloperSpaceDetailsResponse = {
|
|
|
26027
26078
|
export declare type DevConsoleCreateDeveloperSpaceInput = {
|
|
26028
26079
|
name: Scalars['String']['input'];
|
|
26029
26080
|
};
|
|
26081
|
+
export declare type DevConsoleDateIntervalInput = {
|
|
26082
|
+
end: Scalars['DateTime']['input'];
|
|
26083
|
+
start: Scalars['DateTime']['input'];
|
|
26084
|
+
};
|
|
26030
26085
|
export declare type DevConsoleDeveloperSpace = {
|
|
26031
26086
|
__typename?: 'DevConsoleDeveloperSpace';
|
|
26032
26087
|
id: Scalars['String']['output'];
|
|
@@ -26089,6 +26144,10 @@ export declare enum DevConsoleDeveloperSpaceType {
|
|
|
26089
26144
|
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
26090
26145
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
26091
26146
|
}
|
|
26147
|
+
export declare enum DevConsoleGroupBy {
|
|
26148
|
+
ContextAri = "CONTEXT_ARI",
|
|
26149
|
+
EnvironmentId = "ENVIRONMENT_ID"
|
|
26150
|
+
}
|
|
26092
26151
|
export declare type DevConsoleMutation = {
|
|
26093
26152
|
__typename?: 'DevConsoleMutation';
|
|
26094
26153
|
acceptAppBillingConsent: DevConsoleResponsePayload;
|
|
@@ -26125,13 +26184,34 @@ export declare type DevConsoleMutationUpdateDeveloperSpaceMemberArgs = {
|
|
|
26125
26184
|
export declare type DevConsoleMutationUpdateDeveloperSpaceSettingsArgs = {
|
|
26126
26185
|
input: DevConsoleUpdateDeveloperSpaceSettingsInput;
|
|
26127
26186
|
};
|
|
26187
|
+
export declare type DevConsolePagination = {
|
|
26188
|
+
__typename?: 'DevConsolePagination';
|
|
26189
|
+
page: Scalars['Int']['output'];
|
|
26190
|
+
pageSize: Scalars['Int']['output'];
|
|
26191
|
+
};
|
|
26128
26192
|
export declare type DevConsoleQuery = {
|
|
26129
26193
|
__typename?: 'DevConsoleQuery';
|
|
26194
|
+
appResourceUsage: DevConsoleAppResourceUsageResponse;
|
|
26195
|
+
appResourceUsageDetailedView: DevConsoleAppResourceUsageDetailedViewResponse;
|
|
26196
|
+
appUsageOverview: DevConsoleAppUsageOverviewResponse;
|
|
26130
26197
|
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
26131
26198
|
getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
|
|
26132
26199
|
getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
26133
26200
|
tenantContexts: Array<Maybe<DevConsoleTenantContext>>;
|
|
26134
26201
|
};
|
|
26202
|
+
export declare type DevConsoleQueryAppResourceUsageArgs = {
|
|
26203
|
+
appId: Scalars['ID']['input'];
|
|
26204
|
+
filters: DevConsoleAppResourceUsageFiltersInput;
|
|
26205
|
+
groupBy?: InputMaybe<DevConsoleGroupBy>;
|
|
26206
|
+
};
|
|
26207
|
+
export declare type DevConsoleQueryAppResourceUsageDetailedViewArgs = {
|
|
26208
|
+
appId: Scalars['ID']['input'];
|
|
26209
|
+
filters: DevConsoleAppResourceUsageDetailedViewFiltersInput;
|
|
26210
|
+
};
|
|
26211
|
+
export declare type DevConsoleQueryAppUsageOverviewArgs = {
|
|
26212
|
+
appId: Scalars['ID']['input'];
|
|
26213
|
+
filters: DevConsoleAppUsageFiltersInput;
|
|
26214
|
+
};
|
|
26135
26215
|
export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
26136
26216
|
developerSpaceIds: Array<Scalars['String']['input']>;
|
|
26137
26217
|
};
|
|
@@ -26145,6 +26225,45 @@ export declare type DevConsoleRemoveDeveloperSpaceMemberInput = {
|
|
|
26145
26225
|
developerSpaceId: Scalars['String']['input'];
|
|
26146
26226
|
memberId: Scalars['String']['input'];
|
|
26147
26227
|
};
|
|
26228
|
+
export declare enum DevConsoleResource {
|
|
26229
|
+
FunctionCompute = "FUNCTION_COMPUTE",
|
|
26230
|
+
KvsRead = "KVS_READ",
|
|
26231
|
+
KvsWrite = "KVS_WRITE",
|
|
26232
|
+
LogsWrite = "LOGS_WRITE",
|
|
26233
|
+
SqlCompute = "SQL_COMPUTE",
|
|
26234
|
+
SqlRequests = "SQL_REQUESTS",
|
|
26235
|
+
SqlStorage = "SQL_STORAGE"
|
|
26236
|
+
}
|
|
26237
|
+
export declare type DevConsoleResourceUsage = {
|
|
26238
|
+
__typename?: 'DevConsoleResourceUsage';
|
|
26239
|
+
period: Scalars['String']['output'];
|
|
26240
|
+
resolution: DevConsoleUsageResolution;
|
|
26241
|
+
tokenUnit: Scalars['String']['output'];
|
|
26242
|
+
tokensConsumed: Scalars['String']['output'];
|
|
26243
|
+
};
|
|
26244
|
+
export declare type DevConsoleResourceUsageData = {
|
|
26245
|
+
__typename?: 'DevConsoleResourceUsageData';
|
|
26246
|
+
functionCompute?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
26247
|
+
kvsRead?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
26248
|
+
kvsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
26249
|
+
logsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
26250
|
+
sqlCompute?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
26251
|
+
sqlRequests?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
26252
|
+
sqlStorage?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
26253
|
+
};
|
|
26254
|
+
export declare type DevConsoleResourceUsageGroup = {
|
|
26255
|
+
__typename?: 'DevConsoleResourceUsageGroup';
|
|
26256
|
+
groupBy: Scalars['String']['output'];
|
|
26257
|
+
groupValue: Scalars['String']['output'];
|
|
26258
|
+
tokenUnit: Scalars['String']['output'];
|
|
26259
|
+
tokensConsumed: Scalars['String']['output'];
|
|
26260
|
+
};
|
|
26261
|
+
export declare type DevConsoleResourceUsagePeriod = {
|
|
26262
|
+
__typename?: 'DevConsoleResourceUsagePeriod';
|
|
26263
|
+
groups: Array<DevConsoleResourceUsageGroup>;
|
|
26264
|
+
period: Scalars['String']['output'];
|
|
26265
|
+
resolution: DevConsoleUsageResolution;
|
|
26266
|
+
};
|
|
26148
26267
|
export declare type DevConsoleResponsePayload = Payload & {
|
|
26149
26268
|
__typename?: 'DevConsoleResponsePayload';
|
|
26150
26269
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -26167,6 +26286,12 @@ export declare type DevConsoleUpdateDeveloperSpaceSettingsInput = {
|
|
|
26167
26286
|
logo?: InputMaybe<Scalars['Upload']['input']>;
|
|
26168
26287
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
26169
26288
|
};
|
|
26289
|
+
export declare enum DevConsoleUsageResolution {
|
|
26290
|
+
OneDay = "ONE_DAY",
|
|
26291
|
+
OneHour = "ONE_HOUR",
|
|
26292
|
+
OneMonth = "ONE_MONTH",
|
|
26293
|
+
OneWeek = "ONE_WEEK"
|
|
26294
|
+
}
|
|
26170
26295
|
export declare type DevOps = {
|
|
26171
26296
|
__typename?: 'DevOps';
|
|
26172
26297
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -35849,8 +35974,6 @@ export declare type GraphStore = {
|
|
|
35849
35974
|
userMentionedInMessageInverse?: Maybe<GraphStoreSimplifiedUserMentionedInMessageInverseConnection>;
|
|
35850
35975
|
userMentionedInVideoComment?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentConnection>;
|
|
35851
35976
|
userMentionedInVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentInverseConnection>;
|
|
35852
|
-
userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
|
|
35853
|
-
userMergedPullRequestInverse?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseConnection>;
|
|
35854
35977
|
userOwnedBranch?: Maybe<GraphStoreSimplifiedUserOwnedBranchConnection>;
|
|
35855
35978
|
userOwnedBranchInverse?: Maybe<GraphStoreSimplifiedUserOwnedBranchInverseConnection>;
|
|
35856
35979
|
userOwnedCalendarEvent?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventConnection>;
|
|
@@ -35895,8 +36018,6 @@ export declare type GraphStore = {
|
|
|
35895
36018
|
userUpdatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection>;
|
|
35896
36019
|
userUpdatedAtlasProject?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectConnection>;
|
|
35897
36020
|
userUpdatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection>;
|
|
35898
|
-
userUpdatedComment?: Maybe<GraphStoreSimplifiedUserUpdatedCommentConnection>;
|
|
35899
|
-
userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
|
|
35900
36021
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
35901
36022
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
35902
36023
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
@@ -40505,20 +40626,6 @@ export declare type GraphStoreUserMentionedInVideoCommentInverseArgs = {
|
|
|
40505
40626
|
id: Scalars['ID']['input'];
|
|
40506
40627
|
sort?: InputMaybe<GraphStoreUserMentionedInVideoCommentSortInput>;
|
|
40507
40628
|
};
|
|
40508
|
-
export declare type GraphStoreUserMergedPullRequestArgs = {
|
|
40509
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40510
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40511
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40512
|
-
id: Scalars['ID']['input'];
|
|
40513
|
-
sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
|
|
40514
|
-
};
|
|
40515
|
-
export declare type GraphStoreUserMergedPullRequestInverseArgs = {
|
|
40516
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40517
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40518
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40519
|
-
id: Scalars['ID']['input'];
|
|
40520
|
-
sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
|
|
40521
|
-
};
|
|
40522
40629
|
export declare type GraphStoreUserOwnedBranchArgs = {
|
|
40523
40630
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40524
40631
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40829,20 +40936,6 @@ export declare type GraphStoreUserUpdatedAtlasProjectInverseArgs = {
|
|
|
40829
40936
|
id: Scalars['ID']['input'];
|
|
40830
40937
|
sort?: InputMaybe<GraphStoreUserUpdatedAtlasProjectSortInput>;
|
|
40831
40938
|
};
|
|
40832
|
-
export declare type GraphStoreUserUpdatedCommentArgs = {
|
|
40833
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40834
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40835
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40836
|
-
id: Scalars['ID']['input'];
|
|
40837
|
-
sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
|
|
40838
|
-
};
|
|
40839
|
-
export declare type GraphStoreUserUpdatedCommentInverseArgs = {
|
|
40840
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40841
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40842
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40843
|
-
id: Scalars['ID']['input'];
|
|
40844
|
-
sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
|
|
40845
|
-
};
|
|
40846
40939
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostArgs = {
|
|
40847
40940
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40848
40941
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -42973,6 +43066,20 @@ export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
42973
43066
|
to: Scalars['ID']['input'];
|
|
42974
43067
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
42975
43068
|
};
|
|
43069
|
+
export declare type GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageInput = {
|
|
43070
|
+
relationships: Array<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput>;
|
|
43071
|
+
};
|
|
43072
|
+
export declare type GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload = Payload & {
|
|
43073
|
+
__typename?: 'GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload';
|
|
43074
|
+
errors?: Maybe<Array<MutationError>>;
|
|
43075
|
+
success: Scalars['Boolean']['output'];
|
|
43076
|
+
};
|
|
43077
|
+
export declare type GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput = {
|
|
43078
|
+
from: Scalars['ID']['input'];
|
|
43079
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
43080
|
+
to: Scalars['ID']['input'];
|
|
43081
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
43082
|
+
};
|
|
42976
43083
|
export declare type GraphStoreCreateParentTeamHasChildTeamInput = {
|
|
42977
43084
|
relationships: Array<GraphStoreCreateParentTeamHasChildTeamRelationshipInput>;
|
|
42978
43085
|
};
|
|
@@ -43560,6 +43667,19 @@ export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
43560
43667
|
from: Scalars['ID']['input'];
|
|
43561
43668
|
to: Scalars['ID']['input'];
|
|
43562
43669
|
};
|
|
43670
|
+
export declare type GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageInput = {
|
|
43671
|
+
relationships: Array<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput>;
|
|
43672
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43673
|
+
};
|
|
43674
|
+
export declare type GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload = Payload & {
|
|
43675
|
+
__typename?: 'GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload';
|
|
43676
|
+
errors?: Maybe<Array<MutationError>>;
|
|
43677
|
+
success: Scalars['Boolean']['output'];
|
|
43678
|
+
};
|
|
43679
|
+
export declare type GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageRelationshipInput = {
|
|
43680
|
+
from: Scalars['ID']['input'];
|
|
43681
|
+
to: Scalars['ID']['input'];
|
|
43682
|
+
};
|
|
43563
43683
|
export declare type GraphStoreDeleteParentTeamHasChildTeamInput = {
|
|
43564
43684
|
relationships: Array<GraphStoreDeleteParentTeamHasChildTeamRelationshipInput>;
|
|
43565
43685
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -47696,10 +47816,7 @@ export declare type GraphStoreMeetingHasMeetingNotesPageSortInput = {
|
|
|
47696
47816
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47697
47817
|
};
|
|
47698
47818
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
|
|
47699
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
47700
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
47701
47819
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47702
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
47703
47820
|
};
|
|
47704
47821
|
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
|
|
47705
47822
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -47715,6 +47832,7 @@ export declare type GraphStoreMutation = {
|
|
|
47715
47832
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
47716
47833
|
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
47717
47834
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
47835
|
+
createMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
|
|
47718
47836
|
createParentTeamHasChildTeam?: Maybe<GraphStoreCreateParentTeamHasChildTeamPayload>;
|
|
47719
47837
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
47720
47838
|
createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
|
|
@@ -47742,6 +47860,7 @@ export declare type GraphStoreMutation = {
|
|
|
47742
47860
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
47743
47861
|
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
47744
47862
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
47863
|
+
deleteMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
|
|
47745
47864
|
deleteParentTeamHasChildTeam?: Maybe<GraphStoreDeleteParentTeamHasChildTeamPayload>;
|
|
47746
47865
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
47747
47866
|
deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
|
|
@@ -47788,6 +47907,9 @@ export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
|
|
|
47788
47907
|
export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
47789
47908
|
input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
47790
47909
|
};
|
|
47910
|
+
export declare type GraphStoreMutationCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
47911
|
+
input?: InputMaybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
|
|
47912
|
+
};
|
|
47791
47913
|
export declare type GraphStoreMutationCreateParentTeamHasChildTeamArgs = {
|
|
47792
47914
|
input?: InputMaybe<GraphStoreCreateParentTeamHasChildTeamInput>;
|
|
47793
47915
|
};
|
|
@@ -47869,6 +47991,9 @@ export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
|
47869
47991
|
export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
47870
47992
|
input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
47871
47993
|
};
|
|
47994
|
+
export declare type GraphStoreMutationDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
47995
|
+
input?: InputMaybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
|
|
47996
|
+
};
|
|
47872
47997
|
export declare type GraphStoreMutationDeleteParentTeamHasChildTeamArgs = {
|
|
47873
47998
|
input?: InputMaybe<GraphStoreDeleteParentTeamHasChildTeamInput>;
|
|
47874
47999
|
};
|
|
@@ -51733,12 +51858,10 @@ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseEdge =
|
|
|
51733
51858
|
};
|
|
51734
51859
|
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseUnion = LoomMeeting;
|
|
51735
51860
|
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion = ConfluencePage;
|
|
51736
|
-
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo &
|
|
51861
|
+
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & {
|
|
51737
51862
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
|
|
51738
51863
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
|
|
51739
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
51740
51864
|
pageInfo: PageInfo;
|
|
51741
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
51742
51865
|
};
|
|
51743
51866
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge = {
|
|
51744
51867
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge';
|
|
@@ -51748,12 +51871,10 @@ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFold
|
|
|
51748
51871
|
lastUpdated: Scalars['DateTime']['output'];
|
|
51749
51872
|
node?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion>;
|
|
51750
51873
|
};
|
|
51751
|
-
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection = HasPageInfo &
|
|
51874
|
+
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection = HasPageInfo & {
|
|
51752
51875
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection';
|
|
51753
51876
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge>>>;
|
|
51754
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
51755
51877
|
pageInfo: PageInfo;
|
|
51756
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
51757
51878
|
};
|
|
51758
51879
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge = {
|
|
51759
51880
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge';
|
|
@@ -55579,34 +55700,6 @@ export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseEdge =
|
|
|
55579
55700
|
};
|
|
55580
55701
|
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55581
55702
|
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentUnion = LoomComment;
|
|
55582
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestConnection = HasPageInfo & {
|
|
55583
|
-
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestConnection';
|
|
55584
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestEdge>>>;
|
|
55585
|
-
pageInfo: PageInfo;
|
|
55586
|
-
};
|
|
55587
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestEdge = {
|
|
55588
|
-
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestEdge';
|
|
55589
|
-
createdAt: Scalars['DateTime']['output'];
|
|
55590
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
55591
|
-
id: Scalars['ID']['output'];
|
|
55592
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
55593
|
-
node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestUnion>;
|
|
55594
|
-
};
|
|
55595
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseConnection = HasPageInfo & {
|
|
55596
|
-
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestInverseConnection';
|
|
55597
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseEdge>>>;
|
|
55598
|
-
pageInfo: PageInfo;
|
|
55599
|
-
};
|
|
55600
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseEdge = {
|
|
55601
|
-
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestInverseEdge';
|
|
55602
|
-
createdAt: Scalars['DateTime']['output'];
|
|
55603
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
55604
|
-
id: Scalars['ID']['output'];
|
|
55605
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
55606
|
-
node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseUnion>;
|
|
55607
|
-
};
|
|
55608
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55609
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
55610
55703
|
export declare type GraphStoreSimplifiedUserOwnedBranchConnection = HasPageInfo & {
|
|
55611
55704
|
__typename?: 'GraphStoreSimplifiedUserOwnedBranchConnection';
|
|
55612
55705
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedBranchEdge>>>;
|
|
@@ -56227,34 +56320,6 @@ export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseEdge = {
|
|
|
56227
56320
|
};
|
|
56228
56321
|
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56229
56322
|
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectUnion = TownsquareProject;
|
|
56230
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentConnection = HasPageInfo & {
|
|
56231
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentConnection';
|
|
56232
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentEdge>>>;
|
|
56233
|
-
pageInfo: PageInfo;
|
|
56234
|
-
};
|
|
56235
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentEdge = {
|
|
56236
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentEdge';
|
|
56237
|
-
createdAt: Scalars['DateTime']['output'];
|
|
56238
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
56239
|
-
id: Scalars['ID']['output'];
|
|
56240
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
56241
|
-
node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentUnion>;
|
|
56242
|
-
};
|
|
56243
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentInverseConnection = HasPageInfo & {
|
|
56244
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseConnection';
|
|
56245
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseEdge>>>;
|
|
56246
|
-
pageInfo: PageInfo;
|
|
56247
|
-
};
|
|
56248
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentInverseEdge = {
|
|
56249
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseEdge';
|
|
56250
|
-
createdAt: Scalars['DateTime']['output'];
|
|
56251
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
56252
|
-
id: Scalars['ID']['output'];
|
|
56253
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
56254
|
-
node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseUnion>;
|
|
56255
|
-
};
|
|
56256
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56257
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
56258
56323
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
56259
56324
|
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection';
|
|
56260
56325
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostEdge>>>;
|
|
@@ -57746,9 +57811,6 @@ export declare type GraphStoreUserMentionedInMessageSortInput = {
|
|
|
57746
57811
|
export declare type GraphStoreUserMentionedInVideoCommentSortInput = {
|
|
57747
57812
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57748
57813
|
};
|
|
57749
|
-
export declare type GraphStoreUserMergedPullRequestSortInput = {
|
|
57750
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57751
|
-
};
|
|
57752
57814
|
export declare type GraphStoreUserOwnedBranchSortInput = {
|
|
57753
57815
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57754
57816
|
};
|
|
@@ -57828,9 +57890,6 @@ export declare type GraphStoreUserUpdatedAtlasGoalSortInput = {
|
|
|
57828
57890
|
export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
|
|
57829
57891
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57830
57892
|
};
|
|
57831
|
-
export declare type GraphStoreUserUpdatedCommentSortInput = {
|
|
57832
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57833
|
-
};
|
|
57834
57893
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
57835
57894
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57836
57895
|
};
|
|
@@ -65880,6 +65939,7 @@ export declare type JiraCustomFieldType = {
|
|
|
65880
65939
|
__typename?: 'JiraCustomFieldType';
|
|
65881
65940
|
category?: Maybe<JiraCustomFieldTypeCategory>;
|
|
65882
65941
|
description?: Maybe<Scalars['String']['output']>;
|
|
65942
|
+
effectiveKey?: Maybe<Scalars['String']['output']>;
|
|
65883
65943
|
hasCascadingOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
65884
65944
|
hasOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
65885
65945
|
installedByAppName?: Maybe<Scalars['String']['output']>;
|
|
@@ -67487,7 +67547,7 @@ export declare type JiraFieldWorkTypeDescriptionCustomization = {
|
|
|
67487
67547
|
workTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
67488
67548
|
};
|
|
67489
67549
|
export declare type JiraFieldWorkTypeDescriptionCustomizationInput = {
|
|
67490
|
-
description
|
|
67550
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
67491
67551
|
isDefault: Scalars['Boolean']['input'];
|
|
67492
67552
|
workTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
67493
67553
|
};
|
|
@@ -69301,6 +69361,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
69301
69361
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
69302
69362
|
description?: Maybe<Scalars['String']['output']>;
|
|
69303
69363
|
descriptionCustomisations?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
|
|
69364
|
+
effectiveTypeKey?: Maybe<Scalars['String']['output']>;
|
|
69304
69365
|
fieldId: Scalars['String']['output'];
|
|
69305
69366
|
fieldSchemeOperations?: Maybe<JiraFieldSchemeOperations>;
|
|
69306
69367
|
formatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
@@ -69962,6 +70023,18 @@ export declare type JiraIssueReviewDevSummaryContainer = {
|
|
|
69962
70023
|
overall?: Maybe<JiraIssueReviewDevSummary>;
|
|
69963
70024
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
69964
70025
|
};
|
|
70026
|
+
export declare type JiraIssueSearchAggregationConfigInput = {
|
|
70027
|
+
aggregationFields?: InputMaybe<Array<JiraIssueSearchFieldAggregationInput>>;
|
|
70028
|
+
canEnableAggregation?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70029
|
+
};
|
|
70030
|
+
export declare type JiraIssueSearchAggregationConfigSettings = {
|
|
70031
|
+
__typename?: 'JiraIssueSearchAggregationConfigSettings';
|
|
70032
|
+
aggregationFields?: Maybe<Array<JiraIssueSearchFieldAggregation>>;
|
|
70033
|
+
canEnableAggregation?: Maybe<Scalars['Boolean']['output']>;
|
|
70034
|
+
};
|
|
70035
|
+
export declare enum JiraIssueSearchAggregationFunction {
|
|
70036
|
+
Rollup = "ROLLUP"
|
|
70037
|
+
}
|
|
69965
70038
|
export declare type JiraIssueSearchBulkViewContextMapping = {
|
|
69966
70039
|
__typename?: 'JiraIssueSearchBulkViewContextMapping';
|
|
69967
70040
|
afterIssueId?: Maybe<Scalars['String']['output']>;
|
|
@@ -70079,6 +70152,17 @@ export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
|
|
|
70079
70152
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
70080
70153
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
70081
70154
|
};
|
|
70155
|
+
export declare type JiraIssueSearchFieldAggregation = {
|
|
70156
|
+
__typename?: 'JiraIssueSearchFieldAggregation';
|
|
70157
|
+
aggregationFunction?: Maybe<JiraIssueSearchAggregationFunction>;
|
|
70158
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
70159
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
70160
|
+
};
|
|
70161
|
+
export declare type JiraIssueSearchFieldAggregationInput = {
|
|
70162
|
+
aggregationFunction?: InputMaybe<JiraIssueSearchAggregationFunction>;
|
|
70163
|
+
fieldId?: InputMaybe<Scalars['String']['input']>;
|
|
70164
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70165
|
+
};
|
|
70082
70166
|
export declare type JiraIssueSearchFieldMetadataConnection = {
|
|
70083
70167
|
__typename?: 'JiraIssueSearchFieldMetadataConnection';
|
|
70084
70168
|
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldMetadataEdge>>>;
|
|
@@ -70207,6 +70291,7 @@ export declare type JiraIssueSearchSettings = {
|
|
|
70207
70291
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
70208
70292
|
};
|
|
70209
70293
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
70294
|
+
aggregationConfig?: InputMaybe<JiraIssueSearchAggregationConfigInput>;
|
|
70210
70295
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70211
70296
|
isHideDoneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70212
70297
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70215,6 +70300,10 @@ export declare type JiraIssueSearchStatus = {
|
|
|
70215
70300
|
__typename?: 'JiraIssueSearchStatus';
|
|
70216
70301
|
functions?: Maybe<Array<Maybe<JiraJqlFunctionProcessingStatus>>>;
|
|
70217
70302
|
};
|
|
70303
|
+
export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
70304
|
+
__typename?: 'JiraIssueSearchTimelineViewConfigSettings';
|
|
70305
|
+
aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
|
|
70306
|
+
};
|
|
70218
70307
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
70219
70308
|
__typename?: 'JiraIssueSearchView';
|
|
70220
70309
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -80679,6 +80768,66 @@ export declare type JiraTimelineIssueLinkOperationPayload = {
|
|
|
80679
80768
|
outwardItem?: Maybe<JiraIssue>;
|
|
80680
80769
|
success: Scalars['Boolean']['output'];
|
|
80681
80770
|
};
|
|
80771
|
+
export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
80772
|
+
__typename?: 'JiraTimelineView';
|
|
80773
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
80774
|
+
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
80775
|
+
error?: Maybe<QueryError>;
|
|
80776
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
80777
|
+
filterId?: Maybe<Scalars['String']['output']>;
|
|
80778
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
80779
|
+
id: Scalars['ID']['output'];
|
|
80780
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
80781
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
80782
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
80783
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
80784
|
+
namespace?: Maybe<Scalars['String']['output']>;
|
|
80785
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
80786
|
+
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
80787
|
+
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
80788
|
+
viewId?: Maybe<Scalars['String']['output']>;
|
|
80789
|
+
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
80790
|
+
};
|
|
80791
|
+
export declare type JiraTimelineViewConditionalFormattingRulesArgs = {
|
|
80792
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80793
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80794
|
+
};
|
|
80795
|
+
export declare type JiraTimelineViewFieldSetsArgs = {
|
|
80796
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80797
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
80798
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
80799
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80800
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
80801
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
80802
|
+
};
|
|
80803
|
+
export declare type JiraTimelineViewHasDefaultFieldSetsArgs = {
|
|
80804
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
80805
|
+
};
|
|
80806
|
+
export declare type JiraTimelineViewIsViewConfigModifiedArgs = {
|
|
80807
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
80808
|
+
};
|
|
80809
|
+
export declare type JiraTimelineViewIssuesArgs = {
|
|
80810
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80811
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
80812
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
80813
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80814
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
80815
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
80816
|
+
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
80817
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80818
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
80819
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
80820
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
80821
|
+
};
|
|
80822
|
+
export declare type JiraTimelineViewTimelineSettingsArgs = {
|
|
80823
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
80824
|
+
};
|
|
80825
|
+
export declare type JiraTimelineViewViewSettingsArgs = {
|
|
80826
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
80827
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
80828
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
80829
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
80830
|
+
};
|
|
80682
80831
|
export declare type JiraToolchain = {
|
|
80683
80832
|
__typename?: 'JiraToolchain';
|
|
80684
80833
|
hasViewDevToolsPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -91949,6 +92098,7 @@ export declare type Mutation = {
|
|
|
91949
92098
|
stakeholderComms_bulkCreateStakeholders?: Maybe<StakeholderCommsBulkStakeholderCreationResponse>;
|
|
91950
92099
|
stakeholderComms_bulkDeleteStakeholders?: Maybe<StakeholderCommsBulkStakeholderResponse>;
|
|
91951
92100
|
stakeholderComms_createDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
92101
|
+
stakeholderComms_createIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
91952
92102
|
stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
|
|
91953
92103
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
91954
92104
|
stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
@@ -91960,6 +92110,7 @@ export declare type Mutation = {
|
|
|
91960
92110
|
stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
91961
92111
|
stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
|
|
91962
92112
|
stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
92113
|
+
stakeholderComms_updateIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
91963
92114
|
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
91964
92115
|
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
91965
92116
|
stakeholderComms_updateStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
@@ -94246,6 +94397,9 @@ export declare type MutationStakeholderComms_BulkDeleteStakeholdersArgs = {
|
|
|
94246
94397
|
export declare type MutationStakeholderComms_CreateDraftPageArgs = {
|
|
94247
94398
|
page: StakeholderCommsCreatePageInputType;
|
|
94248
94399
|
};
|
|
94400
|
+
export declare type MutationStakeholderComms_CreateIncidentArgs = {
|
|
94401
|
+
incidentCreateRequest?: InputMaybe<StakeholderCommsIncidentCreateRequest>;
|
|
94402
|
+
};
|
|
94249
94403
|
export declare type MutationStakeholderComms_CreatePageArgs = {
|
|
94250
94404
|
page: StakeholderCommsCreatePageInputType;
|
|
94251
94405
|
};
|
|
@@ -94282,6 +94436,9 @@ export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
|
|
|
94282
94436
|
export declare type MutationStakeholderComms_UpdateDraftPageArgs = {
|
|
94283
94437
|
page: StakeholderCommsUpdatePageInputType;
|
|
94284
94438
|
};
|
|
94439
|
+
export declare type MutationStakeholderComms_UpdateIncidentArgs = {
|
|
94440
|
+
incidentUpdateRequest?: InputMaybe<StakeholderCommsIncidentUpdateRequest>;
|
|
94441
|
+
};
|
|
94285
94442
|
export declare type MutationStakeholderComms_UpdatePageArgs = {
|
|
94286
94443
|
page: StakeholderCommsUpdatePageInputType;
|
|
94287
94444
|
};
|
|
@@ -97708,6 +97865,7 @@ export declare type Query = {
|
|
|
97708
97865
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
97709
97866
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
97710
97867
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
97868
|
+
convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
|
|
97711
97869
|
convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
|
|
97712
97870
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
97713
97871
|
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
@@ -97720,7 +97878,7 @@ export declare type Query = {
|
|
|
97720
97878
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
97721
97879
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
97722
97880
|
cpls_customContributionTargets: CplsCustomContributionTargetConnection;
|
|
97723
|
-
cpls_customContributionTargetsByIds
|
|
97881
|
+
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
97724
97882
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
97725
97883
|
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
97726
97884
|
crossProjectIssueMentionsInCommentsV2?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -98167,6 +98325,7 @@ export declare type Query = {
|
|
|
98167
98325
|
stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
|
|
98168
98326
|
stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
98169
98327
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
98328
|
+
stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
98170
98329
|
stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
98171
98330
|
stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
98172
98331
|
stakeholderComms_getPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
@@ -98187,6 +98346,7 @@ export declare type Query = {
|
|
|
98187
98346
|
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
98188
98347
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
98189
98348
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
98349
|
+
stakeholderComms_listIncidents?: Maybe<StakeholderCommsListIncidentResponse>;
|
|
98190
98350
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
98191
98351
|
stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
|
|
98192
98352
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
@@ -99513,6 +99673,7 @@ export declare type QueryContentByStateArgs = {
|
|
|
99513
99673
|
};
|
|
99514
99674
|
export declare type QueryContentContributorsArgs = {
|
|
99515
99675
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99676
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
99516
99677
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99517
99678
|
id: Scalars['ID']['input'];
|
|
99518
99679
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -99610,6 +99771,11 @@ export declare type QueryContributorsLinkedToConfluencePageV2Args = {
|
|
|
99610
99771
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99611
99772
|
pageId: Scalars['ID']['input'];
|
|
99612
99773
|
};
|
|
99774
|
+
export declare type QueryConvoai_ConfluenceSpaceRecommendationsArgs = {
|
|
99775
|
+
cloudId: Scalars['ID']['input'];
|
|
99776
|
+
pageTitle: Scalars['String']['input'];
|
|
99777
|
+
userPrompt: Scalars['String']['input'];
|
|
99778
|
+
};
|
|
99613
99779
|
export declare type QueryConvoai_HomeThreadsArgs = {
|
|
99614
99780
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99615
99781
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -101342,6 +101508,9 @@ export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
|
|
|
101342
101508
|
export declare type QueryStakeholderComms_GetDraftPageByNameArgs = {
|
|
101343
101509
|
name: Scalars['String']['input'];
|
|
101344
101510
|
};
|
|
101511
|
+
export declare type QueryStakeholderComms_GetIncidentArgs = {
|
|
101512
|
+
getIncidentInput?: InputMaybe<StakeholderCommsGetIncidentInput>;
|
|
101513
|
+
};
|
|
101345
101514
|
export declare type QueryStakeholderComms_GetMembershipsArgs = {
|
|
101346
101515
|
groupId: Scalars['String']['input'];
|
|
101347
101516
|
};
|
|
@@ -101408,6 +101577,9 @@ export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
|
|
|
101408
101577
|
export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
101409
101578
|
name: Scalars['String']['input'];
|
|
101410
101579
|
};
|
|
101580
|
+
export declare type QueryStakeholderComms_ListIncidentsArgs = {
|
|
101581
|
+
listIncidentInput?: InputMaybe<StakeholderCommsListIncidentInput>;
|
|
101582
|
+
};
|
|
101411
101583
|
export declare type QueryStakeholderComms_ListStakeholdersArgs = {
|
|
101412
101584
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101413
101585
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -125776,12 +125948,17 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
125776
125948
|
export declare type StakeholderCommsDailyComponentUptime = {
|
|
125777
125949
|
__typename?: 'StakeholderCommsDailyComponentUptime';
|
|
125778
125950
|
componentDailyAggregate?: Maybe<StakeholderCommsComponentUptimeDailyAggregate>;
|
|
125951
|
+
componentDailyUptimePercentage?: Maybe<Scalars['Float']['output']>;
|
|
125779
125952
|
date: Scalars['String']['output'];
|
|
125780
125953
|
};
|
|
125781
125954
|
export declare enum StakeholderCommsErrorType {
|
|
125782
125955
|
SystemError = "SYSTEM_ERROR",
|
|
125783
125956
|
ValidationError = "VALIDATION_ERROR"
|
|
125784
125957
|
}
|
|
125958
|
+
export declare enum StakeholderCommsExternalIncidentSource {
|
|
125959
|
+
Jsm = "JSM",
|
|
125960
|
+
Statuspage = "STATUSPAGE"
|
|
125961
|
+
}
|
|
125785
125962
|
export declare type StakeholderCommsFooterDataInput = {
|
|
125786
125963
|
copyrightText?: InputMaybe<Scalars['String']['input']>;
|
|
125787
125964
|
footerLogoId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -125795,6 +125972,11 @@ export declare type StakeholderCommsFooterDataType = {
|
|
|
125795
125972
|
footerText?: Maybe<Scalars['String']['output']>;
|
|
125796
125973
|
links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
|
|
125797
125974
|
};
|
|
125975
|
+
export declare type StakeholderCommsGetIncidentInput = {
|
|
125976
|
+
externalIncidentId?: InputMaybe<Scalars['String']['input']>;
|
|
125977
|
+
incidentCode?: InputMaybe<Scalars['String']['input']>;
|
|
125978
|
+
incidentId?: InputMaybe<Scalars['String']['input']>;
|
|
125979
|
+
};
|
|
125798
125980
|
export declare type StakeholderCommsGroups = {
|
|
125799
125981
|
__typename?: 'StakeholderCommsGroups';
|
|
125800
125982
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
@@ -125818,6 +126000,91 @@ export declare type StakeholderCommsHeaderDataType = {
|
|
|
125818
126000
|
headerText?: Maybe<Scalars['String']['output']>;
|
|
125819
126001
|
links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
|
|
125820
126002
|
};
|
|
126003
|
+
export declare type StakeholderCommsIncident = {
|
|
126004
|
+
__typename?: 'StakeholderCommsIncident';
|
|
126005
|
+
autoCompleted?: Maybe<Scalars['Boolean']['output']>;
|
|
126006
|
+
autoInProgress?: Maybe<Scalars['Boolean']['output']>;
|
|
126007
|
+
components?: Maybe<Array<Maybe<StakeholderCommsIncidentComponentStatus>>>;
|
|
126008
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
126009
|
+
externalIncidentId?: Maybe<Scalars['String']['output']>;
|
|
126010
|
+
externalIncidentSource?: Maybe<StakeholderCommsExternalIncidentSource>;
|
|
126011
|
+
id: Scalars['String']['output'];
|
|
126012
|
+
impact?: Maybe<StakeholderCommsIncidentImpact>;
|
|
126013
|
+
lastRemindedAt?: Maybe<Scalars['String']['output']>;
|
|
126014
|
+
monitoringAt?: Maybe<Scalars['String']['output']>;
|
|
126015
|
+
name: Scalars['String']['output'];
|
|
126016
|
+
pageId: Scalars['String']['output'];
|
|
126017
|
+
reminderIntervals?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
126018
|
+
scheduledFor?: Maybe<Scalars['String']['output']>;
|
|
126019
|
+
scheduledUntil?: Maybe<Scalars['String']['output']>;
|
|
126020
|
+
shortlink?: Maybe<Scalars['String']['output']>;
|
|
126021
|
+
startedAt?: Maybe<Scalars['String']['output']>;
|
|
126022
|
+
status?: Maybe<StakeholderCommsIncidentStatus>;
|
|
126023
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
126024
|
+
updateNeededAt?: Maybe<Scalars['String']['output']>;
|
|
126025
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
126026
|
+
};
|
|
126027
|
+
export declare type StakeholderCommsIncidentComponentStatus = {
|
|
126028
|
+
__typename?: 'StakeholderCommsIncidentComponentStatus';
|
|
126029
|
+
componentId: Scalars['String']['output'];
|
|
126030
|
+
status?: Maybe<StakeholderCommsComponentStatus>;
|
|
126031
|
+
};
|
|
126032
|
+
export declare type StakeholderCommsIncidentComponentStatusInput = {
|
|
126033
|
+
componentId: Scalars['String']['input'];
|
|
126034
|
+
status?: InputMaybe<StakeholderCommsComponentStatus>;
|
|
126035
|
+
};
|
|
126036
|
+
export declare type StakeholderCommsIncidentCreateRequest = {
|
|
126037
|
+
affectedComponents?: InputMaybe<Array<InputMaybe<StakeholderCommsIncidentComponentStatusInput>>>;
|
|
126038
|
+
impact?: InputMaybe<StakeholderCommsIncidentImpact>;
|
|
126039
|
+
jiraIncidentId?: InputMaybe<Scalars['String']['input']>;
|
|
126040
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
126041
|
+
name: Scalars['String']['input'];
|
|
126042
|
+
pageId: Scalars['String']['input'];
|
|
126043
|
+
status?: InputMaybe<StakeholderCommsIncidentStatus>;
|
|
126044
|
+
};
|
|
126045
|
+
export declare enum StakeholderCommsIncidentImpact {
|
|
126046
|
+
Critical = "CRITICAL",
|
|
126047
|
+
Major = "MAJOR",
|
|
126048
|
+
Minor = "MINOR",
|
|
126049
|
+
None = "NONE"
|
|
126050
|
+
}
|
|
126051
|
+
export declare type StakeholderCommsIncidentResponse = {
|
|
126052
|
+
__typename?: 'StakeholderCommsIncidentResponse';
|
|
126053
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
126054
|
+
incidentWithUpdates?: Maybe<StakeholderCommsIncidentWithUpdates>;
|
|
126055
|
+
};
|
|
126056
|
+
export declare enum StakeholderCommsIncidentStatus {
|
|
126057
|
+
Identified = "IDENTIFIED",
|
|
126058
|
+
Investigating = "INVESTIGATING",
|
|
126059
|
+
Monitoring = "MONITORING",
|
|
126060
|
+
Resolved = "RESOLVED"
|
|
126061
|
+
}
|
|
126062
|
+
export declare type StakeholderCommsIncidentUpdate = {
|
|
126063
|
+
__typename?: 'StakeholderCommsIncidentUpdate';
|
|
126064
|
+
affectedComponents?: Maybe<Array<Maybe<StakeholderCommsIncidentComponentStatus>>>;
|
|
126065
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
126066
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
126067
|
+
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
126068
|
+
incidentId?: Maybe<Scalars['String']['output']>;
|
|
126069
|
+
oldStatus?: Maybe<StakeholderCommsIncidentStatus>;
|
|
126070
|
+
scheduledAt?: Maybe<Scalars['String']['output']>;
|
|
126071
|
+
status?: Maybe<StakeholderCommsIncidentStatus>;
|
|
126072
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
126073
|
+
};
|
|
126074
|
+
export declare type StakeholderCommsIncidentUpdateRequest = {
|
|
126075
|
+
affectedComponents?: InputMaybe<Array<InputMaybe<StakeholderCommsIncidentComponentStatusInput>>>;
|
|
126076
|
+
impact?: InputMaybe<StakeholderCommsIncidentImpact>;
|
|
126077
|
+
jiraIncidentId?: InputMaybe<Scalars['String']['input']>;
|
|
126078
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
126079
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
126080
|
+
pageId: Scalars['String']['input'];
|
|
126081
|
+
status?: InputMaybe<StakeholderCommsIncidentStatus>;
|
|
126082
|
+
};
|
|
126083
|
+
export declare type StakeholderCommsIncidentWithUpdates = {
|
|
126084
|
+
__typename?: 'StakeholderCommsIncidentWithUpdates';
|
|
126085
|
+
incident?: Maybe<StakeholderCommsIncident>;
|
|
126086
|
+
incidentUpdates?: Maybe<Array<Maybe<StakeholderCommsIncidentUpdate>>>;
|
|
126087
|
+
};
|
|
125821
126088
|
export declare type StakeholderCommsLinkInput = {
|
|
125822
126089
|
label?: InputMaybe<Scalars['String']['input']>;
|
|
125823
126090
|
position?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -125829,6 +126096,15 @@ export declare type StakeholderCommsLinkType = {
|
|
|
125829
126096
|
position?: Maybe<Scalars['Int']['output']>;
|
|
125830
126097
|
url?: Maybe<Scalars['String']['output']>;
|
|
125831
126098
|
};
|
|
126099
|
+
export declare type StakeholderCommsListIncidentInput = {
|
|
126100
|
+
pageId?: InputMaybe<Scalars['String']['input']>;
|
|
126101
|
+
showActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
126102
|
+
};
|
|
126103
|
+
export declare type StakeholderCommsListIncidentResponse = {
|
|
126104
|
+
__typename?: 'StakeholderCommsListIncidentResponse';
|
|
126105
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
126106
|
+
incidentNodes?: Maybe<Array<Maybe<StakeholderCommsIncidentWithUpdates>>>;
|
|
126107
|
+
};
|
|
125832
126108
|
export declare type StakeholderCommsModePreference = {
|
|
125833
126109
|
__typename?: 'StakeholderCommsModePreference';
|
|
125834
126110
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -125935,6 +126211,7 @@ export declare type StakeholderCommsPageComponentsWithUptimeResponse = {
|
|
|
125935
126211
|
__typename?: 'StakeholderCommsPageComponentsWithUptimeResponse';
|
|
125936
126212
|
error?: Maybe<Scalars['String']['output']>;
|
|
125937
126213
|
pageComponentsUptime?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
|
|
126214
|
+
pageUptime?: Maybe<StakeholderCommsPageUptime>;
|
|
125938
126215
|
};
|
|
125939
126216
|
export declare type StakeholderCommsPageDraftComponentResponse = {
|
|
125940
126217
|
__typename?: 'StakeholderCommsPageDraftComponentResponse';
|
|
@@ -125973,6 +126250,19 @@ export declare enum StakeholderCommsPageThemeMode {
|
|
|
125973
126250
|
Dark = "DARK",
|
|
125974
126251
|
Light = "LIGHT"
|
|
125975
126252
|
}
|
|
126253
|
+
export declare type StakeholderCommsPageUptime = {
|
|
126254
|
+
__typename?: 'StakeholderCommsPageUptime';
|
|
126255
|
+
pageUptimeDailyAggregates?: Maybe<Array<Maybe<StakeholderCommsPageUptimeDailyAggregate>>>;
|
|
126256
|
+
pageUptimePercentage?: Maybe<Scalars['Float']['output']>;
|
|
126257
|
+
};
|
|
126258
|
+
export declare type StakeholderCommsPageUptimeDailyAggregate = {
|
|
126259
|
+
__typename?: 'StakeholderCommsPageUptimeDailyAggregate';
|
|
126260
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
126261
|
+
degradedPerformanceTime?: Maybe<Scalars['Int']['output']>;
|
|
126262
|
+
maintenanceTime?: Maybe<Scalars['Int']['output']>;
|
|
126263
|
+
majorOutageTime?: Maybe<Scalars['Int']['output']>;
|
|
126264
|
+
partialOutageTime?: Maybe<Scalars['Int']['output']>;
|
|
126265
|
+
};
|
|
125976
126266
|
export declare type StakeholderCommsPageUptimePercentageResponse = {
|
|
125977
126267
|
__typename?: 'StakeholderCommsPageUptimePercentageResponse';
|
|
125978
126268
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -132295,6 +132585,7 @@ export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterfa
|
|
|
132295
132585
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
132296
132586
|
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
132297
132587
|
id: Scalars['ID']['output'];
|
|
132588
|
+
idProviderAccount?: Maybe<Scalars['ID']['output']>;
|
|
132298
132589
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
132299
132590
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
132300
132591
|
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -132559,6 +132850,7 @@ export declare type TrelloPlannerCalendarUpdated = {
|
|
|
132559
132850
|
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
132560
132851
|
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
132561
132852
|
id: Scalars['ID']['output'];
|
|
132853
|
+
idProviderAccount?: Maybe<Scalars['ID']['output']>;
|
|
132562
132854
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
132563
132855
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
132564
132856
|
onPlannerCalendarEventDeleted?: Maybe<Array<TrelloPlannerCalendarEventDeleted>>;
|