@forge/cli-shared 8.3.1-next.1-experimental-b4d61da → 8.3.1-next.1-experimental-b695d2e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -2
- package/out/graphql/graphql-types.d.ts +942 -24
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +79 -22
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -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,11 @@ 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
|
+
};
|
|
3737
3756
|
export declare type AssetsDmDataSourceRunTransformResponse = {
|
|
3738
3757
|
__typename?: 'AssetsDMDataSourceRunTransformResponse';
|
|
3739
3758
|
isSuccessful: Scalars['Boolean']['output'];
|
|
@@ -4037,6 +4056,25 @@ export declare enum AssetsDmStepStatus {
|
|
|
4037
4056
|
NotStarted = "NOT_STARTED",
|
|
4038
4057
|
Outdated = "OUTDATED"
|
|
4039
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
|
+
};
|
|
4040
4078
|
export declare type AssetsIcon = {
|
|
4041
4079
|
__typename?: 'AssetsIcon';
|
|
4042
4080
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -4051,30 +4089,36 @@ export declare type AssetsObject = Node & {
|
|
|
4051
4089
|
__typename?: 'AssetsObject';
|
|
4052
4090
|
avatar?: Maybe<AssetsAvatar>;
|
|
4053
4091
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
4092
|
+
displayTypename?: Maybe<Scalars['String']['output']>;
|
|
4054
4093
|
id: Scalars['ID']['output'];
|
|
4055
4094
|
label?: Maybe<Scalars['String']['output']>;
|
|
4056
4095
|
links?: Maybe<AssetsLinks>;
|
|
4057
4096
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
4058
4097
|
objectType?: Maybe<AssetsObjectType>;
|
|
4098
|
+
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
4059
4099
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
4060
4100
|
};
|
|
4061
4101
|
export declare type AssetsObjectType = Node & {
|
|
4062
4102
|
__typename?: 'AssetsObjectType';
|
|
4063
4103
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
4104
|
+
displayTypename?: Maybe<Scalars['String']['output']>;
|
|
4064
4105
|
icon?: Maybe<AssetsIcon>;
|
|
4065
4106
|
id: Scalars['ID']['output'];
|
|
4066
4107
|
links?: Maybe<AssetsLinks>;
|
|
4067
4108
|
name?: Maybe<Scalars['String']['output']>;
|
|
4068
4109
|
schema?: Maybe<AssetsSchema>;
|
|
4110
|
+
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
4069
4111
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
4070
4112
|
};
|
|
4071
4113
|
export declare type AssetsSchema = Node & {
|
|
4072
4114
|
__typename?: 'AssetsSchema';
|
|
4073
4115
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
4116
|
+
displayTypename?: Maybe<Scalars['String']['output']>;
|
|
4074
4117
|
id: Scalars['ID']['output'];
|
|
4075
4118
|
key?: Maybe<Scalars['String']['output']>;
|
|
4076
4119
|
links?: Maybe<AssetsLinks>;
|
|
4077
4120
|
name?: Maybe<Scalars['String']['output']>;
|
|
4121
|
+
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
4078
4122
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
4079
4123
|
};
|
|
4080
4124
|
export declare type AssignIssueParentInput = {
|
|
@@ -5350,6 +5394,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
5350
5394
|
defaultStandaloneOfferingTransitions?: Maybe<Array<Maybe<CcpEntitlementOfferingTransition>>>;
|
|
5351
5395
|
enableAbuseProneFeatures?: Maybe<Scalars['Boolean']['output']>;
|
|
5352
5396
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
5397
|
+
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
5353
5398
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
5354
5399
|
experienceCapabilities?: Maybe<CcpEntitlementExperienceCapabilities>;
|
|
5355
5400
|
featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
@@ -7413,6 +7458,7 @@ export declare type CommerceChargeQuantity = {
|
|
|
7413
7458
|
quantity?: Maybe<Scalars['Float']['output']>;
|
|
7414
7459
|
};
|
|
7415
7460
|
export declare type CommerceEntitlement = {
|
|
7461
|
+
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
7416
7462
|
experienceCapabilities?: Maybe<CommerceEntitlementExperienceCapabilities>;
|
|
7417
7463
|
id: Scalars['ID']['output'];
|
|
7418
7464
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
@@ -12725,6 +12771,18 @@ export declare enum ComponentSyncEventStatus {
|
|
|
12725
12771
|
Success = "SUCCESS",
|
|
12726
12772
|
UserError = "USER_ERROR"
|
|
12727
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
|
+
};
|
|
12728
12786
|
export declare type ConfluenceAdminAnnouncementBanner = {
|
|
12729
12787
|
__typename?: 'ConfluenceAdminAnnouncementBanner';
|
|
12730
12788
|
appearance: Scalars['String']['output'];
|
|
@@ -12802,6 +12860,19 @@ export declare enum ConfluenceAppInstallationLicenseCapabilitySet {
|
|
|
12802
12860
|
CapabilityAdvanced = "CAPABILITY_ADVANCED",
|
|
12803
12861
|
CapabilityStandard = "CAPABILITY_STANDARD"
|
|
12804
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
|
+
};
|
|
12805
12876
|
export declare type ConfluenceApplicationLink = {
|
|
12806
12877
|
__typename?: 'ConfluenceApplicationLink';
|
|
12807
12878
|
applicationId: Scalars['String']['output'];
|
|
@@ -12813,6 +12884,17 @@ export declare type ConfluenceApplicationLink = {
|
|
|
12813
12884
|
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
12814
12885
|
typeId: Scalars['String']['output'];
|
|
12815
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
|
+
};
|
|
12816
12898
|
export declare type ConfluenceBlockedAccessAssignableSpaceRole = {
|
|
12817
12899
|
__typename?: 'ConfluenceBlockedAccessAssignableSpaceRole';
|
|
12818
12900
|
roleDescription: Scalars['String']['output'];
|
|
@@ -12954,6 +13036,16 @@ export declare type ConfluenceCalendarTimezones = {
|
|
|
12954
13036
|
__typename?: 'ConfluenceCalendarTimezones';
|
|
12955
13037
|
timezones?: Maybe<Array<Maybe<ConfluenceCalendarTimeZone>>>;
|
|
12956
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
|
+
};
|
|
12957
13049
|
export declare type ConfluenceChildContent = {
|
|
12958
13050
|
__typename?: 'ConfluenceChildContent';
|
|
12959
13051
|
attachment: PaginatedContentList;
|
|
@@ -13184,6 +13276,12 @@ export declare enum ConfluenceContentStatus {
|
|
|
13184
13276
|
Historical = "HISTORICAL",
|
|
13185
13277
|
Trashed = "TRASHED"
|
|
13186
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
|
+
};
|
|
13187
13285
|
export declare type ConfluenceContentTitleEmoji = {
|
|
13188
13286
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
13189
13287
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -13411,6 +13509,28 @@ export declare type ConfluenceCurrentContentNativeProperties = {
|
|
|
13411
13509
|
__typename?: 'ConfluenceCurrentContentNativeProperties';
|
|
13412
13510
|
contentState?: Maybe<ConfluenceContentState>;
|
|
13413
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
|
+
};
|
|
13414
13534
|
export declare type ConfluenceDataLifecycleManagementPolicy = {
|
|
13415
13535
|
__typename?: 'ConfluenceDataLifecycleManagementPolicy';
|
|
13416
13536
|
dataRetentionPolicyDetailsForWorkspace: ConfluenceDataRetentionPolicyStatus;
|
|
@@ -13446,6 +13566,13 @@ export declare type ConfluenceDate = {
|
|
|
13446
13566
|
__typename?: 'ConfluenceDate';
|
|
13447
13567
|
value: Scalars['String']['output'];
|
|
13448
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
|
+
};
|
|
13449
13576
|
export declare type ConfluenceDeleteBlogPostPropertyInput = {
|
|
13450
13577
|
blogPostId: Scalars['ID']['input'];
|
|
13451
13578
|
key: Scalars['String']['input'];
|
|
@@ -13472,6 +13599,14 @@ export declare type ConfluenceDeleteCommentPayload = {
|
|
|
13472
13599
|
errors?: Maybe<Array<MutationError>>;
|
|
13473
13600
|
success: Scalars['Boolean']['output'];
|
|
13474
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
|
+
};
|
|
13475
13610
|
export declare type ConfluenceDeleteCustomRoleInput = {
|
|
13476
13611
|
anonymousRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
13477
13612
|
guestRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -13500,6 +13635,14 @@ export declare type ConfluenceDeleteDraftPagePayload = Payload & {
|
|
|
13500
13635
|
errors?: Maybe<Array<MutationError>>;
|
|
13501
13636
|
success: Scalars['Boolean']['output'];
|
|
13502
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
|
+
};
|
|
13503
13646
|
export declare type ConfluenceDeletePagePropertyInput = {
|
|
13504
13647
|
key: Scalars['String']['input'];
|
|
13505
13648
|
pageId: Scalars['ID']['input'];
|
|
@@ -13509,6 +13652,10 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
13509
13652
|
errors?: Maybe<Array<MutationError>>;
|
|
13510
13653
|
success: Scalars['Boolean']['output'];
|
|
13511
13654
|
};
|
|
13655
|
+
export declare type ConfluenceDeleteSpacePageTemplateInput = {
|
|
13656
|
+
id: Scalars['ID']['input'];
|
|
13657
|
+
spaceId: Scalars['Long']['input'];
|
|
13658
|
+
};
|
|
13512
13659
|
export declare type ConfluenceDeleteSubCalendarAllFutureEventsInput = {
|
|
13513
13660
|
recurUntil?: InputMaybe<Scalars['String']['input']>;
|
|
13514
13661
|
subCalendarId: Scalars['ID']['input'];
|
|
@@ -13584,6 +13731,12 @@ export declare type ConfluenceEditorSettings = {
|
|
|
13584
13731
|
export declare type ConfluenceEditorSettingsInput = {
|
|
13585
13732
|
toolbarDockingInitialPosition?: InputMaybe<Scalars['String']['input']>;
|
|
13586
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
|
+
};
|
|
13587
13740
|
export declare type ConfluenceEmbed = Node & {
|
|
13588
13741
|
__typename?: 'ConfluenceEmbed';
|
|
13589
13742
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -13611,6 +13764,23 @@ export declare type ConfluenceEmbedUpdated = {
|
|
|
13611
13764
|
isBlankStateUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
13612
13765
|
product?: Maybe<Scalars['String']['output']>;
|
|
13613
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
|
+
};
|
|
13614
13784
|
export declare type ConfluenceExpandTypeFromJira = {
|
|
13615
13785
|
__typename?: 'ConfluenceExpandTypeFromJira';
|
|
13616
13786
|
confluenceExpandTypeFromJira?: Maybe<Scalars['String']['output']>;
|
|
@@ -13787,10 +13957,49 @@ export declare type ConfluenceForgePayloadContext = {
|
|
|
13787
13957
|
localId?: InputMaybe<Scalars['String']['input']>;
|
|
13788
13958
|
moduleKey?: InputMaybe<Scalars['String']['input']>;
|
|
13789
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
|
+
};
|
|
13790
13968
|
export declare type ConfluenceGeneratedSpaceKey = {
|
|
13791
13969
|
__typename?: 'ConfluenceGeneratedSpaceKey';
|
|
13792
13970
|
key?: Maybe<Scalars['String']['output']>;
|
|
13793
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
|
+
};
|
|
13794
14003
|
export declare enum ConfluenceGraphQlDefaultTitleEmoji {
|
|
13795
14004
|
LivePageDefault = "LIVE_PAGE_DEFAULT",
|
|
13796
14005
|
None = "NONE"
|
|
@@ -13806,6 +14015,23 @@ export declare enum ConfluenceGroupUsageType {
|
|
|
13806
14015
|
TeamCollaboration = "TEAM_COLLABORATION",
|
|
13807
14016
|
UserbaseGroup = "USERBASE_GROUP"
|
|
13808
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
|
+
};
|
|
13809
14035
|
export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
|
|
13810
14036
|
__typename?: 'ConfluenceInlineComment';
|
|
13811
14037
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -13927,6 +14153,31 @@ export declare type ConfluenceInviteUserPayload = {
|
|
|
13927
14153
|
errors?: Maybe<Array<MutationError>>;
|
|
13928
14154
|
success: Scalars['Boolean']['output'];
|
|
13929
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
|
+
};
|
|
13930
14181
|
export declare type ConfluenceLabel = {
|
|
13931
14182
|
__typename?: 'ConfluenceLabel';
|
|
13932
14183
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -13947,6 +14198,15 @@ export declare type ConfluenceLabelWatchStatus = {
|
|
|
13947
14198
|
__typename?: 'ConfluenceLabelWatchStatus';
|
|
13948
14199
|
isWatching: Scalars['Boolean']['output'];
|
|
13949
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
|
+
};
|
|
13950
14210
|
export declare type ConfluenceLike = {
|
|
13951
14211
|
__typename?: 'ConfluenceLike';
|
|
13952
14212
|
likedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -13957,6 +14217,11 @@ export declare type ConfluenceLikesSummary = {
|
|
|
13957
14217
|
count?: Maybe<Scalars['Int']['output']>;
|
|
13958
14218
|
likes?: Maybe<Array<Maybe<ConfluenceLike>>>;
|
|
13959
14219
|
};
|
|
14220
|
+
export declare type ConfluenceLoginSettings = {
|
|
14221
|
+
__typename?: 'ConfluenceLoginSettings';
|
|
14222
|
+
enableElevatedSecurityCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
14223
|
+
loginAttemptsThreshold?: Maybe<Scalars['Int']['output']>;
|
|
14224
|
+
};
|
|
13960
14225
|
export declare type ConfluenceLongTask = {
|
|
13961
14226
|
__typename?: 'ConfluenceLongTask';
|
|
13962
14227
|
id: Scalars['ID']['output'];
|
|
@@ -13990,6 +14255,16 @@ export declare type ConfluenceLoomEntryPoints = {
|
|
|
13990
14255
|
__typename?: 'ConfluenceLoomEntryPoints';
|
|
13991
14256
|
isLoomEntryPointsEnabled: Scalars['Boolean']['output'];
|
|
13992
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
|
+
};
|
|
13993
14268
|
export declare type ConfluenceMakeSubCalendarPrivateUrlInput = {
|
|
13994
14269
|
subCalendarId: Scalars['ID']['input'];
|
|
13995
14270
|
};
|
|
@@ -14018,6 +14293,8 @@ export declare type ConfluenceMarkCommentAsDanglingPayload = Payload & {
|
|
|
14018
14293
|
};
|
|
14019
14294
|
export declare type ConfluenceMutationApi = {
|
|
14020
14295
|
__typename?: 'ConfluenceMutationApi';
|
|
14296
|
+
addCustomApplicationLink?: Maybe<ConfluenceAddCustomApplicationLinkPayload>;
|
|
14297
|
+
changeOrderOfCustomApplicationLink?: Maybe<ConfluenceChangeOrderOfCustomApplicationLinkPayload>;
|
|
14021
14298
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
14022
14299
|
createBlogPostProperty?: Maybe<ConfluenceCreateBlogPostPropertyPayload>;
|
|
14023
14300
|
createFooterCommentOnBlogPost?: Maybe<ConfluenceCreateFooterCommentOnBlogPostPayload>;
|
|
@@ -14027,28 +14304,53 @@ export declare type ConfluenceMutationApi = {
|
|
|
14027
14304
|
createSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
14028
14305
|
deleteBlogPostProperty?: Maybe<ConfluenceDeleteBlogPostPropertyPayload>;
|
|
14029
14306
|
deleteComment?: Maybe<ConfluenceDeleteCommentPayload>;
|
|
14307
|
+
deleteCustomApplicationLink?: Maybe<ConfluenceDeleteCustomApplicationLinkPayload>;
|
|
14030
14308
|
deleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
14031
14309
|
deleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
14310
|
+
deleteGlobalPageTemplate?: Maybe<ConfluenceDeleteGlobalPageTemplatePayload>;
|
|
14032
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>;
|
|
14033
14318
|
publishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
14034
14319
|
publishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
14035
14320
|
purgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
14036
14321
|
purgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
14037
14322
|
reopenInlineComment?: Maybe<ConfluenceReopenInlineCommentPayload>;
|
|
14323
|
+
repairJiraMacroAppLinks?: Maybe<ConfluenceRepairJiraMacroAppLinksPayload>;
|
|
14038
14324
|
replyToComment?: Maybe<ConfluenceReplyToCommentPayload>;
|
|
14325
|
+
requestSpaceAccess?: Maybe<ConfluenceRequestSpaceAccessPayload>;
|
|
14039
14326
|
resolveInlineComment?: Maybe<ConfluenceResolveInlineCommentPayload>;
|
|
14327
|
+
saveOrUpdateSpaceOwner?: Maybe<ConfluenceSaveOrUpdateSpaceOwnerPayload>;
|
|
14040
14328
|
trashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
14041
14329
|
trashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
14330
|
+
unpromoteBlueprint?: Maybe<ConfluenceUnpromoteBlueprintPayload>;
|
|
14331
|
+
unpromotePageTemplate?: Maybe<ConfluenceUnpromotePageTemplatePayload>;
|
|
14042
14332
|
updateComment?: Maybe<ConfluenceUpdateCommentPayload>;
|
|
14043
14333
|
updateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
14044
14334
|
updateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
14335
|
+
updateCustomApplicationLink?: Maybe<ConfluenceUpdateCustomApplicationLinkPayload>;
|
|
14045
14336
|
updateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
14046
14337
|
updateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
14338
|
+
updateGlobalDefaultLanguageConfiguration?: Maybe<ConfluenceUpdateGlobalDefaultLocaleConfigurationPayload>;
|
|
14339
|
+
updateGlobalPageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
14340
|
+
updateIndexingLanguageConfiguration?: Maybe<ConfluenceUpdateIndexingLanguageConfigurationPayload>;
|
|
14341
|
+
updateSiteConfiguration?: Maybe<ConfluenceUpdateSiteConfigurationPayload>;
|
|
14047
14342
|
updateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
14343
|
+
updateSpacePageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
14048
14344
|
updateSpaceSettings?: Maybe<ConfluenceUpdateSpaceSettingsPayload>;
|
|
14049
14345
|
updateValueBlogPostProperty?: Maybe<ConfluenceUpdateValueBlogPostPropertyPayload>;
|
|
14050
14346
|
updateValuePageProperty?: Maybe<ConfluenceUpdateValuePagePropertyPayload>;
|
|
14051
14347
|
};
|
|
14348
|
+
export declare type ConfluenceMutationApiAddCustomApplicationLinkArgs = {
|
|
14349
|
+
input: ConfluenceAddCustomApplicationLinkInput;
|
|
14350
|
+
};
|
|
14351
|
+
export declare type ConfluenceMutationApiChangeOrderOfCustomApplicationLinkArgs = {
|
|
14352
|
+
input: ConfluenceChangeOrderOfCustomApplicationLinkInput;
|
|
14353
|
+
};
|
|
14052
14354
|
export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
14053
14355
|
input: ConfluenceCreateBlogPostInput;
|
|
14054
14356
|
};
|
|
@@ -14077,15 +14379,39 @@ export declare type ConfluenceMutationApiDeleteBlogPostPropertyArgs = {
|
|
|
14077
14379
|
export declare type ConfluenceMutationApiDeleteCommentArgs = {
|
|
14078
14380
|
input: ConfluenceDeleteCommentInput;
|
|
14079
14381
|
};
|
|
14382
|
+
export declare type ConfluenceMutationApiDeleteCustomApplicationLinkArgs = {
|
|
14383
|
+
input: ConfluenceDeleteCustomApplicationLinkInput;
|
|
14384
|
+
};
|
|
14080
14385
|
export declare type ConfluenceMutationApiDeleteDraftBlogPostArgs = {
|
|
14081
14386
|
input: ConfluenceDeleteDraftBlogPostInput;
|
|
14082
14387
|
};
|
|
14083
14388
|
export declare type ConfluenceMutationApiDeleteDraftPageArgs = {
|
|
14084
14389
|
input: ConfluenceDeleteDraftPageInput;
|
|
14085
14390
|
};
|
|
14391
|
+
export declare type ConfluenceMutationApiDeleteGlobalPageTemplateArgs = {
|
|
14392
|
+
input: ConfluenceDeleteGlobalPageTemplateInput;
|
|
14393
|
+
};
|
|
14086
14394
|
export declare type ConfluenceMutationApiDeletePagePropertyArgs = {
|
|
14087
14395
|
input: ConfluenceDeletePagePropertyInput;
|
|
14088
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
|
+
};
|
|
14089
14415
|
export declare type ConfluenceMutationApiPublishBlogPostArgs = {
|
|
14090
14416
|
input: ConfluencePublishBlogPostInput;
|
|
14091
14417
|
};
|
|
@@ -14101,18 +14427,33 @@ export declare type ConfluenceMutationApiPurgePageArgs = {
|
|
|
14101
14427
|
export declare type ConfluenceMutationApiReopenInlineCommentArgs = {
|
|
14102
14428
|
input: ConfluenceReopenInlineCommentInput;
|
|
14103
14429
|
};
|
|
14430
|
+
export declare type ConfluenceMutationApiRepairJiraMacroAppLinksArgs = {
|
|
14431
|
+
input: ConfluenceRepairJiraMacroAppLinksInput;
|
|
14432
|
+
};
|
|
14104
14433
|
export declare type ConfluenceMutationApiReplyToCommentArgs = {
|
|
14105
14434
|
input: ConfluenceReplyToCommentInput;
|
|
14106
14435
|
};
|
|
14436
|
+
export declare type ConfluenceMutationApiRequestSpaceAccessArgs = {
|
|
14437
|
+
confluenceRequestSpaceAccessInput: ConfluenceRequestSpaceAccessInput;
|
|
14438
|
+
};
|
|
14107
14439
|
export declare type ConfluenceMutationApiResolveInlineCommentArgs = {
|
|
14108
14440
|
input: ConfluenceResolveInlineCommentInput;
|
|
14109
14441
|
};
|
|
14442
|
+
export declare type ConfluenceMutationApiSaveOrUpdateSpaceOwnerArgs = {
|
|
14443
|
+
input: ConfluenceSaveOrUpdateSpaceOwnerInput;
|
|
14444
|
+
};
|
|
14110
14445
|
export declare type ConfluenceMutationApiTrashBlogPostArgs = {
|
|
14111
14446
|
input: ConfluenceTrashBlogPostInput;
|
|
14112
14447
|
};
|
|
14113
14448
|
export declare type ConfluenceMutationApiTrashPageArgs = {
|
|
14114
14449
|
input: ConfluenceTrashPageInput;
|
|
14115
14450
|
};
|
|
14451
|
+
export declare type ConfluenceMutationApiUnpromoteBlueprintArgs = {
|
|
14452
|
+
input: ConfluenceUnpromoteBlueprintInput;
|
|
14453
|
+
};
|
|
14454
|
+
export declare type ConfluenceMutationApiUnpromotePageTemplateArgs = {
|
|
14455
|
+
input: ConfluenceUnpromotePageTemplateInput;
|
|
14456
|
+
};
|
|
14116
14457
|
export declare type ConfluenceMutationApiUpdateCommentArgs = {
|
|
14117
14458
|
input: ConfluenceUpdateCommentInput;
|
|
14118
14459
|
};
|
|
@@ -14122,15 +14463,33 @@ export declare type ConfluenceMutationApiUpdateCurrentBlogPostArgs = {
|
|
|
14122
14463
|
export declare type ConfluenceMutationApiUpdateCurrentPageArgs = {
|
|
14123
14464
|
input: ConfluenceUpdateCurrentPageInput;
|
|
14124
14465
|
};
|
|
14466
|
+
export declare type ConfluenceMutationApiUpdateCustomApplicationLinkArgs = {
|
|
14467
|
+
input: ConfluenceUpdateCustomApplicationLinkInput;
|
|
14468
|
+
};
|
|
14125
14469
|
export declare type ConfluenceMutationApiUpdateDraftBlogPostArgs = {
|
|
14126
14470
|
input: ConfluenceUpdateDraftBlogPostInput;
|
|
14127
14471
|
};
|
|
14128
14472
|
export declare type ConfluenceMutationApiUpdateDraftPageArgs = {
|
|
14129
14473
|
input: ConfluenceUpdateDraftPageInput;
|
|
14130
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
|
+
};
|
|
14131
14487
|
export declare type ConfluenceMutationApiUpdateSpaceArgs = {
|
|
14132
14488
|
input: ConfluenceUpdateSpaceInput;
|
|
14133
14489
|
};
|
|
14490
|
+
export declare type ConfluenceMutationApiUpdateSpacePageTemplateDescriptionArgs = {
|
|
14491
|
+
input: ConfluenceUpdateSpacePageTemplateDescriptionInput;
|
|
14492
|
+
};
|
|
14134
14493
|
export declare type ConfluenceMutationApiUpdateSpaceSettingsArgs = {
|
|
14135
14494
|
input: ConfluenceUpdateSpaceSettingsInput;
|
|
14136
14495
|
};
|
|
@@ -14144,10 +14503,37 @@ export declare enum ConfluenceMutationContentStatus {
|
|
|
14144
14503
|
Current = "CURRENT",
|
|
14145
14504
|
Draft = "DRAFT"
|
|
14146
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
|
+
};
|
|
14147
14529
|
export declare enum ConfluenceNotesOrdering {
|
|
14148
14530
|
DateLastModifiedAsc = "DATE_LAST_MODIFIED_ASC",
|
|
14149
14531
|
DateLastModifiedDesc = "DATE_LAST_MODIFIED_DESC"
|
|
14150
14532
|
}
|
|
14533
|
+
export declare type ConfluenceNotificationsSettings = {
|
|
14534
|
+
__typename?: 'ConfluenceNotificationsSettings';
|
|
14535
|
+
emailSettings?: Maybe<ConfluenceEmailSettings>;
|
|
14536
|
+
};
|
|
14151
14537
|
export declare type ConfluenceOperationCheck = {
|
|
14152
14538
|
__typename?: 'ConfluenceOperationCheck';
|
|
14153
14539
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -14280,6 +14666,20 @@ export declare type ConfluencePdfExportDownloadLink = {
|
|
|
14280
14666
|
__typename?: 'ConfluencePdfExportDownloadLink';
|
|
14281
14667
|
link?: Maybe<Scalars['String']['output']>;
|
|
14282
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
|
+
};
|
|
14283
14683
|
export declare enum ConfluencePdfExportState {
|
|
14284
14684
|
Done = "DONE",
|
|
14285
14685
|
Failed = "FAILED",
|
|
@@ -14343,6 +14743,24 @@ export declare type ConfluencePrivacyMode = {
|
|
|
14343
14743
|
__typename?: 'ConfluencePrivacyMode';
|
|
14344
14744
|
isPrivacyModeEnabled: Scalars['Boolean']['output'];
|
|
14345
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
|
+
};
|
|
14346
14764
|
export declare type ConfluencePublishBlogPostInput = {
|
|
14347
14765
|
id: Scalars['ID']['input'];
|
|
14348
14766
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14391,20 +14809,35 @@ export declare type ConfluenceQueryApi = {
|
|
|
14391
14809
|
blogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
14392
14810
|
comment?: Maybe<ConfluenceComment>;
|
|
14393
14811
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
14812
|
+
customPageSpaceSettings?: Maybe<ConfluenceCustomPageSpaceSettings>;
|
|
14394
14813
|
database?: Maybe<ConfluenceDatabase>;
|
|
14395
14814
|
databases?: Maybe<Array<Maybe<ConfluenceDatabase>>>;
|
|
14815
|
+
defaultSpaceLogo?: Maybe<ConfluenceDefaultSpaceLogo>;
|
|
14396
14816
|
embed?: Maybe<ConfluenceEmbed>;
|
|
14397
14817
|
embeds?: Maybe<Array<Maybe<ConfluenceEmbed>>>;
|
|
14398
14818
|
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
14399
14819
|
folder?: Maybe<ConfluenceFolder>;
|
|
14400
14820
|
folders?: Maybe<Array<Maybe<ConfluenceFolder>>>;
|
|
14821
|
+
globalBlueprintSettings?: Maybe<ConfluenceGlobalBlueprintSettings>;
|
|
14822
|
+
globalSpaceBlueprintSettings?: Maybe<ConfluenceGlobalBlueprintSettings>;
|
|
14823
|
+
importSpaceConfiguration?: Maybe<ConfluenceImportSpaceConfiguration>;
|
|
14401
14824
|
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
14825
|
+
jiraMacroAppLinksScanningStatus?: Maybe<ConfluenceJiraMacroAppLinksScanningStatus>;
|
|
14402
14826
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
14827
|
+
macroUsage?: Maybe<ConfluenceMacroUsage>;
|
|
14828
|
+
newCodeMacro?: Maybe<ConfluenceNewCodeMacro>;
|
|
14829
|
+
notificationsSettings?: Maybe<ConfluenceNotificationsSettings>;
|
|
14403
14830
|
page?: Maybe<ConfluencePage>;
|
|
14404
14831
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
14832
|
+
pdfExportSpaceSettings?: Maybe<ConfluencePdfExportSpaceSettings>;
|
|
14405
14833
|
searchLabels?: Maybe<ConfluenceLabelSearchResults>;
|
|
14834
|
+
siteConfiguration?: Maybe<ConfluenceSiteConfiguration>;
|
|
14406
14835
|
space?: Maybe<ConfluenceSpace>;
|
|
14407
14836
|
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
14837
|
+
systemTemplates?: Maybe<Array<Maybe<ConfluenceSystemTemplate>>>;
|
|
14838
|
+
teamCalendar?: Maybe<ConfluenceTeamCalendar>;
|
|
14839
|
+
templates?: Maybe<ConfluenceTemplates>;
|
|
14840
|
+
themes?: Maybe<ConfluenceThemes>;
|
|
14408
14841
|
validateSpaceKey?: Maybe<ConfluenceValidateSpaceKeyResponse>;
|
|
14409
14842
|
whiteboard?: Maybe<ConfluenceWhiteboard>;
|
|
14410
14843
|
whiteboards?: Maybe<Array<Maybe<ConfluenceWhiteboard>>>;
|
|
@@ -14421,6 +14854,9 @@ export declare type ConfluenceQueryApiCommentArgs = {
|
|
|
14421
14854
|
export declare type ConfluenceQueryApiCommentsArgs = {
|
|
14422
14855
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
14423
14856
|
};
|
|
14857
|
+
export declare type ConfluenceQueryApiCustomPageSpaceSettingsArgs = {
|
|
14858
|
+
spaceId: Scalars['Long']['input'];
|
|
14859
|
+
};
|
|
14424
14860
|
export declare type ConfluenceQueryApiDatabaseArgs = {
|
|
14425
14861
|
id: Scalars['ID']['input'];
|
|
14426
14862
|
};
|
|
@@ -14445,6 +14881,9 @@ export declare type ConfluenceQueryApiFolderArgs = {
|
|
|
14445
14881
|
export declare type ConfluenceQueryApiFoldersArgs = {
|
|
14446
14882
|
ids: Array<Scalars['ID']['input']>;
|
|
14447
14883
|
};
|
|
14884
|
+
export declare type ConfluenceQueryApiGlobalSpaceBlueprintSettingsArgs = {
|
|
14885
|
+
spaceId: Scalars['Long']['input'];
|
|
14886
|
+
};
|
|
14448
14887
|
export declare type ConfluenceQueryApiInlineTaskArgs = {
|
|
14449
14888
|
id: Scalars['ID']['input'];
|
|
14450
14889
|
};
|
|
@@ -14457,6 +14896,9 @@ export declare type ConfluenceQueryApiPageArgs = {
|
|
|
14457
14896
|
export declare type ConfluenceQueryApiPagesArgs = {
|
|
14458
14897
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
14459
14898
|
};
|
|
14899
|
+
export declare type ConfluenceQueryApiPdfExportSpaceSettingsArgs = {
|
|
14900
|
+
spaceId: Scalars['Long']['input'];
|
|
14901
|
+
};
|
|
14460
14902
|
export declare type ConfluenceQueryApiSearchLabelsArgs = {
|
|
14461
14903
|
cloudId: Scalars['ID']['input'];
|
|
14462
14904
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14587,6 +15029,14 @@ export declare type ConfluenceReopenInlineCommentPayload = {
|
|
|
14587
15029
|
errors?: Maybe<Array<MutationError>>;
|
|
14588
15030
|
success: Scalars['Boolean']['output'];
|
|
14589
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
|
+
};
|
|
14590
15040
|
export declare type ConfluenceReplyToCommentInput = {
|
|
14591
15041
|
body: ConfluenceContentBodyInput;
|
|
14592
15042
|
parentCommentId: Scalars['ID']['input'];
|
|
@@ -14601,6 +15051,15 @@ export declare enum ConfluenceRequestAccessApprovalDecision {
|
|
|
14601
15051
|
Approve = "APPROVE",
|
|
14602
15052
|
Deny = "DENY"
|
|
14603
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
|
+
};
|
|
14604
15063
|
export declare type ConfluenceResolveCommentByContentIdPayload = Payload & {
|
|
14605
15064
|
__typename?: 'ConfluenceResolveCommentByContentIdPayload';
|
|
14606
15065
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -14631,6 +15090,16 @@ export declare enum ConfluenceRoleAssignabilityCode {
|
|
|
14631
15090
|
NoManageNonlicensedUsersPermNotAssignable = "NO_MANAGE_NONLICENSED_USERS_PERM_NOT_ASSIGNABLE",
|
|
14632
15091
|
PrincipalInvalidRole = "PRINCIPAL_INVALID_ROLE"
|
|
14633
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
|
+
};
|
|
14634
15103
|
export declare type ConfluenceSchedulePublished = {
|
|
14635
15104
|
__typename?: 'ConfluenceSchedulePublished';
|
|
14636
15105
|
confVersion?: Maybe<Scalars['Int']['output']>;
|
|
@@ -14688,6 +15157,49 @@ export declare type ConfluenceSetSubCalendarReminderPayload = {
|
|
|
14688
15157
|
subCalendarReminder?: Maybe<ConfluenceSubCalendarReminder>;
|
|
14689
15158
|
success: Scalars['Boolean']['output'];
|
|
14690
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
|
+
}
|
|
14691
15203
|
export declare type ConfluenceSpace = Node & {
|
|
14692
15204
|
__typename?: 'ConfluenceSpace';
|
|
14693
15205
|
alias?: Maybe<Scalars['String']['output']>;
|
|
@@ -14863,15 +15375,71 @@ export declare enum ConfluenceSubscriptionContentType {
|
|
|
14863
15375
|
Page = "PAGE",
|
|
14864
15376
|
Whiteboard = "WHITEBOARD"
|
|
14865
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
|
+
}
|
|
14866
15418
|
export declare type ConfluenceTeamPresence = {
|
|
14867
15419
|
__typename?: 'ConfluenceTeamPresence';
|
|
14868
15420
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
14869
15421
|
};
|
|
15422
|
+
export declare type ConfluenceTeamPresenceSettings = {
|
|
15423
|
+
__typename?: 'ConfluenceTeamPresenceSettings';
|
|
15424
|
+
isEnabledOnContentView?: Maybe<Scalars['Boolean']['output']>;
|
|
15425
|
+
};
|
|
14870
15426
|
export declare type ConfluenceTeamPresenceSpaceSettings = {
|
|
14871
15427
|
__typename?: 'ConfluenceTeamPresenceSpaceSettings';
|
|
14872
15428
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
14873
15429
|
isEnabledOnContentViewForSite: Scalars['Boolean']['output'];
|
|
14874
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
|
+
};
|
|
14875
15443
|
export declare type ConfluenceTenantContext = {
|
|
14876
15444
|
__typename?: 'ConfluenceTenantContext';
|
|
14877
15445
|
baseUrl: Scalars['String']['output'];
|
|
@@ -14882,6 +15450,29 @@ export declare type ConfluenceTenantContext = {
|
|
|
14882
15450
|
licensedProducts: Array<LicensedProduct>;
|
|
14883
15451
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
14884
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
|
+
};
|
|
14885
15476
|
export declare type ConfluenceTopic = {
|
|
14886
15477
|
__typename?: 'ConfluenceTopic';
|
|
14887
15478
|
creator?: Maybe<Scalars['ID']['output']>;
|
|
@@ -14928,6 +15519,30 @@ export declare type ConfluenceUnmarkCommentAsDanglingPayload = Payload & {
|
|
|
14928
15519
|
errors: Array<MutationError>;
|
|
14929
15520
|
success: Scalars['Boolean']['output'];
|
|
14930
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
|
+
};
|
|
14931
15546
|
export declare type ConfluenceUnwatchSubCalendarInput = {
|
|
14932
15547
|
subCalendarId: Scalars['ID']['input'];
|
|
14933
15548
|
};
|
|
@@ -15008,6 +15623,19 @@ export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
|
15008
15623
|
page?: Maybe<ConfluencePage>;
|
|
15009
15624
|
success: Scalars['Boolean']['output'];
|
|
15010
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
|
+
};
|
|
15011
15639
|
export declare type ConfluenceUpdateCustomRoleInput = {
|
|
15012
15640
|
anonymousReassignmentRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
15013
15641
|
description: Scalars['String']['input'];
|
|
@@ -15055,6 +15683,32 @@ export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
|
15055
15683
|
page?: Maybe<ConfluencePage>;
|
|
15056
15684
|
success: Scalars['Boolean']['output'];
|
|
15057
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
|
+
};
|
|
15058
15712
|
export declare type ConfluenceUpdateNav4OptInInput = {
|
|
15059
15713
|
enableNav4: Scalars['Boolean']['input'];
|
|
15060
15714
|
};
|
|
@@ -15063,10 +15717,44 @@ export declare type ConfluenceUpdateNav4OptInPayload = Payload & {
|
|
|
15063
15717
|
errors?: Maybe<Array<MutationError>>;
|
|
15064
15718
|
success: Scalars['Boolean']['output'];
|
|
15065
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
|
+
};
|
|
15066
15749
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
15067
15750
|
id: Scalars['ID']['input'];
|
|
15068
15751
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
15069
15752
|
};
|
|
15753
|
+
export declare type ConfluenceUpdateSpacePageTemplateDescriptionInput = {
|
|
15754
|
+
description: Scalars['String']['input'];
|
|
15755
|
+
id: Scalars['ID']['input'];
|
|
15756
|
+
spaceId: Scalars['Long']['input'];
|
|
15757
|
+
};
|
|
15070
15758
|
export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
15071
15759
|
__typename?: 'ConfluenceUpdateSpacePayload';
|
|
15072
15760
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -15137,6 +15825,12 @@ export declare type ConfluenceUpdateValuePagePropertyPayload = Payload & {
|
|
|
15137
15825
|
pageProperty?: Maybe<ConfluencePageProperty>;
|
|
15138
15826
|
success: Scalars['Boolean']['output'];
|
|
15139
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
|
+
};
|
|
15140
15834
|
export declare type ConfluenceUser = {
|
|
15141
15835
|
__typename?: 'ConfluenceUser';
|
|
15142
15836
|
accessStatus: AccessStatus;
|
|
@@ -21194,9 +21888,17 @@ export declare type DevAiRovoDevBulkCreateSessionByCloudIdInput = {
|
|
|
21194
21888
|
export declare type DevAiRovoDevBulkCreateSessionPayload = Payload & {
|
|
21195
21889
|
__typename?: 'DevAiRovoDevBulkCreateSessionPayload';
|
|
21196
21890
|
errors?: Maybe<Array<MutationError>>;
|
|
21891
|
+
failedSessions?: Maybe<Array<DevAiRovoDevBulkSessionResult>>;
|
|
21197
21892
|
sessions?: Maybe<Array<Maybe<DevAiRovoDevSession>>>;
|
|
21893
|
+
succeededSessions?: Maybe<Array<DevAiRovoDevBulkSessionResult>>;
|
|
21198
21894
|
success: Scalars['Boolean']['output'];
|
|
21199
21895
|
};
|
|
21896
|
+
export declare type DevAiRovoDevBulkSessionResult = {
|
|
21897
|
+
__typename?: 'DevAiRovoDevBulkSessionResult';
|
|
21898
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21899
|
+
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
21900
|
+
session?: Maybe<DevAiRovoDevSession>;
|
|
21901
|
+
};
|
|
21200
21902
|
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
21201
21903
|
cloudId: Scalars['ID']['input'];
|
|
21202
21904
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
@@ -23016,10 +23718,6 @@ export declare type EarliestOnboardedProjectForCloudId = {
|
|
|
23016
23718
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
23017
23719
|
template?: Maybe<Scalars['String']['output']>;
|
|
23018
23720
|
};
|
|
23019
|
-
export declare type EarliestViewViewedForUser = {
|
|
23020
|
-
__typename?: 'EarliestViewViewedForUser';
|
|
23021
|
-
datetime?: Maybe<Scalars['String']['output']>;
|
|
23022
|
-
};
|
|
23023
23721
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
23024
23722
|
export declare type EcosystemAppInstallationConfigExtension = {
|
|
23025
23723
|
__typename?: 'EcosystemAppInstallationConfigExtension';
|
|
@@ -27518,6 +28216,110 @@ export declare type GraphIntegrationDirectoryItemEdge = {
|
|
|
27518
28216
|
export declare enum GraphIntegrationDirectoryItemType {
|
|
27519
28217
|
McpTool = "MCP_TOOL"
|
|
27520
28218
|
}
|
|
28219
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
|
|
28220
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerConnection';
|
|
28221
|
+
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpServerEdge>>;
|
|
28222
|
+
nodes?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpServerNode>>;
|
|
28223
|
+
pageInfo: PageInfo;
|
|
28224
|
+
};
|
|
28225
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerEdge = {
|
|
28226
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerEdge';
|
|
28227
|
+
cursor: Scalars['String']['output'];
|
|
28228
|
+
node?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
28229
|
+
};
|
|
28230
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
28231
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerNode';
|
|
28232
|
+
authConsentUrl?: Maybe<Scalars['URL']['output']>;
|
|
28233
|
+
baseUrl: Scalars['URL']['output'];
|
|
28234
|
+
displayName: Scalars['String']['output'];
|
|
28235
|
+
endpointPath?: Maybe<Scalars['String']['output']>;
|
|
28236
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
28237
|
+
id: Scalars['ID']['output'];
|
|
28238
|
+
serverType: GraphIntegrationMcpAdminManagementMcpServerType;
|
|
28239
|
+
status: GraphIntegrationMcpAdminManagementMcpServerStatus;
|
|
28240
|
+
};
|
|
28241
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpServerStatus {
|
|
28242
|
+
Deleting = "DELETING",
|
|
28243
|
+
Provisioning = "PROVISIONING",
|
|
28244
|
+
Registered = "REGISTERED",
|
|
28245
|
+
Suspended = "SUSPENDED"
|
|
28246
|
+
}
|
|
28247
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpServerType {
|
|
28248
|
+
Http = "HTTP",
|
|
28249
|
+
Sse = "SSE"
|
|
28250
|
+
}
|
|
28251
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolConfiguration = {
|
|
28252
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolConfiguration';
|
|
28253
|
+
status: GraphIntegrationMcpAdminManagementMcpToolStatus;
|
|
28254
|
+
};
|
|
28255
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolConfigurationInput = {
|
|
28256
|
+
status?: InputMaybe<GraphIntegrationMcpAdminManagementMcpToolStatus>;
|
|
28257
|
+
toolId: Scalars['ID']['input'];
|
|
28258
|
+
};
|
|
28259
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolConnection = {
|
|
28260
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolConnection';
|
|
28261
|
+
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolEdge>>;
|
|
28262
|
+
nodes?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolNode>>;
|
|
28263
|
+
pageInfo: PageInfo;
|
|
28264
|
+
};
|
|
28265
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolEdge = {
|
|
28266
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolEdge';
|
|
28267
|
+
cursor: Scalars['String']['output'];
|
|
28268
|
+
node?: Maybe<GraphIntegrationMcpAdminManagementMcpToolNode>;
|
|
28269
|
+
};
|
|
28270
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolNode = {
|
|
28271
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolNode';
|
|
28272
|
+
configuration?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConfiguration>;
|
|
28273
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
28274
|
+
displayName: Scalars['String']['output'];
|
|
28275
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
28276
|
+
id: Scalars['ID']['output'];
|
|
28277
|
+
mcpServer: GraphIntegrationMcpAdminManagementMcpServerNode;
|
|
28278
|
+
name: Scalars['String']['output'];
|
|
28279
|
+
};
|
|
28280
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpToolStatus {
|
|
28281
|
+
Allow = "ALLOW",
|
|
28282
|
+
Deny = "DENY",
|
|
28283
|
+
NewToolDeny = "NEW_TOOL_DENY"
|
|
28284
|
+
}
|
|
28285
|
+
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
28286
|
+
cloudId: Scalars['ID']['input'];
|
|
28287
|
+
displayName: Scalars['String']['input'];
|
|
28288
|
+
endpointPath?: InputMaybe<Scalars['String']['input']>;
|
|
28289
|
+
icon?: InputMaybe<Scalars['String']['input']>;
|
|
28290
|
+
serverType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerType>;
|
|
28291
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
28292
|
+
url: Scalars['URL']['input'];
|
|
28293
|
+
};
|
|
28294
|
+
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerPayload = Payload & {
|
|
28295
|
+
__typename?: 'GraphIntegrationMcpAdminManagementRegisterMcpServerPayload';
|
|
28296
|
+
authConsentUrl?: Maybe<Scalars['URL']['output']>;
|
|
28297
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28298
|
+
serverId?: Maybe<Scalars['ID']['output']>;
|
|
28299
|
+
success: Scalars['Boolean']['output'];
|
|
28300
|
+
};
|
|
28301
|
+
export declare type GraphIntegrationMcpAdminManagementUnregisterMcpServerInput = {
|
|
28302
|
+
cloudId: Scalars['ID']['input'];
|
|
28303
|
+
serverId: Scalars['ID']['input'];
|
|
28304
|
+
};
|
|
28305
|
+
export declare type GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload = Payload & {
|
|
28306
|
+
__typename?: 'GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload';
|
|
28307
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28308
|
+
serverId?: Maybe<Scalars['ID']['output']>;
|
|
28309
|
+
success: Scalars['Boolean']['output'];
|
|
28310
|
+
};
|
|
28311
|
+
export declare type GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput = {
|
|
28312
|
+
cloudId: Scalars['ID']['input'];
|
|
28313
|
+
serverId: Scalars['ID']['input'];
|
|
28314
|
+
toolConfigurations: Array<GraphIntegrationMcpAdminManagementMcpToolConfigurationInput>;
|
|
28315
|
+
};
|
|
28316
|
+
export declare type GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload = Payload & {
|
|
28317
|
+
__typename?: 'GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload';
|
|
28318
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28319
|
+
serverId?: Maybe<Scalars['ID']['output']>;
|
|
28320
|
+
success: Scalars['Boolean']['output'];
|
|
28321
|
+
updatedTools?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolNode>>;
|
|
28322
|
+
};
|
|
27521
28323
|
export declare type GraphIntegrationMcpServer = {
|
|
27522
28324
|
__typename?: 'GraphIntegrationMcpServer';
|
|
27523
28325
|
displayName: Scalars['String']['output'];
|
|
@@ -52933,6 +53735,7 @@ export declare enum GrowthUnifiedProfileUserIdType {
|
|
|
52933
53735
|
export declare type GrowthUnifiedProfileUserProfile = {
|
|
52934
53736
|
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
52935
53737
|
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
53738
|
+
jobFunction?: Maybe<Scalars['String']['output']>;
|
|
52936
53739
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
52937
53740
|
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
52938
53741
|
};
|
|
@@ -52996,6 +53799,7 @@ export declare type HamsEntitlement = CommerceEntitlement & {
|
|
|
52996
53799
|
entitlementGroupId?: Maybe<Scalars['String']['output']>;
|
|
52997
53800
|
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
52998
53801
|
entitlementMigrationEvaluation?: Maybe<HamsEntitlementMigrationEvaluation>;
|
|
53802
|
+
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
52999
53803
|
entitlementSource?: Maybe<Scalars['String']['output']>;
|
|
53000
53804
|
experienceCapabilities?: Maybe<HamsEntitlementExperienceCapabilities>;
|
|
53001
53805
|
futureEdition?: Maybe<Scalars['String']['output']>;
|
|
@@ -62547,6 +63351,7 @@ export declare type JiraIssueFieldsInput = {
|
|
|
62547
63351
|
priority?: InputMaybe<JiraPriorityInput>;
|
|
62548
63352
|
projectFields?: InputMaybe<Array<JiraProjectFieldInput>>;
|
|
62549
63353
|
resolution?: InputMaybe<JiraResolutionInput>;
|
|
63354
|
+
respondersField?: InputMaybe<JiraServiceManagementRespondersFieldInput>;
|
|
62550
63355
|
richTextFields?: InputMaybe<Array<JiraRichTextFieldInput>>;
|
|
62551
63356
|
security?: InputMaybe<JiraSecurityLevelInput>;
|
|
62552
63357
|
singleGroupPickerFields?: InputMaybe<Array<JiraSingleGroupPickerFieldInput>>;
|
|
@@ -71555,6 +72360,9 @@ export declare type JiraServiceManagementResponderEdge = {
|
|
|
71555
72360
|
cursor: Scalars['String']['output'];
|
|
71556
72361
|
node?: Maybe<JiraServiceManagementResponder>;
|
|
71557
72362
|
};
|
|
72363
|
+
export declare type JiraServiceManagementResponderFieldInput = {
|
|
72364
|
+
responderId: Scalars['ID']['input'];
|
|
72365
|
+
};
|
|
71558
72366
|
export declare type JiraServiceManagementRespondersField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
71559
72367
|
__typename?: 'JiraServiceManagementRespondersField';
|
|
71560
72368
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -71578,6 +72386,11 @@ export declare type JiraServiceManagementRespondersFieldRespondersConnectionArgs
|
|
|
71578
72386
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
71579
72387
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
71580
72388
|
};
|
|
72389
|
+
export declare type JiraServiceManagementRespondersFieldInput = {
|
|
72390
|
+
bulkEditMultiSelectFieldOption?: InputMaybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
72391
|
+
fieldId: Scalars['ID']['input'];
|
|
72392
|
+
responders: Array<JiraServiceManagementResponderFieldInput>;
|
|
72393
|
+
};
|
|
71581
72394
|
export declare type JiraServiceManagementSelectPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
71582
72395
|
__typename?: 'JiraServiceManagementSelectPreviewField';
|
|
71583
72396
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -73207,6 +74020,7 @@ export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
73207
74020
|
};
|
|
73208
74021
|
export declare type JiraTimelineIssueLinkOperationPayload = {
|
|
73209
74022
|
__typename?: 'JiraTimelineIssueLinkOperationPayload';
|
|
74023
|
+
dependencyId?: Maybe<Scalars['ID']['output']>;
|
|
73210
74024
|
errors?: Maybe<Array<MutationError>>;
|
|
73211
74025
|
inwardItem?: Maybe<JiraIssue>;
|
|
73212
74026
|
outwardItem?: Maybe<JiraIssue>;
|
|
@@ -78154,7 +78968,6 @@ export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput =
|
|
|
78154
78968
|
frameworkId: Scalars['ID']['input'];
|
|
78155
78969
|
};
|
|
78156
78970
|
export declare type MarketplaceConsoleAppSoftwareVersionInput = {
|
|
78157
|
-
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78158
78971
|
bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78159
78972
|
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
78160
78973
|
communityEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -78163,31 +78976,24 @@ export declare type MarketplaceConsoleAppSoftwareVersionInput = {
|
|
|
78163
78976
|
documentationUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78164
78977
|
editionDetails?: InputMaybe<MarketplaceConsoleEditionDetailsInput>;
|
|
78165
78978
|
eulaUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78166
|
-
forumsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78167
78979
|
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
78168
78980
|
heroImageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78169
78981
|
highlights?: InputMaybe<Array<MarketplaceConsoleListingHighLightInput>>;
|
|
78170
78982
|
isBeta?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78171
78983
|
isSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78172
|
-
issueTrackerUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78173
78984
|
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78174
78985
|
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
78175
78986
|
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
78176
78987
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
78177
78988
|
partnerSpecificTerms?: InputMaybe<Scalars['String']['input']>;
|
|
78178
78989
|
paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
78179
|
-
privacyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78180
78990
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
78181
78991
|
purchaseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78182
78992
|
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
78183
78993
|
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
78184
78994
|
screenshots?: InputMaybe<Array<MarketplaceConsoleListingScreenshotInput>>;
|
|
78185
|
-
segmentWriteKey?: InputMaybe<Scalars['String']['input']>;
|
|
78186
78995
|
sourceCodeLicenseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78187
78996
|
status: MarketplaceConsoleVersionType;
|
|
78188
|
-
statusAfterApproval?: InputMaybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
78189
|
-
summary?: InputMaybe<Scalars['String']['input']>;
|
|
78190
|
-
supportTicketSystemUrl?: InputMaybe<Scalars['String']['input']>;
|
|
78191
78997
|
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
78192
78998
|
youtubeId?: InputMaybe<Scalars['String']['input']>;
|
|
78193
78999
|
};
|
|
@@ -80380,6 +81186,16 @@ export declare type MenusLookAndFeel = {
|
|
|
80380
81186
|
hoverOrFocus?: Maybe<Array<Maybe<MapOfStringToString>>>;
|
|
80381
81187
|
};
|
|
80382
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
|
+
};
|
|
80383
81199
|
export declare type MercuryAddWatcherToFocusAreaInput = {
|
|
80384
81200
|
cloudId: Scalars['ID']['input'];
|
|
80385
81201
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -80819,6 +81635,15 @@ export declare type MercuryDeleteChangeProposalCommentPayload = Payload & {
|
|
|
80819
81635
|
errors?: Maybe<Array<MutationError>>;
|
|
80820
81636
|
success: Scalars['Boolean']['output'];
|
|
80821
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
|
+
};
|
|
80822
81647
|
export declare type MercuryDeleteChangeProposalInput = {
|
|
80823
81648
|
id: Scalars['ID']['input'];
|
|
80824
81649
|
};
|
|
@@ -81426,6 +82251,15 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
|
|
|
81426
82251
|
errors?: Maybe<Array<MutationError>>;
|
|
81427
82252
|
success: Scalars['Boolean']['output'];
|
|
81428
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
|
+
};
|
|
81429
82263
|
export declare type MercuryLinkGoalsToFocusAreaInput = {
|
|
81430
82264
|
atlasGoalAris: Array<Scalars['String']['input']>;
|
|
81431
82265
|
focusAreaAri: Scalars['String']['input'];
|
|
@@ -82162,6 +82996,16 @@ export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
|
82162
82996
|
id: Scalars['ID']['input'];
|
|
82163
82997
|
rankVersion?: InputMaybe<Scalars['String']['input']>;
|
|
82164
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
|
+
};
|
|
82165
83009
|
export declare type MercuryRemoveWatcherFromFocusAreaInput = {
|
|
82166
83010
|
cloudId: Scalars['ID']['input'];
|
|
82167
83011
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -82341,16 +83185,20 @@ export declare type MercuryStrategicEventStatusTransitions = {
|
|
|
82341
83185
|
};
|
|
82342
83186
|
export declare type MercuryStrategicEventsMutationApi = {
|
|
82343
83187
|
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
83188
|
+
addTagsToChangeProposal?: Maybe<MercuryAddTagsToProposalPayload>;
|
|
82344
83189
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
82345
83190
|
createChangeProposalComment?: Maybe<MercuryCreateChangeProposalCommentPayload>;
|
|
82346
83191
|
createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
|
|
82347
83192
|
createStrategicEventComment?: Maybe<MercuryCreateStrategicEventCommentPayload>;
|
|
82348
83193
|
deleteChangeProposal?: Maybe<MercuryDeleteChangeProposalPayload>;
|
|
82349
83194
|
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
83195
|
+
deleteChangeProposalGoalLinks?: Maybe<MercuryDeleteChangeProposalGoalLinksPayload>;
|
|
82350
83196
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
82351
83197
|
deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
|
|
83198
|
+
linkGoalsToChangeProposal?: Maybe<MercuryLinkGoalsToChangeProposalPayload>;
|
|
82352
83199
|
moveChanges?: Maybe<MercuryMoveChangesPayload>;
|
|
82353
83200
|
proposeChanges?: Maybe<MercuryProposeChangesPayload>;
|
|
83201
|
+
removeTagsFromChangeProposal?: Maybe<MercuryRemoveTagsFromProposalPayload>;
|
|
82354
83202
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
82355
83203
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
82356
83204
|
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
@@ -82370,6 +83218,9 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
82370
83218
|
updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
82371
83219
|
updateStrategicEventTargetDate?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
82372
83220
|
};
|
|
83221
|
+
export declare type MercuryStrategicEventsMutationApiAddTagsToChangeProposalArgs = {
|
|
83222
|
+
input: MercuryAddTagsToProposalInput;
|
|
83223
|
+
};
|
|
82373
83224
|
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs = {
|
|
82374
83225
|
input: MercuryCreateChangeProposalInput;
|
|
82375
83226
|
};
|
|
@@ -82388,18 +83239,27 @@ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalArgs =
|
|
|
82388
83239
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
|
|
82389
83240
|
input: MercuryDeleteChangeProposalCommentInput;
|
|
82390
83241
|
};
|
|
83242
|
+
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalGoalLinksArgs = {
|
|
83243
|
+
input: MercuryDeleteChangeProposalGoalLinksInput;
|
|
83244
|
+
};
|
|
82391
83245
|
export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
|
|
82392
83246
|
input?: InputMaybe<MercuryDeleteChangesInput>;
|
|
82393
83247
|
};
|
|
82394
83248
|
export declare type MercuryStrategicEventsMutationApiDeleteStrategicEventCommentArgs = {
|
|
82395
83249
|
input: MercuryDeleteStrategicEventCommentInput;
|
|
82396
83250
|
};
|
|
83251
|
+
export declare type MercuryStrategicEventsMutationApiLinkGoalsToChangeProposalArgs = {
|
|
83252
|
+
input: MercuryLinkGoalsToChangeProposalInput;
|
|
83253
|
+
};
|
|
82397
83254
|
export declare type MercuryStrategicEventsMutationApiMoveChangesArgs = {
|
|
82398
83255
|
input: MercuryMoveChangesInput;
|
|
82399
83256
|
};
|
|
82400
83257
|
export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
|
|
82401
83258
|
input: MercuryProposeChangesInput;
|
|
82402
83259
|
};
|
|
83260
|
+
export declare type MercuryStrategicEventsMutationApiRemoveTagsFromChangeProposalArgs = {
|
|
83261
|
+
input: MercuryRemoveTagsFromProposalInput;
|
|
83262
|
+
};
|
|
82403
83263
|
export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalStatusArgs = {
|
|
82404
83264
|
input: MercuryTransitionChangeProposalStatusInput;
|
|
82405
83265
|
};
|
|
@@ -83163,6 +84023,7 @@ export declare type Mutation = {
|
|
|
83163
84023
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
83164
84024
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
83165
84025
|
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
84026
|
+
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
83166
84027
|
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
83167
84028
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
83168
84029
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
@@ -83395,6 +84256,9 @@ export declare type Mutation = {
|
|
|
83395
84256
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
83396
84257
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
83397
84258
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
84259
|
+
graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
|
|
84260
|
+
graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
|
|
84261
|
+
graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
|
|
83398
84262
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
83399
84263
|
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
83400
84264
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
@@ -83858,6 +84722,11 @@ export declare type MutationAssetsDm_DataSourceCleansingRulesConfigureArgs = {
|
|
|
83858
84722
|
dataSourceId: Scalars['ID']['input'];
|
|
83859
84723
|
workspaceId: Scalars['ID']['input'];
|
|
83860
84724
|
};
|
|
84725
|
+
export declare type MutationAssetsDm_DataSourceRunMergeArgs = {
|
|
84726
|
+
cloudId: Scalars['ID']['input'];
|
|
84727
|
+
dataSourceIds: Array<Scalars['ID']['input']>;
|
|
84728
|
+
workspaceId: Scalars['ID']['input'];
|
|
84729
|
+
};
|
|
83861
84730
|
export declare type MutationAssetsDm_DataSourceRunTransformArgs = {
|
|
83862
84731
|
cloudId: Scalars['ID']['input'];
|
|
83863
84732
|
jobId: Scalars['ID']['input'];
|
|
@@ -83989,6 +84858,9 @@ export declare type MutationClearRestrictionsForFreeArgs = {
|
|
|
83989
84858
|
export declare type MutationCompleteSprintArgs = {
|
|
83990
84859
|
input?: InputMaybe<CompleteSprintInput>;
|
|
83991
84860
|
};
|
|
84861
|
+
export declare type MutationConfluenceArgs = {
|
|
84862
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
84863
|
+
};
|
|
83992
84864
|
export declare type MutationConfluence_AddReactionArgs = {
|
|
83993
84865
|
cloudId: Scalars['ID']['input'];
|
|
83994
84866
|
input: ConfluenceReactionInput;
|
|
@@ -84655,6 +85527,15 @@ export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
|
84655
85527
|
export declare type MutationGrantContentAccessArgs = {
|
|
84656
85528
|
grantContentAccessInput: GrantContentAccessInput;
|
|
84657
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
|
+
};
|
|
84658
85539
|
export declare type MutationGrowthUnifiedProfile_CreateEntitlementProfileArgs = {
|
|
84659
85540
|
profile: GrowthUnifiedProfileCreateEntitlementProfileInput;
|
|
84660
85541
|
};
|
|
@@ -87907,7 +88788,6 @@ export declare type PolarisView = {
|
|
|
87907
88788
|
immutable?: Maybe<Scalars['Boolean']['output']>;
|
|
87908
88789
|
jql?: Maybe<Scalars['String']['output']>;
|
|
87909
88790
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']['output']>;
|
|
87910
|
-
lastViewed?: Maybe<Array<Maybe<PolarisViewLastViewed>>>;
|
|
87911
88791
|
layoutType?: Maybe<PolarisViewLayoutType>;
|
|
87912
88792
|
matrixConfig?: Maybe<PolarisMatrixConfig>;
|
|
87913
88793
|
name: Scalars['String']['output'];
|
|
@@ -87996,12 +88876,6 @@ export declare type PolarisViewFilterValueInput = {
|
|
|
87996
88876
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
87997
88877
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
87998
88878
|
};
|
|
87999
|
-
export declare type PolarisViewLastViewed = {
|
|
88000
|
-
__typename?: 'PolarisViewLastViewed';
|
|
88001
|
-
aaid: Scalars['String']['output'];
|
|
88002
|
-
account?: Maybe<User>;
|
|
88003
|
-
timestamp: Scalars['String']['output'];
|
|
88004
|
-
};
|
|
88005
88879
|
export declare enum PolarisViewLayoutType {
|
|
88006
88880
|
Compact = "COMPACT",
|
|
88007
88881
|
Detailed = "DETAILED",
|
|
@@ -88498,6 +89372,7 @@ export declare type Query = {
|
|
|
88498
89372
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
88499
89373
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
88500
89374
|
assetsDM_dataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
89375
|
+
assetsDM_dataSourceMerge?: Maybe<AssetsDmDataSourceMergeResponse>;
|
|
88501
89376
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
88502
89377
|
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
88503
89378
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
@@ -88505,6 +89380,7 @@ export declare type Query = {
|
|
|
88505
89380
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
88506
89381
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
88507
89382
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
89383
|
+
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
88508
89384
|
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
88509
89385
|
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
88510
89386
|
assets_schemasByIds?: Maybe<Array<Maybe<AssetsSchema>>>;
|
|
@@ -88767,6 +89643,9 @@ export declare type Query = {
|
|
|
88767
89643
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
88768
89644
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
88769
89645
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
89646
|
+
graphIntegration_mcpAdminManagementMcpServer?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
89647
|
+
graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
|
|
89648
|
+
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
88770
89649
|
graphStore?: Maybe<GraphStore>;
|
|
88771
89650
|
group?: Maybe<Group>;
|
|
88772
89651
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -88941,7 +89820,6 @@ export declare type Query = {
|
|
|
88941
89820
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
88942
89821
|
polarisGetDetailedReaction?: Maybe<PolarisReactionSummary>;
|
|
88943
89822
|
polarisGetEarliestOnboardedProjectForCloudId?: Maybe<EarliestOnboardedProjectForCloudId>;
|
|
88944
|
-
polarisGetEarliestViewViewedForUser?: Maybe<EarliestViewViewedForUser>;
|
|
88945
89823
|
polarisGetReactions?: Maybe<Array<Maybe<PolarisReaction>>>;
|
|
88946
89824
|
polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
|
|
88947
89825
|
polarisInsight?: Maybe<PolarisInsight>;
|
|
@@ -89372,6 +90250,12 @@ export declare type QueryAssetsDm_DataSourceMappingArgs = {
|
|
|
89372
90250
|
objectClassName: Scalars['String']['input'];
|
|
89373
90251
|
workspaceId: Scalars['ID']['input'];
|
|
89374
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
|
+
};
|
|
89375
90259
|
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
89376
90260
|
cloudID: Scalars['ID']['input'];
|
|
89377
90261
|
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -89413,6 +90297,13 @@ export declare type QueryAssetsDm_RawDataArgs = {
|
|
|
89413
90297
|
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
89414
90298
|
workspaceId: Scalars['ID']['input'];
|
|
89415
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
|
+
};
|
|
89416
90307
|
export declare type QueryAssets_ObjectTypesByIdsArgs = {
|
|
89417
90308
|
ids: Array<Scalars['ID']['input']>;
|
|
89418
90309
|
};
|
|
@@ -89573,6 +90464,9 @@ export declare type QueryCommentsArgs = {
|
|
|
89573
90464
|
singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89574
90465
|
type?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
89575
90466
|
};
|
|
90467
|
+
export declare type QueryConfluenceArgs = {
|
|
90468
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90469
|
+
};
|
|
89576
90470
|
export declare type QueryConfluenceUsersArgs = {
|
|
89577
90471
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
89578
90472
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -90575,6 +91469,22 @@ export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
|
90575
91469
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
90576
91470
|
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
90577
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
|
+
};
|
|
90578
91488
|
export declare type QueryGroupArgs = {
|
|
90579
91489
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
90580
91490
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -91128,9 +92038,6 @@ export declare type QueryPolarisGetDetailedReactionArgs = {
|
|
|
91128
92038
|
export declare type QueryPolarisGetEarliestOnboardedProjectForCloudIdArgs = {
|
|
91129
92039
|
id: Scalars['ID']['input'];
|
|
91130
92040
|
};
|
|
91131
|
-
export declare type QueryPolarisGetEarliestViewViewedForUserArgs = {
|
|
91132
|
-
id: Scalars['ID']['input'];
|
|
91133
|
-
};
|
|
91134
92041
|
export declare type QueryPolarisGetReactionsArgs = {
|
|
91135
92042
|
input: PolarisGetReactionsInput;
|
|
91136
92043
|
};
|
|
@@ -94811,6 +95718,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
94811
95718
|
};
|
|
94812
95719
|
export declare type SearchThirdPartyProduct = {
|
|
94813
95720
|
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
95721
|
+
containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
94814
95722
|
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
94815
95723
|
linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
|
|
94816
95724
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -96684,6 +97592,11 @@ export declare type SiteDescription = {
|
|
|
96684
97592
|
__typename?: 'SiteDescription';
|
|
96685
97593
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
96686
97594
|
};
|
|
97595
|
+
export declare type SiteEmailAddress = {
|
|
97596
|
+
__typename?: 'SiteEmailAddress';
|
|
97597
|
+
emailAddress?: Maybe<Scalars['String']['output']>;
|
|
97598
|
+
emailAddressStatus?: Maybe<ConfluenceSiteEmailAddressStatus>;
|
|
97599
|
+
};
|
|
96687
97600
|
export declare type SiteLookAndFeel = {
|
|
96688
97601
|
__typename?: 'SiteLookAndFeel';
|
|
96689
97602
|
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
@@ -100284,6 +101197,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
100284
101197
|
isArchived: Scalars['Boolean']['output'];
|
|
100285
101198
|
isWatching?: Maybe<Scalars['Boolean']['output']>;
|
|
100286
101199
|
key: Scalars['String']['output'];
|
|
101200
|
+
latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
100287
101201
|
name: Scalars['String']['output'];
|
|
100288
101202
|
owner?: Maybe<User>;
|
|
100289
101203
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
@@ -101645,6 +102559,7 @@ export declare type TrelloActionAttachmentEntity = {
|
|
|
101645
102559
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101646
102560
|
previewUrl?: Maybe<Scalars['String']['output']>;
|
|
101647
102561
|
previewUrl2x?: Maybe<Scalars['String']['output']>;
|
|
102562
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
101648
102563
|
type?: Maybe<Scalars['String']['output']>;
|
|
101649
102564
|
url?: Maybe<Scalars['String']['output']>;
|
|
101650
102565
|
};
|
|
@@ -102615,6 +103530,7 @@ export declare type TrelloCardEdgeUpdated = {
|
|
|
102615
103530
|
};
|
|
102616
103531
|
export declare enum TrelloCardExternalSource {
|
|
102617
103532
|
Email = "EMAIL",
|
|
103533
|
+
Loom = "LOOM",
|
|
102618
103534
|
Msteams = "MSTEAMS",
|
|
102619
103535
|
Siri = "SIRI",
|
|
102620
103536
|
Slack = "SLACK"
|
|
@@ -102968,8 +103884,11 @@ export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
|
|
|
102968
103884
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
102969
103885
|
};
|
|
102970
103886
|
export declare type TrelloCreateCardInput = {
|
|
103887
|
+
externalSource?: InputMaybe<TrelloCardExternalSource>;
|
|
102971
103888
|
listId: Scalars['ID']['input'];
|
|
102972
103889
|
name: Scalars['String']['input'];
|
|
103890
|
+
position?: InputMaybe<Scalars['TrelloCardPosition']['input']>;
|
|
103891
|
+
urlSource?: InputMaybe<Scalars['String']['input']>;
|
|
102973
103892
|
};
|
|
102974
103893
|
export declare type TrelloCreateCardPayload = Payload & {
|
|
102975
103894
|
__typename?: 'TrelloCreateCardPayload';
|
|
@@ -106823,7 +107742,6 @@ export declare type UpdatePolarisViewInput = {
|
|
|
106823
107742
|
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106824
107743
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
106825
107744
|
lastCommentsViewedTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
106826
|
-
lastViewedTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
106827
107745
|
layoutType?: InputMaybe<PolarisViewLayoutType>;
|
|
106828
107746
|
matrixConfig?: InputMaybe<UpdatePolarisMatrixConfig>;
|
|
106829
107747
|
name?: InputMaybe<Scalars['String']['input']>;
|