@forge/cli-shared 7.1.0-next.7 → 8.0.0-next.10

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
  }
@@ -26175,7 +26238,7 @@ export declare type EcosystemQueryUserInstallationRulesArgs = {
26175
26238
  export declare type EcosystemRealtimePublishBody = {
26176
26239
  __typename?: 'EcosystemRealtimePublishBody';
26177
26240
  eventId?: Maybe<Scalars['String']['output']>;
26178
- eventTimestamp?: Maybe<Scalars['Int']['output']>;
26241
+ eventTimestamp?: Maybe<Scalars['String']['output']>;
26179
26242
  };
26180
26243
  export declare type EcosystemRealtimeSubscriptionBody = {
26181
26244
  __typename?: 'EcosystemRealtimeSubscriptionBody';
@@ -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>>>;
@@ -58600,6 +58663,7 @@ export declare enum JiraBoardType {
58600
58663
  }
58601
58664
  export declare type JiraBoardView = {
58602
58665
  __typename?: 'JiraBoardView';
58666
+ canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
58603
58667
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
58604
58668
  cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
58605
58669
  columns?: Maybe<JiraBoardViewColumnConnection>;
@@ -58636,6 +58700,7 @@ export declare type JiraBoardViewSelectedWorkflowIdArgs = {
58636
58700
  };
58637
58701
  export declare type JiraBoardViewAssigneeColumn = JiraBoardViewColumn & {
58638
58702
  __typename?: 'JiraBoardViewAssigneeColumn';
58703
+ canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
58639
58704
  collapsed?: Maybe<Scalars['Boolean']['output']>;
58640
58705
  id: Scalars['ID']['output'];
58641
58706
  user?: Maybe<User>;
@@ -58658,11 +58723,13 @@ export declare type JiraBoardViewCardOptionEdge = {
58658
58723
  };
58659
58724
  export declare type JiraBoardViewCategoryColumn = JiraBoardViewColumn & {
58660
58725
  __typename?: 'JiraBoardViewCategoryColumn';
58726
+ canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
58661
58727
  category?: Maybe<JiraOption>;
58662
58728
  collapsed?: Maybe<Scalars['Boolean']['output']>;
58663
58729
  id: Scalars['ID']['output'];
58664
58730
  };
58665
58731
  export declare type JiraBoardViewColumn = {
58732
+ canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
58666
58733
  collapsed?: Maybe<Scalars['Boolean']['output']>;
58667
58734
  id: Scalars['ID']['output'];
58668
58735
  };
@@ -58691,6 +58758,7 @@ export declare type JiraBoardViewInput = {
58691
58758
  };
58692
58759
  export declare type JiraBoardViewPriorityColumn = JiraBoardViewColumn & {
58693
58760
  __typename?: 'JiraBoardViewPriorityColumn';
58761
+ canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
58694
58762
  collapsed?: Maybe<Scalars['Boolean']['output']>;
58695
58763
  id: Scalars['ID']['output'];
58696
58764
  priority?: Maybe<JiraPriority>;
@@ -58710,6 +58778,7 @@ export declare type JiraBoardViewSettings = {
58710
58778
  };
58711
58779
  export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
58712
58780
  __typename?: 'JiraBoardViewStatusColumn';
58781
+ canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
58713
58782
  collapsed?: Maybe<Scalars['Boolean']['output']>;
58714
58783
  id: Scalars['ID']['output'];
58715
58784
  name?: Maybe<Scalars['String']['output']>;
@@ -75039,7 +75108,8 @@ export declare type JiraViewScopeInput = {
75039
75108
  };
75040
75109
  export declare enum JiraVisibilityControlMechanism {
75041
75110
  AppAccessRules = "AppAccessRules",
75042
- DisplayConditions = "DisplayConditions"
75111
+ DisplayConditions = "DisplayConditions",
75112
+ UnlicensedAccess = "UnlicensedAccess"
75043
75113
  }
75044
75114
  export declare type JiraVote = {
75045
75115
  __typename?: 'JiraVote';
@@ -76962,6 +77032,15 @@ export declare enum KnowledgeDiscoveryKeyPhraseInputTextFormat {
76962
77032
  Plain = "PLAIN"
76963
77033
  }
76964
77034
  export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPhraseConnection | QueryError;
77035
+ export declare type KnowledgeDiscoveryMarkZeroQueryInteractedInput = {
77036
+ cloudId: Scalars['String']['input'];
77037
+ query: Scalars['String']['input'];
77038
+ };
77039
+ export declare type KnowledgeDiscoveryMarkZeroQueryInteractedPayload = Payload & {
77040
+ __typename?: 'KnowledgeDiscoveryMarkZeroQueryInteractedPayload';
77041
+ errors?: Maybe<Array<MutationError>>;
77042
+ success: Scalars['Boolean']['output'];
77043
+ };
76965
77044
  export declare type KnowledgeDiscoveryMetadata = {
76966
77045
  numberOfRecentDocuments?: InputMaybe<Scalars['Int']['input']>;
76967
77046
  };
@@ -76973,6 +77052,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
76973
77052
  createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
76974
77053
  deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
76975
77054
  dismissBookmarkSuggestion?: Maybe<KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionPayload>;
77055
+ markZeroQueryInteracted?: Maybe<KnowledgeDiscoveryMarkZeroQueryInteractedPayload>;
76976
77056
  updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
76977
77057
  updateRelatedEntities?: Maybe<KnowledgeDiscoveryUpdateRelatedEntitiesPayload>;
76978
77058
  updateUserKeyPhraseInteraction?: Maybe<KnowledgeDiscoveryUpdateUserKeyPhraseInteractionPayload>;
@@ -76995,6 +77075,9 @@ export declare type KnowledgeDiscoveryMutationApiDeleteBookmarksArgs = {
76995
77075
  export declare type KnowledgeDiscoveryMutationApiDismissBookmarkSuggestionArgs = {
76996
77076
  input: KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput;
76997
77077
  };
77078
+ export declare type KnowledgeDiscoveryMutationApiMarkZeroQueryInteractedArgs = {
77079
+ input: KnowledgeDiscoveryMarkZeroQueryInteractedInput;
77080
+ };
76998
77081
  export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
76999
77082
  input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
77000
77083
  };
@@ -77276,9 +77359,19 @@ export declare type KnowledgeDiscoveryUsers = {
77276
77359
  };
77277
77360
  export declare type KnowledgeDiscoveryZeroQueries = {
77278
77361
  __typename?: 'KnowledgeDiscoveryZeroQueries';
77279
- zeroQueries?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
77362
+ zeroQueries?: Maybe<Array<KnowledgeDiscoveryZeroQuery>>;
77280
77363
  };
77281
77364
  export declare type KnowledgeDiscoveryZeroQueriesResult = KnowledgeDiscoveryZeroQueries | QueryError;
77365
+ export declare type KnowledgeDiscoveryZeroQuery = {
77366
+ __typename?: 'KnowledgeDiscoveryZeroQuery';
77367
+ query: Scalars['String']['output'];
77368
+ type: KnowledgeDiscoveryZeroQueryType;
77369
+ };
77370
+ export declare enum KnowledgeDiscoveryZeroQueryType {
77371
+ RecentWork = "RECENT_WORK",
77372
+ RelatedQuestion = "RELATED_QUESTION",
77373
+ WhoIs = "WHO_IS"
77374
+ }
77282
77375
  export declare enum KnowledgeGraphContentType {
77283
77376
  Blogpost = "BLOGPOST",
77284
77377
  Page = "PAGE"
@@ -81114,7 +81207,7 @@ export declare type MercuryFocusAreaChangeRequirements = {
81114
81207
  };
81115
81208
  export declare type MercuryFocusAreaChangeSummary = {
81116
81209
  __typename?: 'MercuryFocusAreaChangeSummary';
81117
- focusAreaId: Scalars['ID']['output'];
81210
+ focusAreaId?: Maybe<Scalars['ID']['output']>;
81118
81211
  fundChangeSummary?: Maybe<MercuryFocusAreaFundChangeSummary>;
81119
81212
  positionChangeSummary?: Maybe<MercuryFocusAreaPositionChangeSummary>;
81120
81213
  strategicEventId: Scalars['ID']['output'];
@@ -81134,6 +81227,7 @@ export declare type MercuryFocusAreaFundChangeSummary = {
81134
81227
  __typename?: 'MercuryFocusAreaFundChangeSummary';
81135
81228
  laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
81136
81229
  nonLaborAmount?: Maybe<Scalars['BigDecimal']['output']>;
81230
+ totalAmount?: Maybe<Scalars['BigDecimal']['output']>;
81137
81231
  };
81138
81232
  export declare type MercuryFocusAreaGoalLink = Node & {
81139
81233
  __typename?: 'MercuryFocusAreaGoalLink';
@@ -81209,7 +81303,9 @@ export declare type MercuryFocusAreaPositionChangeSummary = {
81209
81303
  movedInCount?: Maybe<Scalars['Int']['output']>;
81210
81304
  movedOutCount?: Maybe<Scalars['Int']['output']>;
81211
81305
  movedWithinCount?: Maybe<Scalars['Int']['output']>;
81306
+ netCount?: Maybe<Scalars['Int']['output']>;
81212
81307
  newCount?: Maybe<Scalars['Int']['output']>;
81308
+ totalCount?: Maybe<Scalars['Int']['output']>;
81213
81309
  };
81214
81310
  export declare type MercuryFocusAreaSort = {
81215
81311
  field?: InputMaybe<MercuryFocusAreaSortField>;
@@ -82456,6 +82552,7 @@ export declare type MercuryStrategicEventsQueryApi = {
82456
82552
  changeSummaryByFocusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaChangeSummary>>>;
82457
82553
  changeSummaryByFocusAreaIds?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
82458
82554
  changeSummaryForChangeProposal?: Maybe<MercuryChangeSummaryForChangeProposal>;
82555
+ changeSummaryForStrategicEvent?: Maybe<MercuryFocusAreaChangeSummary>;
82459
82556
  changeSummaryInternal?: Maybe<Array<Maybe<MercuryChangeSummary>>>;
82460
82557
  changes?: Maybe<Array<Maybe<MercuryChange>>>;
82461
82558
  changesByPositionIds?: Maybe<Array<Maybe<MercuryChange>>>;
@@ -82499,6 +82596,9 @@ export declare type MercuryStrategicEventsQueryApiChangeSummaryByFocusAreaIdsArg
82499
82596
  export declare type MercuryStrategicEventsQueryApiChangeSummaryForChangeProposalArgs = {
82500
82597
  changeProposalId: Scalars['ID']['input'];
82501
82598
  };
82599
+ export declare type MercuryStrategicEventsQueryApiChangeSummaryForStrategicEventArgs = {
82600
+ strategicEventId?: InputMaybe<Scalars['ID']['input']>;
82601
+ };
82502
82602
  export declare type MercuryStrategicEventsQueryApiChangeSummaryInternalArgs = {
82503
82603
  inputs: Array<MercuryChangeSummaryInput>;
82504
82604
  };
@@ -83083,6 +83183,8 @@ export declare type Mutation = {
83083
83183
  addLabels?: Maybe<AddLabelsPayload>;
83084
83184
  addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
83085
83185
  addReaction?: Maybe<SaveReactionResponse>;
83186
+ admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
83187
+ admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
83086
83188
  agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
83087
83189
  agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
83088
83190
  agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
@@ -83116,6 +83218,7 @@ export declare type Mutation = {
83116
83218
  channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
83117
83219
  channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
83118
83220
  channelPlatform_deleteQueues?: Maybe<ChannelPlatformMutationStatus>;
83221
+ channelPlatform_performPluginAction?: Maybe<ChannelPlatformPluginActionResponse>;
83119
83222
  clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
83120
83223
  compass?: Maybe<CompassCatalogMutationApi>;
83121
83224
  completeSprint?: Maybe<CompleteSprintResponse>;
@@ -83496,6 +83599,7 @@ export declare type Mutation = {
83496
83599
  knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionMutationResponse;
83497
83600
  knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
83498
83601
  likeContent?: Maybe<LikeContentPayload>;
83602
+ loom_spaceCreate?: Maybe<LoomSpace>;
83499
83603
  markCommentsAsRead?: Maybe<MarkCommentsAsReadPayload>;
83500
83604
  markFeatureDiscovered?: Maybe<FeatureDiscoveryPayload>;
83501
83605
  marketplaceConsole: MarketplaceConsoleMutationApi;
@@ -83602,10 +83706,26 @@ export declare type Mutation = {
83602
83706
  shareResource?: Maybe<ShareResourcePayload>;
83603
83707
  shepherd?: Maybe<ShepherdMutation>;
83604
83708
  softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
83709
+ spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
83605
83710
  spf_attachRelatedContent?: Maybe<SpfAttachRelatedContentPayload>;
83711
+ spf_createAsk?: Maybe<SpfCreateAskPayload>;
83712
+ spf_createAskComment?: Maybe<SpfCreateAskCommentPayload>;
83606
83713
  spf_createComment?: Maybe<SpfCreateCommentPayload>;
83607
83714
  spf_createDependency?: Maybe<SpfCreateDependencyPayload>;
83715
+ spf_deleteAsk?: Maybe<SpfDeleteAskPayload>;
83608
83716
  spf_deleteDependency?: Maybe<SpfDeleteDependencyPayload>;
83717
+ spf_updateAskComment?: Maybe<SpfUpdateAskCommentPayload>;
83718
+ spf_updateAskDescription?: Maybe<SpfUpdateAskPayload>;
83719
+ spf_updateAskImpactedWork?: Maybe<SpfUpdateAskPayload>;
83720
+ spf_updateAskJustification?: Maybe<SpfUpdateAskPayload>;
83721
+ spf_updateAskName?: Maybe<SpfUpdateAskPayload>;
83722
+ spf_updateAskOwner?: Maybe<SpfUpdateAskPayload>;
83723
+ spf_updateAskPriority?: Maybe<SpfUpdateAskPayload>;
83724
+ spf_updateAskReceivingTeam?: Maybe<SpfUpdateAskPayload>;
83725
+ spf_updateAskStatus?: Maybe<SpfUpdateAskPayload>;
83726
+ spf_updateAskSubmitter?: Maybe<SpfUpdateAskPayload>;
83727
+ spf_updateAskSubmittingTeam?: Maybe<SpfUpdateAskPayload>;
83728
+ spf_updateAskTargetDate?: Maybe<SpfUpdateAskPayload>;
83609
83729
  spf_updateComment?: Maybe<SpfUpdateCommentPayload>;
83610
83730
  spf_updateDependencyDescription?: Maybe<SpfUpdateDependencyPayload>;
83611
83731
  spf_updateDependencyImpactedWork?: Maybe<SpfUpdateDependencyPayload>;
@@ -83731,6 +83851,12 @@ export declare type MutationAddReactionArgs = {
83731
83851
  contentType: GraphQlReactionContentType;
83732
83852
  emojiId: Scalars['String']['input'];
83733
83853
  };
83854
+ export declare type MutationAdmin_CreateAccessUrlArgs = {
83855
+ resourceAri: Scalars['ID']['input'];
83856
+ };
83857
+ export declare type MutationAdmin_DeleteAccessUrlArgs = {
83858
+ id: Scalars['ID']['input'];
83859
+ };
83734
83860
  export declare type MutationAgentStudio_CreateAgentArgs = {
83735
83861
  cloudId: Scalars['String']['input'];
83736
83862
  input: AgentStudioCreateAgentInput;
@@ -83841,6 +83967,9 @@ export declare type MutationChannelPlatform_DeleteQueuesArgs = {
83841
83967
  id?: InputMaybe<Scalars['ID']['input']>;
83842
83968
  instanceId?: InputMaybe<Scalars['String']['input']>;
83843
83969
  };
83970
+ export declare type MutationChannelPlatform_PerformPluginActionArgs = {
83971
+ pluginActionRequest?: InputMaybe<ChannelPlatformPluginActionRequest>;
83972
+ };
83844
83973
  export declare type MutationClearRestrictionsForFreeArgs = {
83845
83974
  contentId: Scalars['ID']['input'];
83846
83975
  };
@@ -85047,6 +85176,12 @@ export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
85047
85176
  export declare type MutationLikeContentArgs = {
85048
85177
  input: LikeContentInput;
85049
85178
  };
85179
+ export declare type MutationLoom_SpaceCreateArgs = {
85180
+ analyticsSource?: InputMaybe<Scalars['String']['input']>;
85181
+ name: Scalars['String']['input'];
85182
+ privacy?: InputMaybe<LoomSpacePrivacyType>;
85183
+ siteId: Scalars['ID']['input'];
85184
+ };
85050
85185
  export declare type MutationMarkCommentsAsReadArgs = {
85051
85186
  input: MarkCommentsAsReadInput;
85052
85187
  };
@@ -85361,18 +85496,66 @@ export declare type MutationShareResourceArgs = {
85361
85496
  export declare type MutationSoftDeleteSpaceArgs = {
85362
85497
  spaceKey: Scalars['String']['input'];
85363
85498
  };
85499
+ export declare type MutationSpf_AttachAskLinkArgs = {
85500
+ input: SpfAttachAskLinkInput;
85501
+ };
85364
85502
  export declare type MutationSpf_AttachRelatedContentArgs = {
85365
85503
  input: SpfAttachRelatedContentInput;
85366
85504
  };
85505
+ export declare type MutationSpf_CreateAskArgs = {
85506
+ input: SpfCreateAskInput;
85507
+ };
85508
+ export declare type MutationSpf_CreateAskCommentArgs = {
85509
+ input: SpfCreateAskCommentInput;
85510
+ };
85367
85511
  export declare type MutationSpf_CreateCommentArgs = {
85368
85512
  input: SpfCreateCommentInput;
85369
85513
  };
85370
85514
  export declare type MutationSpf_CreateDependencyArgs = {
85371
85515
  input: SpfCreateDependencyInput;
85372
85516
  };
85517
+ export declare type MutationSpf_DeleteAskArgs = {
85518
+ input: SpfDeleteAskInput;
85519
+ };
85373
85520
  export declare type MutationSpf_DeleteDependencyArgs = {
85374
85521
  input: SpfDeleteDependencyInput;
85375
85522
  };
85523
+ export declare type MutationSpf_UpdateAskCommentArgs = {
85524
+ input: SpfUpdateAskCommentDataInput;
85525
+ };
85526
+ export declare type MutationSpf_UpdateAskDescriptionArgs = {
85527
+ input: SpfUpdateAskDescriptionInput;
85528
+ };
85529
+ export declare type MutationSpf_UpdateAskImpactedWorkArgs = {
85530
+ input: SpfUpdateAskImpactedWorkInput;
85531
+ };
85532
+ export declare type MutationSpf_UpdateAskJustificationArgs = {
85533
+ input: SpfUpdateAskJustificationInput;
85534
+ };
85535
+ export declare type MutationSpf_UpdateAskNameArgs = {
85536
+ input: SpfUpdateAskNameInput;
85537
+ };
85538
+ export declare type MutationSpf_UpdateAskOwnerArgs = {
85539
+ input: SpfUpdateAskOwnerInput;
85540
+ };
85541
+ export declare type MutationSpf_UpdateAskPriorityArgs = {
85542
+ input: SpfUpdateAskPriorityInput;
85543
+ };
85544
+ export declare type MutationSpf_UpdateAskReceivingTeamArgs = {
85545
+ input: SpfUpdateAskReceivingTeamInput;
85546
+ };
85547
+ export declare type MutationSpf_UpdateAskStatusArgs = {
85548
+ input: SpfUpdateAskStatusInput;
85549
+ };
85550
+ export declare type MutationSpf_UpdateAskSubmitterArgs = {
85551
+ input: SpfUpdateAskSubmitterInput;
85552
+ };
85553
+ export declare type MutationSpf_UpdateAskSubmittingTeamArgs = {
85554
+ input: SpfUpdateAskSubmittingTeamInput;
85555
+ };
85556
+ export declare type MutationSpf_UpdateAskTargetDateArgs = {
85557
+ input: SpfUpdateAskTargetDateInput;
85558
+ };
85376
85559
  export declare type MutationSpf_UpdateCommentArgs = {
85377
85560
  input: SpfUpdateCommentDataInput;
85378
85561
  };
@@ -88051,6 +88234,7 @@ export declare type PolarisWhiteboardConfig = {
88051
88234
  export declare type PopularFeedItem = {
88052
88235
  __typename?: 'PopularFeedItem';
88053
88236
  content?: Maybe<Content>;
88237
+ id: Scalars['ID']['output'];
88054
88238
  };
88055
88239
  export declare type PopularFeedItemEdge = {
88056
88240
  __typename?: 'PopularFeedItemEdge';
@@ -88437,6 +88621,7 @@ export declare type Query = {
88437
88621
  adminAnnouncementBannerSettings?: Maybe<Array<Maybe<ConfluenceAdminAnnouncementBannerSetting>>>;
88438
88622
  adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
88439
88623
  adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
88624
+ admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
88440
88625
  agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
88441
88626
  agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
88442
88627
  agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
@@ -89034,6 +89219,8 @@ export declare type Query = {
89034
89219
  pricings: ContentPlatformPricingSearchConnection;
89035
89220
  productListing?: Maybe<ProductListingResult>;
89036
89221
  productListings: Array<ProductListingResult>;
89222
+ projects_byAri?: Maybe<TownsquareProject>;
89223
+ projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
89037
89224
  ptpage?: Maybe<PtPage>;
89038
89225
  publicLinkInformation?: Maybe<PublicLinkInformation>;
89039
89226
  publicLinkOnboardingReference?: Maybe<PublicLinkOnboardingReference>;
@@ -89106,6 +89293,9 @@ export declare type Query = {
89106
89293
  spaceWatchers?: Maybe<PaginatedPersonList>;
89107
89294
  spaces?: Maybe<PaginatedSpaceList>;
89108
89295
  spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
89296
+ spf_ask?: Maybe<SpfAskResult>;
89297
+ spf_asks?: Maybe<SpfAskConnection>;
89298
+ spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
89109
89299
  spf_dependencies?: Maybe<SpfDependencyConnection>;
89110
89300
  spf_dependenciesByIds?: Maybe<Array<Maybe<SpfDependency>>>;
89111
89301
  spf_dependency?: Maybe<SpfDependencyResult>;
@@ -89178,6 +89368,13 @@ export declare type QueryAdminAnnouncementBannerSettingsByCriteriaArgs = {
89178
89368
  isAscending?: InputMaybe<Scalars['Boolean']['input']>;
89179
89369
  orderBy?: InputMaybe<AdminAnnouncementBannerSettingsByCriteriaOrder>;
89180
89370
  };
89371
+ export declare type QueryAdmin_AccessUrlsArgs = {
89372
+ after?: InputMaybe<Scalars['String']['input']>;
89373
+ before?: InputMaybe<Scalars['String']['input']>;
89374
+ first?: InputMaybe<Scalars['Int']['input']>;
89375
+ last?: InputMaybe<Scalars['Int']['input']>;
89376
+ orgId: Scalars['ID']['input'];
89377
+ };
89181
89378
  export declare type QueryAgentAi_ContextPanelArgs = {
89182
89379
  cloudId: Scalars['ID']['input'];
89183
89380
  issueId?: InputMaybe<Scalars['String']['input']>;
@@ -91554,6 +91751,12 @@ export declare type QueryProductListingsArgs = {
91554
91751
  ids: Array<Scalars['ID']['input']>;
91555
91752
  locales?: InputMaybe<Array<Scalars['ID']['input']>>;
91556
91753
  };
91754
+ export declare type QueryProjects_ByAriArgs = {
91755
+ ari: Scalars['String']['input'];
91756
+ };
91757
+ export declare type QueryProjects_ByArisArgs = {
91758
+ aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
91759
+ };
91557
91760
  export declare type QueryPtpageArgs = {
91558
91761
  enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
91559
91762
  id?: InputMaybe<Scalars['ID']['input']>;
@@ -91636,6 +91839,7 @@ export declare type QueryRadar_PositionsByEntitySearchArgs = {
91636
91839
  cloudId: Scalars['ID']['input'];
91637
91840
  entity: RadarPositionsByEntityType;
91638
91841
  first?: InputMaybe<Scalars['Int']['input']>;
91842
+ input?: InputMaybe<RadarPositionsByEntityInput>;
91639
91843
  last?: InputMaybe<Scalars['Int']['input']>;
91640
91844
  rql?: InputMaybe<Scalars['String']['input']>;
91641
91845
  };
@@ -91872,6 +92076,18 @@ export declare type QuerySpacesArgs = {
91872
92076
  export declare type QuerySpacesWithExemptionsArgs = {
91873
92077
  spaceIds?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
91874
92078
  };
92079
+ export declare type QuerySpf_AskArgs = {
92080
+ id: Scalars['ID']['input'];
92081
+ };
92082
+ export declare type QuerySpf_AsksArgs = {
92083
+ after?: InputMaybe<Scalars['String']['input']>;
92084
+ cloudId: Scalars['ID']['input'];
92085
+ first?: InputMaybe<Scalars['Int']['input']>;
92086
+ q?: InputMaybe<Scalars['String']['input']>;
92087
+ };
92088
+ export declare type QuerySpf_AsksByIdsArgs = {
92089
+ ids: Array<Scalars['ID']['input']>;
92090
+ };
91875
92091
  export declare type QuerySpf_DependenciesArgs = {
91876
92092
  after?: InputMaybe<Scalars['String']['input']>;
91877
92093
  cloudId: Scalars['ID']['input'];
@@ -92513,8 +92729,13 @@ export declare type RadarPositionsByEntityEdge = RadarEdge & {
92513
92729
  cursor: Scalars['String']['output'];
92514
92730
  node: RadarPositionsByEntity;
92515
92731
  };
92732
+ export declare type RadarPositionsByEntityInput = {
92733
+ entity: RadarPositionsByEntityType;
92734
+ fieldValue?: InputMaybe<Scalars['ID']['input']>;
92735
+ };
92516
92736
  export declare enum RadarPositionsByEntityType {
92517
- FocusArea = "focusArea"
92737
+ FocusArea = "focusArea",
92738
+ Position = "position"
92518
92739
  }
92519
92740
  export declare type RadarPrincipalByResourceRole = {
92520
92741
  __typename?: 'RadarPrincipalByResourceRole';
@@ -94343,6 +94564,7 @@ export declare type SearchAnalyticsInput = {
94343
94564
  queryVersion?: InputMaybe<Scalars['Int']['input']>;
94344
94565
  searchReferrerId?: InputMaybe<Scalars['String']['input']>;
94345
94566
  searchSessionId?: InputMaybe<Scalars['String']['input']>;
94567
+ sessionId?: InputMaybe<Scalars['String']['input']>;
94346
94568
  sourceProduct?: InputMaybe<Scalars['String']['input']>;
94347
94569
  };
94348
94570
  export declare type SearchBoardFilter = {
@@ -97985,6 +98207,137 @@ export declare type SpaceWithExemption = {
97985
98207
  status?: Maybe<Scalars['String']['output']>;
97986
98208
  type?: Maybe<Scalars['String']['output']>;
97987
98209
  };
98210
+ export declare type SpfAsk = Node & {
98211
+ __typename?: 'SpfAsk';
98212
+ comments?: Maybe<SpfAskCommentConnection>;
98213
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
98214
+ createdBy?: Maybe<User>;
98215
+ createdByUserId?: Maybe<Scalars['String']['output']>;
98216
+ description?: Maybe<Scalars['String']['output']>;
98217
+ id: Scalars['ID']['output'];
98218
+ impactedWork?: Maybe<SpfImpactedWork>;
98219
+ impactedWorkId?: Maybe<Scalars['String']['output']>;
98220
+ justification?: Maybe<Scalars['String']['output']>;
98221
+ links?: Maybe<SpfAskLinkConnection>;
98222
+ name: Scalars['String']['output'];
98223
+ owner?: Maybe<User>;
98224
+ ownerId?: Maybe<Scalars['String']['output']>;
98225
+ priority: SpfAskPriority;
98226
+ receivingTeam?: Maybe<TeamV2>;
98227
+ receivingTeamId?: Maybe<Scalars['String']['output']>;
98228
+ status: SpfAskStatus;
98229
+ submitter?: Maybe<User>;
98230
+ submitterId: Scalars['String']['output'];
98231
+ submittingTeam?: Maybe<TeamV2>;
98232
+ submittingTeamId?: Maybe<Scalars['String']['output']>;
98233
+ targetDate?: Maybe<SpfAskTargetDate>;
98234
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
98235
+ updatedBy?: Maybe<User>;
98236
+ updatedByUserId?: Maybe<Scalars['String']['output']>;
98237
+ };
98238
+ export declare type SpfAskCommentsArgs = {
98239
+ after?: InputMaybe<Scalars['String']['input']>;
98240
+ first?: InputMaybe<Scalars['Int']['input']>;
98241
+ q?: InputMaybe<Scalars['String']['input']>;
98242
+ };
98243
+ export declare type SpfAskLinksArgs = {
98244
+ after?: InputMaybe<Scalars['String']['input']>;
98245
+ first?: InputMaybe<Scalars['Int']['input']>;
98246
+ q?: InputMaybe<Scalars['String']['input']>;
98247
+ };
98248
+ export declare type SpfAskComment = {
98249
+ __typename?: 'SpfAskComment';
98250
+ askId: Scalars['String']['output'];
98251
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
98252
+ createdByUserId?: Maybe<Scalars['String']['output']>;
98253
+ data: Scalars['String']['output'];
98254
+ id: Scalars['ID']['output'];
98255
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
98256
+ };
98257
+ export declare type SpfAskCommentConnection = {
98258
+ __typename?: 'SpfAskCommentConnection';
98259
+ edges?: Maybe<Array<Maybe<SpfAskCommentEdge>>>;
98260
+ pageInfo: PageInfo;
98261
+ totalCount?: Maybe<Scalars['Int']['output']>;
98262
+ };
98263
+ export declare type SpfAskCommentEdge = {
98264
+ __typename?: 'SpfAskCommentEdge';
98265
+ cursor: Scalars['String']['output'];
98266
+ node?: Maybe<SpfAskCommentResult>;
98267
+ };
98268
+ export declare type SpfAskCommentResult = QueryError | SpfAskComment;
98269
+ export declare type SpfAskConnection = {
98270
+ __typename?: 'SpfAskConnection';
98271
+ edges?: Maybe<Array<Maybe<SpfAskEdge>>>;
98272
+ pageInfo: PageInfo;
98273
+ totalCount?: Maybe<Scalars['Int']['output']>;
98274
+ };
98275
+ export declare type SpfAskEdge = {
98276
+ __typename?: 'SpfAskEdge';
98277
+ cursor: Scalars['String']['output'];
98278
+ node?: Maybe<SpfAskResult>;
98279
+ };
98280
+ export declare type SpfAskLink = {
98281
+ __typename?: 'SpfAskLink';
98282
+ askId: Scalars['String']['output'];
98283
+ attachedByUserId?: Maybe<Scalars['String']['output']>;
98284
+ attachedDateTime?: Maybe<Scalars['DateTime']['output']>;
98285
+ id: Scalars['ID']['output'];
98286
+ url: Scalars['URL']['output'];
98287
+ };
98288
+ export declare type SpfAskLinkConnection = {
98289
+ __typename?: 'SpfAskLinkConnection';
98290
+ edges?: Maybe<Array<Maybe<SpfAskLinkEdge>>>;
98291
+ pageInfo: PageInfo;
98292
+ totalCount?: Maybe<Scalars['Int']['output']>;
98293
+ };
98294
+ export declare type SpfAskLinkEdge = {
98295
+ __typename?: 'SpfAskLinkEdge';
98296
+ cursor: Scalars['String']['output'];
98297
+ node?: Maybe<SpfAskLinkResult>;
98298
+ };
98299
+ export declare type SpfAskLinkResult = QueryError | SpfAskLink;
98300
+ export declare enum SpfAskPriority {
98301
+ Critical = "CRITICAL",
98302
+ High = "HIGH",
98303
+ Highest = "HIGHEST",
98304
+ Low = "LOW",
98305
+ Medium = "MEDIUM"
98306
+ }
98307
+ export declare type SpfAskResult = QueryError | SpfAsk;
98308
+ export declare enum SpfAskStatus {
98309
+ Accepted = "ACCEPTED",
98310
+ Canceled = "CANCELED",
98311
+ Denied = "DENIED",
98312
+ Draft = "DRAFT",
98313
+ InReview = "IN_REVIEW",
98314
+ Revising = "REVISING",
98315
+ Submitted = "SUBMITTED"
98316
+ }
98317
+ export declare type SpfAskTargetDate = {
98318
+ __typename?: 'SpfAskTargetDate';
98319
+ targetDate?: Maybe<Scalars['String']['output']>;
98320
+ targetDateType?: Maybe<SpfAskTargetDateType>;
98321
+ };
98322
+ export declare type SpfAskTargetDateInput = {
98323
+ targetDate: Scalars['String']['input'];
98324
+ targetDateType: SpfAskTargetDateType;
98325
+ };
98326
+ export declare enum SpfAskTargetDateType {
98327
+ Day = "DAY",
98328
+ Month = "MONTH",
98329
+ Quarter = "QUARTER"
98330
+ }
98331
+ export declare type SpfAttachAskLinkInput = {
98332
+ askId: Scalars['ID']['input'];
98333
+ url: Scalars['URL']['input'];
98334
+ };
98335
+ export declare type SpfAttachAskLinkPayload = Payload & {
98336
+ __typename?: 'SpfAttachAskLinkPayload';
98337
+ errors?: Maybe<Array<MutationError>>;
98338
+ link?: Maybe<SpfAskLink>;
98339
+ success: Scalars['Boolean']['output'];
98340
+ };
97988
98341
  export declare type SpfAttachRelatedContentInput = {
97989
98342
  dependencyId: Scalars['ID']['input'];
97990
98343
  url: Scalars['URL']['input'];
@@ -98016,6 +98369,36 @@ export declare type SpfCommentEdge = {
98016
98369
  node?: Maybe<SpfCommentResult>;
98017
98370
  };
98018
98371
  export declare type SpfCommentResult = QueryError | SpfComment;
98372
+ export declare type SpfCreateAskCommentInput = {
98373
+ askId: Scalars['ID']['input'];
98374
+ data: Scalars['String']['input'];
98375
+ };
98376
+ export declare type SpfCreateAskCommentPayload = Payload & {
98377
+ __typename?: 'SpfCreateAskCommentPayload';
98378
+ comment?: Maybe<SpfAskComment>;
98379
+ errors?: Maybe<Array<MutationError>>;
98380
+ success: Scalars['Boolean']['output'];
98381
+ };
98382
+ export declare type SpfCreateAskInput = {
98383
+ cloudId: Scalars['ID']['input'];
98384
+ description?: InputMaybe<Scalars['String']['input']>;
98385
+ impactedWorkId?: InputMaybe<Scalars['String']['input']>;
98386
+ justification?: InputMaybe<Scalars['String']['input']>;
98387
+ name: Scalars['String']['input'];
98388
+ ownerId?: InputMaybe<Scalars['String']['input']>;
98389
+ priority: SpfAskPriority;
98390
+ receivingTeamId?: InputMaybe<Scalars['String']['input']>;
98391
+ status: SpfAskStatus;
98392
+ submitterId: Scalars['String']['input'];
98393
+ submittingTeamId?: InputMaybe<Scalars['String']['input']>;
98394
+ targetDate?: InputMaybe<SpfAskTargetDateInput>;
98395
+ };
98396
+ export declare type SpfCreateAskPayload = Payload & {
98397
+ __typename?: 'SpfCreateAskPayload';
98398
+ ask?: Maybe<SpfAsk>;
98399
+ errors?: Maybe<Array<MutationError>>;
98400
+ success: Scalars['Boolean']['output'];
98401
+ };
98019
98402
  export declare type SpfCreateCommentInput = {
98020
98403
  data: Scalars['String']['input'];
98021
98404
  dependencyId: Scalars['ID']['input'];
@@ -98046,6 +98429,15 @@ export declare type SpfCreateDependencyPayload = Payload & {
98046
98429
  errors?: Maybe<Array<MutationError>>;
98047
98430
  success: Scalars['Boolean']['output'];
98048
98431
  };
98432
+ export declare type SpfDeleteAskInput = {
98433
+ id: Scalars['ID']['input'];
98434
+ };
98435
+ export declare type SpfDeleteAskPayload = Payload & {
98436
+ __typename?: 'SpfDeleteAskPayload';
98437
+ errors?: Maybe<Array<MutationError>>;
98438
+ id: Scalars['ID']['output'];
98439
+ success: Scalars['Boolean']['output'];
98440
+ };
98049
98441
  export declare type SpfDeleteDependencyInput = {
98050
98442
  id: Scalars['ID']['input'];
98051
98443
  };
@@ -98155,6 +98547,66 @@ export declare enum SpfTargetDateType {
98155
98547
  Month = "MONTH",
98156
98548
  Quarter = "QUARTER"
98157
98549
  }
98550
+ export declare type SpfUpdateAskCommentDataInput = {
98551
+ data: Scalars['String']['input'];
98552
+ id: Scalars['ID']['input'];
98553
+ };
98554
+ export declare type SpfUpdateAskCommentPayload = Payload & {
98555
+ __typename?: 'SpfUpdateAskCommentPayload';
98556
+ comment?: Maybe<SpfAskComment>;
98557
+ errors?: Maybe<Array<MutationError>>;
98558
+ success: Scalars['Boolean']['output'];
98559
+ };
98560
+ export declare type SpfUpdateAskDescriptionInput = {
98561
+ description?: InputMaybe<Scalars['String']['input']>;
98562
+ id: Scalars['ID']['input'];
98563
+ };
98564
+ export declare type SpfUpdateAskImpactedWorkInput = {
98565
+ id: Scalars['ID']['input'];
98566
+ impactedWorkId?: InputMaybe<Scalars['String']['input']>;
98567
+ };
98568
+ export declare type SpfUpdateAskJustificationInput = {
98569
+ id: Scalars['ID']['input'];
98570
+ justification?: InputMaybe<Scalars['String']['input']>;
98571
+ };
98572
+ export declare type SpfUpdateAskNameInput = {
98573
+ id: Scalars['ID']['input'];
98574
+ name: Scalars['String']['input'];
98575
+ };
98576
+ export declare type SpfUpdateAskOwnerInput = {
98577
+ id: Scalars['ID']['input'];
98578
+ ownerId?: InputMaybe<Scalars['String']['input']>;
98579
+ };
98580
+ export declare type SpfUpdateAskPayload = Payload & {
98581
+ __typename?: 'SpfUpdateAskPayload';
98582
+ ask?: Maybe<SpfAsk>;
98583
+ errors?: Maybe<Array<MutationError>>;
98584
+ success: Scalars['Boolean']['output'];
98585
+ };
98586
+ export declare type SpfUpdateAskPriorityInput = {
98587
+ id: Scalars['ID']['input'];
98588
+ priority: SpfAskPriority;
98589
+ };
98590
+ export declare type SpfUpdateAskReceivingTeamInput = {
98591
+ id: Scalars['ID']['input'];
98592
+ receivingTeamId?: InputMaybe<Scalars['String']['input']>;
98593
+ };
98594
+ export declare type SpfUpdateAskStatusInput = {
98595
+ id: Scalars['ID']['input'];
98596
+ status: SpfAskStatus;
98597
+ };
98598
+ export declare type SpfUpdateAskSubmitterInput = {
98599
+ id: Scalars['ID']['input'];
98600
+ submitterId: Scalars['String']['input'];
98601
+ };
98602
+ export declare type SpfUpdateAskSubmittingTeamInput = {
98603
+ id: Scalars['ID']['input'];
98604
+ submittingTeamId?: InputMaybe<Scalars['String']['input']>;
98605
+ };
98606
+ export declare type SpfUpdateAskTargetDateInput = {
98607
+ id: Scalars['ID']['input'];
98608
+ targetDate?: InputMaybe<SpfAskTargetDateInput>;
98609
+ };
98158
98610
  export declare type SpfUpdateCommentDataInput = {
98159
98611
  data: Scalars['String']['input'];
98160
98612
  id: Scalars['ID']['input'];