@forge/cli-shared 8.3.1-next.3 → 8.4.0-next.5
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 +12 -0
- package/out/graphql/graphql-types.d.ts +1334 -71
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +92 -23
- package/out/ui/text.d.ts +8 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +8 -0
- package/package.json +1 -1
|
@@ -104,6 +104,10 @@ export declare type Scalars = {
|
|
|
104
104
|
input: any;
|
|
105
105
|
output: any;
|
|
106
106
|
};
|
|
107
|
+
TrelloCardPosition: {
|
|
108
|
+
input: any;
|
|
109
|
+
output: any;
|
|
110
|
+
};
|
|
107
111
|
TrelloShortLink: {
|
|
108
112
|
input: any;
|
|
109
113
|
output: any;
|
|
@@ -1744,7 +1748,7 @@ export declare type AgentStudioTool = {
|
|
|
1744
1748
|
};
|
|
1745
1749
|
export declare type AgentStudioToolEdge = {
|
|
1746
1750
|
__typename?: 'AgentStudioToolEdge';
|
|
1747
|
-
cursor
|
|
1751
|
+
cursor: Scalars['String']['output'];
|
|
1748
1752
|
node?: Maybe<AgentStudioTool>;
|
|
1749
1753
|
};
|
|
1750
1754
|
export declare type AgentStudioToolIntegration = {
|
|
@@ -1756,18 +1760,18 @@ export declare type AgentStudioToolIntegration = {
|
|
|
1756
1760
|
};
|
|
1757
1761
|
export declare type AgentStudioToolIntegrationEdge = {
|
|
1758
1762
|
__typename?: 'AgentStudioToolIntegrationEdge';
|
|
1759
|
-
cursor
|
|
1763
|
+
cursor: Scalars['String']['output'];
|
|
1760
1764
|
node?: Maybe<AgentStudioToolIntegration>;
|
|
1761
1765
|
};
|
|
1762
1766
|
export declare type AgentStudioToolIntegrationsConnection = {
|
|
1763
1767
|
__typename?: 'AgentStudioToolIntegrationsConnection';
|
|
1764
|
-
edges
|
|
1765
|
-
pageInfo
|
|
1768
|
+
edges: Array<AgentStudioToolIntegrationEdge>;
|
|
1769
|
+
pageInfo: PageInfo;
|
|
1766
1770
|
};
|
|
1767
1771
|
export declare type AgentStudioToolsConnection = {
|
|
1768
1772
|
__typename?: 'AgentStudioToolsConnection';
|
|
1769
|
-
edges
|
|
1770
|
-
pageInfo
|
|
1773
|
+
edges: Array<AgentStudioToolEdge>;
|
|
1774
|
+
pageInfo: PageInfo;
|
|
1771
1775
|
};
|
|
1772
1776
|
export declare type AgentStudioUpdateAgentActionsPayload = Payload & {
|
|
1773
1777
|
__typename?: 'AgentStudioUpdateAgentActionsPayload';
|
|
@@ -3723,6 +3727,16 @@ export declare type AssetsDmDataSourceMappingObjectAttributeModel = {
|
|
|
3723
3727
|
dropdownDisplayName: Scalars['String']['output'];
|
|
3724
3728
|
name: Scalars['String']['output'];
|
|
3725
3729
|
};
|
|
3730
|
+
export declare type AssetsDmDataSourceMergeResponse = {
|
|
3731
|
+
__typename?: 'AssetsDMDataSourceMergeResponse';
|
|
3732
|
+
cleansedDataCount: Scalars['Int']['output'];
|
|
3733
|
+
dataSourceId: Scalars['String']['output'];
|
|
3734
|
+
dataSourceName: Scalars['String']['output'];
|
|
3735
|
+
dataSourceType: Scalars['String']['output'];
|
|
3736
|
+
objectClassName: Scalars['String']['output'];
|
|
3737
|
+
rawDataCount: Scalars['Int']['output'];
|
|
3738
|
+
transformedDataCount: Scalars['Int']['output'];
|
|
3739
|
+
};
|
|
3726
3740
|
export declare enum AssetsDmDataSourceOperationEnum {
|
|
3727
3741
|
Create = "Create",
|
|
3728
3742
|
Update = "Update",
|
|
@@ -3734,6 +3748,16 @@ export declare type AssetsDmDataSourceResponse = {
|
|
|
3734
3748
|
message?: Maybe<Scalars['String']['output']>;
|
|
3735
3749
|
success: Scalars['Boolean']['output'];
|
|
3736
3750
|
};
|
|
3751
|
+
export declare type AssetsDmDataSourceRunMergeResponse = {
|
|
3752
|
+
__typename?: 'AssetsDMDataSourceRunMergeResponse';
|
|
3753
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3754
|
+
message: Scalars['String']['output'];
|
|
3755
|
+
};
|
|
3756
|
+
export declare type AssetsDmDataSourceRunTransformResponse = {
|
|
3757
|
+
__typename?: 'AssetsDMDataSourceRunTransformResponse';
|
|
3758
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3759
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3760
|
+
};
|
|
3737
3761
|
export declare type AssetsDmDataSourceSteps = {
|
|
3738
3762
|
__typename?: 'AssetsDMDataSourceSteps';
|
|
3739
3763
|
cleanse: AssetsDmStep;
|
|
@@ -3744,10 +3768,12 @@ export declare type AssetsDmDataSourceSteps = {
|
|
|
3744
3768
|
};
|
|
3745
3769
|
export declare type AssetsDmDataSourceTransform = {
|
|
3746
3770
|
__typename?: 'AssetsDMDataSourceTransform';
|
|
3771
|
+
adapterType: Scalars['String']['output'];
|
|
3747
3772
|
dataSourceTypeId: Scalars['Int']['output'];
|
|
3748
3773
|
defaultFunctions: Array<AssetsDmDataSourceDefaultTransformFunctions>;
|
|
3749
3774
|
functions: Array<AssetsDmDataSourceTransformFunctions>;
|
|
3750
3775
|
isTemplate: Scalars['Boolean']['output'];
|
|
3776
|
+
objectClassType: AssetsDmObjectClassEnum;
|
|
3751
3777
|
options: AssetsDmDataSourceTransformOptions;
|
|
3752
3778
|
};
|
|
3753
3779
|
export declare type AssetsDmDataSourceTransformColumn = {
|
|
@@ -4030,6 +4056,25 @@ export declare enum AssetsDmStepStatus {
|
|
|
4030
4056
|
NotStarted = "NOT_STARTED",
|
|
4031
4057
|
Outdated = "OUTDATED"
|
|
4032
4058
|
}
|
|
4059
|
+
export declare type AssetsDmTransformedDataFilter = {
|
|
4060
|
+
__typename?: 'AssetsDMTransformedDataFilter';
|
|
4061
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4062
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
4063
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
4064
|
+
valueTo?: Maybe<Scalars['String']['output']>;
|
|
4065
|
+
};
|
|
4066
|
+
export declare type AssetsDmTransformedDataFilterInput = {
|
|
4067
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4068
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
4069
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
4070
|
+
valueTo?: InputMaybe<Scalars['String']['input']>;
|
|
4071
|
+
};
|
|
4072
|
+
export declare type AssetsDmTransformedDataResponse = {
|
|
4073
|
+
__typename?: 'AssetsDMTransformedDataResponse';
|
|
4074
|
+
data: Array<Scalars['JSON']['output']>;
|
|
4075
|
+
filters: Array<AssetsDmTransformedDataFilter>;
|
|
4076
|
+
pagination: AssetsDmPaginationInfo;
|
|
4077
|
+
};
|
|
4033
4078
|
export declare type AssetsIcon = {
|
|
4034
4079
|
__typename?: 'AssetsIcon';
|
|
4035
4080
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -4044,30 +4089,36 @@ export declare type AssetsObject = Node & {
|
|
|
4044
4089
|
__typename?: 'AssetsObject';
|
|
4045
4090
|
avatar?: Maybe<AssetsAvatar>;
|
|
4046
4091
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
4092
|
+
displayTypename?: Maybe<Scalars['String']['output']>;
|
|
4047
4093
|
id: Scalars['ID']['output'];
|
|
4048
4094
|
label?: Maybe<Scalars['String']['output']>;
|
|
4049
4095
|
links?: Maybe<AssetsLinks>;
|
|
4050
4096
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
4051
4097
|
objectType?: Maybe<AssetsObjectType>;
|
|
4098
|
+
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
4052
4099
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
4053
4100
|
};
|
|
4054
4101
|
export declare type AssetsObjectType = Node & {
|
|
4055
4102
|
__typename?: 'AssetsObjectType';
|
|
4056
4103
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
4104
|
+
displayTypename?: Maybe<Scalars['String']['output']>;
|
|
4057
4105
|
icon?: Maybe<AssetsIcon>;
|
|
4058
4106
|
id: Scalars['ID']['output'];
|
|
4059
4107
|
links?: Maybe<AssetsLinks>;
|
|
4060
4108
|
name?: Maybe<Scalars['String']['output']>;
|
|
4061
4109
|
schema?: Maybe<AssetsSchema>;
|
|
4110
|
+
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
4062
4111
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
4063
4112
|
};
|
|
4064
4113
|
export declare type AssetsSchema = Node & {
|
|
4065
4114
|
__typename?: 'AssetsSchema';
|
|
4066
4115
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
4116
|
+
displayTypename?: Maybe<Scalars['String']['output']>;
|
|
4067
4117
|
id: Scalars['ID']['output'];
|
|
4068
4118
|
key?: Maybe<Scalars['String']['output']>;
|
|
4069
4119
|
links?: Maybe<AssetsLinks>;
|
|
4070
4120
|
name?: Maybe<Scalars['String']['output']>;
|
|
4121
|
+
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
4071
4122
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
4072
4123
|
};
|
|
4073
4124
|
export declare type AssignIssueParentInput = {
|
|
@@ -5343,6 +5394,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
5343
5394
|
defaultStandaloneOfferingTransitions?: Maybe<Array<Maybe<CcpEntitlementOfferingTransition>>>;
|
|
5344
5395
|
enableAbuseProneFeatures?: Maybe<Scalars['Boolean']['output']>;
|
|
5345
5396
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
5397
|
+
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
5346
5398
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
5347
5399
|
experienceCapabilities?: Maybe<CcpEntitlementExperienceCapabilities>;
|
|
5348
5400
|
featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
@@ -5509,8 +5561,11 @@ export declare type CcpInvoiceGroupV2 = Node & {
|
|
|
5509
5561
|
};
|
|
5510
5562
|
export declare type CcpInvoiceRequest = {
|
|
5511
5563
|
__typename?: 'CcpInvoiceRequest';
|
|
5564
|
+
currency?: Maybe<CcpCurrency>;
|
|
5512
5565
|
id: Scalars['ID']['output'];
|
|
5513
5566
|
items?: Maybe<Array<Maybe<CcpInvoiceRequestItem>>>;
|
|
5567
|
+
preDunning?: Maybe<CcpSearchInvoiceRequestItemPreDunning>;
|
|
5568
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
5514
5569
|
};
|
|
5515
5570
|
export declare type CcpInvoiceRequestItem = {
|
|
5516
5571
|
__typename?: 'CcpInvoiceRequestItem';
|
|
@@ -5616,6 +5671,15 @@ export declare type CcpMultipleProductUpgradesExperienceCapability = CommerceExp
|
|
|
5616
5671
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
5617
5672
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
5618
5673
|
};
|
|
5674
|
+
export declare type CcpMutationApi = {
|
|
5675
|
+
__typename?: 'CcpMutationApi';
|
|
5676
|
+
updateLicenseServerId?: Maybe<CcpUpdateLicenseServerIdResult>;
|
|
5677
|
+
};
|
|
5678
|
+
export declare type CcpMutationApiUpdateLicenseServerIdArgs = {
|
|
5679
|
+
entitlementId: Scalars['ID']['input'];
|
|
5680
|
+
serverId: Scalars['ID']['input'];
|
|
5681
|
+
transactionAccountId: Scalars['ID']['input'];
|
|
5682
|
+
};
|
|
5619
5683
|
export declare type CcpOffering = CommerceOffering & Node & {
|
|
5620
5684
|
__typename?: 'CcpOffering';
|
|
5621
5685
|
allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -6698,6 +6762,11 @@ export declare type CcpSearchFieldRangeInput = {
|
|
|
6698
6762
|
bounds: CcpSearchTimestampBoundsInput;
|
|
6699
6763
|
field: Scalars['String']['input'];
|
|
6700
6764
|
};
|
|
6765
|
+
export declare type CcpSearchInvoiceRequestItemPreDunning = {
|
|
6766
|
+
__typename?: 'CcpSearchInvoiceRequestItemPreDunning';
|
|
6767
|
+
endAt?: Maybe<Scalars['Float']['output']>;
|
|
6768
|
+
startedAt?: Maybe<Scalars['Float']['output']>;
|
|
6769
|
+
};
|
|
6701
6770
|
export declare type CcpSearchSortInput = {
|
|
6702
6771
|
field: Scalars['String']['input'];
|
|
6703
6772
|
order: CcpSearchSortOrder;
|
|
@@ -6826,6 +6895,12 @@ export declare enum CcpTrialEndBehaviour {
|
|
|
6826
6895
|
BillingPlan = "BILLING_PLAN",
|
|
6827
6896
|
TrialPlan = "TRIAL_PLAN"
|
|
6828
6897
|
}
|
|
6898
|
+
export declare type CcpUpdateLicenseServerIdResult = {
|
|
6899
|
+
__typename?: 'CcpUpdateLicenseServerIdResult';
|
|
6900
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
6901
|
+
license?: Maybe<CcpLicense>;
|
|
6902
|
+
success: Scalars['Boolean']['output'];
|
|
6903
|
+
};
|
|
6829
6904
|
export declare type CcpUsageConfigScale = {
|
|
6830
6905
|
__typename?: 'CcpUsageConfigScale';
|
|
6831
6906
|
output?: Maybe<Scalars['String']['output']>;
|
|
@@ -7391,6 +7466,7 @@ export declare type CommerceChargeQuantity = {
|
|
|
7391
7466
|
quantity?: Maybe<Scalars['Float']['output']>;
|
|
7392
7467
|
};
|
|
7393
7468
|
export declare type CommerceEntitlement = {
|
|
7469
|
+
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
7394
7470
|
experienceCapabilities?: Maybe<CommerceEntitlementExperienceCapabilities>;
|
|
7395
7471
|
id: Scalars['ID']['output'];
|
|
7396
7472
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
@@ -12703,6 +12779,18 @@ export declare enum ComponentSyncEventStatus {
|
|
|
12703
12779
|
Success = "SUCCESS",
|
|
12704
12780
|
UserError = "USER_ERROR"
|
|
12705
12781
|
}
|
|
12782
|
+
export declare type ConfluenceAddCustomApplicationLinkInput = {
|
|
12783
|
+
allowedGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
12784
|
+
displayName: Scalars['String']['input'];
|
|
12785
|
+
isHidden: Scalars['Boolean']['input'];
|
|
12786
|
+
url: Scalars['String']['input'];
|
|
12787
|
+
};
|
|
12788
|
+
export declare type ConfluenceAddCustomApplicationLinkPayload = Payload & {
|
|
12789
|
+
__typename?: 'ConfluenceAddCustomApplicationLinkPayload';
|
|
12790
|
+
applicationLink?: Maybe<ConfluenceCustomApplicationLink>;
|
|
12791
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12792
|
+
success: Scalars['Boolean']['output'];
|
|
12793
|
+
};
|
|
12706
12794
|
export declare type ConfluenceAdminAnnouncementBanner = {
|
|
12707
12795
|
__typename?: 'ConfluenceAdminAnnouncementBanner';
|
|
12708
12796
|
appearance: Scalars['String']['output'];
|
|
@@ -12780,6 +12868,19 @@ export declare enum ConfluenceAppInstallationLicenseCapabilitySet {
|
|
|
12780
12868
|
CapabilityAdvanced = "CAPABILITY_ADVANCED",
|
|
12781
12869
|
CapabilityStandard = "CAPABILITY_STANDARD"
|
|
12782
12870
|
}
|
|
12871
|
+
export declare type ConfluenceAppLinkMapping = {
|
|
12872
|
+
newAppLink: ConfluenceAppLinkMetadataInput;
|
|
12873
|
+
oldAppLink: ConfluenceAppLinkMetadataInput;
|
|
12874
|
+
};
|
|
12875
|
+
export declare type ConfluenceAppLinkMetaData = {
|
|
12876
|
+
__typename?: 'ConfluenceAppLinkMetaData';
|
|
12877
|
+
serverId: Scalars['ID']['output'];
|
|
12878
|
+
serverName: Scalars['String']['output'];
|
|
12879
|
+
};
|
|
12880
|
+
export declare type ConfluenceAppLinkMetadataInput = {
|
|
12881
|
+
serverId: Scalars['ID']['input'];
|
|
12882
|
+
serverName: Scalars['String']['input'];
|
|
12883
|
+
};
|
|
12783
12884
|
export declare type ConfluenceApplicationLink = {
|
|
12784
12885
|
__typename?: 'ConfluenceApplicationLink';
|
|
12785
12886
|
applicationId: Scalars['String']['output'];
|
|
@@ -12791,6 +12892,33 @@ export declare type ConfluenceApplicationLink = {
|
|
|
12791
12892
|
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
12792
12893
|
typeId: Scalars['String']['output'];
|
|
12793
12894
|
};
|
|
12895
|
+
export declare type ConfluenceAssignableSpaceRole = {
|
|
12896
|
+
__typename?: 'ConfluenceAssignableSpaceRole';
|
|
12897
|
+
spaceRoles: Array<Maybe<ConfluenceBasicSpaceRole>>;
|
|
12898
|
+
type: ConfluenceAssignableSpaceRolePrincipalType;
|
|
12899
|
+
};
|
|
12900
|
+
export declare enum ConfluenceAssignableSpaceRolePrincipalType {
|
|
12901
|
+
Anonymous = "ANONYMOUS",
|
|
12902
|
+
Guest = "GUEST"
|
|
12903
|
+
}
|
|
12904
|
+
export declare enum ConfluenceAttachmentSecurityLevel {
|
|
12905
|
+
Insecure = "INSECURE",
|
|
12906
|
+
Secure = "SECURE",
|
|
12907
|
+
Smart = "SMART"
|
|
12908
|
+
}
|
|
12909
|
+
export declare type ConfluenceAttachmentSettings = {
|
|
12910
|
+
__typename?: 'ConfluenceAttachmentSettings';
|
|
12911
|
+
attachmentSecurityLevel?: Maybe<ConfluenceAttachmentSecurityLevel>;
|
|
12912
|
+
maxAttachmentSize?: Maybe<Scalars['Long']['output']>;
|
|
12913
|
+
maxAttachmentsPerUpload?: Maybe<Scalars['Int']['output']>;
|
|
12914
|
+
};
|
|
12915
|
+
export declare type ConfluenceBasicSpaceRole = {
|
|
12916
|
+
__typename?: 'ConfluenceBasicSpaceRole';
|
|
12917
|
+
description: Scalars['String']['output'];
|
|
12918
|
+
id: Scalars['ID']['output'];
|
|
12919
|
+
name: Scalars['String']['output'];
|
|
12920
|
+
type: SpaceRoleType;
|
|
12921
|
+
};
|
|
12794
12922
|
export declare type ConfluenceBlockedAccessAssignableSpaceRole = {
|
|
12795
12923
|
__typename?: 'ConfluenceBlockedAccessAssignableSpaceRole';
|
|
12796
12924
|
roleDescription: Scalars['String']['output'];
|
|
@@ -12932,6 +13060,16 @@ export declare type ConfluenceCalendarTimezones = {
|
|
|
12932
13060
|
__typename?: 'ConfluenceCalendarTimezones';
|
|
12933
13061
|
timezones?: Maybe<Array<Maybe<ConfluenceCalendarTimeZone>>>;
|
|
12934
13062
|
};
|
|
13063
|
+
export declare type ConfluenceChangeOrderOfCustomApplicationLinkInput = {
|
|
13064
|
+
id: Scalars['ID']['input'];
|
|
13065
|
+
idAfter?: InputMaybe<Scalars['ID']['input']>;
|
|
13066
|
+
isMoveToBeginning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13067
|
+
};
|
|
13068
|
+
export declare type ConfluenceChangeOrderOfCustomApplicationLinkPayload = Payload & {
|
|
13069
|
+
__typename?: 'ConfluenceChangeOrderOfCustomApplicationLinkPayload';
|
|
13070
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13071
|
+
success: Scalars['Boolean']['output'];
|
|
13072
|
+
};
|
|
12935
13073
|
export declare type ConfluenceChildContent = {
|
|
12936
13074
|
__typename?: 'ConfluenceChildContent';
|
|
12937
13075
|
attachment: PaginatedContentList;
|
|
@@ -13026,6 +13164,15 @@ export declare type ConfluenceCommentUpdated = {
|
|
|
13026
13164
|
__typename?: 'ConfluenceCommentUpdated';
|
|
13027
13165
|
commentId?: Maybe<Scalars['ID']['output']>;
|
|
13028
13166
|
};
|
|
13167
|
+
export declare type ConfluenceContentAiSummaryResponse = {
|
|
13168
|
+
__typename?: 'ConfluenceContentAISummaryResponse';
|
|
13169
|
+
contentAri: Scalars['ID']['output'];
|
|
13170
|
+
contentId: Scalars['ID']['output'];
|
|
13171
|
+
contentType: KnowledgeGraphContentType;
|
|
13172
|
+
createdAt: Scalars['String']['output'];
|
|
13173
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
13174
|
+
objectData?: Maybe<Scalars['String']['output']>;
|
|
13175
|
+
};
|
|
13029
13176
|
export declare type ConfluenceContentAccessRequest = {
|
|
13030
13177
|
__typename?: 'ConfluenceContentAccessRequest';
|
|
13031
13178
|
accessRequestedAaid: Scalars['ID']['output'];
|
|
@@ -13162,6 +13309,12 @@ export declare enum ConfluenceContentStatus {
|
|
|
13162
13309
|
Historical = "HISTORICAL",
|
|
13163
13310
|
Trashed = "TRASHED"
|
|
13164
13311
|
}
|
|
13312
|
+
export declare type ConfluenceContentTemplateRef = {
|
|
13313
|
+
__typename?: 'ConfluenceContentTemplateRef';
|
|
13314
|
+
id: Scalars['ID']['output'];
|
|
13315
|
+
moduleCompleteKey?: Maybe<Scalars['String']['output']>;
|
|
13316
|
+
templateId?: Maybe<Scalars['ID']['output']>;
|
|
13317
|
+
};
|
|
13165
13318
|
export declare type ConfluenceContentTitleEmoji = {
|
|
13166
13319
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
13167
13320
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -13389,6 +13542,28 @@ export declare type ConfluenceCurrentContentNativeProperties = {
|
|
|
13389
13542
|
__typename?: 'ConfluenceCurrentContentNativeProperties';
|
|
13390
13543
|
contentState?: Maybe<ConfluenceContentState>;
|
|
13391
13544
|
};
|
|
13545
|
+
export declare type ConfluenceCustomApplicationLink = {
|
|
13546
|
+
__typename?: 'ConfluenceCustomApplicationLink';
|
|
13547
|
+
allowedGroups?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13548
|
+
applicationType?: Maybe<Scalars['String']['output']>;
|
|
13549
|
+
displayName: Scalars['String']['output'];
|
|
13550
|
+
id: Scalars['ID']['output'];
|
|
13551
|
+
isEditable: Scalars['Boolean']['output'];
|
|
13552
|
+
isHidden: Scalars['Boolean']['output'];
|
|
13553
|
+
sourceApplicationName?: Maybe<Scalars['String']['output']>;
|
|
13554
|
+
sourceApplicationUrl?: Maybe<Scalars['String']['output']>;
|
|
13555
|
+
url: Scalars['String']['output'];
|
|
13556
|
+
};
|
|
13557
|
+
export declare type ConfluenceCustomPageSettings = {
|
|
13558
|
+
__typename?: 'ConfluenceCustomPageSettings';
|
|
13559
|
+
footerText?: Maybe<Scalars['String']['output']>;
|
|
13560
|
+
headerText?: Maybe<Scalars['String']['output']>;
|
|
13561
|
+
};
|
|
13562
|
+
export declare type ConfluenceCustomPageSpaceSettings = {
|
|
13563
|
+
__typename?: 'ConfluenceCustomPageSpaceSettings';
|
|
13564
|
+
footerText?: Maybe<Scalars['String']['output']>;
|
|
13565
|
+
headerText?: Maybe<Scalars['String']['output']>;
|
|
13566
|
+
};
|
|
13392
13567
|
export declare type ConfluenceDataLifecycleManagementPolicy = {
|
|
13393
13568
|
__typename?: 'ConfluenceDataLifecycleManagementPolicy';
|
|
13394
13569
|
dataRetentionPolicyDetailsForWorkspace: ConfluenceDataRetentionPolicyStatus;
|
|
@@ -13424,6 +13599,13 @@ export declare type ConfluenceDate = {
|
|
|
13424
13599
|
__typename?: 'ConfluenceDate';
|
|
13425
13600
|
value: Scalars['String']['output'];
|
|
13426
13601
|
};
|
|
13602
|
+
export declare type ConfluenceDefaultSpaceLogo = {
|
|
13603
|
+
__typename?: 'ConfluenceDefaultSpaceLogo';
|
|
13604
|
+
clientId?: Maybe<Scalars['ID']['output']>;
|
|
13605
|
+
isLogoDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
13606
|
+
mediaFileId?: Maybe<Scalars['ID']['output']>;
|
|
13607
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
13608
|
+
};
|
|
13427
13609
|
export declare type ConfluenceDeleteBlogPostPropertyInput = {
|
|
13428
13610
|
blogPostId: Scalars['ID']['input'];
|
|
13429
13611
|
key: Scalars['String']['input'];
|
|
@@ -13450,6 +13632,14 @@ export declare type ConfluenceDeleteCommentPayload = {
|
|
|
13450
13632
|
errors?: Maybe<Array<MutationError>>;
|
|
13451
13633
|
success: Scalars['Boolean']['output'];
|
|
13452
13634
|
};
|
|
13635
|
+
export declare type ConfluenceDeleteCustomApplicationLinkInput = {
|
|
13636
|
+
id: Scalars['ID']['input'];
|
|
13637
|
+
};
|
|
13638
|
+
export declare type ConfluenceDeleteCustomApplicationLinkPayload = Payload & {
|
|
13639
|
+
__typename?: 'ConfluenceDeleteCustomApplicationLinkPayload';
|
|
13640
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13641
|
+
success: Scalars['Boolean']['output'];
|
|
13642
|
+
};
|
|
13453
13643
|
export declare type ConfluenceDeleteCustomRoleInput = {
|
|
13454
13644
|
anonymousRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
13455
13645
|
guestRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -13478,6 +13668,14 @@ export declare type ConfluenceDeleteDraftPagePayload = Payload & {
|
|
|
13478
13668
|
errors?: Maybe<Array<MutationError>>;
|
|
13479
13669
|
success: Scalars['Boolean']['output'];
|
|
13480
13670
|
};
|
|
13671
|
+
export declare type ConfluenceDeleteGlobalPageTemplateInput = {
|
|
13672
|
+
id: Scalars['ID']['input'];
|
|
13673
|
+
};
|
|
13674
|
+
export declare type ConfluenceDeleteGlobalPageTemplatePayload = Payload & {
|
|
13675
|
+
__typename?: 'ConfluenceDeleteGlobalPageTemplatePayload';
|
|
13676
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13677
|
+
success: Scalars['Boolean']['output'];
|
|
13678
|
+
};
|
|
13481
13679
|
export declare type ConfluenceDeletePagePropertyInput = {
|
|
13482
13680
|
key: Scalars['String']['input'];
|
|
13483
13681
|
pageId: Scalars['ID']['input'];
|
|
@@ -13487,6 +13685,10 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
13487
13685
|
errors?: Maybe<Array<MutationError>>;
|
|
13488
13686
|
success: Scalars['Boolean']['output'];
|
|
13489
13687
|
};
|
|
13688
|
+
export declare type ConfluenceDeleteSpacePageTemplateInput = {
|
|
13689
|
+
id: Scalars['ID']['input'];
|
|
13690
|
+
spaceId: Scalars['Long']['input'];
|
|
13691
|
+
};
|
|
13490
13692
|
export declare type ConfluenceDeleteSubCalendarAllFutureEventsInput = {
|
|
13491
13693
|
recurUntil?: InputMaybe<Scalars['String']['input']>;
|
|
13492
13694
|
subCalendarId: Scalars['ID']['input'];
|
|
@@ -13562,6 +13764,12 @@ export declare type ConfluenceEditorSettings = {
|
|
|
13562
13764
|
export declare type ConfluenceEditorSettingsInput = {
|
|
13563
13765
|
toolbarDockingInitialPosition?: InputMaybe<Scalars['String']['input']>;
|
|
13564
13766
|
};
|
|
13767
|
+
export declare type ConfluenceEmailSettings = {
|
|
13768
|
+
__typename?: 'ConfluenceEmailSettings';
|
|
13769
|
+
customDomainEmails?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13770
|
+
defaultEmail?: Maybe<Scalars['String']['output']>;
|
|
13771
|
+
email?: Maybe<SiteEmailAddress>;
|
|
13772
|
+
};
|
|
13565
13773
|
export declare type ConfluenceEmbed = Node & {
|
|
13566
13774
|
__typename?: 'ConfluenceEmbed';
|
|
13567
13775
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -13589,6 +13797,23 @@ export declare type ConfluenceEmbedUpdated = {
|
|
|
13589
13797
|
isBlankStateUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
13590
13798
|
product?: Maybe<Scalars['String']['output']>;
|
|
13591
13799
|
};
|
|
13800
|
+
export declare type ConfluenceEnableBlueprintInput = {
|
|
13801
|
+
id: Scalars['ID']['input'];
|
|
13802
|
+
spaceId: Scalars['Long']['input'];
|
|
13803
|
+
};
|
|
13804
|
+
export declare type ConfluenceEnableBlueprintPayload = Payload & {
|
|
13805
|
+
__typename?: 'ConfluenceEnableBlueprintPayload';
|
|
13806
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13807
|
+
success: Scalars['Boolean']['output'];
|
|
13808
|
+
};
|
|
13809
|
+
export declare type ConfluenceEnableGlobalPageBlueprintInput = {
|
|
13810
|
+
id: Scalars['ID']['input'];
|
|
13811
|
+
};
|
|
13812
|
+
export declare type ConfluenceEnableGlobalPageBlueprintPayload = Payload & {
|
|
13813
|
+
__typename?: 'ConfluenceEnableGlobalPageBlueprintPayload';
|
|
13814
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13815
|
+
success: Scalars['Boolean']['output'];
|
|
13816
|
+
};
|
|
13592
13817
|
export declare type ConfluenceExpandTypeFromJira = {
|
|
13593
13818
|
__typename?: 'ConfluenceExpandTypeFromJira';
|
|
13594
13819
|
confluenceExpandTypeFromJira?: Maybe<Scalars['String']['output']>;
|
|
@@ -13765,10 +13990,49 @@ export declare type ConfluenceForgePayloadContext = {
|
|
|
13765
13990
|
localId?: InputMaybe<Scalars['String']['input']>;
|
|
13766
13991
|
moduleKey?: InputMaybe<Scalars['String']['input']>;
|
|
13767
13992
|
};
|
|
13993
|
+
export declare type ConfluenceFormattingSettings = {
|
|
13994
|
+
__typename?: 'ConfluenceFormattingSettings';
|
|
13995
|
+
dateFormat?: Maybe<Scalars['String']['output']>;
|
|
13996
|
+
dateTimeFormat?: Maybe<Scalars['String']['output']>;
|
|
13997
|
+
decimalNumberFormat?: Maybe<Scalars['String']['output']>;
|
|
13998
|
+
longNumberFormat?: Maybe<Scalars['String']['output']>;
|
|
13999
|
+
timeFormat?: Maybe<Scalars['String']['output']>;
|
|
14000
|
+
};
|
|
13768
14001
|
export declare type ConfluenceGeneratedSpaceKey = {
|
|
13769
14002
|
__typename?: 'ConfluenceGeneratedSpaceKey';
|
|
13770
14003
|
key?: Maybe<Scalars['String']['output']>;
|
|
13771
14004
|
};
|
|
14005
|
+
export declare type ConfluenceGlobalBlueprint = {
|
|
14006
|
+
__typename?: 'ConfluenceGlobalBlueprint';
|
|
14007
|
+
contentTemplateRefs?: Maybe<Array<Maybe<ConfluenceContentTemplateRef>>>;
|
|
14008
|
+
id: Scalars['ID']['output'];
|
|
14009
|
+
indexKey?: Maybe<Scalars['String']['output']>;
|
|
14010
|
+
indexPageTemplateRef?: Maybe<ConfluenceContentTemplateRef>;
|
|
14011
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
14012
|
+
isIndexDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
14013
|
+
isPromoted?: Maybe<Scalars['Boolean']['output']>;
|
|
14014
|
+
moduleCompleteKey?: Maybe<Scalars['String']['output']>;
|
|
14015
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14016
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
14017
|
+
};
|
|
14018
|
+
export declare type ConfluenceGlobalBlueprintSettings = {
|
|
14019
|
+
__typename?: 'ConfluenceGlobalBlueprintSettings';
|
|
14020
|
+
globalBlueprints?: Maybe<Array<Maybe<ConfluenceGlobalBlueprint>>>;
|
|
14021
|
+
isOnDemand?: Maybe<Scalars['Boolean']['output']>;
|
|
14022
|
+
isToggleModulesPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
14023
|
+
};
|
|
14024
|
+
export declare type ConfluenceGlobalPageTemplate = {
|
|
14025
|
+
__typename?: 'ConfluenceGlobalPageTemplate';
|
|
14026
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
14027
|
+
eligibilityStatus?: Maybe<Scalars['String']['output']>;
|
|
14028
|
+
id: Scalars['ID']['output'];
|
|
14029
|
+
isPromoted?: Maybe<Scalars['Boolean']['output']>;
|
|
14030
|
+
isSpaceAdministrator?: Maybe<Scalars['Boolean']['output']>;
|
|
14031
|
+
isSpaceCreator?: Maybe<Scalars['Boolean']['output']>;
|
|
14032
|
+
lastUpdatedDate?: Maybe<Scalars['String']['output']>;
|
|
14033
|
+
lastUpdater?: Maybe<ConfluenceUser>;
|
|
14034
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14035
|
+
};
|
|
13772
14036
|
export declare enum ConfluenceGraphQlDefaultTitleEmoji {
|
|
13773
14037
|
LivePageDefault = "LIVE_PAGE_DEFAULT",
|
|
13774
14038
|
None = "NONE"
|
|
@@ -13784,6 +14048,23 @@ export declare enum ConfluenceGroupUsageType {
|
|
|
13784
14048
|
TeamCollaboration = "TEAM_COLLABORATION",
|
|
13785
14049
|
UserbaseGroup = "USERBASE_GROUP"
|
|
13786
14050
|
}
|
|
14051
|
+
export declare type ConfluenceImportSpaceConfiguration = {
|
|
14052
|
+
__typename?: 'ConfluenceImportSpaceConfiguration';
|
|
14053
|
+
clientId?: Maybe<Scalars['ID']['output']>;
|
|
14054
|
+
isJiraProjectEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
14055
|
+
jiraProjectLinks?: Maybe<Array<Maybe<ConfluenceJiraProjectLink>>>;
|
|
14056
|
+
mediaToken?: Maybe<MediaToken>;
|
|
14057
|
+
};
|
|
14058
|
+
export declare type ConfluenceImportSpaceInput = {
|
|
14059
|
+
jiraProjectKey?: InputMaybe<Scalars['String']['input']>;
|
|
14060
|
+
mediaFileId: Scalars['ID']['input'];
|
|
14061
|
+
};
|
|
14062
|
+
export declare type ConfluenceImportSpacePayload = Payload & {
|
|
14063
|
+
__typename?: 'ConfluenceImportSpacePayload';
|
|
14064
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14065
|
+
success: Scalars['Boolean']['output'];
|
|
14066
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
14067
|
+
};
|
|
13787
14068
|
export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
|
|
13788
14069
|
__typename?: 'ConfluenceInlineComment';
|
|
13789
14070
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -13905,6 +14186,31 @@ export declare type ConfluenceInviteUserPayload = {
|
|
|
13905
14186
|
errors?: Maybe<Array<MutationError>>;
|
|
13906
14187
|
success: Scalars['Boolean']['output'];
|
|
13907
14188
|
};
|
|
14189
|
+
export declare type ConfluenceJiraMacroAppLinksScanningStatus = {
|
|
14190
|
+
__typename?: 'ConfluenceJiraMacroAppLinksScanningStatus';
|
|
14191
|
+
additionalMessage?: Maybe<Scalars['String']['output']>;
|
|
14192
|
+
problems?: Maybe<ConfluenceJiraMacroAppLinksValidatorResult>;
|
|
14193
|
+
status: ConfluenceJiraMacroAppLinksValidationStatus;
|
|
14194
|
+
};
|
|
14195
|
+
export declare enum ConfluenceJiraMacroAppLinksValidationStatus {
|
|
14196
|
+
Done = "DONE",
|
|
14197
|
+
Error = "ERROR",
|
|
14198
|
+
Fixing = "FIXING",
|
|
14199
|
+
NotStarted = "NOT_STARTED",
|
|
14200
|
+
NoApplink = "NO_APPLINK",
|
|
14201
|
+
Scanning = "SCANNING",
|
|
14202
|
+
WaitForConfig = "WAIT_FOR_CONFIG"
|
|
14203
|
+
}
|
|
14204
|
+
export declare type ConfluenceJiraMacroAppLinksValidatorResult = {
|
|
14205
|
+
__typename?: 'ConfluenceJiraMacroAppLinksValidatorResult';
|
|
14206
|
+
brokenAppLinks?: Maybe<Array<Maybe<ConfluenceAppLinkMetaData>>>;
|
|
14207
|
+
existingAppLinks?: Maybe<Array<Maybe<ConfluenceAppLinkMetaData>>>;
|
|
14208
|
+
};
|
|
14209
|
+
export declare type ConfluenceJiraProjectLink = {
|
|
14210
|
+
__typename?: 'ConfluenceJiraProjectLink';
|
|
14211
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
14212
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
14213
|
+
};
|
|
13908
14214
|
export declare type ConfluenceLabel = {
|
|
13909
14215
|
__typename?: 'ConfluenceLabel';
|
|
13910
14216
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -13925,6 +14231,15 @@ export declare type ConfluenceLabelWatchStatus = {
|
|
|
13925
14231
|
__typename?: 'ConfluenceLabelWatchStatus';
|
|
13926
14232
|
isWatching: Scalars['Boolean']['output'];
|
|
13927
14233
|
};
|
|
14234
|
+
export declare type ConfluenceLanguage = {
|
|
14235
|
+
__typename?: 'ConfluenceLanguage';
|
|
14236
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
14237
|
+
displayLanguage?: Maybe<Scalars['String']['output']>;
|
|
14238
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14239
|
+
encoding?: Maybe<Scalars['String']['output']>;
|
|
14240
|
+
language?: Maybe<Scalars['String']['output']>;
|
|
14241
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14242
|
+
};
|
|
13928
14243
|
export declare type ConfluenceLike = {
|
|
13929
14244
|
__typename?: 'ConfluenceLike';
|
|
13930
14245
|
likedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -13935,6 +14250,11 @@ export declare type ConfluenceLikesSummary = {
|
|
|
13935
14250
|
count?: Maybe<Scalars['Int']['output']>;
|
|
13936
14251
|
likes?: Maybe<Array<Maybe<ConfluenceLike>>>;
|
|
13937
14252
|
};
|
|
14253
|
+
export declare type ConfluenceLoginSettings = {
|
|
14254
|
+
__typename?: 'ConfluenceLoginSettings';
|
|
14255
|
+
enableElevatedSecurityCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
14256
|
+
loginAttemptsThreshold?: Maybe<Scalars['Int']['output']>;
|
|
14257
|
+
};
|
|
13938
14258
|
export declare type ConfluenceLongTask = {
|
|
13939
14259
|
__typename?: 'ConfluenceLongTask';
|
|
13940
14260
|
id: Scalars['ID']['output'];
|
|
@@ -13968,6 +14288,16 @@ export declare type ConfluenceLoomEntryPoints = {
|
|
|
13968
14288
|
__typename?: 'ConfluenceLoomEntryPoints';
|
|
13969
14289
|
isLoomEntryPointsEnabled: Scalars['Boolean']['output'];
|
|
13970
14290
|
};
|
|
14291
|
+
export declare type ConfluenceMacro = {
|
|
14292
|
+
__typename?: 'ConfluenceMacro';
|
|
14293
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
14294
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
14295
|
+
};
|
|
14296
|
+
export declare type ConfluenceMacroUsage = {
|
|
14297
|
+
__typename?: 'ConfluenceMacroUsage';
|
|
14298
|
+
unusedPluginMacros?: Maybe<Array<Maybe<ConfluenceUnusedPluginMacro>>>;
|
|
14299
|
+
usedPluginMacros?: Maybe<Array<Maybe<ConfluenceUsedPluginMacro>>>;
|
|
14300
|
+
};
|
|
13971
14301
|
export declare type ConfluenceMakeSubCalendarPrivateUrlInput = {
|
|
13972
14302
|
subCalendarId: Scalars['ID']['input'];
|
|
13973
14303
|
};
|
|
@@ -13994,8 +14324,18 @@ export declare type ConfluenceMarkCommentAsDanglingPayload = Payload & {
|
|
|
13994
14324
|
errors: Array<MutationError>;
|
|
13995
14325
|
success: Scalars['Boolean']['output'];
|
|
13996
14326
|
};
|
|
14327
|
+
export declare type ConfluenceMediaTokenData = {
|
|
14328
|
+
__typename?: 'ConfluenceMediaTokenData';
|
|
14329
|
+
clientId: Scalars['String']['output'];
|
|
14330
|
+
collection: Scalars['String']['output'];
|
|
14331
|
+
expiration: Scalars['Int']['output'];
|
|
14332
|
+
fileStoreUrl: Scalars['String']['output'];
|
|
14333
|
+
token: Scalars['String']['output'];
|
|
14334
|
+
};
|
|
13997
14335
|
export declare type ConfluenceMutationApi = {
|
|
13998
14336
|
__typename?: 'ConfluenceMutationApi';
|
|
14337
|
+
addCustomApplicationLink?: Maybe<ConfluenceAddCustomApplicationLinkPayload>;
|
|
14338
|
+
changeOrderOfCustomApplicationLink?: Maybe<ConfluenceChangeOrderOfCustomApplicationLinkPayload>;
|
|
13999
14339
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
14000
14340
|
createBlogPostProperty?: Maybe<ConfluenceCreateBlogPostPropertyPayload>;
|
|
14001
14341
|
createFooterCommentOnBlogPost?: Maybe<ConfluenceCreateFooterCommentOnBlogPostPayload>;
|
|
@@ -14005,28 +14345,53 @@ export declare type ConfluenceMutationApi = {
|
|
|
14005
14345
|
createSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
14006
14346
|
deleteBlogPostProperty?: Maybe<ConfluenceDeleteBlogPostPropertyPayload>;
|
|
14007
14347
|
deleteComment?: Maybe<ConfluenceDeleteCommentPayload>;
|
|
14348
|
+
deleteCustomApplicationLink?: Maybe<ConfluenceDeleteCustomApplicationLinkPayload>;
|
|
14008
14349
|
deleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
14009
14350
|
deleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
14351
|
+
deleteGlobalPageTemplate?: Maybe<ConfluenceDeleteGlobalPageTemplatePayload>;
|
|
14010
14352
|
deletePageProperty?: Maybe<ConfluenceDeletePagePropertyPayload>;
|
|
14353
|
+
deleteSpacePageTemplate?: Maybe<ConfluenceDeleteGlobalPageTemplatePayload>;
|
|
14354
|
+
enableBlueprint?: Maybe<ConfluenceEnableBlueprintPayload>;
|
|
14355
|
+
enableGlobalBlueprint?: Maybe<ConfluenceEnableGlobalPageBlueprintPayload>;
|
|
14356
|
+
importSpace?: Maybe<ConfluenceImportSpacePayload>;
|
|
14357
|
+
promoteBlueprint?: Maybe<ConfluencePromoteBlueprintPayload>;
|
|
14358
|
+
promotePageTemplate?: Maybe<ConfluencePromotePageTemplatePayload>;
|
|
14011
14359
|
publishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
14012
14360
|
publishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
14013
14361
|
purgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
14014
14362
|
purgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
14015
14363
|
reopenInlineComment?: Maybe<ConfluenceReopenInlineCommentPayload>;
|
|
14364
|
+
repairJiraMacroAppLinks?: Maybe<ConfluenceRepairJiraMacroAppLinksPayload>;
|
|
14016
14365
|
replyToComment?: Maybe<ConfluenceReplyToCommentPayload>;
|
|
14366
|
+
requestSpaceAccess?: Maybe<ConfluenceRequestSpaceAccessPayload>;
|
|
14017
14367
|
resolveInlineComment?: Maybe<ConfluenceResolveInlineCommentPayload>;
|
|
14368
|
+
saveOrUpdateSpaceOwner?: Maybe<ConfluenceSaveOrUpdateSpaceOwnerPayload>;
|
|
14018
14369
|
trashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
14019
14370
|
trashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
14371
|
+
unpromoteBlueprint?: Maybe<ConfluenceUnpromoteBlueprintPayload>;
|
|
14372
|
+
unpromotePageTemplate?: Maybe<ConfluenceUnpromotePageTemplatePayload>;
|
|
14020
14373
|
updateComment?: Maybe<ConfluenceUpdateCommentPayload>;
|
|
14021
14374
|
updateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
14022
14375
|
updateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
14376
|
+
updateCustomApplicationLink?: Maybe<ConfluenceUpdateCustomApplicationLinkPayload>;
|
|
14023
14377
|
updateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
14024
14378
|
updateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
14379
|
+
updateGlobalDefaultLanguageConfiguration?: Maybe<ConfluenceUpdateGlobalDefaultLocaleConfigurationPayload>;
|
|
14380
|
+
updateGlobalPageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
14381
|
+
updateIndexingLanguageConfiguration?: Maybe<ConfluenceUpdateIndexingLanguageConfigurationPayload>;
|
|
14382
|
+
updateSiteConfiguration?: Maybe<ConfluenceUpdateSiteConfigurationPayload>;
|
|
14025
14383
|
updateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
14384
|
+
updateSpacePageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
14026
14385
|
updateSpaceSettings?: Maybe<ConfluenceUpdateSpaceSettingsPayload>;
|
|
14027
14386
|
updateValueBlogPostProperty?: Maybe<ConfluenceUpdateValueBlogPostPropertyPayload>;
|
|
14028
14387
|
updateValuePageProperty?: Maybe<ConfluenceUpdateValuePagePropertyPayload>;
|
|
14029
14388
|
};
|
|
14389
|
+
export declare type ConfluenceMutationApiAddCustomApplicationLinkArgs = {
|
|
14390
|
+
input: ConfluenceAddCustomApplicationLinkInput;
|
|
14391
|
+
};
|
|
14392
|
+
export declare type ConfluenceMutationApiChangeOrderOfCustomApplicationLinkArgs = {
|
|
14393
|
+
input: ConfluenceChangeOrderOfCustomApplicationLinkInput;
|
|
14394
|
+
};
|
|
14030
14395
|
export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
14031
14396
|
input: ConfluenceCreateBlogPostInput;
|
|
14032
14397
|
};
|
|
@@ -14055,15 +14420,39 @@ export declare type ConfluenceMutationApiDeleteBlogPostPropertyArgs = {
|
|
|
14055
14420
|
export declare type ConfluenceMutationApiDeleteCommentArgs = {
|
|
14056
14421
|
input: ConfluenceDeleteCommentInput;
|
|
14057
14422
|
};
|
|
14423
|
+
export declare type ConfluenceMutationApiDeleteCustomApplicationLinkArgs = {
|
|
14424
|
+
input: ConfluenceDeleteCustomApplicationLinkInput;
|
|
14425
|
+
};
|
|
14058
14426
|
export declare type ConfluenceMutationApiDeleteDraftBlogPostArgs = {
|
|
14059
14427
|
input: ConfluenceDeleteDraftBlogPostInput;
|
|
14060
14428
|
};
|
|
14061
14429
|
export declare type ConfluenceMutationApiDeleteDraftPageArgs = {
|
|
14062
14430
|
input: ConfluenceDeleteDraftPageInput;
|
|
14063
14431
|
};
|
|
14432
|
+
export declare type ConfluenceMutationApiDeleteGlobalPageTemplateArgs = {
|
|
14433
|
+
input: ConfluenceDeleteGlobalPageTemplateInput;
|
|
14434
|
+
};
|
|
14064
14435
|
export declare type ConfluenceMutationApiDeletePagePropertyArgs = {
|
|
14065
14436
|
input: ConfluenceDeletePagePropertyInput;
|
|
14066
14437
|
};
|
|
14438
|
+
export declare type ConfluenceMutationApiDeleteSpacePageTemplateArgs = {
|
|
14439
|
+
input: ConfluenceDeleteSpacePageTemplateInput;
|
|
14440
|
+
};
|
|
14441
|
+
export declare type ConfluenceMutationApiEnableBlueprintArgs = {
|
|
14442
|
+
input: ConfluenceEnableBlueprintInput;
|
|
14443
|
+
};
|
|
14444
|
+
export declare type ConfluenceMutationApiEnableGlobalBlueprintArgs = {
|
|
14445
|
+
input: ConfluenceEnableGlobalPageBlueprintInput;
|
|
14446
|
+
};
|
|
14447
|
+
export declare type ConfluenceMutationApiImportSpaceArgs = {
|
|
14448
|
+
input: ConfluenceImportSpaceInput;
|
|
14449
|
+
};
|
|
14450
|
+
export declare type ConfluenceMutationApiPromoteBlueprintArgs = {
|
|
14451
|
+
input: ConfluencePromoteBlueprintInput;
|
|
14452
|
+
};
|
|
14453
|
+
export declare type ConfluenceMutationApiPromotePageTemplateArgs = {
|
|
14454
|
+
input: ConfluencePromotePageTemplateInput;
|
|
14455
|
+
};
|
|
14067
14456
|
export declare type ConfluenceMutationApiPublishBlogPostArgs = {
|
|
14068
14457
|
input: ConfluencePublishBlogPostInput;
|
|
14069
14458
|
};
|
|
@@ -14079,18 +14468,33 @@ export declare type ConfluenceMutationApiPurgePageArgs = {
|
|
|
14079
14468
|
export declare type ConfluenceMutationApiReopenInlineCommentArgs = {
|
|
14080
14469
|
input: ConfluenceReopenInlineCommentInput;
|
|
14081
14470
|
};
|
|
14471
|
+
export declare type ConfluenceMutationApiRepairJiraMacroAppLinksArgs = {
|
|
14472
|
+
input: ConfluenceRepairJiraMacroAppLinksInput;
|
|
14473
|
+
};
|
|
14082
14474
|
export declare type ConfluenceMutationApiReplyToCommentArgs = {
|
|
14083
14475
|
input: ConfluenceReplyToCommentInput;
|
|
14084
14476
|
};
|
|
14477
|
+
export declare type ConfluenceMutationApiRequestSpaceAccessArgs = {
|
|
14478
|
+
confluenceRequestSpaceAccessInput: ConfluenceRequestSpaceAccessInput;
|
|
14479
|
+
};
|
|
14085
14480
|
export declare type ConfluenceMutationApiResolveInlineCommentArgs = {
|
|
14086
14481
|
input: ConfluenceResolveInlineCommentInput;
|
|
14087
14482
|
};
|
|
14483
|
+
export declare type ConfluenceMutationApiSaveOrUpdateSpaceOwnerArgs = {
|
|
14484
|
+
input: ConfluenceSaveOrUpdateSpaceOwnerInput;
|
|
14485
|
+
};
|
|
14088
14486
|
export declare type ConfluenceMutationApiTrashBlogPostArgs = {
|
|
14089
14487
|
input: ConfluenceTrashBlogPostInput;
|
|
14090
14488
|
};
|
|
14091
14489
|
export declare type ConfluenceMutationApiTrashPageArgs = {
|
|
14092
14490
|
input: ConfluenceTrashPageInput;
|
|
14093
14491
|
};
|
|
14492
|
+
export declare type ConfluenceMutationApiUnpromoteBlueprintArgs = {
|
|
14493
|
+
input: ConfluenceUnpromoteBlueprintInput;
|
|
14494
|
+
};
|
|
14495
|
+
export declare type ConfluenceMutationApiUnpromotePageTemplateArgs = {
|
|
14496
|
+
input: ConfluenceUnpromotePageTemplateInput;
|
|
14497
|
+
};
|
|
14094
14498
|
export declare type ConfluenceMutationApiUpdateCommentArgs = {
|
|
14095
14499
|
input: ConfluenceUpdateCommentInput;
|
|
14096
14500
|
};
|
|
@@ -14100,15 +14504,33 @@ export declare type ConfluenceMutationApiUpdateCurrentBlogPostArgs = {
|
|
|
14100
14504
|
export declare type ConfluenceMutationApiUpdateCurrentPageArgs = {
|
|
14101
14505
|
input: ConfluenceUpdateCurrentPageInput;
|
|
14102
14506
|
};
|
|
14507
|
+
export declare type ConfluenceMutationApiUpdateCustomApplicationLinkArgs = {
|
|
14508
|
+
input: ConfluenceUpdateCustomApplicationLinkInput;
|
|
14509
|
+
};
|
|
14103
14510
|
export declare type ConfluenceMutationApiUpdateDraftBlogPostArgs = {
|
|
14104
14511
|
input: ConfluenceUpdateDraftBlogPostInput;
|
|
14105
14512
|
};
|
|
14106
14513
|
export declare type ConfluenceMutationApiUpdateDraftPageArgs = {
|
|
14107
14514
|
input: ConfluenceUpdateDraftPageInput;
|
|
14108
14515
|
};
|
|
14516
|
+
export declare type ConfluenceMutationApiUpdateGlobalDefaultLanguageConfigurationArgs = {
|
|
14517
|
+
input: ConfluenceUpdateGlobalDefaultLocaleConfigurationInput;
|
|
14518
|
+
};
|
|
14519
|
+
export declare type ConfluenceMutationApiUpdateGlobalPageTemplateDescriptionArgs = {
|
|
14520
|
+
input: ConfluenceUpdateGlobalPageTemplateDescriptionInput;
|
|
14521
|
+
};
|
|
14522
|
+
export declare type ConfluenceMutationApiUpdateIndexingLanguageConfigurationArgs = {
|
|
14523
|
+
input: ConfluenceUpdateIndexingLanguageConfigurationInput;
|
|
14524
|
+
};
|
|
14525
|
+
export declare type ConfluenceMutationApiUpdateSiteConfigurationArgs = {
|
|
14526
|
+
input: ConfluenceUpdateSiteConfigurationInput;
|
|
14527
|
+
};
|
|
14109
14528
|
export declare type ConfluenceMutationApiUpdateSpaceArgs = {
|
|
14110
14529
|
input: ConfluenceUpdateSpaceInput;
|
|
14111
14530
|
};
|
|
14531
|
+
export declare type ConfluenceMutationApiUpdateSpacePageTemplateDescriptionArgs = {
|
|
14532
|
+
input: ConfluenceUpdateSpacePageTemplateDescriptionInput;
|
|
14533
|
+
};
|
|
14112
14534
|
export declare type ConfluenceMutationApiUpdateSpaceSettingsArgs = {
|
|
14113
14535
|
input: ConfluenceUpdateSpaceSettingsInput;
|
|
14114
14536
|
};
|
|
@@ -14122,10 +14544,37 @@ export declare enum ConfluenceMutationContentStatus {
|
|
|
14122
14544
|
Current = "CURRENT",
|
|
14123
14545
|
Draft = "DRAFT"
|
|
14124
14546
|
}
|
|
14547
|
+
export declare type ConfluenceNewCodeMacro = {
|
|
14548
|
+
__typename?: 'ConfluenceNewCodeMacro';
|
|
14549
|
+
languages?: Maybe<Array<Maybe<ConfluenceNewCodeMacroLanguage>>>;
|
|
14550
|
+
selectedLanguage?: Maybe<ConfluenceNewCodeMacroLanguage>;
|
|
14551
|
+
selectedTheme?: Maybe<ConfluenceNewCodeMacroTheme>;
|
|
14552
|
+
themes?: Maybe<Array<Maybe<ConfluenceNewCodeMacroTheme>>>;
|
|
14553
|
+
};
|
|
14554
|
+
export declare type ConfluenceNewCodeMacroLanguage = {
|
|
14555
|
+
__typename?: 'ConfluenceNewCodeMacroLanguage';
|
|
14556
|
+
aliases: Array<Maybe<Scalars['String']['output']>>;
|
|
14557
|
+
builtIn: Scalars['Boolean']['output'];
|
|
14558
|
+
friendlyName: Scalars['String']['output'];
|
|
14559
|
+
name: Scalars['String']['output'];
|
|
14560
|
+
webResource: Scalars['String']['output'];
|
|
14561
|
+
};
|
|
14562
|
+
export declare type ConfluenceNewCodeMacroTheme = {
|
|
14563
|
+
__typename?: 'ConfluenceNewCodeMacroTheme';
|
|
14564
|
+
builtIn: Scalars['Boolean']['output'];
|
|
14565
|
+
defaultLayout: Array<Maybe<MapOfStringToString>>;
|
|
14566
|
+
name: Scalars['String']['output'];
|
|
14567
|
+
styleSheetUrl: Scalars['String']['output'];
|
|
14568
|
+
webResource: Scalars['String']['output'];
|
|
14569
|
+
};
|
|
14125
14570
|
export declare enum ConfluenceNotesOrdering {
|
|
14126
14571
|
DateLastModifiedAsc = "DATE_LAST_MODIFIED_ASC",
|
|
14127
14572
|
DateLastModifiedDesc = "DATE_LAST_MODIFIED_DESC"
|
|
14128
14573
|
}
|
|
14574
|
+
export declare type ConfluenceNotificationsSettings = {
|
|
14575
|
+
__typename?: 'ConfluenceNotificationsSettings';
|
|
14576
|
+
emailSettings?: Maybe<ConfluenceEmailSettings>;
|
|
14577
|
+
};
|
|
14129
14578
|
export declare type ConfluenceOperationCheck = {
|
|
14130
14579
|
__typename?: 'ConfluenceOperationCheck';
|
|
14131
14580
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -14258,6 +14707,20 @@ export declare type ConfluencePdfExportDownloadLink = {
|
|
|
14258
14707
|
__typename?: 'ConfluencePdfExportDownloadLink';
|
|
14259
14708
|
link?: Maybe<Scalars['String']['output']>;
|
|
14260
14709
|
};
|
|
14710
|
+
export declare type ConfluencePdfExportSettings = {
|
|
14711
|
+
__typename?: 'ConfluencePdfExportSettings';
|
|
14712
|
+
footer?: Maybe<Scalars['String']['output']>;
|
|
14713
|
+
header?: Maybe<Scalars['String']['output']>;
|
|
14714
|
+
style?: Maybe<Scalars['String']['output']>;
|
|
14715
|
+
titlePage?: Maybe<Scalars['String']['output']>;
|
|
14716
|
+
};
|
|
14717
|
+
export declare type ConfluencePdfExportSpaceSettings = {
|
|
14718
|
+
__typename?: 'ConfluencePdfExportSpaceSettings';
|
|
14719
|
+
footer?: Maybe<Scalars['String']['output']>;
|
|
14720
|
+
header?: Maybe<Scalars['String']['output']>;
|
|
14721
|
+
style?: Maybe<Scalars['String']['output']>;
|
|
14722
|
+
titlePage?: Maybe<Scalars['String']['output']>;
|
|
14723
|
+
};
|
|
14261
14724
|
export declare enum ConfluencePdfExportState {
|
|
14262
14725
|
Done = "DONE",
|
|
14263
14726
|
Failed = "FAILED",
|
|
@@ -14321,6 +14784,24 @@ export declare type ConfluencePrivacyMode = {
|
|
|
14321
14784
|
__typename?: 'ConfluencePrivacyMode';
|
|
14322
14785
|
isPrivacyModeEnabled: Scalars['Boolean']['output'];
|
|
14323
14786
|
};
|
|
14787
|
+
export declare type ConfluencePromoteBlueprintInput = {
|
|
14788
|
+
id: Scalars['ID']['input'];
|
|
14789
|
+
spaceId: Scalars['Long']['input'];
|
|
14790
|
+
};
|
|
14791
|
+
export declare type ConfluencePromoteBlueprintPayload = Payload & {
|
|
14792
|
+
__typename?: 'ConfluencePromoteBlueprintPayload';
|
|
14793
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14794
|
+
success: Scalars['Boolean']['output'];
|
|
14795
|
+
};
|
|
14796
|
+
export declare type ConfluencePromotePageTemplateInput = {
|
|
14797
|
+
id: Scalars['ID']['input'];
|
|
14798
|
+
spaceId: Scalars['Long']['input'];
|
|
14799
|
+
};
|
|
14800
|
+
export declare type ConfluencePromotePageTemplatePayload = Payload & {
|
|
14801
|
+
__typename?: 'ConfluencePromotePageTemplatePayload';
|
|
14802
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14803
|
+
success: Scalars['Boolean']['output'];
|
|
14804
|
+
};
|
|
14324
14805
|
export declare type ConfluencePublishBlogPostInput = {
|
|
14325
14806
|
id: Scalars['ID']['input'];
|
|
14326
14807
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14369,20 +14850,35 @@ export declare type ConfluenceQueryApi = {
|
|
|
14369
14850
|
blogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
14370
14851
|
comment?: Maybe<ConfluenceComment>;
|
|
14371
14852
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
14853
|
+
customPageSpaceSettings?: Maybe<ConfluenceCustomPageSpaceSettings>;
|
|
14372
14854
|
database?: Maybe<ConfluenceDatabase>;
|
|
14373
14855
|
databases?: Maybe<Array<Maybe<ConfluenceDatabase>>>;
|
|
14856
|
+
defaultSpaceLogo?: Maybe<ConfluenceDefaultSpaceLogo>;
|
|
14374
14857
|
embed?: Maybe<ConfluenceEmbed>;
|
|
14375
14858
|
embeds?: Maybe<Array<Maybe<ConfluenceEmbed>>>;
|
|
14376
14859
|
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
14377
14860
|
folder?: Maybe<ConfluenceFolder>;
|
|
14378
14861
|
folders?: Maybe<Array<Maybe<ConfluenceFolder>>>;
|
|
14862
|
+
globalBlueprintSettings?: Maybe<ConfluenceGlobalBlueprintSettings>;
|
|
14863
|
+
globalSpaceBlueprintSettings?: Maybe<ConfluenceGlobalBlueprintSettings>;
|
|
14864
|
+
importSpaceConfiguration?: Maybe<ConfluenceImportSpaceConfiguration>;
|
|
14379
14865
|
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
14866
|
+
jiraMacroAppLinksScanningStatus?: Maybe<ConfluenceJiraMacroAppLinksScanningStatus>;
|
|
14380
14867
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
14868
|
+
macroUsage?: Maybe<ConfluenceMacroUsage>;
|
|
14869
|
+
newCodeMacro?: Maybe<ConfluenceNewCodeMacro>;
|
|
14870
|
+
notificationsSettings?: Maybe<ConfluenceNotificationsSettings>;
|
|
14381
14871
|
page?: Maybe<ConfluencePage>;
|
|
14382
14872
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
14873
|
+
pdfExportSpaceSettings?: Maybe<ConfluencePdfExportSpaceSettings>;
|
|
14383
14874
|
searchLabels?: Maybe<ConfluenceLabelSearchResults>;
|
|
14875
|
+
siteConfiguration?: Maybe<ConfluenceSiteConfiguration>;
|
|
14384
14876
|
space?: Maybe<ConfluenceSpace>;
|
|
14385
14877
|
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
14878
|
+
systemTemplates?: Maybe<Array<Maybe<ConfluenceSystemTemplate>>>;
|
|
14879
|
+
teamCalendar?: Maybe<ConfluenceTeamCalendar>;
|
|
14880
|
+
templates?: Maybe<ConfluenceTemplates>;
|
|
14881
|
+
themes?: Maybe<ConfluenceThemes>;
|
|
14386
14882
|
validateSpaceKey?: Maybe<ConfluenceValidateSpaceKeyResponse>;
|
|
14387
14883
|
whiteboard?: Maybe<ConfluenceWhiteboard>;
|
|
14388
14884
|
whiteboards?: Maybe<Array<Maybe<ConfluenceWhiteboard>>>;
|
|
@@ -14399,6 +14895,9 @@ export declare type ConfluenceQueryApiCommentArgs = {
|
|
|
14399
14895
|
export declare type ConfluenceQueryApiCommentsArgs = {
|
|
14400
14896
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
14401
14897
|
};
|
|
14898
|
+
export declare type ConfluenceQueryApiCustomPageSpaceSettingsArgs = {
|
|
14899
|
+
spaceId: Scalars['Long']['input'];
|
|
14900
|
+
};
|
|
14402
14901
|
export declare type ConfluenceQueryApiDatabaseArgs = {
|
|
14403
14902
|
id: Scalars['ID']['input'];
|
|
14404
14903
|
};
|
|
@@ -14423,6 +14922,9 @@ export declare type ConfluenceQueryApiFolderArgs = {
|
|
|
14423
14922
|
export declare type ConfluenceQueryApiFoldersArgs = {
|
|
14424
14923
|
ids: Array<Scalars['ID']['input']>;
|
|
14425
14924
|
};
|
|
14925
|
+
export declare type ConfluenceQueryApiGlobalSpaceBlueprintSettingsArgs = {
|
|
14926
|
+
spaceId: Scalars['Long']['input'];
|
|
14927
|
+
};
|
|
14426
14928
|
export declare type ConfluenceQueryApiInlineTaskArgs = {
|
|
14427
14929
|
id: Scalars['ID']['input'];
|
|
14428
14930
|
};
|
|
@@ -14435,6 +14937,9 @@ export declare type ConfluenceQueryApiPageArgs = {
|
|
|
14435
14937
|
export declare type ConfluenceQueryApiPagesArgs = {
|
|
14436
14938
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
14437
14939
|
};
|
|
14940
|
+
export declare type ConfluenceQueryApiPdfExportSpaceSettingsArgs = {
|
|
14941
|
+
spaceId: Scalars['Long']['input'];
|
|
14942
|
+
};
|
|
14438
14943
|
export declare type ConfluenceQueryApiSearchLabelsArgs = {
|
|
14439
14944
|
cloudId: Scalars['ID']['input'];
|
|
14440
14945
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14565,6 +15070,14 @@ export declare type ConfluenceReopenInlineCommentPayload = {
|
|
|
14565
15070
|
errors?: Maybe<Array<MutationError>>;
|
|
14566
15071
|
success: Scalars['Boolean']['output'];
|
|
14567
15072
|
};
|
|
15073
|
+
export declare type ConfluenceRepairJiraMacroAppLinksInput = {
|
|
15074
|
+
appLinkMapping: Array<ConfluenceAppLinkMapping>;
|
|
15075
|
+
};
|
|
15076
|
+
export declare type ConfluenceRepairJiraMacroAppLinksPayload = Payload & {
|
|
15077
|
+
__typename?: 'ConfluenceRepairJiraMacroAppLinksPayload';
|
|
15078
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15079
|
+
success: Scalars['Boolean']['output'];
|
|
15080
|
+
};
|
|
14568
15081
|
export declare type ConfluenceReplyToCommentInput = {
|
|
14569
15082
|
body: ConfluenceContentBodyInput;
|
|
14570
15083
|
parentCommentId: Scalars['ID']['input'];
|
|
@@ -14579,6 +15092,15 @@ export declare enum ConfluenceRequestAccessApprovalDecision {
|
|
|
14579
15092
|
Approve = "APPROVE",
|
|
14580
15093
|
Deny = "DENY"
|
|
14581
15094
|
}
|
|
15095
|
+
export declare type ConfluenceRequestSpaceAccessInput = {
|
|
15096
|
+
spaceKey: Scalars['String']['input'];
|
|
15097
|
+
};
|
|
15098
|
+
export declare type ConfluenceRequestSpaceAccessPayload = Payload & {
|
|
15099
|
+
__typename?: 'ConfluenceRequestSpaceAccessPayload';
|
|
15100
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15101
|
+
spaceKey: Scalars['String']['output'];
|
|
15102
|
+
success: Scalars['Boolean']['output'];
|
|
15103
|
+
};
|
|
14582
15104
|
export declare type ConfluenceResolveCommentByContentIdPayload = Payload & {
|
|
14583
15105
|
__typename?: 'ConfluenceResolveCommentByContentIdPayload';
|
|
14584
15106
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -14609,6 +15131,16 @@ export declare enum ConfluenceRoleAssignabilityCode {
|
|
|
14609
15131
|
NoManageNonlicensedUsersPermNotAssignable = "NO_MANAGE_NONLICENSED_USERS_PERM_NOT_ASSIGNABLE",
|
|
14610
15132
|
PrincipalInvalidRole = "PRINCIPAL_INVALID_ROLE"
|
|
14611
15133
|
}
|
|
15134
|
+
export declare type ConfluenceSaveOrUpdateSpaceOwnerInput = {
|
|
15135
|
+
ownerId: Scalars['ID']['input'];
|
|
15136
|
+
spaceId: Scalars['Long']['input'];
|
|
15137
|
+
spaceOwnerType: ConfluenceSpaceOwnerType;
|
|
15138
|
+
};
|
|
15139
|
+
export declare type ConfluenceSaveOrUpdateSpaceOwnerPayload = Payload & {
|
|
15140
|
+
__typename?: 'ConfluenceSaveOrUpdateSpaceOwnerPayload';
|
|
15141
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15142
|
+
success: Scalars['Boolean']['output'];
|
|
15143
|
+
};
|
|
14612
15144
|
export declare type ConfluenceSchedulePublished = {
|
|
14613
15145
|
__typename?: 'ConfluenceSchedulePublished';
|
|
14614
15146
|
confVersion?: Maybe<Scalars['Int']['output']>;
|
|
@@ -14666,6 +15198,49 @@ export declare type ConfluenceSetSubCalendarReminderPayload = {
|
|
|
14666
15198
|
subCalendarReminder?: Maybe<ConfluenceSubCalendarReminder>;
|
|
14667
15199
|
success: Scalars['Boolean']['output'];
|
|
14668
15200
|
};
|
|
15201
|
+
export declare type ConfluenceSiteConfiguration = {
|
|
15202
|
+
__typename?: 'ConfluenceSiteConfiguration';
|
|
15203
|
+
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
15204
|
+
connectionTimeout?: Maybe<Scalars['Int']['output']>;
|
|
15205
|
+
contactAdministratorsMessage?: Maybe<Scalars['String']['output']>;
|
|
15206
|
+
customPageSettings?: Maybe<ConfluenceCustomPageSettings>;
|
|
15207
|
+
formattingSettings?: Maybe<ConfluenceFormattingSettings>;
|
|
15208
|
+
globalDefaultLocale?: Maybe<ConfluenceLanguage>;
|
|
15209
|
+
indexingLanguage?: Maybe<Scalars['String']['output']>;
|
|
15210
|
+
installedLocales?: Maybe<Array<Maybe<ConfluenceLanguage>>>;
|
|
15211
|
+
isAddWildcardsToUserAndGroupSearchesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15212
|
+
isAnonymousAccessToRemoteApiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15213
|
+
isContactAdministratorsFormEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15214
|
+
isEditorConversionForSiteEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15215
|
+
isEditorFullWidthEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15216
|
+
isEmailNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15217
|
+
isExternalConnectionEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15218
|
+
isLikesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15219
|
+
isLoomEntryPointsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15220
|
+
isMentionReminderSlackNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15221
|
+
isNofollowExternalLinksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15222
|
+
isPrivacyModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15223
|
+
isPushNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15224
|
+
isRecommendedEmailNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15225
|
+
isRecommendedSlackNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15226
|
+
isRecommendedTeamsNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15227
|
+
isSystemAdminEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15228
|
+
isXsrfAddCommentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15229
|
+
loginSettings?: Maybe<ConfluenceLoginSettings>;
|
|
15230
|
+
maxRssItems?: Maybe<Scalars['Int']['output']>;
|
|
15231
|
+
pageTimeout?: Maybe<Scalars['Int']['output']>;
|
|
15232
|
+
pdfExportSettings?: Maybe<ConfluencePdfExportSettings>;
|
|
15233
|
+
rssTimeout?: Maybe<Scalars['Int']['output']>;
|
|
15234
|
+
siteHomePage?: Maybe<Scalars['String']['output']>;
|
|
15235
|
+
siteTitle?: Maybe<Scalars['String']['output']>;
|
|
15236
|
+
socketTimeout?: Maybe<Scalars['Int']['output']>;
|
|
15237
|
+
teamPresenceSettings?: Maybe<ConfluenceTeamPresenceSettings>;
|
|
15238
|
+
};
|
|
15239
|
+
export declare enum ConfluenceSiteEmailAddressStatus {
|
|
15240
|
+
Active = "ACTIVE",
|
|
15241
|
+
Inactive = "INACTIVE",
|
|
15242
|
+
SiteEmailAddressNotPresent = "SITE_EMAIL_ADDRESS_NOT_PRESENT"
|
|
15243
|
+
}
|
|
14669
15244
|
export declare type ConfluenceSpace = Node & {
|
|
14670
15245
|
__typename?: 'ConfluenceSpace';
|
|
14671
15246
|
alias?: Maybe<Scalars['String']['output']>;
|
|
@@ -14841,15 +15416,71 @@ export declare enum ConfluenceSubscriptionContentType {
|
|
|
14841
15416
|
Page = "PAGE",
|
|
14842
15417
|
Whiteboard = "WHITEBOARD"
|
|
14843
15418
|
}
|
|
15419
|
+
export declare type ConfluenceSystemTemplate = {
|
|
15420
|
+
__typename?: 'ConfluenceSystemTemplate';
|
|
15421
|
+
id: Scalars['ID']['output'];
|
|
15422
|
+
moduleCompleteKey?: Maybe<Scalars['String']['output']>;
|
|
15423
|
+
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
15424
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15425
|
+
pluginKey?: Maybe<Scalars['String']['output']>;
|
|
15426
|
+
};
|
|
15427
|
+
export declare type ConfluenceTeamCalendar = {
|
|
15428
|
+
__typename?: 'ConfluenceTeamCalendar';
|
|
15429
|
+
globalSettings?: Maybe<ConfluenceTeamCalendarGlobalSettings>;
|
|
15430
|
+
};
|
|
15431
|
+
export declare type ConfluenceTeamCalendarDaysOfWeekOptions = {
|
|
15432
|
+
__typename?: 'ConfluenceTeamCalendarDaysOfWeekOptions';
|
|
15433
|
+
key?: Maybe<ConfluenceTeamCalendarWeekValues>;
|
|
15434
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
15435
|
+
};
|
|
15436
|
+
export declare type ConfluenceTeamCalendarGlobalSettings = {
|
|
15437
|
+
__typename?: 'ConfluenceTeamCalendarGlobalSettings';
|
|
15438
|
+
allowSiteAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
15439
|
+
daysOfWeekOptions?: Maybe<Array<Maybe<ConfluenceTeamCalendarDaysOfWeekOptions>>>;
|
|
15440
|
+
disablePrivateUrls?: Maybe<Scalars['Boolean']['output']>;
|
|
15441
|
+
displayWeekNumbers?: Maybe<Scalars['Boolean']['output']>;
|
|
15442
|
+
startDayOfWeek?: Maybe<ConfluenceTeamCalendarWeekValues>;
|
|
15443
|
+
timeFormat?: Maybe<ConfluenceTeamCalendarTimeFormatTypes>;
|
|
15444
|
+
};
|
|
15445
|
+
export declare enum ConfluenceTeamCalendarTimeFormatTypes {
|
|
15446
|
+
DisplayTimeFormat_12 = "DISPLAY_TIME_FORMAT_12",
|
|
15447
|
+
DisplayTimeFormat_24 = "DISPLAY_TIME_FORMAT_24"
|
|
15448
|
+
}
|
|
15449
|
+
export declare enum ConfluenceTeamCalendarWeekValues {
|
|
15450
|
+
Default = "DEFAULT",
|
|
15451
|
+
Five = "FIVE",
|
|
15452
|
+
Four = "FOUR",
|
|
15453
|
+
One = "ONE",
|
|
15454
|
+
Seven = "SEVEN",
|
|
15455
|
+
Six = "SIX",
|
|
15456
|
+
Three = "THREE",
|
|
15457
|
+
Two = "TWO"
|
|
15458
|
+
}
|
|
14844
15459
|
export declare type ConfluenceTeamPresence = {
|
|
14845
15460
|
__typename?: 'ConfluenceTeamPresence';
|
|
14846
15461
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
14847
15462
|
};
|
|
15463
|
+
export declare type ConfluenceTeamPresenceSettings = {
|
|
15464
|
+
__typename?: 'ConfluenceTeamPresenceSettings';
|
|
15465
|
+
isEnabledOnContentView?: Maybe<Scalars['Boolean']['output']>;
|
|
15466
|
+
};
|
|
14848
15467
|
export declare type ConfluenceTeamPresenceSpaceSettings = {
|
|
14849
15468
|
__typename?: 'ConfluenceTeamPresenceSpaceSettings';
|
|
14850
15469
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
14851
15470
|
isEnabledOnContentViewForSite: Scalars['Boolean']['output'];
|
|
14852
15471
|
};
|
|
15472
|
+
export declare type ConfluenceTemplates = {
|
|
15473
|
+
__typename?: 'ConfluenceTemplates';
|
|
15474
|
+
globalPageTemplates?: Maybe<Array<Maybe<ConfluenceGlobalPageTemplate>>>;
|
|
15475
|
+
spacePageTemplates?: Maybe<Array<Maybe<ConfluenceGlobalPageTemplate>>>;
|
|
15476
|
+
spaceTemplates?: Maybe<Array<Maybe<ConfluenceGlobalPageTemplate>>>;
|
|
15477
|
+
};
|
|
15478
|
+
export declare type ConfluenceTemplatesSpacePageTemplatesArgs = {
|
|
15479
|
+
spaceId: Scalars['Long']['input'];
|
|
15480
|
+
};
|
|
15481
|
+
export declare type ConfluenceTemplatesSpaceTemplatesArgs = {
|
|
15482
|
+
spaceId: Scalars['Long']['input'];
|
|
15483
|
+
};
|
|
14853
15484
|
export declare type ConfluenceTenantContext = {
|
|
14854
15485
|
__typename?: 'ConfluenceTenantContext';
|
|
14855
15486
|
baseUrl: Scalars['String']['output'];
|
|
@@ -14860,6 +15491,29 @@ export declare type ConfluenceTenantContext = {
|
|
|
14860
15491
|
licensedProducts: Array<LicensedProduct>;
|
|
14861
15492
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
14862
15493
|
};
|
|
15494
|
+
export declare type ConfluenceTheme = {
|
|
15495
|
+
__typename?: 'ConfluenceTheme';
|
|
15496
|
+
completeKey?: Maybe<Scalars['String']['output']>;
|
|
15497
|
+
configPath?: Maybe<Scalars['String']['output']>;
|
|
15498
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
15499
|
+
i18nDescriptionKey?: Maybe<Scalars['String']['output']>;
|
|
15500
|
+
i18nNameKey?: Maybe<Scalars['String']['output']>;
|
|
15501
|
+
iconLocation?: Maybe<Scalars['String']['output']>;
|
|
15502
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15503
|
+
};
|
|
15504
|
+
export declare type ConfluenceThemes = {
|
|
15505
|
+
__typename?: 'ConfluenceThemes';
|
|
15506
|
+
currentGlobalTheme?: Maybe<ConfluenceTheme>;
|
|
15507
|
+
currentSpaceTheme?: Maybe<ConfluenceTheme>;
|
|
15508
|
+
globalThemes?: Maybe<Array<Maybe<ConfluenceTheme>>>;
|
|
15509
|
+
spaceThemes?: Maybe<Array<Maybe<ConfluenceTheme>>>;
|
|
15510
|
+
};
|
|
15511
|
+
export declare type ConfluenceThemesCurrentSpaceThemeArgs = {
|
|
15512
|
+
spaceId: Scalars['Long']['input'];
|
|
15513
|
+
};
|
|
15514
|
+
export declare type ConfluenceThemesSpaceThemesArgs = {
|
|
15515
|
+
spaceId: Scalars['Long']['input'];
|
|
15516
|
+
};
|
|
14863
15517
|
export declare type ConfluenceTopic = {
|
|
14864
15518
|
__typename?: 'ConfluenceTopic';
|
|
14865
15519
|
creator?: Maybe<Scalars['ID']['output']>;
|
|
@@ -14906,6 +15560,30 @@ export declare type ConfluenceUnmarkCommentAsDanglingPayload = Payload & {
|
|
|
14906
15560
|
errors: Array<MutationError>;
|
|
14907
15561
|
success: Scalars['Boolean']['output'];
|
|
14908
15562
|
};
|
|
15563
|
+
export declare type ConfluenceUnpromoteBlueprintInput = {
|
|
15564
|
+
id: Scalars['ID']['input'];
|
|
15565
|
+
spaceId: Scalars['Long']['input'];
|
|
15566
|
+
};
|
|
15567
|
+
export declare type ConfluenceUnpromoteBlueprintPayload = Payload & {
|
|
15568
|
+
__typename?: 'ConfluenceUnpromoteBlueprintPayload';
|
|
15569
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15570
|
+
success: Scalars['Boolean']['output'];
|
|
15571
|
+
};
|
|
15572
|
+
export declare type ConfluenceUnpromotePageTemplateInput = {
|
|
15573
|
+
id: Scalars['ID']['input'];
|
|
15574
|
+
spaceId: Scalars['Long']['input'];
|
|
15575
|
+
};
|
|
15576
|
+
export declare type ConfluenceUnpromotePageTemplatePayload = Payload & {
|
|
15577
|
+
__typename?: 'ConfluenceUnpromotePageTemplatePayload';
|
|
15578
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15579
|
+
success: Scalars['Boolean']['output'];
|
|
15580
|
+
};
|
|
15581
|
+
export declare type ConfluenceUnusedPluginMacro = {
|
|
15582
|
+
__typename?: 'ConfluenceUnusedPluginMacro';
|
|
15583
|
+
macroNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
15584
|
+
pluginKey?: Maybe<Scalars['String']['output']>;
|
|
15585
|
+
pluginName?: Maybe<Scalars['String']['output']>;
|
|
15586
|
+
};
|
|
14909
15587
|
export declare type ConfluenceUnwatchSubCalendarInput = {
|
|
14910
15588
|
subCalendarId: Scalars['ID']['input'];
|
|
14911
15589
|
};
|
|
@@ -14986,6 +15664,19 @@ export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
|
14986
15664
|
page?: Maybe<ConfluencePage>;
|
|
14987
15665
|
success: Scalars['Boolean']['output'];
|
|
14988
15666
|
};
|
|
15667
|
+
export declare type ConfluenceUpdateCustomApplicationLinkInput = {
|
|
15668
|
+
allowedGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
15669
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
15670
|
+
id: Scalars['ID']['input'];
|
|
15671
|
+
isHidden: Scalars['Boolean']['input'];
|
|
15672
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
15673
|
+
};
|
|
15674
|
+
export declare type ConfluenceUpdateCustomApplicationLinkPayload = Payload & {
|
|
15675
|
+
__typename?: 'ConfluenceUpdateCustomApplicationLinkPayload';
|
|
15676
|
+
applicationLink?: Maybe<ConfluenceCustomApplicationLink>;
|
|
15677
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15678
|
+
success: Scalars['Boolean']['output'];
|
|
15679
|
+
};
|
|
14989
15680
|
export declare type ConfluenceUpdateCustomRoleInput = {
|
|
14990
15681
|
anonymousReassignmentRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
14991
15682
|
description: Scalars['String']['input'];
|
|
@@ -15033,6 +15724,32 @@ export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
|
15033
15724
|
page?: Maybe<ConfluencePage>;
|
|
15034
15725
|
success: Scalars['Boolean']['output'];
|
|
15035
15726
|
};
|
|
15727
|
+
export declare type ConfluenceUpdateGlobalDefaultLocaleConfigurationInput = {
|
|
15728
|
+
globalDefaultLocale: Scalars['String']['input'];
|
|
15729
|
+
};
|
|
15730
|
+
export declare type ConfluenceUpdateGlobalDefaultLocaleConfigurationPayload = Payload & {
|
|
15731
|
+
__typename?: 'ConfluenceUpdateGlobalDefaultLocaleConfigurationPayload';
|
|
15732
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15733
|
+
success: Scalars['Boolean']['output'];
|
|
15734
|
+
};
|
|
15735
|
+
export declare type ConfluenceUpdateGlobalPageTemplateDescriptionInput = {
|
|
15736
|
+
description: Scalars['String']['input'];
|
|
15737
|
+
id: Scalars['ID']['input'];
|
|
15738
|
+
};
|
|
15739
|
+
export declare type ConfluenceUpdateGlobalPageTemplateDescriptionPayload = Payload & {
|
|
15740
|
+
__typename?: 'ConfluenceUpdateGlobalPageTemplateDescriptionPayload';
|
|
15741
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15742
|
+
globalPageTemplate?: Maybe<ConfluenceGlobalPageTemplate>;
|
|
15743
|
+
success: Scalars['Boolean']['output'];
|
|
15744
|
+
};
|
|
15745
|
+
export declare type ConfluenceUpdateIndexingLanguageConfigurationInput = {
|
|
15746
|
+
indexingLanguage: Scalars['String']['input'];
|
|
15747
|
+
};
|
|
15748
|
+
export declare type ConfluenceUpdateIndexingLanguageConfigurationPayload = Payload & {
|
|
15749
|
+
__typename?: 'ConfluenceUpdateIndexingLanguageConfigurationPayload';
|
|
15750
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15751
|
+
success: Scalars['Boolean']['output'];
|
|
15752
|
+
};
|
|
15036
15753
|
export declare type ConfluenceUpdateNav4OptInInput = {
|
|
15037
15754
|
enableNav4: Scalars['Boolean']['input'];
|
|
15038
15755
|
};
|
|
@@ -15041,10 +15758,44 @@ export declare type ConfluenceUpdateNav4OptInPayload = Payload & {
|
|
|
15041
15758
|
errors?: Maybe<Array<MutationError>>;
|
|
15042
15759
|
success: Scalars['Boolean']['output'];
|
|
15043
15760
|
};
|
|
15761
|
+
export declare type ConfluenceUpdateSiteConfigurationInput = {
|
|
15762
|
+
connectionTimeout: Scalars['Int']['input'];
|
|
15763
|
+
customContactMessage: Scalars['String']['input'];
|
|
15764
|
+
dateFormat: Scalars['String']['input'];
|
|
15765
|
+
dateTimeFormat: Scalars['String']['input'];
|
|
15766
|
+
decimalNumberFormat: Scalars['String']['input'];
|
|
15767
|
+
globalDefaultLocale: Scalars['String']['input'];
|
|
15768
|
+
indexingLanguage: Scalars['String']['input'];
|
|
15769
|
+
isContactAdministratorsFormEnabled: Scalars['Boolean']['input'];
|
|
15770
|
+
isEditorConversionForSiteEnabled: Scalars['Boolean']['input'];
|
|
15771
|
+
isEditorFullWidthEnabled: Scalars['Boolean']['input'];
|
|
15772
|
+
isEmailNotificationEnabled: Scalars['Boolean']['input'];
|
|
15773
|
+
isExternalConnectionsEnabled: Scalars['Boolean']['input'];
|
|
15774
|
+
isLikesEnabled: Scalars['Boolean']['input'];
|
|
15775
|
+
isNav4OptedIn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15776
|
+
isPushNotificationEnabled: Scalars['Boolean']['input'];
|
|
15777
|
+
longNumberFormat: Scalars['String']['input'];
|
|
15778
|
+
maxAttachmentSize: Scalars['Long']['input'];
|
|
15779
|
+
maxNumberOfAttachmentsPerUpload: Scalars['Int']['input'];
|
|
15780
|
+
siteHomePage: Scalars['String']['input'];
|
|
15781
|
+
siteTitle: Scalars['String']['input'];
|
|
15782
|
+
socketTimeout: Scalars['Int']['input'];
|
|
15783
|
+
timeFormat: Scalars['String']['input'];
|
|
15784
|
+
};
|
|
15785
|
+
export declare type ConfluenceUpdateSiteConfigurationPayload = Payload & {
|
|
15786
|
+
__typename?: 'ConfluenceUpdateSiteConfigurationPayload';
|
|
15787
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15788
|
+
success: Scalars['Boolean']['output'];
|
|
15789
|
+
};
|
|
15044
15790
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
15045
15791
|
id: Scalars['ID']['input'];
|
|
15046
15792
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15047
15793
|
};
|
|
15794
|
+
export declare type ConfluenceUpdateSpacePageTemplateDescriptionInput = {
|
|
15795
|
+
description: Scalars['String']['input'];
|
|
15796
|
+
id: Scalars['ID']['input'];
|
|
15797
|
+
spaceId: Scalars['Long']['input'];
|
|
15798
|
+
};
|
|
15048
15799
|
export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
15049
15800
|
__typename?: 'ConfluenceUpdateSpacePayload';
|
|
15050
15801
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -15115,6 +15866,12 @@ export declare type ConfluenceUpdateValuePagePropertyPayload = Payload & {
|
|
|
15115
15866
|
pageProperty?: Maybe<ConfluencePageProperty>;
|
|
15116
15867
|
success: Scalars['Boolean']['output'];
|
|
15117
15868
|
};
|
|
15869
|
+
export declare type ConfluenceUsedPluginMacro = {
|
|
15870
|
+
__typename?: 'ConfluenceUsedPluginMacro';
|
|
15871
|
+
macros?: Maybe<Array<ConfluenceMacro>>;
|
|
15872
|
+
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
15873
|
+
pluginName?: Maybe<Scalars['String']['output']>;
|
|
15874
|
+
};
|
|
15118
15875
|
export declare type ConfluenceUser = {
|
|
15119
15876
|
__typename?: 'ConfluenceUser';
|
|
15120
15877
|
accessStatus: AccessStatus;
|
|
@@ -15396,7 +16153,7 @@ export declare enum ContainerType {
|
|
|
15396
16153
|
}
|
|
15397
16154
|
export declare type Content = {
|
|
15398
16155
|
__typename?: 'Content';
|
|
15399
|
-
aiProperty?: Maybe<
|
|
16156
|
+
aiProperty?: Maybe<ConfluenceContentAiSummaryResponse>;
|
|
15400
16157
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
15401
16158
|
archivableDescendantsCount: Scalars['Long']['output'];
|
|
15402
16159
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
@@ -15470,9 +16227,7 @@ export declare type Content = {
|
|
|
15470
16227
|
visibleDescendantsCount: Scalars['Long']['output'];
|
|
15471
16228
|
};
|
|
15472
16229
|
export declare type ContentAiPropertyArgs = {
|
|
15473
|
-
|
|
15474
|
-
contentType: KnowledgeGraphContentType;
|
|
15475
|
-
objectType: KnowledgeGraphObjectType;
|
|
16230
|
+
objectType?: KnowledgeGraphObjectType;
|
|
15476
16231
|
};
|
|
15477
16232
|
export declare type ContentAttachmentsArgs = {
|
|
15478
16233
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -17489,13 +18244,6 @@ export declare type ConvoAiJiraSimilarWorkItemsInput = {
|
|
|
17489
18244
|
export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
17490
18245
|
minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
|
|
17491
18246
|
};
|
|
17492
|
-
export declare type ConvoAiPromptSuggestionResult = {
|
|
17493
|
-
__typename?: 'ConvoAiPromptSuggestionResult';
|
|
17494
|
-
suggestions?: Maybe<Array<Scalars['String']['output']>>;
|
|
17495
|
-
};
|
|
17496
|
-
export declare type ConvoAiPromptSuggestionsInput = {
|
|
17497
|
-
userPrompt?: InputMaybe<Scalars['String']['input']>;
|
|
17498
|
-
};
|
|
17499
18247
|
export declare type ConvoAiThirdPartyRelatedLink = {
|
|
17500
18248
|
__typename?: 'ConvoAiThirdPartyRelatedLink';
|
|
17501
18249
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -17573,6 +18321,16 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
17573
18321
|
page: Scalars['String']['output'];
|
|
17574
18322
|
user: Scalars['Int']['output'];
|
|
17575
18323
|
};
|
|
18324
|
+
export declare type CplsAddContributorScopeAssociationInput = {
|
|
18325
|
+
cloudId: Scalars['ID']['input'];
|
|
18326
|
+
contributorIds: Array<Scalars['ID']['input']>;
|
|
18327
|
+
scopeId: Scalars['ID']['input'];
|
|
18328
|
+
};
|
|
18329
|
+
export declare type CplsAddContributorScopeAssociationPayload = {
|
|
18330
|
+
__typename?: 'CplsAddContributorScopeAssociationPayload';
|
|
18331
|
+
contributors: Array<CplsContributorEdge>;
|
|
18332
|
+
errors: Array<MutationError>;
|
|
18333
|
+
};
|
|
17576
18334
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
17577
18335
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
17578
18336
|
contributors: CplsContributorConnection;
|
|
@@ -17645,6 +18403,16 @@ export declare type CplsCustomContributionTarget = {
|
|
|
17645
18403
|
id: Scalars['ID']['output'];
|
|
17646
18404
|
name: Scalars['String']['output'];
|
|
17647
18405
|
};
|
|
18406
|
+
export declare type CplsDeleteContributorScopeAssociationInput = {
|
|
18407
|
+
cloudId: Scalars['ID']['input'];
|
|
18408
|
+
contributorIds: Array<Scalars['ID']['input']>;
|
|
18409
|
+
scopeId: Scalars['ID']['input'];
|
|
18410
|
+
};
|
|
18411
|
+
export declare type CplsDeleteContributorScopeAssociationPayload = {
|
|
18412
|
+
__typename?: 'CplsDeleteContributorScopeAssociationPayload';
|
|
18413
|
+
errors: Array<MutationError>;
|
|
18414
|
+
ids: Array<Scalars['ID']['output']>;
|
|
18415
|
+
};
|
|
17648
18416
|
export declare type CplsTimeCell = {
|
|
17649
18417
|
__typename?: 'CplsTimeCell';
|
|
17650
18418
|
endDate: Scalars['Date']['output'];
|
|
@@ -21172,9 +21940,17 @@ export declare type DevAiRovoDevBulkCreateSessionByCloudIdInput = {
|
|
|
21172
21940
|
export declare type DevAiRovoDevBulkCreateSessionPayload = Payload & {
|
|
21173
21941
|
__typename?: 'DevAiRovoDevBulkCreateSessionPayload';
|
|
21174
21942
|
errors?: Maybe<Array<MutationError>>;
|
|
21943
|
+
failedSessions?: Maybe<Array<DevAiRovoDevBulkSessionResult>>;
|
|
21175
21944
|
sessions?: Maybe<Array<Maybe<DevAiRovoDevSession>>>;
|
|
21945
|
+
succeededSessions?: Maybe<Array<DevAiRovoDevBulkSessionResult>>;
|
|
21176
21946
|
success: Scalars['Boolean']['output'];
|
|
21177
21947
|
};
|
|
21948
|
+
export declare type DevAiRovoDevBulkSessionResult = {
|
|
21949
|
+
__typename?: 'DevAiRovoDevBulkSessionResult';
|
|
21950
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21951
|
+
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
21952
|
+
session?: Maybe<DevAiRovoDevSession>;
|
|
21953
|
+
};
|
|
21178
21954
|
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
21179
21955
|
cloudId: Scalars['ID']['input'];
|
|
21180
21956
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
@@ -21278,10 +22054,11 @@ export declare enum DevAiRovoDevSessionSort {
|
|
|
21278
22054
|
Desc = "DESC"
|
|
21279
22055
|
}
|
|
21280
22056
|
export declare enum DevAiRovoDevSessionStatus {
|
|
22057
|
+
AgentWorking = "AGENT_WORKING",
|
|
21281
22058
|
Archived = "ARCHIVED",
|
|
22059
|
+
Cloning = "CLONING",
|
|
21282
22060
|
Failed = "FAILED",
|
|
21283
22061
|
Initialising = "INITIALISING",
|
|
21284
|
-
InProgress = "IN_PROGRESS",
|
|
21285
22062
|
Pending = "PENDING",
|
|
21286
22063
|
ReadyForReview = "READY_FOR_REVIEW",
|
|
21287
22064
|
WaitingForUser = "WAITING_FOR_USER"
|
|
@@ -22994,10 +23771,6 @@ export declare type EarliestOnboardedProjectForCloudId = {
|
|
|
22994
23771
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
22995
23772
|
template?: Maybe<Scalars['String']['output']>;
|
|
22996
23773
|
};
|
|
22997
|
-
export declare type EarliestViewViewedForUser = {
|
|
22998
|
-
__typename?: 'EarliestViewViewedForUser';
|
|
22999
|
-
datetime?: Maybe<Scalars['String']['output']>;
|
|
23000
|
-
};
|
|
23001
23774
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
23002
23775
|
export declare type EcosystemAppInstallationConfigExtension = {
|
|
23003
23776
|
__typename?: 'EcosystemAppInstallationConfigExtension';
|
|
@@ -27496,6 +28269,110 @@ export declare type GraphIntegrationDirectoryItemEdge = {
|
|
|
27496
28269
|
export declare enum GraphIntegrationDirectoryItemType {
|
|
27497
28270
|
McpTool = "MCP_TOOL"
|
|
27498
28271
|
}
|
|
28272
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
|
|
28273
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerConnection';
|
|
28274
|
+
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpServerEdge>>;
|
|
28275
|
+
nodes?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpServerNode>>;
|
|
28276
|
+
pageInfo: PageInfo;
|
|
28277
|
+
};
|
|
28278
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerEdge = {
|
|
28279
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerEdge';
|
|
28280
|
+
cursor: Scalars['String']['output'];
|
|
28281
|
+
node?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
28282
|
+
};
|
|
28283
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
28284
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerNode';
|
|
28285
|
+
authConsentUrl?: Maybe<Scalars['URL']['output']>;
|
|
28286
|
+
baseUrl: Scalars['URL']['output'];
|
|
28287
|
+
displayName: Scalars['String']['output'];
|
|
28288
|
+
endpointPath?: Maybe<Scalars['String']['output']>;
|
|
28289
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
28290
|
+
id: Scalars['ID']['output'];
|
|
28291
|
+
serverType: GraphIntegrationMcpAdminManagementMcpServerType;
|
|
28292
|
+
status: GraphIntegrationMcpAdminManagementMcpServerStatus;
|
|
28293
|
+
};
|
|
28294
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpServerStatus {
|
|
28295
|
+
Deleting = "DELETING",
|
|
28296
|
+
Provisioning = "PROVISIONING",
|
|
28297
|
+
Registered = "REGISTERED",
|
|
28298
|
+
Suspended = "SUSPENDED"
|
|
28299
|
+
}
|
|
28300
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpServerType {
|
|
28301
|
+
Http = "HTTP",
|
|
28302
|
+
Sse = "SSE"
|
|
28303
|
+
}
|
|
28304
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolConfiguration = {
|
|
28305
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolConfiguration';
|
|
28306
|
+
status: GraphIntegrationMcpAdminManagementMcpToolStatus;
|
|
28307
|
+
};
|
|
28308
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolConfigurationInput = {
|
|
28309
|
+
status?: InputMaybe<GraphIntegrationMcpAdminManagementMcpToolStatus>;
|
|
28310
|
+
toolId: Scalars['ID']['input'];
|
|
28311
|
+
};
|
|
28312
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolConnection = {
|
|
28313
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolConnection';
|
|
28314
|
+
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolEdge>>;
|
|
28315
|
+
nodes?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolNode>>;
|
|
28316
|
+
pageInfo: PageInfo;
|
|
28317
|
+
};
|
|
28318
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolEdge = {
|
|
28319
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolEdge';
|
|
28320
|
+
cursor: Scalars['String']['output'];
|
|
28321
|
+
node?: Maybe<GraphIntegrationMcpAdminManagementMcpToolNode>;
|
|
28322
|
+
};
|
|
28323
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolNode = {
|
|
28324
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolNode';
|
|
28325
|
+
configuration?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConfiguration>;
|
|
28326
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
28327
|
+
displayName: Scalars['String']['output'];
|
|
28328
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
28329
|
+
id: Scalars['ID']['output'];
|
|
28330
|
+
mcpServer: GraphIntegrationMcpAdminManagementMcpServerNode;
|
|
28331
|
+
name: Scalars['String']['output'];
|
|
28332
|
+
};
|
|
28333
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpToolStatus {
|
|
28334
|
+
Allow = "ALLOW",
|
|
28335
|
+
Deny = "DENY",
|
|
28336
|
+
NewToolDeny = "NEW_TOOL_DENY"
|
|
28337
|
+
}
|
|
28338
|
+
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
28339
|
+
cloudId: Scalars['ID']['input'];
|
|
28340
|
+
displayName: Scalars['String']['input'];
|
|
28341
|
+
endpointPath?: InputMaybe<Scalars['String']['input']>;
|
|
28342
|
+
icon?: InputMaybe<Scalars['String']['input']>;
|
|
28343
|
+
serverType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerType>;
|
|
28344
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
28345
|
+
url: Scalars['URL']['input'];
|
|
28346
|
+
};
|
|
28347
|
+
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerPayload = Payload & {
|
|
28348
|
+
__typename?: 'GraphIntegrationMcpAdminManagementRegisterMcpServerPayload';
|
|
28349
|
+
authConsentUrl?: Maybe<Scalars['URL']['output']>;
|
|
28350
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28351
|
+
serverId?: Maybe<Scalars['ID']['output']>;
|
|
28352
|
+
success: Scalars['Boolean']['output'];
|
|
28353
|
+
};
|
|
28354
|
+
export declare type GraphIntegrationMcpAdminManagementUnregisterMcpServerInput = {
|
|
28355
|
+
cloudId: Scalars['ID']['input'];
|
|
28356
|
+
serverId: Scalars['ID']['input'];
|
|
28357
|
+
};
|
|
28358
|
+
export declare type GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload = Payload & {
|
|
28359
|
+
__typename?: 'GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload';
|
|
28360
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28361
|
+
serverId?: Maybe<Scalars['ID']['output']>;
|
|
28362
|
+
success: Scalars['Boolean']['output'];
|
|
28363
|
+
};
|
|
28364
|
+
export declare type GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput = {
|
|
28365
|
+
cloudId: Scalars['ID']['input'];
|
|
28366
|
+
serverId: Scalars['ID']['input'];
|
|
28367
|
+
toolConfigurations: Array<GraphIntegrationMcpAdminManagementMcpToolConfigurationInput>;
|
|
28368
|
+
};
|
|
28369
|
+
export declare type GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload = Payload & {
|
|
28370
|
+
__typename?: 'GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload';
|
|
28371
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28372
|
+
serverId?: Maybe<Scalars['ID']['output']>;
|
|
28373
|
+
success: Scalars['Boolean']['output'];
|
|
28374
|
+
updatedTools?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolNode>>;
|
|
28375
|
+
};
|
|
27499
28376
|
export declare type GraphIntegrationMcpServer = {
|
|
27500
28377
|
__typename?: 'GraphIntegrationMcpServer';
|
|
27501
28378
|
displayName: Scalars['String']['output'];
|
|
@@ -30802,6 +31679,10 @@ export declare type GraphStore = {
|
|
|
30802
31679
|
userFavoritedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluencePageInverseConnection>;
|
|
30803
31680
|
userFavoritedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardConnection>;
|
|
30804
31681
|
userFavoritedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseConnection>;
|
|
31682
|
+
userFavoritedFocusArea?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaConnection>;
|
|
31683
|
+
userFavoritedFocusAreaBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
31684
|
+
userFavoritedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaInverseConnection>;
|
|
31685
|
+
userFavoritedFocusAreaInverseBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
30805
31686
|
userHasExternalPosition?: Maybe<GraphStoreSimplifiedUserHasExternalPositionConnection>;
|
|
30806
31687
|
userHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseConnection>;
|
|
30807
31688
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
@@ -35123,6 +36004,32 @@ export declare type GraphStoreUserFavoritedConfluenceWhiteboardInverseArgs = {
|
|
|
35123
36004
|
id: Scalars['ID']['input'];
|
|
35124
36005
|
sort?: InputMaybe<GraphStoreUserFavoritedConfluenceWhiteboardSortInput>;
|
|
35125
36006
|
};
|
|
36007
|
+
export declare type GraphStoreUserFavoritedFocusAreaArgs = {
|
|
36008
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36009
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36010
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36011
|
+
id: Scalars['ID']['input'];
|
|
36012
|
+
sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
|
|
36013
|
+
};
|
|
36014
|
+
export declare type GraphStoreUserFavoritedFocusAreaBatchArgs = {
|
|
36015
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36016
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36017
|
+
ids: Array<Scalars['ID']['input']>;
|
|
36018
|
+
sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
|
|
36019
|
+
};
|
|
36020
|
+
export declare type GraphStoreUserFavoritedFocusAreaInverseArgs = {
|
|
36021
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36022
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
36023
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36024
|
+
id: Scalars['ID']['input'];
|
|
36025
|
+
sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
|
|
36026
|
+
};
|
|
36027
|
+
export declare type GraphStoreUserFavoritedFocusAreaInverseBatchArgs = {
|
|
36028
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
36029
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
36030
|
+
ids: Array<Scalars['ID']['input']>;
|
|
36031
|
+
sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
|
|
36032
|
+
};
|
|
35126
36033
|
export declare type GraphStoreUserHasExternalPositionArgs = {
|
|
35127
36034
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35128
36035
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37159,6 +38066,47 @@ export declare type GraphStoreBatchTestPerfhammerRelationshipStartNode = {
|
|
|
37159
38066
|
id: Scalars['ID']['output'];
|
|
37160
38067
|
};
|
|
37161
38068
|
export declare type GraphStoreBatchTestPerfhammerRelationshipStartUnion = JiraIssue;
|
|
38069
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaConnection = HasPageInfo & {
|
|
38070
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaConnection';
|
|
38071
|
+
edges: Array<Maybe<GraphStoreBatchUserFavoritedFocusAreaEdge>>;
|
|
38072
|
+
nodes: Array<Maybe<GraphStoreBatchUserFavoritedFocusAreaNode>>;
|
|
38073
|
+
pageInfo: PageInfo;
|
|
38074
|
+
};
|
|
38075
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaEdge = {
|
|
38076
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaEdge';
|
|
38077
|
+
node: GraphStoreBatchUserFavoritedFocusAreaInnerConnection;
|
|
38078
|
+
};
|
|
38079
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaEndNode = {
|
|
38080
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaEndNode';
|
|
38081
|
+
data?: Maybe<GraphStoreBatchUserFavoritedFocusAreaEndUnion>;
|
|
38082
|
+
id: Scalars['ID']['output'];
|
|
38083
|
+
};
|
|
38084
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaEndUnion = MercuryFocusArea;
|
|
38085
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaInnerConnection = {
|
|
38086
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaInnerConnection';
|
|
38087
|
+
edges: Array<Maybe<GraphStoreBatchUserFavoritedFocusAreaInnerEdge>>;
|
|
38088
|
+
nodes: Array<Maybe<GraphStoreBatchUserFavoritedFocusAreaNode>>;
|
|
38089
|
+
requestedId: Scalars['ID']['output'];
|
|
38090
|
+
};
|
|
38091
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaInnerEdge = {
|
|
38092
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaInnerEdge';
|
|
38093
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
38094
|
+
node: GraphStoreBatchUserFavoritedFocusAreaNode;
|
|
38095
|
+
};
|
|
38096
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaNode = Node & {
|
|
38097
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaNode';
|
|
38098
|
+
createdAt: Scalars['DateTime']['output'];
|
|
38099
|
+
from: GraphStoreBatchUserFavoritedFocusAreaStartNode;
|
|
38100
|
+
id: Scalars['ID']['output'];
|
|
38101
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
38102
|
+
to: GraphStoreBatchUserFavoritedFocusAreaEndNode;
|
|
38103
|
+
};
|
|
38104
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaStartNode = {
|
|
38105
|
+
__typename?: 'GraphStoreBatchUserFavoritedFocusAreaStartNode';
|
|
38106
|
+
data?: Maybe<GraphStoreBatchUserFavoritedFocusAreaStartUnion>;
|
|
38107
|
+
id: Scalars['ID']['output'];
|
|
38108
|
+
};
|
|
38109
|
+
export declare type GraphStoreBatchUserFavoritedFocusAreaStartUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
37162
38110
|
export declare type GraphStoreBatchUserUpdatedIssueConnection = HasPageInfo & {
|
|
37163
38111
|
__typename?: 'GraphStoreBatchUserUpdatedIssueConnection';
|
|
37164
38112
|
edges: Array<Maybe<GraphStoreBatchUserUpdatedIssueEdge>>;
|
|
@@ -49542,6 +50490,34 @@ export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverse
|
|
|
49542
50490
|
};
|
|
49543
50491
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
49544
50492
|
export declare type GraphStoreSimplifiedUserFavoritedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
50493
|
+
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaConnection = HasPageInfo & {
|
|
50494
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedFocusAreaConnection';
|
|
50495
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaEdge>>>;
|
|
50496
|
+
pageInfo: PageInfo;
|
|
50497
|
+
};
|
|
50498
|
+
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaEdge = {
|
|
50499
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedFocusAreaEdge';
|
|
50500
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50501
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50502
|
+
id: Scalars['ID']['output'];
|
|
50503
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50504
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaUnion>;
|
|
50505
|
+
};
|
|
50506
|
+
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseConnection = HasPageInfo & {
|
|
50507
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedFocusAreaInverseConnection';
|
|
50508
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaInverseEdge>>>;
|
|
50509
|
+
pageInfo: PageInfo;
|
|
50510
|
+
};
|
|
50511
|
+
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseEdge = {
|
|
50512
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedFocusAreaInverseEdge';
|
|
50513
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50514
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
50515
|
+
id: Scalars['ID']['output'];
|
|
50516
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
50517
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaInverseUnion>;
|
|
50518
|
+
};
|
|
50519
|
+
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
50520
|
+
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaUnion = MercuryFocusArea;
|
|
49545
50521
|
export declare type GraphStoreSimplifiedUserHasExternalPositionConnection = HasPageInfo & HasTotal & {
|
|
49546
50522
|
__typename?: 'GraphStoreSimplifiedUserHasExternalPositionConnection';
|
|
49547
50523
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasExternalPositionEdge>>>;
|
|
@@ -51942,6 +52918,9 @@ export declare type GraphStoreUserFavoritedConfluencePageSortInput = {
|
|
|
51942
52918
|
export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
51943
52919
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
51944
52920
|
};
|
|
52921
|
+
export declare type GraphStoreUserFavoritedFocusAreaSortInput = {
|
|
52922
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
52923
|
+
};
|
|
51945
52924
|
export declare type GraphStoreUserHasExternalPositionSortInput = {
|
|
51946
52925
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
51947
52926
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -52465,6 +53444,18 @@ export declare type GrowthUnifiedProfileConfluenceUserActivityContext = {
|
|
|
52465
53444
|
__typename?: 'GrowthUnifiedProfileConfluenceUserActivityContext';
|
|
52466
53445
|
r28PageDwells?: Maybe<Scalars['Int']['output']>;
|
|
52467
53446
|
};
|
|
53447
|
+
export declare type GrowthUnifiedProfileCreateEntitlementProfileInput = {
|
|
53448
|
+
entitlementId: Scalars['ID']['input'];
|
|
53449
|
+
firstProductOnSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53450
|
+
trial?: InputMaybe<GrowthUnifiedProfileEntitlementContextTrialInput>;
|
|
53451
|
+
};
|
|
53452
|
+
export declare type GrowthUnifiedProfileCreateEntitlementProfileResponse = {
|
|
53453
|
+
__typename?: 'GrowthUnifiedProfileCreateEntitlementProfileResponse';
|
|
53454
|
+
entitlementId: Scalars['ID']['output'];
|
|
53455
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
53456
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
53457
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
53458
|
+
};
|
|
52468
53459
|
export declare type GrowthUnifiedProfileCreateOrgProfileInput = {
|
|
52469
53460
|
orgId: Scalars['ID']['input'];
|
|
52470
53461
|
twcOnboardingContext?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileTwcOnboardingContextInput>>>;
|
|
@@ -52492,6 +53483,23 @@ export declare enum GrowthUnifiedProfileEnterpriseAccountStatus {
|
|
|
52492
53483
|
Platimun = "PLATIMUN",
|
|
52493
53484
|
Silver = "SILVER"
|
|
52494
53485
|
}
|
|
53486
|
+
export declare type GrowthUnifiedProfileEntitlementContextTrialInput = {
|
|
53487
|
+
trialEndTimeStamp?: InputMaybe<Scalars['Float']['input']>;
|
|
53488
|
+
trialTrigger?: InputMaybe<GrowthUnifiedProfileTrialTrigger>;
|
|
53489
|
+
trialType?: InputMaybe<GrowthUnifiedProfileTrialType>;
|
|
53490
|
+
};
|
|
53491
|
+
export declare type GrowthUnifiedProfileEntitlementContextTrialResult = {
|
|
53492
|
+
__typename?: 'GrowthUnifiedProfileEntitlementContextTrialResult';
|
|
53493
|
+
trialEndTimeStamp?: Maybe<Scalars['Float']['output']>;
|
|
53494
|
+
trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
|
|
53495
|
+
trialType?: Maybe<GrowthUnifiedProfileTrialType>;
|
|
53496
|
+
};
|
|
53497
|
+
export declare type GrowthUnifiedProfileEntitlementProfileResult = {
|
|
53498
|
+
__typename?: 'GrowthUnifiedProfileEntitlementProfileResult';
|
|
53499
|
+
entitlementId: Scalars['ID']['output'];
|
|
53500
|
+
firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
|
|
53501
|
+
lastKnownTrial?: Maybe<GrowthUnifiedProfileEntitlementContextTrialResult>;
|
|
53502
|
+
};
|
|
52495
53503
|
export declare enum GrowthUnifiedProfileEntityType {
|
|
52496
53504
|
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
52497
53505
|
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
@@ -52791,6 +53799,7 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
52791
53799
|
}
|
|
52792
53800
|
export declare type GrowthUnifiedProfileTrialContext = {
|
|
52793
53801
|
__typename?: 'GrowthUnifiedProfileTrialContext';
|
|
53802
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
52794
53803
|
paymentDetailsOnFile?: Maybe<Scalars['Boolean']['output']>;
|
|
52795
53804
|
trialEndTimeStamp?: Maybe<Scalars['String']['output']>;
|
|
52796
53805
|
trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
|
|
@@ -52881,6 +53890,7 @@ export declare enum GrowthUnifiedProfileUserIdType {
|
|
|
52881
53890
|
export declare type GrowthUnifiedProfileUserProfile = {
|
|
52882
53891
|
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
52883
53892
|
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
53893
|
+
jobFunction?: Maybe<Scalars['String']['output']>;
|
|
52884
53894
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
52885
53895
|
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
52886
53896
|
};
|
|
@@ -52944,6 +53954,7 @@ export declare type HamsEntitlement = CommerceEntitlement & {
|
|
|
52944
53954
|
entitlementGroupId?: Maybe<Scalars['String']['output']>;
|
|
52945
53955
|
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
52946
53956
|
entitlementMigrationEvaluation?: Maybe<HamsEntitlementMigrationEvaluation>;
|
|
53957
|
+
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
52947
53958
|
entitlementSource?: Maybe<Scalars['String']['output']>;
|
|
52948
53959
|
experienceCapabilities?: Maybe<HamsEntitlementExperienceCapabilities>;
|
|
52949
53960
|
futureEdition?: Maybe<Scalars['String']['output']>;
|
|
@@ -57639,19 +58650,6 @@ export declare type JiraCalendarVersionsInput = {
|
|
|
57639
58650
|
includeSharedReleases?: InputMaybe<Scalars['Boolean']['input']>;
|
|
57640
58651
|
versionStatuses?: InputMaybe<Array<JiraVersionStatus>>;
|
|
57641
58652
|
};
|
|
57642
|
-
export declare type JiraCalendarView = {
|
|
57643
|
-
__typename?: 'JiraCalendarView';
|
|
57644
|
-
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
57645
|
-
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
57646
|
-
id: Scalars['ID']['output'];
|
|
57647
|
-
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
57648
|
-
};
|
|
57649
|
-
export declare type JiraCalendarViewFilterConfigArgs = {
|
|
57650
|
-
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
57651
|
-
};
|
|
57652
|
-
export declare type JiraCalendarViewIsViewConfigModifiedArgs = {
|
|
57653
|
-
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
57654
|
-
};
|
|
57655
58653
|
export declare type JiraCalendarViewConfigurationInput = {
|
|
57656
58654
|
date?: InputMaybe<Scalars['DateTime']['input']>;
|
|
57657
58655
|
endDateField?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -60762,6 +61760,10 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
60762
61760
|
type: Scalars['String']['output'];
|
|
60763
61761
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
60764
61762
|
};
|
|
61763
|
+
export declare enum JiraFlagOperations {
|
|
61764
|
+
Add = "ADD",
|
|
61765
|
+
Remove = "REMOVE"
|
|
61766
|
+
}
|
|
60765
61767
|
export declare type JiraForgeAppEgressDeclaration = {
|
|
60766
61768
|
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
60767
61769
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -62491,6 +63493,7 @@ export declare type JiraIssueFieldsInput = {
|
|
|
62491
63493
|
priority?: InputMaybe<JiraPriorityInput>;
|
|
62492
63494
|
projectFields?: InputMaybe<Array<JiraProjectFieldInput>>;
|
|
62493
63495
|
resolution?: InputMaybe<JiraResolutionInput>;
|
|
63496
|
+
respondersField?: InputMaybe<JiraServiceManagementRespondersFieldInput>;
|
|
62494
63497
|
richTextFields?: InputMaybe<Array<JiraRichTextFieldInput>>;
|
|
62495
63498
|
security?: InputMaybe<JiraSecurityLevelInput>;
|
|
62496
63499
|
singleGroupPickerFields?: InputMaybe<Array<JiraSingleGroupPickerFieldInput>>;
|
|
@@ -65103,6 +66106,7 @@ export declare type JiraMutation = {
|
|
|
65103
66106
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
65104
66107
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
65105
66108
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
66109
|
+
updateFlagField?: Maybe<JiraUpdateFlagFieldPayload>;
|
|
65106
66110
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
65107
66111
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
65108
66112
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
@@ -65181,6 +66185,7 @@ export declare type JiraMutation = {
|
|
|
65181
66185
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
65182
66186
|
updateVotesField?: Maybe<JiraVotesFieldPayload>;
|
|
65183
66187
|
updateWatchesField?: Maybe<JiraWatchesFieldPayload>;
|
|
66188
|
+
updateWorklog?: Maybe<JiraUpdateWorklogPayload>;
|
|
65184
66189
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
65185
66190
|
};
|
|
65186
66191
|
export declare type JiraMutationAddFieldsToProjectArgs = {
|
|
@@ -65633,6 +66638,9 @@ export declare type JiraMutationUpdateFieldSetsViewArgs = {
|
|
|
65633
66638
|
id: Scalars['ID']['input'];
|
|
65634
66639
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
65635
66640
|
};
|
|
66641
|
+
export declare type JiraMutationUpdateFlagFieldArgs = {
|
|
66642
|
+
input: JiraUpdateFlagFieldInput;
|
|
66643
|
+
};
|
|
65636
66644
|
export declare type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
65637
66645
|
input: JiraUpdateForgeObjectFieldInput;
|
|
65638
66646
|
};
|
|
@@ -65886,6 +66894,9 @@ export declare type JiraMutationUpdateVotesFieldArgs = {
|
|
|
65886
66894
|
export declare type JiraMutationUpdateWatchesFieldArgs = {
|
|
65887
66895
|
input: JiraUpdateWatchesFieldInput;
|
|
65888
66896
|
};
|
|
66897
|
+
export declare type JiraMutationUpdateWorklogArgs = {
|
|
66898
|
+
input: JiraUpdateWorklogInput;
|
|
66899
|
+
};
|
|
65889
66900
|
export declare type JiraMutationUserPreferencesArgs = {
|
|
65890
66901
|
cloudId: Scalars['ID']['input'];
|
|
65891
66902
|
};
|
|
@@ -67336,6 +68347,13 @@ export declare type JiraPriorityFieldPayload = Payload & {
|
|
|
67336
68347
|
export declare type JiraPriorityInput = {
|
|
67337
68348
|
priorityId: Scalars['ID']['input'];
|
|
67338
68349
|
};
|
|
68350
|
+
export declare type JiraProductDiscoveryIssueEventPayload = {
|
|
68351
|
+
__typename?: 'JiraProductDiscoveryIssueEventPayload';
|
|
68352
|
+
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
68353
|
+
project: JiraIssueStreamHubEventPayloadProject;
|
|
68354
|
+
resource: Scalars['String']['output'];
|
|
68355
|
+
type: Scalars['String']['output'];
|
|
68356
|
+
};
|
|
67339
68357
|
export declare enum JiraProductEnum {
|
|
67340
68358
|
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
67341
68359
|
JiraServiceManagement = "JIRA_SERVICE_MANAGEMENT",
|
|
@@ -71484,6 +72502,9 @@ export declare type JiraServiceManagementResponderEdge = {
|
|
|
71484
72502
|
cursor: Scalars['String']['output'];
|
|
71485
72503
|
node?: Maybe<JiraServiceManagementResponder>;
|
|
71486
72504
|
};
|
|
72505
|
+
export declare type JiraServiceManagementResponderFieldInput = {
|
|
72506
|
+
responderId: Scalars['ID']['input'];
|
|
72507
|
+
};
|
|
71487
72508
|
export declare type JiraServiceManagementRespondersField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
71488
72509
|
__typename?: 'JiraServiceManagementRespondersField';
|
|
71489
72510
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -71507,6 +72528,11 @@ export declare type JiraServiceManagementRespondersFieldRespondersConnectionArgs
|
|
|
71507
72528
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71508
72529
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
71509
72530
|
};
|
|
72531
|
+
export declare type JiraServiceManagementRespondersFieldInput = {
|
|
72532
|
+
bulkEditMultiSelectFieldOption?: InputMaybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
72533
|
+
fieldId: Scalars['ID']['input'];
|
|
72534
|
+
responders: Array<JiraServiceManagementResponderFieldInput>;
|
|
72535
|
+
};
|
|
71510
72536
|
export declare type JiraServiceManagementSelectPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
71511
72537
|
__typename?: 'JiraServiceManagementSelectPreviewField';
|
|
71512
72538
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -72704,6 +73730,7 @@ export declare type JiraSubscription = {
|
|
|
72704
73730
|
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
72705
73731
|
onJirtBoardIssueSubscription?: Maybe<JiraJirtBoardScoreIssueEventPayload>;
|
|
72706
73732
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
73733
|
+
onJpdIssueSubscription?: Maybe<JiraProductDiscoveryIssueEventPayload>;
|
|
72707
73734
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
72708
73735
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
72709
73736
|
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
@@ -72798,6 +73825,12 @@ export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
|
|
|
72798
73825
|
events: Array<Scalars['String']['input']>;
|
|
72799
73826
|
projectIds: Array<Scalars['String']['input']>;
|
|
72800
73827
|
};
|
|
73828
|
+
export declare type JiraSubscriptionOnJpdIssueSubscriptionArgs = {
|
|
73829
|
+
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
73830
|
+
cloudId: Scalars['ID']['input'];
|
|
73831
|
+
events: Array<Scalars['String']['input']>;
|
|
73832
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
73833
|
+
};
|
|
72801
73834
|
export declare type JiraSubscriptionOnJwmFieldMutationArgs = {
|
|
72802
73835
|
siteId: Scalars['ID']['input'];
|
|
72803
73836
|
};
|
|
@@ -73129,6 +74162,7 @@ export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
73129
74162
|
};
|
|
73130
74163
|
export declare type JiraTimelineIssueLinkOperationPayload = {
|
|
73131
74164
|
__typename?: 'JiraTimelineIssueLinkOperationPayload';
|
|
74165
|
+
dependencyId?: Maybe<Scalars['ID']['output']>;
|
|
73132
74166
|
errors?: Maybe<Array<MutationError>>;
|
|
73133
74167
|
inwardItem?: Maybe<JiraIssue>;
|
|
73134
74168
|
outwardItem?: Maybe<JiraIssue>;
|
|
@@ -73287,7 +74321,7 @@ export declare type JiraUpdateCalendarViewConfigInput = {
|
|
|
73287
74321
|
};
|
|
73288
74322
|
export declare type JiraUpdateCalendarViewConfigPayload = Payload & {
|
|
73289
74323
|
__typename?: 'JiraUpdateCalendarViewConfigPayload';
|
|
73290
|
-
|
|
74324
|
+
calendar?: Maybe<JiraCalendar>;
|
|
73291
74325
|
errors?: Maybe<Array<MutationError>>;
|
|
73292
74326
|
success: Scalars['Boolean']['output'];
|
|
73293
74327
|
};
|
|
@@ -73372,6 +74406,25 @@ export declare type JiraUpdateFieldSetPreferencesInput = {
|
|
|
73372
74406
|
isFrozen?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73373
74407
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
73374
74408
|
};
|
|
74409
|
+
export declare type JiraUpdateFlagCommentInput = {
|
|
74410
|
+
content?: InputMaybe<JiraAdfInput>;
|
|
74411
|
+
property?: InputMaybe<Scalars['String']['input']>;
|
|
74412
|
+
visibility?: InputMaybe<Scalars['String']['input']>;
|
|
74413
|
+
};
|
|
74414
|
+
export declare type JiraUpdateFlagFieldInput = {
|
|
74415
|
+
comment?: InputMaybe<JiraUpdateFlagCommentInput>;
|
|
74416
|
+
id: Scalars['ID']['input'];
|
|
74417
|
+
operation: JiraUpdateFlagFieldOperationInput;
|
|
74418
|
+
};
|
|
74419
|
+
export declare type JiraUpdateFlagFieldOperationInput = {
|
|
74420
|
+
operation: JiraFlagOperations;
|
|
74421
|
+
};
|
|
74422
|
+
export declare type JiraUpdateFlagFieldPayload = {
|
|
74423
|
+
__typename?: 'JiraUpdateFlagFieldPayload';
|
|
74424
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74425
|
+
field?: Maybe<JiraFlagField>;
|
|
74426
|
+
success: Scalars['Boolean']['output'];
|
|
74427
|
+
};
|
|
73375
74428
|
export declare type JiraUpdateForgeMultipleGroupPickerFieldInput = {
|
|
73376
74429
|
id: Scalars['ID']['input'];
|
|
73377
74430
|
operations: Array<JiraForgeMultipleGroupPickerFieldOperationInput>;
|
|
@@ -73792,6 +74845,21 @@ export declare type JiraUpdateWorklogFieldInputForIssueTransitions = {
|
|
|
73792
74845
|
id: Scalars['ID']['input'];
|
|
73793
74846
|
operation: JiraWorklogFieldOperationInputForIssueTransitions;
|
|
73794
74847
|
};
|
|
74848
|
+
export declare type JiraUpdateWorklogInput = {
|
|
74849
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
74850
|
+
issue?: InputMaybe<Scalars['ID']['input']>;
|
|
74851
|
+
remainingEstimate?: InputMaybe<JiraEstimateInput>;
|
|
74852
|
+
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
74853
|
+
timeSpent?: InputMaybe<JiraEstimateInput>;
|
|
74854
|
+
workDescription?: InputMaybe<JiraAdfInput>;
|
|
74855
|
+
};
|
|
74856
|
+
export declare type JiraUpdateWorklogPayload = {
|
|
74857
|
+
__typename?: 'JiraUpdateWorklogPayload';
|
|
74858
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74859
|
+
field?: Maybe<JiraTimeTrackingField>;
|
|
74860
|
+
success: Scalars['Boolean']['output'];
|
|
74861
|
+
worklog?: Maybe<JiraWorklog>;
|
|
74862
|
+
};
|
|
73795
74863
|
export declare type JiraUpsertIssueTypePayload = Payload & {
|
|
73796
74864
|
__typename?: 'JiraUpsertIssueTypePayload';
|
|
73797
74865
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -76983,7 +78051,8 @@ export declare type KnowledgeGraphObjectResponseV2 = {
|
|
|
76983
78051
|
export declare enum KnowledgeGraphObjectType {
|
|
76984
78052
|
SnippetV1 = "snippet_v1",
|
|
76985
78053
|
SnippetV2 = "snippet_v2",
|
|
76986
|
-
SnippetV2_180 = "snippet_v2_180"
|
|
78054
|
+
SnippetV2_180 = "snippet_v2_180",
|
|
78055
|
+
SnippetV2_300 = "snippet_v2_300"
|
|
76987
78056
|
}
|
|
76988
78057
|
export declare type KnownUser = Person & {
|
|
76989
78058
|
__typename?: 'KnownUser';
|
|
@@ -77978,6 +79047,7 @@ export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
|
77978
79047
|
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
77979
79048
|
appKey: Scalars['ID']['output'];
|
|
77980
79049
|
appSoftwareId: Scalars['ID']['output'];
|
|
79050
|
+
complianceBoundaries?: Maybe<Array<MarketplaceConsoleCloudComplianceBoundary>>;
|
|
77981
79051
|
editionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
77982
79052
|
hasActiveCoupledVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
77983
79053
|
hasConnectVersion?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -78042,7 +79112,6 @@ export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput =
|
|
|
78042
79112
|
frameworkId: Scalars['ID']['input'];
|
|
78043
79113
|
};
|
|
78044
79114
|
export declare type MarketplaceConsoleAppSoftwareVersionInput = {
|
|
78045
|
-
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78046
79115
|
bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78047
79116
|
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
78048
79117
|
communityEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -78051,31 +79120,24 @@ export declare type MarketplaceConsoleAppSoftwareVersionInput = {
|
|
|
78051
79120
|
documentationUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78052
79121
|
editionDetails?: InputMaybe<MarketplaceConsoleEditionDetailsInput>;
|
|
78053
79122
|
eulaUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78054
|
-
forumsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78055
79123
|
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
78056
79124
|
heroImageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78057
79125
|
highlights?: InputMaybe<Array<MarketplaceConsoleListingHighLightInput>>;
|
|
78058
79126
|
isBeta?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78059
79127
|
isSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78060
|
-
issueTrackerUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78061
79128
|
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78062
79129
|
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
78063
79130
|
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
78064
79131
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
78065
79132
|
partnerSpecificTerms?: InputMaybe<Scalars['String']['input']>;
|
|
78066
79133
|
paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
78067
|
-
privacyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78068
79134
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
78069
79135
|
purchaseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78070
79136
|
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
78071
79137
|
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
78072
79138
|
screenshots?: InputMaybe<Array<MarketplaceConsoleListingScreenshotInput>>;
|
|
78073
|
-
segmentWriteKey?: InputMaybe<Scalars['String']['input']>;
|
|
78074
79139
|
sourceCodeLicenseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78075
79140
|
status: MarketplaceConsoleVersionType;
|
|
78076
|
-
statusAfterApproval?: InputMaybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
78077
|
-
summary?: InputMaybe<Scalars['String']['input']>;
|
|
78078
|
-
supportTicketSystemUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78079
79141
|
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
78080
79142
|
youtubeId?: InputMaybe<Scalars['String']['input']>;
|
|
78081
79143
|
};
|
|
@@ -80268,6 +81330,16 @@ export declare type MenusLookAndFeel = {
|
|
|
80268
81330
|
hoverOrFocus?: Maybe<Array<Maybe<MapOfStringToString>>>;
|
|
80269
81331
|
};
|
|
80270
81332
|
export declare type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraIssue | TownsquareGoal | TownsquareProject;
|
|
81333
|
+
export declare type MercuryAddTagsToProposalInput = {
|
|
81334
|
+
changeProposalId: Scalars['ID']['input'];
|
|
81335
|
+
tagIds: Array<Scalars['ID']['input']>;
|
|
81336
|
+
};
|
|
81337
|
+
export declare type MercuryAddTagsToProposalPayload = Payload & {
|
|
81338
|
+
__typename?: 'MercuryAddTagsToProposalPayload';
|
|
81339
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81340
|
+
success: Scalars['Boolean']['output'];
|
|
81341
|
+
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
81342
|
+
};
|
|
80271
81343
|
export declare type MercuryAddWatcherToFocusAreaInput = {
|
|
80272
81344
|
cloudId: Scalars['ID']['input'];
|
|
80273
81345
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -80707,6 +81779,15 @@ export declare type MercuryDeleteChangeProposalCommentPayload = Payload & {
|
|
|
80707
81779
|
errors?: Maybe<Array<MutationError>>;
|
|
80708
81780
|
success: Scalars['Boolean']['output'];
|
|
80709
81781
|
};
|
|
81782
|
+
export declare type MercuryDeleteChangeProposalGoalLinksInput = {
|
|
81783
|
+
changeProposalAri: Scalars['ID']['input'];
|
|
81784
|
+
goalAris: Array<Scalars['ID']['input']>;
|
|
81785
|
+
};
|
|
81786
|
+
export declare type MercuryDeleteChangeProposalGoalLinksPayload = Payload & {
|
|
81787
|
+
__typename?: 'MercuryDeleteChangeProposalGoalLinksPayload';
|
|
81788
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81789
|
+
success: Scalars['Boolean']['output'];
|
|
81790
|
+
};
|
|
80710
81791
|
export declare type MercuryDeleteChangeProposalInput = {
|
|
80711
81792
|
id: Scalars['ID']['input'];
|
|
80712
81793
|
};
|
|
@@ -81314,6 +82395,15 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
|
|
|
81314
82395
|
errors?: Maybe<Array<MutationError>>;
|
|
81315
82396
|
success: Scalars['Boolean']['output'];
|
|
81316
82397
|
};
|
|
82398
|
+
export declare type MercuryLinkGoalsToChangeProposalInput = {
|
|
82399
|
+
changeProposalAri: Scalars['ID']['input'];
|
|
82400
|
+
goalAris: Array<Scalars['ID']['input']>;
|
|
82401
|
+
};
|
|
82402
|
+
export declare type MercuryLinkGoalsToChangeProposalPayload = Payload & {
|
|
82403
|
+
__typename?: 'MercuryLinkGoalsToChangeProposalPayload';
|
|
82404
|
+
errors?: Maybe<Array<MutationError>>;
|
|
82405
|
+
success: Scalars['Boolean']['output'];
|
|
82406
|
+
};
|
|
81317
82407
|
export declare type MercuryLinkGoalsToFocusAreaInput = {
|
|
81318
82408
|
atlasGoalAris: Array<Scalars['String']['input']>;
|
|
81319
82409
|
focusAreaAri: Scalars['String']['input'];
|
|
@@ -81561,8 +82651,10 @@ export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
|
81561
82651
|
export declare type MercuryOnUpdateStrategicEventPayload = Payload & {
|
|
81562
82652
|
__typename?: 'MercuryOnUpdateStrategicEventPayload';
|
|
81563
82653
|
errors?: Maybe<Array<MutationError>>;
|
|
82654
|
+
event?: Maybe<Scalars['String']['output']>;
|
|
81564
82655
|
id: Scalars['ID']['output'];
|
|
81565
82656
|
success: Scalars['Boolean']['output'];
|
|
82657
|
+
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
81566
82658
|
};
|
|
81567
82659
|
export declare type MercuryOriginalProjectStatus = {
|
|
81568
82660
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
@@ -81579,6 +82671,7 @@ export declare type MercuryPortfolio = Node & {
|
|
|
81579
82671
|
linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
|
|
81580
82672
|
name: Scalars['String']['output'];
|
|
81581
82673
|
owner?: Maybe<User>;
|
|
82674
|
+
updatedBy?: Maybe<User>;
|
|
81582
82675
|
url?: Maybe<Scalars['String']['output']>;
|
|
81583
82676
|
uuid: Scalars['ID']['output'];
|
|
81584
82677
|
version?: Maybe<Scalars['String']['output']>;
|
|
@@ -82050,6 +83143,16 @@ export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
|
82050
83143
|
id: Scalars['ID']['input'];
|
|
82051
83144
|
rankVersion?: InputMaybe<Scalars['String']['input']>;
|
|
82052
83145
|
};
|
|
83146
|
+
export declare type MercuryRemoveTagsFromProposalInput = {
|
|
83147
|
+
changeProposalId: Scalars['ID']['input'];
|
|
83148
|
+
tagIds: Array<Scalars['ID']['input']>;
|
|
83149
|
+
};
|
|
83150
|
+
export declare type MercuryRemoveTagsFromProposalPayload = Payload & {
|
|
83151
|
+
__typename?: 'MercuryRemoveTagsFromProposalPayload';
|
|
83152
|
+
errors?: Maybe<Array<MutationError>>;
|
|
83153
|
+
success: Scalars['Boolean']['output'];
|
|
83154
|
+
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
83155
|
+
};
|
|
82053
83156
|
export declare type MercuryRemoveWatcherFromFocusAreaInput = {
|
|
82054
83157
|
cloudId: Scalars['ID']['input'];
|
|
82055
83158
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -82229,16 +83332,20 @@ export declare type MercuryStrategicEventStatusTransitions = {
|
|
|
82229
83332
|
};
|
|
82230
83333
|
export declare type MercuryStrategicEventsMutationApi = {
|
|
82231
83334
|
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
83335
|
+
addTagsToChangeProposal?: Maybe<MercuryAddTagsToProposalPayload>;
|
|
82232
83336
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
82233
83337
|
createChangeProposalComment?: Maybe<MercuryCreateChangeProposalCommentPayload>;
|
|
82234
83338
|
createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
|
|
82235
83339
|
createStrategicEventComment?: Maybe<MercuryCreateStrategicEventCommentPayload>;
|
|
82236
83340
|
deleteChangeProposal?: Maybe<MercuryDeleteChangeProposalPayload>;
|
|
82237
83341
|
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
83342
|
+
deleteChangeProposalGoalLinks?: Maybe<MercuryDeleteChangeProposalGoalLinksPayload>;
|
|
82238
83343
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
82239
83344
|
deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
|
|
83345
|
+
linkGoalsToChangeProposal?: Maybe<MercuryLinkGoalsToChangeProposalPayload>;
|
|
82240
83346
|
moveChanges?: Maybe<MercuryMoveChangesPayload>;
|
|
82241
83347
|
proposeChanges?: Maybe<MercuryProposeChangesPayload>;
|
|
83348
|
+
removeTagsFromChangeProposal?: Maybe<MercuryRemoveTagsFromProposalPayload>;
|
|
82242
83349
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
82243
83350
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
82244
83351
|
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
@@ -82258,6 +83365,9 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
82258
83365
|
updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
82259
83366
|
updateStrategicEventTargetDate?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
82260
83367
|
};
|
|
83368
|
+
export declare type MercuryStrategicEventsMutationApiAddTagsToChangeProposalArgs = {
|
|
83369
|
+
input: MercuryAddTagsToProposalInput;
|
|
83370
|
+
};
|
|
82261
83371
|
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs = {
|
|
82262
83372
|
input: MercuryCreateChangeProposalInput;
|
|
82263
83373
|
};
|
|
@@ -82276,18 +83386,27 @@ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalArgs =
|
|
|
82276
83386
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
|
|
82277
83387
|
input: MercuryDeleteChangeProposalCommentInput;
|
|
82278
83388
|
};
|
|
83389
|
+
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalGoalLinksArgs = {
|
|
83390
|
+
input: MercuryDeleteChangeProposalGoalLinksInput;
|
|
83391
|
+
};
|
|
82279
83392
|
export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
|
|
82280
83393
|
input?: InputMaybe<MercuryDeleteChangesInput>;
|
|
82281
83394
|
};
|
|
82282
83395
|
export declare type MercuryStrategicEventsMutationApiDeleteStrategicEventCommentArgs = {
|
|
82283
83396
|
input: MercuryDeleteStrategicEventCommentInput;
|
|
82284
83397
|
};
|
|
83398
|
+
export declare type MercuryStrategicEventsMutationApiLinkGoalsToChangeProposalArgs = {
|
|
83399
|
+
input: MercuryLinkGoalsToChangeProposalInput;
|
|
83400
|
+
};
|
|
82285
83401
|
export declare type MercuryStrategicEventsMutationApiMoveChangesArgs = {
|
|
82286
83402
|
input: MercuryMoveChangesInput;
|
|
82287
83403
|
};
|
|
82288
83404
|
export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
|
|
82289
83405
|
input: MercuryProposeChangesInput;
|
|
82290
83406
|
};
|
|
83407
|
+
export declare type MercuryStrategicEventsMutationApiRemoveTagsFromChangeProposalArgs = {
|
|
83408
|
+
input: MercuryRemoveTagsFromProposalInput;
|
|
83409
|
+
};
|
|
82291
83410
|
export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalStatusArgs = {
|
|
82292
83411
|
input: MercuryTransitionChangeProposalStatusInput;
|
|
82293
83412
|
};
|
|
@@ -83051,6 +84170,8 @@ export declare type Mutation = {
|
|
|
83051
84170
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
83052
84171
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
83053
84172
|
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
84173
|
+
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
84174
|
+
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
83054
84175
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
83055
84176
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
83056
84177
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
@@ -83081,6 +84202,7 @@ export declare type Mutation = {
|
|
|
83081
84202
|
bulkUnarchivePages?: Maybe<BulkArchivePagePayload>;
|
|
83082
84203
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
83083
84204
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
84205
|
+
ccp?: Maybe<CcpMutationApi>;
|
|
83084
84206
|
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
83085
84207
|
channelPlatform_createAttendee?: Maybe<ChannelPlatformConnectionData>;
|
|
83086
84208
|
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
@@ -83143,6 +84265,8 @@ export declare type Mutation = {
|
|
|
83143
84265
|
copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
83144
84266
|
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
83145
84267
|
copySpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
84268
|
+
cpls_addContributorScopeAssociation: CplsAddContributorScopeAssociationPayload;
|
|
84269
|
+
cpls_deleteContributorScopeAssociation: CplsDeleteContributorScopeAssociationPayload;
|
|
83146
84270
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
83147
84271
|
createApp?: Maybe<CreateAppResponse>;
|
|
83148
84272
|
createAppContainer?: Maybe<CreateAppContainerPayload>;
|
|
@@ -83280,8 +84404,13 @@ export declare type Mutation = {
|
|
|
83280
84404
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
83281
84405
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
83282
84406
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
84407
|
+
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
83283
84408
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
84409
|
+
graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
|
|
84410
|
+
graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
|
|
84411
|
+
graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
|
|
83284
84412
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
84413
|
+
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
83285
84414
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
83286
84415
|
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
83287
84416
|
hardDeleteSpace?: Maybe<HardDeleteSpacePayload>;
|
|
@@ -83318,7 +84447,6 @@ export declare type Mutation = {
|
|
|
83318
84447
|
jira_deleteIssueSearchFormattingRule?: Maybe<JiraDeleteIssueSearchFormattingRulePayload>;
|
|
83319
84448
|
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
83320
84449
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
83321
|
-
jira_discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
83322
84450
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
83323
84451
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
83324
84452
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
@@ -83414,6 +84542,7 @@ export declare type Mutation = {
|
|
|
83414
84542
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
83415
84543
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
83416
84544
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
84545
|
+
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
83417
84546
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
83418
84547
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
83419
84548
|
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
@@ -83426,9 +84555,12 @@ export declare type Mutation = {
|
|
|
83426
84555
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
83427
84556
|
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
83428
84557
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
84558
|
+
radar_deleteConnector?: Maybe<RadarMutationResponse>;
|
|
83429
84559
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
83430
84560
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
83431
84561
|
radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
84562
|
+
radar_grantFieldPermissions?: Maybe<RadarMutationResponse>;
|
|
84563
|
+
radar_removeFieldPermissions?: Maybe<RadarMutationResponse>;
|
|
83432
84564
|
radar_updateConnector?: Maybe<RadarConnector>;
|
|
83433
84565
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
83434
84566
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
@@ -83743,6 +84875,16 @@ export declare type MutationAssetsDm_DataSourceCleansingRulesConfigureArgs = {
|
|
|
83743
84875
|
dataSourceId: Scalars['ID']['input'];
|
|
83744
84876
|
workspaceId: Scalars['ID']['input'];
|
|
83745
84877
|
};
|
|
84878
|
+
export declare type MutationAssetsDm_DataSourceRunMergeArgs = {
|
|
84879
|
+
cloudId: Scalars['ID']['input'];
|
|
84880
|
+
dataSourceIds: Array<Scalars['ID']['input']>;
|
|
84881
|
+
workspaceId: Scalars['ID']['input'];
|
|
84882
|
+
};
|
|
84883
|
+
export declare type MutationAssetsDm_DataSourceRunTransformArgs = {
|
|
84884
|
+
cloudId: Scalars['ID']['input'];
|
|
84885
|
+
jobId: Scalars['ID']['input'];
|
|
84886
|
+
workspaceId: Scalars['ID']['input'];
|
|
84887
|
+
};
|
|
83746
84888
|
export declare type MutationAssetsDm_DeleteObjectTagArgs = {
|
|
83747
84889
|
cloudId: Scalars['ID']['input'];
|
|
83748
84890
|
tagId: Scalars['ID']['input'];
|
|
@@ -83869,6 +85011,9 @@ export declare type MutationClearRestrictionsForFreeArgs = {
|
|
|
83869
85011
|
export declare type MutationCompleteSprintArgs = {
|
|
83870
85012
|
input?: InputMaybe<CompleteSprintInput>;
|
|
83871
85013
|
};
|
|
85014
|
+
export declare type MutationConfluenceArgs = {
|
|
85015
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
85016
|
+
};
|
|
83872
85017
|
export declare type MutationConfluence_AddReactionArgs = {
|
|
83873
85018
|
cloudId: Scalars['ID']['input'];
|
|
83874
85019
|
input: ConfluenceReactionInput;
|
|
@@ -84070,6 +85215,12 @@ export declare type MutationCopySpacePermissionsArgs = {
|
|
|
84070
85215
|
sourceSpaceKey: Scalars['String']['input'];
|
|
84071
85216
|
targetSpaceKey: Scalars['String']['input'];
|
|
84072
85217
|
};
|
|
85218
|
+
export declare type MutationCpls_AddContributorScopeAssociationArgs = {
|
|
85219
|
+
input: CplsAddContributorScopeAssociationInput;
|
|
85220
|
+
};
|
|
85221
|
+
export declare type MutationCpls_DeleteContributorScopeAssociationArgs = {
|
|
85222
|
+
input: CplsDeleteContributorScopeAssociationInput;
|
|
85223
|
+
};
|
|
84073
85224
|
export declare type MutationCreateAdminAnnouncementBannerArgs = {
|
|
84074
85225
|
announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
|
|
84075
85226
|
};
|
|
@@ -84532,9 +85683,24 @@ export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
|
84532
85683
|
export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
84533
85684
|
input?: InputMaybe<TownsquareGoalsSetWatchingGoalInput>;
|
|
84534
85685
|
};
|
|
85686
|
+
export declare type MutationGoals_ShareGoalArgs = {
|
|
85687
|
+
input: TownsquareGoalsShareGoalInput;
|
|
85688
|
+
};
|
|
84535
85689
|
export declare type MutationGrantContentAccessArgs = {
|
|
84536
85690
|
grantContentAccessInput: GrantContentAccessInput;
|
|
84537
85691
|
};
|
|
85692
|
+
export declare type MutationGraphIntegration_McpAdminManagementRegisterMcpServerArgs = {
|
|
85693
|
+
input: GraphIntegrationMcpAdminManagementRegisterMcpServerInput;
|
|
85694
|
+
};
|
|
85695
|
+
export declare type MutationGraphIntegration_McpAdminManagementUnregisterMcpServerArgs = {
|
|
85696
|
+
input: GraphIntegrationMcpAdminManagementUnregisterMcpServerInput;
|
|
85697
|
+
};
|
|
85698
|
+
export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpToolConfigurationArgs = {
|
|
85699
|
+
input: GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput;
|
|
85700
|
+
};
|
|
85701
|
+
export declare type MutationGrowthUnifiedProfile_CreateEntitlementProfileArgs = {
|
|
85702
|
+
profile: GrowthUnifiedProfileCreateEntitlementProfileInput;
|
|
85703
|
+
};
|
|
84538
85704
|
export declare type MutationGrowthUnifiedProfile_CreateOrgProfileArgs = {
|
|
84539
85705
|
profile: GrowthUnifiedProfileCreateOrgProfileInput;
|
|
84540
85706
|
};
|
|
@@ -84637,9 +85803,6 @@ export declare type MutationJira_DeleteIssueTypeArgs = {
|
|
|
84637
85803
|
export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
84638
85804
|
input: JiraDiscardUserBoardViewConfigInput;
|
|
84639
85805
|
};
|
|
84640
|
-
export declare type MutationJira_DiscardUserCalendarViewConfigArgs = {
|
|
84641
|
-
input: JiraDiscardUserViewConfigInput;
|
|
84642
|
-
};
|
|
84643
85806
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
84644
85807
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
84645
85808
|
};
|
|
@@ -84909,6 +86072,9 @@ export declare type MutationProjects_EditLinkArgs = {
|
|
|
84909
86072
|
export declare type MutationProjects_EditUpdateArgs = {
|
|
84910
86073
|
input?: InputMaybe<TownsquareProjectsEditUpdateInput>;
|
|
84911
86074
|
};
|
|
86075
|
+
export declare type MutationProjects_RemoveDependencyArgs = {
|
|
86076
|
+
input: TownsquareProjectsRemoveDependencyInput;
|
|
86077
|
+
};
|
|
84912
86078
|
export declare type MutationProjects_RemoveGoalLinkArgs = {
|
|
84913
86079
|
input: TownsquareProjectsRemoveGoalLinkInput;
|
|
84914
86080
|
};
|
|
@@ -84950,6 +86116,10 @@ export declare type MutationRadar_CreateRoleAssignmentArgs = {
|
|
|
84950
86116
|
cloudId: Scalars['ID']['input'];
|
|
84951
86117
|
input: RadarRoleAssignmentRequest;
|
|
84952
86118
|
};
|
|
86119
|
+
export declare type MutationRadar_DeleteConnectorArgs = {
|
|
86120
|
+
cloudId: Scalars['ID']['input'];
|
|
86121
|
+
input: RadarDeleteConnectorInput;
|
|
86122
|
+
};
|
|
84953
86123
|
export declare type MutationRadar_DeleteCustomFieldsArgs = {
|
|
84954
86124
|
cloudId: Scalars['ID']['input'];
|
|
84955
86125
|
input: Array<RadarDeleteCustomFieldInput>;
|
|
@@ -84962,6 +86132,14 @@ export declare type MutationRadar_DeleteRoleAssignmentArgs = {
|
|
|
84962
86132
|
cloudId: Scalars['ID']['input'];
|
|
84963
86133
|
input: RadarRoleAssignmentRequest;
|
|
84964
86134
|
};
|
|
86135
|
+
export declare type MutationRadar_GrantFieldPermissionsArgs = {
|
|
86136
|
+
cloudId: Scalars['ID']['input'];
|
|
86137
|
+
input: Array<RadarFieldPermissionsInput>;
|
|
86138
|
+
};
|
|
86139
|
+
export declare type MutationRadar_RemoveFieldPermissionsArgs = {
|
|
86140
|
+
cloudId: Scalars['ID']['input'];
|
|
86141
|
+
input: Array<RadarFieldPermissionsInput>;
|
|
86142
|
+
};
|
|
84965
86143
|
export declare type MutationRadar_UpdateConnectorArgs = {
|
|
84966
86144
|
cloudId: Scalars['ID']['input'];
|
|
84967
86145
|
input: RadarConnectorsInput;
|
|
@@ -87784,7 +88962,6 @@ export declare type PolarisView = {
|
|
|
87784
88962
|
immutable?: Maybe<Scalars['Boolean']['output']>;
|
|
87785
88963
|
jql?: Maybe<Scalars['String']['output']>;
|
|
87786
88964
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']['output']>;
|
|
87787
|
-
lastViewed?: Maybe<Array<Maybe<PolarisViewLastViewed>>>;
|
|
87788
88965
|
layoutType?: Maybe<PolarisViewLayoutType>;
|
|
87789
88966
|
matrixConfig?: Maybe<PolarisMatrixConfig>;
|
|
87790
88967
|
name: Scalars['String']['output'];
|
|
@@ -87873,12 +89050,6 @@ export declare type PolarisViewFilterValueInput = {
|
|
|
87873
89050
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
87874
89051
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
87875
89052
|
};
|
|
87876
|
-
export declare type PolarisViewLastViewed = {
|
|
87877
|
-
__typename?: 'PolarisViewLastViewed';
|
|
87878
|
-
aaid: Scalars['String']['output'];
|
|
87879
|
-
account?: Maybe<User>;
|
|
87880
|
-
timestamp: Scalars['String']['output'];
|
|
87881
|
-
};
|
|
87882
89053
|
export declare enum PolarisViewLayoutType {
|
|
87883
89054
|
Compact = "COMPACT",
|
|
87884
89055
|
Detailed = "DETAILED",
|
|
@@ -88375,6 +89546,7 @@ export declare type Query = {
|
|
|
88375
89546
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
88376
89547
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
88377
89548
|
assetsDM_dataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
89549
|
+
assetsDM_dataSourceMerge?: Maybe<AssetsDmDataSourceMergeResponse>;
|
|
88378
89550
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
88379
89551
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
88380
89552
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
@@ -88382,6 +89554,7 @@ export declare type Query = {
|
|
|
88382
89554
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
88383
89555
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
88384
89556
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
89557
|
+
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
88385
89558
|
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
88386
89559
|
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
88387
89560
|
assets_schemasByIds?: Maybe<Array<Maybe<AssetsSchema>>>;
|
|
@@ -88427,11 +89600,13 @@ export declare type Query = {
|
|
|
88427
89600
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
88428
89601
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
88429
89602
|
confluence_applicationLinkByOauth2ClientId?: Maybe<ConfluenceApplicationLink>;
|
|
89603
|
+
confluence_assignableSpaceRoles?: Maybe<Array<Maybe<ConfluenceAssignableSpaceRole>>>;
|
|
88430
89604
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
88431
89605
|
confluence_calendarJiraDateFieldsByJql?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
88432
89606
|
confluence_calendarJiraDateFieldsBySearchFilter?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
88433
89607
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
88434
89608
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
89609
|
+
confluence_contentAISummaries?: Maybe<Array<Maybe<ConfluenceContentAiSummaryResponse>>>;
|
|
88435
89610
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
88436
89611
|
confluence_contentAnalyticsCountUserByContentType?: Maybe<ConfluenceContentAnalyticsCountUserByContentType>;
|
|
88437
89612
|
confluence_contentReactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
@@ -88459,6 +89634,7 @@ export declare type Query = {
|
|
|
88459
89634
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
88460
89635
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
88461
89636
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
89637
|
+
confluence_mediaTokenData?: Maybe<ConfluenceMediaTokenData>;
|
|
88462
89638
|
confluence_note?: Maybe<NoteResponse>;
|
|
88463
89639
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
88464
89640
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
@@ -88523,7 +89699,6 @@ export declare type Query = {
|
|
|
88523
89699
|
convoai_jiraRelated3pLinksSuggestionsByIssueId?: Maybe<ConvoAiJira3pRelatedLinksResult>;
|
|
88524
89700
|
convoai_jiraRelatedResourcesSuggestions?: Maybe<ConvoAiJiraIssueRelatedResourcesResult>;
|
|
88525
89701
|
convoai_jiraSimilarWorkItems?: Maybe<ConvoAiJiraSimilarWorkItemsConnection>;
|
|
88526
|
-
convoai_promptSuggestions?: Maybe<ConvoAiPromptSuggestionResult>;
|
|
88527
89702
|
countGroupByEventName?: Maybe<CountGroupByEventName>;
|
|
88528
89703
|
countGroupByPage?: Maybe<CountGroupByPage>;
|
|
88529
89704
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
@@ -88644,6 +89819,9 @@ export declare type Query = {
|
|
|
88644
89819
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
88645
89820
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
88646
89821
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
89822
|
+
graphIntegration_mcpAdminManagementMcpServer?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
89823
|
+
graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
|
|
89824
|
+
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
88647
89825
|
graphStore?: Maybe<GraphStore>;
|
|
88648
89826
|
group?: Maybe<Group>;
|
|
88649
89827
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -88652,6 +89830,7 @@ export declare type Query = {
|
|
|
88652
89830
|
groupsUserSpaceAccess?: Maybe<PaginatedGroupList>;
|
|
88653
89831
|
groupsWithContentRestrictions?: Maybe<Array<Maybe<GroupWithRestrictions>>>;
|
|
88654
89832
|
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
89833
|
+
growthUnifiedProfile_getEntitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
88655
89834
|
growthUnifiedProfile_getOrgProfile?: Maybe<GrowthUnifiedProfileOrgProfileResult>;
|
|
88656
89835
|
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
88657
89836
|
growthUnifiedProfile_getUnifiedUserProfile?: Maybe<GrowthUnifiedProfileUserProfileResult>;
|
|
@@ -88697,7 +89876,6 @@ export declare type Query = {
|
|
|
88697
89876
|
jiraReleases?: Maybe<JiraReleases>;
|
|
88698
89877
|
jiraServers?: Maybe<JiraServersResult>;
|
|
88699
89878
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
88700
|
-
jira_calendarView?: Maybe<JiraCalendarView>;
|
|
88701
89879
|
jira_categoryField?: Maybe<JiraJqlField>;
|
|
88702
89880
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
88703
89881
|
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
@@ -88817,7 +89995,6 @@ export declare type Query = {
|
|
|
88817
89995
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
88818
89996
|
polarisGetDetailedReaction?: Maybe<PolarisReactionSummary>;
|
|
88819
89997
|
polarisGetEarliestOnboardedProjectForCloudId?: Maybe<EarliestOnboardedProjectForCloudId>;
|
|
88820
|
-
polarisGetEarliestViewViewedForUser?: Maybe<EarliestViewViewedForUser>;
|
|
88821
89998
|
polarisGetReactions?: Maybe<Array<Maybe<PolarisReaction>>>;
|
|
88822
89999
|
polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
|
|
88823
90000
|
polarisInsight?: Maybe<PolarisInsight>;
|
|
@@ -89248,6 +90425,12 @@ export declare type QueryAssetsDm_DataSourceMappingArgs = {
|
|
|
89248
90425
|
objectClassName: Scalars['String']['input'];
|
|
89249
90426
|
workspaceId: Scalars['ID']['input'];
|
|
89250
90427
|
};
|
|
90428
|
+
export declare type QueryAssetsDm_DataSourceMergeArgs = {
|
|
90429
|
+
cloudId: Scalars['ID']['input'];
|
|
90430
|
+
dataSourceId: Scalars['ID']['input'];
|
|
90431
|
+
jobId: Scalars['ID']['input'];
|
|
90432
|
+
workspaceId: Scalars['ID']['input'];
|
|
90433
|
+
};
|
|
89251
90434
|
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
89252
90435
|
cloudID: Scalars['ID']['input'];
|
|
89253
90436
|
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -89289,6 +90472,13 @@ export declare type QueryAssetsDm_RawDataArgs = {
|
|
|
89289
90472
|
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
89290
90473
|
workspaceId: Scalars['ID']['input'];
|
|
89291
90474
|
};
|
|
90475
|
+
export declare type QueryAssetsDm_TransformedDataArgs = {
|
|
90476
|
+
cloudId: Scalars['ID']['input'];
|
|
90477
|
+
dataSourceId: Scalars['ID']['input'];
|
|
90478
|
+
filters?: InputMaybe<Array<AssetsDmTransformedDataFilterInput>>;
|
|
90479
|
+
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
90480
|
+
workspaceId: Scalars['ID']['input'];
|
|
90481
|
+
};
|
|
89292
90482
|
export declare type QueryAssets_ObjectTypesByIdsArgs = {
|
|
89293
90483
|
ids: Array<Scalars['ID']['input']>;
|
|
89294
90484
|
};
|
|
@@ -89392,7 +90582,8 @@ export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
|
89392
90582
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
89393
90583
|
};
|
|
89394
90584
|
export declare type QueryChannelPlatform_GetSurveyLinkArgs = {
|
|
89395
|
-
|
|
90585
|
+
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
90586
|
+
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
89396
90587
|
};
|
|
89397
90588
|
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
89398
90589
|
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
@@ -89449,6 +90640,9 @@ export declare type QueryCommentsArgs = {
|
|
|
89449
90640
|
singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89450
90641
|
type?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
89451
90642
|
};
|
|
90643
|
+
export declare type QueryConfluenceArgs = {
|
|
90644
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90645
|
+
};
|
|
89452
90646
|
export declare type QueryConfluenceUsersArgs = {
|
|
89453
90647
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
89454
90648
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -89458,6 +90652,10 @@ export declare type QueryConfluence_ApplicationLinkByOauth2ClientIdArgs = {
|
|
|
89458
90652
|
cloudId: Scalars['ID']['input'];
|
|
89459
90653
|
oauthClientId: Scalars['String']['input'];
|
|
89460
90654
|
};
|
|
90655
|
+
export declare type QueryConfluence_AssignableSpaceRolesArgs = {
|
|
90656
|
+
cloudId: Scalars['ID']['input'];
|
|
90657
|
+
types: Array<InputMaybe<ConfluenceAssignableSpaceRolePrincipalType>>;
|
|
90658
|
+
};
|
|
89461
90659
|
export declare type QueryConfluence_AtlassianUserArgs = {
|
|
89462
90660
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89463
90661
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -89478,6 +90676,10 @@ export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
|
89478
90676
|
export declare type QueryConfluence_CalendarTimezonesArgs = {
|
|
89479
90677
|
cloudId: Scalars['ID']['input'];
|
|
89480
90678
|
};
|
|
90679
|
+
export declare type QueryConfluence_ContentAiSummariesArgs = {
|
|
90680
|
+
contentAris: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
90681
|
+
objectType: KnowledgeGraphObjectType;
|
|
90682
|
+
};
|
|
89481
90683
|
export declare type QueryConfluence_ContentAccessRequestByStatusArgs = {
|
|
89482
90684
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
89483
90685
|
cloudId: Scalars['ID']['input'];
|
|
@@ -89614,6 +90816,9 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
|
89614
90816
|
contentId: Scalars['ID']['input'];
|
|
89615
90817
|
macroIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
89616
90818
|
};
|
|
90819
|
+
export declare type QueryConfluence_MediaTokenDataArgs = {
|
|
90820
|
+
noteId: Scalars['ID']['input'];
|
|
90821
|
+
};
|
|
89617
90822
|
export declare type QueryConfluence_NoteArgs = {
|
|
89618
90823
|
id: Scalars['ID']['input'];
|
|
89619
90824
|
};
|
|
@@ -89968,10 +91173,6 @@ export declare type QueryConvoai_JiraSimilarWorkItemsArgs = {
|
|
|
89968
91173
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
89969
91174
|
workItemInput: ConvoAiJiraSimilarWorkItemsInput;
|
|
89970
91175
|
};
|
|
89971
|
-
export declare type QueryConvoai_PromptSuggestionsArgs = {
|
|
89972
|
-
cloudId: Scalars['ID']['input'];
|
|
89973
|
-
input: ConvoAiPromptSuggestionsInput;
|
|
89974
|
-
};
|
|
89975
91176
|
export declare type QueryCountGroupByEventNameArgs = {
|
|
89976
91177
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
89977
91178
|
eventName: Array<AnalyticsEventName>;
|
|
@@ -90451,6 +91652,22 @@ export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
|
90451
91652
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
90452
91653
|
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
90453
91654
|
};
|
|
91655
|
+
export declare type QueryGraphIntegration_McpAdminManagementMcpServerArgs = {
|
|
91656
|
+
cloudId: Scalars['ID']['input'];
|
|
91657
|
+
serverId: Scalars['ID']['input'];
|
|
91658
|
+
};
|
|
91659
|
+
export declare type QueryGraphIntegration_McpAdminManagementMcpServersArgs = {
|
|
91660
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91661
|
+
cloudId: Scalars['ID']['input'];
|
|
91662
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91663
|
+
};
|
|
91664
|
+
export declare type QueryGraphIntegration_McpAdminManagementMcpToolsArgs = {
|
|
91665
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91666
|
+
cloudId: Scalars['ID']['input'];
|
|
91667
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91668
|
+
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
91669
|
+
serverId: Scalars['ID']['input'];
|
|
91670
|
+
};
|
|
90454
91671
|
export declare type QueryGroupArgs = {
|
|
90455
91672
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
90456
91673
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -90478,6 +91695,9 @@ export declare type QueryGroupsWithContentRestrictionsArgs = {
|
|
|
90478
91695
|
contentId: Scalars['ID']['input'];
|
|
90479
91696
|
groupIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
90480
91697
|
};
|
|
91698
|
+
export declare type QueryGrowthUnifiedProfile_GetEntitlementProfileArgs = {
|
|
91699
|
+
entitlementId: Scalars['ID']['input'];
|
|
91700
|
+
};
|
|
90481
91701
|
export declare type QueryGrowthUnifiedProfile_GetOrgProfileArgs = {
|
|
90482
91702
|
filter?: InputMaybe<GrowthUnifiedProfileOrgProfileFilterInput>;
|
|
90483
91703
|
orgId: Scalars['ID']['input'];
|
|
@@ -90616,9 +91836,6 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
90616
91836
|
export declare type QueryJira_BoardViewArgs = {
|
|
90617
91837
|
input: JiraBoardViewInput;
|
|
90618
91838
|
};
|
|
90619
|
-
export declare type QueryJira_CalendarViewArgs = {
|
|
90620
|
-
input: JiraViewInput;
|
|
90621
|
-
};
|
|
90622
91839
|
export declare type QueryJira_CategoryFieldArgs = {
|
|
90623
91840
|
cloudId: Scalars['ID']['input'];
|
|
90624
91841
|
};
|
|
@@ -91001,9 +92218,6 @@ export declare type QueryPolarisGetDetailedReactionArgs = {
|
|
|
91001
92218
|
export declare type QueryPolarisGetEarliestOnboardedProjectForCloudIdArgs = {
|
|
91002
92219
|
id: Scalars['ID']['input'];
|
|
91003
92220
|
};
|
|
91004
|
-
export declare type QueryPolarisGetEarliestViewViewedForUserArgs = {
|
|
91005
|
-
id: Scalars['ID']['input'];
|
|
91006
|
-
};
|
|
91007
92221
|
export declare type QueryPolarisGetReactionsArgs = {
|
|
91008
92222
|
input: PolarisGetReactionsInput;
|
|
91009
92223
|
};
|
|
@@ -91818,6 +93032,9 @@ export declare type RadarDateFieldValue = {
|
|
|
91818
93032
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
91819
93033
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
91820
93034
|
};
|
|
93035
|
+
export declare type RadarDeleteConnectorInput = {
|
|
93036
|
+
connectorId: Scalars['ID']['input'];
|
|
93037
|
+
};
|
|
91821
93038
|
export declare type RadarDeleteCustomFieldInput = {
|
|
91822
93039
|
entity: RadarEntityType;
|
|
91823
93040
|
relativeId: Scalars['String']['input'];
|
|
@@ -91865,6 +93082,10 @@ export declare type RadarFieldDefinition = {
|
|
|
91865
93082
|
sensitivityLevel: RadarSensitivityLevel;
|
|
91866
93083
|
type: RadarFieldType;
|
|
91867
93084
|
};
|
|
93085
|
+
export declare type RadarFieldPermissionsInput = {
|
|
93086
|
+
fieldId: Scalars['ID']['input'];
|
|
93087
|
+
principalId: Scalars['ID']['input'];
|
|
93088
|
+
};
|
|
91868
93089
|
export declare type RadarFieldSettingsInput = {
|
|
91869
93090
|
entity: RadarEntityType;
|
|
91870
93091
|
relativeId: Scalars['String']['input'];
|
|
@@ -94684,6 +95905,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
94684
95905
|
};
|
|
94685
95906
|
export declare type SearchThirdPartyProduct = {
|
|
94686
95907
|
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
95908
|
+
containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
94687
95909
|
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
94688
95910
|
linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
|
|
94689
95911
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96557,6 +97779,11 @@ export declare type SiteDescription = {
|
|
|
96557
97779
|
__typename?: 'SiteDescription';
|
|
96558
97780
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
96559
97781
|
};
|
|
97782
|
+
export declare type SiteEmailAddress = {
|
|
97783
|
+
__typename?: 'SiteEmailAddress';
|
|
97784
|
+
emailAddress?: Maybe<Scalars['String']['output']>;
|
|
97785
|
+
emailAddressStatus?: Maybe<ConfluenceSiteEmailAddressStatus>;
|
|
97786
|
+
};
|
|
96560
97787
|
export declare type SiteLookAndFeel = {
|
|
96561
97788
|
__typename?: 'SiteLookAndFeel';
|
|
96562
97789
|
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
@@ -100157,6 +101384,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
100157
101384
|
isArchived: Scalars['Boolean']['output'];
|
|
100158
101385
|
isWatching?: Maybe<Scalars['Boolean']['output']>;
|
|
100159
101386
|
key: Scalars['String']['output'];
|
|
101387
|
+
latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
100160
101388
|
name: Scalars['String']['output'];
|
|
100161
101389
|
owner?: Maybe<User>;
|
|
100162
101390
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
@@ -100467,6 +101695,17 @@ export declare type TownsquareGoalsSetWatchingGoalPayload = {
|
|
|
100467
101695
|
success: Scalars['Boolean']['output'];
|
|
100468
101696
|
user?: Maybe<User>;
|
|
100469
101697
|
};
|
|
101698
|
+
export declare type TownsquareGoalsShareGoalInput = {
|
|
101699
|
+
goalId: Scalars['ID']['input'];
|
|
101700
|
+
users: Array<InputMaybe<TownsquareShareGoalUserInput>>;
|
|
101701
|
+
};
|
|
101702
|
+
export declare type TownsquareGoalsShareGoalPayload = {
|
|
101703
|
+
__typename?: 'TownsquareGoalsShareGoalPayload';
|
|
101704
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101705
|
+
goal?: Maybe<TownsquareGoal>;
|
|
101706
|
+
success: Scalars['Boolean']['output'];
|
|
101707
|
+
usersAdded?: Maybe<Array<User>>;
|
|
101708
|
+
};
|
|
100470
101709
|
export declare type TownsquareHighlight = {
|
|
100471
101710
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
100472
101711
|
creator?: Maybe<User>;
|
|
@@ -101060,6 +102299,17 @@ export declare type TownsquareProjectsEditUpdatePayload = {
|
|
|
101060
102299
|
success: Scalars['Boolean']['output'];
|
|
101061
102300
|
update?: Maybe<TownsquareProjectUpdate>;
|
|
101062
102301
|
};
|
|
102302
|
+
export declare type TownsquareProjectsRemoveDependencyInput = {
|
|
102303
|
+
incomingProjectId: Scalars['ID']['input'];
|
|
102304
|
+
outgoingProjectId: Scalars['ID']['input'];
|
|
102305
|
+
};
|
|
102306
|
+
export declare type TownsquareProjectsRemoveDependencyPayload = {
|
|
102307
|
+
__typename?: 'TownsquareProjectsRemoveDependencyPayload';
|
|
102308
|
+
errors?: Maybe<Array<MutationError>>;
|
|
102309
|
+
incomingProject?: Maybe<TownsquareProject>;
|
|
102310
|
+
outgoingProject?: Maybe<TownsquareProject>;
|
|
102311
|
+
success: Scalars['Boolean']['output'];
|
|
102312
|
+
};
|
|
101063
102313
|
export declare type TownsquareProjectsRemoveGoalLinkInput = {
|
|
101064
102314
|
goalId: Scalars['ID']['input'];
|
|
101065
102315
|
projectId: Scalars['ID']['input'];
|
|
@@ -101289,6 +102539,10 @@ export declare type TownsquareSetParentGoalPayload = {
|
|
|
101289
102539
|
goal?: Maybe<TownsquareGoal>;
|
|
101290
102540
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
101291
102541
|
};
|
|
102542
|
+
export declare type TownsquareShareGoalUserInput = {
|
|
102543
|
+
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
102544
|
+
addAsWatcher?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102545
|
+
};
|
|
101292
102546
|
export declare type TownsquareShareProjectUserInput = {
|
|
101293
102547
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
101294
102548
|
addAsWatcher?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -101306,6 +102560,8 @@ export declare type TownsquareTag = Node & {
|
|
|
101306
102560
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
101307
102561
|
id: Scalars['ID']['output'];
|
|
101308
102562
|
name?: Maybe<Scalars['String']['output']>;
|
|
102563
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
102564
|
+
usageCount?: Maybe<Scalars['Int']['output']>;
|
|
101309
102565
|
};
|
|
101310
102566
|
export declare type TownsquareTagConnection = {
|
|
101311
102567
|
__typename?: 'TownsquareTagConnection';
|
|
@@ -101518,6 +102774,7 @@ export declare type TrelloActionAttachmentEntity = {
|
|
|
101518
102774
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101519
102775
|
previewUrl?: Maybe<Scalars['String']['output']>;
|
|
101520
102776
|
previewUrl2x?: Maybe<Scalars['String']['output']>;
|
|
102777
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
101521
102778
|
type?: Maybe<Scalars['String']['output']>;
|
|
101522
102779
|
url?: Maybe<Scalars['String']['output']>;
|
|
101523
102780
|
};
|
|
@@ -102216,6 +103473,8 @@ export declare type TrelloCard = Node & {
|
|
|
102216
103473
|
mirrorSourceNodeId?: Maybe<Scalars['String']['output']>;
|
|
102217
103474
|
name?: Maybe<Scalars['String']['output']>;
|
|
102218
103475
|
objectId: Scalars['ID']['output'];
|
|
103476
|
+
originalDesc?: Maybe<TrelloUserGeneratedText>;
|
|
103477
|
+
originalName?: Maybe<TrelloUserGeneratedText>;
|
|
102219
103478
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
102220
103479
|
position?: Maybe<Scalars['Float']['output']>;
|
|
102221
103480
|
powerUpData?: Maybe<TrelloPowerUpDataConnection>;
|
|
@@ -102488,6 +103747,7 @@ export declare type TrelloCardEdgeUpdated = {
|
|
|
102488
103747
|
};
|
|
102489
103748
|
export declare enum TrelloCardExternalSource {
|
|
102490
103749
|
Email = "EMAIL",
|
|
103750
|
+
Loom = "LOOM",
|
|
102491
103751
|
Msteams = "MSTEAMS",
|
|
102492
103752
|
Siri = "SIRI",
|
|
102493
103753
|
Slack = "SLACK"
|
|
@@ -102841,8 +104101,11 @@ export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
|
|
|
102841
104101
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
102842
104102
|
};
|
|
102843
104103
|
export declare type TrelloCreateCardInput = {
|
|
104104
|
+
externalSource?: InputMaybe<TrelloCardExternalSource>;
|
|
102844
104105
|
listId: Scalars['ID']['input'];
|
|
102845
104106
|
name: Scalars['String']['input'];
|
|
104107
|
+
position?: InputMaybe<Scalars['TrelloCardPosition']['input']>;
|
|
104108
|
+
urlSource?: InputMaybe<Scalars['String']['input']>;
|
|
102846
104109
|
};
|
|
102847
104110
|
export declare type TrelloCreateCardPayload = Payload & {
|
|
102848
104111
|
__typename?: 'TrelloCreateCardPayload';
|
|
@@ -103299,6 +104562,7 @@ export declare type TrelloMemberBoardStarConnection = {
|
|
|
103299
104562
|
export declare type TrelloMemberBoardStarEdge = {
|
|
103300
104563
|
__typename?: 'TrelloMemberBoardStarEdge';
|
|
103301
104564
|
cursor: Scalars['String']['output'];
|
|
104565
|
+
id: Scalars['ID']['output'];
|
|
103302
104566
|
node: TrelloBoard;
|
|
103303
104567
|
position: Scalars['Float']['output'];
|
|
103304
104568
|
};
|
|
@@ -106696,7 +107960,6 @@ export declare type UpdatePolarisViewInput = {
|
|
|
106696
107960
|
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106697
107961
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
106698
107962
|
lastCommentsViewedTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
106699
|
-
lastViewedTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
106700
107963
|
layoutType?: InputMaybe<PolarisViewLayoutType>;
|
|
106701
107964
|
matrixConfig?: InputMaybe<UpdatePolarisMatrixConfig>;
|
|
106702
107965
|
name?: InputMaybe<Scalars['String']['input']>;
|