@forge/cli-shared 8.7.2-next.1-experimental-1a0bb6a → 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 -2
- package/out/graphql/graphql-types.d.ts +667 -110
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +83 -21
- package/out/tunnel/tunnel-options.d.ts +1 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -1
- package/out/ui/text.d.ts +4 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -0
- 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>;
|
|
@@ -35856,6 +36008,8 @@ export declare type GraphStore = {
|
|
|
35856
36008
|
userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
|
|
35857
36009
|
userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
|
|
35858
36010
|
userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
|
|
36011
|
+
userTaggedInIssueDescription?: Maybe<GraphStoreSimplifiedUserTaggedInIssueDescriptionConnection>;
|
|
36012
|
+
userTaggedInIssueDescriptionInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseConnection>;
|
|
35859
36013
|
userTrashedConfluenceContent?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentConnection>;
|
|
35860
36014
|
userTrashedConfluenceContentInverse?: Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentInverseConnection>;
|
|
35861
36015
|
userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
|
|
@@ -35864,8 +36018,6 @@ export declare type GraphStore = {
|
|
|
35864
36018
|
userUpdatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection>;
|
|
35865
36019
|
userUpdatedAtlasProject?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectConnection>;
|
|
35866
36020
|
userUpdatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection>;
|
|
35867
|
-
userUpdatedComment?: Maybe<GraphStoreSimplifiedUserUpdatedCommentConnection>;
|
|
35868
|
-
userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
|
|
35869
36021
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
35870
36022
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
35871
36023
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
@@ -35888,6 +36040,7 @@ export declare type GraphStore = {
|
|
|
35888
36040
|
userViewedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseConnection>;
|
|
35889
36041
|
userViewedConfluencePage?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageConnection>;
|
|
35890
36042
|
userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
|
|
36043
|
+
userViewedDocumentInverse?: Maybe<GraphStoreSimplifiedUserViewedDocumentInverseConnection>;
|
|
35891
36044
|
userViewedGoalUpdate?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateConnection>;
|
|
35892
36045
|
userViewedGoalUpdateBatch?: Maybe<GraphStoreBatchUserViewedGoalUpdateConnection>;
|
|
35893
36046
|
userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
@@ -40473,20 +40626,6 @@ export declare type GraphStoreUserMentionedInVideoCommentInverseArgs = {
|
|
|
40473
40626
|
id: Scalars['ID']['input'];
|
|
40474
40627
|
sort?: InputMaybe<GraphStoreUserMentionedInVideoCommentSortInput>;
|
|
40475
40628
|
};
|
|
40476
|
-
export declare type GraphStoreUserMergedPullRequestArgs = {
|
|
40477
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40478
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40479
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40480
|
-
id: Scalars['ID']['input'];
|
|
40481
|
-
sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
|
|
40482
|
-
};
|
|
40483
|
-
export declare type GraphStoreUserMergedPullRequestInverseArgs = {
|
|
40484
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40485
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40486
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40487
|
-
id: Scalars['ID']['input'];
|
|
40488
|
-
sort?: InputMaybe<GraphStoreUserMergedPullRequestSortInput>;
|
|
40489
|
-
};
|
|
40490
40629
|
export declare type GraphStoreUserOwnedBranchArgs = {
|
|
40491
40630
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40492
40631
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40727,6 +40866,20 @@ export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
|
|
|
40727
40866
|
id: Scalars['ID']['input'];
|
|
40728
40867
|
sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
|
|
40729
40868
|
};
|
|
40869
|
+
export declare type GraphStoreUserTaggedInIssueDescriptionArgs = {
|
|
40870
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40871
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40872
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40873
|
+
id: Scalars['ID']['input'];
|
|
40874
|
+
sort?: InputMaybe<GraphStoreUserTaggedInIssueDescriptionSortInput>;
|
|
40875
|
+
};
|
|
40876
|
+
export declare type GraphStoreUserTaggedInIssueDescriptionInverseArgs = {
|
|
40877
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40878
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40879
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40880
|
+
id: Scalars['ID']['input'];
|
|
40881
|
+
sort?: InputMaybe<GraphStoreUserTaggedInIssueDescriptionSortInput>;
|
|
40882
|
+
};
|
|
40730
40883
|
export declare type GraphStoreUserTrashedConfluenceContentArgs = {
|
|
40731
40884
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40732
40885
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40783,20 +40936,6 @@ export declare type GraphStoreUserUpdatedAtlasProjectInverseArgs = {
|
|
|
40783
40936
|
id: Scalars['ID']['input'];
|
|
40784
40937
|
sort?: InputMaybe<GraphStoreUserUpdatedAtlasProjectSortInput>;
|
|
40785
40938
|
};
|
|
40786
|
-
export declare type GraphStoreUserUpdatedCommentArgs = {
|
|
40787
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40788
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40789
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40790
|
-
id: Scalars['ID']['input'];
|
|
40791
|
-
sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
|
|
40792
|
-
};
|
|
40793
|
-
export declare type GraphStoreUserUpdatedCommentInverseArgs = {
|
|
40794
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
40795
|
-
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40796
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40797
|
-
id: Scalars['ID']['input'];
|
|
40798
|
-
sort?: InputMaybe<GraphStoreUserUpdatedCommentSortInput>;
|
|
40799
|
-
};
|
|
40800
40939
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostArgs = {
|
|
40801
40940
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40802
40941
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -40949,6 +41088,13 @@ export declare type GraphStoreUserViewedConfluencePageInverseArgs = {
|
|
|
40949
41088
|
id: Scalars['ID']['input'];
|
|
40950
41089
|
sort?: InputMaybe<GraphStoreUserViewedConfluencePageSortInput>;
|
|
40951
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
|
+
};
|
|
40952
41098
|
export declare type GraphStoreUserViewedGoalUpdateArgs = {
|
|
40953
41099
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40954
41100
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -42920,6 +43066,20 @@ export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
42920
43066
|
to: Scalars['ID']['input'];
|
|
42921
43067
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
42922
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
|
+
};
|
|
42923
43083
|
export declare type GraphStoreCreateParentTeamHasChildTeamInput = {
|
|
42924
43084
|
relationships: Array<GraphStoreCreateParentTeamHasChildTeamRelationshipInput>;
|
|
42925
43085
|
};
|
|
@@ -43507,6 +43667,19 @@ export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
43507
43667
|
from: Scalars['ID']['input'];
|
|
43508
43668
|
to: Scalars['ID']['input'];
|
|
43509
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
|
+
};
|
|
43510
43683
|
export declare type GraphStoreDeleteParentTeamHasChildTeamInput = {
|
|
43511
43684
|
relationships: Array<GraphStoreDeleteParentTeamHasChildTeamRelationshipInput>;
|
|
43512
43685
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -47643,10 +47816,7 @@ export declare type GraphStoreMeetingHasMeetingNotesPageSortInput = {
|
|
|
47643
47816
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47644
47817
|
};
|
|
47645
47818
|
export declare type GraphStoreMeetingRecordingOwnerHasMeetingNotesFolderSortInput = {
|
|
47646
|
-
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
47647
|
-
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
47648
47819
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47649
|
-
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
47650
47820
|
};
|
|
47651
47821
|
export declare type GraphStoreMeetingRecurrenceHasMeetingRecurrenceNotesPageSortInput = {
|
|
47652
47822
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -47662,6 +47832,7 @@ export declare type GraphStoreMutation = {
|
|
|
47662
47832
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
47663
47833
|
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
47664
47834
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
47835
|
+
createMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
|
|
47665
47836
|
createParentTeamHasChildTeam?: Maybe<GraphStoreCreateParentTeamHasChildTeamPayload>;
|
|
47666
47837
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
47667
47838
|
createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
|
|
@@ -47689,6 +47860,7 @@ export declare type GraphStoreMutation = {
|
|
|
47689
47860
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
47690
47861
|
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
47691
47862
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
47863
|
+
deleteMeetingRecurrenceHasMeetingRecurrenceNotesPage?: Maybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPagePayload>;
|
|
47692
47864
|
deleteParentTeamHasChildTeam?: Maybe<GraphStoreDeleteParentTeamHasChildTeamPayload>;
|
|
47693
47865
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
47694
47866
|
deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
|
|
@@ -47735,6 +47907,9 @@ export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
|
|
|
47735
47907
|
export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
47736
47908
|
input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
47737
47909
|
};
|
|
47910
|
+
export declare type GraphStoreMutationCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
47911
|
+
input?: InputMaybe<GraphStoreCreateMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
|
|
47912
|
+
};
|
|
47738
47913
|
export declare type GraphStoreMutationCreateParentTeamHasChildTeamArgs = {
|
|
47739
47914
|
input?: InputMaybe<GraphStoreCreateParentTeamHasChildTeamInput>;
|
|
47740
47915
|
};
|
|
@@ -47816,6 +47991,9 @@ export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
|
47816
47991
|
export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
47817
47992
|
input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
47818
47993
|
};
|
|
47994
|
+
export declare type GraphStoreMutationDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageArgs = {
|
|
47995
|
+
input?: InputMaybe<GraphStoreDeleteMeetingRecurrenceHasMeetingRecurrenceNotesPageInput>;
|
|
47996
|
+
};
|
|
47819
47997
|
export declare type GraphStoreMutationDeleteParentTeamHasChildTeamArgs = {
|
|
47820
47998
|
input?: InputMaybe<GraphStoreDeleteParentTeamHasChildTeamInput>;
|
|
47821
47999
|
};
|
|
@@ -51680,12 +51858,10 @@ export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseEdge =
|
|
|
51680
51858
|
};
|
|
51681
51859
|
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageInverseUnion = LoomMeeting;
|
|
51682
51860
|
export declare type GraphStoreSimplifiedMeetingHasMeetingNotesPageUnion = ConfluencePage;
|
|
51683
|
-
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo &
|
|
51861
|
+
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection = HasPageInfo & {
|
|
51684
51862
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderConnection';
|
|
51685
51863
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge>>>;
|
|
51686
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
51687
51864
|
pageInfo: PageInfo;
|
|
51688
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
51689
51865
|
};
|
|
51690
51866
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge = {
|
|
51691
51867
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderEdge';
|
|
@@ -51695,12 +51871,10 @@ export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFold
|
|
|
51695
51871
|
lastUpdated: Scalars['DateTime']['output'];
|
|
51696
51872
|
node?: Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderUnion>;
|
|
51697
51873
|
};
|
|
51698
|
-
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection = HasPageInfo &
|
|
51874
|
+
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection = HasPageInfo & {
|
|
51699
51875
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseConnection';
|
|
51700
51876
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge>>>;
|
|
51701
|
-
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
51702
51877
|
pageInfo: PageInfo;
|
|
51703
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
51704
51878
|
};
|
|
51705
51879
|
export declare type GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge = {
|
|
51706
51880
|
__typename?: 'GraphStoreSimplifiedMeetingRecordingOwnerHasMeetingNotesFolderInverseEdge';
|
|
@@ -55526,34 +55700,6 @@ export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseEdge =
|
|
|
55526
55700
|
};
|
|
55527
55701
|
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55528
55702
|
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentUnion = LoomComment;
|
|
55529
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestConnection = HasPageInfo & {
|
|
55530
|
-
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestConnection';
|
|
55531
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestEdge>>>;
|
|
55532
|
-
pageInfo: PageInfo;
|
|
55533
|
-
};
|
|
55534
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestEdge = {
|
|
55535
|
-
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestEdge';
|
|
55536
|
-
createdAt: Scalars['DateTime']['output'];
|
|
55537
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
55538
|
-
id: Scalars['ID']['output'];
|
|
55539
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
55540
|
-
node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestUnion>;
|
|
55541
|
-
};
|
|
55542
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseConnection = HasPageInfo & {
|
|
55543
|
-
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestInverseConnection';
|
|
55544
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseEdge>>>;
|
|
55545
|
-
pageInfo: PageInfo;
|
|
55546
|
-
};
|
|
55547
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseEdge = {
|
|
55548
|
-
__typename?: 'GraphStoreSimplifiedUserMergedPullRequestInverseEdge';
|
|
55549
|
-
createdAt: Scalars['DateTime']['output'];
|
|
55550
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
55551
|
-
id: Scalars['ID']['output'];
|
|
55552
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
55553
|
-
node?: Maybe<GraphStoreSimplifiedUserMergedPullRequestInverseUnion>;
|
|
55554
|
-
};
|
|
55555
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
55556
|
-
export declare type GraphStoreSimplifiedUserMergedPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
55557
55703
|
export declare type GraphStoreSimplifiedUserOwnedBranchConnection = HasPageInfo & {
|
|
55558
55704
|
__typename?: 'GraphStoreSimplifiedUserOwnedBranchConnection';
|
|
55559
55705
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserOwnedBranchEdge>>>;
|
|
@@ -56034,6 +56180,34 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
|
|
|
56034
56180
|
};
|
|
56035
56181
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56036
56182
|
export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
|
|
56183
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueDescriptionConnection = HasPageInfo & {
|
|
56184
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueDescriptionConnection';
|
|
56185
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueDescriptionEdge>>>;
|
|
56186
|
+
pageInfo: PageInfo;
|
|
56187
|
+
};
|
|
56188
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueDescriptionEdge = {
|
|
56189
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueDescriptionEdge';
|
|
56190
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56191
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56192
|
+
id: Scalars['ID']['output'];
|
|
56193
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56194
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueDescriptionUnion>;
|
|
56195
|
+
};
|
|
56196
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseConnection = HasPageInfo & {
|
|
56197
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseConnection';
|
|
56198
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseEdge>>>;
|
|
56199
|
+
pageInfo: PageInfo;
|
|
56200
|
+
};
|
|
56201
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseEdge = {
|
|
56202
|
+
__typename?: 'GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseEdge';
|
|
56203
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56204
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56205
|
+
id: Scalars['ID']['output'];
|
|
56206
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56207
|
+
node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseUnion>;
|
|
56208
|
+
};
|
|
56209
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueDescriptionInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56210
|
+
export declare type GraphStoreSimplifiedUserTaggedInIssueDescriptionUnion = JiraIssue;
|
|
56037
56211
|
export declare type GraphStoreSimplifiedUserTrashedConfluenceContentConnection = HasPageInfo & {
|
|
56038
56212
|
__typename?: 'GraphStoreSimplifiedUserTrashedConfluenceContentConnection';
|
|
56039
56213
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTrashedConfluenceContentEdge>>>;
|
|
@@ -56146,34 +56320,6 @@ export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseEdge = {
|
|
|
56146
56320
|
};
|
|
56147
56321
|
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56148
56322
|
export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectUnion = TownsquareProject;
|
|
56149
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentConnection = HasPageInfo & {
|
|
56150
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentConnection';
|
|
56151
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentEdge>>>;
|
|
56152
|
-
pageInfo: PageInfo;
|
|
56153
|
-
};
|
|
56154
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentEdge = {
|
|
56155
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentEdge';
|
|
56156
|
-
createdAt: Scalars['DateTime']['output'];
|
|
56157
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
56158
|
-
id: Scalars['ID']['output'];
|
|
56159
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
56160
|
-
node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentUnion>;
|
|
56161
|
-
};
|
|
56162
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentInverseConnection = HasPageInfo & {
|
|
56163
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseConnection';
|
|
56164
|
-
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseEdge>>>;
|
|
56165
|
-
pageInfo: PageInfo;
|
|
56166
|
-
};
|
|
56167
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentInverseEdge = {
|
|
56168
|
-
__typename?: 'GraphStoreSimplifiedUserUpdatedCommentInverseEdge';
|
|
56169
|
-
createdAt: Scalars['DateTime']['output'];
|
|
56170
|
-
cursor?: Maybe<Scalars['String']['output']>;
|
|
56171
|
-
id: Scalars['ID']['output'];
|
|
56172
|
-
lastUpdated: Scalars['DateTime']['output'];
|
|
56173
|
-
node?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseUnion>;
|
|
56174
|
-
};
|
|
56175
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56176
|
-
export declare type GraphStoreSimplifiedUserUpdatedCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
56177
56323
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
|
|
56178
56324
|
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection';
|
|
56179
56325
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostEdge>>>;
|
|
@@ -56454,6 +56600,20 @@ export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseEdge = {
|
|
|
56454
56600
|
};
|
|
56455
56601
|
export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56456
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;
|
|
56457
56617
|
export declare type GraphStoreSimplifiedUserViewedGoalUpdateConnection = HasPageInfo & {
|
|
56458
56618
|
__typename?: 'GraphStoreSimplifiedUserViewedGoalUpdateConnection';
|
|
56459
56619
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedGoalUpdateEdge>>>;
|
|
@@ -57651,9 +57811,6 @@ export declare type GraphStoreUserMentionedInMessageSortInput = {
|
|
|
57651
57811
|
export declare type GraphStoreUserMentionedInVideoCommentSortInput = {
|
|
57652
57812
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57653
57813
|
};
|
|
57654
|
-
export declare type GraphStoreUserMergedPullRequestSortInput = {
|
|
57655
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57656
|
-
};
|
|
57657
57814
|
export declare type GraphStoreUserOwnedBranchSortInput = {
|
|
57658
57815
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57659
57816
|
};
|
|
@@ -57718,6 +57875,9 @@ export declare type GraphStoreUserTaggedInConfluencePageSortInput = {
|
|
|
57718
57875
|
export declare type GraphStoreUserTaggedInIssueCommentSortInput = {
|
|
57719
57876
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57720
57877
|
};
|
|
57878
|
+
export declare type GraphStoreUserTaggedInIssueDescriptionSortInput = {
|
|
57879
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57880
|
+
};
|
|
57721
57881
|
export declare type GraphStoreUserTrashedConfluenceContentSortInput = {
|
|
57722
57882
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57723
57883
|
};
|
|
@@ -57730,9 +57890,6 @@ export declare type GraphStoreUserUpdatedAtlasGoalSortInput = {
|
|
|
57730
57890
|
export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
|
|
57731
57891
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57732
57892
|
};
|
|
57733
|
-
export declare type GraphStoreUserUpdatedCommentSortInput = {
|
|
57734
|
-
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57735
|
-
};
|
|
57736
57893
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
57737
57894
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57738
57895
|
};
|
|
@@ -57763,6 +57920,9 @@ export declare type GraphStoreUserViewedConfluenceBlogpostSortInput = {
|
|
|
57763
57920
|
export declare type GraphStoreUserViewedConfluencePageSortInput = {
|
|
57764
57921
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57765
57922
|
};
|
|
57923
|
+
export declare type GraphStoreUserViewedDocumentSortInput = {
|
|
57924
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57925
|
+
};
|
|
57766
57926
|
export declare type GraphStoreUserViewedGoalUpdateSortInput = {
|
|
57767
57927
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
57768
57928
|
};
|
|
@@ -65779,6 +65939,7 @@ export declare type JiraCustomFieldType = {
|
|
|
65779
65939
|
__typename?: 'JiraCustomFieldType';
|
|
65780
65940
|
category?: Maybe<JiraCustomFieldTypeCategory>;
|
|
65781
65941
|
description?: Maybe<Scalars['String']['output']>;
|
|
65942
|
+
effectiveKey?: Maybe<Scalars['String']['output']>;
|
|
65782
65943
|
hasCascadingOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
65783
65944
|
hasOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
65784
65945
|
installedByAppName?: Maybe<Scalars['String']['output']>;
|
|
@@ -67386,7 +67547,7 @@ export declare type JiraFieldWorkTypeDescriptionCustomization = {
|
|
|
67386
67547
|
workTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
67387
67548
|
};
|
|
67388
67549
|
export declare type JiraFieldWorkTypeDescriptionCustomizationInput = {
|
|
67389
|
-
description
|
|
67550
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
67390
67551
|
isDefault: Scalars['Boolean']['input'];
|
|
67391
67552
|
workTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
67392
67553
|
};
|
|
@@ -67985,6 +68146,55 @@ export declare enum JiraFormattingTwoValueOperator {
|
|
|
67985
68146
|
IsBetween = "IS_BETWEEN",
|
|
67986
68147
|
IsNotBetween = "IS_NOT_BETWEEN"
|
|
67987
68148
|
}
|
|
68149
|
+
export declare type JiraFormulaFieldDateValue = {
|
|
68150
|
+
__typename?: 'JiraFormulaFieldDateValue';
|
|
68151
|
+
value?: Maybe<Scalars['DateTime']['output']>;
|
|
68152
|
+
};
|
|
68153
|
+
export declare type JiraFormulaFieldExpressionConfig = {
|
|
68154
|
+
__typename?: 'JiraFormulaFieldExpressionConfig';
|
|
68155
|
+
expression?: Maybe<Scalars['String']['output']>;
|
|
68156
|
+
};
|
|
68157
|
+
export declare type JiraFormulaFieldExpressionConfigInput = {
|
|
68158
|
+
expression?: InputMaybe<Scalars['String']['input']>;
|
|
68159
|
+
};
|
|
68160
|
+
export declare type JiraFormulaFieldIssuePreview = {
|
|
68161
|
+
__typename?: 'JiraFormulaFieldIssuePreview';
|
|
68162
|
+
missingFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
68163
|
+
parseErrors?: Maybe<Array<JiraFormulaFieldParseError>>;
|
|
68164
|
+
value?: Maybe<JiraFormulaFieldValue>;
|
|
68165
|
+
};
|
|
68166
|
+
export declare type JiraFormulaFieldNumberValue = {
|
|
68167
|
+
__typename?: 'JiraFormulaFieldNumberValue';
|
|
68168
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
68169
|
+
};
|
|
68170
|
+
export declare type JiraFormulaFieldParseError = {
|
|
68171
|
+
__typename?: 'JiraFormulaFieldParseError';
|
|
68172
|
+
message: Scalars['String']['output'];
|
|
68173
|
+
};
|
|
68174
|
+
export declare type JiraFormulaFieldParseResult = {
|
|
68175
|
+
__typename?: 'JiraFormulaFieldParseResult';
|
|
68176
|
+
isValid: Scalars['Boolean']['output'];
|
|
68177
|
+
parseErrors?: Maybe<Array<JiraFormulaFieldParseError>>;
|
|
68178
|
+
type?: Maybe<JiraFormulaFieldType>;
|
|
68179
|
+
};
|
|
68180
|
+
export declare type JiraFormulaFieldPreview = {
|
|
68181
|
+
__typename?: 'JiraFormulaFieldPreview';
|
|
68182
|
+
issuePreview?: Maybe<JiraFormulaFieldIssuePreview>;
|
|
68183
|
+
parseResult?: Maybe<JiraFormulaFieldParseResult>;
|
|
68184
|
+
};
|
|
68185
|
+
export declare type JiraFormulaFieldPreviewIssuePreviewArgs = {
|
|
68186
|
+
issueKey: Scalars['String']['input'];
|
|
68187
|
+
};
|
|
68188
|
+
export declare type JiraFormulaFieldTextValue = {
|
|
68189
|
+
__typename?: 'JiraFormulaFieldTextValue';
|
|
68190
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
68191
|
+
};
|
|
68192
|
+
export declare enum JiraFormulaFieldType {
|
|
68193
|
+
Datetime = "DATETIME",
|
|
68194
|
+
Number = "NUMBER",
|
|
68195
|
+
Text = "TEXT"
|
|
68196
|
+
}
|
|
68197
|
+
export declare type JiraFormulaFieldValue = JiraFormulaFieldDateValue | JiraFormulaFieldNumberValue | JiraFormulaFieldTextValue;
|
|
67988
68198
|
export declare type JiraGeneratedJqlInvalidError = {
|
|
67989
68199
|
__typename?: 'JiraGeneratedJqlInvalidError';
|
|
67990
68200
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -69151,6 +69361,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
69151
69361
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
69152
69362
|
description?: Maybe<Scalars['String']['output']>;
|
|
69153
69363
|
descriptionCustomisations?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
|
|
69364
|
+
effectiveTypeKey?: Maybe<Scalars['String']['output']>;
|
|
69154
69365
|
fieldId: Scalars['String']['output'];
|
|
69155
69366
|
fieldSchemeOperations?: Maybe<JiraFieldSchemeOperations>;
|
|
69156
69367
|
formatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
@@ -69812,6 +70023,18 @@ export declare type JiraIssueReviewDevSummaryContainer = {
|
|
|
69812
70023
|
overall?: Maybe<JiraIssueReviewDevSummary>;
|
|
69813
70024
|
summaryByProvider?: Maybe<Array<JiraIssueDevSummaryByProvider>>;
|
|
69814
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
|
+
}
|
|
69815
70038
|
export declare type JiraIssueSearchBulkViewContextMapping = {
|
|
69816
70039
|
__typename?: 'JiraIssueSearchBulkViewContextMapping';
|
|
69817
70040
|
afterIssueId?: Maybe<Scalars['String']['output']>;
|
|
@@ -69929,6 +70152,17 @@ export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
|
|
|
69929
70152
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
69930
70153
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
69931
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
|
+
};
|
|
69932
70166
|
export declare type JiraIssueSearchFieldMetadataConnection = {
|
|
69933
70167
|
__typename?: 'JiraIssueSearchFieldMetadataConnection';
|
|
69934
70168
|
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldMetadataEdge>>>;
|
|
@@ -70057,6 +70291,7 @@ export declare type JiraIssueSearchSettings = {
|
|
|
70057
70291
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
70058
70292
|
};
|
|
70059
70293
|
export declare type JiraIssueSearchStaticViewInput = {
|
|
70294
|
+
aggregationConfig?: InputMaybe<JiraIssueSearchAggregationConfigInput>;
|
|
70060
70295
|
isGroupingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70061
70296
|
isHideDoneEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
70062
70297
|
isHierarchyEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -70065,6 +70300,10 @@ export declare type JiraIssueSearchStatus = {
|
|
|
70065
70300
|
__typename?: 'JiraIssueSearchStatus';
|
|
70066
70301
|
functions?: Maybe<Array<Maybe<JiraJqlFunctionProcessingStatus>>>;
|
|
70067
70302
|
};
|
|
70303
|
+
export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
70304
|
+
__typename?: 'JiraIssueSearchTimelineViewConfigSettings';
|
|
70305
|
+
aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
|
|
70306
|
+
};
|
|
70068
70307
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
70069
70308
|
__typename?: 'JiraIssueSearchView';
|
|
70070
70309
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -71303,6 +71542,14 @@ export declare enum JiraJqlSyntaxError {
|
|
|
71303
71542
|
UnfinishedString = "UNFINISHED_STRING",
|
|
71304
71543
|
Unknown = "UNKNOWN"
|
|
71305
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
|
+
};
|
|
71306
71553
|
export declare type JiraJqlUserFieldValue = JiraJqlFieldValue & {
|
|
71307
71554
|
__typename?: 'JiraJqlUserFieldValue';
|
|
71308
71555
|
displayName: Scalars['String']['output'];
|
|
@@ -71678,6 +71925,22 @@ export declare type JiraMergeVersionPayload = Payload & {
|
|
|
71678
71925
|
success: Scalars['Boolean']['output'];
|
|
71679
71926
|
targetVersion?: Maybe<JiraVersion>;
|
|
71680
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
|
+
};
|
|
71681
71944
|
export declare type JiraMoveIssuesToFixVersionInput = {
|
|
71682
71945
|
issueIds: Array<Scalars['ID']['input']>;
|
|
71683
71946
|
originalVersionId: Scalars['ID']['input'];
|
|
@@ -72059,6 +72322,7 @@ export declare type JiraMutation = {
|
|
|
72059
72322
|
setDefaultNavigationItem?: Maybe<JiraSetDefaultNavigationItemPayload>;
|
|
72060
72323
|
setEntityIsFavourite?: Maybe<JiraSetIsFavouritePayload>;
|
|
72061
72324
|
setFieldAssociationWithIssueTypes?: Maybe<JiraSetFieldAssociationWithIssueTypesPayload>;
|
|
72325
|
+
setFormulaFieldExpressionConfig?: Maybe<JiraSetFormulaFieldExpressionConfigPayload>;
|
|
72062
72326
|
setMostRecentlyViewedBoard?: Maybe<JiraSetMostRecentlyViewedBoardPayload>;
|
|
72063
72327
|
setPlanAutoSchedulerEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
72064
72328
|
setPlanMultiScenarioEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
|
|
@@ -72572,6 +72836,9 @@ export declare type JiraMutationSetEntityIsFavouriteArgs = {
|
|
|
72572
72836
|
export declare type JiraMutationSetFieldAssociationWithIssueTypesArgs = {
|
|
72573
72837
|
input: JiraSetFieldAssociationWithIssueTypesInput;
|
|
72574
72838
|
};
|
|
72839
|
+
export declare type JiraMutationSetFormulaFieldExpressionConfigArgs = {
|
|
72840
|
+
input: JiraSetFormulaFieldExpressionConfigInput;
|
|
72841
|
+
};
|
|
72575
72842
|
export declare type JiraMutationSetMostRecentlyViewedBoardArgs = {
|
|
72576
72843
|
id: Scalars['ID']['input'];
|
|
72577
72844
|
};
|
|
@@ -73085,6 +73352,7 @@ export declare type JiraNotificationPreferences = {
|
|
|
73085
73352
|
commentCreated?: Maybe<JiraNotificationPreference>;
|
|
73086
73353
|
commentDeleted?: Maybe<JiraNotificationPreference>;
|
|
73087
73354
|
commentEdited?: Maybe<JiraNotificationPreference>;
|
|
73355
|
+
commentMentionReminder?: Maybe<JiraNotificationPreference>;
|
|
73088
73356
|
dailyDueDateNotification?: Maybe<JiraNotificationPreference>;
|
|
73089
73357
|
issueAssigned?: Maybe<JiraNotificationPreference>;
|
|
73090
73358
|
issueCreated?: Maybe<JiraNotificationPreference>;
|
|
@@ -73113,6 +73381,7 @@ export declare enum JiraNotificationType {
|
|
|
73113
73381
|
CommentCreated = "COMMENT_CREATED",
|
|
73114
73382
|
CommentDeleted = "COMMENT_DELETED",
|
|
73115
73383
|
CommentEdited = "COMMENT_EDITED",
|
|
73384
|
+
CommentMentionReminder = "COMMENT_MENTION_REMINDER",
|
|
73116
73385
|
DailyDueDateNotification = "DAILY_DUE_DATE_NOTIFICATION",
|
|
73117
73386
|
IssueAssigned = "ISSUE_ASSIGNED",
|
|
73118
73387
|
IssueCreated = "ISSUE_CREATED",
|
|
@@ -75469,6 +75738,8 @@ export declare type JiraQuery = {
|
|
|
75469
75738
|
first100JsmWorkflowTemplates?: Maybe<Array<JiraServiceManagementWorkflowTemplateMetadata>>;
|
|
75470
75739
|
forge: JiraForgeQuery;
|
|
75471
75740
|
formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
|
|
75741
|
+
formulaFieldExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
75742
|
+
formulaFieldPreview?: Maybe<JiraFormulaFieldPreview>;
|
|
75472
75743
|
getArchivedIssues?: Maybe<JiraArchivedIssueConnection>;
|
|
75473
75744
|
getArchivedIssuesFilterOptions?: Maybe<JiraArchivedIssuesFilterOptions>;
|
|
75474
75745
|
getArchivedIssuesForProject?: Maybe<JiraIssueConnection>;
|
|
@@ -75772,6 +76043,7 @@ export declare type JiraQueryChildIssuesLimitArgs = {
|
|
|
75772
76043
|
export declare type JiraQueryCmdbSelectedObjectAttributesArgs = {
|
|
75773
76044
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75774
76045
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
76046
|
+
cloudId: Scalars['ID']['input'];
|
|
75775
76047
|
fieldId: Scalars['ID']['input'];
|
|
75776
76048
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75777
76049
|
issueId: Scalars['ID']['input'];
|
|
@@ -75879,6 +76151,15 @@ export declare type JiraQueryFormattingRulesByProjectArgs = {
|
|
|
75879
76151
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75880
76152
|
projectId: Scalars['ID']['input'];
|
|
75881
76153
|
};
|
|
76154
|
+
export declare type JiraQueryFormulaFieldExpressionConfigArgs = {
|
|
76155
|
+
cloudId: Scalars['ID']['input'];
|
|
76156
|
+
fieldId: Scalars['String']['input'];
|
|
76157
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
76158
|
+
};
|
|
76159
|
+
export declare type JiraQueryFormulaFieldPreviewArgs = {
|
|
76160
|
+
cloudId: Scalars['ID']['input'];
|
|
76161
|
+
expression: Scalars['String']['input'];
|
|
76162
|
+
};
|
|
75882
76163
|
export declare type JiraQueryGetArchivedIssuesArgs = {
|
|
75883
76164
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75884
76165
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -79061,6 +79342,18 @@ export declare type JiraSetFieldSetsPreferencesPayload = Payload & {
|
|
|
79061
79342
|
errors?: Maybe<Array<MutationError>>;
|
|
79062
79343
|
success: Scalars['Boolean']['output'];
|
|
79063
79344
|
};
|
|
79345
|
+
export declare type JiraSetFormulaFieldExpressionConfigInput = {
|
|
79346
|
+
cloudId: Scalars['ID']['input'];
|
|
79347
|
+
expressionConfig?: InputMaybe<JiraFormulaFieldExpressionConfigInput>;
|
|
79348
|
+
fieldId: Scalars['String']['input'];
|
|
79349
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
79350
|
+
};
|
|
79351
|
+
export declare type JiraSetFormulaFieldExpressionConfigPayload = Payload & {
|
|
79352
|
+
__typename?: 'JiraSetFormulaFieldExpressionConfigPayload';
|
|
79353
|
+
errors?: Maybe<Array<MutationError>>;
|
|
79354
|
+
jobId?: Maybe<Scalars['String']['output']>;
|
|
79355
|
+
success: Scalars['Boolean']['output'];
|
|
79356
|
+
};
|
|
79064
79357
|
export declare type JiraSetIsFavouriteInput = {
|
|
79065
79358
|
beforeEntityId?: InputMaybe<Scalars['ID']['input']>;
|
|
79066
79359
|
entityId: Scalars['ID']['input'];
|
|
@@ -80483,6 +80776,66 @@ export declare type JiraTimelineIssueLinkOperationPayload = {
|
|
|
80483
80776
|
outwardItem?: Maybe<JiraIssue>;
|
|
80484
80777
|
success: Scalars['Boolean']['output'];
|
|
80485
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
|
+
};
|
|
80486
80839
|
export declare type JiraToolchain = {
|
|
80487
80840
|
__typename?: 'JiraToolchain';
|
|
80488
80841
|
hasViewDevToolsPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -91239,6 +91592,7 @@ export declare type Mutation = {
|
|
|
91239
91592
|
confluence_deleteAnswer?: Maybe<ConfluenceDeleteAnswerPayload>;
|
|
91240
91593
|
confluence_deleteCalendar?: Maybe<ConfluenceDeleteCalendarPayload>;
|
|
91241
91594
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
91595
|
+
confluence_deleteContentVersion?: Maybe<ConfluenceDeleteContentVersionPayload>;
|
|
91242
91596
|
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
91243
91597
|
confluence_deleteQuestion?: Maybe<ConfluenceDeleteQuestionPayload>;
|
|
91244
91598
|
confluence_deleteReaction?: Maybe<ConfluenceReactionPayload>;
|
|
@@ -91521,6 +91875,7 @@ export declare type Mutation = {
|
|
|
91521
91875
|
jira_dismissSuggestions?: Maybe<JiraDismissSuggestionActionsPayload>;
|
|
91522
91876
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
91523
91877
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
91878
|
+
jira_moveBoardViewIssueToCellEnd?: Maybe<JiraMoveBoardViewIssueToCellEndPayload>;
|
|
91524
91879
|
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
91525
91880
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
91526
91881
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
@@ -91751,6 +92106,7 @@ export declare type Mutation = {
|
|
|
91751
92106
|
stakeholderComms_bulkCreateStakeholders?: Maybe<StakeholderCommsBulkStakeholderCreationResponse>;
|
|
91752
92107
|
stakeholderComms_bulkDeleteStakeholders?: Maybe<StakeholderCommsBulkStakeholderResponse>;
|
|
91753
92108
|
stakeholderComms_createDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
92109
|
+
stakeholderComms_createIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
91754
92110
|
stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
|
|
91755
92111
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
91756
92112
|
stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
@@ -91762,6 +92118,7 @@ export declare type Mutation = {
|
|
|
91762
92118
|
stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
91763
92119
|
stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
|
|
91764
92120
|
stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
92121
|
+
stakeholderComms_updateIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
91765
92122
|
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
91766
92123
|
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
91767
92124
|
stakeholderComms_updateStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
@@ -92365,6 +92722,10 @@ export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
|
92365
92722
|
cloudId: Scalars['ID']['input'];
|
|
92366
92723
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
92367
92724
|
};
|
|
92725
|
+
export declare type MutationConfluence_DeleteContentVersionArgs = {
|
|
92726
|
+
input?: InputMaybe<ConfluenceDeleteContentVersionInput>;
|
|
92727
|
+
pageAri: Scalars['ID']['input'];
|
|
92728
|
+
};
|
|
92368
92729
|
export declare type MutationConfluence_DeleteCustomRoleArgs = {
|
|
92369
92730
|
cloudId: Scalars['ID']['input'];
|
|
92370
92731
|
input: ConfluenceDeleteCustomRoleInput;
|
|
@@ -93339,6 +93700,9 @@ export declare type MutationJira_EditFieldSchemeArgs = {
|
|
|
93339
93700
|
cloudId: Scalars['ID']['input'];
|
|
93340
93701
|
input: JiraEditFieldSchemeInput;
|
|
93341
93702
|
};
|
|
93703
|
+
export declare type MutationJira_MoveBoardViewIssueToCellEndArgs = {
|
|
93704
|
+
input: JiraMoveBoardViewIssueToCellEndInput;
|
|
93705
|
+
};
|
|
93342
93706
|
export declare type MutationJira_OrderIssueSearchFormattingRuleArgs = {
|
|
93343
93707
|
input: JiraOrderIssueSearchFormattingRuleInput;
|
|
93344
93708
|
};
|
|
@@ -94041,6 +94405,9 @@ export declare type MutationStakeholderComms_BulkDeleteStakeholdersArgs = {
|
|
|
94041
94405
|
export declare type MutationStakeholderComms_CreateDraftPageArgs = {
|
|
94042
94406
|
page: StakeholderCommsCreatePageInputType;
|
|
94043
94407
|
};
|
|
94408
|
+
export declare type MutationStakeholderComms_CreateIncidentArgs = {
|
|
94409
|
+
incidentCreateRequest?: InputMaybe<StakeholderCommsIncidentCreateRequest>;
|
|
94410
|
+
};
|
|
94044
94411
|
export declare type MutationStakeholderComms_CreatePageArgs = {
|
|
94045
94412
|
page: StakeholderCommsCreatePageInputType;
|
|
94046
94413
|
};
|
|
@@ -94077,6 +94444,9 @@ export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
|
|
|
94077
94444
|
export declare type MutationStakeholderComms_UpdateDraftPageArgs = {
|
|
94078
94445
|
page: StakeholderCommsUpdatePageInputType;
|
|
94079
94446
|
};
|
|
94447
|
+
export declare type MutationStakeholderComms_UpdateIncidentArgs = {
|
|
94448
|
+
incidentUpdateRequest?: InputMaybe<StakeholderCommsIncidentUpdateRequest>;
|
|
94449
|
+
};
|
|
94080
94450
|
export declare type MutationStakeholderComms_UpdatePageArgs = {
|
|
94081
94451
|
page: StakeholderCommsUpdatePageInputType;
|
|
94082
94452
|
};
|
|
@@ -97503,6 +97873,7 @@ export declare type Query = {
|
|
|
97503
97873
|
contributorsLinkedToAtlasProject?: Maybe<GraphStoreCypherQueryConnection>;
|
|
97504
97874
|
contributorsLinkedToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
97505
97875
|
contributorsLinkedToConfluencePageV2?: Maybe<GraphStoreCypherQueryConnection>;
|
|
97876
|
+
convoai_confluenceSpaceRecommendations?: Maybe<Array<ConvoAiConfluenceSpaceRecommendation>>;
|
|
97506
97877
|
convoai_homeThreads?: Maybe<ConvoAiHomeThreadsResult>;
|
|
97507
97878
|
convoai_jiraEchoAiFeature?: Maybe<Scalars['String']['output']>;
|
|
97508
97879
|
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
@@ -97515,7 +97886,7 @@ export declare type Query = {
|
|
|
97515
97886
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
97516
97887
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
97517
97888
|
cpls_customContributionTargets: CplsCustomContributionTargetConnection;
|
|
97518
|
-
cpls_customContributionTargetsByIds
|
|
97889
|
+
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
97519
97890
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
97520
97891
|
crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
97521
97892
|
crossProjectIssueMentionsInCommentsV2?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -97962,6 +98333,7 @@ export declare type Query = {
|
|
|
97962
98333
|
stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
|
|
97963
98334
|
stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
97964
98335
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
98336
|
+
stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
97965
98337
|
stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
97966
98338
|
stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
97967
98339
|
stakeholderComms_getPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
@@ -97982,6 +98354,7 @@ export declare type Query = {
|
|
|
97982
98354
|
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
97983
98355
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
97984
98356
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
98357
|
+
stakeholderComms_listIncidents?: Maybe<StakeholderCommsListIncidentResponse>;
|
|
97985
98358
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
97986
98359
|
stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
|
|
97987
98360
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
@@ -99308,6 +99681,7 @@ export declare type QueryContentByStateArgs = {
|
|
|
99308
99681
|
};
|
|
99309
99682
|
export declare type QueryContentContributorsArgs = {
|
|
99310
99683
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99684
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
99311
99685
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99312
99686
|
id: Scalars['ID']['input'];
|
|
99313
99687
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -99405,6 +99779,11 @@ export declare type QueryContributorsLinkedToConfluencePageV2Args = {
|
|
|
99405
99779
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99406
99780
|
pageId: Scalars['ID']['input'];
|
|
99407
99781
|
};
|
|
99782
|
+
export declare type QueryConvoai_ConfluenceSpaceRecommendationsArgs = {
|
|
99783
|
+
cloudId: Scalars['ID']['input'];
|
|
99784
|
+
pageTitle: Scalars['String']['input'];
|
|
99785
|
+
userPrompt: Scalars['String']['input'];
|
|
99786
|
+
};
|
|
99408
99787
|
export declare type QueryConvoai_HomeThreadsArgs = {
|
|
99409
99788
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
99410
99789
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -100242,6 +100621,7 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
100242
100621
|
id: Scalars['ID']['input'];
|
|
100243
100622
|
};
|
|
100244
100623
|
export declare type QueryJira_BacklogArgs = {
|
|
100624
|
+
activeQuickFilters?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
100245
100625
|
boardId: Scalars['ID']['input'];
|
|
100246
100626
|
};
|
|
100247
100627
|
export declare type QueryJira_BacklogViewArgs = {
|
|
@@ -101136,6 +101516,9 @@ export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
|
|
|
101136
101516
|
export declare type QueryStakeholderComms_GetDraftPageByNameArgs = {
|
|
101137
101517
|
name: Scalars['String']['input'];
|
|
101138
101518
|
};
|
|
101519
|
+
export declare type QueryStakeholderComms_GetIncidentArgs = {
|
|
101520
|
+
getIncidentInput?: InputMaybe<StakeholderCommsGetIncidentInput>;
|
|
101521
|
+
};
|
|
101139
101522
|
export declare type QueryStakeholderComms_GetMembershipsArgs = {
|
|
101140
101523
|
groupId: Scalars['String']['input'];
|
|
101141
101524
|
};
|
|
@@ -101202,6 +101585,9 @@ export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
|
|
|
101202
101585
|
export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
101203
101586
|
name: Scalars['String']['input'];
|
|
101204
101587
|
};
|
|
101588
|
+
export declare type QueryStakeholderComms_ListIncidentsArgs = {
|
|
101589
|
+
listIncidentInput?: InputMaybe<StakeholderCommsListIncidentInput>;
|
|
101590
|
+
};
|
|
101205
101591
|
export declare type QueryStakeholderComms_ListStakeholdersArgs = {
|
|
101206
101592
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101207
101593
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -124519,6 +124905,8 @@ export declare type SpacePermissionInfo = {
|
|
|
124519
124905
|
description?: Maybe<Scalars['String']['output']>;
|
|
124520
124906
|
displayName: Scalars['String']['output'];
|
|
124521
124907
|
group: SpacePermissionGroup;
|
|
124908
|
+
hubDescription?: Maybe<Scalars['String']['output']>;
|
|
124909
|
+
hubDisplayName?: Maybe<Scalars['String']['output']>;
|
|
124522
124910
|
id: Scalars['String']['output'];
|
|
124523
124911
|
priority: Scalars['Int']['output'];
|
|
124524
124912
|
requiredSpacePermissions?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -125568,12 +125956,17 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
125568
125956
|
export declare type StakeholderCommsDailyComponentUptime = {
|
|
125569
125957
|
__typename?: 'StakeholderCommsDailyComponentUptime';
|
|
125570
125958
|
componentDailyAggregate?: Maybe<StakeholderCommsComponentUptimeDailyAggregate>;
|
|
125959
|
+
componentDailyUptimePercentage?: Maybe<Scalars['Float']['output']>;
|
|
125571
125960
|
date: Scalars['String']['output'];
|
|
125572
125961
|
};
|
|
125573
125962
|
export declare enum StakeholderCommsErrorType {
|
|
125574
125963
|
SystemError = "SYSTEM_ERROR",
|
|
125575
125964
|
ValidationError = "VALIDATION_ERROR"
|
|
125576
125965
|
}
|
|
125966
|
+
export declare enum StakeholderCommsExternalIncidentSource {
|
|
125967
|
+
Jsm = "JSM",
|
|
125968
|
+
Statuspage = "STATUSPAGE"
|
|
125969
|
+
}
|
|
125577
125970
|
export declare type StakeholderCommsFooterDataInput = {
|
|
125578
125971
|
copyrightText?: InputMaybe<Scalars['String']['input']>;
|
|
125579
125972
|
footerLogoId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -125587,6 +125980,11 @@ export declare type StakeholderCommsFooterDataType = {
|
|
|
125587
125980
|
footerText?: Maybe<Scalars['String']['output']>;
|
|
125588
125981
|
links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
|
|
125589
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
|
+
};
|
|
125590
125988
|
export declare type StakeholderCommsGroups = {
|
|
125591
125989
|
__typename?: 'StakeholderCommsGroups';
|
|
125592
125990
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
@@ -125610,6 +126008,91 @@ export declare type StakeholderCommsHeaderDataType = {
|
|
|
125610
126008
|
headerText?: Maybe<Scalars['String']['output']>;
|
|
125611
126009
|
links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
|
|
125612
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
|
+
};
|
|
125613
126096
|
export declare type StakeholderCommsLinkInput = {
|
|
125614
126097
|
label?: InputMaybe<Scalars['String']['input']>;
|
|
125615
126098
|
position?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -125621,6 +126104,15 @@ export declare type StakeholderCommsLinkType = {
|
|
|
125621
126104
|
position?: Maybe<Scalars['Int']['output']>;
|
|
125622
126105
|
url?: Maybe<Scalars['String']['output']>;
|
|
125623
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
|
+
};
|
|
125624
126116
|
export declare type StakeholderCommsModePreference = {
|
|
125625
126117
|
__typename?: 'StakeholderCommsModePreference';
|
|
125626
126118
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -125727,6 +126219,7 @@ export declare type StakeholderCommsPageComponentsWithUptimeResponse = {
|
|
|
125727
126219
|
__typename?: 'StakeholderCommsPageComponentsWithUptimeResponse';
|
|
125728
126220
|
error?: Maybe<Scalars['String']['output']>;
|
|
125729
126221
|
pageComponentsUptime?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
|
|
126222
|
+
pageUptime?: Maybe<StakeholderCommsPageUptime>;
|
|
125730
126223
|
};
|
|
125731
126224
|
export declare type StakeholderCommsPageDraftComponentResponse = {
|
|
125732
126225
|
__typename?: 'StakeholderCommsPageDraftComponentResponse';
|
|
@@ -125765,6 +126258,19 @@ export declare enum StakeholderCommsPageThemeMode {
|
|
|
125765
126258
|
Dark = "DARK",
|
|
125766
126259
|
Light = "LIGHT"
|
|
125767
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
|
+
};
|
|
125768
126274
|
export declare type StakeholderCommsPageUptimePercentageResponse = {
|
|
125769
126275
|
__typename?: 'StakeholderCommsPageUptimePercentageResponse';
|
|
125770
126276
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -126019,6 +126525,10 @@ export declare type StakeholderCommsStakeholderResponse = {
|
|
|
126019
126525
|
export declare enum StakeholderCommsStakeholderStatus {
|
|
126020
126526
|
Active = "ACTIVE",
|
|
126021
126527
|
Deleted = "DELETED",
|
|
126528
|
+
Invited = "INVITED",
|
|
126529
|
+
InvitedPendingApproval = "INVITED_PENDING_APPROVAL",
|
|
126530
|
+
NotInvited = "NOT_INVITED",
|
|
126531
|
+
PendingIdentitySetup = "PENDING_IDENTITY_SETUP",
|
|
126022
126532
|
Quarantined = "QUARANTINED"
|
|
126023
126533
|
}
|
|
126024
126534
|
export declare enum StakeholderCommsStakeholderType {
|
|
@@ -128482,6 +128992,7 @@ export declare type TownsquareMetric = Node & {
|
|
|
128482
128992
|
externalEntityId?: Maybe<Scalars['String']['output']>;
|
|
128483
128993
|
id: Scalars['ID']['output'];
|
|
128484
128994
|
name?: Maybe<Scalars['String']['output']>;
|
|
128995
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
128485
128996
|
subType?: Maybe<Scalars['String']['output']>;
|
|
128486
128997
|
type?: Maybe<TownsquareMetricType>;
|
|
128487
128998
|
values?: Maybe<TownsquareMetricValueConnection>;
|
|
@@ -128949,6 +129460,12 @@ export declare type TownsquareProjectsCanCreateProjectFusionPayload = {
|
|
|
128949
129460
|
canCreateFusionResult?: Maybe<TownsquareCanCreateFusionResult>;
|
|
128950
129461
|
issue?: Maybe<JiraIssue>;
|
|
128951
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
|
+
};
|
|
128952
129469
|
export declare type TownsquareProjectsCloneInput = {
|
|
128953
129470
|
addLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
128954
129471
|
addWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -131613,6 +132130,16 @@ export declare type TrelloListViewer = {
|
|
|
131613
132130
|
__typename?: 'TrelloListViewer';
|
|
131614
132131
|
subscribed?: Maybe<Scalars['Boolean']['output']>;
|
|
131615
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
|
+
};
|
|
131616
132143
|
export declare type TrelloMember = Node & {
|
|
131617
132144
|
__typename?: 'TrelloMember';
|
|
131618
132145
|
activityBlocked?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -131825,6 +132352,26 @@ export declare type TrelloMoveInboxCardToBoardEntities = {
|
|
|
131825
132352
|
card?: Maybe<TrelloActionCardEntity>;
|
|
131826
132353
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
131827
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
|
+
};
|
|
131828
132375
|
export declare type TrelloMutationApi = {
|
|
131829
132376
|
__typename?: 'TrelloMutationApi';
|
|
131830
132377
|
addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
|
|
@@ -131843,7 +132390,9 @@ export declare type TrelloMutationApi = {
|
|
|
131843
132390
|
deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
|
|
131844
132391
|
editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
|
|
131845
132392
|
generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
|
|
132393
|
+
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
131846
132394
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
132395
|
+
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
131847
132396
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
131848
132397
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
131849
132398
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
@@ -131919,9 +132468,15 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
|
|
|
131919
132468
|
export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
|
|
131920
132469
|
input: TrelloGenerateChecklistsForCardInput;
|
|
131921
132470
|
};
|
|
132471
|
+
export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
|
|
132472
|
+
input?: InputMaybe<TrelloMarkInboxNotificationsReadInput>;
|
|
132473
|
+
};
|
|
131922
132474
|
export declare type TrelloMutationApiMergeCardsArgs = {
|
|
131923
132475
|
input: TrelloMergeCardsInput;
|
|
131924
132476
|
};
|
|
132477
|
+
export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
|
|
132478
|
+
input: TrelloMovePlannerCalendarEventInput;
|
|
132479
|
+
};
|
|
131925
132480
|
export declare type TrelloMutationApiPinCardArgs = {
|
|
131926
132481
|
input: TrelloPinCardInput;
|
|
131927
132482
|
};
|
|
@@ -132042,6 +132597,7 @@ export declare type TrelloPlannerCalendar = Node & TrelloProviderCalendarInterfa
|
|
|
132042
132597
|
events?: Maybe<TrelloPlannerCalendarEventConnection>;
|
|
132043
132598
|
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
132044
132599
|
id: Scalars['ID']['output'];
|
|
132600
|
+
idProviderAccount?: Maybe<Scalars['ID']['output']>;
|
|
132045
132601
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
132046
132602
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
132047
132603
|
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -132306,6 +132862,7 @@ export declare type TrelloPlannerCalendarUpdated = {
|
|
|
132306
132862
|
events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
|
|
132307
132863
|
forceUpdateTimestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
132308
132864
|
id: Scalars['ID']['output'];
|
|
132865
|
+
idProviderAccount?: Maybe<Scalars['ID']['output']>;
|
|
132309
132866
|
isPrimary?: Maybe<Scalars['Boolean']['output']>;
|
|
132310
132867
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
132311
132868
|
onPlannerCalendarEventDeleted?: Maybe<Array<TrelloPlannerCalendarEventDeleted>>;
|