@forge/cli-shared 5.0.0-next.4 → 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 +7 -0
- package/out/graphql/graphql-types.d.ts +427 -160
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +67 -13
- package/package.json +2 -2
|
@@ -2019,6 +2019,18 @@ export declare type BoardScopeEdge = {
|
|
|
2019
2019
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
2020
2020
|
node?: Maybe<BoardScope>;
|
|
2021
2021
|
};
|
|
2022
|
+
export declare enum BoardSwimlaneStrategy {
|
|
2023
|
+
AssigneeUnassignedFirst = "ASSIGNEE_UNASSIGNED_FIRST",
|
|
2024
|
+
AssigneeUnassignedLast = "ASSIGNEE_UNASSIGNED_LAST",
|
|
2025
|
+
Custom = "CUSTOM",
|
|
2026
|
+
Epic = "EPIC",
|
|
2027
|
+
IssueChildren = "ISSUE_CHILDREN",
|
|
2028
|
+
IssueParent = "ISSUE_PARENT",
|
|
2029
|
+
None = "NONE",
|
|
2030
|
+
ParentChild = "PARENT_CHILD",
|
|
2031
|
+
Project = "PROJECT",
|
|
2032
|
+
RequestType = "REQUEST_TYPE"
|
|
2033
|
+
}
|
|
2022
2034
|
export declare type Book = {
|
|
2023
2035
|
__typename?: 'Book';
|
|
2024
2036
|
author?: Maybe<Array<Maybe<Author>>>;
|
|
@@ -3746,12 +3758,6 @@ export declare type CompassComponentSpecTagEdge = {
|
|
|
3746
3758
|
cursor: Scalars['String']['output'];
|
|
3747
3759
|
node: CompassComponentSpecTag;
|
|
3748
3760
|
};
|
|
3749
|
-
export declare type CompassComponentStats = {
|
|
3750
|
-
__typename?: 'CompassComponentStats';
|
|
3751
|
-
failing: Scalars['Int']['output'];
|
|
3752
|
-
needsWork: Scalars['Int']['output'];
|
|
3753
|
-
passing: Scalars['Int']['output'];
|
|
3754
|
-
};
|
|
3755
3761
|
export declare type CompassComponentTier = {
|
|
3756
3762
|
__typename?: 'CompassComponentTier';
|
|
3757
3763
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -3950,12 +3956,24 @@ export declare type CompassCreateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
3950
3956
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
3951
3957
|
weight: Scalars['Int']['input'];
|
|
3952
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
|
+
};
|
|
3953
3965
|
export declare type CompassCreateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
3954
3966
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
3955
3967
|
numberComparator: CompassCriteriaNumberComparatorOptions;
|
|
3956
3968
|
numberComparatorValue: Scalars['Float']['input'];
|
|
3957
3969
|
weight: Scalars['Int']['input'];
|
|
3958
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
|
+
};
|
|
3959
3977
|
export declare type CompassCreateHasCustomTextFieldScorecardCriteriaInput = {
|
|
3960
3978
|
customFieldDefinitionId: Scalars['ID']['input'];
|
|
3961
3979
|
weight: Scalars['Int']['input'];
|
|
@@ -4091,6 +4109,15 @@ export declare type CompassCreateWebhookPayload = Payload & {
|
|
|
4091
4109
|
export declare enum CompassCriteriaBooleanComparatorOptions {
|
|
4092
4110
|
Equals = "EQUALS"
|
|
4093
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
|
+
}
|
|
4094
4121
|
export declare enum CompassCriteriaNumberComparatorOptions {
|
|
4095
4122
|
Equals = "EQUALS",
|
|
4096
4123
|
GreaterThan = "GREATER_THAN",
|
|
@@ -4104,6 +4131,7 @@ export declare enum CompassCriteriaTextComparatorOptions {
|
|
|
4104
4131
|
}
|
|
4105
4132
|
export declare type CompassCustomBooleanField = CompassCustomField & {
|
|
4106
4133
|
__typename?: 'CompassCustomBooleanField';
|
|
4134
|
+
annotations?: Maybe<Array<CompassCustomFieldAnnotation>>;
|
|
4107
4135
|
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
4108
4136
|
definition?: Maybe<CompassCustomBooleanFieldDefinition>;
|
|
4109
4137
|
};
|
|
@@ -4116,6 +4144,7 @@ export declare type CompassCustomBooleanFieldDefinition = CompassCustomFieldDefi
|
|
|
4116
4144
|
name?: Maybe<Scalars['String']['output']>;
|
|
4117
4145
|
};
|
|
4118
4146
|
export declare type CompassCustomBooleanFieldInput = {
|
|
4147
|
+
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4119
4148
|
booleanValue: Scalars['Boolean']['input'];
|
|
4120
4149
|
definitionId: Scalars['ID']['input'];
|
|
4121
4150
|
};
|
|
@@ -4146,6 +4175,17 @@ export declare type CompassCustomEventPropertiesInput = {
|
|
|
4146
4175
|
export declare type CompassCustomField = {
|
|
4147
4176
|
definition?: Maybe<CompassCustomFieldDefinition>;
|
|
4148
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
|
+
};
|
|
4149
4189
|
export declare type CompassCustomFieldDefinition = {
|
|
4150
4190
|
componentTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4151
4191
|
componentTypes?: Maybe<Array<CompassComponentType>>;
|
|
@@ -4193,6 +4233,7 @@ export declare type CompassCustomFieldScorecardCriteriaScorecardCriteriaScoreArg
|
|
|
4193
4233
|
};
|
|
4194
4234
|
export declare type CompassCustomMultiSelectField = CompassCustomField & {
|
|
4195
4235
|
__typename?: 'CompassCustomMultiSelectField';
|
|
4236
|
+
annotations?: Maybe<Array<CompassCustomFieldAnnotation>>;
|
|
4196
4237
|
definition?: Maybe<CompassCustomMultiSelectFieldDefinition>;
|
|
4197
4238
|
options?: Maybe<Array<CompassCustomSelectFieldOption>>;
|
|
4198
4239
|
};
|
|
@@ -4206,11 +4247,13 @@ export declare type CompassCustomMultiSelectFieldDefinition = CompassCustomField
|
|
|
4206
4247
|
options?: Maybe<Array<CompassCustomSelectFieldOption>>;
|
|
4207
4248
|
};
|
|
4208
4249
|
export declare type CompassCustomMultiSelectFieldInput = {
|
|
4250
|
+
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4209
4251
|
definitionId: Scalars['ID']['input'];
|
|
4210
4252
|
options?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
4211
4253
|
};
|
|
4212
4254
|
export declare type CompassCustomNumberField = CompassCustomField & {
|
|
4213
4255
|
__typename?: 'CompassCustomNumberField';
|
|
4256
|
+
annotations?: Maybe<Array<CompassCustomFieldAnnotation>>;
|
|
4214
4257
|
definition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
4215
4258
|
numberValue?: Maybe<Scalars['Float']['output']>;
|
|
4216
4259
|
};
|
|
@@ -4223,6 +4266,7 @@ export declare type CompassCustomNumberFieldDefinition = CompassCustomFieldDefin
|
|
|
4223
4266
|
name?: Maybe<Scalars['String']['output']>;
|
|
4224
4267
|
};
|
|
4225
4268
|
export declare type CompassCustomNumberFieldInput = {
|
|
4269
|
+
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4226
4270
|
definitionId: Scalars['ID']['input'];
|
|
4227
4271
|
numberValue?: InputMaybe<Scalars['Float']['input']>;
|
|
4228
4272
|
};
|
|
@@ -4233,6 +4277,7 @@ export declare type CompassCustomSelectFieldOption = Node & {
|
|
|
4233
4277
|
};
|
|
4234
4278
|
export declare type CompassCustomSingleSelectField = CompassCustomField & {
|
|
4235
4279
|
__typename?: 'CompassCustomSingleSelectField';
|
|
4280
|
+
annotations?: Maybe<Array<CompassCustomFieldAnnotation>>;
|
|
4236
4281
|
definition?: Maybe<CompassCustomSingleSelectFieldDefinition>;
|
|
4237
4282
|
option?: Maybe<CompassCustomSelectFieldOption>;
|
|
4238
4283
|
};
|
|
@@ -4246,11 +4291,13 @@ export declare type CompassCustomSingleSelectFieldDefinition = CompassCustomFiel
|
|
|
4246
4291
|
options?: Maybe<Array<CompassCustomSelectFieldOption>>;
|
|
4247
4292
|
};
|
|
4248
4293
|
export declare type CompassCustomSingleSelectFieldInput = {
|
|
4294
|
+
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4249
4295
|
definitionId: Scalars['ID']['input'];
|
|
4250
4296
|
option?: InputMaybe<Scalars['ID']['input']>;
|
|
4251
4297
|
};
|
|
4252
4298
|
export declare type CompassCustomTextField = CompassCustomField & {
|
|
4253
4299
|
__typename?: 'CompassCustomTextField';
|
|
4300
|
+
annotations?: Maybe<Array<CompassCustomFieldAnnotation>>;
|
|
4254
4301
|
definition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
4255
4302
|
textValue?: Maybe<Scalars['String']['output']>;
|
|
4256
4303
|
};
|
|
@@ -4263,11 +4310,13 @@ export declare type CompassCustomTextFieldDefinition = CompassCustomFieldDefinit
|
|
|
4263
4310
|
name?: Maybe<Scalars['String']['output']>;
|
|
4264
4311
|
};
|
|
4265
4312
|
export declare type CompassCustomTextFieldInput = {
|
|
4313
|
+
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4266
4314
|
definitionId: Scalars['ID']['input'];
|
|
4267
4315
|
textValue?: InputMaybe<Scalars['String']['input']>;
|
|
4268
4316
|
};
|
|
4269
4317
|
export declare type CompassCustomUserField = CompassCustomField & {
|
|
4270
4318
|
__typename?: 'CompassCustomUserField';
|
|
4319
|
+
annotations?: Maybe<Array<CompassCustomFieldAnnotation>>;
|
|
4271
4320
|
definition?: Maybe<CompassCustomUserFieldDefinition>;
|
|
4272
4321
|
userIdValue?: Maybe<Scalars['ID']['output']>;
|
|
4273
4322
|
userValue?: Maybe<User>;
|
|
@@ -4281,6 +4330,7 @@ export declare type CompassCustomUserFieldDefinition = CompassCustomFieldDefinit
|
|
|
4281
4330
|
name?: Maybe<Scalars['String']['output']>;
|
|
4282
4331
|
};
|
|
4283
4332
|
export declare type CompassCustomUserFieldInput = {
|
|
4333
|
+
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4284
4334
|
definitionId: Scalars['ID']['input'];
|
|
4285
4335
|
userIdValue?: InputMaybe<Scalars['ID']['input']>;
|
|
4286
4336
|
};
|
|
@@ -4629,6 +4679,19 @@ export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCusto
|
|
|
4629
4679
|
export declare type CompassHasCustomBooleanFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
4630
4680
|
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
4631
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
|
+
};
|
|
4632
4695
|
export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
4633
4696
|
__typename?: 'CompassHasCustomNumberFieldScorecardCriteria';
|
|
4634
4697
|
customFieldDefinition?: Maybe<CompassCustomNumberFieldDefinition>;
|
|
@@ -4641,6 +4704,19 @@ export declare type CompassHasCustomNumberFieldScorecardCriteria = CompassCustom
|
|
|
4641
4704
|
export declare type CompassHasCustomNumberFieldScorecardCriteriaScorecardCriteriaScoreArgs = {
|
|
4642
4705
|
query?: InputMaybe<CompassScorecardCriteriaScoreQuery>;
|
|
4643
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
|
+
};
|
|
4644
4720
|
export declare type CompassHasCustomTextFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
4645
4721
|
__typename?: 'CompassHasCustomTextFieldScorecardCriteria';
|
|
4646
4722
|
customFieldDefinition?: Maybe<CompassCustomTextFieldDefinition>;
|
|
@@ -5171,7 +5247,6 @@ export declare type CompassScoreStatisticsHistoryOwnersFilter = {
|
|
|
5171
5247
|
export declare type CompassScorecard = Node & {
|
|
5172
5248
|
__typename?: 'CompassScorecard';
|
|
5173
5249
|
applicationModel: CompassScorecardApplicationModel;
|
|
5174
|
-
appliedToComponentStats?: Maybe<CompassScorecardComponentStatsQueryResult>;
|
|
5175
5250
|
appliedToComponents?: Maybe<CompassScorecardAppliedToComponentsQueryResult>;
|
|
5176
5251
|
changeMetadata: CompassChangeMetadata;
|
|
5177
5252
|
componentLabels?: Maybe<Array<CompassComponentLabel>>;
|
|
@@ -5281,13 +5356,6 @@ export declare type CompassScorecardAutomaticApplicationModel = CompassScorecard
|
|
|
5281
5356
|
componentTiers?: Maybe<Array<CompassComponentTier>>;
|
|
5282
5357
|
componentTypeIds: Array<Scalars['ID']['output']>;
|
|
5283
5358
|
};
|
|
5284
|
-
export declare type CompassScorecardComponentStats = {
|
|
5285
|
-
__typename?: 'CompassScorecardComponentStats';
|
|
5286
|
-
componentStats?: Maybe<CompassComponentStats>;
|
|
5287
|
-
scorecardCriteriaStats?: Maybe<Array<CompassScorecardCriteriaStats>>;
|
|
5288
|
-
totalCount: Scalars['Int']['output'];
|
|
5289
|
-
};
|
|
5290
|
-
export declare type CompassScorecardComponentStatsQueryResult = CompassScorecardComponentStats | QueryError;
|
|
5291
5359
|
export declare type CompassScorecardConnection = {
|
|
5292
5360
|
__typename?: 'CompassScorecardConnection';
|
|
5293
5361
|
edges?: Maybe<Array<CompassScorecardEdge>>;
|
|
@@ -5366,14 +5434,6 @@ export declare type CompassScorecardCriteriaScoreStatisticsHistoryQueryFilter =
|
|
|
5366
5434
|
date?: InputMaybe<CompassScoreStatisticsHistoryDateFilter>;
|
|
5367
5435
|
owners?: InputMaybe<CompassScoreStatisticsHistoryOwnersFilter>;
|
|
5368
5436
|
};
|
|
5369
|
-
export declare type CompassScorecardCriteriaStats = {
|
|
5370
|
-
__typename?: 'CompassScorecardCriteriaStats';
|
|
5371
|
-
error: Scalars['Int']['output'];
|
|
5372
|
-
failing: Scalars['Int']['output'];
|
|
5373
|
-
passing: Scalars['Int']['output'];
|
|
5374
|
-
scorecardCriteriaId: Scalars['ID']['output'];
|
|
5375
|
-
weight: Scalars['Int']['output'];
|
|
5376
|
-
};
|
|
5377
5437
|
export declare type CompassScorecardCriterionScore = {
|
|
5378
5438
|
criterionId: Scalars['ID']['output'];
|
|
5379
5439
|
explanation: Scalars['String']['output'];
|
|
@@ -5845,6 +5905,13 @@ export declare type CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput = {
|
|
|
5845
5905
|
id: Scalars['ID']['input'];
|
|
5846
5906
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
5847
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
|
+
};
|
|
5848
5915
|
export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
5849
5916
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
5850
5917
|
id: Scalars['ID']['input'];
|
|
@@ -5852,6 +5919,13 @@ export declare type CompassUpdateHasCustomNumberFieldScorecardCriteriaInput = {
|
|
|
5852
5919
|
numberComparatorValue?: InputMaybe<Scalars['Float']['input']>;
|
|
5853
5920
|
weight?: InputMaybe<Scalars['Int']['input']>;
|
|
5854
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
|
+
};
|
|
5855
5929
|
export declare type CompassUpdateHasCustomTextFieldScorecardCriteriaInput = {
|
|
5856
5930
|
customFieldDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
5857
5931
|
id: Scalars['ID']['input'];
|
|
@@ -7101,6 +7175,7 @@ export declare type ContentPlatformAnchorResult = {
|
|
|
7101
7175
|
asset?: Maybe<ContentPlatformTemplateImageAsset>;
|
|
7102
7176
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7103
7177
|
id: Scalars['String']['output'];
|
|
7178
|
+
lozenge?: Maybe<Scalars['String']['output']>;
|
|
7104
7179
|
name?: Maybe<Scalars['String']['output']>;
|
|
7105
7180
|
persona?: Maybe<Array<ContentPlatformTaxonomyPersona>>;
|
|
7106
7181
|
product?: Maybe<ContentPlatformProduct>;
|
|
@@ -7180,6 +7255,7 @@ export declare type ContentPlatformCategory = {
|
|
|
7180
7255
|
__typename?: 'ContentPlatformCategory';
|
|
7181
7256
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7182
7257
|
description?: Maybe<Scalars['String']['output']>;
|
|
7258
|
+
experiment?: Maybe<Scalars['Boolean']['output']>;
|
|
7183
7259
|
id: Scalars['String']['output'];
|
|
7184
7260
|
name?: Maybe<Scalars['String']['output']>;
|
|
7185
7261
|
shortDescriptionOneLiner?: Maybe<Scalars['String']['output']>;
|
|
@@ -8093,7 +8169,9 @@ export declare type CreateCompassRelationshipPayload = Payload & {
|
|
|
8093
8169
|
};
|
|
8094
8170
|
export declare type CreateCompassScorecardCriteriaInput = {
|
|
8095
8171
|
hasCustomBooleanValue?: InputMaybe<CompassCreateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
8172
|
+
hasCustomMultiSelectValue?: InputMaybe<CompassCreateHasCustomMultiSelectFieldScorecardCriteriaInput>;
|
|
8096
8173
|
hasCustomNumberValue?: InputMaybe<CompassCreateHasCustomNumberFieldScorecardCriteriaInput>;
|
|
8174
|
+
hasCustomSingleSelectValue?: InputMaybe<CompassCreateHasCustomSingleSelectFieldScorecardCriteriaInput>;
|
|
8097
8175
|
hasCustomTextValue?: InputMaybe<CompassCreateHasCustomTextFieldScorecardCriteriaInput>;
|
|
8098
8176
|
hasDescription?: InputMaybe<CreateCompassHasDescriptionScorecardCriteriaInput>;
|
|
8099
8177
|
hasField?: InputMaybe<CreateCompassHasFieldScorecardCriteriaInput>;
|
|
@@ -10027,9 +10105,12 @@ export declare type DevOpsDevInfoProviderWorkspacesArgs = {
|
|
|
10027
10105
|
export declare type DevOpsDocument = Node & {
|
|
10028
10106
|
__typename?: 'DevOpsDocument';
|
|
10029
10107
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
10108
|
+
collaboratorUsers?: Maybe<Array<Maybe<DevOpsUser>>>;
|
|
10030
10109
|
collaborators?: Maybe<Array<Maybe<User>>>;
|
|
10110
|
+
content?: Maybe<DevOpsDocumentContent>;
|
|
10031
10111
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
10032
10112
|
createdBy?: Maybe<User>;
|
|
10113
|
+
createdByUser?: Maybe<DevOpsUser>;
|
|
10033
10114
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
10034
10115
|
exportLinks?: Maybe<Array<Maybe<DevOpsDocumentExportLink>>>;
|
|
10035
10116
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -10037,6 +10118,7 @@ export declare type DevOpsDocument = Node & {
|
|
|
10037
10118
|
id: Scalars['ID']['output'];
|
|
10038
10119
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
10039
10120
|
lastUpdatedBy?: Maybe<User>;
|
|
10121
|
+
lastUpdatedByUser?: Maybe<DevOpsUser>;
|
|
10040
10122
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
10041
10123
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
10042
10124
|
type?: Maybe<DevOpsDocumentType>;
|
|
@@ -10057,6 +10139,11 @@ export declare enum DevOpsDocumentCategory {
|
|
|
10057
10139
|
Spreadsheet = "SPREADSHEET",
|
|
10058
10140
|
Video = "VIDEO"
|
|
10059
10141
|
}
|
|
10142
|
+
export declare type DevOpsDocumentContent = {
|
|
10143
|
+
__typename?: 'DevOpsDocumentContent';
|
|
10144
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
10145
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
10146
|
+
};
|
|
10060
10147
|
export declare type DevOpsDocumentExportLink = {
|
|
10061
10148
|
__typename?: 'DevOpsDocumentExportLink';
|
|
10062
10149
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
@@ -10977,6 +11064,7 @@ export declare type DevOpsSupportedActions = {
|
|
|
10977
11064
|
associate?: Maybe<Scalars['Boolean']['output']>;
|
|
10978
11065
|
associateEntity?: Maybe<Scalars['Boolean']['output']>;
|
|
10979
11066
|
checkAuth?: Maybe<Scalars['Boolean']['output']>;
|
|
11067
|
+
createContainer?: Maybe<Scalars['Boolean']['output']>;
|
|
10980
11068
|
disassociate?: Maybe<Scalars['Boolean']['output']>;
|
|
10981
11069
|
disassociateEntity?: Maybe<Scalars['Boolean']['output']>;
|
|
10982
11070
|
listContainers?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -11296,6 +11384,11 @@ export declare type DevOpsToolsToolsArgs = {
|
|
|
11296
11384
|
sort?: InputMaybe<Array<InputMaybe<DevOpsToolSort>>>;
|
|
11297
11385
|
supportsContainers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
11298
11386
|
};
|
|
11387
|
+
export declare type DevOpsUser = {
|
|
11388
|
+
__typename?: 'DevOpsUser';
|
|
11389
|
+
thirdPartyUser?: Maybe<ThirdPartyUser>;
|
|
11390
|
+
user?: Maybe<User>;
|
|
11391
|
+
};
|
|
11299
11392
|
export declare type DevStatus = {
|
|
11300
11393
|
__typename?: 'DevStatus';
|
|
11301
11394
|
activity: DevStatusActivity;
|
|
@@ -27885,6 +27978,12 @@ export declare type InsightsActionNextBestTaskPayload = Payload & {
|
|
|
27885
27978
|
success: Scalars['Boolean']['output'];
|
|
27886
27979
|
userActionState?: Maybe<InsightsUserActionState>;
|
|
27887
27980
|
};
|
|
27981
|
+
export declare enum InsightsApprovalStatus {
|
|
27982
|
+
Approved = "APPROVED",
|
|
27983
|
+
Needswork = "NEEDSWORK",
|
|
27984
|
+
Unapproved = "UNAPPROVED",
|
|
27985
|
+
Unknown = "UNKNOWN"
|
|
27986
|
+
}
|
|
27888
27987
|
export declare type InsightsBlockedIssue = {
|
|
27889
27988
|
__typename?: 'InsightsBlockedIssue';
|
|
27890
27989
|
issueKey: Scalars['String']['output'];
|
|
@@ -28063,7 +28162,10 @@ export declare type InsightsPullRequestNeedsWorkDetails = {
|
|
|
28063
28162
|
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
28064
28163
|
lastUpdated: Scalars['String']['output'];
|
|
28065
28164
|
needsWorkCount: Scalars['Int']['output'];
|
|
28165
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
28166
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
28066
28167
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
28168
|
+
reviewers?: Maybe<Array<Maybe<InsightsUserDetail>>>;
|
|
28067
28169
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
28068
28170
|
};
|
|
28069
28171
|
export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommon & {
|
|
@@ -28073,7 +28175,10 @@ export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommo
|
|
|
28073
28175
|
id: Scalars['String']['output'];
|
|
28074
28176
|
lastUpdated: Scalars['String']['output'];
|
|
28075
28177
|
needsWorkCount: Scalars['Int']['output'];
|
|
28178
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
28179
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
28076
28180
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
28181
|
+
reviewers?: Maybe<Array<Maybe<InsightsUserDetail>>>;
|
|
28077
28182
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
28078
28183
|
title: Scalars['String']['output'];
|
|
28079
28184
|
url: Scalars['String']['output'];
|
|
@@ -28081,19 +28186,25 @@ export declare type InsightsPullRequestNeedsWorkTask = InsightsNextBestTaskCommo
|
|
|
28081
28186
|
export declare type InsightsPullRequestReviewDetails = {
|
|
28082
28187
|
__typename?: 'InsightsPullRequestReviewDetails';
|
|
28083
28188
|
approvalsCount: Scalars['Int']['output'];
|
|
28189
|
+
author?: Maybe<InsightsUserDetail>;
|
|
28084
28190
|
commentCount: Scalars['Int']['output'];
|
|
28085
28191
|
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
28086
28192
|
lastUpdated: Scalars['String']['output'];
|
|
28193
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
28194
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
28087
28195
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
28088
28196
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
28089
28197
|
};
|
|
28090
28198
|
export declare type InsightsPullRequestReviewTask = InsightsNextBestTaskCommon & {
|
|
28091
28199
|
__typename?: 'InsightsPullRequestReviewTask';
|
|
28092
28200
|
approvalsCount: Scalars['Int']['output'];
|
|
28201
|
+
author?: Maybe<InsightsUserDetail>;
|
|
28093
28202
|
commentCount: Scalars['Int']['output'];
|
|
28094
28203
|
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
28095
28204
|
id: Scalars['String']['output'];
|
|
28096
28205
|
lastUpdated: Scalars['String']['output'];
|
|
28206
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
28207
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
28097
28208
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
28098
28209
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
28099
28210
|
title: Scalars['String']['output'];
|
|
@@ -28122,6 +28233,13 @@ export declare type InsightsUserActionState = {
|
|
|
28122
28233
|
reason: InsightsNextBestTaskAction;
|
|
28123
28234
|
taskId: Scalars['String']['output'];
|
|
28124
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
|
+
};
|
|
28125
28243
|
export declare type InsightsVulnDetails = {
|
|
28126
28244
|
__typename?: 'InsightsVulnDetails';
|
|
28127
28245
|
id: Scalars['ID']['output'];
|
|
@@ -28229,6 +28347,7 @@ export declare type InvokeExtensionPayloadErrorExtension = MutationErrorExtensio
|
|
|
28229
28347
|
};
|
|
28230
28348
|
export declare type InvokeExtensionPayloadErrorExtensionFields = {
|
|
28231
28349
|
__typename?: 'InvokeExtensionPayloadErrorExtensionFields';
|
|
28350
|
+
authInfo?: Maybe<ExternalAuthProvider>;
|
|
28232
28351
|
authInfoUrl?: Maybe<Scalars['String']['output']>;
|
|
28233
28352
|
};
|
|
28234
28353
|
export declare type InvokeExtensionResponse = Payload & {
|
|
@@ -29164,6 +29283,7 @@ export declare type JiraAutodevJob = {
|
|
|
29164
29283
|
__typename?: 'JiraAutodevJob';
|
|
29165
29284
|
codeChanges?: Maybe<JiraAutodevCodeChangeConnection>;
|
|
29166
29285
|
currentWorkflow?: Maybe<Scalars['String']['output']>;
|
|
29286
|
+
gitDiff?: Maybe<Scalars['String']['output']>;
|
|
29167
29287
|
id: Scalars['ID']['output'];
|
|
29168
29288
|
plan?: Maybe<JiraAutodevPlan>;
|
|
29169
29289
|
progressText?: Maybe<Scalars['String']['output']>;
|
|
@@ -29490,6 +29610,7 @@ export declare type JiraCmdbFieldSelectedCmdbObjectsConnectionArgs = {
|
|
|
29490
29610
|
export declare type JiraCalendar = {
|
|
29491
29611
|
__typename?: 'JiraCalendar';
|
|
29492
29612
|
issues?: Maybe<JiraIssueConnection>;
|
|
29613
|
+
permissions?: Maybe<JiraCalendarPermissionConnection>;
|
|
29493
29614
|
projects?: Maybe<JiraProjectConnection>;
|
|
29494
29615
|
sprints?: Maybe<JiraSprintConnection>;
|
|
29495
29616
|
unscheduledIssues?: Maybe<JiraIssueConnection>;
|
|
@@ -29502,6 +29623,9 @@ export declare type JiraCalendarIssuesArgs = {
|
|
|
29502
29623
|
input?: InputMaybe<JiraCalendarIssuesInput>;
|
|
29503
29624
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29504
29625
|
};
|
|
29626
|
+
export declare type JiraCalendarPermissionsArgs = {
|
|
29627
|
+
keys?: InputMaybe<Array<JiraCalendarPermissionKey>>;
|
|
29628
|
+
};
|
|
29505
29629
|
export declare type JiraCalendarProjectsArgs = {
|
|
29506
29630
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29507
29631
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -29537,6 +29661,26 @@ export declare enum JiraCalendarMode {
|
|
|
29537
29661
|
Month = "MONTH",
|
|
29538
29662
|
Week = "WEEK"
|
|
29539
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
|
+
}
|
|
29540
29684
|
export declare type JiraCalendarSprintsInput = {
|
|
29541
29685
|
sprintStates?: InputMaybe<Array<JiraSprintState>>;
|
|
29542
29686
|
};
|
|
@@ -30800,6 +30944,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
30800
30944
|
__typename?: 'JiraDevOpsMutation';
|
|
30801
30945
|
approveJiraBitbucketWorkspaceAccessRequest?: Maybe<JiraApproveJiraBitbucketWorkspaceAccessRequestPayload>;
|
|
30802
30946
|
createAutodevJob?: Maybe<JiraAutodevCreateJobPayload>;
|
|
30947
|
+
createAutodevPullRequest?: Maybe<JiraAutodevBasicPayload>;
|
|
30803
30948
|
createAutofixJob?: Maybe<JiraAutofixCreateJobPayload>;
|
|
30804
30949
|
deleteAutodevJob?: Maybe<JiraAutodevBasicPayload>;
|
|
30805
30950
|
dismissBitbucketPendingAccessRequestBanner?: Maybe<JiraDismissBitbucketPendingAccessRequestBannerPayload>;
|
|
@@ -30825,6 +30970,10 @@ export declare type JiraDevOpsMutationCreateAutodevJobArgs = {
|
|
|
30825
30970
|
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
30826
30971
|
repoUrl: Scalars['String']['input'];
|
|
30827
30972
|
};
|
|
30973
|
+
export declare type JiraDevOpsMutationCreateAutodevPullRequestArgs = {
|
|
30974
|
+
issueAri: Scalars['ID']['input'];
|
|
30975
|
+
jobId: Scalars['ID']['input'];
|
|
30976
|
+
};
|
|
30828
30977
|
export declare type JiraDevOpsMutationCreateAutofixJobArgs = {
|
|
30829
30978
|
cloudId: Scalars['ID']['input'];
|
|
30830
30979
|
input: JiraAutofixInput;
|
|
@@ -30876,6 +31025,7 @@ export declare type JiraDevOpsMutationSetProjectSelectedDeploymentAppsPropertyAr
|
|
|
30876
31025
|
};
|
|
30877
31026
|
export declare type JiraDevOpsMutationStartAutodevArgs = {
|
|
30878
31027
|
acceptanceCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
31028
|
+
createPr?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30879
31029
|
currentState?: InputMaybe<Scalars['String']['input']>;
|
|
30880
31030
|
desiredState?: InputMaybe<Scalars['String']['input']>;
|
|
30881
31031
|
issueAri: Scalars['ID']['input'];
|
|
@@ -31129,7 +31279,7 @@ export declare type JiraFallbackField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
31129
31279
|
renderedFieldHtml?: Maybe<Scalars['String']['output']>;
|
|
31130
31280
|
type: Scalars['String']['output'];
|
|
31131
31281
|
};
|
|
31132
|
-
export declare type JiraFavourite = JiraBoard | JiraCustomFilter | JiraDashboard | JiraPlan | JiraProject | JiraSystemFilter;
|
|
31282
|
+
export declare type JiraFavourite = JiraBoard | JiraCustomFilter | JiraDashboard | JiraPlan | JiraProject | JiraServiceManagementQueue | JiraSystemFilter;
|
|
31133
31283
|
export declare type JiraFavouriteConnection = {
|
|
31134
31284
|
__typename?: 'JiraFavouriteConnection';
|
|
31135
31285
|
edges?: Maybe<Array<Maybe<JiraFavouriteEdge>>>;
|
|
@@ -31149,7 +31299,8 @@ export declare enum JiraFavouriteType {
|
|
|
31149
31299
|
Dashboard = "DASHBOARD",
|
|
31150
31300
|
Filter = "FILTER",
|
|
31151
31301
|
Plan = "PLAN",
|
|
31152
|
-
Project = "PROJECT"
|
|
31302
|
+
Project = "PROJECT",
|
|
31303
|
+
Queue = "QUEUE"
|
|
31153
31304
|
}
|
|
31154
31305
|
export declare type JiraFavouriteValue = Node & {
|
|
31155
31306
|
__typename?: 'JiraFavouriteValue';
|
|
@@ -32754,6 +32905,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
32754
32905
|
export declare type JiraIssueTransitionComment = {
|
|
32755
32906
|
__typename?: 'JiraIssueTransitionComment';
|
|
32756
32907
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
32908
|
+
enableCannedResponses?: Maybe<Scalars['Boolean']['output']>;
|
|
32757
32909
|
enableCommentVisibility?: Maybe<Scalars['Boolean']['output']>;
|
|
32758
32910
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
32759
32911
|
types?: Maybe<Array<Maybe<JiraIssueTransitionCommentType>>>;
|
|
@@ -38739,7 +38891,7 @@ export declare type JiraSingleSelectUserPickerFieldPayload = Payload & {
|
|
|
38739
38891
|
export declare enum JiraSingleValueFieldOperations {
|
|
38740
38892
|
Set = "SET"
|
|
38741
38893
|
}
|
|
38742
|
-
export declare type JiraSingleVersionPickerField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38894
|
+
export declare type JiraSingleVersionPickerField = JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
38743
38895
|
__typename?: 'JiraSingleVersionPickerField';
|
|
38744
38896
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
38745
38897
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -38748,11 +38900,20 @@ export declare type JiraSingleVersionPickerField = JiraIssueField & JiraIssueFie
|
|
|
38748
38900
|
id: Scalars['ID']['output'];
|
|
38749
38901
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
38750
38902
|
name: Scalars['String']['output'];
|
|
38903
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
38751
38904
|
type: Scalars['String']['output'];
|
|
38752
38905
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
38753
38906
|
version?: Maybe<JiraVersion>;
|
|
38754
38907
|
versions?: Maybe<JiraVersionConnection>;
|
|
38755
38908
|
};
|
|
38909
|
+
export declare type JiraSingleVersionPickerFieldSelectableValueOptionsArgs = {
|
|
38910
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
38911
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
38912
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
38913
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
38914
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
38915
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
38916
|
+
};
|
|
38756
38917
|
export declare type JiraSingleVersionPickerFieldVersionsArgs = {
|
|
38757
38918
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
38758
38919
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -39347,6 +39508,7 @@ export declare type JiraTimeTrackingField = JiraIssueField & JiraIssueFieldConfi
|
|
|
39347
39508
|
};
|
|
39348
39509
|
export declare type JiraTimeTrackingFieldInput = {
|
|
39349
39510
|
originalEstimate?: InputMaybe<Scalars['String']['input']>;
|
|
39511
|
+
timeRemaining?: InputMaybe<Scalars['String']['input']>;
|
|
39350
39512
|
};
|
|
39351
39513
|
export declare type JiraTimeTrackingFieldPayload = Payload & {
|
|
39352
39514
|
__typename?: 'JiraTimeTrackingFieldPayload';
|
|
@@ -41030,6 +41192,10 @@ export declare enum JsmChatChannelType {
|
|
|
41030
41192
|
Agent = "AGENT",
|
|
41031
41193
|
Request = "REQUEST"
|
|
41032
41194
|
}
|
|
41195
|
+
export declare enum JsmChatConnectedApps {
|
|
41196
|
+
Slack = "SLACK",
|
|
41197
|
+
Teams = "TEAMS"
|
|
41198
|
+
}
|
|
41033
41199
|
export declare type JsmChatCreateChannelInput = {
|
|
41034
41200
|
channelName: Scalars['String']['input'];
|
|
41035
41201
|
channelType: JsmChatChannelType;
|
|
@@ -41081,6 +41247,7 @@ export declare type JsmChatInitializeConfigResponse = {
|
|
|
41081
41247
|
};
|
|
41082
41248
|
export declare type JsmChatInitializeNativeConfigResponse = {
|
|
41083
41249
|
__typename?: 'JsmChatInitializeNativeConfigResponse';
|
|
41250
|
+
connectedApp?: Maybe<JsmChatConnectedApps>;
|
|
41084
41251
|
nativeConfigEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
41085
41252
|
};
|
|
41086
41253
|
export declare enum JsmChatMessageSource {
|
|
@@ -41089,12 +41256,46 @@ export declare enum JsmChatMessageSource {
|
|
|
41089
41256
|
export declare enum JsmChatMessageType {
|
|
41090
41257
|
Adf = "ADF"
|
|
41091
41258
|
}
|
|
41259
|
+
export declare type JsmChatMsTeamsChannelRequestTypeMapping = {
|
|
41260
|
+
__typename?: 'JsmChatMsTeamsChannelRequestTypeMapping';
|
|
41261
|
+
channels?: Maybe<Array<Maybe<JsmChatMsTeamsChannels>>>;
|
|
41262
|
+
teamId: Scalars['ID']['output'];
|
|
41263
|
+
teamName?: Maybe<Scalars['String']['output']>;
|
|
41264
|
+
};
|
|
41265
|
+
export declare type JsmChatMsTeamsChannels = {
|
|
41266
|
+
__typename?: 'JsmChatMsTeamsChannels';
|
|
41267
|
+
channelId: Scalars['ID']['output'];
|
|
41268
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
|
41269
|
+
channelType?: Maybe<Scalars['String']['output']>;
|
|
41270
|
+
channelUrl?: Maybe<Scalars['String']['output']>;
|
|
41271
|
+
requestTypes?: Maybe<Array<Maybe<JsmChatRequestTypesMappedResponse>>>;
|
|
41272
|
+
};
|
|
41273
|
+
export declare type JsmChatMsTeamsConfig = {
|
|
41274
|
+
__typename?: 'JsmChatMsTeamsConfig';
|
|
41275
|
+
channelRequestTypeMapping: Array<JsmChatMsTeamsChannelRequestTypeMapping>;
|
|
41276
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
41277
|
+
projectSettings?: Maybe<JsmChatMsTeamsProjectSettings>;
|
|
41278
|
+
siteId?: Maybe<Scalars['String']['output']>;
|
|
41279
|
+
tenantId?: Maybe<Scalars['String']['output']>;
|
|
41280
|
+
tenantTeamName?: Maybe<Scalars['String']['output']>;
|
|
41281
|
+
tenantTeamUrl?: Maybe<Scalars['String']['output']>;
|
|
41282
|
+
uninstalled?: Maybe<Scalars['Boolean']['output']>;
|
|
41283
|
+
};
|
|
41284
|
+
export declare type JsmChatMsTeamsProjectSettings = {
|
|
41285
|
+
__typename?: 'JsmChatMsTeamsProjectSettings';
|
|
41286
|
+
jsmApproversEnabled: Scalars['Boolean']['output'];
|
|
41287
|
+
};
|
|
41288
|
+
export declare type JsmChatMsTeamsUpdatedProjectSettings = {
|
|
41289
|
+
jsmApproversEnabled: Scalars['Boolean']['input'];
|
|
41290
|
+
};
|
|
41092
41291
|
export declare type JsmChatMutation = {
|
|
41093
41292
|
__typename?: 'JsmChatMutation';
|
|
41094
41293
|
createChannel: JsmChatCreateChannelOutput;
|
|
41095
41294
|
createComment?: Maybe<JsmChatCreateCommentOutput>;
|
|
41096
41295
|
disconnectJiraProject?: Maybe<JsmChatDisconnectJiraProjectResponse>;
|
|
41097
41296
|
updateChannelSettings: JsmChatUpdateChannelSettingsOutput;
|
|
41297
|
+
updateMsTeamsChannelSettings: JsmChatUpdateMsTeamsChannelSettingsOutput;
|
|
41298
|
+
updateMsTeamsProjectSettings: JsmChatUpdateMsTeamsProjectSettingsOutput;
|
|
41098
41299
|
updateProjectSettings?: Maybe<JsmChatUpdateProjectSettingsOutput>;
|
|
41099
41300
|
};
|
|
41100
41301
|
export declare type JsmChatMutationCreateChannelArgs = {
|
|
@@ -41114,6 +41315,15 @@ export declare type JsmChatMutationUpdateChannelSettingsArgs = {
|
|
|
41114
41315
|
jiraProjectAri: Scalars['ID']['input'];
|
|
41115
41316
|
slackChannelAri?: InputMaybe<Scalars['ID']['input']>;
|
|
41116
41317
|
};
|
|
41318
|
+
export declare type JsmChatMutationUpdateMsTeamsChannelSettingsArgs = {
|
|
41319
|
+
input: JsmChatUpdateMsTeamsChannelSettingsInput;
|
|
41320
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
41321
|
+
msTeamsAri: Scalars['ID']['input'];
|
|
41322
|
+
};
|
|
41323
|
+
export declare type JsmChatMutationUpdateMsTeamsProjectSettingsArgs = {
|
|
41324
|
+
input: JsmChatUpdateMsTeamsProjectSettingsInput;
|
|
41325
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
41326
|
+
};
|
|
41117
41327
|
export declare type JsmChatMutationUpdateProjectSettingsArgs = {
|
|
41118
41328
|
input: JsmChatUpdateProjectSettingsInput;
|
|
41119
41329
|
};
|
|
@@ -41137,10 +41347,14 @@ export declare type JsmChatProjectSettingsSlack = {
|
|
|
41137
41347
|
};
|
|
41138
41348
|
export declare type JsmChatQuery = {
|
|
41139
41349
|
__typename?: 'JsmChatQuery';
|
|
41350
|
+
getMsTeamsChatConfig?: Maybe<JsmChatMsTeamsConfig>;
|
|
41140
41351
|
getSlackChatConfig?: Maybe<JsmChatSlackConfig>;
|
|
41141
41352
|
initializeConfig: JsmChatInitializeConfigResponse;
|
|
41142
41353
|
initializeNativeConfig: JsmChatInitializeNativeConfigResponse;
|
|
41143
41354
|
};
|
|
41355
|
+
export declare type JsmChatQueryGetMsTeamsChatConfigArgs = {
|
|
41356
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
41357
|
+
};
|
|
41144
41358
|
export declare type JsmChatQueryGetSlackChatConfigArgs = {
|
|
41145
41359
|
jiraProjectAri: Scalars['ID']['input'];
|
|
41146
41360
|
};
|
|
@@ -41190,6 +41404,29 @@ export declare type JsmChatUpdateChannelSettingsOutput = {
|
|
|
41190
41404
|
slackTeamId?: Maybe<Scalars['String']['output']>;
|
|
41191
41405
|
status: Scalars['Boolean']['output'];
|
|
41192
41406
|
};
|
|
41407
|
+
export declare type JsmChatUpdateMsTeamsChannelSettingsInput = {
|
|
41408
|
+
requestTypeIds: Array<Scalars['String']['input']>;
|
|
41409
|
+
};
|
|
41410
|
+
export declare type JsmChatUpdateMsTeamsChannelSettingsOutput = {
|
|
41411
|
+
__typename?: 'JsmChatUpdateMsTeamsChannelSettingsOutput';
|
|
41412
|
+
channelId?: Maybe<Scalars['String']['output']>;
|
|
41413
|
+
channelName?: Maybe<Scalars['String']['output']>;
|
|
41414
|
+
channelType?: Maybe<Scalars['String']['output']>;
|
|
41415
|
+
message: Scalars['String']['output'];
|
|
41416
|
+
requestTypes?: Maybe<Array<Maybe<JsmChatRequestTypesMappedResponse>>>;
|
|
41417
|
+
status: Scalars['Boolean']['output'];
|
|
41418
|
+
};
|
|
41419
|
+
export declare type JsmChatUpdateMsTeamsProjectSettingsInput = {
|
|
41420
|
+
settings?: InputMaybe<JsmChatMsTeamsUpdatedProjectSettings>;
|
|
41421
|
+
};
|
|
41422
|
+
export declare type JsmChatUpdateMsTeamsProjectSettingsOutput = {
|
|
41423
|
+
__typename?: 'JsmChatUpdateMsTeamsProjectSettingsOutput';
|
|
41424
|
+
message: Scalars['String']['output'];
|
|
41425
|
+
projectId?: Maybe<Scalars['String']['output']>;
|
|
41426
|
+
settings?: Maybe<JsmChatMsTeamsProjectSettings>;
|
|
41427
|
+
siteId?: Maybe<Scalars['String']['output']>;
|
|
41428
|
+
status: Scalars['Boolean']['output'];
|
|
41429
|
+
};
|
|
41193
41430
|
export declare type JsmChatUpdateProjectSettingsInput = {
|
|
41194
41431
|
activationId: Scalars['String']['input'];
|
|
41195
41432
|
projectId: Scalars['String']['input'];
|
|
@@ -42515,9 +42752,22 @@ export declare enum MercuryMetricType {
|
|
|
42515
42752
|
}
|
|
42516
42753
|
export declare type MercuryQueryApi = {
|
|
42517
42754
|
__typename?: 'MercuryQueryApi';
|
|
42755
|
+
focusArea: MercuryFocusArea;
|
|
42756
|
+
focusAreaStatusTransitions: Array<MercuryFocusAreaStatusTransition>;
|
|
42757
|
+
focusAreaTypes: Array<MercuryFocusAreaType>;
|
|
42518
42758
|
focusAreasByAris?: Maybe<Array<MercuryFocusArea>>;
|
|
42519
42759
|
focusAreasByCloudId?: Maybe<MercuryFocusAreaConnection>;
|
|
42520
42760
|
};
|
|
42761
|
+
export declare type MercuryQueryApiFocusAreaArgs = {
|
|
42762
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
42763
|
+
id: Scalars['ID']['input'];
|
|
42764
|
+
};
|
|
42765
|
+
export declare type MercuryQueryApiFocusAreaStatusTransitionsArgs = {
|
|
42766
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
42767
|
+
};
|
|
42768
|
+
export declare type MercuryQueryApiFocusAreaTypesArgs = {
|
|
42769
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
42770
|
+
};
|
|
42521
42771
|
export declare type MercuryQueryApiFocusAreasByArisArgs = {
|
|
42522
42772
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
42523
42773
|
};
|
|
@@ -42719,7 +42969,7 @@ export declare type Mutation = {
|
|
|
42719
42969
|
trello: TrelloMutationApi;
|
|
42720
42970
|
unarchivePolarisInsights?: Maybe<UnarchivePolarisInsightsPayload>;
|
|
42721
42971
|
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
42722
|
-
unified
|
|
42972
|
+
unified?: Maybe<UnifiedMutation>;
|
|
42723
42973
|
uninstallApp?: Maybe<AppUninstallationResponse>;
|
|
42724
42974
|
unsubscribeFromApp?: Maybe<AppUnsubscribePayload>;
|
|
42725
42975
|
unwatchMarketplaceApp?: Maybe<UnwatchMarketplaceAppPayload>;
|
|
@@ -45482,7 +45732,7 @@ export declare type Query = {
|
|
|
45482
45732
|
topicOverviews: ContentPlatformTopicOverviewContentSearchConnection;
|
|
45483
45733
|
townsquare?: Maybe<TownsquareQueryApi>;
|
|
45484
45734
|
trello: TrelloQueryApi;
|
|
45485
|
-
unified
|
|
45735
|
+
unified?: Maybe<UnifiedQuery>;
|
|
45486
45736
|
user?: Maybe<User>;
|
|
45487
45737
|
users?: Maybe<Array<User>>;
|
|
45488
45738
|
virtualAgent?: Maybe<VirtualAgentQueryApi>;
|
|
@@ -47061,6 +47311,8 @@ export declare enum Scope {
|
|
|
47061
47311
|
ProjectVersionRead = "PROJECT_VERSION_READ",
|
|
47062
47312
|
ProjectVersionWrite = "PROJECT_VERSION_WRITE",
|
|
47063
47313
|
ProjectWrite = "PROJECT_WRITE",
|
|
47314
|
+
PullRequest = "PULL_REQUEST",
|
|
47315
|
+
PullRequestWrite = "PULL_REQUEST_WRITE",
|
|
47064
47316
|
ReadAccount = "READ_ACCOUNT",
|
|
47065
47317
|
ReadCompassAttentionItem = "READ_COMPASS_ATTENTION_ITEM",
|
|
47066
47318
|
ReadCompassComponent = "READ_COMPASS_COMPONENT",
|
|
@@ -47499,8 +47751,8 @@ export declare type SearchResultGoogleDocument = SearchResult & {
|
|
|
47499
47751
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
47500
47752
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
47501
47753
|
id: Scalars['ID']['output'];
|
|
47502
|
-
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
47503
47754
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
47755
|
+
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
47504
47756
|
title: Scalars['String']['output'];
|
|
47505
47757
|
type: SearchResultType;
|
|
47506
47758
|
url: Scalars['URL']['output'];
|
|
@@ -47512,8 +47764,8 @@ export declare type SearchResultGooglePresentation = SearchResult & {
|
|
|
47512
47764
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
47513
47765
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
47514
47766
|
id: Scalars['ID']['output'];
|
|
47515
|
-
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
47516
47767
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
47768
|
+
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
47517
47769
|
title: Scalars['String']['output'];
|
|
47518
47770
|
type: SearchResultType;
|
|
47519
47771
|
url: Scalars['URL']['output'];
|
|
@@ -47525,8 +47777,8 @@ export declare type SearchResultGoogleSpreadsheet = SearchResult & {
|
|
|
47525
47777
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
47526
47778
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
47527
47779
|
id: Scalars['ID']['output'];
|
|
47528
|
-
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
47529
47780
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
47781
|
+
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
47530
47782
|
title: Scalars['String']['output'];
|
|
47531
47783
|
type: SearchResultType;
|
|
47532
47784
|
url: Scalars['URL']['output'];
|
|
@@ -47630,8 +47882,8 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
|
47630
47882
|
excerpt?: Maybe<Scalars['String']['output']>;
|
|
47631
47883
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
47632
47884
|
id: Scalars['ID']['output'];
|
|
47633
|
-
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
47634
47885
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
47886
|
+
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
47635
47887
|
title: Scalars['String']['output'];
|
|
47636
47888
|
type: SearchResultType;
|
|
47637
47889
|
url: Scalars['URL']['output'];
|
|
@@ -49133,6 +49385,7 @@ export declare type SmartsRecommendedUser = {
|
|
|
49133
49385
|
export declare type SoftwareBoard = {
|
|
49134
49386
|
__typename?: 'SoftwareBoard';
|
|
49135
49387
|
assignees?: Maybe<Array<Maybe<User>>>;
|
|
49388
|
+
boardSwimlaneStrategy?: Maybe<BoardSwimlaneStrategy>;
|
|
49136
49389
|
cardChildren?: Maybe<Array<Maybe<SoftwareCard>>>;
|
|
49137
49390
|
cardMedia?: Maybe<CardMediaConfig>;
|
|
49138
49391
|
cardTypes: Array<Maybe<CardType>>;
|
|
@@ -50151,6 +50404,21 @@ export declare type ThirdPartySecurityWorkspace = Node & SecurityWorkspace & {
|
|
|
50151
50404
|
providerName?: Maybe<Scalars['String']['output']>;
|
|
50152
50405
|
url?: Maybe<Scalars['URL']['output']>;
|
|
50153
50406
|
};
|
|
50407
|
+
export declare type ThirdPartyUser = LocalizationContext & {
|
|
50408
|
+
__typename?: 'ThirdPartyUser';
|
|
50409
|
+
accountId: Scalars['ID']['output'];
|
|
50410
|
+
accountStatus: AccountStatus;
|
|
50411
|
+
canonicalAccountId: Scalars['ID']['output'];
|
|
50412
|
+
createdAt: Scalars['DateTime']['output'];
|
|
50413
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
50414
|
+
externalId: Scalars['String']['output'];
|
|
50415
|
+
id: Scalars['ID']['output'];
|
|
50416
|
+
locale?: Maybe<Scalars['String']['output']>;
|
|
50417
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
50418
|
+
picture?: Maybe<Scalars['URL']['output']>;
|
|
50419
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
50420
|
+
zoneinfo?: Maybe<Scalars['String']['output']>;
|
|
50421
|
+
};
|
|
50154
50422
|
export declare type TimeSeriesPoint = {
|
|
50155
50423
|
__typename?: 'TimeSeriesPoint';
|
|
50156
50424
|
id: Scalars['ID']['output'];
|
|
@@ -50415,6 +50683,7 @@ export declare type TownsquareCreateGoalInput = {
|
|
|
50415
50683
|
containerId: Scalars['String']['input'];
|
|
50416
50684
|
name: Scalars['String']['input'];
|
|
50417
50685
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
50686
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
50418
50687
|
};
|
|
50419
50688
|
export declare type TownsquareCreateGoalPayload = {
|
|
50420
50689
|
__typename?: 'TownsquareCreateGoalPayload';
|
|
@@ -51172,6 +51441,8 @@ export declare type TrelloCardBadges = {
|
|
|
51172
51441
|
comments?: Maybe<Scalars['Int']['output']>;
|
|
51173
51442
|
description?: Maybe<Scalars['Boolean']['output']>;
|
|
51174
51443
|
due?: Maybe<TrelloCardBadgeDueInfo>;
|
|
51444
|
+
externalSource?: Maybe<TrelloCardExternalSource>;
|
|
51445
|
+
lastUpdatedByAi?: Maybe<Scalars['Boolean']['output']>;
|
|
51175
51446
|
location?: Maybe<Scalars['Boolean']['output']>;
|
|
51176
51447
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
51177
51448
|
viewer?: Maybe<TrelloCardViewer>;
|
|
@@ -51245,6 +51516,9 @@ export declare type TrelloCardEdge = {
|
|
|
51245
51516
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
51246
51517
|
node?: Maybe<TrelloCard>;
|
|
51247
51518
|
};
|
|
51519
|
+
export declare enum TrelloCardExternalSource {
|
|
51520
|
+
Email = "EMAIL"
|
|
51521
|
+
}
|
|
51248
51522
|
export declare type TrelloCardLimit = {
|
|
51249
51523
|
__typename?: 'TrelloCardLimit';
|
|
51250
51524
|
perCard?: Maybe<TrelloLimitProps>;
|
|
@@ -51495,6 +51769,7 @@ export declare type TrelloList = Node & {
|
|
|
51495
51769
|
objectId: Scalars['ID']['output'];
|
|
51496
51770
|
position: Scalars['Float']['output'];
|
|
51497
51771
|
softLimit?: Maybe<Scalars['Int']['output']>;
|
|
51772
|
+
suggestedCardName?: Maybe<Scalars['String']['output']>;
|
|
51498
51773
|
viewer?: Maybe<TrelloListViewer>;
|
|
51499
51774
|
};
|
|
51500
51775
|
export declare type TrelloListCardsArgs = {
|
|
@@ -52020,93 +52295,96 @@ export declare type UnassignIssueParentOutput = MutationResponse & {
|
|
|
52020
52295
|
statusCode: Scalars['Int']['output'];
|
|
52021
52296
|
success: Scalars['Boolean']['output'];
|
|
52022
52297
|
};
|
|
52023
|
-
export declare type UnifiedAccount = {
|
|
52298
|
+
export declare type UnifiedAccount = UnifiedINode & {
|
|
52024
52299
|
__typename?: 'UnifiedAccount';
|
|
52025
|
-
aaid
|
|
52300
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
52026
52301
|
connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
|
|
52302
|
+
id: Scalars['ID']['output'];
|
|
52303
|
+
linkedAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
52027
52304
|
parentAccountEmailId?: Maybe<Scalars['String']['output']>;
|
|
52028
|
-
parentAccountInternalId?: Maybe<Scalars['
|
|
52029
|
-
};
|
|
52030
|
-
export declare type UnifiedCreateAccountSuccess = {
|
|
52031
|
-
__typename?: 'UnifiedCreateAccountSuccess';
|
|
52032
|
-
data: UnifiedParentAccount;
|
|
52305
|
+
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
52033
52306
|
};
|
|
52034
|
-
export declare type
|
|
52035
|
-
|
|
52036
|
-
|
|
52037
|
-
|
|
52307
|
+
export declare type UnifiedAtlassianProduct = {
|
|
52308
|
+
__typename?: 'UnifiedAtlassianProduct';
|
|
52309
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
52310
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
52311
|
+
viewHref?: Maybe<Scalars['String']['output']>;
|
|
52312
|
+
};
|
|
52313
|
+
export declare type UnifiedForumSnapshot = {
|
|
52314
|
+
__typename?: 'UnifiedForumSnapshot';
|
|
52315
|
+
acceptedAnswersCreated?: Maybe<Scalars['Int']['output']>;
|
|
52316
|
+
answersCreated?: Maybe<Scalars['Int']['output']>;
|
|
52317
|
+
badgesEarned?: Maybe<Scalars['Int']['output']>;
|
|
52318
|
+
kudosGiven?: Maybe<Scalars['Int']['output']>;
|
|
52319
|
+
kudosReceived?: Maybe<Scalars['Int']['output']>;
|
|
52320
|
+
lastPostTime?: Maybe<Scalars['String']['output']>;
|
|
52321
|
+
lastVisitTime?: Maybe<Scalars['String']['output']>;
|
|
52322
|
+
minutesOnline?: Maybe<Scalars['Int']['output']>;
|
|
52323
|
+
rank?: Maybe<Scalars['String']['output']>;
|
|
52324
|
+
repliesCreated?: Maybe<Scalars['Int']['output']>;
|
|
52325
|
+
roles?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
52326
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
52327
|
+
topicsCreated?: Maybe<Scalars['Int']['output']>;
|
|
52328
|
+
totalLoginsRecorded?: Maybe<Scalars['String']['output']>;
|
|
52329
|
+
totalPosts?: Maybe<Scalars['Int']['output']>;
|
|
52038
52330
|
};
|
|
52039
|
-
export declare type
|
|
52040
|
-
|
|
52041
|
-
__typename?: 'UnifiedError';
|
|
52042
|
-
message: Scalars['String']['output'];
|
|
52331
|
+
export declare type UnifiedINode = {
|
|
52332
|
+
id: Scalars['ID']['output'];
|
|
52043
52333
|
};
|
|
52044
|
-
export declare type
|
|
52045
|
-
__typename?: '
|
|
52046
|
-
|
|
52047
|
-
|
|
52048
|
-
|
|
52049
|
-
|
|
52050
|
-
|
|
52051
|
-
|
|
52052
|
-
|
|
52053
|
-
minutesOnline: Scalars['Int']['output'];
|
|
52054
|
-
rank: Scalars['String']['output'];
|
|
52055
|
-
repliesCreated: Scalars['Int']['output'];
|
|
52056
|
-
roles: Array<Scalars['String']['output']>;
|
|
52057
|
-
status: Scalars['String']['output'];
|
|
52058
|
-
topicsCreated: Scalars['Int']['output'];
|
|
52059
|
-
totalLoginsRecorded: Scalars['String']['output'];
|
|
52060
|
-
totalPosts: Scalars['Int']['output'];
|
|
52334
|
+
export declare type UnifiedLearningCertification = {
|
|
52335
|
+
__typename?: 'UnifiedLearningCertification';
|
|
52336
|
+
activeDate?: Maybe<Scalars['String']['output']>;
|
|
52337
|
+
expireDate?: Maybe<Scalars['String']['output']>;
|
|
52338
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
52339
|
+
inactiveDate?: Maybe<Scalars['String']['output']>;
|
|
52340
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
52341
|
+
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
52342
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
52061
52343
|
};
|
|
52062
|
-
export declare type UnifiedLinkedAccount = {
|
|
52344
|
+
export declare type UnifiedLinkedAccount = UnifiedINode & {
|
|
52063
52345
|
__typename?: 'UnifiedLinkedAccount';
|
|
52064
|
-
aaid
|
|
52346
|
+
aaid?: Maybe<Scalars['String']['output']>;
|
|
52065
52347
|
connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
|
|
52066
|
-
|
|
52067
|
-
|
|
52068
|
-
|
|
52069
|
-
aaid: Scalars['String']['input'];
|
|
52070
|
-
connectedProductsReferenceId?: InputMaybe<Scalars['String']['input']>;
|
|
52071
|
-
parentAccountInternalId?: InputMaybe<Scalars['String']['input']>;
|
|
52072
|
-
};
|
|
52073
|
-
export declare type UnifiedLinkedCreateAccountSuccess = {
|
|
52074
|
-
__typename?: 'UnifiedLinkedCreateAccountSuccess';
|
|
52075
|
-
data: UnifiedLinkedAccount;
|
|
52348
|
+
id: Scalars['ID']['output'];
|
|
52349
|
+
linkedAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
52350
|
+
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
52076
52351
|
};
|
|
52077
|
-
export declare type UnifiedLinkedCreateAccountUnion = UnifiedError | UnifiedLinkedCreateAccountSuccess;
|
|
52078
52352
|
export declare type UnifiedMutation = {
|
|
52079
52353
|
__typename?: 'UnifiedMutation';
|
|
52080
|
-
createLinkedAccount
|
|
52081
|
-
createParentAccount
|
|
52082
|
-
createUnifiedSystem
|
|
52083
|
-
updateUnifiedProfile
|
|
52354
|
+
createLinkedAccount?: Maybe<UnifiedLinkedAccount>;
|
|
52355
|
+
createParentAccount?: Maybe<UnifiedParentAccount>;
|
|
52356
|
+
createUnifiedSystem?: Maybe<UnifiedProfile>;
|
|
52357
|
+
updateUnifiedProfile?: Maybe<UnifiedProfile>;
|
|
52084
52358
|
};
|
|
52085
52359
|
export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
52086
|
-
|
|
52360
|
+
aaid: Scalars['String']['input'];
|
|
52361
|
+
connectedProductsReferenceId: Scalars['String']['input'];
|
|
52362
|
+
parentAccountInternalId: Scalars['String']['input'];
|
|
52087
52363
|
};
|
|
52088
52364
|
export declare type UnifiedMutationCreateParentAccountArgs = {
|
|
52089
|
-
|
|
52365
|
+
parentAccountEmailId: Scalars['String']['input'];
|
|
52090
52366
|
};
|
|
52091
52367
|
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
|
|
52092
|
-
|
|
52368
|
+
aaid: Scalars['String']['input'];
|
|
52369
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
52370
|
+
parentAccountEmailId: Scalars['String']['input'];
|
|
52371
|
+
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
52093
52372
|
};
|
|
52094
52373
|
export declare type UnifiedMutationUpdateUnifiedProfileArgs = {
|
|
52095
|
-
|
|
52374
|
+
unifiedProfileInput?: InputMaybe<UnifiedProfileInput>;
|
|
52096
52375
|
};
|
|
52097
|
-
export declare type UnifiedParentAccount = {
|
|
52376
|
+
export declare type UnifiedParentAccount = UnifiedINode & {
|
|
52098
52377
|
__typename?: 'UnifiedParentAccount';
|
|
52378
|
+
id: Scalars['ID']['output'];
|
|
52099
52379
|
parentAccountEmailId?: Maybe<Scalars['String']['output']>;
|
|
52100
|
-
parentAccountInternalId?: Maybe<Scalars['
|
|
52101
|
-
};
|
|
52102
|
-
export declare type UnifiedParentAccountInput = {
|
|
52103
|
-
parentAccountEmailId?: InputMaybe<Scalars['String']['input']>;
|
|
52380
|
+
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
|
|
52104
52381
|
};
|
|
52105
|
-
export declare type UnifiedProfile = {
|
|
52382
|
+
export declare type UnifiedProfile = UnifiedINode & {
|
|
52106
52383
|
__typename?: 'UnifiedProfile';
|
|
52107
52384
|
bio?: Maybe<Scalars['String']['output']>;
|
|
52108
52385
|
company?: Maybe<Scalars['String']['output']>;
|
|
52109
52386
|
forumsId?: Maybe<Scalars['String']['output']>;
|
|
52387
|
+
id: Scalars['ID']['output'];
|
|
52110
52388
|
learnId?: Maybe<Scalars['String']['output']>;
|
|
52111
52389
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
52112
52390
|
location?: Maybe<Scalars['String']['output']>;
|
|
@@ -52125,6 +52403,7 @@ export declare type UnifiedProfileInput = {
|
|
|
52125
52403
|
bio?: InputMaybe<Scalars['String']['input']>;
|
|
52126
52404
|
company?: InputMaybe<Scalars['String']['input']>;
|
|
52127
52405
|
forumsId?: InputMaybe<Scalars['String']['input']>;
|
|
52406
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
52128
52407
|
learnId?: InputMaybe<Scalars['String']['input']>;
|
|
52129
52408
|
linkedinUrl?: InputMaybe<Scalars['String']['input']>;
|
|
52130
52409
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -52142,73 +52421,35 @@ export declare type UnifiedProfileInput = {
|
|
|
52142
52421
|
};
|
|
52143
52422
|
export declare type UnifiedQuery = {
|
|
52144
52423
|
__typename?: 'UnifiedQuery';
|
|
52145
|
-
|
|
52146
|
-
|
|
52147
|
-
|
|
52148
|
-
|
|
52149
|
-
|
|
52150
|
-
|
|
52424
|
+
atlassianProducts?: Maybe<Array<Maybe<UnifiedAtlassianProduct>>>;
|
|
52425
|
+
forumSnapshot?: Maybe<UnifiedForumSnapshot>;
|
|
52426
|
+
learningCertications?: Maybe<Array<Maybe<UnifiedLearningCertification>>>;
|
|
52427
|
+
node?: Maybe<UnifiedINode>;
|
|
52428
|
+
unifiedAccount?: Maybe<UnifiedAccount>;
|
|
52429
|
+
unifiedAccounts?: Maybe<Array<Maybe<UnifiedAccount>>>;
|
|
52430
|
+
unifiedProfile?: Maybe<UnifiedProfile>;
|
|
52431
|
+
unifiedProfiles?: Maybe<Array<Maybe<UnifiedProfile>>>;
|
|
52432
|
+
};
|
|
52433
|
+
export declare type UnifiedQueryAtlassianProductsArgs = {
|
|
52434
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
52151
52435
|
};
|
|
52152
52436
|
export declare type UnifiedQueryForumSnapshotArgs = {
|
|
52153
|
-
aaid
|
|
52437
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
52154
52438
|
};
|
|
52155
|
-
export declare type
|
|
52439
|
+
export declare type UnifiedQueryLearningCerticationsArgs = {
|
|
52156
52440
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
52157
52441
|
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
52158
52442
|
};
|
|
52443
|
+
export declare type UnifiedQueryNodeArgs = {
|
|
52444
|
+
id: Scalars['ID']['input'];
|
|
52445
|
+
};
|
|
52159
52446
|
export declare type UnifiedQueryUnifiedAccountArgs = {
|
|
52160
|
-
aaid
|
|
52447
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
52161
52448
|
};
|
|
52162
52449
|
export declare type UnifiedQueryUnifiedProfileArgs = {
|
|
52163
52450
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
52164
52451
|
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
52165
52452
|
};
|
|
52166
|
-
export declare type UnifiedQueryAccountSuccess = {
|
|
52167
|
-
__typename?: 'UnifiedQueryAccountSuccess';
|
|
52168
|
-
data: UnifiedAccount;
|
|
52169
|
-
};
|
|
52170
|
-
export declare type UnifiedQueryAccountUnion = UnifiedError | UnifiedQueryAccountSuccess;
|
|
52171
|
-
export declare type UnifiedQueryForumSnapshotSuccess = {
|
|
52172
|
-
__typename?: 'UnifiedQueryForumSnapshotSuccess';
|
|
52173
|
-
data: UnifiedForumsUser;
|
|
52174
|
-
};
|
|
52175
|
-
export declare type UnifiedQueryForumSnapshotUnion = UnifiedError | UnifiedQueryForumSnapshotSuccess;
|
|
52176
|
-
export declare type UnifiedQueryLearningCertificationSuccess = {
|
|
52177
|
-
__typename?: 'UnifiedQueryLearningCertificationSuccess';
|
|
52178
|
-
data: Array<UnifiedUserCertificateDataRes>;
|
|
52179
|
-
};
|
|
52180
|
-
export declare type UnifiedQueryLearningCertificationUnion = UnifiedError | UnifiedQueryLearningCertificationSuccess;
|
|
52181
|
-
export declare type UnifiedQueryProfileSuccess = {
|
|
52182
|
-
__typename?: 'UnifiedQueryProfileSuccess';
|
|
52183
|
-
data: UnifiedProfile;
|
|
52184
|
-
};
|
|
52185
|
-
export declare type UnifiedQueryProfileUnion = UnifiedError | UnifiedQueryProfileSuccess;
|
|
52186
|
-
export declare type UnifiedQueryProfilesSuccess = {
|
|
52187
|
-
__typename?: 'UnifiedQueryProfilesSuccess';
|
|
52188
|
-
data: Array<UnifiedProfile>;
|
|
52189
|
-
};
|
|
52190
|
-
export declare type UnifiedQueryProfilesUnion = UnifiedError | UnifiedQueryProfilesSuccess;
|
|
52191
|
-
export declare type UnifiedSystemCreateAccountSuccess = {
|
|
52192
|
-
__typename?: 'UnifiedSystemCreateAccountSuccess';
|
|
52193
|
-
data: UnifiedProfile;
|
|
52194
|
-
};
|
|
52195
|
-
export declare type UnifiedSystemCreateAccountUnion = UnifiedError | UnifiedSystemCreateAccountSuccess;
|
|
52196
|
-
export declare type UnifiedSystemInput = {
|
|
52197
|
-
aaid: Scalars['String']['input'];
|
|
52198
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
|
52199
|
-
parentAccountEmailId: Scalars['String']['input'];
|
|
52200
|
-
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
52201
|
-
};
|
|
52202
|
-
export declare type UnifiedUserCertificateDataRes = {
|
|
52203
|
-
__typename?: 'UnifiedUserCertificateDataRes';
|
|
52204
|
-
activeDate: Scalars['String']['output'];
|
|
52205
|
-
expireDate: Scalars['String']['output'];
|
|
52206
|
-
imageUrl: Scalars['String']['output'];
|
|
52207
|
-
inactiveDate: Scalars['String']['output'];
|
|
52208
|
-
name: Scalars['String']['output'];
|
|
52209
|
-
nameAbbr: Scalars['String']['output'];
|
|
52210
|
-
status: Scalars['String']['output'];
|
|
52211
|
-
};
|
|
52212
52453
|
export declare type UnlinkExternalSourceInput = {
|
|
52213
52454
|
cloudId: Scalars['ID']['input'];
|
|
52214
52455
|
ecosystemAppId: Scalars['ID']['input'];
|
|
@@ -52377,7 +52618,9 @@ export declare type UpdateCompassLinkInput = {
|
|
|
52377
52618
|
};
|
|
52378
52619
|
export declare type UpdateCompassScorecardCriteriaInput = {
|
|
52379
52620
|
hasCustomBooleanValue?: InputMaybe<CompassUpdateHasCustomBooleanFieldScorecardCriteriaInput>;
|
|
52621
|
+
hasCustomMultiSelectValue?: InputMaybe<CompassUpdateHasCustomMultiSelectFieldScorecardCriteriaInput>;
|
|
52380
52622
|
hasCustomNumberValue?: InputMaybe<CompassUpdateHasCustomNumberFieldScorecardCriteriaInput>;
|
|
52623
|
+
hasCustomSingleSelectValue?: InputMaybe<CompassUpdateHasCustomSingleSelectFieldScorecardCriteriaInput>;
|
|
52381
52624
|
hasCustomTextValue?: InputMaybe<CompassUpdateHasCustomTextFieldScorecardCriteriaInput>;
|
|
52382
52625
|
hasDescription?: InputMaybe<UpdateCompassHasDescriptionScorecardCriteriaInput>;
|
|
52383
52626
|
hasField?: InputMaybe<UpdateCompassHasFieldScorecardCriteriaInput>;
|
|
@@ -53325,8 +53568,12 @@ export declare type WebTriggerUrlInput = {
|
|
|
53325
53568
|
};
|
|
53326
53569
|
export declare type WorkSuggestions = {
|
|
53327
53570
|
__typename?: 'WorkSuggestions';
|
|
53571
|
+
userProfileByCloudId?: Maybe<WorkSuggestionsUserProfile>;
|
|
53328
53572
|
workSuggestionsByContextAri: WorkSuggestionsConnection;
|
|
53329
53573
|
};
|
|
53574
|
+
export declare type WorkSuggestionsUserProfileByCloudIdArgs = {
|
|
53575
|
+
cloudId: Scalars['ID']['input'];
|
|
53576
|
+
};
|
|
53330
53577
|
export declare type WorkSuggestionsWorkSuggestionsByContextAriArgs = {
|
|
53331
53578
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53332
53579
|
contextAri: WorkSuggestionsContextAri;
|
|
@@ -53346,6 +53593,12 @@ export declare type WorkSuggestionsActionPayload = Payload & {
|
|
|
53346
53593
|
success: Scalars['Boolean']['output'];
|
|
53347
53594
|
userActionState?: Maybe<WorkSuggestionsUserActionState>;
|
|
53348
53595
|
};
|
|
53596
|
+
export declare enum WorkSuggestionsApprovalStatus {
|
|
53597
|
+
Approved = "APPROVED",
|
|
53598
|
+
Needswork = "NEEDSWORK",
|
|
53599
|
+
Unapproved = "UNAPPROVED",
|
|
53600
|
+
Unknown = "UNKNOWN"
|
|
53601
|
+
}
|
|
53349
53602
|
export declare type WorkSuggestionsBlockedIssue = {
|
|
53350
53603
|
__typename?: 'WorkSuggestionsBlockedIssue';
|
|
53351
53604
|
issueKey: Scalars['String']['output'];
|
|
@@ -53389,17 +53642,6 @@ export declare type WorkSuggestionsContextAri = {
|
|
|
53389
53642
|
projectAri: Scalars['ID']['input'];
|
|
53390
53643
|
sprintAri?: InputMaybe<Scalars['ID']['input']>;
|
|
53391
53644
|
};
|
|
53392
|
-
export declare type WorkSuggestionsCreateUserProfileInput = {
|
|
53393
|
-
cloudId: Scalars['ID']['input'];
|
|
53394
|
-
persona?: InputMaybe<WorkSuggestionsUserPersona>;
|
|
53395
|
-
projectAris: Array<Scalars['ID']['input']>;
|
|
53396
|
-
};
|
|
53397
|
-
export declare type WorkSuggestionsCreateUserProfilePayload = Payload & {
|
|
53398
|
-
__typename?: 'WorkSuggestionsCreateUserProfilePayload';
|
|
53399
|
-
errors?: Maybe<Array<MutationError>>;
|
|
53400
|
-
success: Scalars['Boolean']['output'];
|
|
53401
|
-
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
53402
|
-
};
|
|
53403
53645
|
export declare type WorkSuggestionsCriticalVulnerabilityTask = WorkSuggestionsCommon & {
|
|
53404
53646
|
__typename?: 'WorkSuggestionsCriticalVulnerabilityTask';
|
|
53405
53647
|
id: Scalars['String']['output'];
|
|
@@ -53439,15 +53681,12 @@ export declare enum WorkSuggestionsEnvironmentType {
|
|
|
53439
53681
|
}
|
|
53440
53682
|
export declare type WorkSuggestionsMutation = {
|
|
53441
53683
|
__typename?: 'WorkSuggestionsMutation';
|
|
53442
|
-
createUserProfile?: Maybe<WorkSuggestionsCreateUserProfilePayload>;
|
|
53443
53684
|
purgeUserActionStateForCurrentUser?: Maybe<WorkSuggestionsActionPayload>;
|
|
53444
53685
|
purgeUserProfileForCurrentUser?: Maybe<WorkSuggestionsPurgeUserProfilePayload>;
|
|
53445
53686
|
removeTask?: Maybe<WorkSuggestionsActionPayload>;
|
|
53687
|
+
saveUserProfile?: Maybe<WorkSuggestionsSaveUserProfilePayload>;
|
|
53446
53688
|
snoozeTask?: Maybe<WorkSuggestionsActionPayload>;
|
|
53447
53689
|
};
|
|
53448
|
-
export declare type WorkSuggestionsMutationCreateUserProfileArgs = {
|
|
53449
|
-
input: WorkSuggestionsCreateUserProfileInput;
|
|
53450
|
-
};
|
|
53451
53690
|
export declare type WorkSuggestionsMutationPurgeUserActionStateForCurrentUserArgs = {
|
|
53452
53691
|
input: WorkSuggestionsPurgeUserActionStateInput;
|
|
53453
53692
|
};
|
|
@@ -53457,6 +53696,9 @@ export declare type WorkSuggestionsMutationPurgeUserProfileForCurrentUserArgs =
|
|
|
53457
53696
|
export declare type WorkSuggestionsMutationRemoveTaskArgs = {
|
|
53458
53697
|
input: WorkSuggestionsActionInput;
|
|
53459
53698
|
};
|
|
53699
|
+
export declare type WorkSuggestionsMutationSaveUserProfileArgs = {
|
|
53700
|
+
input: WorkSuggestionsSaveUserProfileInput;
|
|
53701
|
+
};
|
|
53460
53702
|
export declare type WorkSuggestionsMutationSnoozeTaskArgs = {
|
|
53461
53703
|
input: WorkSuggestionsActionInput;
|
|
53462
53704
|
};
|
|
@@ -53472,7 +53714,10 @@ export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCom
|
|
|
53472
53714
|
id: Scalars['String']['output'];
|
|
53473
53715
|
lastUpdated: Scalars['String']['output'];
|
|
53474
53716
|
needsWorkCount: Scalars['Int']['output'];
|
|
53717
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
53718
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
53475
53719
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
53720
|
+
reviewers?: Maybe<Array<Maybe<WorkSuggestionsUserDetail>>>;
|
|
53476
53721
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
53477
53722
|
title: Scalars['String']['output'];
|
|
53478
53723
|
url: Scalars['String']['output'];
|
|
@@ -53480,10 +53725,13 @@ export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCom
|
|
|
53480
53725
|
export declare type WorkSuggestionsPullRequestReviewTask = WorkSuggestionsCommon & {
|
|
53481
53726
|
__typename?: 'WorkSuggestionsPullRequestReviewTask';
|
|
53482
53727
|
approvalsCount: Scalars['Int']['output'];
|
|
53728
|
+
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
53483
53729
|
commentCount: Scalars['Int']['output'];
|
|
53484
53730
|
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
53485
53731
|
id: Scalars['String']['output'];
|
|
53486
53732
|
lastUpdated: Scalars['String']['output'];
|
|
53733
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
53734
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
53487
53735
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
53488
53736
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
53489
53737
|
title: Scalars['String']['output'];
|
|
@@ -53501,6 +53749,18 @@ export declare type WorkSuggestionsPurgeUserProfilePayload = Payload & {
|
|
|
53501
53749
|
success: Scalars['Boolean']['output'];
|
|
53502
53750
|
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
53503
53751
|
};
|
|
53752
|
+
export declare type WorkSuggestionsSaveUserProfileInput = {
|
|
53753
|
+
cloudId: Scalars['ID']['input'];
|
|
53754
|
+
isUpdate: Scalars['Boolean']['input'];
|
|
53755
|
+
persona?: InputMaybe<WorkSuggestionsUserPersona>;
|
|
53756
|
+
projectAris: Array<Scalars['ID']['input']>;
|
|
53757
|
+
};
|
|
53758
|
+
export declare type WorkSuggestionsSaveUserProfilePayload = Payload & {
|
|
53759
|
+
__typename?: 'WorkSuggestionsSaveUserProfilePayload';
|
|
53760
|
+
errors?: Maybe<Array<MutationError>>;
|
|
53761
|
+
success: Scalars['Boolean']['output'];
|
|
53762
|
+
userProfile?: Maybe<WorkSuggestionsUserProfile>;
|
|
53763
|
+
};
|
|
53504
53764
|
export declare type WorkSuggestionsUserActionState = {
|
|
53505
53765
|
__typename?: 'WorkSuggestionsUserActionState';
|
|
53506
53766
|
expireAt: Scalars['String']['output'];
|
|
@@ -53508,6 +53768,13 @@ export declare type WorkSuggestionsUserActionState = {
|
|
|
53508
53768
|
stateId: Scalars['String']['output'];
|
|
53509
53769
|
taskId: Scalars['String']['output'];
|
|
53510
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
|
+
};
|
|
53511
53778
|
export declare enum WorkSuggestionsUserPersona {
|
|
53512
53779
|
Developer = "DEVELOPER"
|
|
53513
53780
|
}
|