@forge/cli-shared 5.3.2 → 5.4.0-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 +6 -0
- package/out/graphql/graphql-types.d.ts +218 -519
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +11 -130
- package/out/service/feature-flag-service.d.ts +0 -1
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +0 -3
- package/out/ui/text.d.ts +1 -10
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -13
- package/package.json +1 -1
|
@@ -341,6 +341,7 @@ export declare type ActivitiesObject = Node & {
|
|
|
341
341
|
__typename?: 'ActivitiesObject';
|
|
342
342
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
343
343
|
containers?: Maybe<Array<ActivitiesContainer>>;
|
|
344
|
+
content?: Maybe<ConfluenceLegacyContent>;
|
|
344
345
|
contributors?: Maybe<Array<ActivitiesContributor>>;
|
|
345
346
|
events?: Maybe<Array<ActivitiesEvent>>;
|
|
346
347
|
extension?: Maybe<ActivitiesObjectExtension>;
|
|
@@ -2450,6 +2451,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
2450
2451
|
transactionAccount?: Maybe<CcpTransactionAccount>;
|
|
2451
2452
|
transactionAccountId?: Maybe<Scalars['ID']['output']>;
|
|
2452
2453
|
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
2454
|
+
usage?: Maybe<Array<Maybe<CcpEntitlementUsage>>>;
|
|
2453
2455
|
version?: Maybe<Scalars['Int']['output']>;
|
|
2454
2456
|
};
|
|
2455
2457
|
export declare type CcpEntitlementLatestUsageForChargeElementArgs = {
|
|
@@ -2495,6 +2497,10 @@ export declare type CcpEntitlementTemplate = {
|
|
|
2495
2497
|
provisionedBy?: Maybe<Scalars['String']['output']>;
|
|
2496
2498
|
version?: Maybe<Scalars['Int']['output']>;
|
|
2497
2499
|
};
|
|
2500
|
+
export declare type CcpEntitlementUsage = {
|
|
2501
|
+
__typename?: 'CcpEntitlementUsage';
|
|
2502
|
+
offeringChargeElement?: Maybe<CcpOfferingChargeElement>;
|
|
2503
|
+
};
|
|
2498
2504
|
export declare type CcpExperienceCapability = CommerceExperienceCapability & {
|
|
2499
2505
|
__typename?: 'CcpExperienceCapability';
|
|
2500
2506
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -2536,6 +2542,7 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
2536
2542
|
key?: Maybe<Scalars['ID']['output']>;
|
|
2537
2543
|
level?: Maybe<Scalars['Int']['output']>;
|
|
2538
2544
|
name?: Maybe<Scalars['String']['output']>;
|
|
2545
|
+
offeringChargeElements?: Maybe<Array<Maybe<CcpOfferingChargeElement>>>;
|
|
2539
2546
|
offeringGroup?: Maybe<CcpOfferingGroup>;
|
|
2540
2547
|
pricingType?: Maybe<CcpPricingType>;
|
|
2541
2548
|
productKey?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2549,6 +2556,20 @@ export declare type CcpOffering = CommerceOffering & Node & {
|
|
|
2549
2556
|
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
2550
2557
|
version?: Maybe<Scalars['Int']['output']>;
|
|
2551
2558
|
};
|
|
2559
|
+
export declare type CcpOfferingChargeElement = {
|
|
2560
|
+
__typename?: 'CcpOfferingChargeElement';
|
|
2561
|
+
catalogAccountId?: Maybe<Scalars['ID']['output']>;
|
|
2562
|
+
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
2563
|
+
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
2564
|
+
offering?: Maybe<CcpOffering>;
|
|
2565
|
+
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
2566
|
+
usageConfig?: Maybe<CcpOfferingChargeElementUsageConfig>;
|
|
2567
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
2568
|
+
};
|
|
2569
|
+
export declare type CcpOfferingChargeElementUsageConfig = {
|
|
2570
|
+
__typename?: 'CcpOfferingChargeElementUsageConfig';
|
|
2571
|
+
usageKey?: Maybe<Scalars['String']['output']>;
|
|
2572
|
+
};
|
|
2552
2573
|
export declare type CcpOfferingGroup = {
|
|
2553
2574
|
__typename?: 'CcpOfferingGroup';
|
|
2554
2575
|
catalogAccountId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2607,6 +2628,7 @@ export declare type CcpPricingPlanItem = {
|
|
|
2607
2628
|
chargeElement?: Maybe<Scalars['String']['output']>;
|
|
2608
2629
|
chargeType?: Maybe<CcpChargeType>;
|
|
2609
2630
|
cycle?: Maybe<CcpCycle>;
|
|
2631
|
+
offeringChargeElement?: Maybe<CcpOfferingChargeElement>;
|
|
2610
2632
|
prorateOnUsageChange?: Maybe<CcpProrateOnUsageChange>;
|
|
2611
2633
|
tiers?: Maybe<Array<Maybe<CcpPricingPlanTier>>>;
|
|
2612
2634
|
tiersMode?: Maybe<CcpTiersMode>;
|
|
@@ -3915,8 +3937,11 @@ export declare type CompassComponentTypeEdge = {
|
|
|
3915
3937
|
};
|
|
3916
3938
|
export declare type CompassComponentTypeObject = {
|
|
3917
3939
|
__typename?: 'CompassComponentTypeObject';
|
|
3940
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3918
3941
|
fieldDefinitions?: Maybe<CompassFieldDefinitionsResult>;
|
|
3942
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
3919
3943
|
id: Scalars['ID']['output'];
|
|
3944
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3920
3945
|
};
|
|
3921
3946
|
export declare type CompassComponentTypeQueryInput = {
|
|
3922
3947
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -4418,8 +4443,12 @@ export declare type CompassCustomPermissionConfig = {
|
|
|
4418
4443
|
};
|
|
4419
4444
|
export declare type CompassCustomPermissionConfigs = {
|
|
4420
4445
|
__typename?: 'CompassCustomPermissionConfigs';
|
|
4446
|
+
createCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4421
4447
|
createScorecards?: Maybe<CompassCustomPermissionConfig>;
|
|
4448
|
+
deleteCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4449
|
+
editCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4422
4450
|
modifyScorecard?: Maybe<CompassCustomPermissionConfig>;
|
|
4451
|
+
viewCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4423
4452
|
};
|
|
4424
4453
|
export declare type CompassCustomPermissionConfigsResult = CompassCustomPermissionConfigs | QueryError;
|
|
4425
4454
|
export declare enum CompassCustomPermissionPreset {
|
|
@@ -6821,10 +6850,6 @@ export declare type ConfluenceLegacyAllUpdatesFeedItem = {
|
|
|
6821
6850
|
content?: Maybe<ConfluenceLegacyContent>;
|
|
6822
6851
|
lastUpdate: ConfluenceLegacyAllUpdatesFeedEvent;
|
|
6823
6852
|
};
|
|
6824
|
-
export declare type ConfluenceLegacyAnalyticsCloudId = {
|
|
6825
|
-
__typename?: 'ConfluenceLegacyAnalyticsCloudId';
|
|
6826
|
-
cloudId: Scalars['ID']['output'];
|
|
6827
|
-
};
|
|
6828
6853
|
export declare enum ConfluenceLegacyAnalyticsCommentType {
|
|
6829
6854
|
Inline = "inline",
|
|
6830
6855
|
Page = "page"
|
|
@@ -7136,10 +7161,6 @@ export declare type ConfluenceLegacyChildContentTypesAvailable = {
|
|
|
7136
7161
|
comment?: Maybe<Scalars['Boolean']['output']>;
|
|
7137
7162
|
page?: Maybe<Scalars['Boolean']['output']>;
|
|
7138
7163
|
};
|
|
7139
|
-
export declare type ConfluenceLegacyCloudId = {
|
|
7140
|
-
__typename?: 'ConfluenceLegacyCloudId';
|
|
7141
|
-
cloudId: Scalars['ID']['output'];
|
|
7142
|
-
};
|
|
7143
7164
|
export declare type ConfluenceLegacyCollabTokenResponse = {
|
|
7144
7165
|
__typename?: 'ConfluenceLegacyCollabTokenResponse';
|
|
7145
7166
|
token: Scalars['String']['output'];
|
|
@@ -9282,10 +9303,6 @@ export declare type ConfluenceLegacyMutationResponse = {
|
|
|
9282
9303
|
__typename?: 'ConfluenceLegacyMutationResponse';
|
|
9283
9304
|
success: Scalars['Boolean']['output'];
|
|
9284
9305
|
};
|
|
9285
|
-
export declare type ConfluenceLegacyMutationsCloudId = {
|
|
9286
|
-
__typename?: 'ConfluenceLegacyMutationsCloudId';
|
|
9287
|
-
cloudId: Scalars['ID']['output'];
|
|
9288
|
-
};
|
|
9289
9306
|
export declare type ConfluenceLegacyMutationsLabel = {
|
|
9290
9307
|
__typename?: 'ConfluenceLegacyMutationsLabel';
|
|
9291
9308
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -10956,10 +10973,6 @@ export declare type ConfluenceLegacySmartUserFeatures = {
|
|
|
10956
10973
|
recommendedPeople?: Maybe<Array<Maybe<ConfluenceLegacyRecommendedPeopleItem>>>;
|
|
10957
10974
|
recommendedSpaces?: Maybe<Array<Maybe<ConfluenceLegacyRecommendedSpaceItem>>>;
|
|
10958
10975
|
};
|
|
10959
|
-
export declare type ConfluenceLegacySmartsCloudId = {
|
|
10960
|
-
__typename?: 'ConfluenceLegacySmartsCloudId';
|
|
10961
|
-
cloudId: Scalars['ID']['output'];
|
|
10962
|
-
};
|
|
10963
10976
|
export declare type ConfluenceLegacySnippet = {
|
|
10964
10977
|
__typename?: 'ConfluenceLegacySnippet';
|
|
10965
10978
|
body?: Maybe<Scalars['String']['output']>;
|
|
@@ -11682,10 +11695,6 @@ export declare type ConfluenceLegacyTenant = {
|
|
|
11682
11695
|
environment: ConfluenceLegacyEnvironment;
|
|
11683
11696
|
shard: Scalars['String']['output'];
|
|
11684
11697
|
};
|
|
11685
|
-
export declare type ConfluenceLegacyTenantCloudId = {
|
|
11686
|
-
__typename?: 'ConfluenceLegacyTenantCloudId';
|
|
11687
|
-
cloudId: Scalars['ID']['output'];
|
|
11688
|
-
};
|
|
11689
11698
|
export declare type ConfluenceLegacyTenantContext = {
|
|
11690
11699
|
__typename?: 'ConfluenceLegacyTenantContext';
|
|
11691
11700
|
baseUrl: Scalars['String']['output'];
|
|
@@ -13688,6 +13697,7 @@ export declare type ContentPlatformCallToAction = {
|
|
|
13688
13697
|
url?: Maybe<Scalars['String']['output']>;
|
|
13689
13698
|
valueProposition?: Maybe<Scalars['String']['output']>;
|
|
13690
13699
|
};
|
|
13700
|
+
export declare type ContentPlatformCallToActionAndPricingCallToActionMicrocopyUnion = ContentPlatformCallToAction | ContentPlatformPricingCallToActionMicrocopy;
|
|
13691
13701
|
export declare type ContentPlatformCallToActionMicrocopy = {
|
|
13692
13702
|
__typename?: 'ContentPlatformCallToActionMicrocopy';
|
|
13693
13703
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -13844,6 +13854,33 @@ export declare type ContentPlatformEmbeddedVideoAsset = {
|
|
|
13844
13854
|
embeddedVideoAssetName?: Maybe<Scalars['String']['output']>;
|
|
13845
13855
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13846
13856
|
};
|
|
13857
|
+
export declare type ContentPlatformFeature = {
|
|
13858
|
+
__typename?: 'ContentPlatformFeature';
|
|
13859
|
+
callOut?: Maybe<Scalars['String']['output']>;
|
|
13860
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13861
|
+
description?: Maybe<Scalars['JSON']['output']>;
|
|
13862
|
+
featureAdditionalInformation?: Maybe<Array<ContentPlatformFeatureAdditionalInformation>>;
|
|
13863
|
+
featureNameExternal?: Maybe<Scalars['String']['output']>;
|
|
13864
|
+
product?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
13865
|
+
relevantPlan?: Maybe<Array<ContentPlatformPlan>>;
|
|
13866
|
+
relevantUrl?: Maybe<Scalars['String']['output']>;
|
|
13867
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13868
|
+
};
|
|
13869
|
+
export declare type ContentPlatformFeatureAdditionalInformation = {
|
|
13870
|
+
__typename?: 'ContentPlatformFeatureAdditionalInformation';
|
|
13871
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13872
|
+
featureAdditionalInformation?: Maybe<Scalars['String']['output']>;
|
|
13873
|
+
relevantPlan?: Maybe<Array<ContentPlatformPlan>>;
|
|
13874
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13875
|
+
};
|
|
13876
|
+
export declare type ContentPlatformFeatureGroup = {
|
|
13877
|
+
__typename?: 'ContentPlatformFeatureGroup';
|
|
13878
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13879
|
+
featureGroupOneLiner?: Maybe<Scalars['String']['output']>;
|
|
13880
|
+
featureGroupTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
13881
|
+
features?: Maybe<Array<ContentPlatformFeature>>;
|
|
13882
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13883
|
+
};
|
|
13847
13884
|
export declare type ContentPlatformFeaturedVideo = {
|
|
13848
13885
|
__typename?: 'ContentPlatformFeaturedVideo';
|
|
13849
13886
|
callToActionText?: Maybe<Scalars['String']['output']>;
|
|
@@ -13905,6 +13942,13 @@ export declare type ContentPlatformFullTutorial = {
|
|
|
13905
13942
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13906
13943
|
whitePaperCta?: Maybe<Array<ContentPlatformCallToAction>>;
|
|
13907
13944
|
};
|
|
13945
|
+
export declare type ContentPlatformHighlightedFeature = {
|
|
13946
|
+
__typename?: 'ContentPlatformHighlightedFeature';
|
|
13947
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
13948
|
+
highlightedFeatureDetails?: Maybe<Scalars['JSON']['output']>;
|
|
13949
|
+
highlightedFeatureTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
13950
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
13951
|
+
};
|
|
13908
13952
|
export declare type ContentPlatformHubArticle = {
|
|
13909
13953
|
__typename?: 'ContentPlatformHubArticle';
|
|
13910
13954
|
articleBanner?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
@@ -14002,6 +14046,18 @@ export declare type ContentPlatformOrganization = {
|
|
|
14002
14046
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14003
14047
|
};
|
|
14004
14048
|
export declare type ContentPlatformOrganizationAndAuthorUnion = ContentPlatformAuthor | ContentPlatformOrganization;
|
|
14049
|
+
export declare type ContentPlatformPlan = {
|
|
14050
|
+
__typename?: 'ContentPlatformPlan';
|
|
14051
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14052
|
+
errors?: Maybe<Array<ContentPlatformPricingErrors>>;
|
|
14053
|
+
highlightedFeaturesContainer?: Maybe<Array<ContentPlatformHighlightedFeature>>;
|
|
14054
|
+
highlightedFeaturesTitle?: Maybe<Scalars['String']['output']>;
|
|
14055
|
+
microCta?: Maybe<Array<ContentPlatformPricingCallToActionMicrocopy>>;
|
|
14056
|
+
planOneLiner?: Maybe<Scalars['String']['output']>;
|
|
14057
|
+
planTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14058
|
+
relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
14059
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14060
|
+
};
|
|
14005
14061
|
export declare type ContentPlatformPlanBenefits = {
|
|
14006
14062
|
__typename?: 'ContentPlatformPlanBenefits';
|
|
14007
14063
|
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
@@ -14016,6 +14072,61 @@ export declare type ContentPlatformPlanBenefits = {
|
|
|
14016
14072
|
supportingAsset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
14017
14073
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14018
14074
|
};
|
|
14075
|
+
export declare type ContentPlatformPlanDetails = {
|
|
14076
|
+
__typename?: 'ContentPlatformPlanDetails';
|
|
14077
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14078
|
+
planAdditionalDetails?: Maybe<Scalars['JSON']['output']>;
|
|
14079
|
+
planAdditionalDetailsTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14080
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14081
|
+
};
|
|
14082
|
+
export declare type ContentPlatformPricing = {
|
|
14083
|
+
__typename?: 'ContentPlatformPricing';
|
|
14084
|
+
additionalDetails?: Maybe<Array<ContentPlatformPlanDetails>>;
|
|
14085
|
+
callToActionContainer?: Maybe<Array<ContentPlatformCallToActionAndPricingCallToActionMicrocopyUnion>>;
|
|
14086
|
+
compareFeatures?: Maybe<Array<ContentPlatformFeatureGroup>>;
|
|
14087
|
+
compareFeaturesTitle?: Maybe<Scalars['String']['output']>;
|
|
14088
|
+
comparePlans?: Maybe<Array<ContentPlatformPlan>>;
|
|
14089
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14090
|
+
datacenterPlans?: Maybe<Array<ContentPlatformPlan>>;
|
|
14091
|
+
getMoreDetailsTitle?: Maybe<Scalars['String']['output']>;
|
|
14092
|
+
headline?: Maybe<Scalars['JSON']['output']>;
|
|
14093
|
+
pricingTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14094
|
+
questions?: Maybe<Scalars['JSON']['output']>;
|
|
14095
|
+
relatedProduct?: Maybe<Array<ContentPlatformPricingProductName>>;
|
|
14096
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14097
|
+
};
|
|
14098
|
+
export declare type ContentPlatformPricingCallToActionMicrocopy = {
|
|
14099
|
+
__typename?: 'ContentPlatformPricingCallToActionMicrocopy';
|
|
14100
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14101
|
+
ctaButtonText?: Maybe<Scalars['String']['output']>;
|
|
14102
|
+
ctaMicrocopyTitleExternal?: Maybe<Scalars['String']['output']>;
|
|
14103
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14104
|
+
};
|
|
14105
|
+
export declare type ContentPlatformPricingErrors = {
|
|
14106
|
+
__typename?: 'ContentPlatformPricingErrors';
|
|
14107
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14108
|
+
errorText?: Maybe<Scalars['JSON']['output']>;
|
|
14109
|
+
errorTrigger?: Maybe<Scalars['String']['output']>;
|
|
14110
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14111
|
+
};
|
|
14112
|
+
export declare type ContentPlatformPricingProductName = {
|
|
14113
|
+
__typename?: 'ContentPlatformPricingProductName';
|
|
14114
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
14115
|
+
productName: Scalars['String']['output'];
|
|
14116
|
+
productNameId: Scalars['String']['output'];
|
|
14117
|
+
title: Scalars['String']['output'];
|
|
14118
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
14119
|
+
};
|
|
14120
|
+
export declare type ContentPlatformPricingResultEdge = {
|
|
14121
|
+
__typename?: 'ContentPlatformPricingResultEdge';
|
|
14122
|
+
cursor: Scalars['String']['output'];
|
|
14123
|
+
node: ContentPlatformPricing;
|
|
14124
|
+
};
|
|
14125
|
+
export declare type ContentPlatformPricingSearchConnection = {
|
|
14126
|
+
__typename?: 'ContentPlatformPricingSearchConnection';
|
|
14127
|
+
edges: Array<ContentPlatformPricingResultEdge>;
|
|
14128
|
+
pageInfo: PageInfo;
|
|
14129
|
+
};
|
|
14019
14130
|
export declare type ContentPlatformProTipComponent = {
|
|
14020
14131
|
__typename?: 'ContentPlatformProTipComponent';
|
|
14021
14132
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -19068,7 +19179,7 @@ export declare type ForgeAlertsRuleActivityLogs = {
|
|
|
19068
19179
|
ruleId?: Maybe<Scalars['String']['output']>;
|
|
19069
19180
|
};
|
|
19070
19181
|
export declare type ForgeAlertsRuleActivityLogsInput = {
|
|
19071
|
-
action?: InputMaybe<ForgeAlertsRuleActivityAction
|
|
19182
|
+
action?: InputMaybe<Array<InputMaybe<ForgeAlertsRuleActivityAction>>>;
|
|
19072
19183
|
actor?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
19073
19184
|
endTime: Scalars['String']['input'];
|
|
19074
19185
|
limit: Scalars['Int']['input'];
|
|
@@ -19105,6 +19216,7 @@ export declare type ForgeAlertsRuleData = {
|
|
|
19105
19216
|
filters?: Maybe<Array<ForgeAlertsRuleFiltersResponse>>;
|
|
19106
19217
|
id: Scalars['ID']['output'];
|
|
19107
19218
|
jobId?: Maybe<Scalars['String']['output']>;
|
|
19219
|
+
lastTriggeredAt?: Maybe<Scalars['String']['output']>;
|
|
19108
19220
|
metric?: Maybe<Scalars['String']['output']>;
|
|
19109
19221
|
modifiedAt?: Maybe<Scalars['String']['output']>;
|
|
19110
19222
|
modifiedBy: ForgeAlertsUserInfo;
|
|
@@ -19158,7 +19270,7 @@ export declare type ForgeAlertsRulesData = {
|
|
|
19158
19270
|
createdAt: Scalars['String']['output'];
|
|
19159
19271
|
enabled: Scalars['Boolean']['output'];
|
|
19160
19272
|
id: Scalars['ID']['output'];
|
|
19161
|
-
|
|
19273
|
+
lastTriggeredAt?: Maybe<Scalars['String']['output']>;
|
|
19162
19274
|
modifiedAt: Scalars['String']['output'];
|
|
19163
19275
|
name: Scalars['String']['output'];
|
|
19164
19276
|
responders: Array<ForgeAlertsUserInfo>;
|
|
@@ -20794,478 +20906,6 @@ export declare type GraphCreateSprintRetrospectivePageInput = {
|
|
|
20794
20906
|
to: Scalars['ID']['input'];
|
|
20795
20907
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
20796
20908
|
};
|
|
20797
|
-
export declare enum GraphDataDepotApprovalStatus {
|
|
20798
|
-
Approved = "APPROVED",
|
|
20799
|
-
Needswork = "NEEDSWORK",
|
|
20800
|
-
Unapproved = "UNAPPROVED"
|
|
20801
|
-
}
|
|
20802
|
-
export declare type GraphDataDepotAttachment = {
|
|
20803
|
-
__typename?: 'GraphDataDepotAttachment';
|
|
20804
|
-
byteSize: Scalars['Long']['output'];
|
|
20805
|
-
mimeType: Scalars['String']['output'];
|
|
20806
|
-
thumbnailUrl?: Maybe<Scalars['String']['output']>;
|
|
20807
|
-
url: Scalars['String']['output'];
|
|
20808
|
-
};
|
|
20809
|
-
export declare type GraphDataDepotBranch = {
|
|
20810
|
-
__typename?: 'GraphDataDepotBranch';
|
|
20811
|
-
branchId: Scalars['String']['output'];
|
|
20812
|
-
createPullRequestUrl?: Maybe<Scalars['String']['output']>;
|
|
20813
|
-
id: Scalars['ID']['output'];
|
|
20814
|
-
name: Scalars['String']['output'];
|
|
20815
|
-
repositoryId: Scalars['String']['output'];
|
|
20816
|
-
url: Scalars['String']['output'];
|
|
20817
|
-
};
|
|
20818
|
-
export declare type GraphDataDepotBranchReference = {
|
|
20819
|
-
__typename?: 'GraphDataDepotBranchReference';
|
|
20820
|
-
name: Scalars['String']['output'];
|
|
20821
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
20822
|
-
};
|
|
20823
|
-
export declare type GraphDataDepotBuildCommitReference = {
|
|
20824
|
-
__typename?: 'GraphDataDepotBuildCommitReference';
|
|
20825
|
-
id: Scalars['String']['output'];
|
|
20826
|
-
repositoryUri: Scalars['String']['output'];
|
|
20827
|
-
};
|
|
20828
|
-
export declare type GraphDataDepotBuildInfo = {
|
|
20829
|
-
__typename?: 'GraphDataDepotBuildInfo';
|
|
20830
|
-
buildNumber: Scalars['Long']['output'];
|
|
20831
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
20832
|
-
displayName: Scalars['String']['output'];
|
|
20833
|
-
duration?: Maybe<Scalars['Long']['output']>;
|
|
20834
|
-
id: Scalars['ID']['output'];
|
|
20835
|
-
pipelineId: Scalars['String']['output'];
|
|
20836
|
-
references?: Maybe<Array<GraphDataDepotBuildReferences>>;
|
|
20837
|
-
state: GraphDataDepotBuildState;
|
|
20838
|
-
testInfo?: Maybe<GraphDataDepotTestInfo>;
|
|
20839
|
-
url: Scalars['String']['output'];
|
|
20840
|
-
};
|
|
20841
|
-
export declare type GraphDataDepotBuildRefReference = {
|
|
20842
|
-
__typename?: 'GraphDataDepotBuildRefReference';
|
|
20843
|
-
name: Scalars['String']['output'];
|
|
20844
|
-
uri: Scalars['String']['output'];
|
|
20845
|
-
};
|
|
20846
|
-
export declare type GraphDataDepotBuildReferences = {
|
|
20847
|
-
__typename?: 'GraphDataDepotBuildReferences';
|
|
20848
|
-
commit?: Maybe<GraphDataDepotBuildCommitReference>;
|
|
20849
|
-
ref?: Maybe<GraphDataDepotBuildRefReference>;
|
|
20850
|
-
};
|
|
20851
|
-
export declare enum GraphDataDepotBuildState {
|
|
20852
|
-
Cancelled = "CANCELLED",
|
|
20853
|
-
Failed = "FAILED",
|
|
20854
|
-
InProgress = "IN_PROGRESS",
|
|
20855
|
-
Pending = "PENDING",
|
|
20856
|
-
Successful = "SUCCESSFUL",
|
|
20857
|
-
Unknown = "UNKNOWN"
|
|
20858
|
-
}
|
|
20859
|
-
export declare enum GraphDataDepotChangeType {
|
|
20860
|
-
Added = "ADDED",
|
|
20861
|
-
Copied = "COPIED",
|
|
20862
|
-
Deleted = "DELETED",
|
|
20863
|
-
Modified = "MODIFIED",
|
|
20864
|
-
Moved = "MOVED",
|
|
20865
|
-
Unknown = "UNKNOWN"
|
|
20866
|
-
}
|
|
20867
|
-
export declare type GraphDataDepotChapter = {
|
|
20868
|
-
__typename?: 'GraphDataDepotChapter';
|
|
20869
|
-
startTimeInSeconds: Scalars['Long']['output'];
|
|
20870
|
-
title: Scalars['String']['output'];
|
|
20871
|
-
};
|
|
20872
|
-
export declare type GraphDataDepotCommit = {
|
|
20873
|
-
__typename?: 'GraphDataDepotCommit';
|
|
20874
|
-
author: GraphDataDepotUser;
|
|
20875
|
-
commitId: Scalars['String']['output'];
|
|
20876
|
-
createdAt: Scalars['String']['output'];
|
|
20877
|
-
displayId: Scalars['String']['output'];
|
|
20878
|
-
fileInfo: GraphDataDepotFileInfo;
|
|
20879
|
-
flags: Array<GraphDataDepotCommitFlags>;
|
|
20880
|
-
hash: Scalars['String']['output'];
|
|
20881
|
-
id: Scalars['ID']['output'];
|
|
20882
|
-
message: Scalars['String']['output'];
|
|
20883
|
-
repositoryId: Scalars['String']['output'];
|
|
20884
|
-
url: Scalars['String']['output'];
|
|
20885
|
-
};
|
|
20886
|
-
export declare enum GraphDataDepotCommitFlags {
|
|
20887
|
-
MergeCommit = "MERGE_COMMIT"
|
|
20888
|
-
}
|
|
20889
|
-
export declare type GraphDataDepotConversation = {
|
|
20890
|
-
__typename?: 'GraphDataDepotConversation';
|
|
20891
|
-
createdBy?: Maybe<GraphDataDepotUser>;
|
|
20892
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
20893
|
-
displayName: Scalars['String']['output'];
|
|
20894
|
-
externalId: Scalars['String']['output'];
|
|
20895
|
-
id: Scalars['ID']['output'];
|
|
20896
|
-
isArchived: Scalars['Boolean']['output'];
|
|
20897
|
-
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
20898
|
-
memberCount?: Maybe<Scalars['Long']['output']>;
|
|
20899
|
-
members?: Maybe<Array<GraphDataDepotUser>>;
|
|
20900
|
-
membershipType: GraphDataDepotMembershipType;
|
|
20901
|
-
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
20902
|
-
topic?: Maybe<Scalars['String']['output']>;
|
|
20903
|
-
type: GraphDataDepotConversationType;
|
|
20904
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
20905
|
-
workspace: Scalars['String']['output'];
|
|
20906
|
-
};
|
|
20907
|
-
export declare enum GraphDataDepotConversationType {
|
|
20908
|
-
Channel = "CHANNEL",
|
|
20909
|
-
DirectMessage = "DIRECT_MESSAGE",
|
|
20910
|
-
GroupDirectMessage = "GROUP_DIRECT_MESSAGE"
|
|
20911
|
-
}
|
|
20912
|
-
export declare type GraphDataDepotCue = {
|
|
20913
|
-
__typename?: 'GraphDataDepotCue';
|
|
20914
|
-
endTimeInSeconds?: Maybe<Scalars['Float']['output']>;
|
|
20915
|
-
id?: Maybe<Scalars['String']['output']>;
|
|
20916
|
-
startTimeInSeconds: Scalars['Float']['output'];
|
|
20917
|
-
text: Scalars['String']['output'];
|
|
20918
|
-
};
|
|
20919
|
-
export declare type GraphDataDepotDeployment = {
|
|
20920
|
-
__typename?: 'GraphDataDepotDeployment';
|
|
20921
|
-
deploymentSequenceNumber: Scalars['Long']['output'];
|
|
20922
|
-
description: Scalars['String']['output'];
|
|
20923
|
-
displayName: Scalars['String']['output'];
|
|
20924
|
-
duration?: Maybe<Scalars['Long']['output']>;
|
|
20925
|
-
environment: GraphDataDepotEnvironment;
|
|
20926
|
-
id: Scalars['ID']['output'];
|
|
20927
|
-
label?: Maybe<Scalars['String']['output']>;
|
|
20928
|
-
pipeline: GraphDataDepotPipeline;
|
|
20929
|
-
state: GraphDataDepotDeploymentState;
|
|
20930
|
-
triggeredBy?: Maybe<GraphDataDepotUser>;
|
|
20931
|
-
url: Scalars['String']['output'];
|
|
20932
|
-
};
|
|
20933
|
-
export declare enum GraphDataDepotDeploymentState {
|
|
20934
|
-
Cancelled = "CANCELLED",
|
|
20935
|
-
Failed = "FAILED",
|
|
20936
|
-
InProgress = "IN_PROGRESS",
|
|
20937
|
-
Pending = "PENDING",
|
|
20938
|
-
RolledBack = "ROLLED_BACK",
|
|
20939
|
-
Successful = "SUCCESSFUL",
|
|
20940
|
-
Unknown = "UNKNOWN"
|
|
20941
|
-
}
|
|
20942
|
-
export declare type GraphDataDepotDesign = {
|
|
20943
|
-
__typename?: 'GraphDataDepotDesign';
|
|
20944
|
-
createdBy?: Maybe<GraphDataDepotUser>;
|
|
20945
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
20946
|
-
displayName: Scalars['String']['output'];
|
|
20947
|
-
externalId: Scalars['String']['output'];
|
|
20948
|
-
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
20949
|
-
id: Scalars['ID']['output'];
|
|
20950
|
-
inspectUrl?: Maybe<Scalars['String']['output']>;
|
|
20951
|
-
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
20952
|
-
liveEmbedUrl: Scalars['String']['output'];
|
|
20953
|
-
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
20954
|
-
status: GraphDataDepotDesignStatus;
|
|
20955
|
-
thumbnail?: Maybe<GraphDataDepotThumbnail>;
|
|
20956
|
-
type: GraphDataDepotDesignType;
|
|
20957
|
-
url: Scalars['String']['output'];
|
|
20958
|
-
};
|
|
20959
|
-
export declare enum GraphDataDepotDesignStatus {
|
|
20960
|
-
None = "NONE",
|
|
20961
|
-
ReadyForDevelopment = "READY_FOR_DEVELOPMENT",
|
|
20962
|
-
Unknown = "UNKNOWN"
|
|
20963
|
-
}
|
|
20964
|
-
export declare enum GraphDataDepotDesignType {
|
|
20965
|
-
Canvas = "CANVAS",
|
|
20966
|
-
File = "FILE",
|
|
20967
|
-
Group = "GROUP",
|
|
20968
|
-
Node = "NODE",
|
|
20969
|
-
Other = "OTHER",
|
|
20970
|
-
Prototype = "PROTOTYPE"
|
|
20971
|
-
}
|
|
20972
|
-
export declare type GraphDataDepotDocument = {
|
|
20973
|
-
__typename?: 'GraphDataDepotDocument';
|
|
20974
|
-
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
20975
|
-
collaborators?: Maybe<Array<GraphDataDepotUser>>;
|
|
20976
|
-
createdBy?: Maybe<GraphDataDepotUser>;
|
|
20977
|
-
displayName: Scalars['String']['output'];
|
|
20978
|
-
exportLinks?: Maybe<Array<GraphDataDepotExportLink>>;
|
|
20979
|
-
externalId: Scalars['String']['output'];
|
|
20980
|
-
hasChildren: Scalars['Boolean']['output'];
|
|
20981
|
-
id: Scalars['ID']['output'];
|
|
20982
|
-
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
20983
|
-
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
20984
|
-
thumbnail?: Maybe<GraphDataDepotThumbnail>;
|
|
20985
|
-
truncatedDisplayName: Scalars['Boolean']['output'];
|
|
20986
|
-
type: GraphDataDepotDocumentType;
|
|
20987
|
-
updateSequenceNumber: Scalars['Long']['output'];
|
|
20988
|
-
url: Scalars['String']['output'];
|
|
20989
|
-
};
|
|
20990
|
-
export declare enum GraphDataDepotDocumentCategory {
|
|
20991
|
-
Archive = "ARCHIVE",
|
|
20992
|
-
Audio = "AUDIO",
|
|
20993
|
-
Code = "CODE",
|
|
20994
|
-
Document = "DOCUMENT",
|
|
20995
|
-
Folder = "FOLDER",
|
|
20996
|
-
Form = "FORM",
|
|
20997
|
-
Image = "IMAGE",
|
|
20998
|
-
Other = "OTHER",
|
|
20999
|
-
Pdf = "PDF",
|
|
21000
|
-
Presentation = "PRESENTATION",
|
|
21001
|
-
Shortcut = "SHORTCUT",
|
|
21002
|
-
Spreadsheet = "SPREADSHEET",
|
|
21003
|
-
Video = "VIDEO",
|
|
21004
|
-
WebPage = "WEB_PAGE"
|
|
21005
|
-
}
|
|
21006
|
-
export declare type GraphDataDepotDocumentType = {
|
|
21007
|
-
__typename?: 'GraphDataDepotDocumentType';
|
|
21008
|
-
category: GraphDataDepotDocumentCategory;
|
|
21009
|
-
fileExtension?: Maybe<Scalars['String']['output']>;
|
|
21010
|
-
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
21011
|
-
mimeType?: Maybe<Scalars['String']['output']>;
|
|
21012
|
-
};
|
|
21013
|
-
export declare type GraphDataDepotEntities = {
|
|
21014
|
-
__typename?: 'GraphDataDepotEntities';
|
|
21015
|
-
branch: Array<GraphDataDepotBranch>;
|
|
21016
|
-
buildInfo: Array<GraphDataDepotBuildInfo>;
|
|
21017
|
-
commit: Array<GraphDataDepotCommit>;
|
|
21018
|
-
conversation: Array<GraphDataDepotConversation>;
|
|
21019
|
-
deployment: Array<GraphDataDepotDeployment>;
|
|
21020
|
-
design: Array<GraphDataDepotDesign>;
|
|
21021
|
-
document: Array<GraphDataDepotDocument>;
|
|
21022
|
-
featureFlag: Array<GraphDataDepotFeatureFlag>;
|
|
21023
|
-
message: Array<GraphDataDepotMessage>;
|
|
21024
|
-
pullRequest: Array<GraphDataDepotPullRequest>;
|
|
21025
|
-
remoteLink: Array<GraphDataDepotRemoteLink>;
|
|
21026
|
-
video: Array<GraphDataDepotVideo>;
|
|
21027
|
-
vulnerability: Array<GraphDataDepotVulnerability>;
|
|
21028
|
-
};
|
|
21029
|
-
export declare type GraphDataDepotEnvironment = {
|
|
21030
|
-
__typename?: 'GraphDataDepotEnvironment';
|
|
21031
|
-
displayName: Scalars['String']['output'];
|
|
21032
|
-
id: Scalars['String']['output'];
|
|
21033
|
-
type: GraphDataDepotEnvironmentType;
|
|
21034
|
-
};
|
|
21035
|
-
export declare enum GraphDataDepotEnvironmentType {
|
|
21036
|
-
Development = "DEVELOPMENT",
|
|
21037
|
-
Production = "PRODUCTION",
|
|
21038
|
-
Staging = "STAGING",
|
|
21039
|
-
Testing = "TESTING",
|
|
21040
|
-
Unmapped = "UNMAPPED"
|
|
21041
|
-
}
|
|
21042
|
-
export declare type GraphDataDepotExportLink = {
|
|
21043
|
-
__typename?: 'GraphDataDepotExportLink';
|
|
21044
|
-
mimeType: Scalars['String']['output'];
|
|
21045
|
-
url: Scalars['String']['output'];
|
|
21046
|
-
};
|
|
21047
|
-
export declare type GraphDataDepotFeatureFlag = {
|
|
21048
|
-
__typename?: 'GraphDataDepotFeatureFlag';
|
|
21049
|
-
details: Array<GraphDataDepotFeatureFlagDetail>;
|
|
21050
|
-
displayName?: Maybe<Scalars['String']['output']>;
|
|
21051
|
-
externalId: Scalars['String']['output'];
|
|
21052
|
-
id: Scalars['ID']['output'];
|
|
21053
|
-
key: Scalars['String']['output'];
|
|
21054
|
-
summary: GraphDataDepotFeatureFlagSummary;
|
|
21055
|
-
};
|
|
21056
|
-
export declare type GraphDataDepotFeatureFlagDetail = {
|
|
21057
|
-
__typename?: 'GraphDataDepotFeatureFlagDetail';
|
|
21058
|
-
environment: GraphDataDepotFeatureFlagEnvironment;
|
|
21059
|
-
status: GraphDataDepotFeatureFlagStatus;
|
|
21060
|
-
url: Scalars['String']['output'];
|
|
21061
|
-
};
|
|
21062
|
-
export declare type GraphDataDepotFeatureFlagEnvironment = {
|
|
21063
|
-
__typename?: 'GraphDataDepotFeatureFlagEnvironment';
|
|
21064
|
-
name: Scalars['String']['output'];
|
|
21065
|
-
type?: Maybe<Scalars['String']['output']>;
|
|
21066
|
-
};
|
|
21067
|
-
export declare type GraphDataDepotFeatureFlagRollout = {
|
|
21068
|
-
__typename?: 'GraphDataDepotFeatureFlagRollout';
|
|
21069
|
-
percentage?: Maybe<Scalars['Float']['output']>;
|
|
21070
|
-
rules?: Maybe<Scalars['Int']['output']>;
|
|
21071
|
-
text?: Maybe<Scalars['String']['output']>;
|
|
21072
|
-
};
|
|
21073
|
-
export declare type GraphDataDepotFeatureFlagStatus = {
|
|
21074
|
-
__typename?: 'GraphDataDepotFeatureFlagStatus';
|
|
21075
|
-
defaultValue?: Maybe<Scalars['String']['output']>;
|
|
21076
|
-
enabled: Scalars['Boolean']['output'];
|
|
21077
|
-
rollout?: Maybe<GraphDataDepotFeatureFlagRollout>;
|
|
21078
|
-
};
|
|
21079
|
-
export declare type GraphDataDepotFeatureFlagSummary = {
|
|
21080
|
-
__typename?: 'GraphDataDepotFeatureFlagSummary';
|
|
21081
|
-
status: GraphDataDepotFeatureFlagStatus;
|
|
21082
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
21083
|
-
};
|
|
21084
|
-
export declare type GraphDataDepotFile = {
|
|
21085
|
-
__typename?: 'GraphDataDepotFile';
|
|
21086
|
-
changeType: GraphDataDepotChangeType;
|
|
21087
|
-
linesAdded: Scalars['Int']['output'];
|
|
21088
|
-
linesRemoved: Scalars['Int']['output'];
|
|
21089
|
-
path: Scalars['String']['output'];
|
|
21090
|
-
url: Scalars['String']['output'];
|
|
21091
|
-
};
|
|
21092
|
-
export declare type GraphDataDepotFileInfo = {
|
|
21093
|
-
__typename?: 'GraphDataDepotFileInfo';
|
|
21094
|
-
fileCount: Scalars['Int']['output'];
|
|
21095
|
-
files: Array<GraphDataDepotFile>;
|
|
21096
|
-
};
|
|
21097
|
-
export declare enum GraphDataDepotMembershipType {
|
|
21098
|
-
Private = "PRIVATE",
|
|
21099
|
-
Public = "PUBLIC"
|
|
21100
|
-
}
|
|
21101
|
-
export declare type GraphDataDepotMessage = {
|
|
21102
|
-
__typename?: 'GraphDataDepotMessage';
|
|
21103
|
-
attachments?: Maybe<Array<GraphDataDepotAttachment>>;
|
|
21104
|
-
createdBy?: Maybe<GraphDataDepotUser>;
|
|
21105
|
-
displayName?: Maybe<Scalars['String']['output']>;
|
|
21106
|
-
externalId: Scalars['String']['output'];
|
|
21107
|
-
hidden: Scalars['Boolean']['output'];
|
|
21108
|
-
id: Scalars['ID']['output'];
|
|
21109
|
-
isPinned: Scalars['Boolean']['output'];
|
|
21110
|
-
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
21111
|
-
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
21112
|
-
thumbnail?: Maybe<GraphDataDepotThumbnail>;
|
|
21113
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
21114
|
-
};
|
|
21115
|
-
export declare type GraphDataDepotPipeline = {
|
|
21116
|
-
__typename?: 'GraphDataDepotPipeline';
|
|
21117
|
-
displayName: Scalars['String']['output'];
|
|
21118
|
-
id: Scalars['String']['output'];
|
|
21119
|
-
url: Scalars['String']['output'];
|
|
21120
|
-
};
|
|
21121
|
-
export declare type GraphDataDepotPullRequest = {
|
|
21122
|
-
__typename?: 'GraphDataDepotPullRequest';
|
|
21123
|
-
author: GraphDataDepotUser;
|
|
21124
|
-
commentCount: Scalars['Int']['output'];
|
|
21125
|
-
destinationBranch?: Maybe<GraphDataDepotBranchReference>;
|
|
21126
|
-
displayId: Scalars['String']['output'];
|
|
21127
|
-
id: Scalars['ID']['output'];
|
|
21128
|
-
pullRequestId: Scalars['String']['output'];
|
|
21129
|
-
repositoryId: Scalars['String']['output'];
|
|
21130
|
-
reviewers: Array<GraphDataDepotReviewer>;
|
|
21131
|
-
sourceBranch: GraphDataDepotBranchReference;
|
|
21132
|
-
status: GraphDataDepotPullRequestStatus;
|
|
21133
|
-
supportedActions?: Maybe<Array<Scalars['String']['output']>>;
|
|
21134
|
-
tasksCount?: Maybe<Scalars['Int']['output']>;
|
|
21135
|
-
title: Scalars['String']['output'];
|
|
21136
|
-
url: Scalars['String']['output'];
|
|
21137
|
-
};
|
|
21138
|
-
export declare enum GraphDataDepotPullRequestStatus {
|
|
21139
|
-
Declined = "DECLINED",
|
|
21140
|
-
Draft = "DRAFT",
|
|
21141
|
-
Merged = "MERGED",
|
|
21142
|
-
Open = "OPEN",
|
|
21143
|
-
Unknown = "UNKNOWN"
|
|
21144
|
-
}
|
|
21145
|
-
export declare type GraphDataDepotQuery = {
|
|
21146
|
-
__typename?: 'GraphDataDepotQuery';
|
|
21147
|
-
entities: GraphDataDepotEntities;
|
|
21148
|
-
};
|
|
21149
|
-
export declare type GraphDataDepotQueryEntitiesArgs = {
|
|
21150
|
-
ids: Array<Scalars['ID']['input']>;
|
|
21151
|
-
};
|
|
21152
|
-
export declare type GraphDataDepotRemoteLink = {
|
|
21153
|
-
__typename?: 'GraphDataDepotRemoteLink';
|
|
21154
|
-
actionIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
21155
|
-
assignee?: Maybe<GraphDataDepotUser>;
|
|
21156
|
-
attributeMap?: Maybe<Array<GraphDataDepotRemoteLinkAttributeTuple>>;
|
|
21157
|
-
author?: Maybe<GraphDataDepotUser>;
|
|
21158
|
-
category?: Maybe<Scalars['String']['output']>;
|
|
21159
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
21160
|
-
displayName: Scalars['String']['output'];
|
|
21161
|
-
id: Scalars['ID']['output'];
|
|
21162
|
-
remoteLinkId: Scalars['String']['output'];
|
|
21163
|
-
status?: Maybe<GraphDataDepotRemoteLinkStatus>;
|
|
21164
|
-
type: Scalars['String']['output'];
|
|
21165
|
-
url: Scalars['String']['output'];
|
|
21166
|
-
};
|
|
21167
|
-
export declare type GraphDataDepotRemoteLinkAttributeTuple = {
|
|
21168
|
-
__typename?: 'GraphDataDepotRemoteLinkAttributeTuple';
|
|
21169
|
-
key: Scalars['String']['output'];
|
|
21170
|
-
value: Scalars['String']['output'];
|
|
21171
|
-
};
|
|
21172
|
-
export declare type GraphDataDepotRemoteLinkStatus = {
|
|
21173
|
-
__typename?: 'GraphDataDepotRemoteLinkStatus';
|
|
21174
|
-
appearance: Scalars['String']['output'];
|
|
21175
|
-
label: Scalars['String']['output'];
|
|
21176
|
-
};
|
|
21177
|
-
export declare type GraphDataDepotReviewer = {
|
|
21178
|
-
__typename?: 'GraphDataDepotReviewer';
|
|
21179
|
-
approvalStatus: GraphDataDepotApprovalStatus;
|
|
21180
|
-
user?: Maybe<GraphDataDepotUser>;
|
|
21181
|
-
};
|
|
21182
|
-
export declare type GraphDataDepotTestInfo = {
|
|
21183
|
-
__typename?: 'GraphDataDepotTestInfo';
|
|
21184
|
-
numberFailed: Scalars['Int']['output'];
|
|
21185
|
-
numberPassed: Scalars['Int']['output'];
|
|
21186
|
-
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
21187
|
-
totalNumber: Scalars['Int']['output'];
|
|
21188
|
-
};
|
|
21189
|
-
export declare type GraphDataDepotThumbnail = {
|
|
21190
|
-
__typename?: 'GraphDataDepotThumbnail';
|
|
21191
|
-
externalUrl?: Maybe<Scalars['String']['output']>;
|
|
21192
|
-
};
|
|
21193
|
-
export declare type GraphDataDepotTrack = {
|
|
21194
|
-
__typename?: 'GraphDataDepotTrack';
|
|
21195
|
-
cues: Array<GraphDataDepotCue>;
|
|
21196
|
-
locale?: Maybe<Scalars['String']['output']>;
|
|
21197
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
21198
|
-
};
|
|
21199
|
-
export declare type GraphDataDepotUser = {
|
|
21200
|
-
__typename?: 'GraphDataDepotUser';
|
|
21201
|
-
thirdPartyUser?: Maybe<ThirdPartyUser>;
|
|
21202
|
-
user?: Maybe<User>;
|
|
21203
|
-
};
|
|
21204
|
-
export declare type GraphDataDepotVideo = {
|
|
21205
|
-
__typename?: 'GraphDataDepotVideo';
|
|
21206
|
-
chapters?: Maybe<Array<GraphDataDepotChapter>>;
|
|
21207
|
-
commentCount?: Maybe<Scalars['Long']['output']>;
|
|
21208
|
-
createdBy?: Maybe<GraphDataDepotUser>;
|
|
21209
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
21210
|
-
displayName: Scalars['String']['output'];
|
|
21211
|
-
durationInSeconds?: Maybe<Scalars['Long']['output']>;
|
|
21212
|
-
embedUrl: Scalars['String']['output'];
|
|
21213
|
-
externalId: Scalars['String']['output'];
|
|
21214
|
-
height?: Maybe<Scalars['Long']['output']>;
|
|
21215
|
-
id: Scalars['ID']['output'];
|
|
21216
|
-
lastUpdatedBy?: Maybe<GraphDataDepotUser>;
|
|
21217
|
-
owners?: Maybe<Array<GraphDataDepotUser>>;
|
|
21218
|
-
textTracks?: Maybe<Array<GraphDataDepotTrack>>;
|
|
21219
|
-
thumbnailUrl: Scalars['String']['output'];
|
|
21220
|
-
url: Scalars['String']['output'];
|
|
21221
|
-
width?: Maybe<Scalars['Long']['output']>;
|
|
21222
|
-
};
|
|
21223
|
-
export declare type GraphDataDepotVulnerability = {
|
|
21224
|
-
__typename?: 'GraphDataDepotVulnerability';
|
|
21225
|
-
additionalInfo?: Maybe<GraphDataDepotVulnerabilityAdditionalInfo>;
|
|
21226
|
-
description: Scalars['String']['output'];
|
|
21227
|
-
displayName: Scalars['String']['output'];
|
|
21228
|
-
externalId: Scalars['String']['output'];
|
|
21229
|
-
id: Scalars['ID']['output'];
|
|
21230
|
-
identifiers?: Maybe<Array<GraphDataDepotVulnerabilityIdentifier>>;
|
|
21231
|
-
severity: GraphDataDepotVulnerabilitySeverity;
|
|
21232
|
-
status: GraphDataDepotVulnerabilityStatus;
|
|
21233
|
-
type: GraphDataDepotVulnerabilityType;
|
|
21234
|
-
url: Scalars['String']['output'];
|
|
21235
|
-
};
|
|
21236
|
-
export declare type GraphDataDepotVulnerabilityAdditionalInfo = {
|
|
21237
|
-
__typename?: 'GraphDataDepotVulnerabilityAdditionalInfo';
|
|
21238
|
-
content: Scalars['String']['output'];
|
|
21239
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
21240
|
-
};
|
|
21241
|
-
export declare type GraphDataDepotVulnerabilityIdentifier = {
|
|
21242
|
-
__typename?: 'GraphDataDepotVulnerabilityIdentifier';
|
|
21243
|
-
displayName: Scalars['String']['output'];
|
|
21244
|
-
url?: Maybe<Scalars['String']['output']>;
|
|
21245
|
-
};
|
|
21246
|
-
export declare type GraphDataDepotVulnerabilitySeverity = {
|
|
21247
|
-
__typename?: 'GraphDataDepotVulnerabilitySeverity';
|
|
21248
|
-
level: GraphDataDepotVulnerabilitySeverityLevel;
|
|
21249
|
-
};
|
|
21250
|
-
export declare enum GraphDataDepotVulnerabilitySeverityLevel {
|
|
21251
|
-
Critical = "CRITICAL",
|
|
21252
|
-
High = "HIGH",
|
|
21253
|
-
Low = "LOW",
|
|
21254
|
-
Medium = "MEDIUM",
|
|
21255
|
-
Unknown = "UNKNOWN"
|
|
21256
|
-
}
|
|
21257
|
-
export declare enum GraphDataDepotVulnerabilityStatus {
|
|
21258
|
-
Closed = "CLOSED",
|
|
21259
|
-
Ignored = "IGNORED",
|
|
21260
|
-
Open = "OPEN",
|
|
21261
|
-
Unknown = "UNKNOWN"
|
|
21262
|
-
}
|
|
21263
|
-
export declare enum GraphDataDepotVulnerabilityType {
|
|
21264
|
-
Dast = "DAST",
|
|
21265
|
-
Sast = "SAST",
|
|
21266
|
-
Sca = "SCA",
|
|
21267
|
-
Unknown = "UNKNOWN"
|
|
21268
|
-
}
|
|
21269
20909
|
export declare type GraphGeneric = Node & {
|
|
21270
20910
|
__typename?: 'GraphGeneric';
|
|
21271
20911
|
data?: Maybe<GraphRelationshipNodeData>;
|
|
@@ -35284,6 +34924,7 @@ export declare enum HelpCenterPortalsType {
|
|
|
35284
34924
|
export declare type HelpCenterQueryApi = {
|
|
35285
34925
|
__typename?: 'HelpCenterQueryApi';
|
|
35286
34926
|
getHelpDeskById?: Maybe<HelpCenterHelpDeskQueryResult>;
|
|
34927
|
+
helpCenterByHoistedProjectId?: Maybe<HelpCenterQueryResult>;
|
|
35287
34928
|
helpCenterById?: Maybe<HelpCenterQueryResult>;
|
|
35288
34929
|
helpCenterReportingById?: Maybe<HelpCenterReportingResult>;
|
|
35289
34930
|
helpCenterTopicById?: Maybe<HelpCenterTopicResult>;
|
|
@@ -35297,6 +34938,9 @@ export declare type HelpCenterQueryApiGetHelpDeskByIdArgs = {
|
|
|
35297
34938
|
helpCenterAri: Scalars['ID']['input'];
|
|
35298
34939
|
helpDeskId: Scalars['ID']['input'];
|
|
35299
34940
|
};
|
|
34941
|
+
export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdArgs = {
|
|
34942
|
+
projectAri: Scalars['ID']['input'];
|
|
34943
|
+
};
|
|
35300
34944
|
export declare type HelpCenterQueryApiHelpCenterByIdArgs = {
|
|
35301
34945
|
helpCenterAri: Scalars['ID']['input'];
|
|
35302
34946
|
};
|
|
@@ -35551,6 +35195,7 @@ export declare type HelpExternalResourcesResult = HelpExternalResourceQueryError
|
|
|
35551
35195
|
export declare type HelpLayout = Node & {
|
|
35552
35196
|
__typename?: 'HelpLayout';
|
|
35553
35197
|
id: Scalars['ID']['output'];
|
|
35198
|
+
reloadOnPublish?: Maybe<Scalars['Boolean']['output']>;
|
|
35554
35199
|
sections?: Maybe<HelpLayoutSectionConnection>;
|
|
35555
35200
|
};
|
|
35556
35201
|
export declare type HelpLayoutSectionsArgs = {
|
|
@@ -38360,6 +38005,7 @@ export declare type JiraBoard = Node & {
|
|
|
38360
38005
|
boardType?: Maybe<JiraBoardType>;
|
|
38361
38006
|
boardUrl?: Maybe<Scalars['URL']['output']>;
|
|
38362
38007
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
38008
|
+
defaultNavigationItem?: Maybe<JiraNavigationItemResult>;
|
|
38363
38009
|
favouriteValue?: Maybe<JiraFavouriteValue>;
|
|
38364
38010
|
id: Scalars['ID']['output'];
|
|
38365
38011
|
lastViewedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
@@ -42499,6 +42145,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
42499
42145
|
JiraColorField?: InputMaybe<Array<JiraUpdateColorFieldInput>>;
|
|
42500
42146
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
42501
42147
|
JiraConnectNumberField?: InputMaybe<Array<JiraUpdateNumberFieldInput>>;
|
|
42148
|
+
JiraConnectRichTextField?: InputMaybe<Array<JiraUpdateRichTextFieldInput>>;
|
|
42502
42149
|
JiraConnectSingleSelectField?: InputMaybe<Array<JiraUpdateSingleSelectFieldInput>>;
|
|
42503
42150
|
JiraConnectTextField?: InputMaybe<Array<JiraUpdateSingleLineTextFieldInput>>;
|
|
42504
42151
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
@@ -43252,6 +42899,7 @@ export declare type JiraLabelsField = JiraIssueField & JiraIssueFieldConfigurati
|
|
|
43252
42899
|
export declare type JiraLabelsFieldLabelsArgs = {
|
|
43253
42900
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
43254
42901
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
42902
|
+
currentProjectOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
43255
42903
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43256
42904
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
43257
42905
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -43796,6 +43444,7 @@ export declare type JiraMutation = {
|
|
|
43796
43444
|
updateJiraVersionPosition?: Maybe<JiraUpdateVersionPayload>;
|
|
43797
43445
|
updateJiraVersionRichTextSectionContent?: Maybe<JiraUpdateVersionPayload>;
|
|
43798
43446
|
updateJiraVersionRichTextSectionTitle?: Maybe<JiraUpdateVersionPayload>;
|
|
43447
|
+
updateJiraViewConfiguration?: Maybe<JiraUpdateViewConfigPayload>;
|
|
43799
43448
|
updateJwmFilter?: Maybe<JiraWorkManagementUpdateFilterPayload>;
|
|
43800
43449
|
updateJwmOverview?: Maybe<JiraWorkManagementGiraUpdateOverviewPayload>;
|
|
43801
43450
|
updateLabelsField?: Maybe<JiraLabelsFieldPayload>;
|
|
@@ -44190,6 +43839,9 @@ export declare type JiraMutationUpdateJiraVersionRichTextSectionContentArgs = {
|
|
|
44190
43839
|
export declare type JiraMutationUpdateJiraVersionRichTextSectionTitleArgs = {
|
|
44191
43840
|
input: JiraUpdateVersionRichTextSectionTitleInput;
|
|
44192
43841
|
};
|
|
43842
|
+
export declare type JiraMutationUpdateJiraViewConfigurationArgs = {
|
|
43843
|
+
input?: InputMaybe<JiraUpdateViewConfigInput>;
|
|
43844
|
+
};
|
|
44193
43845
|
export declare type JiraMutationUpdateJwmFilterArgs = {
|
|
44194
43846
|
input: JiraWorkManagementUpdateFilterInput;
|
|
44195
43847
|
};
|
|
@@ -44381,6 +44033,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
44381
44033
|
App = "APP",
|
|
44382
44034
|
Approvals = "APPROVALS",
|
|
44383
44035
|
Apps = "APPS",
|
|
44036
|
+
ArchivedIssues = "ARCHIVED_ISSUES",
|
|
44384
44037
|
Attachments = "ATTACHMENTS",
|
|
44385
44038
|
Backlog = "BACKLOG",
|
|
44386
44039
|
Board = "BOARD",
|
|
@@ -49892,6 +49545,7 @@ export declare type JiraUpdateFormattingRulePayload = Payload & {
|
|
|
49892
49545
|
__typename?: 'JiraUpdateFormattingRulePayload';
|
|
49893
49546
|
errors?: Maybe<Array<MutationError>>;
|
|
49894
49547
|
success: Scalars['Boolean']['output'];
|
|
49548
|
+
updatedRule?: Maybe<JiraFormattingRule>;
|
|
49895
49549
|
};
|
|
49896
49550
|
export declare type JiraUpdateGlobalNotificationPreferencesInput = {
|
|
49897
49551
|
preferences: Array<JiraNotificationPreferenceInput>;
|
|
@@ -50150,6 +49804,16 @@ export declare type JiraUpdateVersionWarningConfigPayload = Payload & {
|
|
|
50150
49804
|
export declare type JiraUpdateVersionWarningConfigPayloadVersionArgs = {
|
|
50151
49805
|
id: Scalars['ID']['input'];
|
|
50152
49806
|
};
|
|
49807
|
+
export declare type JiraUpdateViewConfigInput = {
|
|
49808
|
+
endDateFieldId?: InputMaybe<Scalars['String']['input']>;
|
|
49809
|
+
id: Scalars['ID']['input'];
|
|
49810
|
+
startDateFieldId?: InputMaybe<Scalars['String']['input']>;
|
|
49811
|
+
};
|
|
49812
|
+
export declare type JiraUpdateViewConfigPayload = Payload & {
|
|
49813
|
+
__typename?: 'JiraUpdateViewConfigPayload';
|
|
49814
|
+
errors?: Maybe<Array<MutationError>>;
|
|
49815
|
+
success: Scalars['Boolean']['output'];
|
|
49816
|
+
};
|
|
50153
49817
|
export declare type JiraUpdateVotesFieldInput = {
|
|
50154
49818
|
id: Scalars['ID']['input'];
|
|
50155
49819
|
operation: JiraVotesFieldOperationInput;
|
|
@@ -50302,6 +49966,9 @@ export declare type JiraUserPreferences = {
|
|
|
50302
49966
|
jqlBuilderSearchMode?: Maybe<JiraJqlBuilderSearchMode>;
|
|
50303
49967
|
projectListRightPanelState?: Maybe<JiraProjectListRightPanelState>;
|
|
50304
49968
|
};
|
|
49969
|
+
export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
|
|
49970
|
+
projectKey: Scalars['String']['input'];
|
|
49971
|
+
};
|
|
50305
49972
|
export declare type JiraUserPreferencesIssueViewPinnedFieldsArgs = {
|
|
50306
49973
|
projectKey: Scalars['String']['input'];
|
|
50307
49974
|
};
|
|
@@ -52240,6 +51907,9 @@ export declare type KnowledgeDiscoveryAdminhubBookmarkConnection = {
|
|
|
52240
51907
|
nodes?: Maybe<Array<KnowledgeDiscoveryAdminhubBookmark>>;
|
|
52241
51908
|
pageInfo: KnowledgeDiscoveryPageInfo;
|
|
52242
51909
|
};
|
|
51910
|
+
export declare type KnowledgeDiscoveryAdminhubBookmarkFailureMetadata = {
|
|
51911
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
51912
|
+
};
|
|
52243
51913
|
export declare type KnowledgeDiscoveryAdminhubBookmarkProperties = {
|
|
52244
51914
|
__typename?: 'KnowledgeDiscoveryAdminhubBookmarkProperties';
|
|
52245
51915
|
cloudId: Scalars['String']['output'];
|
|
@@ -52258,7 +51928,24 @@ export declare type KnowledgeDiscoveryBookmark = {
|
|
|
52258
51928
|
__typename?: 'KnowledgeDiscoveryBookmark';
|
|
52259
51929
|
url?: Maybe<Scalars['String']['output']>;
|
|
52260
51930
|
};
|
|
51931
|
+
export declare type KnowledgeDiscoveryBookmarkCollisionFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
51932
|
+
__typename?: 'KnowledgeDiscoveryBookmarkCollisionFailureMetadata';
|
|
51933
|
+
conflictingAdminhubBookmarkId?: Maybe<Scalars['ID']['output']>;
|
|
51934
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
51935
|
+
keyPhrase?: Maybe<Scalars['String']['output']>;
|
|
51936
|
+
};
|
|
51937
|
+
export declare type KnowledgeDiscoveryBookmarkMutationErrorExtension = MutationErrorExtension & {
|
|
51938
|
+
__typename?: 'KnowledgeDiscoveryBookmarkMutationErrorExtension';
|
|
51939
|
+
bookmarkFailureMetadata?: Maybe<KnowledgeDiscoveryAdminhubBookmarkFailureMetadata>;
|
|
51940
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
51941
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
51942
|
+
};
|
|
52261
51943
|
export declare type KnowledgeDiscoveryBookmarkResult = KnowledgeDiscoveryBookmark | QueryError;
|
|
51944
|
+
export declare type KnowledgeDiscoveryBookmarkValidationFailureMetadata = KnowledgeDiscoveryAdminhubBookmarkFailureMetadata & {
|
|
51945
|
+
__typename?: 'KnowledgeDiscoveryBookmarkValidationFailureMetadata';
|
|
51946
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
51947
|
+
keyPhrase?: Maybe<Scalars['String']['output']>;
|
|
51948
|
+
};
|
|
52262
51949
|
export declare type KnowledgeDiscoveryConfluenceBlogpost = KnowledgeDiscoveryEntity & {
|
|
52263
51950
|
__typename?: 'KnowledgeDiscoveryConfluenceBlogpost';
|
|
52264
51951
|
confluenceBlogpost?: Maybe<ConfluenceBlogPost>;
|
|
@@ -52414,6 +52101,7 @@ export declare type KnowledgeDiscoveryMutationApi = {
|
|
|
52414
52101
|
createBookmark?: Maybe<KnowledgeDiscoveryCreateAdminhubBookmarkPayload>;
|
|
52415
52102
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
52416
52103
|
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
52104
|
+
updateBookmark?: Maybe<KnowledgeDiscoveryUpdateAdminhubBookmarkPayload>;
|
|
52417
52105
|
};
|
|
52418
52106
|
export declare type KnowledgeDiscoveryMutationApiCreateBookmarkArgs = {
|
|
52419
52107
|
input: KnowledgeDiscoveryCreateAdminhubBookmarkInput;
|
|
@@ -52424,6 +52112,9 @@ export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
|
|
|
52424
52112
|
export declare type KnowledgeDiscoveryMutationApiDeleteBookmarksArgs = {
|
|
52425
52113
|
input: KnowledgeDiscoveryDeleteBookmarksInput;
|
|
52426
52114
|
};
|
|
52115
|
+
export declare type KnowledgeDiscoveryMutationApiUpdateBookmarkArgs = {
|
|
52116
|
+
input: KnowledgeDiscoveryUpdateAdminhubBookmarkInput;
|
|
52117
|
+
};
|
|
52427
52118
|
export declare type KnowledgeDiscoveryPageInfo = {
|
|
52428
52119
|
__typename?: 'KnowledgeDiscoveryPageInfo';
|
|
52429
52120
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -52546,6 +52237,22 @@ export declare enum KnowledgeDiscoveryTopicType {
|
|
|
52546
52237
|
Program = "PROGRAM",
|
|
52547
52238
|
Team = "TEAM"
|
|
52548
52239
|
}
|
|
52240
|
+
export declare type KnowledgeDiscoveryUpdateAdminhubBookmarkInput = {
|
|
52241
|
+
bookmarkAdminhubId: Scalars['ID']['input'];
|
|
52242
|
+
cloudId: Scalars['ID']['input'];
|
|
52243
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
52244
|
+
keyPhrases?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
52245
|
+
orgId: Scalars['String']['input'];
|
|
52246
|
+
title: Scalars['String']['input'];
|
|
52247
|
+
url: Scalars['String']['input'];
|
|
52248
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
52249
|
+
};
|
|
52250
|
+
export declare type KnowledgeDiscoveryUpdateAdminhubBookmarkPayload = Payload & {
|
|
52251
|
+
__typename?: 'KnowledgeDiscoveryUpdateAdminhubBookmarkPayload';
|
|
52252
|
+
adminhubBookmark?: Maybe<KnowledgeDiscoveryAdminhubBookmark>;
|
|
52253
|
+
errors?: Maybe<Array<MutationError>>;
|
|
52254
|
+
success: Scalars['Boolean']['output'];
|
|
52255
|
+
};
|
|
52549
52256
|
export declare type KnowledgeDiscoveryUser = KnowledgeDiscoveryEntity & {
|
|
52550
52257
|
__typename?: 'KnowledgeDiscoveryUser';
|
|
52551
52258
|
id: Scalars['ID']['output'];
|
|
@@ -52593,6 +52300,7 @@ export declare type LogDetails = {
|
|
|
52593
52300
|
};
|
|
52594
52301
|
export declare type LogQueryInput = {
|
|
52595
52302
|
appVersion?: InputMaybe<Scalars['String']['input']>;
|
|
52303
|
+
appVersions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
52596
52304
|
dates?: InputMaybe<DateSearchInput>;
|
|
52597
52305
|
functionKey?: InputMaybe<Scalars['String']['input']>;
|
|
52598
52306
|
functionKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -54803,7 +54511,6 @@ export declare type Mutation = {
|
|
|
54803
54511
|
confluenceLegacy_movePageAppend?: Maybe<ConfluenceLegacyMovePagePayload>;
|
|
54804
54512
|
confluenceLegacy_movePageBefore?: Maybe<ConfluenceLegacyMovePagePayload>;
|
|
54805
54513
|
confluenceLegacy_movePageTopLevel?: Maybe<ConfluenceLegacyMovePagePayload>;
|
|
54806
|
-
confluenceLegacy_mutationsCloudId?: Maybe<ConfluenceLegacyMutationsCloudId>;
|
|
54807
54514
|
confluenceLegacy_newPage?: Maybe<ConfluenceLegacyNewPagePayload>;
|
|
54808
54515
|
confluenceLegacy_notifyUsersOnFirstView?: Maybe<ConfluenceLegacyNotificationResponsePayload>;
|
|
54809
54516
|
confluenceLegacy_openUpSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -54844,7 +54551,6 @@ export declare type Mutation = {
|
|
|
54844
54551
|
confluenceLegacy_setSpaceRoles?: Maybe<ConfluenceLegacySetSpaceRolesPayload>;
|
|
54845
54552
|
confluenceLegacy_setTaskStatus?: Maybe<ConfluenceLegacyMutationResponse>;
|
|
54846
54553
|
confluenceLegacy_shareResource?: Maybe<ConfluenceLegacyShareResourcePayload>;
|
|
54847
|
-
confluenceLegacy_smartsCloudId?: Maybe<ConfluenceLegacySmartsCloudId>;
|
|
54848
54554
|
confluenceLegacy_softDeleteSpace?: Maybe<ConfluenceLegacySoftDeleteSpacePayload>;
|
|
54849
54555
|
confluenceLegacy_templateMigration?: Maybe<ConfluenceLegacyTemplateMigration>;
|
|
54850
54556
|
confluenceLegacy_templatize?: Maybe<Scalars['ID']['output']>;
|
|
@@ -55300,9 +55006,6 @@ export declare type MutationConfluenceLegacy_MovePageBeforeArgs = {
|
|
|
55300
55006
|
export declare type MutationConfluenceLegacy_MovePageTopLevelArgs = {
|
|
55301
55007
|
input: ConfluenceLegacyMovePageTopLevelInput;
|
|
55302
55008
|
};
|
|
55303
|
-
export declare type MutationConfluenceLegacy_MutationsCloudIdArgs = {
|
|
55304
|
-
cloudId: Scalars['ID']['input'];
|
|
55305
|
-
};
|
|
55306
55009
|
export declare type MutationConfluenceLegacy_NewPageArgs = {
|
|
55307
55010
|
input: ConfluenceLegacyNewPageInput;
|
|
55308
55011
|
};
|
|
@@ -55432,9 +55135,6 @@ export declare type MutationConfluenceLegacy_SetTaskStatusArgs = {
|
|
|
55432
55135
|
export declare type MutationConfluenceLegacy_ShareResourceArgs = {
|
|
55433
55136
|
shareResourceInput: ConfluenceLegacyShareResourceInput;
|
|
55434
55137
|
};
|
|
55435
|
-
export declare type MutationConfluenceLegacy_SmartsCloudIdArgs = {
|
|
55436
|
-
cloudId: Scalars['ID']['input'];
|
|
55437
|
-
};
|
|
55438
55138
|
export declare type MutationConfluenceLegacy_SoftDeleteSpaceArgs = {
|
|
55439
55139
|
spaceKey: Scalars['String']['input'];
|
|
55440
55140
|
};
|
|
@@ -58209,7 +57909,6 @@ export declare type Query = {
|
|
|
58209
57909
|
confluenceLegacy_adminReportStatus?: Maybe<ConfluenceLegacyAdminReportStatus>;
|
|
58210
57910
|
confluenceLegacy_allTemplates?: Maybe<ConfluenceLegacyPaginatedTemplateInfoList>;
|
|
58211
57911
|
confluenceLegacy_allUpdatesFeed?: Maybe<ConfluenceLegacyPaginatedAllUpdatesFeed>;
|
|
58212
|
-
confluenceLegacy_analyticsCloudId?: Maybe<ConfluenceLegacyAnalyticsCloudId>;
|
|
58213
57912
|
confluenceLegacy_atlassianUser?: Maybe<ConfluenceLegacyAtlassianUser>;
|
|
58214
57913
|
confluenceLegacy_availableContentStates?: Maybe<ConfluenceLegacyAvailableContentStates>;
|
|
58215
57914
|
confluenceLegacy_canvasToken?: Maybe<ConfluenceLegacyCanvasToken>;
|
|
@@ -58217,7 +57916,6 @@ export declare type Query = {
|
|
|
58217
57916
|
confluenceLegacy_catchupVersionSummaryMetadataForContent?: Maybe<ConfluenceLegacyCatchupVersionSummaryMetadataForContent>;
|
|
58218
57917
|
confluenceLegacy_classificationLevel?: Maybe<ConfluenceLegacyContentDataClassificationLevel>;
|
|
58219
57918
|
confluenceLegacy_classificationLevels?: Maybe<Array<ConfluenceLegacyContentDataClassificationLevel>>;
|
|
58220
|
-
confluenceLegacy_cloudId?: Maybe<ConfluenceLegacyCloudId>;
|
|
58221
57919
|
confluenceLegacy_collabToken?: Maybe<ConfluenceLegacyCollabTokenResponse>;
|
|
58222
57920
|
confluenceLegacy_comments?: Maybe<ConfluenceLegacyPaginatedCommentList>;
|
|
58223
57921
|
confluenceLegacy_confluenceUsers?: Maybe<ConfluenceLegacyPaginatedPersonList>;
|
|
@@ -58347,7 +58045,6 @@ export declare type Query = {
|
|
|
58347
58045
|
confluenceLegacy_singleContent?: Maybe<ConfluenceLegacyContent>;
|
|
58348
58046
|
confluenceLegacy_siteConfiguration?: Maybe<ConfluenceLegacySiteConfiguration>;
|
|
58349
58047
|
confluenceLegacy_sitePermissions?: Maybe<ConfluenceLegacySitePermission>;
|
|
58350
|
-
confluenceLegacy_smartsCloudId?: Maybe<ConfluenceLegacySmartsCloudId>;
|
|
58351
58048
|
confluenceLegacy_snippets?: Maybe<ConfluenceLegacyPaginatedSnippetList>;
|
|
58352
58049
|
confluenceLegacy_spaViewContext?: Maybe<ConfluenceLegacySpaViewModel>;
|
|
58353
58050
|
confluenceLegacy_spaViewModel?: Maybe<ConfluenceLegacySpaViewModel>;
|
|
@@ -58375,7 +58072,6 @@ export declare type Query = {
|
|
|
58375
58072
|
confluenceLegacy_templateMediaSession?: Maybe<ConfluenceLegacyTemplateMediaSession>;
|
|
58376
58073
|
confluenceLegacy_templates?: Maybe<ConfluenceLegacyPaginatedContentTemplateList>;
|
|
58377
58074
|
confluenceLegacy_tenant?: Maybe<ConfluenceLegacyTenant>;
|
|
58378
|
-
confluenceLegacy_tenantCloudId?: Maybe<ConfluenceLegacyTenantCloudId>;
|
|
58379
58075
|
confluenceLegacy_tenantContext?: Maybe<ConfluenceLegacyTenantContext>;
|
|
58380
58076
|
confluenceLegacy_timeseriesCount?: Maybe<ConfluenceLegacyTimeseriesCount>;
|
|
58381
58077
|
confluenceLegacy_timeseriesPageBlogCount?: Maybe<ConfluenceLegacyTimeseriesPageBlogCount>;
|
|
@@ -58429,7 +58125,6 @@ export declare type Query = {
|
|
|
58429
58125
|
customerStories: ContentPlatformCustomerStorySearchConnection;
|
|
58430
58126
|
customerStory?: Maybe<ContentPlatformCustomerStory>;
|
|
58431
58127
|
customerSupport?: Maybe<SupportRequestCatalogQueryApi>;
|
|
58432
|
-
dataDepot: GraphDataDepotQuery;
|
|
58433
58128
|
dataScope?: Maybe<MigrationPlanningServiceQuery>;
|
|
58434
58129
|
devAi?: Maybe<DevAi>;
|
|
58435
58130
|
devOps?: Maybe<DevOps>;
|
|
@@ -58531,6 +58226,8 @@ export declare type Query = {
|
|
|
58531
58226
|
polarisTermsConsent?: Maybe<PolarisTermsConsent>;
|
|
58532
58227
|
polarisView?: Maybe<PolarisView>;
|
|
58533
58228
|
polarisViewArrangementInfo?: Maybe<Scalars['JSON']['output']>;
|
|
58229
|
+
pricing?: Maybe<ContentPlatformPricing>;
|
|
58230
|
+
pricings: ContentPlatformPricingSearchConnection;
|
|
58534
58231
|
productListing?: Maybe<ProductListingResult>;
|
|
58535
58232
|
productListings: Array<ProductListingResult>;
|
|
58536
58233
|
releaseNote?: Maybe<ContentPlatformReleaseNote>;
|
|
@@ -58707,9 +58404,6 @@ export declare type QueryConfluenceLegacy_AllUpdatesFeedArgs = {
|
|
|
58707
58404
|
spaceKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
58708
58405
|
users?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
58709
58406
|
};
|
|
58710
|
-
export declare type QueryConfluenceLegacy_AnalyticsCloudIdArgs = {
|
|
58711
|
-
cloudId: Scalars['ID']['input'];
|
|
58712
|
-
};
|
|
58713
58407
|
export declare type QueryConfluenceLegacy_AtlassianUserArgs = {
|
|
58714
58408
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
58715
58409
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -58734,9 +58428,6 @@ export declare type QueryConfluenceLegacy_CatchupVersionSummaryMetadataForConten
|
|
|
58734
58428
|
export declare type QueryConfluenceLegacy_ClassificationLevelArgs = {
|
|
58735
58429
|
id: Scalars['String']['input'];
|
|
58736
58430
|
};
|
|
58737
|
-
export declare type QueryConfluenceLegacy_CloudIdArgs = {
|
|
58738
|
-
cloudId: Scalars['ID']['input'];
|
|
58739
|
-
};
|
|
58740
58431
|
export declare type QueryConfluenceLegacy_CollabTokenArgs = {
|
|
58741
58432
|
draftShareId?: InputMaybe<Scalars['String']['input']>;
|
|
58742
58433
|
id: Scalars['ID']['input'];
|
|
@@ -59290,9 +58981,6 @@ export declare type QueryConfluenceLegacy_SitePermissionsArgs = {
|
|
|
59290
58981
|
operations?: InputMaybe<Array<InputMaybe<ConfluenceLegacySitePermissionOperationType>>>;
|
|
59291
58982
|
permissionTypes?: InputMaybe<Array<InputMaybe<ConfluenceLegacySitePermissionType>>>;
|
|
59292
58983
|
};
|
|
59293
|
-
export declare type QueryConfluenceLegacy_SmartsCloudIdArgs = {
|
|
59294
|
-
cloudId: Scalars['ID']['input'];
|
|
59295
|
-
};
|
|
59296
58984
|
export declare type QueryConfluenceLegacy_SnippetsArgs = {
|
|
59297
58985
|
accountId: Scalars['String']['input'];
|
|
59298
58986
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -59420,9 +59108,6 @@ export declare type QueryConfluenceLegacy_TemplatesArgs = {
|
|
|
59420
59108
|
export declare type QueryConfluenceLegacy_TenantArgs = {
|
|
59421
59109
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59422
59110
|
};
|
|
59423
|
-
export declare type QueryConfluenceLegacy_TenantCloudIdArgs = {
|
|
59424
|
-
cloudId: Scalars['ID']['input'];
|
|
59425
|
-
};
|
|
59426
59111
|
export declare type QueryConfluenceLegacy_TimeseriesCountArgs = {
|
|
59427
59112
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
59428
59113
|
eventName: Array<ConfluenceLegacyAnalyticsEventName>;
|
|
@@ -59894,6 +59579,13 @@ export declare type QueryPolarisViewArgs = {
|
|
|
59894
59579
|
export declare type QueryPolarisViewArrangementInfoArgs = {
|
|
59895
59580
|
id: Scalars['ID']['input'];
|
|
59896
59581
|
};
|
|
59582
|
+
export declare type QueryPricingArgs = {
|
|
59583
|
+
id: Scalars['String']['input'];
|
|
59584
|
+
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
59585
|
+
};
|
|
59586
|
+
export declare type QueryPricingsArgs = {
|
|
59587
|
+
search: ContentPlatformSearchApIv2Query;
|
|
59588
|
+
};
|
|
59897
59589
|
export declare type QueryProductListingArgs = {
|
|
59898
59590
|
id: Scalars['ID']['input'];
|
|
59899
59591
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -66491,6 +66183,7 @@ export declare type UnifiedGamificationBadgesArgs = {
|
|
|
66491
66183
|
};
|
|
66492
66184
|
export declare type UnifiedGamificationBadge = UnifiedIBadge & UnifiedINode & {
|
|
66493
66185
|
__typename?: 'UnifiedGamificationBadge';
|
|
66186
|
+
actionUrl?: Maybe<Scalars['String']['output']>;
|
|
66494
66187
|
description?: Maybe<Scalars['String']['output']>;
|
|
66495
66188
|
id: Scalars['ID']['output'];
|
|
66496
66189
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -66558,6 +66251,7 @@ export declare type UnifiedLearning = UnifiedINode & {
|
|
|
66558
66251
|
certifications?: Maybe<UnifiedULearningCertificationResult>;
|
|
66559
66252
|
id: Scalars['ID']['output'];
|
|
66560
66253
|
recentCourses?: Maybe<UnifiedURecentCourseResult>;
|
|
66254
|
+
recentCoursesBadges?: Maybe<UnifiedUProfileBadgesResult>;
|
|
66561
66255
|
};
|
|
66562
66256
|
export declare type UnifiedLearningCertificationsArgs = {
|
|
66563
66257
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -66567,6 +66261,10 @@ export declare type UnifiedLearningRecentCoursesArgs = {
|
|
|
66567
66261
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
66568
66262
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66569
66263
|
};
|
|
66264
|
+
export declare type UnifiedLearningRecentCoursesBadgesArgs = {
|
|
66265
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
66266
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
66267
|
+
};
|
|
66570
66268
|
export declare type UnifiedLearningCertification = UnifiedINode & {
|
|
66571
66269
|
__typename?: 'UnifiedLearningCertification';
|
|
66572
66270
|
activeDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -66692,6 +66390,7 @@ export declare type UnifiedProfileBadgesArgs = {
|
|
|
66692
66390
|
};
|
|
66693
66391
|
export declare type UnifiedProfileBadge = UnifiedIBadge & UnifiedINode & {
|
|
66694
66392
|
__typename?: 'UnifiedProfileBadge';
|
|
66393
|
+
actionUrl?: Maybe<Scalars['String']['output']>;
|
|
66695
66394
|
description?: Maybe<Scalars['String']['output']>;
|
|
66696
66395
|
id: Scalars['ID']['output'];
|
|
66697
66396
|
imageUrl?: Maybe<Scalars['String']['output']>;
|