@forge/cli-shared 5.0.0-next.4-experimental-c6147b1 → 5.0.0-next.5
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 +3 -37
- package/out/graphql/graphql-types.d.ts +178 -32
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +42 -12
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,45 +1,11 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 5.0.0-next.
|
|
4
|
-
|
|
5
|
-
### Major Changes
|
|
6
|
-
|
|
7
|
-
- 5c2c20f: Fixed the issue where the CLI was unable to bundle modules with multiple entrypoints using different resource types.
|
|
8
|
-
|
|
9
|
-
Specifically the following configuration that supports both UI Kit and Custom UI resources are now supported properly.
|
|
10
|
-
|
|
11
|
-
```yaml
|
|
12
|
-
modules:
|
|
13
|
-
jira:customFieldType:
|
|
14
|
-
- key: my_custom_field_app
|
|
15
|
-
resource: ui-kit-resource
|
|
16
|
-
render: native
|
|
17
|
-
contextConfig:
|
|
18
|
-
resource: custom-ui-resource
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
In the previous CLI version, the above configuration would assume that the `custom-ui-resource` is a UI Kit resource
|
|
22
|
-
and would expected a UI Kit based resource is linked. To support using same resource type for multiple entrypoints,
|
|
23
|
-
in above example, please add `render: native` to the `contextConfig` to correct the resource type:
|
|
24
|
-
|
|
25
|
-
```yaml
|
|
26
|
-
modules:
|
|
27
|
-
jira:customFieldType:
|
|
28
|
-
- key: my_custom_field_app
|
|
29
|
-
resource: ui-kit-resource
|
|
30
|
-
render: native
|
|
31
|
-
contextConfig:
|
|
32
|
-
resource: ui-kit-resource
|
|
33
|
-
render: native
|
|
34
|
-
```
|
|
3
|
+
## 5.0.0-next.5
|
|
35
4
|
|
|
36
5
|
### Patch Changes
|
|
37
6
|
|
|
38
|
-
- Updated dependencies [
|
|
39
|
-
-
|
|
40
|
-
- Updated dependencies [6099d41]
|
|
41
|
-
- Updated dependencies [f04a310]
|
|
42
|
-
- @forge/manifest@7.3.0-next.3-experimental-c6147b1
|
|
7
|
+
- Updated dependencies [7787d36]
|
|
8
|
+
- @forge/manifest@7.3.0-next.4
|
|
43
9
|
|
|
44
10
|
## 5.0.0-next.4
|
|
45
11
|
|
|
@@ -3758,12 +3758,6 @@ export declare type CompassComponentSpecTagEdge = {
|
|
|
3758
3758
|
cursor: Scalars['String']['output'];
|
|
3759
3759
|
node: CompassComponentSpecTag;
|
|
3760
3760
|
};
|
|
3761
|
-
export declare type CompassComponentStats = {
|
|
3762
|
-
__typename?: 'CompassComponentStats';
|
|
3763
|
-
failing: Scalars['Int']['output'];
|
|
3764
|
-
needsWork: Scalars['Int']['output'];
|
|
3765
|
-
passing: Scalars['Int']['output'];
|
|
3766
|
-
};
|
|
3767
3761
|
export declare type CompassComponentTier = {
|
|
3768
3762
|
__typename?: 'CompassComponentTier';
|
|
3769
3763
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -3962,12 +3956,24 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
3962
3956
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
3963
3957
|
weight: Scalars['Int']['input'];
|
|
3964
3958
|
};
|
|
3959
|
+
export declare type CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput = {
|
|
3960
|
+
collectionComparator: CompassCriteriaCollectionComparatorOptions;
|
|
3961
|
+
collectionComparatorValue: Array<Scalars['ID']['input']>;
|
|
3962
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
3963
|
+
weight: Scalars['Int']['input'];
|
|
3964
|
+
};
|
|
3965
3965
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
3966
3966
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
3967
3967
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
3968
3968
|
numberComparatorValue: Scalars['Float']['input'];
|
|
3969
3969
|
weight: Scalars['Int']['input'];
|
|
3970
3970
|
};
|
|
3971
|
+
export declare type CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
3972
|
+
customFieldDefinitionId: Scalars['ID']['input'];
|
|
3973
|
+
membershipComparator: CompassCriteriaMembershipComparatorOptions;
|
|
3974
|
+
membershipComparatorValue: Array<Scalars['ID']['input']>;
|
|
3975
|
+
weight: Scalars['Int']['input'];
|
|
3976
|
+
};
|
|
3971
3977
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
3972
3978
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
3973
3979
|
weight: Scalars['Int']['input'];
|
|
@@ -4103,6 +4109,15 @@ export declare type CompassCreateWebhookPayload = Payload & {
|
|
|
4103
4109
|
export declare enum CompassCriteriaBooleanComparatorOptions {
|
|
4104
4110
|
Equals = "EQUALS"
|
|
4105
4111
|
}
|
|
4112
|
+
export declare enum CompassCriteriaCollectionComparatorOptions {
|
|
4113
|
+
AllOf = "ALL_OF",
|
|
4114
|
+
AnyOf = "ANY_OF",
|
|
4115
|
+
NoneOf = "NONE_OF"
|
|
4116
|
+
}
|
|
4117
|
+
export declare enum CompassCriteriaMembershipComparatorOptions {
|
|
4118
|
+
In = "IN",
|
|
4119
|
+
NotIn = "NOT_IN"
|
|
4120
|
+
}
|
|
4106
4121
|
export declare enum CompassCriteriaNumberComparatorOptions {
|
|
4107
4122
|
Equals = "EQUALS",
|
|
4108
4123
|
GreaterThan = "GREATER_THAN",
|
|
@@ -4116,6 +4131,7 @@ export declare enum CompassCriteriaTextComparatorOptions {
|
|
|
4116
4131
|
}
|
|
4117
4132
|
export declare type CompassCustomBooleanField = CompassCustomField & {
|
|
4118
4133
|
__typename?: 'CompassCustomBooleanField';
|
|
4134
|
+
annotations?: Maybe<Array<CompassCustomFieldAnnotation>>;
|
|
4119
4135
|
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
4120
4136
|
definition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
4121
4137
|
};
|
|
@@ -4128,6 +4144,7 @@ export declare type CompassCustomBooleanFieldDefinition = CompassCustomFieldDefi
|
|
|
4128
4144
|
name?: Maybe<Scalars['String']['output']>;
|
|
4129
4145
|
};
|
|
4130
4146
|
export declare type CompassCustomBooleanFieldInput = {
|
|
4147
|
+
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4131
4148
|
booleanValue: Scalars['Boolean']['input'];
|
|
4132
4149
|
definitionId: Scalars['ID']['input'];
|
|
4133
4150
|
};
|
|
@@ -4158,6 +4175,17 @@ export declare type CompassCustomEventPropertiesInput = {
|
|
|
4158
4175
|
export declare type CompassCustomField = {
|
|
4159
4176
|
definition?: Maybe<CompassCustomFieldDefinition>;
|
|
4160
4177
|
};
|
|
4178
|
+
export declare type CompassCustomFieldAnnotation = {
|
|
4179
|
+
__typename?: 'CompassCustomFieldAnnotation';
|
|
4180
|
+
description: Scalars['String']['output'];
|
|
4181
|
+
linkText: Scalars['String']['output'];
|
|
4182
|
+
linkUri: Scalars['URL']['output'];
|
|
4183
|
+
};
|
|
4184
|
+
export declare type CompassCustomFieldAnnotationInput = {
|
|
4185
|
+
description: Scalars['String']['input'];
|
|
4186
|
+
linkText: Scalars['String']['input'];
|
|
4187
|
+
linkUri: Scalars['URL']['input'];
|
|
4188
|
+
};
|
|
4161
4189
|
export declare type CompassCustomFieldDefinition = {
|
|
4162
4190
|
componentTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4163
4191
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
@@ -4205,6 +4233,7 @@ export declare type CompassCustomFieldScorecardCriteriaScorecardCriteriaScoreArg
|
|
|
4205
4233
|
};
|
|
4206
4234
|
export declare type CompassCustomMultiSelectField = CompassCustomField & {
|
|
4207
4235
|
__typename?: 'CompassCustomMultiSelectField';
|
|
4236
|
+
annotations?: Maybe<Array<CompassCustomFieldAnnotation>>;
|
|
4208
4237
|
definition?: Maybe<CompassCustomMultiSelectFieldDefinition>;
|
|
4209
4238
|
options?: Maybe<Array<CompassCustomSelectFieldOption>>;
|
|
4210
4239
|
};
|
|
@@ -4218,11 +4247,13 @@ export declare type CompassCustomMultiSelectFieldDefinition = CompassCustomField
|
|
|
4218
4247
|
options?: Maybe<Array<CompassCustomSelectFieldOption>>;
|
|
4219
4248
|
};
|
|
4220
4249
|
export declare type CompassCustomMultiSelectFieldInput = {
|
|
4250
|
+
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4221
4251
|
definitionId: Scalars['ID']['input'];
|
|
4222
4252
|
options?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4223
4253
|
};
|
|
4224
4254
|
export declare type CompassCustomNumberField = CompassCustomField & {
|
|
4225
4255
|
__typename?: 'CompassCustomNumberField';
|
|
4256
|
+
annotations?: Maybe<Array<CompassCustomFieldAnnotation>>;
|
|
4226
4257
|
definition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
4227
4258
|
numberValue?: Maybe<Scalars['Float']['output']>;
|
|
4228
4259
|
};
|
|
@@ -4235,6 +4266,7 @@ export declare type CompassCustomNumberFieldDefinition = CompassCustomFieldDefin
|
|
|
4235
4266
|
name?: Maybe<Scalars['String']['output']>;
|
|
4236
4267
|
};
|
|
4237
4268
|
export declare type CompassCustomNumberFieldInput = {
|
|
4269
|
+
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4238
4270
|
definitionId: Scalars['ID']['input'];
|
|
4239
4271
|
numberValue?: InputMaybe<Scalars['Float']['input']>;
|
|
4240
4272
|
};
|
|
@@ -4245,6 +4277,7 @@ export declare type CompassCustomSelectFieldOption = Node & {
|
|
|
4245
4277
|
};
|
|
4246
4278
|
export declare type CompassCustomSingleSelectField = CompassCustomField & {
|
|
4247
4279
|
__typename?: 'CompassCustomSingleSelectField';
|
|
4280
|
+
annotations?: Maybe<Array<CompassCustomFieldAnnotation>>;
|
|
4248
4281
|
definition?: Maybe<CompassCustomSingleSelectFieldDefinition>;
|
|
4249
4282
|
option?: Maybe<CompassCustomSelectFieldOption>;
|
|
4250
4283
|
};
|
|
@@ -4258,11 +4291,13 @@ export declare type CompassCustomSingleSelectFieldDefinition = CompassCustomFiel
|
|
|
4258
4291
|
options?: Maybe<Array<CompassCustomSelectFieldOption>>;
|
|
4259
4292
|
};
|
|
4260
4293
|
export declare type CompassCustomSingleSelectFieldInput = {
|
|
4294
|
+
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4261
4295
|
definitionId: Scalars['ID']['input'];
|
|
4262
4296
|
option?: InputMaybe<Scalars['ID']['input']>;
|
|
4263
4297
|
};
|
|
4264
4298
|
export declare type CompassCustomTextField = CompassCustomField & {
|
|
4265
4299
|
__typename?: 'CompassCustomTextField';
|
|
4300
|
+
annotations?: Maybe<Array<CompassCustomFieldAnnotation>>;
|
|
4266
4301
|
definition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
4267
4302
|
textValue?: Maybe<Scalars['String']['output']>;
|
|
4268
4303
|
};
|
|
@@ -4275,11 +4310,13 @@ export declare type CompassCustomTextFieldDefinition = CompassCustomFieldDefinit
|
|
|
4275
4310
|
name?: Maybe<Scalars['String']['output']>;
|
|
4276
4311
|
};
|
|
4277
4312
|
export declare type CompassCustomTextFieldInput = {
|
|
4313
|
+
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4278
4314
|
definitionId: Scalars['ID']['input'];
|
|
4279
4315
|
textValue?: InputMaybe<Scalars['String']['input']>;
|
|
4280
4316
|
};
|
|
4281
4317
|
export declare type CompassCustomUserField = CompassCustomField & {
|
|
4282
4318
|
__typename?: 'CompassCustomUserField';
|
|
4319
|
+
annotations?: Maybe<Array<CompassCustomFieldAnnotation>>;
|
|
4283
4320
|
definition?: Maybe<CompassCustomUserFieldDefinition>;
|
|
4284
4321
|
userIdValue?: Maybe<Scalars['ID']['output']>;
|
|
4285
4322
|
userValue?: Maybe<User>;
|
|
@@ -4293,6 +4330,7 @@ export declare type CompassCustomUserFieldDefinition = CompassCustomFieldDefinit
|
|
|
4293
4330
|
name?: Maybe<Scalars['String']['output']>;
|
|
4294
4331
|
};
|
|
4295
4332
|
export declare type CompassCustomUserFieldInput = {
|
|
4333
|
+
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4296
4334
|
definitionId: Scalars['ID']['input'];
|
|
4297
4335
|
userIdValue?: InputMaybe<Scalars['ID']['input']>;
|
|
4298
4336
|
};
|
|
@@ -4641,6 +4679,19 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCusto
|
|
|
4641
4679
|
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
4642
4680
|
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
4643
4681
|
};
|
|
4682
|
+
export declare type CompassHasCustomMultiSelectFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
4683
|
+
__typename?: 'CompassHasCustomMultiSelectFieldScorecardCriteria';
|
|
4684
|
+
collectionComparator?: Maybe<CompassCriteriaCollectionComparatorOptions>;
|
|
4685
|
+
collectionComparatorValue: Array<Scalars['ID']['output']>;
|
|
4686
|
+
customFieldDefinition?: Maybe<CompassCustomMultiSelectFieldDefinition>;
|
|
4687
|
+
customFieldDefinitionId: Scalars['ID']['output'];
|
|
4688
|
+
id: Scalars['ID']['output'];
|
|
4689
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4690
|
+
weight: Scalars['Int']['output'];
|
|
4691
|
+
};
|
|
4692
|
+
export declare type CompassHasCustomMultiSelectFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
4693
|
+
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
4694
|
+
};
|
|
4644
4695
|
export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
4645
4696
|
__typename?: 'CompassHasCustomNumberFieldScorecardCriteria';
|
|
4646
4697
|
customFieldDefinition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
@@ -4653,6 +4704,19 @@ export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassCustom
|
|
|
4653
4704
|
export declare type CompassHasCustomNumberFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
4654
4705
|
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
4655
4706
|
};
|
|
4707
|
+
export declare type CompassHasCustomSingleSelectFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
4708
|
+
__typename?: 'CompassHasCustomSingleSelectFieldScorecardCriteria';
|
|
4709
|
+
customFieldDefinition?: Maybe<CompassCustomSingleSelectFieldDefinition>;
|
|
4710
|
+
customFieldDefinitionId: Scalars['ID']['output'];
|
|
4711
|
+
id: Scalars['ID']['output'];
|
|
4712
|
+
membershipComparator?: Maybe<CompassCriteriaMembershipComparatorOptions>;
|
|
4713
|
+
membershipComparatorValue: Array<Scalars['ID']['output']>;
|
|
4714
|
+
scorecardCriteriaScore?: Maybe<CompassScorecardCriteriaScore>;
|
|
4715
|
+
weight: Scalars['Int']['output'];
|
|
4716
|
+
};
|
|
4717
|
+
export declare type CompassHasCustomSingleSelectFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
4718
|
+
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
4719
|
+
};
|
|
4656
4720
|
export declare type CompassHasCustomTextFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
4657
4721
|
__typename?: 'CompassHasCustomTextFieldScorecardCriteria';
|
|
4658
4722
|
customFieldDefinition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
@@ -5183,7 +5247,6 @@ export declare type CompassScoreStatisticsHistoryOwnersFilter = {
|
|
|
5183
5247
|
export declare type CompassScorecard = Node & {
|
|
5184
5248
|
__typename?: 'CompassScorecard';
|
|
5185
5249
|
applicationModel: CompassScorecardApplicationModel;
|
|
5186
|
-
appliedToComponentStats?: Maybe<CompassScorecardComponentStatsQueryResult>;
|
|
5187
5250
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
5188
5251
|
changeMetadata: CompassChangeMetadata;
|
|
5189
5252
|
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
@@ -5293,13 +5356,6 @@ export declare type CompassScorecardAutomaticApplicationModel = CompassScorecard
|
|
|
5293
5356
|
componentTiers?: Maybe<Array<CompassComponentTier>>;
|
|
5294
5357
|
componentTypeIds: Array<Scalars['ID']['output']>;
|
|
5295
5358
|
};
|
|
5296
|
-
export declare type CompassScorecardComponentStats = {
|
|
5297
|
-
__typename?: 'CompassScorecardComponentStats';
|
|
5298
|
-
componentStats?: Maybe<CompassComponentStats>;
|
|
5299
|
-
scorecardCriteriaStats?: Maybe<Array<CompassScorecardCriteriaStats>>;
|
|
5300
|
-
totalCount: Scalars['Int']['output'];
|
|
5301
|
-
};
|
|
5302
|
-
export declare type CompassScorecardComponentStatsQueryResult = CompassScorecardComponentStats | QueryError;
|
|
5303
5359
|
export declare type CompassScorecardConnection = {
|
|
5304
5360
|
__typename?: 'CompassScorecardConnection';
|
|
5305
5361
|
edges?: Maybe<Array<CompassScorecardEdge>>;
|
|
@@ -5378,14 +5434,6 @@ export declare type CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter =
|
|
|
5378
5434
|
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
5379
5435
|
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
5380
5436
|
};
|
|
5381
|
-
export declare type CompassScorecardCriteriaStats = {
|
|
5382
|
-
__typename?: 'CompassScorecardCriteriaStats';
|
|
5383
|
-
error: Scalars['Int']['output'];
|
|
5384
|
-
failing: Scalars['Int']['output'];
|
|
5385
|
-
passing: Scalars['Int']['output'];
|
|
5386
|
-
scorecardCriteriaId: Scalars['ID']['output'];
|
|
5387
|
-
weight: Scalars['Int']['output'];
|
|
5388
|
-
};
|
|
5389
5437
|
export declare type CompassScorecardCriterionScore = {
|
|
5390
5438
|
criterionId: Scalars['ID']['output'];
|
|
5391
5439
|
explanation: Scalars['String']['output'];
|
|
@@ -5857,6 +5905,13 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
5857
5905
|
id: Scalars['ID']['input'];
|
|
5858
5906
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
5859
5907
|
};
|
|
5908
|
+
export declare type CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput = {
|
|
5909
|
+
collectionComparator?: InputMaybe<CompassCriteriaCollectionComparatorOptions>;
|
|
5910
|
+
collectionComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5911
|
+
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
5912
|
+
id: Scalars['ID']['input'];
|
|
5913
|
+
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
5914
|
+
};
|
|
5860
5915
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
5861
5916
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
5862
5917
|
id: Scalars['ID']['input'];
|
|
@@ -5864,6 +5919,13 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
5864
5919
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
5865
5920
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
5866
5921
|
};
|
|
5922
|
+
export declare type CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInput = {
|
|
5923
|
+
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
5924
|
+
id: Scalars['ID']['input'];
|
|
5925
|
+
membershipComparator?: InputMaybe<CompassCriteriaMembershipComparatorOptions>;
|
|
5926
|
+
membershipComparatorValue?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5927
|
+
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
5928
|
+
};
|
|
5867
5929
|
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
5868
5930
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
5869
5931
|
id: Scalars['ID']['input'];
|
|
@@ -7113,6 +7175,7 @@ export declare type ContentPlatformAnchorResult = {
|
|
|
7113
7175
|
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7114
7176
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7115
7177
|
id: Scalars['String']['output'];
|
|
7178
|
+
lozenge?: Maybe<Scalars['String']['output']>;
|
|
7116
7179
|
name?: Maybe<Scalars['String']['output']>;
|
|
7117
7180
|
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
7118
7181
|
product?: Maybe<ContentPlatformProduct>;
|
|
@@ -7192,6 +7255,7 @@ export declare type ContentPlatformCategory = {
|
|
|
7192
7255
|
__typename?: 'ContentPlatformCategory';
|
|
7193
7256
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7194
7257
|
description?: Maybe<Scalars['String']['output']>;
|
|
7258
|
+
experiment?: Maybe<Scalars['Boolean']['output']>;
|
|
7195
7259
|
id: Scalars['String']['output'];
|
|
7196
7260
|
name?: Maybe<Scalars['String']['output']>;
|
|
7197
7261
|
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
@@ -8105,7 +8169,9 @@ export declare type CreateCompassRelationshipPayload = Payload & {
|
|
|
8105
8169
|
};
|
|
8106
8170
|
export declare type CreateCompassScorecardCriteriaInput = {
|
|
8107
8171
|
hasCustomBooleanValue?: InputMaybe<CompassCreateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
8172
|
+
hasCustomMultiSelectValue?: InputMaybe<CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput>;
|
|
8108
8173
|
hasCustomNumberValue?: InputMaybe<CompassCreateHasCustomNumberFieldScorecardCriteriaInput>;
|
|
8174
|
+
hasCustomSingleSelectValue?: InputMaybe<CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput>;
|
|
8109
8175
|
hasCustomTextValue?: InputMaybe<CompassCreateHasCustomTextFieldScorecardCriteriaInput>;
|
|
8110
8176
|
hasDescription?: InputMaybe<CreateCompassHasDescriptionScorecardCriteriaInput>;
|
|
8111
8177
|
hasField?: InputMaybe<CreateCompassHasFieldScorecardCriteriaInput>;
|
|
@@ -10039,10 +10105,12 @@ export declare type DevOpsDevInfoProviderWorkspacesArgs = {
|
|
|
10039
10105
|
export declare type DevOpsDocument = Node & {
|
|
10040
10106
|
__typename?: 'DevOpsDocument';
|
|
10041
10107
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
10108
|
+
collaboratorUsers?: Maybe<Array<Maybe<DevOpsUser>>>;
|
|
10042
10109
|
collaborators?: Maybe<Array<Maybe<User>>>;
|
|
10043
10110
|
content?: Maybe<DevOpsDocumentContent>;
|
|
10044
10111
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
10045
10112
|
createdBy?: Maybe<User>;
|
|
10113
|
+
createdByUser?: Maybe<DevOpsUser>;
|
|
10046
10114
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
10047
10115
|
exportLinks?: Maybe<Array<Maybe<DevOpsDocumentExportLink>>>;
|
|
10048
10116
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -10050,6 +10118,7 @@ export declare type DevOpsDocument = Node & {
|
|
|
10050
10118
|
id: Scalars['ID']['output'];
|
|
10051
10119
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
10052
10120
|
lastUpdatedBy?: Maybe<User>;
|
|
10121
|
+
lastUpdatedByUser?: Maybe<DevOpsUser>;
|
|
10053
10122
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
10054
10123
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
10055
10124
|
type?: Maybe<DevOpsDocumentType>;
|
|
@@ -11315,6 +11384,11 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
11315
11384
|
sort?: InputMaybe<Array<InputMaybe<DevOpsToolSort>>>;
|
|
11316
11385
|
supportsContainers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11317
11386
|
};
|
|
11387
|
+
export declare type DevOpsUser = {
|
|
11388
|
+
__typename?: 'DevOpsUser';
|
|
11389
|
+
thirdPartyUser?: Maybe<ThirdPartyUser>;
|
|
11390
|
+
user?: Maybe<User>;
|
|
11391
|
+
};
|
|
11318
11392
|
export declare type DevStatus = {
|
|
11319
11393
|
__typename?: 'DevStatus';
|
|
11320
11394
|
activity: DevStatusActivity;
|
|
@@ -27904,6 +27978,12 @@ export declare type InsightsActionNextBestTaskPayload = Payload & {
|
|
|
27904
27978
|
success: Scalars['Boolean']['output'];
|
|
27905
27979
|
userActionState?: Maybe<InsightsUserActionState>;
|
|
27906
27980
|
};
|
|
27981
|
+
export declare enum InsightsApprovalStatus {
|
|
27982
|
+
Approved = "APPROVED",
|
|
27983
|
+
Needswork = "NEEDSWORK",
|
|
27984
|
+
Unapproved = "UNAPPROVED",
|
|
27985
|
+
Unknown = "UNKNOWN"
|
|
27986
|
+
}
|
|
27907
27987
|
export declare type InsightsBlockedIssue = {
|
|
27908
27988
|
__typename?: 'InsightsBlockedIssue';
|
|
27909
27989
|
issueKey: Scalars['String']['output'];
|
|
@@ -28082,7 +28162,10 @@ export declare type InsightsPullRequestNeedsWorkDetails = {
|
|
|
28082
28162
|
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
28083
28163
|
lastUpdated: Scalars['String']['output'];
|
|
28084
28164
|
needsWorkCount: Scalars['Int']['output'];
|
|
28165
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
28166
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
28085
28167
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
28168
|
+
reviewers?: Maybe<Array<Maybe<InsightsUserDetail>>>;
|
|
28086
28169
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
28087
28170
|
};
|
|
28088
28171
|
export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
|
|
@@ -28092,7 +28175,10 @@ export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommo
|
|
|
28092
28175
|
id: Scalars['String']['output'];
|
|
28093
28176
|
lastUpdated: Scalars['String']['output'];
|
|
28094
28177
|
needsWorkCount: Scalars['Int']['output'];
|
|
28178
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
28179
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
28095
28180
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
28181
|
+
reviewers?: Maybe<Array<Maybe<InsightsUserDetail>>>;
|
|
28096
28182
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
28097
28183
|
title: Scalars['String']['output'];
|
|
28098
28184
|
url: Scalars['String']['output'];
|
|
@@ -28100,19 +28186,25 @@ export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommo
|
|
|
28100
28186
|
export declare type InsightsPullRequestReviewDetails = {
|
|
28101
28187
|
__typename?: 'InsightsPullRequestReviewDetails';
|
|
28102
28188
|
approvalsCount: Scalars['Int']['output'];
|
|
28189
|
+
author?: Maybe<InsightsUserDetail>;
|
|
28103
28190
|
commentCount: Scalars['Int']['output'];
|
|
28104
28191
|
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
28105
28192
|
lastUpdated: Scalars['String']['output'];
|
|
28193
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
28194
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
28106
28195
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
28107
28196
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
28108
28197
|
};
|
|
28109
28198
|
export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
|
|
28110
28199
|
__typename?: 'InsightsPullRequestReviewTask';
|
|
28111
28200
|
approvalsCount: Scalars['Int']['output'];
|
|
28201
|
+
author?: Maybe<InsightsUserDetail>;
|
|
28112
28202
|
commentCount: Scalars['Int']['output'];
|
|
28113
28203
|
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
28114
28204
|
id: Scalars['String']['output'];
|
|
28115
28205
|
lastUpdated: Scalars['String']['output'];
|
|
28206
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
28207
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
28116
28208
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
28117
28209
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
28118
28210
|
title: Scalars['String']['output'];
|
|
@@ -28141,6 +28233,13 @@ export declare type InsightsUserActionState = {
|
|
|
28141
28233
|
reason: InsightsNextBestTaskAction;
|
|
28142
28234
|
taskId: Scalars['String']['output'];
|
|
28143
28235
|
};
|
|
28236
|
+
export declare type InsightsUserDetail = {
|
|
28237
|
+
__typename?: 'InsightsUserDetail';
|
|
28238
|
+
approvalStatus?: Maybe<InsightsApprovalStatus>;
|
|
28239
|
+
avatarUrl: Scalars['String']['output'];
|
|
28240
|
+
id: Scalars['ID']['output'];
|
|
28241
|
+
name: Scalars['String']['output'];
|
|
28242
|
+
};
|
|
28144
28243
|
export declare type InsightsVulnDetails = {
|
|
28145
28244
|
__typename?: 'InsightsVulnDetails';
|
|
28146
28245
|
id: Scalars['ID']['output'];
|
|
@@ -28248,6 +28347,7 @@ export declare type InvokeExtensionPayloadErrorExtension = MutationErrorExtensio
|
|
|
28248
28347
|
};
|
|
28249
28348
|
export declare type InvokeExtensionPayloadErrorExtensionFields = {
|
|
28250
28349
|
__typename?: 'InvokeExtensionPayloadErrorExtensionFields';
|
|
28350
|
+
authInfo?: Maybe<ExternalAuthProvider>;
|
|
28251
28351
|
authInfoUrl?: Maybe<Scalars['String']['output']>;
|
|
28252
28352
|
};
|
|
28253
28353
|
export declare type InvokeExtensionResponse = Payload & {
|
|
@@ -28636,7 +28736,7 @@ export declare type JsmReporter = {
|
|
|
28636
28736
|
__typename?: 'JSMReporter';
|
|
28637
28737
|
id: Scalars['ID']['output'];
|
|
28638
28738
|
};
|
|
28639
|
-
export declare type JsmResponder = AppUser | AtlassianAccountUser | CustomerUser | OpsgenieTeam
|
|
28739
|
+
export declare type JsmResponder = AppUser | AtlassianAccountUser | CustomerUser | OpsgenieTeam;
|
|
28640
28740
|
export declare type JsmStatus = {
|
|
28641
28741
|
__typename?: 'JSMStatus';
|
|
28642
28742
|
id: Scalars['ID']['output'];
|
|
@@ -29510,6 +29610,7 @@ export declare type JiraCmdbFieldSelectedCmdbObjectsConnectionArgs = {
|
|
|
29510
29610
|
export declare type JiraCalendar = {
|
|
29511
29611
|
__typename?: 'JiraCalendar';
|
|
29512
29612
|
issues?: Maybe<JiraIssueConnection>;
|
|
29613
|
+
permissions?: Maybe<JiraCalendarPermissionConnection>;
|
|
29513
29614
|
projects?: Maybe<JiraProjectConnection>;
|
|
29514
29615
|
sprints?: Maybe<JiraSprintConnection>;
|
|
29515
29616
|
unscheduledIssues?: Maybe<JiraIssueConnection>;
|
|
@@ -29522,6 +29623,9 @@ export declare type JiraCalendarIssuesArgs = {
|
|
|
29522
29623
|
input?: InputMaybe<JiraCalendarIssuesInput>;
|
|
29523
29624
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29524
29625
|
};
|
|
29626
|
+
export declare type JiraCalendarPermissionsArgs = {
|
|
29627
|
+
keys?: InputMaybe<Array<JiraCalendarPermissionKey>>;
|
|
29628
|
+
};
|
|
29525
29629
|
export declare type JiraCalendarProjectsArgs = {
|
|
29526
29630
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29527
29631
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -29557,6 +29661,26 @@ export declare enum JiraCalendarMode {
|
|
|
29557
29661
|
Month = "MONTH",
|
|
29558
29662
|
Week = "WEEK"
|
|
29559
29663
|
}
|
|
29664
|
+
export declare type JiraCalendarPermission = {
|
|
29665
|
+
__typename?: 'JiraCalendarPermission';
|
|
29666
|
+
aris?: Maybe<Array<Scalars['ID']['output']>>;
|
|
29667
|
+
permissionKey: Scalars['String']['output'];
|
|
29668
|
+
};
|
|
29669
|
+
export declare type JiraCalendarPermissionConnection = {
|
|
29670
|
+
__typename?: 'JiraCalendarPermissionConnection';
|
|
29671
|
+
edges?: Maybe<Array<Maybe<JiraCalendarPermissionEdge>>>;
|
|
29672
|
+
errors?: Maybe<Array<QueryError>>;
|
|
29673
|
+
pageInfo: PageInfo;
|
|
29674
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
29675
|
+
};
|
|
29676
|
+
export declare type JiraCalendarPermissionEdge = {
|
|
29677
|
+
__typename?: 'JiraCalendarPermissionEdge';
|
|
29678
|
+
cursor: Scalars['String']['output'];
|
|
29679
|
+
node?: Maybe<JiraCalendarPermission>;
|
|
29680
|
+
};
|
|
29681
|
+
export declare enum JiraCalendarPermissionKey {
|
|
29682
|
+
ManageSprintsPermission = "MANAGE_SPRINTS_PERMISSION"
|
|
29683
|
+
}
|
|
29560
29684
|
export declare type JiraCalendarSprintsInput = {
|
|
29561
29685
|
sprintStates?: InputMaybe<Array<JiraSprintState>>;
|
|
29562
29686
|
};
|
|
@@ -31155,7 +31279,7 @@ export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
31155
31279
|
renderedFieldHtml?: Maybe<Scalars['String']['output']>;
|
|
31156
31280
|
type: Scalars['String']['output'];
|
|
31157
31281
|
};
|
|
31158
|
-
export declare type JiraFavourite = JiraBoard | JiraCustomFilter | JiraDashboard | JiraPlan | JiraProject | JiraSystemFilter;
|
|
31282
|
+
export declare type JiraFavourite = JiraBoard | JiraCustomFilter | JiraDashboard | JiraPlan | JiraProject | JiraServiceManagementQueue | JiraSystemFilter;
|
|
31159
31283
|
export declare type JiraFavouriteConnection = {
|
|
31160
31284
|
__typename?: 'JiraFavouriteConnection';
|
|
31161
31285
|
edges?: Maybe<Array<Maybe<JiraFavouriteEdge>>>;
|
|
@@ -31175,7 +31299,8 @@ export declare enum JiraFavouriteType {
|
|
|
31175
31299
|
Dashboard = "DASHBOARD",
|
|
31176
31300
|
Filter = "FILTER",
|
|
31177
31301
|
Plan = "PLAN",
|
|
31178
|
-
Project = "PROJECT"
|
|
31302
|
+
Project = "PROJECT",
|
|
31303
|
+
Queue = "QUEUE"
|
|
31179
31304
|
}
|
|
31180
31305
|
export declare type JiraFavouriteValue = Node & {
|
|
31181
31306
|
__typename?: 'JiraFavouriteValue';
|
|
@@ -47626,8 +47751,8 @@ export declare type SearchResultGoogleDocument = SearchResult & {
|
|
|
47626
47751
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
47627
47752
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
47628
47753
|
id: Scalars['ID']['output'];
|
|
47629
|
-
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
47630
47754
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
47755
|
+
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
47631
47756
|
title: Scalars['String']['output'];
|
|
47632
47757
|
type: SearchResultType;
|
|
47633
47758
|
url: Scalars['URL']['output'];
|
|
@@ -47639,8 +47764,8 @@ export declare type SearchResultGooglePresentation = SearchResult & {
|
|
|
47639
47764
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
47640
47765
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
47641
47766
|
id: Scalars['ID']['output'];
|
|
47642
|
-
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
47643
47767
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
47768
|
+
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
47644
47769
|
title: Scalars['String']['output'];
|
|
47645
47770
|
type: SearchResultType;
|
|
47646
47771
|
url: Scalars['URL']['output'];
|
|
@@ -47652,8 +47777,8 @@ export declare type SearchResultGoogleSpreadsheet = SearchResult & {
|
|
|
47652
47777
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
47653
47778
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
47654
47779
|
id: Scalars['ID']['output'];
|
|
47655
|
-
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
47656
47780
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
47781
|
+
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
47657
47782
|
title: Scalars['String']['output'];
|
|
47658
47783
|
type: SearchResultType;
|
|
47659
47784
|
url: Scalars['URL']['output'];
|
|
@@ -47757,8 +47882,8 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
|
47757
47882
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
47758
47883
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
47759
47884
|
id: Scalars['ID']['output'];
|
|
47760
|
-
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
47761
47885
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
47886
|
+
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
47762
47887
|
title: Scalars['String']['output'];
|
|
47763
47888
|
type: SearchResultType;
|
|
47764
47889
|
url: Scalars['URL']['output'];
|
|
@@ -50279,7 +50404,7 @@ export declare type ThirdPartySecurityWorkspace = Node & SecurityWorkspace & {
|
|
|
50279
50404
|
providerName?: Maybe<Scalars['String']['output']>;
|
|
50280
50405
|
url?: Maybe<Scalars['URL']['output']>;
|
|
50281
50406
|
};
|
|
50282
|
-
export declare type ThirdPartyUser = LocalizationContext &
|
|
50407
|
+
export declare type ThirdPartyUser = LocalizationContext & {
|
|
50283
50408
|
__typename?: 'ThirdPartyUser';
|
|
50284
50409
|
accountId: Scalars['ID']['output'];
|
|
50285
50410
|
accountStatus: AccountStatus;
|
|
@@ -50289,8 +50414,8 @@ export declare type ThirdPartyUser = LocalizationContext & User & {
|
|
|
50289
50414
|
externalId: Scalars['String']['output'];
|
|
50290
50415
|
id: Scalars['ID']['output'];
|
|
50291
50416
|
locale?: Maybe<Scalars['String']['output']>;
|
|
50292
|
-
name
|
|
50293
|
-
picture
|
|
50417
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
50418
|
+
picture?: Maybe<Scalars['URL']['output']>;
|
|
50294
50419
|
updatedAt: Scalars['DateTime']['output'];
|
|
50295
50420
|
zoneinfo?: Maybe<Scalars['String']['output']>;
|
|
50296
50421
|
};
|
|
@@ -52493,7 +52618,9 @@ export declare type UpdateCompassLinkInput = {
|
|
|
52493
52618
|
};
|
|
52494
52619
|
export declare type UpdateCompassScorecardCriteriaInput = {
|
|
52495
52620
|
hasCustomBooleanValue?: InputMaybe<CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
52621
|
+
hasCustomMultiSelectValue?: InputMaybe<CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput>;
|
|
52496
52622
|
hasCustomNumberValue?: InputMaybe<CompassUpdateHasCustomNumberFieldScorecardCriteriaInput>;
|
|
52623
|
+
hasCustomSingleSelectValue?: InputMaybe<CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInput>;
|
|
52497
52624
|
hasCustomTextValue?: InputMaybe<CompassUpdateHasCustomTextFieldScorecardCriteriaInput>;
|
|
52498
52625
|
hasDescription?: InputMaybe<UpdateCompassHasDescriptionScorecardCriteriaInput>;
|
|
52499
52626
|
hasField?: InputMaybe<UpdateCompassHasFieldScorecardCriteriaInput>;
|
|
@@ -53466,6 +53593,12 @@ export declare type WorkSuggestionsActionPayload = Payload & {
|
|
|
53466
53593
|
success: Scalars['Boolean']['output'];
|
|
53467
53594
|
userActionState?: Maybe<WorkSuggestionsUserActionState>;
|
|
53468
53595
|
};
|
|
53596
|
+
export declare enum WorkSuggestionsApprovalStatus {
|
|
53597
|
+
Approved = "APPROVED",
|
|
53598
|
+
Needswork = "NEEDSWORK",
|
|
53599
|
+
Unapproved = "UNAPPROVED",
|
|
53600
|
+
Unknown = "UNKNOWN"
|
|
53601
|
+
}
|
|
53469
53602
|
export declare type WorkSuggestionsBlockedIssue = {
|
|
53470
53603
|
__typename?: 'WorkSuggestionsBlockedIssue';
|
|
53471
53604
|
issueKey: Scalars['String']['output'];
|
|
@@ -53581,7 +53714,10 @@ export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCom
|
|
|
53581
53714
|
id: Scalars['String']['output'];
|
|
53582
53715
|
lastUpdated: Scalars['String']['output'];
|
|
53583
53716
|
needsWorkCount: Scalars['Int']['output'];
|
|
53717
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
53718
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
53584
53719
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
53720
|
+
reviewers?: Maybe<Array<Maybe<WorkSuggestionsUserDetail>>>;
|
|
53585
53721
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
53586
53722
|
title: Scalars['String']['output'];
|
|
53587
53723
|
url: Scalars['String']['output'];
|
|
@@ -53589,10 +53725,13 @@ export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCom
|
|
|
53589
53725
|
export declare type WorkSuggestionsPullRequestReviewTask = WorkSuggestionsCommon & {
|
|
53590
53726
|
__typename?: 'WorkSuggestionsPullRequestReviewTask';
|
|
53591
53727
|
approvalsCount: Scalars['Int']['output'];
|
|
53728
|
+
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
53592
53729
|
commentCount: Scalars['Int']['output'];
|
|
53593
53730
|
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
53594
53731
|
id: Scalars['String']['output'];
|
|
53595
53732
|
lastUpdated: Scalars['String']['output'];
|
|
53733
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
53734
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
53596
53735
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
53597
53736
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
53598
53737
|
title: Scalars['String']['output'];
|
|
@@ -53629,6 +53768,13 @@ export declare type WorkSuggestionsUserActionState = {
|
|
|
53629
53768
|
stateId: Scalars['String']['output'];
|
|
53630
53769
|
taskId: Scalars['String']['output'];
|
|
53631
53770
|
};
|
|
53771
|
+
export declare type WorkSuggestionsUserDetail = {
|
|
53772
|
+
__typename?: 'WorkSuggestionsUserDetail';
|
|
53773
|
+
approvalStatus?: Maybe<WorkSuggestionsApprovalStatus>;
|
|
53774
|
+
avatarUrl: Scalars['String']['output'];
|
|
53775
|
+
id: Scalars['ID']['output'];
|
|
53776
|
+
name: Scalars['String']['output'];
|
|
53777
|
+
};
|
|
53632
53778
|
export declare enum WorkSuggestionsUserPersona {
|
|
53633
53779
|
Developer = "DEVELOPER"
|
|
53634
53780
|
}
|