@forge/cli-shared 8.5.0-next.4 → 8.5.0-next.6
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 +13 -0
- package/out/graphql/graphql-types.d.ts +907 -15
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +196 -26
- package/out/ui/text.d.ts +5 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +6 -1
- package/package.json +2 -2
|
@@ -4684,6 +4684,68 @@ export declare type AssetsDmObjectsListPageInfoInput = {
|
|
|
4684
4684
|
pageCursor?: InputMaybe<Scalars['Int']['input']>;
|
|
4685
4685
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
4686
4686
|
};
|
|
4687
|
+
export declare enum AssetsDmObjectsListRawColumnType {
|
|
4688
|
+
Bigint = "BIGINT",
|
|
4689
|
+
Boolean = "BOOLEAN",
|
|
4690
|
+
Datetime = "DATETIME",
|
|
4691
|
+
Decimal = "DECIMAL",
|
|
4692
|
+
Int = "INT",
|
|
4693
|
+
String = "STRING"
|
|
4694
|
+
}
|
|
4695
|
+
export declare enum AssetsDmObjectsListSearchCondition {
|
|
4696
|
+
And = "AND",
|
|
4697
|
+
Andnot = "ANDNOT",
|
|
4698
|
+
Not = "NOT",
|
|
4699
|
+
Or = "OR",
|
|
4700
|
+
Ornot = "ORNOT"
|
|
4701
|
+
}
|
|
4702
|
+
export declare type AssetsDmObjectsListSearchGroup = {
|
|
4703
|
+
condition?: InputMaybe<AssetsDmObjectsListSearchGroupCondition>;
|
|
4704
|
+
searchItems?: Array<AssetsDmObjectsListSearchItem>;
|
|
4705
|
+
};
|
|
4706
|
+
export declare enum AssetsDmObjectsListSearchGroupCondition {
|
|
4707
|
+
And = "AND",
|
|
4708
|
+
Andnot = "ANDNOT",
|
|
4709
|
+
Or = "OR",
|
|
4710
|
+
Ornot = "ORNOT"
|
|
4711
|
+
}
|
|
4712
|
+
export declare type AssetsDmObjectsListSearchItem = {
|
|
4713
|
+
columnName?: InputMaybe<Scalars['String']['input']>;
|
|
4714
|
+
condition?: InputMaybe<AssetsDmObjectsListSearchCondition>;
|
|
4715
|
+
isAttribute?: Scalars['Boolean']['input'];
|
|
4716
|
+
isDataSource?: Scalars['Boolean']['input'];
|
|
4717
|
+
operator: AssetsDmObjectsListSearchOperator;
|
|
4718
|
+
rawColumnType?: InputMaybe<AssetsDmObjectsListRawColumnType>;
|
|
4719
|
+
savedSearchId?: InputMaybe<Scalars['String']['input']>;
|
|
4720
|
+
tagCodes?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
4721
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4722
|
+
whereDataSource?: InputMaybe<Scalars['String']['input']>;
|
|
4723
|
+
};
|
|
4724
|
+
export declare enum AssetsDmObjectsListSearchOperator {
|
|
4725
|
+
ComputeIssues = "COMPUTE_ISSUES",
|
|
4726
|
+
Contains = "CONTAINS",
|
|
4727
|
+
Empty = "EMPTY",
|
|
4728
|
+
EndsWith = "ENDS_WITH",
|
|
4729
|
+
Equals = "EQUALS",
|
|
4730
|
+
GreaterThan = "GREATER_THAN",
|
|
4731
|
+
In = "IN",
|
|
4732
|
+
Known = "KNOWN",
|
|
4733
|
+
LessThan = "LESS_THAN",
|
|
4734
|
+
Mapped = "MAPPED",
|
|
4735
|
+
NotContains = "NOT_CONTAINS",
|
|
4736
|
+
NotEmpty = "NOT_EMPTY",
|
|
4737
|
+
NotEndsWith = "NOT_ENDS_WITH",
|
|
4738
|
+
NotEquals = "NOT_EQUALS",
|
|
4739
|
+
NotIn = "NOT_IN",
|
|
4740
|
+
NotMapped = "NOT_MAPPED",
|
|
4741
|
+
NotNull = "NOT_NULL",
|
|
4742
|
+
NotNullOrEmpty = "NOT_NULL_OR_EMPTY",
|
|
4743
|
+
NotStartsWith = "NOT_STARTS_WITH",
|
|
4744
|
+
Null = "NULL",
|
|
4745
|
+
NullOrEmpty = "NULL_OR_EMPTY",
|
|
4746
|
+
StartsWith = "STARTS_WITH",
|
|
4747
|
+
Unknown = "UNKNOWN"
|
|
4748
|
+
}
|
|
4687
4749
|
export declare type AssetsDmObjectsListSortBy = {
|
|
4688
4750
|
name: Scalars['String']['input'];
|
|
4689
4751
|
order: AssetsDmObjectsListSortOrder;
|
|
@@ -4743,6 +4805,50 @@ export declare type AssetsDmRawDataResponse = {
|
|
|
4743
4805
|
filters: Array<AssetsDmRawDataFilter>;
|
|
4744
4806
|
pagination: AssetsDmPaginationInfo;
|
|
4745
4807
|
};
|
|
4808
|
+
export declare type AssetsDmSavedSearch = {
|
|
4809
|
+
__typename?: 'AssetsDMSavedSearch';
|
|
4810
|
+
calcDate: Scalars['String']['output'];
|
|
4811
|
+
createdBy: Scalars['String']['output'];
|
|
4812
|
+
createdDate: Scalars['String']['output'];
|
|
4813
|
+
isExportToAsset: Scalars['Boolean']['output'];
|
|
4814
|
+
isPublic: Scalars['Boolean']['output'];
|
|
4815
|
+
lastUpdateBy: Scalars['String']['output'];
|
|
4816
|
+
lastUpdateDate: Scalars['String']['output'];
|
|
4817
|
+
name: Scalars['String']['output'];
|
|
4818
|
+
noOfExportToAssetIssues?: Maybe<Scalars['Int']['output']>;
|
|
4819
|
+
objectId: Scalars['ID']['output'];
|
|
4820
|
+
previousCalcDate: Scalars['String']['output'];
|
|
4821
|
+
previousResultCount?: Maybe<Scalars['Int']['output']>;
|
|
4822
|
+
resultCount: Scalars['Int']['output'];
|
|
4823
|
+
savedSearchId: Scalars['ID']['output'];
|
|
4824
|
+
};
|
|
4825
|
+
export declare type AssetsDmSavedSearchesDeleteArgs = {
|
|
4826
|
+
cloudId: Scalars['ID']['input'];
|
|
4827
|
+
savedSearchId: Scalars['ID']['input'];
|
|
4828
|
+
workspaceId: Scalars['ID']['input'];
|
|
4829
|
+
};
|
|
4830
|
+
export declare type AssetsDmSavedSearchesDeleteResponse = {
|
|
4831
|
+
__typename?: 'AssetsDMSavedSearchesDeleteResponse';
|
|
4832
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
4833
|
+
message: Scalars['String']['output'];
|
|
4834
|
+
};
|
|
4835
|
+
export declare type AssetsDmSavedSearchesList = {
|
|
4836
|
+
__typename?: 'AssetsDMSavedSearchesList';
|
|
4837
|
+
pageInfo: AssetsDmPaginationInfo;
|
|
4838
|
+
rows: Array<AssetsDmSavedSearch>;
|
|
4839
|
+
};
|
|
4840
|
+
export declare type AssetsDmSavedSearchesListInput = {
|
|
4841
|
+
cloudId: Scalars['ID']['input'];
|
|
4842
|
+
objectId: Scalars['ID']['input'];
|
|
4843
|
+
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
4844
|
+
query?: InputMaybe<AssetsDmSavedSearchesQueryArgs>;
|
|
4845
|
+
sortBy?: InputMaybe<AssetsDmSortByInput>;
|
|
4846
|
+
workspaceId: Scalars['ID']['input'];
|
|
4847
|
+
};
|
|
4848
|
+
export declare type AssetsDmSavedSearchesQueryArgs = {
|
|
4849
|
+
isPublic?: Scalars['Boolean']['input'];
|
|
4850
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4851
|
+
};
|
|
4746
4852
|
export declare type AssetsDmSchemaObjectType = {
|
|
4747
4853
|
__typename?: 'AssetsDMSchemaObjectType';
|
|
4748
4854
|
id: Scalars['ID']['output'];
|
|
@@ -4751,6 +4857,14 @@ export declare type AssetsDmSchemaObjectType = {
|
|
|
4751
4857
|
objectSchemaId: Scalars['String']['output'];
|
|
4752
4858
|
parentObjectTypeId?: Maybe<Scalars['String']['output']>;
|
|
4753
4859
|
};
|
|
4860
|
+
export declare type AssetsDmSortByInput = {
|
|
4861
|
+
name: Scalars['String']['input'];
|
|
4862
|
+
order?: AssetsDmSortByInputOrder;
|
|
4863
|
+
};
|
|
4864
|
+
export declare enum AssetsDmSortByInputOrder {
|
|
4865
|
+
Asc = "ASC",
|
|
4866
|
+
Desc = "DESC"
|
|
4867
|
+
}
|
|
4754
4868
|
export declare type AssetsDmStep = {
|
|
4755
4869
|
__typename?: 'AssetsDMStep';
|
|
4756
4870
|
lastFetched: Scalars['String']['output'];
|
|
@@ -7776,6 +7890,7 @@ export declare type ChannelPlatformEventRelayRequest = {
|
|
|
7776
7890
|
};
|
|
7777
7891
|
export declare enum ChannelPlatformEventType {
|
|
7778
7892
|
AgentInitialMessage = "AGENT_INITIAL_MESSAGE",
|
|
7893
|
+
CustomChatClosed = "CUSTOM_CHAT_CLOSED",
|
|
7779
7894
|
Initiated = "INITIATED"
|
|
7780
7895
|
}
|
|
7781
7896
|
export declare type ChannelPlatformGetChannelTokenRequest = {
|
|
@@ -13701,6 +13816,12 @@ export declare type ConfluenceAppLinkMetadataInput = {
|
|
|
13701
13816
|
serverId: Scalars['ID']['input'];
|
|
13702
13817
|
serverName: Scalars['String']['input'];
|
|
13703
13818
|
};
|
|
13819
|
+
export declare enum ConfluenceApplication {
|
|
13820
|
+
Html = "HTML",
|
|
13821
|
+
Miro = "MIRO",
|
|
13822
|
+
Mural = "MURAL",
|
|
13823
|
+
Notion = "NOTION"
|
|
13824
|
+
}
|
|
13704
13825
|
export declare type ConfluenceApplicationLink = {
|
|
13705
13826
|
__typename?: 'ConfluenceApplicationLink';
|
|
13706
13827
|
applicationId: Scalars['String']['output'];
|
|
@@ -14450,6 +14571,11 @@ export declare type ConfluenceDefaultSpaceLogo = {
|
|
|
14450
14571
|
mediaFileId?: Maybe<Scalars['ID']['output']>;
|
|
14451
14572
|
token?: Maybe<Scalars['String']['output']>;
|
|
14452
14573
|
};
|
|
14574
|
+
export declare type ConfluenceDeleteAllTeamCalendarSubscriptionsPayload = {
|
|
14575
|
+
__typename?: 'ConfluenceDeleteAllTeamCalendarSubscriptionsPayload';
|
|
14576
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14577
|
+
success: Scalars['Boolean']['output'];
|
|
14578
|
+
};
|
|
14453
14579
|
export declare type ConfluenceDeleteBlogPostPropertyInput = {
|
|
14454
14580
|
blogPostId: Scalars['ID']['input'];
|
|
14455
14581
|
key: Scalars['String']['input'];
|
|
@@ -14592,6 +14718,28 @@ export declare type ConfluenceDeletedUser = {
|
|
|
14592
14718
|
__typename?: 'ConfluenceDeletedUser';
|
|
14593
14719
|
accountIds: Array<Maybe<Scalars['String']['output']>>;
|
|
14594
14720
|
};
|
|
14721
|
+
export declare type ConfluenceDisableBlueprintInput = {
|
|
14722
|
+
id: Scalars['ID']['input'];
|
|
14723
|
+
spaceId: Scalars['Long']['input'];
|
|
14724
|
+
};
|
|
14725
|
+
export declare type ConfluenceDisableBlueprintPayload = Payload & {
|
|
14726
|
+
__typename?: 'ConfluenceDisableBlueprintPayload';
|
|
14727
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14728
|
+
success: Scalars['Boolean']['output'];
|
|
14729
|
+
};
|
|
14730
|
+
export declare type ConfluenceDisableDefaultSpaceLogoPayload = Payload & {
|
|
14731
|
+
__typename?: 'ConfluenceDisableDefaultSpaceLogoPayload';
|
|
14732
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14733
|
+
success: Scalars['Boolean']['output'];
|
|
14734
|
+
};
|
|
14735
|
+
export declare type ConfluenceDisableGlobalPageBlueprintInput = {
|
|
14736
|
+
id: Scalars['ID']['input'];
|
|
14737
|
+
};
|
|
14738
|
+
export declare type ConfluenceDisableGlobalPageBlueprintPayload = Payload & {
|
|
14739
|
+
__typename?: 'ConfluenceDisableGlobalPageBlueprintPayload';
|
|
14740
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14741
|
+
success: Scalars['Boolean']['output'];
|
|
14742
|
+
};
|
|
14595
14743
|
export declare type ConfluenceDraftContentNativeProperties = {
|
|
14596
14744
|
__typename?: 'ConfluenceDraftContentNativeProperties';
|
|
14597
14745
|
contentState?: Maybe<ConfluenceContentState>;
|
|
@@ -14896,6 +15044,16 @@ export declare enum ConfluenceGroupUsageType {
|
|
|
14896
15044
|
TeamCollaboration = "TEAM_COLLABORATION",
|
|
14897
15045
|
UserbaseGroup = "USERBASE_GROUP"
|
|
14898
15046
|
}
|
|
15047
|
+
export declare type ConfluenceImport = {
|
|
15048
|
+
__typename?: 'ConfluenceImport';
|
|
15049
|
+
accountID: Scalars['ID']['output'];
|
|
15050
|
+
application: ConfluenceApplication;
|
|
15051
|
+
cloudID: Scalars['ID']['output'];
|
|
15052
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
15053
|
+
taskCreationTime?: Maybe<Scalars['String']['output']>;
|
|
15054
|
+
taskID: Scalars['ID']['output'];
|
|
15055
|
+
taskStatus: ConfluenceImportStatus;
|
|
15056
|
+
};
|
|
14899
15057
|
export declare type ConfluenceImportSpaceConfiguration = {
|
|
14900
15058
|
__typename?: 'ConfluenceImportSpaceConfiguration';
|
|
14901
15059
|
clientId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -14913,6 +15071,43 @@ export declare type ConfluenceImportSpacePayload = Payload & {
|
|
|
14913
15071
|
success: Scalars['Boolean']['output'];
|
|
14914
15072
|
taskId?: Maybe<Scalars['ID']['output']>;
|
|
14915
15073
|
};
|
|
15074
|
+
export declare type ConfluenceImportSpaceStatus = {
|
|
15075
|
+
__typename?: 'ConfluenceImportSpaceStatus';
|
|
15076
|
+
completedPercentage?: Maybe<Scalars['Int']['output']>;
|
|
15077
|
+
elapsedTime?: Maybe<Scalars['Long']['output']>;
|
|
15078
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
15079
|
+
state?: Maybe<ConfluenceImportSpaceTaskState>;
|
|
15080
|
+
};
|
|
15081
|
+
export declare enum ConfluenceImportSpaceTaskState {
|
|
15082
|
+
Completed = "COMPLETED",
|
|
15083
|
+
Failed = "FAILED",
|
|
15084
|
+
InProgress = "IN_PROGRESS"
|
|
15085
|
+
}
|
|
15086
|
+
export declare enum ConfluenceImportStatus {
|
|
15087
|
+
CombinedManifests = "COMBINED_MANIFESTS",
|
|
15088
|
+
Created = "CREATED",
|
|
15089
|
+
CreatedSpace = "CREATED_SPACE",
|
|
15090
|
+
CreatingPagesAndSpaces = "CREATING_PAGES_AND_SPACES",
|
|
15091
|
+
DetectedExportType = "DETECTED_EXPORT_TYPE",
|
|
15092
|
+
ExportedFrom_3P = "EXPORTED_FROM_3P",
|
|
15093
|
+
ExportingFrom_3P = "EXPORTING_FROM_3P",
|
|
15094
|
+
Failed = "FAILED",
|
|
15095
|
+
FetchedEntitiesToExport = "FETCHED_ENTITIES_TO_EXPORT",
|
|
15096
|
+
FetchedIdsFrom_3P = "FETCHED_IDS_FROM_3P",
|
|
15097
|
+
FetchingEntitiesToExport = "FETCHING_ENTITIES_TO_EXPORT",
|
|
15098
|
+
ImportedUser = "IMPORTED_USER",
|
|
15099
|
+
ImportedWhiteboard = "IMPORTED_WHITEBOARD",
|
|
15100
|
+
ImportingUser = "IMPORTING_USER",
|
|
15101
|
+
ImportingWhiteboards = "IMPORTING_WHITEBOARDS",
|
|
15102
|
+
NestedUnzipping = "NESTED_UNZIPPING",
|
|
15103
|
+
PartialFailed = "PARTIAL_FAILED",
|
|
15104
|
+
Queued = "QUEUED",
|
|
15105
|
+
Unzipped = "UNZIPPED",
|
|
15106
|
+
Unzipping = "UNZIPPING",
|
|
15107
|
+
Updated = "UPDATED",
|
|
15108
|
+
UpdatedContent = "UPDATED_CONTENT",
|
|
15109
|
+
UpdatingContent = "UPDATING_CONTENT"
|
|
15110
|
+
}
|
|
14916
15111
|
export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
|
|
14917
15112
|
__typename?: 'ConfluenceInlineComment';
|
|
14918
15113
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -15197,6 +15392,7 @@ export declare type ConfluenceMutationApi = {
|
|
|
15197
15392
|
createPage?: Maybe<ConfluenceCreatePagePayload>;
|
|
15198
15393
|
createPageProperty?: Maybe<ConfluenceCreatePagePropertyPayload>;
|
|
15199
15394
|
createSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
15395
|
+
deleteAllTeamCalendarSubscriptions?: Maybe<ConfluenceDeleteAllTeamCalendarSubscriptionsPayload>;
|
|
15200
15396
|
deleteBlogPostProperty?: Maybe<ConfluenceDeleteBlogPostPropertyPayload>;
|
|
15201
15397
|
deleteComment?: Maybe<ConfluenceDeleteCommentPayload>;
|
|
15202
15398
|
deleteCustomApplicationLink?: Maybe<ConfluenceDeleteCustomApplicationLinkPayload>;
|
|
@@ -15205,6 +15401,9 @@ export declare type ConfluenceMutationApi = {
|
|
|
15205
15401
|
deleteGlobalPageTemplate?: Maybe<ConfluenceDeleteGlobalPageTemplatePayload>;
|
|
15206
15402
|
deletePageProperty?: Maybe<ConfluenceDeletePagePropertyPayload>;
|
|
15207
15403
|
deleteSpacePageTemplate?: Maybe<ConfluenceDeleteGlobalPageTemplatePayload>;
|
|
15404
|
+
disableBlueprint?: Maybe<ConfluenceDisableBlueprintPayload>;
|
|
15405
|
+
disableDefaultSpaceLogo?: Maybe<ConfluenceDisableDefaultSpaceLogoPayload>;
|
|
15406
|
+
disableGlobalBlueprint?: Maybe<ConfluenceDisableGlobalPageBlueprintPayload>;
|
|
15208
15407
|
enableBlueprint?: Maybe<ConfluenceEnableBlueprintPayload>;
|
|
15209
15408
|
enableGlobalBlueprint?: Maybe<ConfluenceEnableGlobalPageBlueprintPayload>;
|
|
15210
15409
|
importSpace?: Maybe<ConfluenceImportSpacePayload>;
|
|
@@ -15220,23 +15419,35 @@ export declare type ConfluenceMutationApi = {
|
|
|
15220
15419
|
requestSpaceAccess?: Maybe<ConfluenceRequestSpaceAccessPayload>;
|
|
15221
15420
|
resolveInlineComment?: Maybe<ConfluenceResolveInlineCommentPayload>;
|
|
15222
15421
|
saveOrUpdateSpaceOwner?: Maybe<ConfluenceSaveOrUpdateSpaceOwnerPayload>;
|
|
15422
|
+
scanJiraMacroAppLinks?: Maybe<ConfluenceScanJiraMacroAppLinksPayload>;
|
|
15223
15423
|
trashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
15224
15424
|
trashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
15225
15425
|
unpromoteBlueprint?: Maybe<ConfluenceUnpromoteBlueprintPayload>;
|
|
15226
15426
|
unpromotePageTemplate?: Maybe<ConfluenceUnpromotePageTemplatePayload>;
|
|
15227
15427
|
updateComment?: Maybe<ConfluenceUpdateCommentPayload>;
|
|
15428
|
+
updateConfluenceSiteSenderEmailAddress?: Maybe<ConfluenceUpdateSiteSenderEmailAddressPayload>;
|
|
15228
15429
|
updateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
15229
15430
|
updateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
15230
15431
|
updateCustomApplicationLink?: Maybe<ConfluenceUpdateCustomApplicationLinkPayload>;
|
|
15432
|
+
updateCustomPageConfiguration?: Maybe<ConfluenceUpdateCustomPageConfigurationPayload>;
|
|
15433
|
+
updateCustomPageSpaceConfiguration?: Maybe<ConfluenceUpdateCustomPageConfigurationPayload>;
|
|
15231
15434
|
updateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
15232
15435
|
updateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
15436
|
+
updateEmailSiteConfiguration?: Maybe<ConfluenceUpdateEmailSiteConfigurationPayload>;
|
|
15233
15437
|
updateGlobalDefaultLanguageConfiguration?: Maybe<ConfluenceUpdateGlobalDefaultLocaleConfigurationPayload>;
|
|
15234
15438
|
updateGlobalPageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
15439
|
+
updateGlobalTheme?: Maybe<ConfluenceUpdateGlobalThemePayload>;
|
|
15235
15440
|
updateIndexingLanguageConfiguration?: Maybe<ConfluenceUpdateIndexingLanguageConfigurationPayload>;
|
|
15441
|
+
updateNewCodeMacro?: Maybe<ConfluenceUpdateNewCodeMacroPayload>;
|
|
15442
|
+
updatePdfExportConfiguration?: Maybe<ConfluenceUpdatePdfExportConfigurationPayload>;
|
|
15443
|
+
updatePdfExportSpaceConfiguration?: Maybe<ConfluenceUpdatePdfExportConfigurationPayload>;
|
|
15236
15444
|
updateSiteConfiguration?: Maybe<ConfluenceUpdateSiteConfigurationPayload>;
|
|
15445
|
+
updateSiteSecurityConfiguration?: Maybe<ConfluenceUpdateSiteSecurityConfigurationPayload>;
|
|
15446
|
+
updateSlackSiteConfiguration?: Maybe<ConfluenceUpdateSlackSiteConfigurationPayload>;
|
|
15237
15447
|
updateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
15238
15448
|
updateSpacePageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
15239
15449
|
updateSpaceSettings?: Maybe<ConfluenceUpdateSpaceSettingsPayload>;
|
|
15450
|
+
updateSpaceTheme?: Maybe<ConfluenceUpdateSpaceThemePayload>;
|
|
15240
15451
|
updateValueBlogPostProperty?: Maybe<ConfluenceUpdateValueBlogPostPropertyPayload>;
|
|
15241
15452
|
updateValuePageProperty?: Maybe<ConfluenceUpdateValuePagePropertyPayload>;
|
|
15242
15453
|
};
|
|
@@ -15292,6 +15503,12 @@ export declare type ConfluenceMutationApiDeletePagePropertyArgs = {
|
|
|
15292
15503
|
export declare type ConfluenceMutationApiDeleteSpacePageTemplateArgs = {
|
|
15293
15504
|
input: ConfluenceDeleteSpacePageTemplateInput;
|
|
15294
15505
|
};
|
|
15506
|
+
export declare type ConfluenceMutationApiDisableBlueprintArgs = {
|
|
15507
|
+
input: ConfluenceDisableBlueprintInput;
|
|
15508
|
+
};
|
|
15509
|
+
export declare type ConfluenceMutationApiDisableGlobalBlueprintArgs = {
|
|
15510
|
+
input: ConfluenceDisableGlobalPageBlueprintInput;
|
|
15511
|
+
};
|
|
15295
15512
|
export declare type ConfluenceMutationApiEnableBlueprintArgs = {
|
|
15296
15513
|
input: ConfluenceEnableBlueprintInput;
|
|
15297
15514
|
};
|
|
@@ -15352,6 +15569,9 @@ export declare type ConfluenceMutationApiUnpromotePageTemplateArgs = {
|
|
|
15352
15569
|
export declare type ConfluenceMutationApiUpdateCommentArgs = {
|
|
15353
15570
|
input: ConfluenceUpdateCommentInput;
|
|
15354
15571
|
};
|
|
15572
|
+
export declare type ConfluenceMutationApiUpdateConfluenceSiteSenderEmailAddressArgs = {
|
|
15573
|
+
input: ConfluenceUpdateSiteSenderEmailAddressInput;
|
|
15574
|
+
};
|
|
15355
15575
|
export declare type ConfluenceMutationApiUpdateCurrentBlogPostArgs = {
|
|
15356
15576
|
input: ConfluenceUpdateCurrentBlogPostInput;
|
|
15357
15577
|
};
|
|
@@ -15361,24 +15581,51 @@ export declare type ConfluenceMutationApiUpdateCurrentPageArgs = {
|
|
|
15361
15581
|
export declare type ConfluenceMutationApiUpdateCustomApplicationLinkArgs = {
|
|
15362
15582
|
input: ConfluenceUpdateCustomApplicationLinkInput;
|
|
15363
15583
|
};
|
|
15584
|
+
export declare type ConfluenceMutationApiUpdateCustomPageConfigurationArgs = {
|
|
15585
|
+
input: ConfluenceUpdateCustomPageConfigurationInput;
|
|
15586
|
+
};
|
|
15587
|
+
export declare type ConfluenceMutationApiUpdateCustomPageSpaceConfigurationArgs = {
|
|
15588
|
+
input: ConfluenceUpdateCustomPageSpaceConfigurationInput;
|
|
15589
|
+
};
|
|
15364
15590
|
export declare type ConfluenceMutationApiUpdateDraftBlogPostArgs = {
|
|
15365
15591
|
input: ConfluenceUpdateDraftBlogPostInput;
|
|
15366
15592
|
};
|
|
15367
15593
|
export declare type ConfluenceMutationApiUpdateDraftPageArgs = {
|
|
15368
15594
|
input: ConfluenceUpdateDraftPageInput;
|
|
15369
15595
|
};
|
|
15596
|
+
export declare type ConfluenceMutationApiUpdateEmailSiteConfigurationArgs = {
|
|
15597
|
+
input: ConfluenceUpdateEmailSiteConfigurationInput;
|
|
15598
|
+
};
|
|
15370
15599
|
export declare type ConfluenceMutationApiUpdateGlobalDefaultLanguageConfigurationArgs = {
|
|
15371
15600
|
input: ConfluenceUpdateGlobalDefaultLocaleConfigurationInput;
|
|
15372
15601
|
};
|
|
15373
15602
|
export declare type ConfluenceMutationApiUpdateGlobalPageTemplateDescriptionArgs = {
|
|
15374
15603
|
input: ConfluenceUpdateGlobalPageTemplateDescriptionInput;
|
|
15375
15604
|
};
|
|
15605
|
+
export declare type ConfluenceMutationApiUpdateGlobalThemeArgs = {
|
|
15606
|
+
input: ConfluenceUpdateGlobalThemeInput;
|
|
15607
|
+
};
|
|
15376
15608
|
export declare type ConfluenceMutationApiUpdateIndexingLanguageConfigurationArgs = {
|
|
15377
15609
|
input: ConfluenceUpdateIndexingLanguageConfigurationInput;
|
|
15378
15610
|
};
|
|
15611
|
+
export declare type ConfluenceMutationApiUpdateNewCodeMacroArgs = {
|
|
15612
|
+
input: ConfluenceUpdateNewCodeMacroInput;
|
|
15613
|
+
};
|
|
15614
|
+
export declare type ConfluenceMutationApiUpdatePdfExportConfigurationArgs = {
|
|
15615
|
+
input: ConfluenceUpdatePdfExportConfigurationInput;
|
|
15616
|
+
};
|
|
15617
|
+
export declare type ConfluenceMutationApiUpdatePdfExportSpaceConfigurationArgs = {
|
|
15618
|
+
input: ConfluenceUpdatePdfExportSpaceConfigurationInput;
|
|
15619
|
+
};
|
|
15379
15620
|
export declare type ConfluenceMutationApiUpdateSiteConfigurationArgs = {
|
|
15380
15621
|
input: ConfluenceUpdateSiteConfigurationInput;
|
|
15381
15622
|
};
|
|
15623
|
+
export declare type ConfluenceMutationApiUpdateSiteSecurityConfigurationArgs = {
|
|
15624
|
+
input: ConfluenceUpdateSiteSecurityConfigurationInput;
|
|
15625
|
+
};
|
|
15626
|
+
export declare type ConfluenceMutationApiUpdateSlackSiteConfigurationArgs = {
|
|
15627
|
+
input: ConfluenceUpdateSlackSiteConfigurationInput;
|
|
15628
|
+
};
|
|
15382
15629
|
export declare type ConfluenceMutationApiUpdateSpaceArgs = {
|
|
15383
15630
|
input: ConfluenceUpdateSpaceInput;
|
|
15384
15631
|
};
|
|
@@ -15388,6 +15635,9 @@ export declare type ConfluenceMutationApiUpdateSpacePageTemplateDescriptionArgs
|
|
|
15388
15635
|
export declare type ConfluenceMutationApiUpdateSpaceSettingsArgs = {
|
|
15389
15636
|
input: ConfluenceUpdateSpaceSettingsInput;
|
|
15390
15637
|
};
|
|
15638
|
+
export declare type ConfluenceMutationApiUpdateSpaceThemeArgs = {
|
|
15639
|
+
input: ConfluenceUpdateSpaceThemeInput;
|
|
15640
|
+
};
|
|
15391
15641
|
export declare type ConfluenceMutationApiUpdateValueBlogPostPropertyArgs = {
|
|
15392
15642
|
input: ConfluenceUpdateValueBlogPostPropertyInput;
|
|
15393
15643
|
};
|
|
@@ -15802,6 +16052,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
15802
16052
|
blogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
15803
16053
|
comment?: Maybe<ConfluenceComment>;
|
|
15804
16054
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
16055
|
+
customApplicationLinks?: Maybe<Array<Maybe<ConfluenceCustomApplicationLink>>>;
|
|
15805
16056
|
customPageSpaceSettings?: Maybe<ConfluenceCustomPageSpaceSettings>;
|
|
15806
16057
|
database?: Maybe<ConfluenceDatabase>;
|
|
15807
16058
|
databases?: Maybe<Array<Maybe<ConfluenceDatabase>>>;
|
|
@@ -15814,6 +16065,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
15814
16065
|
globalBlueprintSettings?: Maybe<ConfluenceGlobalBlueprintSettings>;
|
|
15815
16066
|
globalSpaceBlueprintSettings?: Maybe<ConfluenceGlobalBlueprintSettings>;
|
|
15816
16067
|
importSpaceConfiguration?: Maybe<ConfluenceImportSpaceConfiguration>;
|
|
16068
|
+
importSpaceStatus?: Maybe<ConfluenceImportSpaceStatus>;
|
|
15817
16069
|
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
15818
16070
|
jiraMacroAppLinksScanningStatus?: Maybe<ConfluenceJiraMacroAppLinksScanningStatus>;
|
|
15819
16071
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
@@ -15823,6 +16075,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
15823
16075
|
page?: Maybe<ConfluencePage>;
|
|
15824
16076
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
15825
16077
|
pdfExportSpaceSettings?: Maybe<ConfluencePdfExportSpaceSettings>;
|
|
16078
|
+
reIndexLongTask?: Maybe<ConfluenceReIndexLongTask>;
|
|
15826
16079
|
searchLabels?: Maybe<ConfluenceLabelSearchResults>;
|
|
15827
16080
|
siteConfiguration?: Maybe<ConfluenceSiteConfiguration>;
|
|
15828
16081
|
space?: Maybe<ConfluenceSpace>;
|
|
@@ -15877,6 +16130,9 @@ export declare type ConfluenceQueryApiFoldersArgs = {
|
|
|
15877
16130
|
export declare type ConfluenceQueryApiGlobalSpaceBlueprintSettingsArgs = {
|
|
15878
16131
|
spaceId: Scalars['Long']['input'];
|
|
15879
16132
|
};
|
|
16133
|
+
export declare type ConfluenceQueryApiImportSpaceStatusArgs = {
|
|
16134
|
+
taskId: Scalars['ID']['input'];
|
|
16135
|
+
};
|
|
15880
16136
|
export declare type ConfluenceQueryApiInlineTaskArgs = {
|
|
15881
16137
|
id: Scalars['ID']['input'];
|
|
15882
16138
|
};
|
|
@@ -15922,6 +16178,19 @@ export declare type ConfluenceQuestionsConfiguration = {
|
|
|
15922
16178
|
isConfluenceQuestionsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15923
16179
|
isConfluenceQuestionsLicensed?: Maybe<Scalars['Boolean']['output']>;
|
|
15924
16180
|
};
|
|
16181
|
+
export declare type ConfluenceReIndexLongTask = {
|
|
16182
|
+
__typename?: 'ConfluenceReIndexLongTask';
|
|
16183
|
+
completePercentage?: Maybe<Scalars['Int']['output']>;
|
|
16184
|
+
elapsedTime?: Maybe<Scalars['Long']['output']>;
|
|
16185
|
+
taskStatus?: Maybe<ConfluenceReIndexLongTaskStatus>;
|
|
16186
|
+
};
|
|
16187
|
+
export declare enum ConfluenceReIndexLongTaskStatus {
|
|
16188
|
+
Failed = "FAILED",
|
|
16189
|
+
InProgress = "IN_PROGRESS",
|
|
16190
|
+
NotTriggered = "NOT_TRIGGERED",
|
|
16191
|
+
Submitted = "SUBMITTED",
|
|
16192
|
+
Succeed = "SUCCEED"
|
|
16193
|
+
}
|
|
15925
16194
|
export declare type ConfluenceReactedUsersInput = {
|
|
15926
16195
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
15927
16196
|
containerType?: InputMaybe<ContainerType>;
|
|
@@ -16088,6 +16357,11 @@ export declare type ConfluenceSaveOrUpdateSpaceOwnerPayload = Payload & {
|
|
|
16088
16357
|
errors?: Maybe<Array<MutationError>>;
|
|
16089
16358
|
success: Scalars['Boolean']['output'];
|
|
16090
16359
|
};
|
|
16360
|
+
export declare type ConfluenceScanJiraMacroAppLinksPayload = Payload & {
|
|
16361
|
+
__typename?: 'ConfluenceScanJiraMacroAppLinksPayload';
|
|
16362
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16363
|
+
success: Scalars['Boolean']['output'];
|
|
16364
|
+
};
|
|
16091
16365
|
export declare type ConfluenceSchedulePublished = {
|
|
16092
16366
|
__typename?: 'ConfluenceSchedulePublished';
|
|
16093
16367
|
confVersion?: Maybe<Scalars['Int']['output']>;
|
|
@@ -16624,6 +16898,20 @@ export declare type ConfluenceUpdateCustomApplicationLinkPayload = Payload & {
|
|
|
16624
16898
|
errors?: Maybe<Array<MutationError>>;
|
|
16625
16899
|
success: Scalars['Boolean']['output'];
|
|
16626
16900
|
};
|
|
16901
|
+
export declare type ConfluenceUpdateCustomPageConfigurationInput = {
|
|
16902
|
+
footerText: Scalars['String']['input'];
|
|
16903
|
+
headerText: Scalars['String']['input'];
|
|
16904
|
+
};
|
|
16905
|
+
export declare type ConfluenceUpdateCustomPageConfigurationPayload = Payload & {
|
|
16906
|
+
__typename?: 'ConfluenceUpdateCustomPageConfigurationPayload';
|
|
16907
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16908
|
+
success: Scalars['Boolean']['output'];
|
|
16909
|
+
};
|
|
16910
|
+
export declare type ConfluenceUpdateCustomPageSpaceConfigurationInput = {
|
|
16911
|
+
footerText: Scalars['String']['input'];
|
|
16912
|
+
headerText: Scalars['String']['input'];
|
|
16913
|
+
spaceId: Scalars['Long']['input'];
|
|
16914
|
+
};
|
|
16627
16915
|
export declare type ConfluenceUpdateCustomRoleInput = {
|
|
16628
16916
|
anonymousReassignmentRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
16629
16917
|
description: Scalars['String']['input'];
|
|
@@ -16671,6 +16959,14 @@ export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
|
16671
16959
|
page?: Maybe<ConfluencePage>;
|
|
16672
16960
|
success: Scalars['Boolean']['output'];
|
|
16673
16961
|
};
|
|
16962
|
+
export declare type ConfluenceUpdateEmailSiteConfigurationInput = {
|
|
16963
|
+
isEnableRecommendedEmailNotification: Scalars['Boolean']['input'];
|
|
16964
|
+
};
|
|
16965
|
+
export declare type ConfluenceUpdateEmailSiteConfigurationPayload = Payload & {
|
|
16966
|
+
__typename?: 'ConfluenceUpdateEmailSiteConfigurationPayload';
|
|
16967
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16968
|
+
success: Scalars['Boolean']['output'];
|
|
16969
|
+
};
|
|
16674
16970
|
export declare type ConfluenceUpdateGlobalDefaultLocaleConfigurationInput = {
|
|
16675
16971
|
globalDefaultLocale: Scalars['String']['input'];
|
|
16676
16972
|
};
|
|
@@ -16689,6 +16985,15 @@ export declare type ConfluenceUpdateGlobalPageTemplateDescriptionPayload = Paylo
|
|
|
16689
16985
|
globalPageTemplate?: Maybe<ConfluenceGlobalPageTemplate>;
|
|
16690
16986
|
success: Scalars['Boolean']['output'];
|
|
16691
16987
|
};
|
|
16988
|
+
export declare type ConfluenceUpdateGlobalThemeInput = {
|
|
16989
|
+
themeKey?: InputMaybe<Scalars['String']['input']>;
|
|
16990
|
+
};
|
|
16991
|
+
export declare type ConfluenceUpdateGlobalThemePayload = Payload & {
|
|
16992
|
+
__typename?: 'ConfluenceUpdateGlobalThemePayload';
|
|
16993
|
+
currentGlobalTheme?: Maybe<ConfluenceTheme>;
|
|
16994
|
+
errors?: Maybe<Array<MutationError>>;
|
|
16995
|
+
success: Scalars['Boolean']['output'];
|
|
16996
|
+
};
|
|
16692
16997
|
export declare type ConfluenceUpdateIndexingLanguageConfigurationInput = {
|
|
16693
16998
|
indexingLanguage: Scalars['String']['input'];
|
|
16694
16999
|
};
|
|
@@ -16705,6 +17010,34 @@ export declare type ConfluenceUpdateNav4OptInPayload = Payload & {
|
|
|
16705
17010
|
errors?: Maybe<Array<MutationError>>;
|
|
16706
17011
|
success: Scalars['Boolean']['output'];
|
|
16707
17012
|
};
|
|
17013
|
+
export declare type ConfluenceUpdateNewCodeMacroInput = {
|
|
17014
|
+
languageName: Scalars['String']['input'];
|
|
17015
|
+
themeName: Scalars['String']['input'];
|
|
17016
|
+
};
|
|
17017
|
+
export declare type ConfluenceUpdateNewCodeMacroPayload = Payload & {
|
|
17018
|
+
__typename?: 'ConfluenceUpdateNewCodeMacroPayload';
|
|
17019
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17020
|
+
newCodeMacro?: Maybe<ConfluenceNewCodeMacro>;
|
|
17021
|
+
success: Scalars['Boolean']['output'];
|
|
17022
|
+
};
|
|
17023
|
+
export declare type ConfluenceUpdatePdfExportConfigurationInput = {
|
|
17024
|
+
footer: Scalars['String']['input'];
|
|
17025
|
+
header: Scalars['String']['input'];
|
|
17026
|
+
style: Scalars['String']['input'];
|
|
17027
|
+
titlePage: Scalars['String']['input'];
|
|
17028
|
+
};
|
|
17029
|
+
export declare type ConfluenceUpdatePdfExportConfigurationPayload = Payload & {
|
|
17030
|
+
__typename?: 'ConfluenceUpdatePdfExportConfigurationPayload';
|
|
17031
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17032
|
+
success: Scalars['Boolean']['output'];
|
|
17033
|
+
};
|
|
17034
|
+
export declare type ConfluenceUpdatePdfExportSpaceConfigurationInput = {
|
|
17035
|
+
footer: Scalars['String']['input'];
|
|
17036
|
+
header: Scalars['String']['input'];
|
|
17037
|
+
spaceId: Scalars['Long']['input'];
|
|
17038
|
+
style: Scalars['String']['input'];
|
|
17039
|
+
titlePage: Scalars['String']['input'];
|
|
17040
|
+
};
|
|
16708
17041
|
export declare type ConfluenceUpdateSiteConfigurationInput = {
|
|
16709
17042
|
connectionTimeout: Scalars['Int']['input'];
|
|
16710
17043
|
customContactMessage: Scalars['String']['input'];
|
|
@@ -16734,6 +17067,41 @@ export declare type ConfluenceUpdateSiteConfigurationPayload = Payload & {
|
|
|
16734
17067
|
errors?: Maybe<Array<MutationError>>;
|
|
16735
17068
|
success: Scalars['Boolean']['output'];
|
|
16736
17069
|
};
|
|
17070
|
+
export declare type ConfluenceUpdateSiteSecurityConfigurationInput = {
|
|
17071
|
+
attachmentSecurityLevel: ConfluenceAttachmentSecurityLevel;
|
|
17072
|
+
isAddWildcardsToUserAndGroupSearchesEnabled: Scalars['Boolean']['input'];
|
|
17073
|
+
isAnonymousAccessToRemoteApiEnabled: Scalars['Boolean']['input'];
|
|
17074
|
+
isElevatedSecurityCheckEnabled: Scalars['Boolean']['input'];
|
|
17075
|
+
isNofollowExternalLinksEnabled: Scalars['Boolean']['input'];
|
|
17076
|
+
isPrivacyModeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17077
|
+
isXsrfAddCommentsEnabled: Scalars['Boolean']['input'];
|
|
17078
|
+
loginAttemptsThreshold: Scalars['Int']['input'];
|
|
17079
|
+
maxRssItems: Scalars['Int']['input'];
|
|
17080
|
+
pageTimeout: Scalars['Int']['input'];
|
|
17081
|
+
rssTimeout: Scalars['Int']['input'];
|
|
17082
|
+
};
|
|
17083
|
+
export declare type ConfluenceUpdateSiteSecurityConfigurationPayload = Payload & {
|
|
17084
|
+
__typename?: 'ConfluenceUpdateSiteSecurityConfigurationPayload';
|
|
17085
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17086
|
+
success: Scalars['Boolean']['output'];
|
|
17087
|
+
};
|
|
17088
|
+
export declare type ConfluenceUpdateSiteSenderEmailAddressInput = {
|
|
17089
|
+
emailAddress: Scalars['String']['input'];
|
|
17090
|
+
};
|
|
17091
|
+
export declare type ConfluenceUpdateSiteSenderEmailAddressPayload = Payload & {
|
|
17092
|
+
__typename?: 'ConfluenceUpdateSiteSenderEmailAddressPayload';
|
|
17093
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17094
|
+
success: Scalars['Boolean']['output'];
|
|
17095
|
+
};
|
|
17096
|
+
export declare type ConfluenceUpdateSlackSiteConfigurationInput = {
|
|
17097
|
+
isEnableMentionReminderSlackNotification?: InputMaybe<Scalars['Boolean']['input']>;
|
|
17098
|
+
isEnableRecommendedSlackNotification: Scalars['Boolean']['input'];
|
|
17099
|
+
};
|
|
17100
|
+
export declare type ConfluenceUpdateSlackSiteConfigurationPayload = Payload & {
|
|
17101
|
+
__typename?: 'ConfluenceUpdateSlackSiteConfigurationPayload';
|
|
17102
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17103
|
+
success: Scalars['Boolean']['output'];
|
|
17104
|
+
};
|
|
16737
17105
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
16738
17106
|
id: Scalars['ID']['input'];
|
|
16739
17107
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -16759,6 +17127,16 @@ export declare type ConfluenceUpdateSpaceSettingsPayload = Payload & {
|
|
|
16759
17127
|
errors?: Maybe<Array<MutationError>>;
|
|
16760
17128
|
success: Scalars['Boolean']['output'];
|
|
16761
17129
|
};
|
|
17130
|
+
export declare type ConfluenceUpdateSpaceThemeInput = {
|
|
17131
|
+
spaceId: Scalars['Long']['input'];
|
|
17132
|
+
themeKey?: InputMaybe<Scalars['String']['input']>;
|
|
17133
|
+
};
|
|
17134
|
+
export declare type ConfluenceUpdateSpaceThemePayload = Payload & {
|
|
17135
|
+
__typename?: 'ConfluenceUpdateSpaceThemePayload';
|
|
17136
|
+
currentTheme?: Maybe<ConfluenceTheme>;
|
|
17137
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17138
|
+
success: Scalars['Boolean']['output'];
|
|
17139
|
+
};
|
|
16762
17140
|
export declare type ConfluenceUpdateSubCalendarHiddenEventsInput = {
|
|
16763
17141
|
subCalendarId: Scalars['ID']['input'];
|
|
16764
17142
|
};
|
|
@@ -19280,6 +19658,23 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
19280
19658
|
page: Scalars['String']['output'];
|
|
19281
19659
|
user: Scalars['Int']['output'];
|
|
19282
19660
|
};
|
|
19661
|
+
export declare type CplsAddContributionInput = {
|
|
19662
|
+
contributorId: Scalars['ID']['input'];
|
|
19663
|
+
endDate: Scalars['Date']['input'];
|
|
19664
|
+
startDate: Scalars['Date']['input'];
|
|
19665
|
+
value: Scalars['Float']['input'];
|
|
19666
|
+
valueType: CplsContributionValueType;
|
|
19667
|
+
workId: Scalars['ID']['input'];
|
|
19668
|
+
};
|
|
19669
|
+
export declare type CplsAddContributionsInput = {
|
|
19670
|
+
cloudId: Scalars['ID']['input'];
|
|
19671
|
+
contributions: Array<CplsAddContributionInput>;
|
|
19672
|
+
};
|
|
19673
|
+
export declare type CplsAddContributionsPayload = {
|
|
19674
|
+
__typename?: 'CplsAddContributionsPayload';
|
|
19675
|
+
contributors: Array<CplsContributorEdge>;
|
|
19676
|
+
errors: Array<MutationError>;
|
|
19677
|
+
};
|
|
19283
19678
|
export declare type CplsAddContributorScopeAssociationInput = {
|
|
19284
19679
|
cloudId: Scalars['ID']['input'];
|
|
19285
19680
|
contributorIds: Array<Scalars['ID']['input']>;
|
|
@@ -21689,6 +22084,7 @@ export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
|
|
|
21689
22084
|
};
|
|
21690
22085
|
export declare type CustomerServiceQueryApiTemplateFormsArgs = {
|
|
21691
22086
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
22087
|
+
filter?: InputMaybe<CustomerServiceTemplateFormFilterInput>;
|
|
21692
22088
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
21693
22089
|
helpCenterId: Scalars['ID']['input'];
|
|
21694
22090
|
};
|
|
@@ -21829,6 +22225,9 @@ export declare type CustomerServiceTemplateFormEdge = {
|
|
|
21829
22225
|
cursor: Scalars['String']['output'];
|
|
21830
22226
|
node?: Maybe<CustomerServiceTemplateForm>;
|
|
21831
22227
|
};
|
|
22228
|
+
export declare type CustomerServiceTemplateFormFilterInput = {
|
|
22229
|
+
isAiFillable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22230
|
+
};
|
|
21832
22231
|
export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemplateForm | QueryError;
|
|
21833
22232
|
export declare type CustomerServiceTemplateFormUpdateInput = {
|
|
21834
22233
|
defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
|
|
@@ -23009,6 +23408,12 @@ export declare type DevAiRovoDevArchiveSessionPayload = Payload & {
|
|
|
23009
23408
|
session?: Maybe<DevAiRovoDevSession>;
|
|
23010
23409
|
success: Scalars['Boolean']['output'];
|
|
23011
23410
|
};
|
|
23411
|
+
export declare enum DevAiRovoDevBuildStatus {
|
|
23412
|
+
Active = "ACTIVE",
|
|
23413
|
+
Failed = "FAILED",
|
|
23414
|
+
Inactive = "INACTIVE",
|
|
23415
|
+
Succeeded = "SUCCEEDED"
|
|
23416
|
+
}
|
|
23012
23417
|
export declare type DevAiRovoDevBulkCreateSessionByCloudIdInput = {
|
|
23013
23418
|
issueAris: Array<Scalars['ID']['input']>;
|
|
23014
23419
|
options: DevAiRovoDevCreateSessionByCloudIdInput;
|
|
@@ -23079,6 +23484,7 @@ export declare type DevAiRovoDevRepositoryInput = {
|
|
|
23079
23484
|
export declare type DevAiRovoDevSession = Node & {
|
|
23080
23485
|
__typename?: 'DevAiRovoDevSession';
|
|
23081
23486
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
23487
|
+
buildStatus?: Maybe<DevAiRovoDevBuildStatus>;
|
|
23082
23488
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
23083
23489
|
editorPath?: Maybe<Scalars['String']['output']>;
|
|
23084
23490
|
editorUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -24081,6 +24487,7 @@ export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsFilter = {
|
|
|
24081
24487
|
cloudId: Scalars['ID']['input'];
|
|
24082
24488
|
endAtExclusive: Scalars['DateTime']['input'];
|
|
24083
24489
|
jiraProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
24490
|
+
resolution?: InputMaybe<DevOpsMetricsResolutionInput>;
|
|
24084
24491
|
startFromInclusive: Scalars['DateTime']['input'];
|
|
24085
24492
|
};
|
|
24086
24493
|
export declare type DevOpsMetricsResolution = {
|
|
@@ -32811,16 +33218,24 @@ export declare type GraphStore = {
|
|
|
32811
33218
|
userCreatedCalendarEventInverse?: Maybe<GraphStoreSimplifiedUserCreatedCalendarEventInverseConnection>;
|
|
32812
33219
|
userCreatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostConnection>;
|
|
32813
33220
|
userCreatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseConnection>;
|
|
33221
|
+
userCreatedConfluenceBlogpostKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoConnection>;
|
|
33222
|
+
userCreatedConfluenceBlogpostKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseConnection>;
|
|
32814
33223
|
userCreatedConfluenceComment?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentConnection>;
|
|
32815
33224
|
userCreatedConfluenceCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentInverseConnection>;
|
|
33225
|
+
userCreatedConfluenceCommentKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoConnection>;
|
|
33226
|
+
userCreatedConfluenceCommentKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseConnection>;
|
|
32816
33227
|
userCreatedConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection>;
|
|
32817
33228
|
userCreatedConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceDatabaseInverseConnection>;
|
|
32818
33229
|
userCreatedConfluenceEmbed?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedConnection>;
|
|
32819
33230
|
userCreatedConfluenceEmbedInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceEmbedInverseConnection>;
|
|
32820
33231
|
userCreatedConfluencePage?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageConnection>;
|
|
32821
33232
|
userCreatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseConnection>;
|
|
33233
|
+
userCreatedConfluencePageKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoConnection>;
|
|
33234
|
+
userCreatedConfluencePageKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseConnection>;
|
|
32822
33235
|
userCreatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection>;
|
|
32823
33236
|
userCreatedConfluenceSpaceInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseConnection>;
|
|
33237
|
+
userCreatedConfluenceSpaceKamino?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoConnection>;
|
|
33238
|
+
userCreatedConfluenceSpaceKaminoInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseConnection>;
|
|
32824
33239
|
userCreatedConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection>;
|
|
32825
33240
|
userCreatedConfluenceWhiteboardInverse?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceWhiteboardInverseConnection>;
|
|
32826
33241
|
userCreatedDesign?: Maybe<GraphStoreSimplifiedUserCreatedDesignConnection>;
|
|
@@ -32933,6 +33348,8 @@ export declare type GraphStore = {
|
|
|
32933
33348
|
userUpdatedCommentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedCommentInverseConnection>;
|
|
32934
33349
|
userUpdatedConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostConnection>;
|
|
32935
33350
|
userUpdatedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseConnection>;
|
|
33351
|
+
userUpdatedConfluenceBlogpostKamino?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoConnection>;
|
|
33352
|
+
userUpdatedConfluenceBlogpostKaminoInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseConnection>;
|
|
32936
33353
|
userUpdatedConfluencePage?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageConnection>;
|
|
32937
33354
|
userUpdatedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserUpdatedConfluencePageInverseConnection>;
|
|
32938
33355
|
userUpdatedConfluenceSpace?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceSpaceConnection>;
|
|
@@ -36910,6 +37327,20 @@ export declare type GraphStoreUserCreatedConfluenceBlogpostInverseArgs = {
|
|
|
36910
37327
|
id: Scalars['ID']['input'];
|
|
36911
37328
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostSortInput>;
|
|
36912
37329
|
};
|
|
37330
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostKaminoArgs = {
|
|
37331
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37332
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37333
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37334
|
+
id: Scalars['ID']['input'];
|
|
37335
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostKaminoSortInput>;
|
|
37336
|
+
};
|
|
37337
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostKaminoInverseArgs = {
|
|
37338
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37339
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37340
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37341
|
+
id: Scalars['ID']['input'];
|
|
37342
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceBlogpostKaminoSortInput>;
|
|
37343
|
+
};
|
|
36913
37344
|
export declare type GraphStoreUserCreatedConfluenceCommentArgs = {
|
|
36914
37345
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36915
37346
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36924,6 +37355,20 @@ export declare type GraphStoreUserCreatedConfluenceCommentInverseArgs = {
|
|
|
36924
37355
|
id: Scalars['ID']['input'];
|
|
36925
37356
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceCommentSortInput>;
|
|
36926
37357
|
};
|
|
37358
|
+
export declare type GraphStoreUserCreatedConfluenceCommentKaminoArgs = {
|
|
37359
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37360
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37361
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37362
|
+
id: Scalars['ID']['input'];
|
|
37363
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceCommentKaminoSortInput>;
|
|
37364
|
+
};
|
|
37365
|
+
export declare type GraphStoreUserCreatedConfluenceCommentKaminoInverseArgs = {
|
|
37366
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37367
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37368
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37369
|
+
id: Scalars['ID']['input'];
|
|
37370
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceCommentKaminoSortInput>;
|
|
37371
|
+
};
|
|
36927
37372
|
export declare type GraphStoreUserCreatedConfluenceDatabaseArgs = {
|
|
36928
37373
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36929
37374
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36966,6 +37411,20 @@ export declare type GraphStoreUserCreatedConfluencePageInverseArgs = {
|
|
|
36966
37411
|
id: Scalars['ID']['input'];
|
|
36967
37412
|
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageSortInput>;
|
|
36968
37413
|
};
|
|
37414
|
+
export declare type GraphStoreUserCreatedConfluencePageKaminoArgs = {
|
|
37415
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37416
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37417
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37418
|
+
id: Scalars['ID']['input'];
|
|
37419
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageKaminoSortInput>;
|
|
37420
|
+
};
|
|
37421
|
+
export declare type GraphStoreUserCreatedConfluencePageKaminoInverseArgs = {
|
|
37422
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37423
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37424
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37425
|
+
id: Scalars['ID']['input'];
|
|
37426
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluencePageKaminoSortInput>;
|
|
37427
|
+
};
|
|
36969
37428
|
export declare type GraphStoreUserCreatedConfluenceSpaceArgs = {
|
|
36970
37429
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36971
37430
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -36980,6 +37439,20 @@ export declare type GraphStoreUserCreatedConfluenceSpaceInverseArgs = {
|
|
|
36980
37439
|
id: Scalars['ID']['input'];
|
|
36981
37440
|
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceSortInput>;
|
|
36982
37441
|
};
|
|
37442
|
+
export declare type GraphStoreUserCreatedConfluenceSpaceKaminoArgs = {
|
|
37443
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37444
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37445
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37446
|
+
id: Scalars['ID']['input'];
|
|
37447
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceKaminoSortInput>;
|
|
37448
|
+
};
|
|
37449
|
+
export declare type GraphStoreUserCreatedConfluenceSpaceKaminoInverseArgs = {
|
|
37450
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
37451
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37452
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
37453
|
+
id: Scalars['ID']['input'];
|
|
37454
|
+
sort?: InputMaybe<GraphStoreUserCreatedConfluenceSpaceKaminoSortInput>;
|
|
37455
|
+
};
|
|
36983
37456
|
export declare type GraphStoreUserCreatedConfluenceWhiteboardArgs = {
|
|
36984
37457
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
36985
37458
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37766,6 +38239,20 @@ export declare type GraphStoreUserUpdatedConfluenceBlogpostInverseArgs = {
|
|
|
37766
38239
|
id: Scalars['ID']['input'];
|
|
37767
38240
|
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceBlogpostSortInput>;
|
|
37768
38241
|
};
|
|
38242
|
+
export declare type GraphStoreUserUpdatedConfluenceBlogpostKaminoArgs = {
|
|
38243
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38244
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38245
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38246
|
+
id: Scalars['ID']['input'];
|
|
38247
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceBlogpostKaminoSortInput>;
|
|
38248
|
+
};
|
|
38249
|
+
export declare type GraphStoreUserUpdatedConfluenceBlogpostKaminoInverseArgs = {
|
|
38250
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38251
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38252
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38253
|
+
id: Scalars['ID']['input'];
|
|
38254
|
+
sort?: InputMaybe<GraphStoreUserUpdatedConfluenceBlogpostKaminoSortInput>;
|
|
38255
|
+
};
|
|
37769
38256
|
export declare type GraphStoreUserUpdatedConfluencePageArgs = {
|
|
37770
38257
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
37771
38258
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -51205,6 +51692,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseEdge
|
|
|
51205
51692
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion>;
|
|
51206
51693
|
};
|
|
51207
51694
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51695
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoConnection = HasPageInfo & {
|
|
51696
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoConnection';
|
|
51697
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoEdge>>>;
|
|
51698
|
+
pageInfo: PageInfo;
|
|
51699
|
+
};
|
|
51700
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoEdge = {
|
|
51701
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoEdge';
|
|
51702
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51703
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51704
|
+
id: Scalars['ID']['output'];
|
|
51705
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51706
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoUnion>;
|
|
51707
|
+
};
|
|
51708
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseConnection = HasPageInfo & {
|
|
51709
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseConnection';
|
|
51710
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseEdge>>>;
|
|
51711
|
+
pageInfo: PageInfo;
|
|
51712
|
+
};
|
|
51713
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseEdge = {
|
|
51714
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseEdge';
|
|
51715
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51716
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51717
|
+
id: Scalars['ID']['output'];
|
|
51718
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51719
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseUnion>;
|
|
51720
|
+
};
|
|
51721
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51722
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostKaminoUnion = ConfluenceBlogPost;
|
|
51208
51723
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
51209
51724
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentConnection = HasPageInfo & {
|
|
51210
51725
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentConnection';
|
|
@@ -51233,6 +51748,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentInverseEdge
|
|
|
51233
51748
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentInverseUnion>;
|
|
51234
51749
|
};
|
|
51235
51750
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51751
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoConnection = HasPageInfo & {
|
|
51752
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoConnection';
|
|
51753
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoEdge>>>;
|
|
51754
|
+
pageInfo: PageInfo;
|
|
51755
|
+
};
|
|
51756
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoEdge = {
|
|
51757
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoEdge';
|
|
51758
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51759
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51760
|
+
id: Scalars['ID']['output'];
|
|
51761
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51762
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoUnion>;
|
|
51763
|
+
};
|
|
51764
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseConnection = HasPageInfo & {
|
|
51765
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseConnection';
|
|
51766
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseEdge>>>;
|
|
51767
|
+
pageInfo: PageInfo;
|
|
51768
|
+
};
|
|
51769
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseEdge = {
|
|
51770
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseEdge';
|
|
51771
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51772
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51773
|
+
id: Scalars['ID']['output'];
|
|
51774
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51775
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseUnion>;
|
|
51776
|
+
};
|
|
51777
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51778
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentKaminoUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
51236
51779
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceCommentUnion = ConfluenceFooterComment | ConfluenceInlineComment;
|
|
51237
51780
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection = HasPageInfo & {
|
|
51238
51781
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceDatabaseConnection';
|
|
@@ -51317,6 +51860,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseEdge = {
|
|
|
51317
51860
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion>;
|
|
51318
51861
|
};
|
|
51319
51862
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51863
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageKaminoConnection = HasPageInfo & {
|
|
51864
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageKaminoConnection';
|
|
51865
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoEdge>>>;
|
|
51866
|
+
pageInfo: PageInfo;
|
|
51867
|
+
};
|
|
51868
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageKaminoEdge = {
|
|
51869
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageKaminoEdge';
|
|
51870
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51871
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51872
|
+
id: Scalars['ID']['output'];
|
|
51873
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51874
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoUnion>;
|
|
51875
|
+
};
|
|
51876
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseConnection = HasPageInfo & {
|
|
51877
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseConnection';
|
|
51878
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseEdge>>>;
|
|
51879
|
+
pageInfo: PageInfo;
|
|
51880
|
+
};
|
|
51881
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseEdge = {
|
|
51882
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseEdge';
|
|
51883
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51884
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51885
|
+
id: Scalars['ID']['output'];
|
|
51886
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51887
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseUnion>;
|
|
51888
|
+
};
|
|
51889
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51890
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluencePageKaminoUnion = ConfluencePage;
|
|
51320
51891
|
export declare type GraphStoreSimplifiedUserCreatedConfluencePageUnion = ConfluencePage;
|
|
51321
51892
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection = HasPageInfo & {
|
|
51322
51893
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceConnection';
|
|
@@ -51345,6 +51916,34 @@ export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseEdge =
|
|
|
51345
51916
|
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseUnion>;
|
|
51346
51917
|
};
|
|
51347
51918
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51919
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoConnection = HasPageInfo & {
|
|
51920
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoConnection';
|
|
51921
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoEdge>>>;
|
|
51922
|
+
pageInfo: PageInfo;
|
|
51923
|
+
};
|
|
51924
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoEdge = {
|
|
51925
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoEdge';
|
|
51926
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51927
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51928
|
+
id: Scalars['ID']['output'];
|
|
51929
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51930
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoUnion>;
|
|
51931
|
+
};
|
|
51932
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseConnection = HasPageInfo & {
|
|
51933
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseConnection';
|
|
51934
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseEdge>>>;
|
|
51935
|
+
pageInfo: PageInfo;
|
|
51936
|
+
};
|
|
51937
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseEdge = {
|
|
51938
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseEdge';
|
|
51939
|
+
createdAt: Scalars['DateTime']['output'];
|
|
51940
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
51941
|
+
id: Scalars['ID']['output'];
|
|
51942
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
51943
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseUnion>;
|
|
51944
|
+
};
|
|
51945
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
51946
|
+
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceKaminoUnion = ConfluenceSpace;
|
|
51348
51947
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceSpaceUnion = ConfluenceSpace;
|
|
51349
51948
|
export declare type GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection = HasPageInfo & {
|
|
51350
51949
|
__typename?: 'GraphStoreSimplifiedUserCreatedConfluenceWhiteboardConnection';
|
|
@@ -52901,6 +53500,34 @@ export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseEdge
|
|
|
52901
53500
|
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseUnion>;
|
|
52902
53501
|
};
|
|
52903
53502
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
53503
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoConnection = HasPageInfo & {
|
|
53504
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoConnection';
|
|
53505
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoEdge>>>;
|
|
53506
|
+
pageInfo: PageInfo;
|
|
53507
|
+
};
|
|
53508
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoEdge = {
|
|
53509
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoEdge';
|
|
53510
|
+
createdAt: Scalars['DateTime']['output'];
|
|
53511
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53512
|
+
id: Scalars['ID']['output'];
|
|
53513
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
53514
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoUnion>;
|
|
53515
|
+
};
|
|
53516
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseConnection = HasPageInfo & {
|
|
53517
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseConnection';
|
|
53518
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseEdge>>>;
|
|
53519
|
+
pageInfo: PageInfo;
|
|
53520
|
+
};
|
|
53521
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseEdge = {
|
|
53522
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseEdge';
|
|
53523
|
+
createdAt: Scalars['DateTime']['output'];
|
|
53524
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53525
|
+
id: Scalars['ID']['output'];
|
|
53526
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
53527
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseUnion>;
|
|
53528
|
+
};
|
|
53529
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
53530
|
+
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostKaminoUnion = ConfluenceBlogPost;
|
|
52904
53531
|
export declare type GraphStoreSimplifiedUserUpdatedConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
52905
53532
|
export declare type GraphStoreSimplifiedUserUpdatedConfluencePageConnection = HasPageInfo & {
|
|
52906
53533
|
__typename?: 'GraphStoreSimplifiedUserUpdatedConfluencePageConnection';
|
|
@@ -54210,9 +54837,15 @@ export declare type GraphStoreUserCreatedCalendarEventSortInput = {
|
|
|
54210
54837
|
to_eventEndTime?: InputMaybe<GraphStoreSortInput>;
|
|
54211
54838
|
to_eventStartTime?: InputMaybe<GraphStoreSortInput>;
|
|
54212
54839
|
};
|
|
54840
|
+
export declare type GraphStoreUserCreatedConfluenceBlogpostKaminoSortInput = {
|
|
54841
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54842
|
+
};
|
|
54213
54843
|
export declare type GraphStoreUserCreatedConfluenceBlogpostSortInput = {
|
|
54214
54844
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54215
54845
|
};
|
|
54846
|
+
export declare type GraphStoreUserCreatedConfluenceCommentKaminoSortInput = {
|
|
54847
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54848
|
+
};
|
|
54216
54849
|
export declare type GraphStoreUserCreatedConfluenceCommentSortInput = {
|
|
54217
54850
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54218
54851
|
};
|
|
@@ -54222,9 +54855,15 @@ export declare type GraphStoreUserCreatedConfluenceDatabaseSortInput = {
|
|
|
54222
54855
|
export declare type GraphStoreUserCreatedConfluenceEmbedSortInput = {
|
|
54223
54856
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54224
54857
|
};
|
|
54858
|
+
export declare type GraphStoreUserCreatedConfluencePageKaminoSortInput = {
|
|
54859
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54860
|
+
};
|
|
54225
54861
|
export declare type GraphStoreUserCreatedConfluencePageSortInput = {
|
|
54226
54862
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54227
54863
|
};
|
|
54864
|
+
export declare type GraphStoreUserCreatedConfluenceSpaceKaminoSortInput = {
|
|
54865
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54866
|
+
};
|
|
54228
54867
|
export declare type GraphStoreUserCreatedConfluenceSpaceSortInput = {
|
|
54229
54868
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54230
54869
|
};
|
|
@@ -54430,6 +55069,9 @@ export declare type GraphStoreUserUpdatedAtlasProjectSortInput = {
|
|
|
54430
55069
|
export declare type GraphStoreUserUpdatedCommentSortInput = {
|
|
54431
55070
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54432
55071
|
};
|
|
55072
|
+
export declare type GraphStoreUserUpdatedConfluenceBlogpostKaminoSortInput = {
|
|
55073
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55074
|
+
};
|
|
54433
55075
|
export declare type GraphStoreUserUpdatedConfluenceBlogpostSortInput = {
|
|
54434
55076
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
54435
55077
|
};
|
|
@@ -59115,6 +59757,12 @@ export declare type JiraAttachmentFilterInput = {
|
|
|
59115
59757
|
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
59116
59758
|
mimeTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
59117
59759
|
};
|
|
59760
|
+
export declare enum JiraAttachmentOrderField {
|
|
59761
|
+
Created = "CREATED",
|
|
59762
|
+
Filename = "FILENAME",
|
|
59763
|
+
Filesize = "FILESIZE",
|
|
59764
|
+
Mimetype = "MIMETYPE"
|
|
59765
|
+
}
|
|
59118
59766
|
export declare enum JiraAttachmentParentName {
|
|
59119
59767
|
Comment = "COMMENT",
|
|
59120
59768
|
Customfield = "CUSTOMFIELD",
|
|
@@ -59146,6 +59794,20 @@ export declare type JiraAttachmentSortInput = {
|
|
|
59146
59794
|
field: JiraAttachmentSortField;
|
|
59147
59795
|
order?: SortDirection;
|
|
59148
59796
|
};
|
|
59797
|
+
export declare type JiraAttachmentWithFiltersInput = {
|
|
59798
|
+
filters?: InputMaybe<JiraIssueAttachmentFilterInput>;
|
|
59799
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
59800
|
+
maxResults?: InputMaybe<Scalars['Long']['input']>;
|
|
59801
|
+
orderDirection?: InputMaybe<SortDirection>;
|
|
59802
|
+
orderField?: InputMaybe<JiraAttachmentOrderField>;
|
|
59803
|
+
startAt?: InputMaybe<Scalars['Long']['input']>;
|
|
59804
|
+
};
|
|
59805
|
+
export declare type JiraAttachmentWithFiltersResult = {
|
|
59806
|
+
__typename?: 'JiraAttachmentWithFiltersResult';
|
|
59807
|
+
deletableCount?: Maybe<Scalars['Long']['output']>;
|
|
59808
|
+
nodes?: Maybe<Array<Maybe<JiraPlatformAttachment>>>;
|
|
59809
|
+
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
59810
|
+
};
|
|
59149
59811
|
export declare type JiraAttachmentsField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
59150
59812
|
__typename?: 'JiraAttachmentsField';
|
|
59151
59813
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -64814,6 +65476,9 @@ export declare type JiraIssueAndProject = {
|
|
|
64814
65476
|
issueId: Scalars['ID']['output'];
|
|
64815
65477
|
projectId: Scalars['ID']['output'];
|
|
64816
65478
|
};
|
|
65479
|
+
export declare type JiraIssueAttachmentFilterInput = {
|
|
65480
|
+
mimeTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
65481
|
+
};
|
|
64817
65482
|
export declare type JiraIssueBranchDevSummary = {
|
|
64818
65483
|
__typename?: 'JiraIssueBranchDevSummary';
|
|
64819
65484
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -65220,8 +65885,10 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
65220
65885
|
fieldId: Scalars['String']['output'];
|
|
65221
65886
|
formatConfig?: Maybe<JiraFieldFormatConfig>;
|
|
65222
65887
|
id: Scalars['ID']['output'];
|
|
65888
|
+
isConnect?: Maybe<Scalars['Boolean']['output']>;
|
|
65223
65889
|
isCustom: Scalars['Boolean']['output'];
|
|
65224
65890
|
isDefaultFieldOptionsCountOverLimit?: Maybe<Scalars['Boolean']['output']>;
|
|
65891
|
+
isForge?: Maybe<Scalars['Boolean']['output']>;
|
|
65225
65892
|
isGlobal?: Maybe<Scalars['Boolean']['output']>;
|
|
65226
65893
|
isLocked?: Maybe<Scalars['Boolean']['output']>;
|
|
65227
65894
|
isTrashed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -66559,6 +67226,10 @@ export declare enum JiraJourneyActiveState {
|
|
|
66559
67226
|
Inactive = "INACTIVE",
|
|
66560
67227
|
None = "NONE"
|
|
66561
67228
|
}
|
|
67229
|
+
export declare type JiraJourneyAssociations = {
|
|
67230
|
+
__typename?: 'JiraJourneyAssociations';
|
|
67231
|
+
migrationStatus?: Maybe<JiraJourneyRulesMigrationStatus>;
|
|
67232
|
+
};
|
|
66562
67233
|
export declare type JiraJourneyBuilderAssociatedAutomationRule = {
|
|
66563
67234
|
__typename?: 'JiraJourneyBuilderAssociatedAutomationRule';
|
|
66564
67235
|
id: Scalars['ID']['output'];
|
|
@@ -66566,6 +67237,7 @@ export declare type JiraJourneyBuilderAssociatedAutomationRule = {
|
|
|
66566
67237
|
export declare type JiraJourneyConfiguration = Node & {
|
|
66567
67238
|
__typename?: 'JiraJourneyConfiguration';
|
|
66568
67239
|
activityConfigurations?: Maybe<Array<Maybe<JiraActivityConfiguration>>>;
|
|
67240
|
+
associations?: Maybe<JiraJourneyAssociations>;
|
|
66569
67241
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
66570
67242
|
createdBy?: Maybe<User>;
|
|
66571
67243
|
etag?: Maybe<Scalars['String']['output']>;
|
|
@@ -66661,6 +67333,13 @@ export declare type JiraJourneyProjectSettings = {
|
|
|
66661
67333
|
isJourneyEntitlementEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66662
67334
|
isJourneyFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66663
67335
|
};
|
|
67336
|
+
export declare enum JiraJourneyRulesMigrationStatus {
|
|
67337
|
+
Failure = "FAILURE",
|
|
67338
|
+
RollbackFailure = "ROLLBACK_FAILURE",
|
|
67339
|
+
RollbackSuccess = "ROLLBACK_SUCCESS",
|
|
67340
|
+
Success = "SUCCESS",
|
|
67341
|
+
ValidationFailure = "VALIDATION_FAILURE"
|
|
67342
|
+
}
|
|
66664
67343
|
export declare type JiraJourneySettings = {
|
|
66665
67344
|
__typename?: 'JiraJourneySettings';
|
|
66666
67345
|
maxJourneyItems?: Maybe<Scalars['Long']['output']>;
|
|
@@ -69052,6 +69731,7 @@ export declare type JiraNotificationPreferences = {
|
|
|
69052
69731
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
69053
69732
|
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
69054
69733
|
miscellaneousIssueEventCombined?: Maybe<JiraNotificationPreference>;
|
|
69734
|
+
projectRecapNotification?: Maybe<JiraNotificationPreference>;
|
|
69055
69735
|
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
69056
69736
|
};
|
|
69057
69737
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
@@ -69078,6 +69758,7 @@ export declare enum JiraNotificationType {
|
|
|
69078
69758
|
IssueUpdated = "ISSUE_UPDATED",
|
|
69079
69759
|
MentionsCombined = "MENTIONS_COMBINED",
|
|
69080
69760
|
MiscellaneousIssueEventCombined = "MISCELLANEOUS_ISSUE_EVENT_COMBINED",
|
|
69761
|
+
ProjectRecapNotification = "PROJECT_RECAP_NOTIFICATION",
|
|
69081
69762
|
WorklogCombined = "WORKLOG_COMBINED"
|
|
69082
69763
|
}
|
|
69083
69764
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
@@ -69333,7 +70014,7 @@ export declare type JiraOnboardingConfig = {
|
|
|
69333
70014
|
isDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
69334
70015
|
logo?: Maybe<JiraOnboardingMedia>;
|
|
69335
70016
|
mediaReadToken?: Maybe<JiraOnboardingMediaReadToken>;
|
|
69336
|
-
modals
|
|
70017
|
+
modals: Array<JiraOnboardingModal>;
|
|
69337
70018
|
name: Scalars['String']['output'];
|
|
69338
70019
|
onboardingConfigAri: Scalars['ID']['output'];
|
|
69339
70020
|
targetType: JiraOnboardingTargetType;
|
|
@@ -69356,7 +70037,7 @@ export declare type JiraOnboardingConfigInput = {
|
|
|
69356
70037
|
destination?: InputMaybe<Scalars['URL']['input']>;
|
|
69357
70038
|
isDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
69358
70039
|
logo?: InputMaybe<JiraOnboardingMediaInput>;
|
|
69359
|
-
modals
|
|
70040
|
+
modals: Array<JiraOnboardingModalInput>;
|
|
69360
70041
|
name: Scalars['String']['input'];
|
|
69361
70042
|
targetType: JiraOnboardingTargetType;
|
|
69362
70043
|
targetValues: Array<Scalars['String']['input']>;
|
|
@@ -69370,12 +70051,12 @@ export declare type JiraOnboardingConfigPayload = Payload & {
|
|
|
69370
70051
|
export declare type JiraOnboardingLink = {
|
|
69371
70052
|
__typename?: 'JiraOnboardingLink';
|
|
69372
70053
|
target?: Maybe<Scalars['String']['output']>;
|
|
69373
|
-
text
|
|
70054
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
69374
70055
|
url: Scalars['URL']['output'];
|
|
69375
70056
|
};
|
|
69376
70057
|
export declare type JiraOnboardingLinkInput = {
|
|
69377
70058
|
target?: InputMaybe<Scalars['String']['input']>;
|
|
69378
|
-
text
|
|
70059
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
|
69379
70060
|
url: Scalars['URL']['input'];
|
|
69380
70061
|
};
|
|
69381
70062
|
export declare type JiraOnboardingMedia = {
|
|
@@ -69403,11 +70084,11 @@ export declare enum JiraOnboardingMediaType {
|
|
|
69403
70084
|
export declare type JiraOnboardingModal = {
|
|
69404
70085
|
__typename?: 'JiraOnboardingModal';
|
|
69405
70086
|
locale?: Maybe<Scalars['String']['output']>;
|
|
69406
|
-
steps
|
|
70087
|
+
steps: Array<JiraOnboardingStep>;
|
|
69407
70088
|
};
|
|
69408
70089
|
export declare type JiraOnboardingModalInput = {
|
|
69409
70090
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
69410
|
-
steps
|
|
70091
|
+
steps: Array<JiraOnboardingStepInput>;
|
|
69411
70092
|
};
|
|
69412
70093
|
export declare type JiraOnboardingStep = {
|
|
69413
70094
|
__typename?: 'JiraOnboardingStep';
|
|
@@ -70243,6 +70924,67 @@ export declare type JiraPlaybookStepUsageFilter = {
|
|
|
70243
70924
|
stepStatus?: InputMaybe<Array<JiraPlaybookStepRunStatus>>;
|
|
70244
70925
|
stepType?: InputMaybe<JiraPlaybookStepType>;
|
|
70245
70926
|
};
|
|
70927
|
+
export declare type JiraPlaybookTemplate = {
|
|
70928
|
+
__typename?: 'JiraPlaybookTemplate';
|
|
70929
|
+
category?: Maybe<PlaybookTemplateCategory>;
|
|
70930
|
+
color?: Maybe<PlaybookTemplateColor>;
|
|
70931
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
70932
|
+
estimatedTimeSaving?: Maybe<Scalars['Int']['output']>;
|
|
70933
|
+
icon?: Maybe<PlaybookTemplateIcon>;
|
|
70934
|
+
keyFeatures?: Maybe<Array<Scalars['String']['output']>>;
|
|
70935
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
70936
|
+
overview?: Maybe<Scalars['String']['output']>;
|
|
70937
|
+
scopeType?: Maybe<JiraPlaybookScopeType>;
|
|
70938
|
+
steps?: Maybe<Array<JiraPlaybookTemplateStep>>;
|
|
70939
|
+
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
70940
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
70941
|
+
};
|
|
70942
|
+
export declare type JiraPlaybookTemplateCategory = {
|
|
70943
|
+
__typename?: 'JiraPlaybookTemplateCategory';
|
|
70944
|
+
category?: Maybe<PlaybookTemplateCategory>;
|
|
70945
|
+
cloudId: Scalars['ID']['output'];
|
|
70946
|
+
templates?: Maybe<JiraPlaybookTemplateConnection>;
|
|
70947
|
+
};
|
|
70948
|
+
export declare type JiraPlaybookTemplateCategoryTemplatesArgs = {
|
|
70949
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70950
|
+
filter?: InputMaybe<JiraPlaybookTemplateFilter>;
|
|
70951
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70952
|
+
};
|
|
70953
|
+
export declare type JiraPlaybookTemplateCategoryQueryPayload = QueryPayload & {
|
|
70954
|
+
__typename?: 'JiraPlaybookTemplateCategoryQueryPayload';
|
|
70955
|
+
categories?: Maybe<Array<JiraPlaybookTemplateCategory>>;
|
|
70956
|
+
errors?: Maybe<Array<QueryError>>;
|
|
70957
|
+
success: Scalars['Boolean']['output'];
|
|
70958
|
+
};
|
|
70959
|
+
export declare type JiraPlaybookTemplateConnection = HasPageInfo & QueryPayload & {
|
|
70960
|
+
__typename?: 'JiraPlaybookTemplateConnection';
|
|
70961
|
+
edges?: Maybe<Array<JiraPlaybookTemplateEdge>>;
|
|
70962
|
+
errors?: Maybe<Array<QueryError>>;
|
|
70963
|
+
nodes?: Maybe<Array<Maybe<JiraPlaybookTemplate>>>;
|
|
70964
|
+
pageInfo: PageInfo;
|
|
70965
|
+
success: Scalars['Boolean']['output'];
|
|
70966
|
+
};
|
|
70967
|
+
export declare type JiraPlaybookTemplateEdge = {
|
|
70968
|
+
__typename?: 'JiraPlaybookTemplateEdge';
|
|
70969
|
+
cursor: Scalars['String']['output'];
|
|
70970
|
+
node?: Maybe<JiraPlaybookTemplate>;
|
|
70971
|
+
};
|
|
70972
|
+
export declare type JiraPlaybookTemplateFilter = {
|
|
70973
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
70974
|
+
};
|
|
70975
|
+
export declare type JiraPlaybookTemplateQueryPayload = QueryPayload & {
|
|
70976
|
+
__typename?: 'JiraPlaybookTemplateQueryPayload';
|
|
70977
|
+
errors?: Maybe<Array<QueryError>>;
|
|
70978
|
+
success: Scalars['Boolean']['output'];
|
|
70979
|
+
template?: Maybe<JiraPlaybookTemplate>;
|
|
70980
|
+
};
|
|
70981
|
+
export declare type JiraPlaybookTemplateStep = {
|
|
70982
|
+
__typename?: 'JiraPlaybookTemplateStep';
|
|
70983
|
+
automationTemplateId?: Maybe<Scalars['String']['output']>;
|
|
70984
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
70985
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
70986
|
+
type?: Maybe<JiraPlaybookStepType>;
|
|
70987
|
+
};
|
|
70246
70988
|
export declare enum JiraPlaybooksSortBy {
|
|
70247
70989
|
Name = "NAME"
|
|
70248
70990
|
}
|
|
@@ -71380,6 +72122,7 @@ export declare type JiraQuery = {
|
|
|
71380
72122
|
issueSearchViewResult?: Maybe<JiraIssueSearchViewResult>;
|
|
71381
72123
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
71382
72124
|
jiraActivityConfiguration?: Maybe<JiraActivityConfiguration>;
|
|
72125
|
+
jiraAttachmentsWithFilters?: Maybe<JiraAttachmentWithFiltersResult>;
|
|
71383
72126
|
jiraBoard?: Maybe<JiraBoardResult>;
|
|
71384
72127
|
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
71385
72128
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
@@ -71957,6 +72700,9 @@ export declare type JiraQueryJiraActivityConfigurationArgs = {
|
|
|
71957
72700
|
id: Scalars['ID']['input'];
|
|
71958
72701
|
journeyId: Scalars['ID']['input'];
|
|
71959
72702
|
};
|
|
72703
|
+
export declare type JiraQueryJiraAttachmentsWithFiltersArgs = {
|
|
72704
|
+
input?: InputMaybe<JiraAttachmentWithFiltersInput>;
|
|
72705
|
+
};
|
|
71960
72706
|
export declare type JiraQueryJiraBoardArgs = {
|
|
71961
72707
|
id: Scalars['ID']['input'];
|
|
71962
72708
|
};
|
|
@@ -84815,14 +85561,6 @@ export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
|
84815
85561
|
strategicEventId: Scalars['ID']['output'];
|
|
84816
85562
|
success: Scalars['Boolean']['output'];
|
|
84817
85563
|
};
|
|
84818
|
-
export declare type MercuryOnUpdateStrategicEventPayload = Payload & {
|
|
84819
|
-
__typename?: 'MercuryOnUpdateStrategicEventPayload';
|
|
84820
|
-
errors?: Maybe<Array<MutationError>>;
|
|
84821
|
-
event?: Maybe<Scalars['String']['output']>;
|
|
84822
|
-
id: Scalars['ID']['output'];
|
|
84823
|
-
success: Scalars['Boolean']['output'];
|
|
84824
|
-
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
84825
|
-
};
|
|
84826
85564
|
export declare type MercuryOriginalProjectStatus = {
|
|
84827
85565
|
mercuryOriginalStatusName?: Maybe<Scalars['String']['output']>;
|
|
84828
85566
|
};
|
|
@@ -85766,7 +86504,7 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
|
85766
86504
|
export declare type MercurySubscriptionApi = {
|
|
85767
86505
|
__typename?: 'MercurySubscriptionApi';
|
|
85768
86506
|
onUpdateChangeProposals?: Maybe<MercuryOnUpdateChangeProposalsPayload>;
|
|
85769
|
-
onUpdateStrategicEvent?: Maybe<
|
|
86507
|
+
onUpdateStrategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
85770
86508
|
};
|
|
85771
86509
|
export declare type MercurySubscriptionApiOnUpdateChangeProposalsArgs = {
|
|
85772
86510
|
strategicEventId: Scalars['ID']['input'];
|
|
@@ -86424,6 +87162,7 @@ export declare type Mutation = {
|
|
|
86424
87162
|
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
86425
87163
|
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
86426
87164
|
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
87165
|
+
assetsDM_deleteSavedSearch?: Maybe<AssetsDmSavedSearchesDeleteResponse>;
|
|
86427
87166
|
assetsDM_editObjectTag?: Maybe<AssetsDmObjectTagEditResponse>;
|
|
86428
87167
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
86429
87168
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
@@ -86520,6 +87259,7 @@ export declare type Mutation = {
|
|
|
86520
87259
|
copyDefaultSpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
86521
87260
|
copyPolarisInsights?: Maybe<CopyPolarisInsightsPayload>;
|
|
86522
87261
|
copySpacePermissions?: Maybe<CopySpacePermissionsPayload>;
|
|
87262
|
+
cpls_addContributions: CplsAddContributionsPayload;
|
|
86523
87263
|
cpls_addContributorScopeAssociation: CplsAddContributorScopeAssociationPayload;
|
|
86524
87264
|
cpls_deleteContributorScopeAssociation: CplsDeleteContributorScopeAssociationPayload;
|
|
86525
87265
|
createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
|
|
@@ -86914,6 +87654,8 @@ export declare type Mutation = {
|
|
|
86914
87654
|
spf_updateAskUpdateTargetDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
86915
87655
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
86916
87656
|
stakeholderComms_addStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
87657
|
+
stakeholderComms_batchProcessDraftComponents?: Maybe<StakeholderCommsBatchComponentProcessResponse>;
|
|
87658
|
+
stakeholderComms_bulkDeleteStakeholders?: Maybe<StakeholderCommsBulkStakeholderResponse>;
|
|
86917
87659
|
stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
|
|
86918
87660
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
86919
87661
|
stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndMemberships>;
|
|
@@ -87195,6 +87937,9 @@ export declare type MutationAssetsDm_DeleteObjectTagArgs = {
|
|
|
87195
87937
|
tagId: Scalars['ID']['input'];
|
|
87196
87938
|
workspaceId: Scalars['ID']['input'];
|
|
87197
87939
|
};
|
|
87940
|
+
export declare type MutationAssetsDm_DeleteSavedSearchArgs = {
|
|
87941
|
+
args: AssetsDmSavedSearchesDeleteArgs;
|
|
87942
|
+
};
|
|
87198
87943
|
export declare type MutationAssetsDm_EditObjectTagArgs = {
|
|
87199
87944
|
cloudId: Scalars['ID']['input'];
|
|
87200
87945
|
input: AssetsDmObjectTagEditInput;
|
|
@@ -87535,6 +88280,9 @@ export declare type MutationCopySpacePermissionsArgs = {
|
|
|
87535
88280
|
sourceSpaceKey: Scalars['String']['input'];
|
|
87536
88281
|
targetSpaceKey: Scalars['String']['input'];
|
|
87537
88282
|
};
|
|
88283
|
+
export declare type MutationCpls_AddContributionsArgs = {
|
|
88284
|
+
input: CplsAddContributionsInput;
|
|
88285
|
+
};
|
|
87538
88286
|
export declare type MutationCpls_AddContributorScopeAssociationArgs = {
|
|
87539
88287
|
input: CplsAddContributorScopeAssociationInput;
|
|
87540
88288
|
};
|
|
@@ -88771,6 +89519,12 @@ export declare type MutationStakeholderComms_AddStakeholderMembersArgs = {
|
|
|
88771
89519
|
groupId: Scalars['String']['input'];
|
|
88772
89520
|
stakeholders?: InputMaybe<Array<StakeholderCommsCreateStakeholderInput>>;
|
|
88773
89521
|
};
|
|
89522
|
+
export declare type MutationStakeholderComms_BatchProcessDraftComponentsArgs = {
|
|
89523
|
+
batchComponentProcessRequest: StakeholderCommsBatchComponentProcessRequest;
|
|
89524
|
+
};
|
|
89525
|
+
export declare type MutationStakeholderComms_BulkDeleteStakeholdersArgs = {
|
|
89526
|
+
stakeholderIds: Array<Scalars['String']['input']>;
|
|
89527
|
+
};
|
|
88774
89528
|
export declare type MutationStakeholderComms_CreatePageArgs = {
|
|
88775
89529
|
page: StakeholderCommsCreatePageInputType;
|
|
88776
89530
|
};
|
|
@@ -90857,6 +91611,29 @@ export declare enum Platform {
|
|
|
90857
91611
|
Ios = "IOS",
|
|
90858
91612
|
Web = "WEB"
|
|
90859
91613
|
}
|
|
91614
|
+
export declare enum PlaybookTemplateCategory {
|
|
91615
|
+
DevOps = "DEV_OPS",
|
|
91616
|
+
Hrsm = "HRSM",
|
|
91617
|
+
ItOperations = "IT_OPERATIONS",
|
|
91618
|
+
ItServiceManagement = "IT_SERVICE_MANAGEMENT",
|
|
91619
|
+
SecOps = "SEC_OPS"
|
|
91620
|
+
}
|
|
91621
|
+
export declare enum PlaybookTemplateColor {
|
|
91622
|
+
Blue = "BLUE",
|
|
91623
|
+
Gray = "GRAY",
|
|
91624
|
+
Green = "GREEN",
|
|
91625
|
+
Purple = "PURPLE",
|
|
91626
|
+
Yellow = "YELLOW"
|
|
91627
|
+
}
|
|
91628
|
+
export declare enum PlaybookTemplateIcon {
|
|
91629
|
+
SpotBasicsRainstormIncidentIcon = "SPOT_BASICS_RAINSTORM_INCIDENT_ICON",
|
|
91630
|
+
SpotErrorStateErrorColorIcon = "SPOT_ERROR_STATE_ERROR_COLOR_ICON",
|
|
91631
|
+
SpotGeneralChat_5Icon = "SPOT_GENERAL_CHAT_5_ICON",
|
|
91632
|
+
SpotGeneralDataCenterIcon = "SPOT_GENERAL_DATA_CENTER_ICON",
|
|
91633
|
+
SpotGeneralNetworkIcon = "SPOT_GENERAL_NETWORK_ICON",
|
|
91634
|
+
SpotGeneralScalability_4Icon = "SPOT_GENERAL_SCALABILITY_4_ICON",
|
|
91635
|
+
SpotGeneralSearchErrorIcon = "SPOT_GENERAL_SEARCH_ERROR_ICON"
|
|
91636
|
+
}
|
|
90860
91637
|
export declare type PokemonEntity = {
|
|
90861
91638
|
__typename?: 'PokemonEntity';
|
|
90862
91639
|
greetings?: Maybe<Scalars['String']['output']>;
|
|
@@ -91977,6 +92754,7 @@ export declare type Query = {
|
|
|
91977
92754
|
assetsDM_objectsReportAttributeByDs?: Maybe<AssetsDmObjectsReportAttributeByDs>;
|
|
91978
92755
|
assetsDM_objectsReportDsByDs?: Maybe<AssetsDmObjectsReportDsByDs>;
|
|
91979
92756
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
92757
|
+
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
91980
92758
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
91981
92759
|
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
91982
92760
|
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
@@ -92056,6 +92834,7 @@ export declare type Query = {
|
|
|
92056
92834
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
92057
92835
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
92058
92836
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
92837
|
+
confluence_importsAll?: Maybe<Array<Maybe<ConfluenceImport>>>;
|
|
92059
92838
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
92060
92839
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
92061
92840
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
@@ -92430,6 +93209,8 @@ export declare type Query = {
|
|
|
92430
93209
|
playbook_jiraPlaybookStepRunsForPlaybookInstance?: Maybe<JiraPlaybookStepRunConnection>;
|
|
92431
93210
|
playbook_jiraPlaybookStepRunsForProject?: Maybe<JiraPlaybookStepRunConnection>;
|
|
92432
93211
|
playbook_jiraPlaybookStepUsageForProject?: Maybe<JiraPlaybookStepUsageConnection>;
|
|
93212
|
+
playbook_jiraPlaybookTemplate?: Maybe<JiraPlaybookTemplateQueryPayload>;
|
|
93213
|
+
playbook_jiraPlaybookTemplateCategories?: Maybe<JiraPlaybookTemplateCategoryQueryPayload>;
|
|
92433
93214
|
playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
|
|
92434
93215
|
pokemon?: Maybe<PokemonQuery>;
|
|
92435
93216
|
pokemonTrainers?: Maybe<PokemonTrainersQuery>;
|
|
@@ -92546,6 +93327,7 @@ export declare type Query = {
|
|
|
92546
93327
|
stakeholderComms_getStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
92547
93328
|
stakeholderComms_getStakeholderGroupByMembership?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroup>>>;
|
|
92548
93329
|
stakeholderComms_getStakeholderGroupWithMemberships?: Maybe<StakeholderCommsStakeholderGroupsAndMemberships>;
|
|
93330
|
+
stakeholderComms_getStakeholderGroupsByName?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroup>>>;
|
|
92549
93331
|
stakeholderComms_getStakeholderGroupsWithMemberships?: Maybe<StakeholderCommsStakeholderGroupConnection>;
|
|
92550
93332
|
stakeholderComms_getStakeholderGroupsWithStakeholders?: Maybe<StakeholderCommsStakeholderGroupAndStakeholdersConnection>;
|
|
92551
93333
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
@@ -92997,6 +93779,7 @@ export declare type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
|
92997
93779
|
cloudId: Scalars['ID']['input'];
|
|
92998
93780
|
objectId: Scalars['ID']['input'];
|
|
92999
93781
|
pageInfo?: InputMaybe<AssetsDmObjectsListPageInfoInput>;
|
|
93782
|
+
searchGroups?: Array<AssetsDmObjectsListSearchGroup>;
|
|
93000
93783
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
93001
93784
|
workspaceId: Scalars['ID']['input'];
|
|
93002
93785
|
};
|
|
@@ -93019,6 +93802,9 @@ export declare type QueryAssetsDm_RawDataArgs = {
|
|
|
93019
93802
|
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
93020
93803
|
workspaceId: Scalars['ID']['input'];
|
|
93021
93804
|
};
|
|
93805
|
+
export declare type QueryAssetsDm_SavedSearchesListArgs = {
|
|
93806
|
+
args: AssetsDmSavedSearchesListInput;
|
|
93807
|
+
};
|
|
93022
93808
|
export declare type QueryAssetsDm_TransformedDataArgs = {
|
|
93023
93809
|
cloudId: Scalars['ID']['input'];
|
|
93024
93810
|
dataSourceId: Scalars['ID']['input'];
|
|
@@ -93356,6 +94142,9 @@ export declare type QueryConfluence_HasDivergedFromDefaultSpacePermissionsArgs =
|
|
|
93356
94142
|
cloudId: Scalars['ID']['input'];
|
|
93357
94143
|
spaceKey: Scalars['String']['input'];
|
|
93358
94144
|
};
|
|
94145
|
+
export declare type QueryConfluence_ImportsAllArgs = {
|
|
94146
|
+
cloudID: Scalars['ID']['input'];
|
|
94147
|
+
};
|
|
93359
94148
|
export declare type QueryConfluence_IsPrivacyModeEnabledArgs = {
|
|
93360
94149
|
cloudId: Scalars['ID']['input'];
|
|
93361
94150
|
};
|
|
@@ -94818,6 +95607,15 @@ export declare type QueryPlaybook_JiraPlaybookStepUsageForProjectArgs = {
|
|
|
94818
95607
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
94819
95608
|
projectKey: Scalars['String']['input'];
|
|
94820
95609
|
};
|
|
95610
|
+
export declare type QueryPlaybook_JiraPlaybookTemplateArgs = {
|
|
95611
|
+
cloudId: Scalars['ID']['input'];
|
|
95612
|
+
scopeId: Scalars['String']['input'];
|
|
95613
|
+
templateId: Scalars['String']['input'];
|
|
95614
|
+
};
|
|
95615
|
+
export declare type QueryPlaybook_JiraPlaybookTemplateCategoriesArgs = {
|
|
95616
|
+
cloudId: Scalars['ID']['input'];
|
|
95617
|
+
scopeId: Scalars['String']['input'];
|
|
95618
|
+
};
|
|
94821
95619
|
export declare type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
94822
95620
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
94823
95621
|
cloudId: Scalars['ID']['input'];
|
|
@@ -95284,6 +96082,9 @@ export declare type QueryStakeholderComms_GetStakeholderGroupByMembershipArgs =
|
|
|
95284
96082
|
export declare type QueryStakeholderComms_GetStakeholderGroupWithMembershipsArgs = {
|
|
95285
96083
|
id: Scalars['String']['input'];
|
|
95286
96084
|
};
|
|
96085
|
+
export declare type QueryStakeholderComms_GetStakeholderGroupsByNameArgs = {
|
|
96086
|
+
name: Scalars['String']['input'];
|
|
96087
|
+
};
|
|
95287
96088
|
export declare type QueryStakeholderComms_GetStakeholderGroupsWithMembershipsArgs = {
|
|
95288
96089
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95289
96090
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -102098,6 +102899,21 @@ export declare enum StakeholderCommsAssignmentType {
|
|
|
102098
102899
|
Services = "SERVICES",
|
|
102099
102900
|
Site = "SITE"
|
|
102100
102901
|
}
|
|
102902
|
+
export declare type StakeholderCommsBatchComponentProcessError = {
|
|
102903
|
+
__typename?: 'StakeholderCommsBatchComponentProcessError';
|
|
102904
|
+
errorType?: Maybe<StakeholderCommsErrorType>;
|
|
102905
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
102906
|
+
};
|
|
102907
|
+
export declare type StakeholderCommsBatchComponentProcessRequest = {
|
|
102908
|
+
createUpdateComponents?: InputMaybe<Array<InputMaybe<StakeholderCommsNestedDraftComponentInput>>>;
|
|
102909
|
+
deleteComponents?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
102910
|
+
pageId?: InputMaybe<Scalars['String']['input']>;
|
|
102911
|
+
};
|
|
102912
|
+
export declare type StakeholderCommsBatchComponentProcessResponse = {
|
|
102913
|
+
__typename?: 'StakeholderCommsBatchComponentProcessResponse';
|
|
102914
|
+
components?: Maybe<Array<Maybe<StakeholderCommsNestedComponent>>>;
|
|
102915
|
+
error?: Maybe<StakeholderCommsBatchComponentProcessError>;
|
|
102916
|
+
};
|
|
102101
102917
|
export declare type StakeholderCommsBodyConfigInput = {
|
|
102102
102918
|
componentStyle?: InputMaybe<StakeholderCommsComponentStyle>;
|
|
102103
102919
|
componentUptimeDisplay?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -102119,6 +102935,16 @@ export declare type StakeholderCommsBodyConfigType = {
|
|
|
102119
102935
|
overallUptimeRange?: Maybe<Scalars['Int']['output']>;
|
|
102120
102936
|
uptimeStyle?: Maybe<StakeholderCommsUptimeStyle>;
|
|
102121
102937
|
};
|
|
102938
|
+
export declare type StakeholderCommsBulkStakeholderResponse = {
|
|
102939
|
+
__typename?: 'StakeholderCommsBulkStakeholderResponse';
|
|
102940
|
+
errors?: Maybe<Array<StakeholderCommsStakeholderError>>;
|
|
102941
|
+
failureCount: Scalars['Int']['output'];
|
|
102942
|
+
message: Scalars['String']['output'];
|
|
102943
|
+
success: Scalars['Boolean']['output'];
|
|
102944
|
+
successCount: Scalars['Int']['output'];
|
|
102945
|
+
successfulIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
102946
|
+
totalCount: Scalars['Int']['output'];
|
|
102947
|
+
};
|
|
102122
102948
|
export declare type StakeholderCommsColoursInput = {
|
|
102123
102949
|
cssBlueColor?: InputMaybe<Scalars['String']['input']>;
|
|
102124
102950
|
cssBodyBackgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -102148,10 +102974,21 @@ export declare type StakeholderCommsColoursType = {
|
|
|
102148
102974
|
cssRedColor?: Maybe<Scalars['String']['output']>;
|
|
102149
102975
|
cssYellowColor?: Maybe<Scalars['String']['output']>;
|
|
102150
102976
|
};
|
|
102977
|
+
export declare enum StakeholderCommsComponentStatus {
|
|
102978
|
+
DegradedPerformance = "DEGRADED_PERFORMANCE",
|
|
102979
|
+
MajorOutage = "MAJOR_OUTAGE",
|
|
102980
|
+
Operational = "OPERATIONAL",
|
|
102981
|
+
PartialOutage = "PARTIAL_OUTAGE",
|
|
102982
|
+
UnderMaintenance = "UNDER_MAINTENANCE"
|
|
102983
|
+
}
|
|
102151
102984
|
export declare enum StakeholderCommsComponentStyle {
|
|
102152
102985
|
Card = "CARD",
|
|
102153
102986
|
Table = "TABLE"
|
|
102154
102987
|
}
|
|
102988
|
+
export declare enum StakeholderCommsComponentType {
|
|
102989
|
+
Component = "COMPONENT",
|
|
102990
|
+
GroupComponent = "GROUP_COMPONENT"
|
|
102991
|
+
}
|
|
102155
102992
|
export declare type StakeholderCommsCreatePageInputType = {
|
|
102156
102993
|
activityScore?: InputMaybe<Scalars['Int']['input']>;
|
|
102157
102994
|
allowPageSubscribers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -102209,6 +103046,10 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
102209
103046
|
stakeholderType: StakeholderCommsStakeholderType;
|
|
102210
103047
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
102211
103048
|
};
|
|
103049
|
+
export declare enum StakeholderCommsErrorType {
|
|
103050
|
+
SystemError = "SYSTEM_ERROR",
|
|
103051
|
+
ValidationError = "VALIDATION_ERROR"
|
|
103052
|
+
}
|
|
102212
103053
|
export declare type StakeholderCommsFooterDataInput = {
|
|
102213
103054
|
copyrightText?: InputMaybe<Scalars['String']['input']>;
|
|
102214
103055
|
footerLogoId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -102263,6 +103104,29 @@ export declare type StakeholderCommsModePreference = {
|
|
|
102263
103104
|
export declare type StakeholderCommsModePreferenceInput = {
|
|
102264
103105
|
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102265
103106
|
};
|
|
103107
|
+
export declare type StakeholderCommsNestedComponent = {
|
|
103108
|
+
__typename?: 'StakeholderCommsNestedComponent';
|
|
103109
|
+
components?: Maybe<Array<Maybe<StakeholderCommsNestedComponent>>>;
|
|
103110
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
103111
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
103112
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
103113
|
+
pageId?: Maybe<Scalars['String']['output']>;
|
|
103114
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
103115
|
+
serviceId?: Maybe<Scalars['String']['output']>;
|
|
103116
|
+
status?: Maybe<StakeholderCommsComponentStatus>;
|
|
103117
|
+
type?: Maybe<StakeholderCommsComponentType>;
|
|
103118
|
+
};
|
|
103119
|
+
export declare type StakeholderCommsNestedDraftComponentInput = {
|
|
103120
|
+
components?: InputMaybe<Array<InputMaybe<StakeholderCommsNestedDraftComponentInput>>>;
|
|
103121
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
103122
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
103123
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
103124
|
+
pageId: Scalars['String']['input'];
|
|
103125
|
+
position?: InputMaybe<Scalars['Int']['input']>;
|
|
103126
|
+
serviceId?: InputMaybe<Scalars['String']['input']>;
|
|
103127
|
+
status?: InputMaybe<StakeholderCommsComponentStatus>;
|
|
103128
|
+
type: StakeholderCommsComponentType;
|
|
103129
|
+
};
|
|
102266
103130
|
export declare type StakeholderCommsNotificationPreference = {
|
|
102267
103131
|
__typename?: 'StakeholderCommsNotificationPreference';
|
|
102268
103132
|
emailId?: Maybe<Scalars['String']['output']>;
|
|
@@ -102438,6 +103302,11 @@ export declare type StakeholderCommsStakeholderEdge = {
|
|
|
102438
103302
|
cursor: Scalars['String']['output'];
|
|
102439
103303
|
node: StakeholderCommsStakeholder;
|
|
102440
103304
|
};
|
|
103305
|
+
export declare type StakeholderCommsStakeholderError = {
|
|
103306
|
+
__typename?: 'StakeholderCommsStakeholderError';
|
|
103307
|
+
error: Scalars['String']['output'];
|
|
103308
|
+
stakeholderId: Scalars['String']['output'];
|
|
103309
|
+
};
|
|
102441
103310
|
export declare type StakeholderCommsStakeholderGroup = {
|
|
102442
103311
|
__typename?: 'StakeholderCommsStakeholderGroup';
|
|
102443
103312
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -105135,6 +106004,11 @@ export declare type TownsquareProjectDescription = {
|
|
|
105135
106004
|
what?: Maybe<Scalars['String']['output']>;
|
|
105136
106005
|
why?: Maybe<Scalars['String']['output']>;
|
|
105137
106006
|
};
|
|
106007
|
+
export declare type TownsquareProjectDescriptionInput = {
|
|
106008
|
+
measurement?: InputMaybe<Scalars['String']['input']>;
|
|
106009
|
+
what?: InputMaybe<Scalars['String']['input']>;
|
|
106010
|
+
why?: InputMaybe<Scalars['String']['input']>;
|
|
106011
|
+
};
|
|
105138
106012
|
export declare type TownsquareProjectEdge = {
|
|
105139
106013
|
__typename?: 'TownsquareProjectEdge';
|
|
105140
106014
|
cursor: Scalars['String']['output'];
|
|
@@ -105363,6 +106237,7 @@ export declare type TownsquareProjectsDeleteLinkPayload = {
|
|
|
105363
106237
|
};
|
|
105364
106238
|
export declare type TownsquareProjectsEditInput = {
|
|
105365
106239
|
archived?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106240
|
+
description?: InputMaybe<TownsquareProjectDescriptionInput>;
|
|
105366
106241
|
icon?: InputMaybe<TownsquareIconInput>;
|
|
105367
106242
|
id: Scalars['ID']['input'];
|
|
105368
106243
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -109968,6 +110843,7 @@ export declare type UnifiedGamification = UnifiedINode & {
|
|
|
109968
110843
|
badges?: Maybe<UnifiedUGamificationBadgesResult>;
|
|
109969
110844
|
id: Scalars['ID']['output'];
|
|
109970
110845
|
levels?: Maybe<UnifiedUGamificationLevelsResult>;
|
|
110846
|
+
recognitionSchedule?: Maybe<UnifiedUGamificationRecognitionScheduleResult>;
|
|
109971
110847
|
recognitionsSummary?: Maybe<UnifiedUGamificationRecognitionsSummaryResult>;
|
|
109972
110848
|
};
|
|
109973
110849
|
export declare type UnifiedGamificationBadgesArgs = {
|
|
@@ -110025,6 +110901,21 @@ export declare type UnifiedGamificationProfile = {
|
|
|
110025
110901
|
firstName?: Maybe<Scalars['String']['output']>;
|
|
110026
110902
|
userId?: Maybe<Scalars['String']['output']>;
|
|
110027
110903
|
};
|
|
110904
|
+
export declare type UnifiedGamificationRecognitionSchedule = UnifiedINode & {
|
|
110905
|
+
__typename?: 'UnifiedGamificationRecognitionSchedule';
|
|
110906
|
+
availablePoints: Scalars['Int']['output'];
|
|
110907
|
+
currentTime: Scalars['Float']['output'];
|
|
110908
|
+
id: Scalars['ID']['output'];
|
|
110909
|
+
isStaff: Scalars['Boolean']['output'];
|
|
110910
|
+
nextRefresh: Scalars['Float']['output'];
|
|
110911
|
+
refreshPtsAmount: Scalars['Int']['output'];
|
|
110912
|
+
resetPointsStatus: Scalars['String']['output'];
|
|
110913
|
+
status: Scalars['String']['output'];
|
|
110914
|
+
timeUntilRefresh: Scalars['Float']['output'];
|
|
110915
|
+
userId: Scalars['String']['output'];
|
|
110916
|
+
wasForced: Scalars['Boolean']['output'];
|
|
110917
|
+
wasUpdateNeeded: Scalars['Boolean']['output'];
|
|
110918
|
+
};
|
|
110028
110919
|
export declare type UnifiedGamificationRecognitionsSummary = UnifiedINode & {
|
|
110029
110920
|
__typename?: 'UnifiedGamificationRecognitionsSummary';
|
|
110030
110921
|
id: Scalars['ID']['output'];
|
|
@@ -110443,6 +111334,7 @@ export declare type UnifiedUForumsResult = UnifiedForums | UnifiedQueryError;
|
|
|
110443
111334
|
export declare type UnifiedUForumsSnapshotResult = UnifiedForumsSnapshot | UnifiedQueryError;
|
|
110444
111335
|
export declare type UnifiedUGamificationBadgesResult = UnifiedGamificationBadgesConnection | UnifiedQueryError;
|
|
110445
111336
|
export declare type UnifiedUGamificationLevelsResult = UnifiedGamificationLevel | UnifiedQueryError;
|
|
111337
|
+
export declare type UnifiedUGamificationRecognitionScheduleResult = UnifiedGamificationRecognitionSchedule | UnifiedQueryError;
|
|
110446
111338
|
export declare type UnifiedUGamificationRecognitionsSummaryResult = UnifiedGamificationRecognitionsSummary | UnifiedQueryError;
|
|
110447
111339
|
export declare type UnifiedUGamificationResult = UnifiedGamification | UnifiedQueryError;
|
|
110448
111340
|
export declare type UnifiedUGatingStatusResult = UnifiedAccessStatus | UnifiedQueryError;
|