@forge/cli-shared 9.4.0-next.6 → 9.4.0-next.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/out/graphql/graphql-types.d.ts +701 -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
|
};
|
|
@@ -5500,6 +5501,15 @@ export type AdminUnitEdge = {
|
|
|
5500
5501
|
__typename?: 'AdminUnitEdge';
|
|
5501
5502
|
node: AdminUnit;
|
|
5502
5503
|
};
|
|
5504
|
+
export type AdminUnitIconDeleteInput = {
|
|
5505
|
+
orgId: Scalars['ID']['input'];
|
|
5506
|
+
unitId: Scalars['ID']['input'];
|
|
5507
|
+
};
|
|
5508
|
+
export type AdminUnitIconDeletePayload = {
|
|
5509
|
+
__typename?: 'AdminUnitIconDeletePayload';
|
|
5510
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
5511
|
+
success: Scalars['Boolean']['output'];
|
|
5512
|
+
};
|
|
5503
5513
|
export type AdminUnitLinkedConnection = {
|
|
5504
5514
|
__typename?: 'AdminUnitLinkedConnection';
|
|
5505
5515
|
edges?: Maybe<Array<AdminUnitLinkedEdge>>;
|
|
@@ -5905,6 +5915,7 @@ export type AgentSession = AgentSessionNode & {
|
|
|
5905
5915
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
5906
5916
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5907
5917
|
isRovo?: Maybe<Scalars['Boolean']['output']>;
|
|
5918
|
+
jcaSessionAri?: Maybe<Scalars['ID']['output']>;
|
|
5908
5919
|
lastStateChangeAt?: Maybe<Scalars['Long']['output']>;
|
|
5909
5920
|
state?: Maybe<Scalars['String']['output']>;
|
|
5910
5921
|
version?: Maybe<Scalars['Long']['output']>;
|
|
@@ -5923,6 +5934,7 @@ export type AgentSessionAssociation = AgentSessionAssociationNode & {
|
|
|
5923
5934
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
5924
5935
|
id?: Maybe<Scalars['ID']['output']>;
|
|
5925
5936
|
invocationType?: Maybe<Scalars['String']['output']>;
|
|
5937
|
+
jcaSession?: Maybe<DevAiRovoDevSession>;
|
|
5926
5938
|
startTime?: Maybe<Scalars['Long']['output']>;
|
|
5927
5939
|
subEntityId?: Maybe<Scalars['String']['output']>;
|
|
5928
5940
|
triggeredBy?: Maybe<User>;
|
|
@@ -6133,6 +6145,7 @@ export type AgentStudioAgentTemplate = {
|
|
|
6133
6145
|
__typename?: 'AgentStudioAgentTemplate';
|
|
6134
6146
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
6135
6147
|
category?: Maybe<Scalars['String']['output']>;
|
|
6148
|
+
collection?: Maybe<AgentStudioAgentTemplateCollection>;
|
|
6136
6149
|
conversationStarters?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6137
6150
|
description?: Maybe<Scalars['String']['output']>;
|
|
6138
6151
|
howItWorks?: Maybe<Array<Maybe<AgentStudioAgentTemplateHowItWorksStep>>>;
|
|
@@ -6140,7 +6153,15 @@ export type AgentStudioAgentTemplate = {
|
|
|
6140
6153
|
name?: Maybe<Scalars['String']['output']>;
|
|
6141
6154
|
products?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6142
6155
|
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
6156
|
+
usageCount?: Maybe<Scalars['Int']['output']>;
|
|
6143
6157
|
};
|
|
6158
|
+
export declare enum AgentStudioAgentTemplateCollection {
|
|
6159
|
+
Product = "PRODUCT",
|
|
6160
|
+
Service = "SERVICE",
|
|
6161
|
+
Software = "SOFTWARE",
|
|
6162
|
+
Strategy = "STRATEGY",
|
|
6163
|
+
Teamwork = "TEAMWORK"
|
|
6164
|
+
}
|
|
6144
6165
|
export declare enum AgentStudioAgentTemplateHowItWorksRole {
|
|
6145
6166
|
Action = "ACTION",
|
|
6146
6167
|
Knowledge = "KNOWLEDGE",
|
|
@@ -6337,6 +6358,7 @@ export type AgentStudioAssistantScenario = AgentStudioBaseConfiguration & AgentS
|
|
|
6337
6358
|
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
6338
6359
|
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
6339
6360
|
name: Scalars['String']['output'];
|
|
6361
|
+
scenarioId?: Maybe<Scalars['ID']['output']>;
|
|
6340
6362
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
6341
6363
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
6342
6364
|
};
|
|
@@ -7156,6 +7178,7 @@ export type AgentStudioScenario = {
|
|
|
7156
7178
|
mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
7157
7179
|
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
7158
7180
|
name: Scalars['String']['output'];
|
|
7181
|
+
scenarioId?: Maybe<Scalars['ID']['output']>;
|
|
7159
7182
|
scenarioVersion?: Maybe<Scalars['Int']['output']>;
|
|
7160
7183
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
7161
7184
|
};
|
|
@@ -8245,6 +8268,15 @@ export type AgentWorkspaceCreateDraftedRoutingTableEntriesV2Input = {
|
|
|
8245
8268
|
projectKey: Scalars['String']['input'];
|
|
8246
8269
|
serviceFieldType: AgentWorkspaceSmartRoutingServiceFieldType;
|
|
8247
8270
|
};
|
|
8271
|
+
export type AgentWorkspaceCreateDraftedTeamRoutingTableEntriesInput = {
|
|
8272
|
+
cloudId: Scalars['ID']['input'];
|
|
8273
|
+
projectKey: Scalars['String']['input'];
|
|
8274
|
+
};
|
|
8275
|
+
export type AgentWorkspaceCreateDraftedTeamRoutingTableEntriesPayload = {
|
|
8276
|
+
__typename?: 'AgentWorkspaceCreateDraftedTeamRoutingTableEntriesPayload';
|
|
8277
|
+
entries: Array<AgentWorkspaceDraftedTeamRoutingTableEntry>;
|
|
8278
|
+
rowsInserted: Scalars['Int']['output'];
|
|
8279
|
+
};
|
|
8248
8280
|
export type AgentWorkspaceCreateScheduleInput = {
|
|
8249
8281
|
agentIds: Array<Scalars['ID']['input']>;
|
|
8250
8282
|
cloudId: Scalars['ID']['input'];
|
|
@@ -8376,6 +8408,7 @@ export type AgentWorkspaceDraftedTeamRoutingTableEntry = {
|
|
|
8376
8408
|
lastModifiedAt: Scalars['String']['output'];
|
|
8377
8409
|
lastModifiedBy: Scalars['ID']['output'];
|
|
8378
8410
|
source: AgentWorkspaceDraftedRoutingTableEntrySource;
|
|
8411
|
+
team?: Maybe<TeamV2>;
|
|
8379
8412
|
teamAri: Scalars['ID']['output'];
|
|
8380
8413
|
};
|
|
8381
8414
|
export declare enum AgentWorkspaceEditBoundReason {
|
|
@@ -8964,6 +8997,10 @@ export type AgentWorkspaceSetTeamCapacitiesPayload = {
|
|
|
8964
8997
|
success: Scalars['Boolean']['output'];
|
|
8965
8998
|
teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
8966
8999
|
};
|
|
9000
|
+
export type AgentWorkspaceSetWorkforceTeamAccessLevelsPayload = {
|
|
9001
|
+
__typename?: 'AgentWorkspaceSetWorkforceTeamAccessLevelsPayload';
|
|
9002
|
+
accessLevels: Array<AgentWorkspaceWorkforceTeamAccessLevelResult>;
|
|
9003
|
+
};
|
|
8967
9004
|
export type AgentWorkspaceSetWorkloadJqlInput = {
|
|
8968
9005
|
jql: Scalars['String']['input'];
|
|
8969
9006
|
projectAri: Scalars['ID']['input'];
|
|
@@ -9206,6 +9243,7 @@ export type AgentWorkspaceSkillUpdatePayload = {
|
|
|
9206
9243
|
export type AgentWorkspaceSmartRoutingConfig = {
|
|
9207
9244
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
9208
9245
|
autoTeamAssignmentEnabled: Scalars['Boolean']['output'];
|
|
9246
|
+
defaultTeam?: Maybe<Scalars['ID']['output']>;
|
|
9209
9247
|
enabled: Scalars['Boolean']['output'];
|
|
9210
9248
|
inputs: Array<AgentWorkspaceConfigurableRoutingInputSetting>;
|
|
9211
9249
|
routingMode?: Maybe<AgentWorkspaceSmartRoutingMode>;
|
|
@@ -9390,6 +9428,14 @@ export type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
|
|
|
9390
9428
|
rowsWritten: Scalars['Int']['output'];
|
|
9391
9429
|
teamsNewlyConnected: Scalars['Int']['output'];
|
|
9392
9430
|
};
|
|
9431
|
+
export type AgentWorkspaceSubmitDraftedTeamRoutingTableInput = {
|
|
9432
|
+
cloudId: Scalars['ID']['input'];
|
|
9433
|
+
projectKey: Scalars['String']['input'];
|
|
9434
|
+
};
|
|
9435
|
+
export type AgentWorkspaceSubmitDraftedTeamRoutingTablePayload = {
|
|
9436
|
+
__typename?: 'AgentWorkspaceSubmitDraftedTeamRoutingTablePayload';
|
|
9437
|
+
rowsWritten: Scalars['Int']['output'];
|
|
9438
|
+
};
|
|
9393
9439
|
export type AgentWorkspaceTeam = {
|
|
9394
9440
|
__typename?: 'AgentWorkspaceTeam';
|
|
9395
9441
|
team?: Maybe<TeamV2>;
|
|
@@ -9457,8 +9503,8 @@ export type AgentWorkspaceTeamRoutingTableEntries = {
|
|
|
9457
9503
|
export type AgentWorkspaceTeamRoutingTableEntry = {
|
|
9458
9504
|
__typename?: 'AgentWorkspaceTeamRoutingTableEntry';
|
|
9459
9505
|
description: Scalars['String']['output'];
|
|
9506
|
+
team?: Maybe<TeamV2>;
|
|
9460
9507
|
teamAri: Scalars['ID']['output'];
|
|
9461
|
-
teamName?: Maybe<Scalars['String']['output']>;
|
|
9462
9508
|
};
|
|
9463
9509
|
export type AgentWorkspaceTeamSchedules = {
|
|
9464
9510
|
__typename?: 'AgentWorkspaceTeamSchedules';
|
|
@@ -9552,6 +9598,7 @@ export type AgentWorkspaceUpdateConfigurableRoutingTriggersInput = {
|
|
|
9552
9598
|
export type AgentWorkspaceUpdateRoutingConfigInput = {
|
|
9553
9599
|
autoTeamAssignmentEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9554
9600
|
cloudId: Scalars['ID']['input'];
|
|
9601
|
+
defaultTeam?: InputMaybe<Scalars['ID']['input']>;
|
|
9555
9602
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9556
9603
|
projectKey: Scalars['String']['input'];
|
|
9557
9604
|
routingMode?: InputMaybe<AgentWorkspaceSmartRoutingMode>;
|
|
@@ -9631,17 +9678,6 @@ export type AgentWorkspaceUpsertDraftedTeamRoutingTableEntryPayload = {
|
|
|
9631
9678
|
__typename?: 'AgentWorkspaceUpsertDraftedTeamRoutingTableEntryPayload';
|
|
9632
9679
|
entry: AgentWorkspaceDraftedTeamRoutingTableEntry;
|
|
9633
9680
|
};
|
|
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
9681
|
export type AgentWorkspaceUser = {
|
|
9646
9682
|
__typename?: 'AgentWorkspaceUser';
|
|
9647
9683
|
accountId: Scalars['ID']['output'];
|
|
@@ -9686,6 +9722,23 @@ export type AgentWorkspaceWfoSummaryViewResult = {
|
|
|
9686
9722
|
errors?: Maybe<Array<QueryError>>;
|
|
9687
9723
|
summaryView?: Maybe<AgentWorkspaceWfoSummaryView>;
|
|
9688
9724
|
};
|
|
9725
|
+
export declare enum AgentWorkspaceWorkforceTeamAccessLevel {
|
|
9726
|
+
TeamAdmin = "TEAM_ADMIN",
|
|
9727
|
+
TeamMember = "TEAM_MEMBER"
|
|
9728
|
+
}
|
|
9729
|
+
export type AgentWorkspaceWorkforceTeamAccessLevelResult = {
|
|
9730
|
+
__typename?: 'AgentWorkspaceWorkforceTeamAccessLevelResult';
|
|
9731
|
+
accessLevel: AgentWorkspaceWorkforceTeamAccessLevel;
|
|
9732
|
+
accountId: Scalars['ID']['output'];
|
|
9733
|
+
projectARI: Scalars['ID']['output'];
|
|
9734
|
+
teamARI: Scalars['ID']['output'];
|
|
9735
|
+
};
|
|
9736
|
+
export type AgentWorkspaceWorkforceTeamAccessLevelUpdateInput = {
|
|
9737
|
+
accessLevel: AgentWorkspaceWorkforceTeamAccessLevel;
|
|
9738
|
+
accountId: Scalars['ID']['input'];
|
|
9739
|
+
projectARI: Scalars['ID']['input'];
|
|
9740
|
+
teamARI: Scalars['ID']['input'];
|
|
9741
|
+
};
|
|
9689
9742
|
export type AgentWorkspaceWorkloadJqlConfig = {
|
|
9690
9743
|
__typename?: 'AgentWorkspaceWorkloadJqlConfig';
|
|
9691
9744
|
jql: Scalars['String']['output'];
|
|
@@ -10145,7 +10198,8 @@ export declare enum AiManagedObjectStatus {
|
|
|
10145
10198
|
Suspended = "SUSPENDED"
|
|
10146
10199
|
}
|
|
10147
10200
|
export declare enum AiManagedObjectType {
|
|
10148
|
-
Block = "BLOCK"
|
|
10201
|
+
Block = "BLOCK",
|
|
10202
|
+
Page = "PAGE"
|
|
10149
10203
|
}
|
|
10150
10204
|
export type AiManagedObjectUpdateInput = {
|
|
10151
10205
|
config: AiManagedObjectConfigCreateInput;
|
|
@@ -11158,28 +11212,38 @@ export type AppLogsWithMetaData = {
|
|
|
11158
11212
|
__typename?: 'AppLogsWithMetaData';
|
|
11159
11213
|
appId: Scalars['String']['output'];
|
|
11160
11214
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
11215
|
+
browserName?: Maybe<Scalars['String']['output']>;
|
|
11216
|
+
browserVersion?: Maybe<Scalars['String']['output']>;
|
|
11161
11217
|
cloudwatchId?: Maybe<Scalars['String']['output']>;
|
|
11162
11218
|
container?: Maybe<Scalars['String']['output']>;
|
|
11163
11219
|
context?: Maybe<Context>;
|
|
11164
11220
|
edition?: Maybe<EditionValue>;
|
|
11165
11221
|
environmentId: Scalars['String']['output'];
|
|
11166
11222
|
error?: Maybe<Scalars['String']['output']>;
|
|
11223
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
11224
|
+
extensionId?: Maybe<Scalars['String']['output']>;
|
|
11225
|
+
extensionType?: Maybe<Scalars['String']['output']>;
|
|
11167
11226
|
functionKey?: Maybe<Scalars['String']['output']>;
|
|
11168
11227
|
installationContext?: Maybe<Scalars['String']['output']>;
|
|
11228
|
+
installationId?: Maybe<Scalars['String']['output']>;
|
|
11169
11229
|
instance?: Maybe<Scalars['String']['output']>;
|
|
11170
11230
|
invocationId: Scalars['String']['output'];
|
|
11171
11231
|
licenseState?: Maybe<LicenseValue>;
|
|
11232
|
+
logSource?: Maybe<FrontendLogSource>;
|
|
11172
11233
|
lvl?: Maybe<Scalars['String']['output']>;
|
|
11173
11234
|
message?: Maybe<Scalars['String']['output']>;
|
|
11174
11235
|
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
11175
11236
|
moduleType?: Maybe<Scalars['String']['output']>;
|
|
11237
|
+
osName?: Maybe<Scalars['String']['output']>;
|
|
11176
11238
|
other?: Maybe<Scalars['String']['output']>;
|
|
11177
11239
|
p?: Maybe<Scalars['String']['output']>;
|
|
11178
11240
|
product?: Maybe<Scalars['String']['output']>;
|
|
11241
|
+
renderType?: Maybe<Scalars['String']['output']>;
|
|
11179
11242
|
service?: Maybe<Scalars['String']['output']>;
|
|
11180
11243
|
tenantContexts?: Maybe<DevConsoleTenantContext>;
|
|
11181
11244
|
traceId?: Maybe<Scalars['String']['output']>;
|
|
11182
11245
|
ts: Scalars['String']['output'];
|
|
11246
|
+
userAgent?: Maybe<Scalars['String']['output']>;
|
|
11183
11247
|
};
|
|
11184
11248
|
export type AppLogsWithMetaDataResponse = {
|
|
11185
11249
|
__typename?: 'AppLogsWithMetaDataResponse';
|
|
@@ -12418,6 +12482,16 @@ export type AssetsDmBigfixDefaultQueryResponse = {
|
|
|
12418
12482
|
isSuccessful: Scalars['Boolean']['output'];
|
|
12419
12483
|
query: Scalars['String']['output'];
|
|
12420
12484
|
};
|
|
12485
|
+
export type AssetsDmCancelCleanseResponse = {
|
|
12486
|
+
__typename?: 'AssetsDMCancelCleanseResponse';
|
|
12487
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
12488
|
+
message: Scalars['String']['output'];
|
|
12489
|
+
};
|
|
12490
|
+
export type AssetsDmCancelImportResponse = {
|
|
12491
|
+
__typename?: 'AssetsDMCancelImportResponse';
|
|
12492
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
12493
|
+
message: Scalars['String']['output'];
|
|
12494
|
+
};
|
|
12421
12495
|
export type AssetsDmChangeDataSourceStatusInput = {
|
|
12422
12496
|
dataSourceId: Scalars['ID']['input'];
|
|
12423
12497
|
status: AssetsDmDataSourceStatus;
|
|
@@ -12651,6 +12725,7 @@ export type AssetsDmDataDictionaryRow = {
|
|
|
12651
12725
|
destinationObjectAttributeId: Scalars['ID']['output'];
|
|
12652
12726
|
dmComputeDictionaryDate: Scalars['String']['output'];
|
|
12653
12727
|
dmComputeDictionaryId?: Maybe<Scalars['ID']['output']>;
|
|
12728
|
+
isSyncRequired: Scalars['Boolean']['output'];
|
|
12654
12729
|
latestDictionaryUpdateDate?: Maybe<Scalars['String']['output']>;
|
|
12655
12730
|
name: Scalars['String']['output'];
|
|
12656
12731
|
objectId: Scalars['ID']['output'];
|
|
@@ -14528,6 +14603,11 @@ export declare enum AssetsDmStepStatus {
|
|
|
14528
14603
|
NotStarted = "NOT_STARTED",
|
|
14529
14604
|
Outdated = "OUTDATED"
|
|
14530
14605
|
}
|
|
14606
|
+
export type AssetsDmSyncDataDictionaryResponse = {
|
|
14607
|
+
__typename?: 'AssetsDMSyncDataDictionaryResponse';
|
|
14608
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
14609
|
+
message: Scalars['String']['output'];
|
|
14610
|
+
};
|
|
14531
14611
|
export type AssetsDmTagMember = {
|
|
14532
14612
|
__typename?: 'AssetsDMTagMember';
|
|
14533
14613
|
comment?: Maybe<Scalars['String']['output']>;
|
|
@@ -14960,6 +15040,29 @@ export type AssetsObjectTypeAttributeValue = {
|
|
|
14960
15040
|
searchValue?: Maybe<Scalars['String']['output']>;
|
|
14961
15041
|
value?: Maybe<AssetsAttributeValue>;
|
|
14962
15042
|
};
|
|
15043
|
+
export type AssetsPeopleAttribute = AssetsObjectTypeAttribute & {
|
|
15044
|
+
__typename?: 'AssetsPeopleAttribute';
|
|
15045
|
+
disabledPermissions?: Maybe<Array<Scalars['String']['output']>>;
|
|
15046
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
15047
|
+
id: Scalars['ID']['output'];
|
|
15048
|
+
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
15049
|
+
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
15050
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15051
|
+
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
15052
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
15053
|
+
};
|
|
15054
|
+
export type AssetsPeopleAttributeOnObject = AssetsAttributeOnObject & {
|
|
15055
|
+
__typename?: 'AssetsPeopleAttributeOnObject';
|
|
15056
|
+
attribute?: Maybe<AssetsPeopleAttribute>;
|
|
15057
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
15058
|
+
id: Scalars['ID']['output'];
|
|
15059
|
+
identityGroups?: Maybe<Array<AssetsIdentityGroup>>;
|
|
15060
|
+
name: Scalars['String']['output'];
|
|
15061
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
15062
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
15063
|
+
value?: Maybe<Array<AssetsPeopleAttributeValue>>;
|
|
15064
|
+
};
|
|
15065
|
+
export type AssetsPeopleAttributeValue = AppUser | AtlassianAccountUser | CustomerUser | IdentityGroup | TeamV2;
|
|
14963
15066
|
export type AssetsPrimitiveAttributeValue = {
|
|
14964
15067
|
__typename?: 'AssetsPrimitiveAttributeValue';
|
|
14965
15068
|
value: Scalars['String']['output'];
|
|
@@ -15149,6 +15252,7 @@ export type AssetsTextAttribute = AssetsObjectTypeAttribute & {
|
|
|
15149
15252
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
15150
15253
|
id: Scalars['ID']['output'];
|
|
15151
15254
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
15255
|
+
isLabel?: Maybe<Scalars['Boolean']['output']>;
|
|
15152
15256
|
maximumCardinality?: Maybe<Scalars['Int']['output']>;
|
|
15153
15257
|
name?: Maybe<Scalars['String']['output']>;
|
|
15154
15258
|
objectTypeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -15970,6 +16074,13 @@ export type AssetsVerticalItemMappingQueryErrorExtension = QueryErrorExtension &
|
|
|
15970
16074
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
15971
16075
|
};
|
|
15972
16076
|
export type AssetsVerticalItemMappingResult = AssetsVerticalItemMapping | QueryError;
|
|
16077
|
+
export declare enum AssetsVerticalItemMappingSortField {
|
|
16078
|
+
RequestTypeName = "REQUEST_TYPE_NAME"
|
|
16079
|
+
}
|
|
16080
|
+
export type AssetsVerticalItemMappingSortInput = {
|
|
16081
|
+
direction?: SortDirection;
|
|
16082
|
+
field: AssetsVerticalItemMappingSortField;
|
|
16083
|
+
};
|
|
15973
16084
|
export type AssetsVerticalItemMappingsPayload = Payload & {
|
|
15974
16085
|
__typename?: 'AssetsVerticalItemMappingsPayload';
|
|
15975
16086
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -16281,6 +16392,7 @@ export type AssetsVerticalStockroomObjectsResult = AssetsVerticalStockroomObject
|
|
|
16281
16392
|
export type AssetsVerticalTenantContext = {
|
|
16282
16393
|
__typename?: 'AssetsVerticalTenantContext';
|
|
16283
16394
|
assetsVerticalWorkspaceAri?: Maybe<Scalars['ID']['output']>;
|
|
16395
|
+
isHipaaEnabled: Scalars['Boolean']['output'];
|
|
16284
16396
|
};
|
|
16285
16397
|
export declare enum AssetsVerticalTenantContextQueryErrorCode {
|
|
16286
16398
|
NotFound = "NOT_FOUND",
|
|
@@ -16393,6 +16505,8 @@ export type AssetsVerticalVerticalInstantiationCategoryItemsArgs = {
|
|
|
16393
16505
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
16394
16506
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
16395
16507
|
itemType?: InputMaybe<AssetsVerticalItemType>;
|
|
16508
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
16509
|
+
sort?: InputMaybe<AssetsVerticalItemMappingSortInput>;
|
|
16396
16510
|
spaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
16397
16511
|
};
|
|
16398
16512
|
export type AssetsVerticalVerticalInstantiationCategoryConnection = {
|
|
@@ -23327,6 +23441,7 @@ export type CommerceExpEntitlementKind = {
|
|
|
23327
23441
|
isMultiInstance?: Maybe<Scalars['Boolean']['output']>;
|
|
23328
23442
|
isMultiInstanceChild?: Maybe<Scalars['Boolean']['output']>;
|
|
23329
23443
|
isPlatformApp?: Maybe<Scalars['Boolean']['output']>;
|
|
23444
|
+
supportsMarketplaceApps?: Maybe<Scalars['Boolean']['output']>;
|
|
23330
23445
|
};
|
|
23331
23446
|
export declare enum CommerceExpEntitlementLevel {
|
|
23332
23447
|
BitbucketWorkspace = "BitbucketWorkspace",
|
|
@@ -33665,6 +33780,21 @@ export type ConfluenceLikesSummary = {
|
|
|
33665
33780
|
count?: Maybe<Scalars['Int']['output']>;
|
|
33666
33781
|
likes?: Maybe<Array<Maybe<ConfluenceLike>>>;
|
|
33667
33782
|
};
|
|
33783
|
+
export type ConfluenceListLabelsEntry = {
|
|
33784
|
+
__typename?: 'ConfluenceListLabelsEntry';
|
|
33785
|
+
name: Scalars['String']['output'];
|
|
33786
|
+
};
|
|
33787
|
+
export type ConfluenceListLabelsEntryConnection = {
|
|
33788
|
+
__typename?: 'ConfluenceListLabelsEntryConnection';
|
|
33789
|
+
edges?: Maybe<Array<Maybe<ConfluenceListLabelsEntryEdge>>>;
|
|
33790
|
+
nodes?: Maybe<Array<Maybe<ConfluenceListLabelsEntry>>>;
|
|
33791
|
+
pageInfo: ConfluencePageInfo;
|
|
33792
|
+
};
|
|
33793
|
+
export type ConfluenceListLabelsEntryEdge = {
|
|
33794
|
+
__typename?: 'ConfluenceListLabelsEntryEdge';
|
|
33795
|
+
cursor: Scalars['String']['output'];
|
|
33796
|
+
node?: Maybe<ConfluenceListLabelsEntry>;
|
|
33797
|
+
};
|
|
33668
33798
|
export declare enum ConfluenceLoadTimeRating {
|
|
33669
33799
|
Fast = "FAST",
|
|
33670
33800
|
Moderate = "MODERATE",
|
|
@@ -36047,6 +36177,19 @@ export type ConfluenceResolveInlineCommentPayload = {
|
|
|
36047
36177
|
errors?: Maybe<Array<MutationError>>;
|
|
36048
36178
|
success: Scalars['Boolean']['output'];
|
|
36049
36179
|
};
|
|
36180
|
+
export type ConfluenceResolveSpaceAccessRequestInput = {
|
|
36181
|
+
decision: ConfluenceSpaceAccessRequestDecision;
|
|
36182
|
+
requestId: Scalars['ID']['input'];
|
|
36183
|
+
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
36184
|
+
};
|
|
36185
|
+
export type ConfluenceResolveSpaceAccessRequestPayload = Payload & {
|
|
36186
|
+
__typename?: 'ConfluenceResolveSpaceAccessRequestPayload';
|
|
36187
|
+
errors?: Maybe<Array<MutationError>>;
|
|
36188
|
+
spaceAccessRequest?: Maybe<ConfluenceSpaceAccessRequest>;
|
|
36189
|
+
success: Scalars['Boolean']['output'];
|
|
36190
|
+
undoExpiresAt?: Maybe<Scalars['Long']['output']>;
|
|
36191
|
+
undoToken?: Maybe<Scalars['String']['output']>;
|
|
36192
|
+
};
|
|
36050
36193
|
export type ConfluenceResolvedMacroPageLinkParameter = {
|
|
36051
36194
|
__typename?: 'ConfluenceResolvedMacroPageLinkParameter';
|
|
36052
36195
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -36542,6 +36685,39 @@ export type ConfluenceSpace = Node & {
|
|
|
36542
36685
|
type?: Maybe<ConfluenceSpaceType>;
|
|
36543
36686
|
typeSettings?: Maybe<ConfluenceSpaceTypeSettings>;
|
|
36544
36687
|
};
|
|
36688
|
+
export type ConfluenceSpaceAccessRequest = {
|
|
36689
|
+
__typename?: 'ConfluenceSpaceAccessRequest';
|
|
36690
|
+
grantedRoleId?: Maybe<Scalars['ID']['output']>;
|
|
36691
|
+
id: Scalars['ID']['output'];
|
|
36692
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
36693
|
+
requestedAt: Scalars['Long']['output'];
|
|
36694
|
+
requester?: Maybe<ConfluenceUser>;
|
|
36695
|
+
requesterAccountId: Scalars['ID']['output'];
|
|
36696
|
+
resolvedAt?: Maybe<Scalars['Long']['output']>;
|
|
36697
|
+
spaceId: Scalars['ID']['output'];
|
|
36698
|
+
status: ConfluenceSpaceAccessRequestStatus;
|
|
36699
|
+
};
|
|
36700
|
+
export type ConfluenceSpaceAccessRequestConnection = {
|
|
36701
|
+
__typename?: 'ConfluenceSpaceAccessRequestConnection';
|
|
36702
|
+
edges?: Maybe<Array<Maybe<ConfluenceSpaceAccessRequestEdge>>>;
|
|
36703
|
+
nodes: Array<Maybe<ConfluenceSpaceAccessRequest>>;
|
|
36704
|
+
pageInfo: PageInfo;
|
|
36705
|
+
totalCount: Scalars['Int']['output'];
|
|
36706
|
+
};
|
|
36707
|
+
export declare enum ConfluenceSpaceAccessRequestDecision {
|
|
36708
|
+
Approve = "APPROVE",
|
|
36709
|
+
Deny = "DENY"
|
|
36710
|
+
}
|
|
36711
|
+
export type ConfluenceSpaceAccessRequestEdge = {
|
|
36712
|
+
__typename?: 'ConfluenceSpaceAccessRequestEdge';
|
|
36713
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
36714
|
+
node: ConfluenceSpaceAccessRequest;
|
|
36715
|
+
};
|
|
36716
|
+
export declare enum ConfluenceSpaceAccessRequestStatus {
|
|
36717
|
+
Approved = "APPROVED",
|
|
36718
|
+
Denied = "DENIED",
|
|
36719
|
+
Pending = "PENDING"
|
|
36720
|
+
}
|
|
36545
36721
|
export type ConfluenceSpaceAnalyticsPermissionConnection = {
|
|
36546
36722
|
__typename?: 'ConfluenceSpaceAnalyticsPermissionConnection';
|
|
36547
36723
|
edges?: Maybe<Array<Maybe<ConfluenceSpaceAnalyticsPermissionEdge>>>;
|
|
@@ -37171,6 +37347,16 @@ export type ConfluenceUnSubscribeCalendarPayload = Payload & {
|
|
|
37171
37347
|
errors?: Maybe<Array<MutationError>>;
|
|
37172
37348
|
success: Scalars['Boolean']['output'];
|
|
37173
37349
|
};
|
|
37350
|
+
export type ConfluenceUndoSpaceAccessRequestDecisionInput = {
|
|
37351
|
+
requestId: Scalars['ID']['input'];
|
|
37352
|
+
undoToken: Scalars['String']['input'];
|
|
37353
|
+
};
|
|
37354
|
+
export type ConfluenceUndoSpaceAccessRequestDecisionPayload = Payload & {
|
|
37355
|
+
__typename?: 'ConfluenceUndoSpaceAccessRequestDecisionPayload';
|
|
37356
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37357
|
+
spaceAccessRequest?: Maybe<ConfluenceSpaceAccessRequest>;
|
|
37358
|
+
success: Scalars['Boolean']['output'];
|
|
37359
|
+
};
|
|
37174
37360
|
export type ConfluenceUnpromoteBlueprintInput = {
|
|
37175
37361
|
id: Scalars['ID']['input'];
|
|
37176
37362
|
spaceId: Scalars['Long']['input'];
|
|
@@ -39983,6 +40169,19 @@ export type CplsContributorConnection = HasPageInfo & {
|
|
|
39983
40169
|
edges?: Maybe<Array<Maybe<CplsContributorEdge>>>;
|
|
39984
40170
|
pageInfo: PageInfo;
|
|
39985
40171
|
};
|
|
40172
|
+
export type CplsContributorContributionAggregations = {
|
|
40173
|
+
__typename?: 'CplsContributorContributionAggregations';
|
|
40174
|
+
contributionAggregations: Array<CplsContributionAggregation>;
|
|
40175
|
+
contributorData?: Maybe<CplsContributorData>;
|
|
40176
|
+
contributorDataId: Scalars['ID']['output'];
|
|
40177
|
+
};
|
|
40178
|
+
export type CplsContributorContributionAggregationsResult = {
|
|
40179
|
+
__typename?: 'CplsContributorContributionAggregationsResult';
|
|
40180
|
+
contributorContributionAggregations?: Maybe<Array<CplsContributorContributionAggregations>>;
|
|
40181
|
+
endDate?: Maybe<Scalars['Date']['output']>;
|
|
40182
|
+
startDate?: Maybe<Scalars['Date']['output']>;
|
|
40183
|
+
timeScale?: Maybe<CplsTimeScaleType>;
|
|
40184
|
+
};
|
|
39986
40185
|
export type CplsContributorData = AppUser | AtlassianAccountUser | CustomerUser;
|
|
39987
40186
|
export type CplsContributorDataEntity = {
|
|
39988
40187
|
__typename?: 'CplsContributorDataEntity';
|
|
@@ -40327,6 +40526,12 @@ export type CplsFiltersInput = {
|
|
|
40327
40526
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
40328
40527
|
workTypes?: InputMaybe<Array<CplsWorkType>>;
|
|
40329
40528
|
};
|
|
40529
|
+
export type CplsGetContributorContributionAggregationsInput = {
|
|
40530
|
+
cloudId: Scalars['ID']['input'];
|
|
40531
|
+
contributionDateRange?: InputMaybe<CplsContributionDateRange>;
|
|
40532
|
+
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
40533
|
+
timeScale?: InputMaybe<CplsTimeScaleType>;
|
|
40534
|
+
};
|
|
40330
40535
|
export type CplsGetContributorScopeAssociationsInput = {
|
|
40331
40536
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
40332
40537
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -40476,6 +40681,7 @@ export type CplsTimeCell = {
|
|
|
40476
40681
|
export declare enum CplsTimeScaleType {
|
|
40477
40682
|
Fortnightly = "FORTNIGHTLY",
|
|
40478
40683
|
Monthly = "MONTHLY",
|
|
40684
|
+
Quarterly = "QUARTERLY",
|
|
40479
40685
|
Weekly = "WEEKLY"
|
|
40480
40686
|
}
|
|
40481
40687
|
export type CplsUpdateCustomContributionTargetInput = {
|
|
@@ -53289,6 +53495,11 @@ export type FrontCover = {
|
|
|
53289
53495
|
frontCoverState?: Maybe<Scalars['String']['output']>;
|
|
53290
53496
|
showFrontCover: Scalars['Boolean']['output'];
|
|
53291
53497
|
};
|
|
53498
|
+
export declare enum FrontendLogSource {
|
|
53499
|
+
Console = "CONSOLE",
|
|
53500
|
+
UncaughtException = "UNCAUGHT_EXCEPTION",
|
|
53501
|
+
UnhandledRejection = "UNHANDLED_REJECTION"
|
|
53502
|
+
}
|
|
53292
53503
|
export type FrontendResource = {
|
|
53293
53504
|
__typename?: 'FrontendResource';
|
|
53294
53505
|
attributes: Array<Maybe<MapOfStringToString>>;
|
|
@@ -54593,6 +54804,18 @@ export type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
54593
54804
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
54594
54805
|
node: GraphIncidentLinkedJswIssueRelationship;
|
|
54595
54806
|
};
|
|
54807
|
+
export type GraphInferenceAiInput = {
|
|
54808
|
+
model: GraphInferenceAiModelInput;
|
|
54809
|
+
useCaseId: Scalars['String']['input'];
|
|
54810
|
+
};
|
|
54811
|
+
export type GraphInferenceAiModelInput = {
|
|
54812
|
+
id: Scalars['String']['input'];
|
|
54813
|
+
reasoningLevel: Scalars['String']['input'];
|
|
54814
|
+
};
|
|
54815
|
+
export declare enum GraphInferenceDestinationMode {
|
|
54816
|
+
Graph = "GRAPH",
|
|
54817
|
+
Shadow = "SHADOW"
|
|
54818
|
+
}
|
|
54596
54819
|
export declare enum GraphInferenceEnvironment {
|
|
54597
54820
|
Dev = "DEV",
|
|
54598
54821
|
Production = "PRODUCTION",
|
|
@@ -54668,6 +54891,18 @@ export type GraphInferenceGetSimilarJiraItemsResponse = {
|
|
|
54668
54891
|
meta: GraphInferenceSimilarJiraItemsMeta;
|
|
54669
54892
|
root: GraphInferenceSimilarJiraItemsRoot;
|
|
54670
54893
|
};
|
|
54894
|
+
export type GraphInferenceGraphclawInferOptionV3 = {
|
|
54895
|
+
__typename?: 'GraphInferenceGraphclawInferOptionV3';
|
|
54896
|
+
compatibleTargets: Array<Scalars['String']['output']>;
|
|
54897
|
+
enabled: Scalars['Boolean']['output'];
|
|
54898
|
+
graphAvailable: Scalars['Boolean']['output'];
|
|
54899
|
+
id: Scalars['String']['output'];
|
|
54900
|
+
name: Scalars['String']['output'];
|
|
54901
|
+
resultKind: Scalars['String']['output'];
|
|
54902
|
+
supportedDestinations: Array<Scalars['String']['output']>;
|
|
54903
|
+
targetRequirement: Scalars['String']['output'];
|
|
54904
|
+
targetUsage: Scalars['String']['output'];
|
|
54905
|
+
};
|
|
54671
54906
|
export type GraphInferenceGraphclawMatcherOptionV2 = {
|
|
54672
54907
|
__typename?: 'GraphInferenceGraphclawMatcherOptionV2';
|
|
54673
54908
|
enabled: Scalars['Boolean']['output'];
|
|
@@ -54722,12 +54957,28 @@ export type GraphInferenceInferenceAppAddV2Input = {
|
|
|
54722
54957
|
source: Scalars['String']['input'];
|
|
54723
54958
|
target: Scalars['String']['input'];
|
|
54724
54959
|
};
|
|
54960
|
+
export type GraphInferenceInferenceAppAddV3Input = {
|
|
54961
|
+
ai?: InputMaybe<GraphInferenceAiInput>;
|
|
54962
|
+
createRequestId: Scalars['String']['input'];
|
|
54963
|
+
destination?: InputMaybe<GraphInferenceDestinationMode>;
|
|
54964
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54965
|
+
forTargets: Array<Scalars['String']['input']>;
|
|
54966
|
+
infer: Scalars['String']['input'];
|
|
54967
|
+
matchers: Array<Scalars['String']['input']>;
|
|
54968
|
+
name: Scalars['String']['input'];
|
|
54969
|
+
promptOverride?: InputMaybe<Scalars['String']['input']>;
|
|
54970
|
+
realtime?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54971
|
+
source: Scalars['String']['input'];
|
|
54972
|
+
};
|
|
54725
54973
|
export type GraphInferenceInferenceAppDeleteInput = {
|
|
54726
54974
|
id: Scalars['String']['input'];
|
|
54727
54975
|
};
|
|
54728
54976
|
export type GraphInferenceInferenceAppDeleteV2Input = {
|
|
54729
54977
|
id: Scalars['String']['input'];
|
|
54730
54978
|
};
|
|
54979
|
+
export type GraphInferenceInferenceAppDeleteV3Input = {
|
|
54980
|
+
id: Scalars['String']['input'];
|
|
54981
|
+
};
|
|
54731
54982
|
export type GraphInferenceInferenceAppEditInput = {
|
|
54732
54983
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54733
54984
|
id: Scalars['String']['input'];
|
|
@@ -54748,6 +54999,19 @@ export type GraphInferenceInferenceAppEditV2Input = {
|
|
|
54748
54999
|
source?: InputMaybe<Scalars['String']['input']>;
|
|
54749
55000
|
target?: InputMaybe<Scalars['String']['input']>;
|
|
54750
55001
|
};
|
|
55002
|
+
export type GraphInferenceInferenceAppEditV3Input = {
|
|
55003
|
+
ai?: InputMaybe<GraphInferenceAiInput>;
|
|
55004
|
+
destination?: InputMaybe<GraphInferenceDestinationMode>;
|
|
55005
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55006
|
+
forTargets?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
55007
|
+
id: Scalars['String']['input'];
|
|
55008
|
+
infer?: InputMaybe<Scalars['String']['input']>;
|
|
55009
|
+
matchers?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
55010
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
55011
|
+
promptOverride?: InputMaybe<Scalars['String']['input']>;
|
|
55012
|
+
realtime?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55013
|
+
source?: InputMaybe<Scalars['String']['input']>;
|
|
55014
|
+
};
|
|
54751
55015
|
export type GraphInferenceInferenceAppMutationPayload = {
|
|
54752
55016
|
__typename?: 'GraphInferenceInferenceAppMutationPayload';
|
|
54753
55017
|
app?: Maybe<GraphInferenceInferenceApp>;
|
|
@@ -54760,6 +55024,12 @@ export type GraphInferenceInferenceAppMutationPayloadV2 = {
|
|
|
54760
55024
|
errors: Array<GraphInferenceMutationErrorV2>;
|
|
54761
55025
|
success: Scalars['Boolean']['output'];
|
|
54762
55026
|
};
|
|
55027
|
+
export type GraphInferenceInferenceAppMutationPayloadV3 = {
|
|
55028
|
+
__typename?: 'GraphInferenceInferenceAppMutationPayloadV3';
|
|
55029
|
+
app?: Maybe<GraphInferenceInferenceAppV3>;
|
|
55030
|
+
errors: Array<GraphInferenceMutationErrorV3>;
|
|
55031
|
+
success: Scalars['Boolean']['output'];
|
|
55032
|
+
};
|
|
54763
55033
|
export type GraphInferenceInferenceAppV2 = {
|
|
54764
55034
|
__typename?: 'GraphInferenceInferenceAppV2';
|
|
54765
55035
|
available: Scalars['Boolean']['output'];
|
|
@@ -54774,6 +55044,40 @@ export type GraphInferenceInferenceAppV2 = {
|
|
|
54774
55044
|
source: Scalars['String']['output'];
|
|
54775
55045
|
target: Scalars['String']['output'];
|
|
54776
55046
|
};
|
|
55047
|
+
export type GraphInferenceInferenceAppV3 = {
|
|
55048
|
+
__typename?: 'GraphInferenceInferenceAppV3';
|
|
55049
|
+
aiUseCaseId: Scalars['String']['output'];
|
|
55050
|
+
available: Scalars['Boolean']['output'];
|
|
55051
|
+
destination: Scalars['String']['output'];
|
|
55052
|
+
enabled: Scalars['Boolean']['output'];
|
|
55053
|
+
forTargets: Array<Scalars['String']['output']>;
|
|
55054
|
+
id: Scalars['String']['output'];
|
|
55055
|
+
infer: Scalars['String']['output'];
|
|
55056
|
+
matchers: Array<Scalars['String']['output']>;
|
|
55057
|
+
modelId: Scalars['String']['output'];
|
|
55058
|
+
name: Scalars['String']['output'];
|
|
55059
|
+
owner: Scalars['String']['output'];
|
|
55060
|
+
promptOverride?: Maybe<Scalars['String']['output']>;
|
|
55061
|
+
realtime: Scalars['Boolean']['output'];
|
|
55062
|
+
reasoningLevel: Scalars['String']['output'];
|
|
55063
|
+
source: Scalars['String']['output'];
|
|
55064
|
+
};
|
|
55065
|
+
export type GraphInferenceInferenceModelChoice = {
|
|
55066
|
+
__typename?: 'GraphInferenceInferenceModelChoice';
|
|
55067
|
+
id: Scalars['String']['output'];
|
|
55068
|
+
label: Scalars['String']['output'];
|
|
55069
|
+
};
|
|
55070
|
+
export type GraphInferenceInferenceModelsInput = {
|
|
55071
|
+
infer: Scalars['String']['input'];
|
|
55072
|
+
useCaseId: Scalars['String']['input'];
|
|
55073
|
+
};
|
|
55074
|
+
export type GraphInferenceInferenceModelsResponse = {
|
|
55075
|
+
__typename?: 'GraphInferenceInferenceModelsResponse';
|
|
55076
|
+
infer: Scalars['String']['output'];
|
|
55077
|
+
models: Array<GraphInferenceInferenceModelChoice>;
|
|
55078
|
+
runtimeSelectionSupported: Scalars['Boolean']['output'];
|
|
55079
|
+
useCaseId: Scalars['String']['output'];
|
|
55080
|
+
};
|
|
54777
55081
|
export type GraphInferenceInferenceQualityBucket = {
|
|
54778
55082
|
__typename?: 'GraphInferenceInferenceQualityBucket';
|
|
54779
55083
|
bucketStart?: Maybe<Scalars['String']['output']>;
|
|
@@ -54921,6 +55225,7 @@ export type GraphInferenceJiraEntityContextSourceBucketCounts = {
|
|
|
54921
55225
|
__typename?: 'GraphInferenceJiraEntityContextSourceBucketCounts';
|
|
54922
55226
|
issue: Scalars['Int']['output'];
|
|
54923
55227
|
memory: Scalars['Int']['output'];
|
|
55228
|
+
semantic: Scalars['Int']['output'];
|
|
54924
55229
|
space: Scalars['Int']['output'];
|
|
54925
55230
|
};
|
|
54926
55231
|
export declare enum GraphInferenceMode {
|
|
@@ -54941,6 +55246,14 @@ export type GraphInferenceMutationErrorV2 = {
|
|
|
54941
55246
|
message: Scalars['String']['output'];
|
|
54942
55247
|
reason?: Maybe<Scalars['String']['output']>;
|
|
54943
55248
|
};
|
|
55249
|
+
export type GraphInferenceMutationErrorV3 = {
|
|
55250
|
+
__typename?: 'GraphInferenceMutationErrorV3';
|
|
55251
|
+
capabilityId?: Maybe<Scalars['String']['output']>;
|
|
55252
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
55253
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
55254
|
+
message: Scalars['String']['output'];
|
|
55255
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
55256
|
+
};
|
|
54944
55257
|
export type GraphInferenceRelatedRepoCandidate = {
|
|
54945
55258
|
__typename?: 'GraphInferenceRelatedRepoCandidate';
|
|
54946
55259
|
ari: Scalars['String']['output'];
|
|
@@ -118403,7 +118716,7 @@ export type GravityUpdateDraftContentInput = {
|
|
|
118403
118716
|
origin?: InputMaybe<GravityDraftOrigin>;
|
|
118404
118717
|
};
|
|
118405
118718
|
export type GravityUpsertActionInput = {
|
|
118406
|
-
draftId
|
|
118719
|
+
draftId?: InputMaybe<Scalars['String']['input']>;
|
|
118407
118720
|
id?: InputMaybe<Scalars['String']['input']>;
|
|
118408
118721
|
kind: Scalars['String']['input'];
|
|
118409
118722
|
origin?: InputMaybe<GravityDraftOrigin>;
|
|
@@ -122702,6 +123015,7 @@ export type Installation = {
|
|
|
122702
123015
|
customMetricsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
122703
123016
|
edition?: Maybe<Scalars['String']['output']>;
|
|
122704
123017
|
environment?: Maybe<Scalars['String']['output']>;
|
|
123018
|
+
environmentId?: Maybe<Scalars['String']['output']>;
|
|
122705
123019
|
hostName?: Maybe<Scalars['String']['output']>;
|
|
122706
123020
|
installationId: Scalars['String']['output'];
|
|
122707
123021
|
installedOn?: Maybe<Scalars['String']['output']>;
|
|
@@ -126098,6 +126412,7 @@ export type JiraBoardView = JiraView & Node & {
|
|
|
126098
126412
|
__typename?: 'JiraBoardView';
|
|
126099
126413
|
autoCompleteSprintErrorCount?: Maybe<Scalars['Int']['output']>;
|
|
126100
126414
|
availableTransitionsForIssue?: Maybe<JiraTransitionConnection>;
|
|
126415
|
+
backlogStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
126101
126416
|
board?: Maybe<JiraBoard>;
|
|
126102
126417
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
126103
126418
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -126146,6 +126461,10 @@ export type JiraBoardViewAvailableTransitionsForIssueArgs = {
|
|
|
126146
126461
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126147
126462
|
issueId: Scalars['ID']['input'];
|
|
126148
126463
|
};
|
|
126464
|
+
export type JiraBoardViewBacklogStatusesArgs = {
|
|
126465
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126466
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126467
|
+
};
|
|
126149
126468
|
export type JiraBoardViewCanMoveIssueBetweenSwimlanesArgs = {
|
|
126150
126469
|
issueId: Scalars['ID']['input'];
|
|
126151
126470
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -126161,7 +126480,6 @@ export type JiraBoardViewCardOptionsArgs = {
|
|
|
126161
126480
|
export type JiraBoardViewColumnsArgs = {
|
|
126162
126481
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126163
126482
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126164
|
-
includeConfig?: InputMaybe<Scalars['Boolean']['input']>;
|
|
126165
126483
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
126166
126484
|
};
|
|
126167
126485
|
export type JiraBoardViewCustomFiltersArgs = {
|
|
@@ -126524,7 +126842,6 @@ export type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
126524
126842
|
canInlineRename?: Maybe<Scalars['Boolean']['output']>;
|
|
126525
126843
|
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
126526
126844
|
id: Scalars['ID']['output'];
|
|
126527
|
-
isBacklog?: Maybe<Scalars['Boolean']['output']>;
|
|
126528
126845
|
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
126529
126846
|
mappedWorkflows?: Maybe<JiraBoardViewWorkflowConnection>;
|
|
126530
126847
|
maximumIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -126862,7 +127179,7 @@ export type JiraBulkMoveStatusMappingInput = {
|
|
|
126862
127179
|
export type JiraBulkOperationInput = {
|
|
126863
127180
|
bulkDeleteInput?: InputMaybe<JiraBulkDeleteInput>;
|
|
126864
127181
|
bulkEditInput?: InputMaybe<JiraBulkEditInput>;
|
|
126865
|
-
bulkMoveInput?: InputMaybe<
|
|
127182
|
+
bulkMoveInput?: InputMaybe<Array<JiraBulkMoveInput>>;
|
|
126866
127183
|
bulkTransitionsInput?: InputMaybe<Array<JiraBulkTransitionsInput>>;
|
|
126867
127184
|
bulkWatchOrUnwatchInput?: InputMaybe<JiraBulkWatchOrUnwatchInput>;
|
|
126868
127185
|
sendBulkNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -128312,6 +128629,26 @@ export type JiraComponentFieldOperationInput = {
|
|
|
128312
128629
|
export type JiraComponentInput = {
|
|
128313
128630
|
componentId: Scalars['ID']['input'];
|
|
128314
128631
|
};
|
|
128632
|
+
export type JiraComponentResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
128633
|
+
__typename?: 'JiraComponentResourceUsageMetric';
|
|
128634
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
128635
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
128636
|
+
id: Scalars['ID']['output'];
|
|
128637
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
128638
|
+
projectsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
128639
|
+
projectsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
128640
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
128641
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
128642
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
128643
|
+
};
|
|
128644
|
+
export type JiraComponentResourceUsageMetricValuesArgs = {
|
|
128645
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128646
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
128647
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128648
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
128649
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128650
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
128651
|
+
};
|
|
128315
128652
|
export type JiraComponentsField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
128316
128653
|
__typename?: 'JiraComponentsField';
|
|
128317
128654
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -132806,15 +133143,22 @@ export type JiraHydrateJqlInput = {
|
|
|
132806
133143
|
};
|
|
132807
133144
|
export type JiraIccActivityValue = {
|
|
132808
133145
|
__typename?: 'JiraIccActivityValue';
|
|
132809
|
-
|
|
132810
|
-
|
|
133146
|
+
completedStepCount?: Maybe<Scalars['String']['output']>;
|
|
133147
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
133148
|
+
failureReason?: Maybe<Scalars['String']['output']>;
|
|
133149
|
+
groupId?: Maybe<Scalars['String']['output']>;
|
|
133150
|
+
groupName?: Maybe<Scalars['String']['output']>;
|
|
133151
|
+
hypothesisCount?: Maybe<Scalars['String']['output']>;
|
|
133152
|
+
incidentName?: Maybe<Scalars['String']['output']>;
|
|
132811
133153
|
planName?: Maybe<Scalars['String']['output']>;
|
|
132812
133154
|
status?: Maybe<Scalars['String']['output']>;
|
|
132813
|
-
|
|
133155
|
+
statusPageIncidentId?: Maybe<Scalars['String']['output']>;
|
|
132814
133156
|
stepStatus?: Maybe<Scalars['String']['output']>;
|
|
132815
|
-
|
|
133157
|
+
stepTitle?: Maybe<Scalars['String']['output']>;
|
|
132816
133158
|
totalSteps?: Maybe<Scalars['String']['output']>;
|
|
132817
133159
|
triggerReason?: Maybe<Scalars['String']['output']>;
|
|
133160
|
+
triggerType?: Maybe<Scalars['String']['output']>;
|
|
133161
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
132818
133162
|
};
|
|
132819
133163
|
export type JiraImproveDescriptionSuggestion = JiraBaseNextActionsEntity & {
|
|
132820
133164
|
__typename?: 'JiraImproveDescriptionSuggestion';
|
|
@@ -132875,6 +133219,7 @@ export declare enum JiraIncidentActivityType {
|
|
|
132875
133219
|
AlertAssociated = "ALERT_ASSOCIATED",
|
|
132876
133220
|
AlertDisassociated = "ALERT_DISASSOCIATED",
|
|
132877
133221
|
IncidentHypothesisAccepted = "INCIDENT_HYPOTHESIS_ACCEPTED",
|
|
133222
|
+
IncidentInvestigationCancelled = "INCIDENT_INVESTIGATION_CANCELLED",
|
|
132878
133223
|
IncidentInvestigationCompleted = "INCIDENT_INVESTIGATION_COMPLETED",
|
|
132879
133224
|
IncidentInvestigationStarted = "INCIDENT_INVESTIGATION_STARTED",
|
|
132880
133225
|
IncidentMitigationPlansCreationCompleted = "INCIDENT_MITIGATION_PLANS_CREATION_COMPLETED",
|
|
@@ -132886,6 +133231,11 @@ export declare enum JiraIncidentActivityType {
|
|
|
132886
133231
|
IncidentOverviewSummaryGenerated = "INCIDENT_OVERVIEW_SUMMARY_GENERATED",
|
|
132887
133232
|
IncidentStakeholderAdded = "INCIDENT_STAKEHOLDER_ADDED",
|
|
132888
133233
|
IncidentStakeholderRemoved = "INCIDENT_STAKEHOLDER_REMOVED",
|
|
133234
|
+
IncidentStatusPageIncidentCreated = "INCIDENT_STATUS_PAGE_INCIDENT_CREATED",
|
|
133235
|
+
IncidentStatusPageIncidentResolved = "INCIDENT_STATUS_PAGE_INCIDENT_RESOLVED",
|
|
133236
|
+
IncidentStatusPageIncidentUpdated = "INCIDENT_STATUS_PAGE_INCIDENT_UPDATED",
|
|
133237
|
+
IncidentStatusPageStakeholderGroupAdded = "INCIDENT_STATUS_PAGE_STAKEHOLDER_GROUP_ADDED",
|
|
133238
|
+
IncidentStatusPageStakeholderGroupRemoved = "INCIDENT_STATUS_PAGE_STAKEHOLDER_GROUP_REMOVED",
|
|
132889
133239
|
ResponderAlertAcked = "RESPONDER_ALERT_ACKED",
|
|
132890
133240
|
ResponderAlertAssigned = "RESPONDER_ALERT_ASSIGNED",
|
|
132891
133241
|
ResponderAlertClosed = "RESPONDER_ALERT_CLOSED",
|
|
@@ -135459,6 +135809,7 @@ export type JiraIssueSearchTimelineViewConfigSettings = {
|
|
|
135459
135809
|
hideReleases?: Maybe<Scalars['Boolean']['output']>;
|
|
135460
135810
|
hideUnParentedItems?: Maybe<Scalars['Boolean']['output']>;
|
|
135461
135811
|
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
135812
|
+
hierarchyWithFiltersEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
135462
135813
|
highlightedReleases?: Maybe<Array<Scalars['ID']['output']>>;
|
|
135463
135814
|
lastAppliedFilters?: Maybe<JiraTimelineLastAppliedFilters>;
|
|
135464
135815
|
maxHierarchyLevel?: Maybe<Scalars['Int']['output']>;
|
|
@@ -137834,6 +138185,12 @@ export type JiraMultiSelectComponentFieldInput = {
|
|
|
137834
138185
|
components?: InputMaybe<Array<JiraComponentInput>>;
|
|
137835
138186
|
fieldId: Scalars['ID']['input'];
|
|
137836
138187
|
};
|
|
138188
|
+
export type JiraMultiSubmitBulkOperationProgress = {
|
|
138189
|
+
__typename?: 'JiraMultiSubmitBulkOperationProgress';
|
|
138190
|
+
errors?: Maybe<Array<MutationError>>;
|
|
138191
|
+
inputId: Scalars['String']['output'];
|
|
138192
|
+
progress?: Maybe<JiraSubmitBulkOperationProgress>;
|
|
138193
|
+
};
|
|
137837
138194
|
export declare enum JiraMultiValueFieldOperations {
|
|
137838
138195
|
Add = "ADD",
|
|
137839
138196
|
Remove = "REMOVE",
|
|
@@ -140954,6 +141311,26 @@ export type JiraPriorityFieldPayload = Payload & {
|
|
|
140954
141311
|
export type JiraPriorityInput = {
|
|
140955
141312
|
priorityId: Scalars['ID']['input'];
|
|
140956
141313
|
};
|
|
141314
|
+
export type JiraPriorityResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
141315
|
+
__typename?: 'JiraPriorityResourceUsageMetric';
|
|
141316
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
141317
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
141318
|
+
id: Scalars['ID']['output'];
|
|
141319
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
141320
|
+
projectsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
141321
|
+
projectsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
141322
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
141323
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
141324
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
141325
|
+
};
|
|
141326
|
+
export type JiraPriorityResourceUsageMetricValuesArgs = {
|
|
141327
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
141328
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
141329
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141330
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
141331
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
141332
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
141333
|
+
};
|
|
140957
141334
|
export type JiraProductDiscoveryCollection = Node & {
|
|
140958
141335
|
__typename?: 'JiraProductDiscoveryCollection';
|
|
140959
141336
|
collectionId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -141368,6 +141745,7 @@ export type JiraProjectVersionsArgs = {
|
|
|
141368
141745
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
141369
141746
|
driverFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
141370
141747
|
filter?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
141748
|
+
filterById?: InputMaybe<JiraVersionIdsFilterInput>;
|
|
141371
141749
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141372
141750
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
141373
141751
|
releaseDateAfter?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -141381,6 +141759,7 @@ export type JiraProjectVersionsV2Args = {
|
|
|
141381
141759
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
141382
141760
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
141383
141761
|
filter?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
141762
|
+
filterById?: InputMaybe<JiraVersionIdsFilterInput>;
|
|
141384
141763
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
141385
141764
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
141386
141765
|
releaseDateAfter?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -144301,6 +144680,26 @@ export declare enum JiraReleaseNotesIssueKeyConfig {
|
|
|
144301
144680
|
None = "NONE",
|
|
144302
144681
|
Unlinked = "UNLINKED"
|
|
144303
144682
|
}
|
|
144683
|
+
export type JiraReleaseResourceUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
144684
|
+
__typename?: 'JiraReleaseResourceUsageMetric';
|
|
144685
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
144686
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
144687
|
+
id: Scalars['ID']['output'];
|
|
144688
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
144689
|
+
projectsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
144690
|
+
projectsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
144691
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
144692
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
144693
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
144694
|
+
};
|
|
144695
|
+
export type JiraReleaseResourceUsageMetricValuesArgs = {
|
|
144696
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
144697
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
144698
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
144699
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
144700
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
144701
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
144702
|
+
};
|
|
144304
144703
|
export type JiraReleases = {
|
|
144305
144704
|
__typename?: 'JiraReleases';
|
|
144306
144705
|
deployments?: Maybe<JiraReleasesDeploymentSummaryConnection>;
|
|
@@ -147595,6 +147994,7 @@ export type JiraSetBoardViewStatusColumnMappingDeleteStatusInput = {
|
|
|
147595
147994
|
statusId: Scalars['ID']['input'];
|
|
147596
147995
|
};
|
|
147597
147996
|
export type JiraSetBoardViewStatusColumnMappingInput = {
|
|
147997
|
+
backlogStatuses?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
147598
147998
|
columns: Array<JiraBoardViewStatusColumnMapping>;
|
|
147599
147999
|
createStatuses?: InputMaybe<Array<JiraSetBoardViewStatusColumnMappingCreateStatusInput>>;
|
|
147600
148000
|
deleteStatuses?: InputMaybe<Array<JiraSetBoardViewStatusColumnMappingDeleteStatusInput>>;
|
|
@@ -147997,6 +148397,16 @@ export type JiraSetTimelineViewHideWarningsPayload = Payload & {
|
|
|
147997
148397
|
success: Scalars['Boolean']['output'];
|
|
147998
148398
|
view?: Maybe<JiraView>;
|
|
147999
148399
|
};
|
|
148400
|
+
export type JiraSetTimelineViewHierarchyWithFiltersEnabledInput = {
|
|
148401
|
+
hierarchyWithFiltersEnabled: Scalars['Boolean']['input'];
|
|
148402
|
+
viewId: Scalars['ID']['input'];
|
|
148403
|
+
};
|
|
148404
|
+
export type JiraSetTimelineViewHierarchyWithFiltersEnabledPayload = Payload & {
|
|
148405
|
+
__typename?: 'JiraSetTimelineViewHierarchyWithFiltersEnabledPayload';
|
|
148406
|
+
errors?: Maybe<Array<MutationError>>;
|
|
148407
|
+
success: Scalars['Boolean']['output'];
|
|
148408
|
+
view?: Maybe<JiraView>;
|
|
148409
|
+
};
|
|
148000
148410
|
export type JiraSetTimelineViewMaxHierarchyLevelInput = {
|
|
148001
148411
|
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
148002
148412
|
viewId: Scalars['ID']['input'];
|
|
@@ -149014,9 +149424,6 @@ export type JiraStreamHubResourceIdentifier = {
|
|
|
149014
149424
|
__typename?: 'JiraStreamHubResourceIdentifier';
|
|
149015
149425
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
149016
149426
|
};
|
|
149017
|
-
export type JiraSubmitBulkMoveOperationInput = {
|
|
149018
|
-
bulkMoveInputs: Array<JiraBulkMoveInput>;
|
|
149019
|
-
};
|
|
149020
149427
|
export type JiraSubmitBulkOperationInput = {
|
|
149021
149428
|
bulkOperationInput: JiraBulkOperationInput;
|
|
149022
149429
|
bulkOperationType: JiraBulkOperationType;
|
|
@@ -149024,6 +149431,7 @@ export type JiraSubmitBulkOperationInput = {
|
|
|
149024
149431
|
export type JiraSubmitBulkOperationPayload = Payload & {
|
|
149025
149432
|
__typename?: 'JiraSubmitBulkOperationPayload';
|
|
149026
149433
|
errors?: Maybe<Array<MutationError>>;
|
|
149434
|
+
multiSubmitProgress?: Maybe<Array<JiraMultiSubmitBulkOperationProgress>>;
|
|
149027
149435
|
progress?: Maybe<JiraSubmitBulkOperationProgress>;
|
|
149028
149436
|
success: Scalars['Boolean']['output'];
|
|
149029
149437
|
};
|
|
@@ -149695,6 +150103,7 @@ export type JiraTimelineStaticViewInput = {
|
|
|
149695
150103
|
hideReleases?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149696
150104
|
hideUnParentedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149697
150105
|
hideWarnings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
150106
|
+
hierarchyWithFiltersEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149698
150107
|
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
149699
150108
|
rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
|
|
149700
150109
|
};
|
|
@@ -149792,6 +150201,7 @@ export type JiraTimelineViewSettings = {
|
|
|
149792
150201
|
hideReleases?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149793
150202
|
hideUnParentedItems?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149794
150203
|
hideWarnings?: InputMaybe<Scalars['Boolean']['input']>;
|
|
150204
|
+
hierarchyWithFiltersEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149795
150205
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
149796
150206
|
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
149797
150207
|
rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
|
|
@@ -151434,6 +151844,14 @@ export type JiraVersionFilterInput = {
|
|
|
151434
151844
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
151435
151845
|
statuses?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
151436
151846
|
};
|
|
151847
|
+
export type JiraVersionIdsFilterInput = {
|
|
151848
|
+
ids: Array<Scalars['ID']['input']>;
|
|
151849
|
+
operation: JiraVersionIdsFilterOperation;
|
|
151850
|
+
};
|
|
151851
|
+
export declare enum JiraVersionIdsFilterOperation {
|
|
151852
|
+
Allow = "ALLOW",
|
|
151853
|
+
Exclude = "EXCLUDE"
|
|
151854
|
+
}
|
|
151437
151855
|
export type JiraVersionInput = {
|
|
151438
151856
|
versionId?: InputMaybe<Scalars['ID']['input']>;
|
|
151439
151857
|
};
|
|
@@ -156231,6 +156649,49 @@ export type KitsuneConnection = {
|
|
|
156231
156649
|
edges: Array<KitsuneEdge>;
|
|
156232
156650
|
pageInfo: PageInfo;
|
|
156233
156651
|
};
|
|
156652
|
+
export type KitsuneConnectorConfig = {
|
|
156653
|
+
__typename?: 'KitsuneConnectorConfig';
|
|
156654
|
+
enabled: Scalars['Boolean']['output'];
|
|
156655
|
+
filters: Array<KitsuneConnectorConfigFilter>;
|
|
156656
|
+
filtersLogicalOperator: KitsuneLogicalOperator;
|
|
156657
|
+
id: Scalars['ID']['output'];
|
|
156658
|
+
sourceType: KitsuneSourceCategoryType;
|
|
156659
|
+
spaceId?: Maybe<Scalars['ID']['output']>;
|
|
156660
|
+
};
|
|
156661
|
+
export type KitsuneConnectorConfigFilter = {
|
|
156662
|
+
__typename?: 'KitsuneConnectorConfigFilter';
|
|
156663
|
+
field: Scalars['String']['output'];
|
|
156664
|
+
fieldExternalId?: Maybe<Scalars['String']['output']>;
|
|
156665
|
+
fieldValueType?: Maybe<KitsuneFieldValueType>;
|
|
156666
|
+
id: Scalars['ID']['output'];
|
|
156667
|
+
operator: KitsuneComparisonOperator;
|
|
156668
|
+
values: Array<KitsuneConnectorConfigFilterValue>;
|
|
156669
|
+
};
|
|
156670
|
+
export type KitsuneConnectorConfigFilterInput = {
|
|
156671
|
+
field: Scalars['String']['input'];
|
|
156672
|
+
fieldExternalId?: InputMaybe<Scalars['String']['input']>;
|
|
156673
|
+
fieldValueType?: InputMaybe<KitsuneFieldValueType>;
|
|
156674
|
+
operator: KitsuneComparisonOperator;
|
|
156675
|
+
values?: InputMaybe<KitsuneFilterValueInput>;
|
|
156676
|
+
};
|
|
156677
|
+
export type KitsuneConnectorConfigFilterValue = KitsuneDateValue | KitsuneNumberValue | KitsuneTextValue;
|
|
156678
|
+
export type KitsuneConnectorConfigInput = {
|
|
156679
|
+
filters: Array<KitsuneConnectorConfigFilterInput>;
|
|
156680
|
+
logicalOperator: KitsuneLogicalOperator;
|
|
156681
|
+
};
|
|
156682
|
+
export type KitsuneCreateConnectorConfigInput = {
|
|
156683
|
+
config?: InputMaybe<KitsuneConnectorConfigInput>;
|
|
156684
|
+
enabled: Scalars['Boolean']['input'];
|
|
156685
|
+
sourceType: KitsuneSourceCategoryType;
|
|
156686
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
156687
|
+
workspaceAri: Scalars['ID']['input'];
|
|
156688
|
+
};
|
|
156689
|
+
export type KitsuneCreateConnectorConfigPayload = Payload & {
|
|
156690
|
+
__typename?: 'KitsuneCreateConnectorConfigPayload';
|
|
156691
|
+
connectorConfig?: Maybe<KitsuneConnectorConfig>;
|
|
156692
|
+
errors?: Maybe<Array<MutationError>>;
|
|
156693
|
+
success: Scalars['Boolean']['output'];
|
|
156694
|
+
};
|
|
156234
156695
|
export type KitsuneCreateFieldOptionInput = {
|
|
156235
156696
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
156236
156697
|
name: Scalars['String']['input'];
|
|
@@ -156636,6 +157097,15 @@ export type KitsuneRankInput = {
|
|
|
156636
157097
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
156637
157098
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
156638
157099
|
};
|
|
157100
|
+
export type KitsuneRemoveConnectorConfigInput = {
|
|
157101
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157102
|
+
};
|
|
157103
|
+
export type KitsuneRemoveConnectorConfigPayload = Payload & {
|
|
157104
|
+
__typename?: 'KitsuneRemoveConnectorConfigPayload';
|
|
157105
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157106
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
157107
|
+
success: Scalars['Boolean']['output'];
|
|
157108
|
+
};
|
|
156639
157109
|
export type KitsuneRollupInput = {
|
|
156640
157110
|
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
156641
157111
|
ideaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -156992,6 +157462,17 @@ export type KitsuneTextValue = {
|
|
|
156992
157462
|
_id: Scalars['ID']['output'];
|
|
156993
157463
|
value: Scalars['String']['output'];
|
|
156994
157464
|
};
|
|
157465
|
+
export type KitsuneUpdateConnectorConfigInput = {
|
|
157466
|
+
config?: InputMaybe<KitsuneConnectorConfigInput>;
|
|
157467
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
157468
|
+
workspaceAri: Scalars['ID']['input'];
|
|
157469
|
+
};
|
|
157470
|
+
export type KitsuneUpdateConnectorConfigPayload = Payload & {
|
|
157471
|
+
__typename?: 'KitsuneUpdateConnectorConfigPayload';
|
|
157472
|
+
connectorConfig?: Maybe<KitsuneConnectorConfig>;
|
|
157473
|
+
errors?: Maybe<Array<MutationError>>;
|
|
157474
|
+
success: Scalars['Boolean']['output'];
|
|
157475
|
+
};
|
|
156995
157476
|
export type KitsuneUser = {
|
|
156996
157477
|
__typename?: 'KitsuneUser';
|
|
156997
157478
|
user?: Maybe<User>;
|
|
@@ -158958,21 +159439,28 @@ export type LogDetails = {
|
|
|
158958
159439
|
export type LogQueryInput = {
|
|
158959
159440
|
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
158960
159441
|
appVersions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
159442
|
+
browserName?: InputMaybe<Scalars['String']['input']>;
|
|
158961
159443
|
container?: InputMaybe<Scalars['String']['input']>;
|
|
158962
159444
|
containers?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
158963
159445
|
contexts?: InputMaybe<Array<InputMaybe<Context>>>;
|
|
158964
159446
|
dates?: InputMaybe<DateSearchInput>;
|
|
158965
159447
|
editions?: InputMaybe<Array<InputMaybe<EditionValue>>>;
|
|
159448
|
+
errorType?: InputMaybe<Scalars['String']['input']>;
|
|
159449
|
+
extensionType?: InputMaybe<Scalars['String']['input']>;
|
|
158966
159450
|
functionKey?: InputMaybe<Scalars['String']['input']>;
|
|
158967
159451
|
functionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
158968
159452
|
installationContexts?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
159453
|
+
installationId?: InputMaybe<Scalars['String']['input']>;
|
|
158969
159454
|
instance?: InputMaybe<Scalars['String']['input']>;
|
|
158970
159455
|
instances?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
158971
159456
|
invocationId?: InputMaybe<Scalars['String']['input']>;
|
|
158972
159457
|
licenseStates?: InputMaybe<Array<InputMaybe<LicenseValue>>>;
|
|
159458
|
+
logSource?: InputMaybe<FrontendLogSource>;
|
|
158973
159459
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
158974
159460
|
moduleType?: InputMaybe<Scalars['String']['input']>;
|
|
158975
159461
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
159462
|
+
osName?: InputMaybe<Scalars['String']['input']>;
|
|
159463
|
+
renderType?: InputMaybe<Scalars['String']['input']>;
|
|
158976
159464
|
runtime?: InputMaybe<Scalars['String']['input']>;
|
|
158977
159465
|
service?: InputMaybe<Scalars['String']['input']>;
|
|
158978
159466
|
services?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -163682,7 +164170,8 @@ export declare enum MarketplaceStorePersonalisationTargetSurface {
|
|
|
163682
164170
|
StoreCollection = "STORE_COLLECTION",
|
|
163683
164171
|
StorePartnerProfile = "STORE_PARTNER_PROFILE",
|
|
163684
164172
|
StoreProduct = "STORE_PRODUCT",
|
|
163685
|
-
UnifiedStore = "UNIFIED_STORE"
|
|
164173
|
+
UnifiedStore = "UNIFIED_STORE",
|
|
164174
|
+
UnifiedStoreRovo = "UNIFIED_STORE_ROVO"
|
|
163686
164175
|
}
|
|
163687
164176
|
export type MarketplaceStorePersonalisedContextAndLayoutInput = {
|
|
163688
164177
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -166229,10 +166718,8 @@ export type MercuryCreateDateCustomFieldDefinitionInput = {
|
|
|
166229
166718
|
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
166230
166719
|
};
|
|
166231
166720
|
export type MercuryCreateDraftPlanInput = {
|
|
166232
|
-
|
|
166233
|
-
fiscalYearStart?: InputMaybe<Scalars['String']['input']>;
|
|
166721
|
+
fiscalYearStart: Scalars['String']['input'];
|
|
166234
166722
|
organizationId: Scalars['ID']['input'];
|
|
166235
|
-
startDate?: InputMaybe<Scalars['Date']['input']>;
|
|
166236
166723
|
};
|
|
166237
166724
|
export type MercuryCreateDraftPlanPayload = Payload & {
|
|
166238
166725
|
__typename?: 'MercuryCreateDraftPlanPayload';
|
|
@@ -171436,8 +171923,8 @@ export type MercuryRankedChangeProposal = {
|
|
|
171436
171923
|
rank?: Maybe<Scalars['Int']['output']>;
|
|
171437
171924
|
};
|
|
171438
171925
|
export declare enum MercuryRankingContainerType {
|
|
171926
|
+
Organization = "ORGANIZATION",
|
|
171439
171927
|
ParentFocusArea = "PARENT_FOCUS_AREA",
|
|
171440
|
-
SponsoringOrganization = "SPONSORING_ORGANIZATION",
|
|
171441
171928
|
Workspace = "WORKSPACE"
|
|
171442
171929
|
}
|
|
171443
171930
|
export declare enum MercuryRankingGroupType {
|
|
@@ -174429,6 +174916,7 @@ export type Mutation = {
|
|
|
174429
174916
|
admin_scimRuleDelete?: Maybe<AdminScimRuleMutationPayload>;
|
|
174430
174917
|
admin_scimRuleUpdate?: Maybe<AdminScimRuleMutationPayload>;
|
|
174431
174918
|
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
174919
|
+
admin_unitIconDelete?: Maybe<AdminUnitIconDeletePayload>;
|
|
174432
174920
|
admin_unitRename?: Maybe<AdminUnitRenamePayload>;
|
|
174433
174921
|
admin_unitUpdateDescription?: Maybe<AdminUnitUpdateDescriptionPayload>;
|
|
174434
174922
|
admin_unlinkScimUser?: Maybe<AdminUnlinkScimUserResponsePayload>;
|
|
@@ -174487,6 +174975,7 @@ export type Mutation = {
|
|
|
174487
174975
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
174488
174976
|
agentWorkspace_createDraftedRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
174489
174977
|
agentWorkspace_createDraftedRoutingTableEntriesV2?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
174978
|
+
agentWorkspace_createDraftedTeamRoutingTableEntries?: Maybe<AgentWorkspaceCreateDraftedTeamRoutingTableEntriesPayload>;
|
|
174490
174979
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
174491
174980
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
174492
174981
|
agentWorkspace_createWfoSummaryView?: Maybe<AgentWorkspaceCreateWfoSummaryViewPayload>;
|
|
@@ -174505,6 +174994,7 @@ export type Mutation = {
|
|
|
174505
174994
|
agentWorkspace_setShiftNotificationPreference?: Maybe<AgentWorkspaceShiftNotificationPreferencePayload>;
|
|
174506
174995
|
agentWorkspace_setShiftReminderConfig?: Maybe<AgentWorkspaceShiftReminderConfigPayload>;
|
|
174507
174996
|
agentWorkspace_setTeamCapacities?: Maybe<AgentWorkspaceSetTeamCapacitiesPayload>;
|
|
174997
|
+
agentWorkspace_setWorkforceTeamAccessLevels?: Maybe<AgentWorkspaceSetWorkforceTeamAccessLevelsPayload>;
|
|
174508
174998
|
agentWorkspace_setWorkloadJql?: Maybe<AgentWorkspaceSetWorkloadJqlPayload>;
|
|
174509
174999
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
174510
175000
|
agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
|
|
@@ -174512,6 +175002,7 @@ export type Mutation = {
|
|
|
174512
175002
|
agentWorkspace_startGenerateRoutingTableV2?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
174513
175003
|
agentWorkspace_startSmartRoutingDryRun?: Maybe<AgentWorkspaceStartSmartRoutingDryRunPayload>;
|
|
174514
175004
|
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
175005
|
+
agentWorkspace_submitDraftedTeamRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedTeamRoutingTablePayload>;
|
|
174515
175006
|
agentWorkspace_unassignCoverShift?: Maybe<AgentWorkspaceUnassignCoverShiftPayload>;
|
|
174516
175007
|
agentWorkspace_updateConfigurableRoutingInputs?: Maybe<AgentWorkspaceUpdateConfigurableRoutingPayload>;
|
|
174517
175008
|
agentWorkspace_updateConfigurableRoutingTriggers?: Maybe<AgentWorkspaceUpdateConfigurableRoutingPayload>;
|
|
@@ -174522,7 +175013,6 @@ export type Mutation = {
|
|
|
174522
175013
|
agentWorkspace_updateSkillMappingsInProject?: Maybe<AgentWorkspaceUpdateSkillMappingsInProjectPayload>;
|
|
174523
175014
|
agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
|
|
174524
175015
|
agentWorkspace_upsertDraftedTeamRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedTeamRoutingTableEntryPayload>;
|
|
174525
|
-
agentWorkspace_upsertTeamRoutingTableEntry?: Maybe<AgentWorkspaceUpsertTeamRoutingTableEntryPayload>;
|
|
174526
175016
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
174527
175017
|
aiCoreApi_initiateRsaReport?: Maybe<AiCoreApiRsaInitiateReportResult>;
|
|
174528
175018
|
aiManagedObject_archiveAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -174550,6 +175040,8 @@ export type Mutation = {
|
|
|
174550
175040
|
assetsDM_associateObjectTag?: Maybe<AssetsDmObjectTagAssociateResponse>;
|
|
174551
175041
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
174552
175042
|
assetsDM_batchCreateComputeDictionaryValues?: Maybe<AssetsDmBatchCreateComputeDictionaryValuesResponse>;
|
|
175043
|
+
assetsDM_cancelCleanse?: Maybe<AssetsDmCancelCleanseResponse>;
|
|
175044
|
+
assetsDM_cancelImport?: Maybe<AssetsDmCancelImportResponse>;
|
|
174553
175045
|
assetsDM_changeDataSourceStatus?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
174554
175046
|
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
174555
175047
|
assetsDM_configureDefaultDataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
@@ -174601,6 +175093,7 @@ export type Mutation = {
|
|
|
174601
175093
|
assetsDM_objectAttributeDelete?: Maybe<AssetsDmObjectAttributeMutationResponse>;
|
|
174602
175094
|
assetsDM_objectAttributeUpdate?: Maybe<AssetsDmObjectAttributeMutationResponse>;
|
|
174603
175095
|
assetsDM_resetDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
175096
|
+
assetsDM_syncDataDictionary?: Maybe<AssetsDmSyncDataDictionaryResponse>;
|
|
174604
175097
|
assetsDM_triggerCloudFetch?: Maybe<AssetsDmTriggerCloudFetchResponse>;
|
|
174605
175098
|
assetsDM_updateAttributePriority?: Maybe<AssetsDmUpdateAttributePriorityPayload>;
|
|
174606
175099
|
assetsDM_updateAttributePriorityOrder?: Maybe<AssetsDmAttributePriorityResponse>;
|
|
@@ -174830,9 +175323,11 @@ export type Mutation = {
|
|
|
174830
175323
|
confluence_removeTrack?: Maybe<ConfluenceRemoveTrackPayload>;
|
|
174831
175324
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
174832
175325
|
confluence_reorderTracks?: Maybe<ConfluenceReorderTrackPayload>;
|
|
175326
|
+
confluence_requestSpaceAccess?: Maybe<ConfluenceRequestSpaceAccessPayload>;
|
|
174833
175327
|
confluence_resolveApprovalAgent?: Maybe<ConfluenceApprovalAgentPayload>;
|
|
174834
175328
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
174835
175329
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
175330
|
+
confluence_resolveSpaceAccessRequest?: Maybe<ConfluenceResolveSpaceAccessRequestPayload>;
|
|
174836
175331
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
174837
175332
|
confluence_restoreSystemRole?: Maybe<ConfluenceRestoreSystemRolePayload>;
|
|
174838
175333
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
@@ -174845,6 +175340,7 @@ export type Mutation = {
|
|
|
174845
175340
|
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
174846
175341
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
174847
175342
|
confluence_syncSmartFolder?: Maybe<ConfluenceSyncSmartFolderPayload>;
|
|
175343
|
+
confluence_undoSpaceAccessRequestDecision?: Maybe<ConfluenceUndoSpaceAccessRequestDecisionPayload>;
|
|
174848
175344
|
confluence_unschedulePublish?: Maybe<ConfluenceUnschedulePublishPayload>;
|
|
174849
175345
|
confluence_unsubscribeCalendar?: Maybe<ConfluenceUnSubscribeCalendarPayload>;
|
|
174850
175346
|
confluence_unsyncSmartFolder?: Maybe<ConfluenceUnsyncSmartFolderPayload>;
|
|
@@ -175217,10 +175713,13 @@ export type Mutation = {
|
|
|
175217
175713
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
175218
175714
|
graphInference_inferenceAppAdd?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
175219
175715
|
graphInference_inferenceAppAddV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
|
|
175716
|
+
graphInference_inferenceAppAddV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
175220
175717
|
graphInference_inferenceAppDelete?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
175221
175718
|
graphInference_inferenceAppDeleteV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
|
|
175719
|
+
graphInference_inferenceAppDeleteV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
175222
175720
|
graphInference_inferenceAppEdit?: Maybe<GraphInferenceInferenceAppMutationPayload>;
|
|
175223
175721
|
graphInference_inferenceAppEditV2?: Maybe<GraphInferenceInferenceAppMutationPayloadV2>;
|
|
175722
|
+
graphInference_inferenceAppEditV3?: Maybe<GraphInferenceInferenceAppMutationPayloadV3>;
|
|
175224
175723
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
175225
175724
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
175226
175725
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -175578,6 +176077,7 @@ export type Mutation = {
|
|
|
175578
176077
|
jira_setTimelineViewHideReleases?: Maybe<JiraSetTimelineViewHideReleasesPayload>;
|
|
175579
176078
|
jira_setTimelineViewHideUnParentedItems?: Maybe<JiraSetTimelineViewHideUnParentedItemsPayload>;
|
|
175580
176079
|
jira_setTimelineViewHideWarnings?: Maybe<JiraSetTimelineViewHideWarningsPayload>;
|
|
176080
|
+
jira_setTimelineViewHierarchyWithFiltersEnabled?: Maybe<JiraSetTimelineViewHierarchyWithFiltersEnabledPayload>;
|
|
175581
176081
|
jira_setTimelineViewMaxHierarchyLevel?: Maybe<JiraSetTimelineViewMaxHierarchyLevelPayload>;
|
|
175582
176082
|
jira_setTimelineViewRangeMode?: Maybe<JiraSetTimelineViewRangeModePayload>;
|
|
175583
176083
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
@@ -175643,6 +176143,7 @@ export type Mutation = {
|
|
|
175643
176143
|
jsmTelemetry_upsertDashboardChart?: Maybe<JsmTelemetryUpsertDashboardChartResponse>;
|
|
175644
176144
|
jsmTelemetry_validateTelemetryConnection?: Maybe<JsmTelemetryValidateTelemetryConnectionPayload>;
|
|
175645
176145
|
jsw?: Maybe<JswMutation>;
|
|
176146
|
+
kitsune_createConnectorConfig?: Maybe<KitsuneCreateConnectorConfigPayload>;
|
|
175646
176147
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
175647
176148
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
175648
176149
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
@@ -175661,6 +176162,7 @@ export type Mutation = {
|
|
|
175661
176162
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
175662
176163
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
175663
176164
|
kitsune_refreshInsightCounters?: Maybe<KitsuneJob>;
|
|
176165
|
+
kitsune_removeConnectorConfig?: Maybe<KitsuneRemoveConnectorConfigPayload>;
|
|
175664
176166
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
175665
176167
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
175666
176168
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -175678,6 +176180,7 @@ export type Mutation = {
|
|
|
175678
176180
|
kitsune_syncCsmProperties?: Maybe<KitsuneJob>;
|
|
175679
176181
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
175680
176182
|
kitsune_syncCustomers?: Maybe<KitsuneJob>;
|
|
176183
|
+
kitsune_updateConnectorConfig?: Maybe<KitsuneUpdateConnectorConfigPayload>;
|
|
175681
176184
|
kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
|
|
175682
176185
|
kitsune_updateCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
175683
176186
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
@@ -176302,6 +176805,9 @@ export type MutationAdmin_UnitCreateArgs = {
|
|
|
176302
176805
|
orgId: Scalars['ID']['input'];
|
|
176303
176806
|
unit: AdminUnitCreateInput;
|
|
176304
176807
|
};
|
|
176808
|
+
export type MutationAdmin_UnitIconDeleteArgs = {
|
|
176809
|
+
input: AdminUnitIconDeleteInput;
|
|
176810
|
+
};
|
|
176305
176811
|
export type MutationAdmin_UnitRenameArgs = {
|
|
176306
176812
|
input: AdminUnitRenameInput;
|
|
176307
176813
|
};
|
|
@@ -176550,6 +177056,9 @@ export type MutationAgentWorkspace_CreateDraftedRoutingTableEntriesArgs = {
|
|
|
176550
177056
|
export type MutationAgentWorkspace_CreateDraftedRoutingTableEntriesV2Args = {
|
|
176551
177057
|
input: AgentWorkspaceCreateDraftedRoutingTableEntriesV2Input;
|
|
176552
177058
|
};
|
|
177059
|
+
export type MutationAgentWorkspace_CreateDraftedTeamRoutingTableEntriesArgs = {
|
|
177060
|
+
input: AgentWorkspaceCreateDraftedTeamRoutingTableEntriesInput;
|
|
177061
|
+
};
|
|
176553
177062
|
export type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
176554
177063
|
input: AgentWorkspaceCreateScheduleInput;
|
|
176555
177064
|
};
|
|
@@ -176605,6 +177114,10 @@ export type MutationAgentWorkspace_SetShiftReminderConfigArgs = {
|
|
|
176605
177114
|
export type MutationAgentWorkspace_SetTeamCapacitiesArgs = {
|
|
176606
177115
|
input: AgentWorkspaceSetTeamCapacitiesInput;
|
|
176607
177116
|
};
|
|
177117
|
+
export type MutationAgentWorkspace_SetWorkforceTeamAccessLevelsArgs = {
|
|
177118
|
+
cloudId: Scalars['ID']['input'];
|
|
177119
|
+
updates: Array<AgentWorkspaceWorkforceTeamAccessLevelUpdateInput>;
|
|
177120
|
+
};
|
|
176608
177121
|
export type MutationAgentWorkspace_SetWorkloadJqlArgs = {
|
|
176609
177122
|
input: AgentWorkspaceSetWorkloadJqlInput;
|
|
176610
177123
|
};
|
|
@@ -176627,6 +177140,9 @@ export type MutationAgentWorkspace_StartSmartRoutingDryRunArgs = {
|
|
|
176627
177140
|
export type MutationAgentWorkspace_SubmitDraftedRoutingTableArgs = {
|
|
176628
177141
|
input: AgentWorkspaceSubmitDraftedRoutingTableInput;
|
|
176629
177142
|
};
|
|
177143
|
+
export type MutationAgentWorkspace_SubmitDraftedTeamRoutingTableArgs = {
|
|
177144
|
+
input: AgentWorkspaceSubmitDraftedTeamRoutingTableInput;
|
|
177145
|
+
};
|
|
176630
177146
|
export type MutationAgentWorkspace_UnassignCoverShiftArgs = {
|
|
176631
177147
|
input: AgentWorkspaceUnassignCoverShiftInput;
|
|
176632
177148
|
};
|
|
@@ -176657,9 +177173,6 @@ export type MutationAgentWorkspace_UpsertDraftedRoutingTableEntryArgs = {
|
|
|
176657
177173
|
export type MutationAgentWorkspace_UpsertDraftedTeamRoutingTableEntryArgs = {
|
|
176658
177174
|
input: AgentWorkspaceUpsertDraftedTeamRoutingTableEntryInput;
|
|
176659
177175
|
};
|
|
176660
|
-
export type MutationAgentWorkspace_UpsertTeamRoutingTableEntryArgs = {
|
|
176661
|
-
input: AgentWorkspaceUpsertTeamRoutingTableEntryInput;
|
|
176662
|
-
};
|
|
176663
177176
|
export type MutationAiCoreApi_InitiateCsvExportArgs = {
|
|
176664
177177
|
input: AiCoreApiCsvExportInput;
|
|
176665
177178
|
};
|
|
@@ -176746,6 +177259,16 @@ export type MutationAssetsDm_BatchCreateComputeDictionaryValuesArgs = {
|
|
|
176746
177259
|
inputs: Array<AssetsDmCreateComputeDictionaryValueInput>;
|
|
176747
177260
|
workspaceId: Scalars['ID']['input'];
|
|
176748
177261
|
};
|
|
177262
|
+
export type MutationAssetsDm_CancelCleanseArgs = {
|
|
177263
|
+
cloudId: Scalars['ID']['input'];
|
|
177264
|
+
dataSourceId: Scalars['ID']['input'];
|
|
177265
|
+
workspaceId: Scalars['ID']['input'];
|
|
177266
|
+
};
|
|
177267
|
+
export type MutationAssetsDm_CancelImportArgs = {
|
|
177268
|
+
cloudId: Scalars['ID']['input'];
|
|
177269
|
+
dataSourceId: Scalars['ID']['input'];
|
|
177270
|
+
workspaceId: Scalars['ID']['input'];
|
|
177271
|
+
};
|
|
176749
177272
|
export type MutationAssetsDm_ChangeDataSourceStatusArgs = {
|
|
176750
177273
|
cloudId: Scalars['ID']['input'];
|
|
176751
177274
|
input: AssetsDmChangeDataSourceStatusInput;
|
|
@@ -177020,6 +177543,11 @@ export type MutationAssetsDm_ResetDataSourceMappingArgs = {
|
|
|
177020
177543
|
dataSourceId: Scalars['ID']['input'];
|
|
177021
177544
|
workspaceId: Scalars['ID']['input'];
|
|
177022
177545
|
};
|
|
177546
|
+
export type MutationAssetsDm_SyncDataDictionaryArgs = {
|
|
177547
|
+
cloudId: Scalars['ID']['input'];
|
|
177548
|
+
computeDictionaryId: Scalars['ID']['input'];
|
|
177549
|
+
workspaceId: Scalars['ID']['input'];
|
|
177550
|
+
};
|
|
177023
177551
|
export type MutationAssetsDm_TriggerCloudFetchArgs = {
|
|
177024
177552
|
cloudId: Scalars['ID']['input'];
|
|
177025
177553
|
jobId: Scalars['ID']['input'];
|
|
@@ -177825,6 +178353,10 @@ export type MutationConfluence_ReorderTracksArgs = {
|
|
|
177825
178353
|
cloudId: Scalars['ID']['input'];
|
|
177826
178354
|
input: ConfluenceReorderTrackInput;
|
|
177827
178355
|
};
|
|
178356
|
+
export type MutationConfluence_RequestSpaceAccessArgs = {
|
|
178357
|
+
cloudId: Scalars['ID']['input'];
|
|
178358
|
+
input: ConfluenceRequestSpaceAccessInput;
|
|
178359
|
+
};
|
|
177828
178360
|
export type MutationConfluence_ResolveApprovalAgentArgs = {
|
|
177829
178361
|
cloudId: Scalars['ID']['input'];
|
|
177830
178362
|
};
|
|
@@ -177837,6 +178369,10 @@ export type MutationConfluence_ResolveCommentsByContentIdArgs = {
|
|
|
177837
178369
|
contentId: Scalars['ID']['input'];
|
|
177838
178370
|
resolveView?: InputMaybe<ConfluenceCommentResolveAllLocation>;
|
|
177839
178371
|
};
|
|
178372
|
+
export type MutationConfluence_ResolveSpaceAccessRequestArgs = {
|
|
178373
|
+
cloudId: Scalars['ID']['input'];
|
|
178374
|
+
input: ConfluenceResolveSpaceAccessRequestInput;
|
|
178375
|
+
};
|
|
177840
178376
|
export type MutationConfluence_RestoreContentVersionArgs = {
|
|
177841
178377
|
cloudId: Scalars['ID']['input'];
|
|
177842
178378
|
input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
|
|
@@ -177887,6 +178423,10 @@ export type MutationConfluence_SyncSmartFolderArgs = {
|
|
|
177887
178423
|
cloudId: Scalars['ID']['input'];
|
|
177888
178424
|
input: ConfluenceSyncSmartFolderInput;
|
|
177889
178425
|
};
|
|
178426
|
+
export type MutationConfluence_UndoSpaceAccessRequestDecisionArgs = {
|
|
178427
|
+
cloudId: Scalars['ID']['input'];
|
|
178428
|
+
input: ConfluenceUndoSpaceAccessRequestDecisionInput;
|
|
178429
|
+
};
|
|
177890
178430
|
export type MutationConfluence_UnschedulePublishArgs = {
|
|
177891
178431
|
cloudId: Scalars['ID']['input'];
|
|
177892
178432
|
input: ConfluenceUnschedulePublishInput;
|
|
@@ -179187,18 +179727,27 @@ export type MutationGraphInference_InferenceAppAddArgs = {
|
|
|
179187
179727
|
export type MutationGraphInference_InferenceAppAddV2Args = {
|
|
179188
179728
|
input: GraphInferenceInferenceAppAddV2Input;
|
|
179189
179729
|
};
|
|
179730
|
+
export type MutationGraphInference_InferenceAppAddV3Args = {
|
|
179731
|
+
input: GraphInferenceInferenceAppAddV3Input;
|
|
179732
|
+
};
|
|
179190
179733
|
export type MutationGraphInference_InferenceAppDeleteArgs = {
|
|
179191
179734
|
input: GraphInferenceInferenceAppDeleteInput;
|
|
179192
179735
|
};
|
|
179193
179736
|
export type MutationGraphInference_InferenceAppDeleteV2Args = {
|
|
179194
179737
|
input: GraphInferenceInferenceAppDeleteV2Input;
|
|
179195
179738
|
};
|
|
179739
|
+
export type MutationGraphInference_InferenceAppDeleteV3Args = {
|
|
179740
|
+
input: GraphInferenceInferenceAppDeleteV3Input;
|
|
179741
|
+
};
|
|
179196
179742
|
export type MutationGraphInference_InferenceAppEditArgs = {
|
|
179197
179743
|
input: GraphInferenceInferenceAppEditInput;
|
|
179198
179744
|
};
|
|
179199
179745
|
export type MutationGraphInference_InferenceAppEditV2Args = {
|
|
179200
179746
|
input: GraphInferenceInferenceAppEditV2Input;
|
|
179201
179747
|
};
|
|
179748
|
+
export type MutationGraphInference_InferenceAppEditV3Args = {
|
|
179749
|
+
input: GraphInferenceInferenceAppEditV3Input;
|
|
179750
|
+
};
|
|
179202
179751
|
export type MutationGraphIntegration_ActionAdminManagementUpdateActionConfigurationArgs = {
|
|
179203
179752
|
input: GraphIntegrationActionAdminManagementUpdateActionConfigurationInput;
|
|
179204
179753
|
};
|
|
@@ -180311,6 +180860,9 @@ export type MutationJira_SetTimelineViewHideUnParentedItemsArgs = {
|
|
|
180311
180860
|
export type MutationJira_SetTimelineViewHideWarningsArgs = {
|
|
180312
180861
|
input: JiraSetTimelineViewHideWarningsInput;
|
|
180313
180862
|
};
|
|
180863
|
+
export type MutationJira_SetTimelineViewHierarchyWithFiltersEnabledArgs = {
|
|
180864
|
+
input: JiraSetTimelineViewHierarchyWithFiltersEnabledInput;
|
|
180865
|
+
};
|
|
180314
180866
|
export type MutationJira_SetTimelineViewMaxHierarchyLevelArgs = {
|
|
180315
180867
|
input: JiraSetTimelineViewMaxHierarchyLevelInput;
|
|
180316
180868
|
};
|
|
@@ -180547,6 +181099,9 @@ export type MutationJsmTelemetry_ValidateTelemetryConnectionArgs = {
|
|
|
180547
181099
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
180548
181100
|
input: JsmTelemetryValidateTelemetryConnectionInput;
|
|
180549
181101
|
};
|
|
181102
|
+
export type MutationKitsune_CreateConnectorConfigArgs = {
|
|
181103
|
+
input: KitsuneCreateConnectorConfigInput;
|
|
181104
|
+
};
|
|
180550
181105
|
export type MutationKitsune_CreateCustomerArgs = {
|
|
180551
181106
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
180552
181107
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -180651,6 +181206,10 @@ export type MutationKitsune_MoveViewArgs = {
|
|
|
180651
181206
|
export type MutationKitsune_RefreshInsightCountersArgs = {
|
|
180652
181207
|
workspaceAri: Scalars['ID']['input'];
|
|
180653
181208
|
};
|
|
181209
|
+
export type MutationKitsune_RemoveConnectorConfigArgs = {
|
|
181210
|
+
id: Scalars['ID']['input'];
|
|
181211
|
+
input: KitsuneRemoveConnectorConfigInput;
|
|
181212
|
+
};
|
|
180654
181213
|
export type MutationKitsune_RemoveCustomerArgs = {
|
|
180655
181214
|
ari: Scalars['ID']['input'];
|
|
180656
181215
|
};
|
|
@@ -180707,6 +181266,10 @@ export type MutationKitsune_SyncCustomerFieldsArgs = {
|
|
|
180707
181266
|
export type MutationKitsune_SyncCustomersArgs = {
|
|
180708
181267
|
workspaceAri: Scalars['ID']['input'];
|
|
180709
181268
|
};
|
|
181269
|
+
export type MutationKitsune_UpdateConnectorConfigArgs = {
|
|
181270
|
+
id: Scalars['ID']['input'];
|
|
181271
|
+
input: KitsuneUpdateConnectorConfigInput;
|
|
181272
|
+
};
|
|
180710
181273
|
export type MutationKitsune_UpdateCustomerArgs = {
|
|
180711
181274
|
ari: Scalars['ID']['input'];
|
|
180712
181275
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -184895,6 +185458,7 @@ export declare enum PsmDeviceHealthStatus {
|
|
|
184895
185458
|
}
|
|
184896
185459
|
export type PsmDeviceIdentity = {
|
|
184897
185460
|
__typename?: 'PsmDeviceIdentity';
|
|
185461
|
+
deviceName?: Maybe<Scalars['String']['output']>;
|
|
184898
185462
|
isDeviceOffline?: Maybe<Scalars['Boolean']['output']>;
|
|
184899
185463
|
serialNumber: Scalars['String']['output'];
|
|
184900
185464
|
};
|
|
@@ -185691,6 +186255,7 @@ export type Query = {
|
|
|
185691
186255
|
agentWorkspace_utilizationForPendingChanges?: Maybe<Array<AgentWorkspaceAgentUtilizationForPendingChanges>>;
|
|
185692
186256
|
agentWorkspace_wfoSummaryView?: Maybe<AgentWorkspaceWfoSummaryViewResult>;
|
|
185693
186257
|
agentWorkspace_wfoSummaryViewByProjectKey?: Maybe<AgentWorkspaceWfoSummaryViewByProjectKeyResult>;
|
|
186258
|
+
agentWorkspace_workforceTeamAccessLevels?: Maybe<Array<AgentWorkspaceWorkforceTeamAccessLevelResult>>;
|
|
185694
186259
|
agentWorkspace_workloadJqlConfig?: Maybe<AgentWorkspaceWorkloadJqlConfig>;
|
|
185695
186260
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
185696
186261
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
@@ -186084,6 +186649,7 @@ export type Query = {
|
|
|
186084
186649
|
confluence_latestInProgressSpacePermissionTransitionTaskProgress?: Maybe<ConfluenceSpacePermissionTransitionTaskProgress>;
|
|
186085
186650
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
186086
186651
|
confluence_legacyEditorReportDownloadLink?: Maybe<ConfluenceLegacyEditorReportDownloadLink>;
|
|
186652
|
+
confluence_listLabelsMacro?: Maybe<ConfluenceListLabelsEntryConnection>;
|
|
186087
186653
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
186088
186654
|
confluence_macroPlaceholderAdf?: Maybe<ConfluenceMacroPlaceholderAdf>;
|
|
186089
186655
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
@@ -186141,6 +186707,7 @@ export type Query = {
|
|
|
186141
186707
|
confluence_slide?: Maybe<ConfluenceSlide>;
|
|
186142
186708
|
confluence_slides?: Maybe<Array<Maybe<ConfluenceSlide>>>;
|
|
186143
186709
|
confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
|
|
186710
|
+
confluence_spaceAccessRequests?: Maybe<ConfluenceSpaceAccessRequestConnection>;
|
|
186144
186711
|
confluence_spaceAnalyticsPermissions?: Maybe<ConfluenceSpaceAnalyticsPermissionConnection>;
|
|
186145
186712
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
186146
186713
|
confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
|
|
@@ -186223,6 +186790,7 @@ export type Query = {
|
|
|
186223
186790
|
cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
|
|
186224
186791
|
cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
|
|
186225
186792
|
cpls_filters?: Maybe<CplsFilterConfigurationType>;
|
|
186793
|
+
cpls_getContributorContributionAggregations?: Maybe<CplsContributorContributionAggregationsResult>;
|
|
186226
186794
|
cpls_getContributorScopeAssociations?: Maybe<CplsContributorScopeAssociationConnection>;
|
|
186227
186795
|
cpls_getContributorWorkAssociations?: Maybe<CplsContributorWorkAssociationConnection>;
|
|
186228
186796
|
cpls_peopleView?: Maybe<CplsPeopleView>;
|
|
@@ -186460,6 +187028,7 @@ export type Query = {
|
|
|
186460
187028
|
graphInference_getRelatedReposV2?: Maybe<GraphInferenceGetRelatedReposV2Response>;
|
|
186461
187029
|
graphInference_getRelatedReposV3?: Maybe<GraphInferenceGetRelatedReposV3Response>;
|
|
186462
187030
|
graphInference_getSimilarJiraItems?: Maybe<GraphInferenceGetSimilarJiraItemsResponse>;
|
|
187031
|
+
graphInference_graphclawInferV3?: Maybe<Array<GraphInferenceGraphclawInferOptionV3>>;
|
|
186463
187032
|
graphInference_graphclawInferenceTargets?: Maybe<Array<GraphInferenceGraphclawOption>>;
|
|
186464
187033
|
graphInference_graphclawInferenceTargetsV2?: Maybe<Array<GraphInferenceGraphclawOptionV2>>;
|
|
186465
187034
|
graphInference_graphclawInferenceType?: Maybe<Array<GraphInferenceGraphclawOption>>;
|
|
@@ -186468,6 +187037,8 @@ export type Query = {
|
|
|
186468
187037
|
graphInference_graphclawProductOptionsV2?: Maybe<Array<GraphInferenceGraphclawSourceOptionV2>>;
|
|
186469
187038
|
graphInference_inferenceAppList?: Maybe<Array<GraphInferenceInferenceApp>>;
|
|
186470
187039
|
graphInference_inferenceAppListV2?: Maybe<Array<GraphInferenceInferenceAppV2>>;
|
|
187040
|
+
graphInference_inferenceAppListV3?: Maybe<Array<GraphInferenceInferenceAppV3>>;
|
|
187041
|
+
graphInference_inferenceModels?: Maybe<GraphInferenceInferenceModelsResponse>;
|
|
186471
187042
|
graphInference_inferenceQualityMetrics?: Maybe<GraphInferenceInferenceQualityMetricsResponse>;
|
|
186472
187043
|
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
186473
187044
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
@@ -188759,6 +189330,8 @@ export type Query = {
|
|
|
188759
189330
|
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
188760
189331
|
jira_rovoEnablementStatus?: Maybe<JiraRovoEnablementStatus>;
|
|
188761
189332
|
jira_sprintField?: Maybe<JiraJqlField>;
|
|
189333
|
+
jira_subtaskCreationAdditionalServices?: Maybe<JiraIssueCreateAdditionalServicesResult>;
|
|
189334
|
+
jira_subtaskCreationFields?: Maybe<JiraIssueCreateFieldsResult>;
|
|
188762
189335
|
jira_subtaskCreationLayout?: Maybe<JiraIssueCreateLayoutResult>;
|
|
188763
189336
|
jira_subtaskCreationLayoutWithML?: Maybe<JiraIssueCreateLayoutResult>;
|
|
188764
189337
|
jira_userSegRedirectAdvice?: Maybe<JiraUserSegRedirectAdvice>;
|
|
@@ -188818,6 +189391,8 @@ export type Query = {
|
|
|
188818
189391
|
jsmTelemetry_telemetryServiceInfo?: Maybe<JsmTelemetryServiceInfo>;
|
|
188819
189392
|
jsw?: Maybe<JswQuery>;
|
|
188820
189393
|
kitsune_chunks?: Maybe<Array<Maybe<KitsuneChunk>>>;
|
|
189394
|
+
kitsune_connectorConfig?: Maybe<KitsuneConnectorConfig>;
|
|
189395
|
+
kitsune_connectorConfigs?: Maybe<Array<KitsuneConnectorConfig>>;
|
|
188821
189396
|
kitsune_customerByAri?: Maybe<KitsuneCustomer>;
|
|
188822
189397
|
kitsune_customers?: Maybe<Array<Maybe<KitsuneCustomer>>>;
|
|
188823
189398
|
kitsune_entitlements?: Maybe<KitsuneEntitlements>;
|
|
@@ -190329,6 +190904,12 @@ export type QueryAgentWorkspace_WfoSummaryViewArgs = {
|
|
|
190329
190904
|
export type QueryAgentWorkspace_WfoSummaryViewByProjectKeyArgs = {
|
|
190330
190905
|
input: AgentWorkspaceWfoSummaryViewByProjectKeyInput;
|
|
190331
190906
|
};
|
|
190907
|
+
export type QueryAgentWorkspace_WorkforceTeamAccessLevelsArgs = {
|
|
190908
|
+
accountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190909
|
+
cloudId: Scalars['ID']['input'];
|
|
190910
|
+
projectKey: Scalars['String']['input'];
|
|
190911
|
+
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
190912
|
+
};
|
|
190332
190913
|
export type QueryAgentWorkspace_WorkloadJqlConfigArgs = {
|
|
190333
190914
|
projectAri: Scalars['ID']['input'];
|
|
190334
190915
|
};
|
|
@@ -190668,6 +191249,7 @@ export type QueryAssetsDm_ComputedIssuesArgs = {
|
|
|
190668
191249
|
cloudId: Scalars['ID']['input'];
|
|
190669
191250
|
objectAttributeId: Scalars['ID']['input'];
|
|
190670
191251
|
objectId: Scalars['ID']['input'];
|
|
191252
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
190671
191253
|
workspaceId: Scalars['ID']['input'];
|
|
190672
191254
|
};
|
|
190673
191255
|
export type QueryAssetsDm_DataDictionariesArgs = {
|
|
@@ -190983,6 +191565,7 @@ export type QueryAssetsDm_PaginatedIssuesArgs = {
|
|
|
190983
191565
|
objectId: Scalars['ID']['input'];
|
|
190984
191566
|
page: Scalars['Int']['input'];
|
|
190985
191567
|
pageSize: Scalars['Int']['input'];
|
|
191568
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
190986
191569
|
workspaceId: Scalars['ID']['input'];
|
|
190987
191570
|
};
|
|
190988
191571
|
export type QueryAssetsDm_RawDataArgs = {
|
|
@@ -191130,6 +191713,8 @@ export type QueryAssetsVertical_ItemMappingsArgs = {
|
|
|
191130
191713
|
cloudId: Scalars['ID']['input'];
|
|
191131
191714
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
191132
191715
|
itemType?: InputMaybe<AssetsVerticalItemType>;
|
|
191716
|
+
searchText?: InputMaybe<Scalars['String']['input']>;
|
|
191717
|
+
sort?: InputMaybe<AssetsVerticalItemMappingSortInput>;
|
|
191133
191718
|
spaceIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
191134
191719
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
191135
191720
|
};
|
|
@@ -192171,6 +192756,14 @@ export type QueryConfluence_LegacyEditorReportDownloadLinkArgs = {
|
|
|
192171
192756
|
spaceId: Scalars['ID']['input'];
|
|
192172
192757
|
taskId: Scalars['ID']['input'];
|
|
192173
192758
|
};
|
|
192759
|
+
export type QueryConfluence_ListLabelsMacroArgs = {
|
|
192760
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
192761
|
+
allSpaces?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192762
|
+
cloudId: Scalars['ID']['input'];
|
|
192763
|
+
excludedLabels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
192764
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
192765
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
192766
|
+
};
|
|
192174
192767
|
export type QueryConfluence_LoomEntryPointsArgs = {
|
|
192175
192768
|
cloudId: Scalars['ID']['input'];
|
|
192176
192769
|
};
|
|
@@ -192444,6 +193037,12 @@ export type QueryConfluence_SmartSpaceOverviewArgs = {
|
|
|
192444
193037
|
cloudId: Scalars['ID']['input'];
|
|
192445
193038
|
spaceKey: Scalars['String']['input'];
|
|
192446
193039
|
};
|
|
193040
|
+
export type QueryConfluence_SpaceAccessRequestsArgs = {
|
|
193041
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
193042
|
+
cloudId: Scalars['ID']['input'];
|
|
193043
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
193044
|
+
spaceId: Scalars['ID']['input'];
|
|
193045
|
+
};
|
|
192447
193046
|
export type QueryConfluence_SpaceAnalyticsPermissionsArgs = {
|
|
192448
193047
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
192449
193048
|
cloudId: Scalars['ID']['input'];
|
|
@@ -192915,6 +193514,9 @@ export type QueryCpls_FiltersArgs = {
|
|
|
192915
193514
|
includeSuggestions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
192916
193515
|
scopeId: Scalars['ID']['input'];
|
|
192917
193516
|
};
|
|
193517
|
+
export type QueryCpls_GetContributorContributionAggregationsArgs = {
|
|
193518
|
+
input: CplsGetContributorContributionAggregationsInput;
|
|
193519
|
+
};
|
|
192918
193520
|
export type QueryCpls_GetContributorScopeAssociationsArgs = {
|
|
192919
193521
|
input: CplsGetContributorScopeAssociationsInput;
|
|
192920
193522
|
};
|
|
@@ -193712,13 +194314,13 @@ export type QueryGetAppInstallationsArgs = {
|
|
|
193712
194314
|
contexts?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
193713
194315
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
193714
194316
|
edition?: InputMaybe<Array<InstallationEditionInput>>;
|
|
193715
|
-
environmentId?: InputMaybe<Scalars['String']['input']
|
|
194317
|
+
environmentId?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
193716
194318
|
installedOn?: InputMaybe<DateSearchInput>;
|
|
193717
194319
|
license?: InputMaybe<Array<LicenseValue>>;
|
|
193718
194320
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
193719
194321
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
193720
194322
|
status?: InputMaybe<InstallationStatus>;
|
|
193721
|
-
version?: InputMaybe<Scalars['String']['input']
|
|
194323
|
+
version?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
193722
194324
|
};
|
|
193723
194325
|
export type QueryGetCommentReplySuggestionsArgs = {
|
|
193724
194326
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -193925,6 +194527,9 @@ export type QueryGraphInference_GetRelatedReposV3Args = {
|
|
|
193925
194527
|
export type QueryGraphInference_GetSimilarJiraItemsArgs = {
|
|
193926
194528
|
input: GraphInferenceGetSimilarJiraItemsInput;
|
|
193927
194529
|
};
|
|
194530
|
+
export type QueryGraphInference_InferenceModelsArgs = {
|
|
194531
|
+
input: GraphInferenceInferenceModelsInput;
|
|
194532
|
+
};
|
|
193928
194533
|
export type QueryGraphInference_InferenceQualityMetricsArgs = {
|
|
193929
194534
|
input: GraphInferenceInferenceQualityMetricsInput;
|
|
193930
194535
|
};
|
|
@@ -210466,6 +211071,27 @@ export type QueryJira_RovoEnablementStatusArgs = {
|
|
|
210466
211071
|
export type QueryJira_SprintFieldArgs = {
|
|
210467
211072
|
cloudId: Scalars['ID']['input'];
|
|
210468
211073
|
};
|
|
211074
|
+
export type QueryJira_SubtaskCreationAdditionalServicesArgs = {
|
|
211075
|
+
cloudId: Scalars['ID']['input'];
|
|
211076
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
211077
|
+
parentId: JiraParentIdInput;
|
|
211078
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
211079
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
211080
|
+
};
|
|
211081
|
+
export type QueryJira_SubtaskCreationFieldsArgs = {
|
|
211082
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
211083
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
211084
|
+
cloudId: Scalars['ID']['input'];
|
|
211085
|
+
defaultValues?: InputMaybe<JiraIssueFieldsInput>;
|
|
211086
|
+
evaluateMiniMode?: InputMaybe<Scalars['Boolean']['input']>;
|
|
211087
|
+
fieldsFilter?: InputMaybe<JiraIssueCreateFieldsFilter>;
|
|
211088
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
211089
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
211090
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
211091
|
+
parentId: JiraParentIdInput;
|
|
211092
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
211093
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
211094
|
+
};
|
|
210469
211095
|
export type QueryJira_SubtaskCreationLayoutArgs = {
|
|
210470
211096
|
cloudId: Scalars['ID']['input'];
|
|
210471
211097
|
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
@@ -210711,6 +211337,7 @@ export type QueryJsmTelemetry_SearchMetricsArgs = {
|
|
|
210711
211337
|
providerContext?: InputMaybe<Array<JsmTelemetryProviderParameterValueInput>>;
|
|
210712
211338
|
};
|
|
210713
211339
|
export type QueryJsmTelemetry_SuggestMetricsArgs = {
|
|
211340
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
210714
211341
|
incidentId: Scalars['ID']['input'];
|
|
210715
211342
|
provider: JsmTelemetryProviderType;
|
|
210716
211343
|
};
|
|
@@ -210720,6 +211347,15 @@ export type QueryJsmTelemetry_TelemetryServiceInfoArgs = {
|
|
|
210720
211347
|
export type QueryKitsune_ChunksArgs = {
|
|
210721
211348
|
ids: Array<Scalars['ID']['input']>;
|
|
210722
211349
|
};
|
|
211350
|
+
export type QueryKitsune_ConnectorConfigArgs = {
|
|
211351
|
+
id: Scalars['ID']['input'];
|
|
211352
|
+
workspaceAri: Scalars['ID']['input'];
|
|
211353
|
+
};
|
|
211354
|
+
export type QueryKitsune_ConnectorConfigsArgs = {
|
|
211355
|
+
sourceType?: InputMaybe<KitsuneSourceCategoryType>;
|
|
211356
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
211357
|
+
workspaceAri: Scalars['ID']['input'];
|
|
211358
|
+
};
|
|
210723
211359
|
export type QueryKitsune_CustomerByAriArgs = {
|
|
210724
211360
|
ari: Scalars['ID']['input'];
|
|
210725
211361
|
};
|
|
@@ -227264,6 +227900,7 @@ export type TownsquareGoalCapabilities = {
|
|
|
227264
227900
|
};
|
|
227265
227901
|
export type TownsquareGoalConnection = {
|
|
227266
227902
|
__typename?: 'TownsquareGoalConnection';
|
|
227903
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
227267
227904
|
edges?: Maybe<Array<Maybe<TownsquareGoalEdge>>>;
|
|
227268
227905
|
pageInfo: PageInfo;
|
|
227269
227906
|
};
|
|
@@ -233219,6 +233856,17 @@ export type TrelloCreateInboxCardActionDisplayEntities = {
|
|
|
233219
233856
|
card?: Maybe<TrelloActionCardEntity>;
|
|
233220
233857
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
233221
233858
|
};
|
|
233859
|
+
export type TrelloCreateLabelInput = {
|
|
233860
|
+
boardId: Scalars['ID']['input'];
|
|
233861
|
+
color: Scalars['String']['input'];
|
|
233862
|
+
name: Scalars['String']['input'];
|
|
233863
|
+
};
|
|
233864
|
+
export type TrelloCreateLabelPayload = Payload & {
|
|
233865
|
+
__typename?: 'TrelloCreateLabelPayload';
|
|
233866
|
+
errors?: Maybe<Array<MutationError>>;
|
|
233867
|
+
label?: Maybe<TrelloLabel>;
|
|
233868
|
+
success: Scalars['Boolean']['output'];
|
|
233869
|
+
};
|
|
233222
233870
|
export type TrelloCreateListInput = {
|
|
233223
233871
|
boardId: Scalars['ID']['input'];
|
|
233224
233872
|
color?: InputMaybe<TrelloListColor>;
|
|
@@ -233557,6 +234205,7 @@ export type TrelloEchoUpdated = {
|
|
|
233557
234205
|
export type TrelloEditBoardWithAiInput = {
|
|
233558
234206
|
boardId: Scalars['ID']['input'];
|
|
233559
234207
|
referenceTaskIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
234208
|
+
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
233560
234209
|
userPrompt: Scalars['String']['input'];
|
|
233561
234210
|
};
|
|
233562
234211
|
export type TrelloEditBoardWithAiPayload = Payload & {
|
|
@@ -234803,6 +235452,7 @@ export type TrelloMutationApi = {
|
|
|
234803
235452
|
createCustomField?: Maybe<TrelloCreateCustomFieldPayload>;
|
|
234804
235453
|
createCustomFieldOption?: Maybe<TrelloCreateCustomFieldOptionPayload>;
|
|
234805
235454
|
createEcho?: Maybe<TrelloEchoPayload>;
|
|
235455
|
+
createLabel?: Maybe<TrelloCreateLabelPayload>;
|
|
234806
235456
|
createList?: Maybe<TrelloCreateListPayload>;
|
|
234807
235457
|
createMemberAiRule?: Maybe<TrelloCreateMemberAiRulePayload>;
|
|
234808
235458
|
createMemberFromAa?: Maybe<TrelloCreateMemberFromAaPayload>;
|
|
@@ -234857,6 +235507,7 @@ export type TrelloMutationApi = {
|
|
|
234857
235507
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
234858
235508
|
reopenBoard?: Maybe<TrelloReopenBoardPayload>;
|
|
234859
235509
|
reopenCard?: Maybe<TrelloReopenCardPayload>;
|
|
235510
|
+
reopenList?: Maybe<TrelloReopenListPayload>;
|
|
234860
235511
|
researchCardWithAi?: Maybe<TrelloResearchCardWithAiPayload>;
|
|
234861
235512
|
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
234862
235513
|
resetMemberAiImageGenerationUsage?: Maybe<TrelloResetMemberAiImageGenerationUsagePayload>;
|
|
@@ -235016,6 +235667,9 @@ export type TrelloMutationApiCreateCustomFieldOptionArgs = {
|
|
|
235016
235667
|
export type TrelloMutationApiCreateEchoArgs = {
|
|
235017
235668
|
input: TrelloEchoInput;
|
|
235018
235669
|
};
|
|
235670
|
+
export type TrelloMutationApiCreateLabelArgs = {
|
|
235671
|
+
input: TrelloCreateLabelInput;
|
|
235672
|
+
};
|
|
235019
235673
|
export type TrelloMutationApiCreateListArgs = {
|
|
235020
235674
|
input: TrelloCreateListInput;
|
|
235021
235675
|
};
|
|
@@ -235175,6 +235829,9 @@ export type TrelloMutationApiReopenBoardArgs = {
|
|
|
235175
235829
|
export type TrelloMutationApiReopenCardArgs = {
|
|
235176
235830
|
input: TrelloReopenCardInput;
|
|
235177
235831
|
};
|
|
235832
|
+
export type TrelloMutationApiReopenListArgs = {
|
|
235833
|
+
input: TrelloReopenListInput;
|
|
235834
|
+
};
|
|
235178
235835
|
export type TrelloMutationApiResearchCardWithAiArgs = {
|
|
235179
235836
|
input: TrelloResearchCardWithAiInput;
|
|
235180
235837
|
};
|
|
@@ -236714,6 +237371,15 @@ export type TrelloReopenCardPayload = Payload & {
|
|
|
236714
237371
|
errors?: Maybe<Array<MutationError>>;
|
|
236715
237372
|
success: Scalars['Boolean']['output'];
|
|
236716
237373
|
};
|
|
237374
|
+
export type TrelloReopenListInput = {
|
|
237375
|
+
listId: Scalars['ID']['input'];
|
|
237376
|
+
};
|
|
237377
|
+
export type TrelloReopenListPayload = Payload & {
|
|
237378
|
+
__typename?: 'TrelloReopenListPayload';
|
|
237379
|
+
errors?: Maybe<Array<MutationError>>;
|
|
237380
|
+
list?: Maybe<TrelloList>;
|
|
237381
|
+
success: Scalars['Boolean']['output'];
|
|
237382
|
+
};
|
|
236717
237383
|
export type TrelloResearchCardSuggestedLink = {
|
|
236718
237384
|
__typename?: 'TrelloResearchCardSuggestedLink';
|
|
236719
237385
|
reason: Scalars['String']['output'];
|