@forge/cli-shared 8.5.0-experimental-3f68b81 → 8.5.0-experimental-73629cc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -2
- package/out/graphql/graphql-types.d.ts +553 -28
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +85 -28
- package/package.json +2 -2
|
@@ -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
|
-
|
|
1776
|
-
directory
|
|
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
|
|
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'];
|
|
@@ -8878,6 +9056,19 @@ export declare enum CompassCampaignQuerySortOrder {
|
|
|
8878
9056
|
Desc = "DESC"
|
|
8879
9057
|
}
|
|
8880
9058
|
export declare type CompassCampaignResult = CompassCampaign | QueryError;
|
|
9059
|
+
export declare type CompassCatalogBootstrap = {
|
|
9060
|
+
__typename?: 'CompassCatalogBootstrap';
|
|
9061
|
+
id: Scalars['ID']['output'];
|
|
9062
|
+
source: Scalars['String']['output'];
|
|
9063
|
+
status: CompassCatalogBootstrapStatus;
|
|
9064
|
+
};
|
|
9065
|
+
export declare type CompassCatalogBootstrapResult = CompassCatalogBootstrap | QueryError;
|
|
9066
|
+
export declare enum CompassCatalogBootstrapStatus {
|
|
9067
|
+
Complete = "COMPLETE",
|
|
9068
|
+
Error = "ERROR",
|
|
9069
|
+
Pending = "PENDING",
|
|
9070
|
+
Unknown = "UNKNOWN"
|
|
9071
|
+
}
|
|
8881
9072
|
export declare type CompassCatalogMutationApi = {
|
|
8882
9073
|
__typename?: 'CompassCatalogMutationApi';
|
|
8883
9074
|
acknowledgeAnnouncement?: Maybe<CompassAcknowledgeAnnouncementPayload>;
|
|
@@ -9269,6 +9460,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
9269
9460
|
attentionItemsConnection?: Maybe<CompassAttentionItemConnection>;
|
|
9270
9461
|
campaign?: Maybe<CompassCampaignResult>;
|
|
9271
9462
|
campaigns?: Maybe<CompassCampaignConnection>;
|
|
9463
|
+
catalogBootstrap?: Maybe<CompassCatalogBootstrapResult>;
|
|
9272
9464
|
component?: Maybe<CompassComponentResult>;
|
|
9273
9465
|
componentByExternalAlias?: Maybe<CompassComponentResult>;
|
|
9274
9466
|
componentByReference?: Maybe<CompassComponentResult>;
|
|
@@ -9331,6 +9523,9 @@ export declare type CompassCatalogQueryApiCampaignsArgs = {
|
|
|
9331
9523
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9332
9524
|
query?: InputMaybe<CompassCampaignQuery>;
|
|
9333
9525
|
};
|
|
9526
|
+
export declare type CompassCatalogQueryApiCatalogBootstrapArgs = {
|
|
9527
|
+
cloudId: Scalars['ID']['input'];
|
|
9528
|
+
};
|
|
9334
9529
|
export declare type CompassCatalogQueryApiComponentArgs = {
|
|
9335
9530
|
id: Scalars['ID']['input'];
|
|
9336
9531
|
};
|
|
@@ -14707,6 +14902,16 @@ export declare type ConfluenceCreateQuestionPayload = Payload & {
|
|
|
14707
14902
|
question?: Maybe<ConfluenceQuestion>;
|
|
14708
14903
|
success: Scalars['Boolean']['output'];
|
|
14709
14904
|
};
|
|
14905
|
+
export declare type ConfluenceCreateSpaceContent = {
|
|
14906
|
+
parentTitle?: InputMaybe<Scalars['String']['input']>;
|
|
14907
|
+
templateKey?: InputMaybe<Scalars['String']['input']>;
|
|
14908
|
+
title: Scalars['String']['input'];
|
|
14909
|
+
type: ConfluenceCreateSpaceContentType;
|
|
14910
|
+
};
|
|
14911
|
+
export declare enum ConfluenceCreateSpaceContentType {
|
|
14912
|
+
Folder = "FOLDER",
|
|
14913
|
+
Page = "PAGE"
|
|
14914
|
+
}
|
|
14710
14915
|
export declare type ConfluenceCreateSpaceInput = {
|
|
14711
14916
|
key: Scalars['String']['input'];
|
|
14712
14917
|
name: Scalars['String']['input'];
|
|
@@ -20280,11 +20485,15 @@ export declare type CplsAddContributorScopeAssociationPayload = {
|
|
|
20280
20485
|
};
|
|
20281
20486
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
20282
20487
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
20488
|
+
contributor?: Maybe<CplsContributor>;
|
|
20283
20489
|
contributors: CplsContributorConnection;
|
|
20284
20490
|
id: Scalars['ID']['output'];
|
|
20285
20491
|
timeCells: Array<CplsTimeCell>;
|
|
20286
20492
|
viewSettings: CplsViewSettings;
|
|
20287
20493
|
};
|
|
20494
|
+
export declare type CplsCapacityPlanningPeopleViewContributorArgs = {
|
|
20495
|
+
id: Scalars['ID']['input'];
|
|
20496
|
+
};
|
|
20288
20497
|
export declare type CplsCapacityPlanningPeopleViewContributorsArgs = {
|
|
20289
20498
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
20290
20499
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20963,6 +21172,7 @@ export declare type CreateNotePayload = {
|
|
|
20963
21172
|
export declare type CreatePersonalSpaceInput = {
|
|
20964
21173
|
copySpacePermissionsFromSpaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
20965
21174
|
initialPermissionOption?: InputMaybe<InitialPermissionOptions>;
|
|
21175
|
+
spaceContents?: InputMaybe<Array<InputMaybe<ConfluenceCreateSpaceContent>>>;
|
|
20966
21176
|
spaceName: Scalars['String']['input'];
|
|
20967
21177
|
};
|
|
20968
21178
|
export declare type CreatePolarisCommentInput = {
|
|
@@ -21075,6 +21285,7 @@ export declare type CreateSpaceAdditionalSettingsInput = {
|
|
|
21075
21285
|
export declare type CreateSpaceInput = {
|
|
21076
21286
|
additionalSettings?: InputMaybe<CreateSpaceAdditionalSettingsInput>;
|
|
21077
21287
|
copySpacePermissionsFromSpaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
21288
|
+
createSpaceContent?: InputMaybe<Array<InputMaybe<ConfluenceCreateSpaceContent>>>;
|
|
21078
21289
|
initialPermissionOption?: InputMaybe<InitialPermissionOptions>;
|
|
21079
21290
|
spaceKey: Scalars['String']['input'];
|
|
21080
21291
|
spaceLogoDataURI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -24230,6 +24441,12 @@ export declare type DevAiRunAutofixScanInput = {
|
|
|
24230
24441
|
restartIfCurrentlyRunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
24231
24442
|
workspaceId: Scalars['ID']['input'];
|
|
24232
24443
|
};
|
|
24444
|
+
export declare type DevAiSavedPrompt = {
|
|
24445
|
+
__typename?: 'DevAiSavedPrompt';
|
|
24446
|
+
contents?: Maybe<Scalars['String']['output']>;
|
|
24447
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
24448
|
+
repoName?: Maybe<Scalars['String']['output']>;
|
|
24449
|
+
};
|
|
24233
24450
|
export declare enum DevAiScanIntervalUnit {
|
|
24234
24451
|
Days = "DAYS",
|
|
24235
24452
|
Months = "MONTHS",
|
|
@@ -30526,6 +30743,11 @@ export declare type GraphIntegrationMcpAdminManagementMcpServerEdge = {
|
|
|
30526
30743
|
cursor: Scalars['String']['output'];
|
|
30527
30744
|
node?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
30528
30745
|
};
|
|
30746
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerMetaData = {
|
|
30747
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerMetaData';
|
|
30748
|
+
iconKey: Scalars['String']['output'];
|
|
30749
|
+
iconUrl: Scalars['String']['output'];
|
|
30750
|
+
};
|
|
30529
30751
|
export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
30530
30752
|
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerNode';
|
|
30531
30753
|
authConsentUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -33373,6 +33595,8 @@ export declare type GraphStore = {
|
|
|
33373
33595
|
atlasProjectIsTrackedOnJiraEpicInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseConnection>;
|
|
33374
33596
|
atlasProjectIsTrackedOnJiraEpicInverseRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
33375
33597
|
atlasProjectIsTrackedOnJiraEpicRelationship?: Maybe<GraphStoreFullAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
33598
|
+
atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
33599
|
+
atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
33376
33600
|
boardBelongsToProject?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectConnection>;
|
|
33377
33601
|
boardBelongsToProjectInverse?: Maybe<GraphStoreSimplifiedBoardBelongsToProjectInverseConnection>;
|
|
33378
33602
|
branchInRepo?: Maybe<GraphStoreSimplifiedBranchInRepoConnection>;
|
|
@@ -34461,6 +34685,20 @@ export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicRelationshipArgs =
|
|
|
34461
34685
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34462
34686
|
id: Scalars['ID']['input'];
|
|
34463
34687
|
};
|
|
34688
|
+
export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemArgs = {
|
|
34689
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34690
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34691
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34692
|
+
id: Scalars['ID']['input'];
|
|
34693
|
+
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
34694
|
+
};
|
|
34695
|
+
export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
34696
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34697
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34698
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34699
|
+
id: Scalars['ID']['input'];
|
|
34700
|
+
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
34701
|
+
};
|
|
34464
34702
|
export declare type GraphStoreBoardBelongsToProjectArgs = {
|
|
34465
34703
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34466
34704
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39608,6 +39846,9 @@ export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
|
39608
39846
|
export declare type GraphStoreAtlasProjectIsTrackedOnJiraEpicSortInput = {
|
|
39609
39847
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39610
39848
|
};
|
|
39849
|
+
export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
|
|
39850
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
39851
|
+
};
|
|
39611
39852
|
export declare type GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection = HasPageInfo & {
|
|
39612
39853
|
__typename?: 'GraphStoreBatchAtlasGoalHasJiraAlignProjectConnection';
|
|
39613
39854
|
edges: Array<Maybe<GraphStoreBatchAtlasGoalHasJiraAlignProjectEdge>>;
|
|
@@ -47096,6 +47337,34 @@ export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseEd
|
|
|
47096
47337
|
};
|
|
47097
47338
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicInverseUnion = TownsquareProject;
|
|
47098
47339
|
export declare type GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicUnion = JiraIssue;
|
|
47340
|
+
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection = HasPageInfo & {
|
|
47341
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection';
|
|
47342
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemEdge>>>;
|
|
47343
|
+
pageInfo: PageInfo;
|
|
47344
|
+
};
|
|
47345
|
+
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemEdge = {
|
|
47346
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemEdge';
|
|
47347
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47348
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47349
|
+
id: Scalars['ID']['output'];
|
|
47350
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47351
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion>;
|
|
47352
|
+
};
|
|
47353
|
+
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection = HasPageInfo & {
|
|
47354
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection';
|
|
47355
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseEdge>>>;
|
|
47356
|
+
pageInfo: PageInfo;
|
|
47357
|
+
};
|
|
47358
|
+
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseEdge = {
|
|
47359
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseEdge';
|
|
47360
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47361
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47362
|
+
id: Scalars['ID']['output'];
|
|
47363
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47364
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion>;
|
|
47365
|
+
};
|
|
47366
|
+
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
|
|
47367
|
+
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
|
|
47099
47368
|
export declare type GraphStoreSimplifiedBoardBelongsToProjectConnection = HasPageInfo & {
|
|
47100
47369
|
__typename?: 'GraphStoreSimplifiedBoardBelongsToProjectConnection';
|
|
47101
47370
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedBoardBelongsToProjectEdge>>>;
|
|
@@ -56893,6 +57162,9 @@ export declare enum HelpCenterDescriptionType {
|
|
|
56893
57162
|
RichText = "RICH_TEXT",
|
|
56894
57163
|
WikiMarkup = "WIKI_MARKUP"
|
|
56895
57164
|
}
|
|
57165
|
+
export declare type HelpCenterFilter = {
|
|
57166
|
+
type?: InputMaybe<HelpCenterType>;
|
|
57167
|
+
};
|
|
56896
57168
|
export declare type HelpCenterHelpObject = HelpObjectStoreArticle | HelpObjectStoreChannel | HelpObjectStoreQueryError | HelpObjectStoreRequestForm;
|
|
56897
57169
|
export declare type HelpCenterHomePageLayout = {
|
|
56898
57170
|
__typename?: 'HelpCenterHomePageLayout';
|
|
@@ -57287,6 +57559,7 @@ export declare type HelpCenterQueryApiHelpCenterTopicByIdArgs = {
|
|
|
57287
57559
|
};
|
|
57288
57560
|
export declare type HelpCenterQueryApiHelpCentersArgs = {
|
|
57289
57561
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
57562
|
+
filter?: InputMaybe<HelpCenterFilter>;
|
|
57290
57563
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
57291
57564
|
sortOrder: HelpCenterSortOrder;
|
|
57292
57565
|
workspaceAri: Scalars['ID']['input'];
|
|
@@ -59625,6 +59898,16 @@ export declare type JiraActivitySortOrderPayload = Payload & {
|
|
|
59625
59898
|
errors?: Maybe<Array<MutationError>>;
|
|
59626
59899
|
success: Scalars['Boolean']['output'];
|
|
59627
59900
|
};
|
|
59901
|
+
export declare type JiraAddAttachmentInput = {
|
|
59902
|
+
fileId: Scalars['String']['input'];
|
|
59903
|
+
issue: Scalars['ID']['input'];
|
|
59904
|
+
};
|
|
59905
|
+
export declare type JiraAddAttachmentPayload = {
|
|
59906
|
+
__typename?: 'JiraAddAttachmentPayload';
|
|
59907
|
+
attachment?: Maybe<JiraAttachment>;
|
|
59908
|
+
errors?: Maybe<Array<MutationError>>;
|
|
59909
|
+
success: Scalars['Boolean']['output'];
|
|
59910
|
+
};
|
|
59628
59911
|
export declare type JiraAddCommentInput = {
|
|
59629
59912
|
content: JiraAdfInput;
|
|
59630
59913
|
issueId: Scalars['ID']['input'];
|
|
@@ -60204,6 +60487,17 @@ export declare type JiraAssignableUsersEdge = {
|
|
|
60204
60487
|
cursor: Scalars['String']['output'];
|
|
60205
60488
|
node?: Maybe<User>;
|
|
60206
60489
|
};
|
|
60490
|
+
export declare type JiraAssociateProjectToFieldSchemeInput = {
|
|
60491
|
+
fieldConfigSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
60492
|
+
fieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
60493
|
+
projectIds: Array<Scalars['ID']['input']>;
|
|
60494
|
+
};
|
|
60495
|
+
export declare type JiraAssociateProjectToFieldSchemePayload = {
|
|
60496
|
+
__typename?: 'JiraAssociateProjectToFieldSchemePayload';
|
|
60497
|
+
affectedFieldSchemes?: Maybe<Array<Maybe<JiraFieldScheme>>>;
|
|
60498
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60499
|
+
success: Scalars['Boolean']['output'];
|
|
60500
|
+
};
|
|
60207
60501
|
export declare type JiraAtlasProject = {
|
|
60208
60502
|
__typename?: 'JiraAtlasProject';
|
|
60209
60503
|
dueDate?: Maybe<Scalars['Date']['output']>;
|
|
@@ -60722,7 +61016,9 @@ export declare type JiraBackgroundUploadToken = {
|
|
|
60722
61016
|
export declare type JiraBackgroundUploadTokenResult = JiraBackgroundUploadToken | QueryError;
|
|
60723
61017
|
export declare type JiraBacklog = {
|
|
60724
61018
|
__typename?: 'JiraBacklog';
|
|
60725
|
-
|
|
61019
|
+
backlogData: JiraBacklogData;
|
|
61020
|
+
boardConfig: JiraBacklogBoardConfig;
|
|
61021
|
+
globalConfig: JiraBacklogGlobalConfig;
|
|
60726
61022
|
};
|
|
60727
61023
|
export declare type JiraBacklogApplicationProperty = {
|
|
60728
61024
|
__typename?: 'JiraBacklogApplicationProperty';
|
|
@@ -60881,7 +61177,7 @@ export declare type JiraBacklogIssueEpicLinkField = {
|
|
|
60881
61177
|
editable?: Maybe<Scalars['Boolean']['output']>;
|
|
60882
61178
|
epicColor?: Maybe<Scalars['String']['output']>;
|
|
60883
61179
|
epicKey?: Maybe<Scalars['String']['output']>;
|
|
60884
|
-
|
|
61180
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
60885
61181
|
issueId?: Maybe<Scalars['Long']['output']>;
|
|
60886
61182
|
issueTypeIconUrl?: Maybe<Scalars['String']['output']>;
|
|
60887
61183
|
issueTypeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -61053,12 +61349,6 @@ export declare type JiraBacklogVersionData = {
|
|
|
61053
61349
|
canCreateVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
61054
61350
|
versionsPerProject?: Maybe<Array<Maybe<JiraBacklogProjectVersions>>>;
|
|
61055
61351
|
};
|
|
61056
|
-
export declare type JiraBacklogWithConfig = {
|
|
61057
|
-
__typename?: 'JiraBacklogWithConfig';
|
|
61058
|
-
backlogData: JiraBacklogData;
|
|
61059
|
-
boardConfig: JiraBacklogBoardConfig;
|
|
61060
|
-
globalConfig: JiraBacklogGlobalConfig;
|
|
61061
|
-
};
|
|
61062
61352
|
export declare enum JiraBatchWindowPreference {
|
|
61063
61353
|
DefaultBatching = "DEFAULT_BATCHING",
|
|
61064
61354
|
FifteenMinutes = "FIFTEEN_MINUTES",
|
|
@@ -61379,6 +61669,7 @@ export declare type JiraBulkCleanupProjectsPayload = Payload & {
|
|
|
61379
61669
|
success: Scalars['Boolean']['output'];
|
|
61380
61670
|
};
|
|
61381
61671
|
export declare type JiraBulkCreateIssueLinksInput = {
|
|
61672
|
+
direction?: InputMaybe<JiraIssueLinkDirection>;
|
|
61382
61673
|
issueLinkTypeId: Scalars['ID']['input'];
|
|
61383
61674
|
sourceIssueId: Scalars['ID']['input'];
|
|
61384
61675
|
targetIssueIds: Array<Scalars['ID']['input']>;
|
|
@@ -61565,6 +61856,14 @@ export declare type JiraCmdbFieldSelectedCmdbObjectsConnectionArgs = {
|
|
|
61565
61856
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61566
61857
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61567
61858
|
};
|
|
61859
|
+
export declare type JiraCmdbFieldInput = {
|
|
61860
|
+
bulkEditMultiSelectFieldOption?: InputMaybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
61861
|
+
cmdbObjects: Array<JiraCmdbInput>;
|
|
61862
|
+
fieldId: Scalars['ID']['input'];
|
|
61863
|
+
};
|
|
61864
|
+
export declare type JiraCmdbInput = {
|
|
61865
|
+
cmdbObjectGlobalId: Scalars['ID']['input'];
|
|
61866
|
+
};
|
|
61568
61867
|
export declare type JiraCalendar = {
|
|
61569
61868
|
__typename?: 'JiraCalendar';
|
|
61570
61869
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -64494,6 +64793,7 @@ export declare type JiraFieldConfigEdge = {
|
|
|
64494
64793
|
node?: Maybe<JiraIssueFieldConfig>;
|
|
64495
64794
|
};
|
|
64496
64795
|
export declare type JiraFieldConfigFilterInput = {
|
|
64796
|
+
addConnectAndForgeFieldsToIncludedFieldTypes?: InputMaybe<Scalars['Boolean']['input']>;
|
|
64497
64797
|
aliasFieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
64498
64798
|
cloudId: Scalars['ID']['input'];
|
|
64499
64799
|
fieldIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -64604,6 +64904,7 @@ export declare type JiraFieldScheme = Node & {
|
|
|
64604
64904
|
description?: Maybe<Scalars['String']['output']>;
|
|
64605
64905
|
fieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
64606
64906
|
id: Scalars['ID']['output'];
|
|
64907
|
+
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
64607
64908
|
name?: Maybe<Scalars['String']['output']>;
|
|
64608
64909
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
64609
64910
|
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -66682,6 +66983,7 @@ export declare type JiraIssueFieldsInput = {
|
|
|
66682
66983
|
atlassianTeamFields?: InputMaybe<Array<JiraAtlassianTeamFieldInput>>;
|
|
66683
66984
|
cascadingSelectFields?: InputMaybe<Array<JiraCascadingSelectFieldInput>>;
|
|
66684
66985
|
clearableNumberFields?: InputMaybe<Array<JiraClearableNumberFieldInput>>;
|
|
66986
|
+
cmdbFields?: InputMaybe<Array<JiraCmdbFieldInput>>;
|
|
66685
66987
|
colorFields?: InputMaybe<Array<JiraColorFieldInput>>;
|
|
66686
66988
|
datePickerFields?: InputMaybe<Array<JiraDateFieldInput>>;
|
|
66687
66989
|
dateTimePickerFields?: InputMaybe<Array<JiraDateTimeFieldInput>>;
|
|
@@ -66894,6 +67196,7 @@ export declare type JiraIssueLinkConnection = {
|
|
|
66894
67196
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
66895
67197
|
};
|
|
66896
67198
|
export declare enum JiraIssueLinkDirection {
|
|
67199
|
+
Both = "BOTH",
|
|
66897
67200
|
Inward = "INWARD",
|
|
66898
67201
|
Outward = "OUTWARD"
|
|
66899
67202
|
}
|
|
@@ -69235,6 +69538,7 @@ export declare type JiraMultipleVersionPickerFieldPayload = Payload & {
|
|
|
69235
69538
|
export declare type JiraMutation = {
|
|
69236
69539
|
__typename?: 'JiraMutation';
|
|
69237
69540
|
activitySortOrder?: Maybe<JiraActivitySortOrderPayload>;
|
|
69541
|
+
addAttachment?: Maybe<JiraAddAttachmentPayload>;
|
|
69238
69542
|
addComment?: Maybe<JiraAddCommentPayload>;
|
|
69239
69543
|
addFieldsToProject?: Maybe<JiraAddFieldsToProjectPayload>;
|
|
69240
69544
|
addIssuesToFixVersion?: Maybe<JiraAddIssuesToFixVersionPayload>;
|
|
@@ -69463,6 +69767,9 @@ export declare type JiraMutationActivitySortOrderArgs = {
|
|
|
69463
69767
|
cloudId: Scalars['ID']['input'];
|
|
69464
69768
|
orderBy: JiraIssueViewActivityFeedSortOrder;
|
|
69465
69769
|
};
|
|
69770
|
+
export declare type JiraMutationAddAttachmentArgs = {
|
|
69771
|
+
input: JiraAddAttachmentInput;
|
|
69772
|
+
};
|
|
69466
69773
|
export declare type JiraMutationAddCommentArgs = {
|
|
69467
69774
|
input: JiraAddCommentInput;
|
|
69468
69775
|
};
|
|
@@ -71569,6 +71876,7 @@ export declare type JiraPlaybookStepUsageFilter = {
|
|
|
71569
71876
|
export declare type JiraPlaybookTemplate = {
|
|
71570
71877
|
__typename?: 'JiraPlaybookTemplate';
|
|
71571
71878
|
category?: Maybe<PlaybookTemplateCategory>;
|
|
71879
|
+
categoryName?: Maybe<Scalars['String']['output']>;
|
|
71572
71880
|
color?: Maybe<PlaybookTemplateColor>;
|
|
71573
71881
|
description?: Maybe<Scalars['String']['output']>;
|
|
71574
71882
|
estimatedTimeSaving?: Maybe<Scalars['Int']['output']>;
|
|
@@ -71584,6 +71892,7 @@ export declare type JiraPlaybookTemplate = {
|
|
|
71584
71892
|
export declare type JiraPlaybookTemplateCategory = {
|
|
71585
71893
|
__typename?: 'JiraPlaybookTemplateCategory';
|
|
71586
71894
|
category?: Maybe<PlaybookTemplateCategory>;
|
|
71895
|
+
categoryName?: Maybe<Scalars['String']['output']>;
|
|
71587
71896
|
cloudId: Scalars['ID']['output'];
|
|
71588
71897
|
templates?: Maybe<JiraPlaybookTemplateConnection>;
|
|
71589
71898
|
};
|
|
@@ -79846,6 +80155,9 @@ export declare type JpdSubscriptions = {
|
|
|
79846
80155
|
onViewCommentEvents?: Maybe<JpdViewCommentEvent>;
|
|
79847
80156
|
onViewCreated?: Maybe<JpdViewCreatedEvent>;
|
|
79848
80157
|
onViewDeleted?: Maybe<JpdViewDeletedEvent>;
|
|
80158
|
+
onViewSetCreated?: Maybe<JpdViewSetCreatedEvent>;
|
|
80159
|
+
onViewSetDeleted?: Maybe<JpdViewSetDeletedEvent>;
|
|
80160
|
+
onViewSetUpdated?: Maybe<JpdViewSetUpdatedEvent>;
|
|
79849
80161
|
onViewUpdated?: Maybe<JpdViewUpdatedEvent>;
|
|
79850
80162
|
};
|
|
79851
80163
|
export declare type JpdSubscriptionsOnInsightCreatedArgs = {
|
|
@@ -79870,13 +80182,27 @@ export declare type JpdSubscriptionsOnViewCommentEventsArgs = {
|
|
|
79870
80182
|
projectAri: Scalars['ID']['input'];
|
|
79871
80183
|
};
|
|
79872
80184
|
export declare type JpdSubscriptionsOnViewCreatedArgs = {
|
|
80185
|
+
consumer?: InputMaybe<Scalars['String']['input']>;
|
|
79873
80186
|
projectAri: Scalars['ID']['input'];
|
|
79874
80187
|
};
|
|
79875
80188
|
export declare type JpdSubscriptionsOnViewDeletedArgs = {
|
|
80189
|
+
consumer?: InputMaybe<Scalars['String']['input']>;
|
|
80190
|
+
projectAri: Scalars['ID']['input'];
|
|
80191
|
+
};
|
|
80192
|
+
export declare type JpdSubscriptionsOnViewSetCreatedArgs = {
|
|
80193
|
+
consumer?: InputMaybe<Scalars['String']['input']>;
|
|
80194
|
+
projectAri: Scalars['ID']['input'];
|
|
80195
|
+
};
|
|
80196
|
+
export declare type JpdSubscriptionsOnViewSetDeletedArgs = {
|
|
80197
|
+
consumer?: InputMaybe<Scalars['String']['input']>;
|
|
80198
|
+
projectAri: Scalars['ID']['input'];
|
|
80199
|
+
};
|
|
80200
|
+
export declare type JpdSubscriptionsOnViewSetUpdatedArgs = {
|
|
80201
|
+
consumer?: InputMaybe<Scalars['String']['input']>;
|
|
79876
80202
|
projectAri: Scalars['ID']['input'];
|
|
79877
80203
|
};
|
|
79878
80204
|
export declare type JpdSubscriptionsOnViewUpdatedArgs = {
|
|
79879
|
-
consumer
|
|
80205
|
+
consumer?: InputMaybe<Scalars['String']['input']>;
|
|
79880
80206
|
projectAri: Scalars['ID']['input'];
|
|
79881
80207
|
};
|
|
79882
80208
|
export declare type JpdViewCommentEvent = {
|
|
@@ -79916,6 +80242,28 @@ export declare type JpdViewDeletedEvent = {
|
|
|
79916
80242
|
viewId: Scalars['Int']['output'];
|
|
79917
80243
|
viewUuid: Scalars['ID']['output'];
|
|
79918
80244
|
};
|
|
80245
|
+
export declare type JpdViewSetCreatedEvent = {
|
|
80246
|
+
__typename?: 'JpdViewSetCreatedEvent';
|
|
80247
|
+
projectAri: Scalars['ID']['output'];
|
|
80248
|
+
viewSetAri: Scalars['ID']['output'];
|
|
80249
|
+
viewSetId: Scalars['Int']['output'];
|
|
80250
|
+
viewSetUuid: Scalars['ID']['output'];
|
|
80251
|
+
};
|
|
80252
|
+
export declare type JpdViewSetDeletedEvent = {
|
|
80253
|
+
__typename?: 'JpdViewSetDeletedEvent';
|
|
80254
|
+
projectAri: Scalars['ID']['output'];
|
|
80255
|
+
viewSetAri: Scalars['ID']['output'];
|
|
80256
|
+
viewSetId: Scalars['Int']['output'];
|
|
80257
|
+
viewSetUuid: Scalars['ID']['output'];
|
|
80258
|
+
};
|
|
80259
|
+
export declare type JpdViewSetUpdatedEvent = {
|
|
80260
|
+
__typename?: 'JpdViewSetUpdatedEvent';
|
|
80261
|
+
changes?: Maybe<Array<Scalars['String']['output']>>;
|
|
80262
|
+
projectAri: Scalars['ID']['output'];
|
|
80263
|
+
viewSetAri: Scalars['ID']['output'];
|
|
80264
|
+
viewSetId: Scalars['Int']['output'];
|
|
80265
|
+
viewSetUuid: Scalars['ID']['output'];
|
|
80266
|
+
};
|
|
79919
80267
|
export declare type JpdViewUpdatedEvent = {
|
|
79920
80268
|
__typename?: 'JpdViewUpdatedEvent';
|
|
79921
80269
|
changes?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -81701,6 +82049,7 @@ export declare type KnowledgeDiscoveryZeroQuery = {
|
|
|
81701
82049
|
};
|
|
81702
82050
|
export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
81703
82051
|
JiraNlq = "JIRA_NLQ",
|
|
82052
|
+
JiraNlqCollaborator = "JIRA_NLQ_COLLABORATOR",
|
|
81704
82053
|
RelatedQuestion = "RELATED_QUESTION",
|
|
81705
82054
|
WhoIs = "WHO_IS"
|
|
81706
82055
|
}
|
|
@@ -83207,8 +83556,10 @@ export declare type MarketplaceConsoleFeatureInput = {
|
|
|
83207
83556
|
export declare type MarketplaceConsoleForgeAgcApp = {
|
|
83208
83557
|
__typename?: 'MarketplaceConsoleForgeAgcApp';
|
|
83209
83558
|
appId: Scalars['ID']['output'];
|
|
83559
|
+
envId?: Maybe<Scalars['String']['output']>;
|
|
83210
83560
|
id: Scalars['ID']['output'];
|
|
83211
|
-
|
|
83561
|
+
latestVersion?: Maybe<MarketplaceConsoleForgeAppVersion>;
|
|
83562
|
+
name: Scalars['String']['output'];
|
|
83212
83563
|
};
|
|
83213
83564
|
export declare type MarketplaceConsoleForgeAgcAppError = MarketplaceConsoleError & {
|
|
83214
83565
|
__typename?: 'MarketplaceConsoleForgeAgcAppError';
|
|
@@ -83217,6 +83568,13 @@ export declare type MarketplaceConsoleForgeAgcAppError = MarketplaceConsoleError
|
|
|
83217
83568
|
subCode?: Maybe<Scalars['String']['output']>;
|
|
83218
83569
|
};
|
|
83219
83570
|
export declare type MarketplaceConsoleForgeAgcAppValidationResponse = MarketplaceConsoleForgeAgcApp | MarketplaceConsoleForgeAgcAppError;
|
|
83571
|
+
export declare type MarketplaceConsoleForgeAppVersion = {
|
|
83572
|
+
__typename?: 'MarketplaceConsoleForgeAppVersion';
|
|
83573
|
+
id: Scalars['ID']['output'];
|
|
83574
|
+
paymentModel: MarketplaceConsolePaymentModel;
|
|
83575
|
+
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
83576
|
+
version: Scalars['String']['output'];
|
|
83577
|
+
};
|
|
83220
83578
|
export declare type MarketplaceConsoleForgeFrameworkAttributes = {
|
|
83221
83579
|
__typename?: 'MarketplaceConsoleForgeFrameworkAttributes';
|
|
83222
83580
|
appAccess?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -85341,7 +85699,7 @@ export declare type MercuryChangeProposalUpdate = {
|
|
|
85341
85699
|
id: Scalars['ID']['output'];
|
|
85342
85700
|
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
85343
85701
|
};
|
|
85344
|
-
export declare type MercuryChangeProposalsView = MercuryView & {
|
|
85702
|
+
export declare type MercuryChangeProposalsView = MercuryView & Node & {
|
|
85345
85703
|
__typename?: 'MercuryChangeProposalsView';
|
|
85346
85704
|
createdBy?: Maybe<User>;
|
|
85347
85705
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -85919,6 +86277,16 @@ export declare type MercuryFocusAreaLinkedGoalSummary = {
|
|
|
85919
86277
|
count: Scalars['Int']['output'];
|
|
85920
86278
|
countIncludingSubFocusAreas?: Maybe<Scalars['Int']['output']>;
|
|
85921
86279
|
};
|
|
86280
|
+
export declare type MercuryFocusAreaLinkedWorkContextData = {
|
|
86281
|
+
__typename?: 'MercuryFocusAreaLinkedWorkContextData';
|
|
86282
|
+
icon?: Maybe<Scalars['String']['output']>;
|
|
86283
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
86284
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
86285
|
+
originalWorkStatus?: Maybe<Scalars['String']['output']>;
|
|
86286
|
+
targetDateEnd?: Maybe<Scalars['String']['output']>;
|
|
86287
|
+
targetDateType?: Maybe<MercuryWorkTargetDateType>;
|
|
86288
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
86289
|
+
};
|
|
85922
86290
|
export declare type MercuryFocusAreaLinkedWorkSummary = {
|
|
85923
86291
|
__typename?: 'MercuryFocusAreaLinkedWorkSummary';
|
|
85924
86292
|
count: Scalars['Int']['output'];
|
|
@@ -86077,6 +86445,10 @@ export declare type MercuryFocusAreaType = {
|
|
|
86077
86445
|
id: Scalars['ID']['output'];
|
|
86078
86446
|
name: Scalars['String']['output'];
|
|
86079
86447
|
};
|
|
86448
|
+
export declare type MercuryFocusAreaWorkContext = {
|
|
86449
|
+
__typename?: 'MercuryFocusAreaWorkContext';
|
|
86450
|
+
focusAreaLinkedWorkContext?: Maybe<Array<Maybe<MercuryFocusAreaLinkedWorkContextData>>>;
|
|
86451
|
+
};
|
|
86080
86452
|
export declare type MercuryFundChangeSummary = {
|
|
86081
86453
|
__typename?: 'MercuryFundChangeSummary';
|
|
86082
86454
|
amount?: Maybe<MercuryFundChangeSummaryFields>;
|
|
@@ -86792,6 +87164,7 @@ export declare type MercuryQueryApi = {
|
|
|
86792
87164
|
__typename?: 'MercuryQueryApi';
|
|
86793
87165
|
aggregatedHeadcounts?: Maybe<MercuryAggregatedHeadcountConnection>;
|
|
86794
87166
|
aiFocusAreaSummary?: Maybe<MercuryFocusAreaSummary>;
|
|
87167
|
+
aiFocusAreaWorkContextData?: Maybe<MercuryFocusAreaWorkContext>;
|
|
86795
87168
|
comments?: Maybe<MercuryCommentConnection>;
|
|
86796
87169
|
commentsByAris?: Maybe<Array<Maybe<MercuryComment>>>;
|
|
86797
87170
|
focusArea?: Maybe<MercuryFocusArea>;
|
|
@@ -86827,6 +87200,11 @@ export declare type MercuryQueryApiAiFocusAreaSummaryArgs = {
|
|
|
86827
87200
|
cloudId: Scalars['ID']['input'];
|
|
86828
87201
|
id: Scalars['ID']['input'];
|
|
86829
87202
|
};
|
|
87203
|
+
export declare type MercuryQueryApiAiFocusAreaWorkContextDataArgs = {
|
|
87204
|
+
cloudId: Scalars['ID']['input'];
|
|
87205
|
+
id: Scalars['ID']['input'];
|
|
87206
|
+
maxDepth?: InputMaybe<Scalars['Int']['input']>;
|
|
87207
|
+
};
|
|
86830
87208
|
export declare type MercuryQueryApiCommentsArgs = {
|
|
86831
87209
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
86832
87210
|
cloudId: Scalars['ID']['input'];
|
|
@@ -87299,6 +87677,7 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
87299
87677
|
changeProposals?: Maybe<Array<Maybe<MercuryChangeProposal>>>;
|
|
87300
87678
|
changeProposalsSearch?: Maybe<MercuryChangeProposalConnection>;
|
|
87301
87679
|
changeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
87680
|
+
changeProposalsViewList?: Maybe<Array<Maybe<MercuryChangeProposalsView>>>;
|
|
87302
87681
|
changeProposalsViewSearch?: Maybe<MercuryChangeProposalsViewConnection>;
|
|
87303
87682
|
changeSummariesReport?: Maybe<MercuryChangeSummaries>;
|
|
87304
87683
|
changeSummaryByFocusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaChangeSummary>>>;
|
|
@@ -87341,6 +87720,9 @@ export declare type MercuryStrategicEventsQueryApiChangeProposalsSearchArgs = {
|
|
|
87341
87720
|
export declare type MercuryStrategicEventsQueryApiChangeProposalsViewArgs = {
|
|
87342
87721
|
id: Scalars['ID']['input'];
|
|
87343
87722
|
};
|
|
87723
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalsViewListArgs = {
|
|
87724
|
+
ids: Array<Scalars['ID']['input']>;
|
|
87725
|
+
};
|
|
87344
87726
|
export declare type MercuryStrategicEventsQueryApiChangeProposalsViewSearchArgs = {
|
|
87345
87727
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87346
87728
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -87804,6 +88186,11 @@ export declare enum MercuryViewType {
|
|
|
87804
88186
|
RankingView = "RANKING_VIEW"
|
|
87805
88187
|
}
|
|
87806
88188
|
export declare type MercuryWorkResult = MercuryProviderWork | MercuryProviderWorkError;
|
|
88189
|
+
export declare enum MercuryWorkTargetDateType {
|
|
88190
|
+
Day = "DAY",
|
|
88191
|
+
Month = "MONTH",
|
|
88192
|
+
Quarter = "QUARTER"
|
|
88193
|
+
}
|
|
87807
88194
|
export declare type MercuryWorkspaceConnectionStatus = {
|
|
87808
88195
|
__typename?: 'MercuryWorkspaceConnectionStatus';
|
|
87809
88196
|
isConnected: Scalars['Boolean']['output'];
|
|
@@ -88048,13 +88435,17 @@ export declare type Mutation = {
|
|
|
88048
88435
|
admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
|
|
88049
88436
|
admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
|
|
88050
88437
|
admin_createAccessUrl?: Maybe<AdminAccessUrlCreationResponsePayload>;
|
|
88438
|
+
admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
|
|
88051
88439
|
admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
|
|
88052
88440
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
88441
|
+
admin_deleteInvitePolicy?: Maybe<AdminDeleteInvitePolicyResponsePayload>;
|
|
88053
88442
|
admin_impersonateUser?: Maybe<AdminImpersonationResponsePayload>;
|
|
88443
|
+
admin_invite?: Maybe<AdminInviteResponsePayload>;
|
|
88054
88444
|
admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
|
|
88055
88445
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
88056
88446
|
admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
|
|
88057
88447
|
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
88448
|
+
admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
|
|
88058
88449
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
88059
88450
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
88060
88451
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
@@ -88383,6 +88774,7 @@ export declare type Mutation = {
|
|
|
88383
88774
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
88384
88775
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
88385
88776
|
jira_applySuggestionActions?: Maybe<JiraApplySuggestionActionsPayload>;
|
|
88777
|
+
jira_associateProjectToFieldScheme?: Maybe<JiraAssociateProjectToFieldSchemePayload>;
|
|
88386
88778
|
jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
|
|
88387
88779
|
jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
|
|
88388
88780
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
@@ -88523,6 +88915,7 @@ export declare type Mutation = {
|
|
|
88523
88915
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
88524
88916
|
radar_updateFocusAreaProposalChanges?: Maybe<RadarUpdateFocusAreaProposalChangesMutationResponse>;
|
|
88525
88917
|
radar_updateWorkspaceSettings?: Maybe<RadarMutationResponse>;
|
|
88918
|
+
radar_upsertWorkTypeAllocations?: Maybe<RadarMutationResponse>;
|
|
88526
88919
|
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
88527
88920
|
rankColumn?: Maybe<RankColumnOutput>;
|
|
88528
88921
|
rankCustomFilter?: Maybe<GenericMutationResponse>;
|
|
@@ -88746,20 +89139,34 @@ export declare type MutationAdmin_AssignRoleArgs = {
|
|
|
88746
89139
|
export declare type MutationAdmin_CreateAccessUrlArgs = {
|
|
88747
89140
|
resourceAri: Scalars['ID']['input'];
|
|
88748
89141
|
};
|
|
89142
|
+
export declare type MutationAdmin_CreateInvitePolicyArgs = {
|
|
89143
|
+
createInvitePolicyInput?: InputMaybe<AdminCreateInvitePolicyInput>;
|
|
89144
|
+
orgId: Scalars['ID']['input'];
|
|
89145
|
+
};
|
|
88749
89146
|
export declare type MutationAdmin_DeactivateUserArgs = {
|
|
88750
89147
|
input: AdminDeactivateUserInput;
|
|
88751
89148
|
};
|
|
88752
89149
|
export declare type MutationAdmin_DeleteAccessUrlArgs = {
|
|
88753
89150
|
id: Scalars['ID']['input'];
|
|
88754
89151
|
};
|
|
89152
|
+
export declare type MutationAdmin_DeleteInvitePolicyArgs = {
|
|
89153
|
+
orgId: Scalars['ID']['input'];
|
|
89154
|
+
policyId: Scalars['ID']['input'];
|
|
89155
|
+
};
|
|
88755
89156
|
export declare type MutationAdmin_ImpersonateUserArgs = {
|
|
88756
89157
|
input: AdminImpersonateUserInput;
|
|
88757
89158
|
};
|
|
89159
|
+
export declare type MutationAdmin_InviteArgs = {
|
|
89160
|
+
inviteInput?: InputMaybe<AdminInviteInput>;
|
|
89161
|
+
orgId: Scalars['ID']['input'];
|
|
89162
|
+
};
|
|
88758
89163
|
export declare type MutationAdmin_ReleaseImpersonationUserArgs = {
|
|
88759
89164
|
input: AdminReleaseImpersonationUserInput;
|
|
88760
89165
|
};
|
|
88761
89166
|
export declare type MutationAdmin_RemoveUserArgs = {
|
|
88762
|
-
|
|
89167
|
+
accountId: Scalars['String']['input'];
|
|
89168
|
+
directoryId: Scalars['String']['input'];
|
|
89169
|
+
orgId: Scalars['String']['input'];
|
|
88763
89170
|
};
|
|
88764
89171
|
export declare type MutationAdmin_RevokeRoleArgs = {
|
|
88765
89172
|
directoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -88770,6 +89177,11 @@ export declare type MutationAdmin_UnitCreateArgs = {
|
|
|
88770
89177
|
orgId: Scalars['ID']['input'];
|
|
88771
89178
|
unit: AdminUnitCreateInput;
|
|
88772
89179
|
};
|
|
89180
|
+
export declare type MutationAdmin_UpdateInvitePolicyArgs = {
|
|
89181
|
+
orgId: Scalars['ID']['input'];
|
|
89182
|
+
policyId: Scalars['ID']['input'];
|
|
89183
|
+
updateInvitePolicyInput?: InputMaybe<AdminUpdateInvitePolicyInput>;
|
|
89184
|
+
};
|
|
88773
89185
|
export declare type MutationAgentStudio_AddGroupsToCreatePermissionArgs = {
|
|
88774
89186
|
cloudId: Scalars['ID']['input'];
|
|
88775
89187
|
groupARIs: Array<Scalars['ID']['input']>;
|
|
@@ -89911,6 +90323,10 @@ export declare type MutationJira_AddTimelineIssueLinkArgs = {
|
|
|
89911
90323
|
export declare type MutationJira_ApplySuggestionActionsArgs = {
|
|
89912
90324
|
input: Array<JiraApplySuggestionActionInput>;
|
|
89913
90325
|
};
|
|
90326
|
+
export declare type MutationJira_AssociateProjectToFieldSchemeArgs = {
|
|
90327
|
+
cloudId: Scalars['ID']['input'];
|
|
90328
|
+
input: JiraAssociateProjectToFieldSchemeInput;
|
|
90329
|
+
};
|
|
89914
90330
|
export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
|
|
89915
90331
|
input: JiraBulkSetBoardViewColumnStateInput;
|
|
89916
90332
|
};
|
|
@@ -90339,6 +90755,10 @@ export declare type MutationRadar_UpdateWorkspaceSettingsArgs = {
|
|
|
90339
90755
|
cloudId: Scalars['ID']['input'];
|
|
90340
90756
|
input: RadarWorkspaceSettingsInput;
|
|
90341
90757
|
};
|
|
90758
|
+
export declare type MutationRadar_UpsertWorkTypeAllocationsArgs = {
|
|
90759
|
+
cloudId: Scalars['ID']['input'];
|
|
90760
|
+
input: Array<RadarWorkTypeAllocationInput>;
|
|
90761
|
+
};
|
|
90342
90762
|
export declare type MutationRankCardParentArgs = {
|
|
90343
90763
|
input: CardParentRankInput;
|
|
90344
90764
|
};
|
|
@@ -93781,10 +94201,13 @@ export declare type Query = {
|
|
|
93781
94201
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
93782
94202
|
admin_group?: Maybe<AdminGroup>;
|
|
93783
94203
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
94204
|
+
admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
|
|
93784
94205
|
admin_org?: Maybe<AdminOrganization>;
|
|
93785
94206
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
93786
94207
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
94208
|
+
admin_unitDetails?: Maybe<AdminUnit>;
|
|
93787
94209
|
admin_unitValidateName?: Maybe<AdminUnitValidateName>;
|
|
94210
|
+
admin_unitsForOrg?: Maybe<AdminUnitConnection>;
|
|
93788
94211
|
admin_user?: Maybe<AdminUser>;
|
|
93789
94212
|
admin_userStats?: Maybe<AdminUserStats>;
|
|
93790
94213
|
admin_users?: Maybe<AdminUserConnection>;
|
|
@@ -94101,6 +94524,8 @@ export declare type Query = {
|
|
|
94101
94524
|
devai_rovodevSessionsByAri?: Maybe<Array<DevAiRovoDevSession>>;
|
|
94102
94525
|
devai_rovodevSessionsByCloudId?: Maybe<DevAiRovoDevSessionConnection>;
|
|
94103
94526
|
devai_rovodevSessionsByIssueKey?: Maybe<DevAiRovoDevSessionConnection>;
|
|
94527
|
+
devai_savedPrompts?: Maybe<Array<Maybe<DevAiSavedPrompt>>>;
|
|
94528
|
+
devai_savedPromptsFileContents?: Maybe<Scalars['String']['output']>;
|
|
94104
94529
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
94105
94530
|
devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
94106
94531
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
@@ -94163,6 +94588,7 @@ export declare type Query = {
|
|
|
94163
94588
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
94164
94589
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
94165
94590
|
graphIntegration_mcpAdminManagementMcpServer?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
94591
|
+
graphIntegration_mcpAdminManagementMcpServerMetaData?: Maybe<GraphIntegrationMcpAdminManagementMcpServerMetaData>;
|
|
94166
94592
|
graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
|
|
94167
94593
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
94168
94594
|
graphStore?: Maybe<GraphStore>;
|
|
@@ -94569,6 +94995,13 @@ export declare type QueryAdmin_GroupsArgs = {
|
|
|
94569
94995
|
input?: InputMaybe<AdminSearchGroupInput>;
|
|
94570
94996
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
94571
94997
|
};
|
|
94998
|
+
export declare type QueryAdmin_InvitePoliciesArgs = {
|
|
94999
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95000
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
95001
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95002
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
95003
|
+
orgId: Scalars['ID']['input'];
|
|
95004
|
+
};
|
|
94572
95005
|
export declare type QueryAdmin_OrgArgs = {
|
|
94573
95006
|
id: Scalars['ID']['input'];
|
|
94574
95007
|
};
|
|
@@ -94580,10 +95013,23 @@ export declare type QueryAdmin_UnitCreateStatusArgs = {
|
|
|
94580
95013
|
orgId: Scalars['ID']['input'];
|
|
94581
95014
|
requestId: Scalars['ID']['input'];
|
|
94582
95015
|
};
|
|
95016
|
+
export declare type QueryAdmin_UnitDetailsArgs = {
|
|
95017
|
+
orgId: Scalars['ID']['input'];
|
|
95018
|
+
unitId: Scalars['ID']['input'];
|
|
95019
|
+
};
|
|
94583
95020
|
export declare type QueryAdmin_UnitValidateNameArgs = {
|
|
94584
95021
|
orgId: Scalars['ID']['input'];
|
|
94585
95022
|
unitName: Scalars['String']['input'];
|
|
94586
95023
|
};
|
|
95024
|
+
export declare type QueryAdmin_UnitsForOrgArgs = {
|
|
95025
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95026
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
95027
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95028
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
95029
|
+
orgId: Scalars['ID']['input'];
|
|
95030
|
+
search?: InputMaybe<AdminUnitsForOrgSearchInput>;
|
|
95031
|
+
sort?: InputMaybe<AdminUnitsForOrgSortInput>;
|
|
95032
|
+
};
|
|
94587
95033
|
export declare type QueryAdmin_UserArgs = {
|
|
94588
95034
|
input?: InputMaybe<AdminFetchUserInput>;
|
|
94589
95035
|
};
|
|
@@ -94721,6 +95167,7 @@ export declare type QueryAllTemplatesArgs = {
|
|
|
94721
95167
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
94722
95168
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
94723
95169
|
teamType?: InputMaybe<Scalars['String']['input']>;
|
|
95170
|
+
usePersonalSpace?: InputMaybe<Scalars['Boolean']['input']>;
|
|
94724
95171
|
};
|
|
94725
95172
|
export declare type QueryAllUpdatesFeedArgs = {
|
|
94726
95173
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96096,6 +96543,16 @@ export declare type QueryDevai_RovodevSessionsByIssueKeyArgs = {
|
|
|
96096
96543
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
96097
96544
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
96098
96545
|
};
|
|
96546
|
+
export declare type QueryDevai_SavedPromptsArgs = {
|
|
96547
|
+
cloudId: Scalars['ID']['input'];
|
|
96548
|
+
repositoryUrl: Scalars['URL']['input'];
|
|
96549
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
96550
|
+
};
|
|
96551
|
+
export declare type QueryDevai_SavedPromptsFileContentsArgs = {
|
|
96552
|
+
cloudId: Scalars['ID']['input'];
|
|
96553
|
+
path: Scalars['String']['input'];
|
|
96554
|
+
repositoryUrl: Scalars['URL']['input'];
|
|
96555
|
+
};
|
|
96099
96556
|
export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
|
|
96100
96557
|
cloudId: Scalars['ID']['input'];
|
|
96101
96558
|
jobId: Scalars['ID']['input'];
|
|
@@ -96307,6 +96764,10 @@ export declare type QueryGraphIntegration_McpAdminManagementMcpServerArgs = {
|
|
|
96307
96764
|
cloudId: Scalars['ID']['input'];
|
|
96308
96765
|
serverId: Scalars['ID']['input'];
|
|
96309
96766
|
};
|
|
96767
|
+
export declare type QueryGraphIntegration_McpAdminManagementMcpServerMetaDataArgs = {
|
|
96768
|
+
cloudId: Scalars['ID']['input'];
|
|
96769
|
+
serverUrl: Scalars['String']['input'];
|
|
96770
|
+
};
|
|
96310
96771
|
export declare type QueryGraphIntegration_McpAdminManagementMcpServersArgs = {
|
|
96311
96772
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
96312
96773
|
cloudId: Scalars['ID']['input'];
|
|
@@ -96873,12 +97334,12 @@ export declare type QueryPlaybook_JiraPlaybookStepUsageForProjectArgs = {
|
|
|
96873
97334
|
};
|
|
96874
97335
|
export declare type QueryPlaybook_JiraPlaybookTemplateArgs = {
|
|
96875
97336
|
cloudId: Scalars['ID']['input'];
|
|
96876
|
-
|
|
97337
|
+
projectKey: Scalars['String']['input'];
|
|
96877
97338
|
templateId: Scalars['String']['input'];
|
|
96878
97339
|
};
|
|
96879
97340
|
export declare type QueryPlaybook_JiraPlaybookTemplateCategoriesArgs = {
|
|
96880
97341
|
cloudId: Scalars['ID']['input'];
|
|
96881
|
-
|
|
97342
|
+
projectKey: Scalars['String']['input'];
|
|
96882
97343
|
};
|
|
96883
97344
|
export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
96884
97345
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97820,11 +98281,12 @@ export declare type RadarFieldDefinition = {
|
|
|
97820
98281
|
};
|
|
97821
98282
|
export declare type RadarFieldDefinitionPermissions = {
|
|
97822
98283
|
__typename?: 'RadarFieldDefinitionPermissions';
|
|
98284
|
+
userPermission: RadarUserFieldPermission;
|
|
97823
98285
|
viewFieldFullGroups: Array<RadarGroupPrincipal>;
|
|
97824
98286
|
};
|
|
97825
98287
|
export declare type RadarFieldPermissionsInput = {
|
|
97826
98288
|
fieldId: Scalars['ID']['input'];
|
|
97827
|
-
principalId: Scalars['ID']['input']
|
|
98289
|
+
principalId: Array<Scalars['ID']['input']>;
|
|
97828
98290
|
};
|
|
97829
98291
|
export declare type RadarFieldSettingsInput = {
|
|
97830
98292
|
entity: RadarEntityType;
|
|
@@ -98121,6 +98583,19 @@ export declare type RadarUserContext = {
|
|
|
98121
98583
|
__typename?: 'RadarUserContext';
|
|
98122
98584
|
position?: Maybe<RadarPosition>;
|
|
98123
98585
|
};
|
|
98586
|
+
export declare enum RadarUserFieldPermission {
|
|
98587
|
+
Full = "Full",
|
|
98588
|
+
None = "None",
|
|
98589
|
+
PartialBelowReportingLine = "PartialBelowReportingLine",
|
|
98590
|
+
PartialOnSelfOrBelowReportingLine = "PartialOnSelfOrBelowReportingLine",
|
|
98591
|
+
PartialOnlySelf = "PartialOnlySelf"
|
|
98592
|
+
}
|
|
98593
|
+
export declare type RadarWorkTypeAllocationInput = {
|
|
98594
|
+
ctb: Scalars['Int']['input'];
|
|
98595
|
+
organisationId: Scalars['ID']['input'];
|
|
98596
|
+
productivity: Scalars['Int']['input'];
|
|
98597
|
+
rtb: Scalars['Int']['input'];
|
|
98598
|
+
};
|
|
98124
98599
|
export declare type RadarWorker = Node & RadarEntity & {
|
|
98125
98600
|
__typename?: 'RadarWorker';
|
|
98126
98601
|
entityId: Scalars['ID']['output'];
|
|
@@ -110245,14 +110720,15 @@ export declare type TrelloMemberAiRuleEdge = {
|
|
|
110245
110720
|
export declare type TrelloMemberBoardStarConnection = {
|
|
110246
110721
|
__typename?: 'TrelloMemberBoardStarConnection';
|
|
110247
110722
|
edges?: Maybe<Array<TrelloMemberBoardStarEdge>>;
|
|
110248
|
-
nodes?: Maybe<Array<TrelloBoard
|
|
110723
|
+
nodes?: Maybe<Array<Maybe<TrelloBoard>>>;
|
|
110249
110724
|
pageInfo: PageInfo;
|
|
110250
110725
|
};
|
|
110251
110726
|
export declare type TrelloMemberBoardStarEdge = {
|
|
110252
110727
|
__typename?: 'TrelloMemberBoardStarEdge';
|
|
110253
110728
|
cursor: Scalars['String']['output'];
|
|
110254
110729
|
id: Scalars['ID']['output'];
|
|
110255
|
-
node
|
|
110730
|
+
node?: Maybe<TrelloBoard>;
|
|
110731
|
+
objectId: Scalars['String']['output'];
|
|
110256
110732
|
position: Scalars['Float']['output'];
|
|
110257
110733
|
};
|
|
110258
110734
|
export declare type TrelloMemberConnection = {
|
|
@@ -110426,6 +110902,7 @@ export declare type TrelloMutationApi = {
|
|
|
110426
110902
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
110427
110903
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
110428
110904
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
110905
|
+
updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
|
|
110429
110906
|
updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
|
|
110430
110907
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
110431
110908
|
};
|
|
@@ -110540,6 +111017,9 @@ export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
|
110540
111017
|
export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
110541
111018
|
input: TrelloUpdateOAuth2ClientInput;
|
|
110542
111019
|
};
|
|
111020
|
+
export declare type TrelloMutationApiUpdatePrimaryPlannerAccountArgs = {
|
|
111021
|
+
input: TrelloUpdatePrimaryPlannerAccountInput;
|
|
111022
|
+
};
|
|
110543
111023
|
export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
|
|
110544
111024
|
input: TrelloUpdateWorkspaceTagInput;
|
|
110545
111025
|
};
|
|
@@ -111645,6 +112125,15 @@ export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
|
111645
112125
|
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
111646
112126
|
success: Scalars['Boolean']['output'];
|
|
111647
112127
|
};
|
|
112128
|
+
export declare type TrelloUpdatePrimaryPlannerAccountInput = {
|
|
112129
|
+
providerAccountId: Scalars['ID']['input'];
|
|
112130
|
+
};
|
|
112131
|
+
export declare type TrelloUpdatePrimaryPlannerAccountPayload = Payload & {
|
|
112132
|
+
__typename?: 'TrelloUpdatePrimaryPlannerAccountPayload';
|
|
112133
|
+
errors?: Maybe<Array<MutationError>>;
|
|
112134
|
+
planner?: Maybe<TrelloPlanner>;
|
|
112135
|
+
success: Scalars['Boolean']['output'];
|
|
112136
|
+
};
|
|
111648
112137
|
export declare type TrelloUpdateWorkspaceTagInput = {
|
|
111649
112138
|
name: Scalars['String']['input'];
|
|
111650
112139
|
tagId: Scalars['ID']['input'];
|
|
@@ -112219,6 +112708,12 @@ export declare type UnifiedAtlassianProductEdge = UnifiedIEdge & {
|
|
|
112219
112708
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
112220
112709
|
node?: Maybe<UnifiedAtlassianProduct>;
|
|
112221
112710
|
};
|
|
112711
|
+
export declare type UnifiedCacheFieldKey = {
|
|
112712
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
112713
|
+
requiresHashing?: InputMaybe<Scalars['Boolean']['input']>;
|
|
112714
|
+
requiresSorting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
112715
|
+
values?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
112716
|
+
};
|
|
112222
112717
|
export declare type UnifiedCacheInvalidationResult = {
|
|
112223
112718
|
__typename?: 'UnifiedCacheInvalidationResult';
|
|
112224
112719
|
errors?: Maybe<Array<UnifiedMutationError>>;
|
|
@@ -112241,20 +112736,43 @@ export declare type UnifiedCacheStatusPayload = UnifiedPayload & {
|
|
|
112241
112736
|
export declare type UnifiedCachingMutation = {
|
|
112242
112737
|
__typename?: 'UnifiedCachingMutation';
|
|
112243
112738
|
invalidateCache?: Maybe<UnifiedCacheInvalidationResult>;
|
|
112739
|
+
invalidateCacheField?: Maybe<UnifiedCacheInvalidationResult>;
|
|
112740
|
+
invalidateCacheFieldByPattern?: Maybe<UnifiedCacheInvalidationResult>;
|
|
112244
112741
|
setCacheData?: Maybe<UnifiedCacheStatusPayload>;
|
|
112742
|
+
setCacheFieldData?: Maybe<UnifiedCacheStatusPayload>;
|
|
112245
112743
|
};
|
|
112246
112744
|
export declare type UnifiedCachingMutationInvalidateCacheArgs = {
|
|
112247
112745
|
cacheKey: Scalars['String']['input'];
|
|
112248
112746
|
};
|
|
112747
|
+
export declare type UnifiedCachingMutationInvalidateCacheFieldArgs = {
|
|
112748
|
+
cacheFieldKey: Scalars['String']['input'];
|
|
112749
|
+
cacheKey: Scalars['String']['input'];
|
|
112750
|
+
};
|
|
112751
|
+
export declare type UnifiedCachingMutationInvalidateCacheFieldByPatternArgs = {
|
|
112752
|
+
cacheFieldKey: Scalars['String']['input'];
|
|
112753
|
+
cacheKey: Scalars['String']['input'];
|
|
112754
|
+
};
|
|
112249
112755
|
export declare type UnifiedCachingMutationSetCacheDataArgs = {
|
|
112250
112756
|
cacheKey: Scalars['String']['input'];
|
|
112251
112757
|
data: Scalars['String']['input'];
|
|
112252
112758
|
ttl?: InputMaybe<Scalars['Int']['input']>;
|
|
112253
112759
|
};
|
|
112760
|
+
export declare type UnifiedCachingMutationSetCacheFieldDataArgs = {
|
|
112761
|
+
cacheFieldKey: Scalars['String']['input'];
|
|
112762
|
+
cacheKey: Scalars['String']['input'];
|
|
112763
|
+
data: Scalars['String']['input'];
|
|
112764
|
+
ttl?: InputMaybe<Scalars['Int']['input']>;
|
|
112765
|
+
};
|
|
112254
112766
|
export declare type UnifiedCachingQuery = {
|
|
112255
112767
|
__typename?: 'UnifiedCachingQuery';
|
|
112768
|
+
getCacheFieldKey?: Maybe<UnifiedUCacheKeyResult>;
|
|
112256
112769
|
getCacheKey?: Maybe<UnifiedUCacheKeyResult>;
|
|
112257
112770
|
getCachedData?: Maybe<UnifiedUCacheResult>;
|
|
112771
|
+
getCachedDataFromField?: Maybe<UnifiedUCacheResult>;
|
|
112772
|
+
getSimpleCacheKey?: Maybe<UnifiedUCacheKeyResult>;
|
|
112773
|
+
};
|
|
112774
|
+
export declare type UnifiedCachingQueryGetCacheFieldKeyArgs = {
|
|
112775
|
+
cacheFieldKey: Array<UnifiedCacheFieldKey>;
|
|
112258
112776
|
};
|
|
112259
112777
|
export declare type UnifiedCachingQueryGetCacheKeyArgs = {
|
|
112260
112778
|
dataPoint: Scalars['String']['input'];
|
|
@@ -112263,6 +112781,13 @@ export declare type UnifiedCachingQueryGetCacheKeyArgs = {
|
|
|
112263
112781
|
export declare type UnifiedCachingQueryGetCachedDataArgs = {
|
|
112264
112782
|
cacheKey: Scalars['String']['input'];
|
|
112265
112783
|
};
|
|
112784
|
+
export declare type UnifiedCachingQueryGetCachedDataFromFieldArgs = {
|
|
112785
|
+
cacheFieldKey: Scalars['String']['input'];
|
|
112786
|
+
cacheKey: Scalars['String']['input'];
|
|
112787
|
+
};
|
|
112788
|
+
export declare type UnifiedCachingQueryGetSimpleCacheKeyArgs = {
|
|
112789
|
+
id: Scalars['String']['input'];
|
|
112790
|
+
};
|
|
112266
112791
|
export declare type UnifiedCommunityMutation = {
|
|
112267
112792
|
__typename?: 'UnifiedCommunityMutation';
|
|
112268
112793
|
deleteCommunityData?: Maybe<UnifiedCommunityPayload>;
|