@forge/cli-shared 3.25.2-next.1 → 3.26.0-next.0
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 +14 -0
- package/out/graphql/graphql-types.d.ts +269 -8
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +44 -12
- package/out/index.d.ts +1 -0
- package/out/index.d.ts.map +1 -1
- package/out/index.js +1 -0
- package/out/tunnel/index.d.ts +2 -0
- package/out/tunnel/index.d.ts.map +1 -0
- package/out/tunnel/index.js +4 -0
- package/out/tunnel/tunnel-options.d.ts +10 -0
- package/out/tunnel/tunnel-options.d.ts.map +1 -0
- package/out/tunnel/tunnel-options.js +2 -0
- package/out/ui/text.d.ts +4 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -1
- package/package.json +2 -2
|
@@ -48,6 +48,10 @@ export declare type Scalars = {
|
|
|
48
48
|
input: any;
|
|
49
49
|
output: any;
|
|
50
50
|
};
|
|
51
|
+
BigDecimal: {
|
|
52
|
+
input: any;
|
|
53
|
+
output: any;
|
|
54
|
+
};
|
|
51
55
|
CardPaletteColor: {
|
|
52
56
|
input: any;
|
|
53
57
|
output: any;
|
|
@@ -141,7 +145,7 @@ export declare type ActionsActionTypeInput = {
|
|
|
141
145
|
__typename?: 'ActionsActionTypeInput';
|
|
142
146
|
aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
143
147
|
aiPromptAdditional?: Maybe<Scalars['String']['output']>;
|
|
144
|
-
|
|
148
|
+
default?: Maybe<Scalars['JSON']['output']>;
|
|
145
149
|
description: Scalars['String']['output'];
|
|
146
150
|
pattern?: Maybe<Scalars['String']['output']>;
|
|
147
151
|
required: Scalars['Boolean']['output'];
|
|
@@ -770,6 +774,19 @@ export declare type AdminWorkspacesMeta = {
|
|
|
770
774
|
startIndex?: Maybe<Scalars['Int']['output']>;
|
|
771
775
|
total?: Maybe<Scalars['Int']['output']>;
|
|
772
776
|
};
|
|
777
|
+
export declare enum AlertEventStatus {
|
|
778
|
+
Acknowledged = "ACKNOWLEDGED",
|
|
779
|
+
Closed = "CLOSED",
|
|
780
|
+
Opened = "OPENED",
|
|
781
|
+
Snoozed = "SNOOZED"
|
|
782
|
+
}
|
|
783
|
+
export declare enum AlertPriority {
|
|
784
|
+
P1 = "P1",
|
|
785
|
+
P2 = "P2",
|
|
786
|
+
P3 = "P3",
|
|
787
|
+
P4 = "P4",
|
|
788
|
+
P5 = "P5"
|
|
789
|
+
}
|
|
773
790
|
export declare enum ApiContext {
|
|
774
791
|
Devops = "DEVOPS"
|
|
775
792
|
}
|
|
@@ -3120,9 +3137,13 @@ export declare type CompassAlertEvent = CompassEvent & {
|
|
|
3120
3137
|
export declare type CompassAlertEventProperties = {
|
|
3121
3138
|
__typename?: 'CompassAlertEventProperties';
|
|
3122
3139
|
id: Scalars['ID']['output'];
|
|
3140
|
+
priority?: Maybe<Scalars['String']['output']>;
|
|
3141
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
3123
3142
|
};
|
|
3124
3143
|
export declare type CompassAlertEventPropertiesInput = {
|
|
3125
3144
|
id: Scalars['ID']['input'];
|
|
3145
|
+
priority?: InputMaybe<AlertPriority>;
|
|
3146
|
+
status?: InputMaybe<AlertEventStatus>;
|
|
3126
3147
|
};
|
|
3127
3148
|
export declare type CompassAnnouncement = {
|
|
3128
3149
|
__typename?: 'CompassAnnouncement';
|
|
@@ -3265,6 +3286,7 @@ export declare type CompassCatalogMutationApi = {
|
|
|
3265
3286
|
deleteComponentLink?: Maybe<DeleteCompassComponentLinkPayload>;
|
|
3266
3287
|
deleteComponentSubscription?: Maybe<CompassDeleteComponentSubscriptionPayload>;
|
|
3267
3288
|
deleteCustomFieldDefinition?: Maybe<CompassDeleteCustomFieldDefinitionPayload>;
|
|
3289
|
+
deleteDocument?: Maybe<CompassDeleteDocumentPayload>;
|
|
3268
3290
|
deleteEventSource?: Maybe<DeleteEventSourcePayload>;
|
|
3269
3291
|
deleteIncomingWebhook?: Maybe<CompassDeleteIncomingWebhookPayload>;
|
|
3270
3292
|
deleteMetricDefinition?: Maybe<CompassDeleteMetricDefinitionPayload>;
|
|
@@ -3397,6 +3419,9 @@ export declare type CompassCatalogMutationApiDeleteComponentSubscriptionArgs = {
|
|
|
3397
3419
|
export declare type CompassCatalogMutationApiDeleteCustomFieldDefinitionArgs = {
|
|
3398
3420
|
input: CompassDeleteCustomFieldDefinitionInput;
|
|
3399
3421
|
};
|
|
3422
|
+
export declare type CompassCatalogMutationApiDeleteDocumentArgs = {
|
|
3423
|
+
input: CompassDeleteDocumentInput;
|
|
3424
|
+
};
|
|
3400
3425
|
export declare type CompassCatalogMutationApiDeleteEventSourceArgs = {
|
|
3401
3426
|
input: DeleteEventSourceInput;
|
|
3402
3427
|
};
|
|
@@ -4297,6 +4322,15 @@ export declare type CompassDeleteCustomFieldDefinitionPayload = Payload & {
|
|
|
4297
4322
|
errors?: Maybe<Array<MutationError>>;
|
|
4298
4323
|
success: Scalars['Boolean']['output'];
|
|
4299
4324
|
};
|
|
4325
|
+
export declare type CompassDeleteDocumentInput = {
|
|
4326
|
+
id: Scalars['ID']['input'];
|
|
4327
|
+
};
|
|
4328
|
+
export declare type CompassDeleteDocumentPayload = Payload & {
|
|
4329
|
+
__typename?: 'CompassDeleteDocumentPayload';
|
|
4330
|
+
deletedDocumentId?: Maybe<Scalars['ID']['output']>;
|
|
4331
|
+
errors?: Maybe<Array<MutationError>>;
|
|
4332
|
+
success: Scalars['Boolean']['output'];
|
|
4333
|
+
};
|
|
4300
4334
|
export declare type CompassDeleteExternalAliasInput = {
|
|
4301
4335
|
externalId: Scalars['ID']['input'];
|
|
4302
4336
|
externalSource: Scalars['ID']['input'];
|
|
@@ -6487,6 +6521,11 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
6487
6521
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
6488
6522
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
6489
6523
|
};
|
|
6524
|
+
export declare type ConfluencePublicLinkPage = {
|
|
6525
|
+
__typename?: 'ConfluencePublicLinkPage';
|
|
6526
|
+
body?: Maybe<ConfluenceBodies>;
|
|
6527
|
+
type?: Maybe<ConfluenceContentType>;
|
|
6528
|
+
};
|
|
6490
6529
|
export declare type ConfluencePublishBlogPostInput = {
|
|
6491
6530
|
id: Scalars['ID']['input'];
|
|
6492
6531
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6536,6 +6575,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
6536
6575
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
6537
6576
|
page?: Maybe<ConfluencePage>;
|
|
6538
6577
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
6578
|
+
publicLink?: Maybe<ConfluencePublicLinkPage>;
|
|
6539
6579
|
space?: Maybe<ConfluenceSpace>;
|
|
6540
6580
|
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
6541
6581
|
validateSpaceKey?: Maybe<ConfluenceValidateSpaceKeyResponse>;
|
|
@@ -6578,6 +6618,9 @@ export declare type ConfluenceQueryApiPageArgs = {
|
|
|
6578
6618
|
export declare type ConfluenceQueryApiPagesArgs = {
|
|
6579
6619
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
6580
6620
|
};
|
|
6621
|
+
export declare type ConfluenceQueryApiPublicLinkArgs = {
|
|
6622
|
+
id: Scalars['ID']['input'];
|
|
6623
|
+
};
|
|
6581
6624
|
export declare type ConfluenceQueryApiSpaceArgs = {
|
|
6582
6625
|
id: Scalars['ID']['input'];
|
|
6583
6626
|
};
|
|
@@ -7377,9 +7420,9 @@ export declare enum ContentPlatformSearchTypes {
|
|
|
7377
7420
|
export declare type ContentPlatformSolution = {
|
|
7378
7421
|
__typename?: 'ContentPlatformSolution';
|
|
7379
7422
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7423
|
+
id: Scalars['String']['output'];
|
|
7424
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
7380
7425
|
shortDescription?: Maybe<Scalars['String']['output']>;
|
|
7381
|
-
solutionId: Scalars['String']['output'];
|
|
7382
|
-
solutionName?: Maybe<Scalars['String']['output']>;
|
|
7383
7426
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7384
7427
|
};
|
|
7385
7428
|
export declare type ContentPlatformSortClause = {
|
|
@@ -10070,7 +10113,6 @@ export declare type DevOpsOperationsComponentDetails = {
|
|
|
10070
10113
|
id: Scalars['ID']['output'];
|
|
10071
10114
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
10072
10115
|
name?: Maybe<Scalars['String']['output']>;
|
|
10073
|
-
providerAri?: Maybe<Scalars['String']['output']>;
|
|
10074
10116
|
providerComponentId?: Maybe<Scalars['String']['output']>;
|
|
10075
10117
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
10076
10118
|
tier?: Maybe<DevOpsComponentTier>;
|
|
@@ -27189,6 +27231,14 @@ export declare enum InsightsEnvironmentType {
|
|
|
27189
27231
|
Testing = "TESTING",
|
|
27190
27232
|
Unmapped = "UNMAPPED"
|
|
27191
27233
|
}
|
|
27234
|
+
export declare type InsightsGithubOnboardingActionInput = {
|
|
27235
|
+
cloudId: Scalars['ID']['input'];
|
|
27236
|
+
};
|
|
27237
|
+
export declare type InsightsGithubOnboardingActionResponse = Payload & {
|
|
27238
|
+
__typename?: 'InsightsGithubOnboardingActionResponse';
|
|
27239
|
+
errors?: Maybe<Array<MutationError>>;
|
|
27240
|
+
success: Scalars['Boolean']['output'];
|
|
27241
|
+
};
|
|
27192
27242
|
export declare type InsightsGithubOnboardingDetails = {
|
|
27193
27243
|
__typename?: 'InsightsGithubOnboardingDetails';
|
|
27194
27244
|
outboundAuthUrl: Scalars['String']['output'];
|
|
@@ -27196,17 +27246,29 @@ export declare type InsightsGithubOnboardingDetails = {
|
|
|
27196
27246
|
};
|
|
27197
27247
|
export declare type InsightsMutation = {
|
|
27198
27248
|
__typename?: 'InsightsMutation';
|
|
27249
|
+
purgeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27199
27250
|
purgeUserActionStateForCurrentUser?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
27251
|
+
removeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27200
27252
|
removeTask?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
27253
|
+
snoozeOnboarding?: Maybe<InsightsGithubOnboardingActionResponse>;
|
|
27201
27254
|
snoozeTask?: Maybe<InsightsActionNextBestTaskPayload>;
|
|
27202
27255
|
};
|
|
27256
|
+
export declare type InsightsMutationPurgeOnboardingArgs = {
|
|
27257
|
+
input: InsightsGithubOnboardingActionInput;
|
|
27258
|
+
};
|
|
27203
27259
|
export declare type InsightsMutationPurgeUserActionStateForCurrentUserArgs = {
|
|
27204
27260
|
input: InsightsPurgeUserActionStateInput;
|
|
27205
27261
|
};
|
|
27262
|
+
export declare type InsightsMutationRemoveOnboardingArgs = {
|
|
27263
|
+
input: InsightsGithubOnboardingActionInput;
|
|
27264
|
+
};
|
|
27206
27265
|
export declare type InsightsMutationRemoveTaskArgs = {
|
|
27207
27266
|
cloudId: Scalars['ID']['input'];
|
|
27208
27267
|
input: InsightsActionNextBestTaskInput;
|
|
27209
27268
|
};
|
|
27269
|
+
export declare type InsightsMutationSnoozeOnboardingArgs = {
|
|
27270
|
+
input: InsightsGithubOnboardingActionInput;
|
|
27271
|
+
};
|
|
27210
27272
|
export declare type InsightsMutationSnoozeTaskArgs = {
|
|
27211
27273
|
cloudId: Scalars['ID']['input'];
|
|
27212
27274
|
input: InsightsActionNextBestTaskInput;
|
|
@@ -28807,7 +28869,7 @@ export declare type JiraCascadingOptionsEdge = {
|
|
|
28807
28869
|
cursor: Scalars['String']['output'];
|
|
28808
28870
|
node?: Maybe<JiraCascadingOptions>;
|
|
28809
28871
|
};
|
|
28810
|
-
export declare type JiraCascadingSelectField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
28872
|
+
export declare type JiraCascadingSelectField = JiraHasSelectableValueOptions & JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
28811
28873
|
__typename?: 'JiraCascadingSelectField';
|
|
28812
28874
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
28813
28875
|
cascadingOption?: Maybe<JiraCascadingOption>;
|
|
@@ -28819,6 +28881,7 @@ export declare type JiraCascadingSelectField = JiraIssueField & JiraIssueFieldCo
|
|
|
28819
28881
|
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
28820
28882
|
name: Scalars['String']['output'];
|
|
28821
28883
|
parentOptions?: Maybe<JiraParentOptionConnection>;
|
|
28884
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
28822
28885
|
type: Scalars['String']['output'];
|
|
28823
28886
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
28824
28887
|
};
|
|
@@ -28836,6 +28899,14 @@ export declare type JiraCascadingSelectFieldParentOptionsArgs = {
|
|
|
28836
28899
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28837
28900
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
28838
28901
|
};
|
|
28902
|
+
export declare type JiraCascadingSelectFieldSelectableValueOptionsArgs = {
|
|
28903
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
28904
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
28905
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
28906
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
28907
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
28908
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
28909
|
+
};
|
|
28839
28910
|
export declare type JiraCascadingSelectFieldInput = {
|
|
28840
28911
|
childOptionValue?: InputMaybe<JiraSelectedOptionInput>;
|
|
28841
28912
|
fieldId: Scalars['ID']['input'];
|
|
@@ -30767,10 +30838,12 @@ export declare type JiraIssue = Node & {
|
|
|
30767
30838
|
__typename?: 'JiraIssue';
|
|
30768
30839
|
assignee?: Maybe<Scalars['String']['output']>;
|
|
30769
30840
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
30841
|
+
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
30770
30842
|
childIssues?: Maybe<JiraChildIssues>;
|
|
30771
30843
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
30772
30844
|
comments?: Maybe<JiraCommentConnection>;
|
|
30773
30845
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
30846
|
+
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
30774
30847
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
30775
30848
|
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
30776
30849
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
@@ -30831,8 +30904,12 @@ export declare type JiraIssueCommentsArgs = {
|
|
|
30831
30904
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30832
30905
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30833
30906
|
};
|
|
30907
|
+
export declare type JiraIssueDesignsArgs = {
|
|
30908
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30909
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30910
|
+
};
|
|
30834
30911
|
export declare type JiraIssueFieldByIdOrAliasArgs = {
|
|
30835
|
-
|
|
30912
|
+
idOrAlias?: InputMaybe<Scalars['String']['input']>;
|
|
30836
30913
|
ignoreMissingField?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30837
30914
|
};
|
|
30838
30915
|
export declare type JiraIssueFieldSetsArgs = {
|
|
@@ -31397,6 +31474,7 @@ export declare type JiraIssueLinkFieldIssueLinkConnectionArgs = {
|
|
|
31397
31474
|
export declare type JiraIssueLinkFieldIssueLinkTypeRelationsArgs = {
|
|
31398
31475
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31399
31476
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
31477
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
31400
31478
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31401
31479
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31402
31480
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31404,9 +31482,19 @@ export declare type JiraIssueLinkFieldIssueLinkTypeRelationsArgs = {
|
|
|
31404
31482
|
export declare type JiraIssueLinkFieldIssuesArgs = {
|
|
31405
31483
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31406
31484
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
31485
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
31407
31486
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31487
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
31408
31488
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31489
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
31409
31490
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
31491
|
+
showSubTaskParent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31492
|
+
showSubTasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31493
|
+
};
|
|
31494
|
+
export declare type JiraIssueLinkFieldOperationInputForIssueTransitions = {
|
|
31495
|
+
inwardIssue: Array<Scalars['ID']['input']>;
|
|
31496
|
+
linkType: Scalars['ID']['input'];
|
|
31497
|
+
operation: JiraAddValueFieldOperations;
|
|
31410
31498
|
};
|
|
31411
31499
|
export declare type JiraIssueLinkType = Node & {
|
|
31412
31500
|
__typename?: 'JiraIssueLinkType';
|
|
@@ -31689,6 +31777,7 @@ export declare type JiraIssueSearchViewPayload = Payload & {
|
|
|
31689
31777
|
export declare type JiraIssueTransitionComment = {
|
|
31690
31778
|
__typename?: 'JiraIssueTransitionComment';
|
|
31691
31779
|
adminRichTextConfig?: Maybe<JiraAdminRichTextFieldConfig>;
|
|
31780
|
+
enableCommentVisibility?: Maybe<Scalars['Boolean']['output']>;
|
|
31692
31781
|
mediaContext?: Maybe<JiraMediaContext>;
|
|
31693
31782
|
types?: Maybe<Array<Maybe<JiraIssueTransitionCommentType>>>;
|
|
31694
31783
|
};
|
|
@@ -31703,6 +31792,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
31703
31792
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
31704
31793
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
31705
31794
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
31795
|
+
JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
|
|
31706
31796
|
JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
|
|
31707
31797
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
31708
31798
|
JiraMultipleGroupPickerField?: InputMaybe<Array<JiraUpdateMultipleGroupPickerFieldInput>>;
|
|
@@ -32909,6 +32999,7 @@ export declare type JiraMutation = {
|
|
|
32909
32999
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
32910
33000
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
32911
33001
|
updateRichTextField?: Maybe<JiraRichTextFieldPayload>;
|
|
33002
|
+
updateSingleGroupPickerField?: Maybe<JiraSingleGroupPickerFieldPayload>;
|
|
32912
33003
|
updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
32913
33004
|
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
32914
33005
|
updateSingleSelectUserPickerField?: Maybe<JiraSingleSelectUserPickerFieldPayload>;
|
|
@@ -33253,6 +33344,9 @@ export declare type JiraMutationUpdateResolutionFieldArgs = {
|
|
|
33253
33344
|
export declare type JiraMutationUpdateRichTextFieldArgs = {
|
|
33254
33345
|
input: JiraUpdateRichTextFieldInput;
|
|
33255
33346
|
};
|
|
33347
|
+
export declare type JiraMutationUpdateSingleGroupPickerFieldArgs = {
|
|
33348
|
+
input: JiraUpdateSingleGroupPickerFieldInput;
|
|
33349
|
+
};
|
|
33256
33350
|
export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
|
|
33257
33351
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
33258
33352
|
};
|
|
@@ -33403,6 +33497,7 @@ export declare type JiraNotificationPreferences = {
|
|
|
33403
33497
|
issueMoved?: Maybe<JiraNotificationPreference>;
|
|
33404
33498
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
33405
33499
|
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
33500
|
+
miscellaneousIssueEventCombined?: Maybe<JiraNotificationPreference>;
|
|
33406
33501
|
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
33407
33502
|
};
|
|
33408
33503
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
@@ -33427,6 +33522,7 @@ export declare enum JiraNotificationType {
|
|
|
33427
33522
|
IssueMoved = "ISSUE_MOVED",
|
|
33428
33523
|
IssueUpdated = "ISSUE_UPDATED",
|
|
33429
33524
|
MentionsCombined = "MENTIONS_COMBINED",
|
|
33525
|
+
MiscellaneousIssueEventCombined = "MISCELLANEOUS_ISSUE_EVENT_COMBINED",
|
|
33430
33526
|
WorklogCombined = "WORKLOG_COMBINED"
|
|
33431
33527
|
}
|
|
33432
33528
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
@@ -33766,11 +33862,16 @@ export declare type JiraParentIssueFieldParentCandidatesForExistingIssueArgs = {
|
|
|
33766
33862
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33767
33863
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
33768
33864
|
};
|
|
33769
|
-
export declare type JiraParentOption = Node & {
|
|
33865
|
+
export declare type JiraParentOption = JiraHasSelectableValueOptions & JiraSelectableValue & Node & {
|
|
33770
33866
|
__typename?: 'JiraParentOption';
|
|
33771
33867
|
childOptions?: Maybe<JiraOptionConnection>;
|
|
33772
33868
|
id: Scalars['ID']['output'];
|
|
33773
33869
|
isDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
33870
|
+
selectableGroupKey?: Maybe<Scalars['String']['output']>;
|
|
33871
|
+
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
33872
|
+
selectableLabel?: Maybe<Scalars['String']['output']>;
|
|
33873
|
+
selectableUrl?: Maybe<Scalars['URL']['output']>;
|
|
33874
|
+
selectableValueOptions?: Maybe<JiraSelectableValueConnection>;
|
|
33774
33875
|
value?: Maybe<Scalars['String']['output']>;
|
|
33775
33876
|
};
|
|
33776
33877
|
export declare type JiraParentOptionChildOptionsArgs = {
|
|
@@ -33781,6 +33882,14 @@ export declare type JiraParentOptionChildOptionsArgs = {
|
|
|
33781
33882
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33782
33883
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
33783
33884
|
};
|
|
33885
|
+
export declare type JiraParentOptionSelectableValueOptionsArgs = {
|
|
33886
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33887
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
33888
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
33889
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33890
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
33891
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
33892
|
+
};
|
|
33784
33893
|
export declare type JiraParentOptionConnection = {
|
|
33785
33894
|
__typename?: 'JiraParentOptionConnection';
|
|
33786
33895
|
edges?: Maybe<Array<Maybe<JiraParentOptionEdge>>>;
|
|
@@ -34119,6 +34228,7 @@ export declare type JiraProject = Node & {
|
|
|
34119
34228
|
intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
|
|
34120
34229
|
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
34121
34230
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
34231
|
+
jwmDefaultSavedView?: Maybe<JiraWorkManagementSavedViewResult>;
|
|
34122
34232
|
key: Scalars['String']['output'];
|
|
34123
34233
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
34124
34234
|
lastUpdatedFormatted?: Maybe<Scalars['String']['output']>;
|
|
@@ -34607,6 +34717,25 @@ export declare enum JiraProjectPermissionCategoryEnum {
|
|
|
34607
34717
|
TimeTracking = "TIME_TRACKING",
|
|
34608
34718
|
VotersAndWatchers = "VOTERS_AND_WATCHERS"
|
|
34609
34719
|
}
|
|
34720
|
+
export declare type JiraProjectRoleActorLogTableEntry = {
|
|
34721
|
+
__typename?: 'JiraProjectRoleActorLogTableEntry';
|
|
34722
|
+
executedBy?: Maybe<User>;
|
|
34723
|
+
executedGroupId?: Maybe<Scalars['String']['output']>;
|
|
34724
|
+
numberOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
34725
|
+
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
34726
|
+
};
|
|
34727
|
+
export declare type JiraProjectRoleActorLogTableEntryConnection = {
|
|
34728
|
+
__typename?: 'JiraProjectRoleActorLogTableEntryConnection';
|
|
34729
|
+
edges?: Maybe<Array<Maybe<JiraProjectRoleActorLogTableEntryEdge>>>;
|
|
34730
|
+
nodes?: Maybe<Array<Maybe<JiraProjectRoleActorLogTableEntry>>>;
|
|
34731
|
+
pageInfo: PageInfo;
|
|
34732
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
34733
|
+
};
|
|
34734
|
+
export declare type JiraProjectRoleActorLogTableEntryEdge = {
|
|
34735
|
+
__typename?: 'JiraProjectRoleActorLogTableEntryEdge';
|
|
34736
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
34737
|
+
node?: Maybe<JiraProjectRoleActorLogTableEntry>;
|
|
34738
|
+
};
|
|
34610
34739
|
export declare type JiraProjectRoleActorRecommendation = Node & {
|
|
34611
34740
|
__typename?: 'JiraProjectRoleActorRecommendation';
|
|
34612
34741
|
executedBy?: Maybe<User>;
|
|
@@ -34813,7 +34942,8 @@ export declare type JiraQuery = {
|
|
|
34813
34942
|
jwmNavigationByProjectKey?: Maybe<JiraWorkManagementNavigation>;
|
|
34814
34943
|
jwmOverview?: Maybe<JiraWorkManagementGiraOverviewResult>;
|
|
34815
34944
|
jwmOverviews?: Maybe<JiraWorkManagementGiraOverviewConnection>;
|
|
34816
|
-
jwmSavedViewById?: Maybe<
|
|
34945
|
+
jwmSavedViewById?: Maybe<JiraWorkManagementSavedViewResult>;
|
|
34946
|
+
jwmSavedViewByProjectKeyAndItemId?: Maybe<JiraWorkManagementSavedViewResult>;
|
|
34817
34947
|
jwmSavedViewsByProject?: Maybe<JiraNavigationItemConnection>;
|
|
34818
34948
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
34819
34949
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
@@ -34830,6 +34960,7 @@ export declare type JiraQuery = {
|
|
|
34830
34960
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
34831
34961
|
projectListViewTemplates?: Maybe<JiraProjectListViewTemplateConnection>;
|
|
34832
34962
|
projectRequestTypesFromTemplate?: Maybe<Array<JiraServiceManagementRequestTypeFromTemplate>>;
|
|
34963
|
+
projectRoleActorLogTableEntries?: Maybe<JiraProjectRoleActorLogTableEntryConnection>;
|
|
34833
34964
|
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
34834
34965
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
34835
34966
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
@@ -34841,6 +34972,7 @@ export declare type JiraQuery = {
|
|
|
34841
34972
|
resourceUsageMetrics?: Maybe<JiraResourceUsageMetricConnection>;
|
|
34842
34973
|
resourceUsageRecommendationStats?: Maybe<JiraResourceUsageRecommendationStats>;
|
|
34843
34974
|
scaledConfiguration?: Maybe<JiraSafeConfiguration>;
|
|
34975
|
+
scaledConfigurationPermissions?: Maybe<JiraScaledConfigurationPermissions>;
|
|
34844
34976
|
screenIdByIssueId?: Maybe<Scalars['Long']['output']>;
|
|
34845
34977
|
screenIdByIssueKey?: Maybe<Scalars['Long']['output']>;
|
|
34846
34978
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -35269,6 +35401,11 @@ export declare type JiraQueryJwmOverviewsArgs = {
|
|
|
35269
35401
|
export declare type JiraQueryJwmSavedViewByIdArgs = {
|
|
35270
35402
|
id: Scalars['ID']['input'];
|
|
35271
35403
|
};
|
|
35404
|
+
export declare type JiraQueryJwmSavedViewByProjectKeyAndItemIdArgs = {
|
|
35405
|
+
cloudId: Scalars['ID']['input'];
|
|
35406
|
+
itemId: Scalars['ID']['input'];
|
|
35407
|
+
projectKey: Scalars['String']['input'];
|
|
35408
|
+
};
|
|
35272
35409
|
export declare type JiraQueryJwmSavedViewsByProjectArgs = {
|
|
35273
35410
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35274
35411
|
cloudId: Scalars['ID']['input'];
|
|
@@ -35344,6 +35481,13 @@ export declare type JiraQueryProjectRequestTypesFromTemplateArgs = {
|
|
|
35344
35481
|
cloudId: Scalars['ID']['input'];
|
|
35345
35482
|
projectId: Scalars['ID']['input'];
|
|
35346
35483
|
};
|
|
35484
|
+
export declare type JiraQueryProjectRoleActorLogTableEntriesArgs = {
|
|
35485
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35486
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35487
|
+
cloudId: Scalars['ID']['input'];
|
|
35488
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35489
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35490
|
+
};
|
|
35347
35491
|
export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
35348
35492
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35349
35493
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -35397,6 +35541,9 @@ export declare type JiraQueryScaledConfigurationArgs = {
|
|
|
35397
35541
|
cloudId: Scalars['ID']['input'];
|
|
35398
35542
|
id: Scalars['ID']['input'];
|
|
35399
35543
|
};
|
|
35544
|
+
export declare type JiraQueryScaledConfigurationPermissionsArgs = {
|
|
35545
|
+
cloudId: Scalars['ID']['input'];
|
|
35546
|
+
};
|
|
35400
35547
|
export declare type JiraQueryScreenIdByIssueIdArgs = {
|
|
35401
35548
|
issueId: Scalars['ID']['input'];
|
|
35402
35549
|
};
|
|
@@ -35802,6 +35949,7 @@ export declare type JiraResolutionField = JiraIssueField & JiraIssueFieldConfigu
|
|
|
35802
35949
|
name: Scalars['String']['output'];
|
|
35803
35950
|
resolution?: Maybe<JiraResolution>;
|
|
35804
35951
|
resolutions?: Maybe<JiraResolutionConnection>;
|
|
35952
|
+
resolutionsForTransition?: Maybe<JiraResolutionConnection>;
|
|
35805
35953
|
type: Scalars['String']['output'];
|
|
35806
35954
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
35807
35955
|
};
|
|
@@ -35814,6 +35962,16 @@ export declare type JiraResolutionFieldResolutionsArgs = {
|
|
|
35814
35962
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
35815
35963
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35816
35964
|
};
|
|
35965
|
+
export declare type JiraResolutionFieldResolutionsForTransitionArgs = {
|
|
35966
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35967
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
35968
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
35969
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35970
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
35971
|
+
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
35972
|
+
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35973
|
+
transitionId: Scalars['String']['input'];
|
|
35974
|
+
};
|
|
35817
35975
|
export declare type JiraResolutionFieldOperationInput = {
|
|
35818
35976
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
35819
35977
|
operation: JiraSingleValueFieldOperations;
|
|
@@ -36048,6 +36206,16 @@ export declare type JiraSafeTeamBoardEdge = {
|
|
|
36048
36206
|
cursor: Scalars['String']['output'];
|
|
36049
36207
|
node?: Maybe<JiraSafeTeamBoard>;
|
|
36050
36208
|
};
|
|
36209
|
+
export declare enum JiraScaledConfigurationPermission {
|
|
36210
|
+
Edit = "EDIT",
|
|
36211
|
+
None = "NONE",
|
|
36212
|
+
View = "VIEW"
|
|
36213
|
+
}
|
|
36214
|
+
export declare type JiraScaledConfigurationPermissions = {
|
|
36215
|
+
__typename?: 'JiraScaledConfigurationPermissions';
|
|
36216
|
+
hasEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
36217
|
+
userPermissions?: Maybe<JiraScaledConfigurationPermission>;
|
|
36218
|
+
};
|
|
36051
36219
|
export declare type JiraScmRepository = {
|
|
36052
36220
|
__typename?: 'JiraScmRepository';
|
|
36053
36221
|
entityUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -37189,6 +37357,16 @@ export declare type JiraSingleGroupPickerFieldInput = {
|
|
|
37189
37357
|
fieldId: Scalars['ID']['input'];
|
|
37190
37358
|
group: JiraGroupInput;
|
|
37191
37359
|
};
|
|
37360
|
+
export declare type JiraSingleGroupPickerFieldOperationInput = {
|
|
37361
|
+
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
37362
|
+
operation: JiraSingleValueFieldOperations;
|
|
37363
|
+
};
|
|
37364
|
+
export declare type JiraSingleGroupPickerFieldPayload = Payload & {
|
|
37365
|
+
__typename?: 'JiraSingleGroupPickerFieldPayload';
|
|
37366
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37367
|
+
field?: Maybe<JiraSingleGroupPickerField>;
|
|
37368
|
+
success: Scalars['Boolean']['output'];
|
|
37369
|
+
};
|
|
37192
37370
|
export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
37193
37371
|
__typename?: 'JiraSingleLineTextField';
|
|
37194
37372
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -38018,6 +38196,10 @@ export declare type JiraUpdateGlobalPreferencesPayload = Payload & {
|
|
|
38018
38196
|
preferences?: Maybe<JiraNotificationPreferences>;
|
|
38019
38197
|
success: Scalars['Boolean']['output'];
|
|
38020
38198
|
};
|
|
38199
|
+
export declare type JiraUpdateIssueLinkFieldInputForIssueTransitions = {
|
|
38200
|
+
id: Scalars['ID']['input'];
|
|
38201
|
+
operation: JiraIssueLinkFieldOperationInputForIssueTransitions;
|
|
38202
|
+
};
|
|
38021
38203
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
38022
38204
|
fieldInputs?: InputMaybe<JiraIssueTransitionFieldLevelInput>;
|
|
38023
38205
|
issueId: Scalars['ID']['input'];
|
|
@@ -38127,6 +38309,10 @@ export declare type JiraUpdateShortcutInput = {
|
|
|
38127
38309
|
shortcutData: JiraShortcutDataInput;
|
|
38128
38310
|
shortcutId: Scalars['ID']['input'];
|
|
38129
38311
|
};
|
|
38312
|
+
export declare type JiraUpdateSingleGroupPickerFieldInput = {
|
|
38313
|
+
id: Scalars['ID']['input'];
|
|
38314
|
+
operation: JiraSingleGroupPickerFieldOperationInput;
|
|
38315
|
+
};
|
|
38130
38316
|
export declare type JiraUpdateSingleLineTextFieldInput = {
|
|
38131
38317
|
id: Scalars['ID']['input'];
|
|
38132
38318
|
operation: JiraSingleLineTextFieldOperationInput;
|
|
@@ -38681,6 +38867,7 @@ export declare type JiraVersionFilterInput = {
|
|
|
38681
38867
|
activeWithin?: InputMaybe<JiraDateTimeWindow>;
|
|
38682
38868
|
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38683
38869
|
projectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
38870
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
38684
38871
|
statuses?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
38685
38872
|
};
|
|
38686
38873
|
export declare type JiraVersionInput = {
|
|
@@ -39532,6 +39719,11 @@ export declare type KnowledgeDiscoveryDefinition = {
|
|
|
39532
39719
|
keyPhrase: Scalars['String']['output'];
|
|
39533
39720
|
references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
39534
39721
|
};
|
|
39722
|
+
export declare type KnowledgeDiscoveryDefinitionHistoryResult = KnowledgeDiscoveryDefinitionList | QueryError;
|
|
39723
|
+
export declare type KnowledgeDiscoveryDefinitionList = {
|
|
39724
|
+
__typename?: 'KnowledgeDiscoveryDefinitionList';
|
|
39725
|
+
definitions?: Maybe<Array<Maybe<KnowledgeDiscoveryDefinition>>>;
|
|
39726
|
+
};
|
|
39535
39727
|
export declare type KnowledgeDiscoveryDefinitionResult = KnowledgeDiscoveryDefinition | QueryError;
|
|
39536
39728
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
39537
39729
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
@@ -39543,17 +39735,28 @@ export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
|
|
|
39543
39735
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
39544
39736
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
39545
39737
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
39738
|
+
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
39546
39739
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
39740
|
+
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
39547
39741
|
};
|
|
39548
39742
|
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
39549
39743
|
keyPhrase: Scalars['String']['input'];
|
|
39550
39744
|
workspaceId: Scalars['String']['input'];
|
|
39551
39745
|
};
|
|
39746
|
+
export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
39747
|
+
keyPhrase: Scalars['String']['input'];
|
|
39748
|
+
workspaceId: Scalars['String']['input'];
|
|
39749
|
+
};
|
|
39552
39750
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
39553
39751
|
locale: Scalars['String']['input'];
|
|
39554
39752
|
query: Scalars['String']['input'];
|
|
39555
39753
|
workspaceId: Scalars['String']['input'];
|
|
39556
39754
|
};
|
|
39755
|
+
export declare type KnowledgeDiscoveryQueryApiTopicArgs = {
|
|
39756
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
39757
|
+
id: Scalars['String']['input'];
|
|
39758
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
39759
|
+
};
|
|
39557
39760
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
39558
39761
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
39559
39762
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
@@ -39566,6 +39769,24 @@ export declare type KnowledgeDiscoverySmartAnswersRoute = {
|
|
|
39566
39769
|
transformedQuery: Scalars['String']['output'];
|
|
39567
39770
|
};
|
|
39568
39771
|
export declare type KnowledgeDiscoverySmartAnswersRouteResult = KnowledgeDiscoverySmartAnswersRoute | QueryError;
|
|
39772
|
+
export declare type KnowledgeDiscoveryTopic = {
|
|
39773
|
+
__typename?: 'KnowledgeDiscoveryTopic';
|
|
39774
|
+
description: Scalars['String']['output'];
|
|
39775
|
+
documentCount?: Maybe<Scalars['Int']['output']>;
|
|
39776
|
+
id: Scalars['ID']['output'];
|
|
39777
|
+
name: Scalars['String']['output'];
|
|
39778
|
+
type?: Maybe<KnowledgeDiscoveryTopicType>;
|
|
39779
|
+
updatedAt: Scalars['String']['output'];
|
|
39780
|
+
};
|
|
39781
|
+
export declare type KnowledgeDiscoveryTopicResult = KnowledgeDiscoveryTopic | QueryError;
|
|
39782
|
+
export declare enum KnowledgeDiscoveryTopicType {
|
|
39783
|
+
Area = "AREA",
|
|
39784
|
+
Company = "COMPANY",
|
|
39785
|
+
Event = "EVENT",
|
|
39786
|
+
Process = "PROCESS",
|
|
39787
|
+
Program = "PROGRAM",
|
|
39788
|
+
Team = "TEAM"
|
|
39789
|
+
}
|
|
39569
39790
|
export declare type LabelUsage = {
|
|
39570
39791
|
__typename?: 'LabelUsage';
|
|
39571
39792
|
count: Scalars['Int']['output'];
|
|
@@ -43310,6 +43531,9 @@ export declare type QueryHelpExternalResourceArgs = {
|
|
|
43310
43531
|
export declare type QueryHelpLayoutArgs = {
|
|
43311
43532
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
43312
43533
|
};
|
|
43534
|
+
export declare type QueryHelpObjectStoreArgs = {
|
|
43535
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
43536
|
+
};
|
|
43313
43537
|
export declare type QueryInstallationContextsWithLogAccessArgs = {
|
|
43314
43538
|
appId: Scalars['ID']['input'];
|
|
43315
43539
|
};
|
|
@@ -45029,6 +45253,16 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
45029
45253
|
type: SearchResultType;
|
|
45030
45254
|
url: Scalars['URL']['output'];
|
|
45031
45255
|
};
|
|
45256
|
+
export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
45257
|
+
__typename?: 'SearchResultBitbucketRepository';
|
|
45258
|
+
description: Scalars['String']['output'];
|
|
45259
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
45260
|
+
id: Scalars['ID']['output'];
|
|
45261
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
45262
|
+
title: Scalars['String']['output'];
|
|
45263
|
+
type: SearchResultType;
|
|
45264
|
+
url: Scalars['URL']['output'];
|
|
45265
|
+
};
|
|
45032
45266
|
export declare type SearchResultGoogleDocument = SearchResult & {
|
|
45033
45267
|
__typename?: 'SearchResultGoogleDocument';
|
|
45034
45268
|
description: Scalars['String']['output'];
|
|
@@ -45098,10 +45332,16 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
45098
45332
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
45099
45333
|
id: Scalars['ID']['output'];
|
|
45100
45334
|
issue?: Maybe<JiraIssue>;
|
|
45335
|
+
status?: Maybe<SearchResultJiraIssueStatus>;
|
|
45101
45336
|
title: Scalars['String']['output'];
|
|
45102
45337
|
type: SearchResultType;
|
|
45103
45338
|
url: Scalars['URL']['output'];
|
|
45104
45339
|
};
|
|
45340
|
+
export declare type SearchResultJiraIssueStatus = {
|
|
45341
|
+
__typename?: 'SearchResultJiraIssueStatus';
|
|
45342
|
+
id: Scalars['ID']['output'];
|
|
45343
|
+
name: Scalars['String']['output'];
|
|
45344
|
+
};
|
|
45105
45345
|
export declare type SearchResultJiraProject = SearchResult & {
|
|
45106
45346
|
__typename?: 'SearchResultJiraProject';
|
|
45107
45347
|
canView: Scalars['Boolean']['output'];
|
|
@@ -45129,6 +45369,26 @@ export declare type SearchResultMicrosoftDocument = SearchResult & {
|
|
|
45129
45369
|
type: SearchResultType;
|
|
45130
45370
|
url: Scalars['URL']['output'];
|
|
45131
45371
|
};
|
|
45372
|
+
export declare type SearchResultTrelloBoard = SearchResult & {
|
|
45373
|
+
__typename?: 'SearchResultTrelloBoard';
|
|
45374
|
+
description: Scalars['String']['output'];
|
|
45375
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
45376
|
+
id: Scalars['ID']['output'];
|
|
45377
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
45378
|
+
title: Scalars['String']['output'];
|
|
45379
|
+
type: SearchResultType;
|
|
45380
|
+
url: Scalars['URL']['output'];
|
|
45381
|
+
};
|
|
45382
|
+
export declare type SearchResultTrelloCard = SearchResult & {
|
|
45383
|
+
__typename?: 'SearchResultTrelloCard';
|
|
45384
|
+
description: Scalars['String']['output'];
|
|
45385
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
45386
|
+
id: Scalars['ID']['output'];
|
|
45387
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
45388
|
+
title: Scalars['String']['output'];
|
|
45389
|
+
type: SearchResultType;
|
|
45390
|
+
url: Scalars['URL']['output'];
|
|
45391
|
+
};
|
|
45132
45392
|
export declare enum SearchResultType {
|
|
45133
45393
|
Attachment = "attachment",
|
|
45134
45394
|
Blogpost = "blogpost",
|
|
@@ -45146,6 +45406,7 @@ export declare enum SearchResultType {
|
|
|
45146
45406
|
Plan = "plan",
|
|
45147
45407
|
Project = "project",
|
|
45148
45408
|
Question = "question",
|
|
45409
|
+
Repository = "repository",
|
|
45149
45410
|
Space = "space",
|
|
45150
45411
|
Tag = "tag",
|
|
45151
45412
|
Unrecognised = "unrecognised",
|