@forge/cli-shared 9.0.0-next.9 → 9.0.1-next.0

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 CHANGED
@@ -1,5 +1,47 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 9.0.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [4cd2242]
8
+ - @forge/manifest@13.1.0-next.0
9
+
10
+ ## 9.0.0
11
+
12
+ ### Major Changes
13
+
14
+ - 78fcb7f: Adds support for TypeScript 5
15
+
16
+ ### Minor Changes
17
+
18
+ - 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.
19
+ - 39d4f9d: forge show command
20
+ - 2a1ec30: Adding warning when site has over 100 apps installed
21
+
22
+ ### Patch Changes
23
+
24
+ - c3b96b3: Show warning when install fails
25
+ - 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.
26
+ - 561f8f4: Remove "storage" module from "@forge/api"
27
+ - ab1dcaa: Update JSM to be its own product
28
+ - 4a191fe: Mark the `module` command and its subcommands (`add`, `list`, `show`) as `[Preview]` and add a caution to the `module`/`module add` help noting that running these commands may modify your app files (manifest.yml, source files, and package.json).
29
+ - bb903a8: Update requireAppId check
30
+ - c1acc55: Add Prod Service
31
+ - 5b67e61: Patch fixes for module Add
32
+ - 9a6de66: module list command
33
+ - 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
34
+ NodeJS requirement bumped from 20.0.0 to >=20.18.1
35
+ - Updated dependencies [814b8fe]
36
+ - Updated dependencies [78fcb7f]
37
+ - Updated dependencies [8ac7dd3]
38
+ - Updated dependencies [55c1371]
39
+ - Updated dependencies [d66be70]
40
+ - Updated dependencies [1a461c3]
41
+ - @forge/manifest@13.0.0
42
+ - @forge/i18n@1.0.0
43
+ - @forge/util@3.0.0
44
+
3
45
  ## 9.0.0-next.9
4
46
 
5
47
  ### Patch Changes
@@ -219,23 +219,22 @@ export type AiOpsDeploymentActivity = AiOpsServiceActivity & {
219
219
  };
220
220
  export type AiOpsDeploymentDetail = {
221
221
  __typename?: 'AIOpsDeploymentDetail';
222
- commitCount?: Maybe<Scalars['Int']['output']>;
222
+ deploymentSequenceNumber?: Maybe<Scalars['Long']['output']>;
223
+ description?: Maybe<Scalars['String']['output']>;
223
224
  displayName?: Maybe<Scalars['String']['output']>;
224
- environmentCategory?: Maybe<Scalars['String']['output']>;
225
+ environment?: Maybe<Scalars['String']['output']>;
226
+ lastUpdated?: Maybe<Scalars['DateTime']['output']>;
227
+ provider?: Maybe<Scalars['String']['output']>;
225
228
  pullRequests?: Maybe<Array<AiOpsDeploymentPullRequest>>;
226
229
  state?: Maybe<Scalars['String']['output']>;
227
- timestamp?: Maybe<Scalars['DateTime']['output']>;
230
+ updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
228
231
  url?: Maybe<Scalars['String']['output']>;
229
232
  };
