@forge/cli-shared 8.0.0-next.8 → 8.0.0-next.9

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.
@@ -725,6 +725,36 @@ export declare type AddPublicLinkPermissionsPayload = Payload & {
725
725
  success: Scalars['Boolean']['output'];
726
726
  };
727
727
  export declare type Admin = JiraUser | JiraUserGroup;
728
+ export declare type AdminAccessUrl = {
729
+ __typename?: 'AdminAccessUrl';
730
+ expirationDate?: Maybe<Scalars['String']['output']>;
731
+ id: Scalars['ID']['output'];
732
+ resourceUrl?: Maybe<Scalars['String']['output']>;
733
+ resources?: Maybe<Array<AdminResource>>;
734
+ status: Scalars['String']['output'];
735
+ url: Scalars['String']['output'];
736
+ };
737
+ export declare type AdminAccessUrlConnection = {
738
+ __typename?: 'AdminAccessUrlConnection';
739
+ edges?: Maybe<Array<AdminAccessUrlEdge>>;
740
+ pageInfo: PageInfo;
741
+ };
742
+ export declare type AdminAccessUrlCreationResponsePayload = Payload & {
743
+ __typename?: 'AdminAccessUrlCreationResponsePayload';
744
+ accessUrl?: Maybe<AdminAccessUrl>;
745
+ errors?: Maybe<Array<MutationError>>;
746
+ success: Scalars['Boolean']['output'];
747
+ };
748
+ export declare type AdminAccessUrlDeletionResponsePayload = Payload & {
749
+ __typename?: 'AdminAccessUrlDeletionResponsePayload';
750
+ errors?: Maybe<Array<MutationError>>;
751
+ success: Scalars['Boolean']['output'];
752
+ };
753
+ export declare type AdminAccessUrlEdge = {
754
+ __typename?: 'AdminAccessUrlEdge';
755
+ cursor: Scalars['String']['output'];
756
+ node: AdminAccessUrl;
757
+ };
728
758
  export declare type AdminAnnouncementBannerFeature = {
729
759
  __typename?: 'AdminAnnouncementBannerFeature';
730
760
  isEntitled: Scalars['Boolean']['output'];
@@ -746,6 +776,12 @@ export declare enum AdminAnnouncementBannerSettingsByCriteriaOrder {
746
776
  ScheduledStartDate = "SCHEDULED_START_DATE",
747
777
  Visibility = "VISIBILITY"
748
778
  }
779
+ export declare type AdminPolicy = AdminAccessUrl;
780
+ export declare type AdminResource = AdminSite;
781
+ export declare type AdminSite = {
782
+ __typename?: 'AdminSite';
783
+ id: Scalars['ID']['output'];
784
+ };
749
785
  export declare type AgentAiContextPanelResponse = {
750
786
  __typename?: 'AgentAIContextPanelResponse';
751
787
  nextSteps?: Maybe<Scalars['String']['output']>;
@@ -3697,6 +3733,15 @@ export declare type CcpCancelEntitlementExperienceCapability = CommerceExperienc
3697
3733
  export declare enum CcpCancelEntitlementExperienceCapabilityReasonCode {
3698
3734
  EntitlementIsCollectionInstance = "ENTITLEMENT_IS_COLLECTION_INSTANCE"
3699
3735
  }
3736
+ export declare type CcpCatalogAccount = Node & {
3737
+ __typename?: 'CcpCatalogAccount';
3738
+ createdAt?: Maybe<Scalars['Float']['output']>;
3739
+ id: Scalars['ID']['output'];
3740
+ key?: Maybe<Scalars['String']['output']>;
3741
+ name?: Maybe<Scalars['String']['output']>;
3742
+ updatedAt?: Maybe<Scalars['Float']['output']>;
3743
+ version?: Maybe<Scalars['Int']['output']>;
3744
+ };
3700
3745
  export declare type CcpChangeOfferingExperienceCapability = CommerceExperienceCapability & {
3701
3746
  __typename?: 'CcpChangeOfferingExperienceCapability';
3702
3747
  experienceUrl?: Maybe<Scalars['String']['output']>;
@@ -4782,6 +4827,7 @@ export declare type CcpPurchaseOrder = {
4782
4827
  };
4783
4828
  export declare type CcpQueryApi = {
4784
4829
  __typename?: 'CcpQueryApi';
4830
+ catalogAccounts?: Maybe<Array<Maybe<CcpCatalogAccount>>>;
4785
4831
  entitlement?: Maybe<CcpEntitlement>;
4786
4832
  entitlements?: Maybe<Array<Maybe<CcpEntitlement>>>;
4787
4833
  experienceCapabilities?: Maybe<CcpRootExperienceCapabilities>;
@@ -4799,6 +4845,9 @@ export declare type CcpQueryApi = {
4799
4845
  transactionAccount?: Maybe<CcpTransactionAccount>;
4800
4846
  transactionAccounts?: Maybe<Array<Maybe<CcpTransactionAccount>>>;
4801
4847
  };
4848
+ export declare type CcpQueryApiCatalogAccountsArgs = {
4849
+ ids: Array<Scalars['ID']['input']>;
4850
+ };
4802
4851
  export declare type CcpQueryApiEntitlementArgs = {
4803
4852
  id: Scalars['ID']['input'];
4804
4853
  };
@@ -5416,6 +5465,16 @@ export declare enum ChannelPlatformMutationStatus {
5416
5465
  Failure = "FAILURE",
5417
5466
  Success = "SUCCESS"
5418
5467
  }
5468
+ export declare type ChannelPlatformPluginActionRequest = {
5469
+ actionName?: InputMaybe<Scalars['String']['input']>;
5470
+ appId?: InputMaybe<Scalars['String']['input']>;
5471
+ contactId?: InputMaybe<Scalars['String']['input']>;
5472
+ payload?: InputMaybe<Scalars['JSON']['input']>;
5473
+ };
5474
+ export declare type ChannelPlatformPluginActionResponse = {
5475
+ __typename?: 'ChannelPlatformPluginActionResponse';
5476
+ response?: Maybe<Scalars['JSON']['output']>;
5477
+ };
5419
5478
  export declare type ChannelPlatformSampleQueue = {
5420
5479
  __typename?: 'ChannelPlatformSampleQueue';
5421
5480
  config?: Maybe<ChannelPlatformSampleQueueConfig>;
@@ -7948,6 +8007,7 @@ export declare type CompassCustomNumberFieldFilter = CompassCustomFieldFilter &
7948
8007
  export declare type CompassCustomNumberFieldFilterInput = {
7949
8008
  comparator?: InputMaybe<CustomNumberFieldInputComparators>;
7950
8009
  customFieldId: Scalars['String']['input'];
8010
+ values?: InputMaybe<Array<Scalars['Float']['input']>>;
7951
8011
  };
7952
8012
  export declare type CompassCustomNumberFieldInput = {
7953
8013
  annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
@@ -8033,6 +8093,7 @@ export declare type CompassCustomTextFieldFilter = CompassCustomFieldFilter & {
8033
8093
  export declare type CompassCustomTextFieldFilterInput = {
8034
8094
  comparator?: InputMaybe<CustomTextFieldInputComparators>;
8035
8095
  customFieldId: Scalars['String']['input'];
8096
+ values?: InputMaybe<Array<Scalars['String']['input']>>;
8036
8097
  };
8037
8098
  export declare type CompassCustomTextFieldInput = {
8038
8099
  annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
@@ -22089,6 +22150,7 @@ export declare enum CustomMultiselectFieldInputComparators {
22089
22150
  NotSet = "NOT_SET"
22090
22151
  }
22091
22152
  export declare enum CustomNumberFieldInputComparators {
22153
+ ContainAny = "CONTAIN_ANY",
22092
22154
  IsSet = "IS_SET",
22093
22155
  NotSet = "NOT_SET"
22094
22156
  }
@@ -22104,6 +22166,7 @@ export declare enum CustomSingleSelectFieldInputComparators {
22104
22166
  NotSet = "NOT_SET"
22105
22167
  }
22106
22168
  export declare enum CustomTextFieldInputComparators {
22169
+ ContainAny = "CONTAIN_ANY",
22107
22170
  IsSet = "IS_SET",
22108
22171
  NotSet = "NOT_SET"
22109
22172
  }
@@ -50356,7 +50419,7 @@ export declare type GraphStoreSimplifiedTopicHasRelatedEntityEdge = {
50356
50419
  lastUpdated: Scalars['DateTime']['output'];
50357
50420
  node?: Maybe<GraphStoreSimplifiedTopicHasRelatedEntityUnion>;
50358
50421
  };
50359
- export declare type GraphStoreSimplifiedTopicHasRelatedEntityUnion = ConfluenceBlogPost | ConfluencePage;
50422
+ export declare type GraphStoreSimplifiedTopicHasRelatedEntityUnion = AppUser | AtlassianAccountUser | ConfluenceBlogPost | ConfluencePage | CustomerUser;
50360
50423
  export declare type GraphStoreSimplifiedUserAssignedIncidentConnection = HasPageInfo & {
50361
50424
  __typename?: 'GraphStoreSimplifiedUserAssignedIncidentConnection';
50362
50425
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserAssignedIncidentEdge>>>;
@@ -75039,7 +75102,8 @@ export declare type JiraViewScopeInput = {
75039
75102
  };
75040
75103
  export declare enum JiraVisibilityControlMechanism {
75041
75104
  AppAccessRules = "AppAccessRules",
75042
- DisplayConditions = "DisplayConditions"
75105
+ DisplayConditions = "DisplayConditions",
75106
+ UnlicensedAccess = "UnlicensedAccess"
75043
75107
  }
75044
75108
  export declare type JiraVote = {
75045
75109
  __typename?: 'JiraVote';
@@ -76962,6 +77026,15 @@ export declare enum KnowledgeDiscoveryKeyPhraseInputTextFormat {
76962
77026
  Plain = "PLAIN"
76963
77027
  }
76964
77028
  export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPhraseConnection | QueryError;
77029
+ export declare type KnowledgeDiscoveryMarkZeroQueryInteractedInput = {
77030
+ cloudId: Scalars['String']['input'];
77031
+ query: Scalars['String']['input'];
77032
+ };
77033
+ export declare type KnowledgeDiscoveryMarkZeroQueryInteractedPayload = Payload & {
77034
+ __typename?: 'KnowledgeDiscoveryMarkZeroQueryInteractedPayload';
77035
+ errors?: Maybe<Array<MutationError>>;
77036
+ success: Scalars['Boolean']['output'];
77037
+ };
76965
77038
  export declare type KnowledgeDiscoveryMetadata = {
76966
77039
  numberOfRecentDocuments?: InputMaybe<Scalars['Int']['input']>;
76967
77040
  };
@@ -76973,6 +77046,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
76973
77046
  createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
76974
77047
  deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
76975
77048
  dismissBookmarkSuggestion?: Maybe<KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionPayload>;
77049
+ markZeroQueryInteracted?: Maybe<KnowledgeDiscoveryMarkZeroQueryInteractedPayload>;
76976
77050
  updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
76977
77051
  updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
76978
77052
  updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
@@ -76995,6 +77069,9 @@ export declare type KnowledgeDiscoveryMutationApiDeleteBookmarksArgs = {
76995
77069
  export declare type KnowledgeDiscoveryMutationApiDismissBookmarkSuggestionArgs = {
76996
77070
  input: KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput;
76997
77071
  };
77072
+ export declare type KnowledgeDiscoveryMutationApiMarkZeroQueryInteractedArgs = {
77073
+ input: KnowledgeDiscoveryMarkZeroQueryInteractedInput;
77074
+ };
76998
77075
  export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
76999
77076
  input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
77000
77077
  };
@@ -77276,9 +77353,19 @@ export declare type KnowledgeDiscoveryUsers = {
77276
77353
  };
77277
77354
  export declare type KnowledgeDiscoveryZeroQueries = {
77278
77355
  __typename?: 'KnowledgeDiscoveryZeroQueries';
77279
- zeroQueries?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
77356
+ zeroQueries?: Maybe<Array<KnowledgeDiscoveryZeroQuery>>;
77280
77357
  };
77281
77358
  export declare type KnowledgeDiscoveryZeroQueriesResult = KnowledgeDiscoveryZeroQueries | QueryError;
77359
+ export declare type KnowledgeDiscoveryZeroQuery = {
77360
+ __typename?: 'KnowledgeDiscoveryZeroQuery';
77361
+ query: Scalars['String']['output'];
77362
+ type: KnowledgeDiscoveryZeroQueryType;
77363
+ };
77364
+ export declare enum KnowledgeDiscoveryZeroQueryType {
77365
+ RecentWork = "RECENT_WORK",
77366
+ RelatedQuestion = "RELATED_QUESTION",
77367
+ WhoIs = "WHO_IS"
77368
+ }
77282
77369
  export declare enum KnowledgeGraphContentType {
77283
77370
  Blogpost = "BLOGPOST",
77284
77371
  Page = "PAGE"
@@ -81114,7 +81201,7 @@ export declare type MercuryFocusAreaChangeRequirements = {
81114
81201
  };
81115
81202
  export declare type MercuryFocusAreaChangeSummary = {
81116
81203
  __typename?: 'MercuryFocusAreaChangeSummary';
81117
- focusAreaId: Scalars['ID']['output'];
81204
+ focusAreaId?: Maybe<Scalars['ID']['output']>;
81118
81205
  fundChangeSummary?: Maybe<MercuryFocusAreaFundChangeSummary>;
81119
81206
  positionChangeSummary?: Maybe<MercuryFocusAreaPositionChangeSummary>;
81120
81207
  strategicEventId: Scalars['ID']['output'];
@@ -81134,6 +81221,7 @@ export declare type MercuryFocusAreaFundChangeSummary = {
81134
81221
  __typename?: 'MercuryFocusAreaFundChangeSummary';
81135
81222
  laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
81136
81223
  nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
81224
+ totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
81137
81225
  };
81138
81226
  export declare type MercuryFocusAreaGoalLink = Node & {
81139
81227
  __typename?: 'MercuryFocusAreaGoalLink';
@@ -81209,7 +81297,9 @@ export declare type MercuryFocusAreaPositionChangeSummary = {
81209
81297
  movedInCount?: Maybe<Scalars['Int']['output']>;
81210
81298
  movedOutCount?: Maybe<Scalars['Int']['output']>;
81211
81299
  movedWithinCount?: Maybe<Scalars['Int']['output']>;
81300
+ netCount?: Maybe<Scalars['Int']['output']>;
81212
81301
  newCount?: Maybe<Scalars['Int']['output']>;
81302
+ totalCount?: Maybe<Scalars['Int']['output']>;
81213
81303
  };
81214
81304
  export declare type MercuryFocusAreaSort = {
81215
81305
  field?: InputMaybe<MercuryFocusAreaSortField>;
@@ -82456,6 +82546,7 @@ export declare type MercuryStrategicEventsQueryApi = {
82456
82546
  changeSummaryByFocusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaChangeSummary>>>;
82457
82547
  changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
82458
82548
  changeSummaryForChangeProposal?: Maybe<MercuryChangeSummaryForChangeProposal>;
82549
+ changeSummaryForStrategicEvent?: Maybe<MercuryFocusAreaChangeSummary>;
82459
82550
  changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
82460
82551
  changes?: Maybe<Array<Maybe<MercuryChange>>>;
82461
82552
  changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
@@ -82499,6 +82590,9 @@ export declare type MercuryStrategicEventsQueryApiChangeSummaryByFocusAreaIdsArg
82499
82590
  export declare type MercuryStrategicEventsQueryApiChangeSummaryForChangeProposalArgs = {
82500
82591
  changeProposalId: Scalars['ID']['input'];
82501
82592
  };
82593
+ export declare type MercuryStrategicEventsQueryApiChangeSummaryForStrategicEventArgs = {
82594
+ strategicEventId?: InputMaybe<Scalars['ID']['input']>;
82595
+ };
82502
82596
  export declare type MercuryStrategicEventsQueryApiChangeSummaryInternalArgs = {
82503
82597
  inputs: Array<MercuryChangeSummaryInput>;
82504
82598
  };
@@ -83083,6 +83177,8 @@ export declare type Mutation = {
83083
83177
  addLabels?: Maybe<AddLabelsPayload>;
83084
83178
  addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
83085
83179
  addReaction?: Maybe<SaveReactionResponse>;
83180
+ admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
83181
+ admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
83086
83182
  agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
83087
83183
  agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
83088
83184
  agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
@@ -83116,6 +83212,7 @@ export declare type Mutation = {
83116
83212
  channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
83117
83213
  channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
83118
83214
  channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
83215
+ channelPlatform_performPluginAction?: Maybe<ChannelPlatformPluginActionResponse>;
83119
83216
  clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
83120
83217
  compass?: Maybe<CompassCatalogMutationApi>;
83121
83218
  completeSprint?: Maybe<CompleteSprintResponse>;
@@ -83496,6 +83593,7 @@ export declare type Mutation = {
83496
83593
  knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
83497
83594
  knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
83498
83595
  likeContent?: Maybe<LikeContentPayload>;
83596
+ loom_spaceCreate?: Maybe<LoomSpace>;
83499
83597
  markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
83500
83598
  markFeatureDiscovered?: Maybe<FeatureDiscoveryPayload>;
83501
83599
  marketplaceConsole: MarketplaceConsoleMutationApi;
@@ -83602,10 +83700,26 @@ export declare type Mutation = {
83602
83700
  shareResource?: Maybe<ShareResourcePayload>;
83603
83701
  shepherd?: Maybe<ShepherdMutation>;
83604
83702
  softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
83703
+ spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
83605
83704
  spf_attachRelatedContent?: Maybe<SpfAttachRelatedContentPayload>;
83705
+ spf_createAsk?: Maybe<SpfCreateAskPayload>;
83706
+ spf_createAskComment?: Maybe<SpfCreateAskCommentPayload>;
83606
83707
  spf_createComment?: Maybe<SpfCreateCommentPayload>;
83607
83708
  spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
83709
+ spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
83608
83710
  spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
83711
+ spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
83712
+ spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
83713
+ spf_updateAskImpactedWork?: Maybe<SpfUpdateAskPayload>;
83714
+ spf_updateAskJustification?: Maybe<SpfUpdateAskPayload>;
83715
+ spf_updateAskName?: Maybe<SpfUpdateAskPayload>;
83716
+ spf_updateAskOwner?: Maybe<SpfUpdateAskPayload>;
83717
+ spf_updateAskPriority?: Maybe<SpfUpdateAskPayload>;
83718
+ spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
83719
+ spf_updateAskStatus?: Maybe<SpfUpdateAskPayload>;
83720
+ spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
83721
+ spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
83722
+ spf_updateAskTargetDate?: Maybe<SpfUpdateAskPayload>;
83609
83723
  spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
83610
83724
  spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
83611
83725
  spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
@@ -83731,6 +83845,12 @@ export declare type MutationAddReactionArgs = {
83731
83845
  contentType: GraphQlReactionContentType;
83732
83846
  emojiId: Scalars['String']['input'];
83733
83847
  };
83848
+ export declare type MutationAdmin_CreateAccessUrlArgs = {
83849
+ resourceAri: Scalars['ID']['input'];
83850
+ };
83851
+ export declare type MutationAdmin_DeleteAccessUrlArgs = {
83852
+ id: Scalars['ID']['input'];
83853
+ };
83734
83854
  export declare type MutationAgentStudio_CreateAgentArgs = {
83735
83855
  cloudId: Scalars['String']['input'];
83736
83856
  input: AgentStudioCreateAgentInput;
@@ -83841,6 +83961,9 @@ export declare type MutationChannelPlatform_DeleteQueuesArgs = {
83841
83961
  id?: InputMaybe<Scalars['ID']['input']>;
83842
83962
  instanceId?: InputMaybe<Scalars['String']['input']>;
83843
83963
  };
83964
+ export declare type MutationChannelPlatform_PerformPluginActionArgs = {
83965
+ pluginActionRequest?: InputMaybe<ChannelPlatformPluginActionRequest>;
83966
+ };
83844
83967
  export declare type MutationClearRestrictionsForFreeArgs = {
83845
83968
  contentId: Scalars['ID']['input'];
83846
83969
  };
@@ -85047,6 +85170,12 @@ export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
85047
85170
  export declare type MutationLikeContentArgs = {
85048
85171
  input: LikeContentInput;
85049
85172
  };
85173
+ export declare type MutationLoom_SpaceCreateArgs = {
85174
+ analyticsSource?: InputMaybe<Scalars['String']['input']>;
85175
+ name: Scalars['String']['input'];
85176
+ privacy?: InputMaybe<LoomSpacePrivacyType>;
85177
+ siteId: Scalars['ID']['input'];
85178
+ };
85050
85179
  export declare type MutationMarkCommentsAsReadArgs = {
85051
85180
  input: MarkCommentsAsReadInput;
85052
85181
  };
@@ -85361,18 +85490,66 @@ export declare type MutationShareResourceArgs = {
85361
85490
  export declare type MutationSoftDeleteSpaceArgs = {
85362
85491
  spaceKey: Scalars['String']['input'];
85363
85492
  };
85493
+ export declare type MutationSpf_AttachAskLinkArgs = {
85494
+ input: SpfAttachAskLinkInput;
85495
+ };
85364
85496
  export declare type MutationSpf_AttachRelatedContentArgs = {
85365
85497
  input: SpfAttachRelatedContentInput;
85366
85498
  };
85499
+ export declare type MutationSpf_CreateAskArgs = {
85500
+ input: SpfCreateAskInput;
85501
+ };
85502
+ export declare type MutationSpf_CreateAskCommentArgs = {
85503
+ input: SpfCreateAskCommentInput;
85504
+ };
85367
85505
  export declare type MutationSpf_CreateCommentArgs = {
85368
85506
  input: SpfCreateCommentInput;
85369
85507
  };
85370
85508
  export declare type MutationSpf_CreateDependencyArgs = {
85371
85509
  input: SpfCreateDependencyInput;
85372
85510
  };
85511
+ export declare type MutationSpf_DeleteAskArgs = {
85512
+ input: SpfDeleteAskInput;
85513
+ };
85373
85514
  export declare type MutationSpf_DeleteDependencyArgs = {
85374
85515
  input: SpfDeleteDependencyInput;
85375
85516
  };
85517
+ export declare type MutationSpf_UpdateAskCommentArgs = {
85518
+ input: SpfUpdateAskCommentDataInput;
85519
+ };
85520
+ export declare type MutationSpf_UpdateAskDescriptionArgs = {
85521
+ input: SpfUpdateAskDescriptionInput;
85522
+ };
85523
+ export declare type MutationSpf_UpdateAskImpactedWorkArgs = {
85524
+ input: SpfUpdateAskImpactedWorkInput;
85525
+ };
85526
+ export declare type MutationSpf_UpdateAskJustificationArgs = {
85527
+ input: SpfUpdateAskJustificationInput;
85528
+ };
85529
+ export declare type MutationSpf_UpdateAskNameArgs = {
85530
+ input: SpfUpdateAskNameInput;
85531
+ };
85532
+ export declare type MutationSpf_UpdateAskOwnerArgs = {
85533
+ input: SpfUpdateAskOwnerInput;
85534
+ };
85535
+ export declare type MutationSpf_UpdateAskPriorityArgs = {
85536
+ input: SpfUpdateAskPriorityInput;
85537
+ };
85538
+ export declare type MutationSpf_UpdateAskReceivingTeamArgs = {
85539
+ input: SpfUpdateAskReceivingTeamInput;
85540
+ };
85541
+ export declare type MutationSpf_UpdateAskStatusArgs = {
85542
+ input: SpfUpdateAskStatusInput;
85543
+ };
85544
+ export declare type MutationSpf_UpdateAskSubmitterArgs = {
85545
+ input: SpfUpdateAskSubmitterInput;
85546
+ };
85547
+ export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
85548
+ input: SpfUpdateAskSubmittingTeamInput;
85549
+ };
85550
+ export declare type MutationSpf_UpdateAskTargetDateArgs = {
85551
+ input: SpfUpdateAskTargetDateInput;
85552
+ };
85376
85553
  export declare type MutationSpf_UpdateCommentArgs = {
85377
85554
  input: SpfUpdateCommentDataInput;
85378
85555
  };
@@ -88438,6 +88615,7 @@ export declare type Query = {
88438
88615
  adminAnnouncementBannerSettings?: Maybe<Array<Maybe<ConfluenceAdminAnnouncementBannerSetting>>>;
88439
88616
  adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
88440
88617
  adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
88618
+ admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
88441
88619
  agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
88442
88620
  agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
88443
88621
  agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
@@ -89107,6 +89285,9 @@ export declare type Query = {
89107
89285
  spaceWatchers?: Maybe<PaginatedPersonList>;
89108
89286
  spaces?: Maybe<PaginatedSpaceList>;
89109
89287
  spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
89288
+ spf_ask?: Maybe<SpfAskResult>;
89289
+ spf_asks?: Maybe<SpfAskConnection>;
89290
+ spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
89110
89291
  spf_dependencies?: Maybe<SpfDependencyConnection>;
89111
89292
  spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
89112
89293
  spf_dependency?: Maybe<SpfDependencyResult>;
@@ -89179,6 +89360,13 @@ export declare type QueryAdminAnnouncementBannerSettingsByCriteriaArgs = {
89179
89360
  isAscending?: InputMaybe<Scalars['Boolean']['input']>;
89180
89361
  orderBy?: InputMaybe<AdminAnnouncementBannerSettingsByCriteriaOrder>;
89181
89362
  };
89363
+ export declare type QueryAdmin_AccessUrlsArgs = {
89364
+ after?: InputMaybe<Scalars['String']['input']>;
89365
+ before?: InputMaybe<Scalars['String']['input']>;
89366
+ first?: InputMaybe<Scalars['Int']['input']>;
89367
+ last?: InputMaybe<Scalars['Int']['input']>;
89368
+ orgId: Scalars['ID']['input'];
89369
+ };
89182
89370
  export declare type QueryAgentAi_ContextPanelArgs = {
89183
89371
  cloudId: Scalars['ID']['input'];
89184
89372
  issueId?: InputMaybe<Scalars['String']['input']>;
@@ -91637,6 +91825,7 @@ export declare type QueryRadar_PositionsByEntitySearchArgs = {
91637
91825
  cloudId: Scalars['ID']['input'];
91638
91826
  entity: RadarPositionsByEntityType;
91639
91827
  first?: InputMaybe<Scalars['Int']['input']>;
91828
+ input?: InputMaybe<RadarPositionsByEntityInput>;
91640
91829
  last?: InputMaybe<Scalars['Int']['input']>;
91641
91830
  rql?: InputMaybe<Scalars['String']['input']>;
91642
91831
  };
@@ -91873,6 +92062,18 @@ export declare type QuerySpacesArgs = {
91873
92062
  export declare type QuerySpacesWithExemptionsArgs = {
91874
92063
  spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
91875
92064
  };
92065
+ export declare type QuerySpf_AskArgs = {
92066
+ id: Scalars['ID']['input'];
92067
+ };
92068
+ export declare type QuerySpf_AsksArgs = {
92069
+ after?: InputMaybe<Scalars['String']['input']>;
92070
+ cloudId: Scalars['ID']['input'];
92071
+ first?: InputMaybe<Scalars['Int']['input']>;
92072
+ q?: InputMaybe<Scalars['String']['input']>;
92073
+ };
92074
+ export declare type QuerySpf_AsksByIdsArgs = {
92075
+ ids: Array<Scalars['ID']['input']>;
92076
+ };
91876
92077
  export declare type QuerySpf_DependenciesArgs = {
91877
92078
  after?: InputMaybe<Scalars['String']['input']>;
91878
92079
  cloudId: Scalars['ID']['input'];
@@ -92514,8 +92715,13 @@ export declare type RadarPositionsByEntityEdge = RadarEdge & {
92514
92715
  cursor: Scalars['String']['output'];
92515
92716
  node: RadarPositionsByEntity;
92516
92717
  };
92718
+ export declare type RadarPositionsByEntityInput = {
92719
+ entity: RadarPositionsByEntityType;
92720
+ fieldValue?: InputMaybe<Scalars['ID']['input']>;
92721
+ };
92517
92722
  export declare enum RadarPositionsByEntityType {
92518
- FocusArea = "focusArea"
92723
+ FocusArea = "focusArea",
92724
+ Position = "position"
92519
92725
  }
92520
92726
  export declare type RadarPrincipalByResourceRole = {
92521
92727
  __typename?: 'RadarPrincipalByResourceRole';
@@ -94344,6 +94550,7 @@ export declare type SearchAnalyticsInput = {
94344
94550
  queryVersion?: InputMaybe<Scalars['Int']['input']>;
94345
94551
  searchReferrerId?: InputMaybe<Scalars['String']['input']>;
94346
94552
  searchSessionId?: InputMaybe<Scalars['String']['input']>;
94553
+ sessionId?: InputMaybe<Scalars['String']['input']>;
94347
94554
  sourceProduct?: InputMaybe<Scalars['String']['input']>;
94348
94555
  };
94349
94556
  export declare type SearchBoardFilter = {
@@ -97986,6 +98193,137 @@ export declare type SpaceWithExemption = {
97986
98193
  status?: Maybe<Scalars['String']['output']>;
97987
98194
  type?: Maybe<Scalars['String']['output']>;
97988
98195
  };
98196
+ export declare type SpfAsk = Node & {
98197
+ __typename?: 'SpfAsk';
98198
+ comments?: Maybe<SpfAskCommentConnection>;
98199
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
98200
+ createdBy?: Maybe<User>;
98201
+ createdByUserId?: Maybe<Scalars['String']['output']>;
98202
+ description?: Maybe<Scalars['String']['output']>;
98203
+ id: Scalars['ID']['output'];
98204
+ impactedWork?: Maybe<SpfImpactedWork>;
98205
+ impactedWorkId?: Maybe<Scalars['String']['output']>;
98206
+ justification?: Maybe<Scalars['String']['output']>;
98207
+ links?: Maybe<SpfAskLinkConnection>;
98208
+ name: Scalars['String']['output'];
98209
+ owner?: Maybe<User>;
98210
+ ownerId?: Maybe<Scalars['String']['output']>;
98211
+ priority: SpfAskPriority;
98212
+ receivingTeam?: Maybe<TeamV2>;
98213
+ receivingTeamId?: Maybe<Scalars['String']['output']>;
98214
+ status: SpfAskStatus;
98215
+ submitter?: Maybe<User>;
98216
+ submitterId: Scalars['String']['output'];
98217
+ submittingTeam?: Maybe<TeamV2>;
98218
+ submittingTeamId?: Maybe<Scalars['String']['output']>;
98219
+ targetDate?: Maybe<SpfAskTargetDate>;
98220
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
98221
+ updatedBy?: Maybe<User>;
98222
+ updatedByUserId?: Maybe<Scalars['String']['output']>;
98223
+ };
98224
+ export declare type SpfAskCommentsArgs = {
98225
+ after?: InputMaybe<Scalars['String']['input']>;
98226
+ first?: InputMaybe<Scalars['Int']['input']>;
98227
+ q?: InputMaybe<Scalars['String']['input']>;
98228
+ };
98229
+ export declare type SpfAskLinksArgs = {
98230
+ after?: InputMaybe<Scalars['String']['input']>;
98231
+ first?: InputMaybe<Scalars['Int']['input']>;
98232
+ q?: InputMaybe<Scalars['String']['input']>;
98233
+ };
98234
+ export declare type SpfAskComment = {
98235
+ __typename?: 'SpfAskComment';
98236
+ askId: Scalars['String']['output'];
98237
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
98238
+ createdByUserId?: Maybe<Scalars['String']['output']>;
98239
+ data: Scalars['String']['output'];
98240
+ id: Scalars['ID']['output'];
98241
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
98242
+ };
98243
+ export declare type SpfAskCommentConnection = {
98244
+ __typename?: 'SpfAskCommentConnection';
98245
+ edges?: Maybe<Array<Maybe<SpfAskCommentEdge>>>;
98246
+ pageInfo: PageInfo;
98247
+ totalCount?: Maybe<Scalars['Int']['output']>;
98248
+ };
98249
+ export declare type SpfAskCommentEdge = {
98250
+ __typename?: 'SpfAskCommentEdge';
98251
+ cursor: Scalars['String']['output'];
98252
+ node?: Maybe<SpfAskCommentResult>;
98253
+ };
98254
+ export declare type SpfAskCommentResult = QueryError | SpfAskComment;
98255
+ export declare type SpfAskConnection = {
98256
+ __typename?: 'SpfAskConnection';
98257
+ edges?: Maybe<Array<Maybe<SpfAskEdge>>>;
98258
+ pageInfo: PageInfo;
98259
+ totalCount?: Maybe<Scalars['Int']['output']>;
98260
+ };
98261
+ export declare type SpfAskEdge = {
98262
+ __typename?: 'SpfAskEdge';
98263
+ cursor: Scalars['String']['output'];
98264
+ node?: Maybe<SpfAskResult>;
98265
+ };
98266
+ export declare type SpfAskLink = {
98267
+ __typename?: 'SpfAskLink';
98268
+ askId: Scalars['String']['output'];
98269
+ attachedByUserId?: Maybe<Scalars['String']['output']>;
98270
+ attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
98271
+ id: Scalars['ID']['output'];
98272
+ url: Scalars['URL']['output'];
98273
+ };
98274
+ export declare type SpfAskLinkConnection = {
98275
+ __typename?: 'SpfAskLinkConnection';
98276
+ edges?: Maybe<Array<Maybe<SpfAskLinkEdge>>>;
98277
+ pageInfo: PageInfo;
98278
+ totalCount?: Maybe<Scalars['Int']['output']>;
98279
+ };
98280
+ export declare type SpfAskLinkEdge = {
98281
+ __typename?: 'SpfAskLinkEdge';
98282
+ cursor: Scalars['String']['output'];
98283
+ node?: Maybe<SpfAskLinkResult>;
98284
+ };
98285
+ export declare type SpfAskLinkResult = QueryError | SpfAskLink;
98286
+ export declare enum SpfAskPriority {
98287
+ Critical = "CRITICAL",
98288
+ High = "HIGH",
98289
+ Highest = "HIGHEST",
98290
+ Low = "LOW",
98291
+ Medium = "MEDIUM"
98292
+ }
98293
+ export declare type SpfAskResult = QueryError | SpfAsk;
98294
+ export declare enum SpfAskStatus {
98295
+ Accepted = "ACCEPTED",
98296
+ Canceled = "CANCELED",
98297
+ Denied = "DENIED",
98298
+ Draft = "DRAFT",
98299
+ InReview = "IN_REVIEW",
98300
+ Revising = "REVISING",
98301
+ Submitted = "SUBMITTED"
98302
+ }
98303
+ export declare type SpfAskTargetDate = {
98304
+ __typename?: 'SpfAskTargetDate';
98305
+ targetDate?: Maybe<Scalars['String']['output']>;
98306
+ targetDateType?: Maybe<SpfAskTargetDateType>;
98307
+ };
98308
+ export declare type SpfAskTargetDateInput = {
98309
+ targetDate: Scalars['String']['input'];
98310
+ targetDateType: SpfAskTargetDateType;
98311
+ };
98312
+ export declare enum SpfAskTargetDateType {
98313
+ Day = "DAY",
98314
+ Month = "MONTH",
98315
+ Quarter = "QUARTER"
98316
+ }
98317
+ export declare type SpfAttachAskLinkInput = {
98318
+ askId: Scalars['ID']['input'];
98319
+ url: Scalars['URL']['input'];
98320
+ };
98321
+ export declare type SpfAttachAskLinkPayload = Payload & {
98322
+ __typename?: 'SpfAttachAskLinkPayload';
98323
+ errors?: Maybe<Array<MutationError>>;
98324
+ link?: Maybe<SpfAskLink>;
98325
+ success: Scalars['Boolean']['output'];
98326
+ };
97989
98327
  export declare type SpfAttachRelatedContentInput = {
97990
98328
  dependencyId: Scalars['ID']['input'];
97991
98329
  url: Scalars['URL']['input'];
@@ -98017,6 +98355,36 @@ export declare type SpfCommentEdge = {
98017
98355
  node?: Maybe<SpfCommentResult>;
98018
98356
  };
98019
98357
  export declare type SpfCommentResult = QueryError | SpfComment;
98358
+ export declare type SpfCreateAskCommentInput = {
98359
+ askId: Scalars['ID']['input'];
98360
+ data: Scalars['String']['input'];
98361
+ };
98362
+ export declare type SpfCreateAskCommentPayload = Payload & {
98363
+ __typename?: 'SpfCreateAskCommentPayload';
98364
+ comment?: Maybe<SpfAskComment>;
98365
+ errors?: Maybe<Array<MutationError>>;
98366
+ success: Scalars['Boolean']['output'];
98367
+ };
98368
+ export declare type SpfCreateAskInput = {
98369
+ cloudId: Scalars['ID']['input'];
98370
+ description?: InputMaybe<Scalars['String']['input']>;
98371
+ impactedWorkId?: InputMaybe<Scalars['String']['input']>;
98372
+ justification?: InputMaybe<Scalars['String']['input']>;
98373
+ name: Scalars['String']['input'];
98374
+ ownerId?: InputMaybe<Scalars['String']['input']>;
98375
+ priority: SpfAskPriority;
98376
+ receivingTeamId?: InputMaybe<Scalars['String']['input']>;
98377
+ status: SpfAskStatus;
98378
+ submitterId: Scalars['String']['input'];
98379
+ submittingTeamId?: InputMaybe<Scalars['String']['input']>;
98380
+ targetDate?: InputMaybe<SpfAskTargetDateInput>;
98381
+ };
98382
+ export declare type SpfCreateAskPayload = Payload & {
98383
+ __typename?: 'SpfCreateAskPayload';
98384
+ ask?: Maybe<SpfAsk>;
98385
+ errors?: Maybe<Array<MutationError>>;
98386
+ success: Scalars['Boolean']['output'];
98387
+ };
98020
98388
  export declare type SpfCreateCommentInput = {
98021
98389
  data: Scalars['String']['input'];
98022
98390
  dependencyId: Scalars['ID']['input'];
@@ -98047,6 +98415,15 @@ export declare type SpfCreateDependencyPayload = Payload & {
98047
98415
  errors?: Maybe<Array<MutationError>>;
98048
98416
  success: Scalars['Boolean']['output'];
98049
98417
  };
98418
+ export declare type SpfDeleteAskInput = {
98419
+ id: Scalars['ID']['input'];
98420
+ };
98421
+ export declare type SpfDeleteAskPayload = Payload & {
98422
+ __typename?: 'SpfDeleteAskPayload';
98423
+ errors?: Maybe<Array<MutationError>>;
98424
+ id: Scalars['ID']['output'];
98425
+ success: Scalars['Boolean']['output'];
98426
+ };
98050
98427
  export declare type SpfDeleteDependencyInput = {
98051
98428
  id: Scalars['ID']['input'];
98052
98429
  };
@@ -98156,6 +98533,66 @@ export declare enum SpfTargetDateType {
98156
98533
  Month = "MONTH",
98157
98534
  Quarter = "QUARTER"
98158
98535
  }
98536
+ export declare type SpfUpdateAskCommentDataInput = {
98537
+ data: Scalars['String']['input'];
98538
+ id: Scalars['ID']['input'];
98539
+ };
98540
+ export declare type SpfUpdateAskCommentPayload = Payload & {
98541
+ __typename?: 'SpfUpdateAskCommentPayload';
98542
+ comment?: Maybe<SpfAskComment>;
98543
+ errors?: Maybe<Array<MutationError>>;
98544
+ success: Scalars['Boolean']['output'];
98545
+ };
98546
+ export declare type SpfUpdateAskDescriptionInput = {
98547
+ description?: InputMaybe<Scalars['String']['input']>;
98548
+ id: Scalars['ID']['input'];
98549
+ };
98550
+ export declare type SpfUpdateAskImpactedWorkInput = {
98551
+ id: Scalars['ID']['input'];
98552
+ impactedWorkId?: InputMaybe<Scalars['String']['input']>;
98553
+ };
98554
+ export declare type SpfUpdateAskJustificationInput = {
98555
+ id: Scalars['ID']['input'];
98556
+ justification?: InputMaybe<Scalars['String']['input']>;
98557
+ };
98558
+ export declare type SpfUpdateAskNameInput = {
98559
+ id: Scalars['ID']['input'];
98560
+ name: Scalars['String']['input'];
98561
+ };
98562
+ export declare type SpfUpdateAskOwnerInput = {
98563
+ id: Scalars['ID']['input'];
98564
+ ownerId?: InputMaybe<Scalars['String']['input']>;
98565
+ };
98566
+ export declare type SpfUpdateAskPayload = Payload & {
98567
+ __typename?: 'SpfUpdateAskPayload';
98568
+ ask?: Maybe<SpfAsk>;
98569
+ errors?: Maybe<Array<MutationError>>;
98570
+ success: Scalars['Boolean']['output'];
98571
+ };
98572
+ export declare type SpfUpdateAskPriorityInput = {
98573
+ id: Scalars['ID']['input'];
98574
+ priority: SpfAskPriority;
98575
+ };
98576
+ export declare type SpfUpdateAskReceivingTeamInput = {
98577
+ id: Scalars['ID']['input'];
98578
+ receivingTeamId?: InputMaybe<Scalars['String']['input']>;
98579
+ };
98580
+ export declare type SpfUpdateAskStatusInput = {
98581
+ id: Scalars['ID']['input'];
98582
+ status: SpfAskStatus;
98583
+ };
98584
+ export declare type SpfUpdateAskSubmitterInput = {
98585
+ id: Scalars['ID']['input'];
98586
+ submitterId: Scalars['String']['input'];
98587
+ };
98588
+ export declare type SpfUpdateAskSubmittingTeamInput = {
98589
+ id: Scalars['ID']['input'];
98590
+ submittingTeamId?: InputMaybe<Scalars['String']['input']>;
98591
+ };
98592
+ export declare type SpfUpdateAskTargetDateInput = {
98593
+ id: Scalars['ID']['input'];
98594
+ targetDate?: InputMaybe<SpfAskTargetDateInput>;
98595
+ };
98159
98596
  export declare type SpfUpdateCommentDataInput = {
98160
98597
  data: Scalars['String']['input'];
98161
98598
  id: Scalars['ID']['input'];