@forge/cli-shared 2.6.0-next.0 → 2.6.0-next.3
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 +21 -0
- package/out/graphql/graphql-types.d.ts +492 -21
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +282 -1
- package/package.json +2 -2
|
@@ -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>;
|
|
@@ -2724,6 +2776,7 @@ export declare type CompassMetricSource = {
|
|
|
2724
2776
|
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
2725
2777
|
externalMetricSourceId?: Maybe<Scalars['ID']>;
|
|
2726
2778
|
url?: Maybe<Scalars['String']>;
|
|
2779
|
+
forgeAppId?: Maybe<Scalars['ID']>;
|
|
2727
2780
|
values?: Maybe<CompassMetricSourceValuesQueryResult>;
|
|
2728
2781
|
component?: Maybe<CompassComponent>;
|
|
2729
2782
|
};
|
|
@@ -3060,6 +3113,24 @@ export declare type CompassUpdateCustomTextFieldDefinitionInput = {
|
|
|
3060
3113
|
description?: Maybe<Scalars['String']>;
|
|
3061
3114
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
3062
3115
|
};
|
|
3116
|
+
export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
3117
|
+
id: Scalars['ID'];
|
|
3118
|
+
weight?: Maybe<Scalars['Int']>;
|
|
3119
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3120
|
+
comparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
3121
|
+
};
|
|
3122
|
+
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
3123
|
+
id: Scalars['ID'];
|
|
3124
|
+
weight?: Maybe<Scalars['Int']>;
|
|
3125
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3126
|
+
comparatorValue?: Maybe<Scalars['Float']>;
|
|
3127
|
+
comparator?: Maybe<CompassCriteriaNumberComparatorOptions>;
|
|
3128
|
+
};
|
|
3129
|
+
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
3130
|
+
id: Scalars['ID'];
|
|
3131
|
+
weight?: Maybe<Scalars['Int']>;
|
|
3132
|
+
customFieldDefinitionId?: Maybe<Scalars['ID']>;
|
|
3133
|
+
};
|
|
3063
3134
|
export declare type CompassUpdateMetricDefinitionInput = {
|
|
3064
3135
|
id: Scalars['ID'];
|
|
3065
3136
|
name?: Maybe<Scalars['String']>;
|
|
@@ -3300,7 +3371,7 @@ export declare type ConfluenceCreateBlogPostInput = {
|
|
|
3300
3371
|
};
|
|
3301
3372
|
export declare type ConfluenceCreateBlogPostPayload = Payload & {
|
|
3302
3373
|
__typename?: 'ConfluenceCreateBlogPostPayload';
|
|
3303
|
-
|
|
3374
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3304
3375
|
errors?: Maybe<Array<MutationError>>;
|
|
3305
3376
|
success: Scalars['Boolean'];
|
|
3306
3377
|
};
|
|
@@ -3315,7 +3386,7 @@ export declare enum ConfluenceCreateCommentOnPagePageStatus {
|
|
|
3315
3386
|
}
|
|
3316
3387
|
export declare type ConfluenceCreateCommentPayload = {
|
|
3317
3388
|
__typename?: 'ConfluenceCreateCommentPayload';
|
|
3318
|
-
|
|
3389
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3319
3390
|
errors?: Maybe<Array<MutationError>>;
|
|
3320
3391
|
success: Scalars['Boolean'];
|
|
3321
3392
|
};
|
|
@@ -3327,7 +3398,7 @@ export declare type ConfluenceCreatePageInput = {
|
|
|
3327
3398
|
};
|
|
3328
3399
|
export declare type ConfluenceCreatePagePayload = Payload & {
|
|
3329
3400
|
__typename?: 'ConfluenceCreatePagePayload';
|
|
3330
|
-
|
|
3401
|
+
page?: Maybe<ConfluencePage>;
|
|
3331
3402
|
errors?: Maybe<Array<MutationError>>;
|
|
3332
3403
|
success: Scalars['Boolean'];
|
|
3333
3404
|
};
|
|
@@ -3338,7 +3409,7 @@ export declare type ConfluenceCreateSpaceInput = {
|
|
|
3338
3409
|
};
|
|
3339
3410
|
export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
3340
3411
|
__typename?: 'ConfluenceCreateSpacePayload';
|
|
3341
|
-
|
|
3412
|
+
space?: Maybe<ConfluenceSpace>;
|
|
3342
3413
|
errors?: Maybe<Array<MutationError>>;
|
|
3343
3414
|
success: Scalars['Boolean'];
|
|
3344
3415
|
};
|
|
@@ -3349,7 +3420,7 @@ export declare type ConfluenceCreateUserPropertyInput = {
|
|
|
3349
3420
|
};
|
|
3350
3421
|
export declare type ConfluenceCreateUserPropertyPayload = Payload & {
|
|
3351
3422
|
__typename?: 'ConfluenceCreateUserPropertyPayload';
|
|
3352
|
-
|
|
3423
|
+
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
3353
3424
|
errors?: Maybe<Array<MutationError>>;
|
|
3354
3425
|
success: Scalars['Boolean'];
|
|
3355
3426
|
};
|
|
@@ -3603,7 +3674,7 @@ export declare type ConfluencePublishBlogPostInput = {
|
|
|
3603
3674
|
};
|
|
3604
3675
|
export declare type ConfluencePublishBlogPostPayload = Payload & {
|
|
3605
3676
|
__typename?: 'ConfluencePublishBlogPostPayload';
|
|
3606
|
-
|
|
3677
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3607
3678
|
errors?: Maybe<Array<MutationError>>;
|
|
3608
3679
|
success: Scalars['Boolean'];
|
|
3609
3680
|
};
|
|
@@ -3613,7 +3684,7 @@ export declare type ConfluencePublishPageInput = {
|
|
|
3613
3684
|
};
|
|
3614
3685
|
export declare type ConfluencePublishPagePayload = Payload & {
|
|
3615
3686
|
__typename?: 'ConfluencePublishPagePayload';
|
|
3616
|
-
|
|
3687
|
+
page?: Maybe<ConfluencePage>;
|
|
3617
3688
|
errors?: Maybe<Array<MutationError>>;
|
|
3618
3689
|
success: Scalars['Boolean'];
|
|
3619
3690
|
};
|
|
@@ -3693,7 +3764,7 @@ export declare type ConfluenceReplyToCommentInput = {
|
|
|
3693
3764
|
};
|
|
3694
3765
|
export declare type ConfluenceReplyToCommentPayload = {
|
|
3695
3766
|
__typename?: 'ConfluenceReplyToCommentPayload';
|
|
3696
|
-
|
|
3767
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3697
3768
|
errors?: Maybe<Array<MutationError>>;
|
|
3698
3769
|
success: Scalars['Boolean'];
|
|
3699
3770
|
};
|
|
@@ -3784,7 +3855,7 @@ export declare type ConfluenceUpdateCommentInput = {
|
|
|
3784
3855
|
};
|
|
3785
3856
|
export declare type ConfluenceUpdateCommentPayload = {
|
|
3786
3857
|
__typename?: 'ConfluenceUpdateCommentPayload';
|
|
3787
|
-
|
|
3858
|
+
comment?: Maybe<ConfluenceComment>;
|
|
3788
3859
|
errors?: Maybe<Array<MutationError>>;
|
|
3789
3860
|
success: Scalars['Boolean'];
|
|
3790
3861
|
};
|
|
@@ -3795,7 +3866,7 @@ export declare type ConfluenceUpdateCurrentBlogPostInput = {
|
|
|
3795
3866
|
};
|
|
3796
3867
|
export declare type ConfluenceUpdateCurrentBlogPostPayload = Payload & {
|
|
3797
3868
|
__typename?: 'ConfluenceUpdateCurrentBlogPostPayload';
|
|
3798
|
-
|
|
3869
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3799
3870
|
errors?: Maybe<Array<MutationError>>;
|
|
3800
3871
|
success: Scalars['Boolean'];
|
|
3801
3872
|
};
|
|
@@ -3806,7 +3877,7 @@ export declare type ConfluenceUpdateCurrentPageInput = {
|
|
|
3806
3877
|
};
|
|
3807
3878
|
export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
3808
3879
|
__typename?: 'ConfluenceUpdateCurrentPagePayload';
|
|
3809
|
-
|
|
3880
|
+
page?: Maybe<ConfluencePage>;
|
|
3810
3881
|
errors?: Maybe<Array<MutationError>>;
|
|
3811
3882
|
success: Scalars['Boolean'];
|
|
3812
3883
|
};
|
|
@@ -3817,7 +3888,7 @@ export declare type ConfluenceUpdateDraftBlogPostInput = {
|
|
|
3817
3888
|
};
|
|
3818
3889
|
export declare type ConfluenceUpdateDraftBlogPostPayload = Payload & {
|
|
3819
3890
|
__typename?: 'ConfluenceUpdateDraftBlogPostPayload';
|
|
3820
|
-
|
|
3891
|
+
blogPost?: Maybe<ConfluenceBlogPost>;
|
|
3821
3892
|
errors?: Maybe<Array<MutationError>>;
|
|
3822
3893
|
success: Scalars['Boolean'];
|
|
3823
3894
|
};
|
|
@@ -3828,7 +3899,7 @@ export declare type ConfluenceUpdateDraftPageInput = {
|
|
|
3828
3899
|
};
|
|
3829
3900
|
export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
3830
3901
|
__typename?: 'ConfluenceUpdateDraftPagePayload';
|
|
3831
|
-
|
|
3902
|
+
page?: Maybe<ConfluencePage>;
|
|
3832
3903
|
errors?: Maybe<Array<MutationError>>;
|
|
3833
3904
|
success: Scalars['Boolean'];
|
|
3834
3905
|
};
|
|
@@ -3838,7 +3909,7 @@ export declare type ConfluenceUpdateSpaceInput = {
|
|
|
3838
3909
|
};
|
|
3839
3910
|
export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
3840
3911
|
__typename?: 'ConfluenceUpdateSpacePayload';
|
|
3841
|
-
|
|
3912
|
+
space?: Maybe<ConfluenceSpace>;
|
|
3842
3913
|
errors?: Maybe<Array<MutationError>>;
|
|
3843
3914
|
success: Scalars['Boolean'];
|
|
3844
3915
|
};
|
|
@@ -3848,7 +3919,7 @@ export declare type ConfluenceUpdateValueUserPropertyInput = {
|
|
|
3848
3919
|
};
|
|
3849
3920
|
export declare type ConfluenceUpdateValueUserPropertyPayload = Payload & {
|
|
3850
3921
|
__typename?: 'ConfluenceUpdateValueUserPropertyPayload';
|
|
3851
|
-
|
|
3922
|
+
userProperty?: Maybe<ConfluenceUserProperty>;
|
|
3852
3923
|
errors?: Maybe<Array<MutationError>>;
|
|
3853
3924
|
success: Scalars['Boolean'];
|
|
3854
3925
|
};
|
|
@@ -4260,6 +4331,9 @@ export declare type CreateCompassScorecardCriteriaInput = {
|
|
|
4260
4331
|
hasDescription?: Maybe<CreateCompassHasDescriptionScorecardCriteriaInput>;
|
|
4261
4332
|
hasOwner?: Maybe<CreateCompassHasOwnerScorecardCriteriaInput>;
|
|
4262
4333
|
hasMetricValue?: Maybe<CreateCompassHasMetricValueCriteriaInput>;
|
|
4334
|
+
hasCustomTextValue?: Maybe<CompassCreateHasCustomTextFieldScorecardCriteriaInput>;
|
|
4335
|
+
hasCustomBooleanValue?: Maybe<CompassCreateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
4336
|
+
hasCustomNumberValue?: Maybe<CompassCreateHasCustomNumberFieldScorecardCriteriaInput>;
|
|
4263
4337
|
};
|
|
4264
4338
|
export declare type CreateCompassScorecardCriteriasInput = {
|
|
4265
4339
|
criterias: Array<CreateCompassScorecardCriteriaInput>;
|
|
@@ -5851,6 +5925,9 @@ export declare type EcosystemQuery = {
|
|
|
5851
5925
|
userGrants?: Maybe<UserGrantConnection>;
|
|
5852
5926
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
5853
5927
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
5928
|
+
marketplacePartnerContactForCurrentUser?: Maybe<FortifiedMarketplaceAppWithContactPermissions>;
|
|
5929
|
+
marketplaceAppsByCurrentUserPartnerContactPermissions: Array<FortifiedMarketplaceApp>;
|
|
5930
|
+
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
5854
5931
|
forgeMetrics?: Maybe<ForgeMetricsQuery>;
|
|
5855
5932
|
};
|
|
5856
5933
|
export declare type EcosystemQueryUserGrantsArgs = {
|
|
@@ -5865,6 +5942,15 @@ export declare type EcosystemQueryCheckConsentPermissionByOAuthClientIdArgs = {
|
|
|
5865
5942
|
export declare type EcosystemQueryUserInstallationRulesArgs = {
|
|
5866
5943
|
cloudId: Scalars['ID'];
|
|
5867
5944
|
};
|
|
5945
|
+
export declare type EcosystemQueryMarketplacePartnerContactForCurrentUserArgs = {
|
|
5946
|
+
appKey: Scalars['String'];
|
|
5947
|
+
};
|
|
5948
|
+
export declare type EcosystemQueryMarketplaceAppsByCurrentUserPartnerContactPermissionsArgs = {
|
|
5949
|
+
permission: FortifiedMarketplacePartnerContactPermission;
|
|
5950
|
+
};
|
|
5951
|
+
export declare type EcosystemQueryFortifiedMetricsArgs = {
|
|
5952
|
+
appKey: Scalars['ID'];
|
|
5953
|
+
};
|
|
5868
5954
|
export declare type EcosystemQueryForgeMetricsArgs = {
|
|
5869
5955
|
appId: Scalars['ID'];
|
|
5870
5956
|
};
|
|
@@ -6158,6 +6244,82 @@ export declare type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
6158
6244
|
resolution: ForgeMetricsResolution;
|
|
6159
6245
|
};
|
|
6160
6246
|
export declare type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
6247
|
+
export declare type FortifiedMarketplaceApp = {
|
|
6248
|
+
__typename?: 'FortifiedMarketplaceApp';
|
|
6249
|
+
app?: Maybe<MarketplaceApp>;
|
|
6250
|
+
};
|
|
6251
|
+
export declare type FortifiedMarketplaceAppWithContactPermissions = {
|
|
6252
|
+
__typename?: 'FortifiedMarketplaceAppWithContactPermissions';
|
|
6253
|
+
app?: Maybe<MarketplaceApp>;
|
|
6254
|
+
permissions: Array<FortifiedMarketplacePartnerContactPermission>;
|
|
6255
|
+
};
|
|
6256
|
+
export declare enum FortifiedMarketplacePartnerContactPermission {
|
|
6257
|
+
AdministerPartner = "ADMINISTER_PARTNER",
|
|
6258
|
+
ManageAddonDetails = "MANAGE_ADDON_DETAILS",
|
|
6259
|
+
ManagePayment = "MANAGE_PAYMENT",
|
|
6260
|
+
ManagePricing = "MANAGE_PRICING",
|
|
6261
|
+
ManagePromotions = "MANAGE_PROMOTIONS",
|
|
6262
|
+
ManagePartnerDetails = "MANAGE_PARTNER_DETAILS",
|
|
6263
|
+
ViewSalesReports = "VIEW_SALES_REPORTS",
|
|
6264
|
+
ViewUsageReports = "VIEW_USAGE_REPORTS"
|
|
6265
|
+
}
|
|
6266
|
+
export declare type FortifiedMetricsIntervalInput = {
|
|
6267
|
+
start: Scalars['DateTime'];
|
|
6268
|
+
end: Scalars['DateTime'];
|
|
6269
|
+
};
|
|
6270
|
+
export declare type FortifiedMetricsIntervalRange = {
|
|
6271
|
+
__typename?: 'FortifiedMetricsIntervalRange';
|
|
6272
|
+
start: Scalars['DateTime'];
|
|
6273
|
+
end: Scalars['DateTime'];
|
|
6274
|
+
};
|
|
6275
|
+
export declare type FortifiedMetricsQuery = {
|
|
6276
|
+
__typename?: 'FortifiedMetricsQuery';
|
|
6277
|
+
appKey: Scalars['ID'];
|
|
6278
|
+
installationCallbacks?: Maybe<FortifiedSuccessRateMetricQuery>;
|
|
6279
|
+
};
|
|
6280
|
+
export declare type FortifiedMetricsQueryFilters = {
|
|
6281
|
+
interval: FortifiedMetricsIntervalInput;
|
|
6282
|
+
};
|
|
6283
|
+
export declare type FortifiedMetricsQueryInput = {
|
|
6284
|
+
filters: FortifiedMetricsQueryFilters;
|
|
6285
|
+
};
|
|
6286
|
+
export declare type FortifiedMetricsResolution = {
|
|
6287
|
+
__typename?: 'FortifiedMetricsResolution';
|
|
6288
|
+
size: Scalars['Int'];
|
|
6289
|
+
units: FortifiedMetricsResolutionUnit;
|
|
6290
|
+
};
|
|
6291
|
+
export declare enum FortifiedMetricsResolutionUnit {
|
|
6292
|
+
Hours = "HOURS",
|
|
6293
|
+
Minutes = "MINUTES"
|
|
6294
|
+
}
|
|
6295
|
+
export declare type FortifiedMetricsSuccessRateData = {
|
|
6296
|
+
__typename?: 'FortifiedMetricsSuccessRateData';
|
|
6297
|
+
name: Scalars['String'];
|
|
6298
|
+
series: Array<FortifiedMetricsSuccessRateSeries>;
|
|
6299
|
+
resolution: FortifiedMetricsResolution;
|
|
6300
|
+
interval: FortifiedMetricsIntervalRange;
|
|
6301
|
+
};
|
|
6302
|
+
export declare type FortifiedMetricsSuccessRateDataPoint = {
|
|
6303
|
+
__typename?: 'FortifiedMetricsSuccessRateDataPoint';
|
|
6304
|
+
timestamp: Scalars['DateTime'];
|
|
6305
|
+
value: Scalars['Float'];
|
|
6306
|
+
};
|
|
6307
|
+
export declare type FortifiedMetricsSuccessRateResult = FortifiedMetricsSuccessRateData | QueryError;
|
|
6308
|
+
export declare type FortifiedMetricsSuccessRateSeries = {
|
|
6309
|
+
__typename?: 'FortifiedMetricsSuccessRateSeries';
|
|
6310
|
+
data: Array<FortifiedMetricsSuccessRateDataPoint>;
|
|
6311
|
+
};
|
|
6312
|
+
export declare type FortifiedSuccessRateMetricQuery = {
|
|
6313
|
+
__typename?: 'FortifiedSuccessRateMetricQuery';
|
|
6314
|
+
serviceLevelObjectiveSuccessRate?: Maybe<FortifiedMetricsSuccessRateResult>;
|
|
6315
|
+
alertConditionSuccessRate?: Maybe<FortifiedMetricsSuccessRateResult>;
|
|
6316
|
+
};
|
|
6317
|
+
export declare type FortifiedSuccessRateMetricQueryServiceLevelObjectiveSuccessRateArgs = {
|
|
6318
|
+
query: FortifiedMetricsQueryInput;
|
|
6319
|
+
};
|
|
6320
|
+
export declare type FortifiedSuccessRateMetricQueryAlertConditionSuccessRateArgs = {
|
|
6321
|
+
query: FortifiedMetricsQueryInput;
|
|
6322
|
+
};
|
|
6161
6323
|
export declare type FunctionDescription = {
|
|
6162
6324
|
__typename?: 'FunctionDescription';
|
|
6163
6325
|
key: Scalars['String'];
|
|
@@ -6308,10 +6470,10 @@ export declare type HelpCenterQueryApi = {
|
|
|
6308
6470
|
helpCenterCollection?: Maybe<HelpCenterCollectionResult>;
|
|
6309
6471
|
};
|
|
6310
6472
|
export declare type HelpCenterQueryApiHelpCenterArgs = {
|
|
6311
|
-
|
|
6473
|
+
productName: Scalars['String'];
|
|
6312
6474
|
};
|
|
6313
6475
|
export declare type HelpCenterQueryApiHelpCenterCollectionArgs = {
|
|
6314
|
-
|
|
6476
|
+
productName: Scalars['String'];
|
|
6315
6477
|
collectionId: Scalars['ID'];
|
|
6316
6478
|
};
|
|
6317
6479
|
export declare type HelpCenterQueryResult = HelpCenter | QueryError;
|
|
@@ -7606,6 +7768,17 @@ export declare enum JiraDeploymentsFeaturePrecondition {
|
|
|
7606
7768
|
DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
|
|
7607
7769
|
AllSatisfied = "ALL_SATISFIED"
|
|
7608
7770
|
}
|
|
7771
|
+
export declare type JiraDevInfoConfigError = {
|
|
7772
|
+
__typename?: 'JiraDevInfoConfigError';
|
|
7773
|
+
errorType?: Maybe<JiraDevInfoConfigErrorType>;
|
|
7774
|
+
dataProviderId?: Maybe<Scalars['String']>;
|
|
7775
|
+
};
|
|
7776
|
+
export declare enum JiraDevInfoConfigErrorType {
|
|
7777
|
+
Unauthorized = "UNAUTHORIZED",
|
|
7778
|
+
NotConfigured = "NOT_CONFIGURED",
|
|
7779
|
+
Incapable = "INCAPABLE",
|
|
7780
|
+
UnknownConfigError = "UNKNOWN_CONFIG_ERROR"
|
|
7781
|
+
}
|
|
7609
7782
|
export declare type JiraDevOpsBranchDetails = {
|
|
7610
7783
|
__typename?: 'JiraDevOpsBranchDetails';
|
|
7611
7784
|
providerBranchId?: Maybe<Scalars['String']>;
|
|
@@ -8182,6 +8355,7 @@ export declare type JiraIssueBranchDevSummaryContainer = {
|
|
|
8182
8355
|
export declare type JiraIssueBranches = {
|
|
8183
8356
|
__typename?: 'JiraIssueBranches';
|
|
8184
8357
|
details?: Maybe<Array<JiraDevOpsBranchDetails>>;
|
|
8358
|
+
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
8185
8359
|
};
|
|
8186
8360
|
export declare type JiraIssueBuildDevSummary = {
|
|
8187
8361
|
__typename?: 'JiraIssueBuildDevSummary';
|
|
@@ -8209,6 +8383,7 @@ export declare type JiraIssueCommitDevSummaryContainer = {
|
|
|
8209
8383
|
export declare type JiraIssueCommits = {
|
|
8210
8384
|
__typename?: 'JiraIssueCommits';
|
|
8211
8385
|
details?: Maybe<Array<JiraDevOpsCommitDetails>>;
|
|
8386
|
+
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
8212
8387
|
};
|
|
8213
8388
|
export declare type JiraIssueConnection = {
|
|
8214
8389
|
__typename?: 'JiraIssueConnection';
|
|
@@ -8578,6 +8753,7 @@ export declare type JiraIssuePullRequestDevSummaryContainer = {
|
|
|
8578
8753
|
export declare type JiraIssuePullRequests = {
|
|
8579
8754
|
__typename?: 'JiraIssuePullRequests';
|
|
8580
8755
|
details?: Maybe<Array<JiraDevOpsPullRequestDetails>>;
|
|
8756
|
+
configErrors?: Maybe<Array<JiraDevInfoConfigError>>;
|
|
8581
8757
|
};
|
|
8582
8758
|
export declare type JiraIssueRestrictionField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
8583
8759
|
__typename?: 'JiraIssueRestrictionField';
|
|
@@ -9430,6 +9606,10 @@ export declare type JiraMutation = {
|
|
|
9430
9606
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
9431
9607
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
9432
9608
|
removeRelatedWorkFromVersion?: Maybe<JiraRemoveRelatedWorkFromVersionPayload>;
|
|
9609
|
+
updateVersionName?: Maybe<JiraUpdateVersionPayload>;
|
|
9610
|
+
updateVersionDescription?: Maybe<JiraUpdateVersionPayload>;
|
|
9611
|
+
updateVersionStartDate?: Maybe<JiraUpdateVersionPayload>;
|
|
9612
|
+
updateVersionReleaseDate?: Maybe<JiraUpdateVersionPayload>;
|
|
9433
9613
|
replaceIssueSearchViewFieldSets?: Maybe<JiraIssueSearchViewPayload>;
|
|
9434
9614
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
9435
9615
|
};
|
|
@@ -9459,6 +9639,18 @@ export declare type JiraMutationAddRelatedWorkToVersionArgs = {
|
|
|
9459
9639
|
export declare type JiraMutationRemoveRelatedWorkFromVersionArgs = {
|
|
9460
9640
|
input: JiraRemoveRelatedWorkFromVersionInput;
|
|
9461
9641
|
};
|
|
9642
|
+
export declare type JiraMutationUpdateVersionNameArgs = {
|
|
9643
|
+
input: JiraUpdateVersionNameInput;
|
|
9644
|
+
};
|
|
9645
|
+
export declare type JiraMutationUpdateVersionDescriptionArgs = {
|
|
9646
|
+
input: JiraUpdateVersionDescriptionInput;
|
|
9647
|
+
};
|
|
9648
|
+
export declare type JiraMutationUpdateVersionStartDateArgs = {
|
|
9649
|
+
input: JiraUpdateVersionStartDateInput;
|
|
9650
|
+
};
|
|
9651
|
+
export declare type JiraMutationUpdateVersionReleaseDateArgs = {
|
|
9652
|
+
input: JiraUpdateVersionReleaseDateInput;
|
|
9653
|
+
};
|
|
9462
9654
|
export declare type JiraMutationReplaceIssueSearchViewFieldSetsArgs = {
|
|
9463
9655
|
id: Scalars['ID'];
|
|
9464
9656
|
input: JiraReplaceIssueSearchViewFieldSetsInput;
|
|
@@ -11084,7 +11276,8 @@ export declare enum JiraServiceManagementPractice {
|
|
|
11084
11276
|
ServiceRequest = "SERVICE_REQUEST",
|
|
11085
11277
|
IncidentManagement = "INCIDENT_MANAGEMENT",
|
|
11086
11278
|
ProblemManagement = "PROBLEM_MANAGEMENT",
|
|
11087
|
-
ChangeManagement = "CHANGE_MANAGEMENT"
|
|
11279
|
+
ChangeManagement = "CHANGE_MANAGEMENT",
|
|
11280
|
+
PostIncidentReview = "POST_INCIDENT_REVIEW"
|
|
11088
11281
|
}
|
|
11089
11282
|
export declare type JiraServiceManagementRequestFeedbackField = Node & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & {
|
|
11090
11283
|
__typename?: 'JiraServiceManagementRequestFeedbackField';
|
|
@@ -11181,6 +11374,7 @@ export declare type JiraServiceManagementRespondersField = Node & JiraIssueField
|
|
|
11181
11374
|
description?: Maybe<Scalars['String']>;
|
|
11182
11375
|
responders?: Maybe<Array<Maybe<JiraServiceManagementResponder>>>;
|
|
11183
11376
|
respondersConnection?: Maybe<JiraServiceManagementResponderConnection>;
|
|
11377
|
+
searchUrl?: Maybe<Scalars['String']>;
|
|
11184
11378
|
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
11185
11379
|
};
|
|
11186
11380
|
export declare type JiraServiceManagementRespondersFieldRespondersConnectionArgs = {
|
|
@@ -11674,6 +11868,28 @@ export declare type JiraUpdateCustomFilterPayload = Payload & {
|
|
|
11674
11868
|
errors?: Maybe<Array<MutationError>>;
|
|
11675
11869
|
filter?: Maybe<JiraCustomFilter>;
|
|
11676
11870
|
};
|
|
11871
|
+
export declare type JiraUpdateVersionDescriptionInput = {
|
|
11872
|
+
id: Scalars['ID'];
|
|
11873
|
+
description?: Maybe<Scalars['String']>;
|
|
11874
|
+
};
|
|
11875
|
+
export declare type JiraUpdateVersionNameInput = {
|
|
11876
|
+
id: Scalars['ID'];
|
|
11877
|
+
name: Scalars['String'];
|
|
11878
|
+
};
|
|
11879
|
+
export declare type JiraUpdateVersionPayload = Payload & {
|
|
11880
|
+
__typename?: 'JiraUpdateVersionPayload';
|
|
11881
|
+
success: Scalars['Boolean'];
|
|
11882
|
+
errors?: Maybe<Array<MutationError>>;
|
|
11883
|
+
version?: Maybe<JiraVersion>;
|
|
11884
|
+
};
|
|
11885
|
+
export declare type JiraUpdateVersionReleaseDateInput = {
|
|
11886
|
+
id: Scalars['ID'];
|
|
11887
|
+
releaseDate?: Maybe<Scalars['DateTime']>;
|
|
11888
|
+
};
|
|
11889
|
+
export declare type JiraUpdateVersionStartDateInput = {
|
|
11890
|
+
id: Scalars['ID'];
|
|
11891
|
+
startDate?: Maybe<Scalars['DateTime']>;
|
|
11892
|
+
};
|
|
11677
11893
|
export declare type JiraUpdateVersionWarningConfigInput = {
|
|
11678
11894
|
jiraProjectId: Scalars['ID'];
|
|
11679
11895
|
updatedVersionWarningConfig: JiraVersionUpdatedWarningConfigInput;
|
|
@@ -15339,9 +15555,261 @@ export declare enum Scope {
|
|
|
15339
15555
|
ManageJiraConfiguration = "MANAGE_JIRA_CONFIGURATION",
|
|
15340
15556
|
JiraAtlassianExternal = "JIRA_ATLASSIAN_EXTERNAL",
|
|
15341
15557
|
ManageJiraDataProvider = "MANAGE_JIRA_DATA_PROVIDER",
|
|
15558
|
+
ManageJiraWebhook = "MANAGE_JIRA_WEBHOOK",
|
|
15559
|
+
ApplicationRoleRead = "APPLICATION_ROLE_READ",
|
|
15560
|
+
AuditLogRead = "AUDIT_LOG_READ",
|
|
15561
|
+
AsyncTaskDelete = "ASYNC_TASK_DELETE",
|
|
15562
|
+
AttachmentDelete = "ATTACHMENT_DELETE",
|
|
15563
|
+
AttachmentRead = "ATTACHMENT_READ",
|
|
15564
|
+
AttachmentWrite = "ATTACHMENT_WRITE",
|
|
15565
|
+
AvatarDelete = "AVATAR_DELETE",
|
|
15566
|
+
AvatarRead = "AVATAR_READ",
|
|
15567
|
+
AvatarWrite = "AVATAR_WRITE",
|
|
15568
|
+
CommentDelete = "COMMENT_DELETE",
|
|
15569
|
+
CommentPropertyDelete = "COMMENT_PROPERTY_DELETE",
|
|
15570
|
+
CommentPropertyRead = "COMMENT_PROPERTY_READ",
|
|
15571
|
+
CommentPropertyWrite = "COMMENT_PROPERTY_WRITE",
|
|
15572
|
+
CommentRead = "COMMENT_READ",
|
|
15573
|
+
CommentWrite = "COMMENT_WRITE",
|
|
15574
|
+
CustomFieldContextualConfigurationRead = "CUSTOM_FIELD_CONTEXTUAL_CONFIGURATION_READ",
|
|
15575
|
+
CustomFieldContextualConfigurationWrite = "CUSTOM_FIELD_CONTEXTUAL_CONFIGURATION_WRITE",
|
|
15576
|
+
DashboardDelete = "DASHBOARD_DELETE",
|
|
15577
|
+
DashboardPropertyDelete = "DASHBOARD_PROPERTY_DELETE",
|
|
15578
|
+
DashboardPropertyRead = "DASHBOARD_PROPERTY_READ",
|
|
15579
|
+
DashboardPropertyWrite = "DASHBOARD_PROPERTY_WRITE",
|
|
15580
|
+
DashboardRead = "DASHBOARD_READ",
|
|
15581
|
+
DashboardWrite = "DASHBOARD_WRITE",
|
|
15582
|
+
FieldConfigurationSchemeDelete = "FIELD_CONFIGURATION_SCHEME_DELETE",
|
|
15583
|
+
FieldConfigurationSchemeRead = "FIELD_CONFIGURATION_SCHEME_READ",
|
|
15584
|
+
FieldConfigurationSchemeWrite = "FIELD_CONFIGURATION_SCHEME_WRITE",
|
|
15585
|
+
FieldConfigurationDelete = "FIELD_CONFIGURATION_DELETE",
|
|
15586
|
+
FieldConfigurationRead = "FIELD_CONFIGURATION_READ",
|
|
15587
|
+
FieldConfigurationWrite = "FIELD_CONFIGURATION_WRITE",
|
|
15588
|
+
FieldDefaultValueRead = "FIELD_DEFAULT_VALUE_READ",
|
|
15589
|
+
FieldDefaultValueWrite = "FIELD_DEFAULT_VALUE_WRITE",
|
|
15590
|
+
FieldDelete = "FIELD_DELETE",
|
|
15591
|
+
FieldOptionsRead = "FIELD_OPTIONS_READ",
|
|
15592
|
+
FieldOptionDelete = "FIELD_OPTION_DELETE",
|
|
15593
|
+
FieldOptionRead = "FIELD_OPTION_READ",
|
|
15594
|
+
FieldOptionWrite = "FIELD_OPTION_WRITE",
|
|
15595
|
+
FieldRead = "FIELD_READ",
|
|
15596
|
+
FieldWrite = "FIELD_WRITE",
|
|
15597
|
+
FilterColumnDelete = "FILTER_COLUMN_DELETE",
|
|
15598
|
+
FilterColumnRead = "FILTER_COLUMN_READ",
|
|
15599
|
+
FilterColumnWrite = "FILTER_COLUMN_WRITE",
|
|
15600
|
+
FilterDefaultShareScopeRead = "FILTER_DEFAULT_SHARE_SCOPE_READ",
|
|
15601
|
+
FilterDefaultShareScopeWrite = "FILTER_DEFAULT_SHARE_SCOPE_WRITE",
|
|
15602
|
+
FilterDelete = "FILTER_DELETE",
|
|
15603
|
+
FilterRead = "FILTER_READ",
|
|
15604
|
+
FilterWrite = "FILTER_WRITE",
|
|
15605
|
+
GroupDelete = "GROUP_DELETE",
|
|
15606
|
+
GroupRead = "GROUP_READ",
|
|
15607
|
+
GroupWrite = "GROUP_WRITE",
|
|
15608
|
+
InstanceConfigurationRead = "INSTANCE_CONFIGURATION_READ",
|
|
15609
|
+
InstanceConfigurationWrite = "INSTANCE_CONFIGURATION_WRITE",
|
|
15610
|
+
IssueAdjustmentsRead = "ISSUE_ADJUSTMENTS_READ",
|
|
15611
|
+
IssueAdjustmentsWrite = "ISSUE_ADJUSTMENTS_WRITE",
|
|
15612
|
+
IssueAdjustmentsDelete = "ISSUE_ADJUSTMENTS_DELETE",
|
|
15613
|
+
IssueEventRead = "ISSUE_EVENT_READ",
|
|
15614
|
+
IssueFieldValuesRead = "ISSUE_FIELD_VALUES_READ",
|
|
15615
|
+
IssueChangelogRead = "ISSUE_CHANGELOG_READ",
|
|
15616
|
+
IssueDelete = "ISSUE_DELETE",
|
|
15617
|
+
IssueDetailsRead = "ISSUE_DETAILS_READ",
|
|
15618
|
+
IssueLinkDelete = "ISSUE_LINK_DELETE",
|
|
15619
|
+
IssueLinkTypeDelete = "ISSUE_LINK_TYPE_DELETE",
|
|
15620
|
+
IssueLinkTypeRead = "ISSUE_LINK_TYPE_READ",
|
|
15621
|
+
IssueLinkTypeWrite = "ISSUE_LINK_TYPE_WRITE",
|
|
15622
|
+
IssueLinkRead = "ISSUE_LINK_READ",
|
|
15623
|
+
IssueLinkWrite = "ISSUE_LINK_WRITE",
|
|
15624
|
+
IssuePropertyDelete = "ISSUE_PROPERTY_DELETE",
|
|
15625
|
+
IssuePropertyRead = "ISSUE_PROPERTY_READ",
|
|
15626
|
+
IssuePropertyWrite = "ISSUE_PROPERTY_WRITE",
|
|
15627
|
+
IssueRead = "ISSUE_READ",
|
|
15628
|
+
IssueRemoteLinkDelete = "ISSUE_REMOTE_LINK_DELETE",
|
|
15629
|
+
IssueRemoteLinkRead = "ISSUE_REMOTE_LINK_READ",
|
|
15630
|
+
IssueRemoteLinkWrite = "ISSUE_REMOTE_LINK_WRITE",
|
|
15631
|
+
IssueSecurityLevelRead = "ISSUE_SECURITY_LEVEL_READ",
|
|
15632
|
+
IssueSecuritySchemeRead = "ISSUE_SECURITY_SCHEME_READ",
|
|
15633
|
+
IssueStatusRead = "ISSUE_STATUS_READ",
|
|
15634
|
+
IssueTimeTrackingRead = "ISSUE_TIME_TRACKING_READ",
|
|
15635
|
+
IssueTimeTrackingWrite = "ISSUE_TIME_TRACKING_WRITE",
|
|
15636
|
+
IssueTransitionRead = "ISSUE_TRANSITION_READ",
|
|
15637
|
+
IssueTypeDelete = "ISSUE_TYPE_DELETE",
|
|
15638
|
+
IssueTypeHierarchyRead = "ISSUE_TYPE_HIERARCHY_READ",
|
|
15639
|
+
IssueTypePropertyDelete = "ISSUE_TYPE_PROPERTY_DELETE",
|
|
15640
|
+
IssueTypePropertyRead = "ISSUE_TYPE_PROPERTY_READ",
|
|
15641
|
+
IssueTypePropertyWrite = "ISSUE_TYPE_PROPERTY_WRITE",
|
|
15642
|
+
IssueTypeRead = "ISSUE_TYPE_READ",
|
|
15643
|
+
IssueTypeSchemeDelete = "ISSUE_TYPE_SCHEME_DELETE",
|
|
15644
|
+
IssueTypeSchemeRead = "ISSUE_TYPE_SCHEME_READ",
|
|
15645
|
+
IssueTypeSchemeWrite = "ISSUE_TYPE_SCHEME_WRITE",
|
|
15646
|
+
IssueTypeScreenSchemeDelete = "ISSUE_TYPE_SCREEN_SCHEME_DELETE",
|
|
15647
|
+
IssueTypeScreenSchemeRead = "ISSUE_TYPE_SCREEN_SCHEME_READ",
|
|
15648
|
+
IssueTypeScreenSchemeWrite = "ISSUE_TYPE_SCREEN_SCHEME_WRITE",
|
|
15649
|
+
IssueTypeWrite = "ISSUE_TYPE_WRITE",
|
|
15650
|
+
IssueVotesRead = "ISSUE_VOTES_READ",
|
|
15651
|
+
IssueVoteRead = "ISSUE_VOTE_READ",
|
|
15652
|
+
IssueVoteWrite = "ISSUE_VOTE_WRITE",
|
|
15653
|
+
IssueWatcherRead = "ISSUE_WATCHER_READ",
|
|
15654
|
+
IssueWatcherWrite = "ISSUE_WATCHER_WRITE",
|
|
15655
|
+
IssueWorklogDelete = "ISSUE_WORKLOG_DELETE",
|
|
15656
|
+
IssueWorklogPropertyDelete = "ISSUE_WORKLOG_PROPERTY_DELETE",
|
|
15657
|
+
IssueWorklogPropertyRead = "ISSUE_WORKLOG_PROPERTY_READ",
|
|
15658
|
+
IssueWorklogPropertyWrite = "ISSUE_WORKLOG_PROPERTY_WRITE",
|
|
15659
|
+
IssueWorklogRead = "ISSUE_WORKLOG_READ",
|
|
15660
|
+
IssueWorklogWrite = "ISSUE_WORKLOG_WRITE",
|
|
15661
|
+
IssueWrite = "ISSUE_WRITE",
|
|
15662
|
+
IssueMetaRead = "ISSUE_META_READ",
|
|
15663
|
+
JqlRead = "JQL_READ",
|
|
15664
|
+
JqlValidate = "JQL_VALIDATE",
|
|
15665
|
+
LabelRead = "LABEL_READ",
|
|
15666
|
+
LicenseRead = "LICENSE_READ",
|
|
15667
|
+
NotificationSchemeRead = "NOTIFICATION_SCHEME_READ",
|
|
15668
|
+
NotificationSend = "NOTIFICATION_SEND",
|
|
15669
|
+
PermissionDelete = "PERMISSION_DELETE",
|
|
15670
|
+
PermissionRead = "PERMISSION_READ",
|
|
15671
|
+
PermissionSchemeDelete = "PERMISSION_SCHEME_DELETE",
|
|
15672
|
+
PermissionSchemeRead = "PERMISSION_SCHEME_READ",
|
|
15673
|
+
PermissionSchemeWrite = "PERMISSION_SCHEME_WRITE",
|
|
15674
|
+
PermissionWrite = "PERMISSION_WRITE",
|
|
15675
|
+
PriorityRead = "PRIORITY_READ",
|
|
15676
|
+
ProjectAvatarDelete = "PROJECT_AVATAR_DELETE",
|
|
15677
|
+
ProjectAvatarRead = "PROJECT_AVATAR_READ",
|
|
15678
|
+
ProjectAvatarWrite = "PROJECT_AVATAR_WRITE",
|
|
15679
|
+
ProjectCategoryDelete = "PROJECT_CATEGORY_DELETE",
|
|
15680
|
+
ProjectCategoryRead = "PROJECT_CATEGORY_READ",
|
|
15681
|
+
ProjectCategoryWrite = "PROJECT_CATEGORY_WRITE",
|
|
15682
|
+
ProjectComponentDelete = "PROJECT_COMPONENT_DELETE",
|
|
15683
|
+
ProjectComponentRead = "PROJECT_COMPONENT_READ",
|
|
15684
|
+
ProjectComponentWrite = "PROJECT_COMPONENT_WRITE",
|
|
15685
|
+
ProjectEmailRead = "PROJECT_EMAIL_READ",
|
|
15686
|
+
ProjectEmailWrite = "PROJECT_EMAIL_WRITE",
|
|
15687
|
+
ProjectFeatureRead = "PROJECT_FEATURE_READ",
|
|
15688
|
+
ProjectFeatureWrite = "PROJECT_FEATURE_WRITE",
|
|
15689
|
+
ProjectPropertyDelete = "PROJECT_PROPERTY_DELETE",
|
|
15690
|
+
ProjectPropertyRead = "PROJECT_PROPERTY_READ",
|
|
15691
|
+
ProjectPropertyWrite = "PROJECT_PROPERTY_WRITE",
|
|
15692
|
+
ProjectRoleDelete = "PROJECT_ROLE_DELETE",
|
|
15693
|
+
ProjectRoleRead = "PROJECT_ROLE_READ",
|
|
15694
|
+
ProjectRoleWrite = "PROJECT_ROLE_WRITE",
|
|
15695
|
+
ProjectTypeRead = "PROJECT_TYPE_READ",
|
|
15696
|
+
ProjectVersionDelete = "PROJECT_VERSION_DELETE",
|
|
15697
|
+
ProjectVersionRead = "PROJECT_VERSION_READ",
|
|
15698
|
+
ProjectVersionWrite = "PROJECT_VERSION_WRITE",
|
|
15699
|
+
ProjectDelete = "PROJECT_DELETE",
|
|
15700
|
+
ProjectRead = "PROJECT_READ",
|
|
15701
|
+
ProjectWrite = "PROJECT_WRITE",
|
|
15702
|
+
ResolutionRead = "RESOLUTION_READ",
|
|
15703
|
+
ScreenableFieldDelete = "SCREENABLE_FIELD_DELETE",
|
|
15704
|
+
ScreenableFieldRead = "SCREENABLE_FIELD_READ",
|
|
15705
|
+
ScreenableFieldWrite = "SCREENABLE_FIELD_WRITE",
|
|
15706
|
+
ScreenDelete = "SCREEN_DELETE",
|
|
15707
|
+
ScreenFieldRead = "SCREEN_FIELD_READ",
|
|
15708
|
+
ScreenRead = "SCREEN_READ",
|
|
15709
|
+
ScreenSchemeDelete = "SCREEN_SCHEME_DELETE",
|
|
15710
|
+
ScreenSchemeRead = "SCREEN_SCHEME_READ",
|
|
15711
|
+
ScreenSchemeWrite = "SCREEN_SCHEME_WRITE",
|
|
15712
|
+
ScreenTabDelete = "SCREEN_TAB_DELETE",
|
|
15713
|
+
ScreenTabRead = "SCREEN_TAB_READ",
|
|
15714
|
+
ScreenTabWrite = "SCREEN_TAB_WRITE",
|
|
15715
|
+
ScreenWrite = "SCREEN_WRITE",
|
|
15716
|
+
StatusRead = "STATUS_READ",
|
|
15717
|
+
UserColumnsRead = "USER_COLUMNS_READ",
|
|
15718
|
+
UserConfigurationDelete = "USER_CONFIGURATION_DELETE",
|
|
15719
|
+
UserConfigurationRead = "USER_CONFIGURATION_READ",
|
|
15720
|
+
UserConfigurationWrite = "USER_CONFIGURATION_WRITE",
|
|
15721
|
+
UserPropertyDelete = "USER_PROPERTY_DELETE",
|
|
15722
|
+
UserPropertyRead = "USER_PROPERTY_READ",
|
|
15723
|
+
UserPropertyWrite = "USER_PROPERTY_WRITE",
|
|
15724
|
+
UserRead = "USER_READ",
|
|
15725
|
+
WebhookRead = "WEBHOOK_READ",
|
|
15726
|
+
WebhookWrite = "WEBHOOK_WRITE",
|
|
15727
|
+
WebhookDelete = "WEBHOOK_DELETE",
|
|
15728
|
+
WorkflowDelete = "WORKFLOW_DELETE",
|
|
15729
|
+
WorkflowPropertyDelete = "WORKFLOW_PROPERTY_DELETE",
|
|
15730
|
+
WorkflowPropertyRead = "WORKFLOW_PROPERTY_READ",
|
|
15731
|
+
WorkflowPropertyWrite = "WORKFLOW_PROPERTY_WRITE",
|
|
15732
|
+
WorkflowRead = "WORKFLOW_READ",
|
|
15733
|
+
WorkflowSchemeDelete = "WORKFLOW_SCHEME_DELETE",
|
|
15734
|
+
WorkflowSchemeRead = "WORKFLOW_SCHEME_READ",
|
|
15735
|
+
WorkflowSchemeWrite = "WORKFLOW_SCHEME_WRITE",
|
|
15736
|
+
WorkflowWrite = "WORKFLOW_WRITE",
|
|
15737
|
+
JiraExpressionsRead = "JIRA_EXPRESSIONS_READ",
|
|
15342
15738
|
ReadServicedeskRequest = "READ_SERVICEDESK_REQUEST",
|
|
15343
15739
|
WriteServicedeskRequest = "WRITE_SERVICEDESK_REQUEST",
|
|
15344
15740
|
ManageServicedeskCustomer = "MANAGE_SERVICEDESK_CUSTOMER",
|
|
15741
|
+
ReadCustomer = "READ_CUSTOMER",
|
|
15742
|
+
WriteCustomer = "WRITE_CUSTOMER",
|
|
15743
|
+
ReadOrganization = "READ_ORGANIZATION",
|
|
15744
|
+
WriteOrganization = "WRITE_ORGANIZATION",
|
|
15745
|
+
DeleteOrganization = "DELETE_ORGANIZATION",
|
|
15746
|
+
ReadOrganizationUser = "READ_ORGANIZATION_USER",
|
|
15747
|
+
WriteOrganizationUser = "WRITE_ORGANIZATION_USER",
|
|
15748
|
+
DeleteOrganizationUser = "DELETE_ORGANIZATION_USER",
|
|
15749
|
+
ReadOrganizationProperty = "READ_ORGANIZATION_PROPERTY",
|
|
15750
|
+
WriteOrganizationProperty = "WRITE_ORGANIZATION_PROPERTY",
|
|
15751
|
+
DeleteOrganizationProperty = "DELETE_ORGANIZATION_PROPERTY",
|
|
15752
|
+
ReadServicedesk = "READ_SERVICEDESK",
|
|
15753
|
+
WriteServicedesk = "WRITE_SERVICEDESK",
|
|
15754
|
+
ReadServicedeskOrganization = "READ_SERVICEDESK_ORGANIZATION",
|
|
15755
|
+
WriteServicedeskOrganization = "WRITE_SERVICEDESK_ORGANIZATION",
|
|
15756
|
+
DeleteServicedeskOrganization = "DELETE_SERVICEDESK_ORGANIZATION",
|
|
15757
|
+
ReadServicedeskCustomer = "READ_SERVICEDESK_CUSTOMER",
|
|
15758
|
+
WriteServicedeskCustomer = "WRITE_SERVICEDESK_CUSTOMER",
|
|
15759
|
+
DeleteServicedeskCustomer = "DELETE_SERVICEDESK_CUSTOMER",
|
|
15760
|
+
ReadServicedeskProperty = "READ_SERVICEDESK_PROPERTY",
|
|
15761
|
+
WriteServicedeskProperty = "WRITE_SERVICEDESK_PROPERTY",
|
|
15762
|
+
DeleteServicedeskProperty = "DELETE_SERVICEDESK_PROPERTY",
|
|
15763
|
+
ReadRequesttype = "READ_REQUESTTYPE",
|
|
15764
|
+
WriteRequesttype = "WRITE_REQUESTTYPE",
|
|
15765
|
+
ReadRequesttypeProperty = "READ_REQUESTTYPE_PROPERTY",
|
|
15766
|
+
WriteRequesttypeProperty = "WRITE_REQUESTTYPE_PROPERTY",
|
|
15767
|
+
DeleteRequesttypeProperty = "DELETE_REQUESTTYPE_PROPERTY",
|
|
15768
|
+
ReadQueue = "READ_QUEUE",
|
|
15769
|
+
ReadRequest = "READ_REQUEST",
|
|
15770
|
+
WriteRequest = "WRITE_REQUEST",
|
|
15771
|
+
ReadRequestApproval = "READ_REQUEST_APPROVAL",
|
|
15772
|
+
WriteRequestApproval = "WRITE_REQUEST_APPROVAL",
|
|
15773
|
+
ReadRequestParticipant = "READ_REQUEST_PARTICIPANT",
|
|
15774
|
+
WriteRequestParticipant = "WRITE_REQUEST_PARTICIPANT",
|
|
15775
|
+
DeleteRequestParticipant = "DELETE_REQUEST_PARTICIPANT",
|
|
15776
|
+
ReadRequestAction = "READ_REQUEST_ACTION",
|
|
15777
|
+
ReadRequestComment = "READ_REQUEST_COMMENT",
|
|
15778
|
+
WriteRequestComment = "WRITE_REQUEST_COMMENT",
|
|
15779
|
+
ReadRequestSla = "READ_REQUEST_SLA",
|
|
15780
|
+
ReadRequestAttachment = "READ_REQUEST_ATTACHMENT",
|
|
15781
|
+
WriteRequestAttachment = "WRITE_REQUEST_ATTACHMENT",
|
|
15782
|
+
ReadRequestStatus = "READ_REQUEST_STATUS",
|
|
15783
|
+
WriteRequestStatus = "WRITE_REQUEST_STATUS",
|
|
15784
|
+
ReadRequestFeedback = "READ_REQUEST_FEEDBACK",
|
|
15785
|
+
WriteRequestFeedback = "WRITE_REQUEST_FEEDBACK",
|
|
15786
|
+
DeleteRequestFeedback = "DELETE_REQUEST_FEEDBACK",
|
|
15787
|
+
ReadRequestNotification = "READ_REQUEST_NOTIFICATION",
|
|
15788
|
+
WriteRequestNotification = "WRITE_REQUEST_NOTIFICATION",
|
|
15789
|
+
DeleteRequestNotification = "DELETE_REQUEST_NOTIFICATION",
|
|
15790
|
+
ReadKnowledgebase = "READ_KNOWLEDGEBASE",
|
|
15791
|
+
ReadJswBoardScope = "READ_JSW_BOARD_SCOPE",
|
|
15792
|
+
WriteJswBoardScope = "WRITE_JSW_BOARD_SCOPE",
|
|
15793
|
+
ReadJswBoardScopeAdmin = "READ_JSW_BOARD_SCOPE_ADMIN",
|
|
15794
|
+
WriteJswBoardScopeAdmin = "WRITE_JSW_BOARD_SCOPE_ADMIN",
|
|
15795
|
+
DeleteJswBoardScopeAdmin = "DELETE_JSW_BOARD_SCOPE_ADMIN",
|
|
15796
|
+
ReadJswEpic = "READ_JSW_EPIC",
|
|
15797
|
+
WriteJswEpic = "WRITE_JSW_EPIC",
|
|
15798
|
+
ReadJswIssue = "READ_JSW_ISSUE",
|
|
15799
|
+
WriteJswIssue = "WRITE_JSW_ISSUE",
|
|
15800
|
+
ReadJswSprint = "READ_JSW_SPRINT",
|
|
15801
|
+
WriteJswSprint = "WRITE_JSW_SPRINT",
|
|
15802
|
+
DeleteJswSprint = "DELETE_JSW_SPRINT",
|
|
15803
|
+
ReadJswSourceCode = "READ_JSW_SOURCE_CODE",
|
|
15804
|
+
WriteJswSourceCode = "WRITE_JSW_SOURCE_CODE",
|
|
15805
|
+
ReadJswFeatureFlag = "READ_JSW_FEATURE_FLAG",
|
|
15806
|
+
WriteJswFeatureFlag = "WRITE_JSW_FEATURE_FLAG",
|
|
15807
|
+
ReadJswDeployment = "READ_JSW_DEPLOYMENT",
|
|
15808
|
+
WriteJswDeployment = "WRITE_JSW_DEPLOYMENT",
|
|
15809
|
+
ReadJswBuild = "READ_JSW_BUILD",
|
|
15810
|
+
WriteJswBuild = "WRITE_JSW_BUILD",
|
|
15811
|
+
ReadJswRemoteLink = "READ_JSW_REMOTE_LINK",
|
|
15812
|
+
WriteJswRemoteLink = "WRITE_JSW_REMOTE_LINK",
|
|
15345
15813
|
ReadNotifications = "READ_NOTIFICATIONS",
|
|
15346
15814
|
WriteNotifications = "WRITE_NOTIFICATIONS",
|
|
15347
15815
|
AdminContainer = "ADMIN_CONTAINER",
|
|
@@ -17070,6 +17538,9 @@ export declare type UpdateCompassScorecardCriteriaInput = {
|
|
|
17070
17538
|
hasDescription?: Maybe<UpdateCompassHasDescriptionScorecardCriteriaInput>;
|
|
17071
17539
|
hasOwner?: Maybe<UpdateCompassHasOwnerScorecardCriteriaInput>;
|
|
17072
17540
|
hasMetricValue?: Maybe<UpdateCompassHasMetricValueCriteriaInput>;
|
|
17541
|
+
hasCustomTextValue?: Maybe<CompassUpdateHasCustomTextFieldScorecardCriteriaInput>;
|
|
17542
|
+
hasCustomBooleanValue?: Maybe<CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
17543
|
+
hasCustomNumberValue?: Maybe<CompassUpdateHasCustomNumberFieldScorecardCriteriaInput>;
|
|
17073
17544
|
};
|
|
17074
17545
|
export declare type UpdateCompassScorecardCriteriasInput = {
|
|
17075
17546
|
criterias: Array<UpdateCompassScorecardCriteriaInput>;
|