230
- export type AiOpsDeploymentPrAuthor = {
231
- __typename?: 'AIOpsDeploymentPrAuthor';
232
- accountId?: Maybe<Scalars['String']['output']>;
233
- name?: Maybe<Scalars['String']['output']>;
234
- };
235
233
  export type AiOpsDeploymentPullRequest = {
236
234
  __typename?: 'AIOpsDeploymentPullRequest';
237
- author?: Maybe<AiOpsDeploymentPrAuthor>;
235
+ author?: Maybe<Scalars['String']['output']>;
238
236
  destinationBranch?: Maybe<Scalars['String']['output']>;
237
+ lastUpdated?: Maybe<Scalars['DateTime']['output']>;
239
238
  pullRequestId?: Maybe<Scalars['String']['output']>;
240
239
  sourceBranch?: Maybe<Scalars['String']['output']>;
241
240
  status?: Maybe<Scalars['String']['output']>;
@@ -251,7 +250,7 @@ export type AiOpsEntityCount = {
251
250
  export type AiOpsEntityDetail = {
252
251
  __typename?: 'AIOpsEntityDetail';
253
252
  detail?: Maybe<AiOpsEntityDetailPayload>;
254
- entityId?: Maybe<Scalars['ID']['output']>;
253
+ id: Scalars['ID']['output'];
255
254
  type: AiOpsActivityEntityType;
256
255
  };
257
256
  export type AiOpsEntityDetailPayload = AiOpsAlertDetail | AiOpsDeploymentDetail | AiOpsFeatureFlagDetail | AiOpsIncidentDetail;
@@ -19025,6 +19024,57 @@ export type ChangeManagementGlobalRiskAssessmentSettingsPayload = {
19025
19024
  aiRiskAssessmentEnabled?: Maybe<Scalars['Boolean']['output']>;
19026
19025
  isEnabled?: Maybe<Scalars['Boolean']['output']>;
19027
19026
  };
19027
+ export type ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStep = {
19028
+ __typename?: 'ChangeManagementJSMPreventionCenterOverviewSummaryAnalysisStep';
19029
+ body?: Maybe<Scalars['String']['output']>;
19030
+ id: Scalars['ID']['output'];
19031
+ status: ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStepStatus;
19032
+ title: Scalars['String']['output'];
19033
+ };
19034
+ export declare enum ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStepStatus {
19035
+ Completed = "COMPLETED",
19036
+ Failed = "FAILED",
19037
+ InProgress = "IN_PROGRESS",
19038
+ Skipped = "SKIPPED"
19039
+ }
19040
+ export type ChangeManagementJsmPreventionCenterOverviewSummaryAvailableResponse = {
19041
+ __typename?: 'ChangeManagementJSMPreventionCenterOverviewSummaryAvailableResponse';
19042
+ analysisSteps?: Maybe<Array<ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStep>>;
19043
+ doneSoFar?: Maybe<Array<ChangeManagementJsmPreventionCenterOverviewSummaryDoneItem>>;
19044
+ lastUpdatedAt?: Maybe<Scalars['String']['output']>;
19045
+ potentialRisk?: Maybe<ChangeManagementJsmPreventionCenterOverviewSummaryRiskLevel>;
19046
+ sources?: Maybe<Array<ChangeManagementJsmPreventionCenterOverviewSummarySource>>;
19047
+ suggestedNextSteps?: Maybe<Scalars['String']['output']>;
19048
+ summary: Scalars['String']['output'];
19049
+ };
19050
+ export type ChangeManagementJsmPreventionCenterOverviewSummaryDoneItem = {
19051
+ __typename?: 'ChangeManagementJSMPreventionCenterOverviewSummaryDoneItem';
19052
+ body?: Maybe<Scalars['String']['output']>;
19053
+ };
19054
+ export type ChangeManagementJsmPreventionCenterOverviewSummaryInProgressResponse = {
19055
+ __typename?: 'ChangeManagementJSMPreventionCenterOverviewSummaryInProgressResponse';
19056
+ analysisSteps?: Maybe<Array<ChangeManagementJsmPreventionCenterOverviewSummaryAnalysisStep>>;
19057
+ };
19058
+ export type ChangeManagementJsmPreventionCenterOverviewSummaryResponse = ChangeManagementJsmPreventionCenterOverviewSummaryAvailableResponse | ChangeManagementJsmPreventionCenterOverviewSummaryInProgressResponse;
19059
+ export declare enum ChangeManagementJsmPreventionCenterOverviewSummaryRiskLevel {
19060
+ High = "HIGH",
19061
+ Low = "LOW",
19062
+ Medium = "MEDIUM"
19063
+ }
19064
+ export type ChangeManagementJsmPreventionCenterOverviewSummarySource = {
19065
+ __typename?: 'ChangeManagementJSMPreventionCenterOverviewSummarySource';
19066
+ description?: Maybe<Scalars['String']['output']>;
19067
+ id: Scalars['ID']['output'];
19068
+ title: Scalars['String']['output'];
19069
+ type: ChangeManagementJsmPreventionCenterOverviewSummarySourceType;
19070
+ url: Scalars['String']['output'];
19071
+ };
19072
+ export declare enum ChangeManagementJsmPreventionCenterOverviewSummarySourceType {
19073
+ Bitbucket = "BITBUCKET",
19074
+ Confluence = "CONFLUENCE",
19075
+ Jsm = "JSM",
19076
+ Statuspage = "STATUSPAGE"
19077
+ }
19028
19078
  export type ChangeManagementLastRovoRiskAssessmentPayload = {
19029
19079
  __typename?: 'ChangeManagementLastRovoRiskAssessmentPayload';
19030
19080
  conversationId?: Maybe<Scalars['String']['output']>;
@@ -19470,6 +19520,18 @@ export type CheckConsentPermissionByOAuthClientIdInput = {
19470
19520
  scopes: Array<Scalars['String']['input']>;
19471
19521
  userId: Scalars['ID']['input'];
19472
19522
  };
19523
+ export type ChecklistItem = {
19524
+ __typename?: 'ChecklistItem';
19525
+ done: Scalars['Boolean']['output'];
19526
+ itemId: Scalars['ID']['output'];
19527
+ label: Scalars['String']['output'];
19528
+ order: Scalars['Int']['output'];
19529
+ };
19530
+ export type ChecklistItemInput = {
19531
+ itemId?: InputMaybe<Scalars['ID']['input']>;
19532
+ label: Scalars['String']['input'];
19533
+ order: Scalars['Int']['input'];
19534
+ };
19473
19535
  export type ChildCardsMetadata = {
19474
19536
  __typename?: 'ChildCardsMetadata';
19475
19537
  complete?: Maybe<Scalars['Int']['output']>;
@@ -39330,6 +39392,7 @@ export type CreateJiraPlaybookPayload = Payload & {
39330
39392
  };
39331
39393
  export type CreateJiraPlaybookStepInput = {
39332
39394
  automationTemplateId?: InputMaybe<Scalars['String']['input']>;
39395
+ checklistItems?: InputMaybe<Array<ChecklistItemInput>>;
39333
39396
  description?: InputMaybe<Scalars['JSON']['input']>;
39334
39397
  name: Scalars['String']['input'];
39335
39398
  ruleId?: InputMaybe<Scalars['String']['input']>;
@@ -51905,6 +51968,10 @@ export type GraphIntegrationIcon = {
51905
51968
  key?: Maybe<Scalars['String']['output']>;
51906
51969
  url?: Maybe<Scalars['String']['output']>;
51907
51970
  };
51971
+ export type GraphIntegrationMcpAdminManagementApiTokenAuthConfigInput = {
51972
+ apiToken: Scalars['String']['input'];
51973
+ authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
51974
+ };
51908
51975
  export type GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection = {
51909
51976
  __typename?: 'GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateConnection';
51910
51977
  edges?: Maybe<Array<GraphIntegrationMcpAdminManagementCuratedMcpServerTemplateEdge>>;
@@ -51946,6 +52013,10 @@ export declare enum GraphIntegrationMcpAdminManagementMcpRegistrationSource {
51946
52013
  Customer = "CUSTOMER",
51947
52014
  Global = "GLOBAL"
51948
52015
  }
52016
+ export type GraphIntegrationMcpAdminManagementMcpServerAuthConfigInput = {
52017
+ apiToken?: InputMaybe<GraphIntegrationMcpAdminManagementApiTokenAuthConfigInput>;
52018
+ noAuth?: InputMaybe<GraphIntegrationMcpAdminManagementNoAuthConfigInput>;
52019
+ };
51949
52020
  export declare enum GraphIntegrationMcpAdminManagementMcpServerAuthType {
51950
52021
  ApiToken = "API_TOKEN",
51951
52022
  None = "NONE",
@@ -52041,7 +52112,11 @@ export declare enum GraphIntegrationMcpAdminManagementMcpToolStatus {
52041
52112
  DenyServerRemoved = "DENY_SERVER_REMOVED",
52042
52113
  NewToolDeny = "NEW_TOOL_DENY"
52043
52114
  }
52115
+ export type GraphIntegrationMcpAdminManagementNoAuthConfigInput = {
52116
+ authType: GraphIntegrationMcpAdminManagementMcpServerAuthType;
52117
+ };
52044
52118
  export type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
52119
+ authConfig?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAuthConfigInput>;
52045
52120
  authType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerAuthType>;
52046
52121
  autoEnableNewTools?: InputMaybe<Scalars['Boolean']['input']>;
52047
52122
  cloudId: Scalars['ID']['input'];
@@ -59370,6 +59445,7 @@ export type GraphStoreFocusAreaHasWatcherInverseBatchArgs = {
59370
59445
  export type GraphStoreGetDynamicNodeTypesArgs = {
59371
59446
  after?: InputMaybe<Scalars['String']['input']>;
59372
59447
  first?: InputMaybe<Scalars['Int']['input']>;
59448
+ schemaIds?: InputMaybe<Array<Scalars['String']['input']>>;
59373
59449
  workspaceAri: Scalars['ID']['input'];
59374
59450
  };
59375
59451
  export type GraphStoreGetDynamicRelationshipTypesArgs = {
@@ -113680,6 +113756,7 @@ export type HelpCenterBranding = {
113680
113756
  isLogoAvailable?: Maybe<Scalars['Boolean']['output']>;
113681
113757
  logo?: Maybe<HelpCenterLogo>;
113682
113758
  navigationBar?: Maybe<HelpCenterNavigationBar>;
113759
+ typography?: Maybe<HelpCenterBrandingTypography>;
113683
113760
  useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
113684
113761
  };
113685
113762
  export type HelpCenterBrandingColors = {
@@ -113704,6 +113781,16 @@ export type HelpCenterBrandingInput = {
113704
113781
  homePageTitle?: InputMaybe<HelpCenterHomePageTitleInput>;
113705
113782
  logo?: InputMaybe<HelpCenterLogoInput>;
113706
113783
  navigationBar?: InputMaybe<HelpCenterNavigationBarInput>;
113784
+ typography?: InputMaybe<HelpCenterBrandingTypographyInput>;
113785
+ };
113786
+ export type HelpCenterBrandingTypography = {
113787
+ __typename?: 'HelpCenterBrandingTypography';
113788
+ bodyFont?: Maybe<Scalars['String']['output']>;
113789
+ headingFont?: Maybe<Scalars['String']['output']>;
113790
+ };
113791
+ export type HelpCenterBrandingTypographyInput = {
113792
+ bodyFont?: InputMaybe<Scalars['String']['input']>;
113793
+ headingFont?: InputMaybe<Scalars['String']['input']>;
113707
113794
  };
113708
113795
  export type HelpCenterBulkCreateTopicsInput = {
113709
113796
  helpCenterCreateTopicInputItem: Array<HelpCenterCreateTopicInput>;
@@ -113774,6 +113861,7 @@ export declare enum HelpCenterDescriptionType {
113774
113861
  WikiMarkup = "WIKI_MARKUP"
113775
113862
  }
113776
113863
  export type HelpCenterFilter = {
113864
+ autoLinkingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
113777
113865
  type?: InputMaybe<HelpCenterType>;
113778
113866
  };
113779
113867
  export type HelpCenterHelpObject = HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError | HelpObjectStoreRequestForm;
@@ -119846,6 +119934,7 @@ export type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
119846
119934
  };
119847
119935
  export type JiraBoardViewWorkflow = {
119848
119936
  __typename?: 'JiraBoardViewWorkflow';
119937
+ canEdit?: Maybe<Scalars['Boolean']['output']>;
119849
119938
  eligibleTransitions?: Maybe<JiraTransitionConnection>;
119850
119939
  id: Scalars['ID']['output'];
119851
119940
  issueTypes?: Maybe<JiraIssueTypeConnection>;
@@ -133202,6 +133291,7 @@ export declare enum JiraPlaybookStateField {
133202
133291
  export type JiraPlaybookStep = {
133203
133292
  __typename?: 'JiraPlaybookStep';
133204
133293
  automationTemplateId?: Maybe<Scalars['String']['output']>;
133294
+ checklistItems?: Maybe<Array<ChecklistItem>>;
133205
133295
  description?: Maybe<Scalars['JSON']['output']>;
133206
133296
  name?: Maybe<Scalars['String']['output']>;
133207
133297
  ruleId?: Maybe<Scalars['String']['output']>;
@@ -133629,6 +133719,7 @@ export type JiraProject = Node & {
133629
133719
  shouldShowGuestUserFlag?: Maybe<Scalars['Boolean']['output']>;
133630
133720
  sidebarConnectAddons?: Maybe<JiraProjectSidebarConnectAddonConnection>;
133631
133721
  similarIssues?: Maybe<JiraSimilarIssues>;
133722
+ slaMetricsConfiguration?: Maybe<JiraServiceManagementProjectSlaMetricsConfiguration>;
133632
133723
  softwareBoardCount?: Maybe<Scalars['Long']['output']>;
133633
133724
  softwareBoards?: Maybe<BoardScopeConnection>;
133634
133725
  status?: Maybe<JiraProjectStatus>;
@@ -134967,6 +135058,7 @@ export type JiraQuery = {
134967
135058
  jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
134968
135059
  jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
134969
135060
  jqlBuilder?: Maybe<JiraJqlBuilder>;
135061
+ jsmChatEnabled?: Maybe<JiraServiceManagementChatEnabled>;
134970
135062
  jsmCustomerWidget?: Maybe<JiraServiceManagementCustomerWidget>;
134971
135063
  jsmEmails?: Maybe<JiraServiceManagementEmailsConnection>;
134972
135064
  jsmPortal?: Maybe<JiraServiceManagementPortal>;
@@ -135885,6 +135977,10 @@ export type JiraQueryJpdGlobalViewFieldsArgs = {
135885
135977
  export type JiraQueryJqlBuilderArgs = {
135886
135978
  cloudId: Scalars['ID']['input'];
135887
135979
  };
135980
+ export type JiraQueryJsmChatEnabledArgs = {
135981
+ cloudId: Scalars['ID']['input'];
135982
+ projectId: Scalars['ID']['input'];
135983
+ };
135888
135984
  export type JiraQueryJsmCustomerWidgetArgs = {
135889
135985
  cloudId: Scalars['ID']['input'];
135890
135986
  projectId: Scalars['ID']['input'];
@@ -136619,6 +136715,39 @@ export type JiraRelatedLinkSuggestionsItemsArgs = {
136619
136715
  first?: InputMaybe<Scalars['Int']['input']>;
136620
136716
  last?: InputMaybe<Scalars['Int']['input']>;
136621
136717
  };
136718
+ export type JiraReleaseHistoryConnection = {
136719
+ __typename?: 'JiraReleaseHistoryConnection';
136720
+ edges: Array<JiraReleaseHistoryEdge>;
136721
+ pageInfo: PageInfo;
136722
+ };
136723
+ export type JiraReleaseHistoryEdge = {
136724
+ __typename?: 'JiraReleaseHistoryEdge';
136725
+ node: JiraReleaseHistoryItem;
136726
+ };
136727
+ export type JiraReleaseHistoryGenericFieldValue = {
136728
+ __typename?: 'JiraReleaseHistoryGenericFieldValue';
136729
+ displayValue?: Maybe<Scalars['String']['output']>;
136730
+ };
136731
+ export type JiraReleaseHistoryItem = {
136732
+ __typename?: 'JiraReleaseHistoryItem';
136733
+ actor?: Maybe<User>;
136734
+ fieldId?: Maybe<Scalars['String']['output']>;
136735
+ from?: Maybe<JiraReleaseHistoryValue>;
136736
+ i18nDescription?: Maybe<Scalars['String']['output']>;
136737
+ id: Scalars['ID']['output'];
136738
+ timestamp?: Maybe<Scalars['Long']['output']>;
136739
+ to?: Maybe<JiraReleaseHistoryValue>;
136740
+ };
136741
+ export type JiraReleaseHistoryStatusFieldValue = {
136742
+ __typename?: 'JiraReleaseHistoryStatusFieldValue';
136743
+ status?: Maybe<Scalars['String']['output']>;
136744
+ };
136745
+ export type JiraReleaseHistoryUserFieldValue = {
136746
+ __typename?: 'JiraReleaseHistoryUserFieldValue';
136747
+ user?: Maybe<User>;
136748
+ value?: Maybe<Scalars['String']['output']>;
136749
+ };
136750
+ export type JiraReleaseHistoryValue = JiraReleaseHistoryGenericFieldValue | JiraReleaseHistoryStatusFieldValue | JiraReleaseHistoryUserFieldValue;
136622
136751
  export type JiraReleaseNotesConfiguration = {
136623
136752
  __typename?: 'JiraReleaseNotesConfiguration';
136624
136753
  issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
@@ -137695,6 +137824,7 @@ export type JiraRightPanelStateEdge = {
137695
137824
  };
137696
137825
  export type JiraRole = Node & {
137697
137826
  __typename?: 'JiraRole';
137827
+ allowedOperations?: Maybe<Array<JiraRoleAllowedOperation>>;
137698
137828
  description?: Maybe<Scalars['String']['output']>;
137699
137829
  id: Scalars['ID']['output'];
137700
137830
  isAdmin?: Maybe<Scalars['Boolean']['output']>;
@@ -137705,6 +137835,12 @@ export type JiraRole = Node & {
137705
137835
  roleId: Scalars['String']['output'];
137706
137836
  translatedName?: Maybe<Scalars['String']['output']>;
137707
137837
  };
137838
+ export declare enum JiraRoleAllowedOperation {
137839
+ Delete = "DELETE",
137840
+ Edit = "EDIT",
137841
+ ManageMembers = "MANAGE_MEMBERS",
137842
+ View = "VIEW"
137843
+ }
137708
137844
  export type JiraRoleConnection = {
137709
137845
  __typename?: 'JiraRoleConnection';
137710
137846
  edges?: Maybe<Array<Maybe<JiraRoleEdge>>>;
@@ -138316,6 +138452,10 @@ export type JiraServiceManagementChannelSourceFieldChannelSourcesArgs = {
138316
138452
  after?: InputMaybe<Scalars['String']['input']>;
138317
138453
  first?: InputMaybe<Scalars['Int']['input']>;
138318
138454
  };
138455
+ export type JiraServiceManagementChatEnabled = {
138456
+ __typename?: 'JiraServiceManagementChatEnabled';
138457
+ enabled: Scalars['Boolean']['output'];
138458
+ };
138319
138459
  export type JiraServiceManagementComment = JiraComment & Node & {
138320
138460
  __typename?: 'JiraServiceManagementComment';
138321
138461
  author?: Maybe<User>;
@@ -138879,6 +139019,70 @@ export type JiraServiceManagementProjectQueueConnection = {
138879
139019
  pageInfo: PageInfo;
138880
139020
  totalCount?: Maybe<Scalars['Int']['output']>;
138881
139021
  };
139022
+ export type JiraServiceManagementProjectSlaCalendarReference = {
139023
+ __typename?: 'JiraServiceManagementProjectSlaCalendarReference';
139024
+ id: Scalars['Int']['output'];
139025
+ isDefault: Scalars['Boolean']['output'];
139026
+ name: Scalars['String']['output'];
139027
+ };
139028
+ export type JiraServiceManagementProjectSlaCondition = {
139029
+ __typename?: 'JiraServiceManagementProjectSlaCondition';
139030
+ conditionId: Scalars['String']['output'];
139031
+ factoryKey: Scalars['String']['output'];
139032
+ missing: Scalars['Boolean']['output'];
139033
+ name: Scalars['String']['output'];
139034
+ pluginKey: Scalars['String']['output'];
139035
+ type: Scalars['String']['output'];
139036
+ };
139037
+ export type JiraServiceManagementProjectSlaConditions = {
139038
+ __typename?: 'JiraServiceManagementProjectSlaConditions';
139039
+ inconsistent: Scalars['Boolean']['output'];
139040
+ pause: Array<JiraServiceManagementProjectSlaCondition>;
139041
+ start: Array<JiraServiceManagementProjectSlaCondition>;
139042
+ stop: Array<JiraServiceManagementProjectSlaCondition>;
139043
+ };
139044
+ export type JiraServiceManagementProjectSlaGoal = {
139045
+ __typename?: 'JiraServiceManagementProjectSlaGoal';
139046
+ calendarId?: Maybe<Scalars['Int']['output']>;
139047
+ defaultGoal: Scalars['Boolean']['output'];
139048
+ duration?: Maybe<Scalars['Long']['output']>;
139049
+ id: Scalars['ID']['output'];
139050
+ jqlQuery?: Maybe<Scalars['String']['output']>;
139051
+ subGoals: Array<JiraServiceManagementProjectSlaSubGoal>;
139052
+ };
139053
+ export type JiraServiceManagementProjectSlaMetricsConfiguration = {
139054
+ __typename?: 'JiraServiceManagementProjectSlaMetricsConfiguration';
139055
+ calendarRefs: Array<JiraServiceManagementProjectSlaCalendarReference>;
139056
+ canCreateMetrics: Scalars['Boolean']['output'];
139057
+ canManageFields: Scalars['Boolean']['output'];
139058
+ jqlHelpUrl: Scalars['String']['output'];
139059
+ metricCount: Scalars['Int']['output'];
139060
+ timeMetrics: Array<JiraServiceManagementProjectSlaTimeMetric>;
139061
+ };
139062
+ export type JiraServiceManagementProjectSlaSubGoal = {
139063
+ __typename?: 'JiraServiceManagementProjectSlaSubGoal';
139064
+ calendarId?: Maybe<Scalars['Int']['output']>;
139065
+ defaultGoal: Scalars['Boolean']['output'];
139066
+ duration?: Maybe<Scalars['Long']['output']>;
139067
+ goalId: Scalars['ID']['output'];
139068
+ id: Scalars['ID']['output'];
139069
+ jqlQuery?: Maybe<Scalars['String']['output']>;
139070
+ };
139071
+ export type JiraServiceManagementProjectSlaTimeMetric = {
139072
+ __typename?: 'JiraServiceManagementProjectSlaTimeMetric';
139073
+ config?: Maybe<JiraServiceManagementProjectSlaTimeMetricConfig>;
139074
+ customFieldId: Scalars['Long']['output'];
139075
+ goalCount: Scalars['Int']['output'];
139076
+ id: Scalars['ID']['output'];
139077
+ name: Scalars['String']['output'];
139078
+ projectKey: Scalars['String']['output'];
139079
+ };
139080
+ export type JiraServiceManagementProjectSlaTimeMetricConfig = {
139081
+ __typename?: 'JiraServiceManagementProjectSlaTimeMetricConfig';
139082
+ definition: JiraServiceManagementProjectSlaConditions;
139083
+ goals: Array<JiraServiceManagementProjectSlaGoal>;
139084
+ slaDisplayFormat: Scalars['String']['output'];
139085
+ };
138882
139086
  export type JiraServiceManagementProjectTeamType = {
138883
139087
  __typename?: 'JiraServiceManagementProjectTeamType';
138884
139088
  teamType?: Maybe<Scalars['String']['output']>;
@@ -140813,6 +141017,7 @@ export type JiraSprintFieldPayload = Payload & {
140813
141017
  export type JiraSprintFilterInput = {
140814
141018
  activeWithin?: InputMaybe<JiraDateTimeWindow>;
140815
141019
  boardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
141020
+ context?: InputMaybe<JiraSoftwareIssueSearchCustomInputContext>;
140816
141021
  projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
140817
141022
  projectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
140818
141023
  states?: InputMaybe<Array<JiraSprintState>>;
@@ -143016,6 +143221,7 @@ export type JiraVersion = JiraScenarioVersionLike & JiraSelectableValue & Node &
143016
143221
  driverData?: Maybe<JiraVersionDriverResult>;
143017
143222
  epicsForFilter?: Maybe<JiraIssueConnection>;
143018
143223
  hasReleaseNote?: Maybe<Scalars['Boolean']['output']>;
143224
+ history?: Maybe<JiraReleaseHistoryConnection>;
143019
143225
  iconUrl?: Maybe<Scalars['URL']['output']>;
143020
143226
  id: Scalars['ID']['output'];
143021
143227
  issueAssociatedDesigns?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignConnection>;
@@ -143072,6 +143278,10 @@ export type JiraVersionCrossProjectVersionArgs = {
143072
143278
  export type JiraVersionEpicsForFilterArgs = {
143073
143279
  searchStr?: InputMaybe<Scalars['String']['input']>;
143074
143280
  };
143281
+ export type JiraVersionHistoryArgs = {
143282
+ after?: InputMaybe<Scalars['String']['input']>;
143283
+ first?: InputMaybe<Scalars['Int']['input']>;
143284
+ };
143075
143285
  export type JiraVersionIssueAssociatedDesignsArgs = {
143076
143286
  after?: InputMaybe<Scalars['String']['input']>;
143077
143287
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -144921,6 +145131,7 @@ export type JsmAdaptiveLanguageGlossary = {
144921
145131
  __typename?: 'JsmAdaptiveLanguageGlossary';
144922
145132
  brandExceptions?: Maybe<Scalars['String']['output']>;
144923
145133
  compiledGlossary?: Maybe<Scalars['String']['output']>;
145134
+ domain?: Maybe<Scalars['String']['output']>;
144924
145135
  domainId?: Maybe<Scalars['String']['output']>;
144925
145136
  locale?: Maybe<Scalars['String']['output']>;
144926
145137
  matchOrder?: Maybe<Scalars['String']['output']>;
@@ -149150,6 +149361,10 @@ export type LiveChatMarkReadPayload = Payload & {
149150
149361
  errors?: Maybe<Array<MutationError>>;
149151
149362
  success: Scalars['Boolean']['output'];
149152
149363
  };
149364
+ export declare enum LiveChatMessageVisibility {
149365
+ Internal = "INTERNAL",
149366
+ Public = "PUBLIC"
149367
+ }
149153
149368
  export type LiveChatParticipantJoined = {
149154
149369
  __typename?: 'LiveChatParticipantJoined';
149155
149370
  accountId?: Maybe<Scalars['String']['output']>;
@@ -149169,6 +149384,7 @@ export type LiveChatSendUserMessageInput = {
149169
149384
  chatAri: Scalars['ID']['input'];
149170
149385
  content: Scalars['String']['input'];
149171
149386
  messageId?: InputMaybe<Scalars['ID']['input']>;
149387
+ visibility?: InputMaybe<LiveChatMessageVisibility>;
149172
149388
  };
149173
149389
  export type LiveChatStarted = {
149174
149390
  __typename?: 'LiveChatStarted';
@@ -162946,6 +163162,7 @@ export type Mutation = {
162946
163162
  champion?: Maybe<UnifiedChampionMutation>;
162947
163163
  changeManagement_deleteLastRovoRiskAssessment: Scalars['Boolean']['output'];
162948
163164
  changeManagement_recordLastRovoRiskAssessment: Scalars['Boolean']['output'];
163165
+ changeManagement_regenerateJsmPreventionCenterOverviewSummary?: Maybe<ChangeManagementJsmPreventionCenterOverviewSummaryResponse>;
162949
163166
  changeManagement_updateGlobalRiskAssessmentSettings: Scalars['Boolean']['output'];
162950
163167
  changeManagement_updateRovoRiskAssessmentSettings: Scalars['Boolean']['output'];
162951
163168
  channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
@@ -165373,6 +165590,10 @@ export type MutationChangeManagement_RecordLastRovoRiskAssessmentArgs = {
165373
165590
  input: ChangeManagementUpdateLastRovoRiskAssessmentInput;
165374
165591
  keepUpdatedAt?: InputMaybe<Scalars['Boolean']['input']>;
165375
165592
  };
165593
+ export type MutationChangeManagement_RegenerateJsmPreventionCenterOverviewSummaryArgs = {
165594
+ cloudId: Scalars['ID']['input'];
165595
+ entityKey: Scalars['String']['input'];
165596
+ };
165376
165597
  export type MutationChangeManagement_UpdateGlobalRiskAssessmentSettingsArgs = {
165377
165598
  input: ChangeManagementUpdateGlobalRiskAssessmentSettingsInput;
165378
165599
  };
@@ -173221,6 +173442,7 @@ export type Query = {
173221
173442
  champion?: Maybe<UnifiedChampionQuery>;
173222
173443
  changeManagement_globalRiskAssessmentSettings: ChangeManagementGlobalRiskAssessmentSettingsPayload;
173223
173444
  changeManagement_globalRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementGlobalRiskAssessmentSettingsPayload>;
173445
+ changeManagement_jsmPreventionCenterOverviewSummary?: Maybe<ChangeManagementJsmPreventionCenterOverviewSummaryResponse>;
173224
173446
  changeManagement_lastRovoRiskAssessment: ChangeManagementLastRovoRiskAssessmentPayload;
173225
173447
  changeManagement_rovoRiskAssessmentSettings: ChangeManagementRovoRiskAssessmentSettingsPayload;
173226
173448
  changeManagement_rovoRiskAssessmentSettingsByIssue?: Maybe<ChangeManagementRovoRiskAssessmentSettingsPayload>;
@@ -178441,6 +178663,10 @@ export type QueryChangeManagement_GlobalRiskAssessmentSettingsByIssueArgs = {
178441
178663
  cloudId: Scalars['ID']['input'];
178442
178664
  issueKeyOrId: Scalars['String']['input'];
178443
178665
  };
178666
+ export type QueryChangeManagement_JsmPreventionCenterOverviewSummaryArgs = {
178667
+ cloudId: Scalars['ID']['input'];
178668
+ entityKey: Scalars['String']['input'];
178669
+ };
178444
178670
  export type QueryChangeManagement_LastRovoRiskAssessmentArgs = {
178445
178671
  cloudId: Scalars['ID']['input'];
178446
178672
  issueId: Scalars['String']['input'];
@@ -189752,6 +189978,7 @@ export type QueryGraphStore_FocusAreaHasWatcherInverseBatchArgs = {
189752
189978
  export type QueryGraphStore_GetDynamicNodeTypesArgs = {
189753
189979
  after?: InputMaybe<Scalars['String']['input']>;
189754
189980
  first?: InputMaybe<Scalars['Int']['input']>;
189981
+ schemaIds?: InputMaybe<Array<Scalars['String']['input']>>;
189755
189982
  workspaceAri: Scalars['ID']['input'];
189756
189983
  };
189757
189984
  export type QueryGraphStore_GetDynamicRelationshipTypesArgs = {
@@ -200665,6 +200892,7 @@ export declare enum Scope {
200665
200892
  DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
200666
200893
  DeleteConfluenceTwgCli = "DELETE_CONFLUENCE_TWG_CLI",
200667
200894
  DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
200895
+ DeleteGoal = "DELETE_GOAL",
200668
200896
  DeleteGoalTwgCli = "DELETE_GOAL_TWG_CLI",
200669
200897
  DeleteInsightJpd = "DELETE_INSIGHT_JPD",
200670
200898
  DeleteItamConfigJsm = "DELETE_ITAM_CONFIG_JSM",
@@ -200679,6 +200907,7 @@ export declare enum Scope {
200679
200907
  DeleteOrganization = "DELETE_ORGANIZATION",
200680
200908
  DeleteOrganizationProperty = "DELETE_ORGANIZATION_PROPERTY",
200681
200909
  DeleteOrganizationUser = "DELETE_ORGANIZATION_USER",
200910
+ DeleteProject = "DELETE_PROJECT",
200682
200911
  DeleteProjectTwgCli = "DELETE_PROJECT_TWG_CLI",
200683
200912
  DeleteRadarTwgCli = "DELETE_RADAR_TWG_CLI",
200684
200913
  DeleteRequesttypeProperty = "DELETE_REQUESTTYPE_PROPERTY",
@@ -200900,13 +201129,10 @@ export declare enum Scope {
200900
201129
  ReadFeedbackJob = "READ_FEEDBACK_JOB",
200901
201130
  ReadFeedbackSource = "READ_FEEDBACK_SOURCE",
200902
201131
  ReadFeedbackSpace = "READ_FEEDBACK_SPACE",
201132
+ ReadFeedbackTwgCli = "READ_FEEDBACK_TWG_CLI",
200903
201133
  ReadFeedbackView = "READ_FEEDBACK_VIEW",
200904
201134
  ReadGoal = "READ_GOAL",
200905
201135
  ReadGoalAccess = "READ_GOAL_ACCESS",
200906
- ReadGoalChatIntegration = "READ_GOAL_CHAT_INTEGRATION",
200907
- ReadGoalComment = "READ_GOAL_COMMENT",
200908
- ReadGoalMetric = "READ_GOAL_METRIC",
200909
- ReadGoalUpdate = "READ_GOAL_UPDATE",
200910
201136
  ReadGuardDetectAlert = "READ_GUARD_DETECT_ALERT",
200911
201137
  ReadGuardDetectDetection = "READ_GUARD_DETECT_DETECTION",
200912
201138
  ReadGuardDetectDetectionSetting = "READ_GUARD_DETECT_DETECTION_SETTING",
@@ -200947,10 +201173,7 @@ export declare enum Scope {
200947
201173
  ReadProfileUpp = "READ_PROFILE_UPP",
200948
201174
  ReadProject = "READ_PROJECT",
200949
201175
  ReadProjectAccess = "READ_PROJECT_ACCESS",
200950
- ReadProjectChatIntegration = "READ_PROJECT_CHAT_INTEGRATION",
200951
- ReadProjectComment = "READ_PROJECT_COMMENT",
200952
201176
  ReadProjectJpd = "READ_PROJECT_JPD",
200953
- ReadProjectUpdate = "READ_PROJECT_UPDATE",
200954
201177
  ReadQueue = "READ_QUEUE",
200955
201178
  ReadRadarTwgCli = "READ_RADAR_TWG_CLI",
200956
201179
  ReadRequest = "READ_REQUEST",
@@ -201040,7 +201263,6 @@ export declare enum Scope {
201040
201263
  WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
201041
201264
  WriteCapacityPlanning = "WRITE_CAPACITY_PLANNING",
201042
201265
  WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
201043
- WriteCommentGoal = "WRITE_COMMENT_GOAL",
201044
201266
  WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
201045
201267
  WriteCompassEvent = "WRITE_COMPASS_EVENT",
201046
201268
  WriteCompassMetric = "WRITE_COMPASS_METRIC",
@@ -201080,10 +201302,11 @@ export declare enum Scope {
201080
201302
  WriteFeedbackInsight = "WRITE_FEEDBACK_INSIGHT",
201081
201303
  WriteFeedbackJob = "WRITE_FEEDBACK_JOB",
201082
201304
  WriteFeedbackSpace = "WRITE_FEEDBACK_SPACE",
201305
+ WriteFeedbackTwgCli = "WRITE_FEEDBACK_TWG_CLI",
201083
201306
  WriteFeedbackView = "WRITE_FEEDBACK_VIEW",
201084
201307
  WriteGoal = "WRITE_GOAL",
201085
201308
  WriteGoalChatIntegration = "WRITE_GOAL_CHAT_INTEGRATION",
201086
- WriteGoalMetric = "WRITE_GOAL_METRIC",
201309
+ WriteGoalUpdate = "WRITE_GOAL_UPDATE",
201087
201310
  WriteGuardDetectAlert = "WRITE_GUARD_DETECT_ALERT",
201088
201311
  WriteGuardDetectDetection = "WRITE_GUARD_DETECT_DETECTION",
201089
201312
  WriteGuardDetectDetectionSetting = "WRITE_GUARD_DETECT_DETECTION_SETTING",
@@ -201117,7 +201340,6 @@ export declare enum Scope {
201117
201340
  WriteOrganizationUser = "WRITE_ORGANIZATION_USER",
201118
201341
  WriteProject = "WRITE_PROJECT",
201119
201342
  WriteProjectChatIntegration = "WRITE_PROJECT_CHAT_INTEGRATION",
201120
- WriteProjectComment = "WRITE_PROJECT_COMMENT",
201121
201343
  WriteProjectUpdate = "WRITE_PROJECT_UPDATE",
201122
201344
  WriteRadarTwgCli = "WRITE_RADAR_TWG_CLI",
201123
201345
  WriteRequest = "WRITE_REQUEST",
@@ -201148,7 +201370,6 @@ export declare enum Scope {
201148
201370
  WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
201149
201371
  WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP",
201150
201372
  WriteTrelloTwgCli = "WRITE_TRELLO_TWG_CLI",
201151
- WriteUpdateGoal = "WRITE_UPDATE_GOAL",
201152
201373
  WriteViewJpd = "WRITE_VIEW_JPD"
201153
201374
  }
201154
201375
  export type ScopeSprintIssue = {
@@ -202562,6 +202783,7 @@ export type SearchThirdPartyProduct = {
202562
202783
  channels?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
202563
202784
  connectionIds?: InputMaybe<Array<Scalars['String']['input']>>;
202564
202785
  connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
202786
+ connectorSourcesImpersonationEnabled?: InputMaybe<Array<Scalars['String']['input']>>;
202565
202787
  containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
202566
202788
  datasourceId?: InputMaybe<Scalars['String']['input']>;
202567
202789
  entities?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -225941,6 +226163,7 @@ export type Subscription = {
225941
226163
  assetsVertical_onAsyncTaskUpdated?: Maybe<AssetsVerticalAsyncTask>;
225942
226164
  bitbucket?: Maybe<BitbucketSubscription>;
225943
226165
  blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
226166
+ changeManagement_jsmPreventionCenterOverviewSummaryUpdated?: Maybe<ChangeManagementJsmPreventionCenterOverviewSummaryResponse>;
225944
226167
  confluence_onContentModified?: Maybe<ConfluenceContentModified>;
225945
226168
  confluence_onSuggestedEditsUpdated?: Maybe<ConfluenceSuggestedEditsUpdated>;
225946
226169
  convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
@@ -225991,6 +226214,10 @@ export type SubscriptionAssetsVertical_OnAsyncTaskUpdatedArgs = {
225991
226214
  export type SubscriptionBlockService_OnBlockUpdatedArgs = {
225992
226215
  resourceId: Scalars['ID']['input'];
225993
226216
  };
226217
+ export type SubscriptionChangeManagement_JsmPreventionCenterOverviewSummaryUpdatedArgs = {
226218
+ cloudId: Scalars['ID']['input'];
226219
+ entityKey: Scalars['String']['input'];
226220
+ };
225994
226221
  export type SubscriptionConfluence_OnContentModifiedArgs = {
225995
226222
  id: Scalars['ID']['input'];
225996
226223
  };
@@ -241173,6 +241400,7 @@ export type UpdateJiraPlaybookStatePayload = Payload & {
241173
241400
  success: Scalars['Boolean']['output'];
241174
241401
  };
241175
241402
  export type UpdateJiraPlaybookStepInput = {
241403
+ checklistItems?: InputMaybe<Array<ChecklistItemInput>>;
241176
241404
  description?: InputMaybe<Scalars['JSON']['input']>;
241177
241405
  name: Scalars['String']['input'];
241178
241406
  ruleId?: InputMaybe<Scalars['String']['input']>;