@forge/cli-shared 6.8.0-next.5-experimental-c9be087 → 6.8.0-next.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,21 +1,22 @@
1
1
  # @forge/cli-shared
2
2
 
3
- ## 6.8.0-next.5-experimental-c9be087
3
+ ## 6.8.0-next.7
4
4
 
5
- ### Minor Changes
5
+ ### Patch Changes
6
6
 
7
- - d156658: Switch the `forge create` flow to select product context first
7
+ - 9d231e9: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
8
+ - b503084: switch the `forge create` cross-context flow to use the new `app.contexts` manifest format
9
+ - Updated dependencies [9d231e9]
10
+ - Updated dependencies [b503084]
11
+ - @forge/manifest@8.9.0-next.3
12
+
13
+ ## 6.8.0-next.6
8
14
 
9
15
  ### Patch Changes
10
16
 
11
- - 2cdac63: forge install should list all scopes
12
- - 999a9d0: Update error messages for deployment
13
- - 721e1a0: update `forge create` flow for cross-context templates
14
- - 210360b: Refactor text functions for easier read and maintenance
15
- - Updated dependencies [721e1a0]
16
- - Updated dependencies [94e48b9]
17
- - Updated dependencies [64daaa5]
18
- - @forge/manifest@8.9.0-next.1-experimental-c9be087
17
+ - a7db2e6: improve error message
18
+ - Updated dependencies [003b1ed]
19
+ - @forge/manifest@8.9.0-next.2
19
20
 
20
21
  ## 6.8.0-next.5
21
22
 
@@ -795,7 +795,7 @@ export declare type AgentStudioAgent = {
795
795
  id: Scalars['ID']['output'];
796
796
  name?: Maybe<Scalars['String']['output']>;
797
797
  };
798
- export declare type AgentStudioAgentResult = AgentStudioAssistant | QueryError;
798
+ export declare type AgentStudioAgentResult = AgentStudioAssistant | AgentStudioServiceAgent | QueryError;
799
799
  export declare enum AgentStudioAgentType {
800
800
  Assistant = "ASSISTANT"
801
801
  }
@@ -870,6 +870,13 @@ export declare type AgentStudioKnowledgeSourceInput = {
870
870
  filters?: InputMaybe<AgentStudioKnowledgeFiltersInput>;
871
871
  source: Scalars['String']['input'];
872
872
  };
