@forge/cli-shared 3.25.2-next.1 → 3.25.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
|
@@ -141,7 +141,7 @@ export declare type ActionsActionTypeInput = {
|
|
|
141
141
|
__typename?: 'ActionsActionTypeInput';
|
|
142
142
|
aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
143
143
|
aiPromptAdditional?: Maybe<Scalars['String']['output']>;
|
|
144
|
-
|
|
144
|
+
default?: Maybe<Scalars['JSON']['output']>;
|
|
145
145
|
description: Scalars['String']['output'];
|
|
146
146
|
pattern?: Maybe<Scalars['String']['output']>;
|
|
147
147
|
required: Scalars['Boolean']['output'];
|
|
@@ -3265,6 +3265,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3265
3265
|
deleteComponentLink?: Maybe<DeleteCompassComponentLinkPayload>;
|
|
3266
3266
|
deleteComponentSubscription?: Maybe<CompassDeleteComponentSubscriptionPayload>;
|
|
3267
3267
|
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
3268
|
+
deleteDocument?: Maybe<CompassDeleteDocumentPayload>;
|
|
3268
3269
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
3269
3270
|
deleteIncomingWebhook?: Maybe<CompassDeleteIncomingWebhookPayload>;
|
|
3270
3271
|
deleteMetricDefinition?: Maybe<CompassDeleteMetricDefinitionPayload>;
|
|
@@ -3397,6 +3398,9 @@ export declare type CompassCatalogMutationApiDeleteComponentSubscriptionArgs = {
|
|
|
3397
3398
|
export declare type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
3398
3399
|
input: CompassDeleteCustomFieldDefinitionInput;
|
|
3399
3400
|
};
|
|
3401
|
+
export declare type CompassCatalogMutationApiDeleteDocumentArgs = {
|
|
3402
|
+
input: CompassDeleteDocumentInput;
|
|
3403
|
+
};
|
|
3400
3404
|
export declare type CompassCatalogMutationApiDeleteEventSourceArgs = {
|
|
3401
3405
|
input: DeleteEventSourceInput;
|
|
3402
3406
|
};
|
|
@@ -4297,6 +4301,15 @@ export declare type CompassDeleteCustomFieldDefinitionPayload = Payload & {
|
|
|
4297
4301
|
errors?: Maybe<Array<MutationError>>;
|
|
4298
4302
|
success: Scalars['Boolean']['output'];
|
|
4299
4303
|
};
|
|
4304
|
+
export declare type CompassDeleteDocumentInput = {
|
|
4305
|
+
id: Scalars['ID']['input'];
|
|
4306
|
+
};
|
|
4307
|
+
export declare type CompassDeleteDocumentPayload = Payload & {
|
|
4308
|
+
__typename?: 'CompassDeleteDocumentPayload';
|
|
4309
|
+
deletedDocumentId?: Maybe<Scalars['ID']['output']>;
|
|
4310
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4311
|
+
success: Scalars['Boolean']['output'];
|
|
4312
|
+
};
|
|
4300
4313
|
export declare type CompassDeleteExternalAliasInput = {
|
|
4301
4314
|
externalId: Scalars['ID']['input'];
|
|
4302
4315
|
externalSource: Scalars['ID']['input'];
|
|
@@ -7377,9 +7390,9 @@ export declare enum ContentPlatformSearchTypes {
|
|
|
7377
7390
|
export declare type ContentPlatformSolution = {
|
|
7378
7391
|
__typename?: 'ContentPlatformSolution';
|
|
7379
7392
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7393
|
+
id: Scalars['String']['output'];
|
|
7394
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7380
7395
|
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
7381
|
-
solutionId: Scalars['String']['output'];
|
|
7382
|
-
solutionName?: Maybe<Scalars['String']['output']>;
|
|
7383
7396
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7384
7397
|
};
|
|
7385
7398
|
export declare type ContentPlatformSortClause = {
|
|
@@ -27189,6 +27202,14 @@ export declare enum InsightsEnvironmentType {
|
|
|
27189
27202
|
Testing = "TESTING",
|
|
27190
27203
|
Unmapped = "UNMAPPED"
|
|
27191
27204
|
}
|
|
27205
|
+
export declare type InsightsGithubOnboardingActionInput = {
|
|
27206
|
+
cloudId: Scalars['ID']['input'];
|
|
27207
|
+
};
|
|
27208
|
+
export declare type InsightsGithubOnboardingActionResponse = Payload & {
|
|
27209
|
+
__typename?: 'InsightsGithubOnboardingActionResponse';
|
|
27210
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27211
|
+
success: Scalars['Boolean']['output'];
|
|
27212
|
+
};
|
|
27192
27213
|
export declare type InsightsGithubOnboardingDetails = {
|
|
27193
27214
|
__typename?: 'InsightsGithubOnboardingDetails';
|
|
27194
27215
|
outboundAuthUrl: Scalars['String']['output'];
|
|
@@ -27196,17 +27217,29 @@ export declare type InsightsGithubOnboardingDetails = {
|
|
|
27196
27217
|
};
|
|
27197
27218
|
export declare type InsightsMutation = {
|
|
27198
27219
|
__typename?: 'InsightsMutation';
|
|
27220
|
+
purgeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27199
27221
|
purgeUserActionStateForCurrentUser?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
27222
|
+
removeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27200
27223
|
removeTask?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
27224
|
+
snoozeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27201
27225
|
snoozeTask?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
27202
27226
|
};
|
|
27227
|
+
export declare type InsightsMutationPurgeOnboardingArgs = {
|
|
27228
|
+
input: InsightsGithubOnboardingActionInput;
|
|
27229
|
+
};
|
|
27203
27230
|
export declare type InsightsMutationPurgeUserActionStateForCurrentUserArgs = {
|
|
27204
27231
|
input: InsightsPurgeUserActionStateInput;
|
|
27205
27232
|
};
|
|
27233
|
+
export declare type InsightsMutationRemoveOnboardingArgs = {
|
|
27234
|
+
input: InsightsGithubOnboardingActionInput;
|
|
27235
|
+
};
|
|
27206
27236
|
export declare type InsightsMutationRemoveTaskArgs = {
|
|
27207
27237
|
cloudId: Scalars['ID']['input'];
|
|
27208
27238
|
input: InsightsActionNextBestTaskInput;
|
|
27209
27239
|
};
|
|
27240
|
+
export declare type InsightsMutationSnoozeOnboardingArgs = {
|
|
27241
|
+
input: InsightsGithubOnboardingActionInput;
|
|
27242
|
+
};
|
|
27210
27243
|
export declare type InsightsMutationSnoozeTaskArgs = {
|
|
27211
27244
|
cloudId: Scalars['ID']['input'];
|
|
27212
27245
|
input: InsightsActionNextBestTaskInput;
|
|
@@ -28807,7 +28840,7 @@ export declare type JiraCascadingOptionsEdge = {
|
|
|
28807
28840
|
cursor: Scalars['String']['output'];
|
|
28808
28841
|
node?: Maybe<JiraCascadingOptions>;
|
|
28809
28842
|
};
|
|
28810
|
-
export declare type JiraCascadingSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
28843
|
+
export declare type JiraCascadingSelectField = JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
28811
28844
|
__typename?: 'JiraCascadingSelectField';
|
|
28812
28845
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
28813
28846
|
cascadingOption?: Maybe<JiraCascadingOption>;
|
|
@@ -28819,6 +28852,7 @@ export declare type JiraCascadingSelectField = JiraIssueField & JiraIssueFieldCo
|
|
|
28819
28852
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
28820
28853
|
name: Scalars['String']['output'];
|
|
28821
28854
|
parentOptions?: Maybe<JiraParentOptionConnection>;
|
|
28855
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
28822
28856
|
type: Scalars['String']['output'];
|
|
28823
28857
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
28824
28858
|
};
|
|
@@ -28836,6 +28870,14 @@ export declare type JiraCascadingSelectFieldParentOptionsArgs = {
|
|
|
28836
28870
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28837
28871
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
28838
28872
|
};
|
|
28873
|
+
export declare type JiraCascadingSelectFieldSelectableValueOptionsArgs = {
|
|
28874
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28875
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
28876
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
28877
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28878
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28879
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
28880
|
+
};
|
|
28839
28881
|
export declare type JiraCascadingSelectFieldInput = {
|
|
28840
28882
|
childOptionValue?: InputMaybe<JiraSelectedOptionInput>;
|
|
28841
28883
|
fieldId: Scalars['ID']['input'];
|
|
@@ -30767,6 +30809,7 @@ export declare type JiraIssue = Node & {
|
|
|
30767
30809
|
__typename?: 'JiraIssue';
|
|
30768
30810
|
assignee?: Maybe<Scalars['String']['output']>;
|
|
30769
30811
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
30812
|
+
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
30770
30813
|
childIssues?: Maybe<JiraChildIssues>;
|
|
30771
30814
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
30772
30815
|
comments?: Maybe<JiraCommentConnection>;
|
|
@@ -31404,9 +31447,14 @@ export declare type JiraIssueLinkFieldIssueLinkTypeRelationsArgs = {
|
|
|
31404
31447
|
export declare type JiraIssueLinkFieldIssuesArgs = {
|
|
31405
31448
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31406
31449
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
31450
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
31407
31451
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31452
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
31408
31453
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31454
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
31409
31455
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
31456
|
+
showSubTaskParent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31457
|
+
showSubTasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31410
31458
|
};
|
|
31411
31459
|
export declare type JiraIssueLinkType = Node & {
|
|
31412
31460
|
__typename?: 'JiraIssueLinkType';
|
|
@@ -31689,6 +31737,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
31689
31737
|
export declare type JiraIssueTransitionComment = {
|
|
31690
31738
|
__typename?: 'JiraIssueTransitionComment';
|
|
31691
31739
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
31740
|
+
enableCommentVisibility?: Maybe<Scalars['Boolean']['output']>;
|
|
31692
31741
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
31693
31742
|
types?: Maybe<Array<Maybe<JiraIssueTransitionCommentType>>>;
|
|
31694
31743
|
};
|
|
@@ -33403,6 +33452,7 @@ export declare type JiraNotificationPreferences = {
|
|
|
33403
33452
|
issueMoved?: Maybe<JiraNotificationPreference>;
|
|
33404
33453
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
33405
33454
|
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
33455
|
+
miscellaneousIssueEventCombined?: Maybe<JiraNotificationPreference>;
|
|
33406
33456
|
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
33407
33457
|
};
|
|
33408
33458
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
@@ -33427,6 +33477,7 @@ export declare enum JiraNotificationType {
|
|
|
33427
33477
|
IssueMoved = "ISSUE_MOVED",
|
|
33428
33478
|
IssueUpdated = "ISSUE_UPDATED",
|
|
33429
33479
|
MentionsCombined = "MENTIONS_COMBINED",
|
|
33480
|
+
MiscellaneousIssueEventCombined = "MISCELLANEOUS_ISSUE_EVENT_COMBINED",
|
|
33430
33481
|
WorklogCombined = "WORKLOG_COMBINED"
|
|
33431
33482
|
}
|
|
33432
33483
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
@@ -33766,11 +33817,16 @@ export declare type JiraParentIssueFieldParentCandidatesForExistingIssueArgs = {
|
|
|
33766
33817
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33767
33818
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
33768
33819
|
};
|
|
33769
|
-
export declare type JiraParentOption = Node & {
|
|
33820
|
+
export declare type JiraParentOption = JiraHasSelectableValueOptions & JiraSelectableValue & Node & {
|
|
33770
33821
|
__typename?: 'JiraParentOption';
|
|
33771
33822
|
childOptions?: Maybe<JiraOptionConnection>;
|
|
33772
33823
|
id: Scalars['ID']['output'];
|
|
33773
33824
|
isDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
33825
|
+
selectableGroupKey?: Maybe<Scalars['String']['output']>;
|
|
33826
|
+
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
33827
|
+
selectableLabel?: Maybe<Scalars['String']['output']>;
|
|
33828
|
+
selectableUrl?: Maybe<Scalars['URL']['output']>;
|
|
33829
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
33774
33830
|
value?: Maybe<Scalars['String']['output']>;
|
|
33775
33831
|
};
|
|
33776
33832
|
export declare type JiraParentOptionChildOptionsArgs = {
|
|
@@ -33781,6 +33837,14 @@ export declare type JiraParentOptionChildOptionsArgs = {
|
|
|
33781
33837
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33782
33838
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
33783
33839
|
};
|
|
33840
|
+
export declare type JiraParentOptionSelectableValueOptionsArgs = {
|
|
33841
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33842
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
33843
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
33844
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33845
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33846
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
33847
|
+
};
|
|
33784
33848
|
export declare type JiraParentOptionConnection = {
|
|
33785
33849
|
__typename?: 'JiraParentOptionConnection';
|
|
33786
33850
|
edges?: Maybe<Array<Maybe<JiraParentOptionEdge>>>;
|
|
@@ -34119,6 +34183,7 @@ export declare type JiraProject = Node & {
|
|
|
34119
34183
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
34120
34184
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
34121
34185
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
34186
|
+
jwmDefaultSavedView?: Maybe<JiraWorkManagementSavedViewResult>;
|
|
34122
34187
|
key: Scalars['String']['output'];
|
|
34123
34188
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
34124
34189
|
lastUpdatedFormatted?: Maybe<Scalars['String']['output']>;
|
|
@@ -34813,7 +34878,8 @@ export declare type JiraQuery = {
|
|
|
34813
34878
|
jwmNavigationByProjectKey?: Maybe<JiraWorkManagementNavigation>;
|
|
34814
34879
|
jwmOverview?: Maybe<JiraWorkManagementGiraOverviewResult>;
|
|
34815
34880
|
jwmOverviews?: Maybe<JiraWorkManagementGiraOverviewConnection>;
|
|
34816
|
-
jwmSavedViewById?: Maybe<
|
|
34881
|
+
jwmSavedViewById?: Maybe<JiraWorkManagementSavedViewResult>;
|
|
34882
|
+
jwmSavedViewByProjectKeyAndItemId?: Maybe<JiraWorkManagementSavedViewResult>;
|
|
34817
34883
|
jwmSavedViewsByProject?: Maybe<JiraNavigationItemConnection>;
|
|
34818
34884
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
34819
34885
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
@@ -34841,6 +34907,7 @@ export declare type JiraQuery = {
|
|
|
34841
34907
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
34842
34908
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
34843
34909
|
scaledConfiguration?: Maybe<JiraSafeConfiguration>;
|
|
34910
|
+
scaledConfigurationPermissions?: Maybe<JiraScaledConfigurationPermissions>;
|
|
34844
34911
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
34845
34912
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
34846
34913
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -35269,6 +35336,11 @@ export declare type JiraQueryJwmOverviewsArgs = {
|
|
|
35269
35336
|
export declare type JiraQueryJwmSavedViewByIdArgs = {
|
|
35270
35337
|
id: Scalars['ID']['input'];
|
|
35271
35338
|
};
|
|
35339
|
+
export declare type JiraQueryJwmSavedViewByProjectKeyAndItemIdArgs = {
|
|
35340
|
+
cloudId: Scalars['ID']['input'];
|
|
35341
|
+
itemId: Scalars['ID']['input'];
|
|
35342
|
+
projectKey: Scalars['String']['input'];
|
|
35343
|
+
};
|
|
35272
35344
|
export declare type JiraQueryJwmSavedViewsByProjectArgs = {
|
|
35273
35345
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35274
35346
|
cloudId: Scalars['ID']['input'];
|
|
@@ -35397,6 +35469,9 @@ export declare type JiraQueryScaledConfigurationArgs = {
|
|
|
35397
35469
|
cloudId: Scalars['ID']['input'];
|
|
35398
35470
|
id: Scalars['ID']['input'];
|
|
35399
35471
|
};
|
|
35472
|
+
export declare type JiraQueryScaledConfigurationPermissionsArgs = {
|
|
35473
|
+
cloudId: Scalars['ID']['input'];
|
|
35474
|
+
};
|
|
35400
35475
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
35401
35476
|
issueId: Scalars['ID']['input'];
|
|
35402
35477
|
};
|
|
@@ -35802,6 +35877,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
35802
35877
|
name: Scalars['String']['output'];
|
|
35803
35878
|
resolution?: Maybe<JiraResolution>;
|
|
35804
35879
|
resolutions?: Maybe<JiraResolutionConnection>;
|
|
35880
|
+
resolutionsForTransition?: Maybe<JiraResolutionConnection>;
|
|
35805
35881
|
type: Scalars['String']['output'];
|
|
35806
35882
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
35807
35883
|
};
|
|
@@ -35814,6 +35890,16 @@ export declare type JiraResolutionFieldResolutionsArgs = {
|
|
|
35814
35890
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
35815
35891
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35816
35892
|
};
|
|
35893
|
+
export declare type JiraResolutionFieldResolutionsForTransitionArgs = {
|
|
35894
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35895
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35896
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
35897
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35898
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35899
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
35900
|
+
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35901
|
+
transitionId: Scalars['String']['input'];
|
|
35902
|
+
};
|
|
35817
35903
|
export declare type JiraResolutionFieldOperationInput = {
|
|
35818
35904
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
35819
35905
|
operation: JiraSingleValueFieldOperations;
|
|
@@ -36048,6 +36134,16 @@ export declare type JiraSafeTeamBoardEdge = {
|
|
|
36048
36134
|
cursor: Scalars['String']['output'];
|
|
36049
36135
|
node?: Maybe<JiraSafeTeamBoard>;
|
|
36050
36136
|
};
|
|
36137
|
+
export declare enum JiraScaledConfigurationPermission {
|
|
36138
|
+
Edit = "EDIT",
|
|
36139
|
+
None = "NONE",
|
|
36140
|
+
View = "VIEW"
|
|
36141
|
+
}
|
|
36142
|
+
export declare type JiraScaledConfigurationPermissions = {
|
|
36143
|
+
__typename?: 'JiraScaledConfigurationPermissions';
|
|
36144
|
+
hasEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
36145
|
+
userPermissions?: Maybe<JiraScaledConfigurationPermission>;
|
|
36146
|
+
};
|
|
36051
36147
|
export declare type JiraScmRepository = {
|
|
36052
36148
|
__typename?: 'JiraScmRepository';
|
|
36053
36149
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -39544,6 +39640,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
39544
39640
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
39545
39641
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
39546
39642
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
39643
|
+
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
39547
39644
|
};
|
|
39548
39645
|
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
39549
39646
|
keyPhrase: Scalars['String']['input'];
|
|
@@ -39554,6 +39651,11 @@ export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
|
39554
39651
|
query: Scalars['String']['input'];
|
|
39555
39652
|
workspaceId: Scalars['String']['input'];
|
|
39556
39653
|
};
|
|
39654
|
+
export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
39655
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
39656
|
+
id: Scalars['String']['input'];
|
|
39657
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
39658
|
+
};
|
|
39557
39659
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
39558
39660
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
39559
39661
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
@@ -39566,6 +39668,24 @@ export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
|
39566
39668
|
transformedQuery: Scalars['String']['output'];
|
|
39567
39669
|
};
|
|
39568
39670
|
export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
|
|
39671
|
+
export declare type KnowledgeDiscoveryTopic = {
|
|
39672
|
+
__typename?: 'KnowledgeDiscoveryTopic';
|
|
39673
|
+
description: Scalars['String']['output'];
|
|
39674
|
+
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
39675
|
+
id: Scalars['ID']['output'];
|
|
39676
|
+
name: Scalars['String']['output'];
|
|
39677
|
+
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
39678
|
+
updatedAt: Scalars['String']['output'];
|
|
39679
|
+
};
|
|
39680
|
+
export declare type KnowledgeDiscoveryTopicResult = KnowledgeDiscoveryTopic | QueryError;
|
|
39681
|
+
export declare enum KnowledgeDiscoveryTopicType {
|
|
39682
|
+
Area = "AREA",
|
|
39683
|
+
Company = "COMPANY",
|
|
39684
|
+
Event = "EVENT",
|
|
39685
|
+
Process = "PROCESS",
|
|
39686
|
+
Program = "PROGRAM",
|
|
39687
|
+
Team = "TEAM"
|
|
39688
|
+
}
|
|
39569
39689
|
export declare type LabelUsage = {
|
|
39570
39690
|
__typename?: 'LabelUsage';
|
|
39571
39691
|
count: Scalars['Int']['output'];
|
|
@@ -43310,6 +43430,9 @@ export declare type QueryHelpExternalResourceArgs = {
|
|
|
43310
43430
|
export declare type QueryHelpLayoutArgs = {
|
|
43311
43431
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
43312
43432
|
};
|
|
43433
|
+
export declare type QueryHelpObjectStoreArgs = {
|
|
43434
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
43435
|
+
};
|
|
43313
43436
|
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
43314
43437
|
appId: Scalars['ID']['input'];
|
|
43315
43438
|
};
|
|
@@ -45029,6 +45152,16 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
45029
45152
|
type: SearchResultType;
|
|
45030
45153
|
url: Scalars['URL']['output'];
|
|
45031
45154
|
};
|
|
45155
|
+
export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
45156
|
+
__typename?: 'SearchResultBitbucketRepository';
|
|
45157
|
+
description: Scalars['String']['output'];
|
|
45158
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
45159
|
+
id: Scalars['ID']['output'];
|
|
45160
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
45161
|
+
title: Scalars['String']['output'];
|
|
45162
|
+
type: SearchResultType;
|
|
45163
|
+
url: Scalars['URL']['output'];
|
|
45164
|
+
};
|
|
45032
45165
|
export declare type SearchResultGoogleDocument = SearchResult & {
|
|
45033
45166
|
__typename?: 'SearchResultGoogleDocument';
|
|
45034
45167
|
description: Scalars['String']['output'];
|
|
@@ -45129,6 +45262,26 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
|
45129
45262
|
type: SearchResultType;
|
|
45130
45263
|
url: Scalars['URL']['output'];
|
|
45131
45264
|
};
|
|
45265
|
+
export declare type SearchResultTrelloBoard = SearchResult & {
|
|
45266
|
+
__typename?: 'SearchResultTrelloBoard';
|
|
45267
|
+
description: Scalars['String']['output'];
|
|
45268
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
45269
|
+
id: Scalars['ID']['output'];
|
|
45270
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
45271
|
+
title: Scalars['String']['output'];
|
|
45272
|
+
type: SearchResultType;
|
|
45273
|
+
url: Scalars['URL']['output'];
|
|
45274
|
+
};
|
|
45275
|
+
export declare type SearchResultTrelloCard = SearchResult & {
|
|
45276
|
+
__typename?: 'SearchResultTrelloCard';
|
|
45277
|
+
description: Scalars['String']['output'];
|
|
45278
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
45279
|
+
id: Scalars['ID']['output'];
|
|
45280
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
45281
|
+
title: Scalars['String']['output'];
|
|
45282
|
+
type: SearchResultType;
|
|
45283
|
+
url: Scalars['URL']['output'];
|
|
45284
|
+
};
|
|
45132
45285
|
export declare enum SearchResultType {
|
|
45133
45286
|
Attachment = "attachment",
|
|
45134
45287
|
Blogpost = "blogpost",
|
|
@@ -45146,6 +45299,7 @@ export declare enum SearchResultType {
|
|
|
45146
45299
|
Plan = "plan",
|
|
45147
45300
|
Project = "project",
|
|
45148
45301
|
Question = "question",
|
|
45302
|
+
Repository = "repository",
|
|
45149
45303
|
Space = "space",
|
|
45150
45304
|
Tag = "tag",
|
|
45151
45305
|
Unrecognised = "unrecognised",
|