@forge/cli-shared 8.15.0-next.3-experimental-cb1ecce → 8.15.0-next.3-experimental-3c69930

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.
@@ -454,6 +454,18 @@ export declare type AvpClearChartsInRowInput = {
454
454
  dashboardAri: Scalars['ID']['input'];
455
455
  rowId: Scalars['ID']['input'];
456
456
  };
457
+ export declare type AvpCloneChartInput = {
458
+ canvasElementId?: InputMaybe<Scalars['ID']['input']>;
459
+ chartAri: Scalars['ID']['input'];
460
+ dashboardAri: Scalars['ID']['input'];
461
+ };
462
+ export declare type AvpCloneChartPayload = Payload & {
463
+ __typename?: 'AVPCloneChartPayload';
464
+ canvasLayout?: Maybe<AvpDashboardCanvasLayout>;
465
+ chart?: Maybe<AvpChart>;
466
+ errors?: Maybe<Array<MutationError>>;
467
+ success: Scalars['Boolean']['output'];
468
+ };
457
469
  export declare type AvpCopyChartInput = {
458
470
  chartAri: Scalars['ID']['input'];
459
471
  };
@@ -523,6 +535,20 @@ export declare type AvpCreateDashboardPayload = Payload & {
523
535
  errors?: Maybe<Array<MutationError>>;
524
536
  success: Scalars['Boolean']['output'];
525
537
  };
