@forge/cli-shared 2.5.1-next.1 → 2.6.0-next.1
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 +22 -0
- package/out/graphql/graphql-types.d.ts +240 -20
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +27 -1
- package/out/shared/error-handling.d.ts +2 -0
- package/out/shared/error-handling.d.ts.map +1 -1
- package/out/shared/error-handling.js +12 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.6.0-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [74e00c86]
|
|
8
|
+
- @forge/manifest@3.8.2-next.0
|
|
9
|
+
|
|
10
|
+
## 2.6.0-next.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 69f42bdc: Added a utility function to wrap potentially unknown errors in an error, or return the original error"
|
|
15
|
+
|
|
16
|
+
## 2.5.1
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [a85953d8]
|
|
21
|
+
- Updated dependencies [2c42df96]
|
|
22
|
+
- Updated dependencies [c52209fd]
|
|
23
|
+
- @forge/manifest@3.8.1
|
|
24
|
+
|
|
3
25
|
## 2.5.1-next.1
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
|
@@ -181,7 +181,7 @@ export declare type ActivityWorkedOnArgs = {
|
|
|
181
181
|
};
|
|
182
182
|
export declare type ActivityConnection = {
|
|
183
183
|
__typename?: 'ActivityConnection';
|
|
184
|
-
edges
|
|
184
|
+
edges: Array<ActivityItemEdge>;
|
|
185
185
|
pageInfo: ActivityPageInfo;
|
|
186
186
|
};
|
|
187
187
|
export declare type ActivityContributor = {
|
|
@@ -233,7 +233,7 @@ export declare type ActivityFilterArgs = {
|
|
|
233
233
|
export declare type ActivityItemEdge = {
|
|
234
234
|
__typename?: 'ActivityItemEdge';
|
|
235
235
|
cursor: Scalars['String'];
|
|
236
|
-
node
|
|
236
|
+
node: ActivityNode;
|
|
237
237
|
};
|
|
238
238
|
export declare type ActivityNode = Node & {
|
|
239
239
|
__typename?: 'ActivityNode';
|
|
@@ -2133,6 +2133,21 @@ export declare type CompassCreateFlagEventPropertiesInput = {
|
|
|
2133
2133
|
id: Scalars['ID'];
|
|
2134
2134
|
status?: Maybe<Scalars['String']>;
|
|
2135
2135
|
};
|
|
2136
|
+
export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
2137
|
+
weight: Scalars['Int'];
|
|
2138
|
+
customFieldDefinitionId: Scalars['ID'];
|
|
2139
|
+
comparator: CompassCriteriaBooleanComparatorOptions;
|
|
2140
|
+
};
|
|
2141
|
+
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
2142
|
+
weight: Scalars['Int'];
|
|
2143
|
+
customFieldDefinitionId: Scalars['ID'];
|
|
2144
|
+
comparatorValue: Scalars['Float'];
|
|
2145
|
+
comparator: CompassCriteriaNumberComparatorOptions;
|
|
2146
|
+
};
|
|
2147
|
+
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
2148
|
+
weight: Scalars['Int'];
|
|
2149
|
+
customFieldDefinitionId: Scalars['ID'];
|
|
2150
|
+
};
|
|
2136
2151
|
export declare type CompassCreateIncidentEventInput = {
|
|
2137
2152
|
displayName: Scalars['String'];
|
|
2138
2153
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -2204,6 +2219,10 @@ export declare type CompassCreateTeamCheckinPayload = Payload & {
|
|
|
2204
2219
|
export declare type CompassCreateTeamCheckinResponseRichText = {
|
|
2205
2220
|
adf?: Maybe<Scalars['String']>;
|
|
2206
2221
|
};
|
|
2222
|
+
export declare enum CompassCriteriaBooleanComparatorOptions {
|
|
2223
|
+
IsTrue = "IS_TRUE",
|
|
2224
|
+
IsFalse = "IS_FALSE"
|
|
2225
|
+
}
|
|
2207
2226
|
export declare enum CompassCriteriaNumberComparatorOptions {
|
|
2208
2227
|
Equals = "EQUALS",
|
|
2209
2228
|
GreaterThan = "GREATER_THAN",
|
|
@@ -2539,6 +2558,39 @@ export declare type CompassFlagEventProperties = {
|
|
|
2539
2558
|
id: Scalars['ID'];
|
|
2540
2559
|
status?: Maybe<Scalars['String']>;
|
|
2541
2560
|
};
|
|
2561
|
+
export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassScorecardCriteria & {
|
|
2562
|
+
__typename?: 'CompassHasCustomBooleanFieldScorecardCriteria';
|
|
2563
|
+
id: Scalars['ID'];
|
|
2564
|
+
weight: Scalars['Int'];
|
|
2565
|
+
customFieldDefinition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
2566
|
+
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
2567
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2568
|
+
};
|
|
2569
|
+
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2570
|
+
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
2571
|
+
};
|
|
2572
|
+
export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassScorecardCriteria & {
|
|
2573
|
+
__typename?: 'CompassHasCustomNumberFieldScorecardCriteria';
|
|
2574
|
+
id: Scalars['ID'];
|
|
2575
|
+
weight: Scalars['Int'];
|
|
2576
|
+
customFieldDefinition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
2577
|
+
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
2578
|
+
comparatorValue?: Maybe<Scalars['Float']>;
|
|
2579
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2580
|
+
};
|
|
2581
|
+
export declare type CompassHasCustomNumberFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2582
|
+
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
2583
|
+
};
|
|
2584
|
+
export declare type CompassHasCustomTextFieldScorecardCriteria = CompassScorecardCriteria & {
|
|
2585
|
+
__typename?: 'CompassHasCustomTextFieldScorecardCriteria';
|
|
2586
|
+
id: Scalars['ID'];
|
|
2587
|
+
weight: Scalars['Int'];
|
|
2588
|
+
customFieldDefinition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
2589
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2590
|
+
};
|
|
2591
|
+
export declare type CompassHasCustomTextFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2592
|
+
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
2593
|
+
};
|
|
2542
2594
|
export declare type CompassHasDescriptionScorecardCriteria = CompassScorecardCriteria & {
|
|
2543
2595
|
__typename?: 'CompassHasDescriptionScorecardCriteria';
|
|
2544
2596
|
id: Scalars['ID'];
|
|
@@ -2574,9 +2626,9 @@ export declare type CompassHasMetricValueScorecardCriteria = CompassScorecardCri
|
|
|
2574
2626
|
weight: Scalars['Int'];
|
|
2575
2627
|
comparatorValue: Scalars['Float'];
|
|
2576
2628
|
metricDefinitionId: Scalars['ID'];
|
|
2629
|
+
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
2577
2630
|
comparator: CompassCriteriaNumberComparatorOptions;
|
|
2578
2631
|
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
2579
|
-
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
2580
2632
|
};
|
|
2581
2633
|
export declare type CompassHasMetricValueScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
2582
2634
|
query?: Maybe<CompassScorecardCriteriaScoreQuery>;
|
|
@@ -3060,6 +3112,24 @@ export declare type CompassUpdateCustomTextFieldDefinitionInput = {
|
|
|
3060
3112
|
description?: Maybe<Scalars['String']>;
|
|
3061
3113
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
3062
3114
|
};
|
|
3115
|
+
export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
3116
|
+
id: Scalars['ID'];
|
|
3117
|
+
weight?: Maybe<Scalars['Int']>;
|
|
3118
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3119
|
+
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3120
|
+
};
|
|
3121
|
+
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
3122
|
+
id: Scalars['ID'];
|
|
3123
|
+
weight?: Maybe<Scalars['Int']>;
|
|
3124
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3125
|
+
comparatorValue?: Maybe<Scalars['Float']>;
|
|
3126
|
+
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
3127
|
+
};
|
|
3128
|
+
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
3129
|
+
id: Scalars['ID'];
|
|
3130
|
+
weight?: Maybe<Scalars['Int']>;
|
|
3131
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3132
|
+
};
|
|
3063
3133
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
3064
3134
|
id: Scalars['ID'];
|
|
3065
3135
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3300,7 +3370,7 @@ export declare type ConfluenceCreateBlogPostInput = {
|
|
|
3300
3370
|
};
|
|
3301
3371
|
export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
3302
3372
|
__typename?: 'ConfluenceCreateBlogPostPayload';
|
|
3303
|
-
|
|
3373
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3304
3374
|
errors?: Maybe<Array<MutationError>>;
|
|
3305
3375
|
success: Scalars['Boolean'];
|
|
3306
3376
|
};
|
|
@@ -3315,7 +3385,7 @@ export declare enum ConfluenceCreateCommentOnPagePageStatus {
|
|
|
3315
3385
|
}
|
|
3316
3386
|
export declare type ConfluenceCreateCommentPayload = {
|
|
3317
3387
|
__typename?: 'ConfluenceCreateCommentPayload';
|
|
3318
|
-
|
|
3388
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3319
3389
|
errors?: Maybe<Array<MutationError>>;
|
|
3320
3390
|
success: Scalars['Boolean'];
|
|
3321
3391
|
};
|
|
@@ -3327,7 +3397,7 @@ export declare type ConfluenceCreatePageInput = {
|
|
|
3327
3397
|
};
|
|
3328
3398
|
export declare type ConfluenceCreatePagePayload = Payload & {
|
|
3329
3399
|
__typename?: 'ConfluenceCreatePagePayload';
|
|
3330
|
-
|
|
3400
|
+
page?: Maybe<ConfluencePage>;
|
|
3331
3401
|
errors?: Maybe<Array<MutationError>>;
|
|
3332
3402
|
success: Scalars['Boolean'];
|
|
3333
3403
|
};
|
|
@@ -3338,7 +3408,7 @@ export declare type ConfluenceCreateSpaceInput = {
|
|
|
3338
3408
|
};
|
|
3339
3409
|
export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
3340
3410
|
__typename?: 'ConfluenceCreateSpacePayload';
|
|
3341
|
-
|
|
3411
|
+
space?: Maybe<ConfluenceSpace>;
|
|
3342
3412
|
errors?: Maybe<Array<MutationError>>;
|
|
3343
3413
|
success: Scalars['Boolean'];
|
|
3344
3414
|
};
|
|
@@ -3349,7 +3419,7 @@ export declare type ConfluenceCreateUserPropertyInput = {
|
|
|
3349
3419
|
};
|
|
3350
3420
|
export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
3351
3421
|
__typename?: 'ConfluenceCreateUserPropertyPayload';
|
|
3352
|
-
|
|
3422
|
+
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
3353
3423
|
errors?: Maybe<Array<MutationError>>;
|
|
3354
3424
|
success: Scalars['Boolean'];
|
|
3355
3425
|
};
|
|
@@ -3603,7 +3673,7 @@ export declare type ConfluencePublishBlogPostInput = {
|
|
|
3603
3673
|
};
|
|
3604
3674
|
export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
3605
3675
|
__typename?: 'ConfluencePublishBlogPostPayload';
|
|
3606
|
-
|
|
3676
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3607
3677
|
errors?: Maybe<Array<MutationError>>;
|
|
3608
3678
|
success: Scalars['Boolean'];
|
|
3609
3679
|
};
|
|
@@ -3613,7 +3683,7 @@ export declare type ConfluencePublishPageInput = {
|
|
|
3613
3683
|
};
|
|
3614
3684
|
export declare type ConfluencePublishPagePayload = Payload & {
|
|
3615
3685
|
__typename?: 'ConfluencePublishPagePayload';
|
|
3616
|
-
|
|
3686
|
+
page?: Maybe<ConfluencePage>;
|
|
3617
3687
|
errors?: Maybe<Array<MutationError>>;
|
|
3618
3688
|
success: Scalars['Boolean'];
|
|
3619
3689
|
};
|
|
@@ -3693,7 +3763,7 @@ export declare type ConfluenceReplyToCommentInput = {
|
|
|
3693
3763
|
};
|
|
3694
3764
|
export declare type ConfluenceReplyToCommentPayload = {
|
|
3695
3765
|
__typename?: 'ConfluenceReplyToCommentPayload';
|
|
3696
|
-
|
|
3766
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3697
3767
|
errors?: Maybe<Array<MutationError>>;
|
|
3698
3768
|
success: Scalars['Boolean'];
|
|
3699
3769
|
};
|
|
@@ -3784,7 +3854,7 @@ export declare type ConfluenceUpdateCommentInput = {
|
|
|
3784
3854
|
};
|
|
3785
3855
|
export declare type ConfluenceUpdateCommentPayload = {
|
|
3786
3856
|
__typename?: 'ConfluenceUpdateCommentPayload';
|
|
3787
|
-
|
|
3857
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3788
3858
|
errors?: Maybe<Array<MutationError>>;
|
|
3789
3859
|
success: Scalars['Boolean'];
|
|
3790
3860
|
};
|
|
@@ -3795,7 +3865,7 @@ export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
|
3795
3865
|
};
|
|
3796
3866
|
export declare type ConfluenceUpdateCurrentBlogPostPayload = Payload & {
|
|
3797
3867
|
__typename?: 'ConfluenceUpdateCurrentBlogPostPayload';
|
|
3798
|
-
|
|
3868
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3799
3869
|
errors?: Maybe<Array<MutationError>>;
|
|
3800
3870
|
success: Scalars['Boolean'];
|
|
3801
3871
|
};
|
|
@@ -3806,7 +3876,7 @@ export declare type ConfluenceUpdateCurrentPageInput = {
|
|
|
3806
3876
|
};
|
|
3807
3877
|
export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
3808
3878
|
__typename?: 'ConfluenceUpdateCurrentPagePayload';
|
|
3809
|
-
|
|
3879
|
+
page?: Maybe<ConfluencePage>;
|
|
3810
3880
|
errors?: Maybe<Array<MutationError>>;
|
|
3811
3881
|
success: Scalars['Boolean'];
|
|
3812
3882
|
};
|
|
@@ -3817,7 +3887,7 @@ export declare type ConfluenceUpdateDraftBlogPostInput = {
|
|
|
3817
3887
|
};
|
|
3818
3888
|
export declare type ConfluenceUpdateDraftBlogPostPayload = Payload & {
|
|
3819
3889
|
__typename?: 'ConfluenceUpdateDraftBlogPostPayload';
|
|
3820
|
-
|
|
3890
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3821
3891
|
errors?: Maybe<Array<MutationError>>;
|
|
3822
3892
|
success: Scalars['Boolean'];
|
|
3823
3893
|
};
|
|
@@ -3828,7 +3898,7 @@ export declare type ConfluenceUpdateDraftPageInput = {
|
|
|
3828
3898
|
};
|
|
3829
3899
|
export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
3830
3900
|
__typename?: 'ConfluenceUpdateDraftPagePayload';
|
|
3831
|
-
|
|
3901
|
+
page?: Maybe<ConfluencePage>;
|
|
3832
3902
|
errors?: Maybe<Array<MutationError>>;
|
|
3833
3903
|
success: Scalars['Boolean'];
|
|
3834
3904
|
};
|
|
@@ -3838,7 +3908,7 @@ export declare type ConfluenceUpdateSpaceInput = {
|
|
|
3838
3908
|
};
|
|
3839
3909
|
export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
3840
3910
|
__typename?: 'ConfluenceUpdateSpacePayload';
|
|
3841
|
-
|
|
3911
|
+
space?: Maybe<ConfluenceSpace>;
|
|
3842
3912
|
errors?: Maybe<Array<MutationError>>;
|
|
3843
3913
|
success: Scalars['Boolean'];
|
|
3844
3914
|
};
|
|
@@ -3848,7 +3918,7 @@ export declare type ConfluenceUpdateValueUserPropertyInput = {
|
|
|
3848
3918
|
};
|
|
3849
3919
|
export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
3850
3920
|
__typename?: 'ConfluenceUpdateValueUserPropertyPayload';
|
|
3851
|
-
|
|
3921
|
+
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
3852
3922
|
errors?: Maybe<Array<MutationError>>;
|
|
3853
3923
|
success: Scalars['Boolean'];
|
|
3854
3924
|
};
|
|
@@ -4260,6 +4330,9 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
4260
4330
|
hasDescription?: Maybe<CreateCompassHasDescriptionScorecardCriteriaInput>;
|
|
4261
4331
|
hasOwner?: Maybe<CreateCompassHasOwnerScorecardCriteriaInput>;
|
|
4262
4332
|
hasMetricValue?: Maybe<CreateCompassHasMetricValueCriteriaInput>;
|
|
4333
|
+
hasCustomTextValue?: Maybe<CompassCreateHasCustomTextFieldScorecardCriteriaInput>;
|
|
4334
|
+
hasCustomBooleanValue?: Maybe<CompassCreateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
4335
|
+
hasCustomNumberValue?: Maybe<CompassCreateHasCustomNumberFieldScorecardCriteriaInput>;
|
|
4263
4336
|
};
|
|
4264
4337
|
export declare type CreateCompassScorecardCriteriasInput = {
|
|
4265
4338
|
criterias: Array<CreateCompassScorecardCriteriaInput>;
|
|
@@ -5716,6 +5789,15 @@ export declare type DevOpsToolOpsgenieCreate = DevOpsToolContainerCreationSpecif
|
|
|
5716
5789
|
requestId: Scalars['String'];
|
|
5717
5790
|
name: Scalars['String'];
|
|
5718
5791
|
};
|
|
5792
|
+
export declare type DevOpsToolSort = {
|
|
5793
|
+
name?: Maybe<DevOpsToolSortOrder>;
|
|
5794
|
+
supportsContainers?: Maybe<DevOpsToolSortOrder>;
|
|
5795
|
+
integration?: Maybe<DevOpsToolSortOrder>;
|
|
5796
|
+
};
|
|
5797
|
+
export declare enum DevOpsToolSortOrder {
|
|
5798
|
+
Asc = "ASC",
|
|
5799
|
+
Desc = "DESC"
|
|
5800
|
+
}
|
|
5719
5801
|
export declare type DevOpsToolUnknownTool = {
|
|
5720
5802
|
__typename?: 'DevOpsToolUnknownTool';
|
|
5721
5803
|
toolId?: Maybe<Scalars['String']>;
|
|
@@ -5734,6 +5816,7 @@ export declare type DevOpsToolUpdateNavbarConnectionStateTabSeenPayload = Payloa
|
|
|
5734
5816
|
export declare type DevOpsTools = {
|
|
5735
5817
|
__typename?: 'DevOpsTools';
|
|
5736
5818
|
tools?: Maybe<DevOpsToolConnection>;
|
|
5819
|
+
toolsThatAreInstalledOrSupportContainers?: Maybe<DevOpsToolConnection>;
|
|
5737
5820
|
tool?: Maybe<DevOpsTool>;
|
|
5738
5821
|
namespace?: Maybe<DevOpsToolNamespace>;
|
|
5739
5822
|
container?: Maybe<DevOpsToolContainer>;
|
|
@@ -5751,6 +5834,14 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
5751
5834
|
installed?: Maybe<Scalars['Boolean']>;
|
|
5752
5835
|
supportsContainers?: Maybe<Scalars['Boolean']>;
|
|
5753
5836
|
integrationType?: Maybe<DevOpsToolIntegrationType>;
|
|
5837
|
+
sort?: Maybe<Array<Maybe<DevOpsToolSort>>>;
|
|
5838
|
+
};
|
|
5839
|
+
export declare type DevOpsToolsToolsThatAreInstalledOrSupportContainersArgs = {
|
|
5840
|
+
cloudId: Scalars['ID'];
|
|
5841
|
+
first?: Maybe<Scalars['Int']>;
|
|
5842
|
+
after?: Maybe<Scalars['String']>;
|
|
5843
|
+
groupId?: Maybe<Scalars['String']>;
|
|
5844
|
+
categoryId?: Maybe<Scalars['String']>;
|
|
5754
5845
|
};
|
|
5755
5846
|
export declare type DevOpsToolsToolArgs = {
|
|
5756
5847
|
id: Scalars['ID'];
|
|
@@ -5833,6 +5924,9 @@ export declare type EcosystemQuery = {
|
|
|
5833
5924
|
userGrants?: Maybe<UserGrantConnection>;
|
|
5834
5925
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
5835
5926
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
5927
|
+
marketplacePartnerContactForCurrentUser?: Maybe<FortifiedMarketplaceAppWithContactPermissions>;
|
|
5928
|
+
marketplaceAppsByCurrentUserPartnerContactPermissions: Array<FortifiedMarketplaceApp>;
|
|
5929
|
+
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
5836
5930
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
5837
5931
|
};
|
|
5838
5932
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -5847,6 +5941,15 @@ export declare type EcosystemQueryCheckConsentPermissionByOAuthClientIdArgs = {
|
|
|
5847
5941
|
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
5848
5942
|
cloudId: Scalars['ID'];
|
|
5849
5943
|
};
|
|
5944
|
+
export declare type EcosystemQueryMarketplacePartnerContactForCurrentUserArgs = {
|
|
5945
|
+
appKey: Scalars['String'];
|
|
5946
|
+
};
|
|
5947
|
+
export declare type EcosystemQueryMarketplaceAppsByCurrentUserPartnerContactPermissionsArgs = {
|
|
5948
|
+
permission: FortifiedMarketplacePartnerContactPermission;
|
|
5949
|
+
};
|
|
5950
|
+
export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
5951
|
+
appKey: Scalars['ID'];
|
|
5952
|
+
};
|
|
5850
5953
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
5851
5954
|
appId: Scalars['ID'];
|
|
5852
5955
|
};
|
|
@@ -6140,6 +6243,82 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
6140
6243
|
resolution: ForgeMetricsResolution;
|
|
6141
6244
|
};
|
|
6142
6245
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
6246
|
+
export declare type FortifiedMarketplaceApp = {
|
|
6247
|
+
__typename?: 'FortifiedMarketplaceApp';
|
|
6248
|
+
app?: Maybe<MarketplaceApp>;
|
|
6249
|
+
};
|
|
6250
|
+
export declare type FortifiedMarketplaceAppWithContactPermissions = {
|
|
6251
|
+
__typename?: 'FortifiedMarketplaceAppWithContactPermissions';
|
|
6252
|
+
app?: Maybe<MarketplaceApp>;
|
|
6253
|
+
permissions: Array<FortifiedMarketplacePartnerContactPermission>;
|
|
6254
|
+
};
|
|
6255
|
+
export declare enum FortifiedMarketplacePartnerContactPermission {
|
|
6256
|
+
AdministerPartner = "ADMINISTER_PARTNER",
|
|
6257
|
+
ManageAddonDetails = "MANAGE_ADDON_DETAILS",
|
|
6258
|
+
ManagePayment = "MANAGE_PAYMENT",
|
|
6259
|
+
ManagePricing = "MANAGE_PRICING",
|
|
6260
|
+
ManagePromotions = "MANAGE_PROMOTIONS",
|
|
6261
|
+
ManagePartnerDetails = "MANAGE_PARTNER_DETAILS",
|
|
6262
|
+
ViewSalesReports = "VIEW_SALES_REPORTS",
|
|
6263
|
+
ViewUsageReports = "VIEW_USAGE_REPORTS"
|
|
6264
|
+
}
|
|
6265
|
+
export declare type FortifiedMetricsIntervalInput = {
|
|
6266
|
+
start: Scalars['DateTime'];
|
|
6267
|
+
end: Scalars['DateTime'];
|
|
6268
|
+
};
|
|
6269
|
+
export declare type FortifiedMetricsIntervalRange = {
|
|
6270
|
+
__typename?: 'FortifiedMetricsIntervalRange';
|
|
6271
|
+
start: Scalars['DateTime'];
|
|
6272
|
+
end: Scalars['DateTime'];
|
|
6273
|
+
};
|
|
6274
|
+
export declare type FortifiedMetricsQuery = {
|
|
6275
|
+
__typename?: 'FortifiedMetricsQuery';
|
|
6276
|
+
appKey: Scalars['ID'];
|
|
6277
|
+
installationCallbacks?: Maybe<FortifiedSuccessRateMetricQuery>;
|
|
6278
|
+
};
|
|
6279
|
+
export declare type FortifiedMetricsQueryFilters = {
|
|
6280
|
+
interval: FortifiedMetricsIntervalInput;
|
|
6281
|
+
};
|
|
6282
|
+
export declare type FortifiedMetricsQueryInput = {
|
|
6283
|
+
filters: FortifiedMetricsQueryFilters;
|
|
6284
|
+
};
|
|
6285
|
+
export declare type FortifiedMetricsResolution = {
|
|
6286
|
+
__typename?: 'FortifiedMetricsResolution';
|
|
6287
|
+
size: Scalars['Int'];
|
|
6288
|
+
units: FortifiedMetricsResolutionUnit;
|
|
6289
|
+
};
|
|
6290
|
+
export declare enum FortifiedMetricsResolutionUnit {
|
|
6291
|
+
Hours = "HOURS",
|
|
6292
|
+
Minutes = "MINUTES"
|
|
6293
|
+
}
|
|
6294
|
+
export declare type FortifiedMetricsSuccessRateData = {
|
|
6295
|
+
__typename?: 'FortifiedMetricsSuccessRateData';
|
|
6296
|
+
name: Scalars['String'];
|
|
6297
|
+
series: Array<FortifiedMetricsSuccessRateSeries>;
|
|
6298
|
+
resolution: FortifiedMetricsResolution;
|
|
6299
|
+
interval: FortifiedMetricsIntervalRange;
|
|
6300
|
+
};
|
|
6301
|
+
export declare type FortifiedMetricsSuccessRateDataPoint = {
|
|
6302
|
+
__typename?: 'FortifiedMetricsSuccessRateDataPoint';
|
|
6303
|
+
timestamp: Scalars['DateTime'];
|
|
6304
|
+
value: Scalars['Float'];
|
|
6305
|
+
};
|
|
6306
|
+
export declare type FortifiedMetricsSuccessRateResult = FortifiedMetricsSuccessRateData | QueryError;
|
|
6307
|
+
export declare type FortifiedMetricsSuccessRateSeries = {
|
|
6308
|
+
__typename?: 'FortifiedMetricsSuccessRateSeries';
|
|
6309
|
+
data: Array<FortifiedMetricsSuccessRateDataPoint>;
|
|
6310
|
+
};
|
|
6311
|
+
export declare type FortifiedSuccessRateMetricQuery = {
|
|
6312
|
+
__typename?: 'FortifiedSuccessRateMetricQuery';
|
|
6313
|
+
serviceLevelObjectiveSuccessRate?: Maybe<FortifiedMetricsSuccessRateResult>;
|
|
6314
|
+
alertConditionSuccessRate?: Maybe<FortifiedMetricsSuccessRateResult>;
|
|
6315
|
+
};
|
|
6316
|
+
export declare type FortifiedSuccessRateMetricQueryServiceLevelObjectiveSuccessRateArgs = {
|
|
6317
|
+
query: FortifiedMetricsQueryInput;
|
|
6318
|
+
};
|
|
6319
|
+
export declare type FortifiedSuccessRateMetricQueryAlertConditionSuccessRateArgs = {
|
|
6320
|
+
query: FortifiedMetricsQueryInput;
|
|
6321
|
+
};
|
|
6143
6322
|
export declare type FunctionDescription = {
|
|
6144
6323
|
__typename?: 'FunctionDescription';
|
|
6145
6324
|
key: Scalars['String'];
|
|
@@ -6290,10 +6469,10 @@ export declare type HelpCenterQueryApi = {
|
|
|
6290
6469
|
helpCenterCollection?: Maybe<HelpCenterCollectionResult>;
|
|
6291
6470
|
};
|
|
6292
6471
|
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
6293
|
-
|
|
6472
|
+
productName: Scalars['String'];
|
|
6294
6473
|
};
|
|
6295
6474
|
export declare type HelpCenterQueryApiHelpCenterCollectionArgs = {
|
|
6296
|
-
|
|
6475
|
+
productName: Scalars['String'];
|
|
6297
6476
|
collectionId: Scalars['ID'];
|
|
6298
6477
|
};
|
|
6299
6478
|
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
@@ -9412,6 +9591,10 @@ export declare type JiraMutation = {
|
|
|
9412
9591
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
9413
9592
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
9414
9593
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
9594
|
+
updateVersionName?: Maybe<JiraUpdateVersionPayload>;
|
|
9595
|
+
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
9596
|
+
updateVersionStartDate?: Maybe<JiraUpdateVersionPayload>;
|
|
9597
|
+
updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
|
|
9415
9598
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
9416
9599
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
9417
9600
|
};
|
|
@@ -9441,6 +9624,18 @@ export declare type JiraMutationAddRelatedWorkToVersionArgs = {
|
|
|
9441
9624
|
export declare type JiraMutationRemoveRelatedWorkFromVersionArgs = {
|
|
9442
9625
|
input: JiraRemoveRelatedWorkFromVersionInput;
|
|
9443
9626
|
};
|
|
9627
|
+
export declare type JiraMutationUpdateVersionNameArgs = {
|
|
9628
|
+
input: JiraUpdateVersionNameInput;
|
|
9629
|
+
};
|
|
9630
|
+
export declare type JiraMutationUpdateVersionDescriptionArgs = {
|
|
9631
|
+
input: JiraUpdateVersionDescriptionInput;
|
|
9632
|
+
};
|
|
9633
|
+
export declare type JiraMutationUpdateVersionStartDateArgs = {
|
|
9634
|
+
input: JiraUpdateVersionStartDateInput;
|
|
9635
|
+
};
|
|
9636
|
+
export declare type JiraMutationUpdateVersionReleaseDateArgs = {
|
|
9637
|
+
input: JiraUpdateVersionReleaseDateInput;
|
|
9638
|
+
};
|
|
9444
9639
|
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
9445
9640
|
id: Scalars['ID'];
|
|
9446
9641
|
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
@@ -11656,6 +11851,28 @@ export declare type JiraUpdateCustomFilterPayload = Payload & {
|
|
|
11656
11851
|
errors?: Maybe<Array<MutationError>>;
|
|
11657
11852
|
filter?: Maybe<JiraCustomFilter>;
|
|
11658
11853
|
};
|
|
11854
|
+
export declare type JiraUpdateVersionDescriptionInput = {
|
|
11855
|
+
id: Scalars['ID'];
|
|
11856
|
+
description?: Maybe<Scalars['String']>;
|
|
11857
|
+
};
|
|
11858
|
+
export declare type JiraUpdateVersionNameInput = {
|
|
11859
|
+
id: Scalars['ID'];
|
|
11860
|
+
name: Scalars['String'];
|
|
11861
|
+
};
|
|
11862
|
+
export declare type JiraUpdateVersionPayload = Payload & {
|
|
11863
|
+
__typename?: 'JiraUpdateVersionPayload';
|
|
11864
|
+
success: Scalars['Boolean'];
|
|
11865
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11866
|
+
version?: Maybe<JiraVersion>;
|
|
11867
|
+
};
|
|
11868
|
+
export declare type JiraUpdateVersionReleaseDateInput = {
|
|
11869
|
+
id: Scalars['ID'];
|
|
11870
|
+
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
11871
|
+
};
|
|
11872
|
+
export declare type JiraUpdateVersionStartDateInput = {
|
|
11873
|
+
id: Scalars['ID'];
|
|
11874
|
+
startDate?: Maybe<Scalars['DateTime']>;
|
|
11875
|
+
};
|
|
11659
11876
|
export declare type JiraUpdateVersionWarningConfigInput = {
|
|
11660
11877
|
jiraProjectId: Scalars['ID'];
|
|
11661
11878
|
updatedVersionWarningConfig: JiraVersionUpdatedWarningConfigInput;
|
|
@@ -17052,6 +17269,9 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
17052
17269
|
hasDescription?: Maybe<UpdateCompassHasDescriptionScorecardCriteriaInput>;
|
|
17053
17270
|
hasOwner?: Maybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
|
|
17054
17271
|
hasMetricValue?: Maybe<UpdateCompassHasMetricValueCriteriaInput>;
|
|
17272
|
+
hasCustomTextValue?: Maybe<CompassUpdateHasCustomTextFieldScorecardCriteriaInput>;
|
|
17273
|
+
hasCustomBooleanValue?: Maybe<CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
17274
|
+
hasCustomNumberValue?: Maybe<CompassUpdateHasCustomNumberFieldScorecardCriteriaInput>;
|
|
17055
17275
|
};
|
|
17056
17276
|
export declare type UpdateCompassScorecardCriteriasInput = {
|
|
17057
17277
|
criterias: Array<UpdateCompassScorecardCriteriaInput>;
|