@forge/cli-shared 8.15.3-next.3 → 8.16.0-next.4

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.
@@ -1390,6 +1390,16 @@ export declare type AvpToggleCanvasElementExpandedPayload = Payload & {
1390
1390
  errors?: Maybe<Array<MutationError>>;
1391
1391
  success: Scalars['Boolean']['output'];
1392
1392
  };
1393
+ export declare type AvpTrackDashboardViewInput = {
1394
+ dashboardAri: Scalars['ID']['input'];
1395
+ hostingProduct: Scalars['String']['input'];
1396
+ workspaceId: Scalars['String']['input'];
1397
+ };
1398
+ export declare type AvpTrackDashboardViewPayload = Payload & {
1399
+ __typename?: 'AVPTrackDashboardViewPayload';
1400
+ errors?: Maybe<Array<MutationError>>;
1401
+ success: Scalars['Boolean']['output'];
1402
+ };
1393
1403
  export declare type AvpUpdateChartInput = {
1394
1404
  chart: AvpChartInput;
1395
1405
  chartAri: Scalars['ID']['input'];
@@ -4827,6 +4837,26 @@ export declare type AgentWorkspaceAgentAvailability = {
4827
4837
  teams?: Maybe<Array<TeamV2>>;
4828
4838
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
4829
4839
  };
4840
+ export declare type AgentWorkspaceAgentCapacity = {
4841
+ __typename?: 'AgentWorkspaceAgentCapacity';
4842
+ agentId: Scalars['ID']['output'];
4843
+ agentName: Scalars['String']['output'];
4844
+ availableSlots: Scalars['Int']['output'];
4845
+ currentLoad: Scalars['Int']['output'];
4846
+ maxCapacity: Scalars['Int']['output'];
4847
+ status: AgentWorkspaceCapacityStatus;
4848
+ teamARIs: Array<Scalars['ID']['output']>;
4849
+ teamIds: Array<Scalars['ID']['output']>;
4850
+ teamNames: Array<Scalars['String']['output']>;
4851
+ teams?: Maybe<Array<TeamV2>>;
4852
+ updatedAt: Scalars['DateTime']['output'];
4853
+ utilizationPercent: Scalars['Float']['output'];
4854
+ };
4855
+ export declare type AgentWorkspaceAgentCapacityEdge = {
4856
+ __typename?: 'AgentWorkspaceAgentCapacityEdge';
4857
+ cursor: Scalars['String']['output'];
4858
+ node: AgentWorkspaceAgentCapacity;
4859
+ };
4830
4860
  export declare type AgentWorkspaceAgentShifts = {
4831
4861
  __typename?: 'AgentWorkspaceAgentShifts';
4832
4862
  agent: AgentWorkspaceAgent;
@@ -4913,6 +4943,11 @@ export declare type AgentWorkspaceAvailabilitySummary = {
4913
4943
  onBreak: Scalars['Int']['output'];
4914
4944
  onDuty: Scalars['Int']['output'];
4915
4945
  };
4946
+ export declare type AgentWorkspaceCapacityConnection = {
4947
+ __typename?: 'AgentWorkspaceCapacityConnection';
4948
+ edges: Array<AgentWorkspaceAgentCapacityEdge>;
4949
+ pageInfo: AgentWorkspaceCapacityPageInfo;
4950
+ };
4916
4951
  export declare type AgentWorkspaceCapacityError = {
4917
4952
  __typename?: 'AgentWorkspaceCapacityError';
4918
4953
  code: Scalars['String']['output'];
@@ -4922,12 +4957,18 @@ export declare type AgentWorkspaceCapacityError = {
4922
4957
  export declare type AgentWorkspaceCapacityInput = {
4923
4958
  agentIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4924
4959
  cloudId: Scalars['ID']['input'];
4925
- page?: InputMaybe<Scalars['Int']['input']>;
4926
- pageSize?: InputMaybe<Scalars['Int']['input']>;
4927
4960
  projectKey: Scalars['String']['input'];
4928
4961
  statuses?: InputMaybe<Array<AgentWorkspaceCapacityStatus>>;
4929
4962
  teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4930
4963
  };
4964
+ export declare type AgentWorkspaceCapacityPageInfo = {
4965
+ __typename?: 'AgentWorkspaceCapacityPageInfo';
4966
+ endCursor?: Maybe<Scalars['String']['output']>;
4967
+ hasNextPage: Scalars['Boolean']['output'];
4968
+ hasPreviousPage: Scalars['Boolean']['output'];
4969
+ startCursor?: Maybe<Scalars['String']['output']>;
4970
+ totalCount: Scalars['Int']['output'];
4971
+ };
4931
4972
  export declare enum AgentWorkspaceCapacityStatus {
4932
4973
  High = "HIGH",
4933
4974
  Idle = "IDLE",
@@ -5072,6 +5113,7 @@ export declare type AgentWorkspaceCreateScheduleInput = {
5072
5113
  recurrence?: InputMaybe<AgentWorkspaceRecurrenceRuleInput>;
5073
5114
  startTime: Scalars['DateTime']['input'];
5074
5115
  teamId?: InputMaybe<Scalars['ID']['input']>;
5116
+ timezone?: InputMaybe<Scalars['String']['input']>;
5075
5117
  };
5076
5118
  export declare type AgentWorkspaceCreateSchedulePayload = {
5077
5119
  __typename?: 'AgentWorkspaceCreateSchedulePayload';
@@ -5173,6 +5215,7 @@ export declare type AgentWorkspaceSchedule = {
5173
5215
  recurring: Scalars['Boolean']['output'];
5174
5216
  startTime: Scalars['DateTime']['output'];
5175
5217
  teamId?: Maybe<Scalars['ID']['output']>;
5218
+ timezone: Scalars['String']['output'];
5176
5219
  updatedAt: Scalars['DateTime']['output'];
5177
5220
  };
5178
5221
  export declare type AgentWorkspaceScheduleError = {
@@ -5343,6 +5386,7 @@ export declare type AgentWorkspaceUpdateScheduleInput = {
5343
5386
  scheduleId: Scalars['ID']['input'];
5344
5387
  startTime: Scalars['DateTime']['input'];
5345
5388
  teamId?: InputMaybe<Scalars['ID']['input']>;
5389
+ timezone?: InputMaybe<Scalars['String']['input']>;
5346
5390
  };
5347
5391
  export declare type AgentWorkspaceUpdateSchedulePayload = {
5348
5392
  __typename?: 'AgentWorkspaceUpdateSchedulePayload';
@@ -9748,6 +9792,27 @@ export declare type AssetsUserValueData = {
9748
9792
  key?: Maybe<Scalars['String']['output']>;
9749
9793
  name?: Maybe<Scalars['String']['output']>;
9750
9794
  };
9795
+ export declare type AssetsVerticalBundle = {
9796
+ __typename?: 'AssetsVerticalBundle';
9797
+ id: Scalars['ID']['output'];
9798
+ name: Scalars['String']['output'];
9799
+ schemas?: Maybe<Array<AssetsVerticalSchemaTemplate>>;
9800
+ type: AssetsVerticalBundleType;
9801
+ };
9802
+ export declare enum AssetsVerticalBundleType {
9803
+ Cdm = "CDM",
9804
+ Osc = "OSC"
9805
+ }
9806
+ export declare type AssetsVerticalSchemaTemplate = {
9807
+ __typename?: 'AssetsVerticalSchemaTemplate';
9808
+ description?: Maybe<Scalars['String']['output']>;
9809
+ displayName: Scalars['String']['output'];
9810
+ id: Scalars['ID']['output'];
9811
+ key: Scalars['String']['output'];
9812
+ name: Scalars['String']['output'];
9813
+ objectTypeCount?: Maybe<Scalars['Int']['output']>;
9814
+ type: Scalars['String']['output'];
9815
+ };
9751
9816
  export declare type AssignIssueParentInput = {
9752
9817
  boardId: Scalars['ID']['input'];
9753
9818
  issueIds: Array<Scalars['ID']['input']>;
@@ -12960,6 +13025,7 @@ export declare type CcpUsageUpdateCadence = {
12960
13025
  };
12961
13026
  export declare type ChangeManagementGlobalRiskAssessmentSettingsPayload = {
12962
13027
  __typename?: 'ChangeManagementGlobalRiskAssessmentSettingsPayload';
13028
+ aiRiskAssessmentEnabled?: Maybe<Scalars['Boolean']['output']>;
12963
13029
  isEnabled?: Maybe<Scalars['Boolean']['output']>;
12964
13030
  };
12965
13031
  export declare type ChangeManagementLastRovoRiskAssessmentPayload = {
@@ -12976,6 +13042,7 @@ export declare type ChangeManagementRovoRiskAssessmentSettingsPayload = {
12976
13042
  knowledgeBases?: Maybe<Array<Scalars['String']['output']>>;
12977
13043
  };
12978
13044
  export declare type ChangeManagementUpdateGlobalRiskAssessmentSettingsInput = {
13045
+ aiRiskAssessmentEnabled?: InputMaybe<Scalars['Boolean']['input']>;
12979
13046
  cloudId: Scalars['ID']['input'];
12980
13047
  isEnabled: Scalars['Boolean']['input'];
12981
13048
  projectId: Scalars['String']['input'];
@@ -14803,7 +14870,6 @@ export declare type CommerceExpCcpSubscription = {
14803
14870
  isInvoiceGenerationPending?: Maybe<Scalars['Boolean']['output']>;
14804
14871
  orderItemId?: Maybe<Scalars['ID']['output']>;
14805
14872
  pauseBilling?: Maybe<CommerceExpPauseBilling>;
14806
- relatedQuoteForNextCycleScheduledChange?: Maybe<CommerceExpCcpQuote>;
14807
14873
  scheduledChanges?: Maybe<CommerceExpScheduledChanges>;
14808
14874
  startTimestamp?: Maybe<Scalars['Float']['output']>;
14809
14875
  status?: Maybe<CommerceExpSubscriptionStatus>;
@@ -15085,8 +15151,15 @@ export declare type CommerceExpContractEntitlement = {
15085
15151
  latestModification?: Maybe<CommerceExpContractModification>;
15086
15152
  latestModificationVersion?: Maybe<Scalars['Int']['output']>;
15087
15153
  modifications?: Maybe<Array<Maybe<CommerceExpContractModification>>>;
15088
- status?: Maybe<CommerceExpEntitlementStatus>;
15154
+ status?: Maybe<CommerceExpContractEntitlementStatus>;
15089
15155
  };
15156
+ export declare enum CommerceExpContractEntitlementStatus {
15157
+ Active = "ACTIVE",
15158
+ Cancelled = "CANCELLED",
15159
+ Expired = "EXPIRED",
15160
+ Inactive = "INACTIVE",
15161
+ Superseded = "SUPERSEDED"
15162
+ }
15090
15163
  export declare type CommerceExpContractInvoiceItem = {
15091
15164
  __typename?: 'CommerceExpContractInvoiceItem';
15092
15165
  invoice?: Maybe<CommerceExpCcpInvoice>;
@@ -15973,6 +16046,7 @@ export declare type CommerceExpLineItemResponse = {
15973
16046
  entitlement?: Maybe<CommerceExpCcpEntitlement>;
15974
16047
  entitlementVersion?: Maybe<Scalars['String']['output']>;
15975
16048
  isMultiYear?: Maybe<Scalars['Boolean']['output']>;
16049
+ isProvisionedOrReserved?: Maybe<Scalars['Boolean']['output']>;
15976
16050
  lineItemId?: Maybe<Scalars['String']['output']>;
15977
16051
  lineItemTermType?: Maybe<CommerceExpLineItemTermType>;
15978
16052
  lineItemType?: Maybe<CommerceExpLineItemType>;
@@ -15981,7 +16055,7 @@ export declare type CommerceExpLineItemResponse = {
15981
16055
  offeringId?: Maybe<Scalars['ID']['output']>;
15982
16056
  period?: Maybe<CommerceExpPeriodResponse>;
15983
16057
  pricingPlan?: Maybe<CommerceExpCcpPricingPlan>;
15984
- promotions?: Maybe<Array<Maybe<CommerceExpOmsPromotionDto>>>;
16058
+ promotions?: Maybe<Array<Maybe<CommerceExpQuotesPromotion>>>;
15985
16059
  rampPricingLineItems?: Maybe<Array<Maybe<CommerceExpLineItemResponse>>>;
15986
16060
  relatesFromEntitlements?: Maybe<Array<Maybe<CommerceExpRelatesFromEntitlementDetails>>>;
15987
16061
  reservedOrgAndSite?: Maybe<CommerceExpReservedSiteAndOrg>;
@@ -16774,6 +16848,7 @@ export declare type CommerceExpPromotionBenefitDto = {
16774
16848
  value?: Maybe<Scalars['Int']['output']>;
16775
16849
  };
16776
16850
  export declare enum CommerceExpPromotionBenefitDtoDuration {
16851
+ AlignToPhase = "ALIGN_TO_PHASE",
16777
16852
  Forever = "FOREVER",
16778
16853
  Once = "ONCE",
16779
16854
  Repeating = "REPEATING",
@@ -16811,6 +16886,9 @@ export declare enum CommerceExpPromotionStatus {
16811
16886
  Inactive = "INACTIVE",
16812
16887
  Withdrawn = "WITHDRAWN"
16813
16888
  }
16889
+ export declare enum CommerceExpPromotionTermType {
16890
+ PromotionLockForAmendment = "PROMOTION_LOCK_FOR_AMENDMENT"
16891
+ }
16814
16892
  export declare enum CommerceExpPromotionType {
16815
16893
  DealRegistrationMargin = "DEAL_REGISTRATION_MARGIN",
16816
16894
  DiscretionaryDiscount = "DISCRETIONARY_DISCOUNT",
@@ -16892,6 +16970,45 @@ export declare type CommerceExpQuoteStatusFilter = {
16892
16970
  exclude?: InputMaybe<Array<CommerceExpQuoteStatus>>;
16893
16971
  include?: InputMaybe<Array<CommerceExpQuoteStatus>>;
16894
16972
  };
16973
+ export declare type CommerceExpQuotesApplicationContext = {
16974
+ __typename?: 'CommerceExpQuotesApplicationContext';
16975
+ promotionLock?: Maybe<Scalars['Boolean']['output']>;
16976
+ };
16977
+ export declare type CommerceExpQuotesBenefit = {
16978
+ __typename?: 'CommerceExpQuotesBenefit';
16979
+ duration?: Maybe<CommerceExpQuotesBenefitDuration>;
16980
+ iterations?: Maybe<Scalars['Int']['output']>;
16981
+ lineItemId?: Maybe<Scalars['String']['output']>;
16982
+ value?: Maybe<Scalars['Float']['output']>;
16983
+ };
16984
+ export declare enum CommerceExpQuotesBenefitDuration {
16985
+ AlignToQuoteLine = "ALIGN_TO_QUOTE_LINE",
16986
+ Forever = "FOREVER",
16987
+ Once = "ONCE",
16988
+ Repeating = "REPEATING"
16989
+ }
16990
+ export declare type CommerceExpQuotesCustomisedValues = {
16991
+ __typename?: 'CommerceExpQuotesCustomisedValues';
16992
+ applicationReason?: Maybe<CommerceExpApplicationReasonDto>;
16993
+ benefits?: Maybe<Array<Maybe<CommerceExpQuotesBenefit>>>;
16994
+ };
16995
+ export declare type CommerceExpQuotesPromotion = {
16996
+ __typename?: 'CommerceExpQuotesPromotion';
16997
+ promotionDefinition?: Maybe<CommerceExpQuotesPromotionDefinition>;
16998
+ promotionInstanceId?: Maybe<Scalars['String']['output']>;
16999
+ promotionTerm?: Maybe<CommerceExpQuotesPromotionTerm>;
17000
+ };
17001
+ export declare type CommerceExpQuotesPromotionDefinition = {
17002
+ __typename?: 'CommerceExpQuotesPromotionDefinition';
17003
+ applicationContext?: Maybe<CommerceExpQuotesApplicationContext>;
17004
+ customisedValues?: Maybe<CommerceExpQuotesCustomisedValues>;
17005
+ promotionCode?: Maybe<Scalars['String']['output']>;
17006
+ promotionId?: Maybe<Scalars['String']['output']>;
17007
+ };
17008
+ export declare type CommerceExpQuotesPromotionTerm = {
17009
+ __typename?: 'CommerceExpQuotesPromotionTerm';
17010
+ promotionTermType?: Maybe<CommerceExpPromotionTermType>;
17011
+ };
16895
17012
  export declare type CommerceExpRange = {
16896
17013
  __typename?: 'CommerceExpRange';
16897
17014
  lowerBound?: Maybe<Scalars['Int']['output']>;
@@ -29206,6 +29323,7 @@ export declare type ContentDataClassificationLevel = {
29206
29323
  color?: Maybe<Scalars['String']['output']>;
29207
29324
  description?: Maybe<Scalars['String']['output']>;
29208
29325
  guideline?: Maybe<Scalars['String']['output']>;
29326
+ guidelineADF?: Maybe<Scalars['String']['output']>;
29209
29327
  id: Scalars['String']['output'];
29210
29328
  name: Scalars['String']['output'];
29211
29329
  order?: Maybe<Scalars['Int']['output']>;
@@ -32435,10 +32553,6 @@ export declare type CreatePolarisViewSetPayload = Payload & {
32435
32553
  node?: Maybe<PolarisViewSet>;
32436
32554
  success: Scalars['Boolean']['output'];
32437
32555
  };
32438
- export declare type CreateRankingListInput = {
32439
- items?: InputMaybe<Array<Scalars['String']['input']>>;
32440
- listId: Scalars['ID']['input'];
32441
- };
32442
32556
  export declare type CreateSpaceAdditionalSettingsInput = {
32443
32557
  jiraProject?: InputMaybe<CreateSpaceJiraProjectInput>;
32444
32558
  spaceTypeSettings?: InputMaybe<SpaceTypeSettingsInput>;
@@ -35592,6 +35706,11 @@ export declare type DevAiMutationsSetAutofixEnabledStateForRepositoryArgs = {
35592
35706
  export declare type DevAiMutationsTriggerAutofixScanArgs = {
35593
35707
  input: DevAiTriggerAutofixScanInput;
35594
35708
  };
35709
+ export declare enum DevAiOwnershipFilter {
35710
+ All = "ALL",
35711
+ Own = "OWN",
35712
+ Shared = "SHARED"
35713
+ }
35595
35714
  export declare type DevAiPhaseEndedAutodevLog = DevAiAutodevLog & {
35596
35715
  __typename?: 'DevAiPhaseEndedAutodevLog';
35597
35716
  id: Scalars['ID']['output'];
@@ -35771,6 +35890,7 @@ export declare type DevAiRovoDevIssueViewResponseSessionsArgs = {
35771
35890
  cloudId?: InputMaybe<Scalars['ID']['input']>;
35772
35891
  first?: InputMaybe<Scalars['Int']['input']>;
35773
35892
  issueKey?: InputMaybe<Scalars['String']['input']>;
35893
+ ownershipFilter?: InputMaybe<DevAiOwnershipFilter>;
35774
35894
  sort?: InputMaybe<DevAiRovoDevSessionSort>;
35775
35895
  statusCategoryFilter?: InputMaybe<DevAiSessionStatusCategoryFilter>;
35776
35896
  };
@@ -46893,6 +47013,8 @@ export declare type GraphStore = {
46893
47013
  userUpdatedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasGoalInverseConnection>;
46894
47014
  userUpdatedAtlasProject?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectConnection>;
46895
47015
  userUpdatedAtlasProjectInverse?: Maybe<GraphStoreSimplifiedUserUpdatedAtlasProjectInverseConnection>;
47016
+ userUpdatedComponent?: Maybe<GraphStoreSimplifiedUserUpdatedComponentConnection>;
47017
+ userUpdatedComponentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedComponentInverseConnection>;
46896
47018
  userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
46897
47019
  userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
46898
47020
  userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
@@ -53906,6 +54028,22 @@ export declare type GraphStoreUserUpdatedAtlasProjectInverseArgs = {
53906
54028
  queryContext?: InputMaybe<Scalars['String']['input']>;
53907
54029
  sort?: InputMaybe<GraphStoreUserUpdatedAtlasProjectSortInput>;
53908
54030
  };
54031
+ export declare type GraphStoreUserUpdatedComponentArgs = {
54032
+ after?: InputMaybe<Scalars['String']['input']>;
54033
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
54034
+ first?: InputMaybe<Scalars['Int']['input']>;
54035
+ id: Scalars['ID']['input'];
54036
+ queryContext?: InputMaybe<Scalars['String']['input']>;
54037
+ sort?: InputMaybe<GraphStoreUserUpdatedComponentSortInput>;
54038
+ };
54039
+ export declare type GraphStoreUserUpdatedComponentInverseArgs = {
54040
+ after?: InputMaybe<Scalars['String']['input']>;
54041
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
54042
+ first?: InputMaybe<Scalars['Int']['input']>;
54043
+ id: Scalars['ID']['input'];
54044
+ queryContext?: InputMaybe<Scalars['String']['input']>;
54045
+ sort?: InputMaybe<GraphStoreUserUpdatedComponentSortInput>;
54046
+ };
53909
54047
  export declare type GraphStoreUserUpdatedConfluenceBlogpostArgs = {
53910
54048
  after?: InputMaybe<Scalars['String']['input']>;
53911
54049
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -72547,6 +72685,34 @@ export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseEdge = {
72547
72685
  };
72548
72686
  export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
72549
72687
  export declare type GraphStoreSimplifiedUserUpdatedAtlasProjectUnion = TownsquareProject;
72688
+ export declare type GraphStoreSimplifiedUserUpdatedComponentConnection = HasPageInfo & {
72689
+ __typename?: 'GraphStoreSimplifiedUserUpdatedComponentConnection';
72690
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedComponentEdge>>>;
72691
+ pageInfo: PageInfo;
72692
+ };
72693
+ export declare type GraphStoreSimplifiedUserUpdatedComponentEdge = {
72694
+ __typename?: 'GraphStoreSimplifiedUserUpdatedComponentEdge';
72695
+ createdAt: Scalars['DateTime']['output'];
72696
+ cursor?: Maybe<Scalars['String']['output']>;
72697
+ id: Scalars['ID']['output'];
72698
+ lastUpdated: Scalars['DateTime']['output'];
72699
+ node?: Maybe<GraphStoreSimplifiedUserUpdatedComponentUnion>;
72700
+ };
72701
+ export declare type GraphStoreSimplifiedUserUpdatedComponentInverseConnection = HasPageInfo & {
72702
+ __typename?: 'GraphStoreSimplifiedUserUpdatedComponentInverseConnection';
72703
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedComponentInverseEdge>>>;
72704
+ pageInfo: PageInfo;
72705
+ };
72706
+ export declare type GraphStoreSimplifiedUserUpdatedComponentInverseEdge = {
72707
+ __typename?: 'GraphStoreSimplifiedUserUpdatedComponentInverseEdge';
72708
+ createdAt: Scalars['DateTime']['output'];
72709
+ cursor?: Maybe<Scalars['String']['output']>;
72710
+ id: Scalars['ID']['output'];
72711
+ lastUpdated: Scalars['DateTime']['output'];
72712
+ node?: Maybe<GraphStoreSimplifiedUserUpdatedComponentInverseUnion>;
72713
+ };
72714
+ export declare type GraphStoreSimplifiedUserUpdatedComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
72715
+ export declare type GraphStoreSimplifiedUserUpdatedComponentUnion = CompassComponent;
72550
72716
  export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
72551
72717
  __typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection';
72552
72718
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostEdge>>>;
@@ -74444,6 +74610,9 @@ export declare type GraphStoreUserUpdatedAtlasGoalSortInput = {
74444
74610
  export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
74445
74611
  lastModified?: InputMaybe<GraphStoreSortInput>;
74446
74612
  };
74613
+ export declare type GraphStoreUserUpdatedComponentSortInput = {
74614
+ lastModified?: InputMaybe<GraphStoreSortInput>;
74615
+ };
74447
74616
  export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
74448
74617
  lastModified?: InputMaybe<GraphStoreSortInput>;
74449
74618
  };
@@ -74718,6 +74887,8 @@ export declare type GraphStoreV2 = {
74718
74887
  atlassianUserUpdatedAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianGoalInverseConnection>;
74719
74888
  atlassianUserUpdatedAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianProjectConnection>;
74720
74889
  atlassianUserUpdatedAtlassianProjectInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianProjectInverseConnection>;
74890
+ atlassianUserUpdatedCompassComponent?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentConnection>;
74891
+ atlassianUserUpdatedCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseConnection>;
74721
74892
  atlassianUserUpdatedConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceBlogpostConnection>;
74722
74893
  atlassianUserUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceBlogpostInverseConnection>;
74723
74894
  atlassianUserUpdatedConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluencePageConnection>;
@@ -76561,6 +76732,20 @@ export declare type GraphStoreV2AtlassianUserUpdatedAtlassianProjectInverseArgs
76561
76732
  id: Scalars['ID']['input'];
76562
76733
  sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedAtlassianProjectSortInput>;
76563
76734
  };
76735
+ export declare type GraphStoreV2AtlassianUserUpdatedCompassComponentArgs = {
76736
+ after?: InputMaybe<Scalars['String']['input']>;
76737
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
76738
+ first?: InputMaybe<Scalars['Int']['input']>;
76739
+ id: Scalars['ID']['input'];
76740
+ sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedCompassComponentSortInput>;
76741
+ };
76742
+ export declare type GraphStoreV2AtlassianUserUpdatedCompassComponentInverseArgs = {
76743
+ after?: InputMaybe<Scalars['String']['input']>;
76744
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
76745
+ first?: InputMaybe<Scalars['Int']['input']>;
76746
+ id: Scalars['ID']['input'];
76747
+ sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedCompassComponentSortInput>;
76748
+ };
76564
76749
  export declare type GraphStoreV2AtlassianUserUpdatedConfluenceBlogpostArgs = {
76565
76750
  after?: InputMaybe<Scalars['String']['input']>;
76566
76751
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -80499,6 +80684,9 @@ export declare type GraphStoreV2AtlassianUserUpdatedAtlassianGoalSortInput = {
80499
80684
  export declare type GraphStoreV2AtlassianUserUpdatedAtlassianProjectSortInput = {
80500
80685
  lastModified?: InputMaybe<GraphStoreSortInput>;
80501
80686
  };
80687
+ export declare type GraphStoreV2AtlassianUserUpdatedCompassComponentSortInput = {
80688
+ lastModified?: InputMaybe<GraphStoreSortInput>;
80689
+ };
80502
80690
  export declare type GraphStoreV2AtlassianUserUpdatedConfluenceBlogpostSortInput = {
80503
80691
  lastModified?: InputMaybe<GraphStoreSortInput>;
80504
80692
  };
@@ -86216,6 +86404,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianProjectIn
86216
86404
  };
86217
86405
  export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
86218
86406
  export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedAtlassianProjectUnion = TownsquareProject;
86407
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentConnection = HasPageInfo & {
86408
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentConnection';
86409
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentEdge>>>;
86410
+ pageInfo: PageInfo;
86411
+ };
86412
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentEdge = {
86413
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentEdge';
86414
+ createdAt: Scalars['DateTime']['output'];
86415
+ cursor?: Maybe<Scalars['String']['output']>;
86416
+ id: Scalars['ID']['output'];
86417
+ lastUpdated: Scalars['DateTime']['output'];
86418
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentUnion>;
86419
+ };
86420
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseConnection = HasPageInfo & {
86421
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseConnection';
86422
+ edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseEdge>>>;
86423
+ pageInfo: PageInfo;
86424
+ };
86425
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseEdge = {
86426
+ __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseEdge';
86427
+ createdAt: Scalars['DateTime']['output'];
86428
+ cursor?: Maybe<Scalars['String']['output']>;
86429
+ id: Scalars['ID']['output'];
86430
+ lastUpdated: Scalars['DateTime']['output'];
86431
+ node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseUnion>;
86432
+ };
86433
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
86434
+ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedCompassComponentUnion = CompassComponent;
86219
86435
  export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceBlogpostConnection = HasPageInfo & {
86220
86436
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceBlogpostConnection';
86221
86437
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceBlogpostEdge>>>;
@@ -112358,6 +112574,7 @@ export declare type JiraProject = Node & {
112358
112574
  associatedServices?: Maybe<GraphProjectServiceConnection>;
112359
112575
  availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
112360
112576
  availableFieldSchemes?: Maybe<JiraFieldSchemesConnection>;
112577
+ availableIssueTypes?: Maybe<JiraIssueTypeConnection>;
112361
112578
  avatar?: Maybe<JiraAvatar>;
112362
112579
  background?: Maybe<JiraActiveBackgroundDetailsResult>;
112363
112580
  boards?: Maybe<JiraBoardConnection>;
@@ -112471,6 +112688,11 @@ export declare type JiraProjectAvailableFieldSchemesArgs = {
112471
112688
  first?: InputMaybe<Scalars['Int']['input']>;
112472
112689
  input?: InputMaybe<JiraFieldSchemesInput>;
112473
112690
  };
112691
+ export declare type JiraProjectAvailableIssueTypesArgs = {
112692
+ after?: InputMaybe<Scalars['String']['input']>;
112693
+ first?: InputMaybe<Scalars['Int']['input']>;
112694
+ input?: InputMaybe<JiraProjectAvailableIssueTypesInput>;
112695
+ };
112474
112696
  export declare type JiraProjectBoardsArgs = {
112475
112697
  after?: InputMaybe<Scalars['String']['input']>;
112476
112698
  before?: InputMaybe<Scalars['String']['input']>;
@@ -112696,6 +112918,9 @@ export declare type JiraProjectAvailableFieldsInput = {
112696
112918
  fieldTypeGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
112697
112919
  filterContains?: InputMaybe<Scalars['String']['input']>;
112698
112920
  };
112921
+ export declare type JiraProjectAvailableIssueTypesInput = {
112922
+ nameFilter?: InputMaybe<Scalars['String']['input']>;
112923
+ };
112699
112924
  export declare type JiraProjectCategory = Node & {
112700
112925
  __typename?: 'JiraProjectCategory';
112701
112926
  description?: Maybe<Scalars['String']['output']>;
@@ -131711,6 +131936,17 @@ export declare type MercuryNormalizedWork = {
131711
131936
  targetDate?: Maybe<MercuryNormalizedWorkTargetDate>;
131712
131937
  type?: Maybe<Scalars['String']['output']>;
131713
131938
  };
131939
+ export declare type MercuryNormalizedWorkConnection = {
131940
+ __typename?: 'MercuryNormalizedWorkConnection';
131941
+ edges?: Maybe<Array<MercuryNormalizedWorkEdge>>;
131942
+ pageInfo: PageInfo;
131943
+ totalCount?: Maybe<Scalars['Int']['output']>;
131944
+ };
131945
+ export declare type MercuryNormalizedWorkEdge = {
131946
+ __typename?: 'MercuryNormalizedWorkEdge';
131947
+ cursor: Scalars['String']['output'];
131948
+ node?: Maybe<MercuryNormalizedWork>;
131949
+ };
131714
131950
  export declare type MercuryNormalizedWorkSearchFiltersInput = {
131715
131951
  owner?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
131716
131952
  source?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -131718,8 +131954,17 @@ export declare type MercuryNormalizedWorkSearchFiltersInput = {
131718
131954
  targetDate?: InputMaybe<MercuryNormalizedWorkTargetDateInput>;
131719
131955
  type?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
131720
131956
  };
131957
+ export declare enum MercuryNormalizedWorkSortField {
131958
+ FocusAreaId = "FOCUS_AREA_ID",
131959
+ Key = "KEY",
131960
+ Name = "NAME",
131961
+ Source = "SOURCE",
131962
+ Status = "STATUS",
131963
+ TargetDate = "TARGET_DATE",
131964
+ Type = "TYPE"
131965
+ }
131721
131966
  export declare type MercuryNormalizedWorkSortInput = {
131722
- fieldKey?: InputMaybe<Scalars['String']['input']>;
131967
+ field: MercuryNormalizedWorkSortField;
131723
131968
  order: SortOrder;
131724
131969
  };
131725
131970
  export declare type MercuryNormalizedWorkSourceStatus = {
@@ -131791,7 +132036,18 @@ export declare type MercuryPassionfruitContext = {
131791
132036
  __typename?: 'MercuryPassionfruitContext';
131792
132037
  activationId: Scalars['String']['output'];
131793
132038
  mediaClientId?: Maybe<Scalars['String']['output']>;
131794
- };
132039
+ userPermissions?: Maybe<Array<MercuryPassionfruitPermission>>;
132040
+ };
132041
+ export declare enum MercuryPassionfruitPermission {
132042
+ CreateAsk = "CREATE_ASK",
132043
+ CreatePlan = "CREATE_PLAN",
132044
+ DeleteAsk = "DELETE_ASK",
132045
+ DeletePlan = "DELETE_PLAN",
132046
+ EditAsk = "EDIT_ASK",
132047
+ EditPlan = "EDIT_PLAN",
132048
+ ViewAsk = "VIEW_ASK",
132049
+ ViewPlan = "VIEW_PLAN"
132050
+ }
131795
132051
  export declare enum MercuryPermission {
131796
132052
  ArchiveFocusArea = "ARCHIVE_FOCUS_AREA",
131797
132053
  CreateFocusArea = "CREATE_FOCUS_AREA",
@@ -132505,6 +132761,7 @@ export declare type MercuryRisk = Node & {
132505
132761
  name: Scalars['String']['output'];
132506
132762
  owner?: Maybe<Scalars['ID']['output']>;
132507
132763
  status?: Maybe<MercuryRiskStatus>;
132764
+ submitter: Scalars['ID']['output'];
132508
132765
  updatedDate: Scalars['String']['output'];
132509
132766
  };
132510
132767
  export declare type MercuryRiskStatus = {
@@ -133609,15 +133866,15 @@ export declare enum MercuryViewType {
133609
133866
  }
133610
133867
  export declare type MercuryWorkNormalizationQueryApi = {
133611
133868
  __typename?: 'MercuryWorkNormalizationQueryApi';
133612
- linkedWorkByFocusArea?: Maybe<MercuryWorkNormalizationSearchConnection>;
133869
+ linkedWorkByFocusAreas?: Maybe<MercuryNormalizedWorkConnection>;
133613
133870
  workNormalizationByFocusAreaId?: Maybe<MercuryWorkNormalizationSearchConnection>;
133614
133871
  };
133615
- export declare type MercuryWorkNormalizationQueryApiLinkedWorkByFocusAreaArgs = {
133872
+ export declare type MercuryWorkNormalizationQueryApiLinkedWorkByFocusAreasArgs = {
133616
133873
  after?: InputMaybe<Scalars['String']['input']>;
133617
133874
  filter?: InputMaybe<MercuryNormalizedWorkSearchFiltersInput>;
133618
133875
  first?: InputMaybe<Scalars['Int']['input']>;
133619
- parentFocusAreaId: Scalars['ID']['input'];
133620
- sortOptions?: InputMaybe<Array<InputMaybe<MercuryNormalizedWorkSortInput>>>;
133876
+ focusAreaIds: Array<InputMaybe<Scalars['ID']['input']>>;
133877
+ sort?: InputMaybe<Array<InputMaybe<MercuryNormalizedWorkSortInput>>>;
133621
133878
  textQuery?: InputMaybe<Scalars['String']['input']>;
133622
133879
  };
133623
133880
  export declare type MercuryWorkNormalizationQueryApiWorkNormalizationByFocusAreaIdArgs = {
@@ -134050,6 +134307,7 @@ export declare type Mutation = {
134050
134307
  avp_removeDashboardElement?: Maybe<AvpRemoveDashboardElementPayload>;
134051
134308
  avp_removeDashboardRow?: Maybe<AvpRemoveDashboardRowPayload>;
134052
134309
  avp_toggleCanvasElementExpanded?: Maybe<AvpToggleCanvasElementExpandedPayload>;
134310
+ avp_trackDashboardView?: Maybe<AvpTrackDashboardViewPayload>;
134053
134311
  avp_updateChart?: Maybe<AvpUpdateChartPayload>;
134054
134312
  avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
134055
134313
  avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
@@ -134668,7 +134926,6 @@ export declare type Mutation = {
134668
134926
  playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
134669
134927
  playbook_updateJiraPlaybookLabel?: Maybe<UpdateJiraPlaybookLabelPayload>;
134670
134928
  playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
134671
- polaris?: Maybe<PolarisMutationNamespace>;
134672
134929
  polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
134673
134930
  polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
134674
134931
  projects_addGoalLink?: Maybe<TownsquareProjectsAddGoalLinkPayload>;
@@ -135636,6 +135893,9 @@ export declare type MutationAvp_RemoveDashboardRowArgs = {
135636
135893
  export declare type MutationAvp_ToggleCanvasElementExpandedArgs = {
135637
135894
  input: AvpToggleCanvasElementExpandedInput;
135638
135895
  };
135896
+ export declare type MutationAvp_TrackDashboardViewArgs = {
135897
+ input: AvpTrackDashboardViewInput;
135898
+ };
135639
135899
  export declare type MutationAvp_UpdateChartArgs = {
135640
135900
  input: AvpUpdateChartInput;
135641
135901
  };
@@ -138830,7 +139090,7 @@ export declare type NewPageInput = {
138830
139090
  };
138831
139091
  export declare type NewPagePayload = {
138832
139092
  __typename?: 'NewPagePayload';
138833
- content?: Maybe<Content>;
139093
+ content: Content;
138834
139094
  contentId: Scalars['ID']['output'];
138835
139095
  page?: Maybe<Page>;
138836
139096
  pageId: Scalars['ID']['output'];
@@ -140680,10 +140940,6 @@ export declare type PolarisMatrixConfig = {
140680
140940
  __typename?: 'PolarisMatrixConfig';
140681
140941
  axes?: Maybe<Array<PolarisMatrixAxis>>;
140682
140942
  };
140683
- export declare type PolarisMutationNamespace = {
140684
- __typename?: 'PolarisMutationNamespace';
140685
- ranking?: Maybe<PolarisRankingMutationNamespace>;
140686
- };
140687
140943
  export declare type PolarisPlay = {
140688
140944
  __typename?: 'PolarisPlay';
140689
140945
  contribution?: Maybe<PolarisPlayContribution>;
@@ -140762,52 +141018,6 @@ export declare type PolarisProjectTemplate = {
140762
141018
  export declare type PolarisQueryNamespace = {
140763
141019
  __typename?: 'PolarisQueryNamespace';
140764
141020
  insights?: Maybe<PolarisInsightsQueryNamespace>;
140765
- ranking?: Maybe<PolarisRankingQueryNamespace>;
140766
- };
140767
- export declare type PolarisRankingMutationNamespace = {
140768
- __typename?: 'PolarisRankingMutationNamespace';
140769
- createList?: Maybe<RankingDiffPayload>;
140770
- deleteList?: Maybe<RankingDiffPayload>;
140771
- makeAfter?: Maybe<RankingDiffPayload>;
140772
- makeBefore?: Maybe<RankingDiffPayload>;
140773
- makeFirst?: Maybe<RankingDiffPayload>;
140774
- makeLast?: Maybe<RankingDiffPayload>;
140775
- makeUnranked?: Maybe<RankingDiffPayload>;
140776
- };
140777
- export declare type PolarisRankingMutationNamespaceCreateListArgs = {
140778
- input: CreateRankingListInput;
140779
- };
140780
- export declare type PolarisRankingMutationNamespaceDeleteListArgs = {
140781
- listId: Scalars['ID']['input'];
140782
- };
140783
- export declare type PolarisRankingMutationNamespaceMakeAfterArgs = {
140784
- items?: InputMaybe<Array<Scalars['ID']['input']>>;
140785
- listId: Scalars['ID']['input'];
140786
- refId: Scalars['ID']['input'];
140787
- };
140788
- export declare type PolarisRankingMutationNamespaceMakeBeforeArgs = {
140789
- items?: InputMaybe<Array<Scalars['ID']['input']>>;
140790
- listId: Scalars['ID']['input'];
140791
- refId: Scalars['ID']['input'];
140792
- };
140793
- export declare type PolarisRankingMutationNamespaceMakeFirstArgs = {
140794
- items?: InputMaybe<Array<Scalars['ID']['input']>>;
140795
- listId: Scalars['ID']['input'];
140796
- };
140797
- export declare type PolarisRankingMutationNamespaceMakeLastArgs = {
140798
- items?: InputMaybe<Array<Scalars['ID']['input']>>;
140799
- listId: Scalars['ID']['input'];
140800
- };
140801
- export declare type PolarisRankingMutationNamespaceMakeUnrankedArgs = {
140802
- items?: InputMaybe<Array<Scalars['ID']['input']>>;
140803
- listId: Scalars['ID']['input'];
140804
- };
140805
- export declare type PolarisRankingQueryNamespace = {
140806
- __typename?: 'PolarisRankingQueryNamespace';
140807
- list?: Maybe<Array<Maybe<RankItem>>>;
140808
- };
140809
- export declare type PolarisRankingQueryNamespaceListArgs = {
140810
- listId: Scalars['ID']['input'];
140811
141021
  };
140812
141022
  export declare type PolarisReaction = {
140813
141023
  __typename?: 'PolarisReaction';
@@ -141645,7 +141855,8 @@ export declare type Query = {
141645
141855
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
141646
141856
  agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
141647
141857
  agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
141648
- agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacitySummary>;
141858
+ agentWorkspace_capacity?: Maybe<AgentWorkspaceCapacityConnection>;
141859
+ agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
141649
141860
  agentWorkspace_catalog?: Maybe<AgentWorkspaceCatalog>;
141650
141861
  agentWorkspace_catalogType?: Maybe<AgentWorkspaceCatalogType>;
141651
141862
  agentWorkspace_catalogTypes?: Maybe<AgentWorkspaceCatalogTypeConnection>;
@@ -141748,6 +141959,7 @@ export declare type Query = {
141748
141959
  assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
141749
141960
  assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
141750
141961
  assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
141962
+ assetsVertical_bundles?: Maybe<Array<AssetsVerticalBundle>>;
141751
141963
  assets_objectById?: Maybe<AssetsObjectNode>;
141752
141964
  assets_objectTypeAttributesBySchemaIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
141753
141965
  assets_objectTypeAttributesForServices?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
@@ -141919,6 +142131,7 @@ export declare type Query = {
141919
142131
  confluence_macroPlaceholderAdf?: Maybe<ConfluenceMacroPlaceholderAdf>;
141920
142132
  confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
141921
142133
  confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
142134
+ confluence_mutablePrincipalTypesByCombinationId?: Maybe<Array<Maybe<ConfluencePermissionTransitionMutationPrincipalType>>>;
141922
142135
  confluence_nbmChainsForTransformation?: Maybe<ConfluenceNbmChainsForTransformationConnection>;
141923
142136
  confluence_nbmEligibleTransformersForChain?: Maybe<Array<Maybe<ConfluenceNbmTransformer>>>;
141924
142137
  confluence_nbmMostRecentVerificationJob?: Maybe<ConfluenceNbmVerificationJob>;
@@ -142616,6 +142829,10 @@ export declare type Query = {
142616
142829
  stakeholderComms_listSubscribers?: Maybe<StakeholderCommsListSubscriberResponse>;
142617
142830
  stakeholderComms_listSubscribersConnection?: Maybe<StakeholderCommsSubscriberConnection>;
142618
142831
  stakeholderComms_subscriptionStats?: Maybe<StakeholderCommsSubscriptionStatsResponse>;
142832
+ stakeholderComms_testAPIEnterpriseOnly?: Maybe<Scalars['String']['output']>;
142833
+ stakeholderComms_testAPIFreeOnly?: Maybe<Scalars['String']['output']>;
142834
+ stakeholderComms_testAPIPremiumPlusOnly?: Maybe<Scalars['String']['output']>;
142835
+ stakeholderComms_testAPIStandardPlusOnly?: Maybe<Scalars['String']['output']>;
142619
142836
  stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
142620
142837
  stalePages?: Maybe<PaginatedStalePagePayloadList>;
142621
142838
  suggest?: Maybe<QuerySuggestionApi>;
@@ -143201,6 +143418,11 @@ export declare type QueryAgentWorkspace_AvailableAgentsArgs = {
143201
143418
  projectKey: Scalars['String']['input'];
143202
143419
  };
143203
143420
  export declare type QueryAgentWorkspace_CapacityArgs = {
143421
+ after?: InputMaybe<Scalars['String']['input']>;
143422
+ first?: InputMaybe<Scalars['Int']['input']>;
143423
+ input: AgentWorkspaceCapacityInput;
143424
+ };
143425
+ export declare type QueryAgentWorkspace_CapacitySummaryArgs = {
143204
143426
  input: AgentWorkspaceCapacityInput;
143205
143427
  };
143206
143428
  export declare type QueryAgentWorkspace_CatalogArgs = {
@@ -143760,6 +143982,10 @@ export declare type QueryAssetsDm_TransformedDataArgs = {
143760
143982
  pagination?: InputMaybe<AssetsDmPaginationInput>;
143761
143983
  workspaceId: Scalars['ID']['input'];
143762
143984
  };
143985
+ export declare type QueryAssetsVertical_BundlesArgs = {
143986
+ cloudId: Scalars['ID']['input'];
143987
+ type?: InputMaybe<AssetsVerticalBundleType>;
143988
+ };
143763
143989
  export declare type QueryAssets_ObjectByIdArgs = {
143764
143990
  id: Scalars['ID']['input'];
143765
143991
  };
@@ -144445,6 +144671,10 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
144445
144671
  export declare type QueryConfluence_MediaTokenDataArgs = {
144446
144672
  noteId: Scalars['ID']['input'];
144447
144673
  };
144674
+ export declare type QueryConfluence_MutablePrincipalTypesByCombinationIdArgs = {
144675
+ cloudId: Scalars['ID']['input'];
144676
+ combinationId: Scalars['String']['input'];
144677
+ };
144448
144678
  export declare type QueryConfluence_NbmChainsForTransformationArgs = {
144449
144679
  after?: InputMaybe<Scalars['String']['input']>;
144450
144680
  cloudId: Scalars['ID']['input'];
@@ -145362,6 +145592,7 @@ export declare type QueryDevai_RovodevSessionsByIssueKeyArgs = {
145362
145592
  cloudId?: InputMaybe<Scalars['ID']['input']>;
145363
145593
  first?: InputMaybe<Scalars['Int']['input']>;
145364
145594
  issueKey?: InputMaybe<Scalars['String']['input']>;
145595
+ ownershipFilter?: InputMaybe<DevAiOwnershipFilter>;
145365
145596
  sort?: InputMaybe<DevAiRovoDevSessionSort>;
145366
145597
  statusCategoryFilter?: InputMaybe<DevAiSessionStatusCategoryFilter>;
145367
145598
  };
@@ -147221,6 +147452,18 @@ export declare type QueryStakeholderComms_SubscriptionStatsArgs = {
147221
147452
  itemId: Scalars['ID']['input'];
147222
147453
  type: StakeholderCommsSubscriberItemType;
147223
147454
  };
147455
+ export declare type QueryStakeholderComms_TestApiEnterpriseOnlyArgs = {
147456
+ id: Scalars['String']['input'];
147457
+ };
147458
+ export declare type QueryStakeholderComms_TestApiFreeOnlyArgs = {
147459
+ id: Scalars['String']['input'];
147460
+ };
147461
+ export declare type QueryStakeholderComms_TestApiPremiumPlusOnlyArgs = {
147462
+ id: Scalars['String']['input'];
147463
+ };
147464
+ export declare type QueryStakeholderComms_TestApiStandardPlusOnlyArgs = {
147465
+ id: Scalars['String']['input'];
147466
+ };
147224
147467
  export declare type QueryStakeholderComms_UnifiedSearchArgs = {
147225
147468
  input: StakeholderCommsUnifiedSearchInput;
147226
147469
  };
@@ -148283,17 +148526,6 @@ export declare type RankCustomFilterInput = {
148283
148526
  customFilterIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
148284
148527
  id: Scalars['String']['input'];
148285
148528
  };
148286
- export declare type RankItem = {
148287
- __typename?: 'RankItem';
148288
- id: Scalars['ID']['output'];
148289
- rank: Scalars['Float']['output'];
148290
- };
148291
- export declare type RankingDiffPayload = {
148292
- __typename?: 'RankingDiffPayload';
148293
- added?: Maybe<Array<RankItem>>;
148294
- changed?: Maybe<Array<RankItem>>;
148295
- deleted?: Maybe<Array<RankItem>>;
148296
- };
148297
148529
  export declare type RateLimitPolicyProperty = {
148298
148530
  argumentPath: Scalars['String']['input'];
148299
148531
  useCloudIdFromARI?: Scalars['Boolean']['input'];
@@ -149638,6 +149870,7 @@ export declare enum Scope {
149638
149870
  DeleteConfluencePage = "DELETE_CONFLUENCE_PAGE",
149639
149871
  DeleteConfluenceSpace = "DELETE_CONFLUENCE_SPACE",
149640
149872
  DeleteConfluenceWhiteboard = "DELETE_CONFLUENCE_WHITEBOARD",
149873
+ DeleteInsightJpd = "DELETE_INSIGHT_JPD",
149641
149874
  DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
149642
149875
  DeleteJswSprint = "DELETE_JSW_SPRINT",
149643
149876
  DeleteOrganization = "DELETE_ORGANIZATION",
@@ -149653,6 +149886,7 @@ export declare enum Scope {
149653
149886
  DeleteStakeholderCommsPage = "DELETE_STAKEHOLDER_COMMS_PAGE",
149654
149887
  DeleteStakeholderCommsStakeholder = "DELETE_STAKEHOLDER_COMMS_STAKEHOLDER",
149655
149888
  DeleteStakeholderCommsSubscriber = "DELETE_STAKEHOLDER_COMMS_SUBSCRIBER",
149889
+ DeleteViewJpd = "DELETE_VIEW_JPD",
149656
149890
  DeployAppEnvironment = "DEPLOY_APP_ENVIRONMENT",
149657
149891
  DevelopAppEnvironment = "DEVELOP_APP_ENVIRONMENT",
149658
149892
  FieldConfigurationDelete = "FIELD_CONFIGURATION_DELETE",
@@ -149834,6 +150068,7 @@ export declare enum Scope {
149834
150068
  ReadDesign = "READ_DESIGN",
149835
150069
  ReadDeveloperSpace = "READ_DEVELOPER_SPACE",
149836
150070
  ReadFeedbackFeedback = "READ_FEEDBACK_FEEDBACK",
150071
+ ReadInsightJpd = "READ_INSIGHT_JPD",
149837
150072
  ReadJiraUser = "READ_JIRA_USER",
149838
150073
  ReadJiraWork = "READ_JIRA_WORK",
149839
150074
  ReadJswBoardScope = "READ_JSW_BOARD_SCOPE",
@@ -149884,6 +150119,7 @@ export declare enum Scope {
149884
150119
  ReadTownsquareGoal = "READ_TOWNSQUARE_GOAL",
149885
150120
  ReadTownsquareProject = "READ_TOWNSQUARE_PROJECT",
149886
150121
  ReadTownsquareWorkspace = "READ_TOWNSQUARE_WORKSPACE",
150122
+ ReadViewJpd = "READ_VIEW_JPD",
149887
150123
  ResolutionRead = "RESOLUTION_READ",
149888
150124
  RovoAtlassianExternal = "ROVO_ATLASSIAN_EXTERNAL",
149889
150125
  ScreenableFieldDelete = "SCREENABLE_FIELD_DELETE",
@@ -149956,6 +150192,7 @@ export declare enum Scope {
149956
150192
  WriteDesign = "WRITE_DESIGN",
149957
150193
  WriteDeveloperSpace = "WRITE_DEVELOPER_SPACE",
149958
150194
  WriteFeedbackFeedback = "WRITE_FEEDBACK_FEEDBACK",
150195
+ WriteInsightJpd = "WRITE_INSIGHT_JPD",
149959
150196
  WriteJiraWork = "WRITE_JIRA_WORK",
149960
150197
  WriteJswBoardScope = "WRITE_JSW_BOARD_SCOPE",
149961
150198
  WriteJswBoardScopeAdmin = "WRITE_JSW_BOARD_SCOPE_ADMIN",
@@ -149996,7 +150233,8 @@ export declare enum Scope {
149996
150233
  WriteTeamTemp = "WRITE_TEAM_TEMP",
149997
150234
  WriteTownsquareGoal = "WRITE_TOWNSQUARE_GOAL",
149998
150235
  WriteTownsquareProject = "WRITE_TOWNSQUARE_PROJECT",
149999
- WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP"
150236
+ WriteTownsquareRelationship = "WRITE_TOWNSQUARE_RELATIONSHIP",
150237
+ WriteViewJpd = "WRITE_VIEW_JPD"
150000
150238
  }
150001
150239
  export declare type ScopeSprintIssue = {
150002
150240
  __typename?: 'ScopeSprintIssue';
@@ -170101,6 +170339,7 @@ export declare type ShepherdWorkspace = Node & {
170101
170339
  detections: Array<ShepherdDetection>;
170102
170340
  hasDataCenterAlert?: Maybe<Scalars['Boolean']['output']>;
170103
170341
  id: Scalars['ID']['output'];
170342
+ newDetectionsCount?: Maybe<Scalars['Int']['output']>;
170104
170343
  orgId: Scalars['ID']['output'];
170105
170344
  shouldOnboard?: Maybe<Scalars['Boolean']['output']>;
170106
170345
  sites?: Maybe<Array<Maybe<ShepherdSite>>>;
@@ -179465,6 +179704,7 @@ export declare type TrelloBaseCard = {
179465
179704
  complete?: Maybe<Scalars['Boolean']['output']>;
179466
179705
  cover?: Maybe<TrelloCardCover>;
179467
179706
  creation?: Maybe<TrelloCardCreationInfo>;
179707
+ dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
179468
179708
  description?: Maybe<TrelloUserGeneratedText>;
179469
179709
  due?: Maybe<TrelloCardDueInfo>;
179470
179710
  id: Scalars['ID']['output'];
@@ -179521,6 +179761,7 @@ export declare type TrelloBaseCardUpdated = {
179521
179761
  complete?: Maybe<Scalars['Boolean']['output']>;
179522
179762
  cover?: Maybe<TrelloCardCoverUpdated>;
179523
179763
  creation?: Maybe<TrelloCardCreationInfo>;
179764
+ dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
179524
179765
  description?: Maybe<TrelloUserGeneratedText>;
179525
179766
  due?: Maybe<TrelloCardDueInfo>;
179526
179767
  id: Scalars['ID']['output'];
@@ -179904,6 +180145,7 @@ export declare type TrelloCard = Node & TrelloBaseCard & {
179904
180145
  cover?: Maybe<TrelloCardCover>;
179905
180146
  creation?: Maybe<TrelloCardCreationInfo>;
179906
180147
  customFieldItems?: Maybe<TrelloCustomFieldItemConnection>;
180148
+ dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
179907
180149
  description?: Maybe<TrelloUserGeneratedText>;
179908
180150
  due?: Maybe<TrelloCardDueInfo>;
179909
180151
  email?: Maybe<Scalars['String']['output']>;
@@ -180302,6 +180544,7 @@ export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
180302
180544
  cover?: Maybe<TrelloCardCoverUpdated>;
180303
180545
  creation?: Maybe<TrelloCardCreationInfo>;
180304
180546
  customFieldItems?: Maybe<TrelloCustomFieldItemUpdatedConnection>;
180547
+ dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
180305
180548
  description?: Maybe<TrelloUserGeneratedText>;
180306
180549
  due?: Maybe<TrelloCardDueInfo>;
180307
180550
  email?: Maybe<Scalars['String']['output']>;
@@ -181018,6 +181261,7 @@ export declare type TrelloInboxCard = TrelloBaseCard & {
181018
181261
  complete?: Maybe<Scalars['Boolean']['output']>;
181019
181262
  cover?: Maybe<TrelloCardCover>;
181020
181263
  creation?: Maybe<TrelloCardCreationInfo>;
181264
+ dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
181021
181265
  description?: Maybe<TrelloUserGeneratedText>;
181022
181266
  due?: Maybe<TrelloCardDueInfo>;
181023
181267
  id: Scalars['ID']['output'];
@@ -181076,6 +181320,7 @@ export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
181076
181320
  complete?: Maybe<Scalars['Boolean']['output']>;
181077
181321
  cover?: Maybe<TrelloCardCoverUpdated>;
181078
181322
  creation?: Maybe<TrelloCardCreationInfo>;
181323
+ dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
181079
181324
  description?: Maybe<TrelloUserGeneratedText>;
181080
181325
  due?: Maybe<TrelloCardDueInfo>;
181081
181326
  id: Scalars['ID']['output'];
@@ -181408,6 +181653,8 @@ export declare type TrelloMemberLabsPreference = {
181408
181653
  description: Scalars['String']['output'];
181409
181654
  feature: TrelloLabsFeature;
181410
181655
  isEligible: Scalars['Boolean']['output'];
181656
+ loomThumbnailUrl: Scalars['String']['output'];
181657
+ loomVideoUrl: Scalars['String']['output'];
181411
181658
  name: Scalars['String']['output'];
181412
181659
  status: TrelloLabsFeatureStatus;
181413
181660
  };
@@ -181663,6 +181910,7 @@ export declare type TrelloMutationApi = {
181663
181910
  updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
181664
181911
  updateBoardVisibility?: Maybe<TrelloUpdateBoardVisibilityPayload>;
181665
181912
  updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
181913
+ updateCardDateViewedByCreator?: Maybe<TrelloUpdateCardDateViewedByCreatorPayload>;
181666
181914
  updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
181667
181915
  updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
181668
181916
  updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
@@ -181858,6 +182106,9 @@ export declare type TrelloMutationApiUpdateBoardVisibilityArgs = {
181858
182106
  export declare type TrelloMutationApiUpdateCardCoverArgs = {
181859
182107
  input: TrelloUpdateCardCoverInput;
181860
182108
  };
182109
+ export declare type TrelloMutationApiUpdateCardDateViewedByCreatorArgs = {
182110
+ input: TrelloUpdateCardDateViewedByCreatorInput;
182111
+ };
181861
182112
  export declare type TrelloMutationApiUpdateCardNameArgs = {
181862
182113
  input: TrelloUpdateCardNameInput;
181863
182114
  };
@@ -181960,6 +182211,7 @@ export declare type TrelloPlanner = {
181960
182211
  dueDateCardsSettings?: Maybe<TrelloPlannerDueDateCardsSettings>;
181961
182212
  id: Scalars['ID']['output'];
181962
182213
  primaryAccountId?: Maybe<Scalars['ID']['output']>;
182214
+ primaryCalendar?: Maybe<TrelloPlannerPrimaryCalendar>;
181963
182215
  primaryCalendarId?: Maybe<Scalars['ID']['output']>;
181964
182216
  proposedEvents?: Maybe<TrelloPlannerProposedEventConnection>;
181965
182217
  workspace?: Maybe<TrelloWorkspace>;
@@ -182430,6 +182682,31 @@ export declare type TrelloPlannerInboxCardUpdated = TrelloPlannerBaseCardUpdated
182430
182682
  list?: Maybe<TrelloPlannerCardListUpdated>;
182431
182683
  objectId?: Maybe<Scalars['ID']['output']>;
182432
182684
  };
182685
+ export declare type TrelloPlannerPrimaryCalendar = {
182686
+ __typename?: 'TrelloPlannerPrimaryCalendar';
182687
+ color?: Maybe<TrelloPlannerCalendarColor>;
182688
+ enabled?: Maybe<Scalars['Boolean']['output']>;
182689
+ id: Scalars['ID']['output'];
182690
+ isPrimary?: Maybe<Scalars['Boolean']['output']>;
182691
+ objectId?: Maybe<Scalars['ID']['output']>;
182692
+ providerCalendarId?: Maybe<Scalars['ID']['output']>;
182693
+ readOnly?: Maybe<Scalars['Boolean']['output']>;
182694
+ timezone?: Maybe<Scalars['String']['output']>;
182695
+ title?: Maybe<Scalars['String']['output']>;
182696
+ type?: Maybe<TrelloSupportedPlannerProviders>;
182697
+ };
182698
+ export declare type TrelloPlannerPrimaryCalendarUpdated = {
182699
+ __typename?: 'TrelloPlannerPrimaryCalendarUpdated';
182700
+ color?: Maybe<TrelloPlannerCalendarColor>;
182701
+ enabled?: Maybe<Scalars['Boolean']['output']>;
182702
+ id: Scalars['ID']['output'];
182703
+ isPrimary?: Maybe<Scalars['Boolean']['output']>;
182704
+ objectId?: Maybe<Scalars['ID']['output']>;
182705
+ providerCalendarId?: Maybe<Scalars['ID']['output']>;
182706
+ timezone?: Maybe<Scalars['String']['output']>;
182707
+ title?: Maybe<Scalars['String']['output']>;
182708
+ type?: Maybe<TrelloSupportedPlannerProviders>;
182709
+ };
182433
182710
  export declare type TrelloPlannerProposedEventConnection = {
182434
182711
  __typename?: 'TrelloPlannerProposedEventConnection';
182435
182712
  edges?: Maybe<Array<TrelloPlannerProposedEventEdge>>;
@@ -182502,6 +182779,7 @@ export declare type TrelloPlannerUpdated = {
182502
182779
  onPlannerCalendarAccountDeleted?: Maybe<Array<TrelloPlannerCalendarAccountDeleted>>;
182503
182780
  onProposedEventDeleted?: Maybe<Array<TrelloProposedEventDeleted>>;
182504
182781
  primaryAccountId?: Maybe<Scalars['ID']['output']>;
182782
+ primaryCalendar?: Maybe<TrelloPlannerPrimaryCalendarUpdated>;
182505
182783
  primaryCalendarId?: Maybe<Scalars['ID']['output']>;
182506
182784
  proposedEvents?: Maybe<TrelloPlannerProposedEventConnectionUpdated>;
182507
182785
  };
@@ -183376,6 +183654,15 @@ export declare type TrelloUpdateCardCoverPayload = Payload & {
183376
183654
  errors?: Maybe<Array<MutationError>>;
183377
183655
  success: Scalars['Boolean']['output'];
183378
183656
  };
183657
+ export declare type TrelloUpdateCardDateViewedByCreatorInput = {
183658
+ cardId: Scalars['ID']['input'];
183659
+ };
183660
+ export declare type TrelloUpdateCardDateViewedByCreatorPayload = Payload & {
183661
+ __typename?: 'TrelloUpdateCardDateViewedByCreatorPayload';
183662
+ card?: Maybe<TrelloBaseCard>;
183663
+ errors?: Maybe<Array<MutationError>>;
183664
+ success: Scalars['Boolean']['output'];
183665
+ };
183379
183666
  export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
183380
183667
  __typename?: 'TrelloUpdateCardDueAction';
183381
183668
  appCreator?: Maybe<TrelloAppCreator>;