@forge/cli-shared 8.3.1-next.3 → 8.3.1-next.4
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 +6 -0
- package/out/graphql/graphql-types.d.ts +1067 -22
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +84 -22
- package/out/ui/text.d.ts +3 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -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>>>;
|
|
@@ -5616,6 +5668,15 @@ export declare type CcpMultipleProductUpgradesExperienceCapability = CommerceExp
|
|
|
5616
5668
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
5617
5669
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
5618
5670
|
};
|
|
5671
|
+
export declare type CcpMutationApi = {
|
|
5672
|
+
__typename?: 'CcpMutationApi';
|
|
5673
|
+
updateLicenseServerId?: Maybe<CcpUpdateLicenseServerIdResult>;
|
|
5674
|
+
};
|
|
5675
|
+
export declare type CcpMutationApiUpdateLicenseServerIdArgs = {
|
|
5676
|
+
entitlementId: Scalars['ID']['input'];
|
|
5677
|
+
serverId: Scalars['ID']['input'];
|
|
5678
|
+
transactionAccountId: Scalars['ID']['input'];
|
|
5679
|
+
};
|
|
5619
5680
|
export declare type CcpOffering = CommerceOffering & Node & {
|
|
5620
5681
|
__typename?: 'CcpOffering';
|
|
5621
5682
|
allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -6826,6 +6887,12 @@ export declare enum CcpTrialEndBehaviour {
|
|
|
6826
6887
|
BillingPlan = "BILLING_PLAN",
|
|
6827
6888
|
TrialPlan = "TRIAL_PLAN"
|
|
6828
6889
|
}
|
|
6890
|
+
export declare type CcpUpdateLicenseServerIdResult = {
|
|
6891
|
+
__typename?: 'CcpUpdateLicenseServerIdResult';
|
|
6892
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
6893
|
+
license?: Maybe<CcpLicense>;
|
|
6894
|
+
success: Scalars['Boolean']['output'];
|
|
6895
|
+
};
|
|
6829
6896
|
export declare type CcpUsageConfigScale = {
|
|
6830
6897
|
__typename?: 'CcpUsageConfigScale';
|
|
6831
6898
|
output?: Maybe<Scalars['String']['output']>;
|
|
@@ -7391,6 +7458,7 @@ export declare type CommerceChargeQuantity = {
|
|
|
7391
7458
|
quantity?: Maybe<Scalars['Float']['output']>;
|
|
7392
7459
|
};
|
|
7393
7460
|
export declare type CommerceEntitlement = {
|
|
7461
|
+
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
7394
7462
|
experienceCapabilities?: Maybe<CommerceEntitlementExperienceCapabilities>;
|
|
7395
7463
|
id: Scalars['ID']['output'];
|
|
7396
7464
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
@@ -12703,6 +12771,18 @@ export declare enum ComponentSyncEventStatus {
|
|
|
12703
12771
|
Success = "SUCCESS",
|
|
12704
12772
|
UserError = "USER_ERROR"
|
|
12705
12773
|
}
|
|
12774
|
+
export declare type ConfluenceAddCustomApplicationLinkInput = {
|
|
12775
|
+
allowedGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
12776
|
+
displayName: Scalars['String']['input'];
|
|
12777
|
+
isHidden: Scalars['Boolean']['input'];
|
|
12778
|
+
url: Scalars['String']['input'];
|
|
12779
|
+
};
|
|
12780
|
+
export declare type ConfluenceAddCustomApplicationLinkPayload = Payload & {
|
|
12781
|
+
__typename?: 'ConfluenceAddCustomApplicationLinkPayload';
|
|
12782
|
+
applicationLink?: Maybe<ConfluenceCustomApplicationLink>;
|
|
12783
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12784
|
+
success: Scalars['Boolean']['output'];
|
|
12785
|
+
};
|
|
12706
12786
|
export declare type ConfluenceAdminAnnouncementBanner = {
|
|
12707
12787
|
__typename?: 'ConfluenceAdminAnnouncementBanner';
|
|
12708
12788
|
appearance: Scalars['String']['output'];
|
|
@@ -12780,6 +12860,19 @@ export declare enum ConfluenceAppInstallationLicenseCapabilitySet {
|
|
|
12780
12860
|
CapabilityAdvanced = "CAPABILITY_ADVANCED",
|
|
12781
12861
|
CapabilityStandard = "CAPABILITY_STANDARD"
|
|
12782
12862
|
}
|
|
12863
|
+
export declare type ConfluenceAppLinkMapping = {
|
|
12864
|
+
newAppLink: ConfluenceAppLinkMetadataInput;
|
|
12865
|
+
oldAppLink: ConfluenceAppLinkMetadataInput;
|
|
12866
|
+
};
|
|
12867
|
+
export declare type ConfluenceAppLinkMetaData = {
|
|
12868
|
+
__typename?: 'ConfluenceAppLinkMetaData';
|
|
12869
|
+
serverId: Scalars['ID']['output'];
|
|
12870
|
+
serverName: Scalars['String']['output'];
|
|
12871
|
+
};
|
|
12872
|
+
export declare type ConfluenceAppLinkMetadataInput = {
|
|
12873
|
+
serverId: Scalars['ID']['input'];
|
|
12874
|
+
serverName: Scalars['String']['input'];
|
|
12875
|
+
};
|
|
12783
12876
|
export declare type ConfluenceApplicationLink = {
|
|
12784
12877
|
__typename?: 'ConfluenceApplicationLink';
|
|
12785
12878
|
applicationId: Scalars['String']['output'];
|
|
@@ -12791,6 +12884,17 @@ export declare type ConfluenceApplicationLink = {
|
|
|
12791
12884
|
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
12792
12885
|
typeId: Scalars['String']['output'];
|
|
12793
12886
|
};
|
|
12887
|
+
export declare enum ConfluenceAttachmentSecurityLevel {
|
|
12888
|
+
Insecure = "INSECURE",
|
|
12889
|
+
Secure = "SECURE",
|
|
12890
|
+
Smart = "SMART"
|
|
12891
|
+
}
|
|
12892
|
+
export declare type ConfluenceAttachmentSettings = {
|
|
12893
|
+
__typename?: 'ConfluenceAttachmentSettings';
|
|
12894
|
+
attachmentSecurityLevel?: Maybe<ConfluenceAttachmentSecurityLevel>;
|
|
12895
|
+
maxAttachmentSize?: Maybe<Scalars['Long']['output']>;
|
|
12896
|
+
maxAttachmentsPerUpload?: Maybe<Scalars['Int']['output']>;
|
|
12897
|
+
};
|
|
12794
12898
|
export declare type ConfluenceBlockedAccessAssignableSpaceRole = {
|
|
12795
12899
|
__typename?: 'ConfluenceBlockedAccessAssignableSpaceRole';
|
|
12796
12900
|
roleDescription: Scalars['String']['output'];
|
|
@@ -12932,6 +13036,16 @@ export declare type ConfluenceCalendarTimezones = {
|
|
|
12932
13036
|
__typename?: 'ConfluenceCalendarTimezones';
|
|
12933
13037
|
timezones?: Maybe<Array<Maybe<ConfluenceCalendarTimeZone>>>;
|
|
12934
13038
|
};
|
|
13039
|
+
export declare type ConfluenceChangeOrderOfCustomApplicationLinkInput = {
|
|
13040
|
+
id: Scalars['ID']['input'];
|
|
13041
|
+
idAfter?: InputMaybe<Scalars['ID']['input']>;
|
|
13042
|
+
isMoveToBeginning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13043
|
+
};
|
|
13044
|
+
export declare type ConfluenceChangeOrderOfCustomApplicationLinkPayload = Payload & {
|
|
13045
|
+
__typename?: 'ConfluenceChangeOrderOfCustomApplicationLinkPayload';
|
|
13046
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13047
|
+
success: Scalars['Boolean']['output'];
|
|
13048
|
+
};
|
|
12935
13049
|
export declare type ConfluenceChildContent = {
|
|
12936
13050
|
__typename?: 'ConfluenceChildContent';
|
|
12937
13051
|
attachment: PaginatedContentList;
|
|
@@ -13162,6 +13276,12 @@ export declare enum ConfluenceContentStatus {
|
|
|
13162
13276
|
Historical = "HISTORICAL",
|
|
13163
13277
|
Trashed = "TRASHED"
|
|
13164
13278
|
}
|
|
13279
|
+
export declare type ConfluenceContentTemplateRef = {
|
|
13280
|
+
__typename?: 'ConfluenceContentTemplateRef';
|
|
13281
|
+
id: Scalars['ID']['output'];
|
|
13282
|
+
moduleCompleteKey?: Maybe<Scalars['String']['output']>;
|
|
13283
|
+
templateId?: Maybe<Scalars['ID']['output']>;
|
|
13284
|
+
};
|
|
13165
13285
|
export declare type ConfluenceContentTitleEmoji = {
|
|
13166
13286
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
13167
13287
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -13389,6 +13509,28 @@ export declare type ConfluenceCurrentContentNativeProperties = {
|
|
|
13389
13509
|
__typename?: 'ConfluenceCurrentContentNativeProperties';
|
|
13390
13510
|
contentState?: Maybe<ConfluenceContentState>;
|
|
13391
13511
|
};
|
|
13512
|
+
export declare type ConfluenceCustomApplicationLink = {
|
|
13513
|
+
__typename?: 'ConfluenceCustomApplicationLink';
|
|
13514
|
+
allowedGroups?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13515
|
+
applicationType?: Maybe<Scalars['String']['output']>;
|
|
13516
|
+
displayName: Scalars['String']['output'];
|
|
13517
|
+
id: Scalars['ID']['output'];
|
|
13518
|
+
isEditable: Scalars['Boolean']['output'];
|
|
13519
|
+
isHidden: Scalars['Boolean']['output'];
|
|
13520
|
+
sourceApplicationName?: Maybe<Scalars['String']['output']>;
|
|
13521
|
+
sourceApplicationUrl?: Maybe<Scalars['String']['output']>;
|
|
13522
|
+
url: Scalars['String']['output'];
|
|
13523
|
+
};
|
|
13524
|
+
export declare type ConfluenceCustomPageSettings = {
|
|
13525
|
+
__typename?: 'ConfluenceCustomPageSettings';
|
|
13526
|
+
footerText?: Maybe<Scalars['String']['output']>;
|
|
13527
|
+
headerText?: Maybe<Scalars['String']['output']>;
|
|
13528
|
+
};
|
|
13529
|
+
export declare type ConfluenceCustomPageSpaceSettings = {
|
|
13530
|
+
__typename?: 'ConfluenceCustomPageSpaceSettings';
|
|
13531
|
+
footerText?: Maybe<Scalars['String']['output']>;
|
|
13532
|
+
headerText?: Maybe<Scalars['String']['output']>;
|
|
13533
|
+
};
|
|
13392
13534
|
export declare type ConfluenceDataLifecycleManagementPolicy = {
|
|
13393
13535
|
__typename?: 'ConfluenceDataLifecycleManagementPolicy';
|
|
13394
13536
|
dataRetentionPolicyDetailsForWorkspace: ConfluenceDataRetentionPolicyStatus;
|
|
@@ -13424,6 +13566,13 @@ export declare type ConfluenceDate = {
|
|
|
13424
13566
|
__typename?: 'ConfluenceDate';
|
|
13425
13567
|
value: Scalars['String']['output'];
|
|
13426
13568
|
};
|
|
13569
|
+
export declare type ConfluenceDefaultSpaceLogo = {
|
|
13570
|
+
__typename?: 'ConfluenceDefaultSpaceLogo';
|
|
13571
|
+
clientId?: Maybe<Scalars['ID']['output']>;
|
|
13572
|
+
isLogoDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
13573
|
+
mediaFileId?: Maybe<Scalars['ID']['output']>;
|
|
13574
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
13575
|
+
};
|
|
13427
13576
|
export declare type ConfluenceDeleteBlogPostPropertyInput = {
|
|
13428
13577
|
blogPostId: Scalars['ID']['input'];
|
|
13429
13578
|
key: Scalars['String']['input'];
|
|
@@ -13450,6 +13599,14 @@ export declare type ConfluenceDeleteCommentPayload = {
|
|
|
13450
13599
|
errors?: Maybe<Array<MutationError>>;
|
|
13451
13600
|
success: Scalars['Boolean']['output'];
|
|
13452
13601
|
};
|
|
13602
|
+
export declare type ConfluenceDeleteCustomApplicationLinkInput = {
|
|
13603
|
+
id: Scalars['ID']['input'];
|
|
13604
|
+
};
|
|
13605
|
+
export declare type ConfluenceDeleteCustomApplicationLinkPayload = Payload & {
|
|
13606
|
+
__typename?: 'ConfluenceDeleteCustomApplicationLinkPayload';
|
|
13607
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13608
|
+
success: Scalars['Boolean']['output'];
|
|
13609
|
+
};
|
|
13453
13610
|
export declare type ConfluenceDeleteCustomRoleInput = {
|
|
13454
13611
|
anonymousRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
13455
13612
|
guestRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -13478,6 +13635,14 @@ export declare type ConfluenceDeleteDraftPagePayload = Payload & {
|
|
|
13478
13635
|
errors?: Maybe<Array<MutationError>>;
|
|
13479
13636
|
success: Scalars['Boolean']['output'];
|
|
13480
13637
|
};
|
|
13638
|
+
export declare type ConfluenceDeleteGlobalPageTemplateInput = {
|
|
13639
|
+
id: Scalars['ID']['input'];
|
|
13640
|
+
};
|
|
13641
|
+
export declare type ConfluenceDeleteGlobalPageTemplatePayload = Payload & {
|
|
13642
|
+
__typename?: 'ConfluenceDeleteGlobalPageTemplatePayload';
|
|
13643
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13644
|
+
success: Scalars['Boolean']['output'];
|
|
13645
|
+
};
|
|
13481
13646
|
export declare type ConfluenceDeletePagePropertyInput = {
|
|
13482
13647
|
key: Scalars['String']['input'];
|
|
13483
13648
|
pageId: Scalars['ID']['input'];
|
|
@@ -13487,6 +13652,10 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
13487
13652
|
errors?: Maybe<Array<MutationError>>;
|
|
13488
13653
|
success: Scalars['Boolean']['output'];
|
|
13489
13654
|
};
|
|
13655
|
+
export declare type ConfluenceDeleteSpacePageTemplateInput = {
|
|
13656
|
+
id: Scalars['ID']['input'];
|
|
13657
|
+
spaceId: Scalars['Long']['input'];
|
|
13658
|
+
};
|
|
13490
13659
|
export declare type ConfluenceDeleteSubCalendarAllFutureEventsInput = {
|
|
13491
13660
|
recurUntil?: InputMaybe<Scalars['String']['input']>;
|
|
13492
13661
|
subCalendarId: Scalars['ID']['input'];
|
|
@@ -13562,6 +13731,12 @@ export declare type ConfluenceEditorSettings = {
|
|
|
13562
13731
|
export declare type ConfluenceEditorSettingsInput = {
|
|
13563
13732
|
toolbarDockingInitialPosition?: InputMaybe<Scalars['String']['input']>;
|
|
13564
13733
|
};
|
|
13734
|
+
export declare type ConfluenceEmailSettings = {
|
|
13735
|
+
__typename?: 'ConfluenceEmailSettings';
|
|
13736
|
+
customDomainEmails?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13737
|
+
defaultEmail?: Maybe<Scalars['String']['output']>;
|
|
13738
|
+
email?: Maybe<SiteEmailAddress>;
|
|
13739
|
+
};
|
|
13565
13740
|
export declare type ConfluenceEmbed = Node & {
|
|
13566
13741
|
__typename?: 'ConfluenceEmbed';
|
|
13567
13742
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -13589,6 +13764,23 @@ export declare type ConfluenceEmbedUpdated = {
|
|
|
13589
13764
|
isBlankStateUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
13590
13765
|
product?: Maybe<Scalars['String']['output']>;
|
|
13591
13766
|
};
|
|
13767
|
+
export declare type ConfluenceEnableBlueprintInput = {
|
|
13768
|
+
id: Scalars['ID']['input'];
|
|
13769
|
+
spaceId: Scalars['Long']['input'];
|
|
13770
|
+
};
|
|
13771
|
+
export declare type ConfluenceEnableBlueprintPayload = Payload & {
|
|
13772
|
+
__typename?: 'ConfluenceEnableBlueprintPayload';
|
|
13773
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13774
|
+
success: Scalars['Boolean']['output'];
|
|
13775
|
+
};
|
|
13776
|
+
export declare type ConfluenceEnableGlobalPageBlueprintInput = {
|
|
13777
|
+
id: Scalars['ID']['input'];
|
|
13778
|
+
};
|
|
13779
|
+
export declare type ConfluenceEnableGlobalPageBlueprintPayload = Payload & {
|
|
13780
|
+
__typename?: 'ConfluenceEnableGlobalPageBlueprintPayload';
|
|
13781
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13782
|
+
success: Scalars['Boolean']['output'];
|
|
13783
|
+
};
|
|
13592
13784
|
export declare type ConfluenceExpandTypeFromJira = {
|
|
13593
13785
|
__typename?: 'ConfluenceExpandTypeFromJira';
|
|
13594
13786
|
confluenceExpandTypeFromJira?: Maybe<Scalars['String']['output']>;
|
|
@@ -13765,10 +13957,49 @@ export declare type ConfluenceForgePayloadContext = {
|
|
|
13765
13957
|
localId?: InputMaybe<Scalars['String']['input']>;
|
|
13766
13958
|
moduleKey?: InputMaybe<Scalars['String']['input']>;
|
|
13767
13959
|
};
|
|
13960
|
+
export declare type ConfluenceFormattingSettings = {
|
|
13961
|
+
__typename?: 'ConfluenceFormattingSettings';
|
|
13962
|
+
dateFormat?: Maybe<Scalars['String']['output']>;
|
|
13963
|
+
dateTimeFormat?: Maybe<Scalars['String']['output']>;
|
|
13964
|
+
decimalNumberFormat?: Maybe<Scalars['String']['output']>;
|
|
13965
|
+
longNumberFormat?: Maybe<Scalars['String']['output']>;
|
|
13966
|
+
timeFormat?: Maybe<Scalars['String']['output']>;
|
|
13967
|
+
};
|
|
13768
13968
|
export declare type ConfluenceGeneratedSpaceKey = {
|
|
13769
13969
|
__typename?: 'ConfluenceGeneratedSpaceKey';
|
|
13770
13970
|
key?: Maybe<Scalars['String']['output']>;
|
|
13771
13971
|
};
|
|
13972
|
+
export declare type ConfluenceGlobalBlueprint = {
|
|
13973
|
+
__typename?: 'ConfluenceGlobalBlueprint';
|
|
13974
|
+
contentTemplateRefs?: Maybe<Array<Maybe<ConfluenceContentTemplateRef>>>;
|
|
13975
|
+
id: Scalars['ID']['output'];
|
|
13976
|
+
indexKey?: Maybe<Scalars['String']['output']>;
|
|
13977
|
+
indexPageTemplateRef?: Maybe<ConfluenceContentTemplateRef>;
|
|
13978
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
13979
|
+
isIndexDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
13980
|
+
isPromoted?: Maybe<Scalars['Boolean']['output']>;
|
|
13981
|
+
moduleCompleteKey?: Maybe<Scalars['String']['output']>;
|
|
13982
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13983
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
13984
|
+
};
|
|
13985
|
+
export declare type ConfluenceGlobalBlueprintSettings = {
|
|
13986
|
+
__typename?: 'ConfluenceGlobalBlueprintSettings';
|
|
13987
|
+
globalBlueprints?: Maybe<Array<Maybe<ConfluenceGlobalBlueprint>>>;
|
|
13988
|
+
isOnDemand?: Maybe<Scalars['Boolean']['output']>;
|
|
13989
|
+
isToggleModulesPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
13990
|
+
};
|
|
13991
|
+
export declare type ConfluenceGlobalPageTemplate = {
|
|
13992
|
+
__typename?: 'ConfluenceGlobalPageTemplate';
|
|
13993
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
13994
|
+
eligibilityStatus?: Maybe<Scalars['String']['output']>;
|
|
13995
|
+
id: Scalars['ID']['output'];
|
|
13996
|
+
isPromoted?: Maybe<Scalars['Boolean']['output']>;
|
|
13997
|
+
isSpaceAdministrator?: Maybe<Scalars['Boolean']['output']>;
|
|
13998
|
+
isSpaceCreator?: Maybe<Scalars['Boolean']['output']>;
|
|
13999
|
+
lastUpdatedDate?: Maybe<Scalars['String']['output']>;
|
|
14000
|
+
lastUpdater?: Maybe<ConfluenceUser>;
|
|
14001
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14002
|
+
};
|
|
13772
14003
|
export declare enum ConfluenceGraphQlDefaultTitleEmoji {
|
|
13773
14004
|
LivePageDefault = "LIVE_PAGE_DEFAULT",
|
|
13774
14005
|
None = "NONE"
|
|
@@ -13784,6 +14015,23 @@ export declare enum ConfluenceGroupUsageType {
|
|
|
13784
14015
|
TeamCollaboration = "TEAM_COLLABORATION",
|
|
13785
14016
|
UserbaseGroup = "USERBASE_GROUP"
|
|
13786
14017
|
}
|
|
14018
|
+
export declare type ConfluenceImportSpaceConfiguration = {
|
|
14019
|
+
__typename?: 'ConfluenceImportSpaceConfiguration';
|
|
14020
|
+
clientId?: Maybe<Scalars['ID']['output']>;
|
|
14021
|
+
isJiraProjectEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
14022
|
+
jiraProjectLinks?: Maybe<Array<Maybe<ConfluenceJiraProjectLink>>>;
|
|
14023
|
+
mediaToken?: Maybe<MediaToken>;
|
|
14024
|
+
};
|
|
14025
|
+
export declare type ConfluenceImportSpaceInput = {
|
|
14026
|
+
jiraProjectKey?: InputMaybe<Scalars['String']['input']>;
|
|
14027
|
+
mediaFileId: Scalars['ID']['input'];
|
|
14028
|
+
};
|
|
14029
|
+
export declare type ConfluenceImportSpacePayload = Payload & {
|
|
14030
|
+
__typename?: 'ConfluenceImportSpacePayload';
|
|
14031
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14032
|
+
success: Scalars['Boolean']['output'];
|
|
14033
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
14034
|
+
};
|
|
13787
14035
|
export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
|
|
13788
14036
|
__typename?: 'ConfluenceInlineComment';
|
|
13789
14037
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -13905,6 +14153,31 @@ export declare type ConfluenceInviteUserPayload = {
|
|
|
13905
14153
|
errors?: Maybe<Array<MutationError>>;
|
|
13906
14154
|
success: Scalars['Boolean']['output'];
|
|
13907
14155
|
};
|
|
14156
|
+
export declare type ConfluenceJiraMacroAppLinksScanningStatus = {
|
|
14157
|
+
__typename?: 'ConfluenceJiraMacroAppLinksScanningStatus';
|
|
14158
|
+
additionalMessage?: Maybe<Scalars['String']['output']>;
|
|
14159
|
+
problems?: Maybe<ConfluenceJiraMacroAppLinksValidatorResult>;
|
|
14160
|
+
status: ConfluenceJiraMacroAppLinksValidationStatus;
|
|
14161
|
+
};
|
|
14162
|
+
export declare enum ConfluenceJiraMacroAppLinksValidationStatus {
|
|
14163
|
+
Done = "DONE",
|
|
14164
|
+
Error = "ERROR",
|
|
14165
|
+
Fixing = "FIXING",
|
|
14166
|
+
NotStarted = "NOT_STARTED",
|
|
14167
|
+
NoApplink = "NO_APPLINK",
|
|
14168
|
+
Scanning = "SCANNING",
|
|
14169
|
+
WaitForConfig = "WAIT_FOR_CONFIG"
|
|
14170
|
+
}
|
|
14171
|
+
export declare type ConfluenceJiraMacroAppLinksValidatorResult = {
|
|
14172
|
+
__typename?: 'ConfluenceJiraMacroAppLinksValidatorResult';
|
|
14173
|
+
brokenAppLinks?: Maybe<Array<Maybe<ConfluenceAppLinkMetaData>>>;
|
|
14174
|
+
existingAppLinks?: Maybe<Array<Maybe<ConfluenceAppLinkMetaData>>>;
|
|
14175
|
+
};
|
|
14176
|
+
export declare type ConfluenceJiraProjectLink = {
|
|
14177
|
+
__typename?: 'ConfluenceJiraProjectLink';
|
|
14178
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
14179
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
14180
|
+
};
|
|
13908
14181
|
export declare type ConfluenceLabel = {
|
|
13909
14182
|
__typename?: 'ConfluenceLabel';
|
|
13910
14183
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -13925,6 +14198,15 @@ export declare type ConfluenceLabelWatchStatus = {
|
|
|
13925
14198
|
__typename?: 'ConfluenceLabelWatchStatus';
|
|
13926
14199
|
isWatching: Scalars['Boolean']['output'];
|
|
13927
14200
|
};
|
|
14201
|
+
export declare type ConfluenceLanguage = {
|
|
14202
|
+
__typename?: 'ConfluenceLanguage';
|
|
14203
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
14204
|
+
displayLanguage?: Maybe<Scalars['String']['output']>;
|
|
14205
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14206
|
+
encoding?: Maybe<Scalars['String']['output']>;
|
|
14207
|
+
language?: Maybe<Scalars['String']['output']>;
|
|
14208
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14209
|
+
};
|
|
13928
14210
|
export declare type ConfluenceLike = {
|
|
13929
14211
|
__typename?: 'ConfluenceLike';
|
|
13930
14212
|
likedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -13935,6 +14217,11 @@ export declare type ConfluenceLikesSummary = {
|
|
|
13935
14217
|
count?: Maybe<Scalars['Int']['output']>;
|
|
13936
14218
|
likes?: Maybe<Array<Maybe<ConfluenceLike>>>;
|
|
13937
14219
|
};
|
|
14220
|
+
export declare type ConfluenceLoginSettings = {
|
|
14221
|
+
__typename?: 'ConfluenceLoginSettings';
|
|
14222
|
+
enableElevatedSecurityCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
14223
|
+
loginAttemptsThreshold?: Maybe<Scalars['Int']['output']>;
|
|
14224
|
+
};
|
|
13938
14225
|
export declare type ConfluenceLongTask = {
|
|
13939
14226
|
__typename?: 'ConfluenceLongTask';
|
|
13940
14227
|
id: Scalars['ID']['output'];
|
|
@@ -13968,6 +14255,16 @@ export declare type ConfluenceLoomEntryPoints = {
|
|
|
13968
14255
|
__typename?: 'ConfluenceLoomEntryPoints';
|
|
13969
14256
|
isLoomEntryPointsEnabled: Scalars['Boolean']['output'];
|
|
13970
14257
|
};
|
|
14258
|
+
export declare type ConfluenceMacro = {
|
|
14259
|
+
__typename?: 'ConfluenceMacro';
|
|
14260
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
14261
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
14262
|
+
};
|
|
14263
|
+
export declare type ConfluenceMacroUsage = {
|
|
14264
|
+
__typename?: 'ConfluenceMacroUsage';
|
|
14265
|
+
unusedPluginMacros?: Maybe<Array<Maybe<ConfluenceUnusedPluginMacro>>>;
|
|
14266
|
+
usedPluginMacros?: Maybe<Array<Maybe<ConfluenceUsedPluginMacro>>>;
|
|
14267
|
+
};
|
|
13971
14268
|
export declare type ConfluenceMakeSubCalendarPrivateUrlInput = {
|
|
13972
14269
|
subCalendarId: Scalars['ID']['input'];
|
|
13973
14270
|
};
|
|
@@ -13996,6 +14293,8 @@ export declare type ConfluenceMarkCommentAsDanglingPayload = Payload & {
|
|
|
13996
14293
|
};
|
|
13997
14294
|
export declare type ConfluenceMutationApi = {
|
|
13998
14295
|
__typename?: 'ConfluenceMutationApi';
|
|
14296
|
+
addCustomApplicationLink?: Maybe<ConfluenceAddCustomApplicationLinkPayload>;
|
|
14297
|
+
changeOrderOfCustomApplicationLink?: Maybe<ConfluenceChangeOrderOfCustomApplicationLinkPayload>;
|
|
13999
14298
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
14000
14299
|
createBlogPostProperty?: Maybe<ConfluenceCreateBlogPostPropertyPayload>;
|
|
14001
14300
|
createFooterCommentOnBlogPost?: Maybe<ConfluenceCreateFooterCommentOnBlogPostPayload>;
|
|
@@ -14005,28 +14304,53 @@ export declare type ConfluenceMutationApi = {
|
|
|
14005
14304
|
createSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
14006
14305
|
deleteBlogPostProperty?: Maybe<ConfluenceDeleteBlogPostPropertyPayload>;
|
|
14007
14306
|
deleteComment?: Maybe<ConfluenceDeleteCommentPayload>;
|
|
14307
|
+
deleteCustomApplicationLink?: Maybe<ConfluenceDeleteCustomApplicationLinkPayload>;
|
|
14008
14308
|
deleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
14009
14309
|
deleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
14310
|
+
deleteGlobalPageTemplate?: Maybe<ConfluenceDeleteGlobalPageTemplatePayload>;
|
|
14010
14311
|
deletePageProperty?: Maybe<ConfluenceDeletePagePropertyPayload>;
|
|
14312
|
+
deleteSpacePageTemplate?: Maybe<ConfluenceDeleteGlobalPageTemplatePayload>;
|
|
14313
|
+
enableBlueprint?: Maybe<ConfluenceEnableBlueprintPayload>;
|
|
14314
|
+
enableGlobalBlueprint?: Maybe<ConfluenceEnableGlobalPageBlueprintPayload>;
|
|
14315
|
+
importSpace?: Maybe<ConfluenceImportSpacePayload>;
|
|
14316
|
+
promoteBlueprint?: Maybe<ConfluencePromoteBlueprintPayload>;
|
|
14317
|
+
promotePageTemplate?: Maybe<ConfluencePromotePageTemplatePayload>;
|
|
14011
14318
|
publishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
14012
14319
|
publishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
14013
14320
|
purgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
14014
14321
|
purgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
14015
14322
|
reopenInlineComment?: Maybe<ConfluenceReopenInlineCommentPayload>;
|
|
14323
|
+
repairJiraMacroAppLinks?: Maybe<ConfluenceRepairJiraMacroAppLinksPayload>;
|
|
14016
14324
|
replyToComment?: Maybe<ConfluenceReplyToCommentPayload>;
|
|
14325
|
+
requestSpaceAccess?: Maybe<ConfluenceRequestSpaceAccessPayload>;
|
|
14017
14326
|
resolveInlineComment?: Maybe<ConfluenceResolveInlineCommentPayload>;
|
|
14327
|
+
saveOrUpdateSpaceOwner?: Maybe<ConfluenceSaveOrUpdateSpaceOwnerPayload>;
|
|
14018
14328
|
trashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
14019
14329
|
trashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
14330
|
+
unpromoteBlueprint?: Maybe<ConfluenceUnpromoteBlueprintPayload>;
|
|
14331
|
+
unpromotePageTemplate?: Maybe<ConfluenceUnpromotePageTemplatePayload>;
|
|
14020
14332
|
updateComment?: Maybe<ConfluenceUpdateCommentPayload>;
|
|
14021
14333
|
updateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
14022
14334
|
updateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
14335
|
+
updateCustomApplicationLink?: Maybe<ConfluenceUpdateCustomApplicationLinkPayload>;
|
|
14023
14336
|
updateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
14024
14337
|
updateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
14338
|
+
updateGlobalDefaultLanguageConfiguration?: Maybe<ConfluenceUpdateGlobalDefaultLocaleConfigurationPayload>;
|
|
14339
|
+
updateGlobalPageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
14340
|
+
updateIndexingLanguageConfiguration?: Maybe<ConfluenceUpdateIndexingLanguageConfigurationPayload>;
|
|
14341
|
+
updateSiteConfiguration?: Maybe<ConfluenceUpdateSiteConfigurationPayload>;
|
|
14025
14342
|
updateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
14343
|
+
updateSpacePageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
14026
14344
|
updateSpaceSettings?: Maybe<ConfluenceUpdateSpaceSettingsPayload>;
|
|
14027
14345
|
updateValueBlogPostProperty?: Maybe<ConfluenceUpdateValueBlogPostPropertyPayload>;
|
|
14028
14346
|
updateValuePageProperty?: Maybe<ConfluenceUpdateValuePagePropertyPayload>;
|
|
14029
14347
|
};
|
|
14348
|
+
export declare type ConfluenceMutationApiAddCustomApplicationLinkArgs = {
|
|
14349
|
+
input: ConfluenceAddCustomApplicationLinkInput;
|
|
14350
|
+
};
|
|
14351
|
+
export declare type ConfluenceMutationApiChangeOrderOfCustomApplicationLinkArgs = {
|
|
14352
|
+
input: ConfluenceChangeOrderOfCustomApplicationLinkInput;
|
|
14353
|
+
};
|
|
14030
14354
|
export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
14031
14355
|
input: ConfluenceCreateBlogPostInput;
|
|
14032
14356
|
};
|
|
@@ -14055,15 +14379,39 @@ export declare type ConfluenceMutationApiDeleteBlogPostPropertyArgs = {
|
|
|
14055
14379
|
export declare type ConfluenceMutationApiDeleteCommentArgs = {
|
|
14056
14380
|
input: ConfluenceDeleteCommentInput;
|
|
14057
14381
|
};
|
|
14382
|
+
export declare type ConfluenceMutationApiDeleteCustomApplicationLinkArgs = {
|
|
14383
|
+
input: ConfluenceDeleteCustomApplicationLinkInput;
|
|
14384
|
+
};
|
|
14058
14385
|
export declare type ConfluenceMutationApiDeleteDraftBlogPostArgs = {
|
|
14059
14386
|
input: ConfluenceDeleteDraftBlogPostInput;
|
|
14060
14387
|
};
|
|
14061
14388
|
export declare type ConfluenceMutationApiDeleteDraftPageArgs = {
|
|
14062
14389
|
input: ConfluenceDeleteDraftPageInput;
|
|
14063
14390
|
};
|
|
14391
|
+
export declare type ConfluenceMutationApiDeleteGlobalPageTemplateArgs = {
|
|
14392
|
+
input: ConfluenceDeleteGlobalPageTemplateInput;
|
|
14393
|
+
};
|
|
14064
14394
|
export declare type ConfluenceMutationApiDeletePagePropertyArgs = {
|
|
14065
14395
|
input: ConfluenceDeletePagePropertyInput;
|
|
14066
14396
|
};
|
|
14397
|
+
export declare type ConfluenceMutationApiDeleteSpacePageTemplateArgs = {
|
|
14398
|
+
input: ConfluenceDeleteSpacePageTemplateInput;
|
|
14399
|
+
};
|
|
14400
|
+
export declare type ConfluenceMutationApiEnableBlueprintArgs = {
|
|
14401
|
+
input: ConfluenceEnableBlueprintInput;
|
|
14402
|
+
};
|
|
14403
|
+
export declare type ConfluenceMutationApiEnableGlobalBlueprintArgs = {
|
|
14404
|
+
input: ConfluenceEnableGlobalPageBlueprintInput;
|
|
14405
|
+
};
|
|
14406
|
+
export declare type ConfluenceMutationApiImportSpaceArgs = {
|
|
14407
|
+
input: ConfluenceImportSpaceInput;
|
|
14408
|
+
};
|
|
14409
|
+
export declare type ConfluenceMutationApiPromoteBlueprintArgs = {
|
|
14410
|
+
input: ConfluencePromoteBlueprintInput;
|
|
14411
|
+
};
|
|
14412
|
+
export declare type ConfluenceMutationApiPromotePageTemplateArgs = {
|
|
14413
|
+
input: ConfluencePromotePageTemplateInput;
|
|
14414
|
+
};
|
|
14067
14415
|
export declare type ConfluenceMutationApiPublishBlogPostArgs = {
|
|
14068
14416
|
input: ConfluencePublishBlogPostInput;
|
|
14069
14417
|
};
|
|
@@ -14079,18 +14427,33 @@ export declare type ConfluenceMutationApiPurgePageArgs = {
|
|
|
14079
14427
|
export declare type ConfluenceMutationApiReopenInlineCommentArgs = {
|
|
14080
14428
|
input: ConfluenceReopenInlineCommentInput;
|
|
14081
14429
|
};
|
|
14430
|
+
export declare type ConfluenceMutationApiRepairJiraMacroAppLinksArgs = {
|
|
14431
|
+
input: ConfluenceRepairJiraMacroAppLinksInput;
|
|
14432
|
+
};
|
|
14082
14433
|
export declare type ConfluenceMutationApiReplyToCommentArgs = {
|
|
14083
14434
|
input: ConfluenceReplyToCommentInput;
|
|
14084
14435
|
};
|
|
14436
|
+
export declare type ConfluenceMutationApiRequestSpaceAccessArgs = {
|
|
14437
|
+
confluenceRequestSpaceAccessInput: ConfluenceRequestSpaceAccessInput;
|
|
14438
|
+
};
|
|
14085
14439
|
export declare type ConfluenceMutationApiResolveInlineCommentArgs = {
|
|
14086
14440
|
input: ConfluenceResolveInlineCommentInput;
|
|
14087
14441
|
};
|
|
14442
|
+
export declare type ConfluenceMutationApiSaveOrUpdateSpaceOwnerArgs = {
|
|
14443
|
+
input: ConfluenceSaveOrUpdateSpaceOwnerInput;
|
|
14444
|
+
};
|
|
14088
14445
|
export declare type ConfluenceMutationApiTrashBlogPostArgs = {
|
|
14089
14446
|
input: ConfluenceTrashBlogPostInput;
|
|
14090
14447
|
};
|
|
14091
14448
|
export declare type ConfluenceMutationApiTrashPageArgs = {
|
|
14092
14449
|
input: ConfluenceTrashPageInput;
|
|
14093
14450
|
};
|
|
14451
|
+
export declare type ConfluenceMutationApiUnpromoteBlueprintArgs = {
|
|
14452
|
+
input: ConfluenceUnpromoteBlueprintInput;
|
|
14453
|
+
};
|
|
14454
|
+
export declare type ConfluenceMutationApiUnpromotePageTemplateArgs = {
|
|
14455
|
+
input: ConfluenceUnpromotePageTemplateInput;
|
|
14456
|
+
};
|
|
14094
14457
|
export declare type ConfluenceMutationApiUpdateCommentArgs = {
|
|
14095
14458
|
input: ConfluenceUpdateCommentInput;
|
|
14096
14459
|
};
|
|
@@ -14100,15 +14463,33 @@ export declare type ConfluenceMutationApiUpdateCurrentBlogPostArgs = {
|
|
|
14100
14463
|
export declare type ConfluenceMutationApiUpdateCurrentPageArgs = {
|
|
14101
14464
|
input: ConfluenceUpdateCurrentPageInput;
|
|
14102
14465
|
};
|
|
14466
|
+
export declare type ConfluenceMutationApiUpdateCustomApplicationLinkArgs = {
|
|
14467
|
+
input: ConfluenceUpdateCustomApplicationLinkInput;
|
|
14468
|
+
};
|
|
14103
14469
|
export declare type ConfluenceMutationApiUpdateDraftBlogPostArgs = {
|
|
14104
14470
|
input: ConfluenceUpdateDraftBlogPostInput;
|
|
14105
14471
|
};
|
|
14106
14472
|
export declare type ConfluenceMutationApiUpdateDraftPageArgs = {
|
|
14107
14473
|
input: ConfluenceUpdateDraftPageInput;
|
|
14108
14474
|
};
|
|
14475
|
+
export declare type ConfluenceMutationApiUpdateGlobalDefaultLanguageConfigurationArgs = {
|
|
14476
|
+
input: ConfluenceUpdateGlobalDefaultLocaleConfigurationInput;
|
|
14477
|
+
};
|
|
14478
|
+
export declare type ConfluenceMutationApiUpdateGlobalPageTemplateDescriptionArgs = {
|
|
14479
|
+
input: ConfluenceUpdateGlobalPageTemplateDescriptionInput;
|
|
14480
|
+
};
|
|
14481
|
+
export declare type ConfluenceMutationApiUpdateIndexingLanguageConfigurationArgs = {
|
|
14482
|
+
input: ConfluenceUpdateIndexingLanguageConfigurationInput;
|
|
14483
|
+
};
|
|
14484
|
+
export declare type ConfluenceMutationApiUpdateSiteConfigurationArgs = {
|
|
14485
|
+
input: ConfluenceUpdateSiteConfigurationInput;
|
|
14486
|
+
};
|
|
14109
14487
|
export declare type ConfluenceMutationApiUpdateSpaceArgs = {
|
|
14110
14488
|
input: ConfluenceUpdateSpaceInput;
|
|
14111
14489
|
};
|
|
14490
|
+
export declare type ConfluenceMutationApiUpdateSpacePageTemplateDescriptionArgs = {
|
|
14491
|
+
input: ConfluenceUpdateSpacePageTemplateDescriptionInput;
|
|
14492
|
+
};
|
|
14112
14493
|
export declare type ConfluenceMutationApiUpdateSpaceSettingsArgs = {
|
|
14113
14494
|
input: ConfluenceUpdateSpaceSettingsInput;
|
|
14114
14495
|
};
|
|
@@ -14122,10 +14503,37 @@ export declare enum ConfluenceMutationContentStatus {
|
|
|
14122
14503
|
Current = "CURRENT",
|
|
14123
14504
|
Draft = "DRAFT"
|
|
14124
14505
|
}
|
|
14506
|
+
export declare type ConfluenceNewCodeMacro = {
|
|
14507
|
+
__typename?: 'ConfluenceNewCodeMacro';
|
|
14508
|
+
languages?: Maybe<Array<Maybe<ConfluenceNewCodeMacroLanguage>>>;
|
|
14509
|
+
selectedLanguage?: Maybe<ConfluenceNewCodeMacroLanguage>;
|
|
14510
|
+
selectedTheme?: Maybe<ConfluenceNewCodeMacroTheme>;
|
|
14511
|
+
themes?: Maybe<Array<Maybe<ConfluenceNewCodeMacroTheme>>>;
|
|
14512
|
+
};
|
|
14513
|
+
export declare type ConfluenceNewCodeMacroLanguage = {
|
|
14514
|
+
__typename?: 'ConfluenceNewCodeMacroLanguage';
|
|
14515
|
+
aliases: Array<Maybe<Scalars['String']['output']>>;
|
|
14516
|
+
builtIn: Scalars['Boolean']['output'];
|
|
14517
|
+
friendlyName: Scalars['String']['output'];
|
|
14518
|
+
name: Scalars['String']['output'];
|
|
14519
|
+
webResource: Scalars['String']['output'];
|
|
14520
|
+
};
|
|
14521
|
+
export declare type ConfluenceNewCodeMacroTheme = {
|
|
14522
|
+
__typename?: 'ConfluenceNewCodeMacroTheme';
|
|
14523
|
+
builtIn: Scalars['Boolean']['output'];
|
|
14524
|
+
defaultLayout: Array<Maybe<MapOfStringToString>>;
|
|
14525
|
+
name: Scalars['String']['output'];
|
|
14526
|
+
styleSheetUrl: Scalars['String']['output'];
|
|
14527
|
+
webResource: Scalars['String']['output'];
|
|
14528
|
+
};
|
|
14125
14529
|
export declare enum ConfluenceNotesOrdering {
|
|
14126
14530
|
DateLastModifiedAsc = "DATE_LAST_MODIFIED_ASC",
|
|
14127
14531
|
DateLastModifiedDesc = "DATE_LAST_MODIFIED_DESC"
|
|
14128
14532
|
}
|
|
14533
|
+
export declare type ConfluenceNotificationsSettings = {
|
|
14534
|
+
__typename?: 'ConfluenceNotificationsSettings';
|
|
14535
|
+
emailSettings?: Maybe<ConfluenceEmailSettings>;
|
|
14536
|
+
};
|
|
14129
14537
|
export declare type ConfluenceOperationCheck = {
|
|
14130
14538
|
__typename?: 'ConfluenceOperationCheck';
|
|
14131
14539
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -14258,6 +14666,20 @@ export declare type ConfluencePdfExportDownloadLink = {
|
|
|
14258
14666
|
__typename?: 'ConfluencePdfExportDownloadLink';
|
|
14259
14667
|
link?: Maybe<Scalars['String']['output']>;
|
|
14260
14668
|
};
|
|
14669
|
+
export declare type ConfluencePdfExportSettings = {
|
|
14670
|
+
__typename?: 'ConfluencePdfExportSettings';
|
|
14671
|
+
footer?: Maybe<Scalars['String']['output']>;
|
|
14672
|
+
header?: Maybe<Scalars['String']['output']>;
|
|
14673
|
+
style?: Maybe<Scalars['String']['output']>;
|
|
14674
|
+
titlePage?: Maybe<Scalars['String']['output']>;
|
|
14675
|
+
};
|
|
14676
|
+
export declare type ConfluencePdfExportSpaceSettings = {
|
|
14677
|
+
__typename?: 'ConfluencePdfExportSpaceSettings';
|
|
14678
|
+
footer?: Maybe<Scalars['String']['output']>;
|
|
14679
|
+
header?: Maybe<Scalars['String']['output']>;
|
|
14680
|
+
style?: Maybe<Scalars['String']['output']>;
|
|
14681
|
+
titlePage?: Maybe<Scalars['String']['output']>;
|
|
14682
|
+
};
|
|
14261
14683
|
export declare enum ConfluencePdfExportState {
|
|
14262
14684
|
Done = "DONE",
|
|
14263
14685
|
Failed = "FAILED",
|
|
@@ -14321,6 +14743,24 @@ export declare type ConfluencePrivacyMode = {
|
|
|
14321
14743
|
__typename?: 'ConfluencePrivacyMode';
|
|
14322
14744
|
isPrivacyModeEnabled: Scalars['Boolean']['output'];
|
|
14323
14745
|
};
|
|
14746
|
+
export declare type ConfluencePromoteBlueprintInput = {
|
|
14747
|
+
id: Scalars['ID']['input'];
|
|
14748
|
+
spaceId: Scalars['Long']['input'];
|
|
14749
|
+
};
|
|
14750
|
+
export declare type ConfluencePromoteBlueprintPayload = Payload & {
|
|
14751
|
+
__typename?: 'ConfluencePromoteBlueprintPayload';
|
|
14752
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14753
|
+
success: Scalars['Boolean']['output'];
|
|
14754
|
+
};
|
|
14755
|
+
export declare type ConfluencePromotePageTemplateInput = {
|
|
14756
|
+
id: Scalars['ID']['input'];
|
|
14757
|
+
spaceId: Scalars['Long']['input'];
|
|
14758
|
+
};
|
|
14759
|
+
export declare type ConfluencePromotePageTemplatePayload = Payload & {
|
|
14760
|
+
__typename?: 'ConfluencePromotePageTemplatePayload';
|
|
14761
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14762
|
+
success: Scalars['Boolean']['output'];
|
|
14763
|
+
};
|
|
14324
14764
|
export declare type ConfluencePublishBlogPostInput = {
|
|
14325
14765
|
id: Scalars['ID']['input'];
|
|
14326
14766
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14369,20 +14809,35 @@ export declare type ConfluenceQueryApi = {
|
|
|
14369
14809
|
blogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
14370
14810
|
comment?: Maybe<ConfluenceComment>;
|
|
14371
14811
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
14812
|
+
customPageSpaceSettings?: Maybe<ConfluenceCustomPageSpaceSettings>;
|
|
14372
14813
|
database?: Maybe<ConfluenceDatabase>;
|
|
14373
14814
|
databases?: Maybe<Array<Maybe<ConfluenceDatabase>>>;
|
|
14815
|
+
defaultSpaceLogo?: Maybe<ConfluenceDefaultSpaceLogo>;
|
|
14374
14816
|
embed?: Maybe<ConfluenceEmbed>;
|
|
14375
14817
|
embeds?: Maybe<Array<Maybe<ConfluenceEmbed>>>;
|
|
14376
14818
|
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
14377
14819
|
folder?: Maybe<ConfluenceFolder>;
|
|
14378
14820
|
folders?: Maybe<Array<Maybe<ConfluenceFolder>>>;
|
|
14821
|
+
globalBlueprintSettings?: Maybe<ConfluenceGlobalBlueprintSettings>;
|
|
14822
|
+
globalSpaceBlueprintSettings?: Maybe<ConfluenceGlobalBlueprintSettings>;
|
|
14823
|
+
importSpaceConfiguration?: Maybe<ConfluenceImportSpaceConfiguration>;
|
|
14379
14824
|
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
14825
|
+
jiraMacroAppLinksScanningStatus?: Maybe<ConfluenceJiraMacroAppLinksScanningStatus>;
|
|
14380
14826
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
14827
|
+
macroUsage?: Maybe<ConfluenceMacroUsage>;
|
|
14828
|
+
newCodeMacro?: Maybe<ConfluenceNewCodeMacro>;
|
|
14829
|
+
notificationsSettings?: Maybe<ConfluenceNotificationsSettings>;
|
|
14381
14830
|
page?: Maybe<ConfluencePage>;
|
|
14382
14831
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
14832
|
+
pdfExportSpaceSettings?: Maybe<ConfluencePdfExportSpaceSettings>;
|
|
14383
14833
|
searchLabels?: Maybe<ConfluenceLabelSearchResults>;
|
|
14834
|
+
siteConfiguration?: Maybe<ConfluenceSiteConfiguration>;
|
|
14384
14835
|
space?: Maybe<ConfluenceSpace>;
|
|
14385
14836
|
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
14837
|
+
systemTemplates?: Maybe<Array<Maybe<ConfluenceSystemTemplate>>>;
|
|
14838
|
+
teamCalendar?: Maybe<ConfluenceTeamCalendar>;
|
|
14839
|
+
templates?: Maybe<ConfluenceTemplates>;
|
|
14840
|
+
themes?: Maybe<ConfluenceThemes>;
|
|
14386
14841
|
validateSpaceKey?: Maybe<ConfluenceValidateSpaceKeyResponse>;
|
|
14387
14842
|
whiteboard?: Maybe<ConfluenceWhiteboard>;
|
|
14388
14843
|
whiteboards?: Maybe<Array<Maybe<ConfluenceWhiteboard>>>;
|
|
@@ -14399,6 +14854,9 @@ export declare type ConfluenceQueryApiCommentArgs = {
|
|
|
14399
14854
|
export declare type ConfluenceQueryApiCommentsArgs = {
|
|
14400
14855
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
14401
14856
|
};
|
|
14857
|
+
export declare type ConfluenceQueryApiCustomPageSpaceSettingsArgs = {
|
|
14858
|
+
spaceId: Scalars['Long']['input'];
|
|
14859
|
+
};
|
|
14402
14860
|
export declare type ConfluenceQueryApiDatabaseArgs = {
|
|
14403
14861
|
id: Scalars['ID']['input'];
|
|
14404
14862
|
};
|
|
@@ -14423,6 +14881,9 @@ export declare type ConfluenceQueryApiFolderArgs = {
|
|
|
14423
14881
|
export declare type ConfluenceQueryApiFoldersArgs = {
|
|
14424
14882
|
ids: Array<Scalars['ID']['input']>;
|
|
14425
14883
|
};
|
|
14884
|
+
export declare type ConfluenceQueryApiGlobalSpaceBlueprintSettingsArgs = {
|
|
14885
|
+
spaceId: Scalars['Long']['input'];
|
|
14886
|
+
};
|
|
14426
14887
|
export declare type ConfluenceQueryApiInlineTaskArgs = {
|
|
14427
14888
|
id: Scalars['ID']['input'];
|
|
14428
14889
|
};
|
|
@@ -14435,6 +14896,9 @@ export declare type ConfluenceQueryApiPageArgs = {
|
|
|
14435
14896
|
export declare type ConfluenceQueryApiPagesArgs = {
|
|
14436
14897
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
14437
14898
|
};
|
|
14899
|
+
export declare type ConfluenceQueryApiPdfExportSpaceSettingsArgs = {
|
|
14900
|
+
spaceId: Scalars['Long']['input'];
|
|
14901
|
+
};
|
|
14438
14902
|
export declare type ConfluenceQueryApiSearchLabelsArgs = {
|
|
14439
14903
|
cloudId: Scalars['ID']['input'];
|
|
14440
14904
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14565,6 +15029,14 @@ export declare type ConfluenceReopenInlineCommentPayload = {
|
|
|
14565
15029
|
errors?: Maybe<Array<MutationError>>;
|
|
14566
15030
|
success: Scalars['Boolean']['output'];
|
|
14567
15031
|
};
|
|
15032
|
+
export declare type ConfluenceRepairJiraMacroAppLinksInput = {
|
|
15033
|
+
appLinkMapping: Array<ConfluenceAppLinkMapping>;
|
|
15034
|
+
};
|
|
15035
|
+
export declare type ConfluenceRepairJiraMacroAppLinksPayload = Payload & {
|
|
15036
|
+
__typename?: 'ConfluenceRepairJiraMacroAppLinksPayload';
|
|
15037
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15038
|
+
success: Scalars['Boolean']['output'];
|
|
15039
|
+
};
|
|
14568
15040
|
export declare type ConfluenceReplyToCommentInput = {
|
|
14569
15041
|
body: ConfluenceContentBodyInput;
|
|
14570
15042
|
parentCommentId: Scalars['ID']['input'];
|
|
@@ -14579,6 +15051,15 @@ export declare enum ConfluenceRequestAccessApprovalDecision {
|
|
|
14579
15051
|
Approve = "APPROVE",
|
|
14580
15052
|
Deny = "DENY"
|
|
14581
15053
|
}
|
|
15054
|
+
export declare type ConfluenceRequestSpaceAccessInput = {
|
|
15055
|
+
spaceKey: Scalars['String']['input'];
|
|
15056
|
+
};
|
|
15057
|
+
export declare type ConfluenceRequestSpaceAccessPayload = Payload & {
|
|
15058
|
+
__typename?: 'ConfluenceRequestSpaceAccessPayload';
|
|
15059
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15060
|
+
spaceKey: Scalars['String']['output'];
|
|
15061
|
+
success: Scalars['Boolean']['output'];
|
|
15062
|
+
};
|
|
14582
15063
|
export declare type ConfluenceResolveCommentByContentIdPayload = Payload & {
|
|
14583
15064
|
__typename?: 'ConfluenceResolveCommentByContentIdPayload';
|
|
14584
15065
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -14609,6 +15090,16 @@ export declare enum ConfluenceRoleAssignabilityCode {
|
|
|
14609
15090
|
NoManageNonlicensedUsersPermNotAssignable = "NO_MANAGE_NONLICENSED_USERS_PERM_NOT_ASSIGNABLE",
|
|
14610
15091
|
PrincipalInvalidRole = "PRINCIPAL_INVALID_ROLE"
|
|
14611
15092
|
}
|
|
15093
|
+
export declare type ConfluenceSaveOrUpdateSpaceOwnerInput = {
|
|
15094
|
+
ownerId: Scalars['ID']['input'];
|
|
15095
|
+
spaceId: Scalars['Long']['input'];
|
|
15096
|
+
spaceOwnerType: ConfluenceSpaceOwnerType;
|
|
15097
|
+
};
|
|
15098
|
+
export declare type ConfluenceSaveOrUpdateSpaceOwnerPayload = Payload & {
|
|
15099
|
+
__typename?: 'ConfluenceSaveOrUpdateSpaceOwnerPayload';
|
|
15100
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15101
|
+
success: Scalars['Boolean']['output'];
|
|
15102
|
+
};
|
|
14612
15103
|
export declare type ConfluenceSchedulePublished = {
|
|
14613
15104
|
__typename?: 'ConfluenceSchedulePublished';
|
|
14614
15105
|
confVersion?: Maybe<Scalars['Int']['output']>;
|
|
@@ -14666,6 +15157,49 @@ export declare type ConfluenceSetSubCalendarReminderPayload = {
|
|
|
14666
15157
|
subCalendarReminder?: Maybe<ConfluenceSubCalendarReminder>;
|
|
14667
15158
|
success: Scalars['Boolean']['output'];
|
|
14668
15159
|
};
|
|
15160
|
+
export declare type ConfluenceSiteConfiguration = {
|
|
15161
|
+
__typename?: 'ConfluenceSiteConfiguration';
|
|
15162
|
+
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
15163
|
+
connectionTimeout?: Maybe<Scalars['Int']['output']>;
|
|
15164
|
+
contactAdministratorsMessage?: Maybe<Scalars['String']['output']>;
|
|
15165
|
+
customPageSettings?: Maybe<ConfluenceCustomPageSettings>;
|
|
15166
|
+
formattingSettings?: Maybe<ConfluenceFormattingSettings>;
|
|
15167
|
+
globalDefaultLocale?: Maybe<ConfluenceLanguage>;
|
|
15168
|
+
indexingLanguage?: Maybe<Scalars['String']['output']>;
|
|
15169
|
+
installedLocales?: Maybe<Array<Maybe<ConfluenceLanguage>>>;
|
|
15170
|
+
isAddWildcardsToUserAndGroupSearchesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15171
|
+
isAnonymousAccessToRemoteApiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15172
|
+
isContactAdministratorsFormEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15173
|
+
isEditorConversionForSiteEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15174
|
+
isEditorFullWidthEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15175
|
+
isEmailNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15176
|
+
isExternalConnectionEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15177
|
+
isLikesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15178
|
+
isLoomEntryPointsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15179
|
+
isMentionReminderSlackNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15180
|
+
isNofollowExternalLinksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15181
|
+
isPrivacyModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15182
|
+
isPushNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15183
|
+
isRecommendedEmailNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15184
|
+
isRecommendedSlackNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15185
|
+
isRecommendedTeamsNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15186
|
+
isSystemAdminEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15187
|
+
isXsrfAddCommentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15188
|
+
loginSettings?: Maybe<ConfluenceLoginSettings>;
|
|
15189
|
+
maxRssItems?: Maybe<Scalars['Int']['output']>;
|
|
15190
|
+
pageTimeout?: Maybe<Scalars['Int']['output']>;
|
|
15191
|
+
pdfExportSettings?: Maybe<ConfluencePdfExportSettings>;
|
|
15192
|
+
rssTimeout?: Maybe<Scalars['Int']['output']>;
|
|
15193
|
+
siteHomePage?: Maybe<Scalars['String']['output']>;
|
|
15194
|
+
siteTitle?: Maybe<Scalars['String']['output']>;
|
|
15195
|
+
socketTimeout?: Maybe<Scalars['Int']['output']>;
|
|
15196
|
+
teamPresenceSettings?: Maybe<ConfluenceTeamPresenceSettings>;
|
|
15197
|
+
};
|
|
15198
|
+
export declare enum ConfluenceSiteEmailAddressStatus {
|
|
15199
|
+
Active = "ACTIVE",
|
|
15200
|
+
Inactive = "INACTIVE",
|
|
15201
|
+
SiteEmailAddressNotPresent = "SITE_EMAIL_ADDRESS_NOT_PRESENT"
|
|
15202
|
+
}
|
|
14669
15203
|
export declare type ConfluenceSpace = Node & {
|
|
14670
15204
|
__typename?: 'ConfluenceSpace';
|
|
14671
15205
|
alias?: Maybe<Scalars['String']['output']>;
|
|
@@ -14841,15 +15375,71 @@ export declare enum ConfluenceSubscriptionContentType {
|
|
|
14841
15375
|
Page = "PAGE",
|
|
14842
15376
|
Whiteboard = "WHITEBOARD"
|
|
14843
15377
|
}
|
|
15378
|
+
export declare type ConfluenceSystemTemplate = {
|
|
15379
|
+
__typename?: 'ConfluenceSystemTemplate';
|
|
15380
|
+
id: Scalars['ID']['output'];
|
|
15381
|
+
moduleCompleteKey?: Maybe<Scalars['String']['output']>;
|
|
15382
|
+
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
15383
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15384
|
+
pluginKey?: Maybe<Scalars['String']['output']>;
|
|
15385
|
+
};
|
|
15386
|
+
export declare type ConfluenceTeamCalendar = {
|
|
15387
|
+
__typename?: 'ConfluenceTeamCalendar';
|
|
15388
|
+
globalSettings?: Maybe<ConfluenceTeamCalendarGlobalSettings>;
|
|
15389
|
+
};
|
|
15390
|
+
export declare type ConfluenceTeamCalendarDaysOfWeekOptions = {
|
|
15391
|
+
__typename?: 'ConfluenceTeamCalendarDaysOfWeekOptions';
|
|
15392
|
+
key?: Maybe<ConfluenceTeamCalendarWeekValues>;
|
|
15393
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
15394
|
+
};
|
|
15395
|
+
export declare type ConfluenceTeamCalendarGlobalSettings = {
|
|
15396
|
+
__typename?: 'ConfluenceTeamCalendarGlobalSettings';
|
|
15397
|
+
allowSiteAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
15398
|
+
daysOfWeekOptions?: Maybe<Array<Maybe<ConfluenceTeamCalendarDaysOfWeekOptions>>>;
|
|
15399
|
+
disablePrivateUrls?: Maybe<Scalars['Boolean']['output']>;
|
|
15400
|
+
displayWeekNumbers?: Maybe<Scalars['Boolean']['output']>;
|
|
15401
|
+
startDayOfWeek?: Maybe<ConfluenceTeamCalendarWeekValues>;
|
|
15402
|
+
timeFormat?: Maybe<ConfluenceTeamCalendarTimeFormatTypes>;
|
|
15403
|
+
};
|
|
15404
|
+
export declare enum ConfluenceTeamCalendarTimeFormatTypes {
|
|
15405
|
+
DisplayTimeFormat_12 = "DISPLAY_TIME_FORMAT_12",
|
|
15406
|
+
DisplayTimeFormat_24 = "DISPLAY_TIME_FORMAT_24"
|
|
15407
|
+
}
|
|
15408
|
+
export declare enum ConfluenceTeamCalendarWeekValues {
|
|
15409
|
+
Default = "DEFAULT",
|
|
15410
|
+
Five = "FIVE",
|
|
15411
|
+
Four = "FOUR",
|
|
15412
|
+
One = "ONE",
|
|
15413
|
+
Seven = "SEVEN",
|
|
15414
|
+
Six = "SIX",
|
|
15415
|
+
Three = "THREE",
|
|
15416
|
+
Two = "TWO"
|
|
15417
|
+
}
|
|
14844
15418
|
export declare type ConfluenceTeamPresence = {
|
|
14845
15419
|
__typename?: 'ConfluenceTeamPresence';
|
|
14846
15420
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
14847
15421
|
};
|
|
15422
|
+
export declare type ConfluenceTeamPresenceSettings = {
|
|
15423
|
+
__typename?: 'ConfluenceTeamPresenceSettings';
|
|
15424
|
+
isEnabledOnContentView?: Maybe<Scalars['Boolean']['output']>;
|
|
15425
|
+
};
|
|
14848
15426
|
export declare type ConfluenceTeamPresenceSpaceSettings = {
|
|
14849
15427
|
__typename?: 'ConfluenceTeamPresenceSpaceSettings';
|
|
14850
15428
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
14851
15429
|
isEnabledOnContentViewForSite: Scalars['Boolean']['output'];
|
|
14852
15430
|
};
|
|
15431
|
+
export declare type ConfluenceTemplates = {
|
|
15432
|
+
__typename?: 'ConfluenceTemplates';
|
|
15433
|
+
globalPageTemplates?: Maybe<Array<Maybe<ConfluenceGlobalPageTemplate>>>;
|
|
15434
|
+
spacePageTemplates?: Maybe<Array<Maybe<ConfluenceGlobalPageTemplate>>>;
|
|
15435
|
+
spaceTemplates?: Maybe<Array<Maybe<ConfluenceGlobalPageTemplate>>>;
|
|
15436
|
+
};
|
|
15437
|
+
export declare type ConfluenceTemplatesSpacePageTemplatesArgs = {
|
|
15438
|
+
spaceId: Scalars['Long']['input'];
|
|
15439
|
+
};
|
|
15440
|
+
export declare type ConfluenceTemplatesSpaceTemplatesArgs = {
|
|
15441
|
+
spaceId: Scalars['Long']['input'];
|
|
15442
|
+
};
|
|
14853
15443
|
export declare type ConfluenceTenantContext = {
|
|
14854
15444
|
__typename?: 'ConfluenceTenantContext';
|
|
14855
15445
|
baseUrl: Scalars['String']['output'];
|
|
@@ -14860,6 +15450,29 @@ export declare type ConfluenceTenantContext = {
|
|
|
14860
15450
|
licensedProducts: Array<LicensedProduct>;
|
|
14861
15451
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
14862
15452
|
};
|
|
15453
|
+
export declare type ConfluenceTheme = {
|
|
15454
|
+
__typename?: 'ConfluenceTheme';
|
|
15455
|
+
completeKey?: Maybe<Scalars['String']['output']>;
|
|
15456
|
+
configPath?: Maybe<Scalars['String']['output']>;
|
|
15457
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
15458
|
+
i18nDescriptionKey?: Maybe<Scalars['String']['output']>;
|
|
15459
|
+
i18nNameKey?: Maybe<Scalars['String']['output']>;
|
|
15460
|
+
iconLocation?: Maybe<Scalars['String']['output']>;
|
|
15461
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15462
|
+
};
|
|
15463
|
+
export declare type ConfluenceThemes = {
|
|
15464
|
+
__typename?: 'ConfluenceThemes';
|
|
15465
|
+
currentGlobalTheme?: Maybe<ConfluenceTheme>;
|
|
15466
|
+
currentSpaceTheme?: Maybe<ConfluenceTheme>;
|
|
15467
|
+
globalThemes?: Maybe<Array<Maybe<ConfluenceTheme>>>;
|
|
15468
|
+
spaceThemes?: Maybe<Array<Maybe<ConfluenceTheme>>>;
|
|
15469
|
+
};
|
|
15470
|
+
export declare type ConfluenceThemesCurrentSpaceThemeArgs = {
|
|
15471
|
+
spaceId: Scalars['Long']['input'];
|
|
15472
|
+
};
|
|
15473
|
+
export declare type ConfluenceThemesSpaceThemesArgs = {
|
|
15474
|
+
spaceId: Scalars['Long']['input'];
|
|
15475
|
+
};
|
|
14863
15476
|
export declare type ConfluenceTopic = {
|
|
14864
15477
|
__typename?: 'ConfluenceTopic';
|
|
14865
15478
|
creator?: Maybe<Scalars['ID']['output']>;
|
|
@@ -14906,6 +15519,30 @@ export declare type ConfluenceUnmarkCommentAsDanglingPayload = Payload & {
|
|
|
14906
15519
|
errors: Array<MutationError>;
|
|
14907
15520
|
success: Scalars['Boolean']['output'];
|
|
14908
15521
|
};
|
|
15522
|
+
export declare type ConfluenceUnpromoteBlueprintInput = {
|
|
15523
|
+
id: Scalars['ID']['input'];
|
|
15524
|
+
spaceId: Scalars['Long']['input'];
|
|
15525
|
+
};
|
|
15526
|
+
export declare type ConfluenceUnpromoteBlueprintPayload = Payload & {
|
|
15527
|
+
__typename?: 'ConfluenceUnpromoteBlueprintPayload';
|
|
15528
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15529
|
+
success: Scalars['Boolean']['output'];
|
|
15530
|
+
};
|
|
15531
|
+
export declare type ConfluenceUnpromotePageTemplateInput = {
|
|
15532
|
+
id: Scalars['ID']['input'];
|
|
15533
|
+
spaceId: Scalars['Long']['input'];
|
|
15534
|
+
};
|
|
15535
|
+
export declare type ConfluenceUnpromotePageTemplatePayload = Payload & {
|
|
15536
|
+
__typename?: 'ConfluenceUnpromotePageTemplatePayload';
|
|
15537
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15538
|
+
success: Scalars['Boolean']['output'];
|
|
15539
|
+
};
|
|
15540
|
+
export declare type ConfluenceUnusedPluginMacro = {
|
|
15541
|
+
__typename?: 'ConfluenceUnusedPluginMacro';
|
|
15542
|
+
macroNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
15543
|
+
pluginKey?: Maybe<Scalars['String']['output']>;
|
|
15544
|
+
pluginName?: Maybe<Scalars['String']['output']>;
|
|
15545
|
+
};
|
|
14909
15546
|
export declare type ConfluenceUnwatchSubCalendarInput = {
|
|
14910
15547
|
subCalendarId: Scalars['ID']['input'];
|
|
14911
15548
|
};
|
|
@@ -14986,6 +15623,19 @@ export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
|
14986
15623
|
page?: Maybe<ConfluencePage>;
|
|
14987
15624
|
success: Scalars['Boolean']['output'];
|
|
14988
15625
|
};
|
|
15626
|
+
export declare type ConfluenceUpdateCustomApplicationLinkInput = {
|
|
15627
|
+
allowedGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
15628
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
15629
|
+
id: Scalars['ID']['input'];
|
|
15630
|
+
isHidden: Scalars['Boolean']['input'];
|
|
15631
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
15632
|
+
};
|
|
15633
|
+
export declare type ConfluenceUpdateCustomApplicationLinkPayload = Payload & {
|
|
15634
|
+
__typename?: 'ConfluenceUpdateCustomApplicationLinkPayload';
|
|
15635
|
+
applicationLink?: Maybe<ConfluenceCustomApplicationLink>;
|
|
15636
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15637
|
+
success: Scalars['Boolean']['output'];
|
|
15638
|
+
};
|
|
14989
15639
|
export declare type ConfluenceUpdateCustomRoleInput = {
|
|
14990
15640
|
anonymousReassignmentRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
14991
15641
|
description: Scalars['String']['input'];
|
|
@@ -15033,6 +15683,32 @@ export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
|
15033
15683
|
page?: Maybe<ConfluencePage>;
|
|
15034
15684
|
success: Scalars['Boolean']['output'];
|
|
15035
15685
|
};
|
|
15686
|
+
export declare type ConfluenceUpdateGlobalDefaultLocaleConfigurationInput = {
|
|
15687
|
+
globalDefaultLocale: Scalars['String']['input'];
|
|
15688
|
+
};
|
|
15689
|
+
export declare type ConfluenceUpdateGlobalDefaultLocaleConfigurationPayload = Payload & {
|
|
15690
|
+
__typename?: 'ConfluenceUpdateGlobalDefaultLocaleConfigurationPayload';
|
|
15691
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15692
|
+
success: Scalars['Boolean']['output'];
|
|
15693
|
+
};
|
|
15694
|
+
export declare type ConfluenceUpdateGlobalPageTemplateDescriptionInput = {
|
|
15695
|
+
description: Scalars['String']['input'];
|
|
15696
|
+
id: Scalars['ID']['input'];
|
|
15697
|
+
};
|
|
15698
|
+
export declare type ConfluenceUpdateGlobalPageTemplateDescriptionPayload = Payload & {
|
|
15699
|
+
__typename?: 'ConfluenceUpdateGlobalPageTemplateDescriptionPayload';
|
|
15700
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15701
|
+
globalPageTemplate?: Maybe<ConfluenceGlobalPageTemplate>;
|
|
15702
|
+
success: Scalars['Boolean']['output'];
|
|
15703
|
+
};
|
|
15704
|
+
export declare type ConfluenceUpdateIndexingLanguageConfigurationInput = {
|
|
15705
|
+
indexingLanguage: Scalars['String']['input'];
|
|
15706
|
+
};
|
|
15707
|
+
export declare type ConfluenceUpdateIndexingLanguageConfigurationPayload = Payload & {
|
|
15708
|
+
__typename?: 'ConfluenceUpdateIndexingLanguageConfigurationPayload';
|
|
15709
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15710
|
+
success: Scalars['Boolean']['output'];
|
|
15711
|
+
};
|
|
15036
15712
|
export declare type ConfluenceUpdateNav4OptInInput = {
|
|
15037
15713
|
enableNav4: Scalars['Boolean']['input'];
|
|
15038
15714
|
};
|
|
@@ -15041,10 +15717,44 @@ export declare type ConfluenceUpdateNav4OptInPayload = Payload & {
|
|
|
15041
15717
|
errors?: Maybe<Array<MutationError>>;
|
|
15042
15718
|
success: Scalars['Boolean']['output'];
|
|
15043
15719
|
};
|
|
15720
|
+
export declare type ConfluenceUpdateSiteConfigurationInput = {
|
|
15721
|
+
connectionTimeout: Scalars['Int']['input'];
|
|
15722
|
+
customContactMessage: Scalars['String']['input'];
|
|
15723
|
+
dateFormat: Scalars['String']['input'];
|
|
15724
|
+
dateTimeFormat: Scalars['String']['input'];
|
|
15725
|
+
decimalNumberFormat: Scalars['String']['input'];
|
|
15726
|
+
globalDefaultLocale: Scalars['String']['input'];
|
|
15727
|
+
indexingLanguage: Scalars['String']['input'];
|
|
15728
|
+
isContactAdministratorsFormEnabled: Scalars['Boolean']['input'];
|
|
15729
|
+
isEditorConversionForSiteEnabled: Scalars['Boolean']['input'];
|
|
15730
|
+
isEditorFullWidthEnabled: Scalars['Boolean']['input'];
|
|
15731
|
+
isEmailNotificationEnabled: Scalars['Boolean']['input'];
|
|
15732
|
+
isExternalConnectionsEnabled: Scalars['Boolean']['input'];
|
|
15733
|
+
isLikesEnabled: Scalars['Boolean']['input'];
|
|
15734
|
+
isNav4OptedIn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15735
|
+
isPushNotificationEnabled: Scalars['Boolean']['input'];
|
|
15736
|
+
longNumberFormat: Scalars['String']['input'];
|
|
15737
|
+
maxAttachmentSize: Scalars['Long']['input'];
|
|
15738
|
+
maxNumberOfAttachmentsPerUpload: Scalars['Int']['input'];
|
|
15739
|
+
siteHomePage: Scalars['String']['input'];
|
|
15740
|
+
siteTitle: Scalars['String']['input'];
|
|
15741
|
+
socketTimeout: Scalars['Int']['input'];
|
|
15742
|
+
timeFormat: Scalars['String']['input'];
|
|
15743
|
+
};
|
|
15744
|
+
export declare type ConfluenceUpdateSiteConfigurationPayload = Payload & {
|
|
15745
|
+
__typename?: 'ConfluenceUpdateSiteConfigurationPayload';
|
|
15746
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15747
|
+
success: Scalars['Boolean']['output'];
|
|
15748
|
+
};
|
|
15044
15749
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
15045
15750
|
id: Scalars['ID']['input'];
|
|
15046
15751
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15047
15752
|
};
|
|
15753
|
+
export declare type ConfluenceUpdateSpacePageTemplateDescriptionInput = {
|
|
15754
|
+
description: Scalars['String']['input'];
|
|
15755
|
+
id: Scalars['ID']['input'];
|
|
15756
|
+
spaceId: Scalars['Long']['input'];
|
|
15757
|
+
};
|
|
15048
15758
|
export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
15049
15759
|
__typename?: 'ConfluenceUpdateSpacePayload';
|
|
15050
15760
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -15115,6 +15825,12 @@ export declare type ConfluenceUpdateValuePagePropertyPayload = Payload & {
|
|
|
15115
15825
|
pageProperty?: Maybe<ConfluencePageProperty>;
|
|
15116
15826
|
success: Scalars['Boolean']['output'];
|
|
15117
15827
|
};
|
|
15828
|
+
export declare type ConfluenceUsedPluginMacro = {
|
|
15829
|
+
__typename?: 'ConfluenceUsedPluginMacro';
|
|
15830
|
+
macros?: Maybe<Array<ConfluenceMacro>>;
|
|
15831
|
+
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
15832
|
+
pluginName?: Maybe<Scalars['String']['output']>;
|
|
15833
|
+
};
|
|
15118
15834
|
export declare type ConfluenceUser = {
|
|
15119
15835
|
__typename?: 'ConfluenceUser';
|
|
15120
15836
|
accessStatus: AccessStatus;
|
|
@@ -22994,10 +23710,6 @@ export declare type EarliestOnboardedProjectForCloudId = {
|
|
|
22994
23710
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
22995
23711
|
template?: Maybe<Scalars['String']['output']>;
|
|
22996
23712
|
};
|
|
22997
|
-
export declare type EarliestViewViewedForUser = {
|
|
22998
|
-
__typename?: 'EarliestViewViewedForUser';
|
|
22999
|
-
datetime?: Maybe<Scalars['String']['output']>;
|
|
23000
|
-
};
|
|
23001
23713
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
23002
23714
|
export declare type EcosystemAppInstallationConfigExtension = {
|
|
23003
23715
|
__typename?: 'EcosystemAppInstallationConfigExtension';
|
|
@@ -27496,6 +28208,110 @@ export declare type GraphIntegrationDirectoryItemEdge = {
|
|
|
27496
28208
|
export declare enum GraphIntegrationDirectoryItemType {
|
|
27497
28209
|
McpTool = "MCP_TOOL"
|
|
27498
28210
|
}
|
|
28211
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
|
|
28212
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerConnection';
|
|
28213
|
+
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpServerEdge>>;
|
|
28214
|
+
nodes?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpServerNode>>;
|
|
28215
|
+
pageInfo: PageInfo;
|
|
28216
|
+
};
|
|
28217
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerEdge = {
|
|
28218
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerEdge';
|
|
28219
|
+
cursor: Scalars['String']['output'];
|
|
28220
|
+
node?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
28221
|
+
};
|
|
28222
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
28223
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerNode';
|
|
28224
|
+
authConsentUrl?: Maybe<Scalars['URL']['output']>;
|
|
28225
|
+
baseUrl: Scalars['URL']['output'];
|
|
28226
|
+
displayName: Scalars['String']['output'];
|
|
28227
|
+
endpointPath?: Maybe<Scalars['String']['output']>;
|
|
28228
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
28229
|
+
id: Scalars['ID']['output'];
|
|
28230
|
+
serverType: GraphIntegrationMcpAdminManagementMcpServerType;
|
|
28231
|
+
status: GraphIntegrationMcpAdminManagementMcpServerStatus;
|
|
28232
|
+
};
|
|
28233
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpServerStatus {
|
|
28234
|
+
Deleting = "DELETING",
|
|
28235
|
+
Provisioning = "PROVISIONING",
|
|
28236
|
+
Registered = "REGISTERED",
|
|
28237
|
+
Suspended = "SUSPENDED"
|
|
28238
|
+
}
|
|
28239
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpServerType {
|
|
28240
|
+
Http = "HTTP",
|
|
28241
|
+
Sse = "SSE"
|
|
28242
|
+
}
|
|
28243
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolConfiguration = {
|
|
28244
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolConfiguration';
|
|
28245
|
+
status: GraphIntegrationMcpAdminManagementMcpToolStatus;
|
|
28246
|
+
};
|
|
28247
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolConfigurationInput = {
|
|
28248
|
+
status?: InputMaybe<GraphIntegrationMcpAdminManagementMcpToolStatus>;
|
|
28249
|
+
toolId: Scalars['ID']['input'];
|
|
28250
|
+
};
|
|
28251
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolConnection = {
|
|
28252
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolConnection';
|
|
28253
|
+
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolEdge>>;
|
|
28254
|
+
nodes?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolNode>>;
|
|
28255
|
+
pageInfo: PageInfo;
|
|
28256
|
+
};
|
|
28257
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolEdge = {
|
|
28258
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolEdge';
|
|
28259
|
+
cursor: Scalars['String']['output'];
|
|
28260
|
+
node?: Maybe<GraphIntegrationMcpAdminManagementMcpToolNode>;
|
|
28261
|
+
};
|
|
28262
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolNode = {
|
|
28263
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolNode';
|
|
28264
|
+
configuration?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConfiguration>;
|
|
28265
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
28266
|
+
displayName: Scalars['String']['output'];
|
|
28267
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
28268
|
+
id: Scalars['ID']['output'];
|
|
28269
|
+
mcpServer: GraphIntegrationMcpAdminManagementMcpServerNode;
|
|
28270
|
+
name: Scalars['String']['output'];
|
|
28271
|
+
};
|
|
28272
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpToolStatus {
|
|
28273
|
+
Allow = "ALLOW",
|
|
28274
|
+
Deny = "DENY",
|
|
28275
|
+
NewToolDeny = "NEW_TOOL_DENY"
|
|
28276
|
+
}
|
|
28277
|
+
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
28278
|
+
cloudId: Scalars['ID']['input'];
|
|
28279
|
+
displayName: Scalars['String']['input'];
|
|
28280
|
+
endpointPath?: InputMaybe<Scalars['String']['input']>;
|
|
28281
|
+
icon?: InputMaybe<Scalars['String']['input']>;
|
|
28282
|
+
serverType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerType>;
|
|
28283
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
28284
|
+
url: Scalars['URL']['input'];
|
|
28285
|
+
};
|
|
28286
|
+
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerPayload = Payload & {
|
|
28287
|
+
__typename?: 'GraphIntegrationMcpAdminManagementRegisterMcpServerPayload';
|
|
28288
|
+
authConsentUrl?: Maybe<Scalars['URL']['output']>;
|
|
28289
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28290
|
+
serverId?: Maybe<Scalars['ID']['output']>;
|
|
28291
|
+
success: Scalars['Boolean']['output'];
|
|
28292
|
+
};
|
|
28293
|
+
export declare type GraphIntegrationMcpAdminManagementUnregisterMcpServerInput = {
|
|
28294
|
+
cloudId: Scalars['ID']['input'];
|
|
28295
|
+
serverId: Scalars['ID']['input'];
|
|
28296
|
+
};
|
|
28297
|
+
export declare type GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload = Payload & {
|
|
28298
|
+
__typename?: 'GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload';
|
|
28299
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28300
|
+
serverId?: Maybe<Scalars['ID']['output']>;
|
|
28301
|
+
success: Scalars['Boolean']['output'];
|
|
28302
|
+
};
|
|
28303
|
+
export declare type GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput = {
|
|
28304
|
+
cloudId: Scalars['ID']['input'];
|
|
28305
|
+
serverId: Scalars['ID']['input'];
|
|
28306
|
+
toolConfigurations: Array<GraphIntegrationMcpAdminManagementMcpToolConfigurationInput>;
|
|
28307
|
+
};
|
|
28308
|
+
export declare type GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload = Payload & {
|
|
28309
|
+
__typename?: 'GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload';
|
|
28310
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28311
|
+
serverId?: Maybe<Scalars['ID']['output']>;
|
|
28312
|
+
success: Scalars['Boolean']['output'];
|
|
28313
|
+
updatedTools?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolNode>>;
|
|
28314
|
+
};
|
|
27499
28315
|
export declare type GraphIntegrationMcpServer = {
|
|
27500
28316
|
__typename?: 'GraphIntegrationMcpServer';
|
|
27501
28317
|
displayName: Scalars['String']['output'];
|
|
@@ -52465,6 +53281,18 @@ export declare type GrowthUnifiedProfileConfluenceUserActivityContext = {
|
|
|
52465
53281
|
__typename?: 'GrowthUnifiedProfileConfluenceUserActivityContext';
|
|
52466
53282
|
r28PageDwells?: Maybe<Scalars['Int']['output']>;
|
|
52467
53283
|
};
|
|
53284
|
+
export declare type GrowthUnifiedProfileCreateEntitlementProfileInput = {
|
|
53285
|
+
entitlementId: Scalars['ID']['input'];
|
|
53286
|
+
firstProductOnSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53287
|
+
trial?: InputMaybe<GrowthUnifiedProfileEntitlementContextTrialInput>;
|
|
53288
|
+
};
|
|
53289
|
+
export declare type GrowthUnifiedProfileCreateEntitlementProfileResponse = {
|
|
53290
|
+
__typename?: 'GrowthUnifiedProfileCreateEntitlementProfileResponse';
|
|
53291
|
+
entitlementId: Scalars['ID']['output'];
|
|
53292
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
53293
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
53294
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
53295
|
+
};
|
|
52468
53296
|
export declare type GrowthUnifiedProfileCreateOrgProfileInput = {
|
|
52469
53297
|
orgId: Scalars['ID']['input'];
|
|
52470
53298
|
twcOnboardingContext?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileTwcOnboardingContextInput>>>;
|
|
@@ -52492,6 +53320,23 @@ export declare enum GrowthUnifiedProfileEnterpriseAccountStatus {
|
|
|
52492
53320
|
Platimun = "PLATIMUN",
|
|
52493
53321
|
Silver = "SILVER"
|
|
52494
53322
|
}
|
|
53323
|
+
export declare type GrowthUnifiedProfileEntitlementContextTrialInput = {
|
|
53324
|
+
trialEndTimeStamp?: InputMaybe<Scalars['Float']['input']>;
|
|
53325
|
+
trialTrigger?: InputMaybe<GrowthUnifiedProfileTrialTrigger>;
|
|
53326
|
+
trialType?: InputMaybe<GrowthUnifiedProfileTrialType>;
|
|
53327
|
+
};
|
|
53328
|
+
export declare type GrowthUnifiedProfileEntitlementContextTrialResult = {
|
|
53329
|
+
__typename?: 'GrowthUnifiedProfileEntitlementContextTrialResult';
|
|
53330
|
+
trialEndTimeStamp?: Maybe<Scalars['Float']['output']>;
|
|
53331
|
+
trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
|
|
53332
|
+
trialType?: Maybe<GrowthUnifiedProfileTrialType>;
|
|
53333
|
+
};
|
|
53334
|
+
export declare type GrowthUnifiedProfileEntitlementProfileResult = {
|
|
53335
|
+
__typename?: 'GrowthUnifiedProfileEntitlementProfileResult';
|
|
53336
|
+
entitlementId: Scalars['ID']['output'];
|
|
53337
|
+
firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
|
|
53338
|
+
lastKnownTrial?: Maybe<GrowthUnifiedProfileEntitlementContextTrialResult>;
|
|
53339
|
+
};
|
|
52495
53340
|
export declare enum GrowthUnifiedProfileEntityType {
|
|
52496
53341
|
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
52497
53342
|
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
@@ -52791,6 +53636,7 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
52791
53636
|
}
|
|
52792
53637
|
export declare type GrowthUnifiedProfileTrialContext = {
|
|
52793
53638
|
__typename?: 'GrowthUnifiedProfileTrialContext';
|
|
53639
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
52794
53640
|
paymentDetailsOnFile?: Maybe<Scalars['Boolean']['output']>;
|
|
52795
53641
|
trialEndTimeStamp?: Maybe<Scalars['String']['output']>;
|
|
52796
53642
|
trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
|
|
@@ -52881,6 +53727,7 @@ export declare enum GrowthUnifiedProfileUserIdType {
|
|
|
52881
53727
|
export declare type GrowthUnifiedProfileUserProfile = {
|
|
52882
53728
|
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
52883
53729
|
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
53730
|
+
jobFunction?: Maybe<Scalars['String']['output']>;
|
|
52884
53731
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
52885
53732
|
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
52886
53733
|
};
|
|
@@ -52944,6 +53791,7 @@ export declare type HamsEntitlement = CommerceEntitlement & {
|
|
|
52944
53791
|
entitlementGroupId?: Maybe<Scalars['String']['output']>;
|
|
52945
53792
|
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
52946
53793
|
entitlementMigrationEvaluation?: Maybe<HamsEntitlementMigrationEvaluation>;
|
|
53794
|
+
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
52947
53795
|
entitlementSource?: Maybe<Scalars['String']['output']>;
|
|
52948
53796
|
experienceCapabilities?: Maybe<HamsEntitlementExperienceCapabilities>;
|
|
52949
53797
|
futureEdition?: Maybe<Scalars['String']['output']>;
|
|
@@ -60762,6 +61610,10 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
60762
61610
|
type: Scalars['String']['output'];
|
|
60763
61611
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
60764
61612
|
};
|
|
61613
|
+
export declare enum JiraFlagOperations {
|
|
61614
|
+
Add = "ADD",
|
|
61615
|
+
Remove = "REMOVE"
|
|
61616
|
+
}
|
|
60765
61617
|
export declare type JiraForgeAppEgressDeclaration = {
|
|
60766
61618
|
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
60767
61619
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -62491,6 +63343,7 @@ export declare type JiraIssueFieldsInput = {
|
|
|
62491
63343
|
priority?: InputMaybe<JiraPriorityInput>;
|
|
62492
63344
|
projectFields?: InputMaybe<Array<JiraProjectFieldInput>>;
|
|
62493
63345
|
resolution?: InputMaybe<JiraResolutionInput>;
|
|
63346
|
+
respondersField?: InputMaybe<JiraServiceManagementRespondersFieldInput>;
|
|
62494
63347
|
richTextFields?: InputMaybe<Array<JiraRichTextFieldInput>>;
|
|
62495
63348
|
security?: InputMaybe<JiraSecurityLevelInput>;
|
|
62496
63349
|
singleGroupPickerFields?: InputMaybe<Array<JiraSingleGroupPickerFieldInput>>;
|
|
@@ -65103,6 +65956,7 @@ export declare type JiraMutation = {
|
|
|
65103
65956
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
65104
65957
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
65105
65958
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
65959
|
+
updateFlagField?: Maybe<JiraUpdateFlagFieldPayload>;
|
|
65106
65960
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
65107
65961
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
65108
65962
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
@@ -65181,6 +66035,7 @@ export declare type JiraMutation = {
|
|
|
65181
66035
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
65182
66036
|
updateVotesField?: Maybe<JiraVotesFieldPayload>;
|
|
65183
66037
|
updateWatchesField?: Maybe<JiraWatchesFieldPayload>;
|
|
66038
|
+
updateWorklog?: Maybe<JiraUpdateWorklogPayload>;
|
|
65184
66039
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
65185
66040
|
};
|
|
65186
66041
|
export declare type JiraMutationAddFieldsToProjectArgs = {
|
|
@@ -65633,6 +66488,9 @@ export declare type JiraMutationUpdateFieldSetsViewArgs = {
|
|
|
65633
66488
|
id: Scalars['ID']['input'];
|
|
65634
66489
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
65635
66490
|
};
|
|
66491
|
+
export declare type JiraMutationUpdateFlagFieldArgs = {
|
|
66492
|
+
input: JiraUpdateFlagFieldInput;
|
|
66493
|
+
};
|
|
65636
66494
|
export declare type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
65637
66495
|
input: JiraUpdateForgeObjectFieldInput;
|
|
65638
66496
|
};
|
|
@@ -65886,6 +66744,9 @@ export declare type JiraMutationUpdateVotesFieldArgs = {
|
|
|
65886
66744
|
export declare type JiraMutationUpdateWatchesFieldArgs = {
|
|
65887
66745
|
input: JiraUpdateWatchesFieldInput;
|
|
65888
66746
|
};
|
|
66747
|
+
export declare type JiraMutationUpdateWorklogArgs = {
|
|
66748
|
+
input: JiraUpdateWorklogInput;
|
|
66749
|
+
};
|
|
65889
66750
|
export declare type JiraMutationUserPreferencesArgs = {
|
|
65890
66751
|
cloudId: Scalars['ID']['input'];
|
|
65891
66752
|
};
|
|
@@ -67336,6 +68197,13 @@ export declare type JiraPriorityFieldPayload = Payload & {
|
|
|
67336
68197
|
export declare type JiraPriorityInput = {
|
|
67337
68198
|
priorityId: Scalars['ID']['input'];
|
|
67338
68199
|
};
|
|
68200
|
+
export declare type JiraProductDiscoveryIssueEventPayload = {
|
|
68201
|
+
__typename?: 'JiraProductDiscoveryIssueEventPayload';
|
|
68202
|
+
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
68203
|
+
project: JiraIssueStreamHubEventPayloadProject;
|
|
68204
|
+
resource: Scalars['String']['output'];
|
|
68205
|
+
type: Scalars['String']['output'];
|
|
68206
|
+
};
|
|
67339
68207
|
export declare enum JiraProductEnum {
|
|
67340
68208
|
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
67341
68209
|
JiraServiceManagement = "JIRA_SERVICE_MANAGEMENT",
|
|
@@ -71484,6 +72352,9 @@ export declare type JiraServiceManagementResponderEdge = {
|
|
|
71484
72352
|
cursor: Scalars['String']['output'];
|
|
71485
72353
|
node?: Maybe<JiraServiceManagementResponder>;
|
|
71486
72354
|
};
|
|
72355
|
+
export declare type JiraServiceManagementResponderFieldInput = {
|
|
72356
|
+
responderId: Scalars['ID']['input'];
|
|
72357
|
+
};
|
|
71487
72358
|
export declare type JiraServiceManagementRespondersField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
71488
72359
|
__typename?: 'JiraServiceManagementRespondersField';
|
|
71489
72360
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -71507,6 +72378,11 @@ export declare type JiraServiceManagementRespondersFieldRespondersConnectionArgs
|
|
|
71507
72378
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71508
72379
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
71509
72380
|
};
|
|
72381
|
+
export declare type JiraServiceManagementRespondersFieldInput = {
|
|
72382
|
+
bulkEditMultiSelectFieldOption?: InputMaybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
72383
|
+
fieldId: Scalars['ID']['input'];
|
|
72384
|
+
responders: Array<JiraServiceManagementResponderFieldInput>;
|
|
72385
|
+
};
|
|
71510
72386
|
export declare type JiraServiceManagementSelectPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
71511
72387
|
__typename?: 'JiraServiceManagementSelectPreviewField';
|
|
71512
72388
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -72704,6 +73580,7 @@ export declare type JiraSubscription = {
|
|
|
72704
73580
|
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
72705
73581
|
onJirtBoardIssueSubscription?: Maybe<JiraJirtBoardScoreIssueEventPayload>;
|
|
72706
73582
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
73583
|
+
onJpdIssueSubscription?: Maybe<JiraProductDiscoveryIssueEventPayload>;
|
|
72707
73584
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
72708
73585
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
72709
73586
|
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
@@ -72798,6 +73675,12 @@ export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
|
|
|
72798
73675
|
events: Array<Scalars['String']['input']>;
|
|
72799
73676
|
projectIds: Array<Scalars['String']['input']>;
|
|
72800
73677
|
};
|
|
73678
|
+
export declare type JiraSubscriptionOnJpdIssueSubscriptionArgs = {
|
|
73679
|
+
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
73680
|
+
cloudId: Scalars['ID']['input'];
|
|
73681
|
+
events: Array<Scalars['String']['input']>;
|
|
73682
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
73683
|
+
};
|
|
72801
73684
|
export declare type JiraSubscriptionOnJwmFieldMutationArgs = {
|
|
72802
73685
|
siteId: Scalars['ID']['input'];
|
|
72803
73686
|
};
|
|
@@ -73129,6 +74012,7 @@ export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
73129
74012
|
};
|
|
73130
74013
|
export declare type JiraTimelineIssueLinkOperationPayload = {
|
|
73131
74014
|
__typename?: 'JiraTimelineIssueLinkOperationPayload';
|
|
74015
|
+
dependencyId?: Maybe<Scalars['ID']['output']>;
|
|
73132
74016
|
errors?: Maybe<Array<MutationError>>;
|
|
73133
74017
|
inwardItem?: Maybe<JiraIssue>;
|
|
73134
74018
|
outwardItem?: Maybe<JiraIssue>;
|
|
@@ -73372,6 +74256,25 @@ export declare type JiraUpdateFieldSetPreferencesInput = {
|
|
|
73372
74256
|
isFrozen?: InputMaybe<Scalars['Boolean']['input']>;
|
|
73373
74257
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
73374
74258
|
};
|
|
74259
|
+
export declare type JiraUpdateFlagCommentInput = {
|
|
74260
|
+
content?: InputMaybe<JiraAdfInput>;
|
|
74261
|
+
property?: InputMaybe<Scalars['String']['input']>;
|
|
74262
|
+
visibility?: InputMaybe<Scalars['String']['input']>;
|
|
74263
|
+
};
|
|
74264
|
+
export declare type JiraUpdateFlagFieldInput = {
|
|
74265
|
+
comment?: InputMaybe<JiraUpdateFlagCommentInput>;
|
|
74266
|
+
id: Scalars['ID']['input'];
|
|
74267
|
+
operation: JiraUpdateFlagFieldOperationInput;
|
|
74268
|
+
};
|
|
74269
|
+
export declare type JiraUpdateFlagFieldOperationInput = {
|
|
74270
|
+
operation: JiraFlagOperations;
|
|
74271
|
+
};
|
|
74272
|
+
export declare type JiraUpdateFlagFieldPayload = {
|
|
74273
|
+
__typename?: 'JiraUpdateFlagFieldPayload';
|
|
74274
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74275
|
+
field?: Maybe<JiraFlagField>;
|
|
74276
|
+
success: Scalars['Boolean']['output'];
|
|
74277
|
+
};
|
|
73375
74278
|
export declare type JiraUpdateForgeMultipleGroupPickerFieldInput = {
|
|
73376
74279
|
id: Scalars['ID']['input'];
|
|
73377
74280
|
operations: Array<JiraForgeMultipleGroupPickerFieldOperationInput>;
|
|
@@ -73792,6 +74695,21 @@ export declare type JiraUpdateWorklogFieldInputForIssueTransitions = {
|
|
|
73792
74695
|
id: Scalars['ID']['input'];
|
|
73793
74696
|
operation: JiraWorklogFieldOperationInputForIssueTransitions;
|
|
73794
74697
|
};
|
|
74698
|
+
export declare type JiraUpdateWorklogInput = {
|
|
74699
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
74700
|
+
issue?: InputMaybe<Scalars['ID']['input']>;
|
|
74701
|
+
remainingEstimate?: InputMaybe<JiraEstimateInput>;
|
|
74702
|
+
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
74703
|
+
timeSpent?: InputMaybe<JiraEstimateInput>;
|
|
74704
|
+
workDescription?: InputMaybe<JiraAdfInput>;
|
|
74705
|
+
};
|
|
74706
|
+
export declare type JiraUpdateWorklogPayload = {
|
|
74707
|
+
__typename?: 'JiraUpdateWorklogPayload';
|
|
74708
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74709
|
+
field?: Maybe<JiraTimeTrackingField>;
|
|
74710
|
+
success: Scalars['Boolean']['output'];
|
|
74711
|
+
worklog?: Maybe<JiraWorklog>;
|
|
74712
|
+
};
|
|
73795
74713
|
export declare type JiraUpsertIssueTypePayload = Payload & {
|
|
73796
74714
|
__typename?: 'JiraUpsertIssueTypePayload';
|
|
73797
74715
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -80268,6 +81186,16 @@ export declare type MenusLookAndFeel = {
|
|
|
80268
81186
|
hoverOrFocus?: Maybe<Array<Maybe<MapOfStringToString>>>;
|
|
80269
81187
|
};
|
|
80270
81188
|
export declare type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraIssue | TownsquareGoal | TownsquareProject;
|
|
81189
|
+
export declare type MercuryAddTagsToProposalInput = {
|
|
81190
|
+
changeProposalId: Scalars['ID']['input'];
|
|
81191
|
+
tagIds: Array<Scalars['ID']['input']>;
|
|
81192
|
+
};
|
|
81193
|
+
export declare type MercuryAddTagsToProposalPayload = Payload & {
|
|
81194
|
+
__typename?: 'MercuryAddTagsToProposalPayload';
|
|
81195
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81196
|
+
success: Scalars['Boolean']['output'];
|
|
81197
|
+
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
81198
|
+
};
|
|
80271
81199
|
export declare type MercuryAddWatcherToFocusAreaInput = {
|
|
80272
81200
|
cloudId: Scalars['ID']['input'];
|
|
80273
81201
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -80707,6 +81635,15 @@ export declare type MercuryDeleteChangeProposalCommentPayload = Payload & {
|
|
|
80707
81635
|
errors?: Maybe<Array<MutationError>>;
|
|
80708
81636
|
success: Scalars['Boolean']['output'];
|
|
80709
81637
|
};
|
|
81638
|
+
export declare type MercuryDeleteChangeProposalGoalLinksInput = {
|
|
81639
|
+
changeProposalAri: Scalars['ID']['input'];
|
|
81640
|
+
goalAris: Array<Scalars['ID']['input']>;
|
|
81641
|
+
};
|
|
81642
|
+
export declare type MercuryDeleteChangeProposalGoalLinksPayload = Payload & {
|
|
81643
|
+
__typename?: 'MercuryDeleteChangeProposalGoalLinksPayload';
|
|
81644
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81645
|
+
success: Scalars['Boolean']['output'];
|
|
81646
|
+
};
|
|
80710
81647
|
export declare type MercuryDeleteChangeProposalInput = {
|
|
80711
81648
|
id: Scalars['ID']['input'];
|
|
80712
81649
|
};
|
|
@@ -81314,6 +82251,15 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
|
|
|
81314
82251
|
errors?: Maybe<Array<MutationError>>;
|
|
81315
82252
|
success: Scalars['Boolean']['output'];
|
|
81316
82253
|
};
|
|
82254
|
+
export declare type MercuryLinkGoalsToChangeProposalInput = {
|
|
82255
|
+
changeProposalAri: Scalars['ID']['input'];
|
|
82256
|
+
goalAris: Array<Scalars['ID']['input']>;
|
|
82257
|
+
};
|
|
82258
|
+
export declare type MercuryLinkGoalsToChangeProposalPayload = Payload & {
|
|
82259
|
+
__typename?: 'MercuryLinkGoalsToChangeProposalPayload';
|
|
82260
|
+
errors?: Maybe<Array<MutationError>>;
|
|
82261
|
+
success: Scalars['Boolean']['output'];
|
|
82262
|
+
};
|
|
81317
82263
|
export declare type MercuryLinkGoalsToFocusAreaInput = {
|
|
81318
82264
|
atlasGoalAris: Array<Scalars['String']['input']>;
|
|
81319
82265
|
focusAreaAri: Scalars['String']['input'];
|
|
@@ -82050,6 +82996,16 @@ export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
|
82050
82996
|
id: Scalars['ID']['input'];
|
|
82051
82997
|
rankVersion?: InputMaybe<Scalars['String']['input']>;
|
|
82052
82998
|
};
|
|
82999
|
+
export declare type MercuryRemoveTagsFromProposalInput = {
|
|
83000
|
+
changeProposalId: Scalars['ID']['input'];
|
|
83001
|
+
tagIds: Array<Scalars['ID']['input']>;
|
|
83002
|
+
};
|
|
83003
|
+
export declare type MercuryRemoveTagsFromProposalPayload = Payload & {
|
|
83004
|
+
__typename?: 'MercuryRemoveTagsFromProposalPayload';
|
|
83005
|
+
errors?: Maybe<Array<MutationError>>;
|
|
83006
|
+
success: Scalars['Boolean']['output'];
|
|
83007
|
+
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
83008
|
+
};
|
|
82053
83009
|
export declare type MercuryRemoveWatcherFromFocusAreaInput = {
|
|
82054
83010
|
cloudId: Scalars['ID']['input'];
|
|
82055
83011
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -82229,16 +83185,20 @@ export declare type MercuryStrategicEventStatusTransitions = {
|
|
|
82229
83185
|
};
|
|
82230
83186
|
export declare type MercuryStrategicEventsMutationApi = {
|
|
82231
83187
|
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
83188
|
+
addTagsToChangeProposal?: Maybe<MercuryAddTagsToProposalPayload>;
|
|
82232
83189
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
82233
83190
|
createChangeProposalComment?: Maybe<MercuryCreateChangeProposalCommentPayload>;
|
|
82234
83191
|
createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
|
|
82235
83192
|
createStrategicEventComment?: Maybe<MercuryCreateStrategicEventCommentPayload>;
|
|
82236
83193
|
deleteChangeProposal?: Maybe<MercuryDeleteChangeProposalPayload>;
|
|
82237
83194
|
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
83195
|
+
deleteChangeProposalGoalLinks?: Maybe<MercuryDeleteChangeProposalGoalLinksPayload>;
|
|
82238
83196
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
82239
83197
|
deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
|
|
83198
|
+
linkGoalsToChangeProposal?: Maybe<MercuryLinkGoalsToChangeProposalPayload>;
|
|
82240
83199
|
moveChanges?: Maybe<MercuryMoveChangesPayload>;
|
|
82241
83200
|
proposeChanges?: Maybe<MercuryProposeChangesPayload>;
|
|
83201
|
+
removeTagsFromChangeProposal?: Maybe<MercuryRemoveTagsFromProposalPayload>;
|
|
82242
83202
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
82243
83203
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
82244
83204
|
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
@@ -82258,6 +83218,9 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
82258
83218
|
updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
82259
83219
|
updateStrategicEventTargetDate?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
82260
83220
|
};
|
|
83221
|
+
export declare type MercuryStrategicEventsMutationApiAddTagsToChangeProposalArgs = {
|
|
83222
|
+
input: MercuryAddTagsToProposalInput;
|
|
83223
|
+
};
|
|
82261
83224
|
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs = {
|
|
82262
83225
|
input: MercuryCreateChangeProposalInput;
|
|
82263
83226
|
};
|
|
@@ -82276,18 +83239,27 @@ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalArgs =
|
|
|
82276
83239
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
|
|
82277
83240
|
input: MercuryDeleteChangeProposalCommentInput;
|
|
82278
83241
|
};
|
|
83242
|
+
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalGoalLinksArgs = {
|
|
83243
|
+
input: MercuryDeleteChangeProposalGoalLinksInput;
|
|
83244
|
+
};
|
|
82279
83245
|
export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
|
|
82280
83246
|
input?: InputMaybe<MercuryDeleteChangesInput>;
|
|
82281
83247
|
};
|
|
82282
83248
|
export declare type MercuryStrategicEventsMutationApiDeleteStrategicEventCommentArgs = {
|
|
82283
83249
|
input: MercuryDeleteStrategicEventCommentInput;
|
|
82284
83250
|
};
|
|
83251
|
+
export declare type MercuryStrategicEventsMutationApiLinkGoalsToChangeProposalArgs = {
|
|
83252
|
+
input: MercuryLinkGoalsToChangeProposalInput;
|
|
83253
|
+
};
|
|
82285
83254
|
export declare type MercuryStrategicEventsMutationApiMoveChangesArgs = {
|
|
82286
83255
|
input: MercuryMoveChangesInput;
|
|
82287
83256
|
};
|
|
82288
83257
|
export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
|
|
82289
83258
|
input: MercuryProposeChangesInput;
|
|
82290
83259
|
};
|
|
83260
|
+
export declare type MercuryStrategicEventsMutationApiRemoveTagsFromChangeProposalArgs = {
|
|
83261
|
+
input: MercuryRemoveTagsFromProposalInput;
|
|
83262
|
+
};
|
|
82291
83263
|
export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalStatusArgs = {
|
|
82292
83264
|
input: MercuryTransitionChangeProposalStatusInput;
|
|
82293
83265
|
};
|
|
@@ -83051,6 +84023,8 @@ export declare type Mutation = {
|
|
|
83051
84023
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
83052
84024
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
83053
84025
|
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
84026
|
+
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
84027
|
+
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
83054
84028
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
83055
84029
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
83056
84030
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
@@ -83081,6 +84055,7 @@ export declare type Mutation = {
|
|
|
83081
84055
|
bulkUnarchivePages?: Maybe<BulkArchivePagePayload>;
|
|
83082
84056
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
83083
84057
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
84058
|
+
ccp?: Maybe<CcpMutationApi>;
|
|
83084
84059
|
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
83085
84060
|
channelPlatform_createAttendee?: Maybe<ChannelPlatformConnectionData>;
|
|
83086
84061
|
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
@@ -83281,7 +84256,11 @@ export declare type Mutation = {
|
|
|
83281
84256
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
83282
84257
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
83283
84258
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
84259
|
+
graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
|
|
84260
|
+
graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
|
|
84261
|
+
graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
|
|
83284
84262
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
84263
|
+
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
83285
84264
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
83286
84265
|
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
83287
84266
|
hardDeleteSpace?: Maybe<HardDeleteSpacePayload>;
|
|
@@ -83743,6 +84722,16 @@ export declare type MutationAssetsDm_DataSourceCleansingRulesConfigureArgs = {
|
|
|
83743
84722
|
dataSourceId: Scalars['ID']['input'];
|
|
83744
84723
|
workspaceId: Scalars['ID']['input'];
|
|
83745
84724
|
};
|
|
84725
|
+
export declare type MutationAssetsDm_DataSourceRunMergeArgs = {
|
|
84726
|
+
cloudId: Scalars['ID']['input'];
|
|
84727
|
+
dataSourceIds: Array<Scalars['ID']['input']>;
|
|
84728
|
+
workspaceId: Scalars['ID']['input'];
|
|
84729
|
+
};
|
|
84730
|
+
export declare type MutationAssetsDm_DataSourceRunTransformArgs = {
|
|
84731
|
+
cloudId: Scalars['ID']['input'];
|
|
84732
|
+
jobId: Scalars['ID']['input'];
|
|
84733
|
+
workspaceId: Scalars['ID']['input'];
|
|
84734
|
+
};
|
|
83746
84735
|
export declare type MutationAssetsDm_DeleteObjectTagArgs = {
|
|
83747
84736
|
cloudId: Scalars['ID']['input'];
|
|
83748
84737
|
tagId: Scalars['ID']['input'];
|
|
@@ -83869,6 +84858,9 @@ export declare type MutationClearRestrictionsForFreeArgs = {
|
|
|
83869
84858
|
export declare type MutationCompleteSprintArgs = {
|
|
83870
84859
|
input?: InputMaybe<CompleteSprintInput>;
|
|
83871
84860
|
};
|
|
84861
|
+
export declare type MutationConfluenceArgs = {
|
|
84862
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
84863
|
+
};
|
|
83872
84864
|
export declare type MutationConfluence_AddReactionArgs = {
|
|
83873
84865
|
cloudId: Scalars['ID']['input'];
|
|
83874
84866
|
input: ConfluenceReactionInput;
|
|
@@ -84535,6 +85527,18 @@ export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
|
84535
85527
|
export declare type MutationGrantContentAccessArgs = {
|
|
84536
85528
|
grantContentAccessInput: GrantContentAccessInput;
|
|
84537
85529
|
};
|
|
85530
|
+
export declare type MutationGraphIntegration_McpAdminManagementRegisterMcpServerArgs = {
|
|
85531
|
+
input: GraphIntegrationMcpAdminManagementRegisterMcpServerInput;
|
|
85532
|
+
};
|
|
85533
|
+
export declare type MutationGraphIntegration_McpAdminManagementUnregisterMcpServerArgs = {
|
|
85534
|
+
input: GraphIntegrationMcpAdminManagementUnregisterMcpServerInput;
|
|
85535
|
+
};
|
|
85536
|
+
export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpToolConfigurationArgs = {
|
|
85537
|
+
input: GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput;
|
|
85538
|
+
};
|
|
85539
|
+
export declare type MutationGrowthUnifiedProfile_CreateEntitlementProfileArgs = {
|
|
85540
|
+
profile: GrowthUnifiedProfileCreateEntitlementProfileInput;
|
|
85541
|
+
};
|
|
84538
85542
|
export declare type MutationGrowthUnifiedProfile_CreateOrgProfileArgs = {
|
|
84539
85543
|
profile: GrowthUnifiedProfileCreateOrgProfileInput;
|
|
84540
85544
|
};
|
|
@@ -87784,7 +88788,6 @@ export declare type PolarisView = {
|
|
|
87784
88788
|
immutable?: Maybe<Scalars['Boolean']['output']>;
|
|
87785
88789
|
jql?: Maybe<Scalars['String']['output']>;
|
|
87786
88790
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']['output']>;
|
|
87787
|
-
lastViewed?: Maybe<Array<Maybe<PolarisViewLastViewed>>>;
|
|
87788
88791
|
layoutType?: Maybe<PolarisViewLayoutType>;
|
|
87789
88792
|
matrixConfig?: Maybe<PolarisMatrixConfig>;
|
|
87790
88793
|
name: Scalars['String']['output'];
|
|
@@ -87873,12 +88876,6 @@ export declare type PolarisViewFilterValueInput = {
|
|
|
87873
88876
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
87874
88877
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
87875
88878
|
};
|
|
87876
|
-
export declare type PolarisViewLastViewed = {
|
|
87877
|
-
__typename?: 'PolarisViewLastViewed';
|
|
87878
|
-
aaid: Scalars['String']['output'];
|
|
87879
|
-
account?: Maybe<User>;
|
|
87880
|
-
timestamp: Scalars['String']['output'];
|
|
87881
|
-
};
|
|
87882
88879
|
export declare enum PolarisViewLayoutType {
|
|
87883
88880
|
Compact = "COMPACT",
|
|
87884
88881
|
Detailed = "DETAILED",
|
|
@@ -88375,6 +89372,7 @@ export declare type Query = {
|
|
|
88375
89372
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
88376
89373
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
88377
89374
|
assetsDM_dataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
89375
|
+
assetsDM_dataSourceMerge?: Maybe<AssetsDmDataSourceMergeResponse>;
|
|
88378
89376
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
88379
89377
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
88380
89378
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
@@ -88382,6 +89380,7 @@ export declare type Query = {
|
|
|
88382
89380
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
88383
89381
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
88384
89382
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
89383
|
+
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
88385
89384
|
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
88386
89385
|
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
88387
89386
|
assets_schemasByIds?: Maybe<Array<Maybe<AssetsSchema>>>;
|
|
@@ -88644,6 +89643,9 @@ export declare type Query = {
|
|
|
88644
89643
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
88645
89644
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
88646
89645
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
89646
|
+
graphIntegration_mcpAdminManagementMcpServer?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
89647
|
+
graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
|
|
89648
|
+
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
88647
89649
|
graphStore?: Maybe<GraphStore>;
|
|
88648
89650
|
group?: Maybe<Group>;
|
|
88649
89651
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -88652,6 +89654,7 @@ export declare type Query = {
|
|
|
88652
89654
|
groupsUserSpaceAccess?: Maybe<PaginatedGroupList>;
|
|
88653
89655
|
groupsWithContentRestrictions?: Maybe<Array<Maybe<GroupWithRestrictions>>>;
|
|
88654
89656
|
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
89657
|
+
growthUnifiedProfile_getEntitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
88655
89658
|
growthUnifiedProfile_getOrgProfile?: Maybe<GrowthUnifiedProfileOrgProfileResult>;
|
|
88656
89659
|
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
88657
89660
|
growthUnifiedProfile_getUnifiedUserProfile?: Maybe<GrowthUnifiedProfileUserProfileResult>;
|
|
@@ -88817,7 +89820,6 @@ export declare type Query = {
|
|
|
88817
89820
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
88818
89821
|
polarisGetDetailedReaction?: Maybe<PolarisReactionSummary>;
|
|
88819
89822
|
polarisGetEarliestOnboardedProjectForCloudId?: Maybe<EarliestOnboardedProjectForCloudId>;
|
|
88820
|
-
polarisGetEarliestViewViewedForUser?: Maybe<EarliestViewViewedForUser>;
|
|
88821
89823
|
polarisGetReactions?: Maybe<Array<Maybe<PolarisReaction>>>;
|
|
88822
89824
|
polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
|
|
88823
89825
|
polarisInsight?: Maybe<PolarisInsight>;
|
|
@@ -89248,6 +90250,12 @@ export declare type QueryAssetsDm_DataSourceMappingArgs = {
|
|
|
89248
90250
|
objectClassName: Scalars['String']['input'];
|
|
89249
90251
|
workspaceId: Scalars['ID']['input'];
|
|
89250
90252
|
};
|
|
90253
|
+
export declare type QueryAssetsDm_DataSourceMergeArgs = {
|
|
90254
|
+
cloudId: Scalars['ID']['input'];
|
|
90255
|
+
dataSourceId: Scalars['ID']['input'];
|
|
90256
|
+
jobId: Scalars['ID']['input'];
|
|
90257
|
+
workspaceId: Scalars['ID']['input'];
|
|
90258
|
+
};
|
|
89251
90259
|
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
89252
90260
|
cloudID: Scalars['ID']['input'];
|
|
89253
90261
|
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -89289,6 +90297,13 @@ export declare type QueryAssetsDm_RawDataArgs = {
|
|
|
89289
90297
|
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
89290
90298
|
workspaceId: Scalars['ID']['input'];
|
|
89291
90299
|
};
|
|
90300
|
+
export declare type QueryAssetsDm_TransformedDataArgs = {
|
|
90301
|
+
cloudId: Scalars['ID']['input'];
|
|
90302
|
+
dataSourceId: Scalars['ID']['input'];
|
|
90303
|
+
filters?: InputMaybe<Array<AssetsDmTransformedDataFilterInput>>;
|
|
90304
|
+
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
90305
|
+
workspaceId: Scalars['ID']['input'];
|
|
90306
|
+
};
|
|
89292
90307
|
export declare type QueryAssets_ObjectTypesByIdsArgs = {
|
|
89293
90308
|
ids: Array<Scalars['ID']['input']>;
|
|
89294
90309
|
};
|
|
@@ -89449,6 +90464,9 @@ export declare type QueryCommentsArgs = {
|
|
|
89449
90464
|
singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89450
90465
|
type?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
89451
90466
|
};
|
|
90467
|
+
export declare type QueryConfluenceArgs = {
|
|
90468
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90469
|
+
};
|
|
89452
90470
|
export declare type QueryConfluenceUsersArgs = {
|
|
89453
90471
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
89454
90472
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -90451,6 +91469,22 @@ export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
|
90451
91469
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
90452
91470
|
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
90453
91471
|
};
|
|
91472
|
+
export declare type QueryGraphIntegration_McpAdminManagementMcpServerArgs = {
|
|
91473
|
+
cloudId: Scalars['ID']['input'];
|
|
91474
|
+
serverId: Scalars['ID']['input'];
|
|
91475
|
+
};
|
|
91476
|
+
export declare type QueryGraphIntegration_McpAdminManagementMcpServersArgs = {
|
|
91477
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91478
|
+
cloudId: Scalars['ID']['input'];
|
|
91479
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91480
|
+
};
|
|
91481
|
+
export declare type QueryGraphIntegration_McpAdminManagementMcpToolsArgs = {
|
|
91482
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91483
|
+
cloudId: Scalars['ID']['input'];
|
|
91484
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91485
|
+
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
91486
|
+
serverId: Scalars['ID']['input'];
|
|
91487
|
+
};
|
|
90454
91488
|
export declare type QueryGroupArgs = {
|
|
90455
91489
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
90456
91490
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -90478,6 +91512,9 @@ export declare type QueryGroupsWithContentRestrictionsArgs = {
|
|
|
90478
91512
|
contentId: Scalars['ID']['input'];
|
|
90479
91513
|
groupIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
90480
91514
|
};
|
|
91515
|
+
export declare type QueryGrowthUnifiedProfile_GetEntitlementProfileArgs = {
|
|
91516
|
+
entitlementId: Scalars['ID']['input'];
|
|
91517
|
+
};
|
|
90481
91518
|
export declare type QueryGrowthUnifiedProfile_GetOrgProfileArgs = {
|
|
90482
91519
|
filter?: InputMaybe<GrowthUnifiedProfileOrgProfileFilterInput>;
|
|
90483
91520
|
orgId: Scalars['ID']['input'];
|
|
@@ -91001,9 +92038,6 @@ export declare type QueryPolarisGetDetailedReactionArgs = {
|
|
|
91001
92038
|
export declare type QueryPolarisGetEarliestOnboardedProjectForCloudIdArgs = {
|
|
91002
92039
|
id: Scalars['ID']['input'];
|
|
91003
92040
|
};
|
|
91004
|
-
export declare type QueryPolarisGetEarliestViewViewedForUserArgs = {
|
|
91005
|
-
id: Scalars['ID']['input'];
|
|
91006
|
-
};
|
|
91007
92041
|
export declare type QueryPolarisGetReactionsArgs = {
|
|
91008
92042
|
input: PolarisGetReactionsInput;
|
|
91009
92043
|
};
|
|
@@ -94684,6 +95718,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
94684
95718
|
};
|
|
94685
95719
|
export declare type SearchThirdPartyProduct = {
|
|
94686
95720
|
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
95721
|
+
containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
94687
95722
|
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
94688
95723
|
linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
|
|
94689
95724
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96557,6 +97592,11 @@ export declare type SiteDescription = {
|
|
|
96557
97592
|
__typename?: 'SiteDescription';
|
|
96558
97593
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
96559
97594
|
};
|
|
97595
|
+
export declare type SiteEmailAddress = {
|
|
97596
|
+
__typename?: 'SiteEmailAddress';
|
|
97597
|
+
emailAddress?: Maybe<Scalars['String']['output']>;
|
|
97598
|
+
emailAddressStatus?: Maybe<ConfluenceSiteEmailAddressStatus>;
|
|
97599
|
+
};
|
|
96560
97600
|
export declare type SiteLookAndFeel = {
|
|
96561
97601
|
__typename?: 'SiteLookAndFeel';
|
|
96562
97602
|
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
@@ -100157,6 +101197,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
100157
101197
|
isArchived: Scalars['Boolean']['output'];
|
|
100158
101198
|
isWatching?: Maybe<Scalars['Boolean']['output']>;
|
|
100159
101199
|
key: Scalars['String']['output'];
|
|
101200
|
+
latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
100160
101201
|
name: Scalars['String']['output'];
|
|
100161
101202
|
owner?: Maybe<User>;
|
|
100162
101203
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
@@ -101518,6 +102559,7 @@ export declare type TrelloActionAttachmentEntity = {
|
|
|
101518
102559
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101519
102560
|
previewUrl?: Maybe<Scalars['String']['output']>;
|
|
101520
102561
|
previewUrl2x?: Maybe<Scalars['String']['output']>;
|
|
102562
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
101521
102563
|
type?: Maybe<Scalars['String']['output']>;
|
|
101522
102564
|
url?: Maybe<Scalars['String']['output']>;
|
|
101523
102565
|
};
|
|
@@ -102488,6 +103530,7 @@ export declare type TrelloCardEdgeUpdated = {
|
|
|
102488
103530
|
};
|
|
102489
103531
|
export declare enum TrelloCardExternalSource {
|
|
102490
103532
|
Email = "EMAIL",
|
|
103533
|
+
Loom = "LOOM",
|
|
102491
103534
|
Msteams = "MSTEAMS",
|
|
102492
103535
|
Siri = "SIRI",
|
|
102493
103536
|
Slack = "SLACK"
|
|
@@ -102841,8 +103884,11 @@ export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
|
|
|
102841
103884
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
102842
103885
|
};
|
|
102843
103886
|
export declare type TrelloCreateCardInput = {
|
|
103887
|
+
externalSource?: InputMaybe<TrelloCardExternalSource>;
|
|
102844
103888
|
listId: Scalars['ID']['input'];
|
|
102845
103889
|
name: Scalars['String']['input'];
|
|
103890
|
+
position?: InputMaybe<Scalars['TrelloCardPosition']['input']>;
|
|
103891
|
+
urlSource?: InputMaybe<Scalars['String']['input']>;
|
|
102846
103892
|
};
|
|
102847
103893
|
export declare type TrelloCreateCardPayload = Payload & {
|
|
102848
103894
|
__typename?: 'TrelloCreateCardPayload';
|
|
@@ -106696,7 +107742,6 @@ export declare type UpdatePolarisViewInput = {
|
|
|
106696
107742
|
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106697
107743
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
106698
107744
|
lastCommentsViewedTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
106699
|
-
lastViewedTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
106700
107745
|
layoutType?: InputMaybe<PolarisViewLayoutType>;
|
|
106701
107746
|
matrixConfig?: InputMaybe<UpdatePolarisMatrixConfig>;
|
|
106702
107747
|
name?: InputMaybe<Scalars['String']['input']>;
|