@forge/cli-shared 6.10.0-next.8 → 6.10.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.
@@ -7972,6 +7972,7 @@ export declare type CompassLink = {
7972
7972
  eventSources?: Maybe<Array<EventSource>>;
7973
7973
  id: Scalars['ID']['output'];
7974
7974
  name?: Maybe<Scalars['String']['output']>;
7975
+ objectId?: Maybe<Scalars['ID']['output']>;
7975
7976
  type: CompassLinkType;
7976
7977
  url: Scalars['URL']['output'];
7977
7978
  };
@@ -21486,6 +21487,7 @@ export declare type CustomerServiceIndividual = Node & {
21486
21487
  name: Scalars['String']['output'];
21487
21488
  notes: CustomerServiceNotes;
21488
21489
  organizations: Array<CustomerServiceOrganization>;
21490
+ requests?: Maybe<CustomerServiceRequestConnection>;
21489
21491
  };
21490
21492
  export declare type CustomerServiceIndividualEntitlementListArgs = {
21491
21493
  filter?: InputMaybe<CustomerServiceEntitlementFilterInput>;
@@ -21499,6 +21501,10 @@ export declare type CustomerServiceIndividualNotesArgs = {
21499
21501
  maxResults?: InputMaybe<Scalars['Int']['input']>;
21500
21502
  startAt?: InputMaybe<Scalars['Int']['input']>;
21501
21503
  };
21504
+ export declare type CustomerServiceIndividualRequestsArgs = {
21505
+ after?: InputMaybe<Scalars['String']['input']>;
21506
+ first?: InputMaybe<Scalars['Int']['input']>;
21507
+ };
21502
21508
  export declare type CustomerServiceIndividualDeletePayload = Payload & {
21503
21509
  __typename?: 'CustomerServiceIndividualDeletePayload';
21504
21510
  errors?: Maybe<Array<MutationError>>;
@@ -21885,6 +21891,7 @@ export declare type CustomerServiceQueryApi = {
21885
21891
  organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
21886
21892
  productConnections?: Maybe<CustomerServiceProductConnection>;
21887
21893
  products?: Maybe<CustomerServiceProductQueryResult>;
21894
+ requestByIssueKey?: Maybe<CustomerServiceRequestByKeyResult>;
21888
21895
  templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
21889
21896
  templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
21890
21897
  };
@@ -21918,6 +21925,9 @@ export declare type CustomerServiceQueryApiProductsArgs = {
21918
21925
  filter?: InputMaybe<CustomerServiceProductFilterInput>;
21919
21926
  first?: InputMaybe<Scalars['Int']['input']>;
21920
21927
  };
21928
+ export declare type CustomerServiceQueryApiRequestByIssueKeyArgs = {
21929
+ issueKey: Scalars['String']['input'];
21930
+ };
21921
21931
  export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
21922
21932
  helpCenterId: Scalars['ID']['input'];
21923
21933
  templateFormId: Scalars['ID']['input'];
@@ -21927,6 +21937,58 @@ export declare type CustomerServiceQueryApiTemplateFormsArgs = {
21927
21937
  first?: InputMaybe<Scalars['Int']['input']>;
21928
21938
  helpCenterId: Scalars['ID']['input'];
21929
21939
  };
21940
+ export declare type CustomerServiceRequest = {
21941
+ __typename?: 'CustomerServiceRequest';
21942
+ createdOn?: Maybe<Scalars['DateTime']['output']>;
21943
+ formData?: Maybe<CustomerServiceRequestFormDataConnection>;
21944
+ id: Scalars['ID']['output'];
21945
+ key?: Maybe<Scalars['String']['output']>;
21946
+ statusKey?: Maybe<CustomerServiceStatusKey>;
21947
+ summary?: Maybe<Scalars['String']['output']>;
21948
+ };
21949
+ export declare type CustomerServiceRequestByKeyResult = CustomerServiceRequest | QueryError;
21950
+ export declare type CustomerServiceRequestConnection = {
21951
+ __typename?: 'CustomerServiceRequestConnection';
21952
+ edges: Array<CustomerServiceRequestEdge>;
21953
+ pageInfo: PageInfo;
21954
+ };
21955
+ export declare type CustomerServiceRequestEdge = {
21956
+ __typename?: 'CustomerServiceRequestEdge';
21957
+ cursor: Scalars['String']['output'];
21958
+ node?: Maybe<CustomerServiceRequest>;
21959
+ };
21960
+ export declare type CustomerServiceRequestFormDataConnection = {
21961
+ __typename?: 'CustomerServiceRequestFormDataConnection';
21962
+ edges: Array<CustomerServiceRequestFormDataEdge>;
21963
+ pageInfo: PageInfo;
21964
+ };
21965
+ export declare type CustomerServiceRequestFormDataEdge = {
21966
+ __typename?: 'CustomerServiceRequestFormDataEdge';
21967
+ cursor: Scalars['String']['output'];
21968
+ node?: Maybe<CustomerServiceRequestFormEntryField>;
21969
+ };
21970
+ export declare type CustomerServiceRequestFormEntryField = {
21971
+ id: Scalars['ID']['output'];
21972
+ question?: Maybe<Scalars['String']['output']>;
21973
+ };
21974
+ export declare type CustomerServiceRequestFormEntryMultiSelectField = CustomerServiceRequestFormEntryField & {
21975
+ __typename?: 'CustomerServiceRequestFormEntryMultiSelectField';
21976
+ id: Scalars['ID']['output'];
21977
+ multiSelectTextAnswer?: Maybe<Array<Scalars['String']['output']>>;
21978
+ question?: Maybe<Scalars['String']['output']>;
21979
+ };
21980
+ export declare type CustomerServiceRequestFormEntryRichTextField = CustomerServiceRequestFormEntryField & {
21981
+ __typename?: 'CustomerServiceRequestFormEntryRichTextField';
21982
+ adfAnswer?: Maybe<Scalars['String']['output']>;
21983
+ id: Scalars['ID']['output'];
21984
+ question?: Maybe<Scalars['String']['output']>;
21985
+ };
21986
+ export declare type CustomerServiceRequestFormEntryTextField = CustomerServiceRequestFormEntryField & {
21987
+ __typename?: 'CustomerServiceRequestFormEntryTextField';
21988
+ id: Scalars['ID']['output'];
21989
+ question?: Maybe<Scalars['String']['output']>;
21990
+ textAnswer?: Maybe<Scalars['String']['output']>;
21991
+ };
21930
21992
  export declare type CustomerServiceRoutingRule = {
21931
21993
  __typename?: 'CustomerServiceRoutingRule';
21932
21994
  id: Scalars['ID']['output'];
@@ -21936,6 +21998,10 @@ export declare type CustomerServiceRoutingRule = {
21936
21998
  project?: Maybe<JiraProject>;
21937
21999
  projectId?: Maybe<Scalars['ID']['output']>;
21938
22000
  };
22001
+ export declare enum CustomerServiceStatusKey {
22002
+ Resolved = "RESOLVED",
22003
+ Submitted = "SUBMITTED"
22004
+ }
21939
22005
  export declare type CustomerServiceStatusPayload = Payload & {
21940
22006
  __typename?: 'CustomerServiceStatusPayload';
21941
22007
  errors?: Maybe<Array<MutationError>>;
@@ -22961,6 +23027,11 @@ export declare type DevAiInvokeAutodevRovoAgentPayload = Payload & {
22961
23027
  jobId?: Maybe<Scalars['ID']['output']>;
22962
23028
  success: Scalars['Boolean']['output'];
22963
23029
  };
23030
+ export declare type DevAiInvokeSelfCorrectionPayload = Payload & {
23031
+ __typename?: 'DevAiInvokeSelfCorrectionPayload';
23032
+ errors?: Maybe<Array<MutationError>>;
23033
+ success: Scalars['Boolean']['output'];
23034
+ };
22964
23035
  export declare enum DevAiIssueScopingLabel {
22965
23036
  Complex = "COMPLEX",
22966
23037
  InScope = "IN_SCOPE",
@@ -23051,6 +23122,7 @@ export declare type DevAiRovoAgentActionConfig = {
23051
23122
  export declare type DevAiRovoAgentConnection = {
23052
23123
  __typename?: 'DevAiRovoAgentConnection';
23053
23124
  edges?: Maybe<Array<Maybe<DevAiRovoAgentEdge>>>;
23125
+ isRankingLimitApplied?: Maybe<Scalars['Boolean']['output']>;
23054
23126
  pageInfo: PageInfo;
23055
23127
  };
23056
23128
  export declare type DevAiRovoAgentEdge = {
@@ -40886,6 +40958,10 @@ export declare type GraphStoreFullParentIssueHasChildIssueStartNode = {
40886
40958
  id: Scalars['ID']['output'];
40887
40959
  };
40888
40960
  export declare type GraphStoreFullParentIssueHasChildIssueStartUnion = JiraIssue;
40961
+ export declare type GraphStoreFullPrInRepoAuthorOutput = {
40962
+ __typename?: 'GraphStoreFullPrInRepoAuthorOutput';
40963
+ authorAri?: Maybe<Scalars['String']['output']>;
40964
+ };
40889
40965
  export declare type GraphStoreFullPrInRepoConnection = HasPageInfo & {
40890
40966
  __typename?: 'GraphStoreFullPrInRepoConnection';
40891
40967
  edges: Array<Maybe<GraphStoreFullPrInRepoEdge>>;
@@ -40912,14 +40988,40 @@ export declare type GraphStoreFullPrInRepoNode = Node & {
40912
40988
  lastUpdated: Scalars['DateTime']['output'];
40913
40989
  to: GraphStoreFullPrInRepoEndNode;
40914
40990
  };
40991
+ export declare enum GraphStoreFullPrInRepoPullRequestStatusOutput {
40992
+ Declined = "DECLINED",
40993
+ Merged = "MERGED",
40994
+ NotSet = "NOT_SET",
40995
+ Open = "OPEN",
40996
+ Unknown = "UNKNOWN"
40997
+ }
40915
40998
  export declare type GraphStoreFullPrInRepoRelationshipObjectMetadataOutput = {
40916
40999
  __typename?: 'GraphStoreFullPrInRepoRelationshipObjectMetadataOutput';
40917
41000
  providerAri?: Maybe<Scalars['String']['output']>;
40918
41001
  };
41002
+ export declare type GraphStoreFullPrInRepoRelationshipSubjectMetadataOutput = {
41003
+ __typename?: 'GraphStoreFullPrInRepoRelationshipSubjectMetadataOutput';
41004
+ author?: Maybe<GraphStoreFullPrInRepoAuthorOutput>;
41005
+ reviewers?: Maybe<GraphStoreFullPrInRepoReviewerOutput>;
41006
+ status?: Maybe<GraphStoreFullPrInRepoPullRequestStatusOutput>;
41007
+ taskCount?: Maybe<Scalars['Int']['output']>;
41008
+ };
41009
+ export declare type GraphStoreFullPrInRepoReviewerOutput = {
41010
+ __typename?: 'GraphStoreFullPrInRepoReviewerOutput';
41011
+ approvalStatus?: Maybe<GraphStoreFullPrInRepoReviewerReviewerStatusOutput>;
41012
+ reviewerAri?: Maybe<Scalars['String']['output']>;
41013
+ };
41014
+ export declare enum GraphStoreFullPrInRepoReviewerReviewerStatusOutput {
41015
+ Approved = "APPROVED",
41016
+ Needswork = "NEEDSWORK",
41017
+ NotSet = "NOT_SET",
41018
+ Unapproved = "UNAPPROVED"
41019
+ }
40919
41020
  export declare type GraphStoreFullPrInRepoStartNode = {
40920
41021
  __typename?: 'GraphStoreFullPrInRepoStartNode';
40921
41022
  data?: Maybe<GraphStoreFullPrInRepoStartUnion>;
40922
41023
  id: Scalars['ID']['output'];
41024
+ metadata?: Maybe<GraphStoreFullPrInRepoRelationshipSubjectMetadataOutput>;
40923
41025
  };
40924
41026
  export declare type GraphStoreFullPrInRepoStartUnion = DevOpsPullRequestDetails | ExternalPullRequest;
40925
41027
  export declare type GraphStoreFullProjectAssociatedBranchConnection = HasPageInfo & HasTotal & {
@@ -56616,43 +56718,6 @@ export declare type JiraAutodevTaskPayload = Payload & {
56616
56718
  success: Scalars['Boolean']['output'];
56617
56719
  task?: Maybe<JiraAutodevTask>;
56618
56720
  };
56619
- export declare type JiraAutofixCreateJobPayload = Payload & {
56620
- __typename?: 'JiraAutofixCreateJobPayload';
56621
- errors?: Maybe<Array<MutationError>>;
56622
- job?: Maybe<JiraAutofixJob>;
56623
- success: Scalars['Boolean']['output'];
56624
- };
56625
- export declare type JiraAutofixInput = {
56626
- issueAri: Scalars['ID']['input'];
56627
- jobType: JiraAutofixJobType;
56628
- };
56629
- export declare type JiraAutofixJob = {
56630
- __typename?: 'JiraAutofixJob';
56631
- errorMessage?: Maybe<Scalars['String']['output']>;
56632
- errorType?: Maybe<Scalars['String']['output']>;
56633
- jobId: Scalars['ID']['output'];
56634
- status: JiraAutofixStatus;
56635
- };
56636
- export declare type JiraAutofixJobConnection = {
56637
- __typename?: 'JiraAutofixJobConnection';
56638
- edges?: Maybe<Array<Maybe<JiraAutofixJobEdge>>>;
56639
- nodes?: Maybe<Array<Maybe<JiraAutofixJob>>>;
56640
- pageInfo: PageInfo;
56641
- };
56642
- export declare type JiraAutofixJobEdge = {
56643
- __typename?: 'JiraAutofixJobEdge';
56644
- cursor: Scalars['String']['output'];
56645
- node?: Maybe<JiraAutofixJob>;
56646
- };
56647
- export declare enum JiraAutofixJobType {
56648
- InternalRemoveFeatureFlag = "INTERNAL_REMOVE_FEATURE_FLAG"
56649
- }
56650
- export declare enum JiraAutofixStatus {
56651
- Completed = "COMPLETED",
56652
- Failed = "FAILED",
56653
- InProgress = "IN_PROGRESS",
56654
- Pending = "PENDING"
56655
- }
56656
56721
  export declare type JiraAvailableField = JiraProjectFieldAssociationInterface & {
56657
56722
  __typename?: 'JiraAvailableField';
56658
56723
  field?: Maybe<JiraField>;
@@ -59211,7 +59276,6 @@ export declare type JiraDevOpsMutation = {
59211
59276
  approveJiraBitbucketWorkspaceAccessRequest?: Maybe<JiraApproveJiraBitbucketWorkspaceAccessRequestPayload>;
59212
59277
  createAutodevJob?: Maybe<JiraAutodevCreateJobPayload>;
59213
59278
  createAutodevPullRequest?: Maybe<JiraAutodevBasicPayload>;
59214
- createAutofixJob?: Maybe<JiraAutofixCreateJobPayload>;
59215
59279
  deleteAutodevJob?: Maybe<JiraAutodevBasicPayload>;
59216
59280
  deleteAutodevPlannedChange?: Maybe<JiraAutodevDeletedPayload>;
59217
59281
  deleteAutodevTask?: Maybe<JiraAutodevDeletedPayload>;
@@ -59259,10 +59323,6 @@ export declare type JiraDevOpsMutationCreateAutodevPullRequestArgs = {
59259
59323
  issueAri: Scalars['ID']['input'];
59260
59324
  jobId: Scalars['ID']['input'];
59261
59325
  };
59262
- export declare type JiraDevOpsMutationCreateAutofixJobArgs = {
59263
- cloudId: Scalars['ID']['input'];
59264
- input: JiraAutofixInput;
59265
- };
59266
59326
  export declare type JiraDevOpsMutationDeleteAutodevJobArgs = {
59267
59327
  issueAri: Scalars['ID']['input'];
59268
59328
  jobId: Scalars['ID']['input'];
@@ -59379,7 +59439,6 @@ export declare type JiraDevOpsQuery = {
59379
59439
  autodevJobById?: Maybe<JiraAutodevJob>;
59380
59440
  autodevJobs?: Maybe<JiraAutodevJobConnection>;
59381
59441
  autodevJobsByIssues?: Maybe<JiraAutodevJobConnection>;
59382
- autofixJobs?: Maybe<JiraAutofixJobConnection>;
59383
59442
  bitbucketIntegration?: Maybe<JiraBitbucketIntegration>;
59384
59443
  configState?: Maybe<JiraAppConfigState>;
59385
59444
  configStates?: Maybe<JiraAppConfigStateConnection>;
@@ -59398,9 +59457,6 @@ export declare type JiraDevOpsQueryAutodevJobsArgs = {
59398
59457
  export declare type JiraDevOpsQueryAutodevJobsByIssuesArgs = {
59399
59458
  issueAris: Array<Scalars['ID']['input']>;
59400
59459
  };
59401
- export declare type JiraDevOpsQueryAutofixJobsArgs = {
59402
- issueAri: Scalars['ID']['input'];
59403
- };
59404
59460
  export declare type JiraDevOpsQueryBitbucketIntegrationArgs = {
59405
59461
  cloudId: Scalars['ID']['input'];
59406
59462
  };
@@ -64070,7 +64126,6 @@ export declare type JiraMutation = {
64070
64126
  updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
64071
64127
  updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
64072
64128
  updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
64073
- updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
64074
64129
  updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
64075
64130
  updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
64076
64131
  updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
@@ -64571,10 +64626,6 @@ export declare type JiraMutationUpdateFieldSetsViewArgs = {
64571
64626
  fieldSetsInput?: InputMaybe<JiraFieldSetsMutationInput>;
64572
64627
  id: Scalars['ID']['input'];
64573
64628
  };
64574
- export declare type JiraMutationUpdateFieldToFieldConfigSchemeAssociationsArgs = {
64575
- cloudId: Scalars['ID']['input'];
64576
- input: JiraFieldToFieldConfigSchemeAssociationsInput;
64577
- };
64578
64629
  export declare type JiraMutationUpdateForgeObjectFieldArgs = {
64579
64630
  input: JiraUpdateForgeObjectFieldInput;
64580
64631
  };
@@ -66081,6 +66132,7 @@ export declare type JiraProject = Node & {
66081
66132
  id: Scalars['ID']['output'];
66082
66133
  intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
66083
66134
  isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
66135
+ isAiContextFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
66084
66136
  isAutomationDiscoverabilityEnabled?: Maybe<Scalars['Boolean']['output']>;
66085
66137
  isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
66086
66138
  isFavourite?: Maybe<Scalars['Boolean']['output']>;
@@ -66891,7 +66943,6 @@ export declare type JiraQuery = {
66891
66943
  applicationLinkByOauth2ClientId?: Maybe<JiraApplicationLink>;
66892
66944
  applicationLinksByTypeId?: Maybe<JiraApplicationLinkConnection>;
66893
66945
  applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
66894
- associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
66895
66946
  atlassianIntelligenceAction?: Maybe<JiraAtlassianIntelligenceAction>;
66896
66947
  attachmentByAri?: Maybe<JiraPlatformAttachment>;
66897
66948
  attachmentByAriV2?: Maybe<JiraAttachmentByAriResult>;
@@ -66899,7 +66950,6 @@ export declare type JiraQuery = {
66899
66950
  attachmentStorageAllowed?: Maybe<Scalars['Long']['output']>;
66900
66951
  attachmentStorageIsUnlimited?: Maybe<Scalars['Boolean']['output']>;
66901
66952
  attachmentStorageUsed?: Maybe<Scalars['Long']['output']>;
66902
- availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
66903
66953
  backgroundUploadToken?: Maybe<JiraBackgroundUploadTokenResult>;
66904
66954
  booleanUserProperty?: Maybe<JiraEntityPropertyBoolean>;
66905
66955
  bulkOperationProgress?: Maybe<JiraIssueBulkOperationProgress>;
@@ -67153,12 +67203,6 @@ export declare type JiraQueryApplicationPropertiesByKeyArgs = {
67153
67203
  cloudId: Scalars['ID']['input'];
67154
67204
  keys: Array<Scalars['String']['input']>;
67155
67205
  };
67156
- export declare type JiraQueryAssociatedFieldConfigSchemesArgs = {
67157
- after?: InputMaybe<Scalars['String']['input']>;
67158
- cloudId: Scalars['ID']['input'];
67159
- first?: InputMaybe<Scalars['Int']['input']>;
67160
- input?: InputMaybe<JiraAssociatedFieldConfigSchemesInput>;
67161
- };
67162
67206
  export declare type JiraQueryAtlassianIntelligenceActionArgs = {
67163
67207
  atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
67164
67208
  cloudId: Scalars['ID']['input'];
@@ -67190,12 +67234,6 @@ export declare type JiraQueryAttachmentStorageUsedArgs = {
67190
67234
  applicationKey: JiraApplicationKey;
67191
67235
  cloudId: Scalars['ID']['input'];
67192
67236
  };
67193
- export declare type JiraQueryAvailableFieldConfigSchemesArgs = {
67194
- after?: InputMaybe<Scalars['String']['input']>;
67195
- cloudId: Scalars['ID']['input'];
67196
- first?: InputMaybe<Scalars['Int']['input']>;
67197
- input?: InputMaybe<JiraAvailableFieldConfigSchemesInput>;
67198
- };
67199
67237
  export declare type JiraQueryBackgroundUploadTokenArgs = {
67200
67238
  cloudId: Scalars['ID']['input'];
67201
67239
  durationInSeconds: Scalars['Int']['input'];
@@ -72237,6 +72275,7 @@ export declare type JiraUserPreferences = {
72237
72275
  issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
72238
72276
  issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
72239
72277
  issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
72278
+ issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
72240
72279
  issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
72241
72280
  issueViewPinnedFieldsBannerLastInteracted?: Maybe<Scalars['DateTime']['output']>;
72242
72281
  issueViewSidebarResizeRatio?: Maybe<Scalars['String']['output']>;
@@ -72256,6 +72295,9 @@ export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplat
72256
72295
  export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
72257
72296
  projectKey: Scalars['String']['input'];
72258
72297
  };
72298
+ export declare type JiraUserPreferencesIssueViewDetailsPanelFieldsOrderArgs = {
72299
+ projectKey: Scalars['String']['input'];
72300
+ };
72259
72301
  export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
72260
72302
  projectKey: Scalars['String']['input'];
72261
72303
  };
@@ -74387,7 +74429,7 @@ export declare type KnowledgeBaseArticleSearchInput = {
74387
74429
  sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
74388
74430
  sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
74389
74431
  };
74390
- export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | QueryError;
74432
+ export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | KnowledgeBaseThirdPartyConnection | QueryError;
74391
74433
  export declare enum KnowledgeBaseArticleSearchSortByKey {
74392
74434
  LastModified = "LAST_MODIFIED",
74393
74435
  Title = "TITLE"
@@ -74424,6 +74466,12 @@ export declare type KnowledgeBaseLinkResponse = {
74424
74466
  mutationError?: Maybe<MutationError>;
74425
74467
  success: Scalars['Boolean']['output'];
74426
74468
  };
74469
+ export declare type KnowledgeBaseLinkedSourceTypes = {
74470
+ __typename?: 'KnowledgeBaseLinkedSourceTypes';
74471
+ linkedSourceTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
74472
+ totalCount?: Maybe<Scalars['Int']['output']>;
74473
+ };
74474
+ export declare type KnowledgeBaseLinkedSourceTypesResponse = KnowledgeBaseLinkedSourceTypes | QueryError;
74427
74475
  export declare type KnowledgeBaseMutationApi = {
74428
74476
  __typename?: 'KnowledgeBaseMutationApi';
74429
74477
  linkKnowledgeBaseSource?: Maybe<KnowledgeBaseLinkResponse>;
@@ -74511,6 +74559,23 @@ export declare type KnowledgeBaseSpacePermissionUpdateViewInput = {
74511
74559
  spaceAri: Scalars['ID']['input'];
74512
74560
  viewPermission?: InputMaybe<KnowledgeBaseSpacePermissionType>;
74513
74561
  };
74562
+ export declare type KnowledgeBaseThirdPartyArticle = {
74563
+ __typename?: 'KnowledgeBaseThirdPartyArticle';
74564
+ id: Scalars['ID']['output'];
74565
+ lastModified?: Maybe<Scalars['String']['output']>;
74566
+ title?: Maybe<Scalars['String']['output']>;
74567
+ url?: Maybe<Scalars['String']['output']>;
74568
+ };
74569
+ export declare type KnowledgeBaseThirdPartyArticleEdge = {
74570
+ __typename?: 'KnowledgeBaseThirdPartyArticleEdge';
74571
+ cursor?: Maybe<Scalars['String']['output']>;
74572
+ node?: Maybe<KnowledgeBaseThirdPartyArticle>;
74573
+ };
74574
+ export declare type KnowledgeBaseThirdPartyConnection = {
74575
+ __typename?: 'KnowledgeBaseThirdPartyConnection';
74576
+ edges?: Maybe<Array<KnowledgeBaseThirdPartyArticleEdge>>;
74577
+ nodes?: Maybe<Array<Maybe<KnowledgeBaseThirdPartyArticle>>>;
74578
+ };
74514
74579
  export declare type KnowledgeBaseUnlinkResponse = {
74515
74580
  __typename?: 'KnowledgeBaseUnlinkResponse';
74516
74581
  mutationError?: Maybe<MutationError>;
@@ -79928,6 +79993,7 @@ export declare type MercuryStrategicEventsMutationApi = {
79928
79993
  updateMovePositionsChange: MercuryUpdateChangePayload;
79929
79994
  updateRequestFundsChange: MercuryUpdateChangePayload;
79930
79995
  updateRequestPositionsChange: MercuryUpdateChangePayload;
79996
+ updateStrategicEventBudget?: Maybe<MercuryUpdateStrategicEventPayload>;
79931
79997
  updateStrategicEventComment?: Maybe<MercuryUpdateStrategicEventCommentPayload>;
79932
79998
  updateStrategicEventDescription?: Maybe<MercuryUpdateStrategicEventPayload>;
79933
79999
  updateStrategicEventName?: Maybe<MercuryUpdateStrategicEventPayload>;
@@ -80000,6 +80066,9 @@ export declare type MercuryStrategicEventsMutationApiUpdateRequestFundsChangeArg
80000
80066
  export declare type MercuryStrategicEventsMutationApiUpdateRequestPositionsChangeArgs = {
80001
80067
  input: MercuryUpdateRequestPositionsChangeInput;
80002
80068
  };
80069
+ export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventBudgetArgs = {
80070
+ input: MercuryUpdateStrategicEventBudgetInput;
80071
+ };
80003
80072
  export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventCommentArgs = {
80004
80073
  input: MercuryUpdateStrategicEventCommentInput;
80005
80074
  };
@@ -80332,6 +80401,10 @@ export declare type MercuryUpdateRequestPositionsChangeInput = {
80332
80401
  positionsAmount?: InputMaybe<MercuryUpdateChangeQuantityInput>;
80333
80402
  targetFocusAreaId?: InputMaybe<MercuryUpdateChangeFocusAreaInput>;
80334
80403
  };
80404
+ export declare type MercuryUpdateStrategicEventBudgetInput = {
80405
+ budget?: InputMaybe<Scalars['BigDecimal']['input']>;
80406
+ id: Scalars['ID']['input'];
80407
+ };
80335
80408
  export declare type MercuryUpdateStrategicEventCommentInput = {
80336
80409
  cloudId?: InputMaybe<Scalars['ID']['input']>;
80337
80410
  content: Scalars['String']['input'];
@@ -80949,6 +81022,7 @@ export declare type Mutation = {
80949
81022
  devai_flowSessionCreate?: Maybe<DevAiFlowSession>;
80950
81023
  devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
80951
81024
  devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
81025
+ devai_invokeSelfCorrection?: Maybe<DevAiInvokeSelfCorrectionPayload>;
80952
81026
  disableExperiment?: Maybe<TapExperiment>;
80953
81027
  disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
80954
81028
  disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
@@ -81004,6 +81078,7 @@ export declare type Mutation = {
81004
81078
  jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
81005
81079
  jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
81006
81080
  jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
81081
+ jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
81007
81082
  jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
81008
81083
  jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
81009
81084
  jsmChat?: Maybe<JsmChatMutation>;
@@ -81052,7 +81127,7 @@ export declare type Mutation = {
81052
81127
  radar_updateConnector?: Maybe<RadarConnector>;
81053
81128
  radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
81054
81129
  radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
81055
- radar_updateFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
81130
+ radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
81056
81131
  radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
81057
81132
  rankCardParent?: Maybe<GenericMutationResponse>;
81058
81133
  rankColumn?: Maybe<RankColumnOutput>;
@@ -82278,6 +82353,10 @@ export declare type MutationDevai_InvokeAutodevRovoAgentInBulkArgs = {
82278
82353
  agentId: Scalars['ID']['input'];
82279
82354
  issueIds: Array<Scalars['ID']['input']>;
82280
82355
  };
82356
+ export declare type MutationDevai_InvokeSelfCorrectionArgs = {
82357
+ issueAri: Scalars['ID']['input'];
82358
+ jobId: Scalars['ID']['input'];
82359
+ };
82281
82360
  export declare type MutationDisableExperimentArgs = {
82282
82361
  experimentKey: Scalars['String']['input'];
82283
82362
  };
@@ -82412,6 +82491,10 @@ export declare type MutationJira_SetViewFilterArgs = {
82412
82491
  export declare type MutationJira_SetViewGroupByArgs = {
82413
82492
  input: JiraSetViewGroupByInput;
82414
82493
  };
82494
+ export declare type MutationJira_UpdateFieldToFieldConfigSchemeAssociationsArgs = {
82495
+ cloudId: Scalars['ID']['input'];
82496
+ input: JiraFieldToFieldConfigSchemeAssociationsInput;
82497
+ };
82415
82498
  export declare type MutationJira_UpdateProjectBackgroundArgs = {
82416
82499
  input: JiraUpdateBackgroundInput;
82417
82500
  };
@@ -85104,7 +85187,6 @@ export declare type PolarisValueRule = {
85104
85187
  };
85105
85188
  export declare type PolarisView = {
85106
85189
  __typename?: 'PolarisView';
85107
- collabServiceDelegation?: Maybe<PolarisDelegationToken>;
85108
85190
  comments?: Maybe<Array<PolarisComment>>;
85109
85191
  containsArchived: Scalars['Boolean']['output'];
85110
85192
  createdAt?: Maybe<Scalars['String']['output']>;
@@ -85983,6 +86065,7 @@ export declare type Query = {
85983
86065
  devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
85984
86066
  devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
85985
86067
  devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
86068
+ devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
85986
86069
  devai_flowSessionGetByARI?: Maybe<DevAiFlowSession>;
85987
86070
  devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
85988
86071
  devai_flowSessionResume?: Maybe<DevAiFlowPipeline>;
@@ -86088,6 +86171,8 @@ export declare type Query = {
86088
86171
  jiraProjectRelationshipsForService?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
86089
86172
  jiraReleases?: Maybe<JiraReleases>;
86090
86173
  jiraServers?: Maybe<JiraServersResult>;
86174
+ jira_associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
86175
+ jira_availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
86091
86176
  jira_boardView?: Maybe<JiraBoardView>;
86092
86177
  jira_categoryField?: Maybe<JiraJqlField>;
86093
86178
  jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
@@ -86100,6 +86185,7 @@ export declare type Query = {
86100
86185
  jsw?: Maybe<JswQuery>;
86101
86186
  knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
86102
86187
  knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
86188
+ knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
86103
86189
  knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
86104
86190
  knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
86105
86191
  labelSearch?: Maybe<LabelSearchResults>;
@@ -88036,6 +88122,12 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
88036
88122
  query?: InputMaybe<Scalars['String']['input']>;
88037
88123
  templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
88038
88124
  };
88125
+ export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
88126
+ after?: InputMaybe<Scalars['String']['input']>;
88127
+ cloudId: Scalars['ID']['input'];
88128
+ first?: InputMaybe<Scalars['Int']['input']>;
88129
+ issueKey: Scalars['String']['input'];
88130
+ };
88039
88131
  export declare type QueryDevai_FlowSessionGetByAriArgs = {
88040
88132
  id: Scalars['ID']['input'];
88041
88133
  };
@@ -88049,6 +88141,7 @@ export declare type QueryDevai_FlowSessionResumeArgs = {
88049
88141
  export declare type QueryDevai_FlowSessionsByCreatorAndCloudIdArgs = {
88050
88142
  cloudId: Scalars['ID']['input'];
88051
88143
  creator: Scalars['String']['input'];
88144
+ statusFilter?: InputMaybe<DevAiFlowSessionsStatus>;
88052
88145
  };
88053
88146
  export declare type QueryDevai_RovoDevAgentsUserArgs = {
88054
88147
  atlassianAccountId: Scalars['ID']['input'];
@@ -88370,6 +88463,18 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
88370
88463
  first?: InputMaybe<Scalars['Int']['input']>;
88371
88464
  id: Scalars['ID']['input'];
88372
88465
  };
88466
+ export declare type QueryJira_AssociatedFieldConfigSchemesArgs = {
88467
+ after?: InputMaybe<Scalars['String']['input']>;
88468
+ cloudId: Scalars['ID']['input'];
88469
+ first?: InputMaybe<Scalars['Int']['input']>;
88470
+ input?: InputMaybe<JiraAssociatedFieldConfigSchemesInput>;
88471
+ };
88472
+ export declare type QueryJira_AvailableFieldConfigSchemesArgs = {
88473
+ after?: InputMaybe<Scalars['String']['input']>;
88474
+ cloudId: Scalars['ID']['input'];
88475
+ first?: InputMaybe<Scalars['Int']['input']>;
88476
+ input?: InputMaybe<JiraAvailableFieldConfigSchemesInput>;
88477
+ };
88373
88478
  export declare type QueryJira_BoardViewArgs = {
88374
88479
  input: JiraBoardViewInput;
88375
88480
  };
@@ -88405,6 +88510,9 @@ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
88405
88510
  cloudId: Scalars['ID']['input'];
88406
88511
  spaceAris: Array<Scalars['ID']['input']>;
88407
88512
  };
88513
+ export declare type QueryKnowledgeBase_GetLinkedSourceTypesArgs = {
88514
+ container?: InputMaybe<Scalars['ID']['input']>;
88515
+ };
88408
88516
  export declare type QueryKnowledgeBase_SearchArticlesArgs = {
88409
88517
  searchInput?: InputMaybe<KnowledgeBaseArticleSearchInput>;
88410
88518
  };
@@ -89366,6 +89474,7 @@ export declare type RadarEntityFieldValuesArgs = {
89366
89474
  export declare enum RadarEntityType {
89367
89475
  FocusArea = "focusArea",
89368
89476
  Position = "position",
89477
+ Proposal = "proposal",
89369
89478
  Worker = "worker"
89370
89479
  }
89371
89480
  export declare type RadarFieldDefinition = {
@@ -89550,6 +89659,11 @@ export declare type RadarPosition = Node & RadarEntity & {
89550
89659
  export declare type RadarPositionFieldValuesArgs = {
89551
89660
  fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
89552
89661
  };
89662
+ export declare type RadarPositionAllocationChange = {
89663
+ __typename?: 'RadarPositionAllocationChange';
89664
+ id: Scalars['ID']['output'];
89665
+ positionId: Scalars['ID']['output'];
89666
+ };
89553
89667
  export declare type RadarPositionConnection = RadarConnection & {
89554
89668
  __typename?: 'RadarPositionConnection';
89555
89669
  edges?: Maybe<Array<RadarPositionEdge>>;
@@ -89563,7 +89677,7 @@ export declare type RadarPositionEdge = RadarEdge & {
89563
89677
  node: RadarPosition;
89564
89678
  };
89565
89679
  export declare type RadarPositionProposalChangeInput = {
89566
- changeProposalAri?: InputMaybe<Scalars['ID']['input']>;
89680
+ changeProposalAri: Scalars['ID']['input'];
89567
89681
  positionAri: Scalars['ID']['input'];
89568
89682
  sourceFocusAreaAri?: InputMaybe<Scalars['ID']['input']>;
89569
89683
  targetFocusAreaAri: Scalars['ID']['input'];
@@ -89616,6 +89730,11 @@ export declare type RadarStringFieldValue = {
89616
89730
  isRestricted?: Maybe<Scalars['Boolean']['output']>;
89617
89731
  value?: Maybe<Scalars['String']['output']>;
89618
89732
  };
89733
+ export declare type RadarUpdateFocusAreaProposalChangesMutationResponse = {
89734
+ __typename?: 'RadarUpdateFocusAreaProposalChangesMutationResponse';
89735
+ changes?: Maybe<Array<Maybe<RadarPositionAllocationChange>>>;
89736
+ success?: Maybe<Scalars['Boolean']['output']>;
89737
+ };
89619
89738
  export declare type RadarUrlFieldValue = {
89620
89739
  __typename?: 'RadarUrlFieldValue';
89621
89740
  displayValue?: Maybe<Scalars['String']['output']>;
@@ -92560,9 +92679,7 @@ export declare type ShepherdActor = {
92560
92679
  productAccess?: Maybe<Array<Maybe<ShepherdActorProductAccess>>>;
92561
92680
  sessions?: Maybe<Array<Maybe<ShepherdActorSession>>>;
92562
92681
  user?: Maybe<User>;
92563
- };
92564
- export declare type ShepherdActorOrgInfoArgs = {
92565
- orgId?: InputMaybe<Scalars['ID']['input']>;
92682
+ workspaceAri?: Maybe<Scalars['ID']['output']>;
92566
92683
  };
92567
92684
  export declare type ShepherdActorActivity = {
92568
92685
  __typename?: 'ShepherdActorActivity';
@@ -92591,11 +92708,13 @@ export declare type ShepherdActorMutations = {
92591
92708
  };
92592
92709
  export declare type ShepherdActorMutationsSuspendArgs = {
92593
92710
  aaid: Scalars['ID']['input'];
92594
- orgId: Scalars['ID']['input'];
92711
+ orgId?: InputMaybe<Scalars['ID']['input']>;
92712
+ workspaceAri?: InputMaybe<Scalars['ID']['input']>;
92595
92713
  };
92596
92714
  export declare type ShepherdActorMutationsUnsuspendArgs = {
92597
92715
  aaid: Scalars['ID']['input'];
92598
- orgId: Scalars['ID']['input'];
92716
+ orgId?: InputMaybe<Scalars['ID']['input']>;
92717
+ workspaceAri?: InputMaybe<Scalars['ID']['input']>;
92599
92718
  };
92600
92719
  export declare type ShepherdActorOrgInfo = {
92601
92720
  __typename?: 'ShepherdActorOrgInfo';
@@ -92842,9 +92961,7 @@ export declare enum ShepherdAlertTemplateType {
92842
92961
  DeletedTunnel = "DELETED_TUNNEL",
92843
92962
  EcosystemAuditLogInstallationCreated = "ECOSYSTEM_AUDIT_LOG_INSTALLATION_CREATED",
92844
92963
  EcosystemAuditLogInstallationDeleted = "ECOSYSTEM_AUDIT_LOG_INSTALLATION_DELETED",
92845
- EcosystemAuditLogUserGrantCreated = "ECOSYSTEM_AUDIT_LOG_USER_GRANT_CREATED",
92846
92964
  EducationalAlert = "EDUCATIONAL_ALERT",
92847
- EnableScimSync = "ENABLE_SCIM_SYNC",
92848
92965
  ExportedOrgeventscsv = "EXPORTED_ORGEVENTSCSV",
92849
92966
  GrantAssignedJiraPermissionScheme = "GRANT_ASSIGNED_JIRA_PERMISSION_SCHEME",
92850
92967
  IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
@@ -93243,6 +93360,10 @@ export declare type ShepherdDspListMetadata = {
93243
93360
  isSwitched?: Maybe<Scalars['Boolean']['output']>;
93244
93361
  type?: Maybe<Scalars['String']['output']>;
93245
93362
  };
93363
+ export declare type ShepherdEnabledWorkspaceByUserContext = {
93364
+ __typename?: 'ShepherdEnabledWorkspaceByUserContext';
93365
+ id?: Maybe<Scalars['ID']['output']>;
93366
+ };
93246
93367
  export declare type ShepherdExclusionContentInfo = {
93247
93368
  __typename?: 'ShepherdExclusionContentInfo';
93248
93369
  ari?: Maybe<Scalars['String']['output']>;
@@ -93415,6 +93536,7 @@ export declare type ShepherdQuery = {
93415
93536
  __typename?: 'ShepherdQuery';
93416
93537
  alert?: Maybe<ShepherdAlertQueries>;
93417
93538
  classifications?: Maybe<ShepherdClassificationsQueries>;
93539
+ enabledWorkspaceByUserContext?: Maybe<ShepherdEnabledWorkspaceByUserContext>;
93418
93540
  exclusions?: Maybe<ShepherdExclusionsQueries>;
93419
93541
  shepherdActivity?: Maybe<ShepherdActivityResult>;
93420
93542
  shepherdActor?: Maybe<ShepherdActorResult>;
@@ -93440,6 +93562,7 @@ export declare type ShepherdQueryShepherdActivityArgs = {
93440
93562
  export declare type ShepherdQueryShepherdActorArgs = {
93441
93563
  aaid: Scalars['ID']['input'];
93442
93564
  orgId?: InputMaybe<Scalars['ID']['input']>;
93565
+ workspaceAri?: InputMaybe<Scalars['ID']['input']>;
93443
93566
  };
93444
93567
  export declare type ShepherdQueryShepherdAlertArgs = {
93445
93568
  id: Scalars['ID']['input'];
@@ -103019,6 +103142,7 @@ export declare type WorkSuggestionsCompassScorecardCriterionTask = WorkSuggestio
103019
103142
  criterionId?: Maybe<Scalars['ID']['output']>;
103020
103143
  id: Scalars['String']['output'];
103021
103144
  orderScore?: Maybe<WorkSuggestionsOrderScore>;
103145
+ scorecard?: Maybe<CompassScorecard>;
103022
103146
  scorecardAri?: Maybe<Scalars['ID']['output']>;
103023
103147
  title: Scalars['String']['output'];
103024
103148
  url: Scalars['String']['output'];