538
+ export declare type AvpCreateStandaloneChartInput = {
539
+ chart: AvpChartInput;
540
+ cloudId: Scalars['ID']['input'];
541
+ containerAri?: InputMaybe<Scalars['ID']['input']>;
542
+ integrationId?: InputMaybe<AvpIntegrationId>;
543
+ workspaceId: Scalars['ID']['input'];
544
+ };
545
+ export declare type AvpCreateStandaloneChartPayload = Payload & {
546
+ __typename?: 'AVPCreateStandaloneChartPayload';
547
+ chart?: Maybe<AvpChart>;
548
+ dashboard?: Maybe<AvpDashboard>;
549
+ errors?: Maybe<Array<MutationError>>;
550
+ success: Scalars['Boolean']['output'];
551
+ };
526
552
  export declare type AvpCreateVariableInput = {
527
553
  dashboardAri: Scalars['ID']['input'];
528
554
  variable: AvpVariableInput;
@@ -821,6 +847,18 @@ export declare type AvpMoveDashboardRowPayload = Payload & {
821
847
  errors?: Maybe<Array<MutationError>>;
822
848
  success: Scalars['Boolean']['output'];
823
849
  };
850
+ export declare enum AvpPermissionsAccessLevel {
851
+ Manage = "MANAGE",
852
+ Read = "READ",
853
+ Write = "WRITE"
854
+ }
855
+ export declare type AvpPermissionsDashboardIdentityAccess = {
856
+ __typename?: 'AVPPermissionsDashboardIdentityAccess';
857
+ dashboardId: Scalars['ID']['output'];
858
+ manage: AvpPermissionsPrincipals;
859
+ read: AvpPermissionsPrincipals;
860
+ write: AvpPermissionsPrincipals;
861
+ };
824
862
  export declare type AvpPermissionsDashboardUserAccess = {
825
863
  accessLevel: AvpPermissionsDashboardUserAccessLevel;
826
864
  accountId: Scalars['String']['input'];
@@ -839,10 +877,22 @@ export declare type AvpPermissionsFailedDashboardUserAccess = {
839
877
  errorMessage: Scalars['String']['output'];
840
878
  user: AvpPermissionsDashboardUserAccessResult;
841
879
  };
880
+ export declare type AvpPermissionsGetDashboardIdentityAccessInput = {
881
+ cloudId: Scalars['ID']['input'];
882
+ dashboardId: Scalars['ID']['input'];
883
+ directAccess?: InputMaybe<Scalars['Boolean']['input']>;
884
+ includeGroups?: InputMaybe<Scalars['Boolean']['input']>;
885
+ permissions?: InputMaybe<Array<AvpPermissionsAccessLevel>>;
886
+ };
842
887
  export declare type AvpPermissionsHelloResponse = {
843
888
  __typename?: 'AVPPermissionsHelloResponse';
844
889
  hello?: Maybe<Scalars['String']['output']>;
845
890
  };
891
+ export declare type AvpPermissionsPrincipals = {
892
+ __typename?: 'AVPPermissionsPrincipals';
893
+ groups: Array<Scalars['ID']['output']>;
894
+ users: Array<Scalars['ID']['output']>;
895
+ };
846
896
  export declare type AvpPermissionsUpdateDashboardUserAccessInput = {
847
897
  cloudId: Scalars['ID']['input'];
848
898
  containerId?: InputMaybe<Scalars['ID']['input']>;
@@ -3072,6 +3122,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
3072
3122
  identityAccountId?: Maybe<Scalars['String']['output']>;
3073
3123
  instructions?: Maybe<Scalars['String']['output']>;
3074
3124
  isFavourite?: Maybe<Scalars['Boolean']['output']>;
3125
+ isVerified?: Maybe<Scalars['Boolean']['output']>;
3075
3126
  knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
3076
3127
  name?: Maybe<Scalars['String']['output']>;
3077
3128
  permissions?: Maybe<AgentStudioAgentPermissions>;
@@ -3872,6 +3923,12 @@ export declare type AgentStudioUpdateAgentUsePermissionSettingsInput = {
3872
3923
  etag?: InputMaybe<Scalars['String']['input']>;
3873
3924
  mode?: InputMaybe<AgentStudioUsePermissionMode>;
3874
3925
  };
3926
+ export declare type AgentStudioUpdateAgentVerificationPayload = Payload & {
3927
+ __typename?: 'AgentStudioUpdateAgentVerificationPayload';
3928
+ agent?: Maybe<AgentStudioAgent>;
3929
+ errors?: Maybe<Array<MutationError>>;
3930
+ success: Scalars['Boolean']['output'];
3931
+ };
3875
3932
  export declare type AgentStudioUpdateConversationStartersInput = {
3876
3933
  conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
3877
3934
  etag?: InputMaybe<Scalars['String']['input']>;
@@ -3973,6 +4030,10 @@ export declare type AgentStudioWidgets = {
3973
4030
  widgets?: Maybe<Array<AgentStudioWidget>>;
3974
4031
  };
3975
4032
  export declare type AgentStudioWidgetsByAgentIdAndContainerTypeResult = AgentStudioWidgets | QueryError;
4033
+ export declare type AgentWorkspaceHelloWorld = {
4034
+ __typename?: 'AgentWorkspaceHelloWorld';
4035
+ value: Scalars['String']['output'];
4036
+ };
3976
4037
  export declare enum AiCoreApiQuestionType {
3977
4038
  DraftDocument = "DRAFT_DOCUMENT",
3978
4039
  KnowledgeBase = "KNOWLEDGE_BASE"
@@ -4367,7 +4428,7 @@ export declare type AppCustomScopeEdge = {
4367
4428
  };
4368
4429
  export declare type AppCustomScopeSpec = {
4369
4430
  description: Scalars['String']['input'];
4370
- displayName?: InputMaybe<Scalars['String']['input']>;
4431
+ displayName: Scalars['String']['input'];
4371
4432
  name: Scalars['String']['input'];
4372
4433
  };
4373
4434
  export declare type AppDeployment = {
@@ -7067,6 +7128,12 @@ export declare type AssetsDmEditDefaultAttributeMappingResponse = {
7067
7128
  isSuccessful: Scalars['Boolean']['output'];
7068
7129
  message: Scalars['String']['output'];
7069
7130
  };
7131
+ export declare type AssetsDmErrorDetail = {
7132
+ __typename?: 'AssetsDMErrorDetail';
7133
+ code?: Maybe<Scalars['String']['output']>;
7134
+ field?: Maybe<Scalars['String']['output']>;
7135
+ message?: Maybe<Scalars['String']['output']>;
7136
+ };
7070
7137
  export declare type AssetsDmExportedObjectsListFileStatusPayload = {
7071
7138
  name: Scalars['String']['input'];
7072
7139
  };
@@ -7153,6 +7220,7 @@ export declare type AssetsDmJobDataFilterInput = {
7153
7220
  export declare type AssetsDmJobDataResponse = {
7154
7221
  __typename?: 'AssetsDMJobDataResponse';
7155
7222
  columns: Array<AssetsDmJobDataColumn>;
7223
+ errorDetails?: Maybe<Array<AssetsDmErrorDetail>>;
7156
7224
  pagination: AssetsDmPaginationInfo;
7157
7225
  rows: Array<Scalars['JSON']['output']>;
7158
7226
  };
@@ -7919,7 +7987,7 @@ export declare type AssetsObjectReferenceAttributeOnObject = AssetsAttributeOnOb
7919
7987
  export declare type AssetsObjectReferenceAttributeValue = {
7920
7988
  __typename?: 'AssetsObjectReferenceAttributeValue';
7921
7989
  displayValue: Scalars['String']['output'];
7922
- value?: Maybe<AssetsObjectType>;
7990
+ value?: Maybe<AssetsObjectNode>;
7923
7991
  };
7924
7992
  export declare type AssetsObjectType = Node & {
7925
7993
  __typename?: 'AssetsObjectType';
@@ -8021,9 +8089,9 @@ export declare type AssetsStatusAttributeValue = {
8021
8089
  value?: Maybe<AssetsStatusType>;
8022
8090
  };
8023
8091
  export declare enum AssetsStatusCategory {
8024
- Moved = "MOVED",
8025
- Removed = "REMOVED",
8026
- Success = "SUCCESS"
8092
+ Active = "ACTIVE",
8093
+ Inactive = "INACTIVE",
8094
+ Pending = "PENDING"
8027
8095
  }
8028
8096
  export declare type AssetsStatusType = {
8029
8097
  __typename?: 'AssetsStatusType';
@@ -8152,6 +8220,7 @@ export declare enum AtlassianProductHostingType {
8152
8220
  export declare type AtlassianStudioUserProductPermissions = {
8153
8221
  __typename?: 'AtlassianStudioUserProductPermissions';
8154
8222
  isAbleToCreateAgents?: Maybe<Scalars['Boolean']['output']>;
8223
+ isAbleToGovernAgents?: Maybe<Scalars['Boolean']['output']>;
8155
8224
  isAbleToGrantCreateAgentPermission?: Maybe<Scalars['Boolean']['output']>;
8156
8225
  isConfluenceGlobalAdmin?: Maybe<Scalars['Boolean']['output']>;
8157
8226
  isHelpCenterAdmin?: Maybe<Scalars['Boolean']['output']>;
@@ -9134,6 +9203,28 @@ export declare type CcpAddPaymentMethodExperienceCapability = CommerceExperience
9134
9203
  experienceUrl?: Maybe<Scalars['String']['output']>;
9135
9204
  isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
9136
9205
  };
9206
+ export declare enum CcpAllowancePoolAllocationDetailsType {
9207
+ Custom = "CUSTOM",
9208
+ Default = "DEFAULT"
9209
+ }
9210
+ export declare type CcpAllowancePoolAllocationsResponse = {
9211
+ __typename?: 'CcpAllowancePoolAllocationsResponse';
9212
+ allowance?: Maybe<Scalars['Float']['output']>;
9213
+ balance?: Maybe<Scalars['Float']['output']>;
9214
+ billingEntity?: Maybe<Scalars['String']['output']>;
9215
+ enforcementMode?: Maybe<CcpLatestAllowanceEnforcementModeType>;
9216
+ id?: Maybe<Scalars['String']['output']>;
9217
+ latestUsage?: Maybe<Scalars['Float']['output']>;
9218
+ overageCap?: Maybe<Scalars['Float']['output']>;
9219
+ poolId?: Maybe<Scalars['String']['output']>;
9220
+ poolShare?: Maybe<Scalars['Float']['output']>;
9221
+ type?: Maybe<CcpAllowancePoolAllocationDetailsType>;
9222
+ };
9223
+ export declare type CcpAllowancePoolMembersResponse = {
9224
+ __typename?: 'CcpAllowancePoolMembersResponse';
9225
+ allowance?: Maybe<Scalars['Float']['output']>;
9226
+ memberId?: Maybe<Scalars['String']['output']>;
9227
+ };
9137
9228
  export declare enum CcpAndOr {
9138
9229
  And = "AND",
9139
9230
  Or = "OR"
@@ -9491,6 +9582,8 @@ export declare type CcpEligiblePromotionWindow = {
9491
9582
  };
9492
9583
  export declare type CcpEntitlement = CommerceEntitlement & Node & {
9493
9584
  __typename?: 'CcpEntitlement';
9585
+ allowancePoolAllocations?: Maybe<Array<Maybe<CcpAllowancePoolAllocationsResponse>>>;
9586
+ allowancePoolMembers?: Maybe<Array<Maybe<CcpAllowancePoolMembersResponse>>>;
9494
9587
  changeReason?: Maybe<Scalars['String']['output']>;
9495
9588
  chargeElementLatestAllowancesDetails?: Maybe<CcpChargeElementLatestAllowancesResult>;
9496
9589
  childrenIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
@@ -9535,6 +9628,9 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
9535
9628
  usage?: Maybe<Array<Maybe<CcpEntitlementUsage>>>;
9536
9629
  version?: Maybe<Scalars['Int']['output']>;
9537
9630
  };
9631
+ export declare type CcpEntitlementAllowancePoolMembersArgs = {
9632
+ poolId: Scalars['ID']['input'];
9633
+ };
9538
9634
  export declare type CcpEntitlementChargeElementLatestAllowancesDetailsArgs = {
9539
9635
  input: CcpChargeElementLatestAllowancesInput;
9540
9636
  };
@@ -25250,6 +25346,12 @@ export declare type ConvoAiAgentSession = ConvoAiAgentSessionNode & {
25250
25346
  state?: Maybe<Scalars['String']['output']>;
25251
25347
  version?: Maybe<Scalars['Long']['output']>;
25252
25348
  };
25349
+ export declare type ConvoAiAgentSessionCreate = {
25350
+ __typename?: 'ConvoAiAgentSessionCreate';
25351
+ agent?: Maybe<User>;
25352
+ agentIdentityAccountId?: Maybe<Scalars['String']['output']>;
25353
+ conversationId: Scalars['String']['output'];
25354
+ };
25253
25355
  export declare type ConvoAiAgentSessionNode = {
25254
25356
  id?: Maybe<Scalars['ID']['output']>;
25255
25357
  };
@@ -30356,6 +30458,23 @@ export declare type DevConsoleDeveloperSpaceWithRole = {
30356
30458
  devSpaceId: Scalars['ID']['output'];
30357
30459
  roles: Array<Scalars['String']['output']>;
30358
30460
  };
30461
+ export declare type DevConsoleDownloadAppInstallationsResponse = {
30462
+ __typename?: 'DevConsoleDownloadAppInstallationsResponse';
30463
+ downloadUrl?: Maybe<Scalars['String']['output']>;
30464
+ errors?: Maybe<Array<QueryError>>;
30465
+ status: DevConsoleDownloadAppInstallationsStatus;
30466
+ };
30467
+ export declare enum DevConsoleDownloadAppInstallationsStatus {
30468
+ Completed = "COMPLETED",
30469
+ Failed = "FAILED",
30470
+ NotStarted = "NOT_STARTED",
30471
+ Processing = "PROCESSING"
30472
+ }
30473
+ export declare type DevConsoleFetchDownloadAppInstallationsStatusResponse = {
30474
+ __typename?: 'DevConsoleFetchDownloadAppInstallationsStatusResponse';
30475
+ errors?: Maybe<Array<QueryError>>;
30476
+ status: DevConsoleDownloadAppInstallationsStatus;
30477
+ };
30359
30478
  export declare enum DevConsoleGroupBy {
30360
30479
  ContextAri = "CONTEXT_ARI",
30361
30480
  EnvironmentId = "ENVIRONMENT_ID"
@@ -30412,6 +30531,8 @@ export declare type DevConsoleQuery = {
30412
30531
  appResourceUsageDetailedView: DevConsoleAppResourceUsageDetailedViewResponse;
30413
30532
  appUsageOverview: DevConsoleAppUsageOverviewResponse;
30414
30533
  appUsageTopSites: DevConsoleAppUsageTopSitesResponse;
30534
+ downloadAppInstallations: DevConsoleDownloadAppInstallationsResponse;
30535
+ fetchDownloadAppInstallationsStatus: DevConsoleFetchDownloadAppInstallationsStatusResponse;
30415
30536
  getAppsWithoutConsent: DevConsoleAppsWithoutConsentResponse;
30416
30537
  getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
30417
30538
  getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
@@ -30439,6 +30560,12 @@ export declare type DevConsoleQueryAppUsageTopSitesArgs = {
30439
30560
  appId: Scalars['ID']['input'];
30440
30561
  filters: DevConsoleAppUsageTopSitesFiltersInput;
30441
30562
  };
30563
+ export declare type DevConsoleQueryDownloadAppInstallationsArgs = {
30564
+ appId: Scalars['ID']['input'];
30565
+ };
30566
+ export declare type DevConsoleQueryFetchDownloadAppInstallationsStatusArgs = {
30567
+ appId: Scalars['ID']['input'];
30568
+ };
30442
30569
  export declare type DevConsoleQueryGetAppsWithoutConsentArgs = {
30443
30570
  developerSpaceId: Scalars['String']['input'];
30444
30571
  };
@@ -32157,6 +32284,7 @@ export declare type EcosystemGlobalInstallationOverrideInput = {
32157
32284
  };
32158
32285
  export declare enum EcosystemGlobalInstallationOverrideKeys {
32159
32286
  AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
32287
+ AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
32160
32288
  AllowLogsAccess = "ALLOW_LOGS_ACCESS",
32161
32289
  AllowRestApis = "ALLOW_REST_APIS"
32162
32290
  }
@@ -32165,6 +32293,7 @@ export declare type EcosystemInstallationConfigInput = {
32165
32293
  };
32166
32294
  export declare enum EcosystemInstallationOverrideKeys {
32167
32295
  AllowEgressAnalytics = "ALLOW_EGRESS_ANALYTICS",
32296
+ AllowLlmCapability = "ALLOW_LLM_CAPABILITY",
32168
32297
  AllowRestApis = "ALLOW_REST_APIS"
32169
32298
  }
32170
32299
  export declare type EcosystemInstallationOverrides = {
@@ -33559,6 +33688,7 @@ export declare enum ExternalDocumentCategory {
33559
33688
  Folder = "FOLDER",
33560
33689
  Form = "FORM",
33561
33690
  Image = "IMAGE",
33691
+ Notebook = "NOTEBOOK",
33562
33692
  Other = "OTHER",
33563
33693
  Page = "PAGE",
33564
33694
  Pdf = "PDF",
@@ -33756,6 +33886,7 @@ export declare type ExternalMessage = Node & {
33756
33886
  parent?: Maybe<ExternalEntity>;
33757
33887
  parentId?: Maybe<Scalars['ID']['output']>;
33758
33888
  provider?: Maybe<ExternalProvider>;
33889
+ reactionCount?: Maybe<Scalars['Int']['output']>;
33759
33890
  thirdPartyId?: Maybe<Scalars['String']['output']>;
33760
33891
  thumbnail?: Maybe<ExternalThumbnail>;
33761
33892
  updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
@@ -37195,6 +37326,7 @@ export declare enum GraphIntegrationSurface {
37195
37326
  export declare type GraphIntegrationTwgCapabilityContainer = {
37196
37327
  __typename?: 'GraphIntegrationTwgCapabilityContainer';
37197
37328
  actionConfigurations: Array<GraphIntegrationActionAdminManagementActionNode>;
37329
+ availableCapabilities: Array<GraphIntegrationAppCapability>;
37198
37330
  connections: Array<GraphIntegrationDataConnectorConnection>;
37199
37331
  contextAri: Scalars['ID']['output'];
37200
37332
  dataConnectors: Array<GraphIntegrationDataConnector>;
@@ -40668,8 +40800,6 @@ export declare type GraphStore = {
40668
40800
  userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
40669
40801
  userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
40670
40802
  userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
40671
- userInvitedUser?: Maybe<GraphStoreSimplifiedUserInvitedUserConnection>;
40672
- userInvitedUserInverse?: Maybe<GraphStoreSimplifiedUserInvitedUserInverseConnection>;
40673
40803
  userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
40674
40804
  userIsInTeamInverse?: Maybe<GraphStoreSimplifiedUserIsInTeamInverseConnection>;
40675
40805
  userLastUpdatedDesign?: Maybe<GraphStoreSimplifiedUserLastUpdatedDesignConnection>;
@@ -46647,22 +46777,6 @@ export declare type GraphStoreUserHasTopProjectInverseArgs = {
46647
46777
  queryContext?: InputMaybe<Scalars['String']['input']>;
46648
46778
  sort?: InputMaybe<GraphStoreUserHasTopProjectSortInput>;
46649
46779
  };
46650
- export declare type GraphStoreUserInvitedUserArgs = {
46651
- after?: InputMaybe<Scalars['String']['input']>;
46652
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
46653
- first?: InputMaybe<Scalars['Int']['input']>;
46654
- id: Scalars['ID']['input'];
46655
- queryContext?: InputMaybe<Scalars['String']['input']>;
46656
- sort?: InputMaybe<GraphStoreUserInvitedUserSortInput>;
46657
- };
46658
- export declare type GraphStoreUserInvitedUserInverseArgs = {
46659
- after?: InputMaybe<Scalars['String']['input']>;
46660
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
46661
- first?: InputMaybe<Scalars['Int']['input']>;
46662
- id: Scalars['ID']['input'];
46663
- queryContext?: InputMaybe<Scalars['String']['input']>;
46664
- sort?: InputMaybe<GraphStoreUserInvitedUserSortInput>;
46665
- };
46666
46780
  export declare type GraphStoreUserIsInTeamArgs = {
46667
46781
  after?: InputMaybe<Scalars['String']['input']>;
46668
46782
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -63778,34 +63892,6 @@ export declare type GraphStoreSimplifiedUserHasTopProjectInverseEdge = {
63778
63892
  };
63779
63893
  export declare type GraphStoreSimplifiedUserHasTopProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
63780
63894
  export declare type GraphStoreSimplifiedUserHasTopProjectUnion = JiraProject;
63781
- export declare type GraphStoreSimplifiedUserInvitedUserConnection = HasPageInfo & {
63782
- __typename?: 'GraphStoreSimplifiedUserInvitedUserConnection';
63783
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserInvitedUserEdge>>>;
63784
- pageInfo: PageInfo;
63785
- };
63786
- export declare type GraphStoreSimplifiedUserInvitedUserEdge = {
63787
- __typename?: 'GraphStoreSimplifiedUserInvitedUserEdge';
63788
- createdAt: Scalars['DateTime']['output'];
63789
- cursor?: Maybe<Scalars['String']['output']>;
63790
- id: Scalars['ID']['output'];
63791
- lastUpdated: Scalars['DateTime']['output'];
63792
- node?: Maybe<GraphStoreSimplifiedUserInvitedUserUnion>;
63793
- };
63794
- export declare type GraphStoreSimplifiedUserInvitedUserInverseConnection = HasPageInfo & {
63795
- __typename?: 'GraphStoreSimplifiedUserInvitedUserInverseConnection';
63796
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserInvitedUserInverseEdge>>>;
63797
- pageInfo: PageInfo;
63798
- };
63799
- export declare type GraphStoreSimplifiedUserInvitedUserInverseEdge = {
63800
- __typename?: 'GraphStoreSimplifiedUserInvitedUserInverseEdge';
63801
- createdAt: Scalars['DateTime']['output'];
63802
- cursor?: Maybe<Scalars['String']['output']>;
63803
- id: Scalars['ID']['output'];
63804
- lastUpdated: Scalars['DateTime']['output'];
63805
- node?: Maybe<GraphStoreSimplifiedUserInvitedUserInverseUnion>;
63806
- };
63807
- export declare type GraphStoreSimplifiedUserInvitedUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
63808
- export declare type GraphStoreSimplifiedUserInvitedUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
63809
63895
  export declare type GraphStoreSimplifiedUserIsInTeamConnection = HasPageInfo & {
63810
63896
  __typename?: 'GraphStoreSimplifiedUserIsInTeamConnection';
63811
63897
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserIsInTeamEdge>>>;
@@ -66595,9 +66681,6 @@ export declare type GraphStoreUserHasRelevantProjectSortInput = {
66595
66681
  export declare type GraphStoreUserHasTopProjectSortInput = {
66596
66682
  lastModified?: InputMaybe<GraphStoreSortInput>;
66597
66683
  };
66598
- export declare type GraphStoreUserInvitedUserSortInput = {
66599
- lastModified?: InputMaybe<GraphStoreSortInput>;
66600
- };
66601
66684
  export declare type GraphStoreUserIsInTeamSortInput = {
66602
66685
  lastModified?: InputMaybe<GraphStoreSortInput>;
66603
66686
  };
@@ -66952,8 +67035,6 @@ export declare type GraphStoreV2 = {
66952
67035
  atlassianUserHasExternalPositionInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasExternalPositionInverseConnection>;
66953
67036
  atlassianUserHasRelevantJiraSpace?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceConnection>;
66954
67037
  atlassianUserHasRelevantJiraSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseConnection>;
66955
- atlassianUserInvitedAtlassianUser?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserConnection>;
66956
- atlassianUserInvitedAtlassianUserInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseConnection>;
66957
67038
  atlassianUserInvitedToLoomMeeting?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection>;
66958
67039
  atlassianUserInvitedToLoomMeetingInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingInverseConnection>;
66959
67040
  atlassianUserIsInAtlassianTeam?: Maybe<GraphStoreV2SimplifiedAtlassianUserIsInAtlassianTeamConnection>;
@@ -68326,20 +68407,6 @@ export declare type GraphStoreV2AtlassianUserHasRelevantJiraSpaceInverseArgs = {
68326
68407
  id: Scalars['ID']['input'];
68327
68408
  sort?: InputMaybe<GraphStoreV2AtlassianUserHasRelevantJiraSpaceSortInput>;
68328
68409
  };
68329
- export declare type GraphStoreV2AtlassianUserInvitedAtlassianUserArgs = {
68330
- after?: InputMaybe<Scalars['String']['input']>;
68331
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
68332
- first?: InputMaybe<Scalars['Int']['input']>;
68333
- id: Scalars['ID']['input'];
68334
- sort?: InputMaybe<GraphStoreV2AtlassianUserInvitedAtlassianUserSortInput>;
68335
- };
68336
- export declare type GraphStoreV2AtlassianUserInvitedAtlassianUserInverseArgs = {
68337
- after?: InputMaybe<Scalars['String']['input']>;
68338
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
68339
- first?: InputMaybe<Scalars['Int']['input']>;
68340
- id: Scalars['ID']['input'];
68341
- sort?: InputMaybe<GraphStoreV2AtlassianUserInvitedAtlassianUserSortInput>;
68342
- };
68343
68410
  export declare type GraphStoreV2AtlassianUserInvitedToLoomMeetingArgs = {
68344
68411
  after?: InputMaybe<Scalars['String']['input']>;
68345
68412
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -72206,9 +72273,6 @@ export declare type GraphStoreV2AtlassianUserHasRelevantJiraSpaceSortInput = {
72206
72273
  lastModified?: InputMaybe<GraphStoreSortInput>;
72207
72274
  toAti?: InputMaybe<GraphStoreSortInput>;
72208
72275
  };
72209
- export declare type GraphStoreV2AtlassianUserInvitedAtlassianUserSortInput = {
72210
- lastModified?: InputMaybe<GraphStoreSortInput>;
72211
- };
72212
72276
  export declare type GraphStoreV2AtlassianUserInvitedToLoomMeetingSortInput = {
72213
72277
  lastModified?: InputMaybe<GraphStoreSortInput>;
72214
72278
  };
@@ -76940,34 +77004,6 @@ export declare type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInver
76940
77004
  };
76941
77005
  export declare type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
76942
77006
  export declare type GraphStoreV2SimplifiedAtlassianUserHasRelevantJiraSpaceUnion = JiraProject;
76943
- export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserConnection = HasPageInfo & {
76944
- __typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserConnection';
76945
- edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserEdge>>>;
76946
- pageInfo: PageInfo;
76947
- };
76948
- export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserEdge = {
76949
- __typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserEdge';
76950
- createdAt: Scalars['DateTime']['output'];
76951
- cursor?: Maybe<Scalars['String']['output']>;
76952
- id: Scalars['ID']['output'];
76953
- lastUpdated: Scalars['DateTime']['output'];
76954
- node?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserUnion>;
76955
- };
76956
- export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseConnection = HasPageInfo & {
76957
- __typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseConnection';
76958
- edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseEdge>>>;
76959
- pageInfo: PageInfo;
76960
- };
76961
- export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseEdge = {
76962
- __typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseEdge';
76963
- createdAt: Scalars['DateTime']['output'];
76964
- cursor?: Maybe<Scalars['String']['output']>;
76965
- id: Scalars['ID']['output'];
76966
- lastUpdated: Scalars['DateTime']['output'];
76967
- node?: Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseUnion>;
76968
- };
76969
- export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
76970
- export declare type GraphStoreV2SimplifiedAtlassianUserInvitedAtlassianUserUnion = AppUser | AtlassianAccountUser | CustomerUser;
76971
77007
  export declare type GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection = HasPageInfo & {
76972
77008
  __typename?: 'GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingConnection';
76973
77009
  edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserInvitedToLoomMeetingEdge>>>;
@@ -85673,6 +85709,7 @@ export declare type HelpCenterCreateInput = {
85673
85709
  homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
85674
85710
  name: HelpCenterNameInput;
85675
85711
  projectMapping?: InputMaybe<HelpCenterAddProjectMappingInput>;
85712
+ rovoConfig?: InputMaybe<HelpCenterRovoConfig>;
85676
85713
  slug: Scalars['String']['input'];
85677
85714
  workspaceARI: Scalars['String']['input'];
85678
85715
  };
@@ -86224,6 +86261,9 @@ export declare type HelpCenterReportingPerformanceIndicatorsWithMetaData = {
86224
86261
  refreshedAt?: Maybe<Scalars['DateTime']['output']>;
86225
86262
  };
86226
86263
  export declare type HelpCenterReportingResult = HelpCenterReporting | QueryError;
86264
+ export declare type HelpCenterRovoConfig = {
86265
+ agentId?: InputMaybe<Scalars['String']['input']>;
86266
+ };
86227
86267
  export declare enum HelpCenterSortMode {
86228
86268
  Manual = "MANUAL",
86229
86269
  Parent = "PARENT",
@@ -96813,6 +96853,7 @@ export declare type JiraIssueField = {
96813
96853
  export declare type JiraIssueFieldConfig = Node & {
96814
96854
  __typename?: 'JiraIssueFieldConfig';
96815
96855
  allowedFormatConfigs?: Maybe<Array<JiraAllowedFieldFormatConfig>>;
96856
+ areOptionsSupported?: Maybe<Scalars['Boolean']['output']>;
96816
96857
  associatedContexts?: Maybe<JiraContextConnection>;
96817
96858
  associatedContextsCount?: Maybe<Scalars['Int']['output']>;
96818
96859
  associatedContextsV2?: Maybe<JiraContextConnection>;
@@ -96820,6 +96861,7 @@ export declare type JiraIssueFieldConfig = Node & {
96820
96861
  associatedFieldConfigSchemesCount?: Maybe<Scalars['Int']['output']>;
96821
96862
  associatedFieldSchemes?: Maybe<JiraFieldSchemesConnection>;
96822
96863
  associatedFieldSchemesCount?: Maybe<Scalars['Int']['output']>;
96864
+ associatedOptionsCount?: Maybe<Scalars['Int']['output']>;
96823
96865
  associatedProjects?: Maybe<JiraProjectConnection>;
96824
96866
  associatedProjectsCount?: Maybe<Scalars['Int']['output']>;
96825
96867
  associatedProjectsV2?: Maybe<JiraProjectConnection>;
@@ -96848,6 +96890,7 @@ export declare type JiraIssueFieldConfig = Node & {
96848
96890
  isForge?: Maybe<Scalars['Boolean']['output']>;
96849
96891
  isGlobal?: Maybe<Scalars['Boolean']['output']>;
96850
96892
  isLocked?: Maybe<Scalars['Boolean']['output']>;
96893
+ isOptionsCountOverLimit?: Maybe<Scalars['Boolean']['output']>;
96851
96894
  isTrashed?: Maybe<Scalars['Boolean']['output']>;
96852
96895
  isUnscreenable?: Maybe<Scalars['Boolean']['output']>;
96853
96896
  jqlClauseNames?: Maybe<Array<Scalars['String']['output']>>;
@@ -97549,6 +97592,7 @@ export declare type JiraIssueSearchAggregationConfigSettings = {
97549
97592
  __typename?: 'JiraIssueSearchAggregationConfigSettings';
97550
97593
  aggregationFields?: Maybe<Array<JiraIssueSearchFieldAggregation>>;
97551
97594
  canEnableAggregation?: Maybe<Scalars['Boolean']['output']>;
97595
+ hasExceededAggregationLimit?: Maybe<Scalars['Boolean']['output']>;
97552
97596
  };
97553
97597
  export declare enum JiraIssueSearchAggregationFunction {
97554
97598
  Rollup = "ROLLUP"
@@ -98410,8 +98454,13 @@ export declare enum JiraJourneyConfigurationType {
98410
98454
  }
98411
98455
  export declare type JiraJourneyCustomizationSettings = {
98412
98456
  __typename?: 'JiraJourneyCustomizationSettings';
98457
+ agentId?: Maybe<Scalars['ID']['output']>;
98413
98458
  timeout?: Maybe<Scalars['Int']['output']>;
98414
98459
  };
98460
+ export declare type JiraJourneyCustomizationSettingsInput = {
98461
+ agentId: Scalars['ID']['input'];
98462
+ timeout: Scalars['Int']['input'];
98463
+ };
98415
98464
  export declare type JiraJourneyItem = JiraJourneyStatusDependency | JiraJourneyWorkItem;
98416
98465
  export declare type JiraJourneyItemCommon = {
98417
98466
  id: Scalars['ID']['output'];
@@ -103520,6 +103569,15 @@ export declare type JiraPublishJourneyConfigurationInput = {
103520
103569
  type?: InputMaybe<JiraJourneyConfigurationType>;
103521
103570
  version: Scalars['Long']['input'];
103522
103571
  };
103572
+ export declare type JiraPublishTimelineViewConfigInput = {
103573
+ settings?: InputMaybe<JiraTimelineViewSettings>;
103574
+ viewId: Scalars['ID']['input'];
103575
+ };
103576
+ export declare type JiraPublishTimelineViewConfigPayload = Payload & {
103577
+ __typename?: 'JiraPublishTimelineViewConfigPayload';
103578
+ errors?: Maybe<Array<MutationError>>;
103579
+ success: Scalars['Boolean']['output'];
103580
+ };
103523
103581
  export declare type JiraPullRequestReviewer = {
103524
103582
  __typename?: 'JiraPullRequestReviewer';
103525
103583
  avatar?: Maybe<JiraAvatar>;
@@ -109058,6 +109116,11 @@ export declare enum JiraTimelineViewRangeMode {
109058
109116
  Quarters = "QUARTERS",
109059
109117
  Weeks = "WEEKS"
109060
109118
  }
109119
+ export declare type JiraTimelineViewSettings = {
109120
+ hideDone?: InputMaybe<Scalars['Boolean']['input']>;
109121
+ jql?: InputMaybe<Scalars['String']['input']>;
109122
+ rangeMode?: InputMaybe<JiraTimelineViewRangeMode>;
109123
+ };
109061
109124
  export declare type JiraTimelineVirtualField = {
109062
109125
  issue?: Maybe<JiraIssue>;
109063
109126
  };
@@ -109544,6 +109607,7 @@ export declare type JiraUpdateJourneyConfigurationPayload = Payload & {
109544
109607
  success: Scalars['Boolean']['output'];
109545
109608
  };
109546
109609
  export declare type JiraUpdateJourneyCustomizationSettingsInput = {
109610
+ customizationSettings?: InputMaybe<JiraJourneyCustomizationSettingsInput>;
109547
109611
  etag: Scalars['String']['input'];
109548
109612
  journeyId: Scalars['ID']['input'];
109549
109613
  journeyVersion: Scalars['Long']['input'];
@@ -112431,6 +112495,12 @@ export declare type JsmConversationClaimConversationPayload = Payload & {
112431
112495
  errors?: Maybe<Array<MutationError>>;
112432
112496
  success: Scalars['Boolean']['output'];
112433
112497
  };
112498
+ export declare type JsmConversationClaimedConversationMessage = {
112499
+ __typename?: 'JsmConversationClaimedConversationMessage';
112500
+ author?: Maybe<Scalars['ID']['output']>;
112501
+ conversationId: Scalars['ID']['output'];
112502
+ plainTextContent?: Maybe<Scalars['String']['output']>;
112503
+ };
112434
112504
  export declare type JsmConversationCloseConversationInput = {
112435
112505
  channelId: Scalars['ID']['input'];
112436
112506
  cloudId: Scalars['ID']['input'];
@@ -112479,6 +112549,35 @@ export declare enum JsmConversationMessageSource {
112479
112549
  Helpseeker = "HELPSEEKER",
112480
112550
  System = "SYSTEM"
112481
112551
  }
112552
+ export declare type JsmConversationSettings = {
112553
+ __typename?: 'JsmConversationSettings';
112554
+ projectAri?: Maybe<Scalars['String']['output']>;
112555
+ slaList?: Maybe<Array<Maybe<JsmConversationSla>>>;
112556
+ teamId?: Maybe<Scalars['String']['output']>;
112557
+ };
112558
+ export declare type JsmConversationSettingsInput = {
112559
+ projectAri?: InputMaybe<Scalars['String']['input']>;
112560
+ slaList?: InputMaybe<Array<JsmConversationSlaInput>>;
112561
+ teamId?: InputMaybe<Scalars['String']['input']>;
112562
+ };
112563
+ export declare type JsmConversationSettingsPayload = Payload & {
112564
+ __typename?: 'JsmConversationSettingsPayload';
112565
+ errors?: Maybe<Array<MutationError>>;
112566
+ success: Scalars['Boolean']['output'];
112567
+ };
112568
+ export declare type JsmConversationSla = {
112569
+ __typename?: 'JsmConversationSla';
112570
+ slaDuration?: Maybe<Scalars['String']['output']>;
112571
+ slaType?: Maybe<JsmConversationSlaType>;
112572
+ };
112573
+ export declare type JsmConversationSlaInput = {
112574
+ slaDuration: Scalars['String']['input'];
112575
+ slaType: JsmConversationSlaType;
112576
+ };
112577
+ export declare enum JsmConversationSlaType {
112578
+ TimeToClaimConversation = "TIME_TO_CLAIM_CONVERSATION",
112579
+ TimeToReplyAfterHsMessage = "TIME_TO_REPLY_AFTER_HS_MESSAGE"
112580
+ }
112482
112581
  export declare enum JsmConversationStatus {
112483
112582
  Closed = "CLOSED",
112484
112583
  InProgress = "IN_PROGRESS",
@@ -112487,6 +112586,7 @@ export declare enum JsmConversationStatus {
112487
112586
  Timeout = "TIMEOUT",
112488
112587
  Unassigned = "UNASSIGNED"
112489
112588
  }
112589
+ export declare type JsmConversationUpdate = JsmConversation | JsmConversationClaimedConversationMessage | QueryError;
112490
112590
  export declare type JsonContentProperty = {
112491
112591
  __typename?: 'JsonContentProperty';
112492
112592
  content?: Maybe<Content>;
@@ -113473,9 +113573,12 @@ export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
113473
113573
  successCount?: Maybe<Scalars['Int']['output']>;
113474
113574
  };
113475
113575
  export declare enum KnowledgeDiscoveryDetectionType {
113576
+ Bookmark = "BOOKMARK",
113577
+ ContentNav = "CONTENT_NAV",
113476
113578
  EntityRecognition = "ENTITY_RECOGNITION",
113477
113579
  Heuristic = "HEURISTIC",
113478
113580
  Llm = "LLM",
113581
+ None = "NONE",
113479
113582
  Slm = "SLM"
113480
113583
  }
113481
113584
  export declare type KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput = {
@@ -113673,6 +113776,13 @@ export declare type KnowledgeDiscoveryNoneIntent = KnowledgeDiscoveryIntent & {
113673
113776
  subTypes: Array<KnowledgeDiscoveryQuerySubType>;
113674
113777
  transformedQuery: Scalars['String']['output'];
113675
113778
  };
113779
+ export declare type KnowledgeDiscoveryOrgChartIntent = KnowledgeDiscoveryIntent & {
113780
+ __typename?: 'KnowledgeDiscoveryOrgChartIntent';
113781
+ classification: KnowledgeDiscoveryQueryClassification;
113782
+ detectionType: KnowledgeDiscoveryDetectionType;
113783
+ subTypes: Array<KnowledgeDiscoveryQuerySubType>;
113784
+ transformedQuery: Scalars['String']['output'];
113785
+ };
113676
113786
  export declare type KnowledgeDiscoveryPageInfo = {
113677
113787
  __typename?: 'KnowledgeDiscoveryPageInfo';
113678
113788
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -113918,10 +114028,12 @@ export declare type KnowledgeDiscoveryScopeInput = {
113918
114028
  scope: KnowledgeDiscoveryDefinitionScope;
113919
114029
  };
113920
114030
  export declare enum KnowledgeDiscoverySearchQueryClassification {
114031
+ JiraNaturalLanguageQuery = "JIRA_NATURAL_LANGUAGE_QUERY",
113921
114032
  KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
113922
114033
  NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
113923
114034
  Navigational = "NAVIGATIONAL",
113924
114035
  None = "NONE",
114036
+ OrgChart = "ORG_CHART",
113925
114037
  Person = "PERSON",
113926
114038
  Team = "TEAM",
113927
114039
  Topic = "TOPIC"
@@ -114085,6 +114197,7 @@ export declare enum KnowledgeDiscoveryZeroQueryType {
114085
114197
  ConfluencePagesCreatedCollaborator = "CONFLUENCE_PAGES_CREATED_COLLABORATOR",
114086
114198
  ConfluencePagesCreatedCollaborator_7Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_7_DAYS",
114087
114199
  ConfluencePagesCreatedCollaborator_30Days = "CONFLUENCE_PAGES_CREATED_COLLABORATOR_30_DAYS",
114200
+ JiraAssignedCollaboratorInProject = "JIRA_ASSIGNED_COLLABORATOR_IN_PROJECT",
114088
114201
  JiraMyWorkItems = "JIRA_MY_WORK_ITEMS",
114089
114202
  JiraNlq = "JIRA_NLQ",
114090
114203
  JiraNlqCollaborator = "JIRA_NLQ_COLLABORATOR",
@@ -114409,6 +114522,7 @@ export declare type LogQueryInput = {
114409
114522
  appVersion?: InputMaybe<Scalars['String']['input']>;
114410
114523
  appVersions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
114411
114524
  container?: InputMaybe<Scalars['String']['input']>;
114525
+ containers?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
114412
114526
  contexts?: InputMaybe<Array<InputMaybe<Context>>>;
114413
114527
  dates?: InputMaybe<DateSearchInput>;
114414
114528
  editions?: InputMaybe<Array<InputMaybe<EditionValue>>>;
@@ -114416,6 +114530,7 @@ export declare type LogQueryInput = {
114416
114530
  functionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
114417
114531
  installationContexts?: InputMaybe<Array<Scalars['ID']['input']>>;
114418
114532
  instance?: InputMaybe<Scalars['String']['input']>;
114533
+ instances?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
114419
114534
  invocationId?: InputMaybe<Scalars['String']['input']>;
114420
114535
  licenseStates?: InputMaybe<Array<InputMaybe<LicenseValue>>>;
114421
114536
  lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
@@ -114423,6 +114538,7 @@ export declare type LogQueryInput = {
114423
114538
  msg?: InputMaybe<Scalars['String']['input']>;
114424
114539
  runtime?: InputMaybe<Scalars['String']['input']>;
114425
114540
  service?: InputMaybe<Scalars['String']['input']>;
114541
+ services?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
114426
114542
  traceId?: InputMaybe<Scalars['String']['input']>;
114427
114543
  };
114428
114544
  export declare type LookAndFeel = {
@@ -116196,6 +116312,7 @@ export declare type MarketplaceConsoleMutationApi = {
116196
116312
  updateMakerAccountAndMakerListing?: Maybe<MarketplaceConsoleMakerResponse>;
116197
116313
  updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
116198
116314
  updateProductListingApprovalStatus: MarketplaceConsoleUpdateProductListingApprovalStatusResponse;
116315
+ updateVersionListingApprovalStatus: MarketplaceConsoleUpdateVersionListingApprovalStatusResponse;
116199
116316
  upsertMakerPaymentDetails?: Maybe<MarketplaceConsoleMakerResponse>;
116200
116317
  upsertProgramEnrollment?: Maybe<MarketplaceConsoleMakerResponse>;
116201
116318
  validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
@@ -116273,6 +116390,9 @@ export declare type MarketplaceConsoleMutationApiUpdateMakerContactArgs = {
116273
116390
  export declare type MarketplaceConsoleMutationApiUpdateProductListingApprovalStatusArgs = {
116274
116391
  input: MarketplaceConsoleUpdateProductListingApprovalStatusInput;
116275
116392
  };
116393
+ export declare type MarketplaceConsoleMutationApiUpdateVersionListingApprovalStatusArgs = {
116394
+ input: MarketplaceConsoleUpdateVersionListingApprovalStatusInput;
116395
+ };
116276
116396
  export declare type MarketplaceConsoleMutationApiUpsertMakerPaymentDetailsArgs = {
116277
116397
  input: MarketplaceConsoleUpsertMakerPaymentInput;
116278
116398
  };
@@ -116668,6 +116788,7 @@ export declare type MarketplaceConsoleQueryApi = {
116668
116788
  productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
116669
116789
  productTags?: Maybe<MarketplaceConsoleProductTags>;
116670
116790
  validateForgeAGCApp?: Maybe<MarketplaceConsoleForgeAgcAppValidationResponse>;
116791
+ versionListingApprovalStatus: MarketplaceConsoleVersionListingApprovalStatusResponse;
116671
116792
  };
116672
116793
  export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
116673
116794
  appSoftwareId: Scalars['ID']['input'];
@@ -116760,6 +116881,10 @@ export declare type MarketplaceConsoleQueryApiProductMetadataByAppIdArgs = {
116760
116881
  export declare type MarketplaceConsoleQueryApiValidateForgeAgcAppArgs = {
116761
116882
  appId: Scalars['ID']['input'];
116762
116883
  };
116884
+ export declare type MarketplaceConsoleQueryApiVersionListingApprovalStatusArgs = {
116885
+ appSoftwareId: Scalars['ID']['input'];
116886
+ buildNumber: Scalars['String']['input'];
116887
+ };
116763
116888
  export declare type MarketplaceConsoleRemoteArtifactDetails = {
116764
116889
  __typename?: 'MarketplaceConsoleRemoteArtifactDetails';
116765
116890
  dataCenterStatus?: Maybe<Scalars['String']['output']>;
@@ -116879,6 +117004,17 @@ export declare type MarketplaceConsoleUpdateProductListingApprovalStatusSuccess
116879
117004
  __typename?: 'MarketplaceConsoleUpdateProductListingApprovalStatusSuccess';
116880
117005
  success: Scalars['Boolean']['output'];
116881
117006
  };
117007
+ export declare type MarketplaceConsoleUpdateVersionListingApprovalStatusInput = {
117008
+ appSoftwareId: Scalars['ID']['input'];
117009
+ buildNumber: Scalars['String']['input'];
117010
+ reason?: InputMaybe<Scalars['String']['input']>;
117011
+ status: MarketplaceConsoleVersionListingApprovalStatusUpdateAction;
117012
+ };
117013
+ export declare type MarketplaceConsoleUpdateVersionListingApprovalStatusResponse = MarketplaceConsoleUpdateVersionListingApprovalStatusSuccess | MarketplaceConsoleVersionListingApprovalStatusError;
117014
+ export declare type MarketplaceConsoleUpdateVersionListingApprovalStatusSuccess = {
117015
+ __typename?: 'MarketplaceConsoleUpdateVersionListingApprovalStatusSuccess';
117016
+ success: Scalars['Boolean']['output'];
117017
+ };
116882
117018
  export declare type MarketplaceConsoleUpsertMakerPaymentInput = {
116883
117019
  developerId: Scalars['ID']['input'];
116884
117020
  paymentDetails: MarketplaceConsoleMakerPaymentInput;
@@ -116908,6 +117044,41 @@ export declare type MarketplaceConsoleVendorLinks = {
116908
117044
  privacy?: Maybe<Scalars['String']['output']>;
116909
117045
  supportTicketSystem?: Maybe<Scalars['String']['output']>;
116910
117046
  };
117047
+ export declare enum MarketplaceConsoleVersionListingApprovalStatus {
117048
+ Approved = "APPROVED",
117049
+ Pending = "PENDING",
117050
+ Rejected = "REJECTED",
117051
+ Submitted = "SUBMITTED",
117052
+ Uninitiated = "UNINITIATED"
117053
+ }
117054
+ export declare type MarketplaceConsoleVersionListingApprovalStatusDetail = {
117055
+ __typename?: 'MarketplaceConsoleVersionListingApprovalStatusDetail';
117056
+ approvalStatus: MarketplaceConsoleVersionListingApprovalStatus;
117057
+ reason?: Maybe<Scalars['String']['output']>;
117058
+ };
117059
+ export declare type MarketplaceConsoleVersionListingApprovalStatusError = MarketplaceConsoleError & {
117060
+ __typename?: 'MarketplaceConsoleVersionListingApprovalStatusError';
117061
+ code: Scalars['String']['output'];
117062
+ message: Scalars['String']['output'];
117063
+ statusCode: Scalars['Int']['output'];
117064
+ };
117065
+ export declare type MarketplaceConsoleVersionListingApprovalStatusResponse = MarketplaceConsoleVersionListingApprovalStatusError | MarketplaceConsoleVersionListingApprovalStatusSuccess;
117066
+ export declare type MarketplaceConsoleVersionListingApprovalStatusSuccess = {
117067
+ __typename?: 'MarketplaceConsoleVersionListingApprovalStatusSuccess';
117068
+ currentTaskStatus: MarketplaceConsoleVersionListingCurrentTaskStatus;
117069
+ failureReason?: Maybe<Scalars['String']['output']>;
117070
+ versionListing: MarketplaceConsoleVersionListingApprovalStatusDetail;
117071
+ };
117072
+ export declare enum MarketplaceConsoleVersionListingApprovalStatusUpdateAction {
117073
+ Approved = "APPROVED",
117074
+ Rejected = "REJECTED",
117075
+ Resubmit = "RESUBMIT"
117076
+ }
117077
+ export declare enum MarketplaceConsoleVersionListingCurrentTaskStatus {
117078
+ Failed = "FAILED",
117079
+ Processing = "PROCESSING",
117080
+ Success = "SUCCESS"
117081
+ }
116911
117082
  export declare enum MarketplaceConsoleVersionType {
116912
117083
  Private = "PRIVATE",
116913
117084
  Public = "PUBLIC"
@@ -119197,6 +119368,15 @@ export declare enum MercuryEventType {
119197
119368
  Unlink = "UNLINK",
119198
119369
  Update = "UPDATE"
119199
119370
  }
119371
+ export declare type MercuryExternalOwner = MercuryExternalUser & {
119372
+ __typename?: 'MercuryExternalOwner';
119373
+ email?: Maybe<Scalars['String']['output']>;
119374
+ name?: Maybe<Scalars['String']['output']>;
119375
+ };
119376
+ export declare type MercuryExternalUser = {
119377
+ email?: Maybe<Scalars['String']['output']>;
119378
+ name?: Maybe<Scalars['String']['output']>;
119379
+ };
119200
119380
  export declare type MercuryFiscalCalendarConfiguration = Node & {
119201
119381
  __typename?: 'MercuryFiscalCalendarConfiguration';
119202
119382
  createdDate?: Maybe<Scalars['String']['output']>;
@@ -119452,6 +119632,11 @@ export declare type MercuryFocusAreaLinks = {
119452
119632
  __typename?: 'MercuryFocusAreaLinks';
119453
119633
  links: Array<MercuryFocusAreaLink>;
119454
119634
  };
119635
+ export declare type MercuryFocusAreaNode = {
119636
+ __typename?: 'MercuryFocusAreaNode';
119637
+ focusArea?: Maybe<MercuryFocusArea>;
119638
+ id: Scalars['ID']['output'];
119639
+ };
119455
119640
  export declare enum MercuryFocusAreaPermission {
119456
119641
  Archive = "ARCHIVE",
119457
119642
  CreateGoalLink = "CREATE_GOAL_LINK",
@@ -119662,11 +119847,13 @@ export declare type MercuryFundsAmountSummary = {
119662
119847
  };
119663
119848
  export declare type MercuryFundsMonthlySummary = {
119664
119849
  __typename?: 'MercuryFundsMonthlySummary';
119665
- amountSummary?: Maybe<MercuryFundsAmountSummary>;
119850
+ actualAmountSummary?: Maybe<MercuryFundsAmountSummary>;
119851
+ baselineAmountSummary?: Maybe<MercuryFundsAmountSummary>;
119852
+ budgetAmountSummary?: Maybe<MercuryFundsAmountSummary>;
119666
119853
  costSubtype?: Maybe<MercuryCostSubtype>;
119667
119854
  fiscalQuarter?: Maybe<Scalars['Int']['output']>;
119668
119855
  fiscalYear?: Maybe<Scalars['Int']['output']>;
119669
- fundsType?: Maybe<MercuryFundsType>;
119856
+ forecastAmountSummary?: Maybe<MercuryFundsAmountSummary>;
119670
119857
  investmentCategory?: Maybe<MercuryInvestmentCategory>;
119671
119858
  investmentCategorySet?: Maybe<MercuryInvestmentCategorySet>;
119672
119859
  monthStartDate?: Maybe<Scalars['String']['output']>;
@@ -119769,7 +119956,9 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs =
119769
119956
  sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
119770
119957
  };
119771
119958
  export declare type MercuryFundsQueryApiFocusAreaMonthlySummariesArgs = {
119959
+ endDateExclusive?: InputMaybe<Scalars['Date']['input']>;
119772
119960
  focusAreaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
119961
+ startDateInclusive?: InputMaybe<Scalars['Date']['input']>;
119773
119962
  };
119774
119963
  export declare type MercuryFundsQueryApiInvestmentCategoriesArgs = {
119775
119964
  ids: Array<Scalars['ID']['input']>;
@@ -120372,6 +120561,46 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
120372
120561
  countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
120373
120562
  totalCount?: Maybe<Scalars['Int']['output']>;
120374
120563
  };
120564
+ export declare type MercuryNormalizedWork = {
120565
+ __typename?: 'MercuryNormalizedWork';
120566
+ connectedFocusArea: Scalars['ID']['output'];
120567
+ externalOwner?: Maybe<MercuryExternalOwner>;
120568
+ id: Scalars['ID']['output'];
120569
+ key?: Maybe<Scalars['String']['output']>;
120570
+ name?: Maybe<Scalars['String']['output']>;
120571
+ owner?: Maybe<User>;
120572
+ sourceStatus?: Maybe<MercuryNormalizedWorkSourceStatus>;
120573
+ status?: Maybe<MercuryNormalizedWorkStatus>;
120574
+ targetDate?: Maybe<MercuryNormalizedWorkTargetDate>;
120575
+ type?: Maybe<Scalars['String']['output']>;
120576
+ };
120577
+ export declare type MercuryNormalizedWorkSourceStatus = {
120578
+ __typename?: 'MercuryNormalizedWorkSourceStatus';
120579
+ color?: Maybe<MercuryNormalizedWorkStatusColor>;
120580
+ name: Scalars['String']['output'];
120581
+ };
120582
+ export declare type MercuryNormalizedWorkStatus = {
120583
+ __typename?: 'MercuryNormalizedWorkStatus';
120584
+ color: MercuryNormalizedWorkStatusColor;
120585
+ name: Scalars['String']['output'];
120586
+ };
120587
+ export declare enum MercuryNormalizedWorkStatusColor {
120588
+ Blue = "BLUE",
120589
+ Gray = "GRAY",
120590
+ Green = "GREEN",
120591
+ Red = "RED",
120592
+ Yellow = "YELLOW"
120593
+ }
120594
+ export declare type MercuryNormalizedWorkTargetDate = {
120595
+ __typename?: 'MercuryNormalizedWorkTargetDate';
120596
+ targetDate?: Maybe<Scalars['String']['output']>;
120597
+ targetDateType?: Maybe<MercuryNormalizedWorkTargetDateType>;
120598
+ };
120599
+ export declare enum MercuryNormalizedWorkTargetDateType {
120600
+ Day = "DAY",
120601
+ Month = "MONTH",
120602
+ Quarter = "QUARTER"
120603
+ }
120375
120604
  export declare type MercuryNumberCustomField = MercuryCustomField & {
120376
120605
  __typename?: 'MercuryNumberCustomField';
120377
120606
  createdBy?: Maybe<User>;
@@ -122002,6 +122231,25 @@ export declare enum MercuryViewType {
122002
122231
  HierarchyView = "HIERARCHY_VIEW",
122003
122232
  RankingView = "RANKING_VIEW"
122004
122233
  }
122234
+ export declare type MercuryWorkNormalizationQueryApi = {
122235
+ __typename?: 'MercuryWorkNormalizationQueryApi';
122236
+ workNormalizationByFocusAreaId?: Maybe<MercuryWorkNormalizationSearchConnection>;
122237
+ };
122238
+ export declare type MercuryWorkNormalizationQueryApiWorkNormalizationByFocusAreaIdArgs = {
122239
+ focusAreaId: Scalars['ID']['input'];
122240
+ };
122241
+ export declare type MercuryWorkNormalizationSearchConnection = {
122242
+ __typename?: 'MercuryWorkNormalizationSearchConnection';
122243
+ edges?: Maybe<Array<Maybe<MercuryWorkNormalizationSearchEdge>>>;
122244
+ pageInfo: PageInfo;
122245
+ totalCount?: Maybe<Scalars['Int']['output']>;
122246
+ };
122247
+ export declare type MercuryWorkNormalizationSearchEdge = {
122248
+ __typename?: 'MercuryWorkNormalizationSearchEdge';
122249
+ cursor: Scalars['String']['output'];
122250
+ node?: Maybe<MercuryWorkNormalizationSearchResult>;
122251
+ };
122252
+ export declare type MercuryWorkNormalizationSearchResult = MercuryFocusAreaNode | MercuryNormalizedWork;
122005
122253
  export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
122006
122254
  export declare type MercuryWorkSuggestionsSearchItem = {
122007
122255
  __typename?: 'MercuryWorkSuggestionsSearchItem';
@@ -122303,6 +122551,7 @@ export declare type Mutation = {
122303
122551
  agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
122304
122552
  agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
122305
122553
  agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
122554
+ agentStudio_updateAgentVerification?: Maybe<AgentStudioUpdateAgentVerificationPayload>;
122306
122555
  agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
122307
122556
  agentStudio_updateCreatePermissionMode?: Maybe<AgentStudioUpdateCreatePermissionModePayload>;
122308
122557
  agentStudio_updateScenario?: Maybe<AgentStudioUpdateScenarioPayload>;
@@ -122372,12 +122621,14 @@ export declare type Mutation = {
122372
122621
  avp_addDashboardElement?: Maybe<AvpAddDashboardElementPayload>;
122373
122622
  avp_addDashboardRow?: Maybe<AvpAddDashboardRowPayload>;
122374
122623
  avp_clearChartsInRow?: Maybe<AvpClearChartInRowPayload>;
122624
+ avp_cloneChart?: Maybe<AvpCloneChartPayload>;
122375
122625
  avp_copyChart?: Maybe<AvpCopyChartPayload>;
122376
122626
  avp_copyDashboardRow?: Maybe<AvpCopyDashboardRowPayload>;
122377
122627
  avp_createChart?: Maybe<AvpCreateChartPayload>;
122378
122628
  avp_createDashboard?: Maybe<AvpCreateDashboardPayload>;
122379
122629
  avp_createDashboardFilter?: Maybe<AvpCreateDashboardFilterPayload>;
122380
122630
  avp_createDashboardFromTemplate?: Maybe<AvpCreateDashboardPayload>;
122631
+ avp_createStandaloneChart?: Maybe<AvpCreateStandaloneChartPayload>;
122381
122632
  avp_createVariable?: Maybe<AvpCreateVariablePayload>;
122382
122633
  avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
122383
122634
  avp_deleteDashboardFilter?: Maybe<AvpDeleteDashboardFilterPayload>;
@@ -122822,6 +123073,7 @@ export declare type Mutation = {
122822
123073
  jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
122823
123074
  jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
122824
123075
  jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
123076
+ jira_publishTimelineViewConfig?: Maybe<JiraPublishTimelineViewConfigPayload>;
122825
123077
  jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
122826
123078
  jira_removeTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
122827
123079
  jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
@@ -122893,6 +123145,7 @@ export declare type Mutation = {
122893
123145
  jsmChat?: Maybe<JsmChatMutation>;
122894
123146
  jsmConversation_claimConversation?: Maybe<JsmConversationClaimConversationPayload>;
122895
123147
  jsmConversation_closeConversation?: Maybe<JsmConversationCloseConversationPayload>;
123148
+ jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
122896
123149
  jsw?: Maybe<JswMutation>;
122897
123150
  kitsune_createFeedback?: Maybe<KitsuneFeedback>;
122898
123151
  kitsune_createSpace?: Maybe<KitsuneSpace>;
@@ -123139,6 +123392,7 @@ export declare type Mutation = {
123139
123392
  stakeholderComms_createSubscriber?: Maybe<StakeholderCommsSubscriberResponse>;
123140
123393
  stakeholderComms_deleteDraftPage?: Maybe<StakeholderCommsPageDeleteResponse>;
123141
123394
  stakeholderComms_deletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
123395
+ stakeholderComms_deletePagePermanently?: Maybe<StakeholderCommsPageDeleteResponse>;
123142
123396
  stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
123143
123397
  stakeholderComms_deleteSubscribers?: Maybe<Scalars['Boolean']['output']>;
123144
123398
  stakeholderComms_getPreSignedUrl?: Maybe<StakeholderCommsPreSignedUrlResponse>;
@@ -123152,7 +123406,6 @@ export declare type Mutation = {
123152
123406
  stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
123153
123407
  stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
123154
123408
  stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
123155
- stakeholderComms_restorePage?: Maybe<StakeholderCommsPageResponse>;
123156
123409
  stakeholderComms_softDeletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
123157
123410
  stakeholderComms_unpublishPage?: Maybe<StakeholderCommsPageResponse>;
123158
123411
  stakeholderComms_unsubscribeSubscriber?: Maybe<StakeholderCommsUnsubscribeSubscriberResponse>;
@@ -123439,6 +123692,10 @@ export declare type MutationAgentStudio_UpdateAgentKnowledgeSourcesArgs = {
123439
123692
  id: Scalars['ID']['input'];
123440
123693
  input: AgentStudioKnowledgeConfigurationInput;
123441
123694
  };
123695
+ export declare type MutationAgentStudio_UpdateAgentVerificationArgs = {
123696
+ id: Scalars['ID']['input'];
123697
+ verified: Scalars['Boolean']['input'];
123698
+ };
123442
123699
  export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
123443
123700
  id: Scalars['ID']['input'];
123444
123701
  input: AgentStudioUpdateConversationStartersInput;
@@ -123754,6 +124011,9 @@ export declare type MutationAvp_AddDashboardRowArgs = {
123754
124011
  export declare type MutationAvp_ClearChartsInRowArgs = {
123755
124012
  input: AvpClearChartsInRowInput;
123756
124013
  };
124014
+ export declare type MutationAvp_CloneChartArgs = {
124015
+ input: AvpCloneChartInput;
124016
+ };
123757
124017
  export declare type MutationAvp_CopyChartArgs = {
123758
124018
  input: AvpCopyChartInput;
123759
124019
  };
@@ -123772,6 +124032,9 @@ export declare type MutationAvp_CreateDashboardFilterArgs = {
123772
124032
  export declare type MutationAvp_CreateDashboardFromTemplateArgs = {
123773
124033
  input: AvpCreateDashboardFromTemplateInput;
123774
124034
  };
124035
+ export declare type MutationAvp_CreateStandaloneChartArgs = {
124036
+ input: AvpCreateStandaloneChartInput;
124037
+ };
123775
124038
  export declare type MutationAvp_CreateVariableArgs = {
123776
124039
  input: AvpCreateVariableInput;
123777
124040
  };
@@ -125289,6 +125552,9 @@ export declare type MutationJira_PublishBoardViewConfigArgs = {
125289
125552
  export declare type MutationJira_PublishIssueSearchConfigArgs = {
125290
125553
  input: JiraPublishIssueSearchConfigInput;
125291
125554
  };
125555
+ export declare type MutationJira_PublishTimelineViewConfigArgs = {
125556
+ input: JiraPublishTimelineViewConfigInput;
125557
+ };
125292
125558
  export declare type MutationJira_RemoveFieldsFromFieldSchemeArgs = {
125293
125559
  cloudId: Scalars['ID']['input'];
125294
125560
  input: JiraRemoveFieldsFromFieldSchemeInput;
@@ -125521,6 +125787,9 @@ export declare type MutationJsmConversation_ClaimConversationArgs = {
125521
125787
  export declare type MutationJsmConversation_CloseConversationArgs = {
125522
125788
  input: JsmConversationCloseConversationInput;
125523
125789
  };
125790
+ export declare type MutationJsmConversation_UpdateSettingsArgs = {
125791
+ input: JsmConversationSettingsInput;
125792
+ };
125524
125793
  export declare type MutationKitsune_CreateFeedbackArgs = {
125525
125794
  content: Scalars['KitsuneADF']['input'];
125526
125795
  source?: InputMaybe<KitsuneSourceInput>;
@@ -126278,6 +126547,9 @@ export declare type MutationStakeholderComms_DeleteDraftPageArgs = {
126278
126547
  export declare type MutationStakeholderComms_DeletePageArgs = {
126279
126548
  pageId: Scalars['String']['input'];
126280
126549
  };
126550
+ export declare type MutationStakeholderComms_DeletePagePermanentlyArgs = {
126551
+ pageId: Scalars['String']['input'];
126552
+ };
126281
126553
  export declare type MutationStakeholderComms_DeleteStakeholderArgs = {
126282
126554
  id: Scalars['String']['input'];
126283
126555
  };
@@ -126319,9 +126591,6 @@ export declare type MutationStakeholderComms_RemoveStakeholderMembersArgs = {
126319
126591
  export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
126320
126592
  resendInviteInput: StakeholderCommsResendInviteInput;
126321
126593
  };
126322
- export declare type MutationStakeholderComms_RestorePageArgs = {
126323
- pageId: Scalars['String']['input'];
126324
- };
126325
126594
  export declare type MutationStakeholderComms_SoftDeletePageArgs = {
126326
126595
  deletedBy: Scalars['String']['input'];
126327
126596
  pageId: Scalars['String']['input'];
@@ -129560,6 +129829,7 @@ export declare type Query = {
129560
129829
  agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
129561
129830
  agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
129562
129831
  agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
129832
+ agentWorkspace_helloWorld?: Maybe<AgentWorkspaceHelloWorld>;
129563
129833
  aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
129564
129834
  aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
129565
129835
  aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
@@ -129653,6 +129923,7 @@ export declare type Query = {
129653
129923
  atlasProjectsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
129654
129924
  atlassianStudio_userSiteContext?: Maybe<AtlassianStudioUserSiteContextResult>;
129655
129925
  availableContentStates?: Maybe<AvailableContentStates>;
129926
+ avpPermissions_getDashboardIdentityAccess?: Maybe<AvpPermissionsDashboardIdentityAccess>;
129656
129927
  avpPermissions_hello?: Maybe<AvpPermissionsHelloResponse>;
129657
129928
  avp_getChart?: Maybe<AvpChart>;
129658
129929
  avp_getChartTemplates?: Maybe<Array<AvpChartTemplate>>;
@@ -130152,6 +130423,7 @@ export declare type Query = {
130152
130423
  jsmChat?: Maybe<JsmChatQuery>;
130153
130424
  jsmConversation_conversations?: Maybe<JsmConversationConnection>;
130154
130425
  jsmConversation_messages?: Maybe<JsmConversationMessageConnection>;
130426
+ jsmConversation_settings?: Maybe<JsmConversationSettings>;
130155
130427
  jsw?: Maybe<JswQuery>;
130156
130428
  kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
130157
130429
  kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
@@ -130219,6 +130491,7 @@ export declare type Query = {
130219
130491
  mercury_insights?: Maybe<MercuryInsightsQueryApi>;
130220
130492
  mercury_jiraAlignProvider?: Maybe<MercuryJiraAlignProviderQueryApi>;
130221
130493
  mercury_jiraProvider?: Maybe<MercuryJiraProviderQueryApi>;
130494
+ mercury_normalizedWork?: Maybe<MercuryWorkNormalizationQueryApi>;
130222
130495
  mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationQueryApi>;
130223
130496
  mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
130224
130497
  migration: MigrationQuery;
@@ -130288,6 +130561,7 @@ export declare type Query = {
130288
130561
  projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
130289
130562
  projects_byId?: Maybe<TownsquareProject>;
130290
130563
  projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
130564
+ projects_byKey?: Maybe<TownsquareProject>;
130291
130565
  projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
130292
130566
  projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
130293
130567
  projects_search?: Maybe<TownsquareProjectConnection>;
@@ -130414,6 +130688,7 @@ export declare type Query = {
130414
130688
  stakeholderComms_getPageSummaryDetails?: Maybe<StakeholderCommsPageSummaryDetailsResponse>;
130415
130689
  stakeholderComms_getPageUptimePercentage?: Maybe<StakeholderCommsPageUptimePercentageResponse>;
130416
130690
  stakeholderComms_getPagesSummaryByCloudId?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
130691
+ stakeholderComms_getPagesSummaryByCloudIdV2?: Maybe<StakeholderCommsPagesSummaryByCloudIdResponse>;
130417
130692
  stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
130418
130693
  stakeholderComms_getStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
130419
130694
  stakeholderComms_getStakeholderGroupByMembership?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroup>>>;
@@ -130772,6 +131047,7 @@ export declare type QueryAgentStudio_BatchEvalConversationListByContainerIdArgs
130772
131047
  experienceId: Scalars['String']['input'];
130773
131048
  filter?: InputMaybe<AgentStudioBatchEvalConversationFilterInput>;
130774
131049
  first?: InputMaybe<Scalars['Int']['input']>;
131050
+ productType?: InputMaybe<AgentStudioProductType>;
130775
131051
  };
130776
131052
  export declare type QueryAgentStudio_BatchEvaluationJobArgs = {
130777
131053
  cloudId: Scalars['String']['input'];
@@ -130956,6 +131232,9 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
130956
131232
  cloudId: Scalars['String']['input'];
130957
131233
  containerAri: Scalars['ID']['input'];
130958
131234
  };
131235
+ export declare type QueryAgentWorkspace_HelloWorldArgs = {
131236
+ userName: Scalars['String']['input'];
131237
+ };
130959
131238
  export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
130960
131239
  projectAri: Scalars['ID']['input'];
130961
131240
  };
@@ -131449,6 +131728,9 @@ export declare type QueryAtlassianStudio_UserSiteContextArgs = {
131449
131728
  export declare type QueryAvailableContentStatesArgs = {
131450
131729
  contentId: Scalars['ID']['input'];
131451
131730
  };
131731
+ export declare type QueryAvpPermissions_GetDashboardIdentityAccessArgs = {
131732
+ input: AvpPermissionsGetDashboardIdentityAccessInput;
131733
+ };
131452
131734
  export declare type QueryAvpPermissions_HelloArgs = {
131453
131735
  cloudId: Scalars['ID']['input'];
131454
131736
  integrationId: Scalars['String']['input'];
@@ -133574,6 +133856,9 @@ export declare type QueryJsmConversation_MessagesArgs = {
133574
133856
  conversationAri: Scalars['ID']['input'];
133575
133857
  first?: InputMaybe<Scalars['Int']['input']>;
133576
133858
  };
133859
+ export declare type QueryJsmConversation_SettingsArgs = {
133860
+ projectAri: Scalars['String']['input'];
133861
+ };
133577
133862
  export declare type QueryKitsune_FeedbackEventArgs = {
133578
133863
  id: Scalars['ID']['input'];
133579
133864
  spaceAri: Scalars['ID']['input'];
@@ -133999,6 +134284,10 @@ export declare type QueryProjects_ByIdArgs = {
133999
134284
  export declare type QueryProjects_ByIdsArgs = {
134000
134285
  projectIds: Array<Scalars['String']['input']>;
134001
134286
  };
134287
+ export declare type QueryProjects_ByKeyArgs = {
134288
+ containerId: Scalars['ID']['input'];
134289
+ projectKey: Scalars['String']['input'];
134290
+ };
134002
134291
  export declare type QueryProjects_CanCreateProjectFusionArgs = {
134003
134292
  input: TownsquareProjectsCanCreateProjectFusionInput;
134004
134293
  };
@@ -134138,6 +134427,7 @@ export declare type QueryRadar_ViewsSearchArgs = {
134138
134427
  cloudId: Scalars['ID']['input'];
134139
134428
  first?: InputMaybe<Scalars['Int']['input']>;
134140
134429
  last?: InputMaybe<Scalars['Int']['input']>;
134430
+ query?: InputMaybe<Scalars['String']['input']>;
134141
134431
  };
134142
134432
  export declare type QueryRadar_WorkerByAriArgs = {
134143
134433
  id: Scalars['ID']['input'];
@@ -134515,6 +134805,10 @@ export declare type QueryStakeholderComms_GetPagesSummaryByCloudIdArgs = {
134515
134805
  cloudId: Scalars['String']['input'];
134516
134806
  filter?: InputMaybe<StakeholderCommsPageStatusFilter>;
134517
134807
  };
134808
+ export declare type QueryStakeholderComms_GetPagesSummaryByCloudIdV2Args = {
134809
+ cloudId: Scalars['String']['input'];
134810
+ filter?: InputMaybe<StakeholderCommsPageStatusFilter>;
134811
+ };
134518
134812
  export declare type QueryStakeholderComms_GetStakeholderArgs = {
134519
134813
  stakeholderIdInput: StakeholderCommsStakeholderIdInput;
134520
134814
  };
@@ -135152,6 +135446,7 @@ export declare enum RadarFieldType {
135152
135446
  Ari = "ARI",
135153
135447
  Boolean = "BOOLEAN",
135154
135448
  Date = "DATE",
135449
+ Group = "GROUP",
135155
135450
  Keyword = "KEYWORD",
135156
135451
  Money = "MONEY",
135157
135452
  Number = "NUMBER",
@@ -135159,7 +135454,7 @@ export declare enum RadarFieldType {
135159
135454
  String = "STRING",
135160
135455
  Url = "URL"
135161
135456
  }
135162
- export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
135457
+ export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarGroupFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
135163
135458
  export declare type RadarFieldValueIdPair = {
135164
135459
  __typename?: 'RadarFieldValueIdPair';
135165
135460
  fieldId: Scalars['ID']['output'];
@@ -135185,6 +135480,7 @@ export declare type RadarFields = {
135185
135480
  proposalFields: Array<RadarFieldDefinition>;
135186
135481
  proposedMovementFields: Array<RadarFieldDefinition>;
135187
135482
  teamFields: Array<RadarFieldDefinition>;
135483
+ viewFields: Array<RadarFieldDefinition>;
135188
135484
  workerFields: Array<RadarFieldDefinition>;
135189
135485
  };
135190
135486
  export declare enum RadarFilterInputType {
@@ -135230,6 +135526,11 @@ export declare enum RadarFunctionId {
135230
135526
  Currentuser = "CURRENTUSER",
135231
135527
  Under = "UNDER"
135232
135528
  }
135529
+ export declare type RadarGroupFieldValue = {
135530
+ __typename?: 'RadarGroupFieldValue';
135531
+ isRestricted?: Maybe<Scalars['Boolean']['output']>;
135532
+ value?: Maybe<Array<RadarGroupObject>>;
135533
+ };
135233
135534
  export declare type RadarGroupMetrics = {
135234
135535
  __typename?: 'RadarGroupMetrics';
135235
135536
  count: Scalars['Int']['output'];
@@ -135256,6 +135557,7 @@ export declare type RadarGroupMetricsEdge = RadarEdge & {
135256
135557
  cursor: Scalars['String']['output'];
135257
135558
  node: RadarGroupMetrics;
135258
135559
  };
135560
+ export declare type RadarGroupObject = RadarWorkAllocationUnit;
135259
135561
  export declare type RadarGroupPrincipal = {
135260
135562
  __typename?: 'RadarGroupPrincipal';
135261
135563
  id: Scalars['ID']['output'];
@@ -137021,6 +137323,8 @@ export declare enum Scope {
137021
137323
  DeleteServicedeskCustomer = "DELETE_SERVICEDESK_CUSTOMER",
137022
137324
  DeleteServicedeskOrganization = "DELETE_SERVICEDESK_ORGANIZATION",
137023
137325
  DeleteServicedeskProperty = "DELETE_SERVICEDESK_PROPERTY",
137326
+ DeployAppEnvironment = "DEPLOY_APP_ENVIRONMENT",
137327
+ DevelopAppEnvironment = "DEVELOP_APP_ENVIRONMENT",
137024
137328
  FieldConfigurationDelete = "FIELD_CONFIGURATION_DELETE",
137025
137329
  FieldConfigurationRead = "FIELD_CONFIGURATION_READ",
137026
137330
  FieldConfigurationSchemeDelete = "FIELD_CONFIGURATION_SCHEME_DELETE",
@@ -137110,6 +137414,7 @@ export declare enum Scope {
137110
137414
  LabelRead = "LABEL_READ",
137111
137415
  LicenseRead = "LICENSE_READ",
137112
137416
  ManageApp = "MANAGE_APP",
137417
+ ManageAppInstallation = "MANAGE_APP_INSTALLATION",
137113
137418
  ManageDirectory = "MANAGE_DIRECTORY",
137114
137419
  ManageJiraConfiguration = "MANAGE_JIRA_CONFIGURATION",
137115
137420
  ManageJiraDataProvider = "MANAGE_JIRA_DATA_PROVIDER",
@@ -137157,6 +137462,10 @@ export declare enum Scope {
137157
137462
  PullRequest = "PULL_REQUEST",
137158
137463
  PullRequestWrite = "PULL_REQUEST_WRITE",
137159
137464
  ReadAccount = "READ_ACCOUNT",
137465
+ ReadAppDetails = "READ_APP_DETAILS",
137466
+ ReadAppEnvironment = "READ_APP_ENVIRONMENT",
137467
+ ReadAppInstallation = "READ_APP_INSTALLATION",
137468
+ ReadAppLogs = "READ_APP_LOGS",
137160
137469
  ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
137161
137470
  ReadCompassAttentionItem = "READ_COMPASS_ATTENTION_ITEM",
137162
137471
  ReadCompassComponent = "READ_COMPASS_COMPONENT",
@@ -137276,6 +137585,7 @@ export declare enum Scope {
137276
137585
  WorkflowSchemeRead = "WORKFLOW_SCHEME_READ",
137277
137586
  WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
137278
137587
  WorkflowWrite = "WORKFLOW_WRITE",
137588
+ WriteAppDetails = "WRITE_APP_DETAILS",
137279
137589
  WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
137280
137590
  WriteCompassEvent = "WRITE_COMPASS_EVENT",
137281
137591
  WriteCompassMetric = "WRITE_COMPASS_METRIC",
@@ -137621,6 +137931,25 @@ export declare type SearchGraphQlConfigurationResponse = {
137621
137931
  siteMetadata: SearchConfigurationSiteMetadata;
137622
137932
  thirdPartyProducts: Array<SearchThirdPartyMetadata>;
137623
137933
  };
137934
+ export declare type SearchInput = {
137935
+ after?: InputMaybe<Scalars['String']['input']>;
137936
+ analytics?: InputMaybe<SearchAnalyticsInput>;
137937
+ before?: InputMaybe<Scalars['String']['input']>;
137938
+ disableQueryReplacement?: InputMaybe<Scalars['Boolean']['input']>;
137939
+ disableWildcardMatching?: InputMaybe<Scalars['Boolean']['input']>;
137940
+ enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
137941
+ enableRelevanceDebugging?: InputMaybe<Scalars['Boolean']['input']>;
137942
+ experience: Scalars['String']['input'];
137943
+ experimentContext?: InputMaybe<SearchExperimentContextInput>;
137944
+ fanoutExperimentCohort?: InputMaybe<Scalars['String']['input']>;
137945
+ filters: SearchFilterInput;
137946
+ first?: InputMaybe<Scalars['Int']['input']>;
137947
+ includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
137948
+ interleaveResults?: InputMaybe<Scalars['Boolean']['input']>;
137949
+ last?: InputMaybe<Scalars['Int']['input']>;
137950
+ query?: InputMaybe<Scalars['String']['input']>;
137951
+ sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
137952
+ };
137624
137953
  export declare type SearchInterleaverScrapingResult = {
137625
137954
  __typename?: 'SearchInterleaverScrapingResult';
137626
137955
  rerankerRequestInJSON: Scalars['String']['output'];
@@ -137751,10 +138080,14 @@ export declare enum SearchProjectType {
137751
138080
  }
137752
138081
  export declare type SearchQueryApi = {
137753
138082
  __typename?: 'SearchQueryAPI';
138083
+ asyncSearch?: Maybe<SearchItemConnection>;
137754
138084
  configuration?: Maybe<SearchGraphQlConfigurationResponse>;
137755
138085
  recent?: Maybe<Array<SearchResult>>;
137756
138086
  search?: Maybe<SearchItemConnection>;
137757
138087
  };
138088
+ export declare type SearchQueryApiAsyncSearchArgs = {
138089
+ input: SearchInput;
138090
+ };
137758
138091
  export declare type SearchQueryApiConfigurationArgs = {
137759
138092
  cloudId: Scalars['ID']['input'];
137760
138093
  };
@@ -160199,6 +160532,7 @@ export declare type StakeholderCommsPageSummary = {
160199
160532
  name?: Maybe<Scalars['String']['output']>;
160200
160533
  pageType?: Maybe<StakeholderCommsPageType>;
160201
160534
  stakeholderCount?: Maybe<Scalars['Int']['output']>;
160535
+ status?: Maybe<StakeholderCommsPageStatus>;
160202
160536
  };
160203
160537
  export declare type StakeholderCommsPageSummaryDetails = {
160204
160538
  __typename?: 'StakeholderCommsPageSummaryDetails';
@@ -160357,9 +160691,11 @@ export declare type StakeholderCommsSimplifiedStakeholder = {
160357
160691
  type?: Maybe<Scalars['String']['output']>;
160358
160692
  };
160359
160693
  export declare enum StakeholderCommsSslStatus {
160694
+ Deprovisioning = "DEPROVISIONING",
160360
160695
  Expired = "EXPIRED",
160361
160696
  Failed = "FAILED",
160362
160697
  Issued = "ISSUED",
160698
+ NotConfigured = "NOT_CONFIGURED",
160363
160699
  Pending = "PENDING"
160364
160700
  }
160365
160701
  export declare type StakeholderCommsStakeholder = {
@@ -160611,7 +160947,8 @@ export declare enum StakeholderCommsSubscriberStatus {
160611
160947
  Quarantined = "QUARANTINED",
160612
160948
  Subscribed = "SUBSCRIBED",
160613
160949
  Suspended = "SUSPENDED",
160614
- Unsubscribed = "UNSUBSCRIBED"
160950
+ Unsubscribed = "UNSUBSCRIBED",
160951
+ Unverified = "UNVERIFIED"
160615
160952
  }
160616
160953
  export declare enum StakeholderCommsSubscriptionChannel {
160617
160954
  Email = "EMAIL",
@@ -160876,6 +161213,7 @@ export declare type Subscription = {
160876
161213
  bitbucket?: Maybe<BitbucketSubscription>;
160877
161214
  blockService_onBlockUpdated?: Maybe<BlockServiceBlockPayload>;
160878
161215
  confluence_onContentModified?: Maybe<ConfluenceContentModified>;
161216
+ convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
160879
161217
  convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
160880
161218
  devOps?: Maybe<AriGraphSubscriptions>;
160881
161219
  devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
@@ -160896,7 +161234,8 @@ export declare type Subscription = {
160896
161234
  jsmChannels_getResolutionPlanGraphUpdate: JsmChannelsResolutionPlanGraphResult;
160897
161235
  jsmChannels_onServiceAgentResolutionStateByTicketIdUpdate: JsmChannelsTicketServiceAgentResolutionStateResult;
160898
161236
  jsmChat?: Maybe<JsmChatSubscription>;
160899
- jsmConversation_dummy?: Maybe<Scalars['String']['output']>;
161237
+ jsmConversation_updatesByProject?: Maybe<JsmConversationUpdate>;
161238
+ jsmConversation_updatesByUser?: Maybe<JsmConversationUpdate>;
160900
161239
  kitsune_onFeedbackCreated?: Maybe<KitsuneFeedbackEvent>;
160901
161240
  liveChat_updates?: Maybe<LiveChatUpdate>;
160902
161241
  mercury?: Maybe<MercurySubscriptionApi>;
@@ -160914,6 +161253,11 @@ export declare type SubscriptionBlockService_OnBlockUpdatedArgs = {
160914
161253
  export declare type SubscriptionConfluence_OnContentModifiedArgs = {
160915
161254
  id: Scalars['ID']['input'];
160916
161255
  };
161256
+ export declare type SubscriptionConvoai_OnAgentSessionCreateArgs = {
161257
+ accountId: Scalars['String']['input'];
161258
+ cloudId: Scalars['ID']['input'];
161259
+ issueId: Scalars['String']['input'];
161260
+ };
160917
161261
  export declare type SubscriptionConvoai_OnAgentSessionUpdateArgs = {
160918
161262
  cloudId: Scalars['ID']['input'];
160919
161263
  conversationId: Scalars['ID']['input'];
@@ -160969,6 +161313,12 @@ export declare type SubscriptionJsmChannels_OnServiceAgentResolutionStateByTicke
160969
161313
  jiraProjectAri: Scalars['ID']['input'];
160970
161314
  workItemId: Scalars['ID']['input'];
160971
161315
  };
161316
+ export declare type SubscriptionJsmConversation_UpdatesByProjectArgs = {
161317
+ projectAri: Scalars['ID']['input'];
161318
+ };
161319
+ export declare type SubscriptionJsmConversation_UpdatesByUserArgs = {
161320
+ projectAri: Scalars['ID']['input'];
161321
+ };
160972
161322
  export declare type SubscriptionKitsune_OnFeedbackCreatedArgs = {
160973
161323
  spaceAri: Scalars['ID']['input'];
160974
161324
  };
@@ -161039,6 +161389,7 @@ export declare type SupportRequest = {
161039
161389
  destinationLicense?: Maybe<Scalars['String']['output']>;
161040
161390
  experienceFields?: Maybe<Array<SupportRequestField>>;
161041
161391
  fields: Array<SupportRequestField>;
161392
+ hipaaStatus?: Maybe<Scalars['Boolean']['output']>;
161042
161393
  id: Scalars['ID']['output'];
161043
161394
  lastComment: SupportRequestComments;
161044
161395
  migrationPhase?: Maybe<Scalars['String']['output']>;
@@ -161105,6 +161456,7 @@ export declare type SupportRequestAddCommentInput = {
161105
161456
  message: Scalars['String']['input'];
161106
161457
  };
161107
161458
  export declare type SupportRequestAdditionalTicketData = {
161459
+ chatTranscript?: InputMaybe<Scalars['String']['input']>;
161108
161460
  operationType?: InputMaybe<Scalars['String']['input']>;
161109
161461
  parentIssueIdOrKey?: InputMaybe<Scalars['String']['input']>;
161110
161462
  };
@@ -161557,6 +161909,13 @@ export declare type TeamChildrenEdge = {
161557
161909
  cursor: Scalars['String']['output'];
161558
161910
  node?: Maybe<TeamV2>;
161559
161911
  };
161912
+ export declare type TeamCreateCustomFieldPayload = {
161913
+ cardinality: TeamCustomFieldCardinality;
161914
+ description?: InputMaybe<Scalars['String']['input']>;
161915
+ name: Scalars['String']['input'];
161916
+ options?: InputMaybe<Array<Scalars['String']['input']>>;
161917
+ type: TeamCustomFieldType;
161918
+ };
161560
161919
  export declare type TeamCreatePayload = Payload & {
161561
161920
  __typename?: 'TeamCreatePayload';
161562
161921
  errors?: Maybe<Array<MutationError>>;
@@ -161571,6 +161930,26 @@ export declare type TeamCreateTeamInput = {
161571
161930
  scopeId: Scalars['ID']['input'];
161572
161931
  typeId?: InputMaybe<Scalars['ID']['input']>;
161573
161932
  };
161933
+ export declare enum TeamCustomFieldCardinality {
161934
+ Multi = "MULTI",
161935
+ Single = "SINGLE"
161936
+ }
161937
+ export declare type TeamCustomFieldInfo = {
161938
+ __typename?: 'TeamCustomFieldInfo';
161939
+ cardinality: TeamCustomFieldCardinality;
161940
+ description?: Maybe<Scalars['String']['output']>;
161941
+ id: Scalars['ID']['output'];
161942
+ name: Scalars['String']['output'];
161943
+ options?: Maybe<Array<Scalars['String']['output']>>;
161944
+ type: TeamCustomFieldType;
161945
+ };
161946
+ export declare enum TeamCustomFieldType {
161947
+ Number = "NUMBER",
161948
+ Selector = "SELECTOR",
161949
+ String = "STRING",
161950
+ Team = "TEAM",
161951
+ User = "USER"
161952
+ }
161574
161953
  export declare type TeamDeletePayload = Payload & {
161575
161954
  __typename?: 'TeamDeletePayload';
161576
161955
  errors?: Maybe<Array<MutationError>>;
@@ -161661,12 +162040,16 @@ export declare type TeamMutation = {
161661
162040
  addParent?: Maybe<TeamV2>;
161662
162041
  assignTeamToType?: Maybe<TeamV2>;
161663
162042
  bulkAssignTeamsToType?: Maybe<Array<Maybe<TeamV2>>>;
162043
+ createCustomField?: Maybe<TeamCustomFieldInfo>;
161664
162044
  createTeam?: Maybe<TeamCreatePayload>;
161665
162045
  createTeamType?: Maybe<TeamType>;
162046
+ deleteCustomField?: Maybe<Scalars['Boolean']['output']>;
162047
+ deleteCustomFieldValue?: Maybe<Scalars['Boolean']['output']>;
161666
162048
  deleteTeam?: Maybe<TeamDeletePayload>;
161667
162049
  deleteTeamType?: Maybe<TeamType>;
161668
162050
  removeChild?: Maybe<TeamV2>;
161669
162051
  removeParent?: Maybe<TeamV2>;
162052
+ setNotificationConfiguration?: Maybe<TeamNotificationConfiguration>;
161670
162053
  updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
161671
162054
  updateTeam?: Maybe<TeamUpdatePayload>;
161672
162055
  updateType?: Maybe<TeamType>;
@@ -161690,6 +162073,10 @@ export declare type TeamMutationBulkAssignTeamsToTypeArgs = {
161690
162073
  teamIds: Array<InputMaybe<Scalars['ID']['input']>>;
161691
162074
  typeId: Scalars['ID']['input'];
161692
162075
  };
162076
+ export declare type TeamMutationCreateCustomFieldArgs = {
162077
+ customFieldData: TeamCreateCustomFieldPayload;
162078
+ scopeId: Scalars['ID']['input'];
162079
+ };
161693
162080
  export declare type TeamMutationCreateTeamArgs = {
161694
162081
  input: TeamCreateTeamInput;
161695
162082
  };
@@ -161697,6 +162084,12 @@ export declare type TeamMutationCreateTeamTypeArgs = {
161697
162084
  scopeId: Scalars['ID']['input'];
161698
162085
  typeData: TeamTypeCreationPayload;
161699
162086
  };
162087
+ export declare type TeamMutationDeleteCustomFieldArgs = {
162088
+ id: Scalars['ID']['input'];
162089
+ };
162090
+ export declare type TeamMutationDeleteCustomFieldValueArgs = {
162091
+ id: Scalars['ID']['input'];
162092
+ };
161700
162093
  export declare type TeamMutationDeleteTeamArgs = {
161701
162094
  input: TeamDeleteTeamInput;
161702
162095
  };
@@ -161712,6 +162105,9 @@ export declare type TeamMutationRemoveParentArgs = {
161712
162105
  siteId: Scalars['ID']['input'];
161713
162106
  teamId: Scalars['ID']['input'];
161714
162107
  };
162108
+ export declare type TeamMutationSetNotificationConfigurationArgs = {
162109
+ input: TeamSetNotificationConfigurationInput;
162110
+ };
161715
162111
  export declare type TeamMutationUpdateRoleAssignmentsArgs = {
161716
162112
  organizationId: Scalars['ID']['input'];
161717
162113
  principalsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
@@ -161725,6 +162121,26 @@ export declare type TeamMutationUpdateTypeArgs = {
161725
162121
  id: Scalars['ID']['input'];
161726
162122
  typeData: TeamTypeUpdatePayload;
161727
162123
  };
162124
+ export declare enum TeamNotificationChannel {
162125
+ Email = "EMAIL",
162126
+ InApp = "IN_APP"
162127
+ }
162128
+ export declare type TeamNotificationConfiguration = {
162129
+ __typename?: 'TeamNotificationConfiguration';
162130
+ ari: Scalars['ID']['output'];
162131
+ enabled: Scalars['Boolean']['output'];
162132
+ notificationChannel: TeamNotificationChannel;
162133
+ notificationType: TeamNotificationType;
162134
+ };
162135
+ export declare enum TeamNotificationType {
162136
+ UserAddedToTeam = "USER_ADDED_TO_TEAM",
162137
+ UserArchivedTeam = "USER_ARCHIVED_TEAM",
162138
+ UserDeletedTeam = "USER_DELETED_TEAM",
162139
+ UserInvitedToTeam = "USER_INVITED_TO_TEAM",
162140
+ UserRequestedToJoinTeam = "USER_REQUESTED_TO_JOIN_TEAM",
162141
+ UserRestoredTeam = "USER_RESTORED_TEAM",
162142
+ UserUnarchivedTeam = "USER_UNARCHIVED_TEAM"
162143
+ }
161728
162144
  export declare enum TeamPermission {
161729
162145
  FullRead = "FULL_READ",
161730
162146
  FullWrite = "FULL_WRITE",
@@ -161741,6 +162157,8 @@ export declare type TeamPrincipalEdge = {
161741
162157
  };
161742
162158
  export declare type TeamQuery = {
161743
162159
  __typename?: 'TeamQuery';
162160
+ customFieldsWithinScope?: Maybe<Array<TeamCustomFieldInfo>>;
162161
+ notificationConfigurations?: Maybe<Array<TeamNotificationConfiguration>>;
161744
162162
  roleAssignments?: Maybe<TeamRoleAssignmentsConnection>;
161745
162163
  team?: Maybe<Team>;
161746
162164
  teamSearch?: Maybe<TeamSearchResultConnection>;
@@ -161751,6 +162169,12 @@ export declare type TeamQuery = {
161751
162169
  typeInformation?: Maybe<TeamType>;
161752
162170
  typesWithinScope?: Maybe<TeamTypeConnection>;
161753
162171
  };
162172
+ export declare type TeamQueryCustomFieldsWithinScopeArgs = {
162173
+ scopeId: Scalars['ID']['input'];
162174
+ };
162175
+ export declare type TeamQueryNotificationConfigurationsArgs = {
162176
+ ari: Scalars['ID']['input'];
162177
+ };
161754
162178
  export declare type TeamQueryRoleAssignmentsArgs = {
161755
162179
  after?: InputMaybe<Scalars['String']['input']>;
161756
162180
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -161851,6 +162275,12 @@ export declare type TeamSearchResultV2 = {
161851
162275
  memberCount?: Maybe<Scalars['Int']['output']>;
161852
162276
  team?: Maybe<TeamV2>;
161853
162277
  };
162278
+ export declare type TeamSetNotificationConfigurationInput = {
162279
+ ari: Scalars['ID']['input'];
162280
+ enabled: Scalars['Boolean']['input'];
162281
+ notificationChannel: TeamNotificationChannel;
162282
+ notificationType: TeamNotificationType;
162283
+ };
161854
162284
  export declare type TeamSort = {
161855
162285
  field: TeamSortField;
161856
162286
  order?: InputMaybe<TeamSortOrder>;
@@ -166433,6 +166863,7 @@ export declare type TrelloBoardUpdated = TrelloBaseBoardUpdated & {
166433
166863
  onLabelDeleted?: Maybe<Array<TrelloLabelDeleted>>;
166434
166864
  onMembersDeleted?: Maybe<Array<TrelloBoardMembershipDeleted>>;
166435
166865
  onPlannerEventCardsDeleted?: Maybe<Array<TrelloPlannerEventCardDeleted>>;
166866
+ onPowerUpDataDeleted?: Maybe<Array<TrelloPowerUpDataDeleted>>;
166436
166867
  plannerEventCards?: Maybe<TrelloCardUpdatedConnection>;
166437
166868
  powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
166438
166869
  powerUps?: Maybe<TrelloBoardPowerUpConnectionUpdated>;
@@ -168083,6 +168514,11 @@ export declare type TrelloMoveCardBoardEntities = {
168083
168514
  card?: Maybe<TrelloActionCardEntity>;
168084
168515
  memberCreator?: Maybe<TrelloActionMemberEntity>;
168085
168516
  };
168517
+ export declare type TrelloMoveCardFailure = {
168518
+ __typename?: 'TrelloMoveCardFailure';
168519
+ card: TrelloCard;
168520
+ message: Scalars['String']['output'];
168521
+ };
168086
168522
  export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActionData & {
168087
168523
  __typename?: 'TrelloMoveCardToBoardAction';
168088
168524
  appCreator?: Maybe<TrelloAppCreator>;
@@ -168098,6 +168534,19 @@ export declare type TrelloMoveCardToBoardAction = TrelloAction & TrelloCardActio
168098
168534
  reactionsDeleted?: Maybe<Array<TrelloReactionDeleted>>;
168099
168535
  type?: Maybe<Scalars['String']['output']>;
168100
168536
  };
168537
+ export declare type TrelloMoveCardsInput = {
168538
+ boardId: Scalars['ID']['input'];
168539
+ cardIds: Array<Scalars['ID']['input']>;
168540
+ listId: Scalars['ID']['input'];
168541
+ position: Scalars['Float']['input'];
168542
+ };
168543
+ export declare type TrelloMoveCardsPayload = {
168544
+ __typename?: 'TrelloMoveCardsPayload';
168545
+ errors?: Maybe<Array<MutationError>>;
168546
+ moveFailures?: Maybe<Array<TrelloMoveCardFailure>>;
168547
+ movedCards?: Maybe<Array<TrelloCard>>;
168548
+ success: Scalars['Boolean']['output'];
168549
+ };
168101
168550
  export declare type TrelloMoveInboxCardToBoardAction = TrelloAction & TrelloCardActionData & {
168102
168551
  __typename?: 'TrelloMoveInboxCardToBoardAction';
168103
168552
  appCreator?: Maybe<TrelloAppCreator>;
@@ -168164,6 +168613,7 @@ export declare type TrelloMutationApi = {
168164
168613
  markCardComplete?: Maybe<TrelloMarkCardCompletePayload>;
168165
168614
  markInboxNotificationsRead?: Maybe<TrelloMarkInboxNotificationsReadPayload>;
168166
168615
  mergeCards?: Maybe<TrelloMergeCardsPayload>;
168616
+ moveCards?: Maybe<TrelloMoveCardsPayload>;
168167
168617
  movePlannerCalendarEvent?: Maybe<TrelloMovePlannerCalendarEventPayload>;
168168
168618
  pinCard?: Maybe<TrelloPinCardPayload>;
168169
168619
  proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
@@ -168283,6 +168733,9 @@ export declare type TrelloMutationApiMarkInboxNotificationsReadArgs = {
168283
168733
  export declare type TrelloMutationApiMergeCardsArgs = {
168284
168734
  input: TrelloMergeCardsInput;
168285
168735
  };
168736
+ export declare type TrelloMutationApiMoveCardsArgs = {
168737
+ input: TrelloMoveCardsInput;
168738
+ };
168286
168739
  export declare type TrelloMutationApiMovePlannerCalendarEventArgs = {
168287
168740
  input: TrelloMovePlannerCalendarEventInput;
168288
168741
  };
@@ -168476,6 +168929,7 @@ export declare type TrelloPlanner = {
168476
168929
  accounts?: Maybe<TrelloPlannerCalendarAccountConnection>;
168477
168930
  id: Scalars['ID']['output'];
168478
168931
  primaryAccountId?: Maybe<Scalars['ID']['output']>;
168932
+ primaryCalendarId?: Maybe<Scalars['ID']['output']>;
168479
168933
  proposedEvents?: Maybe<TrelloPlannerProposedEventConnection>;
168480
168934
  workspace?: Maybe<TrelloWorkspace>;
168481
168935
  };
@@ -168897,6 +169351,7 @@ export declare type TrelloPlannerUpdated = {
168897
169351
  onPlannerCalendarAccountDeleted?: Maybe<Array<TrelloPlannerCalendarAccountDeleted>>;
168898
169352
  onProposedEventDeleted?: Maybe<Array<TrelloProposedEventDeleted>>;
168899
169353
  primaryAccountId?: Maybe<Scalars['ID']['output']>;
169354
+ primaryCalendarId?: Maybe<Scalars['ID']['output']>;
168900
169355
  proposedEvents?: Maybe<TrelloPlannerProposedEventConnectionUpdated>;
168901
169356
  };
168902
169357
  export declare type TrelloPowerUp = {
@@ -169881,6 +170336,7 @@ export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
169881
170336
  success: Scalars['Boolean']['output'];
169882
170337
  };
169883
170338
  export declare type TrelloUpdatePrimaryPlannerAccountInput = {
170339
+ calendarId?: InputMaybe<Scalars['ID']['input']>;
169884
170340
  providerAccountId: Scalars['ID']['input'];
169885
170341
  };
169886
170342
  export declare type TrelloUpdatePrimaryPlannerAccountPayload = Payload & {