@forge/cli-shared 6.4.2-next.1 → 6.4.2-next.2
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 +8 -0
- package/out/graphql/graphql-types.d.ts +152 -2
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +26 -15
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +6 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -236,6 +236,7 @@ export declare type ActionsExecuteActionFilter = {
|
|
|
236
236
|
integrationKey?: InputMaybe<Scalars['String']['input']>;
|
|
237
237
|
oauthClientId?: InputMaybe<Scalars['String']['input']>;
|
|
238
238
|
providerAri?: InputMaybe<Scalars['String']['input']>;
|
|
239
|
+
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
239
240
|
};
|
|
240
241
|
export declare type ActionsExecuteActionInput = {
|
|
241
242
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -516,7 +517,7 @@ export declare type ActivityObject = {
|
|
|
516
517
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
517
518
|
type: Scalars['String']['output'];
|
|
518
519
|
};
|
|
519
|
-
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloBoard | TrelloCard;
|
|
520
|
+
export declare type ActivityObjectData = ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
520
521
|
export declare enum ActivityObjectType {
|
|
521
522
|
Blogpost = "BLOGPOST",
|
|
522
523
|
Comment = "COMMENT",
|
|
@@ -874,6 +875,7 @@ export declare type AppEnvironmentVersion = {
|
|
|
874
875
|
__typename?: 'AppEnvironmentVersion';
|
|
875
876
|
createdAt: Scalars['String']['output'];
|
|
876
877
|
extensionByKey?: Maybe<AppVersionExtension>;
|
|
878
|
+
extensions?: Maybe<AppVersionExtensions>;
|
|
877
879
|
id: Scalars['ID']['output'];
|
|
878
880
|
isLatest: Scalars['Boolean']['output'];
|
|
879
881
|
migrationKeys?: Maybe<MigrationKeys>;
|
|
@@ -1501,6 +1503,10 @@ export declare type AppVersionExtension = {
|
|
|
1501
1503
|
id: Scalars['ID']['output'];
|
|
1502
1504
|
key: Scalars['String']['output'];
|
|
1503
1505
|
};
|
|
1506
|
+
export declare type AppVersionExtensions = {
|
|
1507
|
+
__typename?: 'AppVersionExtensions';
|
|
1508
|
+
nodes?: Maybe<Array<Maybe<AppVersionExtension>>>;
|
|
1509
|
+
};
|
|
1504
1510
|
export declare type ApplyCompassScorecardToComponentPayload = Payload & {
|
|
1505
1511
|
__typename?: 'ApplyCompassScorecardToComponentPayload';
|
|
1506
1512
|
componentDetails?: Maybe<CompassComponent>;
|
|
@@ -2127,8 +2133,10 @@ export declare type BoardScope = Node & {
|
|
|
2127
2133
|
cardLayoutConfig?: Maybe<JswCardLayoutConfig>;
|
|
2128
2134
|
cardParents: Array<Maybe<CardParent>>;
|
|
2129
2135
|
cards: Array<Maybe<SoftwareCard>>;
|
|
2136
|
+
columnsConfig?: Maybe<ColumnsConfigPage>;
|
|
2130
2137
|
currentUser: CurrentUser;
|
|
2131
2138
|
customFilters?: Maybe<Array<Maybe<CustomFilter>>>;
|
|
2139
|
+
customFiltersConfig?: Maybe<CustomFiltersConfig>;
|
|
2132
2140
|
estimation?: Maybe<EstimationConfig>;
|
|
2133
2141
|
featureGroups?: Maybe<BoardFeatureGroupConnection>;
|
|
2134
2142
|
features: Array<Maybe<BoardFeature>>;
|
|
@@ -3156,6 +3164,19 @@ export declare type ColumnStatus = {
|
|
|
3156
3164
|
status: CardStatus;
|
|
3157
3165
|
transitions: Array<SoftwareCardTransition>;
|
|
3158
3166
|
};
|
|
3167
|
+
export declare type ColumnStatusV2 = {
|
|
3168
|
+
__typename?: 'ColumnStatusV2';
|
|
3169
|
+
status: StatusV2;
|
|
3170
|
+
};
|
|
3171
|
+
export declare type ColumnV2 = {
|
|
3172
|
+
__typename?: 'ColumnV2';
|
|
3173
|
+
columnStatus: Array<ColumnStatusV2>;
|
|
3174
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
3175
|
+
isKanPlanColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
3176
|
+
maxCardCount?: Maybe<Scalars['Int']['output']>;
|
|
3177
|
+
minCardCount?: Maybe<Scalars['Int']['output']>;
|
|
3178
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
3179
|
+
};
|
|
3159
3180
|
export declare type ColumnWorkflowConfig = {
|
|
3160
3181
|
__typename?: 'ColumnWorkflowConfig';
|
|
3161
3182
|
canSimplifyWorkflow?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -3171,6 +3192,15 @@ export declare type ColumnsConfig = {
|
|
|
3171
3192
|
unmappedStatuses?: Maybe<Array<Maybe<RawStatus>>>;
|
|
3172
3193
|
workflow?: Maybe<ColumnWorkflowConfig>;
|
|
3173
3194
|
};
|
|
3195
|
+
export declare type ColumnsConfigPage = {
|
|
3196
|
+
__typename?: 'ColumnsConfigPage';
|
|
3197
|
+
columns?: Maybe<Array<Maybe<ColumnV2>>>;
|
|
3198
|
+
constraintsStatisticsField?: Maybe<ColumnConstraintStatisticConfig>;
|
|
3199
|
+
isSprintSupportEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
3200
|
+
showEpicAsPanel?: Maybe<Scalars['Boolean']['output']>;
|
|
3201
|
+
unmappedStatuses?: Maybe<Array<Maybe<StatusV2>>>;
|
|
3202
|
+
workflow?: Maybe<ColumnWorkflowConfig>;
|
|
3203
|
+
};
|
|
3174
3204
|
export declare type CommerceAccountDetails = {
|
|
3175
3205
|
invoiceGroup?: Maybe<CommerceInvoiceGroup>;
|
|
3176
3206
|
};
|
|
@@ -4922,6 +4952,7 @@ export declare type CompassCustomFieldFilter = {
|
|
|
4922
4952
|
export declare type CompassCustomFieldFilterInput = {
|
|
4923
4953
|
boolean?: InputMaybe<CompassComponentCustomBooleanFieldFilterInput>;
|
|
4924
4954
|
multiselect?: InputMaybe<CompassCustomMultiselectFieldFilterInput>;
|
|
4955
|
+
number?: InputMaybe<CompassCustomNumberFieldFilterInput>;
|
|
4925
4956
|
singleSelect?: InputMaybe<CompassCustomSingleSelectFieldFilterInput>;
|
|
4926
4957
|
user?: InputMaybe<CompassCustomUserFieldFilterInput>;
|
|
4927
4958
|
};
|
|
@@ -4989,6 +5020,15 @@ export declare type CompassCustomNumberFieldDefinition = CompassCustomFieldDefin
|
|
|
4989
5020
|
id: Scalars['ID']['output'];
|
|
4990
5021
|
name?: Maybe<Scalars['String']['output']>;
|
|
4991
5022
|
};
|
|
5023
|
+
export declare type CompassCustomNumberFieldFilter = CompassCustomFieldFilter & {
|
|
5024
|
+
__typename?: 'CompassCustomNumberFieldFilter';
|
|
5025
|
+
comparator: Scalars['String']['output'];
|
|
5026
|
+
customFieldId: Scalars['String']['output'];
|
|
5027
|
+
};
|
|
5028
|
+
export declare type CompassCustomNumberFieldFilterInput = {
|
|
5029
|
+
comparator?: InputMaybe<CustomNumberFieldInputComparators>;
|
|
5030
|
+
customFieldId: Scalars['String']['input'];
|
|
5031
|
+
};
|
|
4992
5032
|
export declare type CompassCustomNumberFieldInput = {
|
|
4993
5033
|
annotations?: InputMaybe<Array<CompassCustomFieldAnnotationInput>>;
|
|
4994
5034
|
definitionId: Scalars['ID']['input'];
|
|
@@ -5780,6 +5820,17 @@ export declare type CompassInsertMetricValuePayload = Payload & {
|
|
|
5780
5820
|
metricSource?: Maybe<CompassMetricSource>;
|
|
5781
5821
|
success: Scalars['Boolean']['output'];
|
|
5782
5822
|
};
|
|
5823
|
+
export declare type CompassJqlMetricSourceConfiguration = {
|
|
5824
|
+
__typename?: 'CompassJQLMetricSourceConfiguration';
|
|
5825
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
5826
|
+
userContext?: Maybe<User>;
|
|
5827
|
+
viewerPermissions?: Maybe<CompassJqlMetricSourceInstancePermissions>;
|
|
5828
|
+
};
|
|
5829
|
+
export declare type CompassJqlMetricSourceInstancePermissions = {
|
|
5830
|
+
__typename?: 'CompassJQLMetricSourceInstancePermissions';
|
|
5831
|
+
revokePollingUser?: Maybe<CompassPermissionResult>;
|
|
5832
|
+
updatePollingUser?: Maybe<CompassPermissionResult>;
|
|
5833
|
+
};
|
|
5783
5834
|
export declare type CompassJiraIssue = Node & {
|
|
5784
5835
|
__typename?: 'CompassJiraIssue';
|
|
5785
5836
|
changeMetadata: CompassChangeMetadata;
|
|
@@ -5935,6 +5986,7 @@ export declare type CompassMetricSource = Node & {
|
|
|
5935
5986
|
externalMetricSourceId?: Maybe<Scalars['ID']['output']>;
|
|
5936
5987
|
forgeAppId?: Maybe<Scalars['ID']['output']>;
|
|
5937
5988
|
id: Scalars['ID']['output'];
|
|
5989
|
+
jqlConfiguration?: Maybe<CompassJqlMetricSourceConfiguration>;
|
|
5938
5990
|
metricDefinition?: Maybe<CompassMetricDefinition>;
|
|
5939
5991
|
title?: Maybe<Scalars['String']['output']>;
|
|
5940
5992
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -16567,6 +16619,25 @@ export declare type CustomFilterCreateOutput = MutationResponse & {
|
|
|
16567
16619
|
success: Scalars['Boolean']['output'];
|
|
16568
16620
|
validationErrors: Array<CustomFiltersValidationError>;
|
|
16569
16621
|
};
|
|
16622
|
+
export declare type CustomFilterCreateOutputV2 = MutationResponse & {
|
|
16623
|
+
__typename?: 'CustomFilterCreateOutputV2';
|
|
16624
|
+
customFilter?: Maybe<CustomFilterV2>;
|
|
16625
|
+
message: Scalars['String']['output'];
|
|
16626
|
+
statusCode: Scalars['Int']['output'];
|
|
16627
|
+
success: Scalars['Boolean']['output'];
|
|
16628
|
+
validationErrors: Array<CustomFiltersValidationError>;
|
|
16629
|
+
};
|
|
16630
|
+
export declare type CustomFilterV2 = {
|
|
16631
|
+
__typename?: 'CustomFilterV2';
|
|
16632
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
16633
|
+
id: Scalars['ID']['output'];
|
|
16634
|
+
jql: Scalars['String']['output'];
|
|
16635
|
+
name: Scalars['String']['output'];
|
|
16636
|
+
};
|
|
16637
|
+
export declare type CustomFiltersConfig = {
|
|
16638
|
+
__typename?: 'CustomFiltersConfig';
|
|
16639
|
+
customFilters?: Maybe<Array<Maybe<CustomFilterV2>>>;
|
|
16640
|
+
};
|
|
16570
16641
|
export declare type CustomFiltersValidationError = {
|
|
16571
16642
|
__typename?: 'CustomFiltersValidationError';
|
|
16572
16643
|
errorKey: Scalars['String']['output'];
|
|
@@ -16579,6 +16650,10 @@ export declare enum CustomMultiselectFieldInputComparators {
|
|
|
16579
16650
|
ContainNone = "CONTAIN_NONE",
|
|
16580
16651
|
NotSet = "NOT_SET"
|
|
16581
16652
|
}
|
|
16653
|
+
export declare enum CustomNumberFieldInputComparators {
|
|
16654
|
+
IsSet = "IS_SET",
|
|
16655
|
+
NotSet = "NOT_SET"
|
|
16656
|
+
}
|
|
16582
16657
|
export declare enum CustomSingleSelectFieldInputComparators {
|
|
16583
16658
|
ContainAny = "CONTAIN_ANY",
|
|
16584
16659
|
ContainNone = "CONTAIN_NONE",
|
|
@@ -41466,6 +41541,7 @@ export declare type JiraAppNavigationItem = JiraAppNavigationConfig & JiraNaviga
|
|
|
41466
41541
|
appId?: Maybe<Scalars['ID']['output']>;
|
|
41467
41542
|
appType?: Maybe<JiraAppType>;
|
|
41468
41543
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
41544
|
+
canRename?: Maybe<Scalars['Boolean']['output']>;
|
|
41469
41545
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
41470
41546
|
envLabel?: Maybe<Scalars['String']['output']>;
|
|
41471
41547
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -43988,6 +44064,16 @@ export declare type JiraDeleteCustomBackgroundPayload = Payload & {
|
|
|
43988
44064
|
errors?: Maybe<Array<MutationError>>;
|
|
43989
44065
|
success: Scalars['Boolean']['output'];
|
|
43990
44066
|
};
|
|
44067
|
+
export declare type JiraDeleteCustomFieldInput = {
|
|
44068
|
+
cloudId: Scalars['ID']['input'];
|
|
44069
|
+
fieldId: Scalars['String']['input'];
|
|
44070
|
+
projectId: Scalars['String']['input'];
|
|
44071
|
+
};
|
|
44072
|
+
export declare type JiraDeleteCustomFieldPayload = Payload & {
|
|
44073
|
+
__typename?: 'JiraDeleteCustomFieldPayload';
|
|
44074
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44075
|
+
success: Scalars['Boolean']['output'];
|
|
44076
|
+
};
|
|
43991
44077
|
export declare type JiraDeleteCustomFilterPayload = Payload & {
|
|
43992
44078
|
__typename?: 'JiraDeleteCustomFilterPayload';
|
|
43993
44079
|
deletedCustomFilterId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -44659,6 +44745,11 @@ export declare type JiraFieldAssociationWithIssueTypesEdge = {
|
|
|
44659
44745
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
44660
44746
|
node?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
44661
44747
|
};
|
|
44748
|
+
export declare type JiraFieldAssociationWithIssueTypesInput = {
|
|
44749
|
+
fieldTypeGroups?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
44750
|
+
filterContains?: InputMaybe<Scalars['String']['input']>;
|
|
44751
|
+
issueTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
44752
|
+
};
|
|
44662
44753
|
export declare type JiraFieldConfig = {
|
|
44663
44754
|
__typename?: 'JiraFieldConfig';
|
|
44664
44755
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -47002,6 +47093,7 @@ export declare type JiraIssueTransitionModal = {
|
|
|
47002
47093
|
description?: Maybe<Scalars['String']['output']>;
|
|
47003
47094
|
issue?: Maybe<JiraIssue>;
|
|
47004
47095
|
messages?: Maybe<Array<Maybe<JiraIssueTransitionMessage>>>;
|
|
47096
|
+
remindingMessage?: Maybe<Scalars['String']['output']>;
|
|
47005
47097
|
title?: Maybe<Scalars['String']['output']>;
|
|
47006
47098
|
};
|
|
47007
47099
|
export declare type JiraIssueTransitionResponse = Payload & {
|
|
@@ -48316,6 +48408,7 @@ export declare type JiraMutation = {
|
|
|
48316
48408
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
48317
48409
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
48318
48410
|
deleteCustomBackground?: Maybe<JiraDeleteCustomBackgroundPayload>;
|
|
48411
|
+
deleteCustomField?: Maybe<JiraDeleteCustomFieldPayload>;
|
|
48319
48412
|
deleteFormattingRule?: Maybe<JiraDeleteFormattingRulePayload>;
|
|
48320
48413
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
48321
48414
|
deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
|
|
@@ -48568,6 +48661,9 @@ export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
|
48568
48661
|
export declare type JiraMutationDeleteCustomBackgroundArgs = {
|
|
48569
48662
|
input: JiraDeleteCustomBackgroundInput;
|
|
48570
48663
|
};
|
|
48664
|
+
export declare type JiraMutationDeleteCustomFieldArgs = {
|
|
48665
|
+
input: JiraDeleteCustomFieldInput;
|
|
48666
|
+
};
|
|
48571
48667
|
export declare type JiraMutationDeleteFormattingRuleArgs = {
|
|
48572
48668
|
input: JiraDeleteFormattingRuleInput;
|
|
48573
48669
|
};
|
|
@@ -49052,11 +49148,13 @@ export declare type JiraNaturalLanguageToJqlInput = {
|
|
|
49052
49148
|
};
|
|
49053
49149
|
export declare type JiraNavigationItem = {
|
|
49054
49150
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
49151
|
+
canRename?: Maybe<Scalars['Boolean']['output']>;
|
|
49055
49152
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
49056
49153
|
id: Scalars['ID']['output'];
|
|
49057
49154
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
49058
49155
|
label?: Maybe<Scalars['String']['output']>;
|
|
49059
49156
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
49157
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
49060
49158
|
};
|
|
49061
49159
|
export declare type JiraNavigationItemConnection = HasPageInfo & {
|
|
49062
49160
|
__typename?: 'JiraNavigationItemConnection';
|
|
@@ -50809,6 +50907,7 @@ export declare type JiraProjectWithIssueTypeIdsAvailableFieldsArgs = {
|
|
|
50809
50907
|
export declare type JiraProjectWithIssueTypeIdsFieldAssociationWithIssueTypesArgs = {
|
|
50810
50908
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50811
50909
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50910
|
+
input?: InputMaybe<JiraFieldAssociationWithIssueTypesInput>;
|
|
50812
50911
|
};
|
|
50813
50912
|
export declare enum JiraProjectsHelpCenterMappingStatus {
|
|
50814
50913
|
All = "ALL",
|
|
@@ -53891,6 +53990,7 @@ export declare type JiraShortcutDataInput = {
|
|
|
53891
53990
|
export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
|
|
53892
53991
|
__typename?: 'JiraShortcutNavigationItem';
|
|
53893
53992
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
53993
|
+
canRename?: Maybe<Scalars['Boolean']['output']>;
|
|
53894
53994
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
53895
53995
|
id: Scalars['ID']['output'];
|
|
53896
53996
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -54124,11 +54224,13 @@ export declare type JiraSingleVersionPickerFieldPayload = Payload & {
|
|
|
54124
54224
|
export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Node & {
|
|
54125
54225
|
__typename?: 'JiraSoftwareBuiltInNavigationItem';
|
|
54126
54226
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
54227
|
+
canRename?: Maybe<Scalars['Boolean']['output']>;
|
|
54127
54228
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
54128
54229
|
id: Scalars['ID']['output'];
|
|
54129
54230
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
54130
54231
|
label?: Maybe<Scalars['String']['output']>;
|
|
54131
54232
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
54233
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
54132
54234
|
};
|
|
54133
54235
|
export declare type JiraSoftwareIssueSearchCustomInput = {
|
|
54134
54236
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -56564,12 +56666,14 @@ export declare type JiraWorkManagementRemoveActiveBackgroundPayload = Payload &
|
|
|
56564
56666
|
export declare type JiraWorkManagementSavedView = JiraNavigationItem & Node & {
|
|
56565
56667
|
__typename?: 'JiraWorkManagementSavedView';
|
|
56566
56668
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
56669
|
+
canRename?: Maybe<Scalars['Boolean']['output']>;
|
|
56567
56670
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
56568
56671
|
id: Scalars['ID']['output'];
|
|
56569
56672
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
56570
56673
|
label?: Maybe<Scalars['String']['output']>;
|
|
56571
56674
|
type?: Maybe<JiraWorkManagementSavedViewType>;
|
|
56572
56675
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
56676
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
56573
56677
|
};
|
|
56574
56678
|
export declare type JiraWorkManagementSavedViewResult = JiraWorkManagementSavedView | QueryError;
|
|
56575
56679
|
export declare type JiraWorkManagementSavedViewType = Node & {
|
|
@@ -56817,6 +56921,7 @@ export declare type JsmChatCreateConversationPayload = Payload & {
|
|
|
56817
56921
|
export declare type JsmChatCreateConversationResponse = {
|
|
56818
56922
|
__typename?: 'JsmChatCreateConversationResponse';
|
|
56819
56923
|
id: Scalars['ID']['output'];
|
|
56924
|
+
message?: Maybe<JsmChatCreateWebConversationMessage>;
|
|
56820
56925
|
};
|
|
56821
56926
|
export declare type JsmChatCreateWebConversationMessage = {
|
|
56822
56927
|
__typename?: 'JsmChatCreateWebConversationMessage';
|
|
@@ -61708,6 +61813,7 @@ export declare type Mutation = {
|
|
|
61708
61813
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
61709
61814
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
61710
61815
|
createCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
61816
|
+
createCustomFilterV2?: Maybe<CustomFilterCreateOutputV2>;
|
|
61711
61817
|
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
61712
61818
|
createDevOpsServiceAndJiraProjectRelationship?: Maybe<CreateDevOpsServiceAndJiraProjectRelationshipPayload>;
|
|
61713
61819
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -61827,6 +61933,7 @@ export declare type Mutation = {
|
|
|
61827
61933
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
61828
61934
|
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
61829
61935
|
updateCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
61936
|
+
updateCustomFilterV2?: Maybe<CustomFilterCreateOutputV2>;
|
|
61830
61937
|
updateDevOpsContainerRelationshipEntityProperties?: Maybe<UpdateDevOpsContainerRelationshipEntityPropertiesPayload>;
|
|
61831
61938
|
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
61832
61939
|
updateDevOpsServiceAndJiraProjectRelationship?: Maybe<UpdateDevOpsServiceAndJiraProjectRelationshipPayload>;
|
|
@@ -62407,6 +62514,9 @@ export declare type MutationCreateColumnArgs = {
|
|
|
62407
62514
|
export declare type MutationCreateCustomFilterArgs = {
|
|
62408
62515
|
input?: InputMaybe<CreateCustomFilterInput>;
|
|
62409
62516
|
};
|
|
62517
|
+
export declare type MutationCreateCustomFilterV2Args = {
|
|
62518
|
+
input?: InputMaybe<CreateCustomFilterInput>;
|
|
62519
|
+
};
|
|
62410
62520
|
export declare type MutationCreateDevOpsServiceArgs = {
|
|
62411
62521
|
input: CreateDevOpsServiceInput;
|
|
62412
62522
|
};
|
|
@@ -62708,6 +62818,9 @@ export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
|
62708
62818
|
export declare type MutationUpdateCustomFilterArgs = {
|
|
62709
62819
|
input?: InputMaybe<UpdateCustomFilterInput>;
|
|
62710
62820
|
};
|
|
62821
|
+
export declare type MutationUpdateCustomFilterV2Args = {
|
|
62822
|
+
input?: InputMaybe<UpdateCustomFilterInput>;
|
|
62823
|
+
};
|
|
62711
62824
|
export declare type MutationUpdateDevOpsContainerRelationshipEntityPropertiesArgs = {
|
|
62712
62825
|
input: UpdateDevOpsContainerRelationshipEntityPropertiesInput;
|
|
62713
62826
|
};
|
|
@@ -66465,6 +66578,7 @@ export declare type RadarEdge = {
|
|
|
66465
66578
|
cursor: Scalars['String']['output'];
|
|
66466
66579
|
};
|
|
66467
66580
|
export declare type RadarEntity = {
|
|
66581
|
+
entityId: Scalars['ID']['output'];
|
|
66468
66582
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
66469
66583
|
id: Scalars['ID']['output'];
|
|
66470
66584
|
type?: Maybe<RadarEntityType>;
|
|
@@ -66537,7 +66651,7 @@ export declare enum RadarFilterPlurality {
|
|
|
66537
66651
|
Or = "OR"
|
|
66538
66652
|
}
|
|
66539
66653
|
export declare type RadarFocusAreaMappingsInput = {
|
|
66540
|
-
focusAreaAri
|
|
66654
|
+
focusAreaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
66541
66655
|
positionAri: Scalars['ID']['input'];
|
|
66542
66656
|
};
|
|
66543
66657
|
export declare type RadarGroupMetrics = {
|
|
@@ -66570,6 +66684,7 @@ export declare type RadarNumericFieldValue = {
|
|
|
66570
66684
|
};
|
|
66571
66685
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
66572
66686
|
__typename?: 'RadarPosition';
|
|
66687
|
+
entityId: Scalars['ID']['output'];
|
|
66573
66688
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
66574
66689
|
id: Scalars['ID']['output'];
|
|
66575
66690
|
reportingLine?: Maybe<Array<RadarPosition>>;
|
|
@@ -66622,6 +66737,7 @@ export declare type RadarUrlFieldValue = {
|
|
|
66622
66737
|
};
|
|
66623
66738
|
export declare type RadarWorker = Node & RadarEntity & {
|
|
66624
66739
|
__typename?: 'RadarWorker';
|
|
66740
|
+
entityId: Scalars['ID']['output'];
|
|
66625
66741
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
66626
66742
|
id: Scalars['ID']['output'];
|
|
66627
66743
|
preferredName?: Maybe<Scalars['String']['output']>;
|
|
@@ -68603,9 +68719,16 @@ export declare type SearchThirdPartyFilter = {
|
|
|
68603
68719
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
68604
68720
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
68605
68721
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
68722
|
+
thirdPartyProducts?: InputMaybe<Array<SearchThirdPartyProduct>>;
|
|
68606
68723
|
thirdPartyTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
68607
68724
|
titleMatchOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68608
68725
|
};
|
|
68726
|
+
export declare type SearchThirdPartyProduct = {
|
|
68727
|
+
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
68728
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
68729
|
+
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
68730
|
+
subtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
68731
|
+
};
|
|
68609
68732
|
export declare enum SearchThirdPartyRangeField {
|
|
68610
68733
|
Created = "CREATED",
|
|
68611
68734
|
Lastmodified = "LASTMODIFIED"
|
|
@@ -70575,6 +70698,15 @@ export declare type StartSprintInput = {
|
|
|
70575
70698
|
sprintId: Scalars['ID']['input'];
|
|
70576
70699
|
startDate: Scalars['String']['input'];
|
|
70577
70700
|
};
|
|
70701
|
+
export declare type StatusV2 = {
|
|
70702
|
+
__typename?: 'StatusV2';
|
|
70703
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
70704
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
70705
|
+
isPresentInWorkflow?: Maybe<Scalars['Boolean']['output']>;
|
|
70706
|
+
isResolutionDone?: Maybe<Scalars['Boolean']['output']>;
|
|
70707
|
+
issueMetaData?: Maybe<JswCardStatusIssueMetaData>;
|
|
70708
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
70709
|
+
};
|
|
70578
70710
|
export declare type Storage = {
|
|
70579
70711
|
__typename?: 'Storage';
|
|
70580
70712
|
hosted?: Maybe<HostedStorage>;
|
|
@@ -73420,6 +73552,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
73420
73552
|
createdByTrello?: Maybe<Scalars['Boolean']['output']>;
|
|
73421
73553
|
description?: Maybe<Scalars['String']['output']>;
|
|
73422
73554
|
endAt?: Maybe<Scalars['DateTime']['output']>;
|
|
73555
|
+
eventType?: Maybe<TrelloPlannerCalendarEventType>;
|
|
73423
73556
|
id: Scalars['ID']['output'];
|
|
73424
73557
|
link?: Maybe<Scalars['String']['output']>;
|
|
73425
73558
|
parentEventId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -73435,6 +73568,7 @@ export declare type TrelloPlannerCalendarEventCardsArgs = {
|
|
|
73435
73568
|
};
|
|
73436
73569
|
export declare type TrelloPlannerCalendarEventCard = Node & {
|
|
73437
73570
|
__typename?: 'TrelloPlannerCalendarEventCard';
|
|
73571
|
+
card?: Maybe<TrelloCard>;
|
|
73438
73572
|
cardId?: Maybe<Scalars['ID']['output']>;
|
|
73439
73573
|
id: Scalars['ID']['output'];
|
|
73440
73574
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -73472,6 +73606,11 @@ export declare enum TrelloPlannerCalendarEventStatus {
|
|
|
73472
73606
|
NeedsAction = "NEEDS_ACTION",
|
|
73473
73607
|
Tentative = "TENTATIVE"
|
|
73474
73608
|
}
|
|
73609
|
+
export declare enum TrelloPlannerCalendarEventType {
|
|
73610
|
+
Default = "DEFAULT",
|
|
73611
|
+
FocusTime = "FOCUS_TIME",
|
|
73612
|
+
OutOfOffice = "OUT_OF_OFFICE"
|
|
73613
|
+
}
|
|
73475
73614
|
export declare enum TrelloPlannerCalendarEventVisibility {
|
|
73476
73615
|
Default = "DEFAULT",
|
|
73477
73616
|
Private = "PRIVATE",
|
|
@@ -73564,6 +73703,7 @@ export declare type TrelloProviderCalendarInterface = {
|
|
|
73564
73703
|
};
|
|
73565
73704
|
export declare type TrelloQueryApi = {
|
|
73566
73705
|
__typename?: 'TrelloQueryApi';
|
|
73706
|
+
attachmentsById?: Maybe<Array<Maybe<TrelloAttachment>>>;
|
|
73567
73707
|
board?: Maybe<TrelloBoard>;
|
|
73568
73708
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
73569
73709
|
card?: Maybe<TrelloCard>;
|
|
@@ -73571,6 +73711,7 @@ export declare type TrelloQueryApi = {
|
|
|
73571
73711
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
73572
73712
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
73573
73713
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
73714
|
+
labelsById?: Maybe<Array<Maybe<TrelloLabel>>>;
|
|
73574
73715
|
list?: Maybe<TrelloList>;
|
|
73575
73716
|
listsById?: Maybe<Array<Maybe<TrelloList>>>;
|
|
73576
73717
|
member?: Maybe<TrelloMember>;
|
|
@@ -73588,6 +73729,9 @@ export declare type TrelloQueryApi = {
|
|
|
73588
73729
|
usersById?: Maybe<Array<Maybe<TrelloMember>>>;
|
|
73589
73730
|
workspace?: Maybe<TrelloWorkspace>;
|
|
73590
73731
|
};
|
|
73732
|
+
export declare type TrelloQueryApiAttachmentsByIdArgs = {
|
|
73733
|
+
ids: Array<Scalars['ID']['input']>;
|
|
73734
|
+
};
|
|
73591
73735
|
export declare type TrelloQueryApiBoardArgs = {
|
|
73592
73736
|
id: Scalars['ID']['input'];
|
|
73593
73737
|
};
|
|
@@ -73609,6 +73753,9 @@ export declare type TrelloQueryApiEnabledPlannerCalendarsByAccountIdArgs = {
|
|
|
73609
73753
|
export declare type TrelloQueryApiEnterpriseArgs = {
|
|
73610
73754
|
id: Scalars['ID']['input'];
|
|
73611
73755
|
};
|
|
73756
|
+
export declare type TrelloQueryApiLabelsByIdArgs = {
|
|
73757
|
+
ids: Array<Scalars['ID']['input']>;
|
|
73758
|
+
};
|
|
73612
73759
|
export declare type TrelloQueryApiListArgs = {
|
|
73613
73760
|
id: Scalars['ID']['input'];
|
|
73614
73761
|
};
|
|
@@ -76212,9 +76359,12 @@ export declare type WorkSuggestionsPrMergeableTask = WorkSuggestionsPeriscopeTas
|
|
|
76212
76359
|
commentCount: Scalars['Int']['output'];
|
|
76213
76360
|
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
76214
76361
|
id: Scalars['String']['output'];
|
|
76362
|
+
isMergeActionEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
76215
76363
|
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
76216
76364
|
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
76217
76365
|
providerName?: Maybe<Scalars['String']['output']>;
|
|
76366
|
+
pullRequestAri?: Maybe<Scalars['String']['output']>;
|
|
76367
|
+
pullRequestInternalId?: Maybe<Scalars['String']['output']>;
|
|
76218
76368
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
76219
76369
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
76220
76370
|
title: Scalars['String']['output'];
|