@forge/cli-shared 5.3.0-next.4 → 5.3.1-next.0
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 +23 -0
- package/out/graphql/graphql-types.d.ts +1162 -39
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +198 -15
- package/package.json +2 -2
|
@@ -580,7 +580,10 @@ export declare enum ApiGroup {
|
|
|
580
580
|
Confluence = "CONFLUENCE",
|
|
581
581
|
ConfluenceAnalytics = "CONFLUENCE_ANALYTICS",
|
|
582
582
|
ConfluenceLegacy = "CONFLUENCE_LEGACY",
|
|
583
|
+
ConfluenceMutations = "CONFLUENCE_MUTATIONS",
|
|
584
|
+
ConfluencePageTree = "CONFLUENCE_PAGE_TREE",
|
|
583
585
|
ConfluenceSmarts = "CONFLUENCE_SMARTS",
|
|
586
|
+
ConfluenceTenant = "CONFLUENCE_TENANT",
|
|
584
587
|
ConfluenceUser = "CONFLUENCE_USER",
|
|
585
588
|
ConfluenceV2 = "CONFLUENCE_V2",
|
|
586
589
|
ContentPlatformApi = "CONTENT_PLATFORM_API",
|
|
@@ -1425,6 +1428,10 @@ export declare type AquaNotificationDetails = {
|
|
|
1425
1428
|
mailboxMessage?: Maybe<Scalars['String']['output']>;
|
|
1426
1429
|
suppressionManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
1427
1430
|
};
|
|
1431
|
+
export declare type AquaNotificationLogsFilter = {
|
|
1432
|
+
filterActionable?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1433
|
+
selectedFilters?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
1434
|
+
};
|
|
1428
1435
|
export declare type AquaOutgoingEmailLog = Node & {
|
|
1429
1436
|
__typename?: 'AquaOutgoingEmailLog';
|
|
1430
1437
|
id: Scalars['ID']['output'];
|
|
@@ -1464,7 +1471,7 @@ export declare type AquaOutgoingEmailLogsQueryApi = {
|
|
|
1464
1471
|
GetNotificationLogs?: Maybe<AquaOutgoingEmailLogsQueryResult>;
|
|
1465
1472
|
};
|
|
1466
1473
|
export declare type AquaOutgoingEmailLogsQueryApiGetNotificationLogsArgs = {
|
|
1467
|
-
|
|
1474
|
+
filters?: InputMaybe<AquaNotificationLogsFilter>;
|
|
1468
1475
|
fromTimestamp?: InputMaybe<Scalars['DateTime']['input']>;
|
|
1469
1476
|
notificationActionType?: InputMaybe<Scalars['String']['input']>;
|
|
1470
1477
|
notificationType?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2891,6 +2898,7 @@ export declare type CommerceEntitlementExperienceCapabilitiesChangeOfferingV2Arg
|
|
|
2891
2898
|
export declare type CommerceEntitlementFilter = {
|
|
2892
2899
|
AND?: InputMaybe<Array<InputMaybe<CommerceEntitlementFilter>>>;
|
|
2893
2900
|
OR?: InputMaybe<Array<InputMaybe<CommerceEntitlementFilter>>>;
|
|
2901
|
+
inPreDunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2894
2902
|
inTrialOrPreDunning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2895
2903
|
};
|
|
2896
2904
|
export declare type CommerceEntitlementInfo = {
|
|
@@ -4067,16 +4075,19 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
4067
4075
|
booleanComparator: CompassCriteriaBooleanComparatorOptions;
|
|
4068
4076
|
booleanComparatorValue: Scalars['Boolean']['input'];
|
|
4069
4077
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4078
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4070
4079
|
weight: Scalars['Int']['input'];
|
|
4071
4080
|
};
|
|
4072
4081
|
export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput = {
|
|
4073
4082
|
collectionComparator: CompassCriteriaCollectionComparatorOptions;
|
|
4074
4083
|
collectionComparatorValue: Array<Scalars['ID']['input']>;
|
|
4075
4084
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4085
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4076
4086
|
weight: Scalars['Int']['input'];
|
|
4077
4087
|
};
|
|
4078
4088
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
4079
4089
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4090
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4080
4091
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
4081
4092
|
numberComparatorValue: Scalars['Float']['input'];
|
|
4082
4093
|
weight: Scalars['Int']['input'];
|
|
@@ -4085,10 +4096,12 @@ export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
4085
4096
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4086
4097
|
membershipComparator: CompassCriteriaMembershipComparatorOptions;
|
|
4087
4098
|
membershipComparatorValue: Array<Scalars['ID']['input']>;
|
|
4099
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4088
4100
|
weight: Scalars['Int']['input'];
|
|
4089
4101
|
};
|
|
4090
4102
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
4091
4103
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
4104
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4092
4105
|
weight: Scalars['Int']['input'];
|
|
4093
4106
|
};
|
|
4094
4107
|
export declare type CompassCreateIncidentEventInput = {
|
|
@@ -4338,6 +4351,7 @@ export declare type CompassCustomFieldInput = {
|
|
|
4338
4351
|
};
|
|
4339
4352
|
export declare type CompassCustomFieldScorecardCriteria = {
|
|
4340
4353
|
id: Scalars['ID']['output'];
|
|
4354
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4341
4355
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4342
4356
|
weight: Scalars['Int']['output'];
|
|
4343
4357
|
};
|
|
@@ -4808,6 +4822,7 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCusto
|
|
|
4808
4822
|
booleanComparatorValue?: Maybe<Scalars['Boolean']['output']>;
|
|
4809
4823
|
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
4810
4824
|
id: Scalars['ID']['output'];
|
|
4825
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4811
4826
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4812
4827
|
weight: Scalars['Int']['output'];
|
|
4813
4828
|
};
|
|
@@ -4821,6 +4836,7 @@ export declare type CompassHasCustomMultiSelectFieldScorecardCriteria = CompassC
|
|
|
4821
4836
|
customFieldDefinition?: Maybe<CompassCustomMultiSelectFieldDefinition>;
|
|
4822
4837
|
customFieldDefinitionId: Scalars['ID']['output'];
|
|
4823
4838
|
id: Scalars['ID']['output'];
|
|
4839
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4824
4840
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4825
4841
|
weight: Scalars['Int']['output'];
|
|
4826
4842
|
};
|
|
@@ -4831,6 +4847,7 @@ export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassCustom
|
|
|
4831
4847
|
__typename?: 'CompassHasCustomNumberFieldScorecardCriteria';
|
|
4832
4848
|
customFieldDefinition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
4833
4849
|
id: Scalars['ID']['output'];
|
|
4850
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4834
4851
|
numberComparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
4835
4852
|
numberComparatorValue?: Maybe<Scalars['Float']['output']>;
|
|
4836
4853
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
@@ -4846,6 +4863,7 @@ export declare type CompassHasCustomSingleSelectFieldScorecardCriteria = Compass
|
|
|
4846
4863
|
id: Scalars['ID']['output'];
|
|
4847
4864
|
membershipComparator?: Maybe<CompassCriteriaMembershipComparatorOptions>;
|
|
4848
4865
|
membershipComparatorValue: Array<Scalars['ID']['output']>;
|
|
4866
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4849
4867
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4850
4868
|
weight: Scalars['Int']['output'];
|
|
4851
4869
|
};
|
|
@@ -4856,6 +4874,7 @@ export declare type CompassHasCustomTextFieldScorecardCriteria = CompassCustomFi
|
|
|
4856
4874
|
__typename?: 'CompassHasCustomTextFieldScorecardCriteria';
|
|
4857
4875
|
customFieldDefinition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
4858
4876
|
id: Scalars['ID']['output'];
|
|
4877
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4859
4878
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4860
4879
|
weight: Scalars['Int']['output'];
|
|
4861
4880
|
};
|
|
@@ -4865,6 +4884,7 @@ export declare type CompassHasCustomTextFieldScorecardCriteriaScorecardCriteriaS
|
|
|
4865
4884
|
export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCriteria & {
|
|
4866
4885
|
__typename?: 'CompassHasDescriptionScorecardCriteria';
|
|
4867
4886
|
id: Scalars['ID']['output'];
|
|
4887
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4868
4888
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4869
4889
|
weight: Scalars['Int']['output'];
|
|
4870
4890
|
};
|
|
@@ -4875,6 +4895,7 @@ export declare type CompassHasFieldScorecardCriteria = CompassScorecardCriteria
|
|
|
4875
4895
|
__typename?: 'CompassHasFieldScorecardCriteria';
|
|
4876
4896
|
fieldDefinition: CompassFieldDefinition;
|
|
4877
4897
|
id: Scalars['ID']['output'];
|
|
4898
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4878
4899
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4879
4900
|
weight: Scalars['Int']['output'];
|
|
4880
4901
|
};
|
|
@@ -4885,6 +4906,7 @@ export declare type CompassHasLinkScorecardCriteria = CompassScorecardCriteria &
|
|
|
4885
4906
|
__typename?: 'CompassHasLinkScorecardCriteria';
|
|
4886
4907
|
id: Scalars['ID']['output'];
|
|
4887
4908
|
linkType: CompassLinkType;
|
|
4909
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4888
4910
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4889
4911
|
textComparator?: Maybe<CompassCriteriaTextComparatorOptions>;
|
|
4890
4912
|
textComparatorValue?: Maybe<Scalars['String']['output']>;
|
|
@@ -4901,6 +4923,7 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
|
|
|
4901
4923
|
id: Scalars['ID']['output'];
|
|
4902
4924
|
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
4903
4925
|
metricDefinitionId: Scalars['ID']['output'];
|
|
4926
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4904
4927
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4905
4928
|
weight: Scalars['Int']['output'];
|
|
4906
4929
|
};
|
|
@@ -4910,6 +4933,7 @@ export declare type CompassHasMetricValueScorecardCriteriaScorecardCriteriaScore
|
|
|
4910
4933
|
export declare type CompassHasOwnerScorecardCriteria = CompassScorecardCriteria & {
|
|
4911
4934
|
__typename?: 'CompassHasOwnerScorecardCriteria';
|
|
4912
4935
|
id: Scalars['ID']['output'];
|
|
4936
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4913
4937
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4914
4938
|
weight: Scalars['Int']['output'];
|
|
4915
4939
|
};
|
|
@@ -5188,6 +5212,7 @@ export declare type CompassPermissionResult = {
|
|
|
5188
5212
|
__typename?: 'CompassPermissionResult';
|
|
5189
5213
|
allowed: Scalars['Boolean']['output'];
|
|
5190
5214
|
denialReasons: Array<Scalars['String']['output']>;
|
|
5215
|
+
limit?: Maybe<Scalars['Int']['output']>;
|
|
5191
5216
|
};
|
|
5192
5217
|
export declare type CompassPlainMetricSourceConfigurationInput = {
|
|
5193
5218
|
query: Scalars['String']['input'];
|
|
@@ -5507,6 +5532,7 @@ export declare type CompassScorecardConnection = {
|
|
|
5507
5532
|
};
|
|
5508
5533
|
export declare type CompassScorecardCriteria = {
|
|
5509
5534
|
id: Scalars['ID']['output'];
|
|
5535
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5510
5536
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
5511
5537
|
weight: Scalars['Int']['output'];
|
|
5512
5538
|
};
|
|
@@ -6052,6 +6078,7 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
6052
6078
|
booleanComparatorValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6053
6079
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6054
6080
|
id: Scalars['ID']['input'];
|
|
6081
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6055
6082
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6056
6083
|
};
|
|
6057
6084
|
export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput = {
|
|
@@ -6059,11 +6086,13 @@ export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput
|
|
|
6059
6086
|
collectionComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6060
6087
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6061
6088
|
id: Scalars['ID']['input'];
|
|
6089
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6062
6090
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6063
6091
|
};
|
|
6064
6092
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
6065
6093
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6066
6094
|
id: Scalars['ID']['input'];
|
|
6095
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6067
6096
|
numberComparator?: InputMaybe<CompassCriteriaNumberComparatorOptions>;
|
|
6068
6097
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
6069
6098
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -6073,11 +6102,13 @@ export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInpu
|
|
|
6073
6102
|
id: Scalars['ID']['input'];
|
|
6074
6103
|
membershipComparator?: InputMaybe<CompassCriteriaMembershipComparatorOptions>;
|
|
6075
6104
|
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
6105
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6076
6106
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6077
6107
|
};
|
|
6078
6108
|
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
6079
6109
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
6080
6110
|
id: Scalars['ID']['input'];
|
|
6111
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
6081
6112
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
6082
6113
|
};
|
|
6083
6114
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
@@ -6662,6 +6693,14 @@ export declare type ConfluenceLegacy_AddDefaultExCoSpacePermissionsPayload = {
|
|
|
6662
6693
|
errors?: Maybe<Array<MutationError>>;
|
|
6663
6694
|
status: Scalars['Boolean']['output'];
|
|
6664
6695
|
};
|
|
6696
|
+
export declare type ConfluenceLegacy_AddLabelsInput = {
|
|
6697
|
+
contentId: Scalars['ID']['input'];
|
|
6698
|
+
labels: Array<ConfluenceLegacy_LabelInput>;
|
|
6699
|
+
};
|
|
6700
|
+
export declare type ConfluenceLegacy_AddLabelsPayload = {
|
|
6701
|
+
__typename?: 'ConfluenceLegacy_AddLabelsPayload';
|
|
6702
|
+
labels: ConfluenceLegacy_Mutations_PaginatedLabelList;
|
|
6703
|
+
};
|
|
6665
6704
|
export declare type ConfluenceLegacy_AddPublicLinkPermissionsInput = {
|
|
6666
6705
|
objectId: Scalars['ID']['input'];
|
|
6667
6706
|
objectType: ConfluenceLegacy_PublicLinkPermissionsObjectType;
|
|
@@ -6917,6 +6956,16 @@ export declare type ConfluenceLegacy_BlockSmartLink = ConfluenceLegacy_SmartLink
|
|
|
6917
6956
|
__typename?: 'ConfluenceLegacy_BlockSmartLink';
|
|
6918
6957
|
url: Scalars['String']['output'];
|
|
6919
6958
|
};
|
|
6959
|
+
export declare enum ConfluenceLegacy_BodyFormatType {
|
|
6960
|
+
AnonymousExportView = "ANONYMOUS_EXPORT_VIEW",
|
|
6961
|
+
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
6962
|
+
Editor = "EDITOR",
|
|
6963
|
+
Editor2 = "EDITOR2",
|
|
6964
|
+
ExportView = "EXPORT_VIEW",
|
|
6965
|
+
Storage = "STORAGE",
|
|
6966
|
+
StyledView = "STYLED_VIEW",
|
|
6967
|
+
View = "VIEW"
|
|
6968
|
+
}
|
|
6920
6969
|
export declare type ConfluenceLegacy_BordersAndDividersLookAndFeel = {
|
|
6921
6970
|
__typename?: 'ConfluenceLegacy_BordersAndDividersLookAndFeel';
|
|
6922
6971
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -7379,7 +7428,9 @@ export declare type ConfluenceLegacy_ContentAnalyticsPageViewInfo = {
|
|
|
7379
7428
|
lastVersionViewed: Scalars['Int']['output'];
|
|
7380
7429
|
lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
|
|
7381
7430
|
lastViewedAt: Scalars['String']['output'];
|
|
7431
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
7382
7432
|
userId: Scalars['ID']['output'];
|
|
7433
|
+
userProfile?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
7383
7434
|
views: Scalars['Int']['output'];
|
|
7384
7435
|
};
|
|
7385
7436
|
export declare type ConfluenceLegacy_ContentAnalyticsTotalViewsByPage = {
|
|
@@ -7781,6 +7832,8 @@ export declare type ConfluenceLegacy_CountGroupByUser = {
|
|
|
7781
7832
|
export declare type ConfluenceLegacy_CountGroupByUserItem = {
|
|
7782
7833
|
__typename?: 'ConfluenceLegacy_CountGroupByUserItem';
|
|
7783
7834
|
count: Scalars['Int']['output'];
|
|
7835
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
7836
|
+
userId: Scalars['String']['output'];
|
|
7784
7837
|
};
|
|
7785
7838
|
export declare type ConfluenceLegacy_CqlMetaData = {
|
|
7786
7839
|
__typename?: 'ConfluenceLegacy_CqlMetaData';
|
|
@@ -8060,6 +8113,15 @@ export declare type ConfluenceLegacy_DeleteInlineCommentInput = {
|
|
|
8060
8113
|
commentId: Scalars['ID']['input'];
|
|
8061
8114
|
step?: InputMaybe<ConfluenceLegacy_Step>;
|
|
8062
8115
|
};
|
|
8116
|
+
export declare type ConfluenceLegacy_DeleteLabelInput = {
|
|
8117
|
+
contentId: Scalars['ID']['input'];
|
|
8118
|
+
label: Scalars['String']['input'];
|
|
8119
|
+
};
|
|
8120
|
+
export declare type ConfluenceLegacy_DeleteLabelPayload = {
|
|
8121
|
+
__typename?: 'ConfluenceLegacy_DeleteLabelPayload';
|
|
8122
|
+
contentId: Scalars['ID']['output'];
|
|
8123
|
+
label: Scalars['String']['output'];
|
|
8124
|
+
};
|
|
8063
8125
|
export declare type ConfluenceLegacy_DeletePagesInput = {
|
|
8064
8126
|
areChildrenIncluded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
8065
8127
|
excludedBranchRootPageIDs?: InputMaybe<Array<InputMaybe<Scalars['Long']['input']>>>;
|
|
@@ -8071,6 +8133,19 @@ export declare type ConfluenceLegacy_DeletePagesPayload = {
|
|
|
8071
8133
|
status: Scalars['Boolean']['output'];
|
|
8072
8134
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
8073
8135
|
};
|
|
8136
|
+
export declare type ConfluenceLegacy_DeleteRelationInput = {
|
|
8137
|
+
relationName: ConfluenceLegacy_RelationType;
|
|
8138
|
+
sourceKey: Scalars['String']['input'];
|
|
8139
|
+
sourceType: ConfluenceLegacy_RelationSourceType;
|
|
8140
|
+
targetKey: Scalars['String']['input'];
|
|
8141
|
+
targetType: ConfluenceLegacy_RelationTargetType;
|
|
8142
|
+
};
|
|
8143
|
+
export declare type ConfluenceLegacy_DeleteRelationPayload = {
|
|
8144
|
+
__typename?: 'ConfluenceLegacy_DeleteRelationPayload';
|
|
8145
|
+
relationName: Scalars['String']['output'];
|
|
8146
|
+
sourceKey: Scalars['String']['output'];
|
|
8147
|
+
targetKey: Scalars['String']['output'];
|
|
8148
|
+
};
|
|
8074
8149
|
export declare type ConfluenceLegacy_DeleteSpaceDefaultClassificationLevelInput = {
|
|
8075
8150
|
id: Scalars['Long']['input'];
|
|
8076
8151
|
};
|
|
@@ -8297,6 +8372,16 @@ export declare type ConfluenceLegacy_EntityTimeseriesCountItem = {
|
|
|
8297
8372
|
count: Scalars['Int']['output'];
|
|
8298
8373
|
date: Scalars['String']['output'];
|
|
8299
8374
|
};
|
|
8375
|
+
export declare enum ConfluenceLegacy_Environment {
|
|
8376
|
+
Development = "DEVELOPMENT",
|
|
8377
|
+
Production = "PRODUCTION",
|
|
8378
|
+
Staging = "STAGING"
|
|
8379
|
+
}
|
|
8380
|
+
export declare type ConfluenceLegacy_Error = {
|
|
8381
|
+
__typename?: 'ConfluenceLegacy_Error';
|
|
8382
|
+
message: Scalars['String']['output'];
|
|
8383
|
+
status: Scalars['Int']['output'];
|
|
8384
|
+
};
|
|
8300
8385
|
export declare type ConfluenceLegacy_ExternalCollaboratorDefaultSpace = {
|
|
8301
8386
|
__typename?: 'ConfluenceLegacy_ExternalCollaboratorDefaultSpace';
|
|
8302
8387
|
enabled: Scalars['Boolean']['output'];
|
|
@@ -8829,6 +8914,10 @@ export declare type ConfluenceLegacy_LabelEdge = {
|
|
|
8829
8914
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
8830
8915
|
node?: Maybe<ConfluenceLegacy_Label>;
|
|
8831
8916
|
};
|
|
8917
|
+
export declare type ConfluenceLegacy_LabelInput = {
|
|
8918
|
+
name: Scalars['String']['input'];
|
|
8919
|
+
prefix: Scalars['String']['input'];
|
|
8920
|
+
};
|
|
8832
8921
|
export declare type ConfluenceLegacy_LabelSearchResults = {
|
|
8833
8922
|
__typename?: 'ConfluenceLegacy_LabelSearchResults';
|
|
8834
8923
|
otherLabels: Array<Maybe<ConfluenceLegacy_Label>>;
|
|
@@ -9058,12 +9147,32 @@ export declare type ConfluenceLegacy_MediaAccessTokens = {
|
|
|
9058
9147
|
readOnlyToken?: Maybe<ConfluenceLegacy_MediaToken>;
|
|
9059
9148
|
readWriteToken?: Maybe<ConfluenceLegacy_MediaToken>;
|
|
9060
9149
|
};
|
|
9150
|
+
export declare type ConfluenceLegacy_MediaAttachment = {
|
|
9151
|
+
__typename?: 'ConfluenceLegacy_MediaAttachment';
|
|
9152
|
+
html: Scalars['String']['output'];
|
|
9153
|
+
id: Scalars['ID']['output'];
|
|
9154
|
+
};
|
|
9155
|
+
export declare type ConfluenceLegacy_MediaAttachmentError = {
|
|
9156
|
+
__typename?: 'ConfluenceLegacy_MediaAttachmentError';
|
|
9157
|
+
error: ConfluenceLegacy_Error;
|
|
9158
|
+
};
|
|
9159
|
+
export declare type ConfluenceLegacy_MediaAttachmentInput = {
|
|
9160
|
+
file: ConfluenceLegacy_MediaFile;
|
|
9161
|
+
minorEdit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9162
|
+
};
|
|
9163
|
+
export declare type ConfluenceLegacy_MediaAttachmentOrError = ConfluenceLegacy_MediaAttachment | ConfluenceLegacy_MediaAttachmentError;
|
|
9061
9164
|
export declare type ConfluenceLegacy_MediaConfiguration = {
|
|
9062
9165
|
__typename?: 'ConfluenceLegacy_MediaConfiguration';
|
|
9063
9166
|
clientId: Scalars['String']['output'];
|
|
9064
9167
|
fileStoreUrl: Scalars['String']['output'];
|
|
9065
9168
|
maxFileSize?: Maybe<Scalars['Long']['output']>;
|
|
9066
9169
|
};
|
|
9170
|
+
export declare type ConfluenceLegacy_MediaFile = {
|
|
9171
|
+
id: Scalars['ID']['input'];
|
|
9172
|
+
mimeType?: InputMaybe<Scalars['String']['input']>;
|
|
9173
|
+
name: Scalars['String']['input'];
|
|
9174
|
+
size: Scalars['Int']['input'];
|
|
9175
|
+
};
|
|
9067
9176
|
export declare type ConfluenceLegacy_MediaPickerUserToken = {
|
|
9068
9177
|
__typename?: 'ConfluenceLegacy_MediaPickerUserToken';
|
|
9069
9178
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -9112,10 +9221,57 @@ export declare type ConfluenceLegacy_MoveBlogPayload = {
|
|
|
9112
9221
|
__typename?: 'ConfluenceLegacy_MoveBlogPayload';
|
|
9113
9222
|
content?: Maybe<ConfluenceLegacy_Content>;
|
|
9114
9223
|
};
|
|
9224
|
+
export declare type ConfluenceLegacy_MovePageAsChildInput = {
|
|
9225
|
+
pageId: Scalars['ID']['input'];
|
|
9226
|
+
parentId: Scalars['ID']['input'];
|
|
9227
|
+
};
|
|
9228
|
+
export declare type ConfluenceLegacy_MovePageAsSiblingInput = {
|
|
9229
|
+
pageId: Scalars['ID']['input'];
|
|
9230
|
+
siblingId: Scalars['ID']['input'];
|
|
9231
|
+
};
|
|
9232
|
+
export declare type ConfluenceLegacy_MovePagePayload = {
|
|
9233
|
+
__typename?: 'ConfluenceLegacy_MovePagePayload';
|
|
9234
|
+
content?: Maybe<ConfluenceLegacy_Content>;
|
|
9235
|
+
movedPage: Scalars['ID']['output'];
|
|
9236
|
+
page?: Maybe<ConfluenceLegacy_Page>;
|
|
9237
|
+
};
|
|
9238
|
+
export declare type ConfluenceLegacy_MovePageTopLevelInput = {
|
|
9239
|
+
pageId: Scalars['ID']['input'];
|
|
9240
|
+
targetSpaceKey: Scalars['String']['input'];
|
|
9241
|
+
};
|
|
9115
9242
|
export declare type ConfluenceLegacy_MutationResponse = {
|
|
9116
9243
|
__typename?: 'ConfluenceLegacy_MutationResponse';
|
|
9117
9244
|
success: Scalars['Boolean']['output'];
|
|
9118
9245
|
};
|
|
9246
|
+
export declare type ConfluenceLegacy_Mutations_CloudId = {
|
|
9247
|
+
__typename?: 'ConfluenceLegacy_Mutations_CloudId';
|
|
9248
|
+
cloudId: Scalars['ID']['output'];
|
|
9249
|
+
};
|
|
9250
|
+
export declare type ConfluenceLegacy_Mutations_Label = {
|
|
9251
|
+
__typename?: 'ConfluenceLegacy_Mutations_Label';
|
|
9252
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
9253
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
9254
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9255
|
+
prefix?: Maybe<Scalars['String']['output']>;
|
|
9256
|
+
};
|
|
9257
|
+
export declare type ConfluenceLegacy_Mutations_LabelEdge = {
|
|
9258
|
+
__typename?: 'ConfluenceLegacy_Mutations_LabelEdge';
|
|
9259
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
9260
|
+
node?: Maybe<ConfluenceLegacy_Mutations_Label>;
|
|
9261
|
+
};
|
|
9262
|
+
export declare type ConfluenceLegacy_Mutations_LinksContextBase = {
|
|
9263
|
+
__typename?: 'ConfluenceLegacy_Mutations_LinksContextBase';
|
|
9264
|
+
base?: Maybe<Scalars['String']['output']>;
|
|
9265
|
+
context?: Maybe<Scalars['String']['output']>;
|
|
9266
|
+
};
|
|
9267
|
+
export declare type ConfluenceLegacy_Mutations_PaginatedLabelList = {
|
|
9268
|
+
__typename?: 'ConfluenceLegacy_Mutations_PaginatedLabelList';
|
|
9269
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
9270
|
+
edges?: Maybe<Array<Maybe<ConfluenceLegacy_Mutations_LabelEdge>>>;
|
|
9271
|
+
links?: Maybe<ConfluenceLegacy_Mutations_LinksContextBase>;
|
|
9272
|
+
nodes?: Maybe<Array<Maybe<ConfluenceLegacy_Mutations_Label>>>;
|
|
9273
|
+
pageInfo?: Maybe<PageInfo>;
|
|
9274
|
+
};
|
|
9119
9275
|
export declare type ConfluenceLegacy_MyVisitedPages = {
|
|
9120
9276
|
__typename?: 'ConfluenceLegacy_MyVisitedPages';
|
|
9121
9277
|
nodes: ConfluenceLegacy_MyVisitedPagesItems;
|
|
@@ -9160,6 +9316,18 @@ export declare type ConfluenceLegacy_NestedPageInput = {
|
|
|
9160
9316
|
isSelected?: InputMaybe<Scalars['Boolean']['input']>;
|
|
9161
9317
|
pageID: Scalars['Long']['input'];
|
|
9162
9318
|
};
|
|
9319
|
+
export declare type ConfluenceLegacy_NewPageInput = {
|
|
9320
|
+
page: ConfluenceLegacy_PageInput;
|
|
9321
|
+
space: ConfluenceLegacy_SpaceInput;
|
|
9322
|
+
};
|
|
9323
|
+
export declare type ConfluenceLegacy_NewPagePayload = {
|
|
9324
|
+
__typename?: 'ConfluenceLegacy_NewPagePayload';
|
|
9325
|
+
content?: Maybe<ConfluenceLegacy_Content>;
|
|
9326
|
+
contentId: Scalars['ID']['output'];
|
|
9327
|
+
page?: Maybe<ConfluenceLegacy_Page>;
|
|
9328
|
+
pageId: Scalars['ID']['output'];
|
|
9329
|
+
restrictions?: Maybe<ConfluenceLegacy_PageRestrictions>;
|
|
9330
|
+
};
|
|
9163
9331
|
export declare type ConfluenceLegacy_NotificationResponsePayload = Payload & {
|
|
9164
9332
|
__typename?: 'ConfluenceLegacy_NotificationResponsePayload';
|
|
9165
9333
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -9209,6 +9377,64 @@ export declare enum ConfluenceLegacy_OutputDeviceType {
|
|
|
9209
9377
|
Email = "EMAIL",
|
|
9210
9378
|
Mobile = "MOBILE"
|
|
9211
9379
|
}
|
|
9380
|
+
export declare enum ConfluenceLegacy_PtGraphQlPageStatus {
|
|
9381
|
+
Current = "CURRENT",
|
|
9382
|
+
Draft = "DRAFT",
|
|
9383
|
+
Historical = "HISTORICAL",
|
|
9384
|
+
Trashed = "TRASHED"
|
|
9385
|
+
}
|
|
9386
|
+
export declare type ConfluenceLegacy_PtPage = {
|
|
9387
|
+
__typename?: 'ConfluenceLegacy_PTPage';
|
|
9388
|
+
ancestors?: Maybe<Array<Maybe<ConfluenceLegacy_PtPage>>>;
|
|
9389
|
+
children?: Maybe<ConfluenceLegacy_PtPaginatedPageList>;
|
|
9390
|
+
content?: Maybe<ConfluenceLegacy_Content>;
|
|
9391
|
+
followingSiblings?: Maybe<ConfluenceLegacy_PtPaginatedPageList>;
|
|
9392
|
+
hasChildren: Scalars['Boolean']['output'];
|
|
9393
|
+
hasInheritedRestrictions: Scalars['Boolean']['output'];
|
|
9394
|
+
hasRestrictions: Scalars['Boolean']['output'];
|
|
9395
|
+
id: Scalars['ID']['output'];
|
|
9396
|
+
nearestAncestors?: Maybe<ConfluenceLegacy_PtPaginatedPageList>;
|
|
9397
|
+
previousSiblings?: Maybe<ConfluenceLegacy_PtPaginatedPageList>;
|
|
9398
|
+
};
|
|
9399
|
+
export declare type ConfluenceLegacy_PtPageChildrenArgs = {
|
|
9400
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9401
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9402
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9403
|
+
};
|
|
9404
|
+
export declare type ConfluenceLegacy_PtPageFollowingSiblingsArgs = {
|
|
9405
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9406
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9407
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9408
|
+
};
|
|
9409
|
+
export declare type ConfluenceLegacy_PtPageNearestAncestorsArgs = {
|
|
9410
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9411
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9412
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9413
|
+
};
|
|
9414
|
+
export declare type ConfluenceLegacy_PtPagePreviousSiblingsArgs = {
|
|
9415
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
9416
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9417
|
+
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
9418
|
+
};
|
|
9419
|
+
export declare type ConfluenceLegacy_PtPageEdge = {
|
|
9420
|
+
__typename?: 'ConfluenceLegacy_PTPageEdge';
|
|
9421
|
+
cursor: Scalars['String']['output'];
|
|
9422
|
+
node?: Maybe<ConfluenceLegacy_PtPage>;
|
|
9423
|
+
};
|
|
9424
|
+
export declare type ConfluenceLegacy_PtPageInfo = {
|
|
9425
|
+
__typename?: 'ConfluenceLegacy_PTPageInfo';
|
|
9426
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
9427
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
9428
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
9429
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
9430
|
+
};
|
|
9431
|
+
export declare type ConfluenceLegacy_PtPaginatedPageList = {
|
|
9432
|
+
__typename?: 'ConfluenceLegacy_PTPaginatedPageList';
|
|
9433
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
9434
|
+
edges?: Maybe<Array<Maybe<ConfluenceLegacy_PtPageEdge>>>;
|
|
9435
|
+
nodes?: Maybe<Array<Maybe<ConfluenceLegacy_PtPage>>>;
|
|
9436
|
+
pageInfo?: Maybe<ConfluenceLegacy_PtPageInfo>;
|
|
9437
|
+
};
|
|
9212
9438
|
export declare type ConfluenceLegacy_Page = {
|
|
9213
9439
|
__typename?: 'ConfluenceLegacy_Page';
|
|
9214
9440
|
ancestors: Array<Maybe<ConfluenceLegacy_Page>>;
|
|
@@ -9285,6 +9511,7 @@ export declare type ConfluenceLegacy_PageActivityEventCreatedComment = Confluenc
|
|
|
9285
9511
|
commentType: ConfluenceLegacy_AnalyticsCommentType;
|
|
9286
9512
|
groupSize: Scalars['Int']['output'];
|
|
9287
9513
|
timestamp: Scalars['String']['output'];
|
|
9514
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
9288
9515
|
};
|
|
9289
9516
|
export declare type ConfluenceLegacy_PageActivityEventCreatedPage = ConfluenceLegacy_PageActivityEvent & {
|
|
9290
9517
|
__typename?: 'ConfluenceLegacy_PageActivityEventCreatedPage';
|
|
@@ -9294,6 +9521,7 @@ export declare type ConfluenceLegacy_PageActivityEventCreatedPage = ConfluenceLe
|
|
|
9294
9521
|
groupSize: Scalars['Int']['output'];
|
|
9295
9522
|
pageVersion: Scalars['Int']['output'];
|
|
9296
9523
|
timestamp: Scalars['String']['output'];
|
|
9524
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
9297
9525
|
};
|
|
9298
9526
|
export declare type ConfluenceLegacy_PageActivityEventUpdatedPage = ConfluenceLegacy_PageActivityEvent & {
|
|
9299
9527
|
__typename?: 'ConfluenceLegacy_PageActivityEventUpdatedPage';
|
|
@@ -9303,6 +9531,7 @@ export declare type ConfluenceLegacy_PageActivityEventUpdatedPage = ConfluenceLe
|
|
|
9303
9531
|
groupSize: Scalars['Int']['output'];
|
|
9304
9532
|
pageVersion: Scalars['Int']['output'];
|
|
9305
9533
|
timestamp: Scalars['String']['output'];
|
|
9534
|
+
user?: Maybe<ConfluenceLegacy_AtlassianUser>;
|
|
9306
9535
|
};
|
|
9307
9536
|
export declare type ConfluenceLegacy_PageActivityPageInfo = {
|
|
9308
9537
|
__typename?: 'ConfluenceLegacy_PageActivityPageInfo';
|
|
@@ -9329,6 +9558,10 @@ export declare type ConfluenceLegacy_PageAnalyticsTimeseriesCountItem = {
|
|
|
9329
9558
|
export declare enum ConfluenceLegacy_PageAnalyticsTimeseriesCountType {
|
|
9330
9559
|
All = "ALL"
|
|
9331
9560
|
}
|
|
9561
|
+
export declare type ConfluenceLegacy_PageBodyInput = {
|
|
9562
|
+
representation?: InputMaybe<ConfluenceLegacy_BodyFormatType>;
|
|
9563
|
+
value: Scalars['String']['input'];
|
|
9564
|
+
};
|
|
9332
9565
|
export declare enum ConfluenceLegacy_PageCardInPageTreeHoverPreference {
|
|
9333
9566
|
NoOptionSelected = "NO_OPTION_SELECTED",
|
|
9334
9567
|
NoShowPagecard = "NO_SHOW_PAGECARD",
|
|
@@ -9344,12 +9577,53 @@ export declare type ConfluenceLegacy_PageEdge = {
|
|
|
9344
9577
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
9345
9578
|
node?: Maybe<ConfluenceLegacy_Page>;
|
|
9346
9579
|
};
|
|
9580
|
+
export declare type ConfluenceLegacy_PageGroupRestriction = {
|
|
9581
|
+
__typename?: 'ConfluenceLegacy_PageGroupRestriction';
|
|
9582
|
+
name: Scalars['String']['output'];
|
|
9583
|
+
};
|
|
9584
|
+
export declare type ConfluenceLegacy_PageGroupRestrictionInput = {
|
|
9585
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
9586
|
+
name: Scalars['String']['input'];
|
|
9587
|
+
};
|
|
9588
|
+
export declare type ConfluenceLegacy_PageInput = {
|
|
9589
|
+
body?: InputMaybe<ConfluenceLegacy_PageBodyInput>;
|
|
9590
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
9591
|
+
restrictions?: InputMaybe<ConfluenceLegacy_PageRestrictionsInput>;
|
|
9592
|
+
status?: InputMaybe<ConfluenceLegacy_PageStatusInput>;
|
|
9593
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
9594
|
+
};
|
|
9595
|
+
export declare type ConfluenceLegacy_PageRestriction = {
|
|
9596
|
+
__typename?: 'ConfluenceLegacy_PageRestriction';
|
|
9597
|
+
group?: Maybe<Array<ConfluenceLegacy_PageGroupRestriction>>;
|
|
9598
|
+
user?: Maybe<Array<ConfluenceLegacy_PageUserRestriction>>;
|
|
9599
|
+
};
|
|
9600
|
+
export declare type ConfluenceLegacy_PageRestrictionInput = {
|
|
9601
|
+
group?: InputMaybe<Array<ConfluenceLegacy_PageGroupRestrictionInput>>;
|
|
9602
|
+
user?: InputMaybe<Array<ConfluenceLegacy_PageUserRestrictionInput>>;
|
|
9603
|
+
};
|
|
9604
|
+
export declare type ConfluenceLegacy_PageRestrictions = {
|
|
9605
|
+
__typename?: 'ConfluenceLegacy_PageRestrictions';
|
|
9606
|
+
read?: Maybe<ConfluenceLegacy_PageRestriction>;
|
|
9607
|
+
update?: Maybe<ConfluenceLegacy_PageRestriction>;
|
|
9608
|
+
};
|
|
9609
|
+
export declare type ConfluenceLegacy_PageRestrictionsInput = {
|
|
9610
|
+
read?: InputMaybe<ConfluenceLegacy_PageRestrictionInput>;
|
|
9611
|
+
update?: InputMaybe<ConfluenceLegacy_PageRestrictionInput>;
|
|
9612
|
+
};
|
|
9347
9613
|
export declare enum ConfluenceLegacy_PageStatus {
|
|
9348
9614
|
Current = "CURRENT",
|
|
9349
9615
|
Draft = "DRAFT",
|
|
9350
9616
|
Historical = "HISTORICAL",
|
|
9351
9617
|
Trashed = "TRASHED"
|
|
9352
9618
|
}
|
|
9619
|
+
export declare enum ConfluenceLegacy_PageStatusInput {
|
|
9620
|
+
Current = "CURRENT",
|
|
9621
|
+
Draft = "DRAFT"
|
|
9622
|
+
}
|
|
9623
|
+
export declare type ConfluenceLegacy_PageTree_CloudId = {
|
|
9624
|
+
__typename?: 'ConfluenceLegacy_PageTree_CloudId';
|
|
9625
|
+
cloudId: Scalars['ID']['output'];
|
|
9626
|
+
};
|
|
9353
9627
|
export declare enum ConfluenceLegacy_PageUpdateTrigger {
|
|
9354
9628
|
CreatePage = "CREATE_PAGE",
|
|
9355
9629
|
DiscardChanges = "DISCARD_CHANGES",
|
|
@@ -9364,6 +9638,13 @@ export declare enum ConfluenceLegacy_PageUpdateTrigger {
|
|
|
9364
9638
|
Unknown = "UNKNOWN",
|
|
9365
9639
|
ViewPage = "VIEW_PAGE"
|
|
9366
9640
|
}
|
|
9641
|
+
export declare type ConfluenceLegacy_PageUserRestriction = {
|
|
9642
|
+
__typename?: 'ConfluenceLegacy_PageUserRestriction';
|
|
9643
|
+
id: Scalars['ID']['output'];
|
|
9644
|
+
};
|
|
9645
|
+
export declare type ConfluenceLegacy_PageUserRestrictionInput = {
|
|
9646
|
+
id: Scalars['ID']['input'];
|
|
9647
|
+
};
|
|
9367
9648
|
export declare type ConfluenceLegacy_PageValidationResult = {
|
|
9368
9649
|
__typename?: 'ConfluenceLegacy_PageValidationResult';
|
|
9369
9650
|
isValid: Scalars['Boolean']['output'];
|
|
@@ -10059,6 +10340,18 @@ export declare type ConfluenceLegacy_RecommendedSpaceItem = {
|
|
|
10059
10340
|
space?: Maybe<ConfluenceLegacy_Space>;
|
|
10060
10341
|
spaceId: Scalars['Long']['output'];
|
|
10061
10342
|
};
|
|
10343
|
+
export declare enum ConfluenceLegacy_RelationSourceType {
|
|
10344
|
+
User = "user"
|
|
10345
|
+
}
|
|
10346
|
+
export declare enum ConfluenceLegacy_RelationTargetType {
|
|
10347
|
+
Content = "content",
|
|
10348
|
+
Space = "space"
|
|
10349
|
+
}
|
|
10350
|
+
export declare enum ConfluenceLegacy_RelationType {
|
|
10351
|
+
Collaborator = "collaborator",
|
|
10352
|
+
Favourite = "favourite",
|
|
10353
|
+
Touched = "touched"
|
|
10354
|
+
}
|
|
10062
10355
|
export declare type ConfluenceLegacy_RelevantFeedFilters = {
|
|
10063
10356
|
__typename?: 'ConfluenceLegacy_RelevantFeedFilters';
|
|
10064
10357
|
relevantFeedSpacesFilter: Array<Maybe<Scalars['Long']['output']>>;
|
|
@@ -10803,6 +11096,9 @@ export declare type ConfluenceLegacy_SpaceHistory = {
|
|
|
10803
11096
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
10804
11097
|
links?: Maybe<ConfluenceLegacy_LinksContextBase>;
|
|
10805
11098
|
};
|
|
11099
|
+
export declare type ConfluenceLegacy_SpaceInput = {
|
|
11100
|
+
key: Scalars['ID']['input'];
|
|
11101
|
+
};
|
|
10806
11102
|
export declare type ConfluenceLegacy_SpaceMetadata = {
|
|
10807
11103
|
__typename?: 'ConfluenceLegacy_SpaceMetadata';
|
|
10808
11104
|
labels?: Maybe<ConfluenceLegacy_PaginatedLabelList>;
|
|
@@ -11339,6 +11635,13 @@ export declare type ConfluenceLegacy_TemplatizeInput = {
|
|
|
11339
11635
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
11340
11636
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
11341
11637
|
};
|
|
11638
|
+
export declare type ConfluenceLegacy_Tenant = {
|
|
11639
|
+
__typename?: 'ConfluenceLegacy_Tenant';
|
|
11640
|
+
activationId?: Maybe<Scalars['String']['output']>;
|
|
11641
|
+
cloudId: Scalars['ID']['output'];
|
|
11642
|
+
environment: ConfluenceLegacy_Environment;
|
|
11643
|
+
shard: Scalars['String']['output'];
|
|
11644
|
+
};
|
|
11342
11645
|
export declare type ConfluenceLegacy_TenantContext = {
|
|
11343
11646
|
__typename?: 'ConfluenceLegacy_TenantContext';
|
|
11344
11647
|
baseUrl: Scalars['String']['output'];
|
|
@@ -11346,6 +11649,10 @@ export declare type ConfluenceLegacy_TenantContext = {
|
|
|
11346
11649
|
initialProductList?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
11347
11650
|
licensedProducts: Array<ConfluenceLegacy_LicensedProduct>;
|
|
11348
11651
|
};
|
|
11652
|
+
export declare type ConfluenceLegacy_Tenant_CloudId = {
|
|
11653
|
+
__typename?: 'ConfluenceLegacy_Tenant_CloudId';
|
|
11654
|
+
cloudId: Scalars['ID']['output'];
|
|
11655
|
+
};
|
|
11349
11656
|
export declare type ConfluenceLegacy_Theme = {
|
|
11350
11657
|
__typename?: 'ConfluenceLegacy_Theme';
|
|
11351
11658
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -11524,6 +11831,20 @@ export declare type ConfluenceLegacy_UpdateOwnerPayload = {
|
|
|
11524
11831
|
__typename?: 'ConfluenceLegacy_UpdateOwnerPayload';
|
|
11525
11832
|
content: ConfluenceLegacy_Content;
|
|
11526
11833
|
};
|
|
11834
|
+
export declare type ConfluenceLegacy_UpdatePageExtensionInput = {
|
|
11835
|
+
key: Scalars['String']['input'];
|
|
11836
|
+
value: Scalars['String']['input'];
|
|
11837
|
+
};
|
|
11838
|
+
export declare type ConfluenceLegacy_UpdatePageInput = {
|
|
11839
|
+
body?: InputMaybe<ConfluenceLegacy_PageBodyInput>;
|
|
11840
|
+
extensions?: InputMaybe<Array<InputMaybe<ConfluenceLegacy_UpdatePageExtensionInput>>>;
|
|
11841
|
+
mediaAttachments?: InputMaybe<Array<ConfluenceLegacy_MediaAttachmentInput>>;
|
|
11842
|
+
minorEdit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11843
|
+
pageId: Scalars['ID']['input'];
|
|
11844
|
+
restrictions?: InputMaybe<ConfluenceLegacy_PageRestrictionsInput>;
|
|
11845
|
+
status?: InputMaybe<ConfluenceLegacy_PageStatusInput>;
|
|
11846
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
11847
|
+
};
|
|
11527
11848
|
export declare type ConfluenceLegacy_UpdatePageOwnersInput = {
|
|
11528
11849
|
ownerId: Scalars['ID']['input'];
|
|
11529
11850
|
pageIDs: Array<InputMaybe<Scalars['Long']['input']>>;
|
|
@@ -11534,6 +11855,14 @@ export declare type ConfluenceLegacy_UpdatePageOwnersPayload = Payload & {
|
|
|
11534
11855
|
success: Scalars['Boolean']['output'];
|
|
11535
11856
|
taskId: Scalars['ID']['output'];
|
|
11536
11857
|
};
|
|
11858
|
+
export declare type ConfluenceLegacy_UpdatePagePayload = {
|
|
11859
|
+
__typename?: 'ConfluenceLegacy_UpdatePagePayload';
|
|
11860
|
+
content?: Maybe<ConfluenceLegacy_Content>;
|
|
11861
|
+
mediaAttached: Array<ConfluenceLegacy_MediaAttachmentOrError>;
|
|
11862
|
+
page?: Maybe<ConfluenceLegacy_Page>;
|
|
11863
|
+
pageId: Scalars['ID']['output'];
|
|
11864
|
+
restrictions?: Maybe<ConfluenceLegacy_PageRestrictions>;
|
|
11865
|
+
};
|
|
11537
11866
|
export declare type ConfluenceLegacy_UpdatePageStatusesInput = {
|
|
11538
11867
|
pages: Array<InputMaybe<ConfluenceLegacy_NestedPageInput>>;
|
|
11539
11868
|
spaceKey: Scalars['String']['input'];
|
|
@@ -11549,6 +11878,24 @@ export declare type ConfluenceLegacy_UpdatePermissionSubjectKeyInput = {
|
|
|
11549
11878
|
permissionDisplayType: ConfluenceLegacy_PermissionDisplayType;
|
|
11550
11879
|
subjectId: Scalars['String']['input'];
|
|
11551
11880
|
};
|
|
11881
|
+
export declare type ConfluenceLegacy_UpdateRelationInput = {
|
|
11882
|
+
relationName: ConfluenceLegacy_RelationType;
|
|
11883
|
+
sourceKey: Scalars['String']['input'];
|
|
11884
|
+
sourceStatus?: InputMaybe<Scalars['String']['input']>;
|
|
11885
|
+
sourceType: ConfluenceLegacy_RelationSourceType;
|
|
11886
|
+
sourceVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
11887
|
+
targetKey: Scalars['String']['input'];
|
|
11888
|
+
targetStatus?: InputMaybe<Scalars['String']['input']>;
|
|
11889
|
+
targetType: ConfluenceLegacy_RelationTargetType;
|
|
11890
|
+
targetVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
11891
|
+
};
|
|
11892
|
+
export declare type ConfluenceLegacy_UpdateRelationPayload = {
|
|
11893
|
+
__typename?: 'ConfluenceLegacy_UpdateRelationPayload';
|
|
11894
|
+
relationName: Scalars['String']['output'];
|
|
11895
|
+
sourceKey: Scalars['String']['output'];
|
|
11896
|
+
targetKey: Scalars['String']['output'];
|
|
11897
|
+
url: Scalars['String']['output'];
|
|
11898
|
+
};
|
|
11552
11899
|
export declare type ConfluenceLegacy_UpdateSiteLookAndFeelInput = {
|
|
11553
11900
|
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
11554
11901
|
faviconFiles: Array<ConfluenceLegacy_FaviconFileInput>;
|
|
@@ -13129,6 +13476,7 @@ export declare type ContentPlatformAnchor = {
|
|
|
13129
13476
|
__typename?: 'ContentPlatformAnchor';
|
|
13130
13477
|
anchorId: Scalars['String']['output'];
|
|
13131
13478
|
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
13479
|
+
banner?: Maybe<Array<ContentPlatformAnchorBanner>>;
|
|
13132
13480
|
callToAction?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
13133
13481
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13134
13482
|
headline?: Maybe<Array<ContentPlatformAnchorHeadline>>;
|
|
@@ -13141,6 +13489,19 @@ export declare type ContentPlatformAnchor = {
|
|
|
13141
13489
|
socialProof?: Maybe<Array<ContentPlatformAnchorSocialProof>>;
|
|
13142
13490
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13143
13491
|
};
|
|
13492
|
+
export declare type ContentPlatformAnchorBanner = {
|
|
13493
|
+
__typename?: 'ContentPlatformAnchorBanner';
|
|
13494
|
+
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
13495
|
+
backgroundImage?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
13496
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13497
|
+
image?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
13498
|
+
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
13499
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
13500
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
13501
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13502
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
13503
|
+
urlText?: Maybe<Scalars['String']['output']>;
|
|
13504
|
+
};
|
|
13144
13505
|
export declare type ContentPlatformAnchorContentSearchConnection = {
|
|
13145
13506
|
__typename?: 'ContentPlatformAnchorContentSearchConnection';
|
|
13146
13507
|
edges: Array<ContentPlatformAnchorResultEdge>;
|
|
@@ -13240,6 +13601,7 @@ export declare type ContentPlatformAuthor = {
|
|
|
13240
13601
|
__typename?: 'ContentPlatformAuthor';
|
|
13241
13602
|
authorPicture?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
13242
13603
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13604
|
+
externalContributor?: Maybe<Scalars['Boolean']['output']>;
|
|
13243
13605
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
13244
13606
|
name: Scalars['String']['output'];
|
|
13245
13607
|
organization?: Maybe<ContentPlatformOrganization>;
|
|
@@ -13308,6 +13670,7 @@ export declare type ContentPlatformContentClause = {
|
|
|
13308
13670
|
and?: InputMaybe<Array<ContentPlatformContentClause>>;
|
|
13309
13671
|
fieldNamed?: InputMaybe<Scalars['String']['input']>;
|
|
13310
13672
|
gte?: InputMaybe<ContentPlatformDateCondition>;
|
|
13673
|
+
hasAnyValue?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13311
13674
|
havingValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
13312
13675
|
lte?: InputMaybe<ContentPlatformDateCondition>;
|
|
13313
13676
|
or?: InputMaybe<Array<ContentPlatformContentClause>>;
|
|
@@ -13921,6 +14284,15 @@ export declare type ContentPlatformTaxonomyRegion = {
|
|
|
13921
14284
|
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
13922
14285
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13923
14286
|
};
|
|
14287
|
+
export declare type ContentPlatformTaxonomyTemplateType = {
|
|
14288
|
+
__typename?: 'ContentPlatformTaxonomyTemplateType';
|
|
14289
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14290
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
14291
|
+
icon?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14292
|
+
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
14293
|
+
templateTypeName?: Maybe<Scalars['String']['output']>;
|
|
14294
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14295
|
+
};
|
|
13924
14296
|
export declare type ContentPlatformTaxonomyUserRole = {
|
|
13925
14297
|
__typename?: 'ContentPlatformTaxonomyUserRole';
|
|
13926
14298
|
description: Scalars['String']['output'];
|
|
@@ -13956,6 +14328,7 @@ export declare type ContentPlatformTemplate = {
|
|
|
13956
14328
|
templateOverview?: Maybe<Array<ContentPlatformTemplateOverview>>;
|
|
13957
14329
|
templatePreview?: Maybe<Array<ContentPlatformTemplateImageAsset>>;
|
|
13958
14330
|
templateProductRationale?: Maybe<Array<ContentPlatformTemplateProductRationale>>;
|
|
14331
|
+
templateType?: Maybe<Array<ContentPlatformTaxonomyTemplateType>>;
|
|
13959
14332
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13960
14333
|
urlSlug?: Maybe<Scalars['String']['output']>;
|
|
13961
14334
|
};
|
|
@@ -14349,14 +14722,17 @@ export declare type CreateCompassFreeformUserDefinedParameterInput = {
|
|
|
14349
14722
|
name: Scalars['String']['input'];
|
|
14350
14723
|
};
|
|
14351
14724
|
export declare type CreateCompassHasDescriptionScorecardCriteriaInput = {
|
|
14725
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
14352
14726
|
weight: Scalars['Int']['input'];
|
|
14353
14727
|
};
|
|
14354
14728
|
export declare type CreateCompassHasFieldScorecardCriteriaInput = {
|
|
14355
14729
|
fieldDefinitionId: Scalars['ID']['input'];
|
|
14730
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
14356
14731
|
weight: Scalars['Int']['input'];
|
|
14357
14732
|
};
|
|
14358
14733
|
export declare type CreateCompassHasLinkScorecardCriteriaInput = {
|
|
14359
14734
|
linkType: CompassLinkType;
|
|
14735
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
14360
14736
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
14361
14737
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
14362
14738
|
weight: Scalars['Int']['input'];
|
|
@@ -14366,9 +14742,11 @@ export declare type CreateCompassHasMetricValueCriteriaInput = {
|
|
|
14366
14742
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
14367
14743
|
comparatorValue: Scalars['Float']['input'];
|
|
14368
14744
|
metricDefinitionId: Scalars['ID']['input'];
|
|
14745
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
14369
14746
|
weight: Scalars['Int']['input'];
|
|
14370
14747
|
};
|
|
14371
14748
|
export declare type CreateCompassHasOwnerScorecardCriteriaInput = {
|
|
14749
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
14372
14750
|
weight: Scalars['Int']['input'];
|
|
14373
14751
|
};
|
|
14374
14752
|
export declare type CreateCompassLinkInput = {
|
|
@@ -18087,6 +18465,7 @@ export declare type EcosystemQueryDataClassificationsArgs = {
|
|
|
18087
18465
|
};
|
|
18088
18466
|
export declare type EcosystemQueryForgeAlertsArgs = {
|
|
18089
18467
|
appId: Scalars['ID']['input'];
|
|
18468
|
+
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
18090
18469
|
};
|
|
18091
18470
|
export declare type EcosystemQueryForgeAuditLogsArgs = {
|
|
18092
18471
|
appId: Scalars['ID']['input'];
|
|
@@ -18371,30 +18750,128 @@ export declare type ForgeAlertsCreateConfigInput = {
|
|
|
18371
18750
|
metricName?: InputMaybe<Scalars['String']['input']>;
|
|
18372
18751
|
triggerValue?: InputMaybe<Scalars['Float']['input']>;
|
|
18373
18752
|
};
|
|
18753
|
+
export declare type ForgeAlertsCreateRuleInput = {
|
|
18754
|
+
conditions: Array<ForgeAlertsRuleConditions>;
|
|
18755
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
18756
|
+
filters?: InputMaybe<Array<ForgeAlertsRuleFilters>>;
|
|
18757
|
+
metric: ForgeAlertsRuleMetricType;
|
|
18758
|
+
name: Scalars['String']['input'];
|
|
18759
|
+
period: Scalars['Int']['input'];
|
|
18760
|
+
responders: Array<Scalars['String']['input']>;
|
|
18761
|
+
runbook?: InputMaybe<Scalars['String']['input']>;
|
|
18762
|
+
tolerance?: InputMaybe<Scalars['Int']['input']>;
|
|
18763
|
+
};
|
|
18764
|
+
export declare type ForgeAlertsCreateRulePayload = Payload & {
|
|
18765
|
+
__typename?: 'ForgeAlertsCreateRulePayload';
|
|
18766
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18767
|
+
success: Scalars['Boolean']['output'];
|
|
18768
|
+
};
|
|
18769
|
+
export declare type ForgeAlertsData = {
|
|
18770
|
+
__typename?: 'ForgeAlertsData';
|
|
18771
|
+
alertId: Scalars['Int']['output'];
|
|
18772
|
+
closedAt?: Maybe<Scalars['String']['output']>;
|
|
18773
|
+
closedBy?: Maybe<Scalars['String']['output']>;
|
|
18774
|
+
createdAt: Scalars['String']['output'];
|
|
18775
|
+
createdBy: Scalars['String']['output'];
|
|
18776
|
+
duration?: Maybe<Scalars['Int']['output']>;
|
|
18777
|
+
id: Scalars['ID']['output'];
|
|
18778
|
+
modifiedAt: Scalars['String']['output'];
|
|
18779
|
+
modifiedBy: Scalars['String']['output'];
|
|
18780
|
+
ruleConditions: Array<ForgeAlertsRuleConditionsResponse>;
|
|
18781
|
+
ruleDescription?: Maybe<Scalars['String']['output']>;
|
|
18782
|
+
ruleFilters?: Maybe<Array<ForgeAlertsRuleFiltersResponse>>;
|
|
18783
|
+
ruleId: Scalars['ID']['output'];
|
|
18784
|
+
ruleMetric: ForgeAlertsRuleMetricType;
|
|
18785
|
+
ruleName: Scalars['String']['output'];
|
|
18786
|
+
rulePeriod: Scalars['Int']['output'];
|
|
18787
|
+
ruleResponders: Array<ForgeAlertsUserInfo>;
|
|
18788
|
+
ruleRunbook?: Maybe<Scalars['String']['output']>;
|
|
18789
|
+
ruleTolerance: Scalars['Int']['output'];
|
|
18790
|
+
severity: ForgeAlertsRuleSeverity;
|
|
18791
|
+
status: ForgeAlertsStatus;
|
|
18792
|
+
};
|
|
18374
18793
|
export declare type ForgeAlertsDeleteAlertConfigsInput = {
|
|
18375
18794
|
appIds: Array<Scalars['ID']['input']>;
|
|
18376
18795
|
};
|
|
18796
|
+
export declare type ForgeAlertsDeleteRuleInput = {
|
|
18797
|
+
ruleId: Scalars['ID']['input'];
|
|
18798
|
+
};
|
|
18799
|
+
export declare type ForgeAlertsDeleteRulePayload = Payload & {
|
|
18800
|
+
__typename?: 'ForgeAlertsDeleteRulePayload';
|
|
18801
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18802
|
+
success: Scalars['Boolean']['output'];
|
|
18803
|
+
};
|
|
18804
|
+
export declare enum ForgeAlertsListOrderByColumns {
|
|
18805
|
+
AlertId = "alert_id",
|
|
18806
|
+
ClosedAt = "closed_at",
|
|
18807
|
+
CreatedAt = "created_at",
|
|
18808
|
+
Duration = "duration",
|
|
18809
|
+
Severity = "severity"
|
|
18810
|
+
}
|
|
18811
|
+
export declare enum ForgeAlertsListOrderOptions {
|
|
18812
|
+
Asc = "ASC",
|
|
18813
|
+
Desc = "DESC"
|
|
18814
|
+
}
|
|
18815
|
+
export declare type ForgeAlertsListQueryInput = {
|
|
18816
|
+
closedAtEndDate?: InputMaybe<Scalars['String']['input']>;
|
|
18817
|
+
closedAtStartDate?: InputMaybe<Scalars['String']['input']>;
|
|
18818
|
+
limit: Scalars['Int']['input'];
|
|
18819
|
+
order: ForgeAlertsListOrderOptions;
|
|
18820
|
+
orderBy: ForgeAlertsListOrderByColumns;
|
|
18821
|
+
page: Scalars['Int']['input'];
|
|
18822
|
+
responders?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
18823
|
+
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
18824
|
+
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
18825
|
+
severities?: InputMaybe<Array<ForgeAlertsRuleSeverity>>;
|
|
18826
|
+
status: ForgeAlertsStatus;
|
|
18827
|
+
};
|
|
18828
|
+
export declare type ForgeAlertsListResult = ForgeAlertsListSuccess | QueryError;
|
|
18829
|
+
export declare type ForgeAlertsListSuccess = {
|
|
18830
|
+
__typename?: 'ForgeAlertsListSuccess';
|
|
18831
|
+
alerts: Array<ForgeAlertsData>;
|
|
18832
|
+
count: Scalars['Int']['output'];
|
|
18833
|
+
};
|
|
18377
18834
|
export declare type ForgeAlertsMutation = {
|
|
18378
18835
|
__typename?: 'ForgeAlertsMutation';
|
|
18379
18836
|
appId: Scalars['ID']['output'];
|
|
18380
18837
|
createAlertConfig?: Maybe<ForgeAlertsCreateAlertPayload>;
|
|
18838
|
+
createRule?: Maybe<ForgeAlertsCreateRulePayload>;
|
|
18381
18839
|
deleteAlertConfigs?: Maybe<Payload>;
|
|
18840
|
+
deleteRule?: Maybe<ForgeAlertsDeleteRulePayload>;
|
|
18382
18841
|
modifyAlertConfig?: Maybe<ForgeAlertsUpdateAlertPayload>;
|
|
18842
|
+
updateRule?: Maybe<ForgeAlertsUpdateRulePayload>;
|
|
18383
18843
|
};
|
|
18384
18844
|
export declare type ForgeAlertsMutationCreateAlertConfigArgs = {
|
|
18385
18845
|
input: ForgeAlertsCreateConfigInput;
|
|
18386
18846
|
};
|
|
18847
|
+
export declare type ForgeAlertsMutationCreateRuleArgs = {
|
|
18848
|
+
input: ForgeAlertsCreateRuleInput;
|
|
18849
|
+
};
|
|
18387
18850
|
export declare type ForgeAlertsMutationDeleteAlertConfigsArgs = {
|
|
18388
18851
|
input: ForgeAlertsDeleteAlertConfigsInput;
|
|
18389
18852
|
};
|
|
18853
|
+
export declare type ForgeAlertsMutationDeleteRuleArgs = {
|
|
18854
|
+
input: ForgeAlertsDeleteRuleInput;
|
|
18855
|
+
};
|
|
18390
18856
|
export declare type ForgeAlertsMutationModifyAlertConfigArgs = {
|
|
18391
18857
|
input: ForgeAlertsUpdateConfigInput;
|
|
18392
18858
|
};
|
|
18859
|
+
export declare type ForgeAlertsMutationUpdateRuleArgs = {
|
|
18860
|
+
input: ForgeAlertsUpdateRuleInput;
|
|
18861
|
+
};
|
|
18393
18862
|
export declare type ForgeAlertsQuery = {
|
|
18394
18863
|
__typename?: 'ForgeAlertsQuery';
|
|
18864
|
+
alert?: Maybe<ForgeAlertsSingleResult>;
|
|
18395
18865
|
alertActivities?: Maybe<ForgeAlertsActivitiesResult>;
|
|
18396
18866
|
alertConfig?: Maybe<ForgeAlertsConfigResult>;
|
|
18867
|
+
alerts?: Maybe<ForgeAlertsListResult>;
|
|
18397
18868
|
appId: Scalars['ID']['output'];
|
|
18869
|
+
rule?: Maybe<ForgeAlertsRuleResult>;
|
|
18870
|
+
ruleId?: Maybe<Scalars['ID']['output']>;
|
|
18871
|
+
rules?: Maybe<ForgeAlertsRulesResult>;
|
|
18872
|
+
};
|
|
18873
|
+
export declare type ForgeAlertsQueryAlertArgs = {
|
|
18874
|
+
query: ForgeAlertsSingleQueryInput;
|
|
18398
18875
|
};
|
|
18399
18876
|
export declare type ForgeAlertsQueryAlertActivitiesArgs = {
|
|
18400
18877
|
input: ForgeAlertsActivitiesQueryInput;
|
|
@@ -18402,8 +18879,106 @@ export declare type ForgeAlertsQueryAlertActivitiesArgs = {
|
|
|
18402
18879
|
export declare type ForgeAlertsQueryAlertConfigArgs = {
|
|
18403
18880
|
input: ForgeAlertsConfigQueryInput;
|
|
18404
18881
|
};
|
|
18882
|
+
export declare type ForgeAlertsQueryAlertsArgs = {
|
|
18883
|
+
query: ForgeAlertsListQueryInput;
|
|
18884
|
+
};
|
|
18885
|
+
export declare type ForgeAlertsRuleConditions = {
|
|
18886
|
+
severity: ForgeAlertsRuleSeverity;
|
|
18887
|
+
threshold: Scalars['String']['input'];
|
|
18888
|
+
when: ForgeAlertsRuleWhenConditions;
|
|
18889
|
+
};
|
|
18890
|
+
export declare type ForgeAlertsRuleConditionsResponse = {
|
|
18891
|
+
__typename?: 'ForgeAlertsRuleConditionsResponse';
|
|
18892
|
+
severity: ForgeAlertsRuleSeverity;
|
|
18893
|
+
threshold: Scalars['String']['output'];
|
|
18894
|
+
when: ForgeAlertsRuleWhenConditions;
|
|
18895
|
+
};
|
|
18896
|
+
export declare type ForgeAlertsRuleData = {
|
|
18897
|
+
__typename?: 'ForgeAlertsRuleData';
|
|
18898
|
+
appId?: Maybe<Scalars['String']['output']>;
|
|
18899
|
+
conditions?: Maybe<Array<ForgeAlertsRuleConditionsResponse>>;
|
|
18900
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
18901
|
+
createdBy: ForgeAlertsUserInfo;
|
|
18902
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
18903
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
18904
|
+
filters?: Maybe<Array<ForgeAlertsRuleFiltersResponse>>;
|
|
18905
|
+
id: Scalars['ID']['output'];
|
|
18906
|
+
jobId?: Maybe<Scalars['String']['output']>;
|
|
18907
|
+
metric?: Maybe<Scalars['String']['output']>;
|
|
18908
|
+
modifiedAt?: Maybe<Scalars['String']['output']>;
|
|
18909
|
+
modifiedBy: ForgeAlertsUserInfo;
|
|
18910
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
18911
|
+
period?: Maybe<Scalars['Int']['output']>;
|
|
18912
|
+
responders: Array<ForgeAlertsUserInfo>;
|
|
18913
|
+
runbook?: Maybe<Scalars['String']['output']>;
|
|
18914
|
+
tolerance?: Maybe<Scalars['Int']['output']>;
|
|
18915
|
+
};
|
|
18916
|
+
export declare enum ForgeAlertsRuleFilterActions {
|
|
18917
|
+
Exclude = "EXCLUDE",
|
|
18918
|
+
Include = "INCLUDE"
|
|
18919
|
+
}
|
|
18920
|
+
export declare enum ForgeAlertsRuleFilterDimensions {
|
|
18921
|
+
ErrorTypes = "ERROR_TYPES",
|
|
18922
|
+
Functions = "FUNCTIONS",
|
|
18923
|
+
Sites = "SITES",
|
|
18924
|
+
Versions = "VERSIONS"
|
|
18925
|
+
}
|
|
18926
|
+
export declare type ForgeAlertsRuleFilters = {
|
|
18927
|
+
action: ForgeAlertsRuleFilterActions;
|
|
18928
|
+
dimension: ForgeAlertsRuleFilterDimensions;
|
|
18929
|
+
value: Array<Scalars['String']['input']>;
|
|
18930
|
+
};
|
|
18931
|
+
export declare type ForgeAlertsRuleFiltersResponse = {
|
|
18932
|
+
__typename?: 'ForgeAlertsRuleFiltersResponse';
|
|
18933
|
+
action: ForgeAlertsRuleFilterActions;
|
|
18934
|
+
dimension: ForgeAlertsRuleFilterDimensions;
|
|
18935
|
+
value: Array<Scalars['String']['output']>;
|
|
18936
|
+
};
|
|
18937
|
+
export declare enum ForgeAlertsRuleMetricType {
|
|
18938
|
+
InvocationCount = "INVOCATION_COUNT",
|
|
18939
|
+
InvocationErrors = "INVOCATION_ERRORS",
|
|
18940
|
+
InvocationLatency = "INVOCATION_LATENCY",
|
|
18941
|
+
InvocationSuccessRate = "INVOCATION_SUCCESS_RATE"
|
|
18942
|
+
}
|
|
18943
|
+
export declare type ForgeAlertsRuleResult = ForgeAlertsRuleData | QueryError;
|
|
18944
|
+
export declare enum ForgeAlertsRuleSeverity {
|
|
18945
|
+
Critical = "CRITICAL",
|
|
18946
|
+
Major = "MAJOR",
|
|
18947
|
+
Minor = "MINOR"
|
|
18948
|
+
}
|
|
18949
|
+
export declare enum ForgeAlertsRuleWhenConditions {
|
|
18950
|
+
Above = "ABOVE",
|
|
18951
|
+
AboveOrEqualTo = "ABOVE_OR_EQUAL_TO",
|
|
18952
|
+
Below = "BELOW",
|
|
18953
|
+
BelowOrEqualTo = "BELOW_OR_EQUAL_TO"
|
|
18954
|
+
}
|
|
18955
|
+
export declare type ForgeAlertsRulesData = {
|
|
18956
|
+
__typename?: 'ForgeAlertsRulesData';
|
|
18957
|
+
createdAt: Scalars['String']['output'];
|
|
18958
|
+
enabled: Scalars['Boolean']['output'];
|
|
18959
|
+
id: Scalars['ID']['output'];
|
|
18960
|
+
lastOpenedAt?: Maybe<Scalars['String']['output']>;
|
|
18961
|
+
modifiedAt: Scalars['String']['output'];
|
|
18962
|
+
name: Scalars['String']['output'];
|
|
18963
|
+
responders: Array<ForgeAlertsUserInfo>;
|
|
18964
|
+
};
|
|
18965
|
+
export declare type ForgeAlertsRulesResult = ForgeAlertsRulesSuccess | QueryError;
|
|
18966
|
+
export declare type ForgeAlertsRulesSuccess = {
|
|
18967
|
+
__typename?: 'ForgeAlertsRulesSuccess';
|
|
18968
|
+
rules: Array<ForgeAlertsRulesData>;
|
|
18969
|
+
};
|
|
18970
|
+
export declare type ForgeAlertsSingleQueryInput = {
|
|
18971
|
+
alertId: Scalars['ID']['input'];
|
|
18972
|
+
};
|
|
18973
|
+
export declare type ForgeAlertsSingleResult = ForgeAlertsSingleSuccess | QueryError;
|
|
18974
|
+
export declare type ForgeAlertsSingleSuccess = {
|
|
18975
|
+
__typename?: 'ForgeAlertsSingleSuccess';
|
|
18976
|
+
alert: ForgeAlertsData;
|
|
18977
|
+
};
|
|
18405
18978
|
export declare enum ForgeAlertsStatus {
|
|
18979
|
+
Closed = "CLOSED",
|
|
18406
18980
|
Firing = "FIRING",
|
|
18981
|
+
Open = "OPEN",
|
|
18407
18982
|
Resolved = "RESOLVED"
|
|
18408
18983
|
}
|
|
18409
18984
|
export declare type ForgeAlertsUpdateAlertPayload = Payload & {
|
|
@@ -18419,6 +18994,36 @@ export declare type ForgeAlertsUpdateConfigInput = {
|
|
|
18419
18994
|
isMuted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18420
18995
|
triggerValue?: InputMaybe<Scalars['Float']['input']>;
|
|
18421
18996
|
};
|
|
18997
|
+
export declare type ForgeAlertsUpdateRuleInput = {
|
|
18998
|
+
input: ForgeAlertsUpdateRuleInputType;
|
|
18999
|
+
ruleId: Scalars['ID']['input'];
|
|
19000
|
+
};
|
|
19001
|
+
export declare type ForgeAlertsUpdateRuleInputType = {
|
|
19002
|
+
conditions?: InputMaybe<Array<ForgeAlertsRuleConditions>>;
|
|
19003
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
19004
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19005
|
+
filters?: InputMaybe<Array<ForgeAlertsRuleFilters>>;
|
|
19006
|
+
metric?: InputMaybe<ForgeAlertsRuleMetricType>;
|
|
19007
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
19008
|
+
period?: InputMaybe<Scalars['Int']['input']>;
|
|
19009
|
+
responders?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
19010
|
+
runbook?: InputMaybe<Scalars['String']['input']>;
|
|
19011
|
+
tolerance?: InputMaybe<Scalars['Int']['input']>;
|
|
19012
|
+
};
|
|
19013
|
+
export declare type ForgeAlertsUpdateRulePayload = Payload & {
|
|
19014
|
+
__typename?: 'ForgeAlertsUpdateRulePayload';
|
|
19015
|
+
errors?: Maybe<Array<MutationError>>;
|
|
19016
|
+
success: Scalars['Boolean']['output'];
|
|
19017
|
+
};
|
|
19018
|
+
export declare type ForgeAlertsUserInfo = {
|
|
19019
|
+
__typename?: 'ForgeAlertsUserInfo';
|
|
19020
|
+
accountId: Scalars['String']['output'];
|
|
19021
|
+
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
19022
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
19023
|
+
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
19024
|
+
publicName: Scalars['String']['output'];
|
|
19025
|
+
status: Scalars['String']['output'];
|
|
19026
|
+
};
|
|
18422
19027
|
export declare type ForgeAuditLog = {
|
|
18423
19028
|
__typename?: 'ForgeAuditLog';
|
|
18424
19029
|
action: ForgeAuditLogsActionType;
|
|
@@ -19991,6 +20596,328 @@ export declare type GraphCreateSprintRetrospectivePageInput = {
|
|
|
19991
20596
|
to: Scalars['ID']['input'];
|
|
19992
20597
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
19993
20598
|
};
|
|
20599
|
+
export declare type GraphDataDepotBranch = {
|
|
20600
|
+
__typename?: 'GraphDataDepotBranch';
|
|
20601
|
+
branchId: Scalars['String']['output'];
|
|
20602
|
+
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
20603
|
+
id: Scalars['ID']['output'];
|
|
20604
|
+
name: Scalars['String']['output'];
|
|
20605
|
+
repositoryId: Scalars['String']['output'];
|
|
20606
|
+
url: Scalars['String']['output'];
|
|
20607
|
+
};
|
|
20608
|
+
export declare type GraphDataDepotBranchReference = {
|
|
20609
|
+
__typename?: 'GraphDataDepotBranchReference';
|
|
20610
|
+
name: Scalars['String']['output'];
|
|
20611
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20612
|
+
};
|
|
20613
|
+
export declare type GraphDataDepotBuildCommitReference = {
|
|
20614
|
+
__typename?: 'GraphDataDepotBuildCommitReference';
|
|
20615
|
+
id: Scalars['String']['output'];
|
|
20616
|
+
repositoryUri: Scalars['String']['output'];
|
|
20617
|
+
};
|
|
20618
|
+
export declare type GraphDataDepotBuildInfo = {
|
|
20619
|
+
__typename?: 'GraphDataDepotBuildInfo';
|
|
20620
|
+
buildNumber: Scalars['Long']['output'];
|
|
20621
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20622
|
+
displayName: Scalars['String']['output'];
|
|
20623
|
+
duration?: Maybe<Scalars['Long']['output']>;
|
|
20624
|
+
id: Scalars['ID']['output'];
|
|
20625
|
+
pipelineId: Scalars['String']['output'];
|
|
20626
|
+
references?: Maybe<Array<GraphDataDepotBuildReferences>>;
|
|
20627
|
+
state: GraphDataDepotBuildState;
|
|
20628
|
+
testInfo?: Maybe<GraphDataDepotTestInfo>;
|
|
20629
|
+
url: Scalars['String']['output'];
|
|
20630
|
+
};
|
|
20631
|
+
export declare type GraphDataDepotBuildRefReference = {
|
|
20632
|
+
__typename?: 'GraphDataDepotBuildRefReference';
|
|
20633
|
+
name: Scalars['String']['output'];
|
|
20634
|
+
uri: Scalars['String']['output'];
|
|
20635
|
+
};
|
|
20636
|
+
export declare type GraphDataDepotBuildReferences = {
|
|
20637
|
+
__typename?: 'GraphDataDepotBuildReferences';
|
|
20638
|
+
commit?: Maybe<GraphDataDepotBuildCommitReference>;
|
|
20639
|
+
ref?: Maybe<GraphDataDepotBuildRefReference>;
|
|
20640
|
+
};
|
|
20641
|
+
export declare enum GraphDataDepotBuildState {
|
|
20642
|
+
Cancelled = "CANCELLED",
|
|
20643
|
+
Failed = "FAILED",
|
|
20644
|
+
InProgress = "IN_PROGRESS",
|
|
20645
|
+
Pending = "PENDING",
|
|
20646
|
+
Successful = "SUCCESSFUL",
|
|
20647
|
+
Unknown = "UNKNOWN"
|
|
20648
|
+
}
|
|
20649
|
+
export declare enum GraphDataDepotChangeType {
|
|
20650
|
+
Added = "ADDED",
|
|
20651
|
+
Copied = "COPIED",
|
|
20652
|
+
Deleted = "DELETED",
|
|
20653
|
+
Modified = "MODIFIED",
|
|
20654
|
+
Moved = "MOVED",
|
|
20655
|
+
Unknown = "UNKNOWN"
|
|
20656
|
+
}
|
|
20657
|
+
export declare type GraphDataDepotChapter = {
|
|
20658
|
+
__typename?: 'GraphDataDepotChapter';
|
|
20659
|
+
startTimeInSeconds: Scalars['Long']['output'];
|
|
20660
|
+
title: Scalars['String']['output'];
|
|
20661
|
+
};
|
|
20662
|
+
export declare type GraphDataDepotCommit = {
|
|
20663
|
+
__typename?: 'GraphDataDepotCommit';
|
|
20664
|
+
commitId: Scalars['String']['output'];
|
|
20665
|
+
createdAt: Scalars['String']['output'];
|
|
20666
|
+
displayId: Scalars['String']['output'];
|
|
20667
|
+
fileInfo: GraphDataDepotFileInfo;
|
|
20668
|
+
flags: Array<GraphDataDepotCommitFlags>;
|
|
20669
|
+
hash: Scalars['String']['output'];
|
|
20670
|
+
id: Scalars['ID']['output'];
|
|
20671
|
+
message: Scalars['String']['output'];
|
|
20672
|
+
repositoryId: Scalars['String']['output'];
|
|
20673
|
+
url: Scalars['String']['output'];
|
|
20674
|
+
};
|
|
20675
|
+
export declare enum GraphDataDepotCommitFlags {
|
|
20676
|
+
MergeCommit = "MERGE_COMMIT"
|
|
20677
|
+
}
|
|
20678
|
+
export declare type GraphDataDepotCue = {
|
|
20679
|
+
__typename?: 'GraphDataDepotCue';
|
|
20680
|
+
endTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
20681
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
20682
|
+
startTimeInSeconds: Scalars['Float']['output'];
|
|
20683
|
+
text: Scalars['String']['output'];
|
|
20684
|
+
};
|
|
20685
|
+
export declare type GraphDataDepotDeployment = {
|
|
20686
|
+
__typename?: 'GraphDataDepotDeployment';
|
|
20687
|
+
deploymentSequenceNumber: Scalars['Long']['output'];
|
|
20688
|
+
description: Scalars['String']['output'];
|
|
20689
|
+
displayName: Scalars['String']['output'];
|
|
20690
|
+
duration?: Maybe<Scalars['Long']['output']>;
|
|
20691
|
+
environment: GraphDataDepotEnvironment;
|
|
20692
|
+
id: Scalars['ID']['output'];
|
|
20693
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
20694
|
+
pipeline: GraphDataDepotPipeline;
|
|
20695
|
+
state: GraphDataDepotDeploymentState;
|
|
20696
|
+
url: Scalars['String']['output'];
|
|
20697
|
+
};
|
|
20698
|
+
export declare enum GraphDataDepotDeploymentState {
|
|
20699
|
+
Cancelled = "CANCELLED",
|
|
20700
|
+
Failed = "FAILED",
|
|
20701
|
+
InProgress = "IN_PROGRESS",
|
|
20702
|
+
Pending = "PENDING",
|
|
20703
|
+
RolledBack = "ROLLED_BACK",
|
|
20704
|
+
Successful = "SUCCESSFUL",
|
|
20705
|
+
Unknown = "UNKNOWN"
|
|
20706
|
+
}
|
|
20707
|
+
export declare type GraphDataDepotEntities = {
|
|
20708
|
+
__typename?: 'GraphDataDepotEntities';
|
|
20709
|
+
branch: Array<GraphDataDepotBranch>;
|
|
20710
|
+
buildInfo: Array<GraphDataDepotBuildInfo>;
|
|
20711
|
+
commit: Array<GraphDataDepotCommit>;
|
|
20712
|
+
deployment: Array<GraphDataDepotDeployment>;
|
|
20713
|
+
featureFlag: Array<GraphDataDepotFeatureFlag>;
|
|
20714
|
+
pullRequest: Array<GraphDataDepotPullRequest>;
|
|
20715
|
+
remoteLink: Array<GraphDataDepotRemoteLink>;
|
|
20716
|
+
video: Array<GraphDataDepotVideo>;
|
|
20717
|
+
vulnerability: Array<GraphDataDepotVulnerability>;
|
|
20718
|
+
};
|
|
20719
|
+
export declare type GraphDataDepotEnvironment = {
|
|
20720
|
+
__typename?: 'GraphDataDepotEnvironment';
|
|
20721
|
+
displayName: Scalars['String']['output'];
|
|
20722
|
+
id: Scalars['String']['output'];
|
|
20723
|
+
type: GraphDataDepotEnvironmentType;
|
|
20724
|
+
};
|
|
20725
|
+
export declare enum GraphDataDepotEnvironmentType {
|
|
20726
|
+
Development = "DEVELOPMENT",
|
|
20727
|
+
Production = "PRODUCTION",
|
|
20728
|
+
Staging = "STAGING",
|
|
20729
|
+
Testing = "TESTING",
|
|
20730
|
+
Unmapped = "UNMAPPED"
|
|
20731
|
+
}
|
|
20732
|
+
export declare type GraphDataDepotFeatureFlag = {
|
|
20733
|
+
__typename?: 'GraphDataDepotFeatureFlag';
|
|
20734
|
+
details: Array<GraphDataDepotFeatureFlagDetail>;
|
|
20735
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
20736
|
+
externalId: Scalars['String']['output'];
|
|
20737
|
+
id: Scalars['ID']['output'];
|
|
20738
|
+
key: Scalars['String']['output'];
|
|
20739
|
+
summary: GraphDataDepotFeatureFlagSummary;
|
|
20740
|
+
};
|
|
20741
|
+
export declare type GraphDataDepotFeatureFlagDetail = {
|
|
20742
|
+
__typename?: 'GraphDataDepotFeatureFlagDetail';
|
|
20743
|
+
environment: GraphDataDepotFeatureFlagEnvironment;
|
|
20744
|
+
status: GraphDataDepotFeatureFlagStatus;
|
|
20745
|
+
url: Scalars['String']['output'];
|
|
20746
|
+
};
|
|
20747
|
+
export declare type GraphDataDepotFeatureFlagEnvironment = {
|
|
20748
|
+
__typename?: 'GraphDataDepotFeatureFlagEnvironment';
|
|
20749
|
+
name: Scalars['String']['output'];
|
|
20750
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
20751
|
+
};
|
|
20752
|
+
export declare type GraphDataDepotFeatureFlagRollout = {
|
|
20753
|
+
__typename?: 'GraphDataDepotFeatureFlagRollout';
|
|
20754
|
+
percentage?: Maybe<Scalars['Float']['output']>;
|
|
20755
|
+
rules?: Maybe<Scalars['Int']['output']>;
|
|
20756
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
20757
|
+
};
|
|
20758
|
+
export declare type GraphDataDepotFeatureFlagStatus = {
|
|
20759
|
+
__typename?: 'GraphDataDepotFeatureFlagStatus';
|
|
20760
|
+
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
20761
|
+
enabled: Scalars['Boolean']['output'];
|
|
20762
|
+
rollout?: Maybe<GraphDataDepotFeatureFlagRollout>;
|
|
20763
|
+
};
|
|
20764
|
+
export declare type GraphDataDepotFeatureFlagSummary = {
|
|
20765
|
+
__typename?: 'GraphDataDepotFeatureFlagSummary';
|
|
20766
|
+
status: GraphDataDepotFeatureFlagStatus;
|
|
20767
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20768
|
+
};
|
|
20769
|
+
export declare type GraphDataDepotFile = {
|
|
20770
|
+
__typename?: 'GraphDataDepotFile';
|
|
20771
|
+
changeType: GraphDataDepotChangeType;
|
|
20772
|
+
linesAdded: Scalars['Int']['output'];
|
|
20773
|
+
linesRemoved: Scalars['Int']['output'];
|
|
20774
|
+
path: Scalars['String']['output'];
|
|
20775
|
+
url: Scalars['String']['output'];
|
|
20776
|
+
};
|
|
20777
|
+
export declare type GraphDataDepotFileInfo = {
|
|
20778
|
+
__typename?: 'GraphDataDepotFileInfo';
|
|
20779
|
+
fileCount: Scalars['Int']['output'];
|
|
20780
|
+
files: Array<GraphDataDepotFile>;
|
|
20781
|
+
};
|
|
20782
|
+
export declare enum GraphDataDepotLifecycleStage {
|
|
20783
|
+
Beta = "BETA",
|
|
20784
|
+
Experimental = "EXPERIMENTAL",
|
|
20785
|
+
Production = "PRODUCTION",
|
|
20786
|
+
Staging = "STAGING"
|
|
20787
|
+
}
|
|
20788
|
+
export declare type GraphDataDepotPipeline = {
|
|
20789
|
+
__typename?: 'GraphDataDepotPipeline';
|
|
20790
|
+
displayName: Scalars['String']['output'];
|
|
20791
|
+
id: Scalars['String']['output'];
|
|
20792
|
+
url: Scalars['String']['output'];
|
|
20793
|
+
};
|
|
20794
|
+
export declare type GraphDataDepotPullRequest = {
|
|
20795
|
+
__typename?: 'GraphDataDepotPullRequest';
|
|
20796
|
+
commentCount: Scalars['Int']['output'];
|
|
20797
|
+
destinationBranch?: Maybe<GraphDataDepotBranchReference>;
|
|
20798
|
+
displayId: Scalars['String']['output'];
|
|
20799
|
+
id: Scalars['ID']['output'];
|
|
20800
|
+
pullRequestId: Scalars['String']['output'];
|
|
20801
|
+
repositoryId: Scalars['String']['output'];
|
|
20802
|
+
sourceBranch: GraphDataDepotBranchReference;
|
|
20803
|
+
status: GraphDataDepotPullRequestStatus;
|
|
20804
|
+
supportedActions?: Maybe<Array<Scalars['String']['output']>>;
|
|
20805
|
+
tasksCount?: Maybe<Scalars['Int']['output']>;
|
|
20806
|
+
title: Scalars['String']['output'];
|
|
20807
|
+
url: Scalars['String']['output'];
|
|
20808
|
+
};
|
|
20809
|
+
export declare enum GraphDataDepotPullRequestStatus {
|
|
20810
|
+
Declined = "DECLINED",
|
|
20811
|
+
Draft = "DRAFT",
|
|
20812
|
+
Merged = "MERGED",
|
|
20813
|
+
Open = "OPEN",
|
|
20814
|
+
Unknown = "UNKNOWN"
|
|
20815
|
+
}
|
|
20816
|
+
export declare type GraphDataDepotQuery = {
|
|
20817
|
+
__typename?: 'GraphDataDepotQuery';
|
|
20818
|
+
entities: GraphDataDepotEntities;
|
|
20819
|
+
};
|
|
20820
|
+
export declare type GraphDataDepotQueryEntitiesArgs = {
|
|
20821
|
+
ids: Array<Scalars['ID']['input']>;
|
|
20822
|
+
};
|
|
20823
|
+
export declare type GraphDataDepotRemoteLink = {
|
|
20824
|
+
__typename?: 'GraphDataDepotRemoteLink';
|
|
20825
|
+
actionIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
20826
|
+
attributeMap?: Maybe<Array<GraphDataDepotRemoteLinkAttributeTuple>>;
|
|
20827
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
20828
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20829
|
+
displayName: Scalars['String']['output'];
|
|
20830
|
+
id: Scalars['ID']['output'];
|
|
20831
|
+
remoteLinkId: Scalars['String']['output'];
|
|
20832
|
+
status?: Maybe<GraphDataDepotRemoteLinkStatus>;
|
|
20833
|
+
type: Scalars['String']['output'];
|
|
20834
|
+
url: Scalars['String']['output'];
|
|
20835
|
+
};
|
|
20836
|
+
export declare type GraphDataDepotRemoteLinkAttributeTuple = {
|
|
20837
|
+
__typename?: 'GraphDataDepotRemoteLinkAttributeTuple';
|
|
20838
|
+
key: Scalars['String']['output'];
|
|
20839
|
+
value: Scalars['String']['output'];
|
|
20840
|
+
};
|
|
20841
|
+
export declare type GraphDataDepotRemoteLinkStatus = {
|
|
20842
|
+
__typename?: 'GraphDataDepotRemoteLinkStatus';
|
|
20843
|
+
appearance: Scalars['String']['output'];
|
|
20844
|
+
label: Scalars['String']['output'];
|
|
20845
|
+
};
|
|
20846
|
+
export declare type GraphDataDepotTestInfo = {
|
|
20847
|
+
__typename?: 'GraphDataDepotTestInfo';
|
|
20848
|
+
numberFailed: Scalars['Int']['output'];
|
|
20849
|
+
numberPassed: Scalars['Int']['output'];
|
|
20850
|
+
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
20851
|
+
totalNumber: Scalars['Int']['output'];
|
|
20852
|
+
};
|
|
20853
|
+
export declare type GraphDataDepotTrack = {
|
|
20854
|
+
__typename?: 'GraphDataDepotTrack';
|
|
20855
|
+
cues: Array<GraphDataDepotCue>;
|
|
20856
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
20857
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
20858
|
+
};
|
|
20859
|
+
export declare type GraphDataDepotVideo = {
|
|
20860
|
+
__typename?: 'GraphDataDepotVideo';
|
|
20861
|
+
chapters?: Maybe<Array<GraphDataDepotChapter>>;
|
|
20862
|
+
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
20863
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
20864
|
+
displayName: Scalars['String']['output'];
|
|
20865
|
+
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
20866
|
+
embedUrl: Scalars['String']['output'];
|
|
20867
|
+
externalId: Scalars['String']['output'];
|
|
20868
|
+
height?: Maybe<Scalars['Long']['output']>;
|
|
20869
|
+
id: Scalars['ID']['output'];
|
|
20870
|
+
textTracks?: Maybe<Array<GraphDataDepotTrack>>;
|
|
20871
|
+
thumbnailUrl: Scalars['String']['output'];
|
|
20872
|
+
url: Scalars['String']['output'];
|
|
20873
|
+
width?: Maybe<Scalars['Long']['output']>;
|
|
20874
|
+
};
|
|
20875
|
+
export declare type GraphDataDepotVulnerability = {
|
|
20876
|
+
__typename?: 'GraphDataDepotVulnerability';
|
|
20877
|
+
additionalInfo?: Maybe<GraphDataDepotVulnerabilityAdditionalInfo>;
|
|
20878
|
+
description: Scalars['String']['output'];
|
|
20879
|
+
displayName: Scalars['String']['output'];
|
|
20880
|
+
externalId: Scalars['String']['output'];
|
|
20881
|
+
id: Scalars['ID']['output'];
|
|
20882
|
+
identifiers?: Maybe<Array<GraphDataDepotVulnerabilityIdentifier>>;
|
|
20883
|
+
severity: GraphDataDepotVulnerabilitySeverity;
|
|
20884
|
+
status: GraphDataDepotVulnerabilityStatus;
|
|
20885
|
+
type: GraphDataDepotVulnerabilityType;
|
|
20886
|
+
url: Scalars['String']['output'];
|
|
20887
|
+
};
|
|
20888
|
+
export declare type GraphDataDepotVulnerabilityAdditionalInfo = {
|
|
20889
|
+
__typename?: 'GraphDataDepotVulnerabilityAdditionalInfo';
|
|
20890
|
+
content: Scalars['String']['output'];
|
|
20891
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20892
|
+
};
|
|
20893
|
+
export declare type GraphDataDepotVulnerabilityIdentifier = {
|
|
20894
|
+
__typename?: 'GraphDataDepotVulnerabilityIdentifier';
|
|
20895
|
+
displayName: Scalars['String']['output'];
|
|
20896
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
20897
|
+
};
|
|
20898
|
+
export declare type GraphDataDepotVulnerabilitySeverity = {
|
|
20899
|
+
__typename?: 'GraphDataDepotVulnerabilitySeverity';
|
|
20900
|
+
level: GraphDataDepotVulnerabilitySeverityLevel;
|
|
20901
|
+
};
|
|
20902
|
+
export declare enum GraphDataDepotVulnerabilitySeverityLevel {
|
|
20903
|
+
Critical = "CRITICAL",
|
|
20904
|
+
High = "HIGH",
|
|
20905
|
+
Low = "LOW",
|
|
20906
|
+
Medium = "MEDIUM",
|
|
20907
|
+
Unknown = "UNKNOWN"
|
|
20908
|
+
}
|
|
20909
|
+
export declare enum GraphDataDepotVulnerabilityStatus {
|
|
20910
|
+
Closed = "CLOSED",
|
|
20911
|
+
Ignored = "IGNORED",
|
|
20912
|
+
Open = "OPEN",
|
|
20913
|
+
Unknown = "UNKNOWN"
|
|
20914
|
+
}
|
|
20915
|
+
export declare enum GraphDataDepotVulnerabilityType {
|
|
20916
|
+
Dast = "DAST",
|
|
20917
|
+
Sast = "SAST",
|
|
20918
|
+
Sca = "SCA",
|
|
20919
|
+
Unknown = "UNKNOWN"
|
|
20920
|
+
}
|
|
19994
20921
|
export declare type GraphGeneric = Node & {
|
|
19995
20922
|
__typename?: 'GraphGeneric';
|
|
19996
20923
|
data?: Maybe<GraphRelationshipNodeData>;
|
|
@@ -36571,6 +37498,12 @@ export declare type JiraAutodevCodeChangeEdge = {
|
|
|
36571
37498
|
cursor: Scalars['String']['output'];
|
|
36572
37499
|
node?: Maybe<JiraAutodevCodeChange>;
|
|
36573
37500
|
};
|
|
37501
|
+
export declare enum JiraAutodevCodeChangeEnumType {
|
|
37502
|
+
Add = "ADD",
|
|
37503
|
+
Delete = "DELETE",
|
|
37504
|
+
Edit = "EDIT",
|
|
37505
|
+
Other = "OTHER"
|
|
37506
|
+
}
|
|
36574
37507
|
export declare type JiraAutodevCreateJobPayload = Payload & {
|
|
36575
37508
|
__typename?: 'JiraAutodevCreateJobPayload';
|
|
36576
37509
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -36610,8 +37543,28 @@ export declare type JiraAutodevPlan = {
|
|
|
36610
37543
|
acceptanceCriteria: Scalars['String']['output'];
|
|
36611
37544
|
currentState: Scalars['String']['output'];
|
|
36612
37545
|
desiredState: Scalars['String']['output'];
|
|
37546
|
+
plannedChanges?: Maybe<JiraAutodevPlannedChangeConnection>;
|
|
36613
37547
|
prompt: Scalars['String']['output'];
|
|
36614
37548
|
};
|
|
37549
|
+
export declare type JiraAutodevPlannedChange = {
|
|
37550
|
+
__typename?: 'JiraAutodevPlannedChange';
|
|
37551
|
+
changetype?: Maybe<JiraAutodevCodeChangeEnumType>;
|
|
37552
|
+
fileName: Scalars['String']['output'];
|
|
37553
|
+
id: Scalars['ID']['output'];
|
|
37554
|
+
referenceFiles?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
37555
|
+
task?: Maybe<JiraAutodevTaskConnection>;
|
|
37556
|
+
};
|
|
37557
|
+
export declare type JiraAutodevPlannedChangeConnection = {
|
|
37558
|
+
__typename?: 'JiraAutodevPlannedChangeConnection';
|
|
37559
|
+
edges?: Maybe<Array<Maybe<JiraAutodevPlannedChangeEdge>>>;
|
|
37560
|
+
nodes?: Maybe<Array<Maybe<JiraAutodevPlannedChange>>>;
|
|
37561
|
+
pageInfo: PageInfo;
|
|
37562
|
+
};
|
|
37563
|
+
export declare type JiraAutodevPlannedChangeEdge = {
|
|
37564
|
+
__typename?: 'JiraAutodevPlannedChangeEdge';
|
|
37565
|
+
cursor: Scalars['String']['output'];
|
|
37566
|
+
node?: Maybe<JiraAutodevPlannedChange>;
|
|
37567
|
+
};
|
|
36615
37568
|
export declare type JiraAutodevPullRequest = {
|
|
36616
37569
|
__typename?: 'JiraAutodevPullRequest';
|
|
36617
37570
|
url: Scalars['String']['output'];
|
|
@@ -36666,6 +37619,22 @@ export declare type JiraAutodevStatusHistoryItemEdge = {
|
|
|
36666
37619
|
cursor: Scalars['String']['output'];
|
|
36667
37620
|
node?: Maybe<JiraAutodevStatusHistoryItem>;
|
|
36668
37621
|
};
|
|
37622
|
+
export declare type JiraAutodevTask = {
|
|
37623
|
+
__typename?: 'JiraAutodevTask';
|
|
37624
|
+
id: Scalars['ID']['output'];
|
|
37625
|
+
task?: Maybe<Scalars['String']['output']>;
|
|
37626
|
+
};
|
|
37627
|
+
export declare type JiraAutodevTaskConnection = {
|
|
37628
|
+
__typename?: 'JiraAutodevTaskConnection';
|
|
37629
|
+
edges?: Maybe<Array<Maybe<JiraAutodevTaskEdge>>>;
|
|
37630
|
+
nodes?: Maybe<Array<Maybe<JiraAutodevTask>>>;
|
|
37631
|
+
pageInfo: PageInfo;
|
|
37632
|
+
};
|
|
37633
|
+
export declare type JiraAutodevTaskEdge = {
|
|
37634
|
+
__typename?: 'JiraAutodevTaskEdge';
|
|
37635
|
+
cursor: Scalars['String']['output'];
|
|
37636
|
+
node?: Maybe<JiraAutodevTask>;
|
|
37637
|
+
};
|
|
36669
37638
|
export declare type JiraAutofixCreateJobPayload = Payload & {
|
|
36670
37639
|
__typename?: 'JiraAutofixCreateJobPayload';
|
|
36671
37640
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -36784,6 +37753,14 @@ export declare type JiraBoardEdge = {
|
|
|
36784
37753
|
cursor: Scalars['String']['output'];
|
|
36785
37754
|
node?: Maybe<JiraBoard>;
|
|
36786
37755
|
};
|
|
37756
|
+
export declare type JiraBoardLocation = {
|
|
37757
|
+
locationId?: InputMaybe<Scalars['String']['input']>;
|
|
37758
|
+
locationType: JiraBoardLocationType;
|
|
37759
|
+
};
|
|
37760
|
+
export declare enum JiraBoardLocationType {
|
|
37761
|
+
Project = "PROJECT",
|
|
37762
|
+
User = "USER"
|
|
37763
|
+
}
|
|
36787
37764
|
export declare enum JiraBoardType {
|
|
36788
37765
|
Kanban = "KANBAN",
|
|
36789
37766
|
Scrum = "SCRUM"
|
|
@@ -37932,6 +38909,22 @@ export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
|
37932
38909
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
37933
38910
|
success: Scalars['Boolean']['output'];
|
|
37934
38911
|
};
|
|
38912
|
+
export declare type JiraCreateBoardInput = {
|
|
38913
|
+
createBoardSource: JiraCreateBoardSource;
|
|
38914
|
+
location: JiraBoardLocation;
|
|
38915
|
+
name: Scalars['String']['input'];
|
|
38916
|
+
preset: JiraBoardType;
|
|
38917
|
+
};
|
|
38918
|
+
export declare type JiraCreateBoardPayload = Payload & {
|
|
38919
|
+
__typename?: 'JiraCreateBoardPayload';
|
|
38920
|
+
board?: Maybe<JiraBoard>;
|
|
38921
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38922
|
+
success: Scalars['Boolean']['output'];
|
|
38923
|
+
};
|
|
38924
|
+
export declare type JiraCreateBoardSource = {
|
|
38925
|
+
projectIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
38926
|
+
savedFilterId?: InputMaybe<Scalars['String']['input']>;
|
|
38927
|
+
};
|
|
37935
38928
|
export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
37936
38929
|
__typename?: 'JiraCreateCalendarIssuePayload';
|
|
37937
38930
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -41807,6 +42800,7 @@ export declare type JiraMutation = {
|
|
|
41807
42800
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
41808
42801
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
41809
42802
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
42803
|
+
createBoard?: Maybe<JiraCreateBoardPayload>;
|
|
41810
42804
|
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
41811
42805
|
createCustomBackground?: Maybe<JiraCreateCustomBackgroundPayload>;
|
|
41812
42806
|
createFormattingRule?: Maybe<JiraCreateFormattingRulePayload>;
|
|
@@ -41985,6 +42979,10 @@ export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
|
41985
42979
|
cloudId: Scalars['ID']['input'];
|
|
41986
42980
|
input: JiraCreateApproverListFieldInput;
|
|
41987
42981
|
};
|
|
42982
|
+
export declare type JiraMutationCreateBoardArgs = {
|
|
42983
|
+
cloudId: Scalars['ID']['input'];
|
|
42984
|
+
input: JiraCreateBoardInput;
|
|
42985
|
+
};
|
|
41988
42986
|
export declare type JiraMutationCreateCalendarIssueArgs = {
|
|
41989
42987
|
configuration: JiraCalendarViewConfigurationInput;
|
|
41990
42988
|
endDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -43335,6 +44333,7 @@ export declare type JiraProject = Node & {
|
|
|
43335
44333
|
cloudId: Scalars['ID']['output'];
|
|
43336
44334
|
confluenceSpaceRelationships?: Maybe<JiraProjectAndConfluenceSpaceRelationshipConnection>;
|
|
43337
44335
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
44336
|
+
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
43338
44337
|
description?: Maybe<Scalars['String']['output']>;
|
|
43339
44338
|
devOpsEntityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
43340
44339
|
devOpsServiceRelationships?: Maybe<DevOpsServiceAndJiraProjectRelationshipConnection>;
|
|
@@ -44244,6 +45243,7 @@ export declare type JiraQuery = {
|
|
|
44244
45243
|
resourceUsageMetricById?: Maybe<JiraResourceUsageMetric>;
|
|
44245
45244
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
44246
45245
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
45246
|
+
savedFilters?: Maybe<JiraFilterConnection>;
|
|
44247
45247
|
scaledConfiguration?: Maybe<JiraSafeConfiguration>;
|
|
44248
45248
|
scaledConfigurationPermissions?: Maybe<JiraScaledConfigurationPermissions>;
|
|
44249
45249
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
@@ -44942,6 +45942,14 @@ export declare type JiraQueryResourceUsageRecommendationStatsArgs = {
|
|
|
44942
45942
|
category: JiraRecommendationCategory;
|
|
44943
45943
|
cloudId: Scalars['ID']['input'];
|
|
44944
45944
|
};
|
|
45945
|
+
export declare type JiraQuerySavedFiltersArgs = {
|
|
45946
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
45947
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
45948
|
+
cloudId: Scalars['ID']['input'];
|
|
45949
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45950
|
+
keyword: Scalars['String']['input'];
|
|
45951
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
45952
|
+
};
|
|
44945
45953
|
export declare type JiraQueryScaledConfigurationArgs = {
|
|
44946
45954
|
cloudId: Scalars['ID']['input'];
|
|
44947
45955
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -50496,44 +51504,6 @@ export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
|
50496
51504
|
id: Scalars['ID']['output'];
|
|
50497
51505
|
user?: Maybe<User>;
|
|
50498
51506
|
};
|
|
50499
|
-
export declare type LpCertmetricsCertificate = {
|
|
50500
|
-
__typename?: 'LPCertmetricsCertificate';
|
|
50501
|
-
activeDate?: Maybe<Scalars['String']['output']>;
|
|
50502
|
-
expireDate?: Maybe<Scalars['String']['output']>;
|
|
50503
|
-
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
50504
|
-
inactiveDate?: Maybe<Scalars['String']['output']>;
|
|
50505
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
50506
|
-
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
50507
|
-
uuid?: Maybe<Scalars['String']['output']>;
|
|
50508
|
-
};
|
|
50509
|
-
export declare type LpCertmetricsCertificateConnection = {
|
|
50510
|
-
__typename?: 'LPCertmetricsCertificateConnection';
|
|
50511
|
-
edges?: Maybe<Array<LpCertmetricsCertificateEdge>>;
|
|
50512
|
-
pageInfo?: Maybe<PageInfo>;
|
|
50513
|
-
};
|
|
50514
|
-
export declare type LpCertmetricsCertificateEdge = {
|
|
50515
|
-
__typename?: 'LPCertmetricsCertificateEdge';
|
|
50516
|
-
cursor: Scalars['String']['output'];
|
|
50517
|
-
node?: Maybe<LpCertmetricsCertificate>;
|
|
50518
|
-
};
|
|
50519
|
-
export declare type LpLearner = {
|
|
50520
|
-
__typename?: 'LPLearner';
|
|
50521
|
-
atlassianId: Scalars['String']['output'];
|
|
50522
|
-
certmetricsCertificates?: Maybe<LpCertmetricsCertificateConnection>;
|
|
50523
|
-
};
|
|
50524
|
-
export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
50525
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
50526
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
50527
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50528
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
50529
|
-
};
|
|
50530
|
-
export declare type LpLearnerData = {
|
|
50531
|
-
__typename?: 'LPLearnerData';
|
|
50532
|
-
learnerByAtlassianId?: Maybe<LpLearner>;
|
|
50533
|
-
};
|
|
50534
|
-
export declare type LpLearnerDataLearnerByAtlassianIdArgs = {
|
|
50535
|
-
atlassianId: Scalars['String']['input'];
|
|
50536
|
-
};
|
|
50537
51507
|
export declare type LabelUsage = {
|
|
50538
51508
|
__typename?: 'LabelUsage';
|
|
50539
51509
|
count: Scalars['Int']['output'];
|
|
@@ -50583,6 +51553,86 @@ export declare type LogQueryInput = {
|
|
|
50583
51553
|
lvl?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
50584
51554
|
msg?: InputMaybe<Scalars['String']['input']>;
|
|
50585
51555
|
};
|
|
51556
|
+
export declare type LpCertmetricsCertificate = {
|
|
51557
|
+
__typename?: 'LpCertmetricsCertificate';
|
|
51558
|
+
activeDate?: Maybe<Scalars['String']['output']>;
|
|
51559
|
+
expireDate?: Maybe<Scalars['String']['output']>;
|
|
51560
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
51561
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
51562
|
+
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
51563
|
+
publicUrl?: Maybe<Scalars['String']['output']>;
|
|
51564
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
51565
|
+
uuid?: Maybe<Scalars['String']['output']>;
|
|
51566
|
+
};
|
|
51567
|
+
export declare type LpCertmetricsCertificateConnection = {
|
|
51568
|
+
__typename?: 'LpCertmetricsCertificateConnection';
|
|
51569
|
+
edges?: Maybe<Array<LpCertmetricsCertificateEdge>>;
|
|
51570
|
+
pageInfo?: Maybe<LpPageInfo>;
|
|
51571
|
+
};
|
|
51572
|
+
export declare type LpCertmetricsCertificateEdge = {
|
|
51573
|
+
__typename?: 'LpCertmetricsCertificateEdge';
|
|
51574
|
+
cursor: Scalars['String']['output'];
|
|
51575
|
+
node?: Maybe<LpCertmetricsCertificate>;
|
|
51576
|
+
};
|
|
51577
|
+
export declare type LpCourseProgress = {
|
|
51578
|
+
__typename?: 'LpCourseProgress';
|
|
51579
|
+
courseId?: Maybe<Scalars['String']['output']>;
|
|
51580
|
+
lessons?: Maybe<Array<Maybe<LpLessonProgress>>>;
|
|
51581
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
51582
|
+
uuid?: Maybe<Scalars['String']['output']>;
|
|
51583
|
+
};
|
|
51584
|
+
export declare type LpCourseProgressConnection = {
|
|
51585
|
+
__typename?: 'LpCourseProgressConnection';
|
|
51586
|
+
edges?: Maybe<Array<LpCourseProgressEdge>>;
|
|
51587
|
+
pageInfo?: Maybe<LpPageInfo>;
|
|
51588
|
+
};
|
|
51589
|
+
export declare type LpCourseProgressEdge = {
|
|
51590
|
+
__typename?: 'LpCourseProgressEdge';
|
|
51591
|
+
cursor: Scalars['String']['output'];
|
|
51592
|
+
node?: Maybe<LpCourseProgress>;
|
|
51593
|
+
};
|
|
51594
|
+
export declare type LpLearner = Node & {
|
|
51595
|
+
__typename?: 'LpLearner';
|
|
51596
|
+
atlassianId: Scalars['String']['output'];
|
|
51597
|
+
certmetricsCertificates?: Maybe<LpCertmetricsCertificateConnection>;
|
|
51598
|
+
courses?: Maybe<LpCourseProgressConnection>;
|
|
51599
|
+
id: Scalars['ID']['output'];
|
|
51600
|
+
};
|
|
51601
|
+
export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
51602
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51603
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
51604
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51605
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51606
|
+
};
|
|
51607
|
+
export declare type LpLearnerCoursesArgs = {
|
|
51608
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
51609
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
51610
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
51611
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
51612
|
+
};
|
|
51613
|
+
export declare type LpLearnerData = {
|
|
51614
|
+
__typename?: 'LpLearnerData';
|
|
51615
|
+
learnerByAtlassianId?: Maybe<LpLearner>;
|
|
51616
|
+
node?: Maybe<Node>;
|
|
51617
|
+
};
|
|
51618
|
+
export declare type LpLearnerDataLearnerByAtlassianIdArgs = {
|
|
51619
|
+
atlassianId: Scalars['String']['input'];
|
|
51620
|
+
};
|
|
51621
|
+
export declare type LpLearnerDataNodeArgs = {
|
|
51622
|
+
id: Scalars['ID']['input'];
|
|
51623
|
+
};
|
|
51624
|
+
export declare type LpLessonProgress = {
|
|
51625
|
+
__typename?: 'LpLessonProgress';
|
|
51626
|
+
lessonId?: Maybe<Scalars['String']['output']>;
|
|
51627
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
51628
|
+
};
|
|
51629
|
+
export declare type LpPageInfo = {
|
|
51630
|
+
__typename?: 'LpPageInfo';
|
|
51631
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
51632
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
51633
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
51634
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
51635
|
+
};
|
|
50586
51636
|
export declare type MarketplaceApp = {
|
|
50587
51637
|
__typename?: 'MarketplaceApp';
|
|
50588
51638
|
appId: Scalars['ID']['output'];
|
|
@@ -52560,6 +53610,7 @@ export declare type Mutation = {
|
|
|
52560
53610
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
52561
53611
|
confluenceLegacy_activatePaywallContent?: Maybe<ConfluenceLegacy_ActivatePaywallContentPayload>;
|
|
52562
53612
|
confluenceLegacy_addDefaultExCoSpacePermissions?: Maybe<ConfluenceLegacy_AddDefaultExCoSpacePermissionsPayload>;
|
|
53613
|
+
confluenceLegacy_addLabels?: Maybe<ConfluenceLegacy_AddLabelsPayload>;
|
|
52563
53614
|
confluenceLegacy_addPublicLinkPermissions?: Maybe<ConfluenceLegacy_AddPublicLinkPermissionsPayload>;
|
|
52564
53615
|
confluenceLegacy_archivePages?: Maybe<ConfluenceLegacy_BulkArchivePagePayload>;
|
|
52565
53616
|
confluenceLegacy_attachDanglingComment?: Maybe<ConfluenceLegacy_Comment>;
|
|
@@ -52604,7 +53655,9 @@ export declare type Mutation = {
|
|
|
52604
53655
|
confluenceLegacy_deleteExCoSpacePermissions?: Maybe<Array<Maybe<ConfluenceLegacy_DeleteExCoSpacePermissionsPayload>>>;
|
|
52605
53656
|
confluenceLegacy_deleteExternalCollaboratorDefaultSpace?: Maybe<ConfluenceLegacy_DeleteExternalCollaboratorDefaultSpacePayload>;
|
|
52606
53657
|
confluenceLegacy_deleteInlineComment?: Maybe<Scalars['Boolean']['output']>;
|
|
53658
|
+
confluenceLegacy_deleteLabel?: Maybe<ConfluenceLegacy_DeleteLabelPayload>;
|
|
52607
53659
|
confluenceLegacy_deletePages?: Maybe<ConfluenceLegacy_DeletePagesPayload>;
|
|
53660
|
+
confluenceLegacy_deleteRelation?: Maybe<ConfluenceLegacy_DeleteRelationPayload>;
|
|
52608
53661
|
confluenceLegacy_deleteSpaceDefaultClassificationLevel?: Maybe<ConfluenceLegacy_DeleteSpaceDefaultClassificationLevelPayload>;
|
|
52609
53662
|
confluenceLegacy_deleteSpaceRoles?: Maybe<ConfluenceLegacy_DeleteSpaceRolesPayload>;
|
|
52610
53663
|
confluenceLegacy_deleteTemplate?: Maybe<Scalars['ID']['output']>;
|
|
@@ -52627,6 +53680,12 @@ export declare type Mutation = {
|
|
|
52627
53680
|
confluenceLegacy_markFeatureDiscovered?: Maybe<ConfluenceLegacy_FeatureDiscoveryPayload>;
|
|
52628
53681
|
confluenceLegacy_migrateSpaceShortcuts?: Maybe<ConfluenceLegacy_MigrateSpaceShortcutsPayload>;
|
|
52629
53682
|
confluenceLegacy_moveBlog?: Maybe<ConfluenceLegacy_MoveBlogPayload>;
|
|
53683
|
+
confluenceLegacy_movePageAfter?: Maybe<ConfluenceLegacy_MovePagePayload>;
|
|
53684
|
+
confluenceLegacy_movePageAppend?: Maybe<ConfluenceLegacy_MovePagePayload>;
|
|
53685
|
+
confluenceLegacy_movePageBefore?: Maybe<ConfluenceLegacy_MovePagePayload>;
|
|
53686
|
+
confluenceLegacy_movePageTopLevel?: Maybe<ConfluenceLegacy_MovePagePayload>;
|
|
53687
|
+
confluenceLegacy_mutationsCloudId?: Maybe<ConfluenceLegacy_Mutations_CloudId>;
|
|
53688
|
+
confluenceLegacy_newPage?: Maybe<ConfluenceLegacy_NewPagePayload>;
|
|
52630
53689
|
confluenceLegacy_notifyUsersOnFirstView?: Maybe<ConfluenceLegacy_NotificationResponsePayload>;
|
|
52631
53690
|
confluenceLegacy_openUpSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
52632
53691
|
confluenceLegacy_patchCommentsSummary?: Maybe<ConfluenceLegacy_PatchCommentsSummaryPayload>;
|
|
@@ -52689,10 +53748,12 @@ export declare type Mutation = {
|
|
|
52689
53748
|
confluenceLegacy_updateLocalStorage?: Maybe<ConfluenceLegacy_LocalStorage>;
|
|
52690
53749
|
confluenceLegacy_updateNestedPageOwners?: Maybe<ConfluenceLegacy_UpdateNestedPageOwnersPayload>;
|
|
52691
53750
|
confluenceLegacy_updateOwner?: Maybe<ConfluenceLegacy_UpdateOwnerPayload>;
|
|
53751
|
+
confluenceLegacy_updatePage?: Maybe<ConfluenceLegacy_UpdatePagePayload>;
|
|
52692
53752
|
confluenceLegacy_updatePageOwners?: Maybe<ConfluenceLegacy_UpdatePageOwnersPayload>;
|
|
52693
53753
|
confluenceLegacy_updatePageStatuses?: Maybe<ConfluenceLegacy_UpdatePageStatusesPayload>;
|
|
52694
53754
|
confluenceLegacy_updatePushNotificationCustomSettings?: Maybe<ConfluenceLegacy_PushNotificationSettings>;
|
|
52695
53755
|
confluenceLegacy_updatePushNotificationGroupSetting?: Maybe<ConfluenceLegacy_PushNotificationSettings>;
|
|
53756
|
+
confluenceLegacy_updateRelation?: Maybe<ConfluenceLegacy_UpdateRelationPayload>;
|
|
52696
53757
|
confluenceLegacy_updateSiteLookAndFeel?: Maybe<ConfluenceLegacy_UpdateSiteLookAndFeelPayload>;
|
|
52697
53758
|
confluenceLegacy_updateSitePermission?: Maybe<ConfluenceLegacy_SitePermission>;
|
|
52698
53759
|
confluenceLegacy_updateSpaceDefaultClassificationLevel?: Maybe<ConfluenceLegacy_UpdateSpaceDefaultClassificationLevelPayload>;
|
|
@@ -52890,6 +53951,9 @@ export declare type MutationConfluenceLegacy_ActivatePaywallContentArgs = {
|
|
|
52890
53951
|
export declare type MutationConfluenceLegacy_AddDefaultExCoSpacePermissionsArgs = {
|
|
52891
53952
|
spacePermissionsInput: ConfluenceLegacy_AddDefaultExCoSpacePermissionsInput;
|
|
52892
53953
|
};
|
|
53954
|
+
export declare type MutationConfluenceLegacy_AddLabelsArgs = {
|
|
53955
|
+
input: ConfluenceLegacy_AddLabelsInput;
|
|
53956
|
+
};
|
|
52893
53957
|
export declare type MutationConfluenceLegacy_AddPublicLinkPermissionsArgs = {
|
|
52894
53958
|
input: ConfluenceLegacy_AddPublicLinkPermissionsInput;
|
|
52895
53959
|
};
|
|
@@ -53029,9 +54093,15 @@ export declare type MutationConfluenceLegacy_DeleteExCoSpacePermissionsArgs = {
|
|
|
53029
54093
|
export declare type MutationConfluenceLegacy_DeleteInlineCommentArgs = {
|
|
53030
54094
|
input: ConfluenceLegacy_DeleteInlineCommentInput;
|
|
53031
54095
|
};
|
|
54096
|
+
export declare type MutationConfluenceLegacy_DeleteLabelArgs = {
|
|
54097
|
+
input: ConfluenceLegacy_DeleteLabelInput;
|
|
54098
|
+
};
|
|
53032
54099
|
export declare type MutationConfluenceLegacy_DeletePagesArgs = {
|
|
53033
54100
|
input: Array<InputMaybe<ConfluenceLegacy_DeletePagesInput>>;
|
|
53034
54101
|
};
|
|
54102
|
+
export declare type MutationConfluenceLegacy_DeleteRelationArgs = {
|
|
54103
|
+
input: ConfluenceLegacy_DeleteRelationInput;
|
|
54104
|
+
};
|
|
53035
54105
|
export declare type MutationConfluenceLegacy_DeleteSpaceDefaultClassificationLevelArgs = {
|
|
53036
54106
|
input: ConfluenceLegacy_DeleteSpaceDefaultClassificationLevelInput;
|
|
53037
54107
|
};
|
|
@@ -53085,6 +54155,24 @@ export declare type MutationConfluenceLegacy_MigrateSpaceShortcutsArgs = {
|
|
|
53085
54155
|
export declare type MutationConfluenceLegacy_MoveBlogArgs = {
|
|
53086
54156
|
input: ConfluenceLegacy_MoveBlogInput;
|
|
53087
54157
|
};
|
|
54158
|
+
export declare type MutationConfluenceLegacy_MovePageAfterArgs = {
|
|
54159
|
+
input: ConfluenceLegacy_MovePageAsSiblingInput;
|
|
54160
|
+
};
|
|
54161
|
+
export declare type MutationConfluenceLegacy_MovePageAppendArgs = {
|
|
54162
|
+
input: ConfluenceLegacy_MovePageAsChildInput;
|
|
54163
|
+
};
|
|
54164
|
+
export declare type MutationConfluenceLegacy_MovePageBeforeArgs = {
|
|
54165
|
+
input: ConfluenceLegacy_MovePageAsSiblingInput;
|
|
54166
|
+
};
|
|
54167
|
+
export declare type MutationConfluenceLegacy_MovePageTopLevelArgs = {
|
|
54168
|
+
input: ConfluenceLegacy_MovePageTopLevelInput;
|
|
54169
|
+
};
|
|
54170
|
+
export declare type MutationConfluenceLegacy_MutationsCloudIdArgs = {
|
|
54171
|
+
cloudId: Scalars['ID']['input'];
|
|
54172
|
+
};
|
|
54173
|
+
export declare type MutationConfluenceLegacy_NewPageArgs = {
|
|
54174
|
+
input: ConfluenceLegacy_NewPageInput;
|
|
54175
|
+
};
|
|
53088
54176
|
export declare type MutationConfluenceLegacy_NotifyUsersOnFirstViewArgs = {
|
|
53089
54177
|
contentId: Scalars['ID']['input'];
|
|
53090
54178
|
};
|
|
@@ -53281,6 +54369,9 @@ export declare type MutationConfluenceLegacy_UpdateNestedPageOwnersArgs = {
|
|
|
53281
54369
|
export declare type MutationConfluenceLegacy_UpdateOwnerArgs = {
|
|
53282
54370
|
input: ConfluenceLegacy_UpdateOwnerInput;
|
|
53283
54371
|
};
|
|
54372
|
+
export declare type MutationConfluenceLegacy_UpdatePageArgs = {
|
|
54373
|
+
input: ConfluenceLegacy_UpdatePageInput;
|
|
54374
|
+
};
|
|
53284
54375
|
export declare type MutationConfluenceLegacy_UpdatePageOwnersArgs = {
|
|
53285
54376
|
input: ConfluenceLegacy_UpdatePageOwnersInput;
|
|
53286
54377
|
};
|
|
@@ -53293,6 +54384,9 @@ export declare type MutationConfluenceLegacy_UpdatePushNotificationCustomSetting
|
|
|
53293
54384
|
export declare type MutationConfluenceLegacy_UpdatePushNotificationGroupSettingArgs = {
|
|
53294
54385
|
group: ConfluenceLegacy_PushNotificationGroupInputType;
|
|
53295
54386
|
};
|
|
54387
|
+
export declare type MutationConfluenceLegacy_UpdateRelationArgs = {
|
|
54388
|
+
input: ConfluenceLegacy_UpdateRelationInput;
|
|
54389
|
+
};
|
|
53296
54390
|
export declare type MutationConfluenceLegacy_UpdateSiteLookAndFeelArgs = {
|
|
53297
54391
|
input: ConfluenceLegacy_UpdateSiteLookAndFeelInput;
|
|
53298
54392
|
};
|
|
@@ -56083,6 +57177,7 @@ export declare type Query = {
|
|
|
56083
57177
|
confluenceLegacy_loomToken?: Maybe<ConfluenceLegacy_LoomToken>;
|
|
56084
57178
|
confluenceLegacy_loomUserStatus?: Maybe<ConfluenceLegacy_LoomUserStatus>;
|
|
56085
57179
|
confluenceLegacy_macroBodyRenderer?: Maybe<ConfluenceLegacy_MacroBody>;
|
|
57180
|
+
confluenceLegacy_mutationsPlaceholder?: Maybe<Scalars['String']['output']>;
|
|
56086
57181
|
confluenceLegacy_myVisitedPages?: Maybe<ConfluenceLegacy_MyVisitedPages>;
|
|
56087
57182
|
confluenceLegacy_myVisitedSpaces?: Maybe<ConfluenceLegacy_MyVisitedSpaces>;
|
|
56088
57183
|
confluenceLegacy_onboardingState?: Maybe<Array<ConfluenceLegacy_OnboardingState>>;
|
|
@@ -56093,12 +57188,14 @@ export declare type Query = {
|
|
|
56093
57188
|
confluenceLegacy_pageAnalyticsTimeseriesCount?: Maybe<ConfluenceLegacy_PageAnalyticsTimeseriesCount>;
|
|
56094
57189
|
confluenceLegacy_pageContextContentCreationMetadata?: Maybe<ConfluenceLegacy_ContentCreationMetadata>;
|
|
56095
57190
|
confluenceLegacy_pageDump?: Maybe<ConfluenceLegacy_Page>;
|
|
57191
|
+
confluenceLegacy_pageTreeCloudId?: Maybe<ConfluenceLegacy_PageTree_CloudId>;
|
|
56096
57192
|
confluenceLegacy_pageTreeVersion?: Maybe<Scalars['String']['output']>;
|
|
56097
57193
|
confluenceLegacy_pages?: Maybe<ConfluenceLegacy_PaginatedPageList>;
|
|
56098
57194
|
confluenceLegacy_paywallContentToDisable?: Maybe<ConfluenceLegacy_PaywallContentSingle>;
|
|
56099
57195
|
confluenceLegacy_paywallStatus?: Maybe<ConfluenceLegacy_PaywallStatus>;
|
|
56100
57196
|
confluenceLegacy_personalSpace?: Maybe<ConfluenceLegacy_Space>;
|
|
56101
57197
|
confluenceLegacy_popularFeed?: Maybe<ConfluenceLegacy_PaginatedPopularFeed>;
|
|
57198
|
+
confluenceLegacy_ptpage?: Maybe<ConfluenceLegacy_PtPage>;
|
|
56102
57199
|
confluenceLegacy_publicLinkOnboardingReference?: Maybe<ConfluenceLegacy_PublicLinkOnboardingReference>;
|
|
56103
57200
|
confluenceLegacy_publicLinkPage?: Maybe<ConfluenceLegacy_PublicLinkPage>;
|
|
56104
57201
|
confluenceLegacy_publicLinkPagesByCriteria?: Maybe<ConfluenceLegacy_PublicLinkPageConnection>;
|
|
@@ -56153,6 +57250,8 @@ export declare type Query = {
|
|
|
56153
57250
|
confluenceLegacy_templateMediaSession?: Maybe<ConfluenceLegacy_TemplateMediaSession>;
|
|
56154
57251
|
confluenceLegacy_templatePropertySetByTemplate?: Maybe<ConfluenceLegacy_TemplatePropertySet>;
|
|
56155
57252
|
confluenceLegacy_templates?: Maybe<ConfluenceLegacy_PaginatedContentTemplateList>;
|
|
57253
|
+
confluenceLegacy_tenant?: Maybe<ConfluenceLegacy_Tenant>;
|
|
57254
|
+
confluenceLegacy_tenantCloudId?: Maybe<ConfluenceLegacy_Tenant_CloudId>;
|
|
56156
57255
|
confluenceLegacy_tenantContext?: Maybe<ConfluenceLegacy_TenantContext>;
|
|
56157
57256
|
confluenceLegacy_timeseriesCount?: Maybe<ConfluenceLegacy_TimeseriesCount>;
|
|
56158
57257
|
confluenceLegacy_timeseriesPageBlogCount?: Maybe<ConfluenceLegacy_TimeseriesPageBlogCount>;
|
|
@@ -56206,6 +57305,7 @@ export declare type Query = {
|
|
|
56206
57305
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
56207
57306
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
56208
57307
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
57308
|
+
dataDepot: GraphDataDepotQuery;
|
|
56209
57309
|
devAi?: Maybe<DevAi>;
|
|
56210
57310
|
devOps?: Maybe<DevOps>;
|
|
56211
57311
|
devOpsMetrics?: Maybe<DevOpsMetrics>;
|
|
@@ -56928,6 +58028,9 @@ export declare type QueryConfluenceLegacy_PageDumpArgs = {
|
|
|
56928
58028
|
id: Scalars['ID']['input'];
|
|
56929
58029
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
56930
58030
|
};
|
|
58031
|
+
export declare type QueryConfluenceLegacy_PageTreeCloudIdArgs = {
|
|
58032
|
+
cloudId: Scalars['ID']['input'];
|
|
58033
|
+
};
|
|
56931
58034
|
export declare type QueryConfluenceLegacy_PageTreeVersionArgs = {
|
|
56932
58035
|
pageId?: InputMaybe<Scalars['ID']['input']>;
|
|
56933
58036
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -56955,6 +58058,13 @@ export declare type QueryConfluenceLegacy_PopularFeedArgs = {
|
|
|
56955
58058
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
56956
58059
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
56957
58060
|
};
|
|
58061
|
+
export declare type QueryConfluenceLegacy_PtpageArgs = {
|
|
58062
|
+
enablePaging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58063
|
+
id: Scalars['ID']['input'];
|
|
58064
|
+
pageTree?: InputMaybe<Scalars['Int']['input']>;
|
|
58065
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
58066
|
+
status?: InputMaybe<Array<InputMaybe<ConfluenceLegacy_PtGraphQlPageStatus>>>;
|
|
58067
|
+
};
|
|
56958
58068
|
export declare type QueryConfluenceLegacy_PublicLinkPageArgs = {
|
|
56959
58069
|
pageId: Scalars['ID']['input'];
|
|
56960
58070
|
};
|
|
@@ -57209,6 +58319,12 @@ export declare type QueryConfluenceLegacy_TemplatesArgs = {
|
|
|
57209
58319
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
57210
58320
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
57211
58321
|
};
|
|
58322
|
+
export declare type QueryConfluenceLegacy_TenantArgs = {
|
|
58323
|
+
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58324
|
+
};
|
|
58325
|
+
export declare type QueryConfluenceLegacy_TenantCloudIdArgs = {
|
|
58326
|
+
cloudId: Scalars['ID']['input'];
|
|
58327
|
+
};
|
|
57212
58328
|
export declare type QueryConfluenceLegacy_TimeseriesCountArgs = {
|
|
57213
58329
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
57214
58330
|
eventName: Array<ConfluenceLegacy_AnalyticsEventName>;
|
|
@@ -59551,6 +60667,7 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
59551
60667
|
title: Scalars['String']['output'];
|
|
59552
60668
|
type: SearchResultType;
|
|
59553
60669
|
url: Scalars['URL']['output'];
|
|
60670
|
+
useHydratedFields?: Maybe<Scalars['Boolean']['output']>;
|
|
59554
60671
|
};
|
|
59555
60672
|
export declare type SearchResultJiraIssueSocialSignalArgs = {
|
|
59556
60673
|
tenantId: Scalars['ID']['input'];
|
|
@@ -59586,6 +60703,7 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
59586
60703
|
title: Scalars['String']['output'];
|
|
59587
60704
|
type: SearchResultType;
|
|
59588
60705
|
url: Scalars['URL']['output'];
|
|
60706
|
+
useHydratedFields?: Maybe<Scalars['Boolean']['output']>;
|
|
59589
60707
|
};
|
|
59590
60708
|
export declare type SearchResultJiraProjectSocialSignalArgs = {
|
|
59591
60709
|
tenantId: Scalars['ID']['input'];
|
|
@@ -64725,16 +65843,19 @@ export declare type UpdateCompassFreeformUserDefinedParameterInput = {
|
|
|
64725
65843
|
};
|
|
64726
65844
|
export declare type UpdateCompassHasDescriptionScorecardCriteriaInput = {
|
|
64727
65845
|
id: Scalars['ID']['input'];
|
|
65846
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
64728
65847
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
64729
65848
|
};
|
|
64730
65849
|
export declare type UpdateCompassHasFieldScorecardCriteriaInput = {
|
|
64731
65850
|
fieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
64732
65851
|
id: Scalars['ID']['input'];
|
|
65852
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
64733
65853
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
64734
65854
|
};
|
|
64735
65855
|
export declare type UpdateCompassHasLinkScorecardCriteriaInput = {
|
|
64736
65856
|
id: Scalars['ID']['input'];
|
|
64737
65857
|
linkType?: InputMaybe<CompassLinkType>;
|
|
65858
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
64738
65859
|
textComparator?: InputMaybe<CompassCriteriaTextComparatorOptions>;
|
|
64739
65860
|
textComparatorValue?: InputMaybe<Scalars['String']['input']>;
|
|
64740
65861
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -64745,10 +65866,12 @@ export declare type UpdateCompassHasMetricValueCriteriaInput = {
|
|
|
64745
65866
|
comparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
64746
65867
|
id: Scalars['ID']['input'];
|
|
64747
65868
|
metricDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
65869
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
64748
65870
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
64749
65871
|
};
|
|
64750
65872
|
export declare type UpdateCompassHasOwnerScorecardCriteriaInput = {
|
|
64751
65873
|
id: Scalars['ID']['input'];
|
|
65874
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
64752
65875
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
64753
65876
|
};
|
|
64754
65877
|
export declare type UpdateCompassLinkInput = {
|