@forge/cli-shared 6.6.1-next.4 → 6.6.1-next.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.6.1-next.6
4
+
5
+ ### Patch Changes
6
+
7
+ - b3b1250: enable multiselect for XPA apps
8
+
9
+ ## 6.6.1-next.5
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [3302cc2]
14
+ - @forge/util@1.4.8-next.0
15
+
3
16
  ## 6.6.1-next.4
4
17
 
5
18
  ### Patch Changes
@@ -161,6 +161,7 @@ export declare type ActionsAction = {
161
161
  __typename?: 'ActionsAction';
162
162
  actionType: Scalars['String']['output'];
163
163
  actionVerb?: Maybe<Scalars['String']['output']>;
164
+ actionVersion?: Maybe<Scalars['String']['output']>;
164
165
  auth: Array<ActionsAuthType>;
165
166
  description?: Maybe<ActionsDescription>;
166
167
  enabledCapabilities?: Maybe<Array<Maybe<ActionsCapabilityType>>>;
@@ -263,6 +264,7 @@ export declare type ActionsActionableAppsFilter = {
263
264
  byActionId?: InputMaybe<Scalars['String']['input']>;
264
265
  byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
265
266
  byActionVerb?: InputMaybe<Array<Scalars['String']['input']>>;
267
+ byActionVersion?: InputMaybe<Scalars['String']['input']>;
266
268
  byCapability?: InputMaybe<Array<Scalars['String']['input']>>;
267
269
  byContextEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
268
270
  byEntityProperty?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -778,12 +780,21 @@ export declare type AgentStudioActionConfiguration = {
778
780
  __typename?: 'AgentStudioActionConfiguration';
779
781
  actions?: Maybe<Array<AgentStudioAction>>;
780
782
  };
783
+ export declare type AgentStudioActionConfigurationInput = {
784
+ actions?: InputMaybe<Array<AgentStudioActionInput>>;
785
+ };
786
+ export declare type AgentStudioActionInput = {
787
+ actionKey: Scalars['String']['input'];
788
+ };
781
789
  export declare type AgentStudioAgent = {
782
790
  description?: Maybe<Scalars['String']['output']>;
783
791
  id: Scalars['ID']['output'];
784
792
  name?: Maybe<Scalars['String']['output']>;
785
793
  };
786
794
  export declare type AgentStudioAgentResult = AgentStudioAssistant | QueryError;
795
+ export declare enum AgentStudioAgentType {
796
+ Assistant = "ASSISTANT"
797
+ }
787
798
  export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
788
799
  __typename?: 'AgentStudioAssistant';
789
800
  actions?: Maybe<AgentStudioActionConfiguration>;
@@ -792,8 +803,77 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
792
803
  description?: Maybe<Scalars['String']['output']>;
793
804
  id: Scalars['ID']['output'];
794
805
  instructions?: Maybe<Scalars['String']['output']>;
806
+ knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
795
807
  name?: Maybe<Scalars['String']['output']>;
796
808
  };
809
+ export declare type AgentStudioConfluenceKnowledgeFilter = {
810
+ __typename?: 'AgentStudioConfluenceKnowledgeFilter';
811
+ parentFilter?: Maybe<Array<Scalars['ID']['output']>>;
812
+ spaceFilter?: Maybe<Array<Scalars['ID']['output']>>;
813
+ };
814
+ export declare type AgentStudioConfluenceKnowledgeFilterInput = {
815
+ parentFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
816
+ spaceFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
817
+ };
818
+ export declare type AgentStudioCreateAgentInput = {
819
+ actions?: InputMaybe<AgentStudioActionConfigurationInput>;
820
+ agentType: AgentStudioAgentType;
821
+ conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
822
+ description?: InputMaybe<Scalars['String']['input']>;
823
+ instructions?: InputMaybe<Scalars['String']['input']>;
824
+ knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
825
+ name: Scalars['String']['input'];
826
+ };
827
+ export declare type AgentStudioCreateAgentPayload = Payload & {
828
+ __typename?: 'AgentStudioCreateAgentPayload';
829
+ agent?: Maybe<AgentStudioAgent>;
830
+ errors?: Maybe<Array<MutationError>>;
831
+ success: Scalars['Boolean']['output'];
832
+ };
833
+ export declare type AgentStudioJiraKnowledgeFilter = {
834
+ __typename?: 'AgentStudioJiraKnowledgeFilter';
835
+ projectFilter?: Maybe<Array<Scalars['ID']['output']>>;
836
+ };
837
+ export declare type AgentStudioJiraKnowledgeFilterInput = {
838
+ projectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
839
+ };
840
+ export declare type AgentStudioKnowledgeConfiguration = {
841
+ __typename?: 'AgentStudioKnowledgeConfiguration';
842
+ enabled?: Maybe<Scalars['Boolean']['output']>;
843
+ sources?: Maybe<Array<AgentStudioKnowledgeSource>>;
844
+ };
845
+ export declare type AgentStudioKnowledgeConfigurationInput = {
846
+ enabled?: InputMaybe<Scalars['Boolean']['input']>;
847
+ sources?: InputMaybe<Array<AgentStudioKnowledgeSourceInput>>;
848
+ };
849
+ export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter;
850
+ export declare type AgentStudioKnowledgeFiltersInput = {
851
+ confluenceFilter?: InputMaybe<AgentStudioConfluenceKnowledgeFilterInput>;
852
+ jiraFilter?: InputMaybe<AgentStudioJiraKnowledgeFilterInput>;
853
+ };
854
+ export declare type AgentStudioKnowledgeSource = {
855
+ __typename?: 'AgentStudioKnowledgeSource';
856
+ enabled?: Maybe<Scalars['Boolean']['output']>;
857
+ filters?: Maybe<AgentStudioKnowledgeFilter>;
858
+ source: Scalars['String']['output'];
859
+ };
860
+ export declare type AgentStudioKnowledgeSourceInput = {
861
+ enabled?: InputMaybe<Scalars['Boolean']['input']>;
862
+ filters?: InputMaybe<AgentStudioKnowledgeFiltersInput>;
863
+ source: Scalars['String']['input'];
864
+ };
865
+ export declare type AgentStudioUpdateAgentDetailsInput = {
866
+ creatorId?: InputMaybe<Scalars['ID']['input']>;
867
+ description?: InputMaybe<Scalars['String']['input']>;
868
+ instructions?: InputMaybe<Scalars['String']['input']>;
869
+ name?: InputMaybe<Scalars['String']['input']>;
870
+ };
871
+ export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
872
+ __typename?: 'AgentStudioUpdateAgentDetailsPayload';
873
+ agent?: Maybe<AgentStudioAgent>;
874
+ errors?: Maybe<Array<MutationError>>;
875
+ success: Scalars['Boolean']['output'];
876
+ };
797
877
  export declare enum AlertEventStatus {
798
878
  Acknowledged = "ACKNOWLEDGED",
799
879
  Closed = "CLOSED",
@@ -21145,6 +21225,7 @@ export declare type DevAiPhaseStartedAutodevLog = DevAiAutodevLog & {
21145
21225
  priority?: Maybe<DevAiAutodevLogPriority>;
21146
21226
  status?: Maybe<DevAiAutodevLogStatus>;
21147
21227
  timestamp?: Maybe<Scalars['DateTime']['output']>;
21228
+ userCommand?: Maybe<Scalars['String']['output']>;
21148
21229
  };
21149
21230
  export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
21150
21231
  __typename?: 'DevAiPlaintextAutodevLog';
@@ -22944,6 +23025,11 @@ export declare type EarliestViewViewedForUser = {
22944
23025
  datetime?: Maybe<Scalars['String']['output']>;
22945
23026
  };
22946
23027
  export declare type EcosystemApp = App | EcosystemConnectApp;
23028
+ export declare type EcosystemAppInstallationConfigExtension = {
23029
+ __typename?: 'EcosystemAppInstallationConfigExtension';
23030
+ key: Scalars['String']['output'];
23031
+ value: Scalars['Boolean']['output'];
23032
+ };
22947
23033
  export declare enum EcosystemAppInstallationConfigIdType {
22948
23034
  Cloud = "CLOUD",
22949
23035
  Installation = "INSTALLATION"
@@ -23616,6 +23702,7 @@ export declare type Extension = {
23616
23702
  environmentType: Scalars['String']['output'];
23617
23703
  id: Scalars['ID']['output'];
23618
23704
  installation?: Maybe<AppInstallationSummary>;
23705
+ installationConfig?: Maybe<Array<EcosystemAppInstallationConfigExtension>>;
23619
23706
  installationId: Scalars['String']['output'];
23620
23707
  key: Scalars['String']['output'];
23621
23708
  license?: Maybe<AppInstallationLicense>;
@@ -23623,6 +23710,7 @@ export declare type Extension = {
23623
23710
  migrationKey?: Maybe<Scalars['String']['output']>;
23624
23711
  name?: Maybe<Scalars['String']['output']>;
23625
23712
  oauthClientId: Scalars['ID']['output'];
23713
+ overrides?: Maybe<Scalars['JSON']['output']>;
23626
23714
  principal?: Maybe<AppPrincipal>;
23627
23715
  properties: Scalars['JSON']['output'];
23628
23716
  remoteInstallationRegion?: Maybe<Scalars['String']['output']>;
@@ -24106,6 +24194,97 @@ export declare type ExternalEntities = {
24106
24194
  workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
24107
24195
  worker?: Maybe<Array<Maybe<ExternalWorker>>>;
24108
24196
  };
24197
+ export declare type ExternalEntitiesV2ForHydration = {
24198
+ __typename?: 'ExternalEntitiesV2ForHydration';
24199
+ branch?: Maybe<Array<Maybe<ExternalBranch>>>;
24200
+ buildInfo?: Maybe<Array<Maybe<ExternalBuildInfo>>>;
24201
+ calendarEvent?: Maybe<Array<Maybe<ExternalCalendarEvent>>>;
24202
+ comment?: Maybe<Array<Maybe<ExternalComment>>>;
24203
+ commit?: Maybe<Array<Maybe<ExternalCommit>>>;
24204
+ conversation?: Maybe<Array<Maybe<ExternalConversation>>>;
24205
+ deployment?: Maybe<Array<Maybe<ExternalDeployment>>>;
24206
+ design?: Maybe<Array<Maybe<ExternalDesign>>>;
24207
+ document?: Maybe<Array<Maybe<ExternalDocument>>>;
24208
+ featureFlag?: Maybe<Array<Maybe<ExternalFeatureFlag>>>;
24209
+ message?: Maybe<Array<Maybe<ExternalMessage>>>;
24210
+ organisation?: Maybe<Array<Maybe<ExternalOrganisation>>>;
24211
+ position?: Maybe<Array<Maybe<ExternalPosition>>>;
24212
+ pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
24213
+ remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
24214
+ repository?: Maybe<Array<Maybe<ExternalRepository>>>;
24215
+ space?: Maybe<Array<Maybe<ExternalSpace>>>;
24216
+ video?: Maybe<Array<Maybe<ExternalVideo>>>;
24217
+ vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
24218
+ workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
24219
+ worker?: Maybe<Array<Maybe<ExternalWorker>>>;
24220
+ };
24221
+ export declare type ExternalEntitiesV2ForHydrationBranchArgs = {
24222
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24223
+ };
24224
+ export declare type ExternalEntitiesV2ForHydrationBuildInfoArgs = {
24225
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24226
+ };
24227
+ export declare type ExternalEntitiesV2ForHydrationCalendarEventArgs = {
24228
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24229
+ };
24230
+ export declare type ExternalEntitiesV2ForHydrationCommentArgs = {
24231
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24232
+ };
24233
+ export declare type ExternalEntitiesV2ForHydrationCommitArgs = {
24234
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24235
+ };
24236
+ export declare type ExternalEntitiesV2ForHydrationConversationArgs = {
24237
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24238
+ };
24239
+ export declare type ExternalEntitiesV2ForHydrationDeploymentArgs = {
24240
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24241
+ };
24242
+ export declare type ExternalEntitiesV2ForHydrationDesignArgs = {
24243
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24244
+ };
24245
+ export declare type ExternalEntitiesV2ForHydrationDocumentArgs = {
24246
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24247
+ };
24248
+ export declare type ExternalEntitiesV2ForHydrationFeatureFlagArgs = {
24249
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24250
+ };
24251
+ export declare type ExternalEntitiesV2ForHydrationMessageArgs = {
24252
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24253
+ };
24254
+ export declare type ExternalEntitiesV2ForHydrationOrganisationArgs = {
24255
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24256
+ };
24257
+ export declare type ExternalEntitiesV2ForHydrationPositionArgs = {
24258
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24259
+ };
24260
+ export declare type ExternalEntitiesV2ForHydrationPullRequestArgs = {
24261
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24262
+ };
24263
+ export declare type ExternalEntitiesV2ForHydrationRemoteLinkArgs = {
24264
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24265
+ };
24266
+ export declare type ExternalEntitiesV2ForHydrationRepositoryArgs = {
24267
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24268
+ };
24269
+ export declare type ExternalEntitiesV2ForHydrationSpaceArgs = {
24270
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24271
+ };
24272
+ export declare type ExternalEntitiesV2ForHydrationVideoArgs = {
24273
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24274
+ };
24275
+ export declare type ExternalEntitiesV2ForHydrationVulnerabilityArgs = {
24276
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24277
+ };
24278
+ export declare type ExternalEntitiesV2ForHydrationWorkItemArgs = {
24279
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24280
+ };
24281
+ export declare type ExternalEntitiesV2ForHydrationWorkerArgs = {
24282
+ externalEntitiesV2ForHydrationInput: Array<ExternalEntitiesV2ForHydrationInput>;
24283
+ };
24284
+ export declare type ExternalEntitiesV2ForHydrationInput = {
24285
+ ari?: InputMaybe<Scalars['ID']['input']>;
24286
+ graphWorkspaceAri?: InputMaybe<Scalars['ID']['input']>;
24287
+ };
24109
24288
  export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
24110
24289
  export declare type ExternalEnvironment = {
24111
24290
  __typename?: 'ExternalEnvironment';
@@ -29572,6 +29751,8 @@ export declare type GraphStore = {
29572
29751
  atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
29573
29752
  atlasProjectHasOwner?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerConnection>;
29574
29753
  atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
29754
+ atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
29755
+ atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
29575
29756
  atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
29576
29757
  atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
29577
29758
  atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
@@ -30068,6 +30249,7 @@ export declare type GraphStore = {
30068
30249
  userTaggedInCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInCommentInverseConnection>;
30069
30250
  userTaggedInConfluencePage?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageConnection>;
30070
30251
  userTaggedInConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserTaggedInConfluencePageInverseConnection>;
30252
+ userTaggedInIssueComment?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentConnection>;
30071
30253
  userTaggedInIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection>;
30072
30254
  userTriggeredDeployment?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentConnection>;
30073
30255
  userTriggeredDeploymentInverse?: Maybe<GraphStoreSimplifiedUserTriggeredDeploymentInverseConnection>;
@@ -30305,6 +30487,20 @@ export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
30305
30487
  id: Scalars['ID']['input'];
30306
30488
  sort?: InputMaybe<GraphStoreAtlasProjectHasOwnerSortInput>;
30307
30489
  };
30490
+ export declare type GraphStoreAtlasProjectHasUpdateArgs = {
30491
+ after?: InputMaybe<Scalars['String']['input']>;
30492
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30493
+ first?: InputMaybe<Scalars['Int']['input']>;
30494
+ id: Scalars['ID']['input'];
30495
+ sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
30496
+ };
30497
+ export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
30498
+ after?: InputMaybe<Scalars['String']['input']>;
30499
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
30500
+ first?: InputMaybe<Scalars['Int']['input']>;
30501
+ id: Scalars['ID']['input'];
30502
+ sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
30503
+ };
30308
30504
  export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
30309
30505
  after?: InputMaybe<Scalars['String']['input']>;
30310
30506
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -33544,6 +33740,13 @@ export declare type GraphStoreUserTaggedInConfluencePageInverseArgs = {
33544
33740
  id: Scalars['ID']['input'];
33545
33741
  sort?: InputMaybe<GraphStoreUserTaggedInConfluencePageSortInput>;
33546
33742
  };
33743
+ export declare type GraphStoreUserTaggedInIssueCommentArgs = {
33744
+ after?: InputMaybe<Scalars['String']['input']>;
33745
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
33746
+ first?: InputMaybe<Scalars['Int']['input']>;
33747
+ id: Scalars['ID']['input'];
33748
+ sort?: InputMaybe<GraphStoreUserTaggedInIssueCommentSortInput>;
33749
+ };
33547
33750
  export declare type GraphStoreUserTaggedInIssueCommentInverseArgs = {
33548
33751
  after?: InputMaybe<Scalars['String']['input']>;
33549
33752
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -34125,6 +34328,9 @@ export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
34125
34328
  export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
34126
34329
  lastModified?: InputMaybe<GraphStoreSortInput>;
34127
34330
  };
34331
+ export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
34332
+ lastModified?: InputMaybe<GraphStoreSortInput>;
34333
+ };
34128
34334
  export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
34129
34335
  lastModified?: InputMaybe<GraphStoreSortInput>;
34130
34336
  };
@@ -35252,7 +35458,7 @@ export declare type GraphStoreCypherQueryFromNode = {
35252
35458
  data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
35253
35459
  id: Scalars['ID']['output'];
35254
35460
  };
35255
- export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
35461
+ export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
35256
35462
  export declare type GraphStoreCypherQueryNode = {
35257
35463
  __typename?: 'GraphStoreCypherQueryNode';
35258
35464
  from: GraphStoreCypherQueryFromNode;
@@ -35277,8 +35483,8 @@ export declare type GraphStoreCypherQueryToNode = {
35277
35483
  data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
35278
35484
  id: Scalars['ID']['output'];
35279
35485
  };
35280
- export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
35281
- export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
35486
+ export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
35487
+ export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraProject | JiraServiceManagementComment | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
35282
35488
  export declare type GraphStoreCypherQueryValueNode = {
35283
35489
  __typename?: 'GraphStoreCypherQueryValueNode';
35284
35490
  data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
@@ -40305,6 +40511,34 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
40305
40511
  };
40306
40512
  export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
40307
40513
  export declare type GraphStoreSimplifiedAtlasProjectHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
40514
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & {
40515
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
40516
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
40517
+ pageInfo: PageInfo;
40518
+ };
40519
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
40520
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
40521
+ createdAt: Scalars['DateTime']['output'];
40522
+ cursor?: Maybe<Scalars['String']['output']>;
40523
+ id: Scalars['ID']['output'];
40524
+ lastUpdated: Scalars['DateTime']['output'];
40525
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
40526
+ };
40527
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & {
40528
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
40529
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
40530
+ pageInfo: PageInfo;
40531
+ };
40532
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
40533
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
40534
+ createdAt: Scalars['DateTime']['output'];
40535
+ cursor?: Maybe<Scalars['String']['output']>;
40536
+ id: Scalars['ID']['output'];
40537
+ lastUpdated: Scalars['DateTime']['output'];
40538
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion>;
40539
+ };
40540
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion = TownsquareProject;
40541
+ export declare type GraphStoreSimplifiedAtlasProjectHasUpdateUnion = TownsquareProjectUpdate;
40308
40542
  export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
40309
40543
  __typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
40310
40544
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
@@ -45007,6 +45241,19 @@ export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseEdge =
45007
45241
  };
45008
45242
  export declare type GraphStoreSimplifiedUserTaggedInConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
45009
45243
  export declare type GraphStoreSimplifiedUserTaggedInConfluencePageUnion = ConfluencePage;
45244
+ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentConnection = HasPageInfo & {
45245
+ __typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentConnection';
45246
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentEdge>>>;
45247
+ pageInfo: PageInfo;
45248
+ };
45249
+ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentEdge = {
45250
+ __typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentEdge';
45251
+ createdAt: Scalars['DateTime']['output'];
45252
+ cursor?: Maybe<Scalars['String']['output']>;
45253
+ id: Scalars['ID']['output'];
45254
+ lastUpdated: Scalars['DateTime']['output'];
45255
+ node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentUnion>;
45256
+ };
45010
45257
  export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection = HasPageInfo & {
45011
45258
  __typename?: 'GraphStoreSimplifiedUserTaggedInIssueCommentInverseConnection';
45012
45259
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge>>>;
@@ -45021,6 +45268,7 @@ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseEdge = {
45021
45268
  node?: Maybe<GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion>;
45022
45269
  };
45023
45270
  export declare type GraphStoreSimplifiedUserTaggedInIssueCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
45271
+ export declare type GraphStoreSimplifiedUserTaggedInIssueCommentUnion = JiraPlatformComment | JiraServiceManagementComment;
45024
45272
  export declare type GraphStoreSimplifiedUserTriggeredDeploymentConnection = HasPageInfo & {
45025
45273
  __typename?: 'GraphStoreSimplifiedUserTriggeredDeploymentConnection';
45026
45274
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserTriggeredDeploymentEdge>>>;
@@ -56134,6 +56382,10 @@ export declare type JiraJqlHistoryEdge = {
56134
56382
  __typename?: 'JiraJQLHistoryEdge';
56135
56383
  node?: Maybe<JiraJqlHistory>;
56136
56384
  };
56385
+ export declare type JiraJourneyBuilderAssociatedAutomationRule = {
56386
+ __typename?: 'JiraJourneyBuilderAssociatedAutomationRule';
56387
+ id: Scalars['ID']['output'];
56388
+ };
56137
56389
  export declare type JiraJourneyConfiguration = Node & {
56138
56390
  __typename?: 'JiraJourneyConfiguration';
56139
56391
  activityConfigurations?: Maybe<Array<Maybe<JiraActivityConfiguration>>>;
@@ -56224,6 +56476,7 @@ export declare enum JiraJourneyTriggerType {
56224
56476
  }
56225
56477
  export declare type JiraJourneyWorkItem = JiraJourneyItemCommon & {
56226
56478
  __typename?: 'JiraJourneyWorkItem';
56479
+ associatedAutomationRules?: Maybe<Array<JiraJourneyBuilderAssociatedAutomationRule>>;
56227
56480
  fieldValues?: Maybe<Array<JiraJourneyWorkItemFieldValueKeyValuePair>>;
56228
56481
  id: Scalars['ID']['output'];
56229
56482
  issueType?: Maybe<JiraIssueType>;
@@ -57335,6 +57588,7 @@ export declare type JiraMutation = {
57335
57588
  __typename?: 'JiraMutation';
57336
57589
  addFieldsToProject?: Maybe<JiraAddFieldsToProjectPayload>;
57337
57590
  addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
57591
+ addJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
57338
57592
  addJiraVersionApprover?: Maybe<JiraVersionAddApproverPayload>;
57339
57593
  addPermissionSchemeGrants?: Maybe<JiraPermissionSchemeAddGrantPayload>;
57340
57594
  addPostIncidentReviewLink?: Maybe<JiraAddPostIncidentReviewLinkMutationPayload>;
@@ -57413,6 +57667,7 @@ export declare type JiraMutation = {
57413
57667
  removeCustomField?: Maybe<JiraRemoveCustomFieldPayload>;
57414
57668
  removeIssuesFromAllFixVersions?: Maybe<JiraRemoveIssuesFromAllFixVersionsPayload>;
57415
57669
  removeIssuesFromFixVersion?: Maybe<JiraRemoveIssuesFromFixVersionPayload>;
57670
+ removeJiraJourneyWorkItemAssociatedAutomationRule?: Maybe<JiraUpdateJourneyConfigurationPayload>;
57416
57671
  removePermissionSchemeGrants?: Maybe<JiraPermissionSchemeRemoveGrantPayload>;
57417
57672
  removePostIncidentReviewLink?: Maybe<JiraRemovePostIncidentReviewLinkMutationPayload>;
57418
57673
  removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
@@ -57532,6 +57787,10 @@ export declare type JiraMutationAddFieldsToProjectArgs = {
57532
57787
  export declare type JiraMutationAddIssuesToFixVersionArgs = {
57533
57788
  input: JiraAddIssuesToFixVersionInput;
57534
57789
  };
57790
+ export declare type JiraMutationAddJiraJourneyWorkItemAssociatedAutomationRuleArgs = {
57791
+ cloudId: Scalars['ID']['input'];
57792
+ input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
57793
+ };
57535
57794
  export declare type JiraMutationAddJiraVersionApproverArgs = {
57536
57795
  input: JiraVersionAddApproverInput;
57537
57796
  };
@@ -57788,6 +58047,10 @@ export declare type JiraMutationRemoveIssuesFromAllFixVersionsArgs = {
57788
58047
  export declare type JiraMutationRemoveIssuesFromFixVersionArgs = {
57789
58048
  input: JiraRemoveIssuesFromFixVersionInput;
57790
58049
  };
58050
+ export declare type JiraMutationRemoveJiraJourneyWorkItemAssociatedAutomationRuleArgs = {
58051
+ cloudId: Scalars['ID']['input'];
58052
+ input: JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput;
58053
+ };
57791
58054
  export declare type JiraMutationRemovePermissionSchemeGrantsArgs = {
57792
58055
  input: JiraPermissionSchemeRemoveGrantInput;
57793
58056
  };
@@ -64670,6 +64933,12 @@ export declare type JiraUpdateJourneyTriggerConfigurationInput = {
64670
64933
  triggerConfiguration?: InputMaybe<JiraJourneyTriggerConfigurationInput>;
64671
64934
  version: Scalars['Long']['input'];
64672
64935
  };
64936
+ export declare type JiraUpdateJourneyWorkItemAssociatedAutomationRuleInput = {
64937
+ associatedRuleId: Scalars['ID']['input'];
64938
+ journeyId: Scalars['ID']['input'];
64939
+ journeyItemId: Scalars['ID']['input'];
64940
+ journeyVersion: Scalars['Long']['input'];
64941
+ };
64673
64942
  export declare type JiraUpdateLabelsFieldInput = {
64674
64943
  id: Scalars['ID']['input'];
64675
64944
  operations: Array<JiraLabelsFieldOperationInput>;
@@ -71320,6 +71589,14 @@ export declare type MercuryProviderOrchestrationMutationApiLinkAtlassianWorkToFo
71320
71589
  export declare type MercuryProviderOrchestrationMutationApiLinkWorkToFocusAreaArgs = {
71321
71590
  input: MercuryLinkWorkToFocusAreaInput;
71322
71591
  };
71592
+ export declare type MercuryProviderOrchestrationQueryApi = {
71593
+ __typename?: 'MercuryProviderOrchestrationQueryApi';
71594
+ isWorkspaceConnected: Array<MercuryWorkspaceConnectionStatus>;
71595
+ };
71596
+ export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs = {
71597
+ cloudId: Scalars['ID']['input'];
71598
+ workspaceAris: Array<Scalars['String']['input']>;
71599
+ };
71323
71600
  export declare type MercuryProviderUser = {
71324
71601
  id: Scalars['ID']['output'];
71325
71602
  name?: Maybe<Scalars['String']['output']>;
@@ -71714,6 +71991,11 @@ export declare type MercuryUserEdge = {
71714
71991
  node?: Maybe<User>;
71715
71992
  };
71716
71993
  export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
71994
+ export declare type MercuryWorkspaceConnectionStatus = {
71995
+ __typename?: 'MercuryWorkspaceConnectionStatus';
71996
+ isConnected: Scalars['Boolean']['output'];
71997
+ workspaceAri: Scalars['String']['output'];
71998
+ };
71717
71999
  export declare type MercuryWorkspaceContext = {
71718
72000
  __typename?: 'MercuryWorkspaceContext';
71719
72001
  activationId: Scalars['String']['output'];
@@ -71945,6 +72227,8 @@ export declare type Mutation = {
71945
72227
  addLabels?: Maybe<AddLabelsPayload>;
71946
72228
  addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
71947
72229
  addReaction?: Maybe<SaveReactionResponse>;
72230
+ agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
72231
+ agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
71948
72232
  appRecommendations?: Maybe<AppRecMutation>;
71949
72233
  appStorage?: Maybe<AppStorageMutation>;
71950
72234
  appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
@@ -72495,6 +72779,14 @@ export declare type MutationAddReactionArgs = {
72495
72779
  contentType: GraphQlReactionContentType;
72496
72780
  emojiId: Scalars['String']['input'];
72497
72781
  };
72782
+ export declare type MutationAgentStudio_CreateAgentArgs = {
72783
+ cloudId: Scalars['String']['input'];
72784
+ input: AgentStudioCreateAgentInput;
72785
+ };
72786
+ export declare type MutationAgentStudio_UpdateAgentDetailsArgs = {
72787
+ id: Scalars['ID']['input'];
72788
+ input: AgentStudioUpdateAgentDetailsInput;
72789
+ };
72498
72790
  export declare type MutationApplyPolarisProjectTemplateArgs = {
72499
72791
  input: ApplyPolarisProjectTemplateInput;
72500
72792
  };
@@ -77070,6 +77362,7 @@ export declare type Query = {
77070
77362
  externalContentMediaSession?: Maybe<ContentMediaSession>;
77071
77363
  external_entities?: Maybe<ExternalEntities>;
77072
77364
  external_entitiesV2?: Maybe<ExternalEntities>;
77365
+ external_entitiesV2ForHydration?: Maybe<ExternalEntitiesV2ForHydration>;
77073
77366
  favoriteContent?: Maybe<PaginatedContentList>;
77074
77367
  featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
77075
77368
  feed?: Maybe<PaginatedFeed>;
@@ -77175,6 +77468,7 @@ export declare type Query = {
77175
77468
  marketplaceStore: MarketplaceStoreQueryApi;
77176
77469
  me: AuthenticationContext;
77177
77470
  mercury?: Maybe<MercuryQueryApi>;
77471
+ mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
77178
77472
  migration: MigrationQuery;
77179
77473
  migrationCatalogue: MigrationCatalogueQuery;
77180
77474
  migrationMediaSession?: Maybe<ContentMediaSession>;
@@ -78947,6 +79241,8 @@ export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
78947
79241
  jobId: Scalars['ID']['input'];
78948
79242
  };
78949
79243
  export declare type QueryDevai_TechnicalPlannerJobsForIssueArgs = {
79244
+ after?: InputMaybe<Scalars['String']['input']>;
79245
+ first?: InputMaybe<Scalars['Int']['input']>;
78950
79246
  issueAri: Scalars['ID']['input'];
78951
79247
  };
78952
79248
  export declare type QueryDeveloperLogAccessArgs = {
@@ -79778,6 +80074,7 @@ export declare type QuerySpacesArgs = {
79778
80074
  assignedToGroupId?: InputMaybe<Scalars['String']['input']>;
79779
80075
  assignedToGroupName?: InputMaybe<Scalars['String']['input']>;
79780
80076
  assignedToUser?: InputMaybe<Scalars['String']['input']>;
80077
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
79781
80078
  creatorAccountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
79782
80079
  excludeTypes?: InputMaybe<Scalars['String']['input']>;
79783
80080
  favourite?: InputMaybe<Scalars['Boolean']['input']>;
@@ -82144,9 +82441,8 @@ export declare type SearchExperimentContextInput = {
82144
82441
  experimentLayers?: InputMaybe<Array<InputMaybe<SearchExperimentLayer>>>;
82145
82442
  };
82146
82443
  export declare type SearchExperimentLayer = {
82147
- layerId?: InputMaybe<Scalars['String']['input']>;
82444
+ definitions?: InputMaybe<Array<InputMaybe<SearchLayerDefinition>>>;
82148
82445
  name?: InputMaybe<Scalars['String']['input']>;
82149
- shadowId?: InputMaybe<Scalars['String']['input']>;
82150
82446
  };
82151
82447
  export declare type SearchExternalContainerFilter = {
82152
82448
  type: Scalars['String']['input'];
@@ -82232,6 +82528,12 @@ export declare type SearchL2Feature = {
82232
82528
  export declare type SearchL2FeatureProvider = {
82233
82529
  l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
82234
82530
  };
82531
+ export declare type SearchLayerDefinition = {
82532
+ entity?: InputMaybe<Scalars['String']['input']>;
82533
+ layerId?: InputMaybe<Scalars['String']['input']>;
82534
+ shadowId?: InputMaybe<Scalars['String']['input']>;
82535
+ subEntity?: InputMaybe<Scalars['String']['input']>;
82536
+ };
82235
82537
  export declare type SearchMercuryFilter = {
82236
82538
  focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
82237
82539
  owners?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -87197,8 +87499,10 @@ export declare type TownsquareGoal = Node & {
87197
87499
  name: Scalars['String']['output'];
87198
87500
  owner?: Maybe<User>;
87199
87501
  parentGoal?: Maybe<TownsquareGoal>;
87502
+ parentGoalSuggestions?: Maybe<TownsquareGoalConnection>;
87200
87503
  state?: Maybe<TownsquareGoalState>;
87201
87504
  status?: Maybe<TownsquareStatus>;
87505
+ subGoalSuggestions?: Maybe<TownsquareGoalConnection>;
87202
87506
  subGoals?: Maybe<TownsquareGoalConnection>;
87203
87507
  targetDate?: Maybe<TownsquareTargetDate>;
87204
87508
  updates?: Maybe<TownsquareGoalUpdateConnection>;
@@ -87206,6 +87510,16 @@ export declare type TownsquareGoal = Node & {
87206
87510
  uuid: Scalars['String']['output'];
87207
87511
  watchers?: Maybe<TownsquareUserConnection>;
87208
87512
  };
87513
+ export declare type TownsquareGoalParentGoalSuggestionsArgs = {
87514
+ after?: InputMaybe<Scalars['String']['input']>;
87515
+ first?: InputMaybe<Scalars['Int']['input']>;
87516
+ searchString?: InputMaybe<Scalars['String']['input']>;
87517
+ };
87518
+ export declare type TownsquareGoalSubGoalSuggestionsArgs = {
87519
+ after?: InputMaybe<Scalars['String']['input']>;
87520
+ first?: InputMaybe<Scalars['Int']['input']>;
87521
+ searchString?: InputMaybe<Scalars['String']['input']>;
87522
+ };
87209
87523
  export declare type TownsquareGoalSubGoalsArgs = {
87210
87524
  after?: InputMaybe<Scalars['String']['input']>;
87211
87525
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -89296,11 +89610,12 @@ export declare type TrelloPlannerCalendarDeleted = {
89296
89610
  export declare type TrelloPlannerCalendarEdge = {
89297
89611
  __typename?: 'TrelloPlannerCalendarEdge';
89298
89612
  cursor?: Maybe<Scalars['String']['output']>;
89613
+ deletedCalendar?: Maybe<TrelloPlannerCalendarDeleted>;
89299
89614
  node?: Maybe<TrelloPlannerCalendar>;
89300
89615
  };
89301
89616
  export declare type TrelloPlannerCalendarEdgeUpdated = {
89302
89617
  __typename?: 'TrelloPlannerCalendarEdgeUpdated';
89303
- node: TrelloPlannerUpdatedCalendar;
89618
+ node: TrelloPlannerCalendarUpdated;
89304
89619
  };
89305
89620
  export declare type TrelloPlannerCalendarEnabledCalendarsFilter = {
89306
89621
  updateCursor?: InputMaybe<Scalars['String']['input']>;
@@ -89421,6 +89736,11 @@ export declare type TrelloPlannerCalendarEventsFilter = {
89421
89736
  start?: InputMaybe<Scalars['DateTime']['input']>;
89422
89737
  };
89423
89738
  export declare type TrelloPlannerCalendarMutated = TrelloPlannerCalendarAccount | TrelloPlannerCalendarDeleted;
89739
+ export declare type TrelloPlannerCalendarUpdated = {
89740
+ __typename?: 'TrelloPlannerCalendarUpdated';
89741
+ events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
89742
+ id: Scalars['ID']['output'];
89743
+ };
89424
89744
  export declare type TrelloPlannerProviderCalendar = Node & TrelloProviderCalendarInterface & {
89425
89745
  __typename?: 'TrelloPlannerProviderCalendar';
89426
89746
  color?: Maybe<TrelloPlannerCalendarColor>;
@@ -89449,11 +89769,6 @@ export declare type TrelloPlannerUpdated = {
89449
89769
  accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
89450
89770
  id: Scalars['ID']['output'];
89451
89771
  };
89452
- export declare type TrelloPlannerUpdatedCalendar = {
89453
- __typename?: 'TrelloPlannerUpdatedCalendar';
89454
- events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
89455
- id: Scalars['ID']['output'];
89456
- };
89457
89772
  export declare type TrelloPowerUp = {
89458
89773
  __typename?: 'TrelloPowerUp';
89459
89774
  author?: Maybe<Scalars['String']['output']>;