873
+ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
874
+ __typename?: 'AgentStudioServiceAgent';
875
+ description?: Maybe<Scalars['String']['output']>;
876
+ id: Scalars['ID']['output'];
877
+ linkedJiraProject?: Maybe<JiraProject>;
878
+ name?: Maybe<Scalars['String']['output']>;
879
+ };
873
880
  export declare type AgentStudioSuggestConversationStartersInput = {
874
881
  agentDescription?: InputMaybe<Scalars['String']['input']>;
875
882
  agentInstructions?: InputMaybe<Scalars['String']['input']>;
@@ -1405,10 +1412,20 @@ export declare type AppFeaturesInput = {
1405
1412
  };
1406
1413
  export declare type AppHostService = {
1407
1414
  __typename?: 'AppHostService';
1415
+ additionalDetails?: Maybe<AppHostServiceDetails>;
1416
+ allowedAuthMechanisms: Array<Scalars['String']['output']>;
1408
1417
  description: Scalars['String']['output'];
1409
1418
  name: Scalars['String']['output'];
1419
+ resourceOwner?: Maybe<Scalars['String']['output']>;
1410
1420
  scopes?: Maybe<Array<AppHostServiceScope>>;
1411
1421
  serviceId: Scalars['ID']['output'];
1422
+ supportsSiteEgressPermissions?: Maybe<Scalars['Boolean']['output']>;
1423
+ };
1424
+ export declare type AppHostServiceDetails = {
1425
+ __typename?: 'AppHostServiceDetails';
1426
+ documentationUrl?: Maybe<Scalars['String']['output']>;
1427
+ isEnrollable?: Maybe<Scalars['Boolean']['output']>;
1428
+ logoUrl?: Maybe<Scalars['String']['output']>;
1412
1429
  };
1413
1430
  export declare type AppHostServiceScope = {
1414
1431
  __typename?: 'AppHostServiceScope';
@@ -5274,6 +5291,7 @@ export declare type CompassComponent = Node & {
5274
5291
  metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
5275
5292
  name: Scalars['String']['output'];
5276
5293
  ownerId?: Maybe<Scalars['ID']['output']>;
5294
+ packageDependencies?: Maybe<CompassComponentPackageDependencyConnection>;
5277
5295
  relationships?: Maybe<CompassRelationshipConnectionResult>;
5278
5296
  scorecardScore?: Maybe<CompassScorecardScore>;
5279
5297
  scorecardScores?: Maybe<Array<CompassScorecardScore>>;
@@ -5301,6 +5319,10 @@ export declare type CompassComponentEventsArgs = {
5301
5319
  export declare type CompassComponentMetricSourcesArgs = {
5302
5320
  query?: InputMaybe<CompassComponentMetricSourcesQuery>;
5303
5321
  };
5322
+ export declare type CompassComponentPackageDependenciesArgs = {
5323
+ after?: InputMaybe<Scalars['String']['input']>;
5324
+ first?: InputMaybe<Scalars['Int']['input']>;
5325
+ };
5304
5326
  export declare type CompassComponentRelationshipsArgs = {
5305
5327
  query?: InputMaybe<CompassRelationshipQuery>;
5306
5328
  };
@@ -5532,6 +5554,41 @@ export declare type CompassComponentMetricSourcesQuery = {
5532
5554
  first?: InputMaybe<Scalars['Int']['input']>;
5533
5555
  };
5534
5556
  export declare type CompassComponentMetricSourcesQueryResult = CompassComponentMetricSourcesConnection | QueryError;
5557
+ export declare type CompassComponentPackageDependencyConnection = {
5558
+ __typename?: 'CompassComponentPackageDependencyConnection';
5559
+ edges?: Maybe<Array<CompassComponentPackageDependencyEdge>>;
5560
+ nodes?: Maybe<Array<CompassPackage>>;
5561
+ pageInfo?: Maybe<PageInfo>;
5562
+ totalCount?: Maybe<Scalars['Int']['output']>;
5563
+ };
5564
+ export declare type CompassComponentPackageDependencyEdge = {
5565
+ __typename?: 'CompassComponentPackageDependencyEdge';
5566
+ changeMetadata?: Maybe<CompassChangeMetadata>;
5567
+ cursor?: Maybe<Scalars['String']['output']>;
5568
+ node?: Maybe<CompassPackage>;
5569
+ versionsBySource?: Maybe<CompassComponentPackageDependencyVersionsBySourceConnection>;
5570
+ };
5571
+ export declare type CompassComponentPackageDependencyEdgeVersionsBySourceArgs = {
5572
+ after?: InputMaybe<Scalars['String']['input']>;
5573
+ first?: InputMaybe<Scalars['Int']['input']>;
5574
+ };
5575
+ export declare type CompassComponentPackageDependencyVersionsBySourceConnection = {
5576
+ __typename?: 'CompassComponentPackageDependencyVersionsBySourceConnection';
5577
+ edges?: Maybe<Array<CompassComponentPackageDependencyVersionsBySourceEdge>>;
5578
+ nodes?: Maybe<Array<CompassComponentPackageVersionsBySource>>;
5579
+ pageInfo?: Maybe<PageInfo>;
5580
+ };
5581
+ export declare type CompassComponentPackageDependencyVersionsBySourceEdge = {
5582
+ __typename?: 'CompassComponentPackageDependencyVersionsBySourceEdge';
5583
+ cursor?: Maybe<Scalars['String']['output']>;
5584
+ node?: Maybe<CompassComponentPackageVersionsBySource>;
5585
+ };
5586
+ export declare type CompassComponentPackageVersionsBySource = {
5587
+ __typename?: 'CompassComponentPackageVersionsBySource';
5588
+ dependentOnVersions?: Maybe<Array<Scalars['String']['output']>>;
5589
+ sourceId?: Maybe<Scalars['String']['output']>;
5590
+ sourceUrl?: Maybe<Scalars['String']['output']>;
5591
+ };
5535
5592
  export declare type CompassComponentQueryResult = CompassSearchComponentConnection | QueryError;
5536
5593
  export declare type CompassComponentResult = CompassComponent | QueryError;
5537
5594
  export declare type CompassComponentScorecardJiraIssueConnection = {
@@ -7434,6 +7491,11 @@ export declare type CompassMetricValuesTimeseries = {
7434
7491
  values?: Maybe<Array<Maybe<CompassMetricValue>>>;
7435
7492
  };
7436
7493
  export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTimeseries | QueryError;
7494
+ export declare type CompassPackage = {
7495
+ __typename?: 'CompassPackage';
7496
+ id: Scalars['ID']['output'];
7497
+ packageName: Scalars['String']['output'];
7498
+ };
7437
7499
  export declare type CompassPermissionResult = {
7438
7500
  __typename?: 'CompassPermissionResult';
7439
7501
  allowed: Scalars['Boolean']['output'];
@@ -9017,6 +9079,7 @@ export declare type ConfluenceAdminReport = {
9017
9079
  link?: Maybe<Scalars['String']['output']>;
9018
9080
  reportId?: Maybe<Scalars['ID']['output']>;
9019
9081
  requesterId?: Maybe<Scalars['ID']['output']>;
9082
+ user?: Maybe<AtlassianUser>;
9020
9083
  };
9021
9084
  export declare type ConfluenceAdminReportPayload = {
9022
9085
  __typename?: 'ConfluenceAdminReportPayload';
@@ -17112,7 +17175,9 @@ export declare type ContentAnalyticsPageViewInfo = {
17112
17175
  lastVersionViewedNumber?: Maybe<Scalars['Int']['output']>;
17113
17176
  lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
17114
17177
  lastViewedAt: Scalars['String']['output'];
17178
+ user?: Maybe<AtlassianUser>;
17115
17179
  userId: Scalars['ID']['output'];
17180
+ userProfile?: Maybe<AtlassianUser>;
17116
17181
  views: Scalars['Int']['output'];
17117
17182
  };
17118
17183
  export declare type ContentAnalyticsTotalViewsByPage = {
@@ -18954,6 +19019,7 @@ export declare type CountGroupByUser = {
18954
19019
  export declare type CountGroupByUserItem = {
18955
19020
  __typename?: 'CountGroupByUserItem';
18956
19021
  count: Scalars['Int']['output'];
19022
+ user?: Maybe<AtlassianUser>;
18957
19023
  userId: Scalars['String']['output'];
18958
19024
  };
18959
19025
  export declare type CountUsersGroupByPage = {
@@ -20783,6 +20849,35 @@ export declare type CustomerUser = LocalizationContext & User & {
20783
20849
  picture: Scalars['URL']['output'];
20784
20850
  zoneinfo?: Maybe<Scalars['String']['output']>;
20785
20851
  };
20852
+ export declare type DailyToplineTrendSeries = {
20853
+ __typename?: 'DailyToplineTrendSeries';
20854
+ cohortType: Scalars['String']['output'];
20855
+ cohortValue: Scalars['String']['output'];
20856
+ data: Array<DailyToplineTrendSeriesData>;
20857
+ env: GlanceEnvironment;
20858
+ goals: Array<ExperienceToplineGoal>;
20859
+ id: Scalars['ID']['output'];
20860
+ metric: Scalars['String']['output'];
20861
+ missingDays?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
20862
+ pageLoadType?: Maybe<PageLoadType>;
20863
+ percentile: Scalars['Int']['output'];
20864
+ };
20865
+ export declare type DailyToplineTrendSeriesData = {
20866
+ __typename?: 'DailyToplineTrendSeriesData';
20867
+ aggregatedAt?: Maybe<Scalars['DateTime']['output']>;
20868
+ approxVolumePercentage?: Maybe<Scalars['Float']['output']>;
20869
+ count: Scalars['Int']['output'];
20870
+ day: Scalars['Date']['output'];
20871
+ id: Scalars['ID']['output'];
20872
+ isPartialDayAggregation?: Maybe<Scalars['Boolean']['output']>;
20873
+ overrideAt?: Maybe<Scalars['DateTime']['output']>;
20874
+ overrideSourceName?: Maybe<Scalars['String']['output']>;
20875
+ overrideUserId?: Maybe<Scalars['String']['output']>;
20876
+ projectedValueEod?: Maybe<Scalars['Float']['output']>;
20877
+ projectedValueHigh?: Maybe<Scalars['Float']['output']>;
20878
+ projectedValueLow?: Maybe<Scalars['Float']['output']>;
20879
+ value: Scalars['Float']['output'];
20880
+ };
20786
20881
  export declare type DataAccessAndStorage = {
20787
20882
  __typename?: 'DataAccessAndStorage';
20788
20883
  appProcessEUDOutsideAtlassian?: Maybe<Scalars['Boolean']['output']>;
@@ -20887,6 +20982,7 @@ export declare type DeactivatedUserPageCountEntity = {
20887
20982
  __typename?: 'DeactivatedUserPageCountEntity';
20888
20983
  accountId?: Maybe<Scalars['ID']['output']>;
20889
20984
  pageCount?: Maybe<Scalars['Int']['output']>;
20985
+ user?: Maybe<AtlassianUser>;
20890
20986
  };
20891
20987
  export declare type DeactivatedUserPageCountEntityEdge = {
20892
20988
  __typename?: 'DeactivatedUserPageCountEntityEdge';
@@ -21610,6 +21706,38 @@ export declare type DevAiCreateTechnicalPlannerJobPayload = Payload & {
21610
21706
  job?: Maybe<DevAiTechnicalPlannerJob>;
21611
21707
  success: Scalars['Boolean']['output'];
21612
21708
  };
21709
+ export declare type DevAiFlowPipeline = {
21710
+ __typename?: 'DevAiFlowPipeline';
21711
+ createdAt?: Maybe<Scalars['String']['output']>;
21712
+ id: Scalars['ID']['output'];
21713
+ sessionARI: Scalars['ID']['output'];
21714
+ status?: Maybe<DevAiFlowPipelinesStatus>;
21715
+ updatedAt?: Maybe<Scalars['String']['output']>;
21716
+ url?: Maybe<Scalars['String']['output']>;
21717
+ };
21718
+ export declare enum DevAiFlowPipelinesStatus {
21719
+ Failed = "FAILED",
21720
+ InProgress = "IN_PROGRESS",
21721
+ Provisioned = "PROVISIONED",
21722
+ Stopped = "STOPPED"
21723
+ }
21724
+ export declare type DevAiFlowSession = {
21725
+ __typename?: 'DevAiFlowSession';
21726
+ createdAt?: Maybe<Scalars['String']['output']>;
21727
+ id: Scalars['ID']['output'];
21728
+ issueARI?: Maybe<Scalars['ID']['output']>;
21729
+ pipelines?: Maybe<Array<Maybe<DevAiFlowPipeline>>>;
21730
+ sessionARI: Scalars['ID']['output'];
21731
+ status?: Maybe<DevAiFlowSessionsStatus>;
21732
+ updatedAt?: Maybe<Scalars['String']['output']>;
21733
+ };
21734
+ export declare enum DevAiFlowSessionsStatus {
21735
+ Completed = "COMPLETED",
21736
+ Failed = "FAILED",
21737
+ InProgress = "IN_PROGRESS",
21738
+ Paused = "PAUSED",
21739
+ Pending = "PENDING"
21740
+ }
21613
21741
  export declare type DevAiGenericAutodevLog = DevAiAutodevLog & {
21614
21742
  __typename?: 'DevAiGenericAutodevLog';
21615
21743
  attributes?: Maybe<Scalars['JSON']['output']>;
@@ -23679,7 +23807,6 @@ export declare enum EcosystemInstallationRecoveryMode {
23679
23807
  RecoverPreviousInstall = "RECOVER_PREVIOUS_INSTALL"
23680
23808
  }
23681
23809
  export declare enum EcosystemLicenseMode {
23682
- Agent = "AGENT",
23683
23810
  UserAccess = "USER_ACCESS"
23684
23811
  }
23685
23812
  export declare type EcosystemMarketplaceAppDeployment = {
@@ -24251,6 +24378,47 @@ export declare type EventTimeseriesCtrItems = {
24251
24378
  ctr: Scalars['Float']['output'];
24252
24379
  timestamp: Scalars['String']['output'];
24253
24380
  };
24381
+ export declare type Experience = {
24382
+ __typename?: 'Experience';
24383
+ dailyToplineTrend: Array<DailyToplineTrendSeries>;
24384
+ experienceEventType: ExperienceEventType;
24385
+ experienceKey: Scalars['String']['output'];
24386
+ experienceLink: Scalars['String']['output'];
24387
+ id: Scalars['ID']['output'];
24388
+ name: Scalars['String']['output'];
24389
+ product: Product;
24390
+ };
24391
+ export declare type ExperienceDailyToplineTrendArgs = {
24392
+ cohortType?: InputMaybe<Scalars['String']['input']>;
24393
+ cohortTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
24394
+ cohortValue?: InputMaybe<Scalars['String']['input']>;
24395
+ dateFrom: Scalars['Date']['input'];
24396
+ dateTo: Scalars['Date']['input'];
24397
+ env: GlanceEnvironment;
24398
+ metric: Scalars['String']['input'];
24399
+ pageLoadType?: InputMaybe<PageLoadType>;
24400
+ percentile: Scalars['Int']['input'];
24401
+ };
24402
+ export declare enum ExperienceEventType {
24403
+ Custom = "CUSTOM",
24404
+ Database = "DATABASE",
24405
+ InlineResult = "INLINE_RESULT",
24406
+ PageLoad = "PAGE_LOAD",
24407
+ PageSegmentLoad = "PAGE_SEGMENT_LOAD",
24408
+ WebVitals = "WEB_VITALS"
24409
+ }
24410
+ export declare type ExperienceToplineGoal = {
24411
+ __typename?: 'ExperienceToplineGoal';
24412
+ cohort?: Maybe<Scalars['String']['output']>;
24413
+ cohortType: Scalars['String']['output'];
24414
+ env: GlanceEnvironment;
24415
+ id: Scalars['ID']['output'];
24416
+ metric: Scalars['String']['output'];
24417
+ name: Scalars['String']['output'];
24418
+ pageLoadType?: Maybe<PageLoadType>;
24419
+ percentile: Scalars['Int']['output'];
24420
+ value: Scalars['Float']['output'];
24421
+ };
24254
24422
  export declare type Extension = {
24255
24423
  __typename?: 'Extension';
24256
24424
  appId: Scalars['ID']['output'];
@@ -26595,6 +26763,11 @@ export declare type GenericQueryErrorExtension = QueryErrorExtension & {
26595
26763
  errorType?: Maybe<Scalars['String']['output']>;
26596
26764
  statusCode?: Maybe<Scalars['Int']['output']>;
26597
26765
  };
26766
+ export declare enum GlanceEnvironment {
26767
+ Dev = "DEV",
26768
+ Prod = "PROD",
26769
+ Staging = "STAGING"
26770
+ }
26598
26771
  export declare type GlanceUserInsights = {
26599
26772
  __typename?: 'GlanceUserInsights';
26600
26773
  additional_data?: Maybe<Scalars['String']['output']>;
@@ -59445,6 +59618,13 @@ export declare type JiraJqlComponentFieldValue = JiraJqlFieldValue & {
59445
59618
  isSelected?: Maybe<Scalars['Boolean']['output']>;
59446
59619
  jqlTerm: Scalars['String']['output'];
59447
59620
  };
59621
+ export declare type JiraJqlEmptyFieldValue = JiraJqlFieldValue & {
59622
+ __typename?: 'JiraJqlEmptyFieldValue';
59623
+ displayName: Scalars['String']['output'];
59624
+ encodedJqlTerm?: Maybe<Scalars['String']['output']>;
59625
+ isSelected?: Maybe<Scalars['Boolean']['output']>;
59626
+ jqlTerm: Scalars['String']['output'];
59627
+ };
59448
59628
  export declare type JiraJqlField = {
59449
59629
  __typename?: 'JiraJqlField';
59450
59630
  allowedClauseTypes: Array<JiraJqlClauseType>;
@@ -63340,6 +63520,7 @@ export declare type JiraQuery = {
63340
63520
  resourceUsageCustomFieldRecommendations?: Maybe<JiraResourceUsageCustomFieldRecommendationConnection>;
63341
63521
  resourceUsageMetric?: Maybe<JiraResourceUsageMetric>;
63342
63522
  resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
63523
+ resourceUsageMetricByIdV2?: Maybe<JiraResourceUsageMetricV2>;
63343
63524
  resourceUsageMetricV2?: Maybe<JiraResourceUsageMetricV2>;
63344
63525
  resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
63345
63526
  resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
@@ -64170,6 +64351,9 @@ export declare type JiraQueryResourceUsageMetricArgs = {
64170
64351
  export declare type JiraQueryResourceUsageMetricByIdArgs = {
64171
64352
  id: Scalars['ID']['input'];
64172
64353
  };
64354
+ export declare type JiraQueryResourceUsageMetricByIdV2Args = {
64355
+ id: Scalars['ID']['input'];
64356
+ };
64173
64357
  export declare type JiraQueryResourceUsageMetricV2Args = {
64174
64358
  cloudId: Scalars['ID']['input'];
64175
64359
  metricKey: Scalars['String']['input'];
@@ -70922,6 +71106,7 @@ export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
70922
71106
  after?: InputMaybe<Scalars['String']['input']>;
70923
71107
  cloudId: Scalars['ID']['input'];
70924
71108
  first?: InputMaybe<Scalars['Int']['input']>;
71109
+ isSuggestion?: InputMaybe<Scalars['Boolean']['input']>;
70925
71110
  orgId: Scalars['String']['input'];
70926
71111
  };
70927
71112
  export declare type KnowledgeDiscoveryQueryApiAutoDefinitionArgs = {
@@ -71066,6 +71251,7 @@ export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
71066
71251
  documentCount?: Maybe<Scalars['Int']['output']>;
71067
71252
  id: Scalars['ID']['output'];
71068
71253
  name: Scalars['String']['output'];
71254
+ relatedQuestion?: Maybe<Scalars['String']['output']>;
71069
71255
  type?: Maybe<KnowledgeDiscoveryTopicType>;
71070
71256
  updatedAt: Scalars['String']['output'];
71071
71257
  };
@@ -76034,6 +76220,7 @@ export declare type Mutation = {
76034
76220
  devOps?: Maybe<DevOpsMutation>;
76035
76221
  devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
76036
76222
  devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
76223
+ devai_flowSessionCreate?: Maybe<DevAiFlowSession>;
76037
76224
  devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
76038
76225
  devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
76039
76226
  disableExperiment?: Maybe<TapExperiment>;
@@ -77274,6 +77461,9 @@ export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
77274
77461
  repoUrl: Scalars['URL']['input'];
77275
77462
  summary?: InputMaybe<Scalars['String']['input']>;
77276
77463
  };
77464
+ export declare type MutationDevai_FlowSessionCreateArgs = {
77465
+ issueARI?: InputMaybe<Scalars['ID']['input']>;
77466
+ };
77277
77467
  export declare type MutationDevai_InvokeAutodevRovoAgentArgs = {
77278
77468
  agentId: Scalars['ID']['input'];
77279
77469
  issueId: Scalars['ID']['input'];
@@ -78763,6 +78953,7 @@ export declare type PageActivityEventCreatedComment = PageActivityEvent & {
78763
78953
  commentType: AnalyticsCommentType;
78764
78954
  groupSize: Scalars['Int']['output'];
78765
78955
  timestamp: Scalars['String']['output'];
78956
+ user?: Maybe<AtlassianUser>;
78766
78957
  };
78767
78958
  export declare type PageActivityEventCreatedPage = PageActivityEvent & {
78768
78959
  __typename?: 'PageActivityEventCreatedPage';
@@ -78772,6 +78963,7 @@ export declare type PageActivityEventCreatedPage = PageActivityEvent & {
78772
78963
  groupSize: Scalars['Int']['output'];
78773
78964
  pageVersion: Scalars['Int']['output'];
78774
78965
  timestamp: Scalars['String']['output'];
78966
+ user?: Maybe<AtlassianUser>;
78775
78967
  };
78776
78968
  export declare type PageActivityEventPublishedPage = PageActivityEvent & {
78777
78969
  __typename?: 'PageActivityEventPublishedPage';
@@ -78781,6 +78973,7 @@ export declare type PageActivityEventPublishedPage = PageActivityEvent & {
78781
78973
  groupSize: Scalars['Int']['output'];
78782
78974
  pageVersion: Scalars['Int']['output'];
78783
78975
  timestamp: Scalars['String']['output'];
78976
+ user?: Maybe<AtlassianUser>;
78784
78977
  };
78785
78978
  export declare type PageActivityEventSnapshottedPage = PageActivityEvent & {
78786
78979
  __typename?: 'PageActivityEventSnapshottedPage';
@@ -78790,6 +78983,7 @@ export declare type PageActivityEventSnapshottedPage = PageActivityEvent & {
78790
78983
  groupSize: Scalars['Int']['output'];
78791
78984
  pageVersion: Scalars['Int']['output'];
78792
78985
  timestamp: Scalars['String']['output'];
78986
+ user?: Maybe<AtlassianUser>;
78793
78987
  };
78794
78988
  export declare type PageActivityEventStartedPage = PageActivityEvent & {
78795
78989
  __typename?: 'PageActivityEventStartedPage';
@@ -78799,6 +78993,7 @@ export declare type PageActivityEventStartedPage = PageActivityEvent & {
78799
78993
  groupSize: Scalars['Int']['output'];
78800
78994
  pageVersion: Scalars['Int']['output'];
78801
78995
  timestamp: Scalars['String']['output'];
78996
+ user?: Maybe<AtlassianUser>;
78802
78997
  };
78803
78998
  export declare type PageActivityEventUpdatedPage = PageActivityEvent & {
78804
78999
  __typename?: 'PageActivityEventUpdatedPage';
@@ -78808,6 +79003,7 @@ export declare type PageActivityEventUpdatedPage = PageActivityEvent & {
78808
79003
  groupSize: Scalars['Int']['output'];
78809
79004
  pageVersion: Scalars['Int']['output'];
78810
79005
  timestamp: Scalars['String']['output'];
79006
+ user?: Maybe<AtlassianUser>;
78811
79007
  };
78812
79008
  export declare type PageActivityPageInfo = {
78813
79009
  __typename?: 'PageActivityPageInfo';
@@ -78874,6 +79070,11 @@ export declare type PageInput = {
78874
79070
  status?: InputMaybe<PageStatusInput>;
78875
79071
  title?: InputMaybe<Scalars['String']['input']>;
78876
79072
  };
79073
+ export declare enum PageLoadType {
79074
+ Combined = "COMBINED",
79075
+ Initial = "INITIAL",
79076
+ Transition = "TRANSITION"
79077
+ }
78877
79078
  export declare type PageRestriction = {
78878
79079
  __typename?: 'PageRestriction';
78879
79080
  group?: Maybe<Array<PageGroupRestriction>>;
@@ -80856,6 +81057,7 @@ export declare type Query = {
80856
81057
  contentAnalyticsViewers?: Maybe<ContentAnalyticsViewers>;
80857
81058
  contentAnalyticsViews?: Maybe<ContentAnalyticsViews>;
80858
81059
  contentAnalyticsViewsByDate?: Maybe<ContentAnalyticsViewsByDate>;
81060
+ contentAnalyticsViewsByUser?: Maybe<ContentAnalyticsViewsByUser>;
80859
81061
  contentBody?: Maybe<ContentBodyPerRepresentation>;
80860
81062
  contentByState?: Maybe<PaginatedContentList>;
80861
81063
  contentContributors?: Maybe<ContentContributors>;
@@ -80918,6 +81120,8 @@ export declare type Query = {
80918
81120
  devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
80919
81121
  devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
80920
81122
  devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
81123
+ devai_flowSessionsGet?: Maybe<DevAiFlowSession>;
81124
+ devai_flowSessionsResume?: Maybe<DevAiFlowPipeline>;
80921
81125
  devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
80922
81126
  devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
80923
81127
  devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
@@ -80968,6 +81172,7 @@ export declare type Query = {
80968
81172
  getSmartContentFeature?: Maybe<SmartPageFeatures>;
80969
81173
  getSmartFeatures?: Maybe<SmartFeaturesResponse>;
80970
81174
  getSummary?: Maybe<SmartFeaturesContentSummary>;
81175
+ glance_getCurrentUserSettings?: Maybe<UserSettings>;
80971
81176
  glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
80972
81177
  globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
80973
81178
  globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
@@ -82603,6 +82808,12 @@ export declare type QueryContentAnalyticsViewsByDateArgs = {
82603
82808
  toDate: Scalars['String']['input'];
82604
82809
  type: Scalars['String']['input'];
82605
82810
  };
82811
+ export declare type QueryContentAnalyticsViewsByUserArgs = {
82812
+ accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
82813
+ contentId: Scalars['ID']['input'];
82814
+ engageTimeThreshold?: InputMaybe<Scalars['Int']['input']>;
82815
+ limit?: InputMaybe<Scalars['Int']['input']>;
82816
+ };
82606
82817
  export declare type QueryContentBodyArgs = {
82607
82818
  id: Scalars['ID']['input'];
82608
82819
  };
@@ -82891,6 +83102,12 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
82891
83102
  query?: InputMaybe<Scalars['String']['input']>;
82892
83103
  templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
82893
83104
  };
83105
+ export declare type QueryDevai_FlowSessionsGetArgs = {
83106
+ id: Scalars['ID']['input'];
83107
+ };
83108
+ export declare type QueryDevai_FlowSessionsResumeArgs = {
83109
+ id: Scalars['ID']['input'];
83110
+ };
82894
83111
  export declare type QueryDevai_RovoDevAgentsUserArgs = {
82895
83112
  atlassianAccountId: Scalars['ID']['input'];
82896
83113
  cloudId: Scalars['ID']['input'];
@@ -84329,6 +84546,7 @@ export declare type RadarWorkspace = {
84329
84546
  id: Scalars['ID']['output'];
84330
84547
  positionFields: Array<RadarFieldDefinition>;
84331
84548
  userContext?: Maybe<RadarUserContext>;
84549
+ workerFields: Array<RadarFieldDefinition>;
84332
84550
  };
84333
84551
  export declare type RankColumnInput = {
84334
84552
  boardId: Scalars['ID']['input'];
@@ -84526,6 +84744,7 @@ export declare type RecommendedPeopleItem = {
84526
84744
  __typename?: 'RecommendedPeopleItem';
84527
84745
  accountId: Scalars['String']['output'];
84528
84746
  score: Scalars['Float']['output'];
84747
+ user?: Maybe<AtlassianUser>;
84529
84748
  };
84530
84749
  export declare type RecommendedSpaceItem = {
84531
84750
  __typename?: 'RecommendedSpaceItem';
@@ -93130,7 +93349,7 @@ export declare type TrelloLabelUpdated = {
93130
93349
  };
93131
93350
  export declare type TrelloLabelUpdatedConnection = {
93132
93351
  __typename?: 'TrelloLabelUpdatedConnection';
93133
- nodes: Array<TrelloLabel>;
93352
+ nodes?: Maybe<Array<TrelloLabel>>;
93134
93353
  };
93135
93354
  export declare type TrelloLimitProps = {
93136
93355
  __typename?: 'TrelloLimitProps';
@@ -93247,7 +93466,7 @@ export declare type TrelloMemberWorkspacesArgs = {
93247
93466
  export declare type TrelloMemberConnection = {
93248
93467
  __typename?: 'TrelloMemberConnection';
93249
93468
  edges?: Maybe<Array<Maybe<TrelloMemberEdge>>>;
93250
- nodes?: Maybe<Array<Maybe<TrelloMember>>>;
93469
+ nodes?: Maybe<Array<TrelloMember>>;
93251
93470
  pageInfo: PageInfo;
93252
93471
  };
93253
93472
  export declare type TrelloMemberEdge = {
@@ -93487,6 +93706,7 @@ export declare type TrelloPlannerCalendarAccountUpdated = {
93487
93706
  __typename?: 'TrelloPlannerCalendarAccountUpdated';
93488
93707
  enabledCalendars?: Maybe<TrelloPlannerCalendarConnectionUpdated>;
93489
93708
  id: Scalars['ID']['output'];
93709
+ providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnectionUpdated>;
93490
93710
  };
93491
93711
  export declare enum TrelloPlannerCalendarColor {
93492
93712
  BlueSubtler = "BLUE_SUBTLER",
@@ -93638,9 +93858,24 @@ export declare enum TrelloPlannerCalendarEventType {
93638
93858
  }
93639
93859
  export declare type TrelloPlannerCalendarEventUpdated = {
93640
93860
  __typename?: 'TrelloPlannerCalendarEventUpdated';
93861
+ allDay?: Maybe<Scalars['Boolean']['output']>;
93862
+ busy?: Maybe<Scalars['Boolean']['output']>;
93641
93863
  cards?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
93864
+ color?: Maybe<TrelloPlannerCalendarColor>;
93865
+ conferencing?: Maybe<TrelloPlannerCalendarEventConferencing>;
93866
+ createdByTrello?: Maybe<Scalars['Boolean']['output']>;
93867
+ description?: Maybe<Scalars['String']['output']>;
93868
+ endAt?: Maybe<Scalars['DateTime']['output']>;
93869
+ eventType?: Maybe<TrelloPlannerCalendarEventType>;
93642
93870
  id: Scalars['ID']['output'];
93871
+ link?: Maybe<Scalars['String']['output']>;
93643
93872
  onPlannerCalendarEventCardDeleted?: Maybe<Array<TrelloPlannerCalendarEventCardDeleted>>;
93873
+ parentEventId?: Maybe<Scalars['ID']['output']>;
93874
+ readOnly?: Maybe<Scalars['Boolean']['output']>;
93875
+ startAt?: Maybe<Scalars['DateTime']['output']>;
93876
+ status?: Maybe<TrelloPlannerCalendarEventStatus>;
93877
+ title?: Maybe<Scalars['String']['output']>;
93878
+ visibility?: Maybe<TrelloPlannerCalendarEventVisibility>;
93644
93879
  };
93645
93880
  export declare enum TrelloPlannerCalendarEventVisibility {
93646
93881
  Default = "DEFAULT",
@@ -93662,8 +93897,17 @@ export declare type TrelloPlannerCalendarProviderCalendarsFilter = {
93662
93897
  };
93663
93898
  export declare type TrelloPlannerCalendarUpdated = {
93664
93899
  __typename?: 'TrelloPlannerCalendarUpdated';
93900
+ color?: Maybe<TrelloPlannerCalendarColor>;
93901
+ enabled?: Maybe<Scalars['Boolean']['output']>;
93665
93902
  events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
93666
93903
  id: Scalars['ID']['output'];
93904
+ isPrimary?: Maybe<Scalars['Boolean']['output']>;
93905
+ objectId?: Maybe<Scalars['ID']['output']>;
93906
+ providerCalendarId?: Maybe<Scalars['ID']['output']>;
93907
+ readOnly?: Maybe<Scalars['Boolean']['output']>;
93908
+ timezone?: Maybe<Scalars['String']['output']>;
93909
+ title?: Maybe<Scalars['String']['output']>;
93910
+ type?: Maybe<TrelloSupportedPlannerProviders>;
93667
93911
  };
93668
93912
  export declare type TrelloPlannerCalendarUpdatedEventsArgs = {
93669
93913
  filter: TrelloPlannerCalendarEventsUpdatedFilter;
@@ -93685,12 +93929,30 @@ export declare type TrelloPlannerProviderCalendarConnection = {
93685
93929
  pageInfo: PageInfo;
93686
93930
  updateCursor?: Maybe<Scalars['String']['output']>;
93687
93931
  };
93932
+ export declare type TrelloPlannerProviderCalendarConnectionUpdated = {
93933
+ __typename?: 'TrelloPlannerProviderCalendarConnectionUpdated';
93934
+ edges?: Maybe<Array<TrelloPlannerProviderCalendarEdgeUpdated>>;
93935
+ };
93688
93936
  export declare type TrelloPlannerProviderCalendarEdge = {
93689
93937
  __typename?: 'TrelloPlannerProviderCalendarEdge';
93690
93938
  cursor?: Maybe<Scalars['String']['output']>;
93691
93939
  deletedCalendar?: Maybe<TrelloProviderCalendarDeleted>;
93692
93940
  node?: Maybe<TrelloPlannerProviderCalendar>;
93693
93941
  };
93942
+ export declare type TrelloPlannerProviderCalendarEdgeUpdated = {
93943
+ __typename?: 'TrelloPlannerProviderCalendarEdgeUpdated';
93944
+ node?: Maybe<TrelloPlannerProviderCalendarUpdated>;
93945
+ };
93946
+ export declare type TrelloPlannerProviderCalendarUpdated = {
93947
+ __typename?: 'TrelloPlannerProviderCalendarUpdated';
93948
+ color?: Maybe<TrelloPlannerCalendarColor>;
93949
+ id: Scalars['ID']['output'];
93950
+ isPrimary?: Maybe<Scalars['Boolean']['output']>;
93951
+ readOnly?: Maybe<Scalars['Boolean']['output']>;
93952
+ timezone?: Maybe<Scalars['String']['output']>;
93953
+ title?: Maybe<Scalars['String']['output']>;
93954
+ type?: Maybe<TrelloSupportedPlannerProviders>;
93955
+ };
93694
93956
  export declare type TrelloPlannerUpdated = {
93695
93957
  __typename?: 'TrelloPlannerUpdated';
93696
93958
  accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
@@ -93963,16 +94225,16 @@ export declare type TrelloStickerUpdatedConnection = {
93963
94225
  };
93964
94226
  export declare type TrelloSubscriptionApi = {
93965
94227
  __typename?: 'TrelloSubscriptionApi';
94228
+ onBoardCardSetUpdated?: Maybe<TrelloBoardUpdated>;
93966
94229
  onBoardUpdated?: Maybe<TrelloBoardUpdated>;
93967
- onCardsUpdated?: Maybe<TrelloBoardUpdated>;
93968
94230
  onMemberUpdated?: Maybe<TrelloMemberUpdated>;
93969
94231
  onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
93970
94232
  };
93971
- export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
94233
+ export declare type TrelloSubscriptionApiOnBoardCardSetUpdatedArgs = {
93972
94234
  cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
93973
94235
  id: Scalars['ID']['input'];
93974
94236
  };
93975
- export declare type TrelloSubscriptionApiOnCardsUpdatedArgs = {
94237
+ export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
93976
94238
  cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
93977
94239
  id: Scalars['ID']['input'];
93978
94240
  };
@@ -96104,6 +96366,12 @@ export declare type UserPreferencesInput = {
96104
96366
  theme?: InputMaybe<Scalars['String']['input']>;
96105
96367
  topNavigationOptedOut?: InputMaybe<Scalars['Boolean']['input']>;
96106
96368
  };
96369
+ export declare type UserSettings = {
96370
+ __typename?: 'UserSettings';
96371
+ id: Scalars['ID']['output'];
96372
+ starredExperiences: Array<Experience>;
96373
+ username: Scalars['String']['output'];
96374
+ };
96107
96375
  export declare type UserWithPermissionsInput = {
96108
96376
  accountId: Scalars['ID']['input'];
96109
96377
  operations: Array<InputMaybe<OperationCheckResultInput>>;