@forge/cli-shared 8.8.0-next.2 → 8.8.0-next.2-experimental-98def98
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 +12 -0
- package/out/graphql/graphql-types.d.ts +541 -110
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +76 -21
- package/package.json +2 -2
|
@@ -416,7 +416,7 @@ export declare type AvpCreateDashboardFilterResponse = {
|
|
|
416
416
|
};
|
|
417
417
|
export declare type AvpCreateDashboardFromTemplateInput = {
|
|
418
418
|
cloudId: Scalars['ID']['input'];
|
|
419
|
-
dashboard
|
|
419
|
+
dashboard: AvpDashboardTemplateInput;
|
|
420
420
|
dashboardPermissionType?: InputMaybe<AvpDashboardPermissionType>;
|
|
421
421
|
workspaceId: Scalars['ID']['input'];
|
|
422
422
|
};
|
|
@@ -1735,16 +1735,23 @@ export declare enum AdminInviteAllowedAction {
|
|
|
1735
1735
|
DirectInvite = "DIRECT_INVITE",
|
|
1736
1736
|
RequestAccess = "REQUEST_ACCESS"
|
|
1737
1737
|
}
|
|
1738
|
+
export declare type AdminInviteGroup = {
|
|
1739
|
+
__typename?: 'AdminInviteGroup';
|
|
1740
|
+
id: Scalars['ID']['output'];
|
|
1741
|
+
};
|
|
1742
|
+
export declare type AdminInviteGroupInput = {
|
|
1743
|
+
id: Scalars['ID']['input'];
|
|
1744
|
+
};
|
|
1738
1745
|
export declare type AdminInviteInput = {
|
|
1739
1746
|
groupIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1740
1747
|
inviteeNotificationSettings?: InputMaybe<AdminInviteeNotificationSettingsInput>;
|
|
1741
|
-
resourceRole
|
|
1748
|
+
resourceRole?: InputMaybe<Array<AdminResourceRoleInput>>;
|
|
1742
1749
|
users: Array<AdminInviteUserInput>;
|
|
1743
1750
|
};
|
|
1744
1751
|
export declare type AdminInviteNotApplied = {
|
|
1745
1752
|
__typename?: 'AdminInviteNotApplied';
|
|
1753
|
+
appliesTo?: Maybe<AdminUserInviteAppliesTo>;
|
|
1746
1754
|
reason?: Maybe<AdminInviteNotAppliedReason>;
|
|
1747
|
-
resourceRole?: Maybe<AdminResourceRole>;
|
|
1748
1755
|
user?: Maybe<AdminInviteUser>;
|
|
1749
1756
|
};
|
|
1750
1757
|
export declare enum AdminInviteNotAppliedReason {
|
|
@@ -1755,7 +1762,7 @@ export declare enum AdminInviteNotAppliedReason {
|
|
|
1755
1762
|
}
|
|
1756
1763
|
export declare type AdminInvitePendingApproval = {
|
|
1757
1764
|
__typename?: 'AdminInvitePendingApproval';
|
|
1758
|
-
|
|
1765
|
+
appliesTo?: Maybe<AdminUserInviteAppliesTo>;
|
|
1759
1766
|
user?: Maybe<AdminInviteUser>;
|
|
1760
1767
|
};
|
|
1761
1768
|
export declare type AdminInvitePolicy = {
|
|
@@ -2179,7 +2186,7 @@ export declare type AdminUserConnection = {
|
|
|
2179
2186
|
};
|
|
2180
2187
|
export declare type AdminUserDirectlyInvited = {
|
|
2181
2188
|
__typename?: 'AdminUserDirectlyInvited';
|
|
2182
|
-
|
|
2189
|
+
appliesTo?: Maybe<AdminUserInviteAppliesTo>;
|
|
2183
2190
|
user?: Maybe<AdminInviteUser>;
|
|
2184
2191
|
};
|
|
2185
2192
|
export declare type AdminUserEdge = {
|
|
@@ -2187,6 +2194,7 @@ export declare type AdminUserEdge = {
|
|
|
2187
2194
|
cursor: Scalars['String']['output'];
|
|
2188
2195
|
node?: Maybe<AdminUser>;
|
|
2189
2196
|
};
|
|
2197
|
+
export declare type AdminUserInviteAppliesTo = AdminInviteGroup | AdminResourceRole;
|
|
2190
2198
|
export declare type AdminUserManagement = {
|
|
2191
2199
|
__typename?: 'AdminUserManagement';
|
|
2192
2200
|
availableRoles?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -2447,6 +2455,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2447
2455
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
2448
2456
|
invocationDescription?: Maybe<Scalars['String']['output']>;
|
|
2449
2457
|
isActive: Scalars['Boolean']['output'];
|
|
2458
|
+
isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2450
2459
|
isDefault: Scalars['Boolean']['output'];
|
|
2451
2460
|
isValid: AgentStudioScenarioValidation;
|
|
2452
2461
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
@@ -2586,6 +2595,7 @@ export declare type AgentStudioCreateScenarioInput = {
|
|
|
2586
2595
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
2587
2596
|
invocationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
2588
2597
|
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2598
|
+
isDeepResearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2589
2599
|
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2590
2600
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
2591
2601
|
name: Scalars['String']['input'];
|
|
@@ -2781,6 +2791,7 @@ export declare type AgentStudioScenario = {
|
|
|
2781
2791
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
2782
2792
|
invocationDescription?: Maybe<Scalars['String']['output']>;
|
|
2783
2793
|
isActive: Scalars['Boolean']['output'];
|
|
2794
|
+
isDeepResearchEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
2784
2795
|
isDefault: Scalars['Boolean']['output'];
|
|
2785
2796
|
isValid: AgentStudioScenarioValidation;
|
|
2786
2797
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
@@ -3032,6 +3043,7 @@ export declare type AgentStudioUpdateScenarioInput = {
|
|
|
3032
3043
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
3033
3044
|
invocationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
3034
3045
|
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3046
|
+
isDeepResearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3035
3047
|
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3036
3048
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
3037
3049
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6040,6 +6052,8 @@ export declare type BitbucketPullRequest = Node & {
|
|
|
6040
6052
|
__typename?: 'BitbucketPullRequest';
|
|
6041
6053
|
author?: Maybe<User>;
|
|
6042
6054
|
createdDate?: Maybe<Scalars['DateTime']['output']>;
|
|
6055
|
+
diff?: Maybe<Scalars['URL']['output']>;
|
|
6056
|
+
diffstat?: Maybe<Scalars['URL']['output']>;
|
|
6043
6057
|
href?: Maybe<Scalars['URL']['output']>;
|
|
6044
6058
|
id: Scalars['ID']['output'];
|
|
6045
6059
|
state?: Maybe<Scalars['String']['output']>;
|
|
@@ -6047,11 +6061,15 @@ export declare type BitbucketPullRequest = Node & {
|
|
|
6047
6061
|
};
|
|
6048
6062
|
export declare type BitbucketQuery = {
|
|
6049
6063
|
__typename?: 'BitbucketQuery';
|
|
6064
|
+
bitbucketPullRequest?: Maybe<BitbucketPullRequest>;
|
|
6050
6065
|
bitbucketPullRequests?: Maybe<Array<Maybe<BitbucketPullRequest>>>;
|
|
6051
6066
|
bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
|
|
6052
6067
|
bitbucketRepository?: Maybe<BitbucketRepository>;
|
|
6053
6068
|
bitbucketWorkspace?: Maybe<BitbucketWorkspace>;
|
|
6054
6069
|
};
|
|
6070
|
+
export declare type BitbucketQueryBitbucketPullRequestArgs = {
|
|
6071
|
+
id: Scalars['ID']['input'];
|
|
6072
|
+
};
|
|
6055
6073
|
export declare type BitbucketQueryBitbucketPullRequestsArgs = {
|
|
6056
6074
|
ids: Array<Scalars['ID']['input']>;
|
|
6057
6075
|
};
|
|
@@ -10389,6 +10407,7 @@ export declare type CompassComponent = Node & {
|
|
|
10389
10407
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
10390
10408
|
name: Scalars['String']['output'];
|
|
10391
10409
|
ownerId?: Maybe<Scalars['ID']['output']>;
|
|
10410
|
+
ownerTeam?: Maybe<TeamV2>;
|
|
10392
10411
|
packageDependencies?: Maybe<CompassComponentPackageDependencyConnection>;
|
|
10393
10412
|
relationships?: Maybe<CompassRelationshipConnectionResult>;
|
|
10394
10413
|
scorecardScore?: Maybe<CompassScorecardScore>;
|
|
@@ -14802,6 +14821,7 @@ export declare type ConfluenceAnswer = {
|
|
|
14802
14821
|
id: Scalars['ID']['output'];
|
|
14803
14822
|
isAccepted: Scalars['Boolean']['output'];
|
|
14804
14823
|
latestVersion?: Maybe<ConfluenceContentVersion>;
|
|
14824
|
+
operations?: Maybe<Array<Maybe<ConfluenceQuestionsOperationCheck>>>;
|
|
14805
14825
|
voteProperties: ConfluenceVotePropertyValue;
|
|
14806
14826
|
};
|
|
14807
14827
|
export declare type ConfluenceAnswerCommentsArgs = {
|
|
@@ -16063,6 +16083,15 @@ export declare type ConfluenceDeleteCommentPayload = {
|
|
|
16063
16083
|
errors?: Maybe<Array<MutationError>>;
|
|
16064
16084
|
success: Scalars['Boolean']['output'];
|
|
16065
16085
|
};
|
|
16086
|
+
export declare type ConfluenceDeleteContentVersionInput = {
|
|
16087
|
+
versionNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
16088
|
+
};
|
|
16089
|
+
export declare type ConfluenceDeleteContentVersionPayload = Payload & {
|
|
16090
|
+
__typename?: 'ConfluenceDeleteContentVersionPayload';
|
|
16091
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16092
|
+
success: Scalars['Boolean']['output'];
|
|
16093
|
+
version?: Maybe<Version>;
|
|
16094
|
+
};
|
|
16066
16095
|
export declare type ConfluenceDeleteCustomApplicationLinkInput = {
|
|
16067
16096
|
id: Scalars['ID']['input'];
|
|
16068
16097
|
};
|
|
@@ -21575,6 +21604,11 @@ export declare type ConvoAiAgentTraceMessage = ConvoAiAgentMessage & {
|
|
|
21575
21604
|
status: ConvoAiAgentSessionStatus;
|
|
21576
21605
|
timeCreated: Scalars['DateTime']['output'];
|
|
21577
21606
|
};
|
|
21607
|
+
export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
21608
|
+
__typename?: 'ConvoAiConfluenceSpaceRecommendation';
|
|
21609
|
+
id: Scalars['ID']['output'];
|
|
21610
|
+
name: Scalars['String']['output'];
|
|
21611
|
+
};
|
|
21578
21612
|
export declare type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
|
|
21579
21613
|
__typename?: 'ConvoAiEmptyConversation';
|
|
21580
21614
|
status: ConvoAiAgentSessionStatus;
|
|
@@ -21948,6 +21982,12 @@ export declare type CplsDeleteContributorWorkAssociationPayload = Payload & {
|
|
|
21948
21982
|
ids?: Maybe<Array<Scalars['ID']['output']>>;
|
|
21949
21983
|
success: Scalars['Boolean']['output'];
|
|
21950
21984
|
};
|
|
21985
|
+
export declare type CplsMutationErrorExtension = MutationErrorExtension & {
|
|
21986
|
+
__typename?: 'CplsMutationErrorExtension';
|
|
21987
|
+
errorId?: Maybe<Scalars['String']['output']>;
|
|
21988
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
21989
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
21990
|
+
};
|
|
21951
21991
|
export declare type CplsSearchCustomContributionTargetsInput = {
|
|
21952
21992
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
21953
21993
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -25978,6 +26018,46 @@ export declare type DevAiWorkspace = {
|
|
|
25978
26018
|
status?: Maybe<Scalars['String']['output']>;
|
|
25979
26019
|
workspaceAri: Scalars['ID']['output'];
|
|
25980
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
|
+
};
|
|
25981
26061
|
export declare type DevConsoleArchiveDeveloperSpaceInput = {
|
|
25982
26062
|
developerSpaceId: Scalars['String']['input'];
|
|
25983
26063
|
};
|
|
@@ -25998,6 +26078,10 @@ export declare type DevConsoleBulkDeveloperSpaceDetailsResponse = {
|
|
|
25998
26078
|
export declare type DevConsoleCreateDeveloperSpaceInput = {
|
|
25999
26079
|
name: Scalars['String']['input'];
|
|
26000
26080
|
};
|
|
26081
|
+
export declare type DevConsoleDateIntervalInput = {
|
|
26082
|
+
end: Scalars['DateTime']['input'];
|
|
26083
|
+
start: Scalars['DateTime']['input'];
|
|
26084
|
+
};
|
|
26001
26085
|
export declare type DevConsoleDeveloperSpace = {
|
|
26002
26086
|
__typename?: 'DevConsoleDeveloperSpace';
|
|
26003
26087
|
id: Scalars['String']['output'];
|
|
@@ -26060,6 +26144,10 @@ export declare enum DevConsoleDeveloperSpaceType {
|
|
|
26060
26144
|
AtlassianExternal = "ATLASSIAN_EXTERNAL",
|
|
26061
26145
|
AtlassianInternal = "ATLASSIAN_INTERNAL"
|
|
26062
26146
|
}
|
|
26147
|
+
export declare enum DevConsoleGroupBy {
|
|
26148
|
+
ContextAri = "CONTEXT_ARI",
|
|
26149
|
+
EnvironmentId = "ENVIRONMENT_ID"
|
|
26150
|
+
}
|
|
26063
26151
|
export declare type DevConsoleMutation = {
|
|
26064
26152
|
__typename?: 'DevConsoleMutation';
|
|
26065
26153
|
acceptAppBillingConsent: DevConsoleResponsePayload;
|
|
@@ -26096,13 +26184,34 @@ export declare type DevConsoleMutationUpdateDeveloperSpaceMemberArgs = {
|
|
|
26096
26184
|
export declare type DevConsoleMutationUpdateDeveloperSpaceSettingsArgs = {
|
|
26097
26185
|
input: DevConsoleUpdateDeveloperSpaceSettingsInput;
|
|
26098
26186
|
};
|
|
26187
|
+
export declare type DevConsolePagination = {
|
|
26188
|
+
__typename?: 'DevConsolePagination';
|
|
26189
|
+
page: Scalars['Int']['output'];
|
|
26190
|
+
pageSize: Scalars['Int']['output'];
|
|
26191
|
+
};
|
|
26099
26192
|
export declare type DevConsoleQuery = {
|
|
26100
26193
|
__typename?: 'DevConsoleQuery';
|
|
26194
|
+
appResourceUsage: DevConsoleAppResourceUsageResponse;
|
|
26195
|
+
appResourceUsageDetailedView: DevConsoleAppResourceUsageDetailedViewResponse;
|
|
26196
|
+
appUsageOverview: DevConsoleAppUsageOverviewResponse;
|
|
26101
26197
|
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
26102
26198
|
getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
|
|
26103
26199
|
getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
26104
26200
|
tenantContexts: Array<Maybe<DevConsoleTenantContext>>;
|
|
26105
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
|
+
};
|
|
26106
26215
|
export declare type DevConsoleQueryGetDeveloperSpaceDetailsArgs = {
|
|
26107
26216
|
developerSpaceIds: Array<Scalars['String']['input']>;
|
|
26108
26217
|
};
|
|
@@ -26116,6 +26225,45 @@ export declare type DevConsoleRemoveDeveloperSpaceMemberInput = {
|
|
|
26116
26225
|
developerSpaceId: Scalars['String']['input'];
|
|
26117
26226
|
memberId: Scalars['String']['input'];
|
|
26118
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
|
+
};
|
|
26119
26267
|
export declare type DevConsoleResponsePayload = Payload & {
|
|
26120
26268
|
__typename?: 'DevConsoleResponsePayload';
|
|
26121
26269
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -26138,6 +26286,12 @@ export declare type DevConsoleUpdateDeveloperSpaceSettingsInput = {
|
|
|
26138
26286
|
logo?: InputMaybe<Scalars['Upload']['input']>;
|
|
26139
26287
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
26140
26288
|
};
|
|
26289
|
+
export declare enum DevConsoleUsageResolution {
|
|
26290
|
+
OneDay = "ONE_DAY",
|
|
26291
|
+
OneHour = "ONE_HOUR",
|
|
26292
|
+
OneMonth = "ONE_MONTH",
|
|
26293
|
+
OneWeek = "ONE_WEEK"
|
|
26294
|
+
}
|
|
26141
26295
|
export declare type DevOps = {
|
|
26142
26296
|
__typename?: 'DevOps';
|
|
26143
26297
|
ariGraph?: Maybe<AriGraph>;
|
|
@@ -35820,8 +35974,6 @@ export declare type GraphStore = {
|
|
|
35820
35974
|
userMentionedInMessageInverse?: Maybe<GraphStoreSimplifiedUserMentionedInMessageInverseConnection>;
|
|
35821
35975
|
userMentionedInVideoComment?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentConnection>;
|
|
35822
35976
|
userMentionedInVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentInverseConnection>;
|
|
35823
|
-
userMergedPullRequest?: Maybe<GraphStoreSimplifiedUserMergedPullRequestConnection>;
|
|
35824
|
-
userMergedPullRequestInverse?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseConnection>;
|
|
35825
35977
|
userOwnedBranch?: Maybe<GraphStoreSimplifiedUserOwnedBranchConnection>;
|
|
35826
35978
|
userOwnedBranchInverse?: Maybe<GraphStoreSimplifiedUserOwnedBranchInverseConnection>;
|
|
35827
35979
|
userOwnedCalendarEvent?: Maybe<GraphStoreSimplifiedUserOwnedCalendarEventConnection>;
|
|
@@ -35866,8 +36018,6 @@ export declare type GraphStore = {
|
|
|
35866
36018
|
userUpdatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection>;
|
|
35867
36019
|
userUpdatedAtlasProject?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectConnection>;
|
|
35868
36020
|
userUpdatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection>;
|
|
35869
|
-
userUpdatedComment?: Maybe<GraphStoreSimplifiedUserUpdatedCommentConnection>;
|
|
35870
|
-
userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
|
|
35871
36021
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
35872
36022
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
35873
36023
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
@@ -35890,6 +36040,7 @@ export declare type GraphStore = {
|
|
|
35890
36040
|
userViewedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseConnection>;
|
|
35891
36041
|
userViewedConfluencePage?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageConnection>;
|
|
35892
36042
|
userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
|
|
36043
|
+
userViewedDocumentInverse?: Maybe<GraphStoreSimplifiedUserViewedDocumentInverseConnection>;
|
|
35893
36044
|
userViewedGoalUpdate?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateConnection>;
|
|
35894
36045
|
userViewedGoalUpdateBatch?: Maybe<GraphStoreBatchUserViewedGoalUpdateConnection>;
|
|
35895
36046
|
userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
@@ -40475,20 +40626,6 @@ export declare type GraphStoreUserMentionedInVideoCommentInverseArgs = {
|
|
|
40475
40626
|
id: Scalars['ID']['input'];
|
|
40476
40627
|
sort?: InputMaybe<GraphStoreUserMentionedInVideoCommentSortInput>;
|
|
40477
40628
|
};
|
|
40478
|
-
export declare type GraphStoreUserMergedPullRequestArgs = {
|
|
40479
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40480
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40481
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40482
|
-
id: Scalars['ID']['input'];
|
|
40483
|
-
sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
|
|
40484
|
-
};
|
|
40485
|
-
export declare type GraphStoreUserMergedPullRequestInverseArgs = {
|
|
40486
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40487
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40488
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40489
|
-
id: Scalars['ID']['input'];
|
|
40490
|
-
sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
|
|
40491
|
-
};
|
|
40492
40629
|
export declare type GraphStoreUserOwnedBranchArgs = {
|
|
40493
40630
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40494
40631
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40799,20 +40936,6 @@ export declare type GraphStoreUserUpdatedAtlasProjectInverseArgs = {
|
|
|
40799
40936
|
id: Scalars['ID']['input'];
|
|
40800
40937
|
sort?: InputMaybe<GraphStoreUserUpdatedAtlasProjectSortInput>;
|
|
40801
40938
|
};
|
|
40802
|
-
export declare type GraphStoreUserUpdatedCommentArgs = {
|
|
40803
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40804
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40805
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40806
|
-
id: Scalars['ID']['input'];
|
|
40807
|
-
sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
|
|
40808
|
-
};
|
|
40809
|
-
export declare type GraphStoreUserUpdatedCommentInverseArgs = {
|
|
40810
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40811
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40812
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40813
|
-
id: Scalars['ID']['input'];
|
|
40814
|
-
sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
|
|
40815
|
-
};
|
|
40816
40939
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostArgs = {
|
|
40817
40940
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40818
40941
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40965,6 +41088,13 @@ export declare type GraphStoreUserViewedConfluencePageInverseArgs = {
|
|
|
40965
41088
|
id: Scalars['ID']['input'];
|
|
40966
41089
|
sort?: InputMaybe<GraphStoreUserViewedConfluencePageSortInput>;
|
|
40967
41090
|
};
|
|
41091
|
+
export declare type GraphStoreUserViewedDocumentInverseArgs = {
|
|
41092
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41093
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41094
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41095
|
+
id: Scalars['ID']['input'];
|
|
41096
|
+
sort?: InputMaybe<GraphStoreUserViewedDocumentSortInput>;
|
|
41097
|
+
};
|
|
40968
41098
|
export declare type GraphStoreUserViewedGoalUpdateArgs = {
|
|
40969
41099
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40970
41100
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -42936,6 +43066,20 @@ export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
42936
43066
|
to: Scalars['ID']['input'];
|
|
42937
43067
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
42938
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
|
+
};
|
|
42939
43083
|
export declare type GraphStoreCreateParentTeamHasChildTeamInput = {
|
|
42940
43084
|
relationships: Array<GraphStoreCreateParentTeamHasChildTeamRelationshipInput>;
|
|
42941
43085
|
};
|
|
@@ -43523,6 +43667,19 @@ export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
43523
43667
|
from: Scalars['ID']['input'];
|
|
43524
43668
|
to: Scalars['ID']['input'];
|
|
43525
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
|
+
};
|
|
43526
43683
|
export declare type GraphStoreDeleteParentTeamHasChildTeamInput = {
|
|
43527
43684
|
relationships: Array<GraphStoreDeleteParentTeamHasChildTeamRelationshipInput>;
|
|
43528
43685
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -47659,10 +47816,7 @@ export declare type GraphStoreMeetingHasMeetingNotesPageSortInput = {
|
|
|
47659
47816
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47660
47817
|
};
|
|
47661
47818
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
|
|
47662
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
47663
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
47664
47819
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47665
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
47666
47820
|
};
|
|
47667
47821
|
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
|
|
47668
47822
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -47678,6 +47832,7 @@ export declare type GraphStoreMutation = {
|
|
|
47678
47832
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
47679
47833
|
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
47680
47834
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
47835
|
+
createMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
|
|
47681
47836
|
createParentTeamHasChildTeam?: Maybe<GraphStoreCreateParentTeamHasChildTeamPayload>;
|
|
47682
47837
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
47683
47838
|
createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
|
|
@@ -47705,6 +47860,7 @@ export declare type GraphStoreMutation = {
|
|
|
47705
47860
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
47706
47861
|
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
47707
47862
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
47863
|
+
deleteMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
|
|
47708
47864
|
deleteParentTeamHasChildTeam?: Maybe<GraphStoreDeleteParentTeamHasChildTeamPayload>;
|
|
47709
47865
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
47710
47866
|
deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
|
|
@@ -47751,6 +47907,9 @@ export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
|
|
|
47751
47907
|
export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
47752
47908
|
input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
47753
47909
|
};
|
|
47910
|
+
export declare type GraphStoreMutationCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
47911
|
+
input?: InputMaybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
|
|
47912
|
+
};
|
|
47754
47913
|
export declare type GraphStoreMutationCreateParentTeamHasChildTeamArgs = {
|
|
47755
47914
|
input?: InputMaybe<GraphStoreCreateParentTeamHasChildTeamInput>;
|
|
47756
47915
|
};
|
|
@@ -47832,6 +47991,9 @@ export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
|
47832
47991
|
export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
47833
47992
|
input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
47834
47993
|
};
|
|
47994
|
+
export declare type GraphStoreMutationDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
47995
|
+
input?: InputMaybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
|
|
47996
|
+
};
|
|
47835
47997
|
export declare type GraphStoreMutationDeleteParentTeamHasChildTeamArgs = {
|
|
47836
47998
|
input?: InputMaybe<GraphStoreDeleteParentTeamHasChildTeamInput>;
|
|
47837
47999
|
};
|
|
@@ -51696,12 +51858,10 @@ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseEdge =
|
|
|
51696
51858
|
};
|
|
51697
51859
|
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseUnion = LoomMeeting;
|
|
51698
51860
|
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion = ConfluencePage;
|
|
51699
|
-
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo &
|
|
51861
|
+
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & {
|
|
51700
51862
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
|
|
51701
51863
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
|
|
51702
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
51703
51864
|
pageInfo: PageInfo;
|
|
51704
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
51705
51865
|
};
|
|
51706
51866
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge = {
|
|
51707
51867
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge';
|
|
@@ -51711,12 +51871,10 @@ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFold
|
|
|
51711
51871
|
lastUpdated: Scalars['DateTime']['output'];
|
|
51712
51872
|
node?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion>;
|
|
51713
51873
|
};
|
|
51714
|
-
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection = HasPageInfo &
|
|
51874
|
+
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection = HasPageInfo & {
|
|
51715
51875
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection';
|
|
51716
51876
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge>>>;
|
|
51717
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
51718
51877
|
pageInfo: PageInfo;
|
|
51719
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
51720
51878
|
};
|
|
51721
51879
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge = {
|
|
51722
51880
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge';
|
|
@@ -55542,34 +55700,6 @@ export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseEdge =
|
|
|
55542
55700
|
};
|
|
55543
55701
|
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55544
55702
|
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentUnion = LoomComment;
|
|
55545
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestConnection = HasPageInfo & {
|
|
55546
|
-
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestConnection';
|
|
55547
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestEdge>>>;
|
|
55548
|
-
pageInfo: PageInfo;
|
|
55549
|
-
};
|
|
55550
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestEdge = {
|
|
55551
|
-
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestEdge';
|
|
55552
|
-
createdAt: Scalars['DateTime']['output'];
|
|
55553
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
55554
|
-
id: Scalars['ID']['output'];
|
|
55555
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
55556
|
-
node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestUnion>;
|
|
55557
|
-
};
|
|
55558
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseConnection = HasPageInfo & {
|
|
55559
|
-
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestInverseConnection';
|
|
55560
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseEdge>>>;
|
|
55561
|
-
pageInfo: PageInfo;
|
|
55562
|
-
};
|
|
55563
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseEdge = {
|
|
55564
|
-
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestInverseEdge';
|
|
55565
|
-
createdAt: Scalars['DateTime']['output'];
|
|
55566
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
55567
|
-
id: Scalars['ID']['output'];
|
|
55568
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
55569
|
-
node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseUnion>;
|
|
55570
|
-
};
|
|
55571
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55572
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
55573
55703
|
export declare type GraphStoreSimplifiedUserOwnedBranchConnection = HasPageInfo & {
|
|
55574
55704
|
__typename?: 'GraphStoreSimplifiedUserOwnedBranchConnection';
|
|
55575
55705
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedBranchEdge>>>;
|
|
@@ -56190,34 +56320,6 @@ export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseEdge = {
|
|
|
56190
56320
|
};
|
|
56191
56321
|
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56192
56322
|
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectUnion = TownsquareProject;
|
|
56193
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentConnection = HasPageInfo & {
|
|
56194
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentConnection';
|
|
56195
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentEdge>>>;
|
|
56196
|
-
pageInfo: PageInfo;
|
|
56197
|
-
};
|
|
56198
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentEdge = {
|
|
56199
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentEdge';
|
|
56200
|
-
createdAt: Scalars['DateTime']['output'];
|
|
56201
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
56202
|
-
id: Scalars['ID']['output'];
|
|
56203
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
56204
|
-
node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentUnion>;
|
|
56205
|
-
};
|
|
56206
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentInverseConnection = HasPageInfo & {
|
|
56207
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseConnection';
|
|
56208
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseEdge>>>;
|
|
56209
|
-
pageInfo: PageInfo;
|
|
56210
|
-
};
|
|
56211
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentInverseEdge = {
|
|
56212
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseEdge';
|
|
56213
|
-
createdAt: Scalars['DateTime']['output'];
|
|
56214
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
56215
|
-
id: Scalars['ID']['output'];
|
|
56216
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
56217
|
-
node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseUnion>;
|
|
56218
|
-
};
|
|
56219
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56220
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
56221
56323
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
56222
56324
|
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection';
|
|
56223
56325
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostEdge>>>;
|
|
@@ -56498,6 +56600,20 @@ export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseEdge = {
|
|
|
56498
56600
|
};
|
|
56499
56601
|
export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56500
56602
|
export declare type GraphStoreSimplifiedUserViewedConfluencePageUnion = ConfluencePage;
|
|
56603
|
+
export declare type GraphStoreSimplifiedUserViewedDocumentInverseConnection = HasPageInfo & {
|
|
56604
|
+
__typename?: 'GraphStoreSimplifiedUserViewedDocumentInverseConnection';
|
|
56605
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedDocumentInverseEdge>>>;
|
|
56606
|
+
pageInfo: PageInfo;
|
|
56607
|
+
};
|
|
56608
|
+
export declare type GraphStoreSimplifiedUserViewedDocumentInverseEdge = {
|
|
56609
|
+
__typename?: 'GraphStoreSimplifiedUserViewedDocumentInverseEdge';
|
|
56610
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56611
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56612
|
+
id: Scalars['ID']['output'];
|
|
56613
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56614
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedDocumentInverseUnion>;
|
|
56615
|
+
};
|
|
56616
|
+
export declare type GraphStoreSimplifiedUserViewedDocumentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56501
56617
|
export declare type GraphStoreSimplifiedUserViewedGoalUpdateConnection = HasPageInfo & {
|
|
56502
56618
|
__typename?: 'GraphStoreSimplifiedUserViewedGoalUpdateConnection';
|
|
56503
56619
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedGoalUpdateEdge>>>;
|
|
@@ -57695,9 +57811,6 @@ export declare type GraphStoreUserMentionedInMessageSortInput = {
|
|
|
57695
57811
|
export declare type GraphStoreUserMentionedInVideoCommentSortInput = {
|
|
57696
57812
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57697
57813
|
};
|
|
57698
|
-
export declare type GraphStoreUserMergedPullRequestSortInput = {
|
|
57699
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57700
|
-
};
|
|
57701
57814
|
export declare type GraphStoreUserOwnedBranchSortInput = {
|
|
57702
57815
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57703
57816
|
};
|
|
@@ -57777,9 +57890,6 @@ export declare type GraphStoreUserUpdatedAtlasGoalSortInput = {
|
|
|
57777
57890
|
export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
|
|
57778
57891
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57779
57892
|
};
|
|
57780
|
-
export declare type GraphStoreUserUpdatedCommentSortInput = {
|
|
57781
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57782
|
-
};
|
|
57783
57893
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
57784
57894
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57785
57895
|
};
|
|
@@ -57810,6 +57920,9 @@ export declare type GraphStoreUserViewedConfluenceBlogpostSortInput = {
|
|
|
57810
57920
|
export declare type GraphStoreUserViewedConfluencePageSortInput = {
|
|
57811
57921
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57812
57922
|
};
|
|
57923
|
+
export declare type GraphStoreUserViewedDocumentSortInput = {
|
|
57924
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57925
|
+
};
|
|
57813
57926
|
export declare type GraphStoreUserViewedGoalUpdateSortInput = {
|
|
57814
57927
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57815
57928
|
};
|
|
@@ -65826,6 +65939,7 @@ export declare type JiraCustomFieldType = {
|
|
|
65826
65939
|
__typename?: 'JiraCustomFieldType';
|
|
65827
65940
|
category?: Maybe<JiraCustomFieldTypeCategory>;
|
|
65828
65941
|
description?: Maybe<Scalars['String']['output']>;
|
|
65942
|
+
effectiveKey?: Maybe<Scalars['String']['output']>;
|
|
65829
65943
|
hasCascadingOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
65830
65944
|
hasOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
65831
65945
|
installedByAppName?: Maybe<Scalars['String']['output']>;
|
|
@@ -67433,7 +67547,7 @@ export declare type JiraFieldWorkTypeDescriptionCustomization = {
|
|
|
67433
67547
|
workTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
67434
67548
|
};
|
|
67435
67549
|
export declare type JiraFieldWorkTypeDescriptionCustomizationInput = {
|
|
67436
|
-
description
|
|
67550
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
67437
67551
|
isDefault: Scalars['Boolean']['input'];
|
|
67438
67552
|
workTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
67439
67553
|
};
|
|
@@ -69247,6 +69361,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
69247
69361
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
69248
69362
|
description?: Maybe<Scalars['String']['output']>;
|
|
69249
69363
|
descriptionCustomisations?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
|
|
69364
|
+
effectiveTypeKey?: Maybe<Scalars['String']['output']>;
|
|
69250
69365
|
fieldId: Scalars['String']['output'];
|
|
69251
69366
|
fieldSchemeOperations?: Maybe<JiraFieldSchemeOperations>;
|
|
69252
69367
|
formatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
@@ -69908,6 +70023,18 @@ export declare type JiraIssueReviewDevSummaryContainer = {
|
|
|
69908
70023
|
overall?: Maybe<JiraIssueReviewDevSummary>;
|
|
69909
70024
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
69910
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
|
+
}
|
|
69911
70038
|
export declare type JiraIssueSearchBulkViewContextMapping = {
|
|
69912
70039
|
__typename?: 'JiraIssueSearchBulkViewContextMapping';
|
|
69913
70040
|
afterIssueId?: Maybe<Scalars['String']['output']>;
|
|
@@ -70025,6 +70152,17 @@ export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
|
|
|
70025
70152
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
70026
70153
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
70027
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
|
+
};
|
|
70028
70166
|
export declare type JiraIssueSearchFieldMetadataConnection = {
|
|
70029
70167
|
__typename?: 'JiraIssueSearchFieldMetadataConnection';
|
|
70030
70168
|
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldMetadataEdge>>>;
|
|
@@ -70153,6 +70291,7 @@ export declare type JiraIssueSearchSettings = {
|
|
|
70153
70291
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
70154
70292
|
};
|
|
70155
70293
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
70294
|
+
aggregationConfig?: InputMaybe<JiraIssueSearchAggregationConfigInput>;
|
|
70156
70295
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70157
70296
|
isHideDoneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70158
70297
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70161,6 +70300,10 @@ export declare type JiraIssueSearchStatus = {
|
|
|
70161
70300
|
__typename?: 'JiraIssueSearchStatus';
|
|
70162
70301
|
functions?: Maybe<Array<Maybe<JiraJqlFunctionProcessingStatus>>>;
|
|
70163
70302
|
};
|
|
70303
|
+
export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
70304
|
+
__typename?: 'JiraIssueSearchTimelineViewConfigSettings';
|
|
70305
|
+
aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
|
|
70306
|
+
};
|
|
70164
70307
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
70165
70308
|
__typename?: 'JiraIssueSearchView';
|
|
70166
70309
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -71399,6 +71542,14 @@ export declare enum JiraJqlSyntaxError {
|
|
|
71399
71542
|
UnfinishedString = "UNFINISHED_STRING",
|
|
71400
71543
|
Unknown = "UNKNOWN"
|
|
71401
71544
|
}
|
|
71545
|
+
export declare type JiraJqlTownsquareProjectFieldValue = JiraJqlFieldValue & {
|
|
71546
|
+
__typename?: 'JiraJqlTownsquareProjectFieldValue';
|
|
71547
|
+
displayName: Scalars['String']['output'];
|
|
71548
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
71549
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
71550
|
+
jqlTerm: Scalars['String']['output'];
|
|
71551
|
+
project?: Maybe<JiraTownsquareProject>;
|
|
71552
|
+
};
|
|
71402
71553
|
export declare type JiraJqlUserFieldValue = JiraJqlFieldValue & {
|
|
71403
71554
|
__typename?: 'JiraJqlUserFieldValue';
|
|
71404
71555
|
displayName: Scalars['String']['output'];
|
|
@@ -71774,6 +71925,22 @@ export declare type JiraMergeVersionPayload = Payload & {
|
|
|
71774
71925
|
success: Scalars['Boolean']['output'];
|
|
71775
71926
|
targetVersion?: Maybe<JiraVersion>;
|
|
71776
71927
|
};
|
|
71928
|
+
export declare enum JiraMoveBoardViewIssueToCellEnd {
|
|
71929
|
+
Bottom = "BOTTOM",
|
|
71930
|
+
Top = "TOP"
|
|
71931
|
+
}
|
|
71932
|
+
export declare type JiraMoveBoardViewIssueToCellEndInput = {
|
|
71933
|
+
cellId: Scalars['ID']['input'];
|
|
71934
|
+
end: JiraMoveBoardViewIssueToCellEnd;
|
|
71935
|
+
id: Scalars['ID']['input'];
|
|
71936
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
71937
|
+
};
|
|
71938
|
+
export declare type JiraMoveBoardViewIssueToCellEndPayload = Payload & {
|
|
71939
|
+
__typename?: 'JiraMoveBoardViewIssueToCellEndPayload';
|
|
71940
|
+
errors?: Maybe<Array<MutationError>>;
|
|
71941
|
+
issue?: Maybe<JiraIssue>;
|
|
71942
|
+
success: Scalars['Boolean']['output'];
|
|
71943
|
+
};
|
|
71777
71944
|
export declare type JiraMoveIssuesToFixVersionInput = {
|
|
71778
71945
|
issueIds: Array<Scalars['ID']['input']>;
|
|
71779
71946
|
originalVersionId: Scalars['ID']['input'];
|
|
@@ -80609,6 +80776,66 @@ export declare type JiraTimelineIssueLinkOperationPayload = {
|
|
|
80609
80776
|
outwardItem?: Maybe<JiraIssue>;
|
|
80610
80777
|
success: Scalars['Boolean']['output'];
|
|
80611
80778
|
};
|
|
80779
|
+
export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
|
|
80780
|
+
__typename?: 'JiraTimelineView';
|
|
80781
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
80782
|
+
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
80783
|
+
error?: Maybe<QueryError>;
|
|
80784
|
+
fieldSets?: Maybe<JiraIssueSearchFieldSetConnection>;
|
|
80785
|
+
filterId?: Maybe<Scalars['String']['output']>;
|
|
80786
|
+
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
80787
|
+
id: Scalars['ID']['output'];
|
|
80788
|
+
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
80789
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
80790
|
+
issues?: Maybe<JiraIssueConnection>;
|
|
80791
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
80792
|
+
namespace?: Maybe<Scalars['String']['output']>;
|
|
80793
|
+
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
80794
|
+
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
80795
|
+
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
80796
|
+
viewId?: Maybe<Scalars['String']['output']>;
|
|
80797
|
+
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
80798
|
+
};
|
|
80799
|
+
export declare type JiraTimelineViewConditionalFormattingRulesArgs = {
|
|
80800
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80801
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80802
|
+
};
|
|
80803
|
+
export declare type JiraTimelineViewFieldSetsArgs = {
|
|
80804
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80805
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
80806
|
+
filter?: InputMaybe<JiraIssueSearchFieldSetsFilter>;
|
|
80807
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80808
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
80809
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
80810
|
+
};
|
|
80811
|
+
export declare type JiraTimelineViewHasDefaultFieldSetsArgs = {
|
|
80812
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
80813
|
+
};
|
|
80814
|
+
export declare type JiraTimelineViewIsViewConfigModifiedArgs = {
|
|
80815
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
80816
|
+
};
|
|
80817
|
+
export declare type JiraTimelineViewIssuesArgs = {
|
|
80818
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
80819
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
80820
|
+
fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
|
|
80821
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
80822
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
80823
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
80824
|
+
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
80825
|
+
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
80826
|
+
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
80827
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
80828
|
+
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
80829
|
+
};
|
|
80830
|
+
export declare type JiraTimelineViewTimelineSettingsArgs = {
|
|
80831
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
80832
|
+
};
|
|
80833
|
+
export declare type JiraTimelineViewViewSettingsArgs = {
|
|
80834
|
+
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
80835
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
80836
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
80837
|
+
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
80838
|
+
};
|
|
80612
80839
|
export declare type JiraToolchain = {
|
|
80613
80840
|
__typename?: 'JiraToolchain';
|
|
80614
80841
|
hasViewDevToolsPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -91365,6 +91592,7 @@ export declare type Mutation = {
|
|
|
91365
91592
|
confluence_deleteAnswer?: Maybe<ConfluenceDeleteAnswerPayload>;
|
|
91366
91593
|
confluence_deleteCalendar?: Maybe<ConfluenceDeleteCalendarPayload>;
|
|
91367
91594
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
91595
|
+
confluence_deleteContentVersion?: Maybe<ConfluenceDeleteContentVersionPayload>;
|
|
91368
91596
|
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
91369
91597
|
confluence_deleteQuestion?: Maybe<ConfluenceDeleteQuestionPayload>;
|
|
91370
91598
|
confluence_deleteReaction?: Maybe<ConfluenceReactionPayload>;
|
|
@@ -91647,6 +91875,7 @@ export declare type Mutation = {
|
|
|
91647
91875
|
jira_dismissSuggestions?: Maybe<JiraDismissSuggestionActionsPayload>;
|
|
91648
91876
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
91649
91877
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
91878
|
+
jira_moveBoardViewIssueToCellEnd?: Maybe<JiraMoveBoardViewIssueToCellEndPayload>;
|
|
91650
91879
|
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
91651
91880
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
91652
91881
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
@@ -91877,6 +92106,7 @@ export declare type Mutation = {
|
|
|
91877
92106
|
stakeholderComms_bulkCreateStakeholders?: Maybe<StakeholderCommsBulkStakeholderCreationResponse>;
|
|
91878
92107
|
stakeholderComms_bulkDeleteStakeholders?: Maybe<StakeholderCommsBulkStakeholderResponse>;
|
|
91879
92108
|
stakeholderComms_createDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
92109
|
+
stakeholderComms_createIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
91880
92110
|
stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
|
|
91881
92111
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
91882
92112
|
stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
@@ -91888,6 +92118,7 @@ export declare type Mutation = {
|
|
|
91888
92118
|
stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
91889
92119
|
stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
|
|
91890
92120
|
stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
92121
|
+
stakeholderComms_updateIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
91891
92122
|
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
91892
92123
|
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
91893
92124
|
stakeholderComms_updateStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
@@ -92491,6 +92722,10 @@ export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
|
92491
92722
|
cloudId: Scalars['ID']['input'];
|
|
92492
92723
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
92493
92724
|
};
|
|
92725
|
+
export declare type MutationConfluence_DeleteContentVersionArgs = {
|
|
92726
|
+
input?: InputMaybe<ConfluenceDeleteContentVersionInput>;
|
|
92727
|
+
pageAri: Scalars['ID']['input'];
|
|
92728
|
+
};
|
|
92494
92729
|
export declare type MutationConfluence_DeleteCustomRoleArgs = {
|
|
92495
92730
|
cloudId: Scalars['ID']['input'];
|
|
92496
92731
|
input: ConfluenceDeleteCustomRoleInput;
|
|
@@ -93465,6 +93700,9 @@ export declare type MutationJira_EditFieldSchemeArgs = {
|
|
|
93465
93700
|
cloudId: Scalars['ID']['input'];
|
|
93466
93701
|
input: JiraEditFieldSchemeInput;
|
|
93467
93702
|
};
|
|
93703
|
+
export declare type MutationJira_MoveBoardViewIssueToCellEndArgs = {
|
|
93704
|
+
input: JiraMoveBoardViewIssueToCellEndInput;
|
|
93705
|
+
};
|
|
93468
93706
|
export declare type MutationJira_OrderIssueSearchFormattingRuleArgs = {
|
|
93469
93707
|
input: JiraOrderIssueSearchFormattingRuleInput;
|
|
93470
93708
|
};
|
|
@@ -94167,6 +94405,9 @@ export declare type MutationStakeholderComms_BulkDeleteStakeholdersArgs = {
|
|
|
94167
94405
|
export declare type MutationStakeholderComms_CreateDraftPageArgs = {
|
|
94168
94406
|
page: StakeholderCommsCreatePageInputType;
|
|
94169
94407
|
};
|
|
94408
|
+
export declare type MutationStakeholderComms_CreateIncidentArgs = {
|
|
94409
|
+
incidentCreateRequest?: InputMaybe<StakeholderCommsIncidentCreateRequest>;
|
|
94410
|
+
};
|
|
94170
94411
|
export declare type MutationStakeholderComms_CreatePageArgs = {
|
|
94171
94412
|
page: StakeholderCommsCreatePageInputType;
|
|
94172
94413
|
};
|
|
@@ -94203,6 +94444,9 @@ export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
|
|
|
94203
94444
|
export declare type MutationStakeholderComms_UpdateDraftPageArgs = {
|
|
94204
94445
|
page: StakeholderCommsUpdatePageInputType;
|
|
94205
94446
|
};
|
|
94447
|
+
export declare type MutationStakeholderComms_UpdateIncidentArgs = {
|
|
94448
|
+
incidentUpdateRequest?: InputMaybe<StakeholderCommsIncidentUpdateRequest>;
|
|
94449
|
+
};
|
|
94206
94450
|
export declare type MutationStakeholderComms_UpdatePageArgs = {
|
|
94207
94451
|
page: StakeholderCommsUpdatePageInputType;
|
|
94208
94452
|
};
|
|
@@ -97629,6 +97873,7 @@ export declare type Query = {
|
|
|
97629
97873
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
97630
97874
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
97631
97875
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
97876
|
+
convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
|
|
97632
97877
|
convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
|
|
97633
97878
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
97634
97879
|
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
@@ -97641,7 +97886,7 @@ export declare type Query = {
|
|
|
97641
97886
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
97642
97887
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
97643
97888
|
cpls_customContributionTargets: CplsCustomContributionTargetConnection;
|
|
97644
|
-
cpls_customContributionTargetsByIds
|
|
97889
|
+
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
97645
97890
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
97646
97891
|
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
97647
97892
|
crossProjectIssueMentionsInCommentsV2?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -98088,6 +98333,7 @@ export declare type Query = {
|
|
|
98088
98333
|
stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
|
|
98089
98334
|
stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
98090
98335
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
98336
|
+
stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
98091
98337
|
stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
98092
98338
|
stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
98093
98339
|
stakeholderComms_getPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
@@ -98108,6 +98354,7 @@ export declare type Query = {
|
|
|
98108
98354
|
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
98109
98355
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
98110
98356
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
98357
|
+
stakeholderComms_listIncidents?: Maybe<StakeholderCommsListIncidentResponse>;
|
|
98111
98358
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
98112
98359
|
stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
|
|
98113
98360
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
@@ -99434,6 +99681,7 @@ export declare type QueryContentByStateArgs = {
|
|
|
99434
99681
|
};
|
|
99435
99682
|
export declare type QueryContentContributorsArgs = {
|
|
99436
99683
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99684
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
99437
99685
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99438
99686
|
id: Scalars['ID']['input'];
|
|
99439
99687
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -99531,6 +99779,11 @@ export declare type QueryContributorsLinkedToConfluencePageV2Args = {
|
|
|
99531
99779
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99532
99780
|
pageId: Scalars['ID']['input'];
|
|
99533
99781
|
};
|
|
99782
|
+
export declare type QueryConvoai_ConfluenceSpaceRecommendationsArgs = {
|
|
99783
|
+
cloudId: Scalars['ID']['input'];
|
|
99784
|
+
pageTitle: Scalars['String']['input'];
|
|
99785
|
+
userPrompt: Scalars['String']['input'];
|
|
99786
|
+
};
|
|
99534
99787
|
export declare type QueryConvoai_HomeThreadsArgs = {
|
|
99535
99788
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99536
99789
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -100368,6 +100621,7 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
100368
100621
|
id: Scalars['ID']['input'];
|
|
100369
100622
|
};
|
|
100370
100623
|
export declare type QueryJira_BacklogArgs = {
|
|
100624
|
+
activeQuickFilters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
100371
100625
|
boardId: Scalars['ID']['input'];
|
|
100372
100626
|
};
|
|
100373
100627
|
export declare type QueryJira_BacklogViewArgs = {
|
|
@@ -101262,6 +101516,9 @@ export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
|
|
|
101262
101516
|
export declare type QueryStakeholderComms_GetDraftPageByNameArgs = {
|
|
101263
101517
|
name: Scalars['String']['input'];
|
|
101264
101518
|
};
|
|
101519
|
+
export declare type QueryStakeholderComms_GetIncidentArgs = {
|
|
101520
|
+
getIncidentInput?: InputMaybe<StakeholderCommsGetIncidentInput>;
|
|
101521
|
+
};
|
|
101265
101522
|
export declare type QueryStakeholderComms_GetMembershipsArgs = {
|
|
101266
101523
|
groupId: Scalars['String']['input'];
|
|
101267
101524
|
};
|
|
@@ -101328,6 +101585,9 @@ export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
|
|
|
101328
101585
|
export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
101329
101586
|
name: Scalars['String']['input'];
|
|
101330
101587
|
};
|
|
101588
|
+
export declare type QueryStakeholderComms_ListIncidentsArgs = {
|
|
101589
|
+
listIncidentInput?: InputMaybe<StakeholderCommsListIncidentInput>;
|
|
101590
|
+
};
|
|
101331
101591
|
export declare type QueryStakeholderComms_ListStakeholdersArgs = {
|
|
101332
101592
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101333
101593
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -124645,6 +124905,8 @@ export declare type SpacePermissionInfo = {
|
|
|
124645
124905
|
description?: Maybe<Scalars['String']['output']>;
|
|
124646
124906
|
displayName: Scalars['String']['output'];
|
|
124647
124907
|
group: SpacePermissionGroup;
|
|
124908
|
+
hubDescription?: Maybe<Scalars['String']['output']>;
|
|
124909
|
+
hubDisplayName?: Maybe<Scalars['String']['output']>;
|
|
124648
124910
|
id: Scalars['String']['output'];
|
|
124649
124911
|
priority: Scalars['Int']['output'];
|
|
124650
124912
|
requiredSpacePermissions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -125694,12 +125956,17 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
125694
125956
|
export declare type StakeholderCommsDailyComponentUptime = {
|
|
125695
125957
|
__typename?: 'StakeholderCommsDailyComponentUptime';
|
|
125696
125958
|
componentDailyAggregate?: Maybe<StakeholderCommsComponentUptimeDailyAggregate>;
|
|
125959
|
+
componentDailyUptimePercentage?: Maybe<Scalars['Float']['output']>;
|
|
125697
125960
|
date: Scalars['String']['output'];
|
|
125698
125961
|
};
|
|
125699
125962
|
export declare enum StakeholderCommsErrorType {
|
|
125700
125963
|
SystemError = "SYSTEM_ERROR",
|
|
125701
125964
|
ValidationError = "VALIDATION_ERROR"
|
|
125702
125965
|
}
|
|
125966
|
+
export declare enum StakeholderCommsExternalIncidentSource {
|
|
125967
|
+
Jsm = "JSM",
|
|
125968
|
+
Statuspage = "STATUSPAGE"
|
|
125969
|
+
}
|
|
125703
125970
|
export declare type StakeholderCommsFooterDataInput = {
|
|
125704
125971
|
copyrightText?: InputMaybe<Scalars['String']['input']>;
|
|
125705
125972
|
footerLogoId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -125713,6 +125980,11 @@ export declare type StakeholderCommsFooterDataType = {
|
|
|
125713
125980
|
footerText?: Maybe<Scalars['String']['output']>;
|
|
125714
125981
|
links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
|
|
125715
125982
|
};
|
|
125983
|
+
export declare type StakeholderCommsGetIncidentInput = {
|
|
125984
|
+
externalIncidentId?: InputMaybe<Scalars['String']['input']>;
|
|
125985
|
+
incidentCode?: InputMaybe<Scalars['String']['input']>;
|
|
125986
|
+
incidentId?: InputMaybe<Scalars['String']['input']>;
|
|
125987
|
+
};
|
|
125716
125988
|
export declare type StakeholderCommsGroups = {
|
|
125717
125989
|
__typename?: 'StakeholderCommsGroups';
|
|
125718
125990
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
@@ -125736,6 +126008,91 @@ export declare type StakeholderCommsHeaderDataType = {
|
|
|
125736
126008
|
headerText?: Maybe<Scalars['String']['output']>;
|
|
125737
126009
|
links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
|
|
125738
126010
|
};
|
|
126011
|
+
export declare type StakeholderCommsIncident = {
|
|
126012
|
+
__typename?: 'StakeholderCommsIncident';
|
|
126013
|
+
autoCompleted?: Maybe<Scalars['Boolean']['output']>;
|
|
126014
|
+
autoInProgress?: Maybe<Scalars['Boolean']['output']>;
|
|
126015
|
+
components?: Maybe<Array<Maybe<StakeholderCommsIncidentComponentStatus>>>;
|
|
126016
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
126017
|
+
externalIncidentId?: Maybe<Scalars['String']['output']>;
|
|
126018
|
+
externalIncidentSource?: Maybe<StakeholderCommsExternalIncidentSource>;
|
|
126019
|
+
id: Scalars['String']['output'];
|
|
126020
|
+
impact?: Maybe<StakeholderCommsIncidentImpact>;
|
|
126021
|
+
lastRemindedAt?: Maybe<Scalars['String']['output']>;
|
|
126022
|
+
monitoringAt?: Maybe<Scalars['String']['output']>;
|
|
126023
|
+
name: Scalars['String']['output'];
|
|
126024
|
+
pageId: Scalars['String']['output'];
|
|
126025
|
+
reminderIntervals?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
126026
|
+
scheduledFor?: Maybe<Scalars['String']['output']>;
|
|
126027
|
+
scheduledUntil?: Maybe<Scalars['String']['output']>;
|
|
126028
|
+
shortlink?: Maybe<Scalars['String']['output']>;
|
|
126029
|
+
startedAt?: Maybe<Scalars['String']['output']>;
|
|
126030
|
+
status?: Maybe<StakeholderCommsIncidentStatus>;
|
|
126031
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
126032
|
+
updateNeededAt?: Maybe<Scalars['String']['output']>;
|
|
126033
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
126034
|
+
};
|
|
126035
|
+
export declare type StakeholderCommsIncidentComponentStatus = {
|
|
126036
|
+
__typename?: 'StakeholderCommsIncidentComponentStatus';
|
|
126037
|
+
componentId: Scalars['String']['output'];
|
|
126038
|
+
status?: Maybe<StakeholderCommsComponentStatus>;
|
|
126039
|
+
};
|
|
126040
|
+
export declare type StakeholderCommsIncidentComponentStatusInput = {
|
|
126041
|
+
componentId: Scalars['String']['input'];
|
|
126042
|
+
status?: InputMaybe<StakeholderCommsComponentStatus>;
|
|
126043
|
+
};
|
|
126044
|
+
export declare type StakeholderCommsIncidentCreateRequest = {
|
|
126045
|
+
affectedComponents?: InputMaybe<Array<InputMaybe<StakeholderCommsIncidentComponentStatusInput>>>;
|
|
126046
|
+
impact?: InputMaybe<StakeholderCommsIncidentImpact>;
|
|
126047
|
+
jiraIncidentId?: InputMaybe<Scalars['String']['input']>;
|
|
126048
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
126049
|
+
name: Scalars['String']['input'];
|
|
126050
|
+
pageId: Scalars['String']['input'];
|
|
126051
|
+
status?: InputMaybe<StakeholderCommsIncidentStatus>;
|
|
126052
|
+
};
|
|
126053
|
+
export declare enum StakeholderCommsIncidentImpact {
|
|
126054
|
+
Critical = "CRITICAL",
|
|
126055
|
+
Major = "MAJOR",
|
|
126056
|
+
Minor = "MINOR",
|
|
126057
|
+
None = "NONE"
|
|
126058
|
+
}
|
|
126059
|
+
export declare type StakeholderCommsIncidentResponse = {
|
|
126060
|
+
__typename?: 'StakeholderCommsIncidentResponse';
|
|
126061
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
126062
|
+
incidentWithUpdates?: Maybe<StakeholderCommsIncidentWithUpdates>;
|
|
126063
|
+
};
|
|
126064
|
+
export declare enum StakeholderCommsIncidentStatus {
|
|
126065
|
+
Identified = "IDENTIFIED",
|
|
126066
|
+
Investigating = "INVESTIGATING",
|
|
126067
|
+
Monitoring = "MONITORING",
|
|
126068
|
+
Resolved = "RESOLVED"
|
|
126069
|
+
}
|
|
126070
|
+
export declare type StakeholderCommsIncidentUpdate = {
|
|
126071
|
+
__typename?: 'StakeholderCommsIncidentUpdate';
|
|
126072
|
+
affectedComponents?: Maybe<Array<Maybe<StakeholderCommsIncidentComponentStatus>>>;
|
|
126073
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
126074
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
126075
|
+
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
126076
|
+
incidentId?: Maybe<Scalars['String']['output']>;
|
|
126077
|
+
oldStatus?: Maybe<StakeholderCommsIncidentStatus>;
|
|
126078
|
+
scheduledAt?: Maybe<Scalars['String']['output']>;
|
|
126079
|
+
status?: Maybe<StakeholderCommsIncidentStatus>;
|
|
126080
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
126081
|
+
};
|
|
126082
|
+
export declare type StakeholderCommsIncidentUpdateRequest = {
|
|
126083
|
+
affectedComponents?: InputMaybe<Array<InputMaybe<StakeholderCommsIncidentComponentStatusInput>>>;
|
|
126084
|
+
impact?: InputMaybe<StakeholderCommsIncidentImpact>;
|
|
126085
|
+
jiraIncidentId?: InputMaybe<Scalars['String']['input']>;
|
|
126086
|
+
message?: InputMaybe<Scalars['String']['input']>;
|
|
126087
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
126088
|
+
pageId: Scalars['String']['input'];
|
|
126089
|
+
status?: InputMaybe<StakeholderCommsIncidentStatus>;
|
|
126090
|
+
};
|
|
126091
|
+
export declare type StakeholderCommsIncidentWithUpdates = {
|
|
126092
|
+
__typename?: 'StakeholderCommsIncidentWithUpdates';
|
|
126093
|
+
incident?: Maybe<StakeholderCommsIncident>;
|
|
126094
|
+
incidentUpdates?: Maybe<Array<Maybe<StakeholderCommsIncidentUpdate>>>;
|
|
126095
|
+
};
|
|
125739
126096
|
export declare type StakeholderCommsLinkInput = {
|
|
125740
126097
|
label?: InputMaybe<Scalars['String']['input']>;
|
|
125741
126098
|
position?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -125747,6 +126104,15 @@ export declare type StakeholderCommsLinkType = {
|
|
|
125747
126104
|
position?: Maybe<Scalars['Int']['output']>;
|
|
125748
126105
|
url?: Maybe<Scalars['String']['output']>;
|
|
125749
126106
|
};
|
|
126107
|
+
export declare type StakeholderCommsListIncidentInput = {
|
|
126108
|
+
pageId?: InputMaybe<Scalars['String']['input']>;
|
|
126109
|
+
showActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
126110
|
+
};
|
|
126111
|
+
export declare type StakeholderCommsListIncidentResponse = {
|
|
126112
|
+
__typename?: 'StakeholderCommsListIncidentResponse';
|
|
126113
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
126114
|
+
incidentNodes?: Maybe<Array<Maybe<StakeholderCommsIncidentWithUpdates>>>;
|
|
126115
|
+
};
|
|
125750
126116
|
export declare type StakeholderCommsModePreference = {
|
|
125751
126117
|
__typename?: 'StakeholderCommsModePreference';
|
|
125752
126118
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -125853,6 +126219,7 @@ export declare type StakeholderCommsPageComponentsWithUptimeResponse = {
|
|
|
125853
126219
|
__typename?: 'StakeholderCommsPageComponentsWithUptimeResponse';
|
|
125854
126220
|
error?: Maybe<Scalars['String']['output']>;
|
|
125855
126221
|
pageComponentsUptime?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
|
|
126222
|
+
pageUptime?: Maybe<StakeholderCommsPageUptime>;
|
|
125856
126223
|
};
|
|
125857
126224
|
export declare type StakeholderCommsPageDraftComponentResponse = {
|
|
125858
126225
|
__typename?: 'StakeholderCommsPageDraftComponentResponse';
|
|
@@ -125891,6 +126258,19 @@ export declare enum StakeholderCommsPageThemeMode {
|
|
|
125891
126258
|
Dark = "DARK",
|
|
125892
126259
|
Light = "LIGHT"
|
|
125893
126260
|
}
|
|
126261
|
+
export declare type StakeholderCommsPageUptime = {
|
|
126262
|
+
__typename?: 'StakeholderCommsPageUptime';
|
|
126263
|
+
pageUptimeDailyAggregates?: Maybe<Array<Maybe<StakeholderCommsPageUptimeDailyAggregate>>>;
|
|
126264
|
+
pageUptimePercentage?: Maybe<Scalars['Float']['output']>;
|
|
126265
|
+
};
|
|
126266
|
+
export declare type StakeholderCommsPageUptimeDailyAggregate = {
|
|
126267
|
+
__typename?: 'StakeholderCommsPageUptimeDailyAggregate';
|
|
126268
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
126269
|
+
degradedPerformanceTime?: Maybe<Scalars['Int']['output']>;
|
|
126270
|
+
maintenanceTime?: Maybe<Scalars['Int']['output']>;
|
|
126271
|
+
majorOutageTime?: Maybe<Scalars['Int']['output']>;
|
|
126272
|
+
partialOutageTime?: Maybe<Scalars['Int']['output']>;
|
|
126273
|
+
};
|
|
125894
126274
|
export declare type StakeholderCommsPageUptimePercentageResponse = {
|
|
125895
126275
|
__typename?: 'StakeholderCommsPageUptimePercentageResponse';
|
|
125896
126276
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -126145,6 +126525,10 @@ export declare type StakeholderCommsStakeholderResponse = {
|
|
|
126145
126525
|
export declare enum StakeholderCommsStakeholderStatus {
|
|
126146
126526
|
Active = "ACTIVE",
|
|
126147
126527
|
Deleted = "DELETED",
|
|
126528
|
+
Invited = "INVITED",
|
|
126529
|
+
InvitedPendingApproval = "INVITED_PENDING_APPROVAL",
|
|
126530
|
+
NotInvited = "NOT_INVITED",
|
|
126531
|
+
PendingIdentitySetup = "PENDING_IDENTITY_SETUP",
|
|
126148
126532
|
Quarantined = "QUARANTINED"
|
|
126149
126533
|
}
|
|
126150
126534
|
export declare enum StakeholderCommsStakeholderType {
|
|
@@ -128608,6 +128992,7 @@ export declare type TownsquareMetric = Node & {
|
|
|
128608
128992
|
externalEntityId?: Maybe<Scalars['String']['output']>;
|
|
128609
128993
|
id: Scalars['ID']['output'];
|
|
128610
128994
|
name?: Maybe<Scalars['String']['output']>;
|
|
128995
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
128611
128996
|
subType?: Maybe<Scalars['String']['output']>;
|
|
128612
128997
|
type?: Maybe<TownsquareMetricType>;
|
|
128613
128998
|
values?: Maybe<TownsquareMetricValueConnection>;
|
|
@@ -129075,6 +129460,12 @@ export declare type TownsquareProjectsCanCreateProjectFusionPayload = {
|
|
|
129075
129460
|
canCreateFusionResult?: Maybe<TownsquareCanCreateFusionResult>;
|
|
129076
129461
|
issue?: Maybe<JiraIssue>;
|
|
129077
129462
|
};
|
|
129463
|
+
export declare type TownsquareProjectsChildWorkItemsAlreadyLinkedMutationErrorExtension = MutationErrorExtension & {
|
|
129464
|
+
__typename?: 'TownsquareProjectsChildWorkItemsAlreadyLinkedMutationErrorExtension';
|
|
129465
|
+
canReplace?: Maybe<Scalars['Boolean']['output']>;
|
|
129466
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
129467
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
129468
|
+
};
|
|
129078
129469
|
export declare type TownsquareProjectsCloneInput = {
|
|
129079
129470
|
addLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
129080
129471
|
addWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -131739,6 +132130,16 @@ export declare type TrelloListViewer = {
|
|
|
131739
132130
|
__typename?: 'TrelloListViewer';
|
|
131740
132131
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
131741
132132
|
};
|
|
132133
|
+
export declare type TrelloMarkInboxNotificationsReadInput = {
|
|
132134
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
132135
|
+
read?: InputMaybe<Scalars['Boolean']['input']>;
|
|
132136
|
+
};
|
|
132137
|
+
export declare type TrelloMarkInboxNotificationsReadPayload = {
|
|
132138
|
+
__typename?: 'TrelloMarkInboxNotificationsReadPayload';
|
|
132139
|
+
success: Scalars['Boolean']['output'];
|
|
132140
|
+
updatedCount: Scalars['Int']['output'];
|
|
132141
|
+
updatedNotificationsIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
132142
|
+
};
|
|
131742
132143
|
export declare type TrelloMember = Node & {
|
|
131743
132144
|
__typename?: 'TrelloMember';
|
|
131744
132145
|
activityBlocked?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -131951,6 +132352,26 @@ export declare type TrelloMoveInboxCardToBoardEntities = {
|
|
|
131951
132352
|
card?: Maybe<TrelloActionCardEntity>;
|
|
131952
132353
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
131953
132354
|
};
|
|
132355
|
+
export declare type TrelloMovePlannerCalendarEventInput = {
|
|
132356
|
+
sourceEvent: TrelloMovePlannerCalendarEventSourceOptions;
|
|
132357
|
+
targetPlannerCalendar: TrelloMovePlannerCalendarEventTargetOptions;
|
|
132358
|
+
};
|
|
132359
|
+
export declare type TrelloMovePlannerCalendarEventPayload = Payload & {
|
|
132360
|
+
__typename?: 'TrelloMovePlannerCalendarEventPayload';
|
|
132361
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132362
|
+
movedEvent?: Maybe<TrelloPlannerCalendarEventDeleted>;
|
|
132363
|
+
plannerCalendarUpdated?: Maybe<TrelloPlannerCalendar>;
|
|
132364
|
+
success: Scalars['Boolean']['output'];
|
|
132365
|
+
};
|
|
132366
|
+
export declare type TrelloMovePlannerCalendarEventSourceOptions = {
|
|
132367
|
+
plannerCalendarEventId: Scalars['ID']['input'];
|
|
132368
|
+
plannerCalendarId: Scalars['ID']['input'];
|
|
132369
|
+
providerAccountId: Scalars['ID']['input'];
|
|
132370
|
+
};
|
|
132371
|
+
export declare type TrelloMovePlannerCalendarEventTargetOptions = {
|
|
132372
|
+
plannerCalendarId: Scalars['ID']['input'];
|
|
132373
|
+
providerAccountId: Scalars['ID']['input'];
|
|
132374
|
+
};
|
|
131954
132375
|
export declare type TrelloMutationApi = {
|
|
131955
132376
|
__typename?: 'TrelloMutationApi';
|
|
131956
132377
|
addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
|
|
@@ -131969,7 +132390,9 @@ export declare type TrelloMutationApi = {
|
|
|
131969
132390
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
131970
132391
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
131971
132392
|
generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
|
|
132393
|
+
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
131972
132394
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
132395
|
+
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
131973
132396
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
131974
132397
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
131975
132398
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
@@ -132045,9 +132468,15 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
|
132045
132468
|
export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
|
|
132046
132469
|
input: TrelloGenerateChecklistsForCardInput;
|
|
132047
132470
|
};
|
|
132471
|
+
export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
|
|
132472
|
+
input?: InputMaybe<TrelloMarkInboxNotificationsReadInput>;
|
|
132473
|
+
};
|
|
132048
132474
|
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
132049
132475
|
input: TrelloMergeCardsInput;
|
|
132050
132476
|
};
|
|
132477
|
+
export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
|
|
132478
|
+
input: TrelloMovePlannerCalendarEventInput;
|
|
132479
|
+
};
|
|
132051
132480
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
132052
132481
|
input: TrelloPinCardInput;
|
|
132053
132482
|
};
|
|
@@ -132168,6 +132597,7 @@ export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterfa
|
|
|
132168
132597
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
132169
132598
|
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
132170
132599
|
id: Scalars['ID']['output'];
|
|
132600
|
+
idProviderAccount?: Maybe<Scalars['ID']['output']>;
|
|
132171
132601
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
132172
132602
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
132173
132603
|
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -132432,6 +132862,7 @@ export declare type TrelloPlannerCalendarUpdated = {
|
|
|
132432
132862
|
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
132433
132863
|
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
132434
132864
|
id: Scalars['ID']['output'];
|
|
132865
|
+
idProviderAccount?: Maybe<Scalars['ID']['output']>;
|
|
132435
132866
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
132436
132867
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
132437
132868
|
onPlannerCalendarEventDeleted?: Maybe<Array<TrelloPlannerCalendarEventDeleted>>;
|