@forge/cli-shared 9.4.0-next.6 → 9.4.0-next.6-experimental-ccd5143
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 +17 -0
- package/out/graphql/graphql-types.d.ts +687 -35
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +104 -51
- package/package.json +2 -2
|
@@ -4149,6 +4149,7 @@ export type AdminAuditLogEventExportInput = {
|
|
|
4149
4149
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
4150
4150
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
4151
4151
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
4152
|
+
queryId?: InputMaybe<Scalars['ID']['input']>;
|
|
4152
4153
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
4153
4154
|
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
4154
4155
|
};
|
|
@@ -5905,6 +5906,7 @@ export type AgentSession = AgentSessionNode & {
|
|
|
5905
5906
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
5906
5907
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5907
5908
|
isRovo?: Maybe<Scalars['Boolean']['output']>;
|
|
5909
|
+
jcaSessionAri?: Maybe<Scalars['ID']['output']>;
|
|
5908
5910
|
lastStateChangeAt?: Maybe<Scalars['Long']['output']>;
|
|
5909
5911
|
state?: Maybe<Scalars['String']['output']>;
|
|
5910
5912
|
version?: Maybe<Scalars['Long']['output']>;
|
|
@@ -5923,6 +5925,7 @@ export type AgentSessionAssociation = AgentSessionAssociationNode & {
|
|
|
5923
5925
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
5924
5926
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5925
5927
|
invocationType?: Maybe<Scalars['String']['output']>;
|
|
5928
|
+
jcaSession?: Maybe<DevAiRovoDevSession>;
|
|
5926
5929
|
startTime?: Maybe<Scalars['Long']['output']>;
|
|
5927
5930
|
subEntityId?: Maybe<Scalars['String']['output']>;
|
|
5928
5931
|
triggeredBy?: Maybe<User>;
|
|
@@ -6133,6 +6136,7 @@ export type AgentStudioAgentTemplate = {
|
|
|
6133
6136
|
__typename?: 'AgentStudioAgentTemplate';
|
|
6134
6137
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
6135
6138
|
category?: Maybe<Scalars['String']['output']>;
|
|
6139
|
+
collection?: Maybe<AgentStudioAgentTemplateCollection>;
|
|
6136
6140
|
conversationStarters?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6137
6141
|
description?: Maybe<Scalars['String']['output']>;
|
|
6138
6142
|
howItWorks?: Maybe<Array<Maybe<AgentStudioAgentTemplateHowItWorksStep>>>;
|
|
@@ -6140,7 +6144,15 @@ export type AgentStudioAgentTemplate = {
|
|
|
6140
6144
|
name?: Maybe<Scalars['String']['output']>;
|
|
6141
6145
|
products?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6142
6146
|
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6147
|
+
usageCount?: Maybe<Scalars['Int']['output']>;
|
|
6143
6148
|
};
|
|
6149
|
+
export declare enum AgentStudioAgentTemplateCollection {
|
|
6150
|
+
Product = "PRODUCT",
|
|
6151
|
+
Service = "SERVICE",
|
|
6152
|
+
Software = "SOFTWARE",
|
|
6153
|
+
Strategy = "STRATEGY",
|
|
6154
|
+
Teamwork = "TEAMWORK"
|
|
6155
|
+
}
|
|
6144
6156
|
export declare enum AgentStudioAgentTemplateHowItWorksRole {
|
|
6145
6157
|
Action = "ACTION",
|
|
6146
6158
|
Knowledge = "KNOWLEDGE",
|
|
@@ -6337,6 +6349,7 @@ export type AgentStudioAssistantScenario = AgentStudioBaseConfiguration & AgentS
|
|
|
6337
6349
|
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
6338
6350
|
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
6339
6351
|
name: Scalars['String']['output'];
|
|
6352
|
+
scenarioId?: Maybe<Scalars['ID']['output']>;
|
|
6340
6353
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
6341
6354
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
6342
6355
|
};
|
|
@@ -7156,6 +7169,7 @@ export type AgentStudioScenario = {
|
|
|
7156
7169
|
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
7157
7170
|
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
7158
7171
|
name: Scalars['String']['output'];
|
|
7172
|
+
scenarioId?: Maybe<Scalars['ID']['output']>;
|
|
7159
7173
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
7160
7174
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
7161
7175
|
};
|
|
@@ -8245,6 +8259,15 @@ export type AgentWorkspaceCreateDraftedRoutingTableEntriesV2Input = {
|
|
|
8245
8259
|
projectKey: Scalars['String']['input'];
|
|
8246
8260
|
serviceFieldType: AgentWorkspaceSmartRoutingServiceFieldType;
|
|
8247
8261
|
};
|
|
8262
|
+
export type AgentWorkspaceCreateDraftedTeamRoutingTableEntriesInput = {
|
|
8263
|
+
cloudId: Scalars['ID']['input'];
|
|
8264
|
+
projectKey: Scalars['String']['input'];
|
|
8265
|
+
};
|
|
8266
|
+
export type AgentWorkspaceCreateDraftedTeamRoutingTableEntriesPayload = {
|
|
8267
|
+
__typename?: 'AgentWorkspaceCreateDraftedTeamRoutingTableEntriesPayload';
|
|
8268
|
+
entries: Array<AgentWorkspaceDraftedTeamRoutingTableEntry>;
|
|
8269
|
+
rowsInserted: Scalars['Int']['output'];
|
|
8270
|
+
};
|
|
8248
8271
|
export type AgentWorkspaceCreateScheduleInput = {
|
|
8249
8272
|
agentIds: Array<Scalars['ID']['input']>;
|
|
8250
8273
|
cloudId: Scalars['ID']['input'];
|
|
@@ -8376,6 +8399,7 @@ export type AgentWorkspaceDraftedTeamRoutingTableEntry = {
|
|
|
8376
8399
|
lastModifiedAt: Scalars['String']['output'];
|
|
8377
8400
|
lastModifiedBy: Scalars['ID']['output'];
|
|
8378
8401
|
source: AgentWorkspaceDraftedRoutingTableEntrySource;
|
|
8402
|
+
team?: Maybe<TeamV2>;
|
|
8379
8403
|
teamAri: Scalars['ID']['output'];
|
|
8380
8404
|
};
|
|
8381
8405
|
export declare enum AgentWorkspaceEditBoundReason {
|
|
@@ -8964,6 +8988,10 @@ export type AgentWorkspaceSetTeamCapacitiesPayload = {
|
|
|
8964
8988
|
success: Scalars['Boolean']['output'];
|
|
8965
8989
|
teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
8966
8990
|
};
|
|
8991
|
+
export type AgentWorkspaceSetWorkforceTeamAccessLevelsPayload = {
|
|
8992
|
+
__typename?: 'AgentWorkspaceSetWorkforceTeamAccessLevelsPayload';
|
|
8993
|
+
accessLevels: Array<AgentWorkspaceWorkforceTeamAccessLevelResult>;
|
|
8994
|
+
};
|
|
8967
8995
|
export type AgentWorkspaceSetWorkloadJqlInput = {
|
|
8968
8996
|
jql: Scalars['String']['input'];
|
|
8969
8997
|
projectAri: Scalars['ID']['input'];
|
|
@@ -9206,6 +9234,7 @@ export type AgentWorkspaceSkillUpdatePayload = {
|
|
|
9206
9234
|
export type AgentWorkspaceSmartRoutingConfig = {
|
|
9207
9235
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
9208
9236
|
autoTeamAssignmentEnabled: Scalars['Boolean']['output'];
|
|
9237
|
+
defaultTeam?: Maybe<Scalars['ID']['output']>;
|
|
9209
9238
|
enabled: Scalars['Boolean']['output'];
|
|
9210
9239
|
inputs: Array<AgentWorkspaceConfigurableRoutingInputSetting>;
|
|
9211
9240
|
routingMode?: Maybe<AgentWorkspaceSmartRoutingMode>;
|
|
@@ -9390,6 +9419,14 @@ export type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
|
|
|
9390
9419
|
rowsWritten: Scalars['Int']['output'];
|
|
9391
9420
|
teamsNewlyConnected: Scalars['Int']['output'];
|
|
9392
9421
|
};
|
|
9422
|
+
export type AgentWorkspaceSubmitDraftedTeamRoutingTableInput = {
|
|
9423
|
+
cloudId: Scalars['ID']['input'];
|
|
9424
|
+
projectKey: Scalars['String']['input'];
|
|
9425
|
+
};
|
|
9426
|
+
export type AgentWorkspaceSubmitDraftedTeamRoutingTablePayload = {
|
|
9427
|
+
__typename?: 'AgentWorkspaceSubmitDraftedTeamRoutingTablePayload';
|
|
9428
|
+
rowsWritten: Scalars['Int']['output'];
|
|
9429
|
+
};
|
|
9393
9430
|
export type AgentWorkspaceTeam = {
|
|
9394
9431
|
__typename?: 'AgentWorkspaceTeam';
|
|
9395
9432
|
team?: Maybe<TeamV2>;
|
|
@@ -9457,8 +9494,8 @@ export type AgentWorkspaceTeamRoutingTableEntries = {
|
|
|
9457
9494
|
export type AgentWorkspaceTeamRoutingTableEntry = {
|
|
9458
9495
|
__typename?: 'AgentWorkspaceTeamRoutingTableEntry';
|
|
9459
9496
|
description: Scalars['String']['output'];
|
|
9497
|
+
team?: Maybe<TeamV2>;
|
|
9460
9498
|
teamAri: Scalars['ID']['output'];
|
|
9461
|
-
teamName?: Maybe<Scalars['String']['output']>;
|
|
9462
9499
|
};
|
|
9463
9500
|
export type AgentWorkspaceTeamSchedules = {
|
|
9464
9501
|
__typename?: 'AgentWorkspaceTeamSchedules';
|
|
@@ -9552,6 +9589,7 @@ export type AgentWorkspaceUpdateConfigurableRoutingTriggersInput = {
|
|
|
9552
9589
|
export type AgentWorkspaceUpdateRoutingConfigInput = {
|
|
9553
9590
|
autoTeamAssignmentEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9554
9591
|
cloudId: Scalars['ID']['input'];
|
|
9592
|
+
defaultTeam?: InputMaybe<Scalars['ID']['input']>;
|
|
9555
9593
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9556
9594
|
projectKey: Scalars['String']['input'];
|
|
9557
9595
|
routingMode?: InputMaybe<AgentWorkspaceSmartRoutingMode>;
|
|
@@ -9631,17 +9669,6 @@ export type AgentWorkspaceUpsertDraftedTeamRoutingTableEntryPayload = {
|
|
|
9631
9669
|
__typename?: 'AgentWorkspaceUpsertDraftedTeamRoutingTableEntryPayload';
|
|
9632
9670
|
entry: AgentWorkspaceDraftedTeamRoutingTableEntry;
|
|
9633
9671
|
};
|
|
9634
|
-
export type AgentWorkspaceUpsertTeamRoutingTableEntryInput = {
|
|
9635
|
-
cloudId: Scalars['ID']['input'];
|
|
9636
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
9637
|
-
projectKey: Scalars['String']['input'];
|
|
9638
|
-
teamAri: Scalars['ID']['input'];
|
|
9639
|
-
teamName?: InputMaybe<Scalars['String']['input']>;
|
|
9640
|
-
};
|
|
9641
|
-
export type AgentWorkspaceUpsertTeamRoutingTableEntryPayload = {
|
|
9642
|
-
__typename?: 'AgentWorkspaceUpsertTeamRoutingTableEntryPayload';
|
|
9643
|
-
entry: AgentWorkspaceTeamRoutingTableEntry;
|
|
9644
|
-
};
|
|
9645
9672
|
export type AgentWorkspaceUser = {
|
|
9646
9673
|
__typename?: 'AgentWorkspaceUser';
|
|
9647
9674
|
accountId: Scalars['ID']['output'];
|
|
@@ -9686,6 +9713,23 @@ export type AgentWorkspaceWfoSummaryViewResult = {
|
|
|
9686
9713
|
errors?: Maybe<Array<QueryError>>;
|
|
9687
9714
|
summaryView?: Maybe<AgentWorkspaceWfoSummaryView>;
|
|
9688
9715
|
};
|
|
9716
|
+
export declare enum AgentWorkspaceWorkforceTeamAccessLevel {
|
|
9717
|
+
TeamAdmin = "TEAM_ADMIN",
|
|
9718
|
+
TeamMember = "TEAM_MEMBER"
|
|
9719
|
+
}
|
|
9720
|
+
export type AgentWorkspaceWorkforceTeamAccessLevelResult = {
|
|
9721
|
+
__typename?: 'AgentWorkspaceWorkforceTeamAccessLevelResult';
|
|
9722
|
+
accessLevel: AgentWorkspaceWorkforceTeamAccessLevel;
|
|
9723
|
+
accountId: Scalars['ID']['output'];
|
|
9724
|
+
projectARI: Scalars['ID']['output'];
|
|
9725
|
+
teamARI: Scalars['ID']['output'];
|
|
9726
|
+
};
|
|
9727
|
+
export type AgentWorkspaceWorkforceTeamAccessLevelUpdateInput = {
|
|
9728
|
+
accessLevel: AgentWorkspaceWorkforceTeamAccessLevel;
|
|
9729
|
+
accountId: Scalars['ID']['input'];
|
|
9730
|
+
projectARI: Scalars['ID']['input'];
|
|
9731
|
+
teamARI: Scalars['ID']['input'];
|
|
9732
|
+
};
|
|
9689
9733
|
export type AgentWorkspaceWorkloadJqlConfig = {
|
|
9690
9734
|
__typename?: 'AgentWorkspaceWorkloadJqlConfig';
|
|
9691
9735
|
jql: Scalars['String']['output'];
|
|
@@ -10145,7 +10189,8 @@ export declare enum AiManagedObjectStatus {
|
|
|
10145
10189
|
Suspended = "SUSPENDED"
|
|
10146
10190
|
}
|
|
10147
10191
|
export declare enum AiManagedObjectType {
|
|
10148
|
-
Block = "BLOCK"
|
|
10192
|
+
Block = "BLOCK",
|
|
10193
|
+
Page = "PAGE"
|
|
10149
10194
|
}
|
|
10150
10195
|
export type AiManagedObjectUpdateInput = {
|
|
10151
10196
|
config: AiManagedObjectConfigCreateInput;
|
|
@@ -11158,28 +11203,38 @@ export type AppLogsWithMetaData = {
|
|
|
11158
11203
|
__typename?: 'AppLogsWithMetaData';
|
|
11159
11204
|
appId: Scalars['String']['output'];
|
|
11160
11205
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
11206
|
+
browserName?: Maybe<Scalars['String']['output']>;
|
|
11207
|
+
browserVersion?: Maybe<Scalars['String']['output']>;
|
|
11161
11208
|
cloudwatchId?: Maybe<Scalars['String']['output']>;
|
|
11162
11209
|
container?: Maybe<Scalars['String']['output']>;
|
|
11163
11210
|
context?: Maybe<Context>;
|
|
11164
11211
|
edition?: Maybe<EditionValue>;
|
|
11165
11212
|
environmentId: Scalars['String']['output'];
|
|
11166
11213
|
error?: Maybe<Scalars['String']['output']>;
|
|
11214
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
11215
|
+
extensionId?: Maybe<Scalars['String']['output']>;
|
|
11216
|
+
extensionType?: Maybe<Scalars['String']['output']>;
|
|
11167
11217
|
functionKey?: Maybe<Scalars['String']['output']>;
|
|
11168
11218
|
installationContext?: Maybe<Scalars['String']['output']>;
|
|
11219
|
+
installationId?: Maybe<Scalars['String']['output']>;
|
|
11169
11220
|
instance?: Maybe<Scalars['String']['output']>;
|
|
11170
11221
|
invocationId: Scalars['String']['output'];
|
|
11171
11222
|
licenseState?: Maybe<LicenseValue>;
|
|
11223
|
+
logSource?: Maybe<FrontendLogSource>;
|
|
11172
11224
|
lvl?: Maybe<Scalars['String']['output']>;
|
|
11173
11225
|
message?: Maybe<Scalars['String']['output']>;
|
|
11174
11226
|
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
11175
11227
|
moduleType?: Maybe<Scalars['String']['output']>;
|
|
11228
|
+
osName?: Maybe<Scalars['String']['output']>;
|
|
11176
11229
|
other?: Maybe<Scalars['String']['output']>;
|
|
11177
11230
|
p?: Maybe<Scalars['String']['output']>;
|
|
11178
11231
|
product?: Maybe<Scalars['String']['output']>;
|
|
11232
|
+
renderType?: Maybe<Scalars['String']['output']>;
|
|
11179
11233
|
service?: Maybe<Scalars['String']['output']>;
|
|
11180
11234
|
tenantContexts?: Maybe<DevConsoleTenantContext>;
|
|
11181
11235
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
11182
11236
|
ts: Scalars['String']['output'];
|
|
11237
|
+
userAgent?: Maybe<Scalars['String']['output']>;
|
|
11183
11238
|
};
|
|
11184
11239
|
export type AppLogsWithMetaDataResponse = {
|
|
11185
11240
|
__typename?: 'AppLogsWithMetaDataResponse';
|
|
@@ -12418,6 +12473,16 @@ export type AssetsDmBigfixDefaultQueryResponse = {
|
|
|
12418
12473
|
isSuccessful: Scalars['Boolean']['output'];
|
|
12419
12474
|
query: Scalars['String']['output'];
|
|
12420
12475
|
};
|
|
12476
|
+
export type AssetsDmCancelCleanseResponse = {
|
|
12477
|
+
__typename?: 'AssetsDMCancelCleanseResponse';
|
|
12478
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
12479
|
+
message: Scalars['String']['output'];
|
|
12480
|
+
};
|
|
12481
|
+
export type AssetsDmCancelImportResponse = {
|
|
12482
|
+
__typename?: 'AssetsDMCancelImportResponse';
|
|
12483
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
12484
|
+
message: Scalars['String']['output'];
|
|
12485
|
+
};
|
|
12421
12486
|
export type AssetsDmChangeDataSourceStatusInput = {
|
|
12422
12487
|
dataSourceId: Scalars['ID']['input'];
|
|
12423
12488
|
status: AssetsDmDataSourceStatus;
|
|
@@ -12651,6 +12716,7 @@ export type AssetsDmDataDictionaryRow = {
|
|
|
12651
12716
|
destinationObjectAttributeId: Scalars['ID']['output'];
|
|
12652
12717
|
dmComputeDictionaryDate: Scalars['String']['output'];
|
|
12653
12718
|
dmComputeDictionaryId?: Maybe<Scalars['ID']['output']>;
|
|
12719
|
+
isSyncRequired: Scalars['Boolean']['output'];
|
|
12654
12720
|
latestDictionaryUpdateDate?: Maybe<Scalars['String']['output']>;
|
|
12655
12721
|
name: Scalars['String']['output'];
|
|
12656
12722
|
objectId: Scalars['ID']['output'];
|
|
@@ -14528,6 +14594,11 @@ export declare enum AssetsDmStepStatus {
|
|
|
14528
14594
|
NotStarted = "NOT_STARTED",
|
|
14529
14595
|
Outdated = "OUTDATED"
|
|
14530
14596
|
}
|
|
14597
|
+
export type AssetsDmSyncDataDictionaryResponse = {
|
|
14598
|
+
__typename?: 'AssetsDMSyncDataDictionaryResponse';
|
|
14599
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
14600
|
+
message: Scalars['String']['output'];
|
|
14601
|
+
};
|
|
14531
14602
|
export type AssetsDmTagMember = {
|
|
14532
14603
|
__typename?: 'AssetsDMTagMember';
|
|
14533
14604
|
comment?: Maybe<Scalars['String']['output']>;
|
|
@@ -14960,6 +15031,29 @@ export type AssetsObjectTypeAttributeValue = {
|
|
|
14960
15031
|
searchValue?: Maybe<Scalars['String']['output']>;
|
|
14961
15032
|
value?: Maybe<AssetsAttributeValue>;
|
|
14962
15033
|
};
|
|
15034
|
+
export type AssetsPeopleAttribute = AssetsObjectTypeAttribute & {
|
|
15035
|
+
__typename?: 'AssetsPeopleAttribute';
|
|
15036
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
15037
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
15038
|
+
id: Scalars['ID']['output'];
|
|
15039
|
+
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
15040
|
+
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
15041
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15042
|
+
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
15043
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
15044
|
+
};
|
|
15045
|
+
export type AssetsPeopleAttributeOnObject = AssetsAttributeOnObject & {
|
|
15046
|
+
__typename?: 'AssetsPeopleAttributeOnObject';
|
|
15047
|
+
attribute?: Maybe<AssetsPeopleAttribute>;
|
|
15048
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
15049
|
+
id: Scalars['ID']['output'];
|
|
15050
|
+
identityGroups?: Maybe<Array<AssetsIdentityGroup>>;
|
|
15051
|
+
name: Scalars['String']['output'];
|
|
15052
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
15053
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
15054
|
+
value?: Maybe<Array<AssetsPeopleAttributeValue>>;
|
|
15055
|
+
};
|
|
15056
|
+
export type AssetsPeopleAttributeValue = AppUser | AtlassianAccountUser | CustomerUser | IdentityGroup | TeamV2;
|
|
14963
15057
|
export type AssetsPrimitiveAttributeValue = {
|
|
14964
15058
|
__typename?: 'AssetsPrimitiveAttributeValue';
|
|
14965
15059
|
value: Scalars['String']['output'];
|
|
@@ -15149,6 +15243,7 @@ export type AssetsTextAttribute = AssetsObjectTypeAttribute & {
|
|
|
15149
15243
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
15150
15244
|
id: Scalars['ID']['output'];
|
|
15151
15245
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
15246
|
+
isLabel?: Maybe<Scalars['Boolean']['output']>;
|
|
15152
15247
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
15153
15248
|
name?: Maybe<Scalars['String']['output']>;
|
|
15154
15249
|
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -15970,6 +16065,13 @@ export type AssetsVerticalItemMappingQueryErrorExtension = QueryErrorExtension &
|
|
|
15970
16065
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
15971
16066
|
};
|
|
15972
16067
|
export type AssetsVerticalItemMappingResult = AssetsVerticalItemMapping | QueryError;
|
|
16068
|
+
export declare enum AssetsVerticalItemMappingSortField {
|
|
16069
|
+
RequestTypeName = "REQUEST_TYPE_NAME"
|
|
16070
|
+
}
|
|
16071
|
+
export type AssetsVerticalItemMappingSortInput = {
|
|
16072
|
+
direction?: SortDirection;
|
|
16073
|
+
field: AssetsVerticalItemMappingSortField;
|
|
16074
|
+
};
|
|
15973
16075
|
export type AssetsVerticalItemMappingsPayload = Payload & {
|
|
15974
16076
|
__typename?: 'AssetsVerticalItemMappingsPayload';
|
|
15975
16077
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -16281,6 +16383,7 @@ export type AssetsVerticalStockroomObjectsResult = AssetsVerticalStockroomObject
|
|
|
16281
16383
|
export type AssetsVerticalTenantContext = {
|
|
16282
16384
|
__typename?: 'AssetsVerticalTenantContext';
|
|
16283
16385
|
assetsVerticalWorkspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
16386
|
+
isHipaaEnabled: Scalars['Boolean']['output'];
|
|
16284
16387
|
};
|
|
16285
16388
|
export declare enum AssetsVerticalTenantContextQueryErrorCode {
|
|
16286
16389
|
NotFound = "NOT_FOUND",
|
|
@@ -16393,6 +16496,8 @@ export type AssetsVerticalVerticalInstantiationCategoryItemsArgs = {
|
|
|
16393
16496
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16394
16497
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16395
16498
|
itemType?: InputMaybe<AssetsVerticalItemType>;
|
|
16499
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
16500
|
+
sort?: InputMaybe<AssetsVerticalItemMappingSortInput>;
|
|
16396
16501
|
spaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
16397
16502
|
};
|
|
16398
16503
|
export type AssetsVerticalVerticalInstantiationCategoryConnection = {
|
|
@@ -23327,6 +23432,7 @@ export type CommerceExpEntitlementKind = {
|
|
|
23327
23432
|
isMultiInstance?: Maybe<Scalars['Boolean']['output']>;
|
|
23328
23433
|
isMultiInstanceChild?: Maybe<Scalars['Boolean']['output']>;
|
|
23329
23434
|
isPlatformApp?: Maybe<Scalars['Boolean']['output']>;
|
|
23435
|
+
supportsMarketplaceApps?: Maybe<Scalars['Boolean']['output']>;
|
|
23330
23436
|
};
|
|
23331
23437
|
export declare enum CommerceExpEntitlementLevel {
|
|
23332
23438
|
BitbucketWorkspace = "BitbucketWorkspace",
|
|
@@ -33665,6 +33771,21 @@ export type ConfluenceLikesSummary = {
|
|
|
33665
33771
|
count?: Maybe<Scalars['Int']['output']>;
|
|
33666
33772
|
likes?: Maybe<Array<Maybe<ConfluenceLike>>>;
|
|
33667
33773
|
};
|
|
33774
|
+
export type ConfluenceListLabelsEntry = {
|
|
33775
|
+
__typename?: 'ConfluenceListLabelsEntry';
|
|
33776
|
+
name: Scalars['String']['output'];
|
|
33777
|
+
};
|
|
33778
|
+
export type ConfluenceListLabelsEntryConnection = {
|
|
33779
|
+
__typename?: 'ConfluenceListLabelsEntryConnection';
|
|
33780
|
+
edges?: Maybe<Array<Maybe<ConfluenceListLabelsEntryEdge>>>;
|
|
33781
|
+
nodes?: Maybe<Array<Maybe<ConfluenceListLabelsEntry>>>;
|
|
33782
|
+
pageInfo: ConfluencePageInfo;
|
|
33783
|
+
};
|
|
33784
|
+
export type ConfluenceListLabelsEntryEdge = {
|
|
33785
|
+
__typename?: 'ConfluenceListLabelsEntryEdge';
|
|
33786
|
+
cursor: Scalars['String']['output'];
|
|
33787
|
+
node?: Maybe<ConfluenceListLabelsEntry>;
|
|
33788
|
+
};
|
|
33668
33789
|
export declare enum ConfluenceLoadTimeRating {
|
|
33669
33790
|
Fast = "FAST",
|
|
33670
33791
|
Moderate = "MODERATE",
|
|
@@ -36047,6 +36168,19 @@ export type ConfluenceResolveInlineCommentPayload = {
|
|
|
36047
36168
|
errors?: Maybe<Array<MutationError>>;
|
|
36048
36169
|
success: Scalars['Boolean']['output'];
|
|
36049
36170
|
};
|
|
36171
|
+
export type ConfluenceResolveSpaceAccessRequestInput = {
|
|
36172
|
+
decision: ConfluenceSpaceAccessRequestDecision;
|
|
36173
|
+
requestId: Scalars['ID']['input'];
|
|
36174
|
+
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
36175
|
+
};
|
|
36176
|
+
export type ConfluenceResolveSpaceAccessRequestPayload = Payload & {
|
|
36177
|
+
__typename?: 'ConfluenceResolveSpaceAccessRequestPayload';
|
|
36178
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36179
|
+
spaceAccessRequest?: Maybe<ConfluenceSpaceAccessRequest>;
|
|
36180
|
+
success: Scalars['Boolean']['output'];
|
|
36181
|
+
undoExpiresAt?: Maybe<Scalars['Long']['output']>;
|
|
36182
|
+
undoToken?: Maybe<Scalars['String']['output']>;
|
|
36183
|
+
};
|
|
36050
36184
|
export type ConfluenceResolvedMacroPageLinkParameter = {
|
|
36051
36185
|
__typename?: 'ConfluenceResolvedMacroPageLinkParameter';
|
|
36052
36186
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -36542,6 +36676,39 @@ export type ConfluenceSpace = Node & {
|
|
|
36542
36676
|
type?: Maybe<ConfluenceSpaceType>;
|
|
36543
36677
|
typeSettings?: Maybe<ConfluenceSpaceTypeSettings>;
|
|
36544
36678
|
};
|
|
36679
|
+
export type ConfluenceSpaceAccessRequest = {
|
|
36680
|
+
__typename?: 'ConfluenceSpaceAccessRequest';
|
|
36681
|
+
grantedRoleId?: Maybe<Scalars['ID']['output']>;
|
|
36682
|
+
id: Scalars['ID']['output'];
|
|
36683
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
36684
|
+
requestedAt: Scalars['Long']['output'];
|
|
36685
|
+
requester?: Maybe<ConfluenceUser>;
|
|
36686
|
+
requesterAccountId: Scalars['ID']['output'];
|
|
36687
|
+
resolvedAt?: Maybe<Scalars['Long']['output']>;
|
|
36688
|
+
spaceId: Scalars['ID']['output'];
|
|
36689
|
+
status: ConfluenceSpaceAccessRequestStatus;
|
|
36690
|
+
};
|
|
36691
|
+
export type ConfluenceSpaceAccessRequestConnection = {
|
|
36692
|
+
__typename?: 'ConfluenceSpaceAccessRequestConnection';
|
|
36693
|
+
edges?: Maybe<Array<Maybe<ConfluenceSpaceAccessRequestEdge>>>;
|
|
36694
|
+
nodes: Array<Maybe<ConfluenceSpaceAccessRequest>>;
|
|
36695
|
+
pageInfo: PageInfo;
|
|
36696
|
+
totalCount: Scalars['Int']['output'];
|
|
36697
|
+
};
|
|
36698
|
+
export declare enum ConfluenceSpaceAccessRequestDecision {
|
|
36699
|
+
Approve = "APPROVE",
|
|
36700
|
+
Deny = "DENY"
|
|
36701
|
+
}
|
|
36702
|
+
export type ConfluenceSpaceAccessRequestEdge = {
|
|
36703
|
+
__typename?: 'ConfluenceSpaceAccessRequestEdge';
|
|
36704
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36705
|
+
node: ConfluenceSpaceAccessRequest;
|
|
36706
|
+
};
|
|
36707
|
+
export declare enum ConfluenceSpaceAccessRequestStatus {
|
|
36708
|
+
Approved = "APPROVED",
|
|
36709
|
+
Denied = "DENIED",
|
|
36710
|
+
Pending = "PENDING"
|
|
36711
|
+
}
|
|
36545
36712
|
export type ConfluenceSpaceAnalyticsPermissionConnection = {
|
|
36546
36713
|
__typename?: 'ConfluenceSpaceAnalyticsPermissionConnection';
|
|
36547
36714
|
edges?: Maybe<Array<Maybe<ConfluenceSpaceAnalyticsPermissionEdge>>>;
|
|
@@ -37171,6 +37338,16 @@ export type ConfluenceUnSubscribeCalendarPayload = Payload & {
|
|
|
37171
37338
|
errors?: Maybe<Array<MutationError>>;
|
|
37172
37339
|
success: Scalars['Boolean']['output'];
|
|
37173
37340
|
};
|
|
37341
|
+
export type ConfluenceUndoSpaceAccessRequestDecisionInput = {
|
|
37342
|
+
requestId: Scalars['ID']['input'];
|
|
37343
|
+
undoToken: Scalars['String']['input'];
|
|
37344
|
+
};
|
|
37345
|
+
export type ConfluenceUndoSpaceAccessRequestDecisionPayload = Payload & {
|
|
37346
|
+
__typename?: 'ConfluenceUndoSpaceAccessRequestDecisionPayload';
|
|
37347
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37348
|
+
spaceAccessRequest?: Maybe<ConfluenceSpaceAccessRequest>;
|
|
37349
|
+
success: Scalars['Boolean']['output'];
|
|
37350
|
+
};
|
|
37174
37351
|
export type ConfluenceUnpromoteBlueprintInput = {
|
|
37175
37352
|
id: Scalars['ID']['input'];
|
|
37176
37353
|
spaceId: Scalars['Long']['input'];
|
|
@@ -39983,6 +40160,19 @@ export type CplsContributorConnection = HasPageInfo & {
|
|
|
39983
40160
|
edges?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
39984
40161
|
pageInfo: PageInfo;
|
|
39985
40162
|
};
|
|
40163
|
+
export type CplsContributorContributionAggregations = {
|
|
40164
|
+
__typename?: 'CplsContributorContributionAggregations';
|
|
40165
|
+
contributionAggregations: Array<CplsContributionAggregation>;
|
|
40166
|
+
contributorData?: Maybe<CplsContributorData>;
|
|
40167
|
+
contributorDataId: Scalars['ID']['output'];
|
|
40168
|
+
};
|
|
40169
|
+
export type CplsContributorContributionAggregationsResult = {
|
|
40170
|
+
__typename?: 'CplsContributorContributionAggregationsResult';
|
|
40171
|
+
contributorContributionAggregations?: Maybe<Array<CplsContributorContributionAggregations>>;
|
|
40172
|
+
endDate?: Maybe<Scalars['Date']['output']>;
|
|
40173
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
40174
|
+
timeScale?: Maybe<CplsTimeScaleType>;
|
|
40175
|
+
};
|
|
39986
40176
|
export type CplsContributorData = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39987
40177
|
export type CplsContributorDataEntity = {
|
|
39988
40178
|
__typename?: 'CplsContributorDataEntity';
|
|
@@ -40327,6 +40517,12 @@ export type CplsFiltersInput = {
|
|
|
40327
40517
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
40328
40518
|
workTypes?: InputMaybe<Array<CplsWorkType>>;
|
|
40329
40519
|
};
|
|
40520
|
+
export type CplsGetContributorContributionAggregationsInput = {
|
|
40521
|
+
cloudId: Scalars['ID']['input'];
|
|
40522
|
+
contributionDateRange?: InputMaybe<CplsContributionDateRange>;
|
|
40523
|
+
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
40524
|
+
timeScale?: InputMaybe<CplsTimeScaleType>;
|
|
40525
|
+
};
|
|
40330
40526
|
export type CplsGetContributorScopeAssociationsInput = {
|
|
40331
40527
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40332
40528
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -40476,6 +40672,7 @@ export type CplsTimeCell = {
|
|
|
40476
40672
|
export declare enum CplsTimeScaleType {
|
|
40477
40673
|
Fortnightly = "FORTNIGHTLY",
|
|
40478
40674
|
Monthly = "MONTHLY",
|
|
40675
|
+
Quarterly = "QUARTERLY",
|
|
40479
40676
|
Weekly = "WEEKLY"
|
|
40480
40677
|
}
|
|
40481
40678
|
export type CplsUpdateCustomContributionTargetInput = {
|
|
@@ -53289,6 +53486,11 @@ export type FrontCover = {
|
|
|
53289
53486
|
frontCoverState?: Maybe<Scalars['String']['output']>;
|
|
53290
53487
|
showFrontCover: Scalars['Boolean']['output'];
|
|
53291
53488
|
};
|
|
53489
|
+
export declare enum FrontendLogSource {
|
|
53490
|
+
Console = "CONSOLE",
|
|
53491
|
+
UncaughtException = "UNCAUGHT_EXCEPTION",
|
|
53492
|
+
UnhandledRejection = "UNHANDLED_REJECTION"
|
|
53493
|
+
}
|
|
53292
53494
|
export type FrontendResource = {
|
|
53293
53495
|
__typename?: 'FrontendResource';
|
|
53294
53496
|
attributes: Array<Maybe<MapOfStringToString>>;
|
|
@@ -54593,6 +54795,18 @@ export type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
54593
54795
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
54594
54796
|
node: GraphIncidentLinkedJswIssueRelationship;
|
|
54595
54797
|
};
|
|
54798
|
+
export type GraphInferenceAiInput = {
|
|
54799
|
+
model: GraphInferenceAiModelInput;
|
|
54800
|
+
useCaseId: Scalars['String']['input'];
|
|
54801
|
+
};
|
|
54802
|
+
export type GraphInferenceAiModelInput = {
|
|
54803
|
+
id: Scalars['String']['input'];
|
|
54804
|
+
reasoningLevel: Scalars['String']['input'];
|
|
54805
|
+
};
|
|
54806
|
+
export declare enum GraphInferenceDestinationMode {
|
|
54807
|
+
Graph = "GRAPH",
|
|
54808
|
+
Shadow = "SHADOW"
|
|
54809
|
+
}
|
|
54596
54810
|
export declare enum GraphInferenceEnvironment {
|
|
54597
54811
|
Dev = "DEV",
|
|
54598
54812
|
Production = "PRODUCTION",
|
|
@@ -54668,6 +54882,18 @@ export type GraphInferenceGetSimilarJiraItemsResponse = {
|
|
|
54668
54882
|
meta: GraphInferenceSimilarJiraItemsMeta;
|
|
54669
54883
|
root: GraphInferenceSimilarJiraItemsRoot;
|
|
54670
54884
|
};
|
|
54885
|
+
export type GraphInferenceGraphclawInferOptionV3 = {
|
|
54886
|
+
__typename?: 'GraphInferenceGraphclawInferOptionV3';
|
|
54887
|
+
compatibleTargets: Array<Scalars['String']['output']>;
|
|
54888
|
+
enabled: Scalars['Boolean']['output'];
|
|
54889
|
+
graphAvailable: Scalars['Boolean']['output'];
|
|
54890
|
+
id: Scalars['String']['output'];
|
|
54891
|
+
name: Scalars['String']['output'];
|
|
54892
|
+
resultKind: Scalars['String']['output'];
|
|
54893
|
+
supportedDestinations: Array<Scalars['String']['output']>;
|
|
54894
|
+
targetRequirement: Scalars['String']['output'];
|
|
54895
|
+
targetUsage: Scalars['String']['output'];
|
|
54896
|
+
};
|
|
54671
54897
|
export type GraphInferenceGraphclawMatcherOptionV2 = {
|
|
54672
54898
|
__typename?: 'GraphInferenceGraphclawMatcherOptionV2';
|
|
54673
54899
|
enabled: Scalars['Boolean']['output'];
|
|
@@ -54722,12 +54948,28 @@ export type GraphInferenceInferenceAppAddV2Input = {
|
|
|
54722
54948
|
source: Scalars['String']['input'];
|
|
54723
54949
|
target: Scalars['String']['input'];
|
|
54724
54950
|
};
|
|
54951
|
+
export type GraphInferenceInferenceAppAddV3Input = {
|
|
54952
|
+
ai?: InputMaybe<GraphInferenceAiInput>;
|
|
54953
|
+
createRequestId: Scalars['String']['input'];
|
|
54954
|
+
destination?: InputMaybe<GraphInferenceDestinationMode>;
|
|
54955
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54956
|
+
forTargets: Array<Scalars['String']['input']>;
|
|
54957
|
+
infer: Scalars['String']['input'];
|
|
54958
|
+
matchers: Array<Scalars['String']['input']>;
|
|
54959
|
+
name: Scalars['String']['input'];
|
|
54960
|
+
promptOverride?: InputMaybe<Scalars['String']['input']>;
|
|
54961
|
+
realtime?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54962
|
+
source: Scalars['String']['input'];
|
|
54963
|
+
};
|
|
54725
54964
|
export type GraphInferenceInferenceAppDeleteInput = {
|
|
54726
54965
|
id: Scalars['String']['input'];
|
|
54727
54966
|
};
|
|
54728
54967
|
export type GraphInferenceInferenceAppDeleteV2Input = {
|
|
54729
54968
|
id: Scalars['String']['input'];
|
|
54730
54969
|
};
|
|
54970
|
+
export type GraphInferenceInferenceAppDeleteV3Input = {
|
|
54971
|
+
id: Scalars['String']['input'];
|
|
54972
|
+
};
|
|
54731
54973
|
export type GraphInferenceInferenceAppEditInput = {
|
|
54732
54974
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54733
54975
|
id: Scalars['String']['input'];
|
|
@@ -54748,6 +54990,19 @@ export type GraphInferenceInferenceAppEditV2Input = {
|
|
|
54748
54990
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
54749
54991
|
target?: InputMaybe<Scalars['String']['input']>;
|
|
54750
54992
|
};
|
|
54993
|
+
export type GraphInferenceInferenceAppEditV3Input = {
|
|
54994
|
+
ai?: InputMaybe<GraphInferenceAiInput>;
|
|
54995
|
+
destination?: InputMaybe<GraphInferenceDestinationMode>;
|
|
54996
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54997
|
+
forTargets?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
54998
|
+
id: Scalars['String']['input'];
|
|
54999
|
+
infer?: InputMaybe<Scalars['String']['input']>;
|
|
55000
|
+
matchers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
55001
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
55002
|
+
promptOverride?: InputMaybe<Scalars['String']['input']>;
|
|
55003
|
+
realtime?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55004
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
55005
|
+
};
|
|
54751
55006
|
export type GraphInferenceInferenceAppMutationPayload = {
|
|
54752
55007
|
__typename?: 'GraphInferenceInferenceAppMutationPayload';
|
|
54753
55008
|
app?: Maybe<GraphInferenceInferenceApp>;
|
|
@@ -54760,6 +55015,12 @@ export type GraphInferenceInferenceAppMutationPayloadV2 = {
|
|
|
54760
55015
|
errors: Array<GraphInferenceMutationErrorV2>;
|
|
54761
55016
|
success: Scalars['Boolean']['output'];
|
|
54762
55017
|
};
|
|
55018
|
+
export type GraphInferenceInferenceAppMutationPayloadV3 = {
|
|
55019
|
+
__typename?: 'GraphInferenceInferenceAppMutationPayloadV3';
|
|
55020
|
+
app?: Maybe<GraphInferenceInferenceAppV3>;
|
|
55021
|
+
errors: Array<GraphInferenceMutationErrorV3>;
|
|
55022
|
+
success: Scalars['Boolean']['output'];
|
|
55023
|
+
};
|
|
54763
55024
|
export type GraphInferenceInferenceAppV2 = {
|
|
54764
55025
|
__typename?: 'GraphInferenceInferenceAppV2';
|
|
54765
55026
|
available: Scalars['Boolean']['output'];
|
|
@@ -54774,6 +55035,40 @@ export type GraphInferenceInferenceAppV2 = {
|
|
|
54774
55035
|
source: Scalars['String']['output'];
|
|
54775
55036
|
target: Scalars['String']['output'];
|
|
54776
55037
|
};
|
|
55038
|
+
export type GraphInferenceInferenceAppV3 = {
|
|
55039
|
+
__typename?: 'GraphInferenceInferenceAppV3';
|
|
55040
|
+
aiUseCaseId: Scalars['String']['output'];
|
|
55041
|
+
available: Scalars['Boolean']['output'];
|
|
55042
|
+
destination: Scalars['String']['output'];
|
|
55043
|
+
enabled: Scalars['Boolean']['output'];
|
|
55044
|
+
forTargets: Array<Scalars['String']['output']>;
|
|
55045
|
+
id: Scalars['String']['output'];
|
|
55046
|
+
infer: Scalars['String']['output'];
|
|
55047
|
+
matchers: Array<Scalars['String']['output']>;
|
|
55048
|
+
modelId: Scalars['String']['output'];
|
|
55049
|
+
name: Scalars['String']['output'];
|
|
55050
|
+
owner: Scalars['String']['output'];
|
|
55051
|
+
promptOverride?: Maybe<Scalars['String']['output']>;
|
|
55052
|
+
realtime: Scalars['Boolean']['output'];
|
|
55053
|
+
reasoningLevel: Scalars['String']['output'];
|
|
55054
|
+
source: Scalars['String']['output'];
|
|
55055
|
+
};
|
|
55056
|
+
export type GraphInferenceInferenceModelChoice = {
|
|
55057
|
+
__typename?: 'GraphInferenceInferenceModelChoice';
|
|
55058
|
+
id: Scalars['String']['output'];
|
|
55059
|
+
label: Scalars['String']['output'];
|
|
55060
|
+
};
|
|
55061
|
+
export type GraphInferenceInferenceModelsInput = {
|
|
55062
|
+
infer: Scalars['String']['input'];
|
|
55063
|
+
useCaseId: Scalars['String']['input'];
|
|
55064
|
+
};
|
|
55065
|
+
export type GraphInferenceInferenceModelsResponse = {
|
|
55066
|
+
__typename?: 'GraphInferenceInferenceModelsResponse';
|
|
55067
|
+
infer: Scalars['String']['output'];
|
|
55068
|
+
models: Array<GraphInferenceInferenceModelChoice>;
|
|
55069
|
+
runtimeSelectionSupported: Scalars['Boolean']['output'];
|
|
55070
|
+
useCaseId: Scalars['String']['output'];
|
|
55071
|
+
};
|
|
54777
55072
|
export type GraphInferenceInferenceQualityBucket = {
|
|
54778
55073
|
__typename?: 'GraphInferenceInferenceQualityBucket';
|
|
54779
55074
|
bucketStart?: Maybe<Scalars['String']['output']>;
|
|
@@ -54921,6 +55216,7 @@ export type GraphInferenceJiraEntityContextSourceBucketCounts = {
|
|
|
54921
55216
|
__typename?: 'GraphInferenceJiraEntityContextSourceBucketCounts';
|
|
54922
55217
|
issue: Scalars['Int']['output'];
|
|
54923
55218
|
memory: Scalars['Int']['output'];
|
|
55219
|
+
semantic: Scalars['Int']['output'];
|
|
54924
55220
|
space: Scalars['Int']['output'];
|
|
54925
55221
|
};
|
|
54926
55222
|
export declare enum GraphInferenceMode {
|
|
@@ -54941,6 +55237,14 @@ export type GraphInferenceMutationErrorV2 = {
|
|
|
54941
55237
|
message: Scalars['String']['output'];
|
|
54942
55238
|
reason?: Maybe<Scalars['String']['output']>;
|
|
54943
55239
|
};
|
|
55240
|
+
export type GraphInferenceMutationErrorV3 = {
|
|
55241
|
+
__typename?: 'GraphInferenceMutationErrorV3';
|
|
55242
|
+
capabilityId?: Maybe<Scalars['String']['output']>;
|
|
55243
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
55244
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
55245
|
+
message: Scalars['String']['output'];
|
|
55246
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
55247
|
+
};
|
|
54944
55248
|
export type GraphInferenceRelatedRepoCandidate = {
|
|
54945
55249
|
__typename?: 'GraphInferenceRelatedRepoCandidate';
|
|
54946
55250
|
ari: Scalars['String']['output'];
|
|
@@ -118403,7 +118707,7 @@ export type GravityUpdateDraftContentInput = {
|
|
|
118403
118707
|
origin?: InputMaybe<GravityDraftOrigin>;
|
|
118404
118708
|
};
|
|
118405
118709
|
export type GravityUpsertActionInput = {
|
|
118406
|
-
draftId
|
|
118710
|
+
draftId?: InputMaybe<Scalars['String']['input']>;
|
|
118407
118711
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
118408
118712
|
kind: Scalars['String']['input'];
|
|
118409
118713
|
origin?: InputMaybe<GravityDraftOrigin>;
|
|
@@ -122702,6 +123006,7 @@ export type Installation = {
|
|
|
122702
123006
|
customMetricsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
122703
123007
|
edition?: Maybe<Scalars['String']['output']>;
|
|
122704
123008
|
environment?: Maybe<Scalars['String']['output']>;
|
|
123009
|
+
environmentId?: Maybe<Scalars['String']['output']>;
|
|
122705
123010
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
122706
123011
|
installationId: Scalars['String']['output'];
|
|
122707
123012
|
installedOn?: Maybe<Scalars['String']['output']>;
|
|
@@ -126098,6 +126403,7 @@ export type JiraBoardView = JiraView & Node & {
|
|
|
126098
126403
|
__typename?: 'JiraBoardView';
|
|
126099
126404
|
autoCompleteSprintErrorCount?: Maybe<Scalars['Int']['output']>;
|
|
126100
126405
|
availableTransitionsForIssue?: Maybe<JiraTransitionConnection>;
|
|
126406
|
+
backlogStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
126101
126407
|
board?: Maybe<JiraBoard>;
|
|
126102
126408
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
126103
126409
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -126146,6 +126452,10 @@ export type JiraBoardViewAvailableTransitionsForIssueArgs = {
|
|
|
126146
126452
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126147
126453
|
issueId: Scalars['ID']['input'];
|
|
126148
126454
|
};
|
|
126455
|
+
export type JiraBoardViewBacklogStatusesArgs = {
|
|
126456
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126457
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126458
|
+
};
|
|
126149
126459
|
export type JiraBoardViewCanMoveIssueBetweenSwimlanesArgs = {
|
|
126150
126460
|
issueId: Scalars['ID']['input'];
|
|
126151
126461
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -126161,7 +126471,6 @@ export type JiraBoardViewCardOptionsArgs = {
|
|
|
126161
126471
|
export type JiraBoardViewColumnsArgs = {
|
|
126162
126472
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126163
126473
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126164
|
-
includeConfig?: InputMaybe<Scalars['Boolean']['input']>;
|
|
126165
126474
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
126166
126475
|
};
|
|
126167
126476
|
export type JiraBoardViewCustomFiltersArgs = {
|
|
@@ -126524,7 +126833,6 @@ export type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
126524
126833
|
canInlineRename?: Maybe<Scalars['Boolean']['output']>;
|
|
126525
126834
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
126526
126835
|
id: Scalars['ID']['output'];
|
|
126527
|
-
isBacklog?: Maybe<Scalars['Boolean']['output']>;
|
|
126528
126836
|
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
126529
126837
|
mappedWorkflows?: Maybe<JiraBoardViewWorkflowConnection>;
|
|
126530
126838
|
maximumIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -126862,7 +127170,7 @@ export type JiraBulkMoveStatusMappingInput = {
|
|
|
126862
127170
|
export type JiraBulkOperationInput = {
|
|
126863
127171
|
bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
|
|
126864
127172
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
126865
|
-
bulkMoveInput?: InputMaybe<
|
|
127173
|
+
bulkMoveInput?: InputMaybe<Array<JiraBulkMoveInput>>;
|
|
126866
127174
|
bulkTransitionsInput?: InputMaybe<Array<JiraBulkTransitionsInput>>;
|
|
126867
127175
|
bulkWatchOrUnwatchInput?: InputMaybe<JiraBulkWatchOrUnwatchInput>;
|
|
126868
127176
|
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -128312,6 +128620,26 @@ export type JiraComponentFieldOperationInput = {
|
|
|
128312
128620
|
export type JiraComponentInput = {
|
|
128313
128621
|
componentId: Scalars['ID']['input'];
|
|
128314
128622
|
};
|
|
128623
|
+
export type JiraComponentResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
128624
|
+
__typename?: 'JiraComponentResourceUsageMetric';
|
|
128625
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
128626
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
128627
|
+
id: Scalars['ID']['output'];
|
|
128628
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
128629
|
+
projectsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
128630
|
+
projectsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
128631
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
128632
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
128633
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
128634
|
+
};
|
|
128635
|
+
export type JiraComponentResourceUsageMetricValuesArgs = {
|
|
128636
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128637
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
128638
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128639
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
128640
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128641
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
128642
|
+
};
|
|
128315
128643
|
export type JiraComponentsField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
128316
128644
|
__typename?: 'JiraComponentsField';
|
|
128317
128645
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -132806,15 +133134,22 @@ export type JiraHydrateJqlInput = {
|
|
|
132806
133134
|
};
|
|
132807
133135
|
export type JiraIccActivityValue = {
|
|
132808
133136
|
__typename?: 'JiraIccActivityValue';
|
|
132809
|
-
|
|
132810
|
-
|
|
133137
|
+
completedStepCount?: Maybe<Scalars['String']['output']>;
|
|
133138
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
133139
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
133140
|
+
groupId?: Maybe<Scalars['String']['output']>;
|
|
133141
|
+
groupName?: Maybe<Scalars['String']['output']>;
|
|
133142
|
+
hypothesisCount?: Maybe<Scalars['String']['output']>;
|
|
133143
|
+
incidentName?: Maybe<Scalars['String']['output']>;
|
|
132811
133144
|
planName?: Maybe<Scalars['String']['output']>;
|
|
132812
133145
|
status?: Maybe<Scalars['String']['output']>;
|
|
132813
|
-
|
|
133146
|
+
statusPageIncidentId?: Maybe<Scalars['String']['output']>;
|
|
132814
133147
|
stepStatus?: Maybe<Scalars['String']['output']>;
|
|
132815
|
-
|
|
133148
|
+
stepTitle?: Maybe<Scalars['String']['output']>;
|
|
132816
133149
|
totalSteps?: Maybe<Scalars['String']['output']>;
|
|
132817
133150
|
triggerReason?: Maybe<Scalars['String']['output']>;
|
|
133151
|
+
triggerType?: Maybe<Scalars['String']['output']>;
|
|
133152
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
132818
133153
|
};
|
|
132819
133154
|
export type JiraImproveDescriptionSuggestion = JiraBaseNextActionsEntity & {
|
|
132820
133155
|
__typename?: 'JiraImproveDescriptionSuggestion';
|
|
@@ -132875,6 +133210,7 @@ export declare enum JiraIncidentActivityType {
|
|
|
132875
133210
|
AlertAssociated = "ALERT_ASSOCIATED",
|
|
132876
133211
|
AlertDisassociated = "ALERT_DISASSOCIATED",
|
|
132877
133212
|
IncidentHypothesisAccepted = "INCIDENT_HYPOTHESIS_ACCEPTED",
|
|
133213
|
+
IncidentInvestigationCancelled = "INCIDENT_INVESTIGATION_CANCELLED",
|
|
132878
133214
|
IncidentInvestigationCompleted = "INCIDENT_INVESTIGATION_COMPLETED",
|
|
132879
133215
|
IncidentInvestigationStarted = "INCIDENT_INVESTIGATION_STARTED",
|
|
132880
133216
|
IncidentMitigationPlansCreationCompleted = "INCIDENT_MITIGATION_PLANS_CREATION_COMPLETED",
|
|
@@ -132886,6 +133222,11 @@ export declare enum JiraIncidentActivityType {
|
|
|
132886
133222
|
IncidentOverviewSummaryGenerated = "INCIDENT_OVERVIEW_SUMMARY_GENERATED",
|
|
132887
133223
|
IncidentStakeholderAdded = "INCIDENT_STAKEHOLDER_ADDED",
|
|
132888
133224
|
IncidentStakeholderRemoved = "INCIDENT_STAKEHOLDER_REMOVED",
|
|
133225
|
+
IncidentStatusPageIncidentCreated = "INCIDENT_STATUS_PAGE_INCIDENT_CREATED",
|
|
133226
|
+
IncidentStatusPageIncidentResolved = "INCIDENT_STATUS_PAGE_INCIDENT_RESOLVED",
|
|
133227
|
+
IncidentStatusPageIncidentUpdated = "INCIDENT_STATUS_PAGE_INCIDENT_UPDATED",
|
|
133228
|
+
IncidentStatusPageStakeholderGroupAdded = "INCIDENT_STATUS_PAGE_STAKEHOLDER_GROUP_ADDED",
|
|
133229
|
+
IncidentStatusPageStakeholderGroupRemoved = "INCIDENT_STATUS_PAGE_STAKEHOLDER_GROUP_REMOVED",
|
|
132889
133230
|
ResponderAlertAcked = "RESPONDER_ALERT_ACKED",
|
|
132890
133231
|
ResponderAlertAssigned = "RESPONDER_ALERT_ASSIGNED",
|
|
132891
133232
|
ResponderAlertClosed = "RESPONDER_ALERT_CLOSED",
|
|
@@ -135459,6 +135800,7 @@ export type JiraIssueSearchTimelineViewConfigSettings = {
|
|
|
135459
135800
|
hideReleases?: Maybe<Scalars['Boolean']['output']>;
|
|
135460
135801
|
hideUnParentedItems?: Maybe<Scalars['Boolean']['output']>;
|
|
135461
135802
|
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
135803
|
+
hierarchyWithFiltersEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
135462
135804
|
highlightedReleases?: Maybe<Array<Scalars['ID']['output']>>;
|
|
135463
135805
|
lastAppliedFilters?: Maybe<JiraTimelineLastAppliedFilters>;
|
|
135464
135806
|
maxHierarchyLevel?: Maybe<Scalars['Int']['output']>;
|
|
@@ -137834,6 +138176,12 @@ export type JiraMultiSelectComponentFieldInput = {
|
|
|
137834
138176
|
components?: InputMaybe<Array<JiraComponentInput>>;
|
|
137835
138177
|
fieldId: Scalars['ID']['input'];
|
|
137836
138178
|
};
|
|
138179
|
+
export type JiraMultiSubmitBulkOperationProgress = {
|
|
138180
|
+
__typename?: 'JiraMultiSubmitBulkOperationProgress';
|
|
138181
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138182
|
+
inputId: Scalars['String']['output'];
|
|
138183
|
+
progress?: Maybe<JiraSubmitBulkOperationProgress>;
|
|
138184
|
+
};
|
|
137837
138185
|
export declare enum JiraMultiValueFieldOperations {
|
|
137838
138186
|
Add = "ADD",
|
|
137839
138187
|
Remove = "REMOVE",
|
|
@@ -140954,6 +141302,26 @@ export type JiraPriorityFieldPayload = Payload & {
|
|
|
140954
141302
|
export type JiraPriorityInput = {
|
|
140955
141303
|
priorityId: Scalars['ID']['input'];
|
|
140956
141304
|
};
|
|
141305
|
+
export type JiraPriorityResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
141306
|
+
__typename?: 'JiraPriorityResourceUsageMetric';
|
|
141307
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
141308
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
141309
|
+
id: Scalars['ID']['output'];
|
|
141310
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
141311
|
+
projectsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
141312
|
+
projectsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
141313
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
141314
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
141315
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
141316
|
+
};
|
|
141317
|
+
export type JiraPriorityResourceUsageMetricValuesArgs = {
|
|
141318
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
141319
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
141320
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141321
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
141322
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
141323
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
141324
|
+
};
|
|
140957
141325
|
export type JiraProductDiscoveryCollection = Node & {
|
|
140958
141326
|
__typename?: 'JiraProductDiscoveryCollection';
|
|
140959
141327
|
collectionId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -141368,6 +141736,7 @@ export type JiraProjectVersionsArgs = {
|
|
|
141368
141736
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
141369
141737
|
driverFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
141370
141738
|
filter?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
141739
|
+
filterById?: InputMaybe<JiraVersionIdsFilterInput>;
|
|
141371
141740
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141372
141741
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
141373
141742
|
releaseDateAfter?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -141381,6 +141750,7 @@ export type JiraProjectVersionsV2Args = {
|
|
|
141381
141750
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141382
141751
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
141383
141752
|
filter?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
141753
|
+
filterById?: InputMaybe<JiraVersionIdsFilterInput>;
|
|
141384
141754
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141385
141755
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
141386
141756
|
releaseDateAfter?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -144301,6 +144671,26 @@ export declare enum JiraReleaseNotesIssueKeyConfig {
|
|
|
144301
144671
|
None = "NONE",
|
|
144302
144672
|
Unlinked = "UNLINKED"
|
|
144303
144673
|
}
|
|
144674
|
+
export type JiraReleaseResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
144675
|
+
__typename?: 'JiraReleaseResourceUsageMetric';
|
|
144676
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
144677
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
144678
|
+
id: Scalars['ID']['output'];
|
|
144679
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
144680
|
+
projectsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
144681
|
+
projectsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
144682
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
144683
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
144684
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
144685
|
+
};
|
|
144686
|
+
export type JiraReleaseResourceUsageMetricValuesArgs = {
|
|
144687
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
144688
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
144689
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
144690
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
144691
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
144692
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
144693
|
+
};
|
|
144304
144694
|
export type JiraReleases = {
|
|
144305
144695
|
__typename?: 'JiraReleases';
|
|
144306
144696
|
deployments?: Maybe<JiraReleasesDeploymentSummaryConnection>;
|
|
@@ -147595,6 +147985,7 @@ export type JiraSetBoardViewStatusColumnMappingDeleteStatusInput = {
|
|
|
147595
147985
|
statusId: Scalars['ID']['input'];
|
|
147596
147986
|
};
|
|
147597
147987
|
export type JiraSetBoardViewStatusColumnMappingInput = {
|
|
147988
|
+
backlogStatuses?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
147598
147989
|
columns: Array<JiraBoardViewStatusColumnMapping>;
|
|
147599
147990
|
createStatuses?: InputMaybe<Array<JiraSetBoardViewStatusColumnMappingCreateStatusInput>>;
|
|
147600
147991
|
deleteStatuses?: InputMaybe<Array<JiraSetBoardViewStatusColumnMappingDeleteStatusInput>>;
|
|
@@ -147997,6 +148388,16 @@ export type JiraSetTimelineViewHideWarningsPayload = Payload & {
|
|
|
147997
148388
|
success: Scalars['Boolean']['output'];
|
|
147998
148389
|
view?: Maybe<JiraView>;
|
|
147999
148390
|
};
|
|
148391
|
+
export type JiraSetTimelineViewHierarchyWithFiltersEnabledInput = {
|
|
148392
|
+
hierarchyWithFiltersEnabled: Scalars['Boolean']['input'];
|
|
148393
|
+
viewId: Scalars['ID']['input'];
|
|
148394
|
+
};
|
|
148395
|
+
export type JiraSetTimelineViewHierarchyWithFiltersEnabledPayload = Payload & {
|
|
148396
|
+
__typename?: 'JiraSetTimelineViewHierarchyWithFiltersEnabledPayload';
|
|
148397
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148398
|
+
success: Scalars['Boolean']['output'];
|
|
148399
|
+
view?: Maybe<JiraView>;
|
|
148400
|
+
};
|
|
148000
148401
|
export type JiraSetTimelineViewMaxHierarchyLevelInput = {
|
|
148001
148402
|
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
148002
148403
|
viewId: Scalars['ID']['input'];
|
|
@@ -149014,9 +149415,6 @@ export type JiraStreamHubResourceIdentifier = {
|
|
|
149014
149415
|
__typename?: 'JiraStreamHubResourceIdentifier';
|
|
149015
149416
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
149016
149417
|
};
|
|
149017
|
-
export type JiraSubmitBulkMoveOperationInput = {
|
|
149018
|
-
bulkMoveInputs: Array<JiraBulkMoveInput>;
|
|
149019
|
-
};
|
|
149020
149418
|
export type JiraSubmitBulkOperationInput = {
|
|
149021
149419
|
bulkOperationInput: JiraBulkOperationInput;
|
|
149022
149420
|
bulkOperationType: JiraBulkOperationType;
|
|
@@ -149024,6 +149422,7 @@ export type JiraSubmitBulkOperationInput = {
|
|
|
149024
149422
|
export type JiraSubmitBulkOperationPayload = Payload & {
|
|
149025
149423
|
__typename?: 'JiraSubmitBulkOperationPayload';
|
|
149026
149424
|
errors?: Maybe<Array<MutationError>>;
|
|
149425
|
+
multiSubmitProgress?: Maybe<Array<JiraMultiSubmitBulkOperationProgress>>;
|
|
149027
149426
|
progress?: Maybe<JiraSubmitBulkOperationProgress>;
|
|
149028
149427
|
success: Scalars['Boolean']['output'];
|
|
149029
149428
|
};
|
|
@@ -149695,6 +150094,7 @@ export type JiraTimelineStaticViewInput = {
|
|
|
149695
150094
|
hideReleases?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149696
150095
|
hideUnParentedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149697
150096
|
hideWarnings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
150097
|
+
hierarchyWithFiltersEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149698
150098
|
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
149699
150099
|
rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
|
|
149700
150100
|
};
|
|
@@ -149792,6 +150192,7 @@ export type JiraTimelineViewSettings = {
|
|
|
149792
150192
|
hideReleases?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149793
150193
|
hideUnParentedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149794
150194
|
hideWarnings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
150195
|
+
hierarchyWithFiltersEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149795
150196
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
149796
150197
|
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
149797
150198
|
rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
|
|
@@ -151434,6 +151835,14 @@ export type JiraVersionFilterInput = {
|
|
|
151434
151835
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
151435
151836
|
statuses?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
151436
151837
|
};
|
|
151838
|
+
export type JiraVersionIdsFilterInput = {
|
|
151839
|
+
ids: Array<Scalars['ID']['input']>;
|
|
151840
|
+
operation: JiraVersionIdsFilterOperation;
|
|
151841
|
+
};
|
|
151842
|
+
export declare enum JiraVersionIdsFilterOperation {
|
|
151843
|
+
Allow = "ALLOW",
|
|
151844
|
+
Exclude = "EXCLUDE"
|
|
151845
|
+
}
|
|
151437
151846
|
export type JiraVersionInput = {
|
|
151438
151847
|
versionId?: InputMaybe<Scalars['ID']['input']>;
|
|
151439
151848
|
};
|
|
@@ -156231,6 +156640,49 @@ export type KitsuneConnection = {
|
|
|
156231
156640
|
edges: Array<KitsuneEdge>;
|
|
156232
156641
|
pageInfo: PageInfo;
|
|
156233
156642
|
};
|
|
156643
|
+
export type KitsuneConnectorConfig = {
|
|
156644
|
+
__typename?: 'KitsuneConnectorConfig';
|
|
156645
|
+
enabled: Scalars['Boolean']['output'];
|
|
156646
|
+
filters: Array<KitsuneConnectorConfigFilter>;
|
|
156647
|
+
filtersLogicalOperator: KitsuneLogicalOperator;
|
|
156648
|
+
id: Scalars['ID']['output'];
|
|
156649
|
+
sourceType: KitsuneSourceCategoryType;
|
|
156650
|
+
spaceId?: Maybe<Scalars['ID']['output']>;
|
|
156651
|
+
};
|
|
156652
|
+
export type KitsuneConnectorConfigFilter = {
|
|
156653
|
+
__typename?: 'KitsuneConnectorConfigFilter';
|
|
156654
|
+
field: Scalars['String']['output'];
|
|
156655
|
+
fieldExternalId?: Maybe<Scalars['String']['output']>;
|
|
156656
|
+
fieldValueType?: Maybe<KitsuneFieldValueType>;
|
|
156657
|
+
id: Scalars['ID']['output'];
|
|
156658
|
+
operator: KitsuneComparisonOperator;
|
|
156659
|
+
values: Array<KitsuneConnectorConfigFilterValue>;
|
|
156660
|
+
};
|
|
156661
|
+
export type KitsuneConnectorConfigFilterInput = {
|
|
156662
|
+
field: Scalars['String']['input'];
|
|
156663
|
+
fieldExternalId?: InputMaybe<Scalars['String']['input']>;
|
|
156664
|
+
fieldValueType?: InputMaybe<KitsuneFieldValueType>;
|
|
156665
|
+
operator: KitsuneComparisonOperator;
|
|
156666
|
+
values?: InputMaybe<KitsuneFilterValueInput>;
|
|
156667
|
+
};
|
|
156668
|
+
export type KitsuneConnectorConfigFilterValue = KitsuneDateValue | KitsuneNumberValue | KitsuneTextValue;
|
|
156669
|
+
export type KitsuneConnectorConfigInput = {
|
|
156670
|
+
filters: Array<KitsuneConnectorConfigFilterInput>;
|
|
156671
|
+
logicalOperator: KitsuneLogicalOperator;
|
|
156672
|
+
};
|
|
156673
|
+
export type KitsuneCreateConnectorConfigInput = {
|
|
156674
|
+
config?: InputMaybe<KitsuneConnectorConfigInput>;
|
|
156675
|
+
enabled: Scalars['Boolean']['input'];
|
|
156676
|
+
sourceType: KitsuneSourceCategoryType;
|
|
156677
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
156678
|
+
workspaceAri: Scalars['ID']['input'];
|
|
156679
|
+
};
|
|
156680
|
+
export type KitsuneCreateConnectorConfigPayload = Payload & {
|
|
156681
|
+
__typename?: 'KitsuneCreateConnectorConfigPayload';
|
|
156682
|
+
connectorConfig?: Maybe<KitsuneConnectorConfig>;
|
|
156683
|
+
errors?: Maybe<Array<MutationError>>;
|
|
156684
|
+
success: Scalars['Boolean']['output'];
|
|
156685
|
+
};
|
|
156234
156686
|
export type KitsuneCreateFieldOptionInput = {
|
|
156235
156687
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
156236
156688
|
name: Scalars['String']['input'];
|
|
@@ -156636,6 +157088,15 @@ export type KitsuneRankInput = {
|
|
|
156636
157088
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
156637
157089
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
156638
157090
|
};
|
|
157091
|
+
export type KitsuneRemoveConnectorConfigInput = {
|
|
157092
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157093
|
+
};
|
|
157094
|
+
export type KitsuneRemoveConnectorConfigPayload = Payload & {
|
|
157095
|
+
__typename?: 'KitsuneRemoveConnectorConfigPayload';
|
|
157096
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157097
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
157098
|
+
success: Scalars['Boolean']['output'];
|
|
157099
|
+
};
|
|
156639
157100
|
export type KitsuneRollupInput = {
|
|
156640
157101
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
156641
157102
|
ideaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -156992,6 +157453,17 @@ export type KitsuneTextValue = {
|
|
|
156992
157453
|
_id: Scalars['ID']['output'];
|
|
156993
157454
|
value: Scalars['String']['output'];
|
|
156994
157455
|
};
|
|
157456
|
+
export type KitsuneUpdateConnectorConfigInput = {
|
|
157457
|
+
config?: InputMaybe<KitsuneConnectorConfigInput>;
|
|
157458
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157459
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157460
|
+
};
|
|
157461
|
+
export type KitsuneUpdateConnectorConfigPayload = Payload & {
|
|
157462
|
+
__typename?: 'KitsuneUpdateConnectorConfigPayload';
|
|
157463
|
+
connectorConfig?: Maybe<KitsuneConnectorConfig>;
|
|
157464
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157465
|
+
success: Scalars['Boolean']['output'];
|
|
157466
|
+
};
|
|
156995
157467
|
export type KitsuneUser = {
|
|
156996
157468
|
__typename?: 'KitsuneUser';
|
|
156997
157469
|
user?: Maybe<User>;
|
|
@@ -158958,21 +159430,28 @@ export type LogDetails = {
|
|
|
158958
159430
|
export type LogQueryInput = {
|
|
158959
159431
|
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
158960
159432
|
appVersions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
159433
|
+
browserName?: InputMaybe<Scalars['String']['input']>;
|
|
158961
159434
|
container?: InputMaybe<Scalars['String']['input']>;
|
|
158962
159435
|
containers?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
158963
159436
|
contexts?: InputMaybe<Array<InputMaybe<Context>>>;
|
|
158964
159437
|
dates?: InputMaybe<DateSearchInput>;
|
|
158965
159438
|
editions?: InputMaybe<Array<InputMaybe<EditionValue>>>;
|
|
159439
|
+
errorType?: InputMaybe<Scalars['String']['input']>;
|
|
159440
|
+
extensionType?: InputMaybe<Scalars['String']['input']>;
|
|
158966
159441
|
functionKey?: InputMaybe<Scalars['String']['input']>;
|
|
158967
159442
|
functionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
158968
159443
|
installationContexts?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
159444
|
+
installationId?: InputMaybe<Scalars['String']['input']>;
|
|
158969
159445
|
instance?: InputMaybe<Scalars['String']['input']>;
|
|
158970
159446
|
instances?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
158971
159447
|
invocationId?: InputMaybe<Scalars['String']['input']>;
|
|
158972
159448
|
licenseStates?: InputMaybe<Array<InputMaybe<LicenseValue>>>;
|
|
159449
|
+
logSource?: InputMaybe<FrontendLogSource>;
|
|
158973
159450
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
158974
159451
|
moduleType?: InputMaybe<Scalars['String']['input']>;
|
|
158975
159452
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
159453
|
+
osName?: InputMaybe<Scalars['String']['input']>;
|
|
159454
|
+
renderType?: InputMaybe<Scalars['String']['input']>;
|
|
158976
159455
|
runtime?: InputMaybe<Scalars['String']['input']>;
|
|
158977
159456
|
service?: InputMaybe<Scalars['String']['input']>;
|
|
158978
159457
|
services?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -163682,7 +164161,8 @@ export declare enum MarketplaceStorePersonalisationTargetSurface {
|
|
|
163682
164161
|
StoreCollection = "STORE_COLLECTION",
|
|
163683
164162
|
StorePartnerProfile = "STORE_PARTNER_PROFILE",
|
|
163684
164163
|
StoreProduct = "STORE_PRODUCT",
|
|
163685
|
-
UnifiedStore = "UNIFIED_STORE"
|
|
164164
|
+
UnifiedStore = "UNIFIED_STORE",
|
|
164165
|
+
UnifiedStoreRovo = "UNIFIED_STORE_ROVO"
|
|
163686
164166
|
}
|
|
163687
164167
|
export type MarketplaceStorePersonalisedContextAndLayoutInput = {
|
|
163688
164168
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -166229,10 +166709,8 @@ export type MercuryCreateDateCustomFieldDefinitionInput = {
|
|
|
166229
166709
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
166230
166710
|
};
|
|
166231
166711
|
export type MercuryCreateDraftPlanInput = {
|
|
166232
|
-
|
|
166233
|
-
fiscalYearStart?: InputMaybe<Scalars['String']['input']>;
|
|
166712
|
+
fiscalYearStart: Scalars['String']['input'];
|
|
166234
166713
|
organizationId: Scalars['ID']['input'];
|
|
166235
|
-
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
166236
166714
|
};
|
|
166237
166715
|
export type MercuryCreateDraftPlanPayload = Payload & {
|
|
166238
166716
|
__typename?: 'MercuryCreateDraftPlanPayload';
|
|
@@ -171436,8 +171914,8 @@ export type MercuryRankedChangeProposal = {
|
|
|
171436
171914
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
171437
171915
|
};
|
|
171438
171916
|
export declare enum MercuryRankingContainerType {
|
|
171917
|
+
Organization = "ORGANIZATION",
|
|
171439
171918
|
ParentFocusArea = "PARENT_FOCUS_AREA",
|
|
171440
|
-
SponsoringOrganization = "SPONSORING_ORGANIZATION",
|
|
171441
171919
|
Workspace = "WORKSPACE"
|
|
171442
171920
|
}
|
|
171443
171921
|
export declare enum MercuryRankingGroupType {
|
|
@@ -174487,6 +174965,7 @@ export type Mutation = {
|
|
|
174487
174965
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
174488
174966
|
agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
174489
174967
|
agentWorkspace_createDraftedRoutingTableEntriesV2?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
174968
|
+
agentWorkspace_createDraftedTeamRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedTeamRoutingTableEntriesPayload>;
|
|
174490
174969
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
174491
174970
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
174492
174971
|
agentWorkspace_createWfoSummaryView?: Maybe<AgentWorkspaceCreateWfoSummaryViewPayload>;
|
|
@@ -174505,6 +174984,7 @@ export type Mutation = {
|
|
|
174505
174984
|
agentWorkspace_setShiftNotificationPreference?: Maybe<AgentWorkspaceShiftNotificationPreferencePayload>;
|
|
174506
174985
|
agentWorkspace_setShiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfigPayload>;
|
|
174507
174986
|
agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
|
|
174987
|
+
agentWorkspace_setWorkforceTeamAccessLevels?: Maybe<AgentWorkspaceSetWorkforceTeamAccessLevelsPayload>;
|
|
174508
174988
|
agentWorkspace_setWorkloadJql?: Maybe<AgentWorkspaceSetWorkloadJqlPayload>;
|
|
174509
174989
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
174510
174990
|
agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
|
|
@@ -174512,6 +174992,7 @@ export type Mutation = {
|
|
|
174512
174992
|
agentWorkspace_startGenerateRoutingTableV2?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
174513
174993
|
agentWorkspace_startSmartRoutingDryRun?: Maybe<AgentWorkspaceStartSmartRoutingDryRunPayload>;
|
|
174514
174994
|
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
174995
|
+
agentWorkspace_submitDraftedTeamRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedTeamRoutingTablePayload>;
|
|
174515
174996
|
agentWorkspace_unassignCoverShift?: Maybe<AgentWorkspaceUnassignCoverShiftPayload>;
|
|
174516
174997
|
agentWorkspace_updateConfigurableRoutingInputs?: Maybe<AgentWorkspaceUpdateConfigurableRoutingPayload>;
|
|
174517
174998
|
agentWorkspace_updateConfigurableRoutingTriggers?: Maybe<AgentWorkspaceUpdateConfigurableRoutingPayload>;
|
|
@@ -174522,7 +175003,6 @@ export type Mutation = {
|
|
|
174522
175003
|
agentWorkspace_updateSkillMappingsInProject?: Maybe<AgentWorkspaceUpdateSkillMappingsInProjectPayload>;
|
|
174523
175004
|
agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
|
|
174524
175005
|
agentWorkspace_upsertDraftedTeamRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedTeamRoutingTableEntryPayload>;
|
|
174525
|
-
agentWorkspace_upsertTeamRoutingTableEntry?: Maybe<AgentWorkspaceUpsertTeamRoutingTableEntryPayload>;
|
|
174526
175006
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
174527
175007
|
aiCoreApi_initiateRsaReport?: Maybe<AiCoreApiRsaInitiateReportResult>;
|
|
174528
175008
|
aiManagedObject_archiveAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -174550,6 +175030,8 @@ export type Mutation = {
|
|
|
174550
175030
|
assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
|
|
174551
175031
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
174552
175032
|
assetsDM_batchCreateComputeDictionaryValues?: Maybe<AssetsDmBatchCreateComputeDictionaryValuesResponse>;
|
|
175033
|
+
assetsDM_cancelCleanse?: Maybe<AssetsDmCancelCleanseResponse>;
|
|
175034
|
+
assetsDM_cancelImport?: Maybe<AssetsDmCancelImportResponse>;
|
|
174553
175035
|
assetsDM_changeDataSourceStatus?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
174554
175036
|
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
174555
175037
|
assetsDM_configureDefaultDataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
@@ -174601,6 +175083,7 @@ export type Mutation = {
|
|
|
174601
175083
|
assetsDM_objectAttributeDelete?: Maybe<AssetsDmObjectAttributeMutationResponse>;
|
|
174602
175084
|
assetsDM_objectAttributeUpdate?: Maybe<AssetsDmObjectAttributeMutationResponse>;
|
|
174603
175085
|
assetsDM_resetDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
175086
|
+
assetsDM_syncDataDictionary?: Maybe<AssetsDmSyncDataDictionaryResponse>;
|
|
174604
175087
|
assetsDM_triggerCloudFetch?: Maybe<AssetsDmTriggerCloudFetchResponse>;
|
|
174605
175088
|
assetsDM_updateAttributePriority?: Maybe<AssetsDmUpdateAttributePriorityPayload>;
|
|
174606
175089
|
assetsDM_updateAttributePriorityOrder?: Maybe<AssetsDmAttributePriorityResponse>;
|
|
@@ -174830,9 +175313,11 @@ export type Mutation = {
|
|
|
174830
175313
|
confluence_removeTrack?: Maybe<ConfluenceRemoveTrackPayload>;
|
|
174831
175314
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
174832
175315
|
confluence_reorderTracks?: Maybe<ConfluenceReorderTrackPayload>;
|
|
175316
|
+
confluence_requestSpaceAccess?: Maybe<ConfluenceRequestSpaceAccessPayload>;
|
|
174833
175317
|
confluence_resolveApprovalAgent?: Maybe<ConfluenceApprovalAgentPayload>;
|
|
174834
175318
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
174835
175319
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
175320
|
+
confluence_resolveSpaceAccessRequest?: Maybe<ConfluenceResolveSpaceAccessRequestPayload>;
|
|
174836
175321
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
174837
175322
|
confluence_restoreSystemRole?: Maybe<ConfluenceRestoreSystemRolePayload>;
|
|
174838
175323
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
@@ -174845,6 +175330,7 @@ export type Mutation = {
|
|
|
174845
175330
|
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
174846
175331
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
174847
175332
|
confluence_syncSmartFolder?: Maybe<ConfluenceSyncSmartFolderPayload>;
|
|
175333
|
+
confluence_undoSpaceAccessRequestDecision?: Maybe<ConfluenceUndoSpaceAccessRequestDecisionPayload>;
|
|
174848
175334
|
confluence_unschedulePublish?: Maybe<ConfluenceUnschedulePublishPayload>;
|
|
174849
175335
|
confluence_unsubscribeCalendar?: Maybe<ConfluenceUnSubscribeCalendarPayload>;
|
|
174850
175336
|
confluence_unsyncSmartFolder?: Maybe<ConfluenceUnsyncSmartFolderPayload>;
|
|
@@ -175217,10 +175703,13 @@ export type Mutation = {
|
|
|
175217
175703
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
175218
175704
|
graphInference_inferenceAppAdd?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
175219
175705
|
graphInference_inferenceAppAddV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
|
|
175706
|
+
graphInference_inferenceAppAddV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
175220
175707
|
graphInference_inferenceAppDelete?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
175221
175708
|
graphInference_inferenceAppDeleteV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
|
|
175709
|
+
graphInference_inferenceAppDeleteV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
175222
175710
|
graphInference_inferenceAppEdit?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
175223
175711
|
graphInference_inferenceAppEditV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
|
|
175712
|
+
graphInference_inferenceAppEditV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
175224
175713
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
175225
175714
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
175226
175715
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -175578,6 +176067,7 @@ export type Mutation = {
|
|
|
175578
176067
|
jira_setTimelineViewHideReleases?: Maybe<JiraSetTimelineViewHideReleasesPayload>;
|
|
175579
176068
|
jira_setTimelineViewHideUnParentedItems?: Maybe<JiraSetTimelineViewHideUnParentedItemsPayload>;
|
|
175580
176069
|
jira_setTimelineViewHideWarnings?: Maybe<JiraSetTimelineViewHideWarningsPayload>;
|
|
176070
|
+
jira_setTimelineViewHierarchyWithFiltersEnabled?: Maybe<JiraSetTimelineViewHierarchyWithFiltersEnabledPayload>;
|
|
175581
176071
|
jira_setTimelineViewMaxHierarchyLevel?: Maybe<JiraSetTimelineViewMaxHierarchyLevelPayload>;
|
|
175582
176072
|
jira_setTimelineViewRangeMode?: Maybe<JiraSetTimelineViewRangeModePayload>;
|
|
175583
176073
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
@@ -175643,6 +176133,7 @@ export type Mutation = {
|
|
|
175643
176133
|
jsmTelemetry_upsertDashboardChart?: Maybe<JsmTelemetryUpsertDashboardChartResponse>;
|
|
175644
176134
|
jsmTelemetry_validateTelemetryConnection?: Maybe<JsmTelemetryValidateTelemetryConnectionPayload>;
|
|
175645
176135
|
jsw?: Maybe<JswMutation>;
|
|
176136
|
+
kitsune_createConnectorConfig?: Maybe<KitsuneCreateConnectorConfigPayload>;
|
|
175646
176137
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
175647
176138
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
175648
176139
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
@@ -175661,6 +176152,7 @@ export type Mutation = {
|
|
|
175661
176152
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
175662
176153
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
175663
176154
|
kitsune_refreshInsightCounters?: Maybe<KitsuneJob>;
|
|
176155
|
+
kitsune_removeConnectorConfig?: Maybe<KitsuneRemoveConnectorConfigPayload>;
|
|
175664
176156
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
175665
176157
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
175666
176158
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -175678,6 +176170,7 @@ export type Mutation = {
|
|
|
175678
176170
|
kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
|
|
175679
176171
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
175680
176172
|
kitsune_syncCustomers?: Maybe<KitsuneJob>;
|
|
176173
|
+
kitsune_updateConnectorConfig?: Maybe<KitsuneUpdateConnectorConfigPayload>;
|
|
175681
176174
|
kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
|
|
175682
176175
|
kitsune_updateCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
175683
176176
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
@@ -176550,6 +177043,9 @@ export type MutationAgentWorkspace_CreateDraftedRoutingTableEntriesArgs = {
|
|
|
176550
177043
|
export type MutationAgentWorkspace_CreateDraftedRoutingTableEntriesV2Args = {
|
|
176551
177044
|
input: AgentWorkspaceCreateDraftedRoutingTableEntriesV2Input;
|
|
176552
177045
|
};
|
|
177046
|
+
export type MutationAgentWorkspace_CreateDraftedTeamRoutingTableEntriesArgs = {
|
|
177047
|
+
input: AgentWorkspaceCreateDraftedTeamRoutingTableEntriesInput;
|
|
177048
|
+
};
|
|
176553
177049
|
export type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
176554
177050
|
input: AgentWorkspaceCreateScheduleInput;
|
|
176555
177051
|
};
|
|
@@ -176605,6 +177101,10 @@ export type MutationAgentWorkspace_SetShiftReminderConfigArgs = {
|
|
|
176605
177101
|
export type MutationAgentWorkspace_SetTeamCapacitiesArgs = {
|
|
176606
177102
|
input: AgentWorkspaceSetTeamCapacitiesInput;
|
|
176607
177103
|
};
|
|
177104
|
+
export type MutationAgentWorkspace_SetWorkforceTeamAccessLevelsArgs = {
|
|
177105
|
+
cloudId: Scalars['ID']['input'];
|
|
177106
|
+
updates: Array<AgentWorkspaceWorkforceTeamAccessLevelUpdateInput>;
|
|
177107
|
+
};
|
|
176608
177108
|
export type MutationAgentWorkspace_SetWorkloadJqlArgs = {
|
|
176609
177109
|
input: AgentWorkspaceSetWorkloadJqlInput;
|
|
176610
177110
|
};
|
|
@@ -176627,6 +177127,9 @@ export type MutationAgentWorkspace_StartSmartRoutingDryRunArgs = {
|
|
|
176627
177127
|
export type MutationAgentWorkspace_SubmitDraftedRoutingTableArgs = {
|
|
176628
177128
|
input: AgentWorkspaceSubmitDraftedRoutingTableInput;
|
|
176629
177129
|
};
|
|
177130
|
+
export type MutationAgentWorkspace_SubmitDraftedTeamRoutingTableArgs = {
|
|
177131
|
+
input: AgentWorkspaceSubmitDraftedTeamRoutingTableInput;
|
|
177132
|
+
};
|
|
176630
177133
|
export type MutationAgentWorkspace_UnassignCoverShiftArgs = {
|
|
176631
177134
|
input: AgentWorkspaceUnassignCoverShiftInput;
|
|
176632
177135
|
};
|
|
@@ -176657,9 +177160,6 @@ export type MutationAgentWorkspace_UpsertDraftedRoutingTableEntryArgs = {
|
|
|
176657
177160
|
export type MutationAgentWorkspace_UpsertDraftedTeamRoutingTableEntryArgs = {
|
|
176658
177161
|
input: AgentWorkspaceUpsertDraftedTeamRoutingTableEntryInput;
|
|
176659
177162
|
};
|
|
176660
|
-
export type MutationAgentWorkspace_UpsertTeamRoutingTableEntryArgs = {
|
|
176661
|
-
input: AgentWorkspaceUpsertTeamRoutingTableEntryInput;
|
|
176662
|
-
};
|
|
176663
177163
|
export type MutationAiCoreApi_InitiateCsvExportArgs = {
|
|
176664
177164
|
input: AiCoreApiCsvExportInput;
|
|
176665
177165
|
};
|
|
@@ -176746,6 +177246,16 @@ export type MutationAssetsDm_BatchCreateComputeDictionaryValuesArgs = {
|
|
|
176746
177246
|
inputs: Array<AssetsDmCreateComputeDictionaryValueInput>;
|
|
176747
177247
|
workspaceId: Scalars['ID']['input'];
|
|
176748
177248
|
};
|
|
177249
|
+
export type MutationAssetsDm_CancelCleanseArgs = {
|
|
177250
|
+
cloudId: Scalars['ID']['input'];
|
|
177251
|
+
dataSourceId: Scalars['ID']['input'];
|
|
177252
|
+
workspaceId: Scalars['ID']['input'];
|
|
177253
|
+
};
|
|
177254
|
+
export type MutationAssetsDm_CancelImportArgs = {
|
|
177255
|
+
cloudId: Scalars['ID']['input'];
|
|
177256
|
+
dataSourceId: Scalars['ID']['input'];
|
|
177257
|
+
workspaceId: Scalars['ID']['input'];
|
|
177258
|
+
};
|
|
176749
177259
|
export type MutationAssetsDm_ChangeDataSourceStatusArgs = {
|
|
176750
177260
|
cloudId: Scalars['ID']['input'];
|
|
176751
177261
|
input: AssetsDmChangeDataSourceStatusInput;
|
|
@@ -177020,6 +177530,11 @@ export type MutationAssetsDm_ResetDataSourceMappingArgs = {
|
|
|
177020
177530
|
dataSourceId: Scalars['ID']['input'];
|
|
177021
177531
|
workspaceId: Scalars['ID']['input'];
|
|
177022
177532
|
};
|
|
177533
|
+
export type MutationAssetsDm_SyncDataDictionaryArgs = {
|
|
177534
|
+
cloudId: Scalars['ID']['input'];
|
|
177535
|
+
computeDictionaryId: Scalars['ID']['input'];
|
|
177536
|
+
workspaceId: Scalars['ID']['input'];
|
|
177537
|
+
};
|
|
177023
177538
|
export type MutationAssetsDm_TriggerCloudFetchArgs = {
|
|
177024
177539
|
cloudId: Scalars['ID']['input'];
|
|
177025
177540
|
jobId: Scalars['ID']['input'];
|
|
@@ -177825,6 +178340,10 @@ export type MutationConfluence_ReorderTracksArgs = {
|
|
|
177825
178340
|
cloudId: Scalars['ID']['input'];
|
|
177826
178341
|
input: ConfluenceReorderTrackInput;
|
|
177827
178342
|
};
|
|
178343
|
+
export type MutationConfluence_RequestSpaceAccessArgs = {
|
|
178344
|
+
cloudId: Scalars['ID']['input'];
|
|
178345
|
+
input: ConfluenceRequestSpaceAccessInput;
|
|
178346
|
+
};
|
|
177828
178347
|
export type MutationConfluence_ResolveApprovalAgentArgs = {
|
|
177829
178348
|
cloudId: Scalars['ID']['input'];
|
|
177830
178349
|
};
|
|
@@ -177837,6 +178356,10 @@ export type MutationConfluence_ResolveCommentsByContentIdArgs = {
|
|
|
177837
178356
|
contentId: Scalars['ID']['input'];
|
|
177838
178357
|
resolveView?: InputMaybe<ConfluenceCommentResolveAllLocation>;
|
|
177839
178358
|
};
|
|
178359
|
+
export type MutationConfluence_ResolveSpaceAccessRequestArgs = {
|
|
178360
|
+
cloudId: Scalars['ID']['input'];
|
|
178361
|
+
input: ConfluenceResolveSpaceAccessRequestInput;
|
|
178362
|
+
};
|
|
177840
178363
|
export type MutationConfluence_RestoreContentVersionArgs = {
|
|
177841
178364
|
cloudId: Scalars['ID']['input'];
|
|
177842
178365
|
input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
|
|
@@ -177887,6 +178410,10 @@ export type MutationConfluence_SyncSmartFolderArgs = {
|
|
|
177887
178410
|
cloudId: Scalars['ID']['input'];
|
|
177888
178411
|
input: ConfluenceSyncSmartFolderInput;
|
|
177889
178412
|
};
|
|
178413
|
+
export type MutationConfluence_UndoSpaceAccessRequestDecisionArgs = {
|
|
178414
|
+
cloudId: Scalars['ID']['input'];
|
|
178415
|
+
input: ConfluenceUndoSpaceAccessRequestDecisionInput;
|
|
178416
|
+
};
|
|
177890
178417
|
export type MutationConfluence_UnschedulePublishArgs = {
|
|
177891
178418
|
cloudId: Scalars['ID']['input'];
|
|
177892
178419
|
input: ConfluenceUnschedulePublishInput;
|
|
@@ -179187,18 +179714,27 @@ export type MutationGraphInference_InferenceAppAddArgs = {
|
|
|
179187
179714
|
export type MutationGraphInference_InferenceAppAddV2Args = {
|
|
179188
179715
|
input: GraphInferenceInferenceAppAddV2Input;
|
|
179189
179716
|
};
|
|
179717
|
+
export type MutationGraphInference_InferenceAppAddV3Args = {
|
|
179718
|
+
input: GraphInferenceInferenceAppAddV3Input;
|
|
179719
|
+
};
|
|
179190
179720
|
export type MutationGraphInference_InferenceAppDeleteArgs = {
|
|
179191
179721
|
input: GraphInferenceInferenceAppDeleteInput;
|
|
179192
179722
|
};
|
|
179193
179723
|
export type MutationGraphInference_InferenceAppDeleteV2Args = {
|
|
179194
179724
|
input: GraphInferenceInferenceAppDeleteV2Input;
|
|
179195
179725
|
};
|
|
179726
|
+
export type MutationGraphInference_InferenceAppDeleteV3Args = {
|
|
179727
|
+
input: GraphInferenceInferenceAppDeleteV3Input;
|
|
179728
|
+
};
|
|
179196
179729
|
export type MutationGraphInference_InferenceAppEditArgs = {
|
|
179197
179730
|
input: GraphInferenceInferenceAppEditInput;
|
|
179198
179731
|
};
|
|
179199
179732
|
export type MutationGraphInference_InferenceAppEditV2Args = {
|
|
179200
179733
|
input: GraphInferenceInferenceAppEditV2Input;
|
|
179201
179734
|
};
|
|
179735
|
+
export type MutationGraphInference_InferenceAppEditV3Args = {
|
|
179736
|
+
input: GraphInferenceInferenceAppEditV3Input;
|
|
179737
|
+
};
|
|
179202
179738
|
export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
179203
179739
|
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
179204
179740
|
};
|
|
@@ -180311,6 +180847,9 @@ export type MutationJira_SetTimelineViewHideUnParentedItemsArgs = {
|
|
|
180311
180847
|
export type MutationJira_SetTimelineViewHideWarningsArgs = {
|
|
180312
180848
|
input: JiraSetTimelineViewHideWarningsInput;
|
|
180313
180849
|
};
|
|
180850
|
+
export type MutationJira_SetTimelineViewHierarchyWithFiltersEnabledArgs = {
|
|
180851
|
+
input: JiraSetTimelineViewHierarchyWithFiltersEnabledInput;
|
|
180852
|
+
};
|
|
180314
180853
|
export type MutationJira_SetTimelineViewMaxHierarchyLevelArgs = {
|
|
180315
180854
|
input: JiraSetTimelineViewMaxHierarchyLevelInput;
|
|
180316
180855
|
};
|
|
@@ -180547,6 +181086,9 @@ export type MutationJsmTelemetry_ValidateTelemetryConnectionArgs = {
|
|
|
180547
181086
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
180548
181087
|
input: JsmTelemetryValidateTelemetryConnectionInput;
|
|
180549
181088
|
};
|
|
181089
|
+
export type MutationKitsune_CreateConnectorConfigArgs = {
|
|
181090
|
+
input: KitsuneCreateConnectorConfigInput;
|
|
181091
|
+
};
|
|
180550
181092
|
export type MutationKitsune_CreateCustomerArgs = {
|
|
180551
181093
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
180552
181094
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -180651,6 +181193,10 @@ export type MutationKitsune_MoveViewArgs = {
|
|
|
180651
181193
|
export type MutationKitsune_RefreshInsightCountersArgs = {
|
|
180652
181194
|
workspaceAri: Scalars['ID']['input'];
|
|
180653
181195
|
};
|
|
181196
|
+
export type MutationKitsune_RemoveConnectorConfigArgs = {
|
|
181197
|
+
id: Scalars['ID']['input'];
|
|
181198
|
+
input: KitsuneRemoveConnectorConfigInput;
|
|
181199
|
+
};
|
|
180654
181200
|
export type MutationKitsune_RemoveCustomerArgs = {
|
|
180655
181201
|
ari: Scalars['ID']['input'];
|
|
180656
181202
|
};
|
|
@@ -180707,6 +181253,10 @@ export type MutationKitsune_SyncCustomerFieldsArgs = {
|
|
|
180707
181253
|
export type MutationKitsune_SyncCustomersArgs = {
|
|
180708
181254
|
workspaceAri: Scalars['ID']['input'];
|
|
180709
181255
|
};
|
|
181256
|
+
export type MutationKitsune_UpdateConnectorConfigArgs = {
|
|
181257
|
+
id: Scalars['ID']['input'];
|
|
181258
|
+
input: KitsuneUpdateConnectorConfigInput;
|
|
181259
|
+
};
|
|
180710
181260
|
export type MutationKitsune_UpdateCustomerArgs = {
|
|
180711
181261
|
ari: Scalars['ID']['input'];
|
|
180712
181262
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -184895,6 +185445,7 @@ export declare enum PsmDeviceHealthStatus {
|
|
|
184895
185445
|
}
|
|
184896
185446
|
export type PsmDeviceIdentity = {
|
|
184897
185447
|
__typename?: 'PsmDeviceIdentity';
|
|
185448
|
+
deviceName?: Maybe<Scalars['String']['output']>;
|
|
184898
185449
|
isDeviceOffline?: Maybe<Scalars['Boolean']['output']>;
|
|
184899
185450
|
serialNumber: Scalars['String']['output'];
|
|
184900
185451
|
};
|
|
@@ -185691,6 +186242,7 @@ export type Query = {
|
|
|
185691
186242
|
agentWorkspace_utilizationForPendingChanges?: Maybe<Array<AgentWorkspaceAgentUtilizationForPendingChanges>>;
|
|
185692
186243
|
agentWorkspace_wfoSummaryView?: Maybe<AgentWorkspaceWfoSummaryViewResult>;
|
|
185693
186244
|
agentWorkspace_wfoSummaryViewByProjectKey?: Maybe<AgentWorkspaceWfoSummaryViewByProjectKeyResult>;
|
|
186245
|
+
agentWorkspace_workforceTeamAccessLevels?: Maybe<Array<AgentWorkspaceWorkforceTeamAccessLevelResult>>;
|
|
185694
186246
|
agentWorkspace_workloadJqlConfig?: Maybe<AgentWorkspaceWorkloadJqlConfig>;
|
|
185695
186247
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
185696
186248
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
@@ -186084,6 +186636,7 @@ export type Query = {
|
|
|
186084
186636
|
confluence_latestInProgressSpacePermissionTransitionTaskProgress?: Maybe<ConfluenceSpacePermissionTransitionTaskProgress>;
|
|
186085
186637
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
186086
186638
|
confluence_legacyEditorReportDownloadLink?: Maybe<ConfluenceLegacyEditorReportDownloadLink>;
|
|
186639
|
+
confluence_listLabelsMacro?: Maybe<ConfluenceListLabelsEntryConnection>;
|
|
186087
186640
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
186088
186641
|
confluence_macroPlaceholderAdf?: Maybe<ConfluenceMacroPlaceholderAdf>;
|
|
186089
186642
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
@@ -186141,6 +186694,7 @@ export type Query = {
|
|
|
186141
186694
|
confluence_slide?: Maybe<ConfluenceSlide>;
|
|
186142
186695
|
confluence_slides?: Maybe<Array<Maybe<ConfluenceSlide>>>;
|
|
186143
186696
|
confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
|
|
186697
|
+
confluence_spaceAccessRequests?: Maybe<ConfluenceSpaceAccessRequestConnection>;
|
|
186144
186698
|
confluence_spaceAnalyticsPermissions?: Maybe<ConfluenceSpaceAnalyticsPermissionConnection>;
|
|
186145
186699
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
186146
186700
|
confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
|
|
@@ -186223,6 +186777,7 @@ export type Query = {
|
|
|
186223
186777
|
cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
186224
186778
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
186225
186779
|
cpls_filters?: Maybe<CplsFilterConfigurationType>;
|
|
186780
|
+
cpls_getContributorContributionAggregations?: Maybe<CplsContributorContributionAggregationsResult>;
|
|
186226
186781
|
cpls_getContributorScopeAssociations?: Maybe<CplsContributorScopeAssociationConnection>;
|
|
186227
186782
|
cpls_getContributorWorkAssociations?: Maybe<CplsContributorWorkAssociationConnection>;
|
|
186228
186783
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
@@ -186460,6 +187015,7 @@ export type Query = {
|
|
|
186460
187015
|
graphInference_getRelatedReposV2?: Maybe<GraphInferenceGetRelatedReposV2Response>;
|
|
186461
187016
|
graphInference_getRelatedReposV3?: Maybe<GraphInferenceGetRelatedReposV3Response>;
|
|
186462
187017
|
graphInference_getSimilarJiraItems?: Maybe<GraphInferenceGetSimilarJiraItemsResponse>;
|
|
187018
|
+
graphInference_graphclawInferV3?: Maybe<Array<GraphInferenceGraphclawInferOptionV3>>;
|
|
186463
187019
|
graphInference_graphclawInferenceTargets?: Maybe<Array<GraphInferenceGraphclawOption>>;
|
|
186464
187020
|
graphInference_graphclawInferenceTargetsV2?: Maybe<Array<GraphInferenceGraphclawOptionV2>>;
|
|
186465
187021
|
graphInference_graphclawInferenceType?: Maybe<Array<GraphInferenceGraphclawOption>>;
|
|
@@ -186468,6 +187024,8 @@ export type Query = {
|
|
|
186468
187024
|
graphInference_graphclawProductOptionsV2?: Maybe<Array<GraphInferenceGraphclawSourceOptionV2>>;
|
|
186469
187025
|
graphInference_inferenceAppList?: Maybe<Array<GraphInferenceInferenceApp>>;
|
|
186470
187026
|
graphInference_inferenceAppListV2?: Maybe<Array<GraphInferenceInferenceAppV2>>;
|
|
187027
|
+
graphInference_inferenceAppListV3?: Maybe<Array<GraphInferenceInferenceAppV3>>;
|
|
187028
|
+
graphInference_inferenceModels?: Maybe<GraphInferenceInferenceModelsResponse>;
|
|
186471
187029
|
graphInference_inferenceQualityMetrics?: Maybe<GraphInferenceInferenceQualityMetricsResponse>;
|
|
186472
187030
|
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
186473
187031
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
@@ -188759,6 +189317,8 @@ export type Query = {
|
|
|
188759
189317
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
188760
189318
|
jira_rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
188761
189319
|
jira_sprintField?: Maybe<JiraJqlField>;
|
|
189320
|
+
jira_subtaskCreationAdditionalServices?: Maybe<JiraIssueCreateAdditionalServicesResult>;
|
|
189321
|
+
jira_subtaskCreationFields?: Maybe<JiraIssueCreateFieldsResult>;
|
|
188762
189322
|
jira_subtaskCreationLayout?: Maybe<JiraIssueCreateLayoutResult>;
|
|
188763
189323
|
jira_subtaskCreationLayoutWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
188764
189324
|
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
@@ -188818,6 +189378,8 @@ export type Query = {
|
|
|
188818
189378
|
jsmTelemetry_telemetryServiceInfo?: Maybe<JsmTelemetryServiceInfo>;
|
|
188819
189379
|
jsw?: Maybe<JswQuery>;
|
|
188820
189380
|
kitsune_chunks?: Maybe<Array<Maybe<KitsuneChunk>>>;
|
|
189381
|
+
kitsune_connectorConfig?: Maybe<KitsuneConnectorConfig>;
|
|
189382
|
+
kitsune_connectorConfigs?: Maybe<Array<KitsuneConnectorConfig>>;
|
|
188821
189383
|
kitsune_customerByAri?: Maybe<KitsuneCustomer>;
|
|
188822
189384
|
kitsune_customers?: Maybe<Array<Maybe<KitsuneCustomer>>>;
|
|
188823
189385
|
kitsune_entitlements?: Maybe<KitsuneEntitlements>;
|
|
@@ -190329,6 +190891,12 @@ export type QueryAgentWorkspace_WfoSummaryViewArgs = {
|
|
|
190329
190891
|
export type QueryAgentWorkspace_WfoSummaryViewByProjectKeyArgs = {
|
|
190330
190892
|
input: AgentWorkspaceWfoSummaryViewByProjectKeyInput;
|
|
190331
190893
|
};
|
|
190894
|
+
export type QueryAgentWorkspace_WorkforceTeamAccessLevelsArgs = {
|
|
190895
|
+
accountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190896
|
+
cloudId: Scalars['ID']['input'];
|
|
190897
|
+
projectKey: Scalars['String']['input'];
|
|
190898
|
+
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190899
|
+
};
|
|
190332
190900
|
export type QueryAgentWorkspace_WorkloadJqlConfigArgs = {
|
|
190333
190901
|
projectAri: Scalars['ID']['input'];
|
|
190334
190902
|
};
|
|
@@ -190668,6 +191236,7 @@ export type QueryAssetsDm_ComputedIssuesArgs = {
|
|
|
190668
191236
|
cloudId: Scalars['ID']['input'];
|
|
190669
191237
|
objectAttributeId: Scalars['ID']['input'];
|
|
190670
191238
|
objectId: Scalars['ID']['input'];
|
|
191239
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
190671
191240
|
workspaceId: Scalars['ID']['input'];
|
|
190672
191241
|
};
|
|
190673
191242
|
export type QueryAssetsDm_DataDictionariesArgs = {
|
|
@@ -190983,6 +191552,7 @@ export type QueryAssetsDm_PaginatedIssuesArgs = {
|
|
|
190983
191552
|
objectId: Scalars['ID']['input'];
|
|
190984
191553
|
page: Scalars['Int']['input'];
|
|
190985
191554
|
pageSize: Scalars['Int']['input'];
|
|
191555
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
190986
191556
|
workspaceId: Scalars['ID']['input'];
|
|
190987
191557
|
};
|
|
190988
191558
|
export type QueryAssetsDm_RawDataArgs = {
|
|
@@ -191130,6 +191700,8 @@ export type QueryAssetsVertical_ItemMappingsArgs = {
|
|
|
191130
191700
|
cloudId: Scalars['ID']['input'];
|
|
191131
191701
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
191132
191702
|
itemType?: InputMaybe<AssetsVerticalItemType>;
|
|
191703
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
191704
|
+
sort?: InputMaybe<AssetsVerticalItemMappingSortInput>;
|
|
191133
191705
|
spaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
191134
191706
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
191135
191707
|
};
|
|
@@ -192171,6 +192743,14 @@ export type QueryConfluence_LegacyEditorReportDownloadLinkArgs = {
|
|
|
192171
192743
|
spaceId: Scalars['ID']['input'];
|
|
192172
192744
|
taskId: Scalars['ID']['input'];
|
|
192173
192745
|
};
|
|
192746
|
+
export type QueryConfluence_ListLabelsMacroArgs = {
|
|
192747
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192748
|
+
allSpaces?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192749
|
+
cloudId: Scalars['ID']['input'];
|
|
192750
|
+
excludedLabels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
192751
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192752
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
192753
|
+
};
|
|
192174
192754
|
export type QueryConfluence_LoomEntryPointsArgs = {
|
|
192175
192755
|
cloudId: Scalars['ID']['input'];
|
|
192176
192756
|
};
|
|
@@ -192444,6 +193024,12 @@ export type QueryConfluence_SmartSpaceOverviewArgs = {
|
|
|
192444
193024
|
cloudId: Scalars['ID']['input'];
|
|
192445
193025
|
spaceKey: Scalars['String']['input'];
|
|
192446
193026
|
};
|
|
193027
|
+
export type QueryConfluence_SpaceAccessRequestsArgs = {
|
|
193028
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
193029
|
+
cloudId: Scalars['ID']['input'];
|
|
193030
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
193031
|
+
spaceId: Scalars['ID']['input'];
|
|
193032
|
+
};
|
|
192447
193033
|
export type QueryConfluence_SpaceAnalyticsPermissionsArgs = {
|
|
192448
193034
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
192449
193035
|
cloudId: Scalars['ID']['input'];
|
|
@@ -192915,6 +193501,9 @@ export type QueryCpls_FiltersArgs = {
|
|
|
192915
193501
|
includeSuggestions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192916
193502
|
scopeId: Scalars['ID']['input'];
|
|
192917
193503
|
};
|
|
193504
|
+
export type QueryCpls_GetContributorContributionAggregationsArgs = {
|
|
193505
|
+
input: CplsGetContributorContributionAggregationsInput;
|
|
193506
|
+
};
|
|
192918
193507
|
export type QueryCpls_GetContributorScopeAssociationsArgs = {
|
|
192919
193508
|
input: CplsGetContributorScopeAssociationsInput;
|
|
192920
193509
|
};
|
|
@@ -193712,13 +194301,13 @@ export type QueryGetAppInstallationsArgs = {
|
|
|
193712
194301
|
contexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
193713
194302
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
193714
194303
|
edition?: InputMaybe<Array<InstallationEditionInput>>;
|
|
193715
|
-
environmentId?: InputMaybe<Scalars['String']['input']
|
|
194304
|
+
environmentId?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
193716
194305
|
installedOn?: InputMaybe<DateSearchInput>;
|
|
193717
194306
|
license?: InputMaybe<Array<LicenseValue>>;
|
|
193718
194307
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
193719
194308
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
193720
194309
|
status?: InputMaybe<InstallationStatus>;
|
|
193721
|
-
version?: InputMaybe<Scalars['String']['input']
|
|
194310
|
+
version?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
193722
194311
|
};
|
|
193723
194312
|
export type QueryGetCommentReplySuggestionsArgs = {
|
|
193724
194313
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -193925,6 +194514,9 @@ export type QueryGraphInference_GetRelatedReposV3Args = {
|
|
|
193925
194514
|
export type QueryGraphInference_GetSimilarJiraItemsArgs = {
|
|
193926
194515
|
input: GraphInferenceGetSimilarJiraItemsInput;
|
|
193927
194516
|
};
|
|
194517
|
+
export type QueryGraphInference_InferenceModelsArgs = {
|
|
194518
|
+
input: GraphInferenceInferenceModelsInput;
|
|
194519
|
+
};
|
|
193928
194520
|
export type QueryGraphInference_InferenceQualityMetricsArgs = {
|
|
193929
194521
|
input: GraphInferenceInferenceQualityMetricsInput;
|
|
193930
194522
|
};
|
|
@@ -210466,6 +211058,27 @@ export type QueryJira_RovoEnablementStatusArgs = {
|
|
|
210466
211058
|
export type QueryJira_SprintFieldArgs = {
|
|
210467
211059
|
cloudId: Scalars['ID']['input'];
|
|
210468
211060
|
};
|
|
211061
|
+
export type QueryJira_SubtaskCreationAdditionalServicesArgs = {
|
|
211062
|
+
cloudId: Scalars['ID']['input'];
|
|
211063
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
211064
|
+
parentId: JiraParentIdInput;
|
|
211065
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
211066
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
211067
|
+
};
|
|
211068
|
+
export type QueryJira_SubtaskCreationFieldsArgs = {
|
|
211069
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
211070
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
211071
|
+
cloudId: Scalars['ID']['input'];
|
|
211072
|
+
defaultValues?: InputMaybe<JiraIssueFieldsInput>;
|
|
211073
|
+
evaluateMiniMode?: InputMaybe<Scalars['Boolean']['input']>;
|
|
211074
|
+
fieldsFilter?: InputMaybe<JiraIssueCreateFieldsFilter>;
|
|
211075
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
211076
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
211077
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
211078
|
+
parentId: JiraParentIdInput;
|
|
211079
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
211080
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
211081
|
+
};
|
|
210469
211082
|
export type QueryJira_SubtaskCreationLayoutArgs = {
|
|
210470
211083
|
cloudId: Scalars['ID']['input'];
|
|
210471
211084
|
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
@@ -210711,6 +211324,7 @@ export type QueryJsmTelemetry_SearchMetricsArgs = {
|
|
|
210711
211324
|
providerContext?: InputMaybe<Array<JsmTelemetryProviderParameterValueInput>>;
|
|
210712
211325
|
};
|
|
210713
211326
|
export type QueryJsmTelemetry_SuggestMetricsArgs = {
|
|
211327
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
210714
211328
|
incidentId: Scalars['ID']['input'];
|
|
210715
211329
|
provider: JsmTelemetryProviderType;
|
|
210716
211330
|
};
|
|
@@ -210720,6 +211334,15 @@ export type QueryJsmTelemetry_TelemetryServiceInfoArgs = {
|
|
|
210720
211334
|
export type QueryKitsune_ChunksArgs = {
|
|
210721
211335
|
ids: Array<Scalars['ID']['input']>;
|
|
210722
211336
|
};
|
|
211337
|
+
export type QueryKitsune_ConnectorConfigArgs = {
|
|
211338
|
+
id: Scalars['ID']['input'];
|
|
211339
|
+
workspaceAri: Scalars['ID']['input'];
|
|
211340
|
+
};
|
|
211341
|
+
export type QueryKitsune_ConnectorConfigsArgs = {
|
|
211342
|
+
sourceType?: InputMaybe<KitsuneSourceCategoryType>;
|
|
211343
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
211344
|
+
workspaceAri: Scalars['ID']['input'];
|
|
211345
|
+
};
|
|
210723
211346
|
export type QueryKitsune_CustomerByAriArgs = {
|
|
210724
211347
|
ari: Scalars['ID']['input'];
|
|
210725
211348
|
};
|
|
@@ -233219,6 +233842,17 @@ export type TrelloCreateInboxCardActionDisplayEntities = {
|
|
|
233219
233842
|
card?: Maybe<TrelloActionCardEntity>;
|
|
233220
233843
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
233221
233844
|
};
|
|
233845
|
+
export type TrelloCreateLabelInput = {
|
|
233846
|
+
boardId: Scalars['ID']['input'];
|
|
233847
|
+
color: Scalars['String']['input'];
|
|
233848
|
+
name: Scalars['String']['input'];
|
|
233849
|
+
};
|
|
233850
|
+
export type TrelloCreateLabelPayload = Payload & {
|
|
233851
|
+
__typename?: 'TrelloCreateLabelPayload';
|
|
233852
|
+
errors?: Maybe<Array<MutationError>>;
|
|
233853
|
+
label?: Maybe<TrelloLabel>;
|
|
233854
|
+
success: Scalars['Boolean']['output'];
|
|
233855
|
+
};
|
|
233222
233856
|
export type TrelloCreateListInput = {
|
|
233223
233857
|
boardId: Scalars['ID']['input'];
|
|
233224
233858
|
color?: InputMaybe<TrelloListColor>;
|
|
@@ -233557,6 +234191,7 @@ export type TrelloEchoUpdated = {
|
|
|
233557
234191
|
export type TrelloEditBoardWithAiInput = {
|
|
233558
234192
|
boardId: Scalars['ID']['input'];
|
|
233559
234193
|
referenceTaskIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
234194
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
233560
234195
|
userPrompt: Scalars['String']['input'];
|
|
233561
234196
|
};
|
|
233562
234197
|
export type TrelloEditBoardWithAiPayload = Payload & {
|
|
@@ -234803,6 +235438,7 @@ export type TrelloMutationApi = {
|
|
|
234803
235438
|
createCustomField?: Maybe<TrelloCreateCustomFieldPayload>;
|
|
234804
235439
|
createCustomFieldOption?: Maybe<TrelloCreateCustomFieldOptionPayload>;
|
|
234805
235440
|
createEcho?: Maybe<TrelloEchoPayload>;
|
|
235441
|
+
createLabel?: Maybe<TrelloCreateLabelPayload>;
|
|
234806
235442
|
createList?: Maybe<TrelloCreateListPayload>;
|
|
234807
235443
|
createMemberAiRule?: Maybe<TrelloCreateMemberAiRulePayload>;
|
|
234808
235444
|
createMemberFromAa?: Maybe<TrelloCreateMemberFromAaPayload>;
|
|
@@ -234857,6 +235493,7 @@ export type TrelloMutationApi = {
|
|
|
234857
235493
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
234858
235494
|
reopenBoard?: Maybe<TrelloReopenBoardPayload>;
|
|
234859
235495
|
reopenCard?: Maybe<TrelloReopenCardPayload>;
|
|
235496
|
+
reopenList?: Maybe<TrelloReopenListPayload>;
|
|
234860
235497
|
researchCardWithAi?: Maybe<TrelloResearchCardWithAiPayload>;
|
|
234861
235498
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
234862
235499
|
resetMemberAiImageGenerationUsage?: Maybe<TrelloResetMemberAiImageGenerationUsagePayload>;
|
|
@@ -235016,6 +235653,9 @@ export type TrelloMutationApiCreateCustomFieldOptionArgs = {
|
|
|
235016
235653
|
export type TrelloMutationApiCreateEchoArgs = {
|
|
235017
235654
|
input: TrelloEchoInput;
|
|
235018
235655
|
};
|
|
235656
|
+
export type TrelloMutationApiCreateLabelArgs = {
|
|
235657
|
+
input: TrelloCreateLabelInput;
|
|
235658
|
+
};
|
|
235019
235659
|
export type TrelloMutationApiCreateListArgs = {
|
|
235020
235660
|
input: TrelloCreateListInput;
|
|
235021
235661
|
};
|
|
@@ -235175,6 +235815,9 @@ export type TrelloMutationApiReopenBoardArgs = {
|
|
|
235175
235815
|
export type TrelloMutationApiReopenCardArgs = {
|
|
235176
235816
|
input: TrelloReopenCardInput;
|
|
235177
235817
|
};
|
|
235818
|
+
export type TrelloMutationApiReopenListArgs = {
|
|
235819
|
+
input: TrelloReopenListInput;
|
|
235820
|
+
};
|
|
235178
235821
|
export type TrelloMutationApiResearchCardWithAiArgs = {
|
|
235179
235822
|
input: TrelloResearchCardWithAiInput;
|
|
235180
235823
|
};
|
|
@@ -236714,6 +237357,15 @@ export type TrelloReopenCardPayload = Payload & {
|
|
|
236714
237357
|
errors?: Maybe<Array<MutationError>>;
|
|
236715
237358
|
success: Scalars['Boolean']['output'];
|
|
236716
237359
|
};
|
|
237360
|
+
export type TrelloReopenListInput = {
|
|
237361
|
+
listId: Scalars['ID']['input'];
|
|
237362
|
+
};
|
|
237363
|
+
export type TrelloReopenListPayload = Payload & {
|
|
237364
|
+
__typename?: 'TrelloReopenListPayload';
|
|
237365
|
+
errors?: Maybe<Array<MutationError>>;
|
|
237366
|
+
list?: Maybe<TrelloList>;
|
|
237367
|
+
success: Scalars['Boolean']['output'];
|
|
237368
|
+
};
|
|
236717
237369
|
export type TrelloResearchCardSuggestedLink = {
|
|
236718
237370
|
__typename?: 'TrelloResearchCardSuggestedLink';
|
|
236719
237371
|
reason: Scalars['String']['output'];
|