@forge/cli-shared 5.4.0-next.1 → 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
CHANGED
|
@@ -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'];
|
|
@@ -4869,7 +4871,9 @@ export declare type CompassFreeformUserDefinedParameter = CompassUserDefinedPara
|
|
|
4869
4871
|
};
|
|
4870
4872
|
export declare type CompassGlobalPermissions = {
|
|
4871
4873
|
__typename?: 'CompassGlobalPermissions';
|
|
4874
|
+
createIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
4872
4875
|
createScorecards?: Maybe<CompassPermissionResult>;
|
|
4876
|
+
deleteIncomingWebhooks?: Maybe<CompassPermissionResult>;
|
|
4873
4877
|
viewCustomFieldDefinitions?: Maybe<CompassPermissionResult>;
|
|
4874
4878
|
};
|
|
4875
4879
|
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
@@ -15590,6 +15594,7 @@ export declare type CustomerServiceCustomDetailUpdateTypeInput = {
|
|
|
15590
15594
|
};
|
|
15591
15595
|
export declare type CustomerServiceCustomDetailValue = Node & {
|
|
15592
15596
|
__typename?: 'CustomerServiceCustomDetailValue';
|
|
15597
|
+
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
15593
15598
|
config?: Maybe<CustomerServiceCustomDetailConfigMetadata>;
|
|
15594
15599
|
id: Scalars['ID']['output'];
|
|
15595
15600
|
name: Scalars['String']['output'];
|
|
@@ -19033,6 +19038,7 @@ export declare type ExternalDocument = {
|
|
|
19033
19038
|
__typename?: 'ExternalDocument';
|
|
19034
19039
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
19035
19040
|
collaborators?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19041
|
+
content?: Maybe<ExternalLargeContent>;
|
|
19036
19042
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19037
19043
|
createdBy?: Maybe<ExternalUser>;
|
|
19038
19044
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -19043,6 +19049,7 @@ export declare type ExternalDocument = {
|
|
|
19043
19049
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19044
19050
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19045
19051
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19052
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19046
19053
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19047
19054
|
truncatedDisplayName?: Maybe<Scalars['Boolean']['output']>;
|
|
19048
19055
|
type?: Maybe<ExternalDocumentType>;
|
|
@@ -19159,6 +19166,11 @@ export declare type ExternalFileInfo = {
|
|
|
19159
19166
|
fileCount?: Maybe<Scalars['Int']['output']>;
|
|
19160
19167
|
files?: Maybe<Array<Maybe<ExternalFile>>>;
|
|
19161
19168
|
};
|
|
19169
|
+
export declare type ExternalLargeContent = {
|
|
19170
|
+
__typename?: 'ExternalLargeContent';
|
|
19171
|
+
asText?: Maybe<Scalars['String']['output']>;
|
|
19172
|
+
mimeType?: Maybe<Scalars['String']['output']>;
|
|
19173
|
+
};
|
|
19162
19174
|
export declare enum ExternalMembershipType {
|
|
19163
19175
|
Private = "PRIVATE",
|
|
19164
19176
|
Public = "PUBLIC",
|
|
@@ -19167,16 +19179,20 @@ export declare enum ExternalMembershipType {
|
|
|
19167
19179
|
export declare type ExternalMessage = {
|
|
19168
19180
|
__typename?: 'ExternalMessage';
|
|
19169
19181
|
attachments?: Maybe<Array<Maybe<ExternalAttachment>>>;
|
|
19182
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
19170
19183
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
19171
19184
|
createdBy?: Maybe<ExternalUser>;
|
|
19185
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
19172
19186
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
19173
19187
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
19174
19188
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
19175
19189
|
id: Scalars['ID']['output'];
|
|
19176
19190
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
19191
|
+
largeContentDescription?: Maybe<ExternalLargeContent>;
|
|
19177
19192
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
19178
19193
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
19179
19194
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
19195
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
19180
19196
|
thumbnail?: Maybe<ExternalThumbnail>;
|
|
19181
19197
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
19182
19198
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -35857,6 +35873,8 @@ export declare enum HelpLayoutConnectElementType {
|
|
|
35857
35873
|
SubheaderPanels = "subheaderPanels"
|
|
35858
35874
|
}
|
|
35859
35875
|
export declare type HelpLayoutConnectInput = {
|
|
35876
|
+
pages: HelpLayoutConnectElementPages;
|
|
35877
|
+
type: HelpLayoutConnectElementType;
|
|
35860
35878
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35861
35879
|
};
|
|
35862
35880
|
export declare type HelpLayoutCreatePayload = Payload & {
|
|
@@ -35948,6 +35966,8 @@ export declare enum HelpLayoutForgeElementType {
|
|
|
35948
35966
|
HeaderAndSubheader = "HEADER_AND_SUBHEADER"
|
|
35949
35967
|
}
|
|
35950
35968
|
export declare type HelpLayoutForgeInput = {
|
|
35969
|
+
pages: HelpLayoutForgeElementPages;
|
|
35970
|
+
type: HelpLayoutForgeElementType;
|
|
35951
35971
|
visualConfig?: InputMaybe<HelpLayoutVisualConfigInput>;
|
|
35952
35972
|
};
|
|
35953
35973
|
export declare type HelpLayoutHeadingAtomicElement = HelpLayoutVisualEntity & Node & {
|
|
@@ -36234,6 +36254,7 @@ export declare type HelpLayoutTopic = {
|
|
|
36234
36254
|
__typename?: 'HelpLayoutTopic';
|
|
36235
36255
|
hidden?: Maybe<Scalars['Boolean']['output']>;
|
|
36236
36256
|
items?: Maybe<Array<HelpLayoutTopicItem>>;
|
|
36257
|
+
properties?: Maybe<Scalars['String']['output']>;
|
|
36237
36258
|
topicId?: Maybe<Scalars['String']['output']>;
|
|
36238
36259
|
topicName?: Maybe<Scalars['String']['output']>;
|
|
36239
36260
|
};
|
|
@@ -38482,7 +38503,8 @@ export declare enum JiraBackgroundType {
|
|
|
38482
38503
|
Attachment = "ATTACHMENT",
|
|
38483
38504
|
Color = "COLOR",
|
|
38484
38505
|
Custom = "CUSTOM",
|
|
38485
|
-
Gradient = "GRADIENT"
|
|
38506
|
+
Gradient = "GRADIENT",
|
|
38507
|
+
Unsplash = "UNSPLASH"
|
|
38486
38508
|
}
|
|
38487
38509
|
export declare type JiraBackgroundUploadToken = {
|
|
38488
38510
|
__typename?: 'JiraBackgroundUploadToken';
|
|
@@ -39803,6 +39825,16 @@ export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
|
39803
39825
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
39804
39826
|
success: Scalars['Boolean']['output'];
|
|
39805
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
|
+
};
|
|
39806
39838
|
export declare type JiraCreateBoardFieldInput = {
|
|
39807
39839
|
issueTypes?: InputMaybe<Array<JiraIssueTypeInput>>;
|
|
39808
39840
|
labels?: InputMaybe<Array<JiraLabelsInput>>;
|
|
@@ -40349,6 +40381,7 @@ export declare type JiraDevOpsMutation = {
|
|
|
40349
40381
|
dismissBitbucketPendingAccessRequestBanner?: Maybe<JiraDismissBitbucketPendingAccessRequestBannerPayload>;
|
|
40350
40382
|
dismissDevOpsIssuePanelBanner?: Maybe<JiraDismissDevOpsIssuePanelBannerPayload>;
|
|
40351
40383
|
dismissInContextConfigPrompt?: Maybe<JiraDismissInContextConfigPromptPayload>;
|
|
40384
|
+
modifyAutodevCode?: Maybe<JiraAutodevBasicPayload>;
|
|
40352
40385
|
optoutOfDevOpsIssuePanelNotConnectedState?: Maybe<JiraOptoutDevOpsIssuePanelNotConnectedPayload>;
|
|
40353
40386
|
regenerateAutodevPlan?: Maybe<JiraAutodevBasicPayload>;
|
|
40354
40387
|
removeJiraBitbucketWorkspaceConnection?: Maybe<JiraRemoveJiraBitbucketWorkspaceConnectionPayload>;
|
|
@@ -40417,6 +40450,11 @@ export declare type JiraDevOpsMutationDismissInContextConfigPromptArgs = {
|
|
|
40417
40450
|
cloudId: Scalars['ID']['input'];
|
|
40418
40451
|
input: JiraDismissInContextConfigPromptInput;
|
|
40419
40452
|
};
|
|
40453
|
+
export declare type JiraDevOpsMutationModifyAutodevCodeArgs = {
|
|
40454
|
+
issueAri: Scalars['ID']['input'];
|
|
40455
|
+
jobId: Scalars['ID']['input'];
|
|
40456
|
+
prompt: Scalars['String']['input'];
|
|
40457
|
+
};
|
|
40420
40458
|
export declare type JiraDevOpsMutationOptoutOfDevOpsIssuePanelNotConnectedStateArgs = {
|
|
40421
40459
|
input: JiraOptoutDevOpsIssuePanelNotConnectedInput;
|
|
40422
40460
|
};
|
|
@@ -43873,11 +43911,13 @@ export declare type JiraMutation = {
|
|
|
43873
43911
|
addRelatedWorkToVersion?: Maybe<JiraAddRelatedWorkToVersionPayload>;
|
|
43874
43912
|
answerApprovalDecision?: Maybe<JiraAnswerApprovalDecisionPayload>;
|
|
43875
43913
|
assignRelatedWorkToUser?: Maybe<JiraAssignRelatedWorkPayload>;
|
|
43914
|
+
attributeUnsplashImage?: Maybe<JiraUnsplashAttributionPayload>;
|
|
43876
43915
|
bulkCreateRequestTypeFromTemplate?: Maybe<JiraServiceManagementCreateRequestTypeFromTemplatePayload>;
|
|
43877
43916
|
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
43878
43917
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
43879
43918
|
createAppNavigationItem?: Maybe<JiraCreateNavigationItemPayload>;
|
|
43880
43919
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
43920
|
+
createAttachmentBackground?: Maybe<JiraCreateAttachmentBackgroundPayload>;
|
|
43881
43921
|
createBoard?: Maybe<JiraCreateBoardPayload>;
|
|
43882
43922
|
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
43883
43923
|
createCustomBackground?: Maybe<JiraCreateCustomBackgroundPayload>;
|
|
@@ -44045,6 +44085,9 @@ export declare type JiraMutationAnswerApprovalDecisionArgs = {
|
|
|
44045
44085
|
export declare type JiraMutationAssignRelatedWorkToUserArgs = {
|
|
44046
44086
|
input: JiraAssignRelatedWorkInput;
|
|
44047
44087
|
};
|
|
44088
|
+
export declare type JiraMutationAttributeUnsplashImageArgs = {
|
|
44089
|
+
input: JiraUnsplashAttributionInput;
|
|
44090
|
+
};
|
|
44048
44091
|
export declare type JiraMutationBulkCreateRequestTypeFromTemplateArgs = {
|
|
44049
44092
|
input: JiraServiceManagementBulkCreateRequestTypeFromTemplateInput;
|
|
44050
44093
|
};
|
|
@@ -44061,6 +44104,9 @@ export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
|
44061
44104
|
cloudId: Scalars['ID']['input'];
|
|
44062
44105
|
input: JiraCreateApproverListFieldInput;
|
|
44063
44106
|
};
|
|
44107
|
+
export declare type JiraMutationCreateAttachmentBackgroundArgs = {
|
|
44108
|
+
input: JiraCreateAttachmentBackgroundInput;
|
|
44109
|
+
};
|
|
44064
44110
|
export declare type JiraMutationCreateBoardArgs = {
|
|
44065
44111
|
cloudId: Scalars['ID']['input'];
|
|
44066
44112
|
input: JiraCreateBoardInput;
|
|
@@ -46378,6 +46424,7 @@ export declare type JiraQuery = {
|
|
|
46378
46424
|
scaledConfigurationPermissions?: Maybe<JiraScaledConfigurationPermissions>;
|
|
46379
46425
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
46380
46426
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
46427
|
+
searchUnsplashImages?: Maybe<JiraUnsplashImageSearchPageResult>;
|
|
46381
46428
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
46382
46429
|
sprintById?: Maybe<JiraSprint>;
|
|
46383
46430
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
@@ -47127,6 +47174,9 @@ export declare type JiraQueryScreenIdByIssueKeyArgs = {
|
|
|
47127
47174
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
47128
47175
|
issueKey: Scalars['String']['input'];
|
|
47129
47176
|
};
|
|
47177
|
+
export declare type JiraQuerySearchUnsplashImagesArgs = {
|
|
47178
|
+
input: JiraUnsplashSearchInput;
|
|
47179
|
+
};
|
|
47130
47180
|
export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
47131
47181
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
47132
47182
|
cloudId: Scalars['ID']['input'];
|
|
@@ -49989,6 +50039,37 @@ export declare type JiraUnlinkIssuesFromIncidentMutationPayload = Payload & {
|
|
|
49989
50039
|
errors?: Maybe<Array<MutationError>>;
|
|
49990
50040
|
success: Scalars['Boolean']['output'];
|
|
49991
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
|
+
};
|
|
49992
50073
|
export declare type JiraUnsupportedLanguageError = {
|
|
49993
50074
|
__typename?: 'JiraUnsupportedLanguageError';
|
|
49994
50075
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -53220,6 +53301,13 @@ export declare type MarketplaceConnectAppDeployment = MarketplaceAppDeployment &
|
|
|
53220
53301
|
isDescriptorFileAvailable: Scalars['Boolean']['output'];
|
|
53221
53302
|
scopes: Array<ConnectAppScope>;
|
|
53222
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
|
+
};
|
|
53223
53311
|
export declare type MarketplaceConsoleAppSoftware = {
|
|
53224
53312
|
__typename?: 'MarketplaceConsoleAppSoftware';
|
|
53225
53313
|
appKey: Scalars['String']['output'];
|
|
@@ -53231,17 +53319,11 @@ export declare type MarketplaceConsoleAppSoftware = {
|
|
|
53231
53319
|
id: Scalars['ID']['output'];
|
|
53232
53320
|
latestVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53233
53321
|
};
|
|
53234
|
-
export declare type
|
|
53235
|
-
__typename?: '
|
|
53322
|
+
export declare type MarketplaceConsoleAppSoftwareShort = {
|
|
53323
|
+
__typename?: 'MarketplaceConsoleAppSoftwareShort';
|
|
53236
53324
|
appSoftwareId: Scalars['ID']['output'];
|
|
53237
|
-
hasAPaidVersion: Scalars['Boolean']['output'];
|
|
53238
53325
|
hosting: MarketplaceConsoleHosting;
|
|
53239
53326
|
};
|
|
53240
|
-
export declare type MarketplaceConsoleAppSoftwareMetadata = {
|
|
53241
|
-
__typename?: 'MarketplaceConsoleAppSoftwareMetadata';
|
|
53242
|
-
appSoftwareIds?: Maybe<Array<MarketplaceConsoleAppSoftwareId>>;
|
|
53243
|
-
missingPricingPlan: Scalars['Boolean']['output'];
|
|
53244
|
-
};
|
|
53245
53327
|
export declare type MarketplaceConsoleAppSoftwareVersion = {
|
|
53246
53328
|
__typename?: 'MarketplaceConsoleAppSoftwareVersion';
|
|
53247
53329
|
appSoftwareId: Scalars['ID']['output'];
|
|
@@ -53323,6 +53405,10 @@ export declare enum MarketplaceConsoleAppSoftwareVersionState {
|
|
|
53323
53405
|
Rejected = "REJECTED",
|
|
53324
53406
|
Submitted = "SUBMITTED"
|
|
53325
53407
|
}
|
|
53408
|
+
export declare type MarketplaceConsoleAppSoftwares = {
|
|
53409
|
+
__typename?: 'MarketplaceConsoleAppSoftwares';
|
|
53410
|
+
appSoftwares?: Maybe<Array<MarketplaceConsoleAppSoftwareShort>>;
|
|
53411
|
+
};
|
|
53326
53412
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
53327
53413
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
53328
53414
|
descriptorId: Scalars['ID']['output'];
|
|
@@ -53495,10 +53581,9 @@ export declare type MarketplaceConsoleHostingOption = {
|
|
|
53495
53581
|
export declare type MarketplaceConsoleImageMediaAsset = {
|
|
53496
53582
|
__typename?: 'MarketplaceConsoleImageMediaAsset';
|
|
53497
53583
|
altText?: Maybe<Scalars['String']['output']>;
|
|
53584
|
+
fileName: Scalars['String']['output'];
|
|
53498
53585
|
height: Scalars['Int']['output'];
|
|
53499
|
-
id: Scalars['String']['output'];
|
|
53500
53586
|
imageType: Scalars['String']['output'];
|
|
53501
|
-
name: Scalars['String']['output'];
|
|
53502
53587
|
uri: Scalars['String']['output'];
|
|
53503
53588
|
width: Scalars['Int']['output'];
|
|
53504
53589
|
};
|
|
@@ -53512,6 +53597,7 @@ export declare type MarketplaceConsoleLegacyMongoAppDetails = {
|
|
|
53512
53597
|
__typename?: 'MarketplaceConsoleLegacyMongoAppDetails';
|
|
53513
53598
|
hiddenIn?: Maybe<MarketplaceConsoleLegacyMongoPluginHiddenIn>;
|
|
53514
53599
|
hostingVisibility?: Maybe<MarketplaceConsoleLegacyMongoHostingVisibility>;
|
|
53600
|
+
isPricingPlanMissing?: Maybe<Scalars['Boolean']['output']>;
|
|
53515
53601
|
status: MarketplaceConsoleLegacyMongoStatus;
|
|
53516
53602
|
statusAfterApproval?: Maybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
53517
53603
|
};
|
|
@@ -53553,17 +53639,26 @@ export declare type MarketplaceConsoleListingScreenshot = {
|
|
|
53553
53639
|
export declare type MarketplaceConsoleMutationApi = {
|
|
53554
53640
|
__typename?: 'MarketplaceConsoleMutationApi';
|
|
53555
53641
|
activateEditions?: Maybe<MarketplaceConsoleEditionsActivation>;
|
|
53642
|
+
createAppSoftwareToken?: Maybe<MarketplaceConsoleTokenDetails>;
|
|
53556
53643
|
createEditions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53644
|
+
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
53557
53645
|
updateEdition?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
53558
53646
|
};
|
|
53559
53647
|
export declare type MarketplaceConsoleMutationApiActivateEditionsArgs = {
|
|
53560
53648
|
activationRequest: MarketplaceConsoleEditionsActivationRequest;
|
|
53561
53649
|
product: MarketplaceConsoleProduct;
|
|
53562
53650
|
};
|
|
53651
|
+
export declare type MarketplaceConsoleMutationApiCreateAppSoftwareTokenArgs = {
|
|
53652
|
+
appSoftwareId: Scalars['String']['input'];
|
|
53653
|
+
};
|
|
53563
53654
|
export declare type MarketplaceConsoleMutationApiCreateEditionsArgs = {
|
|
53564
53655
|
editions: Array<MarketplaceConsoleEditionCreate>;
|
|
53565
53656
|
product: MarketplaceConsoleProduct;
|
|
53566
53657
|
};
|
|
53658
|
+
export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
53659
|
+
appSoftwareId: Scalars['String']['input'];
|
|
53660
|
+
token: Scalars['String']['input'];
|
|
53661
|
+
};
|
|
53567
53662
|
export declare type MarketplaceConsoleMutationApiUpdateEditionArgs = {
|
|
53568
53663
|
edition: MarketplaceConsoleEditionUpdate;
|
|
53569
53664
|
product: MarketplaceConsoleProduct;
|
|
@@ -53668,6 +53763,23 @@ export declare type MarketplaceConsolePricingPlanModify = {
|
|
|
53668
53763
|
items: Array<MarketplaceConsolePricingItemModify>;
|
|
53669
53764
|
perUnitItems: Array<MarketplaceConsolePricingItemModify>;
|
|
53670
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
|
+
};
|
|
53671
53783
|
export declare type MarketplaceConsoleProduct = {
|
|
53672
53784
|
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
53673
53785
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -53710,10 +53822,11 @@ export declare type MarketplaceConsoleProductMetadata = {
|
|
|
53710
53822
|
};
|
|
53711
53823
|
export declare type MarketplaceConsoleQueryApi = {
|
|
53712
53824
|
__typename?: 'MarketplaceConsoleQueryApi';
|
|
53825
|
+
appPrivateListings?: Maybe<MarketplaceConsolePrivateListings>;
|
|
53713
53826
|
appSoftware: Array<MarketplaceConsoleAppSoftware>;
|
|
53714
|
-
appSoftwareMetadataByAppId?: Maybe<MarketplaceConsoleAppSoftwareMetadata>;
|
|
53715
53827
|
appSoftwareVersion?: Maybe<MarketplaceConsoleAppSoftwareVersion>;
|
|
53716
53828
|
appSoftwareVersionListing?: Maybe<MarketplaceConsoleAppSoftwareVersionListing>;
|
|
53829
|
+
appSoftwaresByAppId?: Maybe<MarketplaceConsoleAppSoftwares>;
|
|
53717
53830
|
currentPartnerContact?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53718
53831
|
currentPartnerContactByAppId?: Maybe<MarketplaceConsolePartnerContact>;
|
|
53719
53832
|
currentUserPreferences?: Maybe<MarketplaceConsoleUserPreferences>;
|
|
@@ -53726,10 +53839,12 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
53726
53839
|
productListingByAppId?: Maybe<MarketplaceConsoleProductListing>;
|
|
53727
53840
|
productMetadataByAppId?: Maybe<MarketplaceConsoleProductMetadata>;
|
|
53728
53841
|
};
|
|
53729
|
-
export declare type
|
|
53730
|
-
|
|
53842
|
+
export declare type MarketplaceConsoleQueryApiAppPrivateListingsArgs = {
|
|
53843
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53844
|
+
appSoftwareId: Scalars['ID']['input'];
|
|
53845
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53731
53846
|
};
|
|
53732
|
-
export declare type
|
|
53847
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwareArgs = {
|
|
53733
53848
|
appId: Scalars['ID']['input'];
|
|
53734
53849
|
};
|
|
53735
53850
|
export declare type MarketplaceConsoleQueryApiAppSoftwareVersionArgs = {
|
|
@@ -53740,6 +53855,9 @@ export declare type MarketplaceConsoleQueryApiAppSoftwareVersionListingArgs = {
|
|
|
53740
53855
|
appId: Scalars['ID']['input'];
|
|
53741
53856
|
buildNumber: Scalars['ID']['input'];
|
|
53742
53857
|
};
|
|
53858
|
+
export declare type MarketplaceConsoleQueryApiAppSoftwaresByAppIdArgs = {
|
|
53859
|
+
appId: Scalars['ID']['input'];
|
|
53860
|
+
};
|
|
53743
53861
|
export declare type MarketplaceConsoleQueryApiCurrentPartnerContactArgs = {
|
|
53744
53862
|
partnerId: Scalars['ID']['input'];
|
|
53745
53863
|
};
|
|
@@ -53774,6 +53892,12 @@ export declare type MarketplaceConsoleTagsContent = {
|
|
|
53774
53892
|
id: Scalars['ID']['output'];
|
|
53775
53893
|
name?: Maybe<Scalars['String']['output']>;
|
|
53776
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
|
+
};
|
|
53777
53901
|
export declare type MarketplaceConsoleUser = {
|
|
53778
53902
|
__typename?: 'MarketplaceConsoleUser';
|
|
53779
53903
|
atlassianAccountId: Scalars['ID']['output'];
|
|
@@ -63061,6 +63185,16 @@ export declare enum ShepherdAlertTemplateType {
|
|
|
63061
63185
|
IdentityPasswordResetCompletedUser = "IDENTITY_PASSWORD_RESET_COMPLETED_USER",
|
|
63062
63186
|
ImpossibleTravel = "IMPOSSIBLE_TRAVEL",
|
|
63063
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",
|
|
63064
63198
|
JiraIssueCrawling = "JIRA_ISSUE_CRAWLING",
|
|
63065
63199
|
LoginFromMaliciousIpAddress = "LOGIN_FROM_MALICIOUS_IP_ADDRESS",
|
|
63066
63200
|
LoginFromTorExitNode = "LOGIN_FROM_TOR_EXIT_NODE",
|
|
@@ -63332,6 +63466,7 @@ export declare type ShepherdDetection = {
|
|
|
63332
63466
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
63333
63467
|
id: Scalars['ID']['output'];
|
|
63334
63468
|
product: ShepherdAtlassianProduct;
|
|
63469
|
+
products: Array<Maybe<ShepherdAtlassianProduct>>;
|
|
63335
63470
|
regions?: Maybe<Array<Scalars['String']['output']>>;
|
|
63336
63471
|
relatedAlertTypes?: Maybe<Array<Maybe<ShepherdRelatedAlertType>>>;
|
|
63337
63472
|
scanningInfo: ShepherdDetectionScanningInfo;
|
|
@@ -63355,6 +63490,11 @@ export declare type ShepherdDetectionExclusionsSetting = {
|
|
|
63355
63490
|
allowedExclusions: Array<Scalars['String']['output']>;
|
|
63356
63491
|
exclusions: Array<ShepherdDetectionExclusion>;
|
|
63357
63492
|
};
|
|
63493
|
+
export declare type ShepherdDetectionJiraEnabledSetting = {
|
|
63494
|
+
__typename?: 'ShepherdDetectionJiraEnabledSetting';
|
|
63495
|
+
booleanDefault: Scalars['Boolean']['output'];
|
|
63496
|
+
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
63497
|
+
};
|
|
63358
63498
|
export declare type ShepherdDetectionRemoveSettingValuePayload = Payload & {
|
|
63359
63499
|
__typename?: 'ShepherdDetectionRemoveSettingValuePayload';
|
|
63360
63500
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -63409,7 +63549,7 @@ export declare type ShepherdDetectionSettingSetValueInput = {
|
|
|
63409
63549
|
stringValues?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
63410
63550
|
thresholdValue?: InputMaybe<ShepherdRateThresholdValue>;
|
|
63411
63551
|
};
|
|
63412
|
-
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionExclusionsSetting | ShepherdRateThresholdSetting;
|
|
63552
|
+
export declare type ShepherdDetectionSettingValueType = ShepherdDetectionBooleanSetting | ShepherdDetectionExclusionsSetting | ShepherdDetectionJiraEnabledSetting | ShepherdRateThresholdSetting;
|
|
63413
63553
|
export declare type ShepherdDetectionUpdateSettingValuePayload = Payload & {
|
|
63414
63554
|
__typename?: 'ShepherdDetectionUpdateSettingValuePayload';
|
|
63415
63555
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -63671,6 +63811,7 @@ export declare enum ShepherdRemediationActionType {
|
|
|
63671
63811
|
ReviewAuthPolicyRemediation = "REVIEW_AUTH_POLICY_REMEDIATION",
|
|
63672
63812
|
ReviewGsyncRemediation = "REVIEW_GSYNC_REMEDIATION",
|
|
63673
63813
|
ReviewIpAllowlistRemediation = "REVIEW_IP_ALLOWLIST_REMEDIATION",
|
|
63814
|
+
ReviewIssueRemediation = "REVIEW_ISSUE_REMEDIATION",
|
|
63674
63815
|
ReviewOtherAuthPoliciesRemediation = "REVIEW_OTHER_AUTH_POLICIES_REMEDIATION",
|
|
63675
63816
|
ReviewOtherIpAllowlistRemediation = "REVIEW_OTHER_IP_ALLOWLIST_REMEDIATION",
|
|
63676
63817
|
ReviewPageRemediation = "REVIEW_PAGE_REMEDIATION",
|
|
@@ -65504,6 +65645,7 @@ export declare type TownsquareCommentEdge = {
|
|
|
65504
65645
|
};
|
|
65505
65646
|
export declare type TownsquareCreateGoalInput = {
|
|
65506
65647
|
containerId: Scalars['String']['input'];
|
|
65648
|
+
goalTypeAri?: InputMaybe<Scalars['String']['input']>;
|
|
65507
65649
|
name: Scalars['String']['input'];
|
|
65508
65650
|
owner?: InputMaybe<Scalars['String']['input']>;
|
|
65509
65651
|
parentGoalAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65560,6 +65702,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
65560
65702
|
creationDate: Scalars['DateTime']['output'];
|
|
65561
65703
|
description?: Maybe<Scalars['String']['output']>;
|
|
65562
65704
|
dueDate?: Maybe<TownsquareTargetDate>;
|
|
65705
|
+
goalType?: Maybe<TownsquareGoalType>;
|
|
65563
65706
|
iconData?: Maybe<Scalars['String']['output']>;
|
|
65564
65707
|
id: Scalars['ID']['output'];
|
|
65565
65708
|
isArchived: Scalars['Boolean']['output'];
|
|
@@ -65627,6 +65770,43 @@ export declare enum TownsquareGoalStateValue {
|
|
|
65627
65770
|
Paused = "paused",
|
|
65628
65771
|
Pending = "pending"
|
|
65629
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
|
+
}
|
|
65630
65810
|
export declare type TownsquareLocalizationField = {
|
|
65631
65811
|
__typename?: 'TownsquareLocalizationField';
|
|
65632
65812
|
messageId?: Maybe<Scalars['String']['output']>;
|
|
@@ -65734,6 +65914,7 @@ export declare type TownsquareQueryApi = {
|
|
|
65734
65914
|
goal?: Maybe<TownsquareGoal>;
|
|
65735
65915
|
goalSearch?: Maybe<TownsquareGoalConnection>;
|
|
65736
65916
|
goalTql?: Maybe<TownsquareGoalConnection>;
|
|
65917
|
+
goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
65737
65918
|
goalsByAri?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
65738
65919
|
project?: Maybe<TownsquareProject>;
|
|
65739
65920
|
projectSearch?: Maybe<TownsquareProjectConnection>;
|
|
@@ -65766,6 +65947,12 @@ export declare type TownsquareQueryApiGoalTqlArgs = {
|
|
|
65766
65947
|
q: Scalars['String']['input'];
|
|
65767
65948
|
sort?: InputMaybe<Array<InputMaybe<TownsquareGoalSortEnum>>>;
|
|
65768
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
|
+
};
|
|
65769
65956
|
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
65770
65957
|
aris?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
65771
65958
|
};
|