@forge/cli-shared 8.9.0-next.8 → 8.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -549,6 +549,7 @@ export declare type AvpDashboardTemplateInput = {
549
549
  fromTemplate: Scalars['String']['input'];
550
550
  integrationId?: InputMaybe<AvpIntegrationId>;
551
551
  productWorkspaceList?: InputMaybe<Array<AvpProductWorkspaceMapEntry>>;
552
+ templatePlaceholderReplacements?: InputMaybe<Array<AvpTemplatePlaceholderReplacement>>;
552
553
  templateVersion?: InputMaybe<Scalars['Int']['input']>;
553
554
  };
554
555
  export declare type AvpDatasourceLocator = {
@@ -603,14 +604,6 @@ export declare type AvpEnvVar = {
603
604
  name?: Maybe<Scalars['String']['output']>;
604
605
  operator?: Maybe<Scalars['String']['output']>;
605
606
  };
606
- export declare enum AvpEnvVarChartType {
607
- Calendar = "CALENDAR",
608
- CategoricalDropdown = "CATEGORICAL_DROPDOWN",
609
- DateBucket = "DATE_BUCKET",
610
- DateSlider = "DATE_SLIDER",
611
- InputWidget = "INPUT_WIDGET",
612
- RangeInput = "RANGE_INPUT"
613
- }
614
607
  export declare enum AvpEnvVarDataType {
615
608
  Boolean = "BOOLEAN",
616
609
  Date = "DATE",
@@ -638,11 +631,6 @@ export declare type AvpFilterEnvVarInput = {
638
631
  metadata?: InputMaybe<Scalars['String']['input']>;
639
632
  name?: InputMaybe<Scalars['String']['input']>;
640
633
  };
641
- export declare type AvpFilterResponse = {
642
- __typename?: 'AVPFilterResponse';
643
- chart?: Maybe<AvpChart>;
644
- envVar?: Maybe<AvpEnvVarWithChart>;
645
- };
646
634
  export declare type AvpGetDashboardTemplatesInput = {
647
635
  cloudId: Scalars['ID']['input'];
648
636
  productKey?: InputMaybe<Scalars['String']['input']>;
@@ -739,6 +727,42 @@ export declare type AvpMoveDashboardRowPayload = Payload & {
739
727
  errors?: Maybe<Array<MutationError>>;
740
728
  success: Scalars['Boolean']['output'];
741
729
  };
730
+ export declare type AvpPermissionsDashboardUserAccess = {
731
+ accessLevel: AvpPermissionsDashboardUserAccessLevel;
732
+ accountId: Scalars['String']['input'];
733
+ };
734
+ export declare enum AvpPermissionsDashboardUserAccessLevel {
735
+ Manage = "MANAGE",
736
+ Read = "READ"
737
+ }
738
+ export declare type AvpPermissionsDashboardUserAccessResult = {
739
+ __typename?: 'AVPPermissionsDashboardUserAccessResult';
740
+ accessLevel: AvpPermissionsDashboardUserAccessLevel;
741
+ accountId: Scalars['String']['output'];
742
+ };
743
+ export declare type AvpPermissionsFailedDashboardUserAccess = {
744
+ __typename?: 'AVPPermissionsFailedDashboardUserAccess';
745
+ errorMessage: Scalars['String']['output'];
746
+ user: AvpPermissionsDashboardUserAccessResult;
747
+ };
748
+ export declare type AvpPermissionsHelloResponse = {
749
+ __typename?: 'AVPPermissionsHelloResponse';
750
+ hello?: Maybe<Scalars['String']['output']>;
751
+ };
752
+ export declare type AvpPermissionsUpdateDashboardUserAccessInput = {
753
+ cloudId: Scalars['ID']['input'];
754
+ containerId?: InputMaybe<Scalars['ID']['input']>;
755
+ dashboardId: Scalars['ID']['input'];
756
+ users: Array<AvpPermissionsDashboardUserAccess>;
757
+ workspaceId: Scalars['ID']['input'];
758
+ };
759
+ export declare type AvpPermissionsUpdateDashboardUserAccessPayload = {
760
+ __typename?: 'AVPPermissionsUpdateDashboardUserAccessPayload';
761
+ errors?: Maybe<Array<MutationError>>;
762
+ failedUsers?: Maybe<Array<AvpPermissionsFailedDashboardUserAccess>>;
763
+ success: Scalars['Boolean']['output'];
764
+ updatedUsers?: Maybe<Array<AvpPermissionsDashboardUserAccessResult>>;
765
+ };
742
766
  export declare type AvpProductWorkspaceMapEntry = {
743
767
  product: Scalars['String']['input'];
744
768
  workspaceId: Scalars['ID']['input'];
@@ -769,6 +793,10 @@ export declare type AvpRemoveDashboardRowPayload = Payload & {
769
793
  errors?: Maybe<Array<MutationError>>;
770
794
  success: Scalars['Boolean']['output'];
771
795
  };
796
+ export declare type AvpTemplatePlaceholderReplacement = {
797
+ placeholderName: Scalars['String']['input'];
798
+ replacementValue: Scalars['String']['input'];
799
+ };
772
800
  export declare type AvpToggleCanvasElementExpandedInput = {
773
801
  dashboardAri: Scalars['ID']['input'];
774
802
  elementId: Scalars['ID']['input'];
@@ -1843,6 +1871,11 @@ export declare type AdminIcon = {
1843
1871
  name: Scalars['String']['output'];
1844
1872
  value: Scalars['String']['output'];
1845
1873
  };
1874
+ export declare enum AdminIdentityProviderPublicCertificateExpiryStatus {
1875
+ Expired = "EXPIRED",
1876
+ ExpiringSoon = "EXPIRING_SOON",
1877
+ Valid = "VALID"
1878
+ }
1846
1879
  export declare type AdminImpersonateUserInput = {
1847
1880
  accountId: Scalars['String']['input'];
1848
1881
  directoryId: Scalars['String']['input'];
@@ -1990,9 +2023,16 @@ export declare type AdminLicenseDataEdge = {
1990
2023
  cursor: Scalars['String']['output'];
1991
2024
  node: AdminLicenseData;
1992
2025
  };
2026
+ export declare type AdminLicenseGroupInput = {
2027
+ groupId: Scalars['String']['input'];
2028
+ resourceIds: Array<Scalars['String']['input']>;
2029
+ };
1993
2030
  export declare type AdminLicenseInput = {
1994
- groupIds?: InputMaybe<Array<Scalars['String']['input']>>;
1995
- resourceIds?: InputMaybe<Array<Scalars['String']['input']>>;
2031
+ groups?: InputMaybe<Array<AdminLicenseGroupInput>>;
2032
+ resources?: InputMaybe<Array<AdminLicenseResourceInput>>;
2033
+ };
2034
+ export declare type AdminLicenseResourceInput = {
2035
+ resourceId: Scalars['String']['input'];
1996
2036
  };
1997
2037
  export declare type AdminLimit = {
1998
2038
  __typename?: 'AdminLimit';
@@ -2120,6 +2160,23 @@ export declare type AdminRoleIdCounts = {
2120
2160
  count: Scalars['Int']['output'];
2121
2161
  roleId: Scalars['String']['output'];
2122
2162
  };
2163
+ export declare type AdminSamlConfiguration = {
2164
+ __typename?: 'AdminSamlConfiguration';
2165
+ identityProviderDirectoryId: Scalars['ID']['output'];
2166
+ samlConfiguration: AdminSamlConfigurationDetails;
2167
+ samlConfigurationId: Scalars['ID']['output'];
2168
+ };
2169
+ export declare type AdminSamlConfigurationDetails = {
2170
+ __typename?: 'AdminSamlConfigurationDetails';
2171
+ assertionConsumerServiceUrl?: Maybe<Scalars['String']['output']>;
2172
+ entityId?: Maybe<Scalars['String']['output']>;
2173
+ identityProviderPublicCertificate: Scalars['String']['output'];
2174
+ identityProviderPublicCertificateExpirationTimestamp?: Maybe<Scalars['String']['output']>;
2175
+ identityProviderPublicCertificateExpiryStatus?: Maybe<AdminIdentityProviderPublicCertificateExpiryStatus>;
2176
+ issuer: Scalars['String']['output'];
2177
+ serviceProviderSingleLogoutConfiguration?: Maybe<AdminServiceProviderSingleLogoutConfiguration>;
2178
+ singleSignOnUrl: Scalars['String']['output'];
2179
+ };
2123
2180
  export declare type AdminSandbox = {
2124
2181
  __typename?: 'AdminSandbox';
2125
2182
  parentId?: Maybe<Scalars['ID']['output']>;
@@ -2167,6 +2224,15 @@ export declare type AdminSeats = {
2167
2224
  __typename?: 'AdminSeats';
2168
2225
  usageInfo?: Maybe<AdminUsageInfo>;
2169
2226
  };
2227
+ export declare type AdminServiceProviderSingleLogoutConfiguration = {
2228
+ __typename?: 'AdminServiceProviderSingleLogoutConfiguration';
2229
+ identityProviderUrl: Scalars['String']['output'];
2230
+ serviceProviderPublicCertificate?: Maybe<Scalars['String']['output']>;
2231
+ serviceProviderPublicCertificateExpiry?: Maybe<Scalars['String']['output']>;
2232
+ serviceProviderPublicCertificateId?: Maybe<Scalars['String']['output']>;
2233
+ serviceProviderUrl: Scalars['String']['output'];
2234
+ singleLogoutEnabled: Scalars['Boolean']['output'];
2235
+ };
2170
2236
  export declare type AdminSingle = {
2171
2237
  primitive?: InputMaybe<AdminPrimitive>;
2172
2238
  };
@@ -2785,10 +2851,12 @@ export declare type AgentStudioCreateScenarioPayload = Payload & {
2785
2851
  };
2786
2852
  export declare type AgentStudioDataset = {
2787
2853
  __typename?: 'AgentStudioDataset';
2854
+ count?: Maybe<Scalars['Int']['output']>;
2788
2855
  createdAt: Scalars['String']['output'];
2789
2856
  id: Scalars['ID']['output'];
2790
2857
  name: Scalars['String']['output'];
2791
2858
  projectId: Scalars['String']['output'];
2859
+ updatedAt: Scalars['String']['output'];
2792
2860
  };
2793
2861
  export declare type AgentStudioDatasetEdge = {
2794
2862
  __typename?: 'AgentStudioDatasetEdge';
@@ -2932,7 +3000,8 @@ export declare enum AgentStudioJobRunStatus {
2932
3000
  Completed = "COMPLETED",
2933
3001
  Failed = "FAILED",
2934
3002
  Pending = "PENDING",
2935
- Running = "RUNNING"
3003
+ Running = "RUNNING",
3004
+ Timeout = "TIMEOUT"
2936
3005
  }
2937
3006
  export declare type AgentStudioJsmKnowledgeFilter = {
2938
3007
  __typename?: 'AgentStudioJsmKnowledgeFilter';
@@ -3468,6 +3537,7 @@ export declare enum ApiContext {
3468
3537
  }
3469
3538
  export declare enum ApiGroup {
3470
3539
  Actions = "ACTIONS",
3540
+ AdminUnit = "ADMIN_UNIT",
3471
3541
  AgentStudio = "AGENT_STUDIO",
3472
3542
  AppRecommendations = "APP_RECOMMENDATIONS",
3473
3543
  AtlassianStudio = "ATLASSIAN_STUDIO",
@@ -3899,6 +3969,7 @@ export declare type AppFeaturesExposedCredentialsInput = {
3899
3969
  export declare type AppFeaturesInput = {
3900
3970
  hasCustomLifecycle?: InputMaybe<Scalars['Boolean']['input']>;
3901
3971
  hasExposedCredentials?: InputMaybe<AppFeaturesExposedCredentialsInput>;
3972
+ hasResourceRestrictedToken?: InputMaybe<Scalars['Boolean']['input']>;
3902
3973
  };
3903
3974
  export declare type AppHostService = {
3904
3975
  __typename?: 'AppHostService';
@@ -4108,7 +4179,7 @@ export declare type AppInstallationsFilter = {
4108
4179
  appId: Scalars['ID']['input'];
4109
4180
  environmentType?: InputMaybe<AppEnvironmentType>;
4110
4181
  };
4111
- export declare type AppLog = FunctionInvocationMetadata & Node & {
4182
+ export declare type AppLog = FunctionInvocationMetadata & {
4112
4183
  __typename?: 'AppLog';
4113
4184
  appLogLines?: Maybe<AppLogLineConnection>;
4114
4185
  appVersion: Scalars['String']['output'];
@@ -5414,6 +5485,10 @@ export declare type AssetsDmDataSourceMergeGetByObjectIdResponse = {
5414
5485
  step: Scalars['Int']['output'];
5415
5486
  tenantId: Scalars['String']['output'];
5416
5487
  };
5488
+ export declare type AssetsDmDataSourceMergeIsImportProgressingResponse = {
5489
+ __typename?: 'AssetsDMDataSourceMergeIsImportProgressingResponse';
5490
+ inProgress: Scalars['Boolean']['output'];
5491
+ };
5417
5492
  export declare type AssetsDmDataSourceMergeObjectAttribute = {
5418
5493
  __typename?: 'AssetsDMDataSourceMergeObjectAttribute';
5419
5494
  dataType: Scalars['Int']['output'];
@@ -7128,6 +7203,7 @@ export declare enum CcpBillingInterval {
7128
7203
  export declare type CcpBillingPeriodDetails = {
7129
7204
  __typename?: 'CcpBillingPeriodDetails';
7130
7205
  billingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
7206
+ nextBillingAnchorTimestamp?: Maybe<Scalars['Float']['output']>;
7131
7207
  nextBillingTimestamp?: Maybe<Scalars['Float']['output']>;
7132
7208
  };
7133
7209
  export declare type CcpCancelEntitlementExperienceCapability = CommerceExperienceCapability & {
@@ -9370,6 +9446,7 @@ export declare type ChannelPlatformTranscriptEntry = {
9370
9446
  };
9371
9447
  export declare type ChannelPlatformTranscriptRequest = {
9372
9448
  contactId?: InputMaybe<Scalars['String']['input']>;
9449
+ isStaleTolerant?: InputMaybe<Scalars['Boolean']['input']>;
9373
9450
  issueId?: InputMaybe<Scalars['String']['input']>;
9374
9451
  role?: InputMaybe<ChannelPlatformRole>;
9375
9452
  startAfterChatMessageId?: InputMaybe<Scalars['String']['input']>;
@@ -10761,6 +10838,7 @@ export declare type CompassComponent = Node & {
10761
10838
  id: Scalars['ID']['output'];
10762
10839
  labels?: Maybe<Array<CompassComponentLabel>>;
10763
10840
  links?: Maybe<Array<CompassLink>>;
10841
+ logs?: Maybe<CompassComponentLogConnection>;
10764
10842
  metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
10765
10843
  name: Scalars['String']['output'];
10766
10844
  onCallSchedules?: Maybe<CompassComponentOnCallScheduleConnection>;
@@ -10792,6 +10870,10 @@ export declare type CompassComponentDeactivatedScorecardsArgs = {
10792
10870
  export declare type CompassComponentEventsArgs = {
10793
10871
  query?: InputMaybe<CompassEventsQuery>;
10794
10872
  };
10873
+ export declare type CompassComponentLogsArgs = {
10874
+ after?: InputMaybe<Scalars['String']['input']>;
10875
+ first?: InputMaybe<Scalars['Int']['input']>;
10876
+ };
10795
10877
  export declare type CompassComponentMetricSourcesArgs = {
10796
10878
  query?: InputMaybe<CompassComponentMetricSourcesQuery>;
10797
10879
  };
@@ -11036,6 +11118,23 @@ export declare type CompassComponentLabel = {
11036
11118
  name?: Maybe<Scalars['String']['output']>;
11037
11119
  };
11038
11120
  export declare type CompassComponentLabelsQueryResult = CompassSearchComponentLabelsConnection | QueryError;
11121
+ export declare type CompassComponentLog = {
11122
+ __typename?: 'CompassComponentLog';
11123
+ action: Scalars['String']['output'];
11124
+ actor: Scalars['ID']['output'];
11125
+ componentId: Scalars['ID']['output'];
11126
+ discoveryStrategy?: Maybe<Scalars['String']['output']>;
11127
+ fieldId?: Maybe<Scalars['String']['output']>;
11128
+ id: Scalars['ID']['output'];
11129
+ source?: Maybe<CompassAutoPopulationSource>;
11130
+ timestamp: Scalars['DateTime']['output'];
11131
+ value?: Maybe<Scalars['String']['output']>;
11132
+ };
11133
+ export declare type CompassComponentLogConnection = {
11134
+ __typename?: 'CompassComponentLogConnection';
11135
+ nodes?: Maybe<Array<CompassComponentLog>>;
11136
+ pageInfo: PageInfo;
11137
+ };
11039
11138
  export declare type CompassComponentMetricSourcesConnection = {
11040
11139
  __typename?: 'CompassComponentMetricSourcesConnection';
11041
11140
  edges?: Maybe<Array<CompassMetricSourceEdge>>;
@@ -12310,6 +12409,7 @@ export declare type CompassDeploymentEventEnvironmentInput = {
12310
12409
  };
12311
12410
  export declare type CompassDeploymentEventFilters = {
12312
12411
  environments?: InputMaybe<Array<CompassDeploymentEventEnvironmentCategory>>;
12412
+ states?: InputMaybe<Array<CompassDeploymentEventState>>;
12313
12413
  };
12314
12414
  export declare type CompassDeploymentEventPipeline = {
12315
12415
  __typename?: 'CompassDeploymentEventPipeline';
@@ -15098,6 +15198,7 @@ export declare type ConfluenceAddTrackPayload = {
15098
15198
  __typename?: 'ConfluenceAddTrackPayload';
15099
15199
  errors?: Maybe<Array<ConfluenceAddTrackPayloadError>>;
15100
15200
  success: Scalars['Boolean']['output'];
15201
+ track?: Maybe<ConfluenceTrack>;
15101
15202
  };
15102
15203
  export declare type ConfluenceAddTrackPayloadError = {
15103
15204
  __typename?: 'ConfluenceAddTrackPayloadError';
@@ -15806,6 +15907,10 @@ export declare type ConfluenceContentBodyInput = {
15806
15907
  representation: ConfluenceContentRepresentation;
15807
15908
  value: Scalars['String']['input'];
15808
15909
  };
15910
+ export declare type ConfluenceContentGeneralAccess = {
15911
+ __typename?: 'ConfluenceContentGeneralAccess';
15912
+ mode?: Maybe<ConfluenceContentRestrictionState>;
15913
+ };
15809
15914
  export declare type ConfluenceContentInput = {
15810
15915
  contentBody?: InputMaybe<Scalars['String']['input']>;
15811
15916
  contentId: Scalars['ID']['input'];
@@ -15897,6 +16002,17 @@ export declare enum ConfluenceContentRepresentation {
15897
16002
  View = "VIEW",
15898
16003
  Wiki = "WIKI"
15899
16004
  }
16005
+ export declare enum ConfluenceContentRestrictionState {
16006
+ EditRestricted = "EDIT_RESTRICTED",
16007
+ Open = "OPEN",
16008
+ RestrictedByParent = "RESTRICTED_BY_PARENT",
16009
+ ViewRestricted = "VIEW_RESTRICTED"
16010
+ }
16011
+ export declare enum ConfluenceContentRestrictionStateInput {
16012
+ EditRestricted = "EDIT_RESTRICTED",
16013
+ Open = "OPEN",
16014
+ ViewRestricted = "VIEW_RESTRICTED"
16015
+ }
15900
16016
  export declare type ConfluenceContentRestrictionUpdated = {
15901
16017
  __typename?: 'ConfluenceContentRestrictionUpdated';
15902
16018
  contentId?: Maybe<Scalars['ID']['output']>;
@@ -17218,6 +17334,11 @@ export declare type ConfluenceLanguage = {
17218
17334
  language?: Maybe<Scalars['String']['output']>;
17219
17335
  name?: Maybe<Scalars['String']['output']>;
17220
17336
  };
17337
+ export declare type ConfluenceLatestPendingRequests = {
17338
+ __typename?: 'ConfluenceLatestPendingRequests';
17339
+ latestPendingRequest?: Maybe<Array<Maybe<ConfluenceContentAccessRequest>>>;
17340
+ start?: Maybe<Scalars['String']['output']>;
17341
+ };
17221
17342
  export declare type ConfluenceLegacyEditorReportDownloadLink = {
17222
17343
  __typename?: 'ConfluenceLegacyEditorReportDownloadLink';
17223
17344
  url?: Maybe<Scalars['String']['output']>;
@@ -18864,6 +18985,16 @@ export declare type ConfluenceSearchResponseEdge = {
18864
18985
  cursor?: Maybe<Scalars['String']['output']>;
18865
18986
  node?: Maybe<ConfluenceSearchResponse>;
18866
18987
  };
18988
+ export declare type ConfluenceSetContentGeneralAccessModeInput = {
18989
+ contentId: Scalars['ID']['input'];
18990
+ mode: ConfluenceContentRestrictionStateInput;
18991
+ };
18992
+ export declare type ConfluenceSetContentGeneralAccessModePayload = Payload & {
18993
+ __typename?: 'ConfluenceSetContentGeneralAccessModePayload';
18994
+ contentGeneralAccess?: Maybe<ConfluenceContentGeneralAccess>;
18995
+ errors?: Maybe<Array<MutationError>>;
18996
+ success: Scalars['Boolean']['output'];
18997
+ };
18867
18998
  export declare type ConfluenceSetSubCalendarReminderInput = {
18868
18999
  isReminder: Scalars['Boolean']['input'];
18869
19000
  subCalendarId: Scalars['ID']['input'];
@@ -18954,6 +19085,7 @@ export declare type ConfluenceSpaceDetailsSpaceOwner = {
18954
19085
  displayName?: Maybe<Scalars['String']['output']>;
18955
19086
  ownerId?: Maybe<Scalars['String']['output']>;
18956
19087
  ownerType?: Maybe<ConfluenceSpaceOwnerType>;
19088
+ usageType?: Maybe<ConfluenceGroupUsageType>;
18957
19089
  };
18958
19090
  export declare type ConfluenceSpaceDetailsSpaceOwnerInput = {
18959
19091
  ownerId?: InputMaybe<Scalars['String']['input']>;
@@ -19023,6 +19155,14 @@ export declare enum ConfluenceSpacePermissionAuditReportType {
19023
19155
  FullSitePermission = "FULL_SITE_PERMISSION",
19024
19156
  PermissionCombination = "PERMISSION_COMBINATION"
19025
19157
  }
19158
+ export declare type ConfluenceSpaceProperty = {
19159
+ __typename?: 'ConfluenceSpaceProperty';
19160
+ id?: Maybe<Scalars['ID']['output']>;
19161
+ key?: Maybe<Scalars['String']['output']>;
19162
+ space?: Maybe<Space>;
19163
+ value?: Maybe<Scalars['String']['output']>;
19164
+ version?: Maybe<Version>;
19165
+ };
19026
19166
  export declare type ConfluenceSpaceRecommendations = {
19027
19167
  __typename?: 'ConfluenceSpaceRecommendations';
19028
19168
  active?: Maybe<Array<Maybe<Space>>>;
@@ -22330,33 +22470,7 @@ export declare type ConvoAiAgentMessage = {
22330
22470
  contentSummary?: Maybe<Scalars['String']['output']>;
22331
22471
  timeCreated: Scalars['DateTime']['output'];
22332
22472
  };
22333
- export declare enum ConvoAiAgentMessageType {
22334
- ConversationChannelData = "CONVERSATION_CHANNEL_DATA",
22335
- EarlyStop = "EARLY_STOP",
22336
- Empty = "EMPTY",
22337
- Error = "ERROR",
22338
- FinalMessage = "FINAL_MESSAGE",
22339
- Trace = "TRACE"
22340
- }
22341
- export declare enum ConvoAiAgentSessionStatus {
22342
- Completed = "COMPLETED",
22343
- InputRequired = "INPUT_REQUIRED",
22344
- Unknown = "UNKNOWN",
22345
- Working = "WORKING"
22346
- }
22347
22473
  export declare type ConvoAiAgentSessionUpdate = ConvoAiConversationMessage | ConvoAiEmptyConversation | ConvoAiErrorMessage | ConvoAiTraceMessage;
22348
- export declare type ConvoAiAsyncAgentUpdate = {
22349
- __typename?: 'ConvoAiAsyncAgentUpdate';
22350
- actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
22351
- agentMessageType: ConvoAiAgentMessageType;
22352
- authorId?: Maybe<Scalars['String']['output']>;
22353
- contentSummary?: Maybe<Scalars['String']['output']>;
22354
- messageId?: Maybe<Scalars['String']['output']>;
22355
- messageMetadata?: Maybe<Scalars['JSON']['output']>;
22356
- messageTemplate?: Maybe<Scalars['String']['output']>;
22357
- status: ConvoAiAgentSessionStatus;
22358
- timeCreated: Scalars['DateTime']['output'];
22359
- };
22360
22474
  export declare type ConvoAiConfluenceSpaceRecommendation = {
22361
22475
  __typename?: 'ConvoAiConfluenceSpaceRecommendation';
22362
22476
  id: Scalars['ID']['output'];
@@ -22395,8 +22509,17 @@ export declare type ConvoAiHomeThreadSource = ConvoAiHomeThreadsFirstPartySource
22395
22509
  export declare type ConvoAiHomeThreadSuggestedAction = {
22396
22510
  __typename?: 'ConvoAiHomeThreadSuggestedAction';
22397
22511
  action?: Maybe<ConvoAiHomeThreadSuggestedActionType>;
22512
+ origin?: Maybe<ConvoAiHomeThreadSuggestedActionOriginType>;
22398
22513
  source?: Maybe<ConvoAiHomeThreadSource>;
22399
22514
  };
22515
+ export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
22516
+ CommentRule = "COMMENT_RULE",
22517
+ ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
22518
+ JiraIssueRule = "JIRA_ISSUE_RULE",
22519
+ Llm = "LLM",
22520
+ LoomVideoRule = "LOOM_VIDEO_RULE",
22521
+ PullRequestRule = "PULL_REQUEST_RULE"
22522
+ }
22400
22523
  export declare enum ConvoAiHomeThreadSuggestedActionType {
22401
22524
  Delete = "DELETE",
22402
22525
  Reply = "REPLY",
@@ -22437,6 +22560,8 @@ export declare type ConvoAiJira3pRelatedLinksResult = {
22437
22560
  __typename?: 'ConvoAiJira3pRelatedLinksResult';
22438
22561
  edges?: Maybe<Array<ConvoAiJira3pRelatedLinksEdge>>;
22439
22562
  errors?: Maybe<Array<QueryError>>;
22563
+ no3pConnectorEnabled?: Maybe<Scalars['Boolean']['output']>;
22564
+ no3pConnectorOauthEnabled?: Maybe<Scalars['Boolean']['output']>;
22440
22565
  };
22441
22566
  export declare type ConvoAiJiraConfluenceBlogSuggestion = {
22442
22567
  __typename?: 'ConvoAiJiraConfluenceBlogSuggestion';
@@ -22508,6 +22633,7 @@ export declare type ConvoAiThirdPartyRelatedLink = {
22508
22633
  id: Scalars['String']['output'];
22509
22634
  name: Scalars['String']['output'];
22510
22635
  productSource?: Maybe<Scalars['String']['output']>;
22636
+ thirdPartySourceProduct?: Maybe<Scalars['String']['output']>;
22511
22637
  url: Scalars['String']['output'];
22512
22638
  };
22513
22639
  export declare type ConvoAiTraceMessage = ConvoAiAgentMessage & {
@@ -22587,8 +22713,7 @@ export declare type CountUsersGroupByPageItem = {
22587
22713
  user: Scalars['Int']['output'];
22588
22714
  };
22589
22715
  export declare type CplsAddContributionInput = {
22590
- contributorDataId?: InputMaybe<Scalars['ID']['input']>;
22591
- contributorId?: InputMaybe<Scalars['ID']['input']>;
22716
+ contributorDataId: Scalars['ID']['input'];
22592
22717
  endDate: Scalars['Date']['input'];
22593
22718
  startDate: Scalars['Date']['input'];
22594
22719
  value: Scalars['Float']['input'];
@@ -22608,8 +22733,7 @@ export declare type CplsAddContributionsPayload = Payload & {
22608
22733
  };
22609
22734
  export declare type CplsAddContributorScopeAssociationInput = {
22610
22735
  cloudId: Scalars['ID']['input'];
22611
- contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
22612
- contributorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
22736
+ contributorDataIds: Array<Scalars['ID']['input']>;
22613
22737
  scopeId: Scalars['ID']['input'];
22614
22738
  };
22615
22739
  export declare type CplsAddContributorScopeAssociationPayload = Payload & {
@@ -22669,7 +22793,6 @@ export declare type CplsContributor = {
22669
22793
  contributionAggregations: Array<CplsContributionAggregation>;
22670
22794
  contributorData?: Maybe<CplsContributorData>;
22671
22795
  contributorDataId?: Maybe<Scalars['ID']['output']>;
22672
- contributorId: Scalars['ID']['output'];
22673
22796
  contributorWork: CplsContributorWorkConnection;
22674
22797
  id: Scalars['ID']['output'];
22675
22798
  worksByIds: Array<CplsContributorWorkEdge>;
@@ -22695,8 +22818,7 @@ export declare type CplsContributorEdge = {
22695
22818
  node: CplsContributor;
22696
22819
  };
22697
22820
  export declare type CplsContributorWorkAssociation = {
22698
- contributorDataId?: InputMaybe<Scalars['ID']['input']>;
22699
- contributorId?: InputMaybe<Scalars['ID']['input']>;
22821
+ contributorDataId: Scalars['ID']['input'];
22700
22822
  workId: Scalars['ID']['input'];
22701
22823
  };
22702
22824
  export declare type CplsContributorWorkConnection = HasPageInfo & {
@@ -22722,8 +22844,7 @@ export declare type CplsCreateCustomContributionTargetPayload = Payload & {
22722
22844
  };
22723
22845
  export declare type CplsCreateCustomContributionTargetWithWorkAssociationInput = {
22724
22846
  cloudId: Scalars['ID']['input'];
22725
- contributorDataId?: InputMaybe<Scalars['ID']['input']>;
22726
- contributorId?: InputMaybe<Scalars['ID']['input']>;
22847
+ contributorDataId: Scalars['ID']['input'];
22727
22848
  name: Scalars['String']['input'];
22728
22849
  };
22729
22850
  export declare type CplsCreateCustomContributionTargetWithWorkAssociationPayload = Payload & {
@@ -22749,8 +22870,7 @@ export declare type CplsCustomContributionTargetEdge = {
22749
22870
  };
22750
22871
  export declare type CplsDeleteContributorScopeAssociationInput = {
22751
22872
  cloudId: Scalars['ID']['input'];
22752
- contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
22753
- contributorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
22873
+ contributorDataIds: Array<Scalars['ID']['input']>;
22754
22874
  scopeId: Scalars['ID']['input'];
22755
22875
  };
22756
22876
  export declare type CplsDeleteContributorScopeAssociationPayload = Payload & {
@@ -22775,6 +22895,13 @@ export declare type CplsMutationErrorExtension = MutationErrorExtension & {
22775
22895
  errorType?: Maybe<Scalars['String']['output']>;
22776
22896
  statusCode?: Maybe<Scalars['Int']['output']>;
22777
22897
  };
22898
+ export declare type CplsPeopleView = CplsCapacityPlanningPeopleView | QueryError;
22899
+ export declare type CplsQueryErrorExtension = QueryErrorExtension & {
22900
+ __typename?: 'CplsQueryErrorExtension';
22901
+ errorId?: Maybe<Scalars['String']['output']>;
22902
+ errorType?: Maybe<Scalars['String']['output']>;
22903
+ statusCode?: Maybe<Scalars['Int']['output']>;
22904
+ };
22778
22905
  export declare type CplsSearchCustomContributionTargetsInput = {
22779
22906
  after?: InputMaybe<Scalars['String']['input']>;
22780
22907
  before?: InputMaybe<Scalars['String']['input']>;
@@ -22861,6 +22988,7 @@ export declare type CreateAppEnvironmentResponse = Payload & {
22861
22988
  };
22862
22989
  export declare type CreateAppInput = {
22863
22990
  appFeatures?: InputMaybe<AppFeaturesInput>;
22991
+ billingConsent?: InputMaybe<Scalars['Boolean']['input']>;
22864
22992
  description?: InputMaybe<Scalars['String']['input']>;
22865
22993
  developerSpaceId?: InputMaybe<Scalars['ID']['input']>;
22866
22994
  name: Scalars['String']['input'];
@@ -26598,6 +26726,18 @@ export declare type DevAiRovoDevCreateSessionPayload = Payload & {
26598
26726
  session?: Maybe<DevAiRovoDevSession>;
26599
26727
  success: Scalars['Boolean']['output'];
26600
26728
  };
26729
+ export declare type DevAiRovoDevIssueViewResponse = {
26730
+ __typename?: 'DevAiRovoDevIssueViewResponse';
26731
+ checks?: Maybe<DevAiEntitlementCheckResultResponse>;
26732
+ isFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
26733
+ sessions?: Maybe<DevAiRovoDevSessionConnection>;
26734
+ };
26735
+ export declare type DevAiRovoDevIssueViewResponseSessionsArgs = {
26736
+ after?: InputMaybe<Scalars['String']['input']>;
26737
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
26738
+ first?: InputMaybe<Scalars['Int']['input']>;
26739
+ issueKey?: InputMaybe<Scalars['String']['input']>;
26740
+ };
26601
26741
  export declare enum DevAiRovoDevPrStatus {
26602
26742
  Declined = "DECLINED",
26603
26743
  Draft = "DRAFT",
@@ -26849,13 +26989,13 @@ export declare type DevConsoleAppResourceUsageFiltersInput = {
26849
26989
  export declare type DevConsoleAppResourceUsageFlatResponse = {
26850
26990
  __typename?: 'DevConsoleAppResourceUsageFlatResponse';
26851
26991
  error?: Maybe<QueryError>;
26852
- pagination: DevConsolePagination;
26992
+ pagination?: Maybe<DevConsolePagination>;
26853
26993
  resourceUsage: Array<DevConsoleResourceUsage>;
26854
26994
  };
26855
26995
  export declare type DevConsoleAppResourceUsageGroupedResponse = {
26856
26996
  __typename?: 'DevConsoleAppResourceUsageGroupedResponse';
26857
26997
  error?: Maybe<QueryError>;
26858
- pagination: DevConsolePagination;
26998
+ pagination?: Maybe<DevConsolePagination>;
26859
26999
  resourceUsage: Array<DevConsoleResourceUsagePeriod>;
26860
27000
  };
26861
27001
  export declare type DevConsoleAppResourceUsageResponse = DevConsoleAppResourceUsageFlatResponse | DevConsoleAppResourceUsageGroupedResponse;
@@ -26913,6 +27053,7 @@ export declare type DevConsoleDeveloperSpace = {
26913
27053
  publishStatus: DevConsoleDeveloperSpacePublishStatus;
26914
27054
  status: Scalars['String']['output'];
26915
27055
  type: DevConsoleDeveloperSpaceType;
27056
+ vendorId: Scalars['String']['output'];
26916
27057
  version: Scalars['Int']['output'];
26917
27058
  versionId: Scalars['Int']['output'];
26918
27059
  };
@@ -26921,6 +27062,7 @@ export declare type DevConsoleDeveloperSpaceDetails = {
26921
27062
  logo?: Maybe<Scalars['String']['output']>;
26922
27063
  name: Scalars['String']['output'];
26923
27064
  publishStatus: DevConsoleDeveloperSpacePublishStatus;
27065
+ vendorId: Scalars['String']['output'];
26924
27066
  };
26925
27067
  export declare type DevConsoleDeveloperSpaceDetailsResult = {
26926
27068
  __typename?: 'DevConsoleDeveloperSpaceDetailsResult';
@@ -26934,21 +27076,13 @@ export declare type DevConsoleDeveloperSpaceMember = {
26934
27076
  email?: Maybe<Scalars['String']['output']>;
26935
27077
  name?: Maybe<Scalars['String']['output']>;
26936
27078
  picture?: Maybe<Scalars['String']['output']>;
26937
- };
26938
- export declare type DevConsoleDeveloperSpaceMemberInput = {
26939
- developerSpaceId: Scalars['String']['input'];
26940
- memberEmail: Scalars['String']['input'];
26941
- role: DevConsoleDeveloperSpaceMemberRole;
27079
+ roles?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
26942
27080
  };
26943
27081
  export declare type DevConsoleDeveloperSpaceMemberPayload = Payload & {
26944
27082
  __typename?: 'DevConsoleDeveloperSpaceMemberPayload';
26945
- devSpace?: Maybe<DevConsoleDeveloperSpace>;
26946
27083
  errors?: Maybe<Array<MutationError>>;
26947
27084
  success: Scalars['Boolean']['output'];
26948
27085
  };
26949
- export declare enum DevConsoleDeveloperSpaceMemberRole {
26950
- Admin = "ADMIN"
26951
- }
26952
27086
  export declare type DevConsoleDeveloperSpaceMembersResponse = {
26953
27087
  __typename?: 'DevConsoleDeveloperSpaceMembersResponse';
26954
27088
  errors?: Maybe<Array<QueryError>>;
@@ -26977,7 +27111,6 @@ export declare enum DevConsoleDeveloperSpacePublishStatus {
26977
27111
  }
26978
27112
  export declare type DevConsoleDeveloperSpaceSettingsPayload = Payload & {
26979
27113
  __typename?: 'DevConsoleDeveloperSpaceSettingsPayload';
26980
- devSpace?: Maybe<DevConsoleDeveloperSpace>;
26981
27114
  errors?: Maybe<Array<MutationError>>;
26982
27115
  success: Scalars['Boolean']['output'];
26983
27116
  };
@@ -27006,21 +27139,16 @@ export declare type DevConsoleHasConsoleAdminResponse = {
27006
27139
  export declare type DevConsoleMutation = {
27007
27140
  __typename?: 'DevConsoleMutation';
27008
27141
  acceptAppBillingConsent: DevConsoleResponsePayload;
27009
- addDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
27010
27142
  archiveDeveloperSpace: DevConsoleResponsePayload;
27011
27143
  assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
27012
27144
  createDeveloperSpace?: Maybe<DevConsoleDeveloperSpacePayload>;
27013
- removeDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
27014
- updateDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
27145
+ updateDeveloperSpaceMemberRoles?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
27015
27146
  updateDeveloperSpaceSettings?: Maybe<DevConsoleDeveloperSpaceSettingsPayload>;
27016
27147
  };
27017
27148
  export declare type DevConsoleMutationAcceptAppBillingConsentArgs = {
27018
27149
  appIds: Array<Scalars['String']['input']>;
27019
27150
  developerSpaceId: Scalars['String']['input'];
27020
27151
  };
27021
- export declare type DevConsoleMutationAddDeveloperSpaceMemberArgs = {
27022
- input: DevConsoleDeveloperSpaceMemberInput;
27023
- };
27024
27152
  export declare type DevConsoleMutationArchiveDeveloperSpaceArgs = {
27025
27153
  input: DevConsoleArchiveDeveloperSpaceInput;
27026
27154
  };
@@ -27030,11 +27158,8 @@ export declare type DevConsoleMutationAssignDeveloperSpaceArgs = {
27030
27158
  export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
27031
27159
  input: DevConsoleCreateDeveloperSpaceInput;
27032
27160
  };
27033
- export declare type DevConsoleMutationRemoveDeveloperSpaceMemberArgs = {
27034
- input: DevConsoleRemoveDeveloperSpaceMemberInput;
27035
- };
27036
- export declare type DevConsoleMutationUpdateDeveloperSpaceMemberArgs = {
27037
- input: DevConsoleUpdateDeveloperSpaceMemberInput;
27161
+ export declare type DevConsoleMutationUpdateDeveloperSpaceMemberRolesArgs = {
27162
+ input: DevConsoleUpdateDeveloperSpaceMemberRolesInput;
27038
27163
  };
27039
27164
  export declare type DevConsoleMutationUpdateDeveloperSpaceSettingsArgs = {
27040
27165
  input: DevConsoleUpdateDeveloperSpaceSettingsInput;
@@ -27098,10 +27223,6 @@ export declare type DevConsoleQueryHasAnyConsoleAdminArgs = {
27098
27223
  export declare type DevConsoleQueryTenantContextsArgs = {
27099
27224
  ids: Array<Scalars['ID']['input']>;
27100
27225
  };
27101
- export declare type DevConsoleRemoveDeveloperSpaceMemberInput = {
27102
- developerSpaceId: Scalars['String']['input'];
27103
- memberId: Scalars['String']['input'];
27104
- };
27105
27226
  export declare enum DevConsoleResource {
27106
27227
  FunctionCompute = "FUNCTION_COMPUTE",
27107
27228
  KvsRead = "KVS_READ",
@@ -27144,6 +27265,7 @@ export declare type DevConsoleResourceUsagePeriod = {
27144
27265
  export declare type DevConsoleResourceUsageTopSite = {
27145
27266
  __typename?: 'DevConsoleResourceUsageTopSite';
27146
27267
  contextAri: Scalars['String']['output'];
27268
+ hostName?: Maybe<Scalars['String']['output']>;
27147
27269
  totalUsage: Scalars['String']['output'];
27148
27270
  unit: Scalars['String']['output'];
27149
27271
  };
@@ -27181,10 +27303,12 @@ export declare type DevConsoleTransactionAccountResponse = {
27181
27303
  paymentMethod?: Maybe<DevConsoleTransactionAccountPaymentMethod>;
27182
27304
  transactionAccount?: Maybe<DevConsoleTransactionAccountData>;
27183
27305
  };
27184
- export declare type DevConsoleUpdateDeveloperSpaceMemberInput = {
27306
+ export declare type DevConsoleUpdateDeveloperSpaceMemberRolesInput = {
27307
+ addRoles: Array<Scalars['String']['input']>;
27185
27308
  developerSpaceId: Scalars['String']['input'];
27186
- memberId: Scalars['String']['input'];
27187
- role: DevConsoleDeveloperSpaceMemberRole;
27309
+ memberEmail?: InputMaybe<Scalars['String']['input']>;
27310
+ memberId?: InputMaybe<Scalars['String']['input']>;
27311
+ removeRoles: Array<Scalars['String']['input']>;
27188
27312
  };
27189
27313
  export declare type DevConsoleUpdateDeveloperSpaceSettingsInput = {
27190
27314
  developerSpaceId: Scalars['String']['input'];
@@ -36889,6 +37013,8 @@ export declare type GraphStore = {
36889
37013
  userFavoritedFocusAreaBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
36890
37014
  userFavoritedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaInverseConnection>;
36891
37015
  userFavoritedFocusAreaInverseBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
37016
+ userFavoritedTownsquareGoal?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalConnection>;
37017
+ userFavoritedTownsquareGoalInverse?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseConnection>;
36892
37018
  userFavoritedTownsquareProject?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection>;
36893
37019
  userFavoritedTownsquareProjectInverse?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseConnection>;
36894
37020
  userHasExternalPosition?: Maybe<GraphStoreSimplifiedUserHasExternalPositionConnection>;
@@ -36977,6 +37103,7 @@ export declare type GraphStore = {
36977
37103
  userUpdatedIssueBatch?: Maybe<GraphStoreBatchUserUpdatedIssueConnection>;
36978
37104
  userUpdatedIssueInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseConnection>;
36979
37105
  userUpdatedIssueInverseBatch?: Maybe<GraphStoreBatchUserUpdatedIssueConnection>;
37106
+ userViewed3pRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection>;
36980
37107
  userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
36981
37108
  userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
36982
37109
  userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
@@ -41427,6 +41554,20 @@ export declare type GraphStoreUserFavoritedFocusAreaInverseBatchArgs = {
41427
41554
  ids: Array<Scalars['ID']['input']>;
41428
41555
  sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
41429
41556
  };
41557
+ export declare type GraphStoreUserFavoritedTownsquareGoalArgs = {
41558
+ after?: InputMaybe<Scalars['String']['input']>;
41559
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
41560
+ first?: InputMaybe<Scalars['Int']['input']>;
41561
+ id: Scalars['ID']['input'];
41562
+ sort?: InputMaybe<GraphStoreUserFavoritedTownsquareGoalSortInput>;
41563
+ };
41564
+ export declare type GraphStoreUserFavoritedTownsquareGoalInverseArgs = {
41565
+ after?: InputMaybe<Scalars['String']['input']>;
41566
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
41567
+ first?: InputMaybe<Scalars['Int']['input']>;
41568
+ id: Scalars['ID']['input'];
41569
+ sort?: InputMaybe<GraphStoreUserFavoritedTownsquareGoalSortInput>;
41570
+ };
41430
41571
  export declare type GraphStoreUserFavoritedTownsquareProjectArgs = {
41431
41572
  after?: InputMaybe<Scalars['String']['input']>;
41432
41573
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -42045,6 +42186,13 @@ export declare type GraphStoreUserUpdatedIssueInverseBatchArgs = {
42045
42186
  ids: Array<Scalars['ID']['input']>;
42046
42187
  sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
42047
42188
  };
42189
+ export declare type GraphStoreUserViewed3pRemoteLinkInverseArgs = {
42190
+ after?: InputMaybe<Scalars['String']['input']>;
42191
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
42192
+ first?: InputMaybe<Scalars['Int']['input']>;
42193
+ id: Scalars['ID']['input'];
42194
+ sort?: InputMaybe<GraphStoreUserViewed3pRemoteLinkSortInput>;
42195
+ };
42048
42196
  export declare type GraphStoreUserViewedAtlasGoalArgs = {
42049
42197
  after?: InputMaybe<Scalars['String']['input']>;
42050
42198
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -44354,6 +44502,20 @@ export declare type GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagRelations
44354
44502
  to: Scalars['ID']['input'];
44355
44503
  updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
44356
44504
  };
44505
+ export declare type GraphStoreCreateUserFavoritedTownsquareGoalInput = {
44506
+ relationships: Array<GraphStoreCreateUserFavoritedTownsquareGoalRelationshipInput>;
44507
+ };
44508
+ export declare type GraphStoreCreateUserFavoritedTownsquareGoalPayload = Payload & {
44509
+ __typename?: 'GraphStoreCreateUserFavoritedTownsquareGoalPayload';
44510
+ errors?: Maybe<Array<MutationError>>;
44511
+ success: Scalars['Boolean']['output'];
44512
+ };
44513
+ export declare type GraphStoreCreateUserFavoritedTownsquareGoalRelationshipInput = {
44514
+ from: Scalars['ID']['input'];
44515
+ sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
44516
+ to: Scalars['ID']['input'];
44517
+ updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
44518
+ };
44357
44519
  export declare type GraphStoreCreateUserFavoritedTownsquareProjectInput = {
44358
44520
  relationships: Array<GraphStoreCreateUserFavoritedTownsquareProjectRelationshipInput>;
44359
44521
  };
@@ -44955,6 +45117,19 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
44955
45117
  from: Scalars['ID']['input'];
44956
45118
  to: Scalars['ID']['input'];
44957
45119
  };
45120
+ export declare type GraphStoreDeleteUserFavoritedTownsquareGoalInput = {
45121
+ relationships: Array<GraphStoreDeleteUserFavoritedTownsquareGoalRelationshipInput>;
45122
+ synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
45123
+ };
45124
+ export declare type GraphStoreDeleteUserFavoritedTownsquareGoalPayload = Payload & {
45125
+ __typename?: 'GraphStoreDeleteUserFavoritedTownsquareGoalPayload';
45126
+ errors?: Maybe<Array<MutationError>>;
45127
+ success: Scalars['Boolean']['output'];
45128
+ };
45129
+ export declare type GraphStoreDeleteUserFavoritedTownsquareGoalRelationshipInput = {
45130
+ from: Scalars['ID']['input'];
45131
+ to: Scalars['ID']['input'];
45132
+ };
44958
45133
  export declare type GraphStoreDeleteUserFavoritedTownsquareProjectInput = {
44959
45134
  relationships: Array<GraphStoreDeleteUserFavoritedTownsquareProjectRelationshipInput>;
44960
45135
  synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
@@ -48944,6 +49119,7 @@ export declare type GraphStoreMutation = {
48944
49119
  createTeamConnectedToContainer?: Maybe<GraphStoreCreateTeamConnectedToContainerPayload>;
48945
49120
  createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
48946
49121
  createTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagPayload>;
49122
+ createUserFavoritedTownsquareGoal?: Maybe<GraphStoreCreateUserFavoritedTownsquareGoalPayload>;
48947
49123
  createUserFavoritedTownsquareProject?: Maybe<GraphStoreCreateUserFavoritedTownsquareProjectPayload>;
48948
49124
  createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
48949
49125
  createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
@@ -48973,6 +49149,7 @@ export declare type GraphStoreMutation = {
48973
49149
  deleteTeamConnectedToContainer?: Maybe<GraphStoreDeleteTeamConnectedToContainerPayload>;
48974
49150
  deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
48975
49151
  deleteTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload>;
49152
+ deleteUserFavoritedTownsquareGoal?: Maybe<GraphStoreDeleteUserFavoritedTownsquareGoalPayload>;
48976
49153
  deleteUserFavoritedTownsquareProject?: Maybe<GraphStoreDeleteUserFavoritedTownsquareProjectPayload>;
48977
49154
  deleteUserHasRelevantProject?: Maybe<GraphStoreDeleteUserHasRelevantProjectPayload>;
48978
49155
  deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
@@ -49053,6 +49230,9 @@ export declare type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
49053
49230
  export declare type GraphStoreMutationCreateTownsquareTagIsAliasOfTownsquareTagArgs = {
49054
49231
  input?: InputMaybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagInput>;
49055
49232
  };
49233
+ export declare type GraphStoreMutationCreateUserFavoritedTownsquareGoalArgs = {
49234
+ input?: InputMaybe<GraphStoreCreateUserFavoritedTownsquareGoalInput>;
49235
+ };
49056
49236
  export declare type GraphStoreMutationCreateUserFavoritedTownsquareProjectArgs = {
49057
49237
  input?: InputMaybe<GraphStoreCreateUserFavoritedTownsquareProjectInput>;
49058
49238
  };
@@ -49140,6 +49320,9 @@ export declare type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
49140
49320
  export declare type GraphStoreMutationDeleteTownsquareTagIsAliasOfTownsquareTagArgs = {
49141
49321
  input?: InputMaybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput>;
49142
49322
  };
49323
+ export declare type GraphStoreMutationDeleteUserFavoritedTownsquareGoalArgs = {
49324
+ input?: InputMaybe<GraphStoreDeleteUserFavoritedTownsquareGoalInput>;
49325
+ };
49143
49326
  export declare type GraphStoreMutationDeleteUserFavoritedTownsquareProjectArgs = {
49144
49327
  input?: InputMaybe<GraphStoreDeleteUserFavoritedTownsquareProjectInput>;
49145
49328
  };
@@ -56484,6 +56667,38 @@ export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseEdge = {
56484
56667
  };
56485
56668
  export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
56486
56669
  export declare type GraphStoreSimplifiedUserFavoritedFocusAreaUnion = MercuryFocusArea;
56670
+ export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalConnection = HasPageInfo & HasTotal & {
56671
+ __typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalConnection';
56672
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalEdge>>>;
56673
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
56674
+ pageInfo: PageInfo;
56675
+ totalCount?: Maybe<Scalars['Int']['output']>;
56676
+ };
56677
+ export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalEdge = {
56678
+ __typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalEdge';
56679
+ createdAt: Scalars['DateTime']['output'];
56680
+ cursor?: Maybe<Scalars['String']['output']>;
56681
+ id: Scalars['ID']['output'];
56682
+ lastUpdated: Scalars['DateTime']['output'];
56683
+ node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalUnion>;
56684
+ };
56685
+ export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseConnection = HasPageInfo & HasTotal & {
56686
+ __typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseConnection';
56687
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseEdge>>>;
56688
+ isExactCount?: Maybe<Scalars['Boolean']['output']>;
56689
+ pageInfo: PageInfo;
56690
+ totalCount?: Maybe<Scalars['Int']['output']>;
56691
+ };
56692
+ export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseEdge = {
56693
+ __typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseEdge';
56694
+ createdAt: Scalars['DateTime']['output'];
56695
+ cursor?: Maybe<Scalars['String']['output']>;
56696
+ id: Scalars['ID']['output'];
56697
+ lastUpdated: Scalars['DateTime']['output'];
56698
+ node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseUnion>;
56699
+ };
56700
+ export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
56701
+ export declare type GraphStoreSimplifiedUserFavoritedTownsquareGoalUnion = TownsquareGoal;
56487
56702
  export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection = HasPageInfo & HasTotal & {
56488
56703
  __typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection';
56489
56704
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectEdge>>>;
@@ -57708,6 +57923,20 @@ export declare type GraphStoreSimplifiedUserUpdatedIssueInverseEdge = {
57708
57923
  };
57709
57924
  export declare type GraphStoreSimplifiedUserUpdatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
57710
57925
  export declare type GraphStoreSimplifiedUserUpdatedIssueUnion = JiraIssue;
57926
+ export declare type GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection = HasPageInfo & {
57927
+ __typename?: 'GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection';
57928
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseEdge>>>;
57929
+ pageInfo: PageInfo;
57930
+ };
57931
+ export declare type GraphStoreSimplifiedUserViewed3pRemoteLinkInverseEdge = {
57932
+ __typename?: 'GraphStoreSimplifiedUserViewed3pRemoteLinkInverseEdge';
57933
+ createdAt: Scalars['DateTime']['output'];
57934
+ cursor?: Maybe<Scalars['String']['output']>;
57935
+ id: Scalars['ID']['output'];
57936
+ lastUpdated: Scalars['DateTime']['output'];
57937
+ node?: Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseUnion>;
57938
+ };
57939
+ export declare type GraphStoreSimplifiedUserViewed3pRemoteLinkInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
57711
57940
  export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
57712
57941
  __typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
57713
57942
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
@@ -58968,6 +59197,12 @@ export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
58968
59197
  export declare type GraphStoreUserFavoritedFocusAreaSortInput = {
58969
59198
  lastModified?: InputMaybe<GraphStoreSortInput>;
58970
59199
  };
59200
+ export declare type GraphStoreUserFavoritedTownsquareGoalSortInput = {
59201
+ createdAt?: InputMaybe<GraphStoreSortInput>;
59202
+ fromAti?: InputMaybe<GraphStoreSortInput>;
59203
+ lastModified?: InputMaybe<GraphStoreSortInput>;
59204
+ toAti?: InputMaybe<GraphStoreSortInput>;
59205
+ };
58971
59206
  export declare type GraphStoreUserFavoritedTownsquareProjectSortInput = {
58972
59207
  createdAt?: InputMaybe<GraphStoreSortInput>;
58973
59208
  fromAti?: InputMaybe<GraphStoreSortInput>;
@@ -59140,6 +59375,9 @@ export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
59140
59375
  export declare type GraphStoreUserUpdatedIssueSortInput = {
59141
59376
  lastModified?: InputMaybe<GraphStoreSortInput>;
59142
59377
  };
59378
+ export declare type GraphStoreUserViewed3pRemoteLinkSortInput = {
59379
+ lastModified?: InputMaybe<GraphStoreSortInput>;
59380
+ };
59143
59381
  export declare type GraphStoreUserViewedAtlasGoalSortInput = {
59144
59382
  lastModified?: InputMaybe<GraphStoreSortInput>;
59145
59383
  };
@@ -63192,6 +63430,19 @@ export declare type JiraActivityFieldValueKeyValuePairInput = {
63192
63430
  key: Scalars['String']['input'];
63193
63431
  value: Array<InputMaybe<Scalars['String']['input']>>;
63194
63432
  };
63433
+ export declare enum JiraActivityFilter {
63434
+ AnyComment = "ANY_COMMENT",
63435
+ Approval = "APPROVAL",
63436
+ HiddenCustomEntries = "HIDDEN_CUSTOM_ENTRIES",
63437
+ History = "HISTORY",
63438
+ HistoryIncludeIssueCreated = "HISTORY_INCLUDE_ISSUE_CREATED",
63439
+ IccSessionDetails = "ICC_SESSION_DETAILS",
63440
+ IccSessionLifecycle = "ICC_SESSION_LIFECYCLE",
63441
+ Incident = "INCIDENT",
63442
+ ResponderAlert = "RESPONDER_ALERT",
63443
+ StakeholderUpdate = "STAKEHOLDER_UPDATE",
63444
+ WorkLog = "WORK_LOG"
63445
+ }
63195
63446
  export declare type JiraActivitySortOrderPayload = Payload & {
63196
63447
  __typename?: 'JiraActivitySortOrderPayload';
63197
63448
  activitySortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
@@ -63549,6 +63800,22 @@ export declare type JiraAlignAggSite = {
63549
63800
  jiraAlignSiteUrl: Scalars['String']['output'];
63550
63801
  workspaceId?: Maybe<Scalars['String']['output']>;
63551
63802
  };
63803
+ export declare type JiraAllActivityFeedConnection = {
63804
+ __typename?: 'JiraAllActivityFeedConnection';
63805
+ edges?: Maybe<Array<JiraAllActivityFeedEdge>>;
63806
+ pageInfo?: Maybe<PageInfo>;
63807
+ };
63808
+ export declare type JiraAllActivityFeedEdge = {
63809
+ __typename?: 'JiraAllActivityFeedEdge';
63810
+ cursor: Scalars['String']['output'];
63811
+ node?: Maybe<JiraAllActivityFeedItem>;
63812
+ };
63813
+ export declare type JiraAllActivityFeedItem = {
63814
+ __typename?: 'JiraAllActivityFeedItem';
63815
+ item?: Maybe<JiraAllActivityFeedItemUnion>;
63816
+ timestamp?: Maybe<Scalars['Long']['output']>;
63817
+ };
63818
+ export declare type JiraAllActivityFeedItemUnion = JiraApprovalItem | JiraCommentItem | JiraHiddenCommentItem | JiraHistoryItem | JiraWorklogItem;
63552
63819
  export declare enum JiraAllowedFieldFormatConfig {
63553
63820
  NumberFieldFormatConfig = "NUMBER_FIELD_FORMAT_CONFIG"
63554
63821
  }
@@ -63719,10 +63986,47 @@ export declare type JiraApplySuggestionActionsPayload = Payload & {
63719
63986
  success: Scalars['Boolean']['output'];
63720
63987
  suggestions?: Maybe<Array<Maybe<JiraSuggestion>>>;
63721
63988
  };
63989
+ export declare type JiraApprovalActivityFeedConnection = {
63990
+ __typename?: 'JiraApprovalActivityFeedConnection';
63991
+ nodes: Array<JiraApprovalActivityItem>;
63992
+ pageInfo?: Maybe<PageInfo>;
63993
+ };
63994
+ export declare type JiraApprovalActivityItem = {
63995
+ __typename?: 'JiraApprovalActivityItem';
63996
+ approvalName?: Maybe<Scalars['String']['output']>;
63997
+ date: Scalars['Long']['output'];
63998
+ friendlyDate?: Maybe<Scalars['String']['output']>;
63999
+ id: Scalars['ID']['output'];
64000
+ value?: Maybe<JiraApprovalActivityValueUnion>;
64001
+ };
64002
+ export declare type JiraApprovalActivityValueUnion = JiraApprovalCompleted | JiraApprovalCreated | JiraApproverDecision;
64003
+ export declare type JiraApprovalCompleted = {
64004
+ __typename?: 'JiraApprovalCompleted';
64005
+ outcome?: Maybe<Scalars['String']['output']>;
64006
+ systemDecided?: Maybe<Scalars['Boolean']['output']>;
64007
+ };
64008
+ export declare type JiraApprovalConfiguration = {
64009
+ __typename?: 'JiraApprovalConfiguration';
64010
+ approverFieldId?: Maybe<Scalars['String']['output']>;
64011
+ approverFieldType?: Maybe<Scalars['String']['output']>;
64012
+ conditionType?: Maybe<Scalars['String']['output']>;
64013
+ conditionValue?: Maybe<Scalars['String']['output']>;
64014
+ translatedApproverFieldName?: Maybe<Scalars['String']['output']>;
64015
+ };
64016
+ export declare type JiraApprovalCreated = {
64017
+ __typename?: 'JiraApprovalCreated';
64018
+ approvalConfigurations?: Maybe<Array<Maybe<JiraApprovalConfiguration>>>;
64019
+ excludedFields?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
64020
+ statusCategory?: Maybe<JiraStatusCategory>;
64021
+ };
63722
64022
  export declare enum JiraApprovalDecision {
63723
64023
  Approved = "APPROVED",
63724
64024
  Rejected = "REJECTED"
63725
64025
  }
64026
+ export declare type JiraApprovalItem = {
64027
+ __typename?: 'JiraApprovalItem';
64028
+ approvalItem?: Maybe<JiraApprovalActivityItem>;
64029
+ };
63726
64030
  export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestInput = {
63727
64031
  approvalLocation?: InputMaybe<JiraOrganizationApprovalLocation>;
63728
64032
  workspaceId: Scalars['ID']['input'];
@@ -63732,6 +64036,11 @@ export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestPayload = Payl
63732
64036
  errors?: Maybe<Array<MutationError>>;
63733
64037
  success: Scalars['Boolean']['output'];
63734
64038
  };
64039
+ export declare type JiraApproverDecision = {
64040
+ __typename?: 'JiraApproverDecision';
64041
+ approver?: Maybe<User>;
64042
+ decision?: Maybe<Scalars['String']['output']>;
64043
+ };
63735
64044
  export declare type JiraArchiveJourneyConfigurationInput = {
63736
64045
  etag?: InputMaybe<Scalars['String']['input']>;
63737
64046
  id: Scalars['ID']['input'];
@@ -64950,7 +65259,7 @@ export declare enum JiraBoardType {
64950
65259
  Kanban = "KANBAN",
64951
65260
  Scrum = "SCRUM"
64952
65261
  }
64953
- export declare type JiraBoardView = {
65262
+ export declare type JiraBoardView = JiraView & Node & {
64954
65263
  __typename?: 'JiraBoardView';
64955
65264
  canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
64956
65265
  canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
@@ -65231,9 +65540,10 @@ export declare type JiraBulkCreateIssueLinksInput = {
65231
65540
  };
65232
65541
  export declare type JiraBulkCreateIssueLinksPayload = Payload & {
65233
65542
  __typename?: 'JiraBulkCreateIssueLinksPayload';
65543
+ destinationIssues?: Maybe<Array<JiraIssue>>;
65234
65544
  errors?: Maybe<Array<MutationError>>;
65235
65545
  issueLinkEdges?: Maybe<Array<JiraIssueLinkEdge>>;
65236
- issueLinkField?: Maybe<JiraIssueLinkField>;
65546
+ sourceIssue?: Maybe<JiraIssue>;
65237
65547
  success: Scalars['Boolean']['output'];
65238
65548
  };
65239
65549
  export declare type JiraBulkDeleteInput = {
@@ -66376,6 +66686,10 @@ export declare type JiraCommentEdge = {
66376
66686
  cursor: Scalars['String']['output'];
66377
66687
  node?: Maybe<JiraComment>;
66378
66688
  };
66689
+ export declare type JiraCommentItem = {
66690
+ __typename?: 'JiraCommentItem';
66691
+ commentItem?: Maybe<JiraComment>;
66692
+ };
66379
66693
  export declare enum JiraCommentSortField {
66380
66694
  Created = "CREATED"
66381
66695
  }
@@ -67693,10 +68007,11 @@ export declare type JiraDeleteFormattingRulePayload = Payload & {
67693
68007
  export declare type JiraDeleteIssueLinkPayload = Payload & {
67694
68008
  __typename?: 'JiraDeleteIssueLinkPayload';
67695
68009
  deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
68010
+ destinationIssue?: Maybe<JiraIssue>;
67696
68011
  errors?: Maybe<Array<MutationError>>;
67697
68012
  id?: Maybe<Scalars['ID']['output']>;
67698
- issueLinkField?: Maybe<JiraIssueLinkField>;
67699
68013
  issueLinkId?: Maybe<Scalars['ID']['output']>;
68014
+ sourceIssue?: Maybe<JiraIssue>;
67700
68015
  success: Scalars['Boolean']['output'];
67701
68016
  };
67702
68017
  export declare type JiraDeleteIssueSearchFormattingRuleInput = {
@@ -68169,6 +68484,7 @@ export declare type JiraDiscardUserIssueSearchConfigPayload = {
68169
68484
  __typename?: 'JiraDiscardUserIssueSearchConfigPayload';
68170
68485
  errors?: Maybe<Array<MutationError>>;
68171
68486
  success: Scalars['Boolean']['output'];
68487
+ view?: Maybe<JiraView>;
68172
68488
  };
68173
68489
  export declare type JiraDiscardUserViewConfigInput = {
68174
68490
  viewId: Scalars['ID']['input'];
@@ -68532,6 +68848,7 @@ export declare type JiraFieldAssociationWithIssueTypesConnection = {
68532
68848
  __typename?: 'JiraFieldAssociationWithIssueTypesConnection';
68533
68849
  edges?: Maybe<Array<Maybe<JiraFieldAssociationWithIssueTypesEdge>>>;
68534
68850
  pageInfo: PageInfo;
68851
+ totalCount?: Maybe<Scalars['Int']['output']>;
68535
68852
  };
68536
68853
  export declare type JiraFieldAssociationWithIssueTypesEdge = {
68537
68854
  __typename?: 'JiraFieldAssociationWithIssueTypesEdge';
@@ -69641,6 +69958,7 @@ export declare type JiraGetIssueResourceInput = {
69641
69958
  first: Scalars['Int']['input'];
69642
69959
  orderDirection?: InputMaybe<JiraResourcesSortDirection>;
69643
69960
  orderField?: InputMaybe<JiraResourcesOrderField>;
69961
+ pagination?: InputMaybe<JiraResourcePaginationInput>;
69644
69962
  };
69645
69963
  export declare enum JiraGlobalIssueCreateView {
69646
69964
  FullModal = "FULL_MODAL",
@@ -69926,6 +70244,10 @@ export declare type JiraHasSelectableValueOptionsSelectableValueOptionsArgs = {
69926
70244
  export declare type JiraHasSingleSelectedValue = {
69927
70245
  selectedValue?: Maybe<JiraSelectableValue>;
69928
70246
  };
70247
+ export declare type JiraHiddenCommentItem = {
70248
+ __typename?: 'JiraHiddenCommentItem';
70249
+ hiddenCommentItem?: Maybe<JiraComment>;
70250
+ };
69929
70251
  export declare type JiraHierarchyConfigError = {
69930
70252
  __typename?: 'JiraHierarchyConfigError';
69931
70253
  code?: Maybe<Scalars['String']['output']>;
@@ -69957,6 +70279,7 @@ export declare type JiraHistoryAssigneeFieldValue = {
69957
70279
  avatarUrl?: Maybe<Scalars['String']['output']>;
69958
70280
  displayValue?: Maybe<Scalars['String']['output']>;
69959
70281
  formattedValue?: Maybe<Scalars['String']['output']>;
70282
+ user?: Maybe<User>;
69960
70283
  value?: Maybe<Scalars['String']['output']>;
69961
70284
  };
69962
70285
  export declare type JiraHistoryFieldSchema = {
@@ -69971,6 +70294,10 @@ export declare type JiraHistoryGenericFieldValue = {
69971
70294
  formattedValue?: Maybe<Scalars['String']['output']>;
69972
70295
  value?: Maybe<Scalars['String']['output']>;
69973
70296
  };
70297
+ export declare type JiraHistoryItem = {
70298
+ __typename?: 'JiraHistoryItem';
70299
+ historyItem?: Maybe<JiraHistoryActivityFeedItem>;
70300
+ };
69974
70301
  export declare type JiraHistoryPriorityFieldValue = {
69975
70302
  __typename?: 'JiraHistoryPriorityFieldValue';
69976
70303
  absoluteIconUrl?: Maybe<Scalars['String']['output']>;
@@ -70092,6 +70419,7 @@ export declare type JiraInviterActivityRecommendation = JiraProjectRecommendatio
70092
70419
  export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike & Node & {
70093
70420
  __typename?: 'JiraIssue';
70094
70421
  aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
70422
+ allActivities?: Maybe<JiraAllActivityFeedConnection>;
70095
70423
  archivedBy?: Maybe<User>;
70096
70424
  archivedOn?: Maybe<Scalars['DateTime']['output']>;
70097
70425
  assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
@@ -70101,6 +70429,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
70101
70429
  autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
70102
70430
  canBeExported?: Maybe<Scalars['Boolean']['output']>;
70103
70431
  canCreateSubtask?: Maybe<Scalars['Boolean']['output']>;
70432
+ canDownloadAttachment?: Maybe<Scalars['Boolean']['output']>;
70104
70433
  canHaveChildIssues?: Maybe<Scalars['Boolean']['output']>;
70105
70434
  childIssues?: Maybe<JiraChildIssues>;
70106
70435
  commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
@@ -70116,6 +70445,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
70116
70445
  contentPanels?: Maybe<JiraIssueContentPanelConnection>;
70117
70446
  coverMedia?: Maybe<JiraWorkManagementBackground>;
70118
70447
  createdField?: Maybe<JiraDateTimePickerField>;
70448
+ deletableAttachmentsCount?: Maybe<Scalars['Int']['output']>;
70119
70449
  deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
70120
70450
  descriptionField?: Maybe<JiraRichTextField>;
70121
70451
  designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
@@ -70153,6 +70483,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
70153
70483
  isResolved?: Maybe<Scalars['Boolean']['output']>;
70154
70484
  issueColorField?: Maybe<JiraColorField>;
70155
70485
  issueId: Scalars['String']['output'];
70486
+ issueLinkField?: Maybe<JiraIssueLinkField>;
70156
70487
  issueLinks?: Maybe<JiraIssueLinkConnection>;
70157
70488
  issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
70158
70489
  issueRestrictionField?: Maybe<JiraIssueRestrictionField>;
@@ -70232,6 +70563,13 @@ export declare type JiraIssueAiAgentSessionsArgs = {
70232
70563
  first?: InputMaybe<Scalars['Int']['input']>;
70233
70564
  last?: InputMaybe<Scalars['Int']['input']>;
70234
70565
  };
70566
+ export declare type JiraIssueAllActivitiesArgs = {
70567
+ after?: InputMaybe<Scalars['String']['input']>;
70568
+ cloudId: Scalars['ID']['input'];
70569
+ filterBy?: InputMaybe<Array<JiraActivityFilter>>;
70570
+ first: Scalars['Int']['input'];
70571
+ orderBy?: InputMaybe<Scalars['String']['input']>;
70572
+ };
70235
70573
  export declare type JiraIssueAttachmentsArgs = {
70236
70574
  after?: InputMaybe<Scalars['String']['input']>;
70237
70575
  before?: InputMaybe<Scalars['String']['input']>;
@@ -71567,6 +71905,10 @@ export declare type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
71567
71905
  issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
71568
71906
  success: Scalars['Boolean']['output'];
71569
71907
  };
71908
+ export declare type JiraIssueNoEnrichmentStreamHubPayload = {
71909
+ __typename?: 'JiraIssueNoEnrichmentStreamHubPayload';
71910
+ resource?: Maybe<Scalars['ID']['output']>;
71911
+ };
71570
71912
  export declare type JiraIssuePickerInput = {
71571
71913
  currentIssueId: Scalars['ID']['input'];
71572
71914
  currentJQL?: InputMaybe<Scalars['String']['input']>;
@@ -71813,6 +72155,7 @@ export declare type JiraIssueSearchContextualContentIssuesArgs = {
71813
72155
  };
71814
72156
  export declare type JiraIssueSearchCustomInput = {
71815
72157
  jiraSoftwareInput?: InputMaybe<JiraSoftwareIssueSearchCustomInput>;
72158
+ jiraTimelineInput?: InputMaybe<JiraTimelineIssueSearchCustomInput>;
71816
72159
  };
71817
72160
  export declare type JiraIssueSearchError = JiraCustomIssueSearchError | JiraInvalidJqlError | JiraInvalidSyntaxError | JiraServerError;
71818
72161
  export declare type JiraIssueSearchErrorExtension = QueryErrorExtension & {
@@ -71971,6 +72314,7 @@ export declare type JiraIssueSearchStatus = {
71971
72314
  export declare type JiraIssueSearchTimelineViewConfigSettings = {
71972
72315
  __typename?: 'JiraIssueSearchTimelineViewConfigSettings';
71973
72316
  aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
72317
+ hideWarnings?: Maybe<Scalars['Boolean']['output']>;
71974
72318
  };
71975
72319
  export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
71976
72320
  __typename?: 'JiraIssueSearchView';
@@ -73643,6 +73987,40 @@ export declare type JiraMentionableEdge = {
73643
73987
  cursor?: Maybe<Scalars['String']['output']>;
73644
73988
  node?: Maybe<JiraMentionable>;
73645
73989
  };
73990
+ export declare type JiraMergeIssueError = {
73991
+ __typename?: 'JiraMergeIssueError';
73992
+ message?: Maybe<Scalars['String']['output']>;
73993
+ step?: Maybe<Scalars['String']['output']>;
73994
+ };
73995
+ export declare type JiraMergeIssuesInput = {
73996
+ mergeAttachments: Scalars['Boolean']['input'];
73997
+ mergeComments: Scalars['Boolean']['input'];
73998
+ mergeDescriptionFrom: Scalars['ID']['input'];
73999
+ mergeFieldsFrom: Scalars['ID']['input'];
74000
+ mergeLinks: Scalars['Boolean']['input'];
74001
+ mergeSubtasks: Scalars['Boolean']['input'];
74002
+ sourceIds: Array<Scalars['ID']['input']>;
74003
+ targetId: Scalars['ID']['input'];
74004
+ };
74005
+ export declare type JiraMergeIssuesOperationProgress = {
74006
+ __typename?: 'JiraMergeIssuesOperationProgress';
74007
+ errors?: Maybe<Array<JiraMergeIssueError>>;
74008
+ id: Scalars['ID']['output'];
74009
+ status?: Maybe<JiraLongRunningTaskStatus>;
74010
+ submittedTime?: Maybe<Scalars['DateTime']['output']>;
74011
+ taskId?: Maybe<Scalars['ID']['output']>;
74012
+ };
74013
+ export declare type JiraMergeIssuesOperationProgressInput = {
74014
+ cloudId: Scalars['ID']['input'];
74015
+ taskId: Scalars['ID']['input'];
74016
+ };
74017
+ export declare type JiraMergeIssuesOperationProgressResult = JiraMergeIssuesOperationProgress | QueryError;
74018
+ export declare type JiraMergeIssuesPayload = Payload & {
74019
+ __typename?: 'JiraMergeIssuesPayload';
74020
+ errors?: Maybe<Array<MutationError>>;
74021
+ progress?: Maybe<JiraMergeIssuesOperationProgress>;
74022
+ success: Scalars['Boolean']['output'];
74023
+ };
73646
74024
  export declare type JiraMergeVersionInput = {
73647
74025
  id: Scalars['ID']['input'];
73648
74026
  targetVersionId: Scalars['ID']['input'];
@@ -75690,6 +76068,10 @@ export declare type JiraPageCursors = {
75690
76068
  last?: Maybe<JiraPageCursor>;
75691
76069
  previous?: Maybe<JiraPageCursor>;
75692
76070
  };
76071
+ export declare enum JiraPaginationStyle {
76072
+ Cursor = "CURSOR",
76073
+ Offset = "OFFSET"
76074
+ }
75693
76075
  export declare type JiraParentFieldInput = {
75694
76076
  issueId: Scalars['ID']['input'];
75695
76077
  };
@@ -77596,6 +77978,7 @@ export declare type JiraQuery = {
77596
77978
  jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
77597
77979
  labelsFieldOptions?: Maybe<JiraLabelConnection>;
77598
77980
  labelsInBoard?: Maybe<JiraLabelConnection>;
77981
+ limitValues?: Maybe<Array<Maybe<JiraResourceUsageMetricLimitValue>>>;
77599
77982
  linkedWorkItems?: Maybe<JiraIssueConnection>;
77600
77983
  lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
77601
77984
  mediaClientId?: Maybe<Scalars['String']['output']>;
@@ -78378,6 +78761,10 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
78378
78761
  export declare type JiraQueryLabelsInBoardArgs = {
78379
78762
  boardId: Scalars['ID']['input'];
78380
78763
  };
78764
+ export declare type JiraQueryLimitValuesArgs = {
78765
+ cloudId: Scalars['ID']['input'];
78766
+ filterKeys?: InputMaybe<Array<Scalars['String']['input']>>;
78767
+ };
78381
78768
  export declare type JiraQueryLinkedWorkItemsArgs = {
78382
78769
  after?: InputMaybe<Scalars['String']['input']>;
78383
78770
  before?: InputMaybe<Scalars['String']['input']>;
@@ -79310,6 +79697,7 @@ export declare type JiraResource = {
79310
79697
  hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
79311
79698
  id: Scalars['ID']['output'];
79312
79699
  integration?: Maybe<JiraResourceIntegration>;
79700
+ isExternallyLinked?: Maybe<Scalars['Boolean']['output']>;
79313
79701
  parent?: Maybe<JiraResourceParentName>;
79314
79702
  parentId?: Maybe<Scalars['String']['output']>;
79315
79703
  };
@@ -79323,6 +79711,16 @@ export declare type JiraResourceNode = {
79323
79711
  __typename?: 'JiraResourceNode';
79324
79712
  node?: Maybe<JiraResource>;
79325
79713
  };
79714
+ export declare type JiraResourcePaginationInput = {
79715
+ currentPageNumber?: InputMaybe<Scalars['Int']['input']>;
79716
+ isLast?: InputMaybe<Scalars['Boolean']['input']>;
79717
+ pageCursor?: InputMaybe<Scalars['String']['input']>;
79718
+ pageNumber?: InputMaybe<Scalars['Int']['input']>;
79719
+ pageSize: Scalars['Int']['input'];
79720
+ style: JiraPaginationStyle;
79721
+ totalCount?: InputMaybe<Scalars['Long']['input']>;
79722
+ totalLinks?: InputMaybe<Scalars['Long']['input']>;
79723
+ };
79326
79724
  export declare enum JiraResourceParentName {
79327
79725
  Comment = "COMMENT",
79328
79726
  Customfield = "CUSTOMFIELD",
@@ -79403,6 +79801,11 @@ export declare type JiraResourceUsageMetricEdgeV2 = {
79403
79801
  cursor: Scalars['String']['output'];
79404
79802
  node?: Maybe<JiraResourceUsageMetricV2>;
79405
79803
  };
79804
+ export declare type JiraResourceUsageMetricLimitValue = {
79805
+ __typename?: 'JiraResourceUsageMetricLimitValue';
79806
+ key?: Maybe<Scalars['String']['output']>;
79807
+ limitValue?: Maybe<Scalars['Int']['output']>;
79808
+ };
79406
79809
  export declare type JiraResourceUsageMetricV2 = {
79407
79810
  cleanupValue?: Maybe<Scalars['Long']['output']>;
79408
79811
  currentValue?: Maybe<Scalars['Long']['output']>;
@@ -79467,6 +79870,16 @@ export declare enum JiraResourcesSortDirection {
79467
79870
  Asc = "ASC",
79468
79871
  Desc = "DESC"
79469
79872
  }
79873
+ export declare type JiraRestoreCustomFieldsInput = {
79874
+ fieldIds: Array<Scalars['String']['input']>;
79875
+ };
79876
+ export declare type JiraRestoreCustomFieldsPayload = Payload & {
79877
+ __typename?: 'JiraRestoreCustomFieldsPayload';
79878
+ errors?: Maybe<Array<MutationError>>;
79879
+ failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
79880
+ succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
79881
+ success: Scalars['Boolean']['output'];
79882
+ };
79470
79883
  export declare type JiraRestoreGlobalCustomFieldsInput = {
79471
79884
  fieldIds: Array<Scalars['String']['input']>;
79472
79885
  };
@@ -82102,6 +82515,10 @@ export declare type JiraSubscription = {
82102
82515
  onCalendarIssueCreated?: Maybe<JiraIssueWithScenario>;
82103
82516
  onCalendarIssueDeleted?: Maybe<JiraStreamHubResourceIdentifier>;
82104
82517
  onCalendarIssueUpdated?: Maybe<JiraIssueWithScenario>;
82518
+ onChildIssueAddedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
82519
+ onChildIssueCreatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
82520
+ onChildIssueRemovedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
82521
+ onChildIssueUpdatedNoEnrichment?: Maybe<JiraIssueNoEnrichmentStreamHubPayload>;
82105
82522
  onIssueCreatedByProject?: Maybe<JiraIssue>;
82106
82523
  onIssueCreatedByProjectNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
82107
82524
  onIssueCreatedByProjectsNoEnrichment?: Maybe<JiraIssueCreatedStreamHubPayload>;
@@ -82161,6 +82578,22 @@ export declare type JiraSubscriptionOnCalendarIssueUpdatedArgs = {
82161
82578
  scope?: InputMaybe<JiraViewScopeInput>;
82162
82579
  unscheduledIssuesInput?: InputMaybe<JiraCalendarIssuesInput>;
82163
82580
  };
82581
+ export declare type JiraSubscriptionOnChildIssueAddedNoEnrichmentArgs = {
82582
+ cloudId: Scalars['ID']['input'];
82583
+ parentIssueId: Scalars['String']['input'];
82584
+ };
82585
+ export declare type JiraSubscriptionOnChildIssueCreatedNoEnrichmentArgs = {
82586
+ cloudId: Scalars['ID']['input'];
82587
+ parentIssueId: Scalars['String']['input'];
82588
+ };
82589
+ export declare type JiraSubscriptionOnChildIssueRemovedNoEnrichmentArgs = {
82590
+ cloudId: Scalars['ID']['input'];
82591
+ parentIssueId: Scalars['String']['input'];
82592
+ };
82593
+ export declare type JiraSubscriptionOnChildIssueUpdatedNoEnrichmentArgs = {
82594
+ cloudId: Scalars['ID']['input'];
82595
+ parentIssueId: Scalars['String']['input'];
82596
+ };
82164
82597
  export declare type JiraSubscriptionOnIssueCreatedByProjectArgs = {
82165
82598
  cloudId: Scalars['ID']['input'];
82166
82599
  projectId: Scalars['String']['input'];
@@ -82645,6 +83078,12 @@ export declare type JiraTimelineIssueLinkOperationPayload = {
82645
83078
  outwardItem?: Maybe<JiraIssue>;
82646
83079
  success: Scalars['Boolean']['output'];
82647
83080
  };
83081
+ export declare type JiraTimelineIssueSearchCustomInput = {
83082
+ additionalJql?: InputMaybe<Scalars['String']['input']>;
83083
+ boardId: Scalars['ID']['input'];
83084
+ customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
83085
+ quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
83086
+ };
82648
83087
  export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSearchViewMetadata & JiraSpreadsheetView & JiraView & Node & {
82649
83088
  __typename?: 'JiraTimelineView';
82650
83089
  canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
@@ -82805,6 +83244,16 @@ export declare enum JiraTransitionSortOption {
82805
83244
  OpsBar = "OPS_BAR",
82806
83245
  OpsBarThenStatusCategory = "OPS_BAR_THEN_STATUS_CATEGORY"
82807
83246
  }
83247
+ export declare type JiraTrashCustomFieldsInput = {
83248
+ fieldIds: Array<Scalars['String']['input']>;
83249
+ };
83250
+ export declare type JiraTrashCustomFieldsPayload = Payload & {
83251
+ __typename?: 'JiraTrashCustomFieldsPayload';
83252
+ errors?: Maybe<Array<MutationError>>;
83253
+ failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
83254
+ succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
83255
+ success: Scalars['Boolean']['output'];
83256
+ };
82808
83257
  export declare type JiraTrashGlobalCustomFieldsInput = {
82809
83258
  fieldIds: Array<Scalars['String']['input']>;
82810
83259
  };
@@ -82981,6 +83430,19 @@ export declare type JiraUpdateCustomBackgroundPayload = Payload & {
82981
83430
  errors?: Maybe<Array<MutationError>>;
82982
83431
  success: Scalars['Boolean']['output'];
82983
83432
  };
83433
+ export declare type JiraUpdateCustomFieldInput = {
83434
+ description?: InputMaybe<Scalars['String']['input']>;
83435
+ fieldId: Scalars['String']['input'];
83436
+ formatConfig?: InputMaybe<JiraFieldFormatConfigInput>;
83437
+ name: Scalars['String']['input'];
83438
+ searcherKey?: InputMaybe<Scalars['String']['input']>;
83439
+ };
83440
+ export declare type JiraUpdateCustomFieldPayload = Payload & {
83441
+ __typename?: 'JiraUpdateCustomFieldPayload';
83442
+ errors?: Maybe<Array<MutationError>>;
83443
+ field?: Maybe<JiraIssueFieldConfig>;
83444
+ success: Scalars['Boolean']['output'];
83445
+ };
82984
83446
  export declare type JiraUpdateCustomFilterDetailsInput = {
82985
83447
  description?: InputMaybe<Scalars['String']['input']>;
82986
83448
  editGrants: Array<InputMaybe<JiraShareableEntityEditGrantInput>>;
@@ -84953,6 +85415,10 @@ export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
84953
85415
  startedTime?: InputMaybe<Scalars['DateTime']['input']>;
84954
85416
  timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
84955
85417
  };
85418
+ export declare type JiraWorklogItem = {
85419
+ __typename?: 'JiraWorklogItem';
85420
+ worklogItem?: Maybe<JiraWorklog>;
85421
+ };
84956
85422
  export declare type JiraWorklogPayload = Payload & {
84957
85423
  __typename?: 'JiraWorklogPayload';
84958
85424
  errors?: Maybe<Array<MutationError>>;
@@ -85144,12 +85610,10 @@ export declare type JsmChannelsExperienceConfiguration = {
85144
85610
  __typename?: 'JsmChannelsExperienceConfiguration';
85145
85611
  filter?: Maybe<JsmChannelsFilterConfiguration>;
85146
85612
  isEnabled: Scalars['Boolean']['output'];
85147
- mode?: Maybe<JsmChannelsExperienceMode>;
85148
85613
  };
85149
85614
  export declare type JsmChannelsExperienceConfigurationInput = {
85150
85615
  filter?: InputMaybe<JsmChannelsFilterConfigurationInput>;
85151
85616
  isEnabled: Scalars['Boolean']['input'];
85152
- mode?: InputMaybe<JsmChannelsExperienceMode>;
85153
85617
  };
85154
85618
  export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
85155
85619
  __typename?: 'JsmChannelsExperienceConfigurationPayload';
@@ -85158,23 +85622,13 @@ export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
85158
85622
  success: Scalars['Boolean']['output'];
85159
85623
  };
85160
85624
  export declare type JsmChannelsExperienceConfigurationResult = JsmChannelsExperienceConfiguration | QueryError;
85161
- export declare enum JsmChannelsExperienceMode {
85162
- Autonomous = "AUTONOMOUS",
85163
- Supervised = "SUPERVISED"
85164
- }
85165
85625
  export declare type JsmChannelsFilterConfiguration = {
85166
85626
  __typename?: 'JsmChannelsFilterConfiguration';
85167
- requestTypes?: Maybe<Array<Scalars['String']['output']>>;
85168
- requestTypesMode?: Maybe<JsmChannelsFilterRequestTypesMode>;
85627
+ requestTypes?: Maybe<Array<JsmChannelsRequestTypes>>;
85169
85628
  };
85170
85629
  export declare type JsmChannelsFilterConfigurationInput = {
85171
- requestTypes?: InputMaybe<Array<Scalars['String']['input']>>;
85172
- requestTypesMode?: InputMaybe<JsmChannelsFilterRequestTypesMode>;
85630
+ requestTypes?: InputMaybe<Array<JsmChannelsRequestTypesInput>>;
85173
85631
  };
85174
- export declare enum JsmChannelsFilterRequestTypesMode {
85175
- All = "ALL",
85176
- Specific = "SPECIFIC"
85177
- }
85178
85632
  export declare type JsmChannelsOrchestratorConversation = Node & {
85179
85633
  __typename?: 'JsmChannelsOrchestratorConversation';
85180
85634
  action?: Maybe<JsmChannelsOrchestratorConversationActionType>;
@@ -85231,6 +85685,22 @@ export declare type JsmChannelsOrchestratorConversationsFilter = {
85231
85685
  startDate: Scalars['DateTime']['input'];
85232
85686
  states?: InputMaybe<Array<JsmChannelsOrchestratorConversationState>>;
85233
85687
  };
85688
+ export declare enum JsmChannelsRequestTypeExecutionMode {
85689
+ Assistive = "ASSISTIVE",
85690
+ Autonomous = "AUTONOMOUS",
85691
+ Disabled = "DISABLED",
85692
+ Smart = "SMART",
85693
+ Supervised = "SUPERVISED"
85694
+ }
85695
+ export declare type JsmChannelsRequestTypes = {
85696
+ __typename?: 'JsmChannelsRequestTypes';
85697
+ id: Scalars['String']['output'];
85698
+ mode: JsmChannelsRequestTypeExecutionMode;
85699
+ };
85700
+ export declare type JsmChannelsRequestTypesInput = {
85701
+ id: Scalars['String']['input'];
85702
+ mode: JsmChannelsRequestTypeExecutionMode;
85703
+ };
85234
85704
  export declare type JsmChannelsServiceAgentResolutionPlan = {
85235
85705
  __typename?: 'JsmChannelsServiceAgentResolutionPlan';
85236
85706
  planId?: Maybe<Scalars['ID']['output']>;
@@ -88182,6 +88652,18 @@ export declare enum MarketplaceConsoleAsvlLegacyVersionStatus {
88182
88652
  Private = "PRIVATE",
88183
88653
  Public = "PUBLIC"
88184
88654
  }
88655
+ export declare type MarketplaceConsoleAppInput = {
88656
+ appKey: Scalars['ID']['input'];
88657
+ appName: Scalars['String']['input'];
88658
+ cloudComplianceBoundaries?: InputMaybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
88659
+ developerId?: InputMaybe<Scalars['ID']['input']>;
88660
+ onDemandPaymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
88661
+ parentProductKey?: InputMaybe<Scalars['ID']['input']>;
88662
+ summary?: InputMaybe<Scalars['String']['input']>;
88663
+ vendorId: Scalars['Int']['input'];
88664
+ vendorLinks?: InputMaybe<MarketplaceConsoleAppVendorLinksInput>;
88665
+ version: MarketplaceConsoleAppSoftwareVersionInput;
88666
+ };
88185
88667
  export declare type MarketplaceConsoleAppSoftwareShort = {
88186
88668
  __typename?: 'MarketplaceConsoleAppSoftwareShort';
88187
88669
  appKey: Scalars['ID']['output'];
@@ -88351,6 +88833,13 @@ export declare type MarketplaceConsoleAppSoftwares = {
88351
88833
  __typename?: 'MarketplaceConsoleAppSoftwares';
88352
88834
  appSoftwares: Array<MarketplaceConsoleAppSoftwareShort>;
88353
88835
  };
88836
+ export declare type MarketplaceConsoleAppVendorLinksInput = {
88837
+ appStatusPage?: InputMaybe<Scalars['String']['input']>;
88838
+ forums?: InputMaybe<Scalars['String']['input']>;
88839
+ issueTracker?: InputMaybe<Scalars['String']['input']>;
88840
+ privacy?: InputMaybe<Scalars['String']['input']>;
88841
+ supportTicketSystem?: InputMaybe<Scalars['String']['input']>;
88842
+ };
88354
88843
  export declare type MarketplaceConsoleAppVersionCreateRequestInput = {
88355
88844
  assets?: InputMaybe<MarketplaceConsoleCreateVersionAssetsInput>;
88356
88845
  buildNumber?: InputMaybe<Scalars['String']['input']>;
@@ -88378,6 +88867,11 @@ export declare type MarketplaceConsoleArtifactFileInfo = {
88378
88867
  logicalFileName: Scalars['String']['output'];
88379
88868
  size: Scalars['Int']['output'];
88380
88869
  };
88870
+ export declare type MarketplaceConsoleBulkProductMigration = {
88871
+ __typename?: 'MarketplaceConsoleBulkProductMigration';
88872
+ products: Array<Maybe<MarketplaceConsoleProductMigration>>;
88873
+ };
88874
+ export declare type MarketplaceConsoleBulkProductMigrationResponse = MarketplaceConsoleBulkProductMigration | MarketplaceConsoleProductMigrationError;
88381
88875
  export declare type MarketplaceConsoleCanMakeServerVersionPublicInput = {
88382
88876
  dcAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
88383
88877
  serverAppSoftwareId: Scalars['ID']['input'];
@@ -88389,6 +88883,11 @@ export declare enum MarketplaceConsoleCloudComplianceBoundary {
88389
88883
  FedrampModerate = "FEDRAMP_MODERATE",
88390
88884
  IsolatedCloud = "ISOLATED_CLOUD"
88391
88885
  }
88886
+ export declare type MarketplaceConsoleCompatibilityRanges = {
88887
+ __typename?: 'MarketplaceConsoleCompatibilityRanges';
88888
+ end?: Maybe<Scalars['String']['output']>;
88889
+ start?: Maybe<Scalars['String']['output']>;
88890
+ };
88392
88891
  export declare type MarketplaceConsoleConnectFrameworkAttributes = {
88393
88892
  __typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
88394
88893
  artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
@@ -88418,6 +88917,11 @@ export declare type MarketplaceConsoleCreateAppSoftwareVersionMutationResponse =
88418
88917
  success: Scalars['Boolean']['output'];
88419
88918
  versionType: MarketplaceConsoleVersionType;
88420
88919
  };
88920
+ export declare type MarketplaceConsoleCreatePrivateAppMutationOutput = MarketplaceConsoleCreatePrivateAppMutationResponse | MarketplaceConsoleDomainErrorResponse;
88921
+ export declare type MarketplaceConsoleCreatePrivateAppMutationResponse = {
88922
+ __typename?: 'MarketplaceConsoleCreatePrivateAppMutationResponse';
88923
+ success: Scalars['Boolean']['output'];
88924
+ };
88421
88925
  export declare type MarketplaceConsoleCreatePrivateAppVersionError = MarketplaceConsoleError & {
88422
88926
  __typename?: 'MarketplaceConsoleCreatePrivateAppVersionError';
88423
88927
  id: Scalars['ID']['output'];
@@ -88529,6 +89033,18 @@ export declare enum MarketplaceConsoleDevSpaceTier {
88529
89033
  Platinum = "PLATINUM",
88530
89034
  Silver = "SILVER"
88531
89035
  }
89036
+ export declare type MarketplaceConsoleDomainError = {
89037
+ __typename?: 'MarketplaceConsoleDomainError';
89038
+ code: Scalars['String']['output'];
89039
+ detail: Scalars['String']['output'];
89040
+ id?: Maybe<Scalars['String']['output']>;
89041
+ status: Scalars['String']['output'];
89042
+ title: Scalars['String']['output'];
89043
+ };
89044
+ export declare type MarketplaceConsoleDomainErrorResponse = {
89045
+ __typename?: 'MarketplaceConsoleDomainErrorResponse';
89046
+ errors?: Maybe<Array<Maybe<MarketplaceConsoleDomainError>>>;
89047
+ };
88532
89048
  export declare type MarketplaceConsoleEditAppVersionRequest = {
88533
89049
  appKey: Scalars['ID']['input'];
88534
89050
  bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
@@ -88753,6 +89269,16 @@ export declare type MarketplaceConsoleImageMediaAsset = {
88753
89269
  uri: Scalars['String']['output'];
88754
89270
  width: Scalars['Int']['output'];
88755
89271
  };
89272
+ export declare type MarketplaceConsoleJsonPatchOperation = {
89273
+ op: MarketplaceConsoleJsonPatchOperationType;
89274
+ path: Scalars['String']['input'];
89275
+ value?: InputMaybe<Scalars['String']['input']>;
89276
+ };
89277
+ export declare enum MarketplaceConsoleJsonPatchOperationType {
89278
+ Add = "ADD",
89279
+ Remove = "REMOVE",
89280
+ Replace = "REPLACE"
89281
+ }
88756
89282
  export declare type MarketplaceConsoleKnownError = MarketplaceConsoleError & {
88757
89283
  __typename?: 'MarketplaceConsoleKnownError';
88758
89284
  id: Scalars['ID']['output'];
@@ -88921,12 +89447,14 @@ export declare type MarketplaceConsoleMutationApi = {
88921
89447
  createEcoHelpTicket?: Maybe<Scalars['ID']['output']>;
88922
89448
  createMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
88923
89449
  createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
89450
+ createPrivateAppWithVersion?: Maybe<MarketplaceConsoleCreatePrivateAppMutationOutput>;
88924
89451
  deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
88925
89452
  deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
88926
89453
  deleteMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
88927
89454
  editAppVersion?: Maybe<MarketplaceConsoleEditVersionMutationResponse>;
88928
89455
  editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
88929
89456
  makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
89457
+ patchProductMigration?: Maybe<MarketplaceConsoleProductMigrationResponse>;
88930
89458
  updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
88931
89459
  updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
88932
89460
  validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
@@ -88954,6 +89482,9 @@ export declare type MarketplaceConsoleMutationApiCreatePrivateAppSoftwareVersion
88954
89482
  cloudComplianceBoundaries?: InputMaybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
88955
89483
  version: MarketplaceConsoleAppVersionCreateRequestInput;
88956
89484
  };
89485
+ export declare type MarketplaceConsoleMutationApiCreatePrivateAppWithVersionArgs = {
89486
+ app: MarketplaceConsoleAppInput;
89487
+ };
88957
89488
  export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
88958
89489
  appSoftwareId: Scalars['String']['input'];
88959
89490
  token: Scalars['String']['input'];
@@ -88974,6 +89505,10 @@ export declare type MarketplaceConsoleMutationApiEditionsArgs = {
88974
89505
  export declare type MarketplaceConsoleMutationApiMakeAppVersionPublicArgs = {
88975
89506
  makeAppVersionPublicRequest: MarketplaceConsoleMakeAppVersionPublicRequest;
88976
89507
  };
89508
+ export declare type MarketplaceConsoleMutationApiPatchProductMigrationArgs = {
89509
+ operations: Array<MarketplaceConsoleJsonPatchOperation>;
89510
+ productId: Scalars['ID']['input'];
89511
+ };
88977
89512
  export declare type MarketplaceConsoleMutationApiUpdateAppDetailsArgs = {
88978
89513
  updateAppDetailsRequest: MarketplaceConsoleUpdateAppDetailsRequest;
88979
89514
  };
@@ -89213,6 +89748,30 @@ export declare type MarketplaceConsoleProductMetadata = {
89213
89748
  productId: Scalars['ID']['output'];
89214
89749
  vendorId: Scalars['ID']['output'];
89215
89750
  };
89751
+ export declare type MarketplaceConsoleProductMigration = {
89752
+ __typename?: 'MarketplaceConsoleProductMigration';
89753
+ addonKey?: Maybe<Scalars['String']['output']>;
89754
+ addonName?: Maybe<Scalars['String']['output']>;
89755
+ cloudAddonKey?: Maybe<Scalars['String']['output']>;
89756
+ cloudMigrationAssistantCompatibility?: Maybe<Scalars['String']['output']>;
89757
+ cloudMigrationAssistantCompatibilityRanges?: Maybe<Array<Maybe<MarketplaceConsoleCompatibilityRanges>>>;
89758
+ cloudVersionAvailability?: Maybe<Scalars['String']['output']>;
89759
+ cloudVersionDevelopmentRoadmap?: Maybe<Scalars['String']['output']>;
89760
+ developerId?: Maybe<Scalars['ID']['output']>;
89761
+ featureDifferenceDocumentation?: Maybe<Scalars['String']['output']>;
89762
+ isDualLicenseOptedIn?: Maybe<Scalars['Boolean']['output']>;
89763
+ migrationDocumentation?: Maybe<Scalars['String']['output']>;
89764
+ migrationPath?: Maybe<Scalars['String']['output']>;
89765
+ migrationRoadmapTicketLink?: Maybe<Scalars['String']['output']>;
89766
+ productId?: Maybe<Scalars['ID']['output']>;
89767
+ };
89768
+ export declare type MarketplaceConsoleProductMigrationError = MarketplaceConsoleError & {
89769
+ __typename?: 'MarketplaceConsoleProductMigrationError';
89770
+ id: Scalars['ID']['output'];
89771
+ message: Scalars['String']['output'];
89772
+ subCode?: Maybe<Scalars['String']['output']>;
89773
+ };
89774
+ export declare type MarketplaceConsoleProductMigrationResponse = MarketplaceConsoleProductMigration | MarketplaceConsoleProductMigrationError;
89216
89775
  export declare type MarketplaceConsoleProductTag = {
89217
89776
  __typename?: 'MarketplaceConsoleProductTag';
89218
89777
  description?: Maybe<Scalars['String']['output']>;
@@ -89243,6 +89802,7 @@ export declare type MarketplaceConsoleQueryApi = {
89243
89802
  developerSpaceByAppId?: Maybe<MarketplaceConsoleDevSpace>;
89244
89803
  editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
89245
89804
  editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
89805
+ getBulkProductMigration?: Maybe<MarketplaceConsoleBulkProductMigrationResponse>;
89246
89806
  makeAppVersionPublicChecks?: Maybe<MarketplaceConsoleMakeAppVersionPublicChecks>;
89247
89807
  offerings?: Maybe<Array<Maybe<MarketplaceConsoleOffering>>>;
89248
89808
  parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
@@ -89301,6 +89861,9 @@ export declare type MarketplaceConsoleQueryApiEditionsArgs = {
89301
89861
  export declare type MarketplaceConsoleQueryApiEditionsActivationStatusArgs = {
89302
89862
  product: MarketplaceConsoleEditionsInput;
89303
89863
  };
89864
+ export declare type MarketplaceConsoleQueryApiGetBulkProductMigrationArgs = {
89865
+ productIds: Array<Scalars['ID']['input']>;
89866
+ };
89304
89867
  export declare type MarketplaceConsoleQueryApiMakeAppVersionPublicChecksArgs = {
89305
89868
  appId: Scalars['ID']['input'];
89306
89869
  buildNumber: Scalars['ID']['input'];
@@ -89937,6 +90500,11 @@ export declare type MarketplaceStoreGeoIpResponse = {
89937
90500
  __typename?: 'MarketplaceStoreGeoIPResponse';
89938
90501
  countryCode: Scalars['String']['output'];
89939
90502
  };
90503
+ export declare type MarketplaceStoreGetUserPreferencesResponse = {
90504
+ __typename?: 'MarketplaceStoreGetUserPreferencesResponse';
90505
+ preferences: MarketplaceStoreUserPreferences;
90506
+ version: Scalars['Int']['output'];
90507
+ };
89940
90508
  export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
89941
90509
  __typename?: 'MarketplaceStoreHomePageFeaturedSection';
89942
90510
  description: Scalars['String']['output'];
@@ -90127,6 +90695,7 @@ export declare type MarketplaceStoreMutationApi = {
90127
90695
  updateReviewDownvote: MarketplaceStoreUpdateReviewVoteResponse;
90128
90696
  updateReviewFlag: MarketplaceStoreUpdateReviewFlagResponse;
90129
90697
  updateReviewUpvote: MarketplaceStoreUpdateReviewVoteResponse;
90698
+ updateUserPreferences: MarketplaceStoreUpdateUserPreferencesResponse;
90130
90699
  };
90131
90700
  export declare type MarketplaceStoreMutationApiCreateOrUpdateReviewArgs = {
90132
90701
  input: MarketplaceStoreCreateOrUpdateReviewInput;
@@ -90152,6 +90721,9 @@ export declare type MarketplaceStoreMutationApiUpdateReviewFlagArgs = {
90152
90721
  export declare type MarketplaceStoreMutationApiUpdateReviewUpvoteArgs = {
90153
90722
  input: MarketplaceStoreUpdateReviewVoteInput;
90154
90723
  };
90724
+ export declare type MarketplaceStoreMutationApiUpdateUserPreferencesArgs = {
90725
+ input: MarketplaceStoreUpdateUserPreferencesInput;
90726
+ };
90155
90727
  export declare type MarketplaceStoreOfferingDetails = {
90156
90728
  __typename?: 'MarketplaceStoreOfferingDetails';
90157
90729
  id: Scalars['ID']['output'];
@@ -90373,6 +90945,7 @@ export declare type MarketplaceStoreQueryApi = {
90373
90945
  orgId: MarketplaceStoreOrgIdResponse;
90374
90946
  partner: MarketplaceStorePartnerResponse;
90375
90947
  siteDetails: MarketplaceStoreSiteDetailsResponse;
90948
+ userPreferences: MarketplaceStoreGetUserPreferencesResponse;
90376
90949
  userProfile: MarketplaceStoreUserProfileResponse;
90377
90950
  };
90378
90951
  export declare type MarketplaceStoreQueryApiAppInstallationsByAppArgs = {
@@ -90549,6 +91122,26 @@ export declare type MarketplaceStoreUpdateReviewVoteResponse = {
90549
91122
  id: Scalars['ID']['output'];
90550
91123
  status?: Maybe<Scalars['String']['output']>;
90551
91124
  };
91125
+ export declare type MarketplaceStoreUpdateUserPreferencesInput = {
91126
+ preferences: MarketplaceStoreUserPreferencesInput;
91127
+ version: Scalars['Int']['input'];
91128
+ };
91129
+ export declare type MarketplaceStoreUpdateUserPreferencesResponse = {
91130
+ __typename?: 'MarketplaceStoreUpdateUserPreferencesResponse';
91131
+ status: Scalars['String']['output'];
91132
+ version: Scalars['Int']['output'];
91133
+ };
91134
+ export declare type MarketplaceStoreUserPreferences = {
91135
+ __typename?: 'MarketplaceStoreUserPreferences';
91136
+ notifyOnAppArchivalSchedule?: Maybe<Scalars['Boolean']['output']>;
91137
+ notifyOnAppUninstallDisableFeedback?: Maybe<Scalars['Boolean']['output']>;
91138
+ notifyOnReviewResponseOrUpdate?: Maybe<Scalars['Boolean']['output']>;
91139
+ };
91140
+ export declare type MarketplaceStoreUserPreferencesInput = {
91141
+ notifyOnAppArchivalSchedule: Scalars['Boolean']['input'];
91142
+ notifyOnAppUninstallDisableFeedback: Scalars['Boolean']['input'];
91143
+ notifyOnReviewResponseOrUpdate: Scalars['Boolean']['input'];
91144
+ };
90552
91145
  export declare type MarketplaceStoreUserProfileResponse = {
90553
91146
  __typename?: 'MarketplaceStoreUserProfileResponse';
90554
91147
  developerSpaces?: Maybe<Array<MarketplaceStoreLoggedInUserDeveloperSpace>>;
@@ -91703,6 +92296,17 @@ export declare type MercuryFocusAreaIcon = {
91703
92296
  __typename?: 'MercuryFocusAreaIcon';
91704
92297
  url: Scalars['String']['output'];
91705
92298
  };
92299
+ export declare type MercuryFocusAreaInsight = MercuryInsight & {
92300
+ __typename?: 'MercuryFocusAreaInsight';
92301
+ ari: Scalars['ID']['output'];
92302
+ id: Scalars['ID']['output'];
92303
+ insightData?: Maybe<MercuryFocusArea>;
92304
+ summary?: Maybe<Scalars['String']['output']>;
92305
+ title?: Maybe<Scalars['String']['output']>;
92306
+ };
92307
+ export declare type MercuryFocusAreaInsightsFilter = {
92308
+ insightType?: InputMaybe<MercuryInsightTypeEnum>;
92309
+ };
91706
92310
  export declare type MercuryFocusAreaLink = Node & {
91707
92311
  __typename?: 'MercuryFocusAreaLink';
91708
92312
  childFocusAreaId: Scalars['String']['output'];
@@ -92008,6 +92612,7 @@ export declare type MercuryFundsMutationApiUpdateInvestmentCategorySetNameArgs =
92008
92612
  };
92009
92613
  export declare type MercuryFundsQueryApi = {
92010
92614
  __typename?: 'MercuryFundsQueryApi';
92615
+ activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
92011
92616
  costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
92012
92617
  costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
92013
92618
  fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
@@ -92017,6 +92622,9 @@ export declare type MercuryFundsQueryApi = {
92017
92622
  investmentCategorySets?: Maybe<Array<Maybe<MercuryInvestmentCategorySet>>>;
92018
92623
  investmentCategorySetsSearch?: Maybe<MercuryInvestmentCategorySetConnection>;
92019
92624
  };
92625
+ export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
92626
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
92627
+ };
92020
92628
  export declare type MercuryFundsQueryApiCostSubtypesArgs = {
92021
92629
  ids: Array<Scalars['ID']['input']>;
92022
92630
  };
@@ -92035,7 +92643,7 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsArgs = {
92035
92643
  };
92036
92644
  export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs = {
92037
92645
  after?: InputMaybe<Scalars['String']['input']>;
92038
- cloudId: Scalars['ID']['input'];
92646
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
92039
92647
  first?: InputMaybe<Scalars['Int']['input']>;
92040
92648
  sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
92041
92649
  };
@@ -92057,6 +92665,14 @@ export declare type MercuryGoalAggregatedStatusCount = {
92057
92665
  latestGoalStatusUpdateDate?: Maybe<Scalars['DateTime']['output']>;
92058
92666
  subGoalsAggregatedStatusCount?: Maybe<MercuryGoalsAggregatedStatusCount>;
92059
92667
  };
92668
+ export declare type MercuryGoalInsight = MercuryInsight & {
92669
+ __typename?: 'MercuryGoalInsight';
92670
+ ari: Scalars['ID']['output'];
92671
+ id: Scalars['ID']['output'];
92672
+ insightData?: Maybe<TownsquareGoal>;
92673
+ summary?: Maybe<Scalars['String']['output']>;
92674
+ title?: Maybe<Scalars['String']['output']>;
92675
+ };
92060
92676
  export declare type MercuryGoalStatusCount = {
92061
92677
  __typename?: 'MercuryGoalStatusCount';
92062
92678
  atRisk?: Maybe<Scalars['Int']['output']>;
@@ -92078,6 +92694,25 @@ export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
92078
92694
  countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
92079
92695
  totalCount?: Maybe<Scalars['Int']['output']>;
92080
92696
  };
92697
+ export declare type MercuryInsight = {
92698
+ id: Scalars['ID']['output'];
92699
+ summary?: Maybe<Scalars['String']['output']>;
92700
+ title?: Maybe<Scalars['String']['output']>;
92701
+ };
92702
+ export declare type MercuryInsightObject = MercuryFocusAreaInsight | MercuryGoalInsight | MercuryJiraAlignProjectInsight | MercuryJiraIssueInsight | MercuryTownsquareProjectInsight;
92703
+ export declare enum MercuryInsightTypeEnum {
92704
+ FocusArea = "FOCUS_AREA",
92705
+ Goal = "GOAL",
92706
+ Work = "WORK"
92707
+ }
92708
+ export declare type MercuryInsightsQueryApi = {
92709
+ __typename?: 'MercuryInsightsQueryApi';
92710
+ focusAreaInsights?: Maybe<Array<MercuryInsightObject>>;
92711
+ };
92712
+ export declare type MercuryInsightsQueryApiFocusAreaInsightsArgs = {
92713
+ filter?: InputMaybe<MercuryFocusAreaInsightsFilter>;
92714
+ focusAreaId: Scalars['ID']['input'];
92715
+ };
92081
92716
  export declare type MercuryInvestmentCategory = Node & {
92082
92717
  __typename?: 'MercuryInvestmentCategory';
92083
92718
  createdBy?: Maybe<User>;
@@ -92118,6 +92753,14 @@ export declare type MercuryInvestmentCategorySetSort = {
92118
92753
  export declare enum MercuryInvestmentCategorySetSortField {
92119
92754
  Name = "NAME"
92120
92755
  }
92756
+ export declare type MercuryJiraAlignProjectInsight = MercuryInsight & {
92757
+ __typename?: 'MercuryJiraAlignProjectInsight';
92758
+ ari: Scalars['ID']['output'];
92759
+ id: Scalars['ID']['output'];
92760
+ insightData?: Maybe<JiraAlignAggProject>;
92761
+ summary?: Maybe<Scalars['String']['output']>;
92762
+ title?: Maybe<Scalars['String']['output']>;
92763
+ };
92121
92764
  export declare type MercuryJiraAlignProjectType = {
92122
92765
  __typename?: 'MercuryJiraAlignProjectType';
92123
92766
  displayName: Scalars['String']['output'];
@@ -92139,6 +92782,14 @@ export declare type MercuryJiraAlignProviderQueryApiIsJaConnectedArgs = {
92139
92782
  export declare type MercuryJiraAlignProviderQueryApiUserAccessibleJiraAlignProjectTypesArgs = {
92140
92783
  cloudId: Scalars['ID']['input'];
92141
92784
  };
92785
+ export declare type MercuryJiraIssueInsight = MercuryInsight & {
92786
+ __typename?: 'MercuryJiraIssueInsight';
92787
+ ari: Scalars['ID']['output'];
92788
+ id: Scalars['ID']['output'];
92789
+ insightData?: Maybe<JiraIssue>;
92790
+ summary?: Maybe<Scalars['String']['output']>;
92791
+ title?: Maybe<Scalars['String']['output']>;
92792
+ };
92142
92793
  export declare type MercuryLinkAtlassianWorkToFocusAreaInput = {
92143
92794
  focusAreaAri: Scalars['String']['input'];
92144
92795
  workAris: Array<Scalars['String']['input']>;
@@ -93556,6 +94207,14 @@ export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinit
93556
94207
  export declare type MercuryTextCustomFieldInput = {
93557
94208
  textValue?: InputMaybe<Scalars['String']['input']>;
93558
94209
  };
94210
+ export declare type MercuryTownsquareProjectInsight = MercuryInsight & {
94211
+ __typename?: 'MercuryTownsquareProjectInsight';
94212
+ ari: Scalars['ID']['output'];
94213
+ id: Scalars['ID']['output'];
94214
+ insightData?: Maybe<TownsquareProject>;
94215
+ summary?: Maybe<Scalars['String']['output']>;
94216
+ title?: Maybe<Scalars['String']['output']>;
94217
+ };
93559
94218
  export declare type MercuryTransitionChangeProposalPayload = Payload & {
93560
94219
  __typename?: 'MercuryTransitionChangeProposalPayload';
93561
94220
  errors?: Maybe<Array<MutationError>>;
@@ -94205,6 +94864,7 @@ export declare type Mutation = {
94205
94864
  agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
94206
94865
  agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
94207
94866
  agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
94867
+ agentStudio_createAndRunBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
94208
94868
  agentStudio_createBatchEvaluationJob: AgentStudioCreateBatchEvaluationJobPayload;
94209
94869
  agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
94210
94870
  agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
@@ -94254,6 +94914,7 @@ export declare type Mutation = {
94254
94914
  assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
94255
94915
  assignIssueParent?: Maybe<AssignIssueParentOutput>;
94256
94916
  attachDanglingComment?: Maybe<Comment>;
94917
+ avpPermissions_updateDashboardUserAccess?: Maybe<AvpPermissionsUpdateDashboardUserAccessPayload>;
94257
94918
  avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
94258
94919
  avp_addDashboardRow?: Maybe<AvpAddDashboardRowPayload>;
94259
94920
  avp_clearChartsInRow?: Maybe<AvpClearChartInRowPayload>;
@@ -94357,6 +95018,7 @@ export declare type Mutation = {
94357
95018
  confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
94358
95019
  confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
94359
95020
  confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
95021
+ confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
94360
95022
  confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
94361
95023
  confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
94362
95024
  confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
@@ -94551,6 +95213,9 @@ export declare type Mutation = {
94551
95213
  goals_archiveMetric?: Maybe<TownsquareGoalsArchiveMetricPayload>;
94552
95214
  goals_clone?: Maybe<TownsquareGoalsClonePayload>;
94553
95215
  goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
95216
+ goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
95217
+ goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
95218
+ goals_createRisk?: Maybe<TownsquareGoalsCreateRiskPayload>;
94554
95219
  goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
94555
95220
  goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
94556
95221
  goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
@@ -94624,6 +95289,7 @@ export declare type Mutation = {
94624
95289
  jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
94625
95290
  jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
94626
95291
  jira_listSettingMigrationMutation?: Maybe<JiraListSettingMigrationPayload>;
95292
+ jira_mergeIssues?: Maybe<JiraMergeIssuesPayload>;
94627
95293
  jira_moveBoardViewIssueToCellEnd?: Maybe<JiraMoveBoardViewIssueToCellEndPayload>;
94628
95294
  jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
94629
95295
  jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
@@ -94633,6 +95299,7 @@ export declare type Mutation = {
94633
95299
  jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
94634
95300
  jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
94635
95301
  jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
95302
+ jira_restoreCustomFields?: Maybe<JiraRestoreCustomFieldsPayload>;
94636
95303
  jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
94637
95304
  jira_scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
94638
95305
  jira_setBacklogViewAssigneeFilters?: Maybe<JiraSetBacklogViewPayload>;
@@ -94674,8 +95341,10 @@ export declare type Mutation = {
94674
95341
  jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
94675
95342
  jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
94676
95343
  jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
95344
+ jira_trashCustomFields?: Maybe<JiraTrashCustomFieldsPayload>;
94677
95345
  jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
94678
95346
  jira_unarchiveIssue?: Maybe<JiraIssueUnarchivePayload>;
95347
+ jira_updateCustomField?: Maybe<JiraUpdateCustomFieldPayload>;
94679
95348
  jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
94680
95349
  jira_updateFieldToFieldSchemeAssociations?: Maybe<JiraFieldToFieldSchemeAssociationsPayload>;
94681
95350
  jira_updateGlobalCustomField?: Maybe<JiraUpdateGlobalCustomFieldPayload>;
@@ -94869,6 +95538,7 @@ export declare type Mutation = {
94869
95538
  stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
94870
95539
  stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
94871
95540
  stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
95541
+ stakeholderComms_createSubscriber?: Maybe<StakeholderCommsSubscriberResponse>;
94872
95542
  stakeholderComms_deleteDraftPage?: Maybe<StakeholderCommsPageDeleteResponse>;
94873
95543
  stakeholderComms_deletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
94874
95544
  stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
@@ -94878,6 +95548,7 @@ export declare type Mutation = {
94878
95548
  stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
94879
95549
  stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
94880
95550
  stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
95551
+ stakeholderComms_unsubscribeSubscriber?: Maybe<StakeholderCommsUnsubscribeSubscriberResponse>;
94881
95552
  stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
94882
95553
  stakeholderComms_updateIncident?: Maybe<StakeholderCommsIncidentResponse>;
94883
95554
  stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
@@ -95062,6 +95733,12 @@ export declare type MutationAgentStudio_CreateAgentArgs = {
95062
95733
  cloudId: Scalars['String']['input'];
95063
95734
  input: AgentStudioCreateAgentInput;
95064
95735
  };
95736
+ export declare type MutationAgentStudio_CreateAndRunBatchEvaluationJobArgs = {
95737
+ cloudId: Scalars['String']['input'];
95738
+ input: AgentStudioCreateBatchEvaluationJobInput;
95739
+ productType: AgentStudioProductType;
95740
+ projectContainerAri: Scalars['ID']['input'];
95741
+ };
95065
95742
  export declare type MutationAgentStudio_CreateBatchEvaluationJobArgs = {
95066
95743
  cloudId: Scalars['String']['input'];
95067
95744
  input: AgentStudioCreateBatchEvaluationJobInput;
@@ -95278,6 +95955,9 @@ export declare type MutationAssignIssueParentArgs = {
95278
95955
  export declare type MutationAttachDanglingCommentArgs = {
95279
95956
  input: ReattachInlineCommentInput;
95280
95957
  };
95958
+ export declare type MutationAvpPermissions_UpdateDashboardUserAccessArgs = {
95959
+ input: AvpPermissionsUpdateDashboardUserAccessInput;
95960
+ };
95281
95961
  export declare type MutationAvp_AddDashboardElementArgs = {
95282
95962
  input: AvpAddDashboardElementInput;
95283
95963
  };
@@ -95642,6 +96322,10 @@ export declare type MutationConfluence_RestoreContentVersionArgs = {
95642
96322
  cloudId: Scalars['ID']['input'];
95643
96323
  input?: InputMaybe<ConfluenceRestoreContentVersionInput>;
95644
96324
  };
96325
+ export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
96326
+ cloudId: Scalars['ID']['input'];
96327
+ input: ConfluenceSetContentGeneralAccessModeInput;
96328
+ };
95645
96329
  export declare type MutationConfluence_SetSubCalendarReminderArgs = {
95646
96330
  cloudId: Scalars['ID']['input'];
95647
96331
  input: ConfluenceSetSubCalendarReminderInput;
@@ -96329,6 +97013,15 @@ export declare type MutationGoals_CloneArgs = {
96329
97013
  export declare type MutationGoals_CreateAndAddMetricTargetArgs = {
96330
97014
  input: TownsquareGoalsCreateAddMetricTargetInput;
96331
97015
  };
97016
+ export declare type MutationGoals_CreateDecisionArgs = {
97017
+ input: TownsquareGoalsCreateDecisionInput;
97018
+ };
97019
+ export declare type MutationGoals_CreateLearningArgs = {
97020
+ input: TownsquareGoalsCreateLearningInput;
97021
+ };
97022
+ export declare type MutationGoals_CreateRiskArgs = {
97023
+ input: TownsquareGoalsCreateRiskInput;
97024
+ };
96332
97025
  export declare type MutationGoals_CreateUpdateArgs = {
96333
97026
  input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
96334
97027
  };
@@ -96542,6 +97235,9 @@ export declare type MutationJira_EditFieldSchemeArgs = {
96542
97235
  export declare type MutationJira_ListSettingMigrationMutationArgs = {
96543
97236
  input: JiraListSettingMigrationInput;
96544
97237
  };
97238
+ export declare type MutationJira_MergeIssuesArgs = {
97239
+ input: JiraMergeIssuesInput;
97240
+ };
96545
97241
  export declare type MutationJira_MoveBoardViewIssueToCellEndArgs = {
96546
97242
  input: JiraMoveBoardViewIssueToCellEndInput;
96547
97243
  };
@@ -96571,6 +97267,10 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
96571
97267
  export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
96572
97268
  input: JiraReorderSidebarMenuItemInput;
96573
97269
  };
97270
+ export declare type MutationJira_RestoreCustomFieldsArgs = {
97271
+ cloudId: Scalars['ID']['input'];
97272
+ input: JiraRestoreCustomFieldsInput;
97273
+ };
96574
97274
  export declare type MutationJira_RestoreGlobalCustomFieldsArgs = {
96575
97275
  cloudId: Scalars['ID']['input'];
96576
97276
  input: JiraRestoreGlobalCustomFieldsInput;
@@ -96698,6 +97398,10 @@ export declare type MutationJira_SetViewFilterArgs = {
96698
97398
  export declare type MutationJira_SetViewGroupByArgs = {
96699
97399
  input: JiraSetViewGroupByInput;
96700
97400
  };
97401
+ export declare type MutationJira_TrashCustomFieldsArgs = {
97402
+ cloudId: Scalars['ID']['input'];
97403
+ input: JiraTrashCustomFieldsInput;
97404
+ };
96701
97405
  export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
96702
97406
  cloudId: Scalars['ID']['input'];
96703
97407
  input: JiraTrashGlobalCustomFieldsInput;
@@ -96705,6 +97409,10 @@ export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
96705
97409
  export declare type MutationJira_UnarchiveIssueArgs = {
96706
97410
  input: JiraIssueUnarchiveInput;
96707
97411
  };
97412
+ export declare type MutationJira_UpdateCustomFieldArgs = {
97413
+ cloudId: Scalars['ID']['input'];
97414
+ input: JiraUpdateCustomFieldInput;
97415
+ };
96708
97416
  export declare type MutationJira_UpdateFieldToFieldConfigSchemeAssociationsArgs = {
96709
97417
  cloudId: Scalars['ID']['input'];
96710
97418
  input: JiraFieldToFieldConfigSchemeAssociationsInput;
@@ -97292,6 +98000,9 @@ export declare type MutationStakeholderComms_CreateStakeholderGroupAndMembersArg
97292
98000
  stakeholderGroupInput: StakeholderCommsCreateStakeholderGroupInput;
97293
98001
  stakeholders?: InputMaybe<Array<InputMaybe<StakeholderCommsCreateStakeholderInput>>>;
97294
98002
  };
98003
+ export declare type MutationStakeholderComms_CreateSubscriberArgs = {
98004
+ subscriptionRequest: StakeholderCommsSubscriptionRequest;
98005
+ };
97295
98006
  export declare type MutationStakeholderComms_DeleteDraftPageArgs = {
97296
98007
  pageId: Scalars['String']['input'];
97297
98008
  };
@@ -97320,6 +98031,9 @@ export declare type MutationStakeholderComms_RemoveStakeholderMembersArgs = {
97320
98031
  export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
97321
98032
  resendInviteInput: StakeholderCommsResendInviteInput;
97322
98033
  };
98034
+ export declare type MutationStakeholderComms_UnsubscribeSubscriberArgs = {
98035
+ subscriberId: Scalars['String']['input'];
98036
+ };
97323
98037
  export declare type MutationStakeholderComms_UpdateDraftPageArgs = {
97324
98038
  page: StakeholderCommsUpdatePageInputType;
97325
98039
  };
@@ -100497,6 +101211,7 @@ export declare type Query = {
100497
101211
  admin_eventLocations?: Maybe<AdminEventLocationConnection>;
100498
101212
  admin_group?: Maybe<AdminGroup>;
100499
101213
  admin_groups?: Maybe<AdminGroupConnection>;
101214
+ admin_identityProviderDirectorySamlConfiguration?: Maybe<AdminSamlConfiguration>;
100500
101215
  admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
100501
101216
  admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
100502
101217
  admin_org?: Maybe<AdminOrganization>;
@@ -100517,6 +101232,7 @@ export declare type Query = {
100517
101232
  agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
100518
101233
  agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
100519
101234
  agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
101235
+ agentStudio_agentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
100520
101236
  agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
100521
101237
  agentStudio_batchEvaluationJobsResult: AgentStudioBatchEvaluationJobsResult;
100522
101238
  agentStudio_batchEvaluationResults: AgentStudioEvaluationResultsResult;
@@ -100528,7 +101244,6 @@ export declare type Query = {
100528
101244
  agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
100529
101245
  agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
100530
101246
  agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
100531
- agentStudio_getAgentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
100532
101247
  agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
100533
101248
  agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
100534
101249
  agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
@@ -100585,6 +101300,7 @@ export declare type Query = {
100585
101300
  assetsDM_dataSourceMerge?: Maybe<AssetsDmDataSourceMergeResponse>;
100586
101301
  assetsDM_dataSourceMergeGetByObjectId?: Maybe<AssetsDmDataSourceMergeGetByObjectIdResponse>;
100587
101302
  assetsDM_dataSourceMergeGetObjectsForImport?: Maybe<Array<AssetsDmDataSourceMergeObjectForImportInfo>>;
101303
+ assetsDM_dataSourceMergeIsImportProgressing?: Maybe<AssetsDmDataSourceMergeIsImportProgressingResponse>;
100588
101304
  assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
100589
101305
  assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
100590
101306
  assetsDM_getCleansingExecutive?: Maybe<AssetsDmDataSourceCleansingCleansingExecutive>;
@@ -100610,6 +101326,7 @@ export declare type Query = {
100610
101326
  atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
100611
101327
  atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
100612
101328
  availableContentStates?: Maybe<AvailableContentStates>;
101329
+ avpPermissions_hello?: Maybe<AvpPermissionsHelloResponse>;
100613
101330
  avp_getChart?: Maybe<AvpChart>;
100614
101331
  avp_getDashboard?: Maybe<AvpDashboard>;
100615
101332
  avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
@@ -100693,6 +101410,7 @@ export declare type Query = {
100693
101410
  confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
100694
101411
  confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
100695
101412
  confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
101413
+ confluence_getLatestPendingRequests?: Maybe<ConfluenceLatestPendingRequests>;
100696
101414
  confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
100697
101415
  confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
100698
101416
  confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
@@ -100707,6 +101425,7 @@ export declare type Query = {
100707
101425
  confluence_macroPlaceholderAdf?: Maybe<ConfluenceMacroPlaceholderAdf>;
100708
101426
  confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
100709
101427
  confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
101428
+ confluence_nbmPerfReportList?: Maybe<ConfluenceNbmScanConnection>;
100710
101429
  confluence_nbmScanList?: Maybe<ConfluenceNbmScanConnection>;
100711
101430
  confluence_nbmScanResult?: Maybe<ConfluenceNbmScanResult>;
100712
101431
  confluence_nbmTransformationList?: Maybe<ConfluenceNbmTransformationListConnection>;
@@ -100730,6 +101449,7 @@ export declare type Query = {
100730
101449
  confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
100731
101450
  confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
100732
101451
  confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
101452
+ confluence_spaceProperty?: Maybe<ConfluenceSpaceProperty>;
100733
101453
  confluence_spaceRecommendations?: Maybe<ConfluenceSpaceRecommendations>;
100734
101454
  confluence_spaceRoleMode?: Maybe<ConfluenceSpaceRoleMode>;
100735
101455
  confluence_spaceWatchersUnfiltered?: Maybe<PaginatedPersonList>;
@@ -100792,6 +101512,7 @@ export declare type Query = {
100792
101512
  cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
100793
101513
  cpls_customContributionTargets: CplsCustomContributionTargetConnection;
100794
101514
  cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
101515
+ cpls_peopleView?: Maybe<CplsPeopleView>;
100795
101516
  cqlMetaData?: Maybe<Confluence_CqlMetaData>;
100796
101517
  crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
100797
101518
  crossProjectIssueMentionsInCommentsV2?: Maybe<GraphStoreCypherQueryV2Connection>;
@@ -100846,6 +101567,7 @@ export declare type Query = {
100846
101567
  devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
100847
101568
  devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
100848
101569
  devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
101570
+ devai_checkEntitlements: Scalars['Boolean']['output'];
100849
101571
  devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
100850
101572
  devai_containerConfig?: Maybe<DevAiContainerConfig>;
100851
101573
  devai_flowGetRepositories?: Maybe<DevAiFlowRepositoryConnection>;
@@ -100860,6 +101582,7 @@ export declare type Query = {
100860
101582
  devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
100861
101583
  devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
100862
101584
  devai_rovoDevEntitlements?: Maybe<DevAiEntitlementCheckResultResponse>;
101585
+ devai_rovodevIssueViewQuery?: Maybe<DevAiRovoDevIssueViewResponse>;
100863
101586
  devai_rovodevSessionById?: Maybe<DevAiRovoDevSession>;
100864
101587
  devai_rovodevSessions?: Maybe<DevAiRovoDevSessionConnection>;
100865
101588
  devai_rovodevSessionsByAri?: Maybe<Array<DevAiRovoDevSession>>;
@@ -100921,8 +101644,11 @@ export declare type Query = {
100921
101644
  glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
100922
101645
  globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
100923
101646
  globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
101647
+ goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
100924
101648
  goals_byId?: Maybe<TownsquareGoal>;
100925
101649
  goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
101650
+ goals_goalTypeById?: Maybe<TownsquareGoalType>;
101651
+ goals_metricSearch?: Maybe<TownsquareMetricConnection>;
100926
101652
  goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
100927
101653
  goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
100928
101654
  goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
@@ -101011,6 +101737,7 @@ export declare type Query = {
101011
101737
  jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
101012
101738
  jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
101013
101739
  jira_jiraServiceManagementDefaultCommentBehavior?: Maybe<JiraServiceManagementDefaultCommentBehavior>;
101740
+ jira_mergeIssuesOperationProgress?: Maybe<JiraMergeIssuesOperationProgressResult>;
101014
101741
  jira_onboardingConfigById?: Maybe<JiraOnboardingConfig>;
101015
101742
  jira_onboardingConfigByTarget?: Maybe<JiraOnboardingConfig>;
101016
101743
  jira_onboardingConfigs?: Maybe<JiraOnboardingConfigConnection>;
@@ -101080,6 +101807,7 @@ export declare type Query = {
101080
101807
  mediaConfiguration?: Maybe<MediaConfiguration>;
101081
101808
  mercury?: Maybe<MercuryQueryApi>;
101082
101809
  mercury_funds?: Maybe<MercuryFundsQueryApi>;
101810
+ mercury_insights?: Maybe<MercuryInsightsQueryApi>;
101083
101811
  mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
101084
101812
  mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
101085
101813
  mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
@@ -101145,6 +101873,7 @@ export declare type Query = {
101145
101873
  pricings: ContentPlatformPricingSearchConnection;
101146
101874
  productListing?: Maybe<ProductListingResult>;
101147
101875
  productListings: Array<ProductListingResult>;
101876
+ projects_appSettings?: Maybe<TownsquareProjectsAppSettings>;
101148
101877
  projects_byAri?: Maybe<TownsquareProject>;
101149
101878
  projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
101150
101879
  projects_byId?: Maybe<TownsquareProject>;
@@ -101294,6 +102023,7 @@ export declare type Query = {
101294
102023
  team?: Maybe<TeamQuery>;
101295
102024
  teamCalendarSettings?: Maybe<TeamCalendarSettings>;
101296
102025
  teamLabels?: Maybe<PaginatedLabelList>;
102026
+ teamworkGraph_activitiesLinkedToProject?: Maybe<GraphStoreCypherQueryV2Connection>;
101297
102027
  teamworkGraph_getProjectContext?: Maybe<GraphStoreCypherQueryV2Connection>;
101298
102028
  teamworkGraph_projectUpdates?: Maybe<GraphStoreCypherQueryV2Connection>;
101299
102029
  teamworkGraph_teamProjects?: Maybe<GraphStoreCypherQueryV2Connection>;
@@ -101425,6 +102155,10 @@ export declare type QueryAdmin_GroupsArgs = {
101425
102155
  input?: InputMaybe<AdminSearchGroupInput>;
101426
102156
  last?: InputMaybe<Scalars['Int']['input']>;
101427
102157
  };
102158
+ export declare type QueryAdmin_IdentityProviderDirectorySamlConfigurationArgs = {
102159
+ identityProviderDirectoryId: Scalars['ID']['input'];
102160
+ orgId: Scalars['ID']['input'];
102161
+ };
101428
102162
  export declare type QueryAdmin_InvitePoliciesArgs = {
101429
102163
  after?: InputMaybe<Scalars['String']['input']>;
101430
102164
  before?: InputMaybe<Scalars['String']['input']>;
@@ -101526,11 +102260,15 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
101526
102260
  };
101527
102261
  export declare type QueryAgentStudio_AgentByIdArgs = {
101528
102262
  id: Scalars['ID']['input'];
102263
+ product?: InputMaybe<Scalars['String']['input']>;
101529
102264
  };
101530
102265
  export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
101531
102266
  cloudId: Scalars['String']['input'];
101532
102267
  id: Scalars['ID']['input'];
101533
102268
  };
102269
+ export declare type QueryAgentStudio_AgentsByIdsArgs = {
102270
+ ids: Array<Scalars['ID']['input']>;
102271
+ };
101534
102272
  export declare type QueryAgentStudio_BatchEvaluationJobArgs = {
101535
102273
  cloudId: Scalars['String']['input'];
101536
102274
  jobId: Scalars['ID']['input'];
@@ -101605,9 +102343,6 @@ export declare type QueryAgentStudio_GetAgentsArgs = {
101605
102343
  input?: InputMaybe<AgentStudioAgentQueryInput>;
101606
102344
  product?: InputMaybe<Scalars['String']['input']>;
101607
102345
  };
101608
- export declare type QueryAgentStudio_GetAgentsByIdsArgs = {
101609
- ids: Array<Scalars['ID']['input']>;
101610
- };
101611
102346
  export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
101612
102347
  cloudId: Scalars['String']['input'];
101613
102348
  externalReference: Scalars['String']['input'];
@@ -101617,6 +102352,7 @@ export declare type QueryAgentStudio_GetCreateAgentPermissionsArgs = {
101617
102352
  };
101618
102353
  export declare type QueryAgentStudio_GetToolsByIdAndSourceArgs = {
101619
102354
  cloudId: Scalars['String']['input'];
102355
+ scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
101620
102356
  toolsToFetch: Array<AgentStudioToolIdAndSource>;
101621
102357
  };
101622
102358
  export declare type QueryAgentStudio_GetWidgetContainersByAgentIdArgs = {
@@ -101651,12 +102387,14 @@ export declare type QueryAgentStudio_ToolIntegrationsArgs = {
101651
102387
  after?: InputMaybe<Scalars['String']['input']>;
101652
102388
  cloudId: Scalars['String']['input'];
101653
102389
  first?: InputMaybe<Scalars['Int']['input']>;
102390
+ scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
101654
102391
  };
101655
102392
  export declare type QueryAgentStudio_ToolsArgs = {
101656
102393
  after?: InputMaybe<Scalars['String']['input']>;
101657
102394
  cloudId: Scalars['String']['input'];
101658
102395
  first?: InputMaybe<Scalars['Int']['input']>;
101659
102396
  integrationKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
102397
+ scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
101660
102398
  searchQuery?: InputMaybe<Scalars['String']['input']>;
101661
102399
  };
101662
102400
  export declare type QueryAgentStudio_ValidateScenarioArgs = {
@@ -101875,6 +102613,10 @@ export declare type QueryAssetsDm_DataSourceMergeGetObjectsForImportArgs = {
101875
102613
  dataSourceId: Scalars['ID']['input'];
101876
102614
  workspaceId: Scalars['ID']['input'];
101877
102615
  };
102616
+ export declare type QueryAssetsDm_DataSourceMergeIsImportProgressingArgs = {
102617
+ cloudId: Scalars['ID']['input'];
102618
+ workspaceId: Scalars['ID']['input'];
102619
+ };
101878
102620
  export declare type QueryAssetsDm_DataSourceTransformArgs = {
101879
102621
  cloudID: Scalars['ID']['input'];
101880
102622
  dataSourceId?: InputMaybe<Scalars['ID']['input']>;
@@ -102001,6 +102743,10 @@ export declare type QueryAtlassianStudio_UserSiteContextArgs = {
102001
102743
  export declare type QueryAvailableContentStatesArgs = {
102002
102744
  contentId: Scalars['ID']['input'];
102003
102745
  };
102746
+ export declare type QueryAvpPermissions_HelloArgs = {
102747
+ cloudId: Scalars['ID']['input'];
102748
+ integrationId: Scalars['String']['input'];
102749
+ };
102004
102750
  export declare type QueryAvp_GetChartArgs = {
102005
102751
  chartAri: Scalars['ID']['input'];
102006
102752
  };
@@ -102367,6 +103113,13 @@ export declare type QueryConfluence_GetCustomContentPermissionAssignmentsArgs =
102367
103113
  first?: InputMaybe<Scalars['Int']['input']>;
102368
103114
  spaceId: Scalars['ID']['input'];
102369
103115
  };
103116
+ export declare type QueryConfluence_GetLatestPendingRequestsArgs = {
103117
+ cloudId: Scalars['ID']['input'];
103118
+ contentId: Scalars['ID']['input'];
103119
+ duration?: InputMaybe<Scalars['Int']['input']>;
103120
+ limit?: InputMaybe<Scalars['Int']['input']>;
103121
+ start?: InputMaybe<Scalars['String']['input']>;
103122
+ };
102370
103123
  export declare type QueryConfluence_GetPlaylistArgs = {
102371
103124
  after?: InputMaybe<Scalars['String']['input']>;
102372
103125
  before?: InputMaybe<Scalars['String']['input']>;
@@ -102425,6 +103178,12 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
102425
103178
  export declare type QueryConfluence_MediaTokenDataArgs = {
102426
103179
  noteId: Scalars['ID']['input'];
102427
103180
  };
103181
+ export declare type QueryConfluence_NbmPerfReportListArgs = {
103182
+ after?: InputMaybe<Scalars['String']['input']>;
103183
+ cloudId: Scalars['ID']['input'];
103184
+ first?: InputMaybe<Scalars['Int']['input']>;
103185
+ status?: InputMaybe<ConfluenceNbmScanStatus>;
103186
+ };
102428
103187
  export declare type QueryConfluence_NbmScanListArgs = {
102429
103188
  after?: InputMaybe<Scalars['String']['input']>;
102430
103189
  cloudId: Scalars['ID']['input'];
@@ -102550,6 +103309,11 @@ export declare type QueryConfluence_SpaceMediaSessionArgs = {
102550
103309
  contentType: Scalars['String']['input'];
102551
103310
  spaceKey: Scalars['String']['input'];
102552
103311
  };
103312
+ export declare type QueryConfluence_SpacePropertyArgs = {
103313
+ cloudId: Scalars['ID']['input'];
103314
+ key: Scalars['String']['input'];
103315
+ spaceId: Scalars['ID']['input'];
103316
+ };
102553
103317
  export declare type QueryConfluence_SpaceRecommendationsArgs = {
102554
103318
  cloudId: Scalars['ID']['input'];
102555
103319
  eventTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -102908,6 +103672,9 @@ export declare type QueryCpls_CustomContributionTargetsArgs = {
102908
103672
  export declare type QueryCpls_CustomContributionTargetsByIdsArgs = {
102909
103673
  ids: Array<Scalars['ID']['input']>;
102910
103674
  };
103675
+ export declare type QueryCpls_PeopleViewArgs = {
103676
+ id: Scalars['ID']['input'];
103677
+ };
102911
103678
  export declare type QueryCrossProjectIssueMentionsInCommentsArgs = {
102912
103679
  after?: InputMaybe<Scalars['String']['input']>;
102913
103680
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -103129,6 +103896,10 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
103129
103896
  query?: InputMaybe<Scalars['String']['input']>;
103130
103897
  templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
103131
103898
  };
103899
+ export declare type QueryDevai_CheckEntitlementsArgs = {
103900
+ cloudId: Scalars['ID']['input'];
103901
+ xid: Scalars['String']['input'];
103902
+ };
103132
103903
  export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
103133
103904
  after?: InputMaybe<Scalars['String']['input']>;
103134
103905
  cloudId: Scalars['ID']['input'];
@@ -103190,6 +103961,13 @@ export declare type QueryDevai_RovoDevEntitlementsArgs = {
103190
103961
  cloudId: Scalars['ID']['input'];
103191
103962
  includeUserProductAccess?: InputMaybe<Scalars['Boolean']['input']>;
103192
103963
  };
103964
+ export declare type QueryDevai_RovodevIssueViewQueryArgs = {
103965
+ after?: InputMaybe<Scalars['String']['input']>;
103966
+ cloudId?: InputMaybe<Scalars['ID']['input']>;
103967
+ first?: InputMaybe<Scalars['Int']['input']>;
103968
+ includeUserProductAccess?: InputMaybe<Scalars['Boolean']['input']>;
103969
+ issueKey?: InputMaybe<Scalars['String']['input']>;
103970
+ };
103193
103971
  export declare type QueryDevai_RovodevSessionByIdArgs = {
103194
103972
  id: Scalars['ID']['input'];
103195
103973
  };
@@ -103406,12 +104184,25 @@ export declare type QueryGetSummaryArgs = {
103406
104184
  lastUpdatedTimeSeconds: Scalars['Long']['input'];
103407
104185
  responseType?: InputMaybe<ResponseType>;
103408
104186
  };
104187
+ export declare type QueryGoals_AppSettingsArgs = {
104188
+ containerId: Scalars['ID']['input'];
104189
+ };
103409
104190
  export declare type QueryGoals_ByIdArgs = {
103410
104191
  goalId: Scalars['ID']['input'];
103411
104192
  };
103412
104193
  export declare type QueryGoals_ByIdsArgs = {
103413
104194
  goalIds: Array<Scalars['ID']['input']>;
103414
104195
  };
104196
+ export declare type QueryGoals_GoalTypeByIdArgs = {
104197
+ goalTypeId: Scalars['ID']['input'];
104198
+ };
104199
+ export declare type QueryGoals_MetricSearchArgs = {
104200
+ after?: InputMaybe<Scalars['String']['input']>;
104201
+ containerId: Scalars['ID']['input'];
104202
+ first?: InputMaybe<Scalars['Int']['input']>;
104203
+ searchString: Scalars['String']['input'];
104204
+ sort?: InputMaybe<Array<InputMaybe<TownsquareMetricSortEnum>>>;
104205
+ };
103415
104206
  export declare type QueryGoals_MetricTargetsByIdsArgs = {
103416
104207
  metricTargetIds: Array<Scalars['ID']['input']>;
103417
104208
  };
@@ -103725,6 +104516,9 @@ export declare type QueryJira_IssuesByIdsArgs = {
103725
104516
  export declare type QueryJira_JiraServiceManagementDefaultCommentBehaviorArgs = {
103726
104517
  cloudId: Scalars['ID']['input'];
103727
104518
  };
104519
+ export declare type QueryJira_MergeIssuesOperationProgressArgs = {
104520
+ input: JiraMergeIssuesOperationProgressInput;
104521
+ };
103728
104522
  export declare type QueryJira_OnboardingConfigByIdArgs = {
103729
104523
  cloudId: Scalars['ID']['input'];
103730
104524
  id: Scalars['ID']['input'];
@@ -104157,6 +104951,9 @@ export declare type QueryProductListingsArgs = {
104157
104951
  ids: Array<Scalars['ID']['input']>;
104158
104952
  locales?: InputMaybe<Array<Scalars['ID']['input']>>;
104159
104953
  };
104954
+ export declare type QueryProjects_AppSettingsArgs = {
104955
+ containerId: Scalars['ID']['input'];
104956
+ };
104160
104957
  export declare type QueryProjects_ByAriArgs = {
104161
104958
  ari: Scalars['String']['input'];
104162
104959
  };
@@ -104578,13 +105375,13 @@ export declare type QueryStakeholderComms_GetComponentUptimePercentageArgs = {
104578
105375
  };
104579
105376
  export declare type QueryStakeholderComms_GetComponentWithUptimeByComponentIdArgs = {
104580
105377
  componentId: Scalars['String']['input'];
104581
- endDate: Scalars['String']['input'];
104582
- startDate: Scalars['String']['input'];
105378
+ endDate?: InputMaybe<Scalars['String']['input']>;
105379
+ startDate?: InputMaybe<Scalars['String']['input']>;
104583
105380
  };
104584
105381
  export declare type QueryStakeholderComms_GetComponentsWithUptimeByPageIdArgs = {
104585
- endDate: Scalars['String']['input'];
105382
+ endDate?: InputMaybe<Scalars['String']['input']>;
104586
105383
  pageId: Scalars['String']['input'];
104587
- startDate: Scalars['String']['input'];
105384
+ startDate?: InputMaybe<Scalars['String']['input']>;
104588
105385
  };
104589
105386
  export declare type QueryStakeholderComms_GetComponentsWithUptimeByPageIdV2Args = {
104590
105387
  nestedComponentWithUptimeConnectionInput: StakeholderCommsNestedComponentWithUptimeConnectionInput;
@@ -104732,6 +105529,11 @@ export declare type QueryTeamLabelsArgs = {
104732
105529
  first?: InputMaybe<Scalars['Int']['input']>;
104733
105530
  start?: InputMaybe<Scalars['Int']['input']>;
104734
105531
  };
105532
+ export declare type QueryTeamworkGraph_ActivitiesLinkedToProjectArgs = {
105533
+ after?: InputMaybe<Scalars['String']['input']>;
105534
+ first?: InputMaybe<Scalars['Int']['input']>;
105535
+ projectId: Scalars['ID']['input'];
105536
+ };
104735
105537
  export declare type QueryTeamworkGraph_GetProjectContextArgs = {
104736
105538
  after?: InputMaybe<Scalars['String']['input']>;
104737
105539
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -107603,6 +108405,7 @@ export declare type SearchFilterInput = {
107603
108405
  jiraFilters?: InputMaybe<SearchJiraFilter>;
107604
108406
  locations: Array<Scalars['String']['input']>;
107605
108407
  mercuryFilters?: InputMaybe<SearchMercuryFilter>;
108408
+ talentFilters?: InputMaybe<SearchTalentFilter>;
107606
108409
  thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
107607
108410
  trelloFilters?: InputMaybe<SearchTrelloFilter>;
107608
108411
  };
@@ -107736,6 +108539,7 @@ export declare type SearchProductInfo = {
107736
108539
  };
107737
108540
  export declare enum SearchProjectType {
107738
108541
  Business = "business",
108542
+ CustomerService = "customer_service",
107739
108543
  ProductDiscovery = "product_discovery",
107740
108544
  ServiceDesk = "service_desk",
107741
108545
  Software = "software"
@@ -108361,6 +109165,7 @@ export declare type SearchThirdPartyProduct = {
108361
109165
  connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
108362
109166
  containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
108363
109167
  datasourceId?: InputMaybe<Scalars['String']['input']>;
109168
+ entities?: InputMaybe<Array<Scalars['String']['input']>>;
108364
109169
  integrationId?: InputMaybe<Scalars['String']['input']>;
108365
109170
  linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
108366
109171
  product?: InputMaybe<Scalars['String']['input']>;
@@ -129349,6 +130154,7 @@ export declare type StakeholderCommsIncidentCreateRequest = {
129349
130154
  message?: InputMaybe<Scalars['String']['input']>;
129350
130155
  name: Scalars['String']['input'];
129351
130156
  pageId: Scalars['String']['input'];
130157
+ shouldSendNotifications?: InputMaybe<Scalars['Boolean']['input']>;
129352
130158
  status?: InputMaybe<StakeholderCommsIncidentStatus>;
129353
130159
  };
129354
130160
  export declare enum StakeholderCommsIncidentImpact {
@@ -129397,6 +130203,7 @@ export declare type StakeholderCommsIncidentUpdate = {
129397
130203
  incidentId?: Maybe<Scalars['String']['output']>;
129398
130204
  oldStatus?: Maybe<StakeholderCommsIncidentStatus>;
129399
130205
  scheduledAt?: Maybe<Scalars['String']['output']>;
130206
+ shouldSendNotifications?: Maybe<Scalars['Boolean']['output']>;
129400
130207
  status?: Maybe<StakeholderCommsIncidentStatus>;
129401
130208
  updatedAt?: Maybe<Scalars['String']['output']>;
129402
130209
  };
@@ -129407,6 +130214,7 @@ export declare type StakeholderCommsIncidentUpdateRequest = {
129407
130214
  message?: InputMaybe<Scalars['String']['input']>;
129408
130215
  name?: InputMaybe<Scalars['String']['input']>;
129409
130216
  pageId: Scalars['String']['input'];
130217
+ shouldSendNotifications?: InputMaybe<Scalars['Boolean']['input']>;
129410
130218
  status?: InputMaybe<StakeholderCommsIncidentStatus>;
129411
130219
  };
129412
130220
  export declare type StakeholderCommsIncidentWithUpdates = {
@@ -129517,6 +130325,7 @@ export declare type StakeholderCommsNestedComponentEdge = {
129517
130325
  };
129518
130326
  export declare type StakeholderCommsNestedComponentWithUptime = {
129519
130327
  __typename?: 'StakeholderCommsNestedComponentWithUptime';
130328
+ componentUptimePercentage?: Maybe<Scalars['Float']['output']>;
129520
130329
  components?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
129521
130330
  dailyUptimes?: Maybe<Array<Maybe<StakeholderCommsDailyComponentUptime>>>;
129522
130331
  description?: Maybe<Scalars['String']['output']>;
@@ -129540,12 +130349,12 @@ export declare type StakeholderCommsNestedComponentWithUptimeConnection = {
129540
130349
  export declare type StakeholderCommsNestedComponentWithUptimeConnectionInput = {
129541
130350
  after?: InputMaybe<Scalars['String']['input']>;
129542
130351
  before?: InputMaybe<Scalars['String']['input']>;
129543
- endDate: Scalars['String']['input'];
130352
+ endDate?: InputMaybe<Scalars['String']['input']>;
129544
130353
  first?: InputMaybe<Scalars['Int']['input']>;
129545
130354
  last?: InputMaybe<Scalars['Int']['input']>;
129546
130355
  pageId: Scalars['String']['input'];
129547
130356
  searchTerm?: InputMaybe<Scalars['String']['input']>;
129548
- startDate: Scalars['String']['input'];
130357
+ startDate?: InputMaybe<Scalars['String']['input']>;
129549
130358
  statusFilter?: InputMaybe<Array<Scalars['String']['input']>>;
129550
130359
  };
129551
130360
  export declare type StakeholderCommsNestedComponentWithUptimeEdge = {
@@ -129968,6 +130777,60 @@ export declare enum StakeholderCommsStakeholderType {
129968
130777
  Internal = "INTERNAL",
129969
130778
  Team = "TEAM"
129970
130779
  }
130780
+ export declare type StakeholderCommsSubscriber = {
130781
+ __typename?: 'StakeholderCommsSubscriber';
130782
+ additionalInformation?: Maybe<Array<Scalars['String']['output']>>;
130783
+ componentIds?: Maybe<Array<Scalars['String']['output']>>;
130784
+ confirmationCode?: Maybe<Scalars['String']['output']>;
130785
+ confirmedAt?: Maybe<Scalars['String']['output']>;
130786
+ createdAt?: Maybe<Scalars['String']['output']>;
130787
+ deactivatedAt?: Maybe<Scalars['String']['output']>;
130788
+ email?: Maybe<Scalars['String']['output']>;
130789
+ id?: Maybe<Scalars['String']['output']>;
130790
+ itemId?: Maybe<Scalars['String']['output']>;
130791
+ lastRemindedAt?: Maybe<Scalars['String']['output']>;
130792
+ orphanedAt?: Maybe<Scalars['String']['output']>;
130793
+ pageAccessUserId?: Maybe<Scalars['String']['output']>;
130794
+ phoneCountry?: Maybe<Scalars['String']['output']>;
130795
+ phoneNumber?: Maybe<Scalars['String']['output']>;
130796
+ phoneNumberDisplay?: Maybe<Scalars['String']['output']>;
130797
+ quarantinedAt?: Maybe<Scalars['String']['output']>;
130798
+ shortCodeSubscriptionId?: Maybe<Scalars['String']['output']>;
130799
+ skipConfirmation?: Maybe<Scalars['Boolean']['output']>;
130800
+ slackChannelId?: Maybe<Scalars['String']['output']>;
130801
+ slackUserId?: Maybe<Scalars['String']['output']>;
130802
+ subscriptionType?: Maybe<Scalars['String']['output']>;
130803
+ type?: Maybe<StakeholderCommsSubscriberItemType>;
130804
+ updatedAt?: Maybe<Scalars['String']['output']>;
130805
+ webhookEndpoint?: Maybe<Scalars['String']['output']>;
130806
+ };
130807
+ export declare enum StakeholderCommsSubscriberItemType {
130808
+ ComponentSubscriber = "COMPONENT_SUBSCRIBER",
130809
+ IncidentSubscriber = "INCIDENT_SUBSCRIBER",
130810
+ PageSubscriber = "PAGE_SUBSCRIBER"
130811
+ }
130812
+ export declare type StakeholderCommsSubscriberResponse = {
130813
+ __typename?: 'StakeholderCommsSubscriberResponse';
130814
+ error?: Maybe<Scalars['String']['output']>;
130815
+ subscriber?: Maybe<StakeholderCommsSubscriber>;
130816
+ };
130817
+ export declare enum StakeholderCommsSubscriptionChannel {
130818
+ Email = "EMAIL",
130819
+ Slack = "SLACK",
130820
+ Sms = "SMS",
130821
+ Webhook = "WEBHOOK"
130822
+ }
130823
+ export declare type StakeholderCommsSubscriptionData = {
130824
+ email?: InputMaybe<Scalars['String']['input']>;
130825
+ phoneCountry?: InputMaybe<Scalars['String']['input']>;
130826
+ phoneNumber?: InputMaybe<Scalars['String']['input']>;
130827
+ };
130828
+ export declare type StakeholderCommsSubscriptionRequest = {
130829
+ itemId: Scalars['String']['input'];
130830
+ itemType: StakeholderCommsSubscriberItemType;
130831
+ subscriptionData?: InputMaybe<StakeholderCommsSubscriptionData>;
130832
+ subscriptionType: StakeholderCommsSubscriptionChannel;
130833
+ };
129971
130834
  export declare type StakeholderCommsUnifiedSearchInput = {
129972
130835
  filters?: InputMaybe<Array<InputMaybe<StakeholderCommsSearchFilterType>>>;
129973
130836
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -129979,6 +130842,11 @@ export declare type StakeholderCommsUnifiedSearchResults = {
129979
130842
  error?: Maybe<Scalars['String']['output']>;
129980
130843
  results?: Maybe<Array<Maybe<StakeholderCommsSearchResult>>>;
129981
130844
  };
130845
+ export declare type StakeholderCommsUnsubscribeSubscriberResponse = {
130846
+ __typename?: 'StakeholderCommsUnsubscribeSubscriberResponse';
130847
+ message?: Maybe<Scalars['String']['output']>;
130848
+ success?: Maybe<Scalars['Boolean']['output']>;
130849
+ };
129982
130850
  export declare type StakeholderCommsUpdatePageInputType = {
129983
130851
  activityScore?: InputMaybe<Scalars['Int']['input']>;
129984
130852
  allowPageSubscribers?: InputMaybe<Scalars['Boolean']['input']>;
@@ -130176,7 +131044,6 @@ export declare type Subscription = {
130176
131044
  bitbucket?: Maybe<BitbucketSubscription>;
130177
131045
  confluence_onContentModified?: Maybe<ConfluenceContentModified>;
130178
131046
  convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
130179
- convoai_onAsyncAgentUpdate?: Maybe<ConvoAiAsyncAgentUpdate>;
130180
131047
  devOps?: Maybe<AriGraphSubscriptions>;
130181
131048
  devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
130182
131049
  devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
@@ -130207,10 +131074,6 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
130207
131074
  cloudId: Scalars['ID']['input'];
130208
131075
  conversationId: Scalars['ID']['input'];
130209
131076
  };
130210
- export declare type SubscriptionConvoai_OnAsyncAgentUpdateArgs = {
130211
- cloudId: Scalars['ID']['input'];
130212
- conversationId: Scalars['ID']['input'];
130213
- };
130214
131077
  export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
130215
131078
  cloudId: Scalars['ID']['input'];
130216
131079
  jobId: Scalars['ID']['input'];
@@ -132294,6 +133157,11 @@ export declare type TownsquareGoalsAddGoalTeamLinkPayload = {
132294
133157
  goalTeamEdge?: Maybe<TownsquareGoalTeamEdge>;
132295
133158
  success: Scalars['Boolean']['output'];
132296
133159
  };
133160
+ export declare type TownsquareGoalsAppSettings = {
133161
+ __typename?: 'TownsquareGoalsAppSettings';
133162
+ aiEnabled?: Maybe<Scalars['Boolean']['output']>;
133163
+ scoringMode?: Maybe<TownsquareGoalScoringMode>;
133164
+ };
132297
133165
  export declare type TownsquareGoalsArchiveMetricInput = {
132298
133166
  metricId: Scalars['ID']['input'];
132299
133167
  };
@@ -132328,6 +133196,39 @@ export declare type TownsquareGoalsCreateAddMetricTargetPayload = {
132328
133196
  goal?: Maybe<TownsquareGoal>;
132329
133197
  success: Scalars['Boolean']['output'];
132330
133198
  };
133199
+ export declare type TownsquareGoalsCreateDecisionInput = {
133200
+ description: Scalars['String']['input'];
133201
+ goalId: Scalars['ID']['input'];
133202
+ summary: Scalars['String']['input'];
133203
+ };
133204
+ export declare type TownsquareGoalsCreateDecisionPayload = {
133205
+ __typename?: 'TownsquareGoalsCreateDecisionPayload';
133206
+ decision?: Maybe<TownsquareDecision>;
133207
+ errors?: Maybe<Array<MutationError>>;
133208
+ success: Scalars['Boolean']['output'];
133209
+ };
133210
+ export declare type TownsquareGoalsCreateLearningInput = {
133211
+ description: Scalars['String']['input'];
133212
+ goalId: Scalars['ID']['input'];
133213
+ summary: Scalars['String']['input'];
133214
+ };
133215
+ export declare type TownsquareGoalsCreateLearningPayload = {
133216
+ __typename?: 'TownsquareGoalsCreateLearningPayload';
133217
+ errors?: Maybe<Array<MutationError>>;
133218
+ learning?: Maybe<TownsquareLearning>;
133219
+ success: Scalars['Boolean']['output'];
133220
+ };
133221
+ export declare type TownsquareGoalsCreateRiskInput = {
133222
+ description: Scalars['String']['input'];
133223
+ goalId: Scalars['ID']['input'];
133224
+ summary: Scalars['String']['input'];
133225
+ };
133226
+ export declare type TownsquareGoalsCreateRiskPayload = {
133227
+ __typename?: 'TownsquareGoalsCreateRiskPayload';
133228
+ errors?: Maybe<Array<MutationError>>;
133229
+ risk?: Maybe<TownsquareRisk>;
133230
+ success: Scalars['Boolean']['output'];
133231
+ };
132331
133232
  export declare type TownsquareGoalsCreateUpdateInput = {
132332
133233
  goalId: Scalars['ID']['input'];
132333
133234
  metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
@@ -132431,6 +133332,7 @@ export declare type TownsquareGoalsRemoveMetricTargetInput = {
132431
133332
  };
132432
133333
  export declare type TownsquareGoalsRemoveMetricTargetPayload = {
132433
133334
  __typename?: 'TownsquareGoalsRemoveMetricTargetPayload';
133335
+ deletedMetricTargetId?: Maybe<Scalars['ID']['output']>;
132434
133336
  errors?: Maybe<Array<MutationError>>;
132435
133337
  goal?: Maybe<TownsquareGoal>;
132436
133338
  success: Scalars['Boolean']['output'];
@@ -132599,6 +133501,22 @@ export declare type TownsquareMetricValuesArgs = {
132599
133501
  sort?: InputMaybe<Array<InputMaybe<TownsquareMetricValueSortEnum>>>;
132600
133502
  startDate?: InputMaybe<Scalars['DateTime']['input']>;
132601
133503
  };
133504
+ export declare type TownsquareMetricConnection = {
133505
+ __typename?: 'TownsquareMetricConnection';
133506
+ edges?: Maybe<Array<Maybe<TownsquareMetricEdge>>>;
133507
+ pageInfo: PageInfo;
133508
+ };
133509
+ export declare type TownsquareMetricEdge = {
133510
+ __typename?: 'TownsquareMetricEdge';
133511
+ cursor: Scalars['String']['output'];
133512
+ node?: Maybe<TownsquareMetric>;
133513
+ };
133514
+ export declare enum TownsquareMetricSortEnum {
133515
+ IdAsc = "ID_ASC",
133516
+ IdDesc = "ID_DESC",
133517
+ NameAsc = "NAME_ASC",
133518
+ NameDesc = "NAME_DESC"
133519
+ }
132602
133520
  export declare type TownsquareMetricTarget = Node & {
132603
133521
  __typename?: 'TownsquareMetricTarget';
132604
133522
  id: Scalars['ID']['output'];
@@ -133035,6 +133953,7 @@ export declare type TownsquareProjectsAddJiraWorkItemLinkPayload = {
133035
133953
  errors?: Maybe<Array<MutationError>>;
133036
133954
  success: Scalars['Boolean']['output'];
133037
133955
  successMessage?: Maybe<TownsquareProjectsAddJiraWorkItemLinkSuccessMessage>;
133956
+ unlinkedWorkItems?: Maybe<Array<Maybe<JiraIssue>>>;
133038
133957
  workItem?: Maybe<JiraIssue>;
133039
133958
  };
133040
133959
  export declare type TownsquareProjectsAddJiraWorkItemLinkSuccessMessage = {
@@ -133067,6 +133986,10 @@ export declare type TownsquareProjectsAddTeamContributorsPayload = {
133067
133986
  project?: Maybe<TownsquareProject>;
133068
133987
  success: Scalars['Boolean']['output'];
133069
133988
  };
133989
+ export declare type TownsquareProjectsAppSettings = {
133990
+ __typename?: 'TownsquareProjectsAppSettings';
133991
+ aiEnabled?: Maybe<Scalars['Boolean']['output']>;
133992
+ };
133070
133993
  export declare type TownsquareProjectsCanCreateProjectFusionInput = {
133071
133994
  issueId: Scalars['ID']['input'];
133072
133995
  projectId: Scalars['ID']['input'];
@@ -133891,6 +134814,16 @@ export declare type TrelloAddChecklistToCardDisplayEntities = {
133891
134814
  checklist?: Maybe<TrelloActionChecklistEntity>;
133892
134815
  memberCreator?: Maybe<TrelloActionMemberEntity>;
133893
134816
  };
134817
+ export declare type TrelloAddLabelsToCardInput = {
134818
+ cardId: Scalars['ID']['input'];
134819
+ labelIds: Array<Scalars['ID']['input']>;
134820
+ };
134821
+ export declare type TrelloAddLabelsToCardPayload = Payload & {
134822
+ __typename?: 'TrelloAddLabelsToCardPayload';
134823
+ card?: Maybe<TrelloCard>;
134824
+ errors?: Maybe<Array<MutationError>>;
134825
+ success: Scalars['Boolean']['output'];
134826
+ };
133894
134827
  export declare type TrelloAddMemberInput = {
133895
134828
  cardId: Scalars['ID']['input'];
133896
134829
  userId: Scalars['ID']['input'];
@@ -134811,10 +135744,22 @@ export declare enum TrelloCardCoverColor {
134811
135744
  Sky = "SKY",
134812
135745
  Yellow = "YELLOW"
134813
135746
  }
135747
+ export declare type TrelloCardCoverInput = {
135748
+ brightness?: InputMaybe<Scalars['String']['input']>;
135749
+ size?: InputMaybe<Scalars['String']['input']>;
135750
+ type: TrelloCardCoverTypeInput;
135751
+ yPosition?: InputMaybe<Scalars['Float']['input']>;
135752
+ };
134814
135753
  export declare enum TrelloCardCoverSize {
134815
135754
  Full = "FULL",
134816
135755
  Normal = "NORMAL"
134817
135756
  }
135757
+ export declare type TrelloCardCoverTypeInput = {
135758
+ attachmentId?: InputMaybe<Scalars['String']['input']>;
135759
+ color?: InputMaybe<Scalars['String']['input']>;
135760
+ uploadedBackgroundId?: InputMaybe<Scalars['String']['input']>;
135761
+ url?: InputMaybe<Scalars['String']['input']>;
135762
+ };
134818
135763
  export declare type TrelloCardCoverUpdated = {
134819
135764
  __typename?: 'TrelloCardCoverUpdated';
134820
135765
  attachment?: Maybe<TrelloAttachmentUpdated>;
@@ -135811,6 +136756,15 @@ export declare type TrelloListViewer = {
135811
136756
  __typename?: 'TrelloListViewer';
135812
136757
  subscribed?: Maybe<Scalars['Boolean']['output']>;
135813
136758
  };
136759
+ export declare type TrelloMarkCardCompleteInput = {
136760
+ cardId: Scalars['ID']['input'];
136761
+ };
136762
+ export declare type TrelloMarkCardCompletePayload = Payload & {
136763
+ __typename?: 'TrelloMarkCardCompletePayload';
136764
+ card?: Maybe<TrelloCard>;
136765
+ errors?: Maybe<Array<MutationError>>;
136766
+ success: Scalars['Boolean']['output'];
136767
+ };
135814
136768
  export declare type TrelloMarkInboxNotificationsReadInput = {
135815
136769
  ids?: InputMaybe<Array<Scalars['ID']['input']>>;
135816
136770
  read?: InputMaybe<Scalars['Boolean']['input']>;
@@ -136064,6 +137018,7 @@ export declare type TrelloMovePlannerCalendarEventTargetOptions = {
136064
137018
  export declare type TrelloMutationApi = {
136065
137019
  __typename?: 'TrelloMutationApi';
136066
137020
  addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
137021
+ addLabelsToCard?: Maybe<TrelloAddLabelsToCardPayload>;
136067
137022
  addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
136068
137023
  addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
136069
137024
  archiveCard?: Maybe<TrelloArchiveCardPayload>;
@@ -136079,12 +137034,14 @@ export declare type TrelloMutationApi = {
136079
137034
  deleteWorkspaceTag?: Maybe<TrelloDeleteWorkspaceTagPayload>;
136080
137035
  editPlannerCalendarEvent?: Maybe<TrelloEditPlannerCalendarEventPayload>;
136081
137036
  generateChecklistsForCard?: Maybe<TrelloGenerateChecklistsForCardPayload>;
137037
+ markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
136082
137038
  markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
136083
137039
  mergeCards?: Maybe<TrelloMergeCardsPayload>;
136084
137040
  movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
136085
137041
  pinCard?: Maybe<TrelloPinCardPayload>;
136086
137042
  removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
136087
137043
  removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
137044
+ removeLabelsFromCard?: Maybe<TrelloRemoveLabelsFromCardPayload>;
136088
137045
  removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
136089
137046
  removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
136090
137047
  removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
@@ -136107,8 +137064,10 @@ export declare type TrelloMutationApi = {
136107
137064
  updateBoardViewerAISlack?: Maybe<TrelloUpdateBoardViewerAiSlackPayload>;
136108
137065
  updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
136109
137066
  updateBoardVisibility?: Maybe<TrelloUpdateBoardVisibilityPayload>;
137067
+ updateCardCover?: Maybe<TrelloUpdateCardCoverPayload>;
136110
137068
  updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
136111
137069
  updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
137070
+ updateCardRole?: Maybe<TrelloUpdateCardRolePayload>;
136112
137071
  updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
136113
137072
  updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
136114
137073
  updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
@@ -136119,6 +137078,9 @@ export declare type TrelloMutationApi = {
136119
137078
  export declare type TrelloMutationApiAddBoardStarArgs = {
136120
137079
  input: TrelloAddBoardStarInput;
136121
137080
  };
137081
+ export declare type TrelloMutationApiAddLabelsToCardArgs = {
137082
+ input: TrelloAddLabelsToCardInput;
137083
+ };
136122
137084
  export declare type TrelloMutationApiAddMemberToCardArgs = {
136123
137085
  input: TrelloAddMemberInput;
136124
137086
  };
@@ -136164,6 +137126,9 @@ export declare type TrelloMutationApiEditPlannerCalendarEventArgs = {
136164
137126
  export declare type TrelloMutationApiGenerateChecklistsForCardArgs = {
136165
137127
  input: TrelloGenerateChecklistsForCardInput;
136166
137128
  };
137129
+ export declare type TrelloMutationApiMarkCardCompleteArgs = {
137130
+ input: TrelloMarkCardCompleteInput;
137131
+ };
136167
137132
  export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
136168
137133
  input?: InputMaybe<TrelloMarkInboxNotificationsReadInput>;
136169
137134
  };
@@ -136182,6 +137147,9 @@ export declare type TrelloMutationApiRemoveBoardStarArgs = {
136182
137147
  export declare type TrelloMutationApiRemoveCardFromPlannerCalendarEventArgs = {
136183
137148
  input: TrelloRemoveCardFromPlannerCalendarEventInput;
136184
137149
  };
137150
+ export declare type TrelloMutationApiRemoveLabelsFromCardArgs = {
137151
+ input: TrelloRemoveLabelsFromCardInput;
137152
+ };
136185
137153
  export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
136186
137154
  input: TrelloRemoveMemberInput;
136187
137155
  };
@@ -136248,12 +137216,18 @@ export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
136248
137216
  export declare type TrelloMutationApiUpdateBoardVisibilityArgs = {
136249
137217
  input: TrelloUpdateBoardVisibilityInput;
136250
137218
  };
137219
+ export declare type TrelloMutationApiUpdateCardCoverArgs = {
137220
+ input: TrelloUpdateCardCoverInput;
137221
+ };
136251
137222
  export declare type TrelloMutationApiUpdateCardNameArgs = {
136252
137223
  input: TrelloUpdateCardNameInput;
136253
137224
  };
136254
137225
  export declare type TrelloMutationApiUpdateCardPositionOnPlannerCalendarEventArgs = {
136255
137226
  input: TrelloUpdateCardPositionOnPlannerCalendarEventInput;
136256
137227
  };
137228
+ export declare type TrelloMutationApiUpdateCardRoleArgs = {
137229
+ input: TrelloUpdateCardRoleInput;
137230
+ };
136257
137231
  export declare type TrelloMutationApiUpdateInboxBackgroundArgs = {
136258
137232
  input: TrelloUpdateInboxBackgroundInput;
136259
137233
  };
@@ -136272,6 +137246,13 @@ export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
136272
137246
  export declare type TrelloMutationApiWatchCardArgs = {
136273
137247
  input: TrelloWatchCardInput;
136274
137248
  };
137249
+ export declare type TrelloMutationErrorExtension = MutationErrorExtension & {
137250
+ __typename?: 'TrelloMutationErrorExtension';
137251
+ code?: Maybe<Scalars['String']['output']>;
137252
+ errorType?: Maybe<Scalars['String']['output']>;
137253
+ id?: Maybe<Scalars['String']['output']>;
137254
+ statusCode?: Maybe<Scalars['Int']['output']>;
137255
+ };
136275
137256
  export declare type TrelloNotification = TrelloQuickCaptureNotification;
136276
137257
  export declare type TrelloNotificationConnection = {
136277
137258
  __typename?: 'TrelloNotificationConnection';
@@ -136290,6 +137271,10 @@ export declare type TrelloNotificationFilter = {
136290
137271
  };
136291
137272
  export declare type TrelloOAuth2Client = {
136292
137273
  __typename?: 'TrelloOAuth2Client';
137274
+ appContactLink?: Maybe<Scalars['String']['output']>;
137275
+ appDescription?: Maybe<Scalars['String']['output']>;
137276
+ appLogoUrl?: Maybe<Scalars['String']['output']>;
137277
+ appVendorName?: Maybe<Scalars['String']['output']>;
136293
137278
  callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
136294
137279
  clientId: Scalars['String']['output'];
136295
137280
  clientSecret?: Maybe<Scalars['String']['output']>;
@@ -137004,6 +137989,16 @@ export declare type TrelloRemoveChecklistFromCardDisplayEntities = {
137004
137989
  checklist?: Maybe<TrelloActionChecklistEntity>;
137005
137990
  memberCreator?: Maybe<TrelloActionMemberEntity>;
137006
137991
  };
137992
+ export declare type TrelloRemoveLabelsFromCardInput = {
137993
+ cardId: Scalars['ID']['input'];
137994
+ labelIds: Array<Scalars['ID']['input']>;
137995
+ };
137996
+ export declare type TrelloRemoveLabelsFromCardPayload = Payload & {
137997
+ __typename?: 'TrelloRemoveLabelsFromCardPayload';
137998
+ card?: Maybe<TrelloCard>;
137999
+ errors?: Maybe<Array<MutationError>>;
138000
+ success: Scalars['Boolean']['output'];
138001
+ };
137007
138002
  export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCardActionData & {
137008
138003
  __typename?: 'TrelloRemoveMemberFromCardAction';
137009
138004
  appCreator?: Maybe<TrelloAppCreator>;
@@ -137377,6 +138372,16 @@ export declare type TrelloUpdateCardCompleteActionDisplayEntities = {
137377
138372
  card?: Maybe<TrelloActionCardEntity>;
137378
138373
  memberCreator?: Maybe<TrelloActionMemberEntity>;
137379
138374
  };
138375
+ export declare type TrelloUpdateCardCoverInput = {
138376
+ cardId: Scalars['ID']['input'];
138377
+ cover: TrelloCardCoverInput;
138378
+ };
138379
+ export declare type TrelloUpdateCardCoverPayload = Payload & {
138380
+ __typename?: 'TrelloUpdateCardCoverPayload';
138381
+ cardId?: Maybe<Scalars['ID']['output']>;
138382
+ errors?: Maybe<Array<MutationError>>;
138383
+ success: Scalars['Boolean']['output'];
138384
+ };
137380
138385
  export declare type TrelloUpdateCardDueAction = TrelloAction & TrelloCardActionData & {
137381
138386
  __typename?: 'TrelloUpdateCardDueAction';
137382
138387
  appCreator?: Maybe<TrelloAppCreator>;
@@ -137438,6 +138443,16 @@ export declare type TrelloUpdateCardRecurrenceRuleActionDisplayEntities = {
137438
138443
  card?: Maybe<TrelloActionCardEntity>;
137439
138444
  memberCreator?: Maybe<TrelloActionMemberEntity>;
137440
138445
  };
138446
+ export declare type TrelloUpdateCardRoleInput = {
138447
+ cardId: Scalars['ID']['input'];
138448
+ cardRole?: InputMaybe<TrelloCardRole>;
138449
+ };
138450
+ export declare type TrelloUpdateCardRolePayload = Payload & {
138451
+ __typename?: 'TrelloUpdateCardRolePayload';
138452
+ card?: Maybe<TrelloCard>;
138453
+ errors?: Maybe<Array<MutationError>>;
138454
+ success: Scalars['Boolean']['output'];
138455
+ };
137441
138456
  export declare type TrelloUpdateCheckItemStateOnCardAction = TrelloAction & TrelloCardActionData & {
137442
138457
  __typename?: 'TrelloUpdateCheckItemStateOnCardAction';
137443
138458
  appCreator?: Maybe<TrelloAppCreator>;
@@ -137516,16 +138531,8 @@ export declare type TrelloUpdateOAuth2ClientInput = {
137516
138531
  };
137517
138532
  export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
137518
138533
  __typename?: 'TrelloUpdateOAuth2ClientPayload';
137519
- appContactLink?: Maybe<Scalars['String']['output']>;
137520
- appDescription?: Maybe<Scalars['String']['output']>;
137521
- appLogoUrl?: Maybe<Scalars['String']['output']>;
137522
- appVendorName?: Maybe<Scalars['String']['output']>;
137523
138534
  application?: Maybe<TrelloApplication>;
137524
- callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
137525
- clientType?: Maybe<Scalars['String']['output']>;
137526
138535
  errors?: Maybe<Array<MutationError>>;
137527
- id?: Maybe<Scalars['ID']['output']>;
137528
- scopes?: Maybe<Array<Scalars['String']['output']>>;
137529
138536
  success: Scalars['Boolean']['output'];
137530
138537
  };
137531
138538
  export declare type TrelloUpdatePrimaryPlannerAccountInput = {