@forge/cli-shared 8.5.0 → 8.5.1-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1437,6 +1437,20 @@ export declare type AdminConnectionNode = {
1437
1437
  connectedTo?: Maybe<AdminConnectedTo>;
1438
1438
  id: Scalars['ID']['output'];
1439
1439
  };
1440
+ export declare type AdminCreateInvitePolicyInput = {
1441
+ allowedAction: AdminInviteAllowedAction;
1442
+ appliesTo?: InputMaybe<Array<AdminResourceRoleInput>>;
1443
+ invitee?: InputMaybe<AdminInvitePolicyInviteeInput>;
1444
+ invitor?: InputMaybe<AdminInvitePolicyInvitorInput>;
1445
+ notification?: InputMaybe<Array<AdminInvitePolicyNotificationSettingsInput>>;
1446
+ status: Scalars['String']['input'];
1447
+ };
1448
+ export declare type AdminCreateInvitePolicyResponsePayload = {
1449
+ __typename?: 'AdminCreateInvitePolicyResponsePayload';
1450
+ errors?: Maybe<Array<MutationError>>;
1451
+ invitePolicy?: Maybe<AdminInvitePolicy>;
1452
+ success: Scalars['Boolean']['output'];
1453
+ };
1440
1454
  export declare type AdminCustomDomains = {
1441
1455
  __typename?: 'AdminCustomDomains';
1442
1456
  parent?: Maybe<AdminLimit>;
@@ -1463,11 +1477,21 @@ export declare type AdminDeactivateUserInput = {
1463
1477
  directoryId: Scalars['String']['input'];
1464
1478
  orgId: Scalars['String']['input'];
1465
1479
  };
1480
+ export declare type AdminDeleteInvitePolicyResponsePayload = {
1481
+ __typename?: 'AdminDeleteInvitePolicyResponsePayload';
1482
+ errors?: Maybe<Array<MutationError>>;
1483
+ success: Scalars['Boolean']['output'];
1484
+ };
1466
1485
  export declare type AdminDimension = {
1467
1486
  __typename?: 'AdminDimension';
1468
1487
  id: Scalars['ID']['output'];
1469
1488
  value: Scalars['String']['output'];
1470
1489
  };
1490
+ export declare type AdminDirectory = {
1491
+ __typename?: 'AdminDirectory';
1492
+ id: Scalars['ID']['output'];
1493
+ owner: Scalars['String']['output'];
1494
+ };
1471
1495
  export declare type AdminEntitlement = {
1472
1496
  __typename?: 'AdminEntitlement';
1473
1497
  bundleName?: Maybe<Scalars['String']['output']>;
@@ -1574,6 +1598,109 @@ export declare type AdminInsightsFeature = {
1574
1598
  __typename?: 'AdminInsightsFeature';
1575
1599
  isEnabled?: Maybe<Scalars['Boolean']['output']>;
1576
1600
  };
1601
+ export declare enum AdminInviteAllowedAction {
1602
+ DirectInvite = "DIRECT_INVITE",
1603
+ RequestAccess = "REQUEST_ACCESS"
1604
+ }
1605
+ export declare type AdminInviteInput = {
1606
+ groupIds?: InputMaybe<Array<Scalars['String']['input']>>;
1607
+ inviteeNotificationSettings?: InputMaybe<AdminInviteeNotificationSettingsInput>;
1608
+ resourceRole: Array<AdminResourceRoleInput>;
1609
+ users: Array<AdminInviteUserInput>;
1610
+ };
1611
+ export declare type AdminInviteNotApplied = {
1612
+ __typename?: 'AdminInviteNotApplied';
1613
+ reason?: Maybe<AdminInviteNotAppliedReason>;
1614
+ resourceRole?: Maybe<AdminResourceRole>;
1615
+ user?: Maybe<AdminInviteUser>;
1616
+ };
1617
+ export declare enum AdminInviteNotAppliedReason {
1618
+ LicenseExceeded = "LICENSE_EXCEEDED",
1619
+ PendingInviteExists = "PENDING_INVITE_EXISTS",
1620
+ Rejected = "REJECTED",
1621
+ UserExists = "USER_EXISTS"
1622
+ }
1623
+ export declare type AdminInvitePendingApproval = {
1624
+ __typename?: 'AdminInvitePendingApproval';
1625
+ resourceRole?: Maybe<AdminResourceRole>;
1626
+ user?: Maybe<AdminInviteUser>;
1627
+ };
1628
+ export declare type AdminInvitePolicy = {
1629
+ __typename?: 'AdminInvitePolicy';
1630
+ allowedAction: AdminInviteAllowedAction;
1631
+ appliesTo?: Maybe<Array<AdminResourceRole>>;
1632
+ id: Scalars['ID']['output'];
1633
+ invitee: AdminInvitePolicyInvitee;
1634
+ invitor: AdminInvitePolicyInvitor;
1635
+ notification?: Maybe<Array<AdminInvitePolicyNotificationSettings>>;
1636
+ status: AdminPolicyStatus;
1637
+ };
1638
+ export declare type AdminInvitePolicyConnection = {
1639
+ __typename?: 'AdminInvitePolicyConnection';
1640
+ edges?: Maybe<Array<AdminInvitePolicyEdge>>;
1641
+ pageInfo: PageInfo;
1642
+ };
1643
+ export declare type AdminInvitePolicyEdge = {
1644
+ __typename?: 'AdminInvitePolicyEdge';
1645
+ cursor: Scalars['String']['output'];
1646
+ node: AdminInvitePolicy;
1647
+ };
1648
+ export declare type AdminInvitePolicyInvitee = {
1649
+ __typename?: 'AdminInvitePolicyInvitee';
1650
+ scope: Array<Scalars['String']['output']>;
1651
+ type: AdminInvitePolicyInviteeType;
1652
+ };
1653
+ export declare type AdminInvitePolicyInviteeInput = {
1654
+ scope: Array<Scalars['String']['input']>;
1655
+ type: AdminInvitePolicyInviteeType;
1656
+ };
1657
+ export declare enum AdminInvitePolicyInviteeType {
1658
+ Domains = "DOMAINS",
1659
+ Groups = "GROUPS",
1660
+ Resources = "RESOURCES"
1661
+ }
1662
+ export declare type AdminInvitePolicyInvitor = {
1663
+ __typename?: 'AdminInvitePolicyInvitor';
1664
+ scope: Array<Scalars['String']['output']>;
1665
+ type: AdminInvitePolicyInvitorType;
1666
+ };
1667
+ export declare type AdminInvitePolicyInvitorInput = {
1668
+ scope: Array<Scalars['String']['input']>;
1669
+ type: AdminInvitePolicyInvitorType;
1670
+ };
1671
+ export declare enum AdminInvitePolicyInvitorType {
1672
+ Domains = "DOMAINS",
1673
+ Groups = "GROUPS",
1674
+ Resources = "RESOURCES"
1675
+ }
1676
+ export declare type AdminInvitePolicyNotificationSettings = {
1677
+ __typename?: 'AdminInvitePolicyNotificationSettings';
1678
+ channel: Scalars['String']['output'];
1679
+ trigger?: Maybe<Array<Scalars['String']['output']>>;
1680
+ };
1681
+ export declare type AdminInvitePolicyNotificationSettingsInput = {
1682
+ channel: Scalars['String']['input'];
1683
+ trigger?: InputMaybe<Array<Scalars['String']['input']>>;
1684
+ };
1685
+ export declare type AdminInviteResponsePayload = {
1686
+ __typename?: 'AdminInviteResponsePayload';
1687
+ errors?: Maybe<Array<MutationErrorExtension>>;
1688
+ inviteResults?: Maybe<Array<AdminInviteResult>>;
1689
+ success: Scalars['Boolean']['output'];
1690
+ };
1691
+ export declare type AdminInviteResult = AdminInviteNotApplied | AdminInvitePendingApproval | AdminUserDirectlyInvited;
1692
+ export declare type AdminInviteUser = {
1693
+ __typename?: 'AdminInviteUser';
1694
+ email?: Maybe<Scalars['String']['output']>;
1695
+ id: Scalars['ID']['output'];
1696
+ };
1697
+ export declare type AdminInviteUserInput = {
1698
+ email: Scalars['String']['input'];
1699
+ };
1700
+ export declare type AdminInviteeNotificationSettingsInput = {
1701
+ message?: InputMaybe<Scalars['String']['input']>;
1702
+ suppress?: InputMaybe<Scalars['Boolean']['input']>;
1703
+ };
1577
1704
  export declare type AdminIpAllowlistingFeature = {
1578
1705
  __typename?: 'AdminIpAllowlistingFeature';
1579
1706
  ip?: Maybe<Scalars['String']['output']>;
@@ -1603,6 +1730,10 @@ export declare type AdminPermission = {
1603
1730
  permissionId: Scalars['String']['output'];
1604
1731
  };
1605
1732
  export declare type AdminPolicy = AdminAccessUrl | AdminAiPolicy | AdminByok | AdminDataResidency;
1733
+ export declare enum AdminPolicyStatus {
1734
+ Disabled = "DISABLED",
1735
+ Enabled = "ENABLED"
1736
+ }
1606
1737
  export declare type AdminPrimitive = {
1607
1738
  field?: InputMaybe<AdminQueryableField>;
1608
1739
  };
@@ -1639,21 +1770,25 @@ export declare type AdminReleaseTrackFeature = {
1639
1770
  __typename?: 'AdminReleaseTrackFeature';
1640
1771
  tracks?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
1641
1772
  };
1642
- export declare type AdminRemoveUserInput = {
1643
- accountId: Scalars['String']['input'];
1644
- directoryId: Scalars['String']['input'];
1645
- orgId: Scalars['String']['input'];
1646
- };
1647
1773
  export declare type AdminRemoveUserResponsePayload = Payload & {
1648
1774
  __typename?: 'AdminRemoveUserResponsePayload';
1649
1775
  errors?: Maybe<Array<MutationError>>;
1650
1776
  success: Scalars['Boolean']['output'];
1651
1777
  };
1652
- export declare type AdminResource = AdminOrganization | AdminSite | AdminWorkspace;
1778
+ export declare type AdminResource = AdminOrganization | AdminSite | AdminUnit | AdminWorkspace;
1653
1779
  export declare type AdminResourceCounts = {
1654
1780
  __typename?: 'AdminResourceCounts';
1655
1781
  resources: Scalars['Int']['output'];
1656
1782
  };
1783
+ export declare type AdminResourceRole = {
1784
+ __typename?: 'AdminResourceRole';
1785
+ resourceId: Scalars['ID']['output'];
1786
+ roleId: Scalars['ID']['output'];
1787
+ };
1788
+ export declare type AdminResourceRoleInput = {
1789
+ resourceId: Scalars['ID']['input'];
1790
+ roleId: Scalars['ID']['input'];
1791
+ };
1657
1792
  export declare type AdminRevokeRoleInput = {
1658
1793
  principalId: Scalars['String']['input'];
1659
1794
  resourceId: Scalars['String']['input'];
@@ -1772,22 +1907,37 @@ export declare type AdminStorageFeature = {
1772
1907
  };
1773
1908
  export declare type AdminUnit = {
1774
1909
  __typename?: 'AdminUnit';
1775
- appInstallations?: Maybe<AdminWorkspaceConnection>;
1776
- directory: Scalars['ID']['output'];
1910
+ apps?: Maybe<AdminUnitAppsConnection>;
1911
+ directory?: Maybe<AdminDirectory>;
1777
1912
  id: Scalars['ID']['output'];
1778
1913
  name?: Maybe<Scalars['String']['output']>;
1914
+ orgId: Scalars['ID']['output'];
1915
+ userStats?: Maybe<AdminUnitUserStats>;
1779
1916
  };
1780
- export declare type AdminUnitAppInstallationsArgs = {
1917
+ export declare type AdminUnitAppsArgs = {
1781
1918
  after?: InputMaybe<Scalars['String']['input']>;
1782
1919
  before?: InputMaybe<Scalars['String']['input']>;
1783
1920
  first?: InputMaybe<Scalars['Int']['input']>;
1784
1921
  last?: InputMaybe<Scalars['Int']['input']>;
1785
1922
  };
1923
+ export declare type AdminUnitApp = {
1924
+ __typename?: 'AdminUnitApp';
1925
+ id: Scalars['ID']['output'];
1926
+ };
1927
+ export declare type AdminUnitAppEdge = {
1928
+ __typename?: 'AdminUnitAppEdge';
1929
+ node?: Maybe<AdminUnitApp>;
1930
+ };
1931
+ export declare type AdminUnitAppsConnection = {
1932
+ __typename?: 'AdminUnitAppsConnection';
1933
+ count?: Maybe<Scalars['Int']['output']>;
1934
+ edges?: Maybe<Array<AdminUnitAppEdge>>;
1935
+ pageInfo: PageInfo;
1936
+ };
1786
1937
  export declare type AdminUnitConnection = {
1787
1938
  __typename?: 'AdminUnitConnection';
1788
1939
  edges?: Maybe<Array<AdminUnitEdge>>;
1789
1940
  pageInfo: PageInfo;
1790
- totalCount: Scalars['Int']['output'];
1791
1941
  };
1792
1942
  export declare type AdminUnitCreateInput = {
1793
1943
  name: Scalars['String']['input'];
@@ -1809,9 +1959,12 @@ export declare enum AdminUnitCreateStatusEnum {
1809
1959
  }
1810
1960
  export declare type AdminUnitEdge = {
1811
1961
  __typename?: 'AdminUnitEdge';
1812
- cursor: Scalars['String']['output'];
1813
1962
  node?: Maybe<AdminUnit>;
1814
1963
  };
1964
+ export declare type AdminUnitUserStats = {
1965
+ __typename?: 'AdminUnitUserStats';
1966
+ count?: Maybe<Scalars['Int']['output']>;
1967
+ };
1815
1968
  export declare type AdminUnitValidateName = {
1816
1969
  __typename?: 'AdminUnitValidateName';
1817
1970
  isValid: Scalars['Boolean']['output'];
@@ -1821,6 +1974,26 @@ export declare enum AdminUnitValidateNameErrorEnum {
1821
1974
  NameConflict = "NAME_CONFLICT",
1822
1975
  NameInvalid = "NAME_INVALID"
1823
1976
  }
1977
+ export declare type AdminUnitsForOrgSearchInput = {
1978
+ name: Scalars['String']['input'];
1979
+ };
1980
+ export declare type AdminUnitsForOrgSortInput = {
1981
+ name: SortDirection;
1982
+ };
1983
+ export declare type AdminUpdateInvitePolicyInput = {
1984
+ allowedAction?: InputMaybe<AdminInviteAllowedAction>;
1985
+ appliesTo?: InputMaybe<Array<AdminResourceRoleInput>>;
1986
+ invitee?: InputMaybe<AdminInvitePolicyInviteeInput>;
1987
+ invitor?: InputMaybe<AdminInvitePolicyInvitorInput>;
1988
+ notification?: InputMaybe<Array<AdminInvitePolicyNotificationSettingsInput>>;
1989
+ status?: InputMaybe<Scalars['String']['input']>;
1990
+ };
1991
+ export declare type AdminUpdateInvitePolicyResponsePayload = {
1992
+ __typename?: 'AdminUpdateInvitePolicyResponsePayload';
1993
+ errors?: Maybe<Array<MutationError>>;
1994
+ invitePolicy?: Maybe<AdminInvitePolicy>;
1995
+ success: Scalars['Boolean']['output'];
1996
+ };
1824
1997
  export declare type AdminUsageInfo = {
1825
1998
  __typename?: 'AdminUsageInfo';
1826
1999
  createdAt: Scalars['String']['output'];
@@ -1859,6 +2032,11 @@ export declare type AdminUserConnection = {
1859
2032
  edges?: Maybe<Array<AdminUserEdge>>;
1860
2033
  pageInfo: PageInfo;
1861
2034
  };
2035
+ export declare type AdminUserDirectlyInvited = {
2036
+ __typename?: 'AdminUserDirectlyInvited';
2037
+ resourceRole?: Maybe<AdminResourceRole>;
2038
+ user?: Maybe<AdminInviteUser>;
2039
+ };
1862
2040
  export declare type AdminUserEdge = {
1863
2041
  __typename?: 'AdminUserEdge';
1864
2042
  cursor: Scalars['String']['output'];
@@ -2362,6 +2540,16 @@ export declare type AgentStudioServiceAgent = AgentStudioAgent & Node & {
2362
2540
  permissions?: Maybe<AgentStudioAgentPermissions>;
2363
2541
  scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
2364
2542
  };
2543
+ export declare type AgentStudioSetWidgetByContainerAriInput = {
2544
+ agentAri: Scalars['ID']['input'];
2545
+ isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
2546
+ };
2547
+ export declare type AgentStudioSetWidgetByContainerAriPayload = Payload & {
2548
+ __typename?: 'AgentStudioSetWidgetByContainerAriPayload';
2549
+ connectedWidget?: Maybe<AgentStudioWidget>;
2550
+ errors?: Maybe<Array<MutationError>>;
2551
+ success: Scalars['Boolean']['output'];
2552
+ };
2365
2553
  export declare type AgentStudioSlackChannel = AgentStudioChannel & {
2366
2554
  __typename?: 'AgentStudioSlackChannel';
2367
2555
  channels?: Maybe<Array<AgentStudioSlackChannelDetails>>;
@@ -2531,6 +2719,14 @@ export declare type AgentStudioUpdateScenarioPayload = Payload & {
2531
2719
  scenarioList?: Maybe<Array<Maybe<AgentStudioScenario>>>;
2532
2720
  success: Scalars['Boolean']['output'];
2533
2721
  };
2722
+ export declare type AgentStudioWidget = {
2723
+ __typename?: 'AgentStudioWidget';
2724
+ agent?: Maybe<AgentStudioAgentResult>;
2725
+ agentAri: Scalars['ID']['output'];
2726
+ containerAri: Scalars['String']['output'];
2727
+ isEnabled?: Maybe<Scalars['Boolean']['output']>;
2728
+ };
2729
+ export declare type AgentStudioWidgetByContainerAriResult = AgentStudioWidget | QueryError;
2534
2730
  export declare enum AiCoreApiQuestionType {
2535
2731
  DraftDocument = "DRAFT_DOCUMENT",
2536
2732
  KnowledgeBase = "KNOWLEDGE_BASE"
@@ -3552,6 +3748,30 @@ export declare type AppStorageEntityNode = {
3552
3748
  key: Scalars['String']['output'];
3553
3749
  value: Scalars['AppStorageEntityValue']['output'];
3554
3750
  };
3751
+ export declare type AppStorageKvsAdminMutation = {
3752
+ __typename?: 'AppStorageKvsAdminMutation';
3753
+ setValue: AppStorageResultPayload;
3754
+ };
3755
+ export declare type AppStorageKvsAdminMutationSetValueArgs = {
3756
+ input: AppStorageKvsAdminSetInput;
3757
+ };
3758
+ export declare type AppStorageKvsAdminQuery = {
3759
+ __typename?: 'AppStorageKvsAdminQuery';
3760
+ queryValues: AppStorageKvsQueryPayload;
3761
+ };
3762
+ export declare type AppStorageKvsAdminQueryQueryValuesArgs = {
3763
+ input: AppStorageKvsAdminQueryInput;
3764
+ };
3765
+ export declare type AppStorageKvsAdminQueryInput = {
3766
+ after?: InputMaybe<Scalars['String']['input']>;
3767
+ first?: InputMaybe<Scalars['Int']['input']>;
3768
+ installationId: Scalars['ID']['input'];
3769
+ };
3770
+ export declare type AppStorageKvsAdminSetInput = {
3771
+ installationId: Scalars['ID']['input'];
3772
+ key: Scalars['String']['input'];
3773
+ value: Scalars['AppStorageEntityValue']['input'];
3774
+ };
3555
3775
  export declare type AppStorageKvsQueryInput = {
3556
3776
  after?: InputMaybe<Scalars['String']['input']>;
3557
3777
  contextAri: Scalars['ID']['input'];
@@ -3600,6 +3820,11 @@ export declare type AppStoragePageInfo = {
3600
3820
  hasNextPage: Scalars['Boolean']['output'];
3601
3821
  hasPreviousPage: Scalars['Boolean']['output'];
3602
3822
  };
3823
+ export declare type AppStorageResultPayload = {
3824
+ __typename?: 'AppStorageResultPayload';
3825
+ errors?: Maybe<Array<MutationError>>;
3826
+ success: Scalars['Boolean']['output'];
3827
+ };
3603
3828
  export declare type AppStorageSqlDatabaseColumn = {
3604
3829
  __typename?: 'AppStorageSqlDatabaseColumn';
3605
3830
  default: Scalars['String']['output'];
@@ -4720,11 +4945,13 @@ export declare enum AssetsDmObjectsListSearchCondition {
4720
4945
  }
4721
4946
  export declare type AssetsDmObjectsListSearchGroup = {
4722
4947
  condition?: InputMaybe<AssetsDmObjectsListSearchGroupCondition>;
4948
+ searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
4723
4949
  searchItems?: Array<AssetsDmObjectsListSearchItem>;
4724
4950
  };
4725
4951
  export declare enum AssetsDmObjectsListSearchGroupCondition {
4726
4952
  And = "AND",
4727
4953
  Andnot = "ANDNOT",
4954
+ Not = "NOT",
4728
4955
  Or = "OR",
4729
4956
  Ornot = "ORNOT"
4730
4957
  }
@@ -4735,12 +4962,13 @@ export declare type AssetsDmObjectsListSearchItem = {
4735
4962
  isDataSource?: Scalars['Boolean']['input'];
4736
4963
  operator: AssetsDmObjectsListSearchOperator;
4737
4964
  rawColumnType?: InputMaybe<AssetsDmObjectsListRawColumnType>;
4738
- savedSearchId?: InputMaybe<Scalars['String']['input']>;
4965
+ savedSearchId?: InputMaybe<Scalars['ID']['input']>;
4739
4966
  tagCodes?: InputMaybe<Array<Scalars['Int']['input']>>;
4740
4967
  values?: InputMaybe<Array<Scalars['String']['input']>>;
4741
4968
  whereDataSource?: InputMaybe<Scalars['String']['input']>;
4742
4969
  };
4743
4970
  export declare enum AssetsDmObjectsListSearchOperator {
4971
+ AfterNext = "AFTER_NEXT",
4744
4972
  ComputeIssues = "COMPUTE_ISSUES",
4745
4973
  Contains = "CONTAINS",
4746
4974
  Empty = "EMPTY",
@@ -4762,8 +4990,11 @@ export declare enum AssetsDmObjectsListSearchOperator {
4762
4990
  NotStartsWith = "NOT_STARTS_WITH",
4763
4991
  Null = "NULL",
4764
4992
  NullOrEmpty = "NULL_OR_EMPTY",
4993
+ OlderThan = "OLDER_THAN",
4765
4994
  StartsWith = "STARTS_WITH",
4766
- Unknown = "UNKNOWN"
4995
+ Unknown = "UNKNOWN",
4996
+ WithinLast = "WITHIN_LAST",
4997
+ WithinNext = "WITHIN_NEXT"
4767
4998
  }
4768
4999
  export declare type AssetsDmObjectsListSortBy = {
4769
5000
  name: Scalars['String']['input'];
@@ -4844,26 +5075,12 @@ export declare type AssetsDmSavedSearch = {
4844
5075
  export declare type AssetsDmSavedSearchInput = {
4845
5076
  searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
4846
5077
  };
4847
- export declare type AssetsDmSavedSearchesCreateArgs = {
4848
- cloudId: Scalars['ID']['input'];
4849
- isExportToAsset?: Scalars['Boolean']['input'];
4850
- isPublic?: Scalars['Boolean']['input'];
4851
- name: Scalars['String']['input'];
4852
- objectId: Scalars['ID']['input'];
4853
- searchInput: AssetsDmSavedSearchInput;
4854
- workspaceId: Scalars['ID']['input'];
4855
- };
4856
5078
  export declare type AssetsDmSavedSearchesCreateResponse = {
4857
5079
  __typename?: 'AssetsDMSavedSearchesCreateResponse';
4858
5080
  isSuccessful: Scalars['Boolean']['output'];
4859
5081
  message: Scalars['String']['output'];
4860
5082
  returnValue: Scalars['String']['output'];
4861
5083
  };
4862
- export declare type AssetsDmSavedSearchesDeleteArgs = {
4863
- cloudId: Scalars['ID']['input'];
4864
- savedSearchId: Scalars['ID']['input'];
4865
- workspaceId: Scalars['ID']['input'];
4866
- };
4867
5084
  export declare type AssetsDmSavedSearchesDeleteResponse = {
4868
5085
  __typename?: 'AssetsDMSavedSearchesDeleteResponse';
4869
5086
  isSuccessful: Scalars['Boolean']['output'];
@@ -4874,14 +5091,6 @@ export declare type AssetsDmSavedSearchesList = {
4874
5091
  pageInfo: AssetsDmPaginationInfo;
4875
5092
  rows: Array<AssetsDmSavedSearch>;
4876
5093
  };
4877
- export declare type AssetsDmSavedSearchesListInput = {
4878
- cloudId: Scalars['ID']['input'];
4879
- objectId: Scalars['ID']['input'];
4880
- pagination?: InputMaybe<AssetsDmPaginationInput>;
4881
- query?: InputMaybe<AssetsDmSavedSearchesQueryArgs>;
4882
- sortBy?: InputMaybe<AssetsDmSortByInput>;
4883
- workspaceId: Scalars['ID']['input'];
4884
- };
4885
5094
  export declare type AssetsDmSavedSearchesQueryArgs = {
4886
5095
  isPublic?: Scalars['Boolean']['input'];
4887
5096
  name?: InputMaybe<Scalars['String']['input']>;
@@ -7916,6 +8125,7 @@ export declare type ChannelPlatformChannelAvailabilityResponse = {
7916
8125
  };
7917
8126
  export declare enum ChannelPlatformChannelType {
7918
8127
  Chat = "CHAT",
8128
+ Phone = "PHONE",
7919
8129
  Ticket = "TICKET",
7920
8130
  Voice = "VOICE"
7921
8131
  }
@@ -7939,9 +8149,17 @@ export declare type ChannelPlatformConnectionData = {
7939
8149
  };
7940
8150
  export declare type ChannelPlatformContact = {
7941
8151
  __typename?: 'ChannelPlatformContact';
8152
+ assigneeAaid?: Maybe<Scalars['String']['output']>;
7942
8153
  channel?: Maybe<ChannelPlatformChannelType>;
7943
8154
  contactId?: Maybe<Scalars['ID']['output']>;
8155
+ state?: Maybe<ChannelPlatformContactState>;
7944
8156
  };
8157
+ export declare enum ChannelPlatformContactState {
8158
+ Assigned = "ASSIGNED",
8159
+ Closed = "CLOSED",
8160
+ Initialized = "INITIALIZED",
8161
+ Unassigned = "UNASSIGNED"
8162
+ }
7945
8163
  export declare type ChannelPlatformEventRelayRequest = {
7946
8164
  channelType?: InputMaybe<ChannelPlatformChannelType>;
7947
8165
  conversationId?: InputMaybe<Scalars['String']['input']>;
@@ -14104,6 +14322,14 @@ export declare type ConfluenceCalendarJqlValidationResult = {
14104
14322
  valid: Scalars['Boolean']['output'];
14105
14323
  warningMessages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
14106
14324
  };
14325
+ export declare type ConfluenceCalendarPermissionInput = {
14326
+ permission: ConfluenceCalendarPermissionsType;
14327
+ principalId: Scalars['ID']['input'];
14328
+ };
14329
+ export declare enum ConfluenceCalendarPermissionsType {
14330
+ Edit = "EDIT",
14331
+ View = "VIEW"
14332
+ }
14107
14333
  export declare type ConfluenceCalendarPreference = {
14108
14334
  __typename?: 'ConfluenceCalendarPreference';
14109
14335
  disabledMessageKeys?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -14659,6 +14885,16 @@ export declare type ConfluenceCreateQuestionPayload = Payload & {
14659
14885
  question?: Maybe<ConfluenceQuestion>;
14660
14886
  success: Scalars['Boolean']['output'];
14661
14887
  };
14888
+ export declare type ConfluenceCreateSpaceContent = {
14889
+ parentTitle?: InputMaybe<Scalars['String']['input']>;
14890
+ templateKey?: InputMaybe<Scalars['String']['input']>;
14891
+ title: Scalars['String']['input'];
14892
+ type: ConfluenceCreateSpaceContentType;
14893
+ };
14894
+ export declare enum ConfluenceCreateSpaceContentType {
14895
+ Folder = "FOLDER",
14896
+ Page = "PAGE"
14897
+ }
14662
14898
  export declare type ConfluenceCreateSpaceInput = {
14663
14899
  key: Scalars['String']['input'];
14664
14900
  name: Scalars['String']['input'];
@@ -14705,11 +14941,20 @@ export declare type ConfluenceCustomContentInfo = {
14705
14941
  customContentTypeName: Scalars['String']['output'];
14706
14942
  supportedPermissions: Array<Maybe<ConfluenceCustomContentPermissionType>>;
14707
14943
  };
14944
+ export declare type ConfluenceCustomContentPermissionAccessClassPrincipal = ConfluenceCustomContentPermissionPrincipal & {
14945
+ __typename?: 'ConfluenceCustomContentPermissionAccessClassPrincipal';
14946
+ displayName: Scalars['String']['output'];
14947
+ principalId: Scalars['ID']['output'];
14948
+ };
14949
+ export declare type ConfluenceCustomContentPermissionAppPrincipal = ConfluenceCustomContentPermissionPrincipal & {
14950
+ __typename?: 'ConfluenceCustomContentPermissionAppPrincipal';
14951
+ displayName: Scalars['String']['output'];
14952
+ principalId: Scalars['ID']['output'];
14953
+ };
14708
14954
  export declare type ConfluenceCustomContentPermissionAssignment = {
14709
14955
  __typename?: 'ConfluenceCustomContentPermissionAssignment';
14710
- confluenceCustomContentPrincipal?: Maybe<ConfluenceCustomContentPrincipal>;
14956
+ confluenceCustomContentPermissionPrincipal?: Maybe<ConfluenceCustomContentPermissionPrincipal>;
14711
14957
  customContentTypeKey?: Maybe<Scalars['String']['output']>;
14712
- customContentTypeName?: Maybe<Scalars['String']['output']>;
14713
14958
  permissionType?: Maybe<ConfluenceCustomContentPermissionType>;
14714
14959
  };
14715
14960
  export declare type ConfluenceCustomContentPermissionAssignmentConnection = {
@@ -14723,13 +14968,29 @@ export declare type ConfluenceCustomContentPermissionAssignmentEdge = {
14723
14968
  cursor: Scalars['String']['output'];
14724
14969
  node?: Maybe<ConfluenceCustomContentPermissionAssignment>;
14725
14970
  };
14971
+ export declare type ConfluenceCustomContentPermissionGroupPrincipal = ConfluenceCustomContentPermissionPrincipal & {
14972
+ __typename?: 'ConfluenceCustomContentPermissionGroupPrincipal';
14973
+ displayName: Scalars['String']['output'];
14974
+ principalId: Scalars['ID']['output'];
14975
+ };
14976
+ export declare type ConfluenceCustomContentPermissionGuestPrincipal = ConfluenceCustomContentPermissionPrincipal & {
14977
+ __typename?: 'ConfluenceCustomContentPermissionGuestPrincipal';
14978
+ displayName: Scalars['String']['output'];
14979
+ principalId: Scalars['ID']['output'];
14980
+ profilePicture?: Maybe<Icon>;
14981
+ };
14726
14982
  export declare type ConfluenceCustomContentPermissionInput = {
14727
14983
  customContentTypeKey: Scalars['String']['input'];
14728
14984
  permission: ConfluenceCustomContentPermissionType;
14729
14985
  };
14986
+ export declare type ConfluenceCustomContentPermissionPrincipal = {
14987
+ displayName: Scalars['String']['output'];
14988
+ principalId: Scalars['ID']['output'];
14989
+ };
14730
14990
  export declare enum ConfluenceCustomContentPermissionPrincipalType {
14991
+ App = "APP",
14731
14992
  Group = "GROUP",
14732
- Guests = "GUESTS",
14993
+ Guest = "GUEST",
14733
14994
  User = "USER",
14734
14995
  UserClass = "USER_CLASS"
14735
14996
  }
@@ -14738,10 +14999,11 @@ export declare enum ConfluenceCustomContentPermissionType {
14738
14999
  Delete = "DELETE",
14739
15000
  Read = "READ"
14740
15001
  }
14741
- export declare type ConfluenceCustomContentPrincipal = {
14742
- __typename?: 'ConfluenceCustomContentPrincipal';
15002
+ export declare type ConfluenceCustomContentPermissionUserPrincipal = ConfluenceCustomContentPermissionPrincipal & {
15003
+ __typename?: 'ConfluenceCustomContentPermissionUserPrincipal';
15004
+ displayName: Scalars['String']['output'];
14743
15005
  principalId: Scalars['ID']['output'];
14744
- principalType: ConfluenceCustomContentPermissionPrincipalType;
15006
+ profilePicture?: Maybe<Icon>;
14745
15007
  };
14746
15008
  export declare type ConfluenceCustomContentPrincipalInput = {
14747
15009
  principalId: Scalars['ID']['input'];
@@ -15701,6 +15963,7 @@ export declare type ConfluenceMutationApi = {
15701
15963
  updateSpaceTheme?: Maybe<ConfluenceUpdateSpaceThemePayload>;
15702
15964
  updateTeamCalendarGlobalSettings?: Maybe<ConfluenceUpdateTeamCalendarGlobalSettingsPayload>;
15703
15965
  updateTeamPresenceSiteConfiguration?: Maybe<ConfluenceUpdateTeamPresenceSiteConfigurationPayload>;
15966
+ updateTeamsSiteConfiguration?: Maybe<ConfluenceUpdateTeamsSiteConfigurationPayload>;
15704
15967
  updateValueBlogPostProperty?: Maybe<ConfluenceUpdateValueBlogPostPropertyPayload>;
15705
15968
  updateValuePageProperty?: Maybe<ConfluenceUpdateValuePagePropertyPayload>;
15706
15969
  uploadDefaultSpaceLogo?: Maybe<ConfluenceUploadDefaultSpaceLogoPayload>;
@@ -15901,6 +16164,9 @@ export declare type ConfluenceMutationApiUpdateTeamCalendarGlobalSettingsArgs =
15901
16164
  export declare type ConfluenceMutationApiUpdateTeamPresenceSiteConfigurationArgs = {
15902
16165
  input: ConfluenceUpdateTeamPresenceSiteConfigurationInput;
15903
16166
  };
16167
+ export declare type ConfluenceMutationApiUpdateTeamsSiteConfigurationArgs = {
16168
+ input: ConfluenceUpdateTeamsSiteConfigurationInput;
16169
+ };
15904
16170
  export declare type ConfluenceMutationApiUpdateValueBlogPostPropertyArgs = {
15905
16171
  input: ConfluenceUpdateValueBlogPostPropertyInput;
15906
16172
  };
@@ -17220,6 +17486,16 @@ export declare type ConfluenceUpdateAnswerPayload = Payload & {
17220
17486
  errors?: Maybe<Array<MutationError>>;
17221
17487
  success: Scalars['Boolean']['output'];
17222
17488
  };
17489
+ export declare type ConfluenceUpdateCalendarPermissionInput = {
17490
+ groups: Array<InputMaybe<ConfluenceCalendarPermissionInput>>;
17491
+ id: Scalars['ID']['input'];
17492
+ users: Array<InputMaybe<ConfluenceCalendarPermissionInput>>;
17493
+ };
17494
+ export declare type ConfluenceUpdateCalendarPermissionPayload = Payload & {
17495
+ __typename?: 'ConfluenceUpdateCalendarPermissionPayload';
17496
+ errors?: Maybe<Array<MutationError>>;
17497
+ success: Scalars['Boolean']['output'];
17498
+ };
17223
17499
  export declare type ConfluenceUpdateCalendarViewInput = {
17224
17500
  view: Scalars['String']['input'];
17225
17501
  };
@@ -17617,6 +17893,14 @@ export declare type ConfluenceUpdateTeamPresenceSpaceSettingsPayload = {
17617
17893
  isEnabledOnContentView: Scalars['Boolean']['output'];
17618
17894
  success: Scalars['Boolean']['output'];
17619
17895
  };
17896
+ export declare type ConfluenceUpdateTeamsSiteConfigurationInput = {
17897
+ isEnableRecommendedTeamsNotification: Scalars['Boolean']['input'];
17898
+ };
17899
+ export declare type ConfluenceUpdateTeamsSiteConfigurationPayload = Payload & {
17900
+ __typename?: 'ConfluenceUpdateTeamsSiteConfigurationPayload';
17901
+ errors?: Maybe<Array<MutationError>>;
17902
+ success: Scalars['Boolean']['output'];
17903
+ };
17620
17904
  export declare type ConfluenceUpdateTopicInput = {
17621
17905
  description?: InputMaybe<Scalars['String']['input']>;
17622
17906
  featured?: InputMaybe<Scalars['Boolean']['input']>;
@@ -17727,6 +18011,7 @@ export declare type ConfluenceUserHasPermission = {
17727
18011
  };
17728
18012
  export declare type ConfluenceUserInfo = {
17729
18013
  __typename?: 'ConfluenceUserInfo';
18014
+ id: Scalars['ID']['output'];
17730
18015
  type: ConfluenceUserType;
17731
18016
  user?: Maybe<User>;
17732
18017
  };
@@ -20183,11 +20468,15 @@ export declare type CplsAddContributorScopeAssociationPayload = {
20183
20468
  };
20184
20469
  export declare type CplsCapacityPlanningPeopleView = {
20185
20470
  __typename?: 'CplsCapacityPlanningPeopleView';
20471
+ contributor?: Maybe<CplsContributor>;
20186
20472
  contributors: CplsContributorConnection;
20187
20473
  id: Scalars['ID']['output'];
20188
20474
  timeCells: Array<CplsTimeCell>;
20189
20475
  viewSettings: CplsViewSettings;
20190
20476
  };
20477
+ export declare type CplsCapacityPlanningPeopleViewContributorArgs = {
20478
+ id: Scalars['ID']['input'];
20479
+ };
20191
20480
  export declare type CplsCapacityPlanningPeopleViewContributorsArgs = {
20192
20481
  after?: InputMaybe<Scalars['String']['input']>;
20193
20482
  before?: InputMaybe<Scalars['String']['input']>;
@@ -20218,6 +20507,7 @@ export declare type CplsContributor = {
20218
20507
  contributorData?: Maybe<CplsContributorData>;
20219
20508
  contributorWork: CplsContributorWorkConnection;
20220
20509
  id: Scalars['ID']['output'];
20510
+ worksByIds: Array<CplsContributorWorkEdge>;
20221
20511
  };
20222
20512
  export declare type CplsContributorContributorWorkArgs = {
20223
20513
  after?: InputMaybe<Scalars['String']['input']>;
@@ -20225,6 +20515,9 @@ export declare type CplsContributorContributorWorkArgs = {
20225
20515
  first?: InputMaybe<Scalars['Int']['input']>;
20226
20516
  last?: InputMaybe<Scalars['Int']['input']>;
20227
20517
  };
20518
+ export declare type CplsContributorWorksByIdsArgs = {
20519
+ workIds: Array<Scalars['ID']['input']>;
20520
+ };
20228
20521
  export declare type CplsContributorConnection = HasPageInfo & {
20229
20522
  __typename?: 'CplsContributorConnection';
20230
20523
  edges: Array<CplsContributorEdge>;
@@ -20862,6 +21155,7 @@ export declare type CreateNotePayload = {
20862
21155
  export declare type CreatePersonalSpaceInput = {
20863
21156
  copySpacePermissionsFromSpaceKey?: InputMaybe<Scalars['String']['input']>;
20864
21157
  initialPermissionOption?: InputMaybe<InitialPermissionOptions>;
21158
+ spaceContents?: InputMaybe<Array<InputMaybe<ConfluenceCreateSpaceContent>>>;
20865
21159
  spaceName: Scalars['String']['input'];
20866
21160
  };
20867
21161
  export declare type CreatePolarisCommentInput = {
@@ -20974,6 +21268,7 @@ export declare type CreateSpaceAdditionalSettingsInput = {
20974
21268
  export declare type CreateSpaceInput = {
20975
21269
  additionalSettings?: InputMaybe<CreateSpaceAdditionalSettingsInput>;
20976
21270
  copySpacePermissionsFromSpaceKey?: InputMaybe<Scalars['String']['input']>;
21271
+ createSpaceContent?: InputMaybe<Array<InputMaybe<ConfluenceCreateSpaceContent>>>;
20977
21272
  initialPermissionOption?: InputMaybe<InitialPermissionOptions>;
20978
21273
  spaceKey: Scalars['String']['input'];
20979
21274
  spaceLogoDataURI?: InputMaybe<Scalars['String']['input']>;
@@ -21348,6 +21643,12 @@ export declare type CsmAiUpdateAgentConversationStarterInput = {
21348
21643
  id: Scalars['ID']['input'];
21349
21644
  message?: InputMaybe<Scalars['String']['input']>;
21350
21645
  };
21646
+ export declare type CsmAiUpdateAgentIdentityPayload = Payload & {
21647
+ __typename?: 'CsmAiUpdateAgentIdentityPayload';
21648
+ agentIdentityConfig?: Maybe<CsmAiAgentIdentity>;
21649
+ errors?: Maybe<Array<MutationError>>;
21650
+ success: Scalars['Boolean']['output'];
21651
+ };
21351
21652
  export declare type CsmAiUpdateAgentInput = {
21352
21653
  addedConversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
21353
21654
  companyDescription?: InputMaybe<Scalars['String']['input']>;
@@ -23444,6 +23745,24 @@ export declare type DevAiGetSupportedReposArgs = {
23444
23745
  repoUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
23445
23746
  workspaceId: Scalars['ID']['input'];
23446
23747
  };
23748
+ export declare type DevAiAddContainerConfigSecretPayload = Payload & {
23749
+ __typename?: 'DevAiAddContainerConfigSecretPayload';
23750
+ containerConfig?: Maybe<DevAiContainerConfig>;
23751
+ errors?: Maybe<Array<MutationError>>;
23752
+ success: Scalars['Boolean']['output'];
23753
+ };
23754
+ export declare type DevAiAddContainerConfigStartupScriptPayload = Payload & {
23755
+ __typename?: 'DevAiAddContainerConfigStartupScriptPayload';
23756
+ containerConfig?: Maybe<DevAiContainerConfig>;
23757
+ errors?: Maybe<Array<MutationError>>;
23758
+ success: Scalars['Boolean']['output'];
23759
+ };
23760
+ export declare type DevAiAddContainerConfigVariablePayload = Payload & {
23761
+ __typename?: 'DevAiAddContainerConfigVariablePayload';
23762
+ containerConfig?: Maybe<DevAiContainerConfig>;
23763
+ errors?: Maybe<Array<MutationError>>;
23764
+ success: Scalars['Boolean']['output'];
23765
+ };
23447
23766
  export declare type DevAiArchivedTechnicalPlannerJobPayload = Payload & {
23448
23767
  __typename?: 'DevAiArchivedTechnicalPlannerJobPayload';
23449
23768
  errors?: Maybe<Array<MutationError>>;
@@ -23667,6 +23986,29 @@ export declare type DevAiCancelRunningAutofixScanInput = {
23667
23986
  repoUrl: Scalars['URL']['input'];
23668
23987
  workspaceId: Scalars['ID']['input'];
23669
23988
  };
23989
+ export declare type DevAiContainerConfig = {
23990
+ __typename?: 'DevAiContainerConfig';
23991
+ id: Scalars['ID']['output'];
23992
+ memoryFile?: Maybe<DevAiContainerConfigMemoryFile>;
23993
+ repository?: Maybe<DevAiFlowRepository>;
23994
+ secrets?: Maybe<Array<Maybe<DevAiContainerConfigSecret>>>;
23995
+ setupScript?: Maybe<Scalars['String']['output']>;
23996
+ variables?: Maybe<Array<Maybe<DevAiContainerConfigVariable>>>;
23997
+ };
23998
+ export declare type DevAiContainerConfigMemoryFile = {
23999
+ __typename?: 'DevAiContainerConfigMemoryFile';
24000
+ filePath?: Maybe<Scalars['String']['output']>;
24001
+ fileUrl?: Maybe<Scalars['URL']['output']>;
24002
+ };
24003
+ export declare type DevAiContainerConfigSecret = {
24004
+ __typename?: 'DevAiContainerConfigSecret';
24005
+ name?: Maybe<Scalars['String']['output']>;
24006
+ };
24007
+ export declare type DevAiContainerConfigVariable = {
24008
+ __typename?: 'DevAiContainerConfigVariable';
24009
+ name?: Maybe<Scalars['String']['output']>;
24010
+ value?: Maybe<Scalars['String']['output']>;
24011
+ };
23670
24012
  export declare type DevAiCreateTechnicalPlannerJobPayload = Payload & {
23671
24013
  __typename?: 'DevAiCreateTechnicalPlannerJobPayload';
23672
24014
  errors?: Maybe<Array<MutationError>>;
@@ -23863,6 +24205,18 @@ export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
23863
24205
  status?: Maybe<DevAiAutodevLogStatus>;
23864
24206
  timestamp?: Maybe<Scalars['DateTime']['output']>;
23865
24207
  };
24208
+ export declare type DevAiRemoveContainerConfigSecretPayload = Payload & {
24209
+ __typename?: 'DevAiRemoveContainerConfigSecretPayload';
24210
+ containerConfig?: Maybe<DevAiContainerConfig>;
24211
+ errors?: Maybe<Array<MutationError>>;
24212
+ success: Scalars['Boolean']['output'];
24213
+ };
24214
+ export declare type DevAiRemoveContainerConfigVariablePayload = Payload & {
24215
+ __typename?: 'DevAiRemoveContainerConfigVariablePayload';
24216
+ containerConfig?: Maybe<DevAiContainerConfig>;
24217
+ errors?: Maybe<Array<MutationError>>;
24218
+ success: Scalars['Boolean']['output'];
24219
+ };
23866
24220
  export declare type DevAiRovoAgent = {
23867
24221
  __typename?: 'DevAiRovoAgent';
23868
24222
  actionConfig?: Maybe<Array<Maybe<DevAiRovoAgentActionConfig>>>;
@@ -24070,6 +24424,12 @@ export declare type DevAiRunAutofixScanInput = {
24070
24424
  restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
24071
24425
  workspaceId: Scalars['ID']['input'];
24072
24426
  };
24427
+ export declare type DevAiSavedPrompt = {
24428
+ __typename?: 'DevAiSavedPrompt';
24429
+ contents?: Maybe<Scalars['String']['output']>;
24430
+ path?: Maybe<Scalars['String']['output']>;
24431
+ repoName?: Maybe<Scalars['String']['output']>;
24432
+ };
24073
24433
  export declare enum DevAiScanIntervalUnit {
24074
24434
  Days = "DAYS",
24075
24435
  Months = "MONTHS",
@@ -30330,6 +30690,7 @@ export declare type GraphIntegrationDirectoryFilterDimension = {
30330
30690
  export declare type GraphIntegrationDirectoryFilterDimensionConnection = {
30331
30691
  __typename?: 'GraphIntegrationDirectoryFilterDimensionConnection';
30332
30692
  edges?: Maybe<Array<GraphIntegrationDirectoryFilterDimensionEdge>>;
30693
+ error?: Maybe<QueryError>;
30333
30694
  pageInfo: PageInfo;
30334
30695
  };
30335
30696
  export declare type GraphIntegrationDirectoryFilterDimensionEdge = {
@@ -30341,6 +30702,7 @@ export declare type GraphIntegrationDirectoryItem = GraphIntegrationMcpServer |
30341
30702
  export declare type GraphIntegrationDirectoryItemConnection = {
30342
30703
  __typename?: 'GraphIntegrationDirectoryItemConnection';
30343
30704
  edges: Array<GraphIntegrationDirectoryItemEdge>;
30705
+ error?: Maybe<QueryError>;
30344
30706
  pageInfo: PageInfo;
30345
30707
  };
30346
30708
  export declare type GraphIntegrationDirectoryItemEdge = {
@@ -30355,6 +30717,7 @@ export declare enum GraphIntegrationDirectoryItemType {
30355
30717
  export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
30356
30718
  __typename?: 'GraphIntegrationMcpAdminManagementMcpServerConnection';
30357
30719
  edges?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpServerEdge>>;
30720
+ error?: Maybe<QueryError>;
30358
30721
  nodes?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpServerNode>>;
30359
30722
  pageInfo: PageInfo;
30360
30723
  };
@@ -30363,6 +30726,11 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerEdge = {
30363
30726
  cursor: Scalars['String']['output'];
30364
30727
  node?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
30365
30728
  };
30729
+ export declare type GraphIntegrationMcpAdminManagementMcpServerMetaData = {
30730
+ __typename?: 'GraphIntegrationMcpAdminManagementMcpServerMetaData';
30731
+ iconKey: Scalars['String']['output'];
30732
+ iconUrl: Scalars['String']['output'];
30733
+ };
30366
30734
  export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
30367
30735
  __typename?: 'GraphIntegrationMcpAdminManagementMcpServerNode';
30368
30736
  authConsentUrl?: Maybe<Scalars['URL']['output']>;
@@ -30396,6 +30764,7 @@ export declare type GraphIntegrationMcpAdminManagementMcpToolConfigurationInput
30396
30764
  export declare type GraphIntegrationMcpAdminManagementMcpToolConnection = {
30397
30765
  __typename?: 'GraphIntegrationMcpAdminManagementMcpToolConnection';
30398
30766
  edges?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolEdge>>;
30767
+ error?: Maybe<QueryError>;
30399
30768
  nodes?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolNode>>;
30400
30769
  pageInfo: PageInfo;
30401
30770
  };
@@ -33209,6 +33578,8 @@ export declare type GraphStore = {
33209
33578
  atlasProjectIsTrackedOnJiraEpicInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection>;
33210
33579
  atlasProjectIsTrackedOnJiraEpicInverseRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
33211
33580
  atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
33581
+ atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
33582
+ atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
33212
33583
  boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
33213
33584
  boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
33214
33585
  branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
@@ -34297,6 +34668,20 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs =
34297
34668
  first?: InputMaybe<Scalars['Int']['input']>;
34298
34669
  id: Scalars['ID']['input'];
34299
34670
  };
34671
+ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemArgs = {
34672
+ after?: InputMaybe<Scalars['String']['input']>;
34673
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34674
+ first?: InputMaybe<Scalars['Int']['input']>;
34675
+ id: Scalars['ID']['input'];
34676
+ sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
34677
+ };
34678
+ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
34679
+ after?: InputMaybe<Scalars['String']['input']>;
34680
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
34681
+ first?: InputMaybe<Scalars['Int']['input']>;
34682
+ id: Scalars['ID']['input'];
34683
+ sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
34684
+ };
34300
34685
  export declare type GraphStoreBoardBelongsToProjectArgs = {
34301
34686
  after?: InputMaybe<Scalars['String']['input']>;
34302
34687
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -39444,6 +39829,9 @@ export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
39444
39829
  export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
39445
39830
  lastModified?: InputMaybe<GraphStoreSortInput>;
39446
39831
  };
39832
+ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
39833
+ lastModified?: InputMaybe<GraphStoreSortInput>;
39834
+ };
39447
39835
  export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection = HasPageInfo & {
39448
39836
  __typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection';
39449
39837
  edges: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectEdge>>;
@@ -46932,6 +47320,34 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEd
46932
47320
  };
46933
47321
  export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseUnion = TownsquareProject;
46934
47322
  export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion = JiraIssue;
47323
+ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection = HasPageInfo & {
47324
+ __typename?: 'GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection';
47325
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemEdge>>>;
47326
+ pageInfo: PageInfo;
47327
+ };
47328
+ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemEdge = {
47329
+ __typename?: 'GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemEdge';
47330
+ createdAt: Scalars['DateTime']['output'];
47331
+ cursor?: Maybe<Scalars['String']['output']>;
47332
+ id: Scalars['ID']['output'];
47333
+ lastUpdated: Scalars['DateTime']['output'];
47334
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion>;
47335
+ };
47336
+ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection = HasPageInfo & {
47337
+ __typename?: 'GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection';
47338
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseEdge>>>;
47339
+ pageInfo: PageInfo;
47340
+ };
47341
+ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseEdge = {
47342
+ __typename?: 'GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseEdge';
47343
+ createdAt: Scalars['DateTime']['output'];
47344
+ cursor?: Maybe<Scalars['String']['output']>;
47345
+ id: Scalars['ID']['output'];
47346
+ lastUpdated: Scalars['DateTime']['output'];
47347
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion>;
47348
+ };
47349
+ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
47350
+ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
46935
47351
  export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
46936
47352
  __typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
46937
47353
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
@@ -56729,6 +57145,9 @@ export declare enum HelpCenterDescriptionType {
56729
57145
  RichText = "RICH_TEXT",
56730
57146
  WikiMarkup = "WIKI_MARKUP"
56731
57147
  }
57148
+ export declare type HelpCenterFilter = {
57149
+ type?: InputMaybe<HelpCenterType>;
57150
+ };
56732
57151
  export declare type HelpCenterHelpObject = HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError | HelpObjectStoreRequestForm;
56733
57152
  export declare type HelpCenterHomePageLayout = {
56734
57153
  __typename?: 'HelpCenterHomePageLayout';
@@ -57123,6 +57542,7 @@ export declare type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
57123
57542
  };
57124
57543
  export declare type HelpCenterQueryApiHelpCentersArgs = {
57125
57544
  after?: InputMaybe<Scalars['String']['input']>;
57545
+ filter?: InputMaybe<HelpCenterFilter>;
57126
57546
  first?: InputMaybe<Scalars['Int']['input']>;
57127
57547
  sortOrder: HelpCenterSortOrder;
57128
57548
  workspaceAri: Scalars['ID']['input'];
@@ -59461,6 +59881,16 @@ export declare type JiraActivitySortOrderPayload = Payload & {
59461
59881
  errors?: Maybe<Array<MutationError>>;
59462
59882
  success: Scalars['Boolean']['output'];
59463
59883
  };
59884
+ export declare type JiraAddAttachmentInput = {
59885
+ fileId: Scalars['String']['input'];
59886
+ issue: Scalars['ID']['input'];
59887
+ };
59888
+ export declare type JiraAddAttachmentPayload = {
59889
+ __typename?: 'JiraAddAttachmentPayload';
59890
+ attachment?: Maybe<JiraAttachment>;
59891
+ errors?: Maybe<Array<MutationError>>;
59892
+ success: Scalars['Boolean']['output'];
59893
+ };
59464
59894
  export declare type JiraAddCommentInput = {
59465
59895
  content: JiraAdfInput;
59466
59896
  issueId: Scalars['ID']['input'];
@@ -60040,6 +60470,50 @@ export declare type JiraAssignableUsersEdge = {
60040
60470
  cursor: Scalars['String']['output'];
60041
60471
  node?: Maybe<User>;
60042
60472
  };
60473
+ export declare type JiraAssociateProjectToFieldSchemeInput = {
60474
+ fieldConfigSchemeId?: InputMaybe<Scalars['ID']['input']>;
60475
+ fieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
60476
+ projectIds: Array<Scalars['ID']['input']>;
60477
+ };
60478
+ export declare type JiraAssociateProjectToFieldSchemePayload = {
60479
+ __typename?: 'JiraAssociateProjectToFieldSchemePayload';
60480
+ affectedFieldSchemes?: Maybe<Array<Maybe<JiraFieldScheme>>>;
60481
+ errors?: Maybe<Array<MutationError>>;
60482
+ success: Scalars['Boolean']['output'];
60483
+ };
60484
+ export declare type JiraAtlasProject = {
60485
+ __typename?: 'JiraAtlasProject';
60486
+ dueDate?: Maybe<Scalars['Date']['output']>;
60487
+ dueDateConfidence?: Maybe<Scalars['String']['output']>;
60488
+ iconName?: Maybe<Scalars['String']['output']>;
60489
+ id: Scalars['ID']['output'];
60490
+ key?: Maybe<Scalars['String']['output']>;
60491
+ name?: Maybe<Scalars['String']['output']>;
60492
+ ownerAaid?: Maybe<Scalars['String']['output']>;
60493
+ privateProject?: Maybe<Scalars['Boolean']['output']>;
60494
+ startDate?: Maybe<Scalars['Date']['output']>;
60495
+ state?: Maybe<Scalars['String']['output']>;
60496
+ version?: Maybe<Scalars['Int']['output']>;
60497
+ workspaceAri?: Maybe<Scalars['String']['output']>;
60498
+ };
60499
+ export declare type JiraAtlasProjectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
60500
+ __typename?: 'JiraAtlasProjectField';
60501
+ aliasFieldId?: Maybe<Scalars['ID']['output']>;
60502
+ description?: Maybe<Scalars['String']['output']>;
60503
+ fieldConfig?: Maybe<JiraFieldConfig>;
60504
+ fieldId: Scalars['String']['output'];
60505
+ fieldOperations?: Maybe<JiraFieldOperation>;
60506
+ id: Scalars['ID']['output'];
60507
+ isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
60508
+ isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
60509
+ isRelationshipEditable?: Maybe<Scalars['Boolean']['output']>;
60510
+ isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
60511
+ issue?: Maybe<JiraIssue>;
60512
+ name: Scalars['String']['output'];
60513
+ project?: Maybe<JiraAtlasProject>;
60514
+ type: Scalars['String']['output'];
60515
+ userFieldConfig?: Maybe<JiraUserFieldConfig>;
60516
+ };
60043
60517
  export declare type JiraAtlassianIntelligenceAction = JiraAccessAtlassianIntelligenceFeature | JiraContactOrgAdminToEnableAtlassianIntelligence | JiraEnableAtlassianIntelligenceDeepLink;
60044
60518
  export declare enum JiraAtlassianIntelligenceFeatureEnum {
60045
60519
  AiMate = "AI_MATE",
@@ -60196,6 +60670,10 @@ export declare type JiraAttachmentSortInput = {
60196
60670
  field: JiraAttachmentSortField;
60197
60671
  order?: SortDirection;
60198
60672
  };
60673
+ export declare type JiraAttachmentWithFilterEdge = {
60674
+ __typename?: 'JiraAttachmentWithFilterEdge';
60675
+ node?: Maybe<JiraPlatformAttachment>;
60676
+ };
60199
60677
  export declare type JiraAttachmentWithFiltersInput = {
60200
60678
  filters?: InputMaybe<JiraIssueAttachmentFilterInput>;
60201
60679
  issueKey?: InputMaybe<Scalars['String']['input']>;
@@ -60207,6 +60685,7 @@ export declare type JiraAttachmentWithFiltersInput = {
60207
60685
  export declare type JiraAttachmentWithFiltersResult = {
60208
60686
  __typename?: 'JiraAttachmentWithFiltersResult';
60209
60687
  deletableCount?: Maybe<Scalars['Long']['output']>;
60688
+ edges?: Maybe<Array<Maybe<JiraAttachmentWithFilterEdge>>>;
60210
60689
  nodes?: Maybe<Array<Maybe<JiraPlatformAttachment>>>;
60211
60690
  totalCount?: Maybe<Scalars['Long']['output']>;
60212
60691
  };
@@ -60563,7 +61042,7 @@ export declare type JiraBacklogColumn = {
60563
61042
  __typename?: 'JiraBacklogColumn';
60564
61043
  id?: Maybe<Scalars['Long']['output']>;
60565
61044
  name?: Maybe<Scalars['String']['output']>;
60566
- statusIds?: Maybe<Array<Maybe<Scalars['Long']['output']>>>;
61045
+ statusIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
60567
61046
  };
60568
61047
  export declare type JiraBacklogColumnStatistic = {
60569
61048
  __typename?: 'JiraBacklogColumnStatistic';
@@ -60611,8 +61090,8 @@ export declare type JiraBacklogEstimationConfig = {
60611
61090
  export declare type JiraBacklogExtraField = {
60612
61091
  __typename?: 'JiraBacklogExtraField';
60613
61092
  editable?: Maybe<Scalars['Boolean']['output']>;
61093
+ fieldName: Scalars['String']['output'];
60614
61094
  html?: Maybe<Scalars['String']['output']>;
60615
- id: Scalars['ID']['output'];
60616
61095
  label?: Maybe<Scalars['String']['output']>;
60617
61096
  renderer?: Maybe<Scalars['String']['output']>;
60618
61097
  };
@@ -60681,7 +61160,7 @@ export declare type JiraBacklogIssueEpicLinkField = {
60681
61160
  editable?: Maybe<Scalars['Boolean']['output']>;
60682
61161
  epicColor?: Maybe<Scalars['String']['output']>;
60683
61162
  epicKey?: Maybe<Scalars['String']['output']>;
60684
- id: Scalars['ID']['output'];
61163
+ fieldId?: Maybe<Scalars['String']['output']>;
60685
61164
  issueId?: Maybe<Scalars['Long']['output']>;
60686
61165
  issueTypeIconUrl?: Maybe<Scalars['String']['output']>;
60687
61166
  issueTypeId?: Maybe<Scalars['String']['output']>;
@@ -60702,11 +61181,17 @@ export declare type JiraBacklogMappedColumn = {
60702
61181
  __typename?: 'JiraBacklogMappedColumn';
60703
61182
  id: Scalars['Long']['output'];
60704
61183
  isKanPlanColumn?: Maybe<Scalars['Boolean']['output']>;
60705
- mappedStatuses?: Maybe<Array<Maybe<JiraBacklogStatusDetails>>>;
61184
+ mappedStatuses?: Maybe<Array<Maybe<JiraBacklogMappedStatus>>>;
60706
61185
  max?: Maybe<Scalars['String']['output']>;
60707
61186
  min?: Maybe<Scalars['String']['output']>;
60708
61187
  name?: Maybe<Scalars['String']['output']>;
60709
61188
  };
61189
+ export declare type JiraBacklogMappedStatus = {
61190
+ __typename?: 'JiraBacklogMappedStatus';
61191
+ isInitial?: Maybe<Scalars['Boolean']['output']>;
61192
+ isResolutionDone?: Maybe<Scalars['Boolean']['output']>;
61193
+ status?: Maybe<JiraBacklogStatus>;
61194
+ };
60710
61195
  export declare type JiraBacklogProject = {
60711
61196
  __typename?: 'JiraBacklogProject';
60712
61197
  id?: Maybe<Scalars['Long']['output']>;
@@ -60811,16 +61296,6 @@ export declare type JiraBacklogStatusCategory = {
60811
61296
  id: Scalars['ID']['output'];
60812
61297
  key?: Maybe<Scalars['String']['output']>;
60813
61298
  };
60814
- export declare type JiraBacklogStatusDetails = {
60815
- __typename?: 'JiraBacklogStatusDetails';
60816
- description?: Maybe<Scalars['String']['output']>;
60817
- iconUrl?: Maybe<Scalars['String']['output']>;
60818
- id: Scalars['ID']['output'];
60819
- isInitial?: Maybe<Scalars['Boolean']['output']>;
60820
- isResolutionDone?: Maybe<Scalars['Boolean']['output']>;
60821
- name?: Maybe<Scalars['String']['output']>;
60822
- statusCategory?: Maybe<JiraBacklogStatusCategory>;
60823
- };
60824
61299
  export declare enum JiraBacklogStrategy {
60825
61300
  IssueList = "ISSUE_LIST",
60826
61301
  KanbanBacklog = "KANBAN_BACKLOG",
@@ -61177,6 +61652,7 @@ export declare type JiraBulkCleanupProjectsPayload = Payload & {
61177
61652
  success: Scalars['Boolean']['output'];
61178
61653
  };
61179
61654
  export declare type JiraBulkCreateIssueLinksInput = {
61655
+ direction?: InputMaybe<JiraIssueLinkDirection>;
61180
61656
  issueLinkTypeId: Scalars['ID']['input'];
61181
61657
  sourceIssueId: Scalars['ID']['input'];
61182
61658
  targetIssueIds: Array<Scalars['ID']['input']>;
@@ -63530,6 +64006,7 @@ export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView &
63530
64006
  isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
63531
64007
  isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
63532
64008
  issues?: Maybe<JiraIssueConnection>;
64009
+ jql?: Maybe<Scalars['String']['output']>;
63533
64010
  namespace?: Maybe<Scalars['String']['output']>;
63534
64011
  savedViewId?: Maybe<Scalars['ID']['output']>;
63535
64012
  viewId?: Maybe<Scalars['String']['output']>;
@@ -64291,6 +64768,7 @@ export declare type JiraFieldConfigEdge = {
64291
64768
  node?: Maybe<JiraIssueFieldConfig>;
64292
64769
  };
64293
64770
  export declare type JiraFieldConfigFilterInput = {
64771
+ addConnectAndForgeFieldsToIncludedFieldTypes?: InputMaybe<Scalars['Boolean']['input']>;
64294
64772
  aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
64295
64773
  cloudId: Scalars['ID']['input'];
64296
64774
  fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -64401,6 +64879,7 @@ export declare type JiraFieldScheme = Node & {
64401
64879
  description?: Maybe<Scalars['String']['output']>;
64402
64880
  fieldsCount?: Maybe<Scalars['Int']['output']>;
64403
64881
  id: Scalars['ID']['output'];
64882
+ isDefault?: Maybe<Scalars['Boolean']['output']>;
64404
64883
  name?: Maybe<Scalars['String']['output']>;
64405
64884
  projectsCount?: Maybe<Scalars['Int']['output']>;
64406
64885
  schemeId?: Maybe<Scalars['ID']['output']>;
@@ -65528,6 +66007,11 @@ export declare enum JiraHomePageType {
65528
66007
  ProjectsDirectory = "PROJECTS_DIRECTORY",
65529
66008
  YourWork = "YOUR_WORK"
65530
66009
  }
66010
+ export declare type JiraHydrateJqlInput = {
66011
+ filterId?: InputMaybe<Scalars['ID']['input']>;
66012
+ jql?: InputMaybe<Scalars['String']['input']>;
66013
+ lastUsedJqlForIssueNavigator?: InputMaybe<JiraJqlScopeInput>;
66014
+ };
65531
66015
  export declare enum JiraIncidentPriority {
65532
66016
  P1 = "P1",
65533
66017
  P2 = "P2",
@@ -65566,6 +66050,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
65566
66050
  archivedOn?: Maybe<Scalars['DateTime']['output']>;
65567
66051
  assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
65568
66052
  attachments?: Maybe<JiraAttachmentConnection>;
66053
+ attachmentsWithFilters?: Maybe<JiraAttachmentWithFiltersResult>;
65569
66054
  autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
65570
66055
  canBeExported?: Maybe<Scalars['Boolean']['output']>;
65571
66056
  canCreateSubtask?: Maybe<Scalars['Boolean']['output']>;
@@ -65693,6 +66178,9 @@ export declare type JiraIssueAttachmentsArgs = {
65693
66178
  last?: InputMaybe<Scalars['Int']['input']>;
65694
66179
  sortBy?: InputMaybe<JiraAttachmentSortInput>;
65695
66180
  };
66181
+ export declare type JiraIssueAttachmentsWithFiltersArgs = {
66182
+ input?: InputMaybe<JiraAttachmentWithFiltersInput>;
66183
+ };
65696
66184
  export declare type JiraIssueCanHaveChildIssuesArgs = {
65697
66185
  projectKey?: InputMaybe<Scalars['String']['input']>;
65698
66186
  };
@@ -66300,8 +66788,6 @@ export declare type JiraIssueFieldConfig = Node & {
66300
66788
  associatedScreensV2?: Maybe<JiraScreenConnection>;
66301
66789
  availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
66302
66790
  availableWorkTypes?: Maybe<JiraIssueTypeConnection>;
66303
- availableWorkTypesFromSchemesProjects?: Maybe<JiraIssueTypeConnection>;
66304
- availableWorkTypesJiraWide?: Maybe<JiraIssueTypeConnection>;
66305
66791
  customId?: Maybe<Scalars['Int']['output']>;
66306
66792
  dateCreated?: Maybe<Scalars['DateTime']['output']>;
66307
66793
  dateCreatedTimestamp?: Maybe<Scalars['Long']['output']>;
@@ -66389,16 +66875,6 @@ export declare type JiraIssueFieldConfigAvailableWorkTypesArgs = {
66389
66875
  first?: InputMaybe<Scalars['Int']['input']>;
66390
66876
  input?: InputMaybe<JiraFieldAvailableWorkTypesInput>;
66391
66877
  };
66392
- export declare type JiraIssueFieldConfigAvailableWorkTypesFromSchemesProjectsArgs = {
66393
- after?: InputMaybe<Scalars['String']['input']>;
66394
- first?: InputMaybe<Scalars['Int']['input']>;
66395
- input?: InputMaybe<JiraFieldAvailableWorkTypesInput>;
66396
- };
66397
- export declare type JiraIssueFieldConfigAvailableWorkTypesJiraWideArgs = {
66398
- after?: InputMaybe<Scalars['String']['input']>;
66399
- first?: InputMaybe<Scalars['Int']['input']>;
66400
- nameFilter?: InputMaybe<Scalars['String']['input']>;
66401
- };
66402
66878
  export declare type JiraIssueFieldConfigDefaultFieldOptionsArgs = {
66403
66879
  after?: InputMaybe<Scalars['String']['input']>;
66404
66880
  before?: InputMaybe<Scalars['String']['input']>;
@@ -66694,6 +67170,7 @@ export declare type JiraIssueLinkConnection = {
66694
67170
  totalCount?: Maybe<Scalars['Int']['output']>;
66695
67171
  };
66696
67172
  export declare enum JiraIssueLinkDirection {
67173
+ Both = "BOTH",
66697
67174
  Inward = "INWARD",
66698
67175
  Outward = "OUTWARD"
66699
67176
  }
@@ -67145,6 +67622,7 @@ export declare type JiraIssueSearchInput = {
67145
67622
  customInput?: InputMaybe<JiraIssueSearchCustomInput>;
67146
67623
  filterId?: InputMaybe<Scalars['String']['input']>;
67147
67624
  jql?: InputMaybe<Scalars['String']['input']>;
67625
+ searchWithLastUsedJql?: InputMaybe<Scalars['Boolean']['input']>;
67148
67626
  };
67149
67627
  export declare type JiraIssueSearchMetadataField = {
67150
67628
  __typename?: 'JiraIssueSearchMetadataField';
@@ -67215,6 +67693,7 @@ export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
67215
67693
  id: Scalars['ID']['output'];
67216
67694
  isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
67217
67695
  isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
67696
+ jql?: Maybe<Scalars['String']['output']>;
67218
67697
  namespace?: Maybe<Scalars['String']['output']>;
67219
67698
  savedViewId?: Maybe<Scalars['ID']['output']>;
67220
67699
  viewConfigSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
@@ -67312,6 +67791,7 @@ export declare type JiraIssueSearchViewMetadata = {
67312
67791
  id: Scalars['ID']['output'];
67313
67792
  isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
67314
67793
  isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
67794
+ jql?: Maybe<Scalars['String']['output']>;
67315
67795
  namespace?: Maybe<Scalars['String']['output']>;
67316
67796
  savedViewId?: Maybe<Scalars['ID']['output']>;
67317
67797
  viewId?: Maybe<Scalars['String']['output']>;
@@ -67948,6 +68428,7 @@ export declare type JiraJqlBuilderFieldsArgs = {
67948
68428
  viewContext?: InputMaybe<JiraJqlViewContext>;
67949
68429
  };
67950
68430
  export declare type JiraJqlBuilderHydrateJqlQueryArgs = {
68431
+ input?: InputMaybe<JiraHydrateJqlInput>;
67951
68432
  query?: InputMaybe<Scalars['String']['input']>;
67952
68433
  scope?: InputMaybe<JiraJqlScopeInput>;
67953
68434
  viewContext?: InputMaybe<JiraJqlViewContext>;
@@ -68329,6 +68810,7 @@ export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
68329
68810
  export declare type JiraJqlScopeInput = {
68330
68811
  backlog?: InputMaybe<JiraJqlBacklogInput>;
68331
68812
  board?: InputMaybe<JiraJqlBoardInput>;
68813
+ list?: InputMaybe<JiraIssueSearchScope>;
68332
68814
  plan?: InputMaybe<JiraJqlPlanInput>;
68333
68815
  };
68334
68816
  export declare type JiraJqlSearchTemplate = {
@@ -69030,6 +69512,7 @@ export declare type JiraMultipleVersionPickerFieldPayload = Payload & {
69030
69512
  export declare type JiraMutation = {
69031
69513
  __typename?: 'JiraMutation';
69032
69514
  activitySortOrder?: Maybe<JiraActivitySortOrderPayload>;
69515
+ addAttachment?: Maybe<JiraAddAttachmentPayload>;
69033
69516
  addComment?: Maybe<JiraAddCommentPayload>;
69034
69517
  addFieldsToProject?: Maybe<JiraAddFieldsToProjectPayload>;
69035
69518
  addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
@@ -69189,6 +69672,7 @@ export declare type JiraMutation = {
69189
69672
  updateJiraJourneyName?: Maybe<JiraUpdateJourneyConfigurationPayload>;
69190
69673
  updateJiraJourneyParentIssueConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
69191
69674
  updateJiraJourneyTriggerConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
69675
+ updateJiraJourneyWorkItemConditions?: Maybe<JiraUpdateJourneyConfigurationPayload>;
69192
69676
  updateJiraVersion?: Maybe<JiraUpdateVersionPayload>;
69193
69677
  updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
69194
69678
  updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
@@ -69257,6 +69741,9 @@ export declare type JiraMutationActivitySortOrderArgs = {
69257
69741
  cloudId: Scalars['ID']['input'];
69258
69742
  orderBy: JiraIssueViewActivityFeedSortOrder;
69259
69743
  };
69744
+ export declare type JiraMutationAddAttachmentArgs = {
69745
+ input: JiraAddAttachmentInput;
69746
+ };
69260
69747
  export declare type JiraMutationAddCommentArgs = {
69261
69748
  input: JiraAddCommentInput;
69262
69749
  };
@@ -69792,6 +70279,10 @@ export declare type JiraMutationUpdateJiraJourneyTriggerConfigurationArgs = {
69792
70279
  cloudId: Scalars['ID']['input'];
69793
70280
  input: JiraUpdateJourneyTriggerConfigurationInput;
69794
70281
  };
70282
+ export declare type JiraMutationUpdateJiraJourneyWorkItemConditionsArgs = {
70283
+ cloudId: Scalars['ID']['input'];
70284
+ input: JiraUpdateJourneyWorkItemConditionsInput;
70285
+ };
69795
70286
  export declare type JiraMutationUpdateJiraVersionArgs = {
69796
70287
  input: JiraVersionUpdateMutationInput;
69797
70288
  };
@@ -71359,6 +71850,7 @@ export declare type JiraPlaybookStepUsageFilter = {
71359
71850
  export declare type JiraPlaybookTemplate = {
71360
71851
  __typename?: 'JiraPlaybookTemplate';
71361
71852
  category?: Maybe<PlaybookTemplateCategory>;
71853
+ categoryName?: Maybe<Scalars['String']['output']>;
71362
71854
  color?: Maybe<PlaybookTemplateColor>;
71363
71855
  description?: Maybe<Scalars['String']['output']>;
71364
71856
  estimatedTimeSaving?: Maybe<Scalars['Int']['output']>;
@@ -71374,6 +71866,7 @@ export declare type JiraPlaybookTemplate = {
71374
71866
  export declare type JiraPlaybookTemplateCategory = {
71375
71867
  __typename?: 'JiraPlaybookTemplateCategory';
71376
71868
  category?: Maybe<PlaybookTemplateCategory>;
71869
+ categoryName?: Maybe<Scalars['String']['output']>;
71377
71870
  cloudId: Scalars['ID']['output'];
71378
71871
  templates?: Maybe<JiraPlaybookTemplateConnection>;
71379
71872
  };
@@ -72484,6 +72977,7 @@ export declare type JiraQuery = {
72484
72977
  bulkOperationsMetadata?: Maybe<JiraIssueBulkOperationsMetadata>;
72485
72978
  canPerform?: Maybe<Scalars['Boolean']['output']>;
72486
72979
  childIssuesLimit?: Maybe<Scalars['Long']['output']>;
72980
+ cmdbSelectedObjectAttributes?: Maybe<JiraCmdbAttributeConnection>;
72487
72981
  containerNavigation?: Maybe<JiraContainerNavigationResult>;
72488
72982
  contextById?: Maybe<Array<Maybe<JiraContext>>>;
72489
72983
  customBackgrounds?: Maybe<JiraCustomBackgroundConnection>;
@@ -72605,6 +73099,7 @@ export declare type JiraQuery = {
72605
73099
  notificationGlobalPreference?: Maybe<JiraNotificationGlobalPreference>;
72606
73100
  notificationProjectPreference?: Maybe<JiraNotificationProjectPreferences>;
72607
73101
  notificationProjectPreferences?: Maybe<Array<Maybe<JiraNotificationProjectPreferences>>>;
73102
+ opsgenieBaseUrl?: Maybe<Scalars['URL']['output']>;
72608
73103
  permission?: Maybe<JiraPermission>;
72609
73104
  permissionSchemeGrants?: Maybe<JiraPermissionGrantValueConnection>;
72610
73105
  planById?: Maybe<JiraPlan>;
@@ -72792,6 +73287,15 @@ export declare type JiraQueryCanPerformArgs = {
72792
73287
  export declare type JiraQueryChildIssuesLimitArgs = {
72793
73288
  cloudId: Scalars['ID']['input'];
72794
73289
  };
73290
+ export declare type JiraQueryCmdbSelectedObjectAttributesArgs = {
73291
+ after?: InputMaybe<Scalars['String']['input']>;
73292
+ before?: InputMaybe<Scalars['String']['input']>;
73293
+ fieldId: Scalars['ID']['input'];
73294
+ first?: InputMaybe<Scalars['Int']['input']>;
73295
+ issueId: Scalars['ID']['input'];
73296
+ last?: InputMaybe<Scalars['Int']['input']>;
73297
+ objectAri: Scalars['ID']['input'];
73298
+ };
72795
73299
  export declare type JiraQueryContainerNavigationArgs = {
72796
73300
  input: JiraContainerNavigationQueryInput;
72797
73301
  };
@@ -73372,6 +73876,9 @@ export declare type JiraQueryNotificationProjectPreferencesArgs = {
73372
73876
  cloudId: Scalars['ID']['input'];
73373
73877
  projectIds: Array<Scalars['ID']['input']>;
73374
73878
  };
73879
+ export declare type JiraQueryOpsgenieBaseUrlArgs = {
73880
+ cloudId: Scalars['ID']['input'];
73881
+ };
73375
73882
  export declare type JiraQueryPermissionArgs = {
73376
73883
  cloudId: Scalars['ID']['input'];
73377
73884
  type: JiraPermissionType;
@@ -77485,8 +77992,11 @@ export declare type JiraUiModificationsContextInput = {
77485
77992
  };
77486
77993
  export declare enum JiraUiModificationsViewType {
77487
77994
  Gic = "GIC",
77995
+ GicAgentView = "GICAgentView",
77488
77996
  IssueTransition = "IssueTransition",
77997
+ IssueTransitionAgentView = "IssueTransitionAgentView",
77489
77998
  IssueView = "IssueView",
77999
+ IssueViewAgentView = "IssueViewAgentView",
77490
78000
  JsmRequestCreate = "JSMRequestCreate"
77491
78001
  }
77492
78002
  export declare type JiraUnlinkIssuesFromIncidentMutationInput = {
@@ -79263,6 +79773,9 @@ export declare type JiraWorkManagementFilter = Node & {
79263
79773
  jql?: Maybe<Scalars['String']['output']>;
79264
79774
  name?: Maybe<Scalars['String']['output']>;
79265
79775
  };
79776
+ export declare type JiraWorkManagementFilterJqlArgs = {
79777
+ includeProjectClause?: InputMaybe<Scalars['Boolean']['input']>;
79778
+ };
79266
79779
  export declare type JiraWorkManagementFilterConnection = {
79267
79780
  __typename?: 'JiraWorkManagementFilterConnection';
79268
79781
  edges?: Maybe<Array<Maybe<JiraWorkManagementFilterEdge>>>;
@@ -79579,21 +80092,103 @@ export declare type JiraWorklogPayload = Payload & {
79579
80092
  export declare type JiraWorklogSortInput = {
79580
80093
  order: SortDirection;
79581
80094
  };
80095
+ export declare type JpdInsightCreatedEvent = {
80096
+ __typename?: 'JpdInsightCreatedEvent';
80097
+ actorUserId: Scalars['ID']['output'];
80098
+ insight: PolarisInsight;
80099
+ insightAri: Scalars['ID']['output'];
80100
+ issueAri: Scalars['ID']['output'];
80101
+ performedAt: Scalars['String']['output'];
80102
+ projectAri: Scalars['ID']['output'];
80103
+ };
80104
+ export declare type JpdInsightDeletedEvent = {
80105
+ __typename?: 'JpdInsightDeletedEvent';
80106
+ actorUserId: Scalars['ID']['output'];
80107
+ insightAri: Scalars['ID']['output'];
80108
+ issueAri: Scalars['ID']['output'];
80109
+ performedAt: Scalars['String']['output'];
80110
+ projectAri: Scalars['ID']['output'];
80111
+ };
80112
+ export declare type JpdInsightUpdatedEvent = {
80113
+ __typename?: 'JpdInsightUpdatedEvent';
80114
+ actorUserId: Scalars['ID']['output'];
80115
+ insight: PolarisInsight;
80116
+ insightAri: Scalars['ID']['output'];
80117
+ issueAri: Scalars['ID']['output'];
80118
+ performedAt: Scalars['String']['output'];
80119
+ projectAri: Scalars['ID']['output'];
80120
+ };
79582
80121
  export declare type JpdSubscriptions = {
79583
80122
  __typename?: 'JpdSubscriptions';
80123
+ onInsightCreated?: Maybe<JpdInsightCreatedEvent>;
80124
+ onInsightDeleted?: Maybe<JpdInsightDeletedEvent>;
80125
+ onInsightUpdated?: Maybe<JpdInsightUpdatedEvent>;
80126
+ onIssueInsightCreated?: Maybe<JpdInsightCreatedEvent>;
80127
+ onIssueInsightDeleted?: Maybe<JpdInsightDeletedEvent>;
80128
+ onIssueInsightUpdated?: Maybe<JpdInsightUpdatedEvent>;
80129
+ onViewCommentEvents?: Maybe<JpdViewCommentEvent>;
79584
80130
  onViewCreated?: Maybe<JpdViewCreatedEvent>;
79585
80131
  onViewDeleted?: Maybe<JpdViewDeletedEvent>;
80132
+ onViewSetCreated?: Maybe<JpdViewSetCreatedEvent>;
80133
+ onViewSetDeleted?: Maybe<JpdViewSetDeletedEvent>;
80134
+ onViewSetUpdated?: Maybe<JpdViewSetUpdatedEvent>;
79586
80135
  onViewUpdated?: Maybe<JpdViewUpdatedEvent>;
79587
80136
  };
80137
+ export declare type JpdSubscriptionsOnInsightCreatedArgs = {
80138
+ projectAri: Scalars['ID']['input'];
80139
+ };
80140
+ export declare type JpdSubscriptionsOnInsightDeletedArgs = {
80141
+ projectAri: Scalars['ID']['input'];
80142
+ };
80143
+ export declare type JpdSubscriptionsOnInsightUpdatedArgs = {
80144
+ projectAri: Scalars['ID']['input'];
80145
+ };
80146
+ export declare type JpdSubscriptionsOnIssueInsightCreatedArgs = {
80147
+ issueAri: Scalars['ID']['input'];
80148
+ };
80149
+ export declare type JpdSubscriptionsOnIssueInsightDeletedArgs = {
80150
+ issueAri: Scalars['ID']['input'];
80151
+ };
80152
+ export declare type JpdSubscriptionsOnIssueInsightUpdatedArgs = {
80153
+ issueAri: Scalars['ID']['input'];
80154
+ };
80155
+ export declare type JpdSubscriptionsOnViewCommentEventsArgs = {
80156
+ projectAri: Scalars['ID']['input'];
80157
+ };
79588
80158
  export declare type JpdSubscriptionsOnViewCreatedArgs = {
80159
+ consumer?: InputMaybe<Scalars['String']['input']>;
79589
80160
  projectAri: Scalars['ID']['input'];
79590
80161
  };
79591
80162
  export declare type JpdSubscriptionsOnViewDeletedArgs = {
80163
+ consumer?: InputMaybe<Scalars['String']['input']>;
80164
+ projectAri: Scalars['ID']['input'];
80165
+ };
80166
+ export declare type JpdSubscriptionsOnViewSetCreatedArgs = {
80167
+ consumer?: InputMaybe<Scalars['String']['input']>;
80168
+ projectAri: Scalars['ID']['input'];
80169
+ };
80170
+ export declare type JpdSubscriptionsOnViewSetDeletedArgs = {
80171
+ consumer?: InputMaybe<Scalars['String']['input']>;
80172
+ projectAri: Scalars['ID']['input'];
80173
+ };
80174
+ export declare type JpdSubscriptionsOnViewSetUpdatedArgs = {
80175
+ consumer?: InputMaybe<Scalars['String']['input']>;
79592
80176
  projectAri: Scalars['ID']['input'];
79593
80177
  };
79594
80178
  export declare type JpdSubscriptionsOnViewUpdatedArgs = {
80179
+ consumer?: InputMaybe<Scalars['String']['input']>;
79595
80180
  projectAri: Scalars['ID']['input'];
79596
80181
  };
80182
+ export declare type JpdViewCommentEvent = {
80183
+ __typename?: 'JpdViewCommentEvent';
80184
+ actionMadeAt: Scalars['String']['output'];
80185
+ actionMadeByUserId: Scalars['ID']['output'];
80186
+ commentId: Scalars['Int']['output'];
80187
+ projectAri: Scalars['ID']['output'];
80188
+ type: Scalars['String']['output'];
80189
+ viewAri: Scalars['ID']['output'];
80190
+ viewId: Scalars['Int']['output'];
80191
+ };
79597
80192
  export declare type JpdViewCreatedDetails = {
79598
80193
  __typename?: 'JpdViewCreatedDetails';
79599
80194
  emoji?: Maybe<Scalars['String']['output']>;
@@ -79621,6 +80216,28 @@ export declare type JpdViewDeletedEvent = {
79621
80216
  viewId: Scalars['Int']['output'];
79622
80217
  viewUuid: Scalars['ID']['output'];
79623
80218
  };
80219
+ export declare type JpdViewSetCreatedEvent = {
80220
+ __typename?: 'JpdViewSetCreatedEvent';
80221
+ projectAri: Scalars['ID']['output'];
80222
+ viewSetAri: Scalars['ID']['output'];
80223
+ viewSetId: Scalars['Int']['output'];
80224
+ viewSetUuid: Scalars['ID']['output'];
80225
+ };
80226
+ export declare type JpdViewSetDeletedEvent = {
80227
+ __typename?: 'JpdViewSetDeletedEvent';
80228
+ projectAri: Scalars['ID']['output'];
80229
+ viewSetAri: Scalars['ID']['output'];
80230
+ viewSetId: Scalars['Int']['output'];
80231
+ viewSetUuid: Scalars['ID']['output'];
80232
+ };
80233
+ export declare type JpdViewSetUpdatedEvent = {
80234
+ __typename?: 'JpdViewSetUpdatedEvent';
80235
+ changes?: Maybe<Array<Scalars['String']['output']>>;
80236
+ projectAri: Scalars['ID']['output'];
80237
+ viewSetAri: Scalars['ID']['output'];
80238
+ viewSetId: Scalars['Int']['output'];
80239
+ viewSetUuid: Scalars['ID']['output'];
80240
+ };
79624
80241
  export declare type JpdViewUpdatedEvent = {
79625
80242
  __typename?: 'JpdViewUpdatedEvent';
79626
80243
  changes?: Maybe<Array<Scalars['String']['output']>>;
@@ -82912,8 +83529,10 @@ export declare type MarketplaceConsoleFeatureInput = {
82912
83529
  export declare type MarketplaceConsoleForgeAgcApp = {
82913
83530
  __typename?: 'MarketplaceConsoleForgeAgcApp';
82914
83531
  appId: Scalars['ID']['output'];
83532
+ envId?: Maybe<Scalars['String']['output']>;
82915
83533
  id: Scalars['ID']['output'];
82916
- name?: Maybe<Scalars['String']['output']>;
83534
+ latestVersion?: Maybe<MarketplaceConsoleForgeAppVersion>;
83535
+ name: Scalars['String']['output'];
82917
83536
  };
82918
83537
  export declare type MarketplaceConsoleForgeAgcAppError = MarketplaceConsoleError & {
82919
83538
  __typename?: 'MarketplaceConsoleForgeAgcAppError';
@@ -82922,6 +83541,13 @@ export declare type MarketplaceConsoleForgeAgcAppError = MarketplaceConsoleError
82922
83541
  subCode?: Maybe<Scalars['String']['output']>;
82923
83542
  };
82924
83543
  export declare type MarketplaceConsoleForgeAgcAppValidationResponse = MarketplaceConsoleForgeAgcApp | MarketplaceConsoleForgeAgcAppError;
83544
+ export declare type MarketplaceConsoleForgeAppVersion = {
83545
+ __typename?: 'MarketplaceConsoleForgeAppVersion';
83546
+ id: Scalars['ID']['output'];
83547
+ paymentModel: MarketplaceConsolePaymentModel;
83548
+ scopes?: Maybe<Array<Scalars['String']['output']>>;
83549
+ version: Scalars['String']['output'];
83550
+ };
82925
83551
  export declare type MarketplaceConsoleForgeFrameworkAttributes = {
82926
83552
  __typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
82927
83553
  appAccess?: Maybe<Array<Scalars['String']['output']>>;
@@ -85046,7 +85672,7 @@ export declare type MercuryChangeProposalUpdate = {
85046
85672
  id: Scalars['ID']['output'];
85047
85673
  updatedFields?: Maybe<Array<Scalars['String']['output']>>;
85048
85674
  };
85049
- export declare type MercuryChangeProposalsView = MercuryView & {
85675
+ export declare type MercuryChangeProposalsView = MercuryView & Node & {
85050
85676
  __typename?: 'MercuryChangeProposalsView';
85051
85677
  createdBy?: Maybe<User>;
85052
85678
  createdDate?: Maybe<Scalars['String']['output']>;
@@ -85624,6 +86250,16 @@ export declare type MercuryFocusAreaLinkedGoalSummary = {
85624
86250
  count: Scalars['Int']['output'];
85625
86251
  countIncludingSubFocusAreas?: Maybe<Scalars['Int']['output']>;
85626
86252
  };
86253
+ export declare type MercuryFocusAreaLinkedWorkContextData = {
86254
+ __typename?: 'MercuryFocusAreaLinkedWorkContextData';
86255
+ icon?: Maybe<Scalars['String']['output']>;
86256
+ key?: Maybe<Scalars['String']['output']>;
86257
+ name?: Maybe<Scalars['String']['output']>;
86258
+ originalWorkStatus?: Maybe<Scalars['String']['output']>;
86259
+ targetDateEnd?: Maybe<Scalars['String']['output']>;
86260
+ targetDateType?: Maybe<MercuryWorkTargetDateType>;
86261
+ url?: Maybe<Scalars['String']['output']>;
86262
+ };
85627
86263
  export declare type MercuryFocusAreaLinkedWorkSummary = {
85628
86264
  __typename?: 'MercuryFocusAreaLinkedWorkSummary';
85629
86265
  count: Scalars['Int']['output'];
@@ -85782,6 +86418,10 @@ export declare type MercuryFocusAreaType = {
85782
86418
  id: Scalars['ID']['output'];
85783
86419
  name: Scalars['String']['output'];
85784
86420
  };
86421
+ export declare type MercuryFocusAreaWorkContext = {
86422
+ __typename?: 'MercuryFocusAreaWorkContext';
86423
+ focusAreaLinkedWorkContext?: Maybe<Array<Maybe<MercuryFocusAreaLinkedWorkContextData>>>;
86424
+ };
85785
86425
  export declare type MercuryFundChangeSummary = {
85786
86426
  __typename?: 'MercuryFundChangeSummary';
85787
86427
  amount?: Maybe<MercuryFundChangeSummaryFields>;
@@ -86497,6 +87137,7 @@ export declare type MercuryQueryApi = {
86497
87137
  __typename?: 'MercuryQueryApi';
86498
87138
  aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
86499
87139
  aiFocusAreaSummary?: Maybe<MercuryFocusAreaSummary>;
87140
+ aiFocusAreaWorkContextData?: Maybe<MercuryFocusAreaWorkContext>;
86500
87141
  comments?: Maybe<MercuryCommentConnection>;
86501
87142
  commentsByAris?: Maybe<Array<Maybe<MercuryComment>>>;
86502
87143
  focusArea?: Maybe<MercuryFocusArea>;
@@ -86532,6 +87173,11 @@ export declare type MercuryQueryApiAiFocusAreaSummaryArgs = {
86532
87173
  cloudId: Scalars['ID']['input'];
86533
87174
  id: Scalars['ID']['input'];
86534
87175
  };
87176
+ export declare type MercuryQueryApiAiFocusAreaWorkContextDataArgs = {
87177
+ cloudId: Scalars['ID']['input'];
87178
+ id: Scalars['ID']['input'];
87179
+ maxDepth?: InputMaybe<Scalars['Int']['input']>;
87180
+ };
86535
87181
  export declare type MercuryQueryApiCommentsArgs = {
86536
87182
  after?: InputMaybe<Scalars['String']['input']>;
86537
87183
  cloudId: Scalars['ID']['input'];
@@ -87004,6 +87650,7 @@ export declare type MercuryStrategicEventsQueryApi = {
87004
87650
  changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
87005
87651
  changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
87006
87652
  changeProposalsView?: Maybe<MercuryChangeProposalsView>;
87653
+ changeProposalsViewList?: Maybe<Array<Maybe<MercuryChangeProposalsView>>>;
87007
87654
  changeProposalsViewSearch?: Maybe<MercuryChangeProposalsViewConnection>;
87008
87655
  changeSummariesReport?: Maybe<MercuryChangeSummaries>;
87009
87656
  changeSummaryByFocusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaChangeSummary>>>;
@@ -87046,10 +87693,14 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
87046
87693
  export declare type MercuryStrategicEventsQueryApiChangeProposalsViewArgs = {
87047
87694
  id: Scalars['ID']['input'];
87048
87695
  };
87696
+ export declare type MercuryStrategicEventsQueryApiChangeProposalsViewListArgs = {
87697
+ ids: Array<Scalars['ID']['input']>;
87698
+ };
87049
87699
  export declare type MercuryStrategicEventsQueryApiChangeProposalsViewSearchArgs = {
87050
87700
  after?: InputMaybe<Scalars['String']['input']>;
87051
87701
  cloudId?: InputMaybe<Scalars['ID']['input']>;
87052
87702
  first?: InputMaybe<Scalars['Int']['input']>;
87703
+ q?: InputMaybe<Scalars['String']['input']>;
87053
87704
  sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalsViewSort>>>;
87054
87705
  };
87055
87706
  export declare type MercuryStrategicEventsQueryApiChangeSummariesReportArgs = {
@@ -87297,9 +87948,9 @@ export declare type MercuryUpdateChangeProposalPayload = Payload & {
87297
87948
  updatedChangeProposal?: Maybe<MercuryChangeProposal>;
87298
87949
  };
87299
87950
  export declare type MercuryUpdateChangeProposalRankInViewInput = {
87951
+ beforeChangeProposalId?: InputMaybe<Scalars['ID']['input']>;
87300
87952
  changeProposalId: Scalars['ID']['input'];
87301
87953
  changeProposalsViewId: Scalars['ID']['input'];
87302
- markerChangeProposalId?: InputMaybe<Scalars['ID']['input']>;
87303
87954
  };
87304
87955
  export declare type MercuryUpdateChangeProposalRankInViewPayload = Payload & {
87305
87956
  __typename?: 'MercuryUpdateChangeProposalRankInViewPayload';
@@ -87508,6 +88159,11 @@ export declare enum MercuryViewType {
87508
88159
  RankingView = "RANKING_VIEW"
87509
88160
  }
87510
88161
  export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
88162
+ export declare enum MercuryWorkTargetDateType {
88163
+ Day = "DAY",
88164
+ Month = "MONTH",
88165
+ Quarter = "QUARTER"
88166
+ }
87511
88167
  export declare type MercuryWorkspaceConnectionStatus = {
87512
88168
  __typename?: 'MercuryWorkspaceConnectionStatus';
87513
88169
  isConnected: Scalars['Boolean']['output'];
@@ -87752,13 +88408,17 @@ export declare type Mutation = {
87752
88408
  admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
87753
88409
  admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
87754
88410
  admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
88411
+ admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
87755
88412
  admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
87756
88413
  admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
88414
+ admin_deleteInvitePolicy?: Maybe<AdminDeleteInvitePolicyResponsePayload>;
87757
88415
  admin_impersonateUser?: Maybe<AdminImpersonationResponsePayload>;
88416
+ admin_invite?: Maybe<AdminInviteResponsePayload>;
87758
88417
  admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
87759
88418
  admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
87760
88419
  admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
87761
88420
  admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
88421
+ admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
87762
88422
  agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
87763
88423
  agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
87764
88424
  agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
@@ -87766,6 +88426,7 @@ export declare type Mutation = {
87766
88426
  agentStudio_deleteScenario?: Maybe<AgentStudioDeleteScenarioPayload>;
87767
88427
  agentStudio_removeActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
87768
88428
  agentStudio_removeGroupsFromCreatePermission?: Maybe<AgentStudioRemoveGroupsFromCreatePermissionPayload>;
88429
+ agentStudio_setWidgetByContainerAri?: Maybe<AgentStudioSetWidgetByContainerAriPayload>;
87769
88430
  agentStudio_updateActorRoles?: Maybe<AgentStudioUpdateAgentPermissionPayload>;
87770
88431
  agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
87771
88432
  agentStudio_updateAgentAsFavourite?: Maybe<AgentStudioUpdateAgentAsFavouritePayload>;
@@ -87779,6 +88440,7 @@ export declare type Mutation = {
87779
88440
  appStorage?: Maybe<AppStorageMutation>;
87780
88441
  appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
87781
88442
  appStorage_admin?: Maybe<AppStorageAdminMutation>;
88443
+ appStorage_kvsAdmin?: Maybe<AppStorageKvsAdminMutation>;
87782
88444
  applyPolarisProjectTemplate?: Maybe<ApplyPolarisProjectTemplatePayload>;
87783
88445
  archivePages?: Maybe<BulkArchivePagePayload>;
87784
88446
  archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
@@ -87879,6 +88541,7 @@ export declare type Mutation = {
87879
88541
  confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
87880
88542
  confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
87881
88543
  confluence_updateAnswer?: Maybe<ConfluenceUpdateAnswerPayload>;
88544
+ confluence_updateCalendarPermissions?: Maybe<ConfluenceUpdateCalendarPermissionPayload>;
87882
88545
  confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
87883
88546
  confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
87884
88547
  confluence_updateCustomContentPermissions?: Maybe<ConfluenceUpdateCustomContentPermissionsPayload>;
@@ -87953,6 +88616,7 @@ export declare type Mutation = {
87953
88616
  createTemplate?: Maybe<ContentTemplate>;
87954
88617
  createWebTriggerUrl?: Maybe<CreateWebTriggerUrlResponse>;
87955
88618
  csmAi_createAction?: Maybe<CsmAiCreateActionPayload>;
88619
+ csmAi_createActionForAgent?: Maybe<CsmAiCreateActionPayload>;
87956
88620
  csmAi_createCoachingContent?: Maybe<CsmAiCreateCoachingContentPayload>;
87957
88621
  csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
87958
88622
  csmAi_deleteCoachingContent?: Maybe<CsmAiDeleteCoachingContentPayload>;
@@ -87961,6 +88625,7 @@ export declare type Mutation = {
87961
88625
  csmAi_restoreFromAgentVersion?: Maybe<CsmAiAgentVersionPayload>;
87962
88626
  csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
87963
88627
  csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
88628
+ csmAi_updateAgentIdentity?: Maybe<CsmAiUpdateAgentIdentityPayload>;
87964
88629
  csmAi_updateCoachingContent?: Maybe<CsmAiUpdateCoachingContentPayload>;
87965
88630
  csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
87966
88631
  csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
@@ -88006,6 +88671,8 @@ export declare type Mutation = {
88006
88671
  deleteWebTriggerUrl?: Maybe<DeleteWebTriggerUrlResponse>;
88007
88672
  devAi?: Maybe<DevAiMutations>;
88008
88673
  devOps?: Maybe<DevOpsMutation>;
88674
+ devai_addContainerConfigSecret?: Maybe<DevAiAddContainerConfigSecretPayload>;
88675
+ devai_addContainerConfigVariable?: Maybe<DevAiAddContainerConfigVariablePayload>;
88009
88676
  devai_archiveTechnicalPlannerJob?: Maybe<DevAiArchivedTechnicalPlannerJobPayload>;
88010
88677
  devai_completeFlowSession?: Maybe<DevAiFlowSessionCompletePayload>;
88011
88678
  devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
@@ -88017,11 +88684,14 @@ export declare type Mutation = {
88017
88684
  devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
88018
88685
  devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
88019
88686
  devai_invokeSelfCorrection?: Maybe<DevAiInvokeSelfCorrectionPayload>;
88687
+ devai_removeContainerConfigSecret?: Maybe<DevAiRemoveContainerConfigSecretPayload>;
88688
+ devai_removeContainerConfigVariable?: Maybe<DevAiRemoveContainerConfigVariablePayload>;
88020
88689
  devai_rovodevArchiveSession?: Maybe<DevAiRovoDevArchiveSessionPayload>;
88021
88690
  devai_rovodevCreateBulkSessionByCloudId?: Maybe<DevAiRovoDevBulkCreateSessionPayload>;
88022
88691
  devai_rovodevCreateSession?: Maybe<DevAiRovoDevCreateSessionPayload>;
88023
88692
  devai_rovodevCreateSessionByCloudId?: Maybe<DevAiRovoDevCreateSessionPayload>;
88024
88693
  devai_rovodevUnarchiveSession?: Maybe<DevAiRovoDevUnarchiveSessionPayload>;
88694
+ devai_saveContainerConfigSetupScript?: Maybe<DevAiAddContainerConfigStartupScriptPayload>;
88025
88695
  disableExperiment?: Maybe<TapExperiment>;
88026
88696
  disablePublicLinkForPage?: Maybe<DisablePublicLinkForPagePayload>;
88027
88697
  disablePublicLinkForSite?: Maybe<PublicLinkSitePayload>;
@@ -88077,6 +88747,7 @@ export declare type Mutation = {
88077
88747
  jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
88078
88748
  jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
88079
88749
  jira_applySuggestionActions?: Maybe<JiraApplySuggestionActionsPayload>;
88750
+ jira_associateProjectToFieldScheme?: Maybe<JiraAssociateProjectToFieldSchemePayload>;
88080
88751
  jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
88081
88752
  jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
88082
88753
  jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
@@ -88217,6 +88888,7 @@ export declare type Mutation = {
88217
88888
  radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
88218
88889
  radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
88219
88890
  radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
88891
+ radar_upsertWorkTypeAllocations?: Maybe<RadarMutationResponse>;
88220
88892
  rankCardParent?: Maybe<GenericMutationResponse>;
88221
88893
  rankColumn?: Maybe<RankColumnOutput>;
88222
88894
  rankCustomFilter?: Maybe<GenericMutationResponse>;
@@ -88302,15 +88974,19 @@ export declare type Mutation = {
88302
88974
  splitIssue?: Maybe<SplitIssueOutput>;
88303
88975
  stakeholderComms_addStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
88304
88976
  stakeholderComms_batchProcessDraftComponents?: Maybe<StakeholderCommsBatchComponentProcessResponse>;
88977
+ stakeholderComms_bulkCreateStakeholders?: Maybe<StakeholderCommsBulkStakeholderCreationResponse>;
88305
88978
  stakeholderComms_bulkDeleteStakeholders?: Maybe<StakeholderCommsBulkStakeholderResponse>;
88979
+ stakeholderComms_createDraftPage?: Maybe<StakeholderCommsPageResponse>;
88306
88980
  stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
88307
88981
  stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
88308
- stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndMemberships>;
88982
+ stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
88309
88983
  stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
88984
+ stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
88310
88985
  stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
88311
88986
  stakeholderComms_removeStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
88312
88987
  stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
88313
88988
  stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
88989
+ stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
88314
88990
  stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
88315
88991
  stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
88316
88992
  stakeholderComms_updateStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
@@ -88436,20 +89112,34 @@ export declare type MutationAdmin_AssignRoleArgs = {
88436
89112
  export declare type MutationAdmin_CreateAccessUrlArgs = {
88437
89113
  resourceAri: Scalars['ID']['input'];
88438
89114
  };
89115
+ export declare type MutationAdmin_CreateInvitePolicyArgs = {
89116
+ createInvitePolicyInput?: InputMaybe<AdminCreateInvitePolicyInput>;
89117
+ orgId: Scalars['ID']['input'];
89118
+ };
88439
89119
  export declare type MutationAdmin_DeactivateUserArgs = {
88440
89120
  input: AdminDeactivateUserInput;
88441
89121
  };
88442
89122
  export declare type MutationAdmin_DeleteAccessUrlArgs = {
88443
89123
  id: Scalars['ID']['input'];
88444
89124
  };
89125
+ export declare type MutationAdmin_DeleteInvitePolicyArgs = {
89126
+ orgId: Scalars['ID']['input'];
89127
+ policyId: Scalars['ID']['input'];
89128
+ };
88445
89129
  export declare type MutationAdmin_ImpersonateUserArgs = {
88446
89130
  input: AdminImpersonateUserInput;
88447
89131
  };
89132
+ export declare type MutationAdmin_InviteArgs = {
89133
+ inviteInput?: InputMaybe<AdminInviteInput>;
89134
+ orgId: Scalars['ID']['input'];
89135
+ };
88448
89136
  export declare type MutationAdmin_ReleaseImpersonationUserArgs = {
88449
89137
  input: AdminReleaseImpersonationUserInput;
88450
89138
  };
88451
89139
  export declare type MutationAdmin_RemoveUserArgs = {
88452
- input: AdminRemoveUserInput;
89140
+ accountId: Scalars['String']['input'];
89141
+ directoryId: Scalars['String']['input'];
89142
+ orgId: Scalars['String']['input'];
88453
89143
  };
88454
89144
  export declare type MutationAdmin_RevokeRoleArgs = {
88455
89145
  directoryId?: InputMaybe<Scalars['ID']['input']>;
@@ -88460,6 +89150,11 @@ export declare type MutationAdmin_UnitCreateArgs = {
88460
89150
  orgId: Scalars['ID']['input'];
88461
89151
  unit: AdminUnitCreateInput;
88462
89152
  };
89153
+ export declare type MutationAdmin_UpdateInvitePolicyArgs = {
89154
+ orgId: Scalars['ID']['input'];
89155
+ policyId: Scalars['ID']['input'];
89156
+ updateInvitePolicyInput?: InputMaybe<AdminUpdateInvitePolicyInput>;
89157
+ };
88463
89158
  export declare type MutationAgentStudio_AddGroupsToCreatePermissionArgs = {
88464
89159
  cloudId: Scalars['ID']['input'];
88465
89160
  groupARIs: Array<Scalars['ID']['input']>;
@@ -88486,6 +89181,11 @@ export declare type MutationAgentStudio_RemoveGroupsFromCreatePermissionArgs = {
88486
89181
  cloudId: Scalars['ID']['input'];
88487
89182
  groupARIs: Array<Scalars['ID']['input']>;
88488
89183
  };
89184
+ export declare type MutationAgentStudio_SetWidgetByContainerAriArgs = {
89185
+ cloudId: Scalars['String']['input'];
89186
+ containerAri: Scalars['ID']['input'];
89187
+ input: AgentStudioSetWidgetByContainerAriInput;
89188
+ };
88489
89189
  export declare type MutationAgentStudio_UpdateActorRolesArgs = {
88490
89190
  id: Scalars['ID']['input'];
88491
89191
  input: AgentStudioUpdateAgentPermissionInput;
@@ -88556,7 +89256,13 @@ export declare type MutationAssetsDm_CreateObjectTagArgs = {
88556
89256
  workspaceId: Scalars['ID']['input'];
88557
89257
  };
88558
89258
  export declare type MutationAssetsDm_CreateSavedSearchArgs = {
88559
- args: AssetsDmSavedSearchesCreateArgs;
89259
+ cloudId: Scalars['ID']['input'];
89260
+ isExportToAsset?: Scalars['Boolean']['input'];
89261
+ isPublic?: Scalars['Boolean']['input'];
89262
+ name: Scalars['String']['input'];
89263
+ objectId: Scalars['ID']['input'];
89264
+ searchInput: AssetsDmSavedSearchInput;
89265
+ workspaceId: Scalars['ID']['input'];
88560
89266
  };
88561
89267
  export declare type MutationAssetsDm_DataSourceArgs = {
88562
89268
  cloudId: Scalars['ID']['input'];
@@ -88588,7 +89294,9 @@ export declare type MutationAssetsDm_DeleteObjectTagArgs = {
88588
89294
  workspaceId: Scalars['ID']['input'];
88589
89295
  };
88590
89296
  export declare type MutationAssetsDm_DeleteSavedSearchArgs = {
88591
- args: AssetsDmSavedSearchesDeleteArgs;
89297
+ cloudId: Scalars['ID']['input'];
89298
+ savedSearchId: Scalars['ID']['input'];
89299
+ workspaceId: Scalars['ID']['input'];
88592
89300
  };
88593
89301
  export declare type MutationAssetsDm_EditObjectTagArgs = {
88594
89302
  cloudId: Scalars['ID']['input'];
@@ -88894,6 +89602,10 @@ export declare type MutationConfluence_UpdateAnswerArgs = {
88894
89602
  cloudId: Scalars['ID']['input'];
88895
89603
  input: ConfluenceUpdateAnswerInput;
88896
89604
  };
89605
+ export declare type MutationConfluence_UpdateCalendarPermissionsArgs = {
89606
+ cloudId: Scalars['ID']['input'];
89607
+ input: ConfluenceUpdateCalendarPermissionInput;
89608
+ };
88897
89609
  export declare type MutationConfluence_UpdateCalendarViewArgs = {
88898
89610
  cloudId: Scalars['ID']['input'];
88899
89611
  input: ConfluenceUpdateCalendarViewInput;
@@ -89158,6 +89870,11 @@ export declare type MutationCsmAi_CreateActionArgs = {
89158
89870
  helpCenterAri: Scalars['ID']['input'];
89159
89871
  input: CsmAiCreateActionInput;
89160
89872
  };
89873
+ export declare type MutationCsmAi_CreateActionForAgentArgs = {
89874
+ agentId: Scalars['String']['input'];
89875
+ helpCenterAri: Scalars['ID']['input'];
89876
+ input: CsmAiCreateActionInput;
89877
+ };
89161
89878
  export declare type MutationCsmAi_CreateCoachingContentArgs = {
89162
89879
  csmAIAgentId?: InputMaybe<Scalars['ID']['input']>;
89163
89880
  csmAiHubId: Scalars['ID']['input'];
@@ -89200,6 +89917,11 @@ export declare type MutationCsmAi_UpdateAgentArgs = {
89200
89917
  helpCenterAri: Scalars['ID']['input'];
89201
89918
  input?: InputMaybe<CsmAiUpdateAgentInput>;
89202
89919
  };
89920
+ export declare type MutationCsmAi_UpdateAgentIdentityArgs = {
89921
+ csmAgentId: Scalars['ID']['input'];
89922
+ helpCenterAri: Scalars['ID']['input'];
89923
+ input?: InputMaybe<CsmAiUpdateAgentInput>;
89924
+ };
89203
89925
  export declare type MutationCsmAi_UpdateCoachingContentArgs = {
89204
89926
  csmAIAgentId?: InputMaybe<Scalars['ID']['input']>;
89205
89927
  csmAiCoachingContentId: Scalars['ID']['input'];
@@ -89341,6 +90063,18 @@ export declare type MutationDeleteTemplateArgs = {
89341
90063
  export declare type MutationDeleteWebTriggerUrlArgs = {
89342
90064
  id: Scalars['ID']['input'];
89343
90065
  };
90066
+ export declare type MutationDevai_AddContainerConfigSecretArgs = {
90067
+ cloudId: Scalars['ID']['input'];
90068
+ repositoryUrl: Scalars['URL']['input'];
90069
+ secretName: Scalars['String']['input'];
90070
+ secretValue: Scalars['String']['input'];
90071
+ };
90072
+ export declare type MutationDevai_AddContainerConfigVariableArgs = {
90073
+ cloudId: Scalars['ID']['input'];
90074
+ repositoryUrl: Scalars['URL']['input'];
90075
+ variableName: Scalars['String']['input'];
90076
+ variableValue: Scalars['String']['input'];
90077
+ };
89344
90078
  export declare type MutationDevai_ArchiveTechnicalPlannerJobArgs = {
89345
90079
  cloudId: Scalars['ID']['input'];
89346
90080
  jobId: Scalars['ID']['input'];
@@ -89399,6 +90133,16 @@ export declare type MutationDevai_InvokeSelfCorrectionArgs = {
89399
90133
  issueAri: Scalars['ID']['input'];
89400
90134
  jobId: Scalars['ID']['input'];
89401
90135
  };
90136
+ export declare type MutationDevai_RemoveContainerConfigSecretArgs = {
90137
+ cloudId: Scalars['ID']['input'];
90138
+ repositoryUrl: Scalars['URL']['input'];
90139
+ secretName: Scalars['String']['input'];
90140
+ };
90141
+ export declare type MutationDevai_RemoveContainerConfigVariableArgs = {
90142
+ cloudId: Scalars['ID']['input'];
90143
+ repositoryUrl: Scalars['URL']['input'];
90144
+ variableName: Scalars['String']['input'];
90145
+ };
89402
90146
  export declare type MutationDevai_RovodevArchiveSessionArgs = {
89403
90147
  input: DevAiRovoDevArchiveSessionInput;
89404
90148
  };
@@ -89414,6 +90158,11 @@ export declare type MutationDevai_RovodevCreateSessionByCloudIdArgs = {
89414
90158
  export declare type MutationDevai_RovodevUnarchiveSessionArgs = {
89415
90159
  input: DevAiRovoDevUnarchiveSessionInput;
89416
90160
  };
90161
+ export declare type MutationDevai_SaveContainerConfigSetupScriptArgs = {
90162
+ cloudId: Scalars['ID']['input'];
90163
+ repositoryUrl: Scalars['URL']['input'];
90164
+ setupScript?: InputMaybe<Scalars['String']['input']>;
90165
+ };
89417
90166
  export declare type MutationDisableExperimentArgs = {
89418
90167
  experimentKey: Scalars['String']['input'];
89419
90168
  };
@@ -89547,6 +90296,10 @@ export declare type MutationJira_AddTimelineIssueLinkArgs = {
89547
90296
  export declare type MutationJira_ApplySuggestionActionsArgs = {
89548
90297
  input: Array<JiraApplySuggestionActionInput>;
89549
90298
  };
90299
+ export declare type MutationJira_AssociateProjectToFieldSchemeArgs = {
90300
+ cloudId: Scalars['ID']['input'];
90301
+ input: JiraAssociateProjectToFieldSchemeInput;
90302
+ };
89550
90303
  export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
89551
90304
  input: JiraBulkSetBoardViewColumnStateInput;
89552
90305
  };
@@ -89975,6 +90728,10 @@ export declare type MutationRadar_UpdateWorkspaceSettingsArgs = {
89975
90728
  cloudId: Scalars['ID']['input'];
89976
90729
  input: RadarWorkspaceSettingsInput;
89977
90730
  };
90731
+ export declare type MutationRadar_UpsertWorkTypeAllocationsArgs = {
90732
+ cloudId: Scalars['ID']['input'];
90733
+ input: Array<RadarWorkTypeAllocationInput>;
90734
+ };
89978
90735
  export declare type MutationRankCardParentArgs = {
89979
90736
  input: CardParentRankInput;
89980
90737
  };
@@ -90238,9 +90995,15 @@ export declare type MutationStakeholderComms_AddStakeholderMembersArgs = {
90238
90995
  export declare type MutationStakeholderComms_BatchProcessDraftComponentsArgs = {
90239
90996
  batchComponentProcessRequest: StakeholderCommsBatchComponentProcessRequest;
90240
90997
  };
90998
+ export declare type MutationStakeholderComms_BulkCreateStakeholdersArgs = {
90999
+ stakeholders: Array<StakeholderCommsCreateStakeholderInput>;
91000
+ };
90241
91001
  export declare type MutationStakeholderComms_BulkDeleteStakeholdersArgs = {
90242
91002
  stakeholderIds: Array<Scalars['String']['input']>;
90243
91003
  };
91004
+ export declare type MutationStakeholderComms_CreateDraftPageArgs = {
91005
+ page: StakeholderCommsCreatePageInputType;
91006
+ };
90244
91007
  export declare type MutationStakeholderComms_CreatePageArgs = {
90245
91008
  page: StakeholderCommsCreatePageInputType;
90246
91009
  };
@@ -90254,6 +91017,9 @@ export declare type MutationStakeholderComms_CreateStakeholderGroupAndMembersArg
90254
91017
  export declare type MutationStakeholderComms_DeleteStakeholderArgs = {
90255
91018
  id: Scalars['String']['input'];
90256
91019
  };
91020
+ export declare type MutationStakeholderComms_PublishPageArgs = {
91021
+ draftPageId: Scalars['String']['input'];
91022
+ };
90257
91023
  export declare type MutationStakeholderComms_RemoveStakeholderAssignmentArgs = {
90258
91024
  stakeholderAssignmentInput: StakeholderCommsStakeholderAssignmentIdInput;
90259
91025
  };
@@ -90267,6 +91033,9 @@ export declare type MutationStakeholderComms_RemoveStakeholderMembersArgs = {
90267
91033
  groupId: Scalars['String']['input'];
90268
91034
  stakeholderIds?: InputMaybe<Array<Scalars['String']['input']>>;
90269
91035
  };
91036
+ export declare type MutationStakeholderComms_UpdateDraftPageArgs = {
91037
+ page: StakeholderCommsUpdatePageInputType;
91038
+ };
90270
91039
  export declare type MutationStakeholderComms_UpdatePageArgs = {
90271
91040
  page: StakeholderCommsUpdatePageInputType;
90272
91041
  };
@@ -92802,12 +93571,17 @@ export declare type PolarisTimelineConfig = {
92802
93571
  startDateField?: Maybe<PolarisIdeaField>;
92803
93572
  startTimestamp?: Maybe<Scalars['String']['output']>;
92804
93573
  summaryCardField?: Maybe<PolarisIdeaField>;
93574
+ todayMarker?: Maybe<PolarisTimelineTodayMarker>;
92805
93575
  };
92806
93576
  export declare enum PolarisTimelineMode {
92807
93577
  Months = "MONTHS",
92808
93578
  Quarters = "QUARTERS",
92809
93579
  Years = "YEARS"
92810
93580
  }
93581
+ export declare enum PolarisTimelineTodayMarker {
93582
+ Disabled = "DISABLED",
93583
+ Enabled = "ENABLED"
93584
+ }
92811
93585
  export declare type PolarisValueDecoration = {
92812
93586
  __typename?: 'PolarisValueDecoration';
92813
93587
  backgroundColor?: Maybe<Scalars['String']['output']>;
@@ -92916,6 +93690,7 @@ export declare type PolarisViewFilterInput = {
92916
93690
  };
92917
93691
  export declare enum PolarisViewFilterKind {
92918
93692
  ConnectionFieldIdentity = "CONNECTION_FIELD_IDENTITY",
93693
+ FieldHasValue = "FIELD_HAS_VALUE",
92919
93694
  FieldIdentity = "FIELD_IDENTITY",
92920
93695
  FieldNumeric = "FIELD_NUMERIC",
92921
93696
  Interval = "INTERVAL",
@@ -92927,6 +93702,10 @@ export declare enum PolarisViewFilterOperator {
92927
93702
  Eq = "EQ",
92928
93703
  Gt = "GT",
92929
93704
  Gte = "GTE",
93705
+ ItemEndsAfter = "ITEM_ENDS_AFTER",
93706
+ ItemEndsAfterPast = "ITEM_ENDS_AFTER_PAST",
93707
+ ItemStartsBefore = "ITEM_STARTS_BEFORE",
93708
+ ItemStartsBeforeNext = "ITEM_STARTS_BEFORE_NEXT",
92930
93709
  Lt = "LT",
92931
93710
  Lte = "LTE",
92932
93711
  Neq = "NEQ",
@@ -93395,10 +94174,13 @@ export declare type Query = {
93395
94174
  admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
93396
94175
  admin_group?: Maybe<AdminGroup>;
93397
94176
  admin_groups?: Maybe<AdminGroupConnection>;
94177
+ admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
93398
94178
  admin_org?: Maybe<AdminOrganization>;
93399
94179
  admin_permissions?: Maybe<Array<AdminPermission>>;
93400
94180
  admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
94181
+ admin_unitDetails?: Maybe<AdminUnit>;
93401
94182
  admin_unitValidateName?: Maybe<AdminUnitValidateName>;
94183
+ admin_unitsForOrg?: Maybe<AdminUnitConnection>;
93402
94184
  admin_user?: Maybe<AdminUser>;
93403
94185
  admin_userStats?: Maybe<AdminUserStats>;
93404
94186
  admin_users?: Maybe<AdminUserConnection>;
@@ -93421,6 +94203,7 @@ export declare type Query = {
93421
94203
  agentStudio_tools?: Maybe<AgentStudioToolsConnection>;
93422
94204
  agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
93423
94205
  agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
94206
+ agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
93424
94207
  aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
93425
94208
  aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
93426
94209
  aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
@@ -93445,6 +94228,7 @@ export declare type Query = {
93445
94228
  appLogs?: Maybe<AppLogConnection>;
93446
94229
  appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
93447
94230
  appStorage_admin?: Maybe<AppStorageAdmin>;
94231
+ appStorage_kvsAdmin?: Maybe<AppStorageKvsAdminQuery>;
93448
94232
  appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
93449
94233
  appStorage_sqlTableData?: Maybe<AppStorageSqlTableDataPayload>;
93450
94234
  appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
@@ -93696,6 +94480,7 @@ export declare type Query = {
93696
94480
  devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
93697
94481
  devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
93698
94482
  devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
94483
+ devai_containerConfig?: Maybe<DevAiContainerConfig>;
93699
94484
  devai_flowGetRepositories?: Maybe<DevAiFlowRepositoryConnection>;
93700
94485
  devai_flowSessionGetByARI?: Maybe<DevAiFlowSession>;
93701
94486
  devai_flowSessionGetByIDAndCloudID?: Maybe<DevAiFlowSession>;
@@ -93712,6 +94497,8 @@ export declare type Query = {
93712
94497
  devai_rovodevSessionsByAri?: Maybe<Array<DevAiRovoDevSession>>;
93713
94498
  devai_rovodevSessionsByCloudId?: Maybe<DevAiRovoDevSessionConnection>;
93714
94499
  devai_rovodevSessionsByIssueKey?: Maybe<DevAiRovoDevSessionConnection>;
94500
+ devai_savedPrompts?: Maybe<Array<Maybe<DevAiSavedPrompt>>>;
94501
+ devai_savedPromptsFileContents?: Maybe<Scalars['String']['output']>;
93715
94502
  devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
93716
94503
  devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
93717
94504
  developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
@@ -93774,6 +94561,7 @@ export declare type Query = {
93774
94561
  graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
93775
94562
  graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
93776
94563
  graphIntegration_mcpAdminManagementMcpServer?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
94564
+ graphIntegration_mcpAdminManagementMcpServerMetaData?: Maybe<GraphIntegrationMcpAdminManagementMcpServerMetaData>;
93777
94565
  graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
93778
94566
  graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
93779
94567
  graphStore?: Maybe<GraphStore>;
@@ -94003,6 +94791,7 @@ export declare type Query = {
94003
94791
  radar_workerByAri?: Maybe<RadarWorker>;
94004
94792
  radar_workersByAris?: Maybe<Array<RadarWorker>>;
94005
94793
  radar_workspace: RadarWorkspace;
94794
+ radar_worktypeAllocations?: Maybe<Array<Maybe<RadarWorktypeAllocation>>>;
94006
94795
  reactedUsers?: Maybe<ReactedUsersResponse>;
94007
94796
  reactionsSummary?: Maybe<ReactionsSummaryResponse>;
94008
94797
  reactionsSummaryList?: Maybe<Array<Maybe<ReactionsSummaryResponse>>>;
@@ -94060,8 +94849,16 @@ export declare type Query = {
94060
94849
  sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
94061
94850
  stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
94062
94851
  stakeholderComms_getAssignmentsByStakeholderV2?: Maybe<StakeholderCommsAssignmentConnection>;
94852
+ stakeholderComms_getComponentUptimePercentage?: Maybe<StakeholderCommsComponentUptimePercentageResponse>;
94853
+ stakeholderComms_getComponentWithUptimeByComponentId?: Maybe<StakeholderCommsComponentWithUptimeResponse>;
94854
+ stakeholderComms_getComponentsWithUptimeByPageId?: Maybe<StakeholderCommsPageComponentsWithUptimeResponse>;
94855
+ stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
94856
+ stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
94857
+ stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
94063
94858
  stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
94064
94859
  stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
94860
+ stakeholderComms_getPageByName?: Maybe<StakeholderCommsPageResponse>;
94861
+ stakeholderComms_getPageUptimePercentage?: Maybe<StakeholderCommsPageUptimePercentageResponse>;
94065
94862
  stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
94066
94863
  stakeholderComms_getStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
94067
94864
  stakeholderComms_getStakeholderGroupByMembership?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroup>>>;
@@ -94071,6 +94868,7 @@ export declare type Query = {
94071
94868
  stakeholderComms_getStakeholderGroupsWithStakeholders?: Maybe<StakeholderCommsStakeholderGroupAndStakeholdersConnection>;
94072
94869
  stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
94073
94870
  stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
94871
+ stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
94074
94872
  stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
94075
94873
  stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
94076
94874
  stalePages?: Maybe<PaginatedStalePagePayloadList>;
@@ -94170,6 +94968,13 @@ export declare type QueryAdmin_GroupsArgs = {
94170
94968
  input?: InputMaybe<AdminSearchGroupInput>;
94171
94969
  last?: InputMaybe<Scalars['Int']['input']>;
94172
94970
  };
94971
+ export declare type QueryAdmin_InvitePoliciesArgs = {
94972
+ after?: InputMaybe<Scalars['String']['input']>;
94973
+ before?: InputMaybe<Scalars['String']['input']>;
94974
+ first?: InputMaybe<Scalars['Int']['input']>;
94975
+ last?: InputMaybe<Scalars['Int']['input']>;
94976
+ orgId: Scalars['ID']['input'];
94977
+ };
94173
94978
  export declare type QueryAdmin_OrgArgs = {
94174
94979
  id: Scalars['ID']['input'];
94175
94980
  };
@@ -94181,10 +94986,23 @@ export declare type QueryAdmin_UnitCreateStatusArgs = {
94181
94986
  orgId: Scalars['ID']['input'];
94182
94987
  requestId: Scalars['ID']['input'];
94183
94988
  };
94989
+ export declare type QueryAdmin_UnitDetailsArgs = {
94990
+ orgId: Scalars['ID']['input'];
94991
+ unitId: Scalars['ID']['input'];
94992
+ };
94184
94993
  export declare type QueryAdmin_UnitValidateNameArgs = {
94185
94994
  orgId: Scalars['ID']['input'];
94186
94995
  unitName: Scalars['String']['input'];
94187
94996
  };
94997
+ export declare type QueryAdmin_UnitsForOrgArgs = {
94998
+ after?: InputMaybe<Scalars['String']['input']>;
94999
+ before?: InputMaybe<Scalars['String']['input']>;
95000
+ first?: InputMaybe<Scalars['Int']['input']>;
95001
+ last?: InputMaybe<Scalars['Int']['input']>;
95002
+ orgId: Scalars['ID']['input'];
95003
+ search?: InputMaybe<AdminUnitsForOrgSearchInput>;
95004
+ sort?: InputMaybe<AdminUnitsForOrgSortInput>;
95005
+ };
94188
95006
  export declare type QueryAdmin_UserArgs = {
94189
95007
  input?: InputMaybe<AdminFetchUserInput>;
94190
95008
  };
@@ -94296,6 +95114,10 @@ export declare type QueryAgentStudio_ValidateScenariosArgs = {
94296
95114
  cloudId: Scalars['String']['input'];
94297
95115
  input: AgentStudioScenarioValidateModeInput;
94298
95116
  };
95117
+ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
95118
+ cloudId: Scalars['String']['input'];
95119
+ containerAri: Scalars['ID']['input'];
95120
+ };
94299
95121
  export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
94300
95122
  projectAri: Scalars['ID']['input'];
94301
95123
  };
@@ -94318,6 +95140,7 @@ export declare type QueryAllTemplatesArgs = {
94318
95140
  spaceKey?: InputMaybe<Scalars['String']['input']>;
94319
95141
  start?: InputMaybe<Scalars['Int']['input']>;
94320
95142
  teamType?: InputMaybe<Scalars['String']['input']>;
95143
+ usePersonalSpace?: InputMaybe<Scalars['Boolean']['input']>;
94321
95144
  };
94322
95145
  export declare type QueryAllUpdatesFeedArgs = {
94323
95146
  after?: InputMaybe<Scalars['String']['input']>;
@@ -94542,7 +95365,12 @@ export declare type QueryAssetsDm_RawDataArgs = {
94542
95365
  workspaceId: Scalars['ID']['input'];
94543
95366
  };
94544
95367
  export declare type QueryAssetsDm_SavedSearchesListArgs = {
94545
- args: AssetsDmSavedSearchesListInput;
95368
+ cloudId: Scalars['ID']['input'];
95369
+ objectId: Scalars['ID']['input'];
95370
+ pagination?: InputMaybe<AssetsDmPaginationInput>;
95371
+ query?: InputMaybe<AssetsDmSavedSearchesQueryArgs>;
95372
+ sortBy?: InputMaybe<AssetsDmSortByInput>;
95373
+ workspaceId: Scalars['ID']['input'];
94546
95374
  };
94547
95375
  export declare type QueryAssetsDm_TransformedDataArgs = {
94548
95376
  cloudId: Scalars['ID']['input'];
@@ -95503,7 +96331,7 @@ export declare type QueryDetailsLinesArgs = {
95503
96331
  showLastModified?: InputMaybe<Scalars['Boolean']['input']>;
95504
96332
  showPageLabels?: InputMaybe<Scalars['Boolean']['input']>;
95505
96333
  sortBy?: InputMaybe<Scalars['String']['input']>;
95506
- spaceKey: Scalars['String']['input'];
96334
+ spaceKey?: InputMaybe<Scalars['String']['input']>;
95507
96335
  };
95508
96336
  export declare type QueryDevOpsServiceArgs = {
95509
96337
  id: Scalars['ID']['input'];
@@ -95609,6 +96437,10 @@ export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
95609
96437
  first?: InputMaybe<Scalars['Int']['input']>;
95610
96438
  issueKey: Scalars['String']['input'];
95611
96439
  };
96440
+ export declare type QueryDevai_ContainerConfigArgs = {
96441
+ cloudId: Scalars['ID']['input'];
96442
+ repositoryUrl: Scalars['URL']['input'];
96443
+ };
95612
96444
  export declare type QueryDevai_FlowGetRepositoriesArgs = {
95613
96445
  cloudId: Scalars['ID']['input'];
95614
96446
  search?: InputMaybe<Scalars['String']['input']>;
@@ -95684,6 +96516,16 @@ export declare type QueryDevai_RovodevSessionsByIssueKeyArgs = {
95684
96516
  first?: InputMaybe<Scalars['Int']['input']>;
95685
96517
  issueKey?: InputMaybe<Scalars['String']['input']>;
95686
96518
  };
96519
+ export declare type QueryDevai_SavedPromptsArgs = {
96520
+ cloudId: Scalars['ID']['input'];
96521
+ repositoryUrl: Scalars['URL']['input'];
96522
+ search?: InputMaybe<Scalars['String']['input']>;
96523
+ };
96524
+ export declare type QueryDevai_SavedPromptsFileContentsArgs = {
96525
+ cloudId: Scalars['ID']['input'];
96526
+ path: Scalars['String']['input'];
96527
+ repositoryUrl: Scalars['URL']['input'];
96528
+ };
95687
96529
  export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
95688
96530
  cloudId: Scalars['ID']['input'];
95689
96531
  jobId: Scalars['ID']['input'];
@@ -95895,6 +96737,10 @@ export declare type QueryGraphIntegration_McpAdminManagementMcpServerArgs = {
95895
96737
  cloudId: Scalars['ID']['input'];
95896
96738
  serverId: Scalars['ID']['input'];
95897
96739
  };
96740
+ export declare type QueryGraphIntegration_McpAdminManagementMcpServerMetaDataArgs = {
96741
+ cloudId: Scalars['ID']['input'];
96742
+ serverUrl: Scalars['String']['input'];
96743
+ };
95898
96744
  export declare type QueryGraphIntegration_McpAdminManagementMcpServersArgs = {
95899
96745
  after?: InputMaybe<Scalars['String']['input']>;
95900
96746
  cloudId: Scalars['ID']['input'];
@@ -96461,12 +97307,12 @@ export declare type QueryPlaybook_JiraPlaybookStepUsageForProjectArgs = {
96461
97307
  };
96462
97308
  export declare type QueryPlaybook_JiraPlaybookTemplateArgs = {
96463
97309
  cloudId: Scalars['ID']['input'];
96464
- scopeId: Scalars['String']['input'];
97310
+ projectKey: Scalars['String']['input'];
96465
97311
  templateId: Scalars['String']['input'];
96466
97312
  };
96467
97313
  export declare type QueryPlaybook_JiraPlaybookTemplateCategoriesArgs = {
96468
97314
  cloudId: Scalars['ID']['input'];
96469
- scopeId: Scalars['String']['input'];
97315
+ projectKey: Scalars['String']['input'];
96470
97316
  };
96471
97317
  export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
96472
97318
  after?: InputMaybe<Scalars['String']['input']>;
@@ -96672,6 +97518,10 @@ export declare type QueryRadar_WorkersByArisArgs = {
96672
97518
  export declare type QueryRadar_WorkspaceArgs = {
96673
97519
  cloudId: Scalars['ID']['input'];
96674
97520
  };
97521
+ export declare type QueryRadar_WorktypeAllocationsArgs = {
97522
+ cloudId: Scalars['ID']['input'];
97523
+ managerPositionId: Scalars['ID']['input'];
97524
+ };
96675
97525
  export declare type QueryReactedUsersArgs = {
96676
97526
  cloudId?: InputMaybe<Scalars['ID']['input']>;
96677
97527
  containerId: Scalars['String']['input'];
@@ -96917,12 +97767,40 @@ export declare type QueryStakeholderComms_GetAssignmentsByStakeholderArgs = {
96917
97767
  export declare type QueryStakeholderComms_GetAssignmentsByStakeholderV2Args = {
96918
97768
  assignmentConnectionInput: StakeholderCommsAssignmentConnectionInput;
96919
97769
  };
97770
+ export declare type QueryStakeholderComms_GetComponentUptimePercentageArgs = {
97771
+ componentId?: InputMaybe<Scalars['String']['input']>;
97772
+ };
97773
+ export declare type QueryStakeholderComms_GetComponentWithUptimeByComponentIdArgs = {
97774
+ componentId: Scalars['String']['input'];
97775
+ endDate: Scalars['String']['input'];
97776
+ startDate: Scalars['String']['input'];
97777
+ };
97778
+ export declare type QueryStakeholderComms_GetComponentsWithUptimeByPageIdArgs = {
97779
+ endDate: Scalars['String']['input'];
97780
+ pageId: Scalars['String']['input'];
97781
+ startDate: Scalars['String']['input'];
97782
+ };
97783
+ export declare type QueryStakeholderComms_GetDraftComponentsByPageIdArgs = {
97784
+ pageId: Scalars['String']['input'];
97785
+ };
97786
+ export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
97787
+ pageId: Scalars['String']['input'];
97788
+ };
97789
+ export declare type QueryStakeholderComms_GetDraftPageByNameArgs = {
97790
+ name: Scalars['String']['input'];
97791
+ };
96920
97792
  export declare type QueryStakeholderComms_GetMembershipsArgs = {
96921
97793
  groupId: Scalars['String']['input'];
96922
97794
  };
96923
97795
  export declare type QueryStakeholderComms_GetPageByIdArgs = {
96924
97796
  pageId: Scalars['String']['input'];
96925
97797
  };
97798
+ export declare type QueryStakeholderComms_GetPageByNameArgs = {
97799
+ name: Scalars['String']['input'];
97800
+ };
97801
+ export declare type QueryStakeholderComms_GetPageUptimePercentageArgs = {
97802
+ pageId?: InputMaybe<Scalars['String']['input']>;
97803
+ };
96926
97804
  export declare type QueryStakeholderComms_GetStakeholderArgs = {
96927
97805
  stakeholderIdInput: StakeholderCommsStakeholderIdInput;
96928
97806
  };
@@ -96956,6 +97834,9 @@ export declare type QueryStakeholderComms_GetStakeholdersByAssignmentArgs = {
96956
97834
  export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
96957
97835
  stakeholderConnectionInput: StakeholderCommsStakeholderConnectionInput;
96958
97836
  };
97837
+ export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
97838
+ name: Scalars['String']['input'];
97839
+ };
96959
97840
  export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
96960
97841
  name: Scalars['String']['input'];
96961
97842
  };
@@ -96965,6 +97846,7 @@ export declare type QueryStakeholderComms_ListStakeholdersArgs = {
96965
97846
  filter?: InputMaybe<StakeholderCommsStakeholderConnectionFilter>;
96966
97847
  first?: InputMaybe<Scalars['Int']['input']>;
96967
97848
  last?: InputMaybe<Scalars['Int']['input']>;
97849
+ search?: InputMaybe<StakeholderCommsStakeholderConnectionSearch>;
96968
97850
  };
96969
97851
  export declare type QueryStalePagesArgs = {
96970
97852
  cursor?: InputMaybe<Scalars['String']['input']>;
@@ -97293,6 +98175,7 @@ export declare type RadarCustomFieldDefinition = RadarFieldDefinition & {
97293
98175
  isCustom: Scalars['Boolean']['output'];
97294
98176
  isGroupable: Scalars['Boolean']['output'];
97295
98177
  isHidden?: Maybe<Scalars['Boolean']['output']>;
98178
+ permissions?: Maybe<RadarFieldDefinitionPermissions>;
97296
98179
  relativeId: Scalars['String']['output'];
97297
98180
  sensitivityLevel: RadarSensitivityLevel;
97298
98181
  sourceField: Scalars['String']['output'];
@@ -97306,6 +98189,7 @@ export declare type RadarCustomFieldInput = {
97306
98189
  sensitivityLevel: RadarSensitivityLevel;
97307
98190
  sourceField: Scalars['String']['input'];
97308
98191
  type: RadarFieldType;
98192
+ viewPrincipalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
97309
98193
  };
97310
98194
  export declare enum RadarCustomFieldSyncStatus {
97311
98195
  Found = "FOUND",
@@ -97363,13 +98247,19 @@ export declare type RadarFieldDefinition = {
97363
98247
  isCustom: Scalars['Boolean']['output'];
97364
98248
  isGroupable: Scalars['Boolean']['output'];
97365
98249
  isHidden?: Maybe<Scalars['Boolean']['output']>;
98250
+ permissions?: Maybe<RadarFieldDefinitionPermissions>;
97366
98251
  relativeId: Scalars['String']['output'];
97367
98252
  sensitivityLevel: RadarSensitivityLevel;
97368
98253
  type: RadarFieldType;
97369
98254
  };
98255
+ export declare type RadarFieldDefinitionPermissions = {
98256
+ __typename?: 'RadarFieldDefinitionPermissions';
98257
+ userPermission: RadarUserFieldPermission;
98258
+ viewFieldFullGroups: Array<RadarGroupPrincipal>;
98259
+ };
97370
98260
  export declare type RadarFieldPermissionsInput = {
97371
98261
  fieldId: Scalars['ID']['input'];
97372
- principalId: Scalars['ID']['input'];
98262
+ principalId: Array<Scalars['ID']['input']>;
97373
98263
  };
97374
98264
  export declare type RadarFieldSettingsInput = {
97375
98265
  entity: RadarEntityType;
@@ -97489,6 +98379,7 @@ export declare type RadarNonNumericFieldDefinition = RadarFieldDefinition & {
97489
98379
  isCustom: Scalars['Boolean']['output'];
97490
98380
  isGroupable: Scalars['Boolean']['output'];
97491
98381
  isHidden?: Maybe<Scalars['Boolean']['output']>;
98382
+ permissions?: Maybe<RadarFieldDefinitionPermissions>;
97492
98383
  relativeId: Scalars['String']['output'];
97493
98384
  sensitivityLevel: RadarSensitivityLevel;
97494
98385
  type: RadarFieldType;
@@ -97508,6 +98399,7 @@ export declare type RadarNumericFieldDefinition = RadarFieldDefinition & {
97508
98399
  isCustom: Scalars['Boolean']['output'];
97509
98400
  isGroupable: Scalars['Boolean']['output'];
97510
98401
  isHidden?: Maybe<Scalars['Boolean']['output']>;
98402
+ permissions?: Maybe<RadarFieldDefinitionPermissions>;
97511
98403
  relativeId: Scalars['String']['output'];
97512
98404
  sensitivityLevel: RadarSensitivityLevel;
97513
98405
  type: RadarFieldType;
@@ -97664,6 +98556,19 @@ export declare type RadarUserContext = {
97664
98556
  __typename?: 'RadarUserContext';
97665
98557
  position?: Maybe<RadarPosition>;
97666
98558
  };
98559
+ export declare enum RadarUserFieldPermission {
98560
+ Full = "Full",
98561
+ None = "None",
98562
+ PartialBelowReportingLine = "PartialBelowReportingLine",
98563
+ PartialOnSelfOrBelowReportingLine = "PartialOnSelfOrBelowReportingLine",
98564
+ PartialOnlySelf = "PartialOnlySelf"
98565
+ }
98566
+ export declare type RadarWorkTypeAllocationInput = {
98567
+ ctb: Scalars['Int']['input'];
98568
+ organisationId: Scalars['ID']['input'];
98569
+ productivity: Scalars['Int']['input'];
98570
+ rtb: Scalars['Int']['input'];
98571
+ };
97667
98572
  export declare type RadarWorker = Node & RadarEntity & {
97668
98573
  __typename?: 'RadarWorker';
97669
98574
  entityId: Scalars['ID']['output'];
@@ -97705,6 +98610,16 @@ export declare type RadarWorkspace = {
97705
98610
  export declare type RadarWorkspaceSettingsInput = {
97706
98611
  permissions: RadarPermissionsInput;
97707
98612
  };
98613
+ export declare type RadarWorktypeAllocation = {
98614
+ __typename?: 'RadarWorktypeAllocation';
98615
+ ctb?: Maybe<Scalars['Int']['output']>;
98616
+ id: Scalars['ID']['output'];
98617
+ organisationId: Scalars['ID']['output'];
98618
+ positionCount?: Maybe<Scalars['Int']['output']>;
98619
+ productivity?: Maybe<Scalars['Int']['output']>;
98620
+ rtb?: Maybe<Scalars['Int']['output']>;
98621
+ team?: Maybe<TeamV2>;
98622
+ };
97708
98623
  export declare type RankColumnInput = {
97709
98624
  boardId: Scalars['ID']['input'];
97710
98625
  columnId: Scalars['ID']['input'];
@@ -99470,6 +100385,15 @@ export declare type SearchCompassComponentFilter = {
99470
100385
  export declare type SearchCompassFilter = {
99471
100386
  componentFilter?: InputMaybe<SearchCompassComponentFilter>;
99472
100387
  };
100388
+ export declare type SearchConfigurationSiteMetadata = {
100389
+ __typename?: 'SearchConfigurationSiteMetadata';
100390
+ applicationMode?: Maybe<Scalars['String']['output']>;
100391
+ isJiraIssueIndexed: Scalars['Boolean']['output'];
100392
+ isRovoEnabled: Scalars['Boolean']['output'];
100393
+ orgId: Scalars['String']['output'];
100394
+ productInfo: Array<SearchProductInfo>;
100395
+ siteName: Scalars['String']['output'];
100396
+ };
99473
100397
  export declare enum SearchConfluenceDocumentStatus {
99474
100398
  Archived = "ARCHIVED",
99475
100399
  Current = "CURRENT",
@@ -99636,6 +100560,17 @@ export declare type SearchFilterInput = {
99636
100560
  thirdPartyFilters?: InputMaybe<SearchThirdPartyFilter>;
99637
100561
  trelloFilters?: InputMaybe<SearchTrelloFilter>;
99638
100562
  };
100563
+ export declare type SearchFirstPartyMetadata = {
100564
+ __typename?: 'SearchFirstPartyMetadata';
100565
+ name: Scalars['String']['output'];
100566
+ };
100567
+ export declare type SearchGraphQlConfigurationResponse = {
100568
+ __typename?: 'SearchGraphQLConfigurationResponse';
100569
+ firstPartyProducts: Array<SearchFirstPartyMetadata>;
100570
+ intercomHmac?: Maybe<Scalars['String']['output']>;
100571
+ siteMetadata: SearchConfigurationSiteMetadata;
100572
+ thirdPartyProducts: Array<SearchThirdPartyMetadata>;
100573
+ };
99639
100574
  export declare type SearchInterleaverScrapingResult = {
99640
100575
  __typename?: 'SearchInterleaverScrapingResult';
99641
100576
  rerankerRequestInJSON: Scalars['String']['output'];
@@ -99739,6 +100674,11 @@ export declare type SearchProductCount = {
99739
100674
  count: Scalars['Int']['output'];
99740
100675
  product: Scalars['String']['output'];
99741
100676
  };
100677
+ export declare type SearchProductInfo = {
100678
+ __typename?: 'SearchProductInfo';
100679
+ dataRegion: Array<Scalars['String']['output']>;
100680
+ name: Scalars['String']['output'];
100681
+ };
99742
100682
  export declare enum SearchProjectType {
99743
100683
  Business = "business",
99744
100684
  ProductDiscovery = "product_discovery",
@@ -99747,9 +100687,13 @@ export declare enum SearchProjectType {
99747
100687
  }
99748
100688
  export declare type SearchQueryApi = {
99749
100689
  __typename?: 'SearchQueryAPI';
100690
+ configuration?: Maybe<SearchGraphQlConfigurationResponse>;
99750
100691
  recent?: Maybe<Array<SearchResult>>;
99751
100692
  search?: Maybe<SearchItemConnection>;
99752
100693
  };
100694
+ export declare type SearchQueryApiConfigurationArgs = {
100695
+ cloudId: Scalars['ID']['input'];
100696
+ };
99753
100697
  export declare type SearchQueryApiRecentArgs = {
99754
100698
  analytics?: InputMaybe<SearchAnalyticsInput>;
99755
100699
  experience: Scalars['String']['input'];
@@ -99766,6 +100710,7 @@ export declare type SearchQueryApiSearchArgs = {
99766
100710
  enableRelevanceDebugging?: InputMaybe<Scalars['Boolean']['input']>;
99767
100711
  experience: Scalars['String']['input'];
99768
100712
  experimentContext?: InputMaybe<SearchExperimentContextInput>;
100713
+ fanoutExperimentCohort?: InputMaybe<Scalars['String']['input']>;
99769
100714
  filters: SearchFilterInput;
99770
100715
  first?: InputMaybe<Scalars['Int']['input']>;
99771
100716
  includeBoostedLinks?: InputMaybe<Scalars['Boolean']['input']>;
@@ -99879,7 +100824,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
99879
100824
  type: SearchResultType;
99880
100825
  url: Scalars['URL']['output'];
99881
100826
  };
99882
- export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
100827
+ export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
99883
100828
  export declare type SearchResultFederated = SearchResult & {
99884
100829
  __typename?: 'SearchResultFederated';
99885
100830
  description: Scalars['String']['output'];
@@ -100254,6 +101199,17 @@ export declare type SearchThirdPartyFilter = {
100254
101199
  thirdPartyTypes?: InputMaybe<Array<Scalars['String']['input']>>;
100255
101200
  titleMatchOnly?: InputMaybe<Scalars['Boolean']['input']>;
100256
101201
  };
101202
+ export declare type SearchThirdPartyMetadata = {
101203
+ __typename?: 'SearchThirdPartyMetadata';
101204
+ datasourceId?: Maybe<Scalars['String']['output']>;
101205
+ integrationARI: Scalars['String']['output'];
101206
+ isUserOAuthed: Scalars['Boolean']['output'];
101207
+ name: Scalars['String']['output'];
101208
+ outboundAuthUrl: Scalars['String']['output'];
101209
+ providerId?: Maybe<Scalars['String']['output']>;
101210
+ workspaceName?: Maybe<Scalars['String']['output']>;
101211
+ workspaceUrl?: Maybe<Scalars['String']['output']>;
101212
+ };
100257
101213
  export declare type SearchThirdPartyProduct = {
100258
101214
  connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
100259
101215
  containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -103810,6 +104766,16 @@ export declare type StakeholderCommsBodyConfigType = {
103810
104766
  overallUptimeRange?: Maybe<Scalars['Int']['output']>;
103811
104767
  uptimeStyle?: Maybe<StakeholderCommsUptimeStyle>;
103812
104768
  };
104769
+ export declare type StakeholderCommsBulkStakeholderCreationResponse = {
104770
+ __typename?: 'StakeholderCommsBulkStakeholderCreationResponse';
104771
+ errors?: Maybe<Array<StakeholderCommsStakeholderCreationError>>;
104772
+ failureCount: Scalars['Int']['output'];
104773
+ message: Scalars['String']['output'];
104774
+ success: Scalars['Boolean']['output'];
104775
+ successCount: Scalars['Int']['output'];
104776
+ successfulStakeholders?: Maybe<Array<StakeholderCommsStakeholderAssignmentResponse>>;
104777
+ totalCount: Scalars['Int']['output'];
104778
+ };
103813
104779
  export declare type StakeholderCommsBulkStakeholderResponse = {
103814
104780
  __typename?: 'StakeholderCommsBulkStakeholderResponse';
103815
104781
  errors?: Maybe<Array<StakeholderCommsStakeholderError>>;
@@ -103864,6 +104830,51 @@ export declare enum StakeholderCommsComponentType {
103864
104830
  Component = "COMPONENT",
103865
104831
  GroupComponent = "GROUP_COMPONENT"
103866
104832
  }
104833
+ export declare type StakeholderCommsComponentUpdate = {
104834
+ __typename?: 'StakeholderCommsComponentUpdate';
104835
+ componentId: Scalars['String']['output'];
104836
+ createdAt: Scalars['String']['output'];
104837
+ id: Scalars['String']['output'];
104838
+ incidentId?: Maybe<Scalars['String']['output']>;
104839
+ newStatus: StakeholderCommsComponentStatus;
104840
+ oldStatus: StakeholderCommsComponentStatus;
104841
+ pageId: Scalars['String']['output'];
104842
+ };
104843
+ export declare type StakeholderCommsComponentUpdateInput = {
104844
+ componentId: Scalars['String']['input'];
104845
+ createdAt?: InputMaybe<Scalars['String']['input']>;
104846
+ id?: InputMaybe<Scalars['String']['input']>;
104847
+ incidentId?: InputMaybe<Scalars['String']['input']>;
104848
+ newStatus?: InputMaybe<StakeholderCommsComponentStatus>;
104849
+ oldStatus?: InputMaybe<StakeholderCommsComponentStatus>;
104850
+ pageId: Scalars['String']['input'];
104851
+ type?: InputMaybe<StakeholderCommsComponentType>;
104852
+ };
104853
+ export declare type StakeholderCommsComponentUptimeDailyAggregate = {
104854
+ __typename?: 'StakeholderCommsComponentUptimeDailyAggregate';
104855
+ componentId: Scalars['String']['output'];
104856
+ createdAt: Scalars['String']['output'];
104857
+ date: Scalars['String']['output'];
104858
+ degradedPerformanceTime?: Maybe<Scalars['Int']['output']>;
104859
+ id: Scalars['String']['output'];
104860
+ maintenanceTime?: Maybe<Scalars['Int']['output']>;
104861
+ majorOutageTime?: Maybe<Scalars['Int']['output']>;
104862
+ pageId: Scalars['String']['output'];
104863
+ partialOutageTime?: Maybe<Scalars['Int']['output']>;
104864
+ relatedEvents?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
104865
+ };
104866
+ export declare type StakeholderCommsComponentUptimePercentageResponse = {
104867
+ __typename?: 'StakeholderCommsComponentUptimePercentageResponse';
104868
+ componentId?: Maybe<Scalars['String']['output']>;
104869
+ componentName?: Maybe<Scalars['String']['output']>;
104870
+ error?: Maybe<Scalars['String']['output']>;
104871
+ uptimePercentage?: Maybe<Scalars['Float']['output']>;
104872
+ };
104873
+ export declare type StakeholderCommsComponentWithUptimeResponse = {
104874
+ __typename?: 'StakeholderCommsComponentWithUptimeResponse';
104875
+ componentUptime?: Maybe<StakeholderCommsNestedComponentWithUptime>;
104876
+ error?: Maybe<Scalars['String']['output']>;
104877
+ };
103867
104878
  export declare type StakeholderCommsCreatePageInputType = {
103868
104879
  activityScore?: InputMaybe<Scalars['Int']['input']>;
103869
104880
  allowPageSubscribers?: InputMaybe<Scalars['Boolean']['input']>;
@@ -103921,6 +104932,11 @@ export declare type StakeholderCommsCreateStakeholderInput = {
103921
104932
  stakeholderType: StakeholderCommsStakeholderType;
103922
104933
  webhook?: InputMaybe<Scalars['String']['input']>;
103923
104934
  };
104935
+ export declare type StakeholderCommsDailyComponentUptime = {
104936
+ __typename?: 'StakeholderCommsDailyComponentUptime';
104937
+ componentDailyAggregate?: Maybe<StakeholderCommsComponentUptimeDailyAggregate>;
104938
+ date: Scalars['String']['output'];
104939
+ };
103924
104940
  export declare enum StakeholderCommsErrorType {
103925
104941
  SystemError = "SYSTEM_ERROR",
103926
104942
  ValidationError = "VALIDATION_ERROR"
@@ -103991,6 +105007,19 @@ export declare type StakeholderCommsNestedComponent = {
103991
105007
  status?: Maybe<StakeholderCommsComponentStatus>;
103992
105008
  type?: Maybe<StakeholderCommsComponentType>;
103993
105009
  };
105010
+ export declare type StakeholderCommsNestedComponentWithUptime = {
105011
+ __typename?: 'StakeholderCommsNestedComponentWithUptime';
105012
+ components?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
105013
+ dailyUptimes?: Maybe<Array<Maybe<StakeholderCommsDailyComponentUptime>>>;
105014
+ description?: Maybe<Scalars['String']['output']>;
105015
+ id?: Maybe<Scalars['String']['output']>;
105016
+ name?: Maybe<Scalars['String']['output']>;
105017
+ pageId?: Maybe<Scalars['String']['output']>;
105018
+ position?: Maybe<Scalars['Int']['output']>;
105019
+ serviceId?: Maybe<Scalars['String']['output']>;
105020
+ status?: Maybe<StakeholderCommsComponentStatus>;
105021
+ type?: Maybe<StakeholderCommsComponentType>;
105022
+ };
103994
105023
  export declare type StakeholderCommsNestedDraftComponentInput = {
103995
105024
  components?: InputMaybe<Array<InputMaybe<StakeholderCommsNestedDraftComponentInput>>>;
103996
105025
  description?: InputMaybe<Scalars['String']['input']>;
@@ -104056,6 +105085,16 @@ export declare type StakeholderCommsPage = {
104056
105085
  url?: Maybe<Scalars['String']['output']>;
104057
105086
  version?: Maybe<Scalars['Int']['output']>;
104058
105087
  };
105088
+ export declare type StakeholderCommsPageComponentsWithUptimeResponse = {
105089
+ __typename?: 'StakeholderCommsPageComponentsWithUptimeResponse';
105090
+ error?: Maybe<Scalars['String']['output']>;
105091
+ pageComponentsUptime?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
105092
+ };
105093
+ export declare type StakeholderCommsPageDraftComponentResponse = {
105094
+ __typename?: 'StakeholderCommsPageDraftComponentResponse';
105095
+ components?: Maybe<Array<Maybe<StakeholderCommsNestedComponent>>>;
105096
+ error?: Maybe<Scalars['String']['output']>;
105097
+ };
104059
105098
  export declare type StakeholderCommsPageInfo = {
104060
105099
  __typename?: 'StakeholderCommsPageInfo';
104061
105100
  endCursor?: Maybe<Scalars['String']['output']>;
@@ -104078,6 +105117,12 @@ export declare enum StakeholderCommsPageThemeMode {
104078
105117
  Dark = "DARK",
104079
105118
  Light = "LIGHT"
104080
105119
  }
105120
+ export declare type StakeholderCommsPageUptimePercentageResponse = {
105121
+ __typename?: 'StakeholderCommsPageUptimePercentageResponse';
105122
+ error?: Maybe<Scalars['String']['output']>;
105123
+ pageId?: Maybe<Scalars['String']['output']>;
105124
+ uptimePercentage?: Maybe<Scalars['Float']['output']>;
105125
+ };
104081
105126
  export declare type StakeholderCommsPaginatedAssignmentByStakeholderInput = {
104082
105127
  cursor?: InputMaybe<Scalars['String']['input']>;
104083
105128
  limit?: InputMaybe<Scalars['Int']['input']>;
@@ -104113,6 +105158,9 @@ export declare type StakeholderCommsPreferencesInput = {
104113
105158
  sms?: InputMaybe<StakeholderCommsModePreferenceInput>;
104114
105159
  webhook?: InputMaybe<StakeholderCommsModePreferenceInput>;
104115
105160
  };
105161
+ export declare enum StakeholderCommsSearchField {
105162
+ EmailId = "EMAIL_ID"
105163
+ }
104116
105164
  export declare type StakeholderCommsSeoConfigInput = {
104117
105165
  description?: InputMaybe<Scalars['String']['input']>;
104118
105166
  enabled?: InputMaybe<Scalars['Boolean']['input']>;
@@ -104172,6 +105220,15 @@ export declare type StakeholderCommsStakeholderConnectionInput = {
104172
105220
  first?: InputMaybe<Scalars['Int']['input']>;
104173
105221
  last?: InputMaybe<Scalars['Int']['input']>;
104174
105222
  };
105223
+ export declare type StakeholderCommsStakeholderConnectionSearch = {
105224
+ searchField?: InputMaybe<StakeholderCommsSearchField>;
105225
+ searchValue?: InputMaybe<Scalars['String']['input']>;
105226
+ };
105227
+ export declare type StakeholderCommsStakeholderCreationError = {
105228
+ __typename?: 'StakeholderCommsStakeholderCreationError';
105229
+ error: Scalars['String']['output'];
105230
+ index: Scalars['Int']['output'];
105231
+ };
104175
105232
  export declare type StakeholderCommsStakeholderEdge = {
104176
105233
  __typename?: 'StakeholderCommsStakeholderEdge';
104177
105234
  cursor: Scalars['String']['output'];
@@ -106393,6 +107450,7 @@ export declare type TownsquareGoalUpdate = Node & {
106393
107450
  oldTargetDate?: Maybe<Scalars['Date']['output']>;
106394
107451
  oldTargetDateConfidence?: Maybe<Scalars['Int']['output']>;
106395
107452
  summary?: Maybe<Scalars['String']['output']>;
107453
+ updateNotes?: Maybe<TownsquareUpdateNoteConnection>;
106396
107454
  updateType?: Maybe<TownsquareUpdateType>;
106397
107455
  url?: Maybe<Scalars['String']['output']>;
106398
107456
  uuid?: Maybe<Scalars['UUID']['output']>;
@@ -106401,6 +107459,10 @@ export declare type TownsquareGoalUpdateCommentsArgs = {
106401
107459
  after?: InputMaybe<Scalars['String']['input']>;
106402
107460
  first?: InputMaybe<Scalars['Int']['input']>;
106403
107461
  };
107462
+ export declare type TownsquareGoalUpdateUpdateNotesArgs = {
107463
+ after?: InputMaybe<Scalars['String']['input']>;
107464
+ first?: InputMaybe<Scalars['Int']['input']>;
107465
+ };
106404
107466
  export declare type TownsquareGoalUpdateConnection = {
106405
107467
  __typename?: 'TownsquareGoalUpdateConnection';
106406
107468
  edges?: Maybe<Array<Maybe<TownsquareGoalUpdateEdge>>>;
@@ -107565,6 +108627,25 @@ export declare type TownsquareUpdateHighlightInput = {
107565
108627
  summary: Scalars['String']['input'];
107566
108628
  type: TownsquareHighlightType;
107567
108629
  };
108630
+ export declare type TownsquareUpdateNote = {
108631
+ __typename?: 'TownsquareUpdateNote';
108632
+ archived?: Maybe<Scalars['Boolean']['output']>;
108633
+ creationDate?: Maybe<Scalars['DateTime']['output']>;
108634
+ creator?: Maybe<User>;
108635
+ description?: Maybe<Scalars['String']['output']>;
108636
+ index?: Maybe<Scalars['Int']['output']>;
108637
+ summary?: Maybe<Scalars['String']['output']>;
108638
+ };
108639
+ export declare type TownsquareUpdateNoteConnection = {
108640
+ __typename?: 'TownsquareUpdateNoteConnection';
108641
+ edges?: Maybe<Array<Maybe<TownsquareUpdateNoteEdge>>>;
108642
+ pageInfo: PageInfo;
108643
+ };
108644
+ export declare type TownsquareUpdateNoteEdge = {
108645
+ __typename?: 'TownsquareUpdateNoteEdge';
108646
+ cursor: Scalars['String']['output'];
108647
+ node?: Maybe<TownsquareUpdateNote>;
108648
+ };
107568
108649
  export declare type TownsquareUpdateNoteInput = {
107569
108650
  archived?: InputMaybe<Scalars['Boolean']['input']>;
107570
108651
  description: Scalars['String']['input'];
@@ -108030,6 +109111,44 @@ export declare type TrelloBaseBoardPrefs = {
108030
109111
  autoArchive?: Maybe<Scalars['Boolean']['output']>;
108031
109112
  background?: Maybe<TrelloBoardBackground>;
108032
109113
  };
109114
+ export declare type TrelloBaseCard = {
109115
+ actions?: Maybe<TrelloCardActionConnection>;
109116
+ attachments?: Maybe<TrelloAttachmentConnection>;
109117
+ badges?: Maybe<TrelloCardBadges>;
109118
+ checklists?: Maybe<TrelloChecklistConnection>;
109119
+ closed?: Maybe<Scalars['Boolean']['output']>;
109120
+ complete?: Maybe<Scalars['Boolean']['output']>;
109121
+ cover?: Maybe<TrelloCardCover>;
109122
+ creation?: Maybe<TrelloCardCreationInfo>;
109123
+ description?: Maybe<TrelloUserGeneratedText>;
109124
+ due?: Maybe<TrelloCardDueInfo>;
109125
+ id: Scalars['ID']['output'];
109126
+ lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
109127
+ limits?: Maybe<TrelloCardLimits>;
109128
+ list?: Maybe<TrelloList>;
109129
+ name?: Maybe<Scalars['String']['output']>;
109130
+ objectId: Scalars['ID']['output'];
109131
+ originalDesc?: Maybe<TrelloUserGeneratedText>;
109132
+ originalName?: Maybe<TrelloUserGeneratedText>;
109133
+ pinned?: Maybe<Scalars['Boolean']['output']>;
109134
+ position?: Maybe<Scalars['Float']['output']>;
109135
+ role?: Maybe<TrelloCardRole>;
109136
+ singleInstrumentationId?: Maybe<Scalars['String']['output']>;
109137
+ startedAt?: Maybe<Scalars['DateTime']['output']>;
109138
+ };
109139
+ export declare type TrelloBaseCardActionsArgs = {
109140
+ after?: InputMaybe<Scalars['String']['input']>;
109141
+ first?: InputMaybe<Scalars['Int']['input']>;
109142
+ type?: InputMaybe<Array<TrelloCardActionType>>;
109143
+ };
109144
+ export declare type TrelloBaseCardAttachmentsArgs = {
109145
+ after?: InputMaybe<Scalars['String']['input']>;
109146
+ first?: InputMaybe<Scalars['Int']['input']>;
109147
+ };
109148
+ export declare type TrelloBaseCardChecklistsArgs = {
109149
+ after?: InputMaybe<Scalars['String']['input']>;
109150
+ first?: InputMaybe<Scalars['Int']['input']>;
109151
+ };
108033
109152
  export declare type TrelloBoard = Node & {
108034
109153
  __typename?: 'TrelloBoard';
108035
109154
  closed: Scalars['Boolean']['output'];
@@ -108342,7 +109461,7 @@ export declare type TrelloBoardWorkspaceUpdated = {
108342
109461
  id?: Maybe<Scalars['ID']['output']>;
108343
109462
  objectId?: Maybe<Scalars['ID']['output']>;
108344
109463
  };
108345
- export declare type TrelloCard = Node & {
109464
+ export declare type TrelloCard = Node & TrelloBaseCard & {
108346
109465
  __typename?: 'TrelloCard';
108347
109466
  actions?: Maybe<TrelloCardActionConnection>;
108348
109467
  attachments?: Maybe<TrelloAttachmentConnection>;
@@ -109321,7 +110440,7 @@ export declare type TrelloInboxListsArgs = {
109321
110440
  filter?: InputMaybe<TrelloListFilterInput>;
109322
110441
  first?: InputMaybe<Scalars['Int']['input']>;
109323
110442
  };
109324
- export declare type TrelloInboxCard = {
110443
+ export declare type TrelloInboxCard = TrelloBaseCard & {
109325
110444
  __typename?: 'TrelloInboxCard';
109326
110445
  actions?: Maybe<TrelloCardActionConnection>;
109327
110446
  attachments?: Maybe<TrelloAttachmentConnection>;
@@ -109331,8 +110450,8 @@ export declare type TrelloInboxCard = {
109331
110450
  complete?: Maybe<Scalars['Boolean']['output']>;
109332
110451
  cover?: Maybe<TrelloCardCover>;
109333
110452
  creation?: Maybe<TrelloCardCreationInfo>;
109334
- description?: Maybe<Scalars['String']['output']>;
109335
- due?: Maybe<Scalars['DateTime']['output']>;
110453
+ description?: Maybe<TrelloUserGeneratedText>;
110454
+ due?: Maybe<TrelloCardDueInfo>;
109336
110455
  id: Scalars['ID']['output'];
109337
110456
  lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
109338
110457
  limits?: Maybe<TrelloCardLimits>;
@@ -109343,7 +110462,7 @@ export declare type TrelloInboxCard = {
109343
110462
  originalName?: Maybe<TrelloUserGeneratedText>;
109344
110463
  pinned?: Maybe<Scalars['Boolean']['output']>;
109345
110464
  position?: Maybe<Scalars['Float']['output']>;
109346
- role?: Maybe<Scalars['String']['output']>;
110465
+ role?: Maybe<TrelloCardRole>;
109347
110466
  singleInstrumentationId?: Maybe<Scalars['String']['output']>;
109348
110467
  startedAt?: Maybe<Scalars['DateTime']['output']>;
109349
110468
  };
@@ -109574,14 +110693,15 @@ export declare type TrelloMemberAiRuleEdge = {
109574
110693
  export declare type TrelloMemberBoardStarConnection = {
109575
110694
  __typename?: 'TrelloMemberBoardStarConnection';
109576
110695
  edges?: Maybe<Array<TrelloMemberBoardStarEdge>>;
109577
- nodes?: Maybe<Array<TrelloBoard>>;
110696
+ nodes?: Maybe<Array<Maybe<TrelloBoard>>>;
109578
110697
  pageInfo: PageInfo;
109579
110698
  };
109580
110699
  export declare type TrelloMemberBoardStarEdge = {
109581
110700
  __typename?: 'TrelloMemberBoardStarEdge';
109582
110701
  cursor: Scalars['String']['output'];
109583
110702
  id: Scalars['ID']['output'];
109584
- node: TrelloBoard;
110703
+ node?: Maybe<TrelloBoard>;
110704
+ objectId: Scalars['String']['output'];
109585
110705
  position: Scalars['Float']['output'];
109586
110706
  };
109587
110707
  export declare type TrelloMemberConnection = {
@@ -109755,6 +110875,7 @@ export declare type TrelloMutationApi = {
109755
110875
  updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
109756
110876
  updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
109757
110877
  updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
110878
+ updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
109758
110879
  updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
109759
110880
  watchCard?: Maybe<TrelloWatchCardPayload>;
109760
110881
  };
@@ -109869,6 +110990,9 @@ export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
109869
110990
  export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
109870
110991
  input: TrelloUpdateOAuth2ClientInput;
109871
110992
  };
110993
+ export declare type TrelloMutationApiUpdatePrimaryPlannerAccountArgs = {
110994
+ input: TrelloUpdatePrimaryPlannerAccountInput;
110995
+ };
109872
110996
  export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
109873
110997
  input: TrelloUpdateWorkspaceTagInput;
109874
110998
  };
@@ -110355,6 +111479,7 @@ export declare type TrelloQueryApi = {
110355
111479
  card?: Maybe<TrelloCard>;
110356
111480
  cardBatch?: Maybe<TrelloCardBatch>;
110357
111481
  cardByShortLink?: Maybe<TrelloCard>;
111482
+ cardOrInboxCard?: Maybe<TrelloCardOrInboxCard>;
110358
111483
  echo?: Maybe<Scalars['String']['output']>;
110359
111484
  echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
110360
111485
  enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
@@ -110406,6 +111531,9 @@ export declare type TrelloQueryApiCardBatchArgs = {
110406
111531
  export declare type TrelloQueryApiCardByShortLinkArgs = {
110407
111532
  shortLink: Scalars['TrelloShortLink']['input'];
110408
111533
  };
111534
+ export declare type TrelloQueryApiCardOrInboxCardArgs = {
111535
+ id: Scalars['ID']['input'];
111536
+ };
110409
111537
  export declare type TrelloQueryApiEchosArgs = {
110410
111538
  echo: Array<Scalars['String']['input']>;
110411
111539
  };
@@ -110970,6 +112098,15 @@ export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
110970
112098
  scopes?: Maybe<Array<Scalars['String']['output']>>;
110971
112099
  success: Scalars['Boolean']['output'];
110972
112100
  };
112101
+ export declare type TrelloUpdatePrimaryPlannerAccountInput = {
112102
+ providerAccountId: Scalars['ID']['input'];
112103
+ };
112104
+ export declare type TrelloUpdatePrimaryPlannerAccountPayload = Payload & {
112105
+ __typename?: 'TrelloUpdatePrimaryPlannerAccountPayload';
112106
+ errors?: Maybe<Array<MutationError>>;
112107
+ planner?: Maybe<TrelloPlanner>;
112108
+ success: Scalars['Boolean']['output'];
112109
+ };
110973
112110
  export declare type TrelloUpdateWorkspaceTagInput = {
110974
112111
  name: Scalars['String']['input'];
110975
112112
  tagId: Scalars['ID']['input'];
@@ -111544,6 +112681,12 @@ export declare type UnifiedAtlassianProductEdge = UnifiedIEdge & {
111544
112681
  cursor?: Maybe<Scalars['String']['output']>;
111545
112682
  node?: Maybe<UnifiedAtlassianProduct>;
111546
112683
  };
112684
+ export declare type UnifiedCacheFieldKey = {
112685
+ name?: InputMaybe<Scalars['String']['input']>;
112686
+ requiresHashing?: InputMaybe<Scalars['Boolean']['input']>;
112687
+ requiresSorting?: InputMaybe<Scalars['Boolean']['input']>;
112688
+ values?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
112689
+ };
111547
112690
  export declare type UnifiedCacheInvalidationResult = {
111548
112691
  __typename?: 'UnifiedCacheInvalidationResult';
111549
112692
  errors?: Maybe<Array<UnifiedMutationError>>;
@@ -111566,20 +112709,43 @@ export declare type UnifiedCacheStatusPayload = UnifiedPayload & {
111566
112709
  export declare type UnifiedCachingMutation = {
111567
112710
  __typename?: 'UnifiedCachingMutation';
111568
112711
  invalidateCache?: Maybe<UnifiedCacheInvalidationResult>;
112712
+ invalidateCacheField?: Maybe<UnifiedCacheInvalidationResult>;
112713
+ invalidateCacheFieldByPattern?: Maybe<UnifiedCacheInvalidationResult>;
111569
112714
  setCacheData?: Maybe<UnifiedCacheStatusPayload>;
112715
+ setCacheFieldData?: Maybe<UnifiedCacheStatusPayload>;
111570
112716
  };
111571
112717
  export declare type UnifiedCachingMutationInvalidateCacheArgs = {
111572
112718
  cacheKey: Scalars['String']['input'];
111573
112719
  };
112720
+ export declare type UnifiedCachingMutationInvalidateCacheFieldArgs = {
112721
+ cacheFieldKey: Scalars['String']['input'];
112722
+ cacheKey: Scalars['String']['input'];
112723
+ };
112724
+ export declare type UnifiedCachingMutationInvalidateCacheFieldByPatternArgs = {
112725
+ cacheFieldKey: Scalars['String']['input'];
112726
+ cacheKey: Scalars['String']['input'];
112727
+ };
111574
112728
  export declare type UnifiedCachingMutationSetCacheDataArgs = {
111575
112729
  cacheKey: Scalars['String']['input'];
111576
112730
  data: Scalars['String']['input'];
111577
112731
  ttl?: InputMaybe<Scalars['Int']['input']>;
111578
112732
  };
112733
+ export declare type UnifiedCachingMutationSetCacheFieldDataArgs = {
112734
+ cacheFieldKey: Scalars['String']['input'];
112735
+ cacheKey: Scalars['String']['input'];
112736
+ data: Scalars['String']['input'];
112737
+ ttl?: InputMaybe<Scalars['Int']['input']>;
112738
+ };
111579
112739
  export declare type UnifiedCachingQuery = {
111580
112740
  __typename?: 'UnifiedCachingQuery';
112741
+ getCacheFieldKey?: Maybe<UnifiedUCacheKeyResult>;
111581
112742
  getCacheKey?: Maybe<UnifiedUCacheKeyResult>;
111582
112743
  getCachedData?: Maybe<UnifiedUCacheResult>;
112744
+ getCachedDataFromField?: Maybe<UnifiedUCacheResult>;
112745
+ getSimpleCacheKey?: Maybe<UnifiedUCacheKeyResult>;
112746
+ };
112747
+ export declare type UnifiedCachingQueryGetCacheFieldKeyArgs = {
112748
+ cacheFieldKey: Array<UnifiedCacheFieldKey>;
111583
112749
  };
111584
112750
  export declare type UnifiedCachingQueryGetCacheKeyArgs = {
111585
112751
  dataPoint: Scalars['String']['input'];
@@ -111588,6 +112754,13 @@ export declare type UnifiedCachingQueryGetCacheKeyArgs = {
111588
112754
  export declare type UnifiedCachingQueryGetCachedDataArgs = {
111589
112755
  cacheKey: Scalars['String']['input'];
111590
112756
  };
112757
+ export declare type UnifiedCachingQueryGetCachedDataFromFieldArgs = {
112758
+ cacheFieldKey: Scalars['String']['input'];
112759
+ cacheKey: Scalars['String']['input'];
112760
+ };
112761
+ export declare type UnifiedCachingQueryGetSimpleCacheKeyArgs = {
112762
+ id: Scalars['String']['input'];
112763
+ };
111591
112764
  export declare type UnifiedCommunityMutation = {
111592
112765
  __typename?: 'UnifiedCommunityMutation';
111593
112766
  deleteCommunityData?: Maybe<UnifiedCommunityPayload>;
@@ -113054,6 +114227,7 @@ export declare type UpdatePolarisTimelineConfig = {
113054
114227
  startDateField?: InputMaybe<Scalars['ID']['input']>;
113055
114228
  startTimestamp?: InputMaybe<Scalars['String']['input']>;
113056
114229
  summaryCardField?: InputMaybe<Scalars['ID']['input']>;
114230
+ todayMarker?: InputMaybe<PolarisTimelineTodayMarker>;
113057
114231
  };
113058
114232
  export declare type UpdatePolarisViewArrangementInfoPayload = Payload & {
113059
114233
  __typename?: 'UpdatePolarisViewArrangementInfoPayload';
@@ -114482,6 +115656,7 @@ export declare type WorkSuggestionsByProjectsResponseStuckIssueSuggestionsArgs =
114482
115656
  export declare type WorkSuggestionsByVersionResponse = {
114483
115657
  __typename?: 'WorkSuggestionsByVersionResponse';
114484
115658
  blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
115659
+ issueMissingDetailsSuggestions?: Maybe<Array<WorkSuggestionsIssueMissingDetailsTask>>;
114485
115660
  };
114486
115661
  export declare type WorkSuggestionsCommon = {
114487
115662
  id: Scalars['String']['output'];