@forge/cli-shared 5.4.0-next.0-experimental-9332276 → 5.4.0-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 +12 -3
- package/out/graphql/graphql-types.d.ts +318 -24
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +43 -5
- package/package.json +2 -2
|
@@ -1391,7 +1391,9 @@ export declare type AppUser = User & {
|
|
|
1391
1391
|
__typename?: 'AppUser';
|
|
1392
1392
|
accountId: Scalars['ID']['output'];
|
|
1393
1393
|
accountStatus: AccountStatus;
|
|
1394
|
+
appType?: Maybe<Scalars['String']['output']>;
|
|
1394
1395
|
canonicalAccountId: Scalars['ID']['output'];
|
|
1396
|
+
characteristics?: Maybe<Scalars['JSON']['output']>;
|
|
1395
1397
|
id: Scalars['ID']['output'];
|
|
1396
1398
|
name: Scalars['String']['output'];
|
|
1397
1399
|
picture: Scalars['URL']['output'];
|
|
@@ -4462,6 +4464,7 @@ export declare type CompassCustomPermissionConfigs = {
|
|
|
4462
4464
|
deleteCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4463
4465
|
editCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4464
4466
|
modifyScorecard?: Maybe<CompassCustomPermissionConfig>;
|
|
4467
|
+
preset?: Maybe<Scalars['String']['output']>;
|
|
4465
4468
|
viewCustomFieldDefinitions?: Maybe<CompassCustomPermissionConfig>;
|
|
4466
4469
|
};
|
|
4467
4470
|
export declare type CompassCustomPermissionConfigsResult = CompassCustomPermissionConfigs | QueryError;
|
|
@@ -4868,7 +4871,9 @@ export declare type CompassFreeformUserDefinedParameter = CompassUserDefinedPara
|
|
|
4868
4871
|
};
|
|
4869
4872
|
export declare type CompassGlobalPermissions = {
|
|
4870
4873
|
__typename?: 'CompassGlobalPermissions';
|
|
4874
|
+
createIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
4871
4875
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
4876
|
+
deleteIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
4872
4877
|
viewCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
4873
4878
|
};
|
|
4874
4879
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
@@ -15589,6 +15594,7 @@ export declare type CustomerServiceCustomDetailUpdateTypeInput = {
|
|
|
15589
15594
|
};
|
|
15590
15595
|
export declare type CustomerServiceCustomDetailValue = Node & {
|
|
15591
15596
|
__typename?: 'CustomerServiceCustomDetailValue';
|
|
15597
|
+
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
15592
15598
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
15593
15599
|
id: Scalars['ID']['output'];
|
|
15594
15600
|
name: Scalars['String']['output'];
|
|
@@ -19032,6 +19038,7 @@ export declare type ExternalDocument = {
|
|
|
19032
19038
|
__typename?: 'ExternalDocument';
|
|
19033
19039
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19034
19040
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19041
|
+
content?: Maybe<ExternalLargeContent>;
|
|
19035
19042
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19036
19043
|
createdBy?: Maybe<ExternalUser>;
|
|
19037
19044
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19042,6 +19049,7 @@ export declare type ExternalDocument = {
|
|
|
19042
19049
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19043
19050
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19044
19051
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19052
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19045
19053
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19046
19054
|
truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
|
|
19047
19055
|
type?: Maybe<ExternalDocumentType>;
|
|
@@ -19158,6 +19166,11 @@ export declare type ExternalFileInfo = {
|
|
|
19158
19166
|
fileCount?: Maybe<Scalars['Int']['output']>;
|
|
19159
19167
|
files?: Maybe<Array<Maybe<ExternalFile>>>;
|
|
19160
19168
|
};
|
|
19169
|
+
export declare type ExternalLargeContent = {
|
|
19170
|
+
__typename?: 'ExternalLargeContent';
|
|
19171
|
+
asText?: Maybe<Scalars['String']['output']>;
|
|
19172
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19173
|
+
};
|
|
19161
19174
|
export declare enum ExternalMembershipType {
|
|
19162
19175
|
Private = "PRIVATE",
|
|
19163
19176
|
Public = "PUBLIC",
|
|
@@ -19166,16 +19179,20 @@ export declare enum ExternalMembershipType {
|
|
|
19166
19179
|
export declare type ExternalMessage = {
|
|
19167
19180
|
__typename?: 'ExternalMessage';
|
|
19168
19181
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
19182
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19169
19183
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19170
19184
|
createdBy?: Maybe<ExternalUser>;
|
|
19185
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19171
19186
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
19172
19187
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
19173
19188
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
19174
19189
|
id: Scalars['ID']['output'];
|
|
19175
19190
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
19191
|
+
largeContentDescription?: Maybe<ExternalLargeContent>;
|
|
19176
19192
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19177
19193
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19178
19194
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19195
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19179
19196
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19180
19197
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19181
19198
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -35856,6 +35873,8 @@ export declare enum HelpLayoutConnectElementType {
|
|
|
35856
35873
|
SubheaderPanels = "subheaderPanels"
|
|
35857
35874
|
}
|
|
35858
35875
|
export declare type HelpLayoutConnectInput = {
|
|
35876
|
+
pages: HelpLayoutConnectElementPages;
|
|
35877
|
+
type: HelpLayoutConnectElementType;
|
|
35859
35878
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35860
35879
|
};
|
|
35861
35880
|
export declare type HelpLayoutCreatePayload = Payload & {
|
|
@@ -35947,6 +35966,8 @@ export declare enum HelpLayoutForgeElementType {
|
|
|
35947
35966
|
HeaderAndSubheader = "HEADER_AND_SUBHEADER"
|
|
35948
35967
|
}
|
|
35949
35968
|
export declare type HelpLayoutForgeInput = {
|
|
35969
|
+
pages: HelpLayoutForgeElementPages;
|
|
35970
|
+
type: HelpLayoutForgeElementType;
|
|
35950
35971
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35951
35972
|
};
|
|
35952
35973
|
export declare type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
@@ -36233,6 +36254,7 @@ export declare type HelpLayoutTopic = {
|
|
|
36233
36254
|
__typename?: 'HelpLayoutTopic';
|
|
36234
36255
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
36235
36256
|
items?: Maybe<Array<HelpLayoutTopicItem>>;
|
|
36257
|
+
properties?: Maybe<Scalars['String']['output']>;
|
|
36236
36258
|
topicId?: Maybe<Scalars['String']['output']>;
|
|
36237
36259
|
topicName?: Maybe<Scalars['String']['output']>;
|
|
36238
36260
|
};
|
|
@@ -38481,7 +38503,8 @@ export declare enum JiraBackgroundType {
|
|
|
38481
38503
|
Attachment = "ATTACHMENT",
|
|
38482
38504
|
Color = "COLOR",
|
|
38483
38505
|
Custom = "CUSTOM",
|
|
38484
|
-
Gradient = "GRADIENT"
|
|
38506
|
+
Gradient = "GRADIENT",
|
|
38507
|
+
Unsplash = "UNSPLASH"
|
|
38485
38508
|
}
|
|
38486
38509
|
export declare type JiraBackgroundUploadToken = {
|
|
38487
38510
|
__typename?: 'JiraBackgroundUploadToken';
|
|
@@ -39802,6 +39825,16 @@ export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
|
39802
39825
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
39803
39826
|
success: Scalars['Boolean']['output'];
|
|
39804
39827
|
};
|
|
39828
|
+
export declare type JiraCreateAttachmentBackgroundInput = {
|
|
39829
|
+
entityId: Scalars['ID']['input'];
|
|
39830
|
+
mediaApiFileId: Scalars['String']['input'];
|
|
39831
|
+
};
|
|
39832
|
+
export declare type JiraCreateAttachmentBackgroundPayload = Payload & {
|
|
39833
|
+
__typename?: 'JiraCreateAttachmentBackgroundPayload';
|
|
39834
|
+
background?: Maybe<JiraBackground>;
|
|
39835
|
+
errors?: Maybe<Array<MutationError>>;
|
|
39836
|
+
success: Scalars['Boolean']['output'];
|
|
39837
|
+
};
|
|
39805
39838
|
export declare type JiraCreateBoardFieldInput = {
|
|
39806
39839
|
issueTypes?: InputMaybe<Array<JiraIssueTypeInput>>;
|
|
39807
39840
|
labels?: InputMaybe<Array<JiraLabelsInput>>;
|
|
@@ -40348,6 +40381,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
40348
40381
|
dismissBitbucketPendingAccessRequestBanner?: Maybe<JiraDismissBitbucketPendingAccessRequestBannerPayload>;
|
|
40349
40382
|
dismissDevOpsIssuePanelBanner?: Maybe<JiraDismissDevOpsIssuePanelBannerPayload>;
|
|
40350
40383
|
dismissInContextConfigPrompt?: Maybe<JiraDismissInContextConfigPromptPayload>;
|
|
40384
|
+
modifyAutodevCode?: Maybe<JiraAutodevBasicPayload>;
|
|
40351
40385
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
40352
40386
|
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
40353
40387
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
@@ -40416,6 +40450,11 @@ export declare type JiraDevOpsMutationDismissInContextConfigPromptArgs = {
|
|
|
40416
40450
|
cloudId: Scalars['ID']['input'];
|
|
40417
40451
|
input: JiraDismissInContextConfigPromptInput;
|
|
40418
40452
|
};
|
|
40453
|
+
export declare type JiraDevOpsMutationModifyAutodevCodeArgs = {
|
|
40454
|
+
issueAri: Scalars['ID']['input'];
|
|
40455
|
+
jobId: Scalars['ID']['input'];
|
|
40456
|
+
prompt: Scalars['String']['input'];
|
|
40457
|
+
};
|
|
40419
40458
|
export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateArgs = {
|
|
40420
40459
|
input: JiraOptoutDevOpsIssuePanelNotConnectedInput;
|
|
40421
40460
|
};
|
|
@@ -43872,11 +43911,13 @@ export declare type JiraMutation = {
|
|
|
43872
43911
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
43873
43912
|
answerApprovalDecision?: Maybe<JiraAnswerApprovalDecisionPayload>;
|
|
43874
43913
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
43914
|
+
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
43875
43915
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
43876
43916
|
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
43877
43917
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
43878
43918
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
43879
43919
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
43920
|
+
createAttachmentBackground?: Maybe<JiraCreateAttachmentBackgroundPayload>;
|
|
43880
43921
|
createBoard?: Maybe<JiraCreateBoardPayload>;
|
|
43881
43922
|
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
43882
43923
|
createCustomBackground?: Maybe<JiraCreateCustomBackgroundPayload>;
|
|
@@ -43985,6 +44026,7 @@ export declare type JiraMutation = {
|
|
|
43985
44026
|
updateParentField?: Maybe<JiraParentFieldPayload>;
|
|
43986
44027
|
updatePeopleField?: Maybe<JiraPeopleFieldPayload>;
|
|
43987
44028
|
updatePriorityField?: Maybe<JiraPriorityFieldPayload>;
|
|
44029
|
+
updateProjectAvatar?: Maybe<JiraProjectUpdateAvatarMutationPayload>;
|
|
43988
44030
|
updateProjectField?: Maybe<JiraProjectFieldPayload>;
|
|
43989
44031
|
updateProjectName?: Maybe<JiraProjectUpdateNameMutationPayload>;
|
|
43990
44032
|
updateProjectNotificationPreferences?: Maybe<JiraUpdateProjectNotificationPreferencesPayload>;
|
|
@@ -44043,6 +44085,9 @@ export declare type JiraMutationAnswerApprovalDecisionArgs = {
|
|
|
44043
44085
|
export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
44044
44086
|
input: JiraAssignRelatedWorkInput;
|
|
44045
44087
|
};
|
|
44088
|
+
export declare type JiraMutationAttributeUnsplashImageArgs = {
|
|
44089
|
+
input: JiraUnsplashAttributionInput;
|
|
44090
|
+
};
|
|
44046
44091
|
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
44047
44092
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
44048
44093
|
};
|
|
@@ -44059,6 +44104,9 @@ export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
|
44059
44104
|
cloudId: Scalars['ID']['input'];
|
|
44060
44105
|
input: JiraCreateApproverListFieldInput;
|
|
44061
44106
|
};
|
|
44107
|
+
export declare type JiraMutationCreateAttachmentBackgroundArgs = {
|
|
44108
|
+
input: JiraCreateAttachmentBackgroundInput;
|
|
44109
|
+
};
|
|
44062
44110
|
export declare type JiraMutationCreateBoardArgs = {
|
|
44063
44111
|
cloudId: Scalars['ID']['input'];
|
|
44064
44112
|
input: JiraCreateBoardInput;
|
|
@@ -44406,6 +44454,9 @@ export declare type JiraMutationUpdatePeopleFieldArgs = {
|
|
|
44406
44454
|
export declare type JiraMutationUpdatePriorityFieldArgs = {
|
|
44407
44455
|
input: JiraUpdatePriorityFieldInput;
|
|
44408
44456
|
};
|
|
44457
|
+
export declare type JiraMutationUpdateProjectAvatarArgs = {
|
|
44458
|
+
input: JiraProjectUpdateAvatarInput;
|
|
44459
|
+
};
|
|
44409
44460
|
export declare type JiraMutationUpdateProjectFieldArgs = {
|
|
44410
44461
|
input: JiraUpdateProjectFieldInput;
|
|
44411
44462
|
};
|
|
@@ -46184,6 +46235,17 @@ export declare type JiraProjectTypeDetailsEdge = {
|
|
|
46184
46235
|
cursor: Scalars['String']['output'];
|
|
46185
46236
|
node?: Maybe<JiraProjectTypeDetails>;
|
|
46186
46237
|
};
|
|
46238
|
+
export declare type JiraProjectUpdateAvatarInput = {
|
|
46239
|
+
avatarId: Scalars['ID']['input'];
|
|
46240
|
+
cloudId: Scalars['ID']['input'];
|
|
46241
|
+
projectIdOrKey: Scalars['String']['input'];
|
|
46242
|
+
};
|
|
46243
|
+
export declare type JiraProjectUpdateAvatarMutationPayload = Payload & {
|
|
46244
|
+
__typename?: 'JiraProjectUpdateAvatarMutationPayload';
|
|
46245
|
+
errors?: Maybe<Array<MutationError>>;
|
|
46246
|
+
project?: Maybe<JiraProject>;
|
|
46247
|
+
success: Scalars['Boolean']['output'];
|
|
46248
|
+
};
|
|
46187
46249
|
export declare type JiraProjectUpdateNameInput = {
|
|
46188
46250
|
cloudId: Scalars['ID']['input'];
|
|
46189
46251
|
name: Scalars['String']['input'];
|
|
@@ -46362,6 +46424,7 @@ export declare type JiraQuery = {
|
|
|
46362
46424
|
scaledConfigurationPermissions?: Maybe<JiraScaledConfigurationPermissions>;
|
|
46363
46425
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
46364
46426
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
46427
|
+
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
46365
46428
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
46366
46429
|
sprintById?: Maybe<JiraSprint>;
|
|
46367
46430
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -46586,10 +46649,10 @@ export declare type JiraQueryGetArchivedIssuesFilterOptionsArgs = {
|
|
|
46586
46649
|
projectId: Scalars['ID']['input'];
|
|
46587
46650
|
};
|
|
46588
46651
|
export declare type JiraQueryGetArchivedIssuesForProjectArgs = {
|
|
46589
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
46590
46652
|
cloudId: Scalars['ID']['input'];
|
|
46591
46653
|
filterBy?: InputMaybe<JiraArchivedIssuesFilterInput>;
|
|
46592
46654
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
46655
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
46593
46656
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
46594
46657
|
};
|
|
46595
46658
|
export declare type JiraQueryGetGlobalPermissionsAndGrantsArgs = {
|
|
@@ -47111,6 +47174,9 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
47111
47174
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
47112
47175
|
issueKey: Scalars['String']['input'];
|
|
47113
47176
|
};
|
|
47177
|
+
export declare type JiraQuerySearchUnsplashImagesArgs = {
|
|
47178
|
+
input: JiraUnsplashSearchInput;
|
|
47179
|
+
};
|
|
47114
47180
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
47115
47181
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
47116
47182
|
cloudId: Scalars['ID']['input'];
|
|
@@ -49973,6 +50039,37 @@ export declare type JiraUnlinkIssuesFromIncidentMutationPayload = Payload & {
|
|
|
49973
50039
|
errors?: Maybe<Array<MutationError>>;
|
|
49974
50040
|
success: Scalars['Boolean']['output'];
|
|
49975
50041
|
};
|
|
50042
|
+
export declare type JiraUnsplashAttributionInput = {
|
|
50043
|
+
cloudId: Scalars['ID']['input'];
|
|
50044
|
+
imageIds: Array<Scalars['ID']['input']>;
|
|
50045
|
+
};
|
|
50046
|
+
export declare type JiraUnsplashAttributionPayload = Payload & {
|
|
50047
|
+
__typename?: 'JiraUnsplashAttributionPayload';
|
|
50048
|
+
errors?: Maybe<Array<MutationError>>;
|
|
50049
|
+
success: Scalars['Boolean']['output'];
|
|
50050
|
+
};
|
|
50051
|
+
export declare type JiraUnsplashImage = {
|
|
50052
|
+
__typename?: 'JiraUnsplashImage';
|
|
50053
|
+
author?: Maybe<Scalars['String']['output']>;
|
|
50054
|
+
fileName?: Maybe<Scalars['String']['output']>;
|
|
50055
|
+
filePath?: Maybe<Scalars['String']['output']>;
|
|
50056
|
+
thumbnailImage?: Maybe<Scalars['String']['output']>;
|
|
50057
|
+
unsplashId?: Maybe<Scalars['String']['output']>;
|
|
50058
|
+
};
|
|
50059
|
+
export declare type JiraUnsplashImageSearchPage = {
|
|
50060
|
+
__typename?: 'JiraUnsplashImageSearchPage';
|
|
50061
|
+
results?: Maybe<Array<Maybe<JiraUnsplashImage>>>;
|
|
50062
|
+
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
50063
|
+
totalPages?: Maybe<Scalars['Long']['output']>;
|
|
50064
|
+
};
|
|
50065
|
+
export declare type JiraUnsplashImageSearchPageResult = JiraUnsplashImageSearchPage | QueryError;
|
|
50066
|
+
export declare type JiraUnsplashSearchInput = {
|
|
50067
|
+
cloudId: Scalars['ID']['input'];
|
|
50068
|
+
pageNumber?: InputMaybe<Scalars['Int']['input']>;
|
|
50069
|
+
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
50070
|
+
query: Scalars['String']['input'];
|
|
50071
|
+
width?: InputMaybe<Scalars['Int']['input']>;
|
|
50072
|
+
};
|
|
49976
50073
|
export declare type JiraUnsupportedLanguageError = {
|
|
49977
50074
|
__typename?: 'JiraUnsupportedLanguageError';
|
|
49978
50075
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -52852,6 +52949,22 @@ export declare type LpBunchballBadgeEdge = {
|
|
|
52852
52949
|
cursor: Scalars['String']['output'];
|
|
52853
52950
|
node?: Maybe<LpBunchballBadge>;
|
|
52854
52951
|
};
|
|
52952
|
+
export declare type LpBunchballBadgeResult = LpBunchballBadgeConnection | QueryError;
|
|
52953
|
+
export declare type LpCertSort = {
|
|
52954
|
+
sortDirection?: InputMaybe<SortDirection>;
|
|
52955
|
+
sortField?: InputMaybe<LpCertSortField>;
|
|
52956
|
+
};
|
|
52957
|
+
export declare enum LpCertSortField {
|
|
52958
|
+
ActiveDate = "ACTIVE_DATE",
|
|
52959
|
+
ExpireDate = "EXPIRE_DATE",
|
|
52960
|
+
Id = "ID",
|
|
52961
|
+
ImageUrl = "IMAGE_URL",
|
|
52962
|
+
Name = "NAME",
|
|
52963
|
+
NameAbbr = "NAME_ABBR",
|
|
52964
|
+
PublicUrl = "PUBLIC_URL",
|
|
52965
|
+
Status = "STATUS",
|
|
52966
|
+
Type = "TYPE"
|
|
52967
|
+
}
|
|
52855
52968
|
export declare enum LpCertStatus {
|
|
52856
52969
|
Active = "ACTIVE",
|
|
52857
52970
|
Expired = "EXPIRED"
|
|
@@ -52884,6 +52997,12 @@ export declare type LpCertmetricsCertificateEdge = {
|
|
|
52884
52997
|
cursor: Scalars['String']['output'];
|
|
52885
52998
|
node?: Maybe<LpCertmetricsCertificate>;
|
|
52886
52999
|
};
|
|
53000
|
+
export declare type LpCertmetricsCertificateResult = LpCertmetricsCertificateConnection | QueryError;
|
|
53001
|
+
export declare type LpConnectionQueryErrorExtension = QueryErrorExtension & {
|
|
53002
|
+
__typename?: 'LpConnectionQueryErrorExtension';
|
|
53003
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
53004
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
53005
|
+
};
|
|
52887
53006
|
export declare type LpCourseProgress = {
|
|
52888
53007
|
__typename?: 'LpCourseProgress';
|
|
52889
53008
|
completedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -52905,6 +53024,19 @@ export declare type LpCourseProgressEdge = {
|
|
|
52905
53024
|
cursor: Scalars['String']['output'];
|
|
52906
53025
|
node?: Maybe<LpCourseProgress>;
|
|
52907
53026
|
};
|
|
53027
|
+
export declare type LpCourseProgressResult = LpCourseProgressConnection | QueryError;
|
|
53028
|
+
export declare type LpCourseSort = {
|
|
53029
|
+
sortDirection?: InputMaybe<SortDirection>;
|
|
53030
|
+
sortField?: InputMaybe<LpCourseSortField>;
|
|
53031
|
+
};
|
|
53032
|
+
export declare enum LpCourseSortField {
|
|
53033
|
+
CompletedDate = "COMPLETED_DATE",
|
|
53034
|
+
CourseId = "COURSE_ID",
|
|
53035
|
+
Id = "ID",
|
|
53036
|
+
Status = "STATUS",
|
|
53037
|
+
Title = "TITLE",
|
|
53038
|
+
Url = "URL"
|
|
53039
|
+
}
|
|
52908
53040
|
export declare enum LpCourseStatus {
|
|
52909
53041
|
Completed = "COMPLETED",
|
|
52910
53042
|
InProgress = "IN_PROGRESS"
|
|
@@ -52912,9 +53044,9 @@ export declare enum LpCourseStatus {
|
|
|
52912
53044
|
export declare type LpLearner = Node & {
|
|
52913
53045
|
__typename?: 'LpLearner';
|
|
52914
53046
|
atlassianId: Scalars['String']['output'];
|
|
52915
|
-
bunchballBadges?: Maybe<
|
|
52916
|
-
certmetricsCertificates?: Maybe<
|
|
52917
|
-
courses?: Maybe<
|
|
53047
|
+
bunchballBadges?: Maybe<LpBunchballBadgeResult>;
|
|
53048
|
+
certmetricsCertificates?: Maybe<LpCertmetricsCertificateResult>;
|
|
53049
|
+
courses?: Maybe<LpCourseProgressResult>;
|
|
52918
53050
|
id: Scalars['ID']['output'];
|
|
52919
53051
|
};
|
|
52920
53052
|
export declare type LpLearnerBunchballBadgesArgs = {
|
|
@@ -52928,15 +53060,16 @@ export declare type LpLearnerCertmetricsCertificatesArgs = {
|
|
|
52928
53060
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
52929
53061
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52930
53062
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
53063
|
+
sorting?: InputMaybe<LpCertSort>;
|
|
52931
53064
|
status?: InputMaybe<LpCertStatus>;
|
|
52932
53065
|
type?: InputMaybe<Array<InputMaybe<LpCertType>>>;
|
|
52933
53066
|
};
|
|
52934
53067
|
export declare type LpLearnerCoursesArgs = {
|
|
52935
53068
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
52936
53069
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
52937
|
-
dateCompletedSortOrder?: InputMaybe<LpSortOrder>;
|
|
52938
53070
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
52939
53071
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
53072
|
+
sorting?: InputMaybe<LpCourseSort>;
|
|
52940
53073
|
status?: InputMaybe<LpCourseStatus>;
|
|
52941
53074
|
};
|
|
52942
53075
|
export declare type LpLearnerData = {
|
|
@@ -53168,6 +53301,13 @@ export declare type MarketplaceConnectAppDeployment = MarketplaceAppDeployment &
|
|
|
53168
53301
|
isDescriptorFileAvailable: Scalars['Boolean']['output'];
|
|
53169
53302
|
scopes: Array<ConnectAppScope>;
|
|
53170
53303
|
};
|
|
53304
|
+
export declare type MarketplaceConsoleAppPrivateListingsPageInfo = {
|
|
53305
|
+
__typename?: 'MarketplaceConsoleAppPrivateListingsPageInfo';
|
|
53306
|
+
endCursor: Scalars['String']['output'];
|
|
53307
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
53308
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
53309
|
+
startCursor: Scalars['String']['output'];
|
|
53310
|
+
};
|
|
53171
53311
|
export declare type MarketplaceConsoleAppSoftware = {
|
|
53172
53312
|
__typename?: 'MarketplaceConsoleAppSoftware';
|
|
53173
53313
|
appKey: Scalars['String']['output'];
|
|
@@ -53179,17 +53319,11 @@ export declare type MarketplaceConsoleAppSoftware = {
|
|
|
53179
53319
|
id: Scalars['ID']['output'];
|
|
53180
53320
|
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53181
53321
|
};
|
|
53182
|
-
export declare type
|
|
53183
|
-
__typename?: '
|
|
53322
|
+
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
53323
|
+
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
53184
53324
|
appSoftwareId: Scalars['ID']['output'];
|
|
53185
|
-
hasAPaidVersion: Scalars['Boolean']['output'];
|
|
53186
53325
|
hosting: MarketplaceConsoleHosting;
|
|
53187
53326
|
};
|
|
53188
|
-
export declare type MarketplaceConsoleAppSoftwareMetadata = {
|
|
53189
|
-
__typename?: 'MarketplaceConsoleAppSoftwareMetadata';
|
|
53190
|
-
appSoftwareIds?: Maybe<Array<MarketplaceConsoleAppSoftwareId>>;
|
|
53191
|
-
missingPricingPlan: Scalars['Boolean']['output'];
|
|
53192
|
-
};
|
|
53193
53327
|
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
53194
53328
|
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
53195
53329
|
appSoftwareId: Scalars['ID']['output'];
|
|
@@ -53271,6 +53405,10 @@ export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
|
53271
53405
|
Rejected = "REJECTED",
|
|
53272
53406
|
Submitted = "SUBMITTED"
|
|
53273
53407
|
}
|
|
53408
|
+
export declare type MarketplaceConsoleAppSoftwares = {
|
|
53409
|
+
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
53410
|
+
appSoftwares?: Maybe<Array<MarketplaceConsoleAppSoftwareShort>>;
|
|
53411
|
+
};
|
|
53274
53412
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
53275
53413
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
53276
53414
|
descriptorId: Scalars['ID']['output'];
|
|
@@ -53443,10 +53581,9 @@ export declare type MarketplaceConsoleHostingOption = {
|
|
|
53443
53581
|
export declare type MarketplaceConsoleImageMediaAsset = {
|
|
53444
53582
|
__typename?: 'MarketplaceConsoleImageMediaAsset';
|
|
53445
53583
|
altText?: Maybe<Scalars['String']['output']>;
|
|
53584
|
+
fileName: Scalars['String']['output'];
|
|
53446
53585
|
height: Scalars['Int']['output'];
|
|
53447
|
-
id: Scalars['String']['output'];
|
|
53448
53586
|
imageType: Scalars['String']['output'];
|
|
53449
|
-
name: Scalars['String']['output'];
|
|
53450
53587
|
uri: Scalars['String']['output'];
|
|
53451
53588
|
width: Scalars['Int']['output'];
|
|
53452
53589
|
};
|
|
@@ -53460,6 +53597,7 @@ export declare type MarketplaceConsoleLegacyMongoAppDetails = {
|
|
|
53460
53597
|
__typename?: 'MarketplaceConsoleLegacyMongoAppDetails';
|
|
53461
53598
|
hiddenIn?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
53462
53599
|
hostingVisibility?: Maybe<MarketplaceConsoleLegacyMongoHostingVisibility>;
|
|
53600
|
+
isPricingPlanMissing?: Maybe<Scalars['Boolean']['output']>;
|
|
53463
53601
|
status: MarketplaceConsoleLegacyMongoStatus;
|
|
53464
53602
|
statusAfterApproval?: Maybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
53465
53603
|
};
|
|
@@ -53501,17 +53639,26 @@ export declare type MarketplaceConsoleListingScreenshot = {
|
|
|
53501
53639
|
export declare type MarketplaceConsoleMutationApi = {
|
|
53502
53640
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
53503
53641
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
53642
|
+
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
53504
53643
|
createEditions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53644
|
+
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
53505
53645
|
updateEdition?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53506
53646
|
};
|
|
53507
53647
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
53508
53648
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
53509
53649
|
product: MarketplaceConsoleProduct;
|
|
53510
53650
|
};
|
|
53651
|
+
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
53652
|
+
appSoftwareId: Scalars['String']['input'];
|
|
53653
|
+
};
|
|
53511
53654
|
export declare type MarketplaceConsoleMutationApiCreateEditionsArgs = {
|
|
53512
53655
|
editions: Array<MarketplaceConsoleEditionCreate>;
|
|
53513
53656
|
product: MarketplaceConsoleProduct;
|
|
53514
53657
|
};
|
|
53658
|
+
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
53659
|
+
appSoftwareId: Scalars['String']['input'];
|
|
53660
|
+
token: Scalars['String']['input'];
|
|
53661
|
+
};
|
|
53515
53662
|
export declare type MarketplaceConsoleMutationApiUpdateEditionArgs = {
|
|
53516
53663
|
edition: MarketplaceConsoleEditionUpdate;
|
|
53517
53664
|
product: MarketplaceConsoleProduct;
|
|
@@ -53616,6 +53763,23 @@ export declare type MarketplaceConsolePricingPlanModify = {
|
|
|
53616
53763
|
items: Array<MarketplaceConsolePricingItemModify>;
|
|
53617
53764
|
perUnitItems: Array<MarketplaceConsolePricingItemModify>;
|
|
53618
53765
|
};
|
|
53766
|
+
export declare type MarketplaceConsolePrivateListings = {
|
|
53767
|
+
__typename?: 'MarketplaceConsolePrivateListings';
|
|
53768
|
+
appSoftwareId: Scalars['ID']['output'];
|
|
53769
|
+
edges: Array<MarketplaceConsolePrivateListingsTokenDetails>;
|
|
53770
|
+
pageInfo: MarketplaceConsoleAppPrivateListingsPageInfo;
|
|
53771
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
53772
|
+
};
|
|
53773
|
+
export declare type MarketplaceConsolePrivateListingsLink = {
|
|
53774
|
+
__typename?: 'MarketplaceConsolePrivateListingsLink';
|
|
53775
|
+
buildNumber: Scalars['Int']['output'];
|
|
53776
|
+
versionNumber: Scalars['String']['output'];
|
|
53777
|
+
};
|
|
53778
|
+
export declare type MarketplaceConsolePrivateListingsTokenDetails = {
|
|
53779
|
+
__typename?: 'MarketplaceConsolePrivateListingsTokenDetails';
|
|
53780
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
53781
|
+
node: MarketplaceConsoleTokenDetails;
|
|
53782
|
+
};
|
|
53619
53783
|
export declare type MarketplaceConsoleProduct = {
|
|
53620
53784
|
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
53621
53785
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -53658,10 +53822,11 @@ export declare type MarketplaceConsoleProductMetadata = {
|
|
|
53658
53822
|
};
|
|
53659
53823
|
export declare type MarketplaceConsoleQueryApi = {
|
|
53660
53824
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
53825
|
+
appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
|
|
53661
53826
|
appSoftware: Array<MarketplaceConsoleAppSoftware>;
|
|
53662
|
-
appSoftwareMetadataByAppId?: Maybe<MarketplaceConsoleAppSoftwareMetadata>;
|
|
53663
53827
|
appSoftwareVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53664
53828
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
53829
|
+
appSoftwaresByAppId?: Maybe<MarketplaceConsoleAppSoftwares>;
|
|
53665
53830
|
currentPartnerContact?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53666
53831
|
currentPartnerContactByAppId?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53667
53832
|
currentUserPreferences?: Maybe<MarketplaceConsoleUserPreferences>;
|
|
@@ -53674,10 +53839,12 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
53674
53839
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
53675
53840
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
53676
53841
|
};
|
|
53677
|
-
export declare type
|
|
53678
|
-
|
|
53842
|
+
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
53843
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53844
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
53845
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53679
53846
|
};
|
|
53680
|
-
export declare type
|
|
53847
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareArgs = {
|
|
53681
53848
|
appId: Scalars['ID']['input'];
|
|
53682
53849
|
};
|
|
53683
53850
|
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionArgs = {
|
|
@@ -53688,6 +53855,9 @@ export declare type MarketplaceConsoleQueryApiAppSoftwareVersionListingArgs = {
|
|
|
53688
53855
|
appId: Scalars['ID']['input'];
|
|
53689
53856
|
buildNumber: Scalars['ID']['input'];
|
|
53690
53857
|
};
|
|
53858
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwaresByAppIdArgs = {
|
|
53859
|
+
appId: Scalars['ID']['input'];
|
|
53860
|
+
};
|
|
53691
53861
|
export declare type MarketplaceConsoleQueryApiCurrentPartnerContactArgs = {
|
|
53692
53862
|
partnerId: Scalars['ID']['input'];
|
|
53693
53863
|
};
|
|
@@ -53722,6 +53892,12 @@ export declare type MarketplaceConsoleTagsContent = {
|
|
|
53722
53892
|
id: Scalars['ID']['output'];
|
|
53723
53893
|
name?: Maybe<Scalars['String']['output']>;
|
|
53724
53894
|
};
|
|
53895
|
+
export declare type MarketplaceConsoleTokenDetails = {
|
|
53896
|
+
__typename?: 'MarketplaceConsoleTokenDetails';
|
|
53897
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
53898
|
+
links?: Maybe<Array<Maybe<MarketplaceConsolePrivateListingsLink>>>;
|
|
53899
|
+
token: Scalars['String']['output'];
|
|
53900
|
+
};
|
|
53725
53901
|
export declare type MarketplaceConsoleUser = {
|
|
53726
53902
|
__typename?: 'MarketplaceConsoleUser';
|
|
53727
53903
|
atlassianAccountId: Scalars['ID']['output'];
|
|
@@ -62507,6 +62683,7 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
62507
62683
|
initialContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
62508
62684
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
62509
62685
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
62686
|
+
linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
|
|
62510
62687
|
mentions?: Maybe<Array<ThirdPartyUser>>;
|
|
62511
62688
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
62512
62689
|
title: Scalars['String']['output'];
|
|
@@ -63008,6 +63185,16 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
63008
63185
|
IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
|
|
63009
63186
|
ImpossibleTravel = "IMPOSSIBLE_TRAVEL",
|
|
63010
63187
|
InitiatedGsyncConnection = "INITIATED_GSYNC_CONNECTION",
|
|
63188
|
+
JiraDataDiscoveryAtlassianToken = "JIRA_DATA_DISCOVERY_ATLASSIAN_TOKEN",
|
|
63189
|
+
JiraDataDiscoveryAuTfn = "JIRA_DATA_DISCOVERY_AU_TFN",
|
|
63190
|
+
JiraDataDiscoveryAwsKeys = "JIRA_DATA_DISCOVERY_AWS_KEYS",
|
|
63191
|
+
JiraDataDiscoveryCreditCard = "JIRA_DATA_DISCOVERY_CREDIT_CARD",
|
|
63192
|
+
JiraDataDiscoveryCrypto = "JIRA_DATA_DISCOVERY_CRYPTO",
|
|
63193
|
+
JiraDataDiscoveryIban = "JIRA_DATA_DISCOVERY_IBAN",
|
|
63194
|
+
JiraDataDiscoveryJwtKey = "JIRA_DATA_DISCOVERY_JWT_KEY",
|
|
63195
|
+
JiraDataDiscoveryPassword = "JIRA_DATA_DISCOVERY_PASSWORD",
|
|
63196
|
+
JiraDataDiscoveryPrivateKey = "JIRA_DATA_DISCOVERY_PRIVATE_KEY",
|
|
63197
|
+
JiraDataDiscoveryUsSsn = "JIRA_DATA_DISCOVERY_US_SSN",
|
|
63011
63198
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
63012
63199
|
LoginFromMaliciousIpAddress = "LOGIN_FROM_MALICIOUS_IP_ADDRESS",
|
|
63013
63200
|
LoginFromTorExitNode = "LOGIN_FROM_TOR_EXIT_NODE",
|
|
@@ -63279,6 +63466,7 @@ export declare type ShepherdDetection = {
|
|
|
63279
63466
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
63280
63467
|
id: Scalars['ID']['output'];
|
|
63281
63468
|
product: ShepherdAtlassianProduct;
|
|
63469
|
+
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
63282
63470
|
regions?: Maybe<Array<Scalars['String']['output']>>;
|
|
63283
63471
|
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
63284
63472
|
scanningInfo: ShepherdDetectionScanningInfo;
|
|
@@ -63302,6 +63490,11 @@ export declare type ShepherdDetectionExclusionsSetting = {
|
|
|
63302
63490
|
allowedExclusions: Array<Scalars['String']['output']>;
|
|
63303
63491
|
exclusions: Array<ShepherdDetectionExclusion>;
|
|
63304
63492
|
};
|
|
63493
|
+
export declare type ShepherdDetectionJiraEnabledSetting = {
|
|
63494
|
+
__typename?: 'ShepherdDetectionJiraEnabledSetting';
|
|
63495
|
+
booleanDefault: Scalars['Boolean']['output'];
|
|
63496
|
+
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
63497
|
+
};
|
|
63305
63498
|
export declare type ShepherdDetectionRemoveSettingValuePayload = Payload & {
|
|
63306
63499
|
__typename?: 'ShepherdDetectionRemoveSettingValuePayload';
|
|
63307
63500
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -63356,7 +63549,7 @@ export declare type ShepherdDetectionSettingSetValueInput = {
|
|
|
63356
63549
|
stringValues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63357
63550
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
63358
63551
|
};
|
|
63359
|
-
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionExclusionsSetting | ShepherdRateThresholdSetting;
|
|
63552
|
+
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionExclusionsSetting | ShepherdDetectionJiraEnabledSetting | ShepherdRateThresholdSetting;
|
|
63360
63553
|
export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
63361
63554
|
__typename?: 'ShepherdDetectionUpdateSettingValuePayload';
|
|
63362
63555
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -63618,6 +63811,7 @@ export declare enum ShepherdRemediationActionType {
|
|
|
63618
63811
|
ReviewAuthPolicyRemediation = "REVIEW_AUTH_POLICY_REMEDIATION",
|
|
63619
63812
|
ReviewGsyncRemediation = "REVIEW_GSYNC_REMEDIATION",
|
|
63620
63813
|
ReviewIpAllowlistRemediation = "REVIEW_IP_ALLOWLIST_REMEDIATION",
|
|
63814
|
+
ReviewIssueRemediation = "REVIEW_ISSUE_REMEDIATION",
|
|
63621
63815
|
ReviewOtherAuthPoliciesRemediation = "REVIEW_OTHER_AUTH_POLICIES_REMEDIATION",
|
|
63622
63816
|
ReviewOtherIpAllowlistRemediation = "REVIEW_OTHER_IP_ALLOWLIST_REMEDIATION",
|
|
63623
63817
|
ReviewPageRemediation = "REVIEW_PAGE_REMEDIATION",
|
|
@@ -65451,6 +65645,7 @@ export declare type TownsquareCommentEdge = {
|
|
|
65451
65645
|
};
|
|
65452
65646
|
export declare type TownsquareCreateGoalInput = {
|
|
65453
65647
|
containerId: Scalars['String']['input'];
|
|
65648
|
+
goalTypeAri?: InputMaybe<Scalars['String']['input']>;
|
|
65454
65649
|
name: Scalars['String']['input'];
|
|
65455
65650
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
65456
65651
|
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65507,6 +65702,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
65507
65702
|
creationDate: Scalars['DateTime']['output'];
|
|
65508
65703
|
description?: Maybe<Scalars['String']['output']>;
|
|
65509
65704
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
65705
|
+
goalType?: Maybe<TownsquareGoalType>;
|
|
65510
65706
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
65511
65707
|
id: Scalars['ID']['output'];
|
|
65512
65708
|
isArchived: Scalars['Boolean']['output'];
|
|
@@ -65574,6 +65770,43 @@ export declare enum TownsquareGoalStateValue {
|
|
|
65574
65770
|
Paused = "paused",
|
|
65575
65771
|
Pending = "pending"
|
|
65576
65772
|
}
|
|
65773
|
+
export declare type TownsquareGoalType = Node & {
|
|
65774
|
+
__typename?: 'TownsquareGoalType';
|
|
65775
|
+
allowedChildTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
65776
|
+
allowedParentTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
65777
|
+
id: Scalars['ID']['output'];
|
|
65778
|
+
name?: Maybe<TownsquareGoalTypeName>;
|
|
65779
|
+
state?: Maybe<TownsquareGoalTypeState>;
|
|
65780
|
+
};
|
|
65781
|
+
export declare type TownsquareGoalTypeAllowedChildTypesArgs = {
|
|
65782
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
65783
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65784
|
+
includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65785
|
+
};
|
|
65786
|
+
export declare type TownsquareGoalTypeAllowedParentTypesArgs = {
|
|
65787
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
65788
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65789
|
+
includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65790
|
+
};
|
|
65791
|
+
export declare type TownsquareGoalTypeConnection = {
|
|
65792
|
+
__typename?: 'TownsquareGoalTypeConnection';
|
|
65793
|
+
edges?: Maybe<Array<Maybe<TownsquareGoalTypeEdge>>>;
|
|
65794
|
+
pageInfo: PageInfo;
|
|
65795
|
+
};
|
|
65796
|
+
export declare type TownsquareGoalTypeCustomName = {
|
|
65797
|
+
__typename?: 'TownsquareGoalTypeCustomName';
|
|
65798
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
65799
|
+
};
|
|
65800
|
+
export declare type TownsquareGoalTypeEdge = {
|
|
65801
|
+
__typename?: 'TownsquareGoalTypeEdge';
|
|
65802
|
+
cursor: Scalars['String']['output'];
|
|
65803
|
+
node?: Maybe<TownsquareGoalType>;
|
|
65804
|
+
};
|
|
65805
|
+
export declare type TownsquareGoalTypeName = TownsquareGoalTypeCustomName | TownsquareLocalizationField;
|
|
65806
|
+
export declare enum TownsquareGoalTypeState {
|
|
65807
|
+
Disabled = "DISABLED",
|
|
65808
|
+
Enabled = "ENABLED"
|
|
65809
|
+
}
|
|
65577
65810
|
export declare type TownsquareLocalizationField = {
|
|
65578
65811
|
__typename?: 'TownsquareLocalizationField';
|
|
65579
65812
|
messageId?: Maybe<Scalars['String']['output']>;
|
|
@@ -65681,6 +65914,7 @@ export declare type TownsquareQueryApi = {
|
|
|
65681
65914
|
goal?: Maybe<TownsquareGoal>;
|
|
65682
65915
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
65683
65916
|
goalTql?: Maybe<TownsquareGoalConnection>;
|
|
65917
|
+
goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
65684
65918
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
65685
65919
|
project?: Maybe<TownsquareProject>;
|
|
65686
65920
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
@@ -65713,6 +65947,12 @@ export declare type TownsquareQueryApiGoalTqlArgs = {
|
|
|
65713
65947
|
q: Scalars['String']['input'];
|
|
65714
65948
|
sort?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
65715
65949
|
};
|
|
65950
|
+
export declare type TownsquareQueryApiGoalTypesArgs = {
|
|
65951
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
65952
|
+
containerId: Scalars['String']['input'];
|
|
65953
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65954
|
+
includeDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65955
|
+
};
|
|
65716
65956
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
65717
65957
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
65718
65958
|
};
|
|
@@ -66479,6 +66719,7 @@ export declare type TrelloJwmWorkspaceLink = {
|
|
|
66479
66719
|
export declare type TrelloLabel = {
|
|
66480
66720
|
__typename?: 'TrelloLabel';
|
|
66481
66721
|
color?: Maybe<Scalars['String']['output']>;
|
|
66722
|
+
id: Scalars['ID']['output'];
|
|
66482
66723
|
name?: Maybe<Scalars['String']['output']>;
|
|
66483
66724
|
objectId: Scalars['ID']['output'];
|
|
66484
66725
|
uses?: Maybe<Scalars['Int']['output']>;
|
|
@@ -66638,6 +66879,7 @@ export declare type TrelloMutationApi = {
|
|
|
66638
66879
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
66639
66880
|
updateBoardName?: Maybe<TrelloUpdateBoardNamePayload>;
|
|
66640
66881
|
updateBoardViewerAIEmail?: Maybe<TrelloUpdateBoardViewerAiEmailPayload>;
|
|
66882
|
+
updateBoardViewerMirrorCard?: Maybe<TrelloUpdateBoardViewerShowCompactMirrorCardPayload>;
|
|
66641
66883
|
updateCardName?: Maybe<TrelloUpdateCardNamePayload>;
|
|
66642
66884
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
66643
66885
|
};
|
|
@@ -66668,6 +66910,9 @@ export declare type TrelloMutationApiUpdateBoardNameArgs = {
|
|
|
66668
66910
|
export declare type TrelloMutationApiUpdateBoardViewerAiEmailArgs = {
|
|
66669
66911
|
input: TrelloUpdateBoardViewerAiEmailInput;
|
|
66670
66912
|
};
|
|
66913
|
+
export declare type TrelloMutationApiUpdateBoardViewerMirrorCardArgs = {
|
|
66914
|
+
input: TrelloUpdateBoardViewerShowCompactMirrorCardInput;
|
|
66915
|
+
};
|
|
66671
66916
|
export declare type TrelloMutationApiUpdateCardNameArgs = {
|
|
66672
66917
|
input: TrelloUpdateCardNameInput;
|
|
66673
66918
|
};
|
|
@@ -66920,6 +67165,16 @@ export declare type TrelloUpdateBoardViewerAiEmailPayload = Payload & {
|
|
|
66920
67165
|
success: Scalars['Boolean']['output'];
|
|
66921
67166
|
viewer?: Maybe<TrelloBoardViewer>;
|
|
66922
67167
|
};
|
|
67168
|
+
export declare type TrelloUpdateBoardViewerShowCompactMirrorCardInput = {
|
|
67169
|
+
boardId: Scalars['ID']['input'];
|
|
67170
|
+
value: Scalars['Boolean']['input'];
|
|
67171
|
+
};
|
|
67172
|
+
export declare type TrelloUpdateBoardViewerShowCompactMirrorCardPayload = Payload & {
|
|
67173
|
+
__typename?: 'TrelloUpdateBoardViewerShowCompactMirrorCardPayload';
|
|
67174
|
+
errors?: Maybe<Array<MutationError>>;
|
|
67175
|
+
success: Scalars['Boolean']['output'];
|
|
67176
|
+
viewer?: Maybe<TrelloBoardViewer>;
|
|
67177
|
+
};
|
|
66923
67178
|
export declare type TrelloUpdateCardNameInput = {
|
|
66924
67179
|
cardId: Scalars['ID']['input'];
|
|
66925
67180
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -68731,9 +68986,10 @@ export declare type WorkSuggestionsBuildTask = WorkSuggestionsCommon & {
|
|
|
68731
68986
|
};
|
|
68732
68987
|
export declare type WorkSuggestionsByProjectsResponse = {
|
|
68733
68988
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
68734
|
-
autoDevJobsSuggestions
|
|
68735
|
-
commonSuggestions
|
|
68736
|
-
|
|
68989
|
+
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
68990
|
+
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
68991
|
+
pullRequestSuggestions?: Maybe<Array<WorkSuggestionsPeriscopeTask>>;
|
|
68992
|
+
sortOrder?: Maybe<WorkSuggestionsOrder>;
|
|
68737
68993
|
};
|
|
68738
68994
|
export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs = {
|
|
68739
68995
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -68915,6 +69171,44 @@ export declare type WorkSuggestionsOrder = {
|
|
|
68915
69171
|
__typename?: 'WorkSuggestionsOrder';
|
|
68916
69172
|
defaultOrder: Array<Scalars['ID']['output']>;
|
|
68917
69173
|
};
|
|
69174
|
+
export declare type WorkSuggestionsOrderScore = {
|
|
69175
|
+
__typename?: 'WorkSuggestionsOrderScore';
|
|
69176
|
+
byTaskType?: Maybe<WorkSuggestionsOrderScores>;
|
|
69177
|
+
};
|
|
69178
|
+
export declare type WorkSuggestionsOrderScores = {
|
|
69179
|
+
__typename?: 'WorkSuggestionsOrderScores';
|
|
69180
|
+
major: Scalars['Int']['output'];
|
|
69181
|
+
minor?: Maybe<Scalars['Int']['output']>;
|
|
69182
|
+
};
|
|
69183
|
+
export declare type WorkSuggestionsPrComment = {
|
|
69184
|
+
__typename?: 'WorkSuggestionsPRComment';
|
|
69185
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
69186
|
+
commenterName: Scalars['String']['output'];
|
|
69187
|
+
createdOn: Scalars['String']['output'];
|
|
69188
|
+
text: Scalars['String']['output'];
|
|
69189
|
+
url: Scalars['String']['output'];
|
|
69190
|
+
};
|
|
69191
|
+
export declare type WorkSuggestionsPrCommentsTask = WorkSuggestionsPeriscopeTask & {
|
|
69192
|
+
__typename?: 'WorkSuggestionsPRCommentsTask';
|
|
69193
|
+
approvalsCount: Scalars['Int']['output'];
|
|
69194
|
+
commentCount: Scalars['Int']['output'];
|
|
69195
|
+
comments?: Maybe<Array<WorkSuggestionsPrComment>>;
|
|
69196
|
+
destinationBranchName?: Maybe<Scalars['String']['output']>;
|
|
69197
|
+
id: Scalars['String']['output'];
|
|
69198
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69199
|
+
providerIconUrl?: Maybe<Scalars['String']['output']>;
|
|
69200
|
+
providerName?: Maybe<Scalars['String']['output']>;
|
|
69201
|
+
repositoryName?: Maybe<Scalars['String']['output']>;
|
|
69202
|
+
sourceBranchName?: Maybe<Scalars['String']['output']>;
|
|
69203
|
+
title: Scalars['String']['output'];
|
|
69204
|
+
url: Scalars['String']['output'];
|
|
69205
|
+
};
|
|
69206
|
+
export declare type WorkSuggestionsPeriscopeTask = {
|
|
69207
|
+
id: Scalars['String']['output'];
|
|
69208
|
+
orderScore?: Maybe<WorkSuggestionsOrderScore>;
|
|
69209
|
+
title: Scalars['String']['output'];
|
|
69210
|
+
url: Scalars['String']['output'];
|
|
69211
|
+
};
|
|
68918
69212
|
export declare type WorkSuggestionsPullRequestNeedsWorkTask = WorkSuggestionsCommon & {
|
|
68919
69213
|
__typename?: 'WorkSuggestionsPullRequestNeedsWorkTask';
|
|
68920
69214
|
commentCount: Scalars['Int']['output'];
|