@forge/cli-shared 8.15.0-next.4 → 8.15.0-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/out/graphql/graphql-types.d.ts +384 -10
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +90 -33
- package/package.json +2 -2
|
@@ -4032,10 +4032,200 @@ export declare type AgentStudioWidgets = {
|
|
|
4032
4032
|
widgets?: Maybe<Array<AgentStudioWidget>>;
|
|
4033
4033
|
};
|
|
4034
4034
|
export declare type AgentStudioWidgetsByAgentIdAndContainerTypeResult = AgentStudioWidgets | QueryError;
|
|
4035
|
+
export declare type AgentWorkspaceAgent = {
|
|
4036
|
+
__typename?: 'AgentWorkspaceAgent';
|
|
4037
|
+
displayName: Scalars['String']['output'];
|
|
4038
|
+
id: Scalars['ID']['output'];
|
|
4039
|
+
teamNames: Array<Scalars['String']['output']>;
|
|
4040
|
+
};
|
|
4041
|
+
export declare type AgentWorkspaceAgentShifts = {
|
|
4042
|
+
__typename?: 'AgentWorkspaceAgentShifts';
|
|
4043
|
+
agent: AgentWorkspaceAgent;
|
|
4044
|
+
hasShifts: Scalars['Boolean']['output'];
|
|
4045
|
+
shifts: Array<AgentWorkspaceShift>;
|
|
4046
|
+
totalHours: Scalars['Float']['output'];
|
|
4047
|
+
};
|
|
4048
|
+
export declare type AgentWorkspaceAgentShiftsEdge = {
|
|
4049
|
+
__typename?: 'AgentWorkspaceAgentShiftsEdge';
|
|
4050
|
+
cursor: Scalars['String']['output'];
|
|
4051
|
+
node: AgentWorkspaceAgentShifts;
|
|
4052
|
+
};
|
|
4053
|
+
export declare type AgentWorkspaceCreateScheduleInput = {
|
|
4054
|
+
agentIds: Array<Scalars['ID']['input']>;
|
|
4055
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4056
|
+
effectiveUntil?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4057
|
+
endTime: Scalars['DateTime']['input'];
|
|
4058
|
+
name: Scalars['String']['input'];
|
|
4059
|
+
projectId: Scalars['ID']['input'];
|
|
4060
|
+
recurrence?: InputMaybe<AgentWorkspaceRecurrenceRuleInput>;
|
|
4061
|
+
startTime: Scalars['DateTime']['input'];
|
|
4062
|
+
teamId: Scalars['ID']['input'];
|
|
4063
|
+
};
|
|
4064
|
+
export declare type AgentWorkspaceCreateSchedulePayload = {
|
|
4065
|
+
__typename?: 'AgentWorkspaceCreateSchedulePayload';
|
|
4066
|
+
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
4067
|
+
schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
4068
|
+
success: Scalars['Boolean']['output'];
|
|
4069
|
+
};
|
|
4070
|
+
export declare enum AgentWorkspaceDayOfWeek {
|
|
4071
|
+
Friday = "FRIDAY",
|
|
4072
|
+
Monday = "MONDAY",
|
|
4073
|
+
Saturday = "SATURDAY",
|
|
4074
|
+
Sunday = "SUNDAY",
|
|
4075
|
+
Thursday = "THURSDAY",
|
|
4076
|
+
Tuesday = "TUESDAY",
|
|
4077
|
+
Wednesday = "WEDNESDAY"
|
|
4078
|
+
}
|
|
4079
|
+
export declare type AgentWorkspaceDeleteScheduleInput = {
|
|
4080
|
+
projectId: Scalars['ID']['input'];
|
|
4081
|
+
scheduleId: Scalars['ID']['input'];
|
|
4082
|
+
};
|
|
4083
|
+
export declare type AgentWorkspaceDeleteSchedulePayload = {
|
|
4084
|
+
__typename?: 'AgentWorkspaceDeleteSchedulePayload';
|
|
4085
|
+
deletedScheduleId?: Maybe<Scalars['ID']['output']>;
|
|
4086
|
+
deletedScheduleName?: Maybe<Scalars['String']['output']>;
|
|
4087
|
+
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
4088
|
+
success: Scalars['Boolean']['output'];
|
|
4089
|
+
};
|
|
4035
4090
|
export declare type AgentWorkspaceHelloWorld = {
|
|
4036
4091
|
__typename?: 'AgentWorkspaceHelloWorld';
|
|
4037
4092
|
value: Scalars['String']['output'];
|
|
4038
4093
|
};
|
|
4094
|
+
export declare type AgentWorkspacePageInfo = {
|
|
4095
|
+
__typename?: 'AgentWorkspacePageInfo';
|
|
4096
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
4097
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
4098
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
4099
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
4100
|
+
totalAgents: Scalars['Int']['output'];
|
|
4101
|
+
};
|
|
4102
|
+
export declare enum AgentWorkspaceRecurrenceFrequency {
|
|
4103
|
+
Daily = "DAILY",
|
|
4104
|
+
Monthly = "MONTHLY",
|
|
4105
|
+
Weekly = "WEEKLY"
|
|
4106
|
+
}
|
|
4107
|
+
export declare type AgentWorkspaceRecurrenceRule = {
|
|
4108
|
+
__typename?: 'AgentWorkspaceRecurrenceRule';
|
|
4109
|
+
dayOfMonth?: Maybe<Scalars['Int']['output']>;
|
|
4110
|
+
dayOfWeekInMonth?: Maybe<AgentWorkspaceDayOfWeek>;
|
|
4111
|
+
daysOfWeek?: Maybe<Array<AgentWorkspaceDayOfWeek>>;
|
|
4112
|
+
frequency: AgentWorkspaceRecurrenceFrequency;
|
|
4113
|
+
humanReadable: Scalars['String']['output'];
|
|
4114
|
+
interval: Scalars['Int']['output'];
|
|
4115
|
+
weekOfMonth?: Maybe<Scalars['Int']['output']>;
|
|
4116
|
+
};
|
|
4117
|
+
export declare type AgentWorkspaceRecurrenceRuleInput = {
|
|
4118
|
+
dayOfMonth?: InputMaybe<Scalars['Int']['input']>;
|
|
4119
|
+
dayOfWeekInMonth?: InputMaybe<AgentWorkspaceDayOfWeek>;
|
|
4120
|
+
daysOfWeek?: InputMaybe<Array<AgentWorkspaceDayOfWeek>>;
|
|
4121
|
+
frequency: AgentWorkspaceRecurrenceFrequency;
|
|
4122
|
+
interval?: InputMaybe<Scalars['Int']['input']>;
|
|
4123
|
+
weekOfMonth?: InputMaybe<Scalars['Int']['input']>;
|
|
4124
|
+
};
|
|
4125
|
+
export declare type AgentWorkspaceSchedule = {
|
|
4126
|
+
__typename?: 'AgentWorkspaceSchedule';
|
|
4127
|
+
agents: Array<AgentWorkspaceAgent>;
|
|
4128
|
+
createdAt: Scalars['DateTime']['output'];
|
|
4129
|
+
createdBy: Scalars['String']['output'];
|
|
4130
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
4131
|
+
effectiveUntil?: Maybe<Scalars['DateTime']['output']>;
|
|
4132
|
+
enabled: Scalars['Boolean']['output'];
|
|
4133
|
+
endTime: Scalars['DateTime']['output'];
|
|
4134
|
+
id: Scalars['ID']['output'];
|
|
4135
|
+
name: Scalars['String']['output'];
|
|
4136
|
+
projectId: Scalars['ID']['output'];
|
|
4137
|
+
recurrence?: Maybe<AgentWorkspaceRecurrenceRule>;
|
|
4138
|
+
recurring: Scalars['Boolean']['output'];
|
|
4139
|
+
startTime: Scalars['DateTime']['output'];
|
|
4140
|
+
teamId: Scalars['ID']['output'];
|
|
4141
|
+
teamName: Scalars['String']['output'];
|
|
4142
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
4143
|
+
};
|
|
4144
|
+
export declare type AgentWorkspaceScheduleError = {
|
|
4145
|
+
__typename?: 'AgentWorkspaceScheduleError';
|
|
4146
|
+
code: AgentWorkspaceScheduleErrorCode;
|
|
4147
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
4148
|
+
message: Scalars['String']['output'];
|
|
4149
|
+
};
|
|
4150
|
+
export declare enum AgentWorkspaceScheduleErrorCode {
|
|
4151
|
+
AgentNotFound = "AGENT_NOT_FOUND",
|
|
4152
|
+
AgentNotInTeam = "AGENT_NOT_IN_TEAM",
|
|
4153
|
+
Forbidden = "FORBIDDEN",
|
|
4154
|
+
InternalError = "INTERNAL_ERROR",
|
|
4155
|
+
InvalidRecurrence = "INVALID_RECURRENCE",
|
|
4156
|
+
InvalidTimeRange = "INVALID_TIME_RANGE",
|
|
4157
|
+
ProjectNotFound = "PROJECT_NOT_FOUND",
|
|
4158
|
+
ScheduleNotFound = "SCHEDULE_NOT_FOUND",
|
|
4159
|
+
TeamNotFound = "TEAM_NOT_FOUND",
|
|
4160
|
+
ValidationError = "VALIDATION_ERROR"
|
|
4161
|
+
}
|
|
4162
|
+
export declare type AgentWorkspaceScheduleVersion = {
|
|
4163
|
+
__typename?: 'AgentWorkspaceScheduleVersion';
|
|
4164
|
+
agentIds: Array<Scalars['ID']['output']>;
|
|
4165
|
+
name: Scalars['String']['output'];
|
|
4166
|
+
versionEndTime: Scalars['DateTime']['output'];
|
|
4167
|
+
versionStartTime: Scalars['DateTime']['output'];
|
|
4168
|
+
};
|
|
4169
|
+
export declare type AgentWorkspaceShift = {
|
|
4170
|
+
__typename?: 'AgentWorkspaceShift';
|
|
4171
|
+
agentId: Scalars['ID']['output'];
|
|
4172
|
+
durationMinutes: Scalars['Int']['output'];
|
|
4173
|
+
endTime: Scalars['DateTime']['output'];
|
|
4174
|
+
id: Scalars['ID']['output'];
|
|
4175
|
+
scheduleId: Scalars['ID']['output'];
|
|
4176
|
+
scheduleName: Scalars['String']['output'];
|
|
4177
|
+
startTime: Scalars['DateTime']['output'];
|
|
4178
|
+
};
|
|
4179
|
+
export declare type AgentWorkspaceShiftsConnection = {
|
|
4180
|
+
__typename?: 'AgentWorkspaceShiftsConnection';
|
|
4181
|
+
edges: Array<AgentWorkspaceAgentShiftsEdge>;
|
|
4182
|
+
metadata: AgentWorkspaceShiftsMetadata;
|
|
4183
|
+
pageInfo: AgentWorkspacePageInfo;
|
|
4184
|
+
summary: AgentWorkspaceShiftsSummary;
|
|
4185
|
+
};
|
|
4186
|
+
export declare type AgentWorkspaceShiftsMetadata = {
|
|
4187
|
+
__typename?: 'AgentWorkspaceShiftsMetadata';
|
|
4188
|
+
endTime: Scalars['DateTime']['output'];
|
|
4189
|
+
generatedAt: Scalars['DateTime']['output'];
|
|
4190
|
+
projectId: Scalars['ID']['output'];
|
|
4191
|
+
startTime: Scalars['DateTime']['output'];
|
|
4192
|
+
};
|
|
4193
|
+
export declare type AgentWorkspaceShiftsQueryInput = {
|
|
4194
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
4195
|
+
agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4196
|
+
endTime: Scalars['DateTime']['input'];
|
|
4197
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4198
|
+
projectId: Scalars['ID']['input'];
|
|
4199
|
+
startTime: Scalars['DateTime']['input'];
|
|
4200
|
+
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4201
|
+
};
|
|
4202
|
+
export declare type AgentWorkspaceShiftsSummary = {
|
|
4203
|
+
__typename?: 'AgentWorkspaceShiftsSummary';
|
|
4204
|
+
avgAgentsPerHour: Scalars['Float']['output'];
|
|
4205
|
+
completedShiftsPercentage: Scalars['Float']['output'];
|
|
4206
|
+
scheduledAgents: Scalars['Int']['output'];
|
|
4207
|
+
totalShifts: Scalars['Int']['output'];
|
|
4208
|
+
};
|
|
4209
|
+
export declare type AgentWorkspaceUpdateScheduleInput = {
|
|
4210
|
+
agentIds: Array<Scalars['ID']['input']>;
|
|
4211
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
4212
|
+
effectiveUntil?: InputMaybe<Scalars['DateTime']['input']>;
|
|
4213
|
+
enabled: Scalars['Boolean']['input'];
|
|
4214
|
+
endTime: Scalars['DateTime']['input'];
|
|
4215
|
+
name: Scalars['String']['input'];
|
|
4216
|
+
projectId: Scalars['ID']['input'];
|
|
4217
|
+
recurrence?: InputMaybe<AgentWorkspaceRecurrenceRuleInput>;
|
|
4218
|
+
scheduleId: Scalars['ID']['input'];
|
|
4219
|
+
startTime: Scalars['DateTime']['input'];
|
|
4220
|
+
teamId: Scalars['ID']['input'];
|
|
4221
|
+
};
|
|
4222
|
+
export declare type AgentWorkspaceUpdateSchedulePayload = {
|
|
4223
|
+
__typename?: 'AgentWorkspaceUpdateSchedulePayload';
|
|
4224
|
+
errors?: Maybe<Array<AgentWorkspaceScheduleError>>;
|
|
4225
|
+
previousVersion?: Maybe<AgentWorkspaceScheduleVersion>;
|
|
4226
|
+
schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
4227
|
+
success: Scalars['Boolean']['output'];
|
|
4228
|
+
};
|
|
4039
4229
|
export declare enum AiCoreApiQuestionType {
|
|
4040
4230
|
DraftDocument = "DRAFT_DOCUMENT",
|
|
4041
4231
|
KnowledgeBase = "KNOWLEDGE_BASE"
|
|
@@ -4329,6 +4519,7 @@ export declare type AppContainer = {
|
|
|
4329
4519
|
export declare type AppContainerImagesArgs = {
|
|
4330
4520
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
4331
4521
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
4522
|
+
imageTag?: InputMaybe<Scalars['String']['input']>;
|
|
4332
4523
|
};
|
|
4333
4524
|
export declare type AppContainerImage = {
|
|
4334
4525
|
__typename?: 'AppContainerImage';
|
|
@@ -4700,7 +4891,7 @@ export declare type AppInstallation = {
|
|
|
4700
4891
|
app?: Maybe<App>;
|
|
4701
4892
|
appEnvironment?: Maybe<AppEnvironment>;
|
|
4702
4893
|
appEnvironmentVersion?: Maybe<AppEnvironmentVersion>;
|
|
4703
|
-
|
|
4894
|
+
computeVersion?: Maybe<AppEnvironmentVersion>;
|
|
4704
4895
|
config?: Maybe<Array<Maybe<AppInstallationConfig>>>;
|
|
4705
4896
|
createdAt: Scalars['DateTime']['output'];
|
|
4706
4897
|
createdBy?: Maybe<User>;
|
|
@@ -4935,6 +5126,12 @@ export declare type AppLogLines = {
|
|
|
4935
5126
|
nodes?: Maybe<Array<Maybe<AppLogLine>>>;
|
|
4936
5127
|
pageInfo: PageInfo;
|
|
4937
5128
|
};
|
|
5129
|
+
export declare type AppLogsFilterBuckets = {
|
|
5130
|
+
__typename?: 'AppLogsFilterBuckets';
|
|
5131
|
+
containers: Array<BucketField>;
|
|
5132
|
+
functionKeys: Array<BucketField>;
|
|
5133
|
+
services: Array<BucketField>;
|
|
5134
|
+
};
|
|
4938
5135
|
export declare type AppLogsWithMetaData = {
|
|
4939
5136
|
__typename?: 'AppLogsWithMetaData';
|
|
4940
5137
|
appId: Scalars['String']['output'];
|
|
@@ -4964,6 +5161,7 @@ export declare type AppLogsWithMetaData = {
|
|
|
4964
5161
|
export declare type AppLogsWithMetaDataResponse = {
|
|
4965
5162
|
__typename?: 'AppLogsWithMetaDataResponse';
|
|
4966
5163
|
appLogs: Array<AppLogsWithMetaData>;
|
|
5164
|
+
appLogsFilterBuckets?: Maybe<AppLogsFilterBuckets>;
|
|
4967
5165
|
hasNextPage: Scalars['Boolean']['output'];
|
|
4968
5166
|
offset?: Maybe<Scalars['Int']['output']>;
|
|
4969
5167
|
totalLogs: Scalars['Int']['output'];
|
|
@@ -8589,6 +8787,7 @@ export declare type BlockServiceUpdateBlockInput = {
|
|
|
8589
8787
|
};
|
|
8590
8788
|
export declare type BlockSmartLink = SmartLink & {
|
|
8591
8789
|
__typename?: 'BlockSmartLink';
|
|
8790
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
8592
8791
|
url: Scalars['String']['output'];
|
|
8593
8792
|
};
|
|
8594
8793
|
export declare type BlockedAccessEmpowerment = {
|
|
@@ -8800,6 +8999,11 @@ export declare type Breadcrumb = {
|
|
|
8800
8999
|
separator?: Maybe<Scalars['String']['output']>;
|
|
8801
9000
|
url?: Maybe<Scalars['String']['output']>;
|
|
8802
9001
|
};
|
|
9002
|
+
export declare type BucketField = {
|
|
9003
|
+
__typename?: 'BucketField';
|
|
9004
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
9005
|
+
key: Scalars['String']['output'];
|
|
9006
|
+
};
|
|
8803
9007
|
export declare type Build = {
|
|
8804
9008
|
__typename?: 'Build';
|
|
8805
9009
|
appId: Scalars['ID']['output'];
|
|
@@ -30044,6 +30248,7 @@ export declare type DevAiRovoDevCreateSessionInput = {
|
|
|
30044
30248
|
options?: InputMaybe<DevAiRovoDevCreateSessionOptionsInput>;
|
|
30045
30249
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
30046
30250
|
repository: DevAiRovoDevRepositoryInput;
|
|
30251
|
+
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
30047
30252
|
workspaceAri: Scalars['ID']['input'];
|
|
30048
30253
|
xid?: InputMaybe<Scalars['String']['input']>;
|
|
30049
30254
|
};
|
|
@@ -30085,6 +30290,7 @@ export declare enum DevAiRovoDevRaisePullRequestOption {
|
|
|
30085
30290
|
}
|
|
30086
30291
|
export declare type DevAiRovoDevRepository = {
|
|
30087
30292
|
__typename?: 'DevAiRovoDevRepository';
|
|
30293
|
+
branchUrl?: Maybe<Scalars['String']['output']>;
|
|
30088
30294
|
sourceBranch?: Maybe<Scalars['String']['output']>;
|
|
30089
30295
|
targetBranch?: Maybe<Scalars['String']['output']>;
|
|
30090
30296
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -32759,6 +32965,7 @@ export declare type EmbeddedMediaTokenV2 = {
|
|
|
32759
32965
|
export declare type EmbeddedSmartLink = SmartLink & {
|
|
32760
32966
|
__typename?: 'EmbeddedSmartLink';
|
|
32761
32967
|
layout: Scalars['String']['output'];
|
|
32968
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
32762
32969
|
url: Scalars['String']['output'];
|
|
32763
32970
|
width: Scalars['Float']['output'];
|
|
32764
32971
|
};
|
|
@@ -37320,8 +37527,21 @@ export declare type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payloa
|
|
|
37320
37527
|
errors?: Maybe<Array<MutationError>>;
|
|
37321
37528
|
success: Scalars['Boolean']['output'];
|
|
37322
37529
|
};
|
|
37530
|
+
export declare enum GraphIntegrationSkillColor {
|
|
37531
|
+
Blue = "BLUE",
|
|
37532
|
+
Default = "DEFAULT",
|
|
37533
|
+
Gray = "GRAY",
|
|
37534
|
+
Green = "GREEN",
|
|
37535
|
+
Lime = "LIME",
|
|
37536
|
+
Magenta = "MAGENTA",
|
|
37537
|
+
Purple = "PURPLE",
|
|
37538
|
+
Red = "RED",
|
|
37539
|
+
Teal = "TEAL",
|
|
37540
|
+
Yellow = "YELLOW"
|
|
37541
|
+
}
|
|
37323
37542
|
export declare type GraphIntegrationSkillDirectoryItem = {
|
|
37324
37543
|
__typename?: 'GraphIntegrationSkillDirectoryItem';
|
|
37544
|
+
color?: Maybe<GraphIntegrationSkillColor>;
|
|
37325
37545
|
description?: Maybe<Scalars['String']['output']>;
|
|
37326
37546
|
displayName: Scalars['String']['output'];
|
|
37327
37547
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -53316,7 +53536,7 @@ export declare type GraphStoreFullProjectDocumentationEntityEndNode = {
|
|
|
53316
53536
|
data?: Maybe<GraphStoreFullProjectDocumentationEntityEndUnion>;
|
|
53317
53537
|
id: Scalars['ID']['output'];
|
|
53318
53538
|
};
|
|
53319
|
-
export declare type GraphStoreFullProjectDocumentationEntityEndUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
53539
|
+
export declare type GraphStoreFullProjectDocumentationEntityEndUnion = ConfluenceFolder | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | DevOpsDocument | ExternalDocument;
|
|
53320
53540
|
export declare type GraphStoreFullProjectDocumentationEntityNode = Node & {
|
|
53321
53541
|
__typename?: 'GraphStoreFullProjectDocumentationEntityNode';
|
|
53322
53542
|
createdAt: Scalars['DateTime']['output'];
|
|
@@ -60975,7 +61195,7 @@ export declare type GraphStoreSimplifiedProjectDocumentationEntityInverseEdge =
|
|
|
60975
61195
|
node?: Maybe<GraphStoreSimplifiedProjectDocumentationEntityInverseUnion>;
|
|
60976
61196
|
};
|
|
60977
61197
|
export declare type GraphStoreSimplifiedProjectDocumentationEntityInverseUnion = JiraProject;
|
|
60978
|
-
export declare type GraphStoreSimplifiedProjectDocumentationEntityUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
61198
|
+
export declare type GraphStoreSimplifiedProjectDocumentationEntityUnion = ConfluenceFolder | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | DevOpsDocument | ExternalDocument;
|
|
60979
61199
|
export declare type GraphStoreSimplifiedProjectDocumentationPageConnection = HasPageInfo & HasTotal & {
|
|
60980
61200
|
__typename?: 'GraphStoreSimplifiedProjectDocumentationPageConnection';
|
|
60981
61201
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedProjectDocumentationPageEdge>>>;
|
|
@@ -82049,7 +82269,7 @@ export declare type GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityInverseEdg
|
|
|
82049
82269
|
node?: Maybe<GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityInverseUnion>;
|
|
82050
82270
|
};
|
|
82051
82271
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityInverseUnion = JiraProject;
|
|
82052
|
-
export declare type GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityUnion = ConfluencePage | ConfluenceSpace | DevOpsDocument | ExternalDocument;
|
|
82272
|
+
export declare type GraphStoreV2SimplifiedJiraSpaceLinksDocumentEntityUnion = ConfluenceFolder | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | DevOpsDocument | ExternalDocument;
|
|
82053
82273
|
export declare type GraphStoreV2SimplifiedJiraSpaceLinksEntityConnection = HasPageInfo & {
|
|
82054
82274
|
__typename?: 'GraphStoreV2SimplifiedJiraSpaceLinksEntityConnection';
|
|
82055
82275
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedJiraSpaceLinksEntityEdge>>>;
|
|
@@ -87932,6 +88152,7 @@ export declare type InlineCommentResolveProperties = {
|
|
|
87932
88152
|
};
|
|
87933
88153
|
export declare type InlineSmartLink = SmartLink & {
|
|
87934
88154
|
__typename?: 'InlineSmartLink';
|
|
88155
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
87935
88156
|
url: Scalars['String']['output'];
|
|
87936
88157
|
};
|
|
87937
88158
|
export declare type InlineTask = {
|
|
@@ -93907,6 +94128,14 @@ export declare type JiraDiscardUserIssueSearchConfigPayload = {
|
|
|
93907
94128
|
success: Scalars['Boolean']['output'];
|
|
93908
94129
|
view?: Maybe<JiraView>;
|
|
93909
94130
|
};
|
|
94131
|
+
export declare type JiraDiscardUserTimelineViewConfigInput = {
|
|
94132
|
+
viewId: Scalars['ID']['input'];
|
|
94133
|
+
};
|
|
94134
|
+
export declare type JiraDiscardUserTimelineViewConfigPayload = Payload & {
|
|
94135
|
+
__typename?: 'JiraDiscardUserTimelineViewConfigPayload';
|
|
94136
|
+
errors?: Maybe<Array<MutationError>>;
|
|
94137
|
+
success: Scalars['Boolean']['output'];
|
|
94138
|
+
};
|
|
93910
94139
|
export declare type JiraDiscardUserViewConfigInput = {
|
|
93911
94140
|
viewId: Scalars['ID']['input'];
|
|
93912
94141
|
};
|
|
@@ -96001,6 +96230,8 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
96001
96230
|
fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
|
|
96002
96231
|
fieldsForView?: Maybe<JiraIssueFieldConnection>;
|
|
96003
96232
|
getConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
96233
|
+
getConsolidatedResourcesTotalCount?: Maybe<Scalars['Long']['output']>;
|
|
96234
|
+
getUnhydratedConsolidatedResources?: Maybe<JiraResourcesResult>;
|
|
96004
96235
|
groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
|
|
96005
96236
|
hasChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
96006
96237
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -96070,6 +96301,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
96070
96301
|
screenId?: Maybe<Scalars['Long']['output']>;
|
|
96071
96302
|
searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
|
|
96072
96303
|
securityLevelField?: Maybe<JiraSecurityLevelField>;
|
|
96304
|
+
securityVulnerabilityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
96073
96305
|
shouldShowPlaybooks?: Maybe<Scalars['Boolean']['output']>;
|
|
96074
96306
|
smartSummary?: Maybe<JiraAdf>;
|
|
96075
96307
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
@@ -96254,6 +96486,12 @@ export declare type JiraIssueFieldsForViewArgs = {
|
|
|
96254
96486
|
export declare type JiraIssueGetConsolidatedResourcesArgs = {
|
|
96255
96487
|
input?: InputMaybe<JiraGetIssueResourceInput>;
|
|
96256
96488
|
};
|
|
96489
|
+
export declare type JiraIssueGetConsolidatedResourcesTotalCountArgs = {
|
|
96490
|
+
input?: InputMaybe<JiraResourcesTotalCountInput>;
|
|
96491
|
+
};
|
|
96492
|
+
export declare type JiraIssueGetUnhydratedConsolidatedResourcesArgs = {
|
|
96493
|
+
input?: InputMaybe<JiraGetIssueResourceInput>;
|
|
96494
|
+
};
|
|
96257
96495
|
export declare type JiraIssueGroupsByFieldIdArgs = {
|
|
96258
96496
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96259
96497
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96350,6 +96588,10 @@ export declare type JiraIssueSearchViewContextArgs = {
|
|
|
96350
96588
|
issueSearchInput: JiraIssueSearchInput;
|
|
96351
96589
|
searchViewContextInput: JiraIssueSearchViewContextInput;
|
|
96352
96590
|
};
|
|
96591
|
+
export declare type JiraIssueSecurityVulnerabilityRelationshipsArgs = {
|
|
96592
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
96593
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96594
|
+
};
|
|
96353
96595
|
export declare type JiraIssueStartDateViewFieldArgs = {
|
|
96354
96596
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
96355
96597
|
};
|
|
@@ -97903,7 +98145,9 @@ export declare type JiraIssueSearchStatus = {
|
|
|
97903
98145
|
export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
97904
98146
|
__typename?: 'JiraIssueSearchTimelineViewConfigSettings';
|
|
97905
98147
|
aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
|
|
98148
|
+
hideReleases?: Maybe<Scalars['Boolean']['output']>;
|
|
97906
98149
|
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
98150
|
+
highlightedReleases?: Maybe<Array<Scalars['ID']['output']>>;
|
|
97907
98151
|
};
|
|
97908
98152
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
97909
98153
|
__typename?: 'JiraIssueSearchView';
|
|
@@ -102686,6 +102930,7 @@ export declare type JiraProject = Node & {
|
|
|
102686
102930
|
goals?: Maybe<GraphStoreSimplifiedJiraProjectAssociatedAtlasGoalConnection>;
|
|
102687
102931
|
hasRelationshipFrom?: Maybe<Scalars['Boolean']['output']>;
|
|
102688
102932
|
hasRelationshipTo?: Maybe<Scalars['Boolean']['output']>;
|
|
102933
|
+
hasSecurityVulnerabilityRelationship?: Maybe<Scalars['Boolean']['output']>;
|
|
102689
102934
|
id: Scalars['ID']['output'];
|
|
102690
102935
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
102691
102936
|
isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -105799,6 +106044,9 @@ export declare enum JiraResourcesSortDirection {
|
|
|
105799
106044
|
Asc = "ASC",
|
|
105800
106045
|
Desc = "DESC"
|
|
105801
106046
|
}
|
|
106047
|
+
export declare type JiraResourcesTotalCountInput = {
|
|
106048
|
+
integration?: InputMaybe<Array<InputMaybe<JiraResourceIntegration>>>;
|
|
106049
|
+
};
|
|
105802
106050
|
export declare type JiraRestoreCustomFieldsInput = {
|
|
105803
106051
|
fieldIds: Array<Scalars['String']['input']>;
|
|
105804
106052
|
};
|
|
@@ -107650,6 +107898,15 @@ export declare type JiraSetProjectSelectedDeploymentAppsPropertyPayload = Payloa
|
|
|
107650
107898
|
errors?: Maybe<Array<MutationError>>;
|
|
107651
107899
|
success: Scalars['Boolean']['output'];
|
|
107652
107900
|
};
|
|
107901
|
+
export declare type JiraSetTimelineHighlightedReleasesInput = {
|
|
107902
|
+
highlightedReleases: Array<Scalars['ID']['input']>;
|
|
107903
|
+
viewId: Scalars['ID']['input'];
|
|
107904
|
+
};
|
|
107905
|
+
export declare type JiraSetTimelineHighlightedReleasesPayload = Payload & {
|
|
107906
|
+
__typename?: 'JiraSetTimelineHighlightedReleasesPayload';
|
|
107907
|
+
errors?: Maybe<Array<MutationError>>;
|
|
107908
|
+
success: Scalars['Boolean']['output'];
|
|
107909
|
+
};
|
|
107653
107910
|
export declare type JiraSetTimelineViewRangeModeInput = {
|
|
107654
107911
|
rangeMode: JiraTimelineViewRangeMode;
|
|
107655
107912
|
viewId: Scalars['ID']['input'];
|
|
@@ -111475,6 +111732,28 @@ export declare type JiraWorklogPayload = Payload & {
|
|
|
111475
111732
|
export declare type JiraWorklogSortInput = {
|
|
111476
111733
|
order: SortDirection;
|
|
111477
111734
|
};
|
|
111735
|
+
export declare type JpdImportIdeasInput = {
|
|
111736
|
+
csvContent?: InputMaybe<Scalars['String']['input']>;
|
|
111737
|
+
jpdProjectId?: InputMaybe<Scalars['String']['input']>;
|
|
111738
|
+
sourceLabel?: InputMaybe<Scalars['String']['input']>;
|
|
111739
|
+
sourceType: JpdImportSourceType;
|
|
111740
|
+
textContent?: InputMaybe<Scalars['String']['input']>;
|
|
111741
|
+
};
|
|
111742
|
+
export declare type JpdImportIdeasPayload = {
|
|
111743
|
+
__typename?: 'JpdImportIdeasPayload';
|
|
111744
|
+
metadata: JpdImportMetadata;
|
|
111745
|
+
suggestedIdeas: Array<SuggestedIdea>;
|
|
111746
|
+
};
|
|
111747
|
+
export declare type JpdImportMetadata = {
|
|
111748
|
+
__typename?: 'JpdImportMetadata';
|
|
111749
|
+
aiGatewayTimeTakenInMs: Scalars['Int']['output'];
|
|
111750
|
+
itemsProcessed: Scalars['Int']['output'];
|
|
111751
|
+
sourceType: Scalars['String']['output'];
|
|
111752
|
+
};
|
|
111753
|
+
export declare enum JpdImportSourceType {
|
|
111754
|
+
Csv = "CSV",
|
|
111755
|
+
Text = "TEXT"
|
|
111756
|
+
}
|
|
111478
111757
|
export declare type JpdInsightDeletedEvent = {
|
|
111479
111758
|
__typename?: 'JpdInsightDeletedEvent';
|
|
111480
111759
|
actorUserId: Scalars['ID']['output'];
|
|
@@ -116715,14 +116994,18 @@ export declare type MarketplaceConsoleProductListingAdditionalChecksInput = {
|
|
|
116715
116994
|
serverAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
116716
116995
|
};
|
|
116717
116996
|
export declare enum MarketplaceConsoleProductListingApprovalStatus {
|
|
116997
|
+
Archived = "ARCHIVED",
|
|
116998
|
+
Notassigned = "NOTASSIGNED",
|
|
116718
116999
|
Private = "PRIVATE",
|
|
116719
117000
|
Public = "PUBLIC",
|
|
117001
|
+
Readytolaunch = "READYTOLAUNCH",
|
|
116720
117002
|
Rejected = "REJECTED",
|
|
116721
117003
|
Submitted = "SUBMITTED"
|
|
116722
117004
|
}
|
|
116723
117005
|
export declare type MarketplaceConsoleProductListingApprovalStatusDetail = {
|
|
116724
117006
|
__typename?: 'MarketplaceConsoleProductListingApprovalStatusDetail';
|
|
116725
117007
|
approvalStatus: MarketplaceConsoleProductListingApprovalStatus;
|
|
117008
|
+
approvalStatusInProcessing?: Maybe<MarketplaceConsoleProductListingApprovalStatus>;
|
|
116726
117009
|
reason?: Maybe<Scalars['String']['output']>;
|
|
116727
117010
|
};
|
|
116728
117011
|
export declare type MarketplaceConsoleProductListingApprovalStatusError = MarketplaceConsoleError & {
|
|
@@ -117140,6 +117423,7 @@ export declare enum MarketplaceConsoleVersionListingApprovalStatus {
|
|
|
117140
117423
|
export declare type MarketplaceConsoleVersionListingApprovalStatusDetail = {
|
|
117141
117424
|
__typename?: 'MarketplaceConsoleVersionListingApprovalStatusDetail';
|
|
117142
117425
|
approvalStatus: MarketplaceConsoleVersionListingApprovalStatus;
|
|
117426
|
+
approvalStatusInProcessing?: Maybe<MarketplaceConsoleVersionListingApprovalStatus>;
|
|
117143
117427
|
reason?: Maybe<Scalars['String']['output']>;
|
|
117144
117428
|
};
|
|
117145
117429
|
export declare type MarketplaceConsoleVersionListingApprovalStatusError = MarketplaceConsoleError & {
|
|
@@ -122643,6 +122927,9 @@ export declare type Mutation = {
|
|
|
122643
122927
|
agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
|
|
122644
122928
|
agentStudio_updateScenarioMappingsForContainer?: Maybe<AgentStudioUpdateScenarioMappingsPayload>;
|
|
122645
122929
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
122930
|
+
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
122931
|
+
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
122932
|
+
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
122646
122933
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
122647
122934
|
appStorage?: Maybe<AppStorageMutation>;
|
|
122648
122935
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -123148,6 +123435,7 @@ export declare type Mutation = {
|
|
|
123148
123435
|
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
123149
123436
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
123150
123437
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
123438
|
+
jira_discardUserTimelineViewConfig?: Maybe<JiraDiscardUserTimelineViewConfigPayload>;
|
|
123151
123439
|
jira_dismissAiAgentSession?: Maybe<JiraDismissAiAgentSessionPayload>;
|
|
123152
123440
|
jira_dismissSuggestion?: Maybe<JiraDismissSuggestionPayload>;
|
|
123153
123441
|
jira_dismissSuggestionGroup?: Maybe<JiraDismissSuggestionGroupPayload>;
|
|
@@ -123207,6 +123495,7 @@ export declare type Mutation = {
|
|
|
123207
123495
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
123208
123496
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
123209
123497
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
123498
|
+
jira_setTimelineHighlightedReleases?: Maybe<JiraSetTimelineHighlightedReleasesPayload>;
|
|
123210
123499
|
jira_setTimelineViewRangeMode?: Maybe<JiraSetTimelineViewRangeModePayload>;
|
|
123211
123500
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
123212
123501
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
@@ -123487,6 +123776,7 @@ export declare type Mutation = {
|
|
|
123487
123776
|
stakeholderComms_issueSsl?: Maybe<StakeholderCommsIssueSslResponse>;
|
|
123488
123777
|
stakeholderComms_permanentlyDeletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
123489
123778
|
stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
123779
|
+
stakeholderComms_recoverDeletedPage?: Maybe<StakeholderCommsPageRecoverResponse>;
|
|
123490
123780
|
stakeholderComms_recoverPage?: Maybe<StakeholderCommsPageResponse>;
|
|
123491
123781
|
stakeholderComms_removeCustomDomain?: Maybe<StakeholderCommsRemoveCustomDomainResponse>;
|
|
123492
123782
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -123807,6 +124097,15 @@ export declare type MutationAgentStudio_UploadDatasetCsvArgs = {
|
|
|
123807
124097
|
productType: AgentStudioProductType;
|
|
123808
124098
|
projectContainerAri: Scalars['ID']['input'];
|
|
123809
124099
|
};
|
|
124100
|
+
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
124101
|
+
input: AgentWorkspaceCreateScheduleInput;
|
|
124102
|
+
};
|
|
124103
|
+
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
124104
|
+
input: AgentWorkspaceDeleteScheduleInput;
|
|
124105
|
+
};
|
|
124106
|
+
export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
|
|
124107
|
+
input: AgentWorkspaceUpdateScheduleInput;
|
|
124108
|
+
};
|
|
123810
124109
|
export declare type MutationAppStorage_AdminArgs = {
|
|
123811
124110
|
appId: Scalars['ID']['input'];
|
|
123812
124111
|
};
|
|
@@ -125606,6 +125905,9 @@ export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
|
125606
125905
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
125607
125906
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
125608
125907
|
};
|
|
125908
|
+
export declare type MutationJira_DiscardUserTimelineViewConfigArgs = {
|
|
125909
|
+
input: JiraDiscardUserTimelineViewConfigInput;
|
|
125910
|
+
};
|
|
125609
125911
|
export declare type MutationJira_DismissAiAgentSessionArgs = {
|
|
125610
125912
|
input?: InputMaybe<JiraDismissAiAgentSessionInput>;
|
|
125611
125913
|
};
|
|
@@ -125792,6 +126094,10 @@ export declare type MutationJira_SetShowUnscheduledIssuesCalendarPanelArgs = {
|
|
|
125792
126094
|
cloudId: Scalars['ID']['input'];
|
|
125793
126095
|
show: Scalars['Boolean']['input'];
|
|
125794
126096
|
};
|
|
126097
|
+
export declare type MutationJira_SetTimelineHighlightedReleasesArgs = {
|
|
126098
|
+
cloudId: Scalars['ID']['input'];
|
|
126099
|
+
input: JiraSetTimelineHighlightedReleasesInput;
|
|
126100
|
+
};
|
|
125795
126101
|
export declare type MutationJira_SetTimelineViewRangeModeArgs = {
|
|
125796
126102
|
input: JiraSetTimelineViewRangeModeInput;
|
|
125797
126103
|
};
|
|
@@ -126663,6 +126969,9 @@ export declare type MutationStakeholderComms_PermanentlyDeletePageArgs = {
|
|
|
126663
126969
|
export declare type MutationStakeholderComms_PublishPageArgs = {
|
|
126664
126970
|
draftPageId: Scalars['String']['input'];
|
|
126665
126971
|
};
|
|
126972
|
+
export declare type MutationStakeholderComms_RecoverDeletedPageArgs = {
|
|
126973
|
+
pageId: Scalars['String']['input'];
|
|
126974
|
+
};
|
|
126666
126975
|
export declare type MutationStakeholderComms_RecoverPageArgs = {
|
|
126667
126976
|
pageId: Scalars['String']['input'];
|
|
126668
126977
|
};
|
|
@@ -129924,6 +130233,9 @@ export declare type Query = {
|
|
|
129924
130233
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
129925
130234
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
129926
130235
|
agentWorkspace_helloWorld?: Maybe<AgentWorkspaceHelloWorld>;
|
|
130236
|
+
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
130237
|
+
agentWorkspace_schedules?: Maybe<Array<AgentWorkspaceSchedule>>;
|
|
130238
|
+
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
129927
130239
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
129928
130240
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
129929
130241
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -130323,6 +130635,7 @@ export declare type Query = {
|
|
|
130323
130635
|
devai_flowSessionsByIssueKeyAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
130324
130636
|
devai_flowSessionsConnectionByCreatorAndCloudId?: Maybe<DevAiFlowSessionConnection>;
|
|
130325
130637
|
devai_getPrefillRepoUrlForFlow?: Maybe<DevAiFlowRepository>;
|
|
130638
|
+
devai_getSessionCommitMsg: Scalars['String']['output'];
|
|
130326
130639
|
devai_getUserPermissionsForRepo?: Maybe<Scalars['Boolean']['output']>;
|
|
130327
130640
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
130328
130641
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
@@ -130417,6 +130730,7 @@ export declare type Query = {
|
|
|
130417
130730
|
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
130418
130731
|
graphStore?: Maybe<GraphStore>;
|
|
130419
130732
|
graphStoreV2?: Maybe<GraphStoreV2>;
|
|
130733
|
+
gravity_jpdImportIdeas?: Maybe<JpdImportIdeasPayload>;
|
|
130420
130734
|
group?: Maybe<Group>;
|
|
130421
130735
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
130422
130736
|
groupMembers?: Maybe<PaginatedPersonList>;
|
|
@@ -131329,6 +131643,16 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
|
|
|
131329
131643
|
export declare type QueryAgentWorkspace_HelloWorldArgs = {
|
|
131330
131644
|
userName: Scalars['String']['input'];
|
|
131331
131645
|
};
|
|
131646
|
+
export declare type QueryAgentWorkspace_ScheduleArgs = {
|
|
131647
|
+
projectId: Scalars['ID']['input'];
|
|
131648
|
+
scheduleId: Scalars['ID']['input'];
|
|
131649
|
+
};
|
|
131650
|
+
export declare type QueryAgentWorkspace_SchedulesArgs = {
|
|
131651
|
+
projectId: Scalars['ID']['input'];
|
|
131652
|
+
};
|
|
131653
|
+
export declare type QueryAgentWorkspace_ShiftsArgs = {
|
|
131654
|
+
input: AgentWorkspaceShiftsQueryInput;
|
|
131655
|
+
};
|
|
131332
131656
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
131333
131657
|
projectAri: Scalars['ID']['input'];
|
|
131334
131658
|
};
|
|
@@ -133225,6 +133549,10 @@ export declare type QueryDevai_GetPrefillRepoUrlForFlowArgs = {
|
|
|
133225
133549
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
133226
133550
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
133227
133551
|
};
|
|
133552
|
+
export declare type QueryDevai_GetSessionCommitMsgArgs = {
|
|
133553
|
+
codeChanges?: InputMaybe<Scalars['String']['input']>;
|
|
133554
|
+
sessionAri: Scalars['ID']['input'];
|
|
133555
|
+
};
|
|
133228
133556
|
export declare type QueryDevai_GetUserPermissionsForRepoArgs = {
|
|
133229
133557
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
133230
133558
|
repoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133580,6 +133908,9 @@ export declare type QueryGraphIntegration_TwgCapabilityContainersInContextArgs =
|
|
|
133580
133908
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133581
133909
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
133582
133910
|
};
|
|
133911
|
+
export declare type QueryGravity_JpdImportIdeasArgs = {
|
|
133912
|
+
input: JpdImportIdeasInput;
|
|
133913
|
+
};
|
|
133583
133914
|
export declare type QueryGroupArgs = {
|
|
133584
133915
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
133585
133916
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -135438,7 +135769,7 @@ export declare type RadarCustomFieldInput = {
|
|
|
135438
135769
|
relativeId?: InputMaybe<Scalars['String']['input']>;
|
|
135439
135770
|
sensitivityLevel: RadarSensitivityLevel;
|
|
135440
135771
|
sourceField: Scalars['String']['input'];
|
|
135441
|
-
type:
|
|
135772
|
+
type: RadarCustomFieldType;
|
|
135442
135773
|
viewPrincipalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
135443
135774
|
};
|
|
135444
135775
|
export declare enum RadarCustomFieldSyncStatus {
|
|
@@ -135446,6 +135777,10 @@ export declare enum RadarCustomFieldSyncStatus {
|
|
|
135446
135777
|
NotFound = "NOT_FOUND",
|
|
135447
135778
|
Pending = "PENDING"
|
|
135448
135779
|
}
|
|
135780
|
+
export declare enum RadarCustomFieldType {
|
|
135781
|
+
Date = "DATE",
|
|
135782
|
+
String = "STRING"
|
|
135783
|
+
}
|
|
135449
135784
|
export declare type RadarDateFieldValue = {
|
|
135450
135785
|
__typename?: 'RadarDateFieldValue';
|
|
135451
135786
|
dateValue?: Maybe<Scalars['Date']['output']>;
|
|
@@ -135547,9 +135882,10 @@ export declare enum RadarFieldType {
|
|
|
135547
135882
|
Number = "NUMBER",
|
|
135548
135883
|
Status = "STATUS",
|
|
135549
135884
|
String = "STRING",
|
|
135550
|
-
Url = "URL"
|
|
135885
|
+
Url = "URL",
|
|
135886
|
+
User = "USER"
|
|
135551
135887
|
}
|
|
135552
|
-
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarGroupFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
|
|
135888
|
+
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarGroupFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue | RadarUserFieldValue;
|
|
135553
135889
|
export declare type RadarFieldValueIdPair = {
|
|
135554
135890
|
__typename?: 'RadarFieldValueIdPair';
|
|
135555
135891
|
fieldId: Scalars['ID']['output'];
|
|
@@ -135923,6 +136259,12 @@ export declare enum RadarUserFieldPermission {
|
|
|
135923
136259
|
PartialOnSelfOrBelowReportingLine = "PartialOnSelfOrBelowReportingLine",
|
|
135924
136260
|
PartialOnlySelf = "PartialOnlySelf"
|
|
135925
136261
|
}
|
|
136262
|
+
export declare type RadarUserFieldValue = {
|
|
136263
|
+
__typename?: 'RadarUserFieldValue';
|
|
136264
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
136265
|
+
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
136266
|
+
value?: Maybe<User>;
|
|
136267
|
+
};
|
|
135926
136268
|
export declare type RadarView = Node & {
|
|
135927
136269
|
__typename?: 'RadarView';
|
|
135928
136270
|
creator?: Maybe<User>;
|
|
@@ -158102,6 +158444,7 @@ export declare type SmartFeaturesUserResultResponse = SmartFeaturesResultRespons
|
|
|
158102
158444
|
result?: Maybe<Array<Maybe<SmartFeaturesUserResult>>>;
|
|
158103
158445
|
};
|
|
158104
158446
|
export declare type SmartLink = {
|
|
158447
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
158105
158448
|
url: Scalars['String']['output'];
|
|
158106
158449
|
};
|
|
158107
158450
|
export declare type SmartLinkEdge = {
|
|
@@ -160638,6 +160981,11 @@ export declare type StakeholderCommsPageInfo = {
|
|
|
160638
160981
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
160639
160982
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
160640
160983
|
};
|
|
160984
|
+
export declare type StakeholderCommsPageRecoverResponse = {
|
|
160985
|
+
__typename?: 'StakeholderCommsPageRecoverResponse';
|
|
160986
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
160987
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
160988
|
+
};
|
|
160641
160989
|
export declare type StakeholderCommsPageResponse = {
|
|
160642
160990
|
__typename?: 'StakeholderCommsPageResponse';
|
|
160643
160991
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -161462,6 +161810,12 @@ export declare type SubscriptionLiveChat_UpdatesArgs = {
|
|
|
161462
161810
|
export declare type SubscriptionStakeholderComms_OpsgenieRiskAssesmentOnUpdateArgs = {
|
|
161463
161811
|
changeRequestId: Scalars['ID']['input'];
|
|
161464
161812
|
};
|
|
161813
|
+
export declare type SuggestedIdea = {
|
|
161814
|
+
__typename?: 'SuggestedIdea';
|
|
161815
|
+
description: Scalars['String']['output'];
|
|
161816
|
+
sourceReference: Scalars['String']['output'];
|
|
161817
|
+
title: Scalars['String']['output'];
|
|
161818
|
+
};
|
|
161465
161819
|
export declare enum SummaryType {
|
|
161466
161820
|
Blogpost = "BLOGPOST",
|
|
161467
161821
|
Page = "PAGE"
|
|
@@ -162074,9 +162428,13 @@ export declare type TeamCustomFieldInfo = {
|
|
|
162074
162428
|
description?: Maybe<Scalars['String']['output']>;
|
|
162075
162429
|
id: Scalars['ID']['output'];
|
|
162076
162430
|
name: Scalars['String']['output'];
|
|
162077
|
-
options?: Maybe<Array<Scalars['String']['output']>>;
|
|
162078
162431
|
type: TeamCustomFieldType;
|
|
162079
162432
|
};
|
|
162433
|
+
export declare type TeamCustomFieldOption = {
|
|
162434
|
+
__typename?: 'TeamCustomFieldOption';
|
|
162435
|
+
id: Scalars['ID']['output'];
|
|
162436
|
+
value: Scalars['String']['output'];
|
|
162437
|
+
};
|
|
162080
162438
|
export declare enum TeamCustomFieldType {
|
|
162081
162439
|
Number = "NUMBER",
|
|
162082
162440
|
Selector = "SELECTOR",
|
|
@@ -162094,6 +162452,15 @@ export declare type TeamDeleteTeamInput = {
|
|
|
162094
162452
|
scopeId: Scalars['ID']['input'];
|
|
162095
162453
|
teamId: Scalars['ID']['input'];
|
|
162096
162454
|
};
|
|
162455
|
+
export declare type TeamDetailedCustomFieldInfo = {
|
|
162456
|
+
__typename?: 'TeamDetailedCustomFieldInfo';
|
|
162457
|
+
cardinality: TeamCustomFieldCardinality;
|
|
162458
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
162459
|
+
id: Scalars['ID']['output'];
|
|
162460
|
+
name: Scalars['String']['output'];
|
|
162461
|
+
options?: Maybe<Array<TeamCustomFieldOption>>;
|
|
162462
|
+
type: TeamCustomFieldType;
|
|
162463
|
+
};
|
|
162097
162464
|
export declare type TeamHierarchy = {
|
|
162098
162465
|
__typename?: 'TeamHierarchy';
|
|
162099
162466
|
ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
|
|
@@ -162174,7 +162541,7 @@ export declare type TeamMutation = {
|
|
|
162174
162541
|
addParent?: Maybe<TeamV2>;
|
|
162175
162542
|
assignTeamToType?: Maybe<TeamV2>;
|
|
162176
162543
|
bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
|
|
162177
|
-
createCustomField?: Maybe<
|
|
162544
|
+
createCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
162178
162545
|
createTeam?: Maybe<TeamCreatePayload>;
|
|
162179
162546
|
createTeamType?: Maybe<TeamType>;
|
|
162180
162547
|
deleteCustomField?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -162291,6 +162658,7 @@ export declare type TeamPrincipalEdge = {
|
|
|
162291
162658
|
};
|
|
162292
162659
|
export declare type TeamQuery = {
|
|
162293
162660
|
__typename?: 'TeamQuery';
|
|
162661
|
+
customField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
162294
162662
|
customFieldsWithinScope?: Maybe<Array<TeamCustomFieldInfo>>;
|
|
162295
162663
|
notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
|
|
162296
162664
|
roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
|
|
@@ -162303,6 +162671,9 @@ export declare type TeamQuery = {
|
|
|
162303
162671
|
typeInformation?: Maybe<TeamType>;
|
|
162304
162672
|
typesWithinScope?: Maybe<TeamTypeConnection>;
|
|
162305
162673
|
};
|
|
162674
|
+
export declare type TeamQueryCustomFieldArgs = {
|
|
162675
|
+
id: Scalars['ID']['input'];
|
|
162676
|
+
};
|
|
162306
162677
|
export declare type TeamQueryCustomFieldsWithinScopeArgs = {
|
|
162307
162678
|
scopeId: Scalars['ID']['input'];
|
|
162308
162679
|
};
|
|
@@ -168271,6 +168642,7 @@ export declare type TrelloInboxQuickCaptureCard = {
|
|
|
168271
168642
|
card?: Maybe<TrelloCard>;
|
|
168272
168643
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
168273
168644
|
member?: Maybe<TrelloMember>;
|
|
168645
|
+
notificationId?: Maybe<Scalars['ID']['output']>;
|
|
168274
168646
|
source?: Maybe<TrelloCardExternalSource>;
|
|
168275
168647
|
};
|
|
168276
168648
|
export declare type TrelloInboxUpdated = TrelloBaseBoardUpdated & {
|
|
@@ -169170,7 +169542,9 @@ export declare type TrelloPlannerCalendarAccountEdgeUpdated = {
|
|
|
169170
169542
|
export declare type TrelloPlannerCalendarAccountUpdated = {
|
|
169171
169543
|
__typename?: 'TrelloPlannerCalendarAccountUpdated';
|
|
169172
169544
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnectionUpdated>;
|
|
169545
|
+
hasRequiredScopes?: Maybe<Scalars['Boolean']['output']>;
|
|
169173
169546
|
id: Scalars['ID']['output'];
|
|
169547
|
+
isExpired?: Maybe<Scalars['Boolean']['output']>;
|
|
169174
169548
|
onPlannerCalendarDeleted?: Maybe<Array<TrelloPlannerCalendarDeleted>>;
|
|
169175
169549
|
onProviderCalendarDeleted?: Maybe<Array<TrelloProviderCalendarDeleted>>;
|
|
169176
169550
|
providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnectionUpdated>;
|
|
@@ -169848,7 +170222,7 @@ export declare type TrelloQuickCaptureNotification = {
|
|
|
169848
170222
|
};
|
|
169849
170223
|
export declare type TrelloQuickCaptureNotificationCleared = {
|
|
169850
170224
|
__typename?: 'TrelloQuickCaptureNotificationCleared';
|
|
169851
|
-
id
|
|
170225
|
+
id: Scalars['ID']['output'];
|
|
169852
170226
|
};
|
|
169853
170227
|
export declare type TrelloReaction = {
|
|
169854
170228
|
__typename?: 'TrelloReaction';
|