@forge/cli-shared 8.22.1-next.1 → 8.23.0-next.3
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 +18 -0
- package/out/graphql/graphql-types.d.ts +324 -3
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +69 -45
- package/out/ui/text.d.ts +9 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +9 -0
- package/package.json +2 -2
|
@@ -315,6 +315,10 @@ export declare enum AiOpsInvestigationStatus {
|
|
|
315
315
|
InProgress = "IN_PROGRESS",
|
|
316
316
|
New = "NEW"
|
|
317
317
|
}
|
|
318
|
+
export declare enum AiOpsRcaMode {
|
|
319
|
+
Deep = "DEEP",
|
|
320
|
+
Fast = "FAST"
|
|
321
|
+
}
|
|
318
322
|
export declare type AiOpsRelatedAlert = AiOpsRelatedAlertEntry & {
|
|
319
323
|
__typename?: 'AIOpsRelatedAlert';
|
|
320
324
|
alertDetailsPagePath?: Maybe<Scalars['String']['output']>;
|
|
@@ -372,7 +376,9 @@ export declare enum AiOpsRelatedAlertStatus {
|
|
|
372
376
|
Snoozed = "SNOOZED"
|
|
373
377
|
}
|
|
374
378
|
export declare type AiOpsTriggerInvestigationInput = {
|
|
379
|
+
agentic?: InputMaybe<Scalars['Boolean']['input']>;
|
|
375
380
|
inScopeServiceIds: Array<Scalars['ID']['input']>;
|
|
381
|
+
rcaMode?: InputMaybe<AiOpsRcaMode>;
|
|
376
382
|
sourceEntityId: Scalars['ID']['input'];
|
|
377
383
|
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
378
384
|
};
|
|
@@ -2230,6 +2236,11 @@ export declare type AvpProductWorkspaceMapEntry = {
|
|
|
2230
2236
|
product: Scalars['String']['input'];
|
|
2231
2237
|
workspaceId: Scalars['ID']['input'];
|
|
2232
2238
|
};
|
|
2239
|
+
export declare type AvpRecentDashboard = {
|
|
2240
|
+
__typename?: 'AVPRecentDashboard';
|
|
2241
|
+
dashboard: AvpDashboard;
|
|
2242
|
+
lastViewedByUserAt?: Maybe<Scalars['String']['output']>;
|
|
2243
|
+
};
|
|
2233
2244
|
export declare enum AvpRefreshMethod {
|
|
2234
2245
|
RefreshAuto = "REFRESH_AUTO",
|
|
2235
2246
|
RefreshLoad = "REFRESH_LOAD",
|
|
@@ -7341,6 +7352,12 @@ export declare type AgentWorkspaceSchedulesPageInfo = {
|
|
|
7341
7352
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
7342
7353
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
7343
7354
|
};
|
|
7355
|
+
export declare type AgentWorkspaceService = {
|
|
7356
|
+
__typename?: 'AgentWorkspaceService';
|
|
7357
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7358
|
+
id: Scalars['ID']['output'];
|
|
7359
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7360
|
+
};
|
|
7344
7361
|
export declare type AgentWorkspaceServiceBucket = {
|
|
7345
7362
|
__typename?: 'AgentWorkspaceServiceBucket';
|
|
7346
7363
|
sampleTickets: Array<AgentWorkspaceTicketSample>;
|
|
@@ -7372,6 +7389,18 @@ export declare type AgentWorkspaceServiceClusteringResult = {
|
|
|
7372
7389
|
totalClusters: Scalars['Int']['output'];
|
|
7373
7390
|
totalTickets: Scalars['Int']['output'];
|
|
7374
7391
|
};
|
|
7392
|
+
export declare type AgentWorkspaceServiceConnection = {
|
|
7393
|
+
__typename?: 'AgentWorkspaceServiceConnection';
|
|
7394
|
+
edges?: Maybe<Array<AgentWorkspaceServiceEdge>>;
|
|
7395
|
+
errors?: Maybe<Array<QueryError>>;
|
|
7396
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceService>>>;
|
|
7397
|
+
pageInfo: PageInfo;
|
|
7398
|
+
};
|
|
7399
|
+
export declare type AgentWorkspaceServiceEdge = {
|
|
7400
|
+
__typename?: 'AgentWorkspaceServiceEdge';
|
|
7401
|
+
cursor: Scalars['String']['output'];
|
|
7402
|
+
node: AgentWorkspaceService;
|
|
7403
|
+
};
|
|
7375
7404
|
export declare type AgentWorkspaceSetDefaultCapacityInput = {
|
|
7376
7405
|
cloudId: Scalars['ID']['input'];
|
|
7377
7406
|
defaultCapacity: Scalars['Int']['input'];
|
|
@@ -7512,6 +7541,16 @@ export declare type AgentWorkspaceSkillCategoryEdge = {
|
|
|
7512
7541
|
cursor: Scalars['String']['output'];
|
|
7513
7542
|
node: AgentWorkspaceSkillCategory;
|
|
7514
7543
|
};
|
|
7544
|
+
export declare type AgentWorkspaceSkillCategoryUpdateInput = {
|
|
7545
|
+
categoryId: Scalars['ID']['input'];
|
|
7546
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
7547
|
+
name: Scalars['String']['input'];
|
|
7548
|
+
};
|
|
7549
|
+
export declare type AgentWorkspaceSkillCategoryUpdatePayload = {
|
|
7550
|
+
__typename?: 'AgentWorkspaceSkillCategoryUpdatePayload';
|
|
7551
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7552
|
+
success: Scalars['Boolean']['output'];
|
|
7553
|
+
};
|
|
7515
7554
|
export declare type AgentWorkspaceSkillConnection = {
|
|
7516
7555
|
__typename?: 'AgentWorkspaceSkillConnection';
|
|
7517
7556
|
edges?: Maybe<Array<AgentWorkspaceSkillEdge>>;
|
|
@@ -7542,6 +7581,19 @@ export declare type AgentWorkspaceSkillServiceMapping = {
|
|
|
7542
7581
|
serviceId: Scalars['ID']['output'];
|
|
7543
7582
|
skill: AgentWorkspaceSkill;
|
|
7544
7583
|
};
|
|
7584
|
+
export declare type AgentWorkspaceSkillUpdateInput = {
|
|
7585
|
+
category?: InputMaybe<AgentWorkspaceSkillCategoryCreateInput>;
|
|
7586
|
+
categoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
7587
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
7588
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
7589
|
+
skillId: Scalars['ID']['input'];
|
|
7590
|
+
};
|
|
7591
|
+
export declare type AgentWorkspaceSkillUpdatePayload = {
|
|
7592
|
+
__typename?: 'AgentWorkspaceSkillUpdatePayload';
|
|
7593
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7594
|
+
skill?: Maybe<AgentWorkspaceSkill>;
|
|
7595
|
+
success: Scalars['Boolean']['output'];
|
|
7596
|
+
};
|
|
7545
7597
|
export declare type AgentWorkspaceSmartRoutingConfig = {
|
|
7546
7598
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
7547
7599
|
enabled: Scalars['Boolean']['output'];
|
|
@@ -7583,6 +7635,12 @@ export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
|
|
|
7583
7635
|
rowsWritten: Scalars['Int']['output'];
|
|
7584
7636
|
teamsNewlyConnected: Scalars['Int']['output'];
|
|
7585
7637
|
};
|
|
7638
|
+
export declare type AgentWorkspaceTeam = {
|
|
7639
|
+
__typename?: 'AgentWorkspaceTeam';
|
|
7640
|
+
team?: Maybe<TeamV2>;
|
|
7641
|
+
teamARI: Scalars['ID']['output'];
|
|
7642
|
+
teamId?: Maybe<Scalars['ID']['output']>;
|
|
7643
|
+
};
|
|
7586
7644
|
export declare type AgentWorkspaceTeamCapacitiesInput = {
|
|
7587
7645
|
cloudId: Scalars['ID']['input'];
|
|
7588
7646
|
projectKey: Scalars['String']['input'];
|
|
@@ -7596,6 +7654,13 @@ export declare type AgentWorkspaceTeamCapacityEntry = {
|
|
|
7596
7654
|
capacity: Scalars['Int']['input'];
|
|
7597
7655
|
teamId: Scalars['ID']['input'];
|
|
7598
7656
|
};
|
|
7657
|
+
export declare type AgentWorkspaceTeamConnection = {
|
|
7658
|
+
__typename?: 'AgentWorkspaceTeamConnection';
|
|
7659
|
+
edges?: Maybe<Array<AgentWorkspaceTeamEdge>>;
|
|
7660
|
+
errors?: Maybe<Array<QueryError>>;
|
|
7661
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceTeam>>>;
|
|
7662
|
+
pageInfo: PageInfo;
|
|
7663
|
+
};
|
|
7599
7664
|
export declare type AgentWorkspaceTeamCount = {
|
|
7600
7665
|
__typename?: 'AgentWorkspaceTeamCount';
|
|
7601
7666
|
count: Scalars['Int']['output'];
|
|
@@ -7606,6 +7671,11 @@ export declare type AgentWorkspaceTeamCreationFailure = {
|
|
|
7606
7671
|
groupAri: Scalars['ID']['output'];
|
|
7607
7672
|
message: Scalars['String']['output'];
|
|
7608
7673
|
};
|
|
7674
|
+
export declare type AgentWorkspaceTeamEdge = {
|
|
7675
|
+
__typename?: 'AgentWorkspaceTeamEdge';
|
|
7676
|
+
cursor: Scalars['String']['output'];
|
|
7677
|
+
node: AgentWorkspaceTeam;
|
|
7678
|
+
};
|
|
7609
7679
|
export declare type AgentWorkspaceTeamLinkFailure = {
|
|
7610
7680
|
__typename?: 'AgentWorkspaceTeamLinkFailure';
|
|
7611
7681
|
message: Scalars['String']['output'];
|
|
@@ -7739,6 +7809,23 @@ export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryPayload = {
|
|
|
7739
7809
|
entry: AgentWorkspaceDraftedRoutingTableEntry;
|
|
7740
7810
|
errors?: Maybe<Array<AgentWorkspaceMutationError>>;
|
|
7741
7811
|
};
|
|
7812
|
+
export declare type AgentWorkspaceUser = {
|
|
7813
|
+
__typename?: 'AgentWorkspaceUser';
|
|
7814
|
+
accountId: Scalars['ID']['output'];
|
|
7815
|
+
user?: Maybe<User>;
|
|
7816
|
+
};
|
|
7817
|
+
export declare type AgentWorkspaceUserConnection = {
|
|
7818
|
+
__typename?: 'AgentWorkspaceUserConnection';
|
|
7819
|
+
edges?: Maybe<Array<AgentWorkspaceUserEdge>>;
|
|
7820
|
+
errors?: Maybe<Array<QueryError>>;
|
|
7821
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceUser>>>;
|
|
7822
|
+
pageInfo: PageInfo;
|
|
7823
|
+
};
|
|
7824
|
+
export declare type AgentWorkspaceUserEdge = {
|
|
7825
|
+
__typename?: 'AgentWorkspaceUserEdge';
|
|
7826
|
+
cursor: Scalars['String']['output'];
|
|
7827
|
+
node: AgentWorkspaceUser;
|
|
7828
|
+
};
|
|
7742
7829
|
export declare type AiCoreApiCsvExportInput = {
|
|
7743
7830
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
7744
7831
|
fromDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31033,6 +31120,16 @@ export declare type ConfluencePatchCalendarPayload = Payload & {
|
|
|
31033
31120
|
errors?: Maybe<Array<MutationError>>;
|
|
31034
31121
|
success: Scalars['Boolean']['output'];
|
|
31035
31122
|
};
|
|
31123
|
+
export declare type ConfluencePatchSpaceSettingsInput = {
|
|
31124
|
+
contentMode?: InputMaybe<ConfluenceGraphQlContentMode>;
|
|
31125
|
+
id: Scalars['ID']['input'];
|
|
31126
|
+
};
|
|
31127
|
+
export declare type ConfluencePatchSpaceSettingsPayload = Payload & {
|
|
31128
|
+
__typename?: 'ConfluencePatchSpaceSettingsPayload';
|
|
31129
|
+
confluenceSpaceSettings?: Maybe<ConfluenceSpaceSettings>;
|
|
31130
|
+
errors?: Maybe<Array<MutationError>>;
|
|
31131
|
+
success: Scalars['Boolean']['output'];
|
|
31132
|
+
};
|
|
31036
31133
|
export declare type ConfluencePdfExportDownloadLink = {
|
|
31037
31134
|
__typename?: 'ConfluencePdfExportDownloadLink';
|
|
31038
31135
|
link?: Maybe<Scalars['String']['output']>;
|
|
@@ -32829,6 +32926,7 @@ export declare enum ConfluenceSpaceSettingEditorVersion {
|
|
|
32829
32926
|
}
|
|
32830
32927
|
export declare type ConfluenceSpaceSettings = {
|
|
32831
32928
|
__typename?: 'ConfluenceSpaceSettings';
|
|
32929
|
+
contentMode?: Maybe<ConfluenceGraphQlContentMode>;
|
|
32832
32930
|
editorVersions?: Maybe<ConfluenceSpaceSettingsEditorVersions>;
|
|
32833
32931
|
isPdfExportNoCodeStylingOptedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
32834
32932
|
routeOverrideEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -37884,6 +37982,7 @@ export declare type CustomerServiceAiIssueSource = {
|
|
|
37884
37982
|
status?: Maybe<Scalars['String']['output']>;
|
|
37885
37983
|
summary?: Maybe<Scalars['String']['output']>;
|
|
37886
37984
|
updated?: Maybe<Scalars['String']['output']>;
|
|
37985
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
37887
37986
|
};
|
|
37888
37987
|
export declare type CustomerServiceAiNoteSource = {
|
|
37889
37988
|
__typename?: 'CustomerServiceAiNoteSource';
|
|
@@ -40066,6 +40165,13 @@ export declare type DevAiAutodevNextAssignedWorkstreamTaskStats = {
|
|
|
40066
40165
|
needsReviewOverdue: Scalars['Int']['output'];
|
|
40067
40166
|
needsReviewTotal: Scalars['Int']['output'];
|
|
40068
40167
|
};
|
|
40168
|
+
export declare type DevAiAutodevNextAssociatedWorkstream = {
|
|
40169
|
+
__typename?: 'DevAiAutodevNextAssociatedWorkstream';
|
|
40170
|
+
findWorkMode: Scalars['ID']['output'];
|
|
40171
|
+
id: Scalars['ID']['output'];
|
|
40172
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
40173
|
+
status: Scalars['ID']['output'];
|
|
40174
|
+
};
|
|
40069
40175
|
export declare type DevAiAutodevNextCreateWorkstreamInput = {
|
|
40070
40176
|
cloudId: Scalars['ID']['input'];
|
|
40071
40177
|
findWorkMode: DevAiAutodevNextWorkstreamFindWorkMode;
|
|
@@ -40100,6 +40206,17 @@ export declare type DevAiAutodevNextDeleteWorkstreamPayload = Payload & {
|
|
|
40100
40206
|
errors?: Maybe<Array<MutationError>>;
|
|
40101
40207
|
success: Scalars['Boolean']['output'];
|
|
40102
40208
|
};
|
|
40209
|
+
export declare type DevAiAutodevNextJiraProjectAvailabilityPayload = {
|
|
40210
|
+
__typename?: 'DevAiAutodevNextJiraProjectAvailabilityPayload';
|
|
40211
|
+
results: Array<DevAiAutodevNextJiraProjectAvailabilityResult>;
|
|
40212
|
+
};
|
|
40213
|
+
export declare type DevAiAutodevNextJiraProjectAvailabilityResult = {
|
|
40214
|
+
__typename?: 'DevAiAutodevNextJiraProjectAvailabilityResult';
|
|
40215
|
+
associatedWorkstreams: Array<DevAiAutodevNextAssociatedWorkstream>;
|
|
40216
|
+
available: Scalars['Boolean']['output'];
|
|
40217
|
+
projectAri: Scalars['ID']['output'];
|
|
40218
|
+
status: Scalars['ID']['output'];
|
|
40219
|
+
};
|
|
40103
40220
|
export declare type DevAiAutodevNextMemberConnection = {
|
|
40104
40221
|
__typename?: 'DevAiAutodevNextMemberConnection';
|
|
40105
40222
|
edges?: Maybe<Array<DevAiAutodevNextMemberEdge>>;
|
|
@@ -43303,6 +43420,12 @@ export declare type EarliestOnboardedProjectForCloudId = {
|
|
|
43303
43420
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
43304
43421
|
template?: Maybe<Scalars['String']['output']>;
|
|
43305
43422
|
};
|
|
43423
|
+
export declare type EcosystemAddonInstallationUnit = {
|
|
43424
|
+
__typename?: 'EcosystemAddonInstallationUnit';
|
|
43425
|
+
installationId: Scalars['ID']['output'];
|
|
43426
|
+
orgId?: Maybe<Scalars['ID']['output']>;
|
|
43427
|
+
unitId?: Maybe<Scalars['ID']['output']>;
|
|
43428
|
+
};
|
|
43306
43429
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
43307
43430
|
export declare type EcosystemAppInstallationConfigExtension = {
|
|
43308
43431
|
__typename?: 'EcosystemAppInstallationConfigExtension';
|
|
@@ -43698,6 +43821,8 @@ export declare type EcosystemQuery = {
|
|
|
43698
43821
|
globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
|
|
43699
43822
|
marketplaceData?: Maybe<EcosystemMarketplaceData>;
|
|
43700
43823
|
rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
|
|
43824
|
+
siteEntitlements?: Maybe<EcosystemSiteEntitlementsResult>;
|
|
43825
|
+
unitsByInstallationId?: Maybe<Array<Maybe<EcosystemAddonInstallationUnit>>>;
|
|
43701
43826
|
unitsForOrg?: Maybe<EcosystemUnitsForOrgResponse>;
|
|
43702
43827
|
userAccess?: Maybe<UserAccess>;
|
|
43703
43828
|
userGrants?: Maybe<UserGrantConnection>;
|
|
@@ -43785,6 +43910,12 @@ export declare type EcosystemQueryRollingReleasesArgs = {
|
|
|
43785
43910
|
environmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
43786
43911
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43787
43912
|
};
|
|
43913
|
+
export declare type EcosystemQuerySiteEntitlementsArgs = {
|
|
43914
|
+
cloudId: Scalars['ID']['input'];
|
|
43915
|
+
};
|
|
43916
|
+
export declare type EcosystemQueryUnitsByInstallationIdArgs = {
|
|
43917
|
+
installationIds: Array<Scalars['ID']['input']>;
|
|
43918
|
+
};
|
|
43788
43919
|
export declare type EcosystemQueryUnitsForOrgArgs = {
|
|
43789
43920
|
orgId: Scalars['ID']['input'];
|
|
43790
43921
|
};
|
|
@@ -43857,6 +43988,16 @@ export declare enum EcosystemRollingReleaseStatus {
|
|
|
43857
43988
|
Terminated = "TERMINATED",
|
|
43858
43989
|
TimedOut = "TIMED_OUT"
|
|
43859
43990
|
}
|
|
43991
|
+
export declare type EcosystemSiteEntitlement = {
|
|
43992
|
+
__typename?: 'EcosystemSiteEntitlement';
|
|
43993
|
+
entitlementId: Scalars['String']['output'];
|
|
43994
|
+
productKey?: Maybe<Scalars['String']['output']>;
|
|
43995
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
43996
|
+
};
|
|
43997
|
+
export declare type EcosystemSiteEntitlementsResult = {
|
|
43998
|
+
__typename?: 'EcosystemSiteEntitlementsResult';
|
|
43999
|
+
entitlements: Array<EcosystemSiteEntitlement>;
|
|
44000
|
+
};
|
|
43860
44001
|
export declare type EcosystemSubscription = {
|
|
43861
44002
|
__typename?: 'EcosystemSubscription';
|
|
43862
44003
|
realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
@@ -49110,6 +49251,9 @@ export declare type GraphIntegrationSkillProductItem = GraphIntegrationSkillDime
|
|
|
49110
49251
|
iconUrl: Scalars['String']['output'];
|
|
49111
49252
|
id: Scalars['String']['output'];
|
|
49112
49253
|
};
|
|
49254
|
+
export declare enum GraphIntegrationSkillSurface {
|
|
49255
|
+
RovoAgents = "ROVO_AGENTS"
|
|
49256
|
+
}
|
|
49113
49257
|
export declare type GraphIntegrationSkillTool = {
|
|
49114
49258
|
__typename?: 'GraphIntegrationSkillTool';
|
|
49115
49259
|
id: Scalars['String']['output'];
|
|
@@ -131525,6 +131669,44 @@ export declare type JiraServiceManagementBulkCreateRequestTypeFromTemplateInput
|
|
|
131525
131669
|
createRequestTypeFromTemplateInputItems: Array<JiraServiceManagementCreateRequestTypeFromTemplateInput>;
|
|
131526
131670
|
projectId: Scalars['ID']['input'];
|
|
131527
131671
|
};
|
|
131672
|
+
export declare type JiraServiceManagementChannelSource = {
|
|
131673
|
+
__typename?: 'JiraServiceManagementChannelSource';
|
|
131674
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
131675
|
+
id: Scalars['ID']['output'];
|
|
131676
|
+
};
|
|
131677
|
+
export declare type JiraServiceManagementChannelSourceConnection = {
|
|
131678
|
+
__typename?: 'JiraServiceManagementChannelSourceConnection';
|
|
131679
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementChannelSourceEdge>>>;
|
|
131680
|
+
pageInfo: PageInfo;
|
|
131681
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
131682
|
+
};
|
|
131683
|
+
export declare type JiraServiceManagementChannelSourceEdge = {
|
|
131684
|
+
__typename?: 'JiraServiceManagementChannelSourceEdge';
|
|
131685
|
+
cursor: Scalars['String']['output'];
|
|
131686
|
+
node?: Maybe<JiraServiceManagementChannelSource>;
|
|
131687
|
+
};
|
|
131688
|
+
export declare type JiraServiceManagementChannelSourceField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
131689
|
+
__typename?: 'JiraServiceManagementChannelSourceField';
|
|
131690
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
131691
|
+
channelSources?: Maybe<JiraServiceManagementChannelSourceConnection>;
|
|
131692
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
131693
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
131694
|
+
fieldId: Scalars['String']['output'];
|
|
131695
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
131696
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
131697
|
+
id: Scalars['ID']['output'];
|
|
131698
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
131699
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
131700
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
131701
|
+
issue?: Maybe<JiraIssue>;
|
|
131702
|
+
name: Scalars['String']['output'];
|
|
131703
|
+
type: Scalars['String']['output'];
|
|
131704
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
131705
|
+
};
|
|
131706
|
+
export declare type JiraServiceManagementChannelSourceFieldChannelSourcesArgs = {
|
|
131707
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131708
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131709
|
+
};
|
|
131528
131710
|
export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
131529
131711
|
__typename?: 'JiraServiceManagementComment';
|
|
131530
131712
|
author?: Maybe<User>;
|
|
@@ -138210,6 +138392,30 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
|
138210
138392
|
Pending = "PENDING",
|
|
138211
138393
|
Waiting = "WAITING"
|
|
138212
138394
|
}
|
|
138395
|
+
export declare type JsmChannelsRovoAgent = {
|
|
138396
|
+
__typename?: 'JsmChannelsRovoAgent';
|
|
138397
|
+
agentAri: Scalars['ID']['output'];
|
|
138398
|
+
agentId: Scalars['ID']['output'];
|
|
138399
|
+
channels: Array<JsmChannelsRovoAgentChannel>;
|
|
138400
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
138401
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
138402
|
+
name: Scalars['String']['output'];
|
|
138403
|
+
};
|
|
138404
|
+
export declare type JsmChannelsRovoAgentChannel = {
|
|
138405
|
+
__typename?: 'JsmChannelsRovoAgentChannel';
|
|
138406
|
+
containerAri: Scalars['ID']['output'];
|
|
138407
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
138408
|
+
type: JsmChannelsRovoAgentChannelType;
|
|
138409
|
+
};
|
|
138410
|
+
export declare enum JsmChannelsRovoAgentChannelType {
|
|
138411
|
+
HelpCenter = "HELP_CENTER",
|
|
138412
|
+
Portal = "PORTAL"
|
|
138413
|
+
}
|
|
138414
|
+
export declare type JsmChannelsRovoAgentsByProjectQueryPayload = {
|
|
138415
|
+
__typename?: 'JsmChannelsRovoAgentsByProjectQueryPayload';
|
|
138416
|
+
rovoAgents: Array<JsmChannelsRovoAgent>;
|
|
138417
|
+
};
|
|
138418
|
+
export declare type JsmChannelsRovoAgentsByProjectResult = JsmChannelsRovoAgentsByProjectQueryPayload | QueryError;
|
|
138213
138419
|
export declare type JsmChannelsRovoServiceAgentConfig = {
|
|
138214
138420
|
__typename?: 'JsmChannelsRovoServiceAgentConfig';
|
|
138215
138421
|
isRovoServiceEnabled: Scalars['Boolean']['output'];
|
|
@@ -139616,6 +139822,7 @@ export declare enum KitsuneFieldType {
|
|
|
139616
139822
|
Creator = "CREATOR",
|
|
139617
139823
|
Custom = "CUSTOM",
|
|
139618
139824
|
Customer = "CUSTOMER",
|
|
139825
|
+
Parent = "PARENT",
|
|
139619
139826
|
Reporter = "REPORTER",
|
|
139620
139827
|
SourceCategory = "SOURCE_CATEGORY"
|
|
139621
139828
|
}
|
|
@@ -140108,6 +140315,7 @@ export declare type KitsuneView = Node & {
|
|
|
140108
140315
|
__typename?: 'KitsuneView';
|
|
140109
140316
|
config?: Maybe<KitsuneViewConfig>;
|
|
140110
140317
|
description?: Maybe<Scalars['String']['output']>;
|
|
140318
|
+
entityType: KitsuneEntityType;
|
|
140111
140319
|
id: Scalars['ID']['output'];
|
|
140112
140320
|
name: Scalars['String']['output'];
|
|
140113
140321
|
type: KitsuneViewType;
|
|
@@ -145000,7 +145208,7 @@ export declare type MarketplaceStoreCapabilityItem = {
|
|
|
145000
145208
|
};
|
|
145001
145209
|
export declare type MarketplaceStoreCapabilitySection = MarketplaceStoreLayoutSection & {
|
|
145002
145210
|
__typename?: 'MarketplaceStoreCapabilitySection';
|
|
145003
|
-
|
|
145211
|
+
capabilityGroup?: Maybe<MarketplaceStoreCapabilities>;
|
|
145004
145212
|
description?: Maybe<Scalars['String']['output']>;
|
|
145005
145213
|
key: MarketplaceStoreLayoutSectionKeys;
|
|
145006
145214
|
title: Scalars['String']['output'];
|
|
@@ -153898,7 +154106,7 @@ export declare type MercuryUpdateViewNameInput = {
|
|
|
153898
154106
|
};
|
|
153899
154107
|
export declare type MercuryUpdateViewOwnerInput = {
|
|
153900
154108
|
id: Scalars['ID']['input'];
|
|
153901
|
-
|
|
154109
|
+
owner: Scalars['String']['input'];
|
|
153902
154110
|
};
|
|
153903
154111
|
export declare type MercuryUpdateViewSettingsInput = {
|
|
153904
154112
|
id: Scalars['ID']['input'];
|
|
@@ -154394,6 +154602,8 @@ export declare type Mutation = {
|
|
|
154394
154602
|
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
154395
154603
|
agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
154396
154604
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
154605
|
+
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
154606
|
+
agentWorkspace_updateSkillCategory?: Maybe<AgentWorkspaceSkillCategoryUpdatePayload>;
|
|
154397
154607
|
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
154398
154608
|
agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
|
|
154399
154609
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
@@ -154658,6 +154868,7 @@ export declare type Mutation = {
|
|
|
154658
154868
|
confluence_nbmUploadTransformerConfig?: Maybe<ConfluenceNbmUploadTransformerConfigPayload>;
|
|
154659
154869
|
confluence_notifyContentOwner?: Maybe<ConfluenceNotifyContentOwnerPayload>;
|
|
154660
154870
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
154871
|
+
confluence_patchSpaceSettings?: Maybe<ConfluencePatchSpaceSettingsPayload>;
|
|
154661
154872
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
154662
154873
|
confluence_publishDraftWithApprovalReviewTransfer?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
154663
154874
|
confluence_refreshSmartSpaceOverview?: Maybe<ConfluenceUpdateSmartSpaceOverviewPayload>;
|
|
@@ -156011,6 +156222,12 @@ export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
|
|
|
156011
156222
|
export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
|
|
156012
156223
|
input: AgentWorkspaceUpdateScheduleInput;
|
|
156013
156224
|
};
|
|
156225
|
+
export declare type MutationAgentWorkspace_UpdateSkillArgs = {
|
|
156226
|
+
input: AgentWorkspaceSkillUpdateInput;
|
|
156227
|
+
};
|
|
156228
|
+
export declare type MutationAgentWorkspace_UpdateSkillCategoryArgs = {
|
|
156229
|
+
input: AgentWorkspaceSkillCategoryUpdateInput;
|
|
156230
|
+
};
|
|
156014
156231
|
export declare type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
|
|
156015
156232
|
input: AgentWorkspaceUpdateSmartRoutingConfigInput;
|
|
156016
156233
|
};
|
|
@@ -157005,6 +157222,10 @@ export declare type MutationConfluence_PatchCalendarArgs = {
|
|
|
157005
157222
|
cloudId: Scalars['ID']['input'];
|
|
157006
157223
|
input: ConfluencePatchCalendarInput;
|
|
157007
157224
|
};
|
|
157225
|
+
export declare type MutationConfluence_PatchSpaceSettingsArgs = {
|
|
157226
|
+
cloudId: Scalars['ID']['input'];
|
|
157227
|
+
input: ConfluencePatchSpaceSettingsInput;
|
|
157228
|
+
};
|
|
157008
157229
|
export declare type MutationConfluence_PublishBlueprintSharedDraftArgs = {
|
|
157009
157230
|
cloudId: Scalars['ID']['input'];
|
|
157010
157231
|
input?: InputMaybe<ConfluencePublishBlueprintSharedDraftInput>;
|
|
@@ -158860,6 +159081,7 @@ export declare type MutationKitsune_CreateSpaceArgs = {
|
|
|
158860
159081
|
export declare type MutationKitsune_CreateViewArgs = {
|
|
158861
159082
|
config?: InputMaybe<KitsuneViewConfigInput>;
|
|
158862
159083
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
159084
|
+
entityType?: InputMaybe<KitsuneEntityType>;
|
|
158863
159085
|
name: Scalars['String']['input'];
|
|
158864
159086
|
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
158865
159087
|
spaceAri: Scalars['ID']['input'];
|
|
@@ -163314,6 +163536,8 @@ export declare type Query = {
|
|
|
163314
163536
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
163315
163537
|
agentWorkspace_agentAvailability?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
163316
163538
|
agentWorkspace_agentRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
163539
|
+
agentWorkspace_agentUsersInProject?: Maybe<AgentWorkspaceUserConnection>;
|
|
163540
|
+
agentWorkspace_agentsMappedToSkillsInProject?: Maybe<AgentWorkspaceUserConnection>;
|
|
163317
163541
|
agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
|
|
163318
163542
|
agentWorkspace_availabilityBypassingTeamLinkCheck?: Maybe<AgentWorkspaceAvailabilityResult>;
|
|
163319
163543
|
agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
@@ -163335,6 +163559,8 @@ export declare type Query = {
|
|
|
163335
163559
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
163336
163560
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
163337
163561
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
163562
|
+
agentWorkspace_services?: Maybe<AgentWorkspaceServiceConnection>;
|
|
163563
|
+
agentWorkspace_servicesMappedToSkillsInProject?: Maybe<AgentWorkspaceServiceConnection>;
|
|
163338
163564
|
agentWorkspace_shiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
163339
163565
|
agentWorkspace_shifts?: Maybe<AgentWorkspaceShiftsConnection>;
|
|
163340
163566
|
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
@@ -163346,6 +163572,7 @@ export declare type Query = {
|
|
|
163346
163572
|
agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
163347
163573
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
163348
163574
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
163575
|
+
agentWorkspace_teamsConnectedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
163349
163576
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
163350
163577
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
163351
163578
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
@@ -163510,7 +163737,7 @@ export declare type Query = {
|
|
|
163510
163737
|
avp_getDashboardsByStatus?: Maybe<AvpDashboardsConnection>;
|
|
163511
163738
|
avp_getFilterExpression?: Maybe<AvpFilterExpression>;
|
|
163512
163739
|
avp_getReadOnlyDashboard?: Maybe<AvpDashboard>;
|
|
163513
|
-
avp_getRecentDashboards?: Maybe<Array<
|
|
163740
|
+
avp_getRecentDashboards?: Maybe<Array<AvpRecentDashboard>>;
|
|
163514
163741
|
avp_getStarredDashboards?: Maybe<Array<Scalars['String']['output']>>;
|
|
163515
163742
|
avp_searchDashboards?: Maybe<AvpDashboardsConnection>;
|
|
163516
163743
|
avpanalytics_getDataSource?: Maybe<AvpAnalyticsDataSource>;
|
|
@@ -163883,6 +164110,7 @@ export declare type Query = {
|
|
|
163883
164110
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
163884
164111
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
163885
164112
|
devai_autodevNextAssignedWorkstreamTasks?: Maybe<DevAiAutodevNextAssignedWorkstreamTaskConnection>;
|
|
164113
|
+
devai_autodevNextJiraProjectAvailability?: Maybe<DevAiAutodevNextJiraProjectAvailabilityPayload>;
|
|
163886
164114
|
devai_autodevNextMyWorkItems?: Maybe<DevAiAutodevNextWorkItemConnection>;
|
|
163887
164115
|
devai_autodevNextWorkstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
163888
164116
|
devai_autodevNextWorkstreams?: Maybe<DevAiAutodevNextWorkstreamConnection>;
|
|
@@ -164127,6 +164355,7 @@ export declare type Query = {
|
|
|
164127
164355
|
jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
|
|
164128
164356
|
jsmChannels_getExperienceConfigurationByProjectIds: JsmChannelsExperienceConfigurationByProjectIdsResult;
|
|
164129
164357
|
jsmChannels_getResolutionPlanGraph?: Maybe<JsmChannelsResolutionPlanGraphResult>;
|
|
164358
|
+
jsmChannels_getRovoAgentsByProject?: Maybe<JsmChannelsRovoAgentsByProjectResult>;
|
|
164130
164359
|
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
164131
164360
|
jsmChannels_isPreviewModeEnabled?: Maybe<JsmChannelsPreviewModeResult>;
|
|
164132
164361
|
jsmChannels_rovoServiceAgentConfigByProjectId?: Maybe<JsmChannelsRovoServiceAgentConfigResult>;
|
|
@@ -164454,6 +164683,7 @@ export declare type Query = {
|
|
|
164454
164683
|
stakeholderComms_getIdentityGroupsForPage?: Maybe<StakeholderCommsIdentityGroupForPageConnection>;
|
|
164455
164684
|
stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
164456
164685
|
stakeholderComms_getIncidentTemplate?: Maybe<StakeholderCommsIncidentTemplateResponse>;
|
|
164686
|
+
stakeholderComms_getLatestIncidentUpdateStatus?: Maybe<StakeholderCommsLatestIncidentUpdateStatus>;
|
|
164457
164687
|
stakeholderComms_getLicenseUsageLimit?: Maybe<StakeholderCommsLicenseUsage>;
|
|
164458
164688
|
stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
164459
164689
|
stakeholderComms_getOpsgenieRiskAssessment?: Maybe<StakeholderCommsOpsgenieRiskAssessmentResult>;
|
|
@@ -165212,6 +165442,19 @@ export declare type QueryAgentWorkspace_AgentAvailabilityArgs = {
|
|
|
165212
165442
|
export declare type QueryAgentWorkspace_AgentRebalancingRecommendationsArgs = {
|
|
165213
165443
|
input: AgentWorkspaceAgentRebalancingRecommendationsInput;
|
|
165214
165444
|
};
|
|
165445
|
+
export declare type QueryAgentWorkspace_AgentUsersInProjectArgs = {
|
|
165446
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
165447
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165448
|
+
projectId: Scalars['ID']['input'];
|
|
165449
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
165450
|
+
};
|
|
165451
|
+
export declare type QueryAgentWorkspace_AgentsMappedToSkillsInProjectArgs = {
|
|
165452
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
165453
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165454
|
+
projectId: Scalars['ID']['input'];
|
|
165455
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
165456
|
+
skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
165457
|
+
};
|
|
165215
165458
|
export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
165216
165459
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165217
165460
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -165315,6 +165558,19 @@ export declare type QueryAgentWorkspace_SchedulesArgs = {
|
|
|
165315
165558
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
165316
165559
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
165317
165560
|
};
|
|
165561
|
+
export declare type QueryAgentWorkspace_ServicesArgs = {
|
|
165562
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
165563
|
+
cloudId: Scalars['ID']['input'];
|
|
165564
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165565
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
165566
|
+
};
|
|
165567
|
+
export declare type QueryAgentWorkspace_ServicesMappedToSkillsInProjectArgs = {
|
|
165568
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
165569
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165570
|
+
projectId: Scalars['ID']['input'];
|
|
165571
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
165572
|
+
skillIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
165573
|
+
};
|
|
165318
165574
|
export declare type QueryAgentWorkspace_ShiftEditBoundsArgs = {
|
|
165319
165575
|
input: AgentWorkspaceShiftEditBoundsInput;
|
|
165320
165576
|
};
|
|
@@ -165372,6 +165628,12 @@ export declare type QueryAgentWorkspace_TeamSchedulesArgs = {
|
|
|
165372
165628
|
input: AgentWorkspaceTeamSchedulesQueryInput;
|
|
165373
165629
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
165374
165630
|
};
|
|
165631
|
+
export declare type QueryAgentWorkspace_TeamsConnectedToProjectArgs = {
|
|
165632
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
165633
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165634
|
+
projectId: Scalars['ID']['input'];
|
|
165635
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
165636
|
+
};
|
|
165375
165637
|
export declare type QueryAgent_SessionAssociationQueryArgs = {
|
|
165376
165638
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165377
165639
|
aqlQuery?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -167879,6 +168141,10 @@ export declare type QueryDevai_AutodevNextAssignedWorkstreamTasksArgs = {
|
|
|
167879
168141
|
statuses?: InputMaybe<Array<DevAiAutodevNextWorkItemState>>;
|
|
167880
168142
|
workstreamId: Scalars['ID']['input'];
|
|
167881
168143
|
};
|
|
168144
|
+
export declare type QueryDevai_AutodevNextJiraProjectAvailabilityArgs = {
|
|
168145
|
+
cloudId: Scalars['ID']['input'];
|
|
168146
|
+
projectAris: Array<Scalars['ID']['input']>;
|
|
168147
|
+
};
|
|
167882
168148
|
export declare type QueryDevai_AutodevNextMyWorkItemsArgs = {
|
|
167883
168149
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167884
168150
|
cloudId: Scalars['ID']['input'];
|
|
@@ -168354,6 +168620,7 @@ export declare type QueryGraphIntegration_SkillDimensionMetadataArgs = {
|
|
|
168354
168620
|
export declare type QueryGraphIntegration_SkillItemsArgs = {
|
|
168355
168621
|
contextAri: Scalars['ID']['input'];
|
|
168356
168622
|
skillAris: Array<Scalars['ID']['input']>;
|
|
168623
|
+
surface?: InputMaybe<GraphIntegrationSkillSurface>;
|
|
168357
168624
|
};
|
|
168358
168625
|
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
168359
168626
|
contextAri: Scalars['ID']['input'];
|
|
@@ -168828,6 +169095,9 @@ export declare type QueryJsmChannels_GetResolutionPlanGraphArgs = {
|
|
|
168828
169095
|
jiraProjectAri: Scalars['ID']['input'];
|
|
168829
169096
|
planID: Scalars['ID']['input'];
|
|
168830
169097
|
};
|
|
169098
|
+
export declare type QueryJsmChannels_GetRovoAgentsByProjectArgs = {
|
|
169099
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
169100
|
+
};
|
|
168831
169101
|
export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArgs = {
|
|
168832
169102
|
jiraProjectAri: Scalars['ID']['input'];
|
|
168833
169103
|
ticketId: Scalars['ID']['input'];
|
|
@@ -170046,6 +170316,10 @@ export declare type QueryStakeholderComms_GetIncidentTemplateArgs = {
|
|
|
170046
170316
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170047
170317
|
incidentTemplateId: Scalars['String']['input'];
|
|
170048
170318
|
};
|
|
170319
|
+
export declare type QueryStakeholderComms_GetLatestIncidentUpdateStatusArgs = {
|
|
170320
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170321
|
+
incidentId: Scalars['String']['input'];
|
|
170322
|
+
};
|
|
170049
170323
|
export declare type QueryStakeholderComms_GetLicenseUsageLimitArgs = {
|
|
170050
170324
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170051
170325
|
};
|
|
@@ -172796,6 +173070,7 @@ export declare enum Scope {
|
|
|
172796
173070
|
DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
|
|
172797
173071
|
DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
|
|
172798
173072
|
DeleteInsightJpd = "DELETE_INSIGHT_JPD",
|
|
173073
|
+
DeleteItamConfigJsm = "DELETE_ITAM_CONFIG_JSM",
|
|
172799
173074
|
DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
|
|
172800
173075
|
DeleteJswSprint = "DELETE_JSW_SPRINT",
|
|
172801
173076
|
DeleteOrganization = "DELETE_ORGANIZATION",
|
|
@@ -173015,6 +173290,7 @@ export declare enum Scope {
|
|
|
173015
173290
|
ReadFeedbackView = "READ_FEEDBACK_VIEW",
|
|
173016
173291
|
ReadHomeTwgCli = "READ_HOME_TWG_CLI",
|
|
173017
173292
|
ReadInsightJpd = "READ_INSIGHT_JPD",
|
|
173293
|
+
ReadItamConfigJsm = "READ_ITAM_CONFIG_JSM",
|
|
173018
173294
|
ReadJiraAlignTwgCli = "READ_JIRA_ALIGN_TWG_CLI",
|
|
173019
173295
|
ReadJiraUser = "READ_JIRA_USER",
|
|
173020
173296
|
ReadJiraWork = "READ_JIRA_WORK",
|
|
@@ -173171,6 +173447,7 @@ export declare enum Scope {
|
|
|
173171
173447
|
WriteFeedbackView = "WRITE_FEEDBACK_VIEW",
|
|
173172
173448
|
WriteHomeTwgCli = "WRITE_HOME_TWG_CLI",
|
|
173173
173449
|
WriteInsightJpd = "WRITE_INSIGHT_JPD",
|
|
173450
|
+
WriteItamConfigJsm = "WRITE_ITAM_CONFIG_JSM",
|
|
173174
173451
|
WriteJiraWork = "WRITE_JIRA_WORK",
|
|
173175
173452
|
WriteJsmTwgCli = "WRITE_JSM_TWG_CLI",
|
|
173176
173453
|
WriteJswBoardScope = "WRITE_JSW_BOARD_SCOPE",
|
|
@@ -173583,6 +173860,7 @@ export declare type SearchItemConnection = {
|
|
|
173583
173860
|
isCachedResult?: Maybe<Scalars['Boolean']['output']>;
|
|
173584
173861
|
pageInfo: PageInfo;
|
|
173585
173862
|
queryInfo?: Maybe<SearchQueryInfo>;
|
|
173863
|
+
scrapingMetadata?: Maybe<SearchScrapingMetadata>;
|
|
173586
173864
|
searchSessionId?: Maybe<Scalars['String']['output']>;
|
|
173587
173865
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
173588
173866
|
totalCounts: Array<SearchProductCount>;
|
|
@@ -174077,6 +174355,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
174077
174355
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
174078
174356
|
tabs?: Maybe<Array<SearchResultGraphTab>>;
|
|
174079
174357
|
title: Scalars['String']['output'];
|
|
174358
|
+
topReaction?: Maybe<SearchSlackReaction>;
|
|
174080
174359
|
type: SearchResultType;
|
|
174081
174360
|
url: Scalars['String']['output'];
|
|
174082
174361
|
workspaceName?: Maybe<Scalars['String']['output']>;
|
|
@@ -174411,6 +174690,18 @@ export declare type SearchSalesforceFilters = {
|
|
|
174411
174690
|
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
174412
174691
|
stage?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
174413
174692
|
};
|
|
174693
|
+
export declare type SearchScrapingMetadata = {
|
|
174694
|
+
__typename?: 'SearchScrapingMetadata';
|
|
174695
|
+
queryIntelligenceResultJson?: Maybe<Scalars['String']['output']>;
|
|
174696
|
+
searchScrapingResponsesJson?: Maybe<Scalars['String']['output']>;
|
|
174697
|
+
searcherErrors?: Maybe<Array<SearchError>>;
|
|
174698
|
+
};
|
|
174699
|
+
export declare type SearchSlackReaction = {
|
|
174700
|
+
__typename?: 'SearchSlackReaction';
|
|
174701
|
+
count: Scalars['Int']['output'];
|
|
174702
|
+
emojiName: Scalars['String']['output'];
|
|
174703
|
+
emojiUrl?: Maybe<Scalars['String']['output']>;
|
|
174704
|
+
};
|
|
174414
174705
|
export declare type SearchSortInput = {
|
|
174415
174706
|
field: Scalars['String']['input'];
|
|
174416
174707
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -194696,6 +194987,7 @@ export declare type SpaceRoleUserPrincipal = SpaceRolePrincipal & {
|
|
|
194696
194987
|
};
|
|
194697
194988
|
export declare type SpaceSettings = {
|
|
194698
194989
|
__typename?: 'SpaceSettings';
|
|
194990
|
+
contentMode?: Maybe<Scalars['String']['output']>;
|
|
194699
194991
|
contentStateSettings: ContentStateSettings;
|
|
194700
194992
|
customHeaderAndFooter: SpaceSettingsMetadata;
|
|
194701
194993
|
editor?: Maybe<EditorVersionsMetadataDto>;
|
|
@@ -196301,6 +196593,11 @@ export declare type StakeholderCommsComponentUpdateInput = {
|
|
|
196301
196593
|
pageId: Scalars['String']['input'];
|
|
196302
196594
|
type?: InputMaybe<StakeholderCommsComponentType>;
|
|
196303
196595
|
};
|
|
196596
|
+
export declare enum StakeholderCommsComponentUpdateStatus {
|
|
196597
|
+
Completed = "COMPLETED",
|
|
196598
|
+
NotApplicable = "NOT_APPLICABLE",
|
|
196599
|
+
Pending = "PENDING"
|
|
196600
|
+
}
|
|
196304
196601
|
export declare type StakeholderCommsComponentUptimeDailyAggregate = {
|
|
196305
196602
|
__typename?: 'StakeholderCommsComponentUptimeDailyAggregate';
|
|
196306
196603
|
componentId: Scalars['String']['output'];
|
|
@@ -196670,6 +196967,11 @@ export declare type StakeholderCommsJsmProductDetail = {
|
|
|
196670
196967
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
196671
196968
|
skuId?: Maybe<Scalars['String']['output']>;
|
|
196672
196969
|
};
|
|
196970
|
+
export declare type StakeholderCommsLatestIncidentUpdateStatus = {
|
|
196971
|
+
__typename?: 'StakeholderCommsLatestIncidentUpdateStatus';
|
|
196972
|
+
incidentId: Scalars['String']['output'];
|
|
196973
|
+
overallStatus?: Maybe<StakeholderCommsComponentUpdateStatus>;
|
|
196974
|
+
};
|
|
196673
196975
|
export declare type StakeholderCommsLicenseLimit = {
|
|
196674
196976
|
__typename?: 'StakeholderCommsLicenseLimit';
|
|
196675
196977
|
availableLimit?: Maybe<Scalars['Int']['output']>;
|
|
@@ -207198,6 +207500,7 @@ export declare type TrelloMutationApi = {
|
|
|
207198
207500
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
207199
207501
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
207200
207502
|
updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
|
|
207503
|
+
updateCheckItem?: Maybe<TrelloUpdateCheckItemPayload>;
|
|
207201
207504
|
updateChecklistName?: Maybe<TrelloUpdateChecklistPayload>;
|
|
207202
207505
|
updateChecklistPosition?: Maybe<TrelloUpdateChecklistPayload>;
|
|
207203
207506
|
updateCustomField?: Maybe<TrelloUpdateCustomFieldPayload>;
|
|
@@ -207543,6 +207846,9 @@ export declare type TrelloMutationApiUpdateCardPositionOnPlannerCalendarEventArg
|
|
|
207543
207846
|
export declare type TrelloMutationApiUpdateCardRoleArgs = {
|
|
207544
207847
|
input: TrelloUpdateCardRoleInput;
|
|
207545
207848
|
};
|
|
207849
|
+
export declare type TrelloMutationApiUpdateCheckItemArgs = {
|
|
207850
|
+
input: TrelloUpdateCheckItemInput;
|
|
207851
|
+
};
|
|
207546
207852
|
export declare type TrelloMutationApiUpdateChecklistNameArgs = {
|
|
207547
207853
|
input: TrelloUpdateChecklistNameInput;
|
|
207548
207854
|
};
|
|
@@ -209521,6 +209827,21 @@ export declare type TrelloUpdateCardRolePayload = Payload & {
|
|
|
209521
209827
|
errors?: Maybe<Array<MutationError>>;
|
|
209522
209828
|
success: Scalars['Boolean']['output'];
|
|
209523
209829
|
};
|
|
209830
|
+
export declare type TrelloUpdateCheckItemInput = {
|
|
209831
|
+
checkItemId: Scalars['ID']['input'];
|
|
209832
|
+
checklistId?: InputMaybe<Scalars['ID']['input']>;
|
|
209833
|
+
due?: InputMaybe<TrelloCheckItemDueInfoInput>;
|
|
209834
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
209835
|
+
position?: InputMaybe<TrelloPosition>;
|
|
209836
|
+
state?: InputMaybe<TrelloCheckItemState>;
|
|
209837
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
209838
|
+
};
|
|
209839
|
+
export declare type TrelloUpdateCheckItemPayload = Payload & {
|
|
209840
|
+
__typename?: 'TrelloUpdateCheckItemPayload';
|
|
209841
|
+
checkItem?: Maybe<TrelloCheckItem>;
|
|
209842
|
+
errors?: Maybe<Array<MutationError>>;
|
|
209843
|
+
success: Scalars['Boolean']['output'];
|
|
209844
|
+
};
|
|
209524
209845
|
export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
|
|
209525
209846
|
__typename?: 'TrelloUpdateCheckItemStateOnCardAction';
|
|
209526
209847
|
appCreator?: Maybe<TrelloAppCreator>;
|