@forge/cli-shared 6.4.2-next.0 → 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 +17 -0
- package/out/graphql/graphql-types.d.ts +248 -8
- 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
|
@@ -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']>;
|
|
@@ -43090,6 +43166,24 @@ export declare type JiraCommentSortInput = {
|
|
|
43090
43166
|
field: JiraCommentSortField;
|
|
43091
43167
|
order: SortDirection;
|
|
43092
43168
|
};
|
|
43169
|
+
export declare type JiraCommentSummary = {
|
|
43170
|
+
__typename?: 'JiraCommentSummary';
|
|
43171
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43172
|
+
};
|
|
43173
|
+
export declare type JiraCommentSummaryField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
43174
|
+
__typename?: 'JiraCommentSummaryField';
|
|
43175
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
43176
|
+
commentSummary?: Maybe<JiraCommentSummary>;
|
|
43177
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
43178
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
43179
|
+
fieldId: Scalars['String']['output'];
|
|
43180
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
43181
|
+
id: Scalars['ID']['output'];
|
|
43182
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
43183
|
+
issue?: Maybe<JiraIssue>;
|
|
43184
|
+
name: Scalars['String']['output'];
|
|
43185
|
+
type: Scalars['String']['output'];
|
|
43186
|
+
};
|
|
43093
43187
|
export declare type JiraComponent = Node & {
|
|
43094
43188
|
__typename?: 'JiraComponent';
|
|
43095
43189
|
ari?: Maybe<Scalars['String']['output']>;
|
|
@@ -43970,6 +44064,16 @@ export declare type JiraDeleteCustomBackgroundPayload = Payload & {
|
|
|
43970
44064
|
errors?: Maybe<Array<MutationError>>;
|
|
43971
44065
|
success: Scalars['Boolean']['output'];
|
|
43972
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
|
+
};
|
|
43973
44077
|
export declare type JiraDeleteCustomFilterPayload = Payload & {
|
|
43974
44078
|
__typename?: 'JiraDeleteCustomFilterPayload';
|
|
43975
44079
|
deletedCustomFilterId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -44059,7 +44163,6 @@ export declare type JiraDetailedViewIssuesArgs = {
|
|
|
44059
44163
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
44060
44164
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
44061
44165
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
44062
|
-
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
44063
44166
|
};
|
|
44064
44167
|
export declare type JiraDevInfoConfigError = {
|
|
44065
44168
|
__typename?: 'JiraDevInfoConfigError';
|
|
@@ -44642,6 +44745,11 @@ export declare type JiraFieldAssociationWithIssueTypesEdge = {
|
|
|
44642
44745
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
44643
44746
|
node?: Maybe<JiraFieldAssociationWithIssueTypes>;
|
|
44644
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
|
+
};
|
|
44645
44753
|
export declare type JiraFieldConfig = {
|
|
44646
44754
|
__typename?: 'JiraFieldConfig';
|
|
44647
44755
|
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -45453,6 +45561,7 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraIssu
|
|
|
45453
45561
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
45454
45562
|
id: Scalars['ID']['output'];
|
|
45455
45563
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
45564
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
45456
45565
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
45457
45566
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
45458
45567
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
@@ -46088,7 +46197,7 @@ export declare type JiraIssueEdgeFieldSetsArgs = {
|
|
|
46088
46197
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
46089
46198
|
};
|
|
46090
46199
|
export declare type JiraIssueExpandedGroup = {
|
|
46091
|
-
fieldValue
|
|
46200
|
+
fieldValue?: InputMaybe<Scalars['String']['input']>;
|
|
46092
46201
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46093
46202
|
jql: Scalars['String']['input'];
|
|
46094
46203
|
};
|
|
@@ -46984,6 +47093,7 @@ export declare type JiraIssueTransitionModal = {
|
|
|
46984
47093
|
description?: Maybe<Scalars['String']['output']>;
|
|
46985
47094
|
issue?: Maybe<JiraIssue>;
|
|
46986
47095
|
messages?: Maybe<Array<Maybe<JiraIssueTransitionMessage>>>;
|
|
47096
|
+
remindingMessage?: Maybe<Scalars['String']['output']>;
|
|
46987
47097
|
title?: Maybe<Scalars['String']['output']>;
|
|
46988
47098
|
};
|
|
46989
47099
|
export declare type JiraIssueTransitionResponse = Payload & {
|
|
@@ -47876,6 +47986,7 @@ export declare type JiraListView = JiraIssueSearchViewMetadata & JiraIssueSearch
|
|
|
47876
47986
|
id: Scalars['ID']['output'];
|
|
47877
47987
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
47878
47988
|
issues?: Maybe<JiraIssueConnection>;
|
|
47989
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
47879
47990
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
47880
47991
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
47881
47992
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
@@ -47897,7 +48008,6 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
47897
48008
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
47898
48009
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
47899
48010
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
47900
|
-
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
47901
48011
|
};
|
|
47902
48012
|
export declare type JiraLongRunningTaskProgress = {
|
|
47903
48013
|
__typename?: 'JiraLongRunningTaskProgress';
|
|
@@ -48298,6 +48408,7 @@ export declare type JiraMutation = {
|
|
|
48298
48408
|
createReleaseNoteConfluencePage?: Maybe<JiraCreateReleaseNoteConfluencePagePayload>;
|
|
48299
48409
|
createSimpleNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
48300
48410
|
deleteCustomBackground?: Maybe<JiraDeleteCustomBackgroundPayload>;
|
|
48411
|
+
deleteCustomField?: Maybe<JiraDeleteCustomFieldPayload>;
|
|
48301
48412
|
deleteFormattingRule?: Maybe<JiraDeleteFormattingRulePayload>;
|
|
48302
48413
|
deleteGlobalPermissionGrant?: Maybe<JiraGlobalPermissionDeleteGroupGrantPayload>;
|
|
48303
48414
|
deleteIssueLink?: Maybe<JiraDeleteIssueLinkPayload>;
|
|
@@ -48550,6 +48661,9 @@ export declare type JiraMutationCreateSimpleNavigationItemArgs = {
|
|
|
48550
48661
|
export declare type JiraMutationDeleteCustomBackgroundArgs = {
|
|
48551
48662
|
input: JiraDeleteCustomBackgroundInput;
|
|
48552
48663
|
};
|
|
48664
|
+
export declare type JiraMutationDeleteCustomFieldArgs = {
|
|
48665
|
+
input: JiraDeleteCustomFieldInput;
|
|
48666
|
+
};
|
|
48553
48667
|
export declare type JiraMutationDeleteFormattingRuleArgs = {
|
|
48554
48668
|
input: JiraDeleteFormattingRuleInput;
|
|
48555
48669
|
};
|
|
@@ -49034,11 +49148,13 @@ export declare type JiraNaturalLanguageToJqlInput = {
|
|
|
49034
49148
|
};
|
|
49035
49149
|
export declare type JiraNavigationItem = {
|
|
49036
49150
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
49151
|
+
canRename?: Maybe<Scalars['Boolean']['output']>;
|
|
49037
49152
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
49038
49153
|
id: Scalars['ID']['output'];
|
|
49039
49154
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
49040
49155
|
label?: Maybe<Scalars['String']['output']>;
|
|
49041
49156
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
49157
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
49042
49158
|
};
|
|
49043
49159
|
export declare type JiraNavigationItemConnection = HasPageInfo & {
|
|
49044
49160
|
__typename?: 'JiraNavigationItemConnection';
|
|
@@ -50791,6 +50907,7 @@ export declare type JiraProjectWithIssueTypeIdsAvailableFieldsArgs = {
|
|
|
50791
50907
|
export declare type JiraProjectWithIssueTypeIdsFieldAssociationWithIssueTypesArgs = {
|
|
50792
50908
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
50793
50909
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
50910
|
+
input?: InputMaybe<JiraFieldAssociationWithIssueTypesInput>;
|
|
50794
50911
|
};
|
|
50795
50912
|
export declare enum JiraProjectsHelpCenterMappingStatus {
|
|
50796
50913
|
All = "ALL",
|
|
@@ -53873,6 +53990,7 @@ export declare type JiraShortcutDataInput = {
|
|
|
53873
53990
|
export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
|
|
53874
53991
|
__typename?: 'JiraShortcutNavigationItem';
|
|
53875
53992
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
53993
|
+
canRename?: Maybe<Scalars['Boolean']['output']>;
|
|
53876
53994
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
53877
53995
|
id: Scalars['ID']['output'];
|
|
53878
53996
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -54106,11 +54224,13 @@ export declare type JiraSingleVersionPickerFieldPayload = Payload & {
|
|
|
54106
54224
|
export declare type JiraSoftwareBuiltInNavigationItem = JiraNavigationItem & Node & {
|
|
54107
54225
|
__typename?: 'JiraSoftwareBuiltInNavigationItem';
|
|
54108
54226
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
54227
|
+
canRename?: Maybe<Scalars['Boolean']['output']>;
|
|
54109
54228
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
54110
54229
|
id: Scalars['ID']['output'];
|
|
54111
54230
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
54112
54231
|
label?: Maybe<Scalars['String']['output']>;
|
|
54113
54232
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
54233
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
54114
54234
|
};
|
|
54115
54235
|
export declare type JiraSoftwareIssueSearchCustomInput = {
|
|
54116
54236
|
additionalJql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -54159,6 +54279,7 @@ export declare type JiraSpreadsheetGroupByConfigAvailableGroupByFieldOptionsArgs
|
|
|
54159
54279
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
54160
54280
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
54161
54281
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54282
|
+
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
54162
54283
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
54163
54284
|
};
|
|
54164
54285
|
export declare type JiraSpreadsheetGroupByFieldOptionConnection = {
|
|
@@ -54193,6 +54314,7 @@ export declare type JiraSpreadsheetView = {
|
|
|
54193
54314
|
hasDefaultFieldSets?: Maybe<Scalars['Boolean']['output']>;
|
|
54194
54315
|
id: Scalars['ID']['output'];
|
|
54195
54316
|
isHierarchyEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
54317
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
54196
54318
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
54197
54319
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
54198
54320
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
@@ -56544,12 +56666,14 @@ export declare type JiraWorkManagementRemoveActiveBackgroundPayload = Payload &
|
|
|
56544
56666
|
export declare type JiraWorkManagementSavedView = JiraNavigationItem & Node & {
|
|
56545
56667
|
__typename?: 'JiraWorkManagementSavedView';
|
|
56546
56668
|
canRemove?: Maybe<Scalars['Boolean']['output']>;
|
|
56669
|
+
canRename?: Maybe<Scalars['Boolean']['output']>;
|
|
56547
56670
|
canSetAsDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
56548
56671
|
id: Scalars['ID']['output'];
|
|
56549
56672
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
56550
56673
|
label?: Maybe<Scalars['String']['output']>;
|
|
56551
56674
|
type?: Maybe<JiraWorkManagementSavedViewType>;
|
|
56552
56675
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
56676
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
56553
56677
|
};
|
|
56554
56678
|
export declare type JiraWorkManagementSavedViewResult = JiraWorkManagementSavedView | QueryError;
|
|
56555
56679
|
export declare type JiraWorkManagementSavedViewType = Node & {
|
|
@@ -56797,6 +56921,7 @@ export declare type JsmChatCreateConversationPayload = Payload & {
|
|
|
56797
56921
|
export declare type JsmChatCreateConversationResponse = {
|
|
56798
56922
|
__typename?: 'JsmChatCreateConversationResponse';
|
|
56799
56923
|
id: Scalars['ID']['output'];
|
|
56924
|
+
message?: Maybe<JsmChatCreateWebConversationMessage>;
|
|
56800
56925
|
};
|
|
56801
56926
|
export declare type JsmChatCreateWebConversationMessage = {
|
|
56802
56927
|
__typename?: 'JsmChatCreateWebConversationMessage';
|
|
@@ -59711,6 +59836,9 @@ export declare enum MarketplaceStoreEditionType {
|
|
|
59711
59836
|
Advanced = "ADVANCED",
|
|
59712
59837
|
Standard = "STANDARD"
|
|
59713
59838
|
}
|
|
59839
|
+
export declare type MarketplaceStoreEditionsByAppKeyInput = {
|
|
59840
|
+
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
59841
|
+
};
|
|
59714
59842
|
export declare type MarketplaceStoreEditionsInput = {
|
|
59715
59843
|
appId?: InputMaybe<Scalars['String']['input']>;
|
|
59716
59844
|
};
|
|
@@ -59954,6 +60082,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
59954
60082
|
collection: MarketplaceStoreCollectionResponse;
|
|
59955
60083
|
currentUser: MarketplaceStoreCurrentUserResponse;
|
|
59956
60084
|
editions: Array<MarketplaceStoreEdition>;
|
|
60085
|
+
editionsByAppKey: Array<MarketplaceStoreEdition>;
|
|
59957
60086
|
geoip: MarketplaceStoreGeoIpResponse;
|
|
59958
60087
|
homePage: MarketplaceStoreHomePageResponse;
|
|
59959
60088
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
@@ -59978,6 +60107,9 @@ export declare type MarketplaceStoreQueryApiCollectionArgs = {
|
|
|
59978
60107
|
export declare type MarketplaceStoreQueryApiEditionsArgs = {
|
|
59979
60108
|
product: MarketplaceStoreEditionsInput;
|
|
59980
60109
|
};
|
|
60110
|
+
export declare type MarketplaceStoreQueryApiEditionsByAppKeyArgs = {
|
|
60111
|
+
product: MarketplaceStoreEditionsByAppKeyInput;
|
|
60112
|
+
};
|
|
59981
60113
|
export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
59982
60114
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
59983
60115
|
};
|
|
@@ -61681,6 +61813,7 @@ export declare type Mutation = {
|
|
|
61681
61813
|
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
61682
61814
|
createColumn?: Maybe<CreateColumnOutput>;
|
|
61683
61815
|
createCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
61816
|
+
createCustomFilterV2?: Maybe<CustomFilterCreateOutputV2>;
|
|
61684
61817
|
createDevOpsService?: Maybe<CreateDevOpsServicePayload>;
|
|
61685
61818
|
createDevOpsServiceAndJiraProjectRelationship?: Maybe<CreateDevOpsServiceAndJiraProjectRelationshipPayload>;
|
|
61686
61819
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -61800,6 +61933,7 @@ export declare type Mutation = {
|
|
|
61800
61933
|
updateAppDetails?: Maybe<UpdateAppDetailsResponse>;
|
|
61801
61934
|
updateAtlassianOAuthClient?: Maybe<UpdateAtlassianOAuthClientResponse>;
|
|
61802
61935
|
updateCustomFilter?: Maybe<CustomFilterCreateOutput>;
|
|
61936
|
+
updateCustomFilterV2?: Maybe<CustomFilterCreateOutputV2>;
|
|
61803
61937
|
updateDevOpsContainerRelationshipEntityProperties?: Maybe<UpdateDevOpsContainerRelationshipEntityPropertiesPayload>;
|
|
61804
61938
|
updateDevOpsService?: Maybe<UpdateDevOpsServicePayload>;
|
|
61805
61939
|
updateDevOpsServiceAndJiraProjectRelationship?: Maybe<UpdateDevOpsServiceAndJiraProjectRelationshipPayload>;
|
|
@@ -62380,6 +62514,9 @@ export declare type MutationCreateColumnArgs = {
|
|
|
62380
62514
|
export declare type MutationCreateCustomFilterArgs = {
|
|
62381
62515
|
input?: InputMaybe<CreateCustomFilterInput>;
|
|
62382
62516
|
};
|
|
62517
|
+
export declare type MutationCreateCustomFilterV2Args = {
|
|
62518
|
+
input?: InputMaybe<CreateCustomFilterInput>;
|
|
62519
|
+
};
|
|
62383
62520
|
export declare type MutationCreateDevOpsServiceArgs = {
|
|
62384
62521
|
input: CreateDevOpsServiceInput;
|
|
62385
62522
|
};
|
|
@@ -62681,6 +62818,9 @@ export declare type MutationUpdateAtlassianOAuthClientArgs = {
|
|
|
62681
62818
|
export declare type MutationUpdateCustomFilterArgs = {
|
|
62682
62819
|
input?: InputMaybe<UpdateCustomFilterInput>;
|
|
62683
62820
|
};
|
|
62821
|
+
export declare type MutationUpdateCustomFilterV2Args = {
|
|
62822
|
+
input?: InputMaybe<UpdateCustomFilterInput>;
|
|
62823
|
+
};
|
|
62684
62824
|
export declare type MutationUpdateDevOpsContainerRelationshipEntityPropertiesArgs = {
|
|
62685
62825
|
input: UpdateDevOpsContainerRelationshipEntityPropertiesInput;
|
|
62686
62826
|
};
|
|
@@ -64885,7 +65025,7 @@ export declare type QueryAppLogsWithMetaDataArgs = {
|
|
|
64885
65025
|
queryStartTime: Scalars['String']['input'];
|
|
64886
65026
|
};
|
|
64887
65027
|
export declare type QueryAppStorage_SqlDatabaseArgs = {
|
|
64888
|
-
input
|
|
65028
|
+
input: AppStorageSqlDatabaseInput;
|
|
64889
65029
|
};
|
|
64890
65030
|
export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
64891
65031
|
contextAri: Scalars['ID']['input'];
|
|
@@ -66415,7 +66555,7 @@ export declare type RadarAriFieldValue = {
|
|
|
66415
66555
|
__typename?: 'RadarAriFieldValue';
|
|
66416
66556
|
value?: Maybe<RadarAriObject>;
|
|
66417
66557
|
};
|
|
66418
|
-
export declare type RadarAriObject = MercuryFocusArea | RadarPosition;
|
|
66558
|
+
export declare type RadarAriObject = MercuryFocusArea | RadarPosition | RadarWorker;
|
|
66419
66559
|
export declare type RadarBooleanFieldValue = {
|
|
66420
66560
|
__typename?: 'RadarBooleanFieldValue';
|
|
66421
66561
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -66438,6 +66578,7 @@ export declare type RadarEdge = {
|
|
|
66438
66578
|
cursor: Scalars['String']['output'];
|
|
66439
66579
|
};
|
|
66440
66580
|
export declare type RadarEntity = {
|
|
66581
|
+
entityId: Scalars['ID']['output'];
|
|
66441
66582
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
66442
66583
|
id: Scalars['ID']['output'];
|
|
66443
66584
|
type?: Maybe<RadarEntityType>;
|
|
@@ -66510,7 +66651,7 @@ export declare enum RadarFilterPlurality {
|
|
|
66510
66651
|
Or = "OR"
|
|
66511
66652
|
}
|
|
66512
66653
|
export declare type RadarFocusAreaMappingsInput = {
|
|
66513
|
-
focusAreaAri
|
|
66654
|
+
focusAreaAri?: InputMaybe<Scalars['ID']['input']>;
|
|
66514
66655
|
positionAri: Scalars['ID']['input'];
|
|
66515
66656
|
};
|
|
66516
66657
|
export declare type RadarGroupMetrics = {
|
|
@@ -66543,9 +66684,12 @@ export declare type RadarNumericFieldValue = {
|
|
|
66543
66684
|
};
|
|
66544
66685
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
66545
66686
|
__typename?: 'RadarPosition';
|
|
66687
|
+
entityId: Scalars['ID']['output'];
|
|
66546
66688
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
66547
66689
|
id: Scalars['ID']['output'];
|
|
66690
|
+
reportingLine?: Maybe<Array<RadarPosition>>;
|
|
66548
66691
|
type?: Maybe<RadarEntityType>;
|
|
66692
|
+
worker?: Maybe<RadarWorker>;
|
|
66549
66693
|
};
|
|
66550
66694
|
export declare type RadarPositionConnection = RadarConnection & {
|
|
66551
66695
|
__typename?: 'RadarPositionConnection';
|
|
@@ -66593,8 +66737,10 @@ export declare type RadarUrlFieldValue = {
|
|
|
66593
66737
|
};
|
|
66594
66738
|
export declare type RadarWorker = Node & RadarEntity & {
|
|
66595
66739
|
__typename?: 'RadarWorker';
|
|
66740
|
+
entityId: Scalars['ID']['output'];
|
|
66596
66741
|
fieldValues: Array<RadarFieldValueIdPair>;
|
|
66597
66742
|
id: Scalars['ID']['output'];
|
|
66743
|
+
preferredName?: Maybe<Scalars['String']['output']>;
|
|
66598
66744
|
type: RadarEntityType;
|
|
66599
66745
|
};
|
|
66600
66746
|
export declare type RadarWorkerConnection = RadarConnection & {
|
|
@@ -68074,6 +68220,17 @@ export declare type SearchExternalFilter = {
|
|
|
68074
68220
|
contentFormats?: InputMaybe<Array<InputMaybe<SearchExternalContentFormatFilter>>>;
|
|
68075
68221
|
depth?: InputMaybe<Array<InputMaybe<SearchExternalDepthFilter>>>;
|
|
68076
68222
|
};
|
|
68223
|
+
export declare type SearchFederatedEmailEntity = {
|
|
68224
|
+
__typename?: 'SearchFederatedEmailEntity';
|
|
68225
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
68226
|
+
sender?: Maybe<SearchFederatedEmailUser>;
|
|
68227
|
+
};
|
|
68228
|
+
export declare type SearchFederatedEmailUser = {
|
|
68229
|
+
__typename?: 'SearchFederatedEmailUser';
|
|
68230
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
68231
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
68232
|
+
};
|
|
68233
|
+
export declare type SearchFederatedEntity = SearchFederatedEmailEntity;
|
|
68077
68234
|
export declare type SearchFilterInput = {
|
|
68078
68235
|
commonFilters?: InputMaybe<SearchCommonFilter>;
|
|
68079
68236
|
confluenceFilters?: InputMaybe<SearchConfluenceFilter>;
|
|
@@ -68235,7 +68392,20 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
68235
68392
|
type: SearchResultType;
|
|
68236
68393
|
url: Scalars['URL']['output'];
|
|
68237
68394
|
};
|
|
68238
|
-
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
68395
|
+
export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
|
|
68396
|
+
export declare type SearchResultFederated = SearchResult & {
|
|
68397
|
+
__typename?: 'SearchResultFederated';
|
|
68398
|
+
description: Scalars['String']['output'];
|
|
68399
|
+
entity?: Maybe<SearchFederatedEntity>;
|
|
68400
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
68401
|
+
id: Scalars['ID']['output'];
|
|
68402
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
68403
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
68404
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
68405
|
+
title: Scalars['String']['output'];
|
|
68406
|
+
type: SearchResultType;
|
|
68407
|
+
url: Scalars['URL']['output'];
|
|
68408
|
+
};
|
|
68239
68409
|
export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
|
|
68240
68410
|
__typename?: 'SearchResultGoogleDocument';
|
|
68241
68411
|
bodyText: Scalars['String']['output'];
|
|
@@ -68549,9 +68719,16 @@ export declare type SearchThirdPartyFilter = {
|
|
|
68549
68719
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
68550
68720
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
68551
68721
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
68722
|
+
thirdPartyProducts?: InputMaybe<Array<SearchThirdPartyProduct>>;
|
|
68552
68723
|
thirdPartyTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
68553
68724
|
titleMatchOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
68554
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
|
+
};
|
|
68555
68732
|
export declare enum SearchThirdPartyRangeField {
|
|
68556
68733
|
Created = "CREATED",
|
|
68557
68734
|
Lastmodified = "LASTMODIFIED"
|
|
@@ -70521,6 +70698,15 @@ export declare type StartSprintInput = {
|
|
|
70521
70698
|
sprintId: Scalars['ID']['input'];
|
|
70522
70699
|
startDate: Scalars['String']['input'];
|
|
70523
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
|
+
};
|
|
70524
70710
|
export declare type Storage = {
|
|
70525
70711
|
__typename?: 'Storage';
|
|
70526
70712
|
hosted?: Maybe<HostedStorage>;
|
|
@@ -72321,6 +72507,7 @@ export declare type TrelloAttachment = {
|
|
|
72321
72507
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
72322
72508
|
edgeColor?: Maybe<Scalars['String']['output']>;
|
|
72323
72509
|
fileName?: Maybe<Scalars['String']['output']>;
|
|
72510
|
+
id: Scalars['ID']['output'];
|
|
72324
72511
|
isUpload?: Maybe<Scalars['Boolean']['output']>;
|
|
72325
72512
|
mimeType?: Maybe<Scalars['String']['output']>;
|
|
72326
72513
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -73365,6 +73552,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
73365
73552
|
createdByTrello?: Maybe<Scalars['Boolean']['output']>;
|
|
73366
73553
|
description?: Maybe<Scalars['String']['output']>;
|
|
73367
73554
|
endAt?: Maybe<Scalars['DateTime']['output']>;
|
|
73555
|
+
eventType?: Maybe<TrelloPlannerCalendarEventType>;
|
|
73368
73556
|
id: Scalars['ID']['output'];
|
|
73369
73557
|
link?: Maybe<Scalars['String']['output']>;
|
|
73370
73558
|
parentEventId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -73380,6 +73568,7 @@ export declare type TrelloPlannerCalendarEventCardsArgs = {
|
|
|
73380
73568
|
};
|
|
73381
73569
|
export declare type TrelloPlannerCalendarEventCard = Node & {
|
|
73382
73570
|
__typename?: 'TrelloPlannerCalendarEventCard';
|
|
73571
|
+
card?: Maybe<TrelloCard>;
|
|
73383
73572
|
cardId?: Maybe<Scalars['ID']['output']>;
|
|
73384
73573
|
id: Scalars['ID']['output'];
|
|
73385
73574
|
position?: Maybe<Scalars['Float']['output']>;
|
|
@@ -73417,6 +73606,11 @@ export declare enum TrelloPlannerCalendarEventStatus {
|
|
|
73417
73606
|
NeedsAction = "NEEDS_ACTION",
|
|
73418
73607
|
Tentative = "TENTATIVE"
|
|
73419
73608
|
}
|
|
73609
|
+
export declare enum TrelloPlannerCalendarEventType {
|
|
73610
|
+
Default = "DEFAULT",
|
|
73611
|
+
FocusTime = "FOCUS_TIME",
|
|
73612
|
+
OutOfOffice = "OUT_OF_OFFICE"
|
|
73613
|
+
}
|
|
73420
73614
|
export declare enum TrelloPlannerCalendarEventVisibility {
|
|
73421
73615
|
Default = "DEFAULT",
|
|
73422
73616
|
Private = "PRIVATE",
|
|
@@ -73509,6 +73703,7 @@ export declare type TrelloProviderCalendarInterface = {
|
|
|
73509
73703
|
};
|
|
73510
73704
|
export declare type TrelloQueryApi = {
|
|
73511
73705
|
__typename?: 'TrelloQueryApi';
|
|
73706
|
+
attachmentsById?: Maybe<Array<Maybe<TrelloAttachment>>>;
|
|
73512
73707
|
board?: Maybe<TrelloBoard>;
|
|
73513
73708
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
73514
73709
|
card?: Maybe<TrelloCard>;
|
|
@@ -73516,7 +73711,9 @@ export declare type TrelloQueryApi = {
|
|
|
73516
73711
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
73517
73712
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
73518
73713
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
73714
|
+
labelsById?: Maybe<Array<Maybe<TrelloLabel>>>;
|
|
73519
73715
|
list?: Maybe<TrelloList>;
|
|
73716
|
+
listsById?: Maybe<Array<Maybe<TrelloList>>>;
|
|
73520
73717
|
member?: Maybe<TrelloMember>;
|
|
73521
73718
|
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
73522
73719
|
plannerByWorkspaceId?: Maybe<TrelloPlanner>;
|
|
@@ -73529,8 +73726,12 @@ export declare type TrelloQueryApi = {
|
|
|
73529
73726
|
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
|
|
73530
73727
|
templateGallery?: Maybe<TrelloTemplateGalleryConnection>;
|
|
73531
73728
|
templateLanguages?: Maybe<Array<TrelloTemplateGalleryLanguage>>;
|
|
73729
|
+
usersById?: Maybe<Array<Maybe<TrelloMember>>>;
|
|
73532
73730
|
workspace?: Maybe<TrelloWorkspace>;
|
|
73533
73731
|
};
|
|
73732
|
+
export declare type TrelloQueryApiAttachmentsByIdArgs = {
|
|
73733
|
+
ids: Array<Scalars['ID']['input']>;
|
|
73734
|
+
};
|
|
73534
73735
|
export declare type TrelloQueryApiBoardArgs = {
|
|
73535
73736
|
id: Scalars['ID']['input'];
|
|
73536
73737
|
};
|
|
@@ -73552,9 +73753,15 @@ export declare type TrelloQueryApiEnabledPlannerCalendarsByAccountIdArgs = {
|
|
|
73552
73753
|
export declare type TrelloQueryApiEnterpriseArgs = {
|
|
73553
73754
|
id: Scalars['ID']['input'];
|
|
73554
73755
|
};
|
|
73756
|
+
export declare type TrelloQueryApiLabelsByIdArgs = {
|
|
73757
|
+
ids: Array<Scalars['ID']['input']>;
|
|
73758
|
+
};
|
|
73555
73759
|
export declare type TrelloQueryApiListArgs = {
|
|
73556
73760
|
id: Scalars['ID']['input'];
|
|
73557
73761
|
};
|
|
73762
|
+
export declare type TrelloQueryApiListsByIdArgs = {
|
|
73763
|
+
ids: Array<Scalars['ID']['input']>;
|
|
73764
|
+
};
|
|
73558
73765
|
export declare type TrelloQueryApiMemberArgs = {
|
|
73559
73766
|
id: Scalars['ID']['input'];
|
|
73560
73767
|
};
|
|
@@ -73601,6 +73808,9 @@ export declare type TrelloQueryApiTemplateGalleryArgs = {
|
|
|
73601
73808
|
filter?: InputMaybe<TrelloTemplateGalleryFilterInput>;
|
|
73602
73809
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
73603
73810
|
};
|
|
73811
|
+
export declare type TrelloQueryApiUsersByIdArgs = {
|
|
73812
|
+
ids: Array<Scalars['ID']['input']>;
|
|
73813
|
+
};
|
|
73604
73814
|
export declare type TrelloQueryApiWorkspaceArgs = {
|
|
73605
73815
|
id: Scalars['ID']['input'];
|
|
73606
73816
|
};
|
|
@@ -73660,6 +73870,7 @@ export declare type TrelloSubscriptionApiCardsByIdArgs = {
|
|
|
73660
73870
|
ids: Array<Scalars['ID']['input']>;
|
|
73661
73871
|
};
|
|
73662
73872
|
export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
73873
|
+
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
73663
73874
|
id: Scalars['ID']['input'];
|
|
73664
73875
|
};
|
|
73665
73876
|
export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
@@ -75735,6 +75946,7 @@ export declare type WebTriggerUrlInput = {
|
|
|
75735
75946
|
export declare type WorkSuggestions = {
|
|
75736
75947
|
__typename?: 'WorkSuggestions';
|
|
75737
75948
|
codeTabSuggestions: WorkSuggestionsCodeTabTaskConnection;
|
|
75949
|
+
suggestionsByIssues?: Maybe<WorkSuggestionsByIssuesResponse>;
|
|
75738
75950
|
suggestionsByProjects?: Maybe<WorkSuggestionsByProjectsResponse>;
|
|
75739
75951
|
userProfileByCloudId?: Maybe<WorkSuggestionsUserProfile>;
|
|
75740
75952
|
workSuggestionsByContextAri: WorkSuggestionsConnection;
|
|
@@ -75745,6 +75957,10 @@ export declare type WorkSuggestionsCodeTabSuggestionsArgs = {
|
|
|
75745
75957
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
75746
75958
|
projectAri: Scalars['ID']['input'];
|
|
75747
75959
|
};
|
|
75960
|
+
export declare type WorkSuggestionsSuggestionsByIssuesArgs = {
|
|
75961
|
+
cloudId: Scalars['ID']['input'];
|
|
75962
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
75963
|
+
};
|
|
75748
75964
|
export declare type WorkSuggestionsSuggestionsByProjectsArgs = {
|
|
75749
75965
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
75750
75966
|
cloudId: Scalars['ID']['input'];
|
|
@@ -75854,6 +76070,12 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
|
|
|
75854
76070
|
title: Scalars['String']['output'];
|
|
75855
76071
|
url: Scalars['String']['output'];
|
|
75856
76072
|
};
|
|
76073
|
+
export declare type WorkSuggestionsByIssuesResponse = {
|
|
76074
|
+
__typename?: 'WorkSuggestionsByIssuesResponse';
|
|
76075
|
+
draftPRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestDraftTask>>;
|
|
76076
|
+
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
76077
|
+
recentPullRequests?: Maybe<WorkSuggestionsPullRequestSuggestionsResponse>;
|
|
76078
|
+
};
|
|
75857
76079
|
export declare type WorkSuggestionsByProjectsResponse = {
|
|
75858
76080
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
75859
76081
|
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
@@ -76059,12 +76281,16 @@ export declare type WorkSuggestionsJiraPriority = {
|
|
|
76059
76281
|
};
|
|
76060
76282
|
export declare type WorkSuggestionsMutation = {
|
|
76061
76283
|
__typename?: 'WorkSuggestionsMutation';
|
|
76284
|
+
nudgePullRequestReviewers?: Maybe<WorkSuggestionsNudgePrActionPayload>;
|
|
76062
76285
|
purgeUserActionStateForCurrentUser?: Maybe<WorkSuggestionsActionPayload>;
|
|
76063
76286
|
purgeUserProfileForCurrentUser?: Maybe<WorkSuggestionsPurgeUserProfilePayload>;
|
|
76064
76287
|
removeTask?: Maybe<WorkSuggestionsActionPayload>;
|
|
76065
76288
|
saveUserProfile?: Maybe<WorkSuggestionsSaveUserProfilePayload>;
|
|
76066
76289
|
snoozeTask?: Maybe<WorkSuggestionsActionPayload>;
|
|
76067
76290
|
};
|
|
76291
|
+
export declare type WorkSuggestionsMutationNudgePullRequestReviewersArgs = {
|
|
76292
|
+
input: WorkSuggestionsNudgePrActionInput;
|
|
76293
|
+
};
|
|
76068
76294
|
export declare type WorkSuggestionsMutationPurgeUserActionStateForCurrentUserArgs = {
|
|
76069
76295
|
input: WorkSuggestionsPurgeUserActionStateInput;
|
|
76070
76296
|
};
|
|
@@ -76085,6 +76311,16 @@ export declare type WorkSuggestionsMutationErrorExtension = MutationErrorExtensi
|
|
|
76085
76311
|
errorType?: Maybe<Scalars['String']['output']>;
|
|
76086
76312
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
76087
76313
|
};
|
|
76314
|
+
export declare type WorkSuggestionsNudgePrActionInput = {
|
|
76315
|
+
cloudId: Scalars['ID']['input'];
|
|
76316
|
+
taskId: Scalars['String']['input'];
|
|
76317
|
+
};
|
|
76318
|
+
export declare type WorkSuggestionsNudgePrActionPayload = Payload & {
|
|
76319
|
+
__typename?: 'WorkSuggestionsNudgePRActionPayload';
|
|
76320
|
+
commentId?: Maybe<Scalars['Int']['output']>;
|
|
76321
|
+
errors?: Maybe<Array<MutationError>>;
|
|
76322
|
+
success: Scalars['Boolean']['output'];
|
|
76323
|
+
};
|
|
76088
76324
|
export declare type WorkSuggestionsOrderScore = {
|
|
76089
76325
|
__typename?: 'WorkSuggestionsOrderScore';
|
|
76090
76326
|
byTaskType?: Maybe<WorkSuggestionsOrderScores>;
|
|
@@ -76123,9 +76359,12 @@ export declare type WorkSuggestionsPrMergeableTask = WorkSuggestionsPeriscopeTas
|
|
|
76123
76359
|
commentCount: Scalars['Int']['output'];
|
|
76124
76360
|
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
76125
76361
|
id: Scalars['String']['output'];
|
|
76362
|
+
isMergeActionEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
76126
76363
|
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
76127
76364
|
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
76128
76365
|
providerName?: Maybe<Scalars['String']['output']>;
|
|
76366
|
+
pullRequestAri?: Maybe<Scalars['String']['output']>;
|
|
76367
|
+
pullRequestInternalId?: Maybe<Scalars['String']['output']>;
|
|
76129
76368
|
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
76130
76369
|
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
76131
76370
|
title: Scalars['String']['output'];
|
|
@@ -76162,6 +76401,7 @@ export declare type WorkSuggestionsPullRequestInactiveTask = WorkSuggestionsComm
|
|
|
76162
76401
|
__typename?: 'WorkSuggestionsPullRequestInactiveTask';
|
|
76163
76402
|
approvalsCount: Scalars['Int']['output'];
|
|
76164
76403
|
author?: Maybe<WorkSuggestionsUserDetail>;
|
|
76404
|
+
canNudgeReviewers?: Maybe<Scalars['Boolean']['output']>;
|
|
76165
76405
|
commentCount: Scalars['Int']['output'];
|
|
76166
76406
|
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
76167
76407
|
id: Scalars['String']['output'];
|