@forge/cli-shared 3.25.2 → 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 +6 -0
- package/out/graphql/graphql-types.d.ts +109 -2
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +27 -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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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;
|
|
@@ -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';
|
|
@@ -6500,6 +6521,11 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
6500
6521
|
lastContribution?: Maybe<ConfluenceContribution>;
|
|
6501
6522
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
6502
6523
|
};
|
|
6524
|
+
export declare type ConfluencePublicLinkPage = {
|
|
6525
|
+
__typename?: 'ConfluencePublicLinkPage';
|
|
6526
|
+
body?: Maybe<ConfluenceBodies>;
|
|
6527
|
+
type?: Maybe<ConfluenceContentType>;
|
|
6528
|
+
};
|
|
6503
6529
|
export declare type ConfluencePublishBlogPostInput = {
|
|
6504
6530
|
id: Scalars['ID']['input'];
|
|
6505
6531
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -6549,6 +6575,7 @@ export declare type ConfluenceQueryApi = {
|
|
|
6549
6575
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
6550
6576
|
page?: Maybe<ConfluencePage>;
|
|
6551
6577
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
6578
|
+
publicLink?: Maybe<ConfluencePublicLinkPage>;
|
|
6552
6579
|
space?: Maybe<ConfluenceSpace>;
|
|
6553
6580
|
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
6554
6581
|
validateSpaceKey?: Maybe<ConfluenceValidateSpaceKeyResponse>;
|
|
@@ -6591,6 +6618,9 @@ export declare type ConfluenceQueryApiPageArgs = {
|
|
|
6591
6618
|
export declare type ConfluenceQueryApiPagesArgs = {
|
|
6592
6619
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
6593
6620
|
};
|
|
6621
|
+
export declare type ConfluenceQueryApiPublicLinkArgs = {
|
|
6622
|
+
id: Scalars['ID']['input'];
|
|
6623
|
+
};
|
|
6594
6624
|
export declare type ConfluenceQueryApiSpaceArgs = {
|
|
6595
6625
|
id: Scalars['ID']['input'];
|
|
6596
6626
|
};
|
|
@@ -10083,7 +10113,6 @@ export declare type DevOpsOperationsComponentDetails = {
|
|
|
10083
10113
|
id: Scalars['ID']['output'];
|
|
10084
10114
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
10085
10115
|
name?: Maybe<Scalars['String']['output']>;
|
|
10086
|
-
providerAri?: Maybe<Scalars['String']['output']>;
|
|
10087
10116
|
providerComponentId?: Maybe<Scalars['String']['output']>;
|
|
10088
10117
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
10089
10118
|
tier?: Maybe<DevOpsComponentTier>;
|
|
@@ -30814,6 +30843,7 @@ export declare type JiraIssue = Node & {
|
|
|
30814
30843
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
30815
30844
|
comments?: Maybe<JiraCommentConnection>;
|
|
30816
30845
|
deploymentsSummary?: Maybe<DevOpsSummarisedDeployments>;
|
|
30846
|
+
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
30817
30847
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
30818
30848
|
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
30819
30849
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
@@ -30874,8 +30904,12 @@ export declare type JiraIssueCommentsArgs = {
|
|
|
30874
30904
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30875
30905
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
30876
30906
|
};
|
|
30907
|
+
export declare type JiraIssueDesignsArgs = {
|
|
30908
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30909
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30910
|
+
};
|
|
30877
30911
|
export declare type JiraIssueFieldByIdOrAliasArgs = {
|
|
30878
|
-
|
|
30912
|
+
idOrAlias?: InputMaybe<Scalars['String']['input']>;
|
|
30879
30913
|
ignoreMissingField?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30880
30914
|
};
|
|
30881
30915
|
export declare type JiraIssueFieldSetsArgs = {
|
|
@@ -31440,6 +31474,7 @@ export declare type JiraIssueLinkFieldIssueLinkConnectionArgs = {
|
|
|
31440
31474
|
export declare type JiraIssueLinkFieldIssueLinkTypeRelationsArgs = {
|
|
31441
31475
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
31442
31476
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
31477
|
+
filterById?: InputMaybe<JiraFieldOptionIdsFilterInput>;
|
|
31443
31478
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
31444
31479
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
31445
31480
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31456,6 +31491,11 @@ export declare type JiraIssueLinkFieldIssuesArgs = {
|
|
|
31456
31491
|
showSubTaskParent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31457
31492
|
showSubTasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
31458
31493
|
};
|
|
31494
|
+
export declare type JiraIssueLinkFieldOperationInputForIssueTransitions = {
|
|
31495
|
+
inwardIssue: Array<Scalars['ID']['input']>;
|
|
31496
|
+
linkType: Scalars['ID']['input'];
|
|
31497
|
+
operation: JiraAddValueFieldOperations;
|
|
31498
|
+
};
|
|
31459
31499
|
export declare type JiraIssueLinkType = Node & {
|
|
31460
31500
|
__typename?: 'JiraIssueLinkType';
|
|
31461
31501
|
id: Scalars['ID']['output'];
|
|
@@ -31752,6 +31792,7 @@ export declare type JiraIssueTransitionFieldLevelInput = {
|
|
|
31752
31792
|
JiraComponentsField?: InputMaybe<Array<JiraUpdateComponentsFieldInput>>;
|
|
31753
31793
|
JiraDatePickerField?: InputMaybe<Array<JiraUpdateDateFieldInput>>;
|
|
31754
31794
|
JiraDateTimePickerField?: InputMaybe<Array<JiraUpdateDateTimeFieldInput>>;
|
|
31795
|
+
JiraIssueLinkField?: InputMaybe<Array<JiraUpdateIssueLinkFieldInputForIssueTransitions>>;
|
|
31755
31796
|
JiraIssueTypeField?: InputMaybe<Array<JiraUpdateIssueTypeFieldInput>>;
|
|
31756
31797
|
JiraLabelsField?: InputMaybe<Array<JiraUpdateLabelsFieldInput>>;
|
|
31757
31798
|
JiraMultipleGroupPickerField?: InputMaybe<Array<JiraUpdateMultipleGroupPickerFieldInput>>;
|
|
@@ -32958,6 +32999,7 @@ export declare type JiraMutation = {
|
|
|
32958
32999
|
updateReleaseNotesConfiguration?: Maybe<JiraUpdateReleaseNotesConfigurationPayload>;
|
|
32959
33000
|
updateResolutionField?: Maybe<JiraResolutionFieldPayload>;
|
|
32960
33001
|
updateRichTextField?: Maybe<JiraRichTextFieldPayload>;
|
|
33002
|
+
updateSingleGroupPickerField?: Maybe<JiraSingleGroupPickerFieldPayload>;
|
|
32961
33003
|
updateSingleLineTextField?: Maybe<JiraSingleLineTextFieldPayload>;
|
|
32962
33004
|
updateSingleSelectField?: Maybe<JiraSingleSelectFieldPayload>;
|
|
32963
33005
|
updateSingleSelectUserPickerField?: Maybe<JiraSingleSelectUserPickerFieldPayload>;
|
|
@@ -33302,6 +33344,9 @@ export declare type JiraMutationUpdateResolutionFieldArgs = {
|
|
|
33302
33344
|
export declare type JiraMutationUpdateRichTextFieldArgs = {
|
|
33303
33345
|
input: JiraUpdateRichTextFieldInput;
|
|
33304
33346
|
};
|
|
33347
|
+
export declare type JiraMutationUpdateSingleGroupPickerFieldArgs = {
|
|
33348
|
+
input: JiraUpdateSingleGroupPickerFieldInput;
|
|
33349
|
+
};
|
|
33305
33350
|
export declare type JiraMutationUpdateSingleLineTextFieldArgs = {
|
|
33306
33351
|
input: JiraUpdateSingleLineTextFieldInput;
|
|
33307
33352
|
};
|
|
@@ -34672,6 +34717,25 @@ export declare enum JiraProjectPermissionCategoryEnum {
|
|
|
34672
34717
|
TimeTracking = "TIME_TRACKING",
|
|
34673
34718
|
VotersAndWatchers = "VOTERS_AND_WATCHERS"
|
|
34674
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
|
+
};
|
|
34675
34739
|
export declare type JiraProjectRoleActorRecommendation = Node & {
|
|
34676
34740
|
__typename?: 'JiraProjectRoleActorRecommendation';
|
|
34677
34741
|
executedBy?: Maybe<User>;
|
|
@@ -34896,6 +34960,7 @@ export declare type JiraQuery = {
|
|
|
34896
34960
|
postIncidentReviewLinksByIds?: Maybe<Array<Maybe<JiraPostIncidentReviewLink>>>;
|
|
34897
34961
|
projectListViewTemplates?: Maybe<JiraProjectListViewTemplateConnection>;
|
|
34898
34962
|
projectRequestTypesFromTemplate?: Maybe<Array<JiraServiceManagementRequestTypeFromTemplate>>;
|
|
34963
|
+
projectRoleActorLogTableEntries?: Maybe<JiraProjectRoleActorLogTableEntryConnection>;
|
|
34899
34964
|
projectRoleActorRecommendations?: Maybe<JiraProjectRoleActorRecommendationConnection>;
|
|
34900
34965
|
remoteIssueLinksById?: Maybe<Array<Maybe<JiraRemoteIssueLink>>>;
|
|
34901
34966
|
requestTypeTemplateById?: Maybe<JiraServiceManagementRequestTypeTemplate>;
|
|
@@ -35416,6 +35481,13 @@ export declare type JiraQueryProjectRequestTypesFromTemplateArgs = {
|
|
|
35416
35481
|
cloudId: Scalars['ID']['input'];
|
|
35417
35482
|
projectId: Scalars['ID']['input'];
|
|
35418
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
|
+
};
|
|
35419
35491
|
export declare type JiraQueryProjectRoleActorRecommendationsArgs = {
|
|
35420
35492
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
35421
35493
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -37285,6 +37357,16 @@ export declare type JiraSingleGroupPickerFieldInput = {
|
|
|
37285
37357
|
fieldId: Scalars['ID']['input'];
|
|
37286
37358
|
group: JiraGroupInput;
|
|
37287
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
|
+
};
|
|
37288
37370
|
export declare type JiraSingleLineTextField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
37289
37371
|
__typename?: 'JiraSingleLineTextField';
|
|
37290
37372
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -38114,6 +38196,10 @@ export declare type JiraUpdateGlobalPreferencesPayload = Payload & {
|
|
|
38114
38196
|
preferences?: Maybe<JiraNotificationPreferences>;
|
|
38115
38197
|
success: Scalars['Boolean']['output'];
|
|
38116
38198
|
};
|
|
38199
|
+
export declare type JiraUpdateIssueLinkFieldInputForIssueTransitions = {
|
|
38200
|
+
id: Scalars['ID']['input'];
|
|
38201
|
+
operation: JiraIssueLinkFieldOperationInputForIssueTransitions;
|
|
38202
|
+
};
|
|
38117
38203
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
38118
38204
|
fieldInputs?: InputMaybe<JiraIssueTransitionFieldLevelInput>;
|
|
38119
38205
|
issueId: Scalars['ID']['input'];
|
|
@@ -38223,6 +38309,10 @@ export declare type JiraUpdateShortcutInput = {
|
|
|
38223
38309
|
shortcutData: JiraShortcutDataInput;
|
|
38224
38310
|
shortcutId: Scalars['ID']['input'];
|
|
38225
38311
|
};
|
|
38312
|
+
export declare type JiraUpdateSingleGroupPickerFieldInput = {
|
|
38313
|
+
id: Scalars['ID']['input'];
|
|
38314
|
+
operation: JiraSingleGroupPickerFieldOperationInput;
|
|
38315
|
+
};
|
|
38226
38316
|
export declare type JiraUpdateSingleLineTextFieldInput = {
|
|
38227
38317
|
id: Scalars['ID']['input'];
|
|
38228
38318
|
operation: JiraSingleLineTextFieldOperationInput;
|
|
@@ -38777,6 +38867,7 @@ export declare type JiraVersionFilterInput = {
|
|
|
38777
38867
|
activeWithin?: InputMaybe<JiraDateTimeWindow>;
|
|
38778
38868
|
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
38779
38869
|
projectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
38870
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
38780
38871
|
statuses?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
38781
38872
|
};
|
|
38782
38873
|
export declare type JiraVersionInput = {
|
|
@@ -39628,6 +39719,11 @@ export declare type KnowledgeDiscoveryDefinition = {
|
|
|
39628
39719
|
keyPhrase: Scalars['String']['output'];
|
|
39629
39720
|
references?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
39630
39721
|
};
|
|
39722
|
+
export declare type KnowledgeDiscoveryDefinitionHistoryResult = KnowledgeDiscoveryDefinitionList | QueryError;
|
|
39723
|
+
export declare type KnowledgeDiscoveryDefinitionList = {
|
|
39724
|
+
__typename?: 'KnowledgeDiscoveryDefinitionList';
|
|
39725
|
+
definitions?: Maybe<Array<Maybe<KnowledgeDiscoveryDefinition>>>;
|
|
39726
|
+
};
|
|
39631
39727
|
export declare type KnowledgeDiscoveryDefinitionResult = KnowledgeDiscoveryDefinition | QueryError;
|
|
39632
39728
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
39633
39729
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
@@ -39639,6 +39735,7 @@ export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
|
|
|
39639
39735
|
export declare type KnowledgeDiscoveryQueryApi = {
|
|
39640
39736
|
__typename?: 'KnowledgeDiscoveryQueryApi';
|
|
39641
39737
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
39738
|
+
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
39642
39739
|
smartAnswersRoute?: Maybe<KnowledgeDiscoverySmartAnswersRouteResult>;
|
|
39643
39740
|
topic?: Maybe<KnowledgeDiscoveryTopicResult>;
|
|
39644
39741
|
};
|
|
@@ -39646,6 +39743,10 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
|
39646
39743
|
keyPhrase: Scalars['String']['input'];
|
|
39647
39744
|
workspaceId: Scalars['String']['input'];
|
|
39648
39745
|
};
|
|
39746
|
+
export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
39747
|
+
keyPhrase: Scalars['String']['input'];
|
|
39748
|
+
workspaceId: Scalars['String']['input'];
|
|
39749
|
+
};
|
|
39649
39750
|
export declare type KnowledgeDiscoveryQueryApiSmartAnswersRouteArgs = {
|
|
39650
39751
|
locale: Scalars['String']['input'];
|
|
39651
39752
|
query: Scalars['String']['input'];
|
|
@@ -45231,10 +45332,16 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
45231
45332
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
45232
45333
|
id: Scalars['ID']['output'];
|
|
45233
45334
|
issue?: Maybe<JiraIssue>;
|
|
45335
|
+
status?: Maybe<SearchResultJiraIssueStatus>;
|
|
45234
45336
|
title: Scalars['String']['output'];
|
|
45235
45337
|
type: SearchResultType;
|
|
45236
45338
|
url: Scalars['URL']['output'];
|
|
45237
45339
|
};
|
|
45340
|
+
export declare type SearchResultJiraIssueStatus = {
|
|
45341
|
+
__typename?: 'SearchResultJiraIssueStatus';
|
|
45342
|
+
id: Scalars['ID']['output'];
|
|
45343
|
+
name: Scalars['String']['output'];
|
|
45344
|
+
};
|
|
45238
45345
|
export declare type SearchResultJiraProject = SearchResult & {
|
|
45239
45346
|
__typename?: 'SearchResultJiraProject';
|
|
45240
45347
|
canView: Scalars['Boolean']['output'];
|