@forge/cli-shared 8.25.0-next.5 → 8.25.0-next.5-experimental-44b7a12
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 +24 -0
- package/out/graphql/graphql-types.d.ts +227 -3
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +108 -48
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.25.0-next.5-experimental-44b7a12
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6aeecd7: The tunnel debugger now binds to localhost (127.0.0.1) by default instead of all network interfaces (0.0.0.0). If you need to attach a debugger from another host, use the new `--debugHost` option on `forge tunnel` to specify the IP address to bind to.
|
|
8
|
+
- 2a1ec30: Adding warning when site has over 100 apps installed
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- c3b96b3: Show warning when install fails
|
|
13
|
+
- 2a03b88: `isAgent` attribution now excludes CI: `isAgent()` returns `false` when `CI=true` even if stdin/stdout are non-TTY, so the `isAgent` and `isCI` signals never overlap in the `atl-attribution` header and analytics payload.
|
|
14
|
+
- 561f8f4: Remove "storage" module from "@forge/api"
|
|
15
|
+
- ab1dcaa: Update JSM to be its own product
|
|
16
|
+
- bb903a8: Update requireAppId check
|
|
17
|
+
- c1acc55: Add Prod Service
|
|
18
|
+
- 5b67e61: Patch fixes for module Add
|
|
19
|
+
- 55c1371: bump cheerio to ^1.2.0 to pull in a patched undici (>=7.19.0, resolving to a fixed release) and remediate CVE-2026-1525
|
|
20
|
+
NodeJS requirement bumped from 20.0.0 to >=20.18.1
|
|
21
|
+
- Updated dependencies [814b8fe]
|
|
22
|
+
- Updated dependencies [8ac7dd3]
|
|
23
|
+
- Updated dependencies [55c1371]
|
|
24
|
+
- Updated dependencies [1a461c3]
|
|
25
|
+
- @forge/manifest@12.10.0-next.1-experimental-44b7a12
|
|
26
|
+
|
|
3
27
|
## 8.25.0-next.5
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
|
@@ -434,6 +434,46 @@ export declare type AiOpsIncidentSuggestedRcaWithAutomation = AiOpsIncidentSugge
|
|
|
434
434
|
suggestedAutomationRules?: Maybe<Array<AiOpsIncidentSuggestedAutomationRule>>;
|
|
435
435
|
title?: Maybe<Scalars['String']['output']>;
|
|
436
436
|
};
|
|
437
|
+
export declare type AiOpsIncidentSuggestedResource = {
|
|
438
|
+
__typename?: 'AIOpsIncidentSuggestedResource';
|
|
439
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
440
|
+
resourceGroupType?: Maybe<AiOpsIncidentSuggestedResourceGroupType>;
|
|
441
|
+
resourceId?: Maybe<Scalars['String']['output']>;
|
|
442
|
+
resourceKey?: Maybe<Scalars['String']['output']>;
|
|
443
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
444
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
445
|
+
type?: Maybe<AiOpsIncidentSuggestedResourceType>;
|
|
446
|
+
};
|
|
447
|
+
export declare enum AiOpsIncidentSuggestedResourceGroupType {
|
|
448
|
+
Articles_3P = "ARTICLES_3P",
|
|
449
|
+
Atlas = "ATLAS",
|
|
450
|
+
Chat = "CHAT",
|
|
451
|
+
Confluence = "CONFLUENCE",
|
|
452
|
+
Incident = "INCIDENT",
|
|
453
|
+
Issues = "ISSUES",
|
|
454
|
+
Pir = "PIR"
|
|
455
|
+
}
|
|
456
|
+
export declare enum AiOpsIncidentSuggestedResourceType {
|
|
457
|
+
Atlas = "ATLAS",
|
|
458
|
+
DevopsDeployment = "DEVOPS_DEPLOYMENT",
|
|
459
|
+
DevopsFf = "DEVOPS_FF",
|
|
460
|
+
GDocs = "G_DOCS",
|
|
461
|
+
Incident = "INCIDENT",
|
|
462
|
+
JiraIssue = "JIRA_ISSUE",
|
|
463
|
+
Kb = "KB",
|
|
464
|
+
Pir = "PIR",
|
|
465
|
+
Sharepoint = "SHAREPOINT",
|
|
466
|
+
Slack = "SLACK"
|
|
467
|
+
}
|
|
468
|
+
export declare type AiOpsIncidentSuggestedResourcesInProgress = {
|
|
469
|
+
__typename?: 'AIOpsIncidentSuggestedResourcesInProgress';
|
|
470
|
+
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
471
|
+
};
|
|
472
|
+
export declare type AiOpsIncidentSuggestedResourcesResponse = {
|
|
473
|
+
__typename?: 'AIOpsIncidentSuggestedResourcesResponse';
|
|
474
|
+
resources?: Maybe<Array<AiOpsIncidentSuggestedResource>>;
|
|
475
|
+
};
|
|
476
|
+
export declare type AiOpsIncidentSuggestedResourcesResult = AiOpsIncidentSuggestedResourcesInProgress | AiOpsIncidentSuggestedResourcesResponse;
|
|
437
477
|
export declare type AiOpsIncidentSuggestedResponders = AiOpsIncidentSuggestedAction & {
|
|
438
478
|
__typename?: 'AIOpsIncidentSuggestedResponders';
|
|
439
479
|
currentResponders?: Maybe<Array<AiOpsIncidentSuggestedUser>>;
|
|
@@ -7801,6 +7841,12 @@ export declare type AgentWorkspaceCreateTeamFromGroupInput = {
|
|
|
7801
7841
|
export declare type AgentWorkspaceCreateWfoSummaryViewInput = {
|
|
7802
7842
|
projectAri: Scalars['ID']['input'];
|
|
7803
7843
|
};
|
|
7844
|
+
export declare type AgentWorkspaceCreateWfoSummaryViewPayload = {
|
|
7845
|
+
__typename?: 'AgentWorkspaceCreateWfoSummaryViewPayload';
|
|
7846
|
+
errors?: Maybe<Array<MutationError>>;
|
|
7847
|
+
success: Scalars['Boolean']['output'];
|
|
7848
|
+
summaryView?: Maybe<AgentWorkspaceWfoSummaryView>;
|
|
7849
|
+
};
|
|
7804
7850
|
export declare enum AgentWorkspaceDayOfWeek {
|
|
7805
7851
|
Friday = "FRIDAY",
|
|
7806
7852
|
Monday = "MONDAY",
|
|
@@ -8947,9 +8993,23 @@ export declare type AgentWorkspaceWfoSummaryView = {
|
|
|
8947
8993
|
dashboardId?: Maybe<Scalars['ID']['output']>;
|
|
8948
8994
|
viewId: Scalars['ID']['output'];
|
|
8949
8995
|
};
|
|
8996
|
+
export declare type AgentWorkspaceWfoSummaryViewByProjectKeyInput = {
|
|
8997
|
+
cloudId: Scalars['ID']['input'];
|
|
8998
|
+
projectKey: Scalars['String']['input'];
|
|
8999
|
+
};
|
|
9000
|
+
export declare type AgentWorkspaceWfoSummaryViewByProjectKeyResult = {
|
|
9001
|
+
__typename?: 'AgentWorkspaceWfoSummaryViewByProjectKeyResult';
|
|
9002
|
+
errors?: Maybe<Array<QueryError>>;
|
|
9003
|
+
summaryView?: Maybe<AgentWorkspaceWfoSummaryView>;
|
|
9004
|
+
};
|
|
8950
9005
|
export declare type AgentWorkspaceWfoSummaryViewQueryInput = {
|
|
8951
9006
|
projectAri: Scalars['ID']['input'];
|
|
8952
9007
|
};
|
|
9008
|
+
export declare type AgentWorkspaceWfoSummaryViewResult = {
|
|
9009
|
+
__typename?: 'AgentWorkspaceWfoSummaryViewResult';
|
|
9010
|
+
errors?: Maybe<Array<QueryError>>;
|
|
9011
|
+
summaryView?: Maybe<AgentWorkspaceWfoSummaryView>;
|
|
9012
|
+
};
|
|
8953
9013
|
export declare type AgentWorkspaceWorkloadJqlConfig = {
|
|
8954
9014
|
__typename?: 'AgentWorkspaceWorkloadJqlConfig';
|
|
8955
9015
|
jql: Scalars['String']['output'];
|
|
@@ -9029,13 +9089,32 @@ export declare enum AiCoreApiRsaJobStatus {
|
|
|
9029
9089
|
Failed = "FAILED",
|
|
9030
9090
|
InProgress = "IN_PROGRESS"
|
|
9031
9091
|
}
|
|
9092
|
+
export declare enum AiCoreApiRsaKbGapHealth {
|
|
9093
|
+
Missing = "MISSING",
|
|
9094
|
+
Outdated = "OUTDATED",
|
|
9095
|
+
Weak = "WEAK"
|
|
9096
|
+
}
|
|
9097
|
+
export declare type AiCoreApiRsaKbGapItem = {
|
|
9098
|
+
__typename?: 'AiCoreApiRsaKbGapItem';
|
|
9099
|
+
health: AiCoreApiRsaKbGapHealth;
|
|
9100
|
+
relatedWorkItemCount: Scalars['Int']['output'];
|
|
9101
|
+
requestType?: Maybe<Scalars['String']['output']>;
|
|
9102
|
+
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
9103
|
+
suggestedTopic?: Maybe<Scalars['String']['output']>;
|
|
9104
|
+
};
|
|
9105
|
+
export declare type AiCoreApiRsaKbGapResult = {
|
|
9106
|
+
__typename?: 'AiCoreApiRsaKbGapResult';
|
|
9107
|
+
items: Array<AiCoreApiRsaKbGapItem>;
|
|
9108
|
+
};
|
|
9032
9109
|
export declare enum AiCoreApiRsaQueryType {
|
|
9033
9110
|
Assisted = "ASSISTED",
|
|
9034
9111
|
Employee = "EMPLOYEE",
|
|
9035
9112
|
Funnel = "FUNNEL",
|
|
9113
|
+
KbGap = "KB_GAP",
|
|
9036
9114
|
Resolved = "RESOLVED",
|
|
9037
9115
|
RtDistribution = "RT_DISTRIBUTION",
|
|
9038
|
-
SkillGap = "SKILL_GAP"
|
|
9116
|
+
SkillGap = "SKILL_GAP",
|
|
9117
|
+
Ttr = "TTR"
|
|
9039
9118
|
}
|
|
9040
9119
|
export declare type AiCoreApiRsaReportInput = {
|
|
9041
9120
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -9056,11 +9135,13 @@ export declare type AiCoreApiRsaReportPayload = {
|
|
|
9056
9135
|
errorCode?: Maybe<Scalars['String']['output']>;
|
|
9057
9136
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
9058
9137
|
funnel?: Maybe<AiCoreApiRsaFunnelResult>;
|
|
9138
|
+
kbGap?: Maybe<AiCoreApiRsaKbGapResult>;
|
|
9059
9139
|
resolved?: Maybe<AiCoreApiRsaResolvedResult>;
|
|
9060
9140
|
rtDistribution?: Maybe<AiCoreApiRsaRtDistributionResult>;
|
|
9061
9141
|
skillGap?: Maybe<AiCoreApiRsaSkillGapResult>;
|
|
9062
9142
|
status: AiCoreApiRsaJobStatus;
|
|
9063
9143
|
truncated?: Maybe<Scalars['Boolean']['output']>;
|
|
9144
|
+
ttr?: Maybe<AiCoreApiRsaTtrResult>;
|
|
9064
9145
|
};
|
|
9065
9146
|
export declare enum AiCoreApiRsaReportType {
|
|
9066
9147
|
Insight = "INSIGHT",
|
|
@@ -9125,6 +9206,10 @@ export declare type AiCoreApiRsaSkillTicketsPayload = {
|
|
|
9125
9206
|
status: AiCoreApiRsaJobStatus;
|
|
9126
9207
|
};
|
|
9127
9208
|
export declare type AiCoreApiRsaSkillTicketsResult = AiCoreApiRsaSkillTicketsPayload | QueryError;
|
|
9209
|
+
export declare type AiCoreApiRsaTtrResult = {
|
|
9210
|
+
__typename?: 'AiCoreApiRsaTtrResult';
|
|
9211
|
+
averageTimeToResolutionSeconds?: Maybe<Scalars['Float']['output']>;
|
|
9212
|
+
};
|
|
9128
9213
|
export declare type AiCoreApiVsaQuestions = {
|
|
9129
9214
|
__typename?: 'AiCoreApiVSAQuestions';
|
|
9130
9215
|
projectAri: Scalars['ID']['output'];
|
|
@@ -34946,7 +35031,9 @@ export declare type ConfluenceSpacePermissionPageInfo = {
|
|
|
34946
35031
|
export declare type ConfluenceSpacePermissionTransitionTaskProgress = {
|
|
34947
35032
|
__typename?: 'ConfluenceSpacePermissionTransitionTaskProgress';
|
|
34948
35033
|
currentStep?: Maybe<ConfluenceSpacePermissionTransitionTaskStep>;
|
|
35034
|
+
estimatedCompletionTime?: Maybe<Scalars['String']['output']>;
|
|
34949
35035
|
progressPercentage?: Maybe<Scalars['Int']['output']>;
|
|
35036
|
+
startedAt?: Maybe<Scalars['String']['output']>;
|
|
34950
35037
|
taskId: Scalars['ID']['output'];
|
|
34951
35038
|
taskType: ConfluenceSpacePermissionTransitionTaskType;
|
|
34952
35039
|
};
|
|
@@ -37689,6 +37776,7 @@ export declare type ConvoAiSkill = {
|
|
|
37689
37776
|
color?: Maybe<Scalars['String']['output']>;
|
|
37690
37777
|
description?: Maybe<Scalars['String']['output']>;
|
|
37691
37778
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
37779
|
+
helpText?: Maybe<Scalars['String']['output']>;
|
|
37692
37780
|
iconKey?: Maybe<Scalars['String']['output']>;
|
|
37693
37781
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
37694
37782
|
id: Scalars['ID']['output'];
|
|
@@ -42467,6 +42555,7 @@ export declare type DevAiAutodevNextAssociatedWorkstream = {
|
|
|
42467
42555
|
};
|
|
42468
42556
|
export declare type DevAiAutodevNextCompleteWorkItemRefinementInput = {
|
|
42469
42557
|
cloudId: Scalars['ID']['input'];
|
|
42558
|
+
repository?: InputMaybe<Scalars['String']['input']>;
|
|
42470
42559
|
state: DevAiAutodevNextCompleteWorkItemRefinementState;
|
|
42471
42560
|
workItemBody?: InputMaybe<Scalars['String']['input']>;
|
|
42472
42561
|
workItemId: Scalars['ID']['input'];
|
|
@@ -43247,16 +43336,23 @@ export declare enum DevAiResourceType {
|
|
|
43247
43336
|
DevaiStandard = "DEVAI_STANDARD",
|
|
43248
43337
|
DevaiStandardAndJira = "DEVAI_STANDARD_AND_JIRA",
|
|
43249
43338
|
DevaiStandardAndJiraAndConfluence = "DEVAI_STANDARD_AND_JIRA_AND_CONFLUENCE",
|
|
43339
|
+
DevaiStandardAndJiraTrial = "DEVAI_STANDARD_AND_JIRA_TRIAL",
|
|
43340
|
+
DevaiStandardAndJiraTrialAndConfluence = "DEVAI_STANDARD_AND_JIRA_TRIAL_AND_CONFLUENCE",
|
|
43250
43341
|
DevaiStandardTrial = "DEVAI_STANDARD_TRIAL",
|
|
43251
43342
|
DevaiStandardTrialAndJira = "DEVAI_STANDARD_TRIAL_AND_JIRA",
|
|
43343
|
+
DevaiStandardTrialAndJiraTrial = "DEVAI_STANDARD_TRIAL_AND_JIRA_TRIAL",
|
|
43252
43344
|
Jira = "JIRA",
|
|
43253
43345
|
JiraAndConfluence = "JIRA_AND_CONFLUENCE",
|
|
43346
|
+
JiraTrial = "JIRA_TRIAL",
|
|
43347
|
+
JiraTrialAndConfluence = "JIRA_TRIAL_AND_CONFLUENCE",
|
|
43254
43348
|
NoActiveProduct = "NO_ACTIVE_PRODUCT",
|
|
43255
43349
|
RovoDevBeta = "ROVO_DEV_BETA",
|
|
43256
43350
|
RovoDevEverywhere = "ROVO_DEV_EVERYWHERE",
|
|
43257
43351
|
RovoDevStandard = "ROVO_DEV_STANDARD",
|
|
43258
43352
|
RovoDevStandardAndJira = "ROVO_DEV_STANDARD_AND_JIRA",
|
|
43259
43353
|
RovoDevStandardAndJiraAndConfluence = "ROVO_DEV_STANDARD_AND_JIRA_AND_CONFLUENCE",
|
|
43354
|
+
RovoDevStandardAndJiraTrial = "ROVO_DEV_STANDARD_AND_JIRA_TRIAL",
|
|
43355
|
+
RovoDevStandardAndJiraTrialAndConfluence = "ROVO_DEV_STANDARD_AND_JIRA_TRIAL_AND_CONFLUENCE",
|
|
43260
43356
|
RovoDevStandardTrial = "ROVO_DEV_STANDARD_TRIAL"
|
|
43261
43357
|
}
|
|
43262
43358
|
export declare type DevAiRovoAgent = {
|
|
@@ -113680,6 +113776,7 @@ export declare type HelpCenterPageCreateInput = {
|
|
|
113680
113776
|
clonePageAri?: InputMaybe<Scalars['String']['input']>;
|
|
113681
113777
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
113682
113778
|
helpCenterAri: Scalars['String']['input'];
|
|
113779
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
113683
113780
|
name: Scalars['String']['input'];
|
|
113684
113781
|
pageLayout?: InputMaybe<HelpCenterPageLayoutInput>;
|
|
113685
113782
|
};
|
|
@@ -113736,6 +113833,7 @@ export declare enum HelpCenterPageType {
|
|
|
113736
113833
|
export declare type HelpCenterPageUpdateInput = {
|
|
113737
113834
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
113738
113835
|
helpCenterPageAri: Scalars['String']['input'];
|
|
113836
|
+
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
113739
113837
|
name: Scalars['String']['input'];
|
|
113740
113838
|
pageLayout?: InputMaybe<HelpCenterPageLayoutInput>;
|
|
113741
113839
|
};
|
|
@@ -132921,6 +133019,7 @@ export declare enum JiraPlaybookStepRunStatus {
|
|
|
132921
133019
|
}
|
|
132922
133020
|
export declare enum JiraPlaybookStepType {
|
|
132923
133021
|
AutomationRule = "AUTOMATION_RULE",
|
|
133022
|
+
Checklist = "CHECKLIST",
|
|
132924
133023
|
InstructionalRule = "INSTRUCTIONAL_RULE",
|
|
132925
133024
|
Task = "TASK"
|
|
132926
133025
|
}
|
|
@@ -145872,6 +145971,7 @@ export declare type JsmConversationEdge = {
|
|
|
145872
145971
|
};
|
|
145873
145972
|
export declare type JsmConversationHelpseekerSettings = {
|
|
145874
145973
|
__typename?: 'JsmConversationHelpseekerSettings';
|
|
145974
|
+
activationState?: Maybe<JsmConversationActivationState>;
|
|
145875
145975
|
availabilityCriteria?: Maybe<JsmConversationLiveChatAvailabilityCriteria>;
|
|
145876
145976
|
};
|
|
145877
145977
|
export declare type JsmConversationHelpseekerSettingsResult = JsmConversationHelpseekerSettings | QueryError;
|
|
@@ -155811,6 +155911,7 @@ export declare enum MercuryEntityType {
|
|
|
155811
155911
|
Comment = "COMMENT",
|
|
155812
155912
|
FocusArea = "FOCUS_AREA",
|
|
155813
155913
|
FocusAreaStatusUpdate = "FOCUS_AREA_STATUS_UPDATE",
|
|
155914
|
+
OrganizationStatusUpdate = "ORGANIZATION_STATUS_UPDATE",
|
|
155814
155915
|
Program = "PROGRAM",
|
|
155815
155916
|
ProgramStatusUpdate = "PROGRAM_STATUS_UPDATE",
|
|
155816
155917
|
Risk = "RISK",
|
|
@@ -158937,6 +159038,7 @@ export declare type MercuryPlan = Node & {
|
|
|
158937
159038
|
focusAreaLinks: MercuryPlanFocusAreaLinks;
|
|
158938
159039
|
id: Scalars['ID']['output'];
|
|
158939
159040
|
isSystemManaged: Scalars['Boolean']['output'];
|
|
159041
|
+
memberCountAllocationTotals: Array<MercuryPlanMemberCountAllocationComputedByPlan>;
|
|
158940
159042
|
organizationId: Scalars['ID']['output'];
|
|
158941
159043
|
startDate: Scalars['Date']['output'];
|
|
158942
159044
|
type: MercuryPlanType;
|
|
@@ -158967,6 +159069,7 @@ export declare type MercuryPlanFocusAreaLink = {
|
|
|
158967
159069
|
__typename?: 'MercuryPlanFocusAreaLink';
|
|
158968
159070
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
158969
159071
|
id: Scalars['ID']['output'];
|
|
159072
|
+
memberCountAllocations: Array<MercuryPlanMemberCountAllocationByPlanAndFocusArea>;
|
|
158970
159073
|
};
|
|
158971
159074
|
export declare type MercuryPlanFocusAreaLinkConnection = {
|
|
158972
159075
|
__typename?: 'MercuryPlanFocusAreaLinkConnection';
|
|
@@ -158983,6 +159086,49 @@ export declare type MercuryPlanFocusAreaLinks = {
|
|
|
158983
159086
|
__typename?: 'MercuryPlanFocusAreaLinks';
|
|
158984
159087
|
focusAreaLinks: MercuryPlanFocusAreaLinkConnection;
|
|
158985
159088
|
};
|
|
159089
|
+
export declare type MercuryPlanMemberCountAllocation = MercuryPlanMemberCountAllocationByPlanAndFocusArea & {
|
|
159090
|
+
__typename?: 'MercuryPlanMemberCountAllocation';
|
|
159091
|
+
fiscalMonth: Scalars['Int']['output'];
|
|
159092
|
+
fiscalYear: Scalars['Int']['output'];
|
|
159093
|
+
focusAreaId: Scalars['ID']['output'];
|
|
159094
|
+
id: Scalars['ID']['output'];
|
|
159095
|
+
memberCount: Scalars['BigDecimal']['output'];
|
|
159096
|
+
period: Scalars['Date']['output'];
|
|
159097
|
+
planId: Scalars['ID']['output'];
|
|
159098
|
+
};
|
|
159099
|
+
export declare type MercuryPlanMemberCountAllocationByPlanAndFocusArea = {
|
|
159100
|
+
fiscalMonth: Scalars['Int']['output'];
|
|
159101
|
+
fiscalYear: Scalars['Int']['output'];
|
|
159102
|
+
focusAreaId: Scalars['ID']['output'];
|
|
159103
|
+
memberCount: Scalars['BigDecimal']['output'];
|
|
159104
|
+
period: Scalars['Date']['output'];
|
|
159105
|
+
planId: Scalars['ID']['output'];
|
|
159106
|
+
};
|
|
159107
|
+
export declare type MercuryPlanMemberCountAllocationComputedByPlan = {
|
|
159108
|
+
__typename?: 'MercuryPlanMemberCountAllocationComputedByPlan';
|
|
159109
|
+
fiscalMonth: Scalars['Int']['output'];
|
|
159110
|
+
fiscalYear: Scalars['Int']['output'];
|
|
159111
|
+
memberCount: Scalars['BigDecimal']['output'];
|
|
159112
|
+
period: Scalars['Date']['output'];
|
|
159113
|
+
planId: Scalars['ID']['output'];
|
|
159114
|
+
};
|
|
159115
|
+
export declare type MercuryPlanMemberCountAllocationComputedByPlanAndFocusArea = MercuryPlanMemberCountAllocationByPlanAndFocusArea & {
|
|
159116
|
+
__typename?: 'MercuryPlanMemberCountAllocationComputedByPlanAndFocusArea';
|
|
159117
|
+
fiscalMonth: Scalars['Int']['output'];
|
|
159118
|
+
fiscalYear: Scalars['Int']['output'];
|
|
159119
|
+
focusAreaId: Scalars['ID']['output'];
|
|
159120
|
+
memberCount: Scalars['BigDecimal']['output'];
|
|
159121
|
+
period: Scalars['Date']['output'];
|
|
159122
|
+
planId: Scalars['ID']['output'];
|
|
159123
|
+
};
|
|
159124
|
+
export declare type MercuryPlanMemberCountAllocationInput = {
|
|
159125
|
+
memberCount: Scalars['BigDecimal']['input'];
|
|
159126
|
+
period: Scalars['Date']['input'];
|
|
159127
|
+
};
|
|
159128
|
+
export declare type MercuryPlanMemberCountAllocationToFocusAreaInput = {
|
|
159129
|
+
focusAreaId: Scalars['ID']['input'];
|
|
159130
|
+
memberCountAllocations: Array<MercuryPlanMemberCountAllocationInput>;
|
|
159131
|
+
};
|
|
158986
159132
|
export declare enum MercuryPlanType {
|
|
158987
159133
|
Baseline = "BASELINE",
|
|
158988
159134
|
Draft = "DRAFT"
|
|
@@ -158991,6 +159137,7 @@ export declare type MercuryPlansMutationApi = {
|
|
|
158991
159137
|
__typename?: 'MercuryPlansMutationApi';
|
|
158992
159138
|
createDraftPlan?: Maybe<MercuryCreateDraftPlanPayload>;
|
|
158993
159139
|
linkFocusAreasToPlan?: Maybe<MercuryLinkFocusAreasToPlanPayload>;
|
|
159140
|
+
setPlanMemberCountAllocations?: Maybe<MercurySetMemberCountAllocationsPayload>;
|
|
158994
159141
|
unlinkFocusAreasFromPlan?: Maybe<MercuryUnlinkFocusAreasFromPlanPayload>;
|
|
158995
159142
|
};
|
|
158996
159143
|
export declare type MercuryPlansMutationApiCreateDraftPlanArgs = {
|
|
@@ -158999,6 +159146,9 @@ export declare type MercuryPlansMutationApiCreateDraftPlanArgs = {
|
|
|
158999
159146
|
export declare type MercuryPlansMutationApiLinkFocusAreasToPlanArgs = {
|
|
159000
159147
|
input: MercuryLinkFocusAreasToPlanInput;
|
|
159001
159148
|
};
|
|
159149
|
+
export declare type MercuryPlansMutationApiSetPlanMemberCountAllocationsArgs = {
|
|
159150
|
+
input: MercurySetMemberCountAllocationsInput;
|
|
159151
|
+
};
|
|
159002
159152
|
export declare type MercuryPlansMutationApiUnlinkFocusAreasFromPlanArgs = {
|
|
159003
159153
|
input: MercuryUnlinkFocusAreasFromPlanInput;
|
|
159004
159154
|
};
|
|
@@ -160326,6 +160476,17 @@ export declare type MercurySetGlobalPlanAuthorityOrgLevelPayload = Payload & {
|
|
|
160326
160476
|
planAuthoritySettings?: Maybe<MercuryPlanAuthoritySetting>;
|
|
160327
160477
|
success: Scalars['Boolean']['output'];
|
|
160328
160478
|
};
|
|
160479
|
+
export declare type MercurySetMemberCountAllocationsInput = {
|
|
160480
|
+
memberCountAllocations: Array<MercuryPlanMemberCountAllocationToFocusAreaInput>;
|
|
160481
|
+
planId: Scalars['ID']['input'];
|
|
160482
|
+
};
|
|
160483
|
+
export declare type MercurySetMemberCountAllocationsPayload = Payload & {
|
|
160484
|
+
__typename?: 'MercurySetMemberCountAllocationsPayload';
|
|
160485
|
+
errors?: Maybe<Array<MutationError>>;
|
|
160486
|
+
memberCountAllocationTotals?: Maybe<Array<MercuryPlanMemberCountAllocationComputedByPlan>>;
|
|
160487
|
+
memberCountAllocations?: Maybe<Array<MercuryPlanMemberCountAllocation>>;
|
|
160488
|
+
success: Scalars['Boolean']['output'];
|
|
160489
|
+
};
|
|
160329
160490
|
export declare type MercurySetOrganizationCustomFieldInput = {
|
|
160330
160491
|
coreField?: InputMaybe<MercuryCustomFieldInput>;
|
|
160331
160492
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
@@ -162384,7 +162545,7 @@ export declare type Mutation = {
|
|
|
162384
162545
|
agentWorkspace_createDraftedRoutingTableEntriesV2?: Maybe<AgentWorkspaceCreateDraftedRoutingTableEntriesPayload>;
|
|
162385
162546
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
162386
162547
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
162387
|
-
agentWorkspace_createWfoSummaryView?: Maybe<
|
|
162548
|
+
agentWorkspace_createWfoSummaryView?: Maybe<AgentWorkspaceCreateWfoSummaryViewPayload>;
|
|
162388
162549
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
162389
162550
|
agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
162390
162551
|
agentWorkspace_discardDraftedRoutingTable?: Maybe<AgentWorkspaceDiscardDraftedRoutingTablePayload>;
|
|
@@ -172611,7 +172772,8 @@ export declare type Query = {
|
|
|
172611
172772
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
172612
172773
|
agentWorkspace_teamsMappedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
172613
172774
|
agentWorkspace_utilizationForPendingChanges?: Maybe<Array<AgentWorkspaceAgentUtilizationForPendingChanges>>;
|
|
172614
|
-
agentWorkspace_wfoSummaryView?: Maybe<
|
|
172775
|
+
agentWorkspace_wfoSummaryView?: Maybe<AgentWorkspaceWfoSummaryViewResult>;
|
|
172776
|
+
agentWorkspace_wfoSummaryViewByProjectKey?: Maybe<AgentWorkspaceWfoSummaryViewByProjectKeyResult>;
|
|
172615
172777
|
agentWorkspace_workloadJqlConfig?: Maybe<AgentWorkspaceWorkloadJqlConfig>;
|
|
172616
172778
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
172617
172779
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
@@ -172627,6 +172789,7 @@ export declare type Query = {
|
|
|
172627
172789
|
aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
|
|
172628
172790
|
aiops_entityDetail?: Maybe<AiOpsEntityDetailResult>;
|
|
172629
172791
|
aiops_incidentRelatedAlerts?: Maybe<AiOpsIncidentRelatedAlertsResponse>;
|
|
172792
|
+
aiops_incidentSuggestedResourcesAsync?: Maybe<AiOpsIncidentSuggestedResourcesResult>;
|
|
172630
172793
|
aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
|
|
172631
172794
|
aiops_incidentSuggestionAsync?: Maybe<AiOpsIncidentSuggestionAsyncResult>;
|
|
172632
172795
|
aiops_incidentTimelineIcc?: Maybe<AiOpsIncidentTimelineIccResponse>;
|
|
@@ -175751,6 +175914,7 @@ export declare type Query = {
|
|
|
175751
175914
|
radar_aiConnectorById?: Maybe<RadarAiConnector>;
|
|
175752
175915
|
radar_aiConnectors?: Maybe<RadarAiConnectorsConnection>;
|
|
175753
175916
|
radar_availableCustomFieldsFromLastSync?: Maybe<RadarAvailableCustomFieldsFromLastSync>;
|
|
175917
|
+
radar_benchmarks?: Maybe<Array<RadarMetricSettings>>;
|
|
175754
175918
|
radar_connectors?: Maybe<Array<RadarConnector>>;
|
|
175755
175919
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
175756
175920
|
radar_focusAreaRecommendation?: Maybe<RadarFocusAreaRecommendationConnection>;
|
|
@@ -176887,6 +177051,9 @@ export declare type QueryAgentWorkspace_UtilizationForPendingChangesArgs = {
|
|
|
176887
177051
|
export declare type QueryAgentWorkspace_WfoSummaryViewArgs = {
|
|
176888
177052
|
input: AgentWorkspaceWfoSummaryViewQueryInput;
|
|
176889
177053
|
};
|
|
177054
|
+
export declare type QueryAgentWorkspace_WfoSummaryViewByProjectKeyArgs = {
|
|
177055
|
+
input: AgentWorkspaceWfoSummaryViewByProjectKeyInput;
|
|
177056
|
+
};
|
|
176890
177057
|
export declare type QueryAgentWorkspace_WorkloadJqlConfigArgs = {
|
|
176891
177058
|
projectAri: Scalars['ID']['input'];
|
|
176892
177059
|
};
|
|
@@ -176959,6 +177126,10 @@ export declare type QueryAiops_IncidentRelatedAlertsArgs = {
|
|
|
176959
177126
|
cloudId: Scalars['ID']['input'];
|
|
176960
177127
|
filter: AiOpsIncidentRelatedAlertsInput;
|
|
176961
177128
|
};
|
|
177129
|
+
export declare type QueryAiops_IncidentSuggestedResourcesAsyncArgs = {
|
|
177130
|
+
cloudId: Scalars['ID']['input'];
|
|
177131
|
+
issueKeyOrId: Scalars['String']['input'];
|
|
177132
|
+
};
|
|
176962
177133
|
export declare type QueryAiops_IncidentSuggestionArgs = {
|
|
176963
177134
|
cloudId: Scalars['ID']['input'];
|
|
176964
177135
|
issueKey: Scalars['String']['input'];
|
|
@@ -196815,6 +196986,10 @@ export declare type QueryRadar_AiConnectorsArgs = {
|
|
|
196815
196986
|
export declare type QueryRadar_AvailableCustomFieldsFromLastSyncArgs = {
|
|
196816
196987
|
cloudId: Scalars['ID']['input'];
|
|
196817
196988
|
};
|
|
196989
|
+
export declare type QueryRadar_BenchmarksArgs = {
|
|
196990
|
+
cloudId: Scalars['ID']['input'];
|
|
196991
|
+
entityAri?: InputMaybe<Scalars['ID']['input']>;
|
|
196992
|
+
};
|
|
196818
196993
|
export declare type QueryRadar_ConnectorsArgs = {
|
|
196819
196994
|
cloudId: Scalars['ID']['input'];
|
|
196820
196995
|
};
|
|
@@ -221846,6 +222021,7 @@ export declare type SpaViewModel = {
|
|
|
221846
222021
|
isAnonymous?: Maybe<Scalars['Boolean']['output']>;
|
|
221847
222022
|
isNewUser?: Maybe<Scalars['Boolean']['output']>;
|
|
221848
222023
|
isSiteAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
222024
|
+
isWelcomeMessageCustomized?: Maybe<Scalars['Boolean']['output']>;
|
|
221849
222025
|
resourceContexts?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
221850
222026
|
resourceKeys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
221851
222027
|
showEditButton?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -227355,6 +227531,7 @@ export declare type TeamV2 = Node & {
|
|
|
227355
227531
|
export declare type TeamV2GoalsArgs = {
|
|
227356
227532
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
227357
227533
|
first?: Scalars['Int']['input'];
|
|
227534
|
+
scopeId: Scalars['ID']['input'];
|
|
227358
227535
|
};
|
|
227359
227536
|
export declare type TeamV2MembersArgs = {
|
|
227360
227537
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -227364,6 +227541,7 @@ export declare type TeamV2MembersArgs = {
|
|
|
227364
227541
|
export declare type TeamV2ProjectsArgs = {
|
|
227365
227542
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
227366
227543
|
first?: Scalars['Int']['input'];
|
|
227544
|
+
scopeId: Scalars['ID']['input'];
|
|
227367
227545
|
};
|
|
227368
227546
|
export declare type TeamWithMembershipSyncPayload = Payload & {
|
|
227369
227547
|
__typename?: 'TeamWithMembershipSyncPayload';
|
|
@@ -235172,6 +235350,7 @@ export declare type TrelloMember = Node & {
|
|
|
235172
235350
|
boardStars?: Maybe<TrelloMemberBoardStarConnection>;
|
|
235173
235351
|
boards?: Maybe<TrelloMemberBoardConnection>;
|
|
235174
235352
|
boardsV2?: Maybe<TrelloMemberBaseBoardConnection>;
|
|
235353
|
+
cards?: Maybe<TrelloCardConnection>;
|
|
235175
235354
|
confirmed?: Maybe<Scalars['Boolean']['output']>;
|
|
235176
235355
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
235177
235356
|
fullName?: Maybe<Scalars['String']['output']>;
|
|
@@ -235220,6 +235399,12 @@ export declare type TrelloMemberBoardsV2Args = {
|
|
|
235220
235399
|
filter?: InputMaybe<TrelloMemberBoardFilter>;
|
|
235221
235400
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
235222
235401
|
};
|
|
235402
|
+
export declare type TrelloMemberCardsArgs = {
|
|
235403
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
235404
|
+
filter?: InputMaybe<TrelloMemberCardsFilter>;
|
|
235405
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
235406
|
+
sort?: InputMaybe<TrelloMemberCardsSort>;
|
|
235407
|
+
};
|
|
235223
235408
|
export declare type TrelloMemberNotificationsArgs = {
|
|
235224
235409
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
235225
235410
|
filter?: InputMaybe<TrelloNotificationFilter>;
|
|
@@ -235315,6 +235500,30 @@ export declare type TrelloMemberBoardStarEdge = {
|
|
|
235315
235500
|
objectId: Scalars['String']['output'];
|
|
235316
235501
|
position: Scalars['Float']['output'];
|
|
235317
235502
|
};
|
|
235503
|
+
export declare enum TrelloMemberCardsActiveSince {
|
|
235504
|
+
Day = "DAY",
|
|
235505
|
+
Month = "MONTH",
|
|
235506
|
+
Week = "WEEK",
|
|
235507
|
+
Year = "YEAR"
|
|
235508
|
+
}
|
|
235509
|
+
export declare enum TrelloMemberCardsDue {
|
|
235510
|
+
Day = "DAY",
|
|
235511
|
+
Month = "MONTH",
|
|
235512
|
+
None = "NONE",
|
|
235513
|
+
Overdue = "OVERDUE",
|
|
235514
|
+
Week = "WEEK"
|
|
235515
|
+
}
|
|
235516
|
+
export declare type TrelloMemberCardsFilter = {
|
|
235517
|
+
activeSince?: InputMaybe<TrelloMemberCardsActiveSince>;
|
|
235518
|
+
boardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
235519
|
+
due?: InputMaybe<TrelloMemberCardsDue>;
|
|
235520
|
+
dueComplete?: InputMaybe<Scalars['Boolean']['input']>;
|
|
235521
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
235522
|
+
};
|
|
235523
|
+
export declare enum TrelloMemberCardsSort {
|
|
235524
|
+
Board = "BOARD",
|
|
235525
|
+
Due = "DUE"
|
|
235526
|
+
}
|
|
235318
235527
|
export declare type TrelloMemberConnection = {
|
|
235319
235528
|
__typename?: 'TrelloMemberConnection';
|
|
235320
235529
|
edges?: Maybe<Array<Maybe<TrelloMemberEdge>>>;
|
|
@@ -235573,6 +235782,17 @@ export declare type TrelloMoveInboxCardToBoardEntities = {
|
|
|
235573
235782
|
card?: Maybe<TrelloActionCardEntity>;
|
|
235574
235783
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
235575
235784
|
};
|
|
235785
|
+
export declare type TrelloMoveListInput = {
|
|
235786
|
+
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
235787
|
+
listId: Scalars['ID']['input'];
|
|
235788
|
+
position: TrelloPosition;
|
|
235789
|
+
};
|
|
235790
|
+
export declare type TrelloMoveListPayload = Payload & {
|
|
235791
|
+
__typename?: 'TrelloMoveListPayload';
|
|
235792
|
+
errors?: Maybe<Array<MutationError>>;
|
|
235793
|
+
list?: Maybe<TrelloList>;
|
|
235794
|
+
success: Scalars['Boolean']['output'];
|
|
235795
|
+
};
|
|
235576
235796
|
export declare type TrelloMovePlannerCalendarEventInput = {
|
|
235577
235797
|
sourceEvent: TrelloMovePlannerCalendarEventSourceOptions;
|
|
235578
235798
|
targetPlannerCalendar: TrelloMovePlannerCalendarEventTargetOptions;
|
|
@@ -235655,6 +235875,7 @@ export declare type TrelloMutationApi = {
|
|
|
235655
235875
|
markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
|
|
235656
235876
|
mergeCards?: Maybe<TrelloMergeCardsPayload>;
|
|
235657
235877
|
moveCard?: Maybe<TrelloMoveCardPayload>;
|
|
235878
|
+
moveList?: Maybe<TrelloMoveListPayload>;
|
|
235658
235879
|
movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
|
|
235659
235880
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
235660
235881
|
proactiveSmartScheduleCards?: Maybe<TrelloProactiveSmartScheduleCardsPayload>;
|
|
@@ -235909,6 +236130,9 @@ export declare type TrelloMutationApiMergeCardsArgs = {
|
|
|
235909
236130
|
export declare type TrelloMutationApiMoveCardArgs = {
|
|
235910
236131
|
input: TrelloMoveCardInput;
|
|
235911
236132
|
};
|
|
236133
|
+
export declare type TrelloMutationApiMoveListArgs = {
|
|
236134
|
+
input: TrelloMoveListInput;
|
|
236135
|
+
};
|
|
235912
236136
|
export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
|
|
235913
236137
|
input: TrelloMovePlannerCalendarEventInput;
|
|
235914
236138
|
};
|