@forge/cli-shared 8.7.1 → 8.7.2-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
CHANGED
|
@@ -2031,7 +2031,7 @@ export declare type AdminUnit = {
|
|
|
2031
2031
|
apps?: Maybe<AdminUnitAppsConnection>;
|
|
2032
2032
|
directory?: Maybe<AdminDirectory>;
|
|
2033
2033
|
id: Scalars['ID']['output'];
|
|
2034
|
-
name
|
|
2034
|
+
name: Scalars['String']['output'];
|
|
2035
2035
|
orgId: Scalars['ID']['output'];
|
|
2036
2036
|
userStats?: Maybe<AdminUnitUserStats>;
|
|
2037
2037
|
};
|
|
@@ -2058,7 +2058,7 @@ export declare type AdminUnitAppsConnection = {
|
|
|
2058
2058
|
export declare type AdminUnitConnection = {
|
|
2059
2059
|
__typename?: 'AdminUnitConnection';
|
|
2060
2060
|
edges?: Maybe<Array<AdminUnitEdge>>;
|
|
2061
|
-
pageInfo:
|
|
2061
|
+
pageInfo: AdminUnitPageInfo;
|
|
2062
2062
|
};
|
|
2063
2063
|
export declare type AdminUnitCreateInput = {
|
|
2064
2064
|
name: Scalars['String']['input'];
|
|
@@ -2072,6 +2072,7 @@ export declare type AdminUnitCreatePayload = {
|
|
|
2072
2072
|
export declare type AdminUnitCreateStatus = {
|
|
2073
2073
|
__typename?: 'AdminUnitCreateStatus';
|
|
2074
2074
|
status: AdminUnitCreateStatusEnum;
|
|
2075
|
+
unitId: Scalars['ID']['output'];
|
|
2075
2076
|
};
|
|
2076
2077
|
export declare enum AdminUnitCreateStatusEnum {
|
|
2077
2078
|
Failed = "FAILED",
|
|
@@ -2080,7 +2081,14 @@ export declare enum AdminUnitCreateStatusEnum {
|
|
|
2080
2081
|
}
|
|
2081
2082
|
export declare type AdminUnitEdge = {
|
|
2082
2083
|
__typename?: 'AdminUnitEdge';
|
|
2083
|
-
node
|
|
2084
|
+
node: AdminUnit;
|
|
2085
|
+
};
|
|
2086
|
+
export declare type AdminUnitPageInfo = {
|
|
2087
|
+
__typename?: 'AdminUnitPageInfo';
|
|
2088
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
2089
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
2090
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
2091
|
+
previousCursor?: Maybe<Scalars['String']['output']>;
|
|
2084
2092
|
};
|
|
2085
2093
|
export declare type AdminUnitUserStats = {
|
|
2086
2094
|
__typename?: 'AdminUnitUserStats';
|
|
@@ -2429,6 +2437,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
2429
2437
|
isDefault: Scalars['Boolean']['output'];
|
|
2430
2438
|
isValid: AgentStudioScenarioValidation;
|
|
2431
2439
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2440
|
+
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
2432
2441
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
2433
2442
|
name: Scalars['String']['output'];
|
|
2434
2443
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -2668,6 +2677,11 @@ export declare type AgentStudioIncomingEmail = {
|
|
|
2668
2677
|
__typename?: 'AgentStudioIncomingEmail';
|
|
2669
2678
|
emailAddress?: Maybe<Scalars['String']['output']>;
|
|
2670
2679
|
};
|
|
2680
|
+
export declare type AgentStudioInsightsConfiguration = {
|
|
2681
|
+
__typename?: 'AgentStudioInsightsConfiguration';
|
|
2682
|
+
isHandoffConfigured?: Maybe<Scalars['Boolean']['output']>;
|
|
2683
|
+
};
|
|
2684
|
+
export declare type AgentStudioInsightsConfigurationResult = AgentStudioInsightsConfiguration | QueryError;
|
|
2671
2685
|
export declare type AgentStudioJiraChannel = AgentStudioChannel & {
|
|
2672
2686
|
__typename?: 'AgentStudioJiraChannel';
|
|
2673
2687
|
connected?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -2752,6 +2766,7 @@ export declare type AgentStudioScenario = {
|
|
|
2752
2766
|
isDefault: Scalars['Boolean']['output'];
|
|
2753
2767
|
isValid: AgentStudioScenarioValidation;
|
|
2754
2768
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
2769
|
+
mcpServerIds: Array<Scalars['ID']['output']>;
|
|
2755
2770
|
mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
2756
2771
|
name: Scalars['String']['output'];
|
|
2757
2772
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -15371,6 +15386,21 @@ export declare type ConfluenceContentBodyInput = {
|
|
|
15371
15386
|
representation: ConfluenceContentRepresentation;
|
|
15372
15387
|
value: Scalars['String']['input'];
|
|
15373
15388
|
};
|
|
15389
|
+
export declare type ConfluenceContentInput = {
|
|
15390
|
+
contentBody?: InputMaybe<Scalars['String']['input']>;
|
|
15391
|
+
contentId: Scalars['ID']['input'];
|
|
15392
|
+
contentStatus?: InputMaybe<Scalars['String']['input']>;
|
|
15393
|
+
contentType?: InputMaybe<Scalars['String']['input']>;
|
|
15394
|
+
minorEdit?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15395
|
+
ncsStepVersion?: InputMaybe<Scalars['String']['input']>;
|
|
15396
|
+
restrictions?: InputMaybe<PageRestrictionsInput>;
|
|
15397
|
+
schedulePublishDate?: InputMaybe<Scalars['String']['input']>;
|
|
15398
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
15399
|
+
syncRev?: InputMaybe<Scalars['String']['input']>;
|
|
15400
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
15401
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
15402
|
+
versionMessage?: InputMaybe<Scalars['String']['input']>;
|
|
15403
|
+
};
|
|
15374
15404
|
export declare type ConfluenceContentMetadata = {
|
|
15375
15405
|
__typename?: 'ConfluenceContentMetadata';
|
|
15376
15406
|
collaborativeEditingService?: Maybe<ConfluenceCollaborativeEditingService>;
|
|
@@ -15512,6 +15542,17 @@ export declare enum ConfluenceContributionStatus {
|
|
|
15512
15542
|
Unknown = "UNKNOWN",
|
|
15513
15543
|
Unpublished = "UNPUBLISHED"
|
|
15514
15544
|
}
|
|
15545
|
+
export declare type ConfluenceConvertContentToBlogpostInput = {
|
|
15546
|
+
confluenceContentInput: ConfluenceContentInput;
|
|
15547
|
+
destinationSpaceKey: Scalars['String']['input'];
|
|
15548
|
+
sourceStatus: Scalars['String']['input'];
|
|
15549
|
+
};
|
|
15550
|
+
export declare type ConfluenceConvertContentToBlogpostPayload = Payload & {
|
|
15551
|
+
__typename?: 'ConfluenceConvertContentToBlogpostPayload';
|
|
15552
|
+
content?: Maybe<Content>;
|
|
15553
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15554
|
+
success: Scalars['Boolean']['output'];
|
|
15555
|
+
};
|
|
15515
15556
|
export declare type ConfluenceConvertContentToFolderPayload = {
|
|
15516
15557
|
__typename?: 'ConfluenceConvertContentToFolderPayload';
|
|
15517
15558
|
content?: Maybe<Content>;
|
|
@@ -25603,6 +25644,7 @@ export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
|
25603
25644
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
25604
25645
|
repository: DevAiRovoDevRepositoryInput;
|
|
25605
25646
|
useCase?: InputMaybe<Scalars['String']['input']>;
|
|
25647
|
+
xid?: InputMaybe<Scalars['String']['input']>;
|
|
25606
25648
|
};
|
|
25607
25649
|
export declare type DevAiRovoDevCreateSessionInput = {
|
|
25608
25650
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
@@ -25610,6 +25652,7 @@ export declare type DevAiRovoDevCreateSessionInput = {
|
|
|
25610
25652
|
promptAdf?: InputMaybe<Scalars['JSON']['input']>;
|
|
25611
25653
|
repository: DevAiRovoDevRepositoryInput;
|
|
25612
25654
|
workspaceAri: Scalars['ID']['input'];
|
|
25655
|
+
xid?: InputMaybe<Scalars['String']['input']>;
|
|
25613
25656
|
};
|
|
25614
25657
|
export declare type DevAiRovoDevCreateSessionOptionsInput = {
|
|
25615
25658
|
isAutonomous?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -25660,6 +25703,7 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
25660
25703
|
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
25661
25704
|
options?: Maybe<DevAiRovoDevSessionOptions>;
|
|
25662
25705
|
prStatus?: Maybe<DevAiRovoDevPrStatus>;
|
|
25706
|
+
prUrl?: Maybe<Scalars['String']['output']>;
|
|
25663
25707
|
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
25664
25708
|
repository?: Maybe<DevAiRovoDevRepository>;
|
|
25665
25709
|
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
@@ -32001,6 +32045,7 @@ export declare type GraphIntegrationActionDirectoryItem = {
|
|
|
32001
32045
|
displayName: Scalars['String']['output'];
|
|
32002
32046
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
32003
32047
|
id: Scalars['ID']['output'];
|
|
32048
|
+
integrationKey?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
32004
32049
|
name: Scalars['String']['output'];
|
|
32005
32050
|
tags: Array<GraphIntegrationDirectoryFilterDimension>;
|
|
32006
32051
|
};
|
|
@@ -57897,6 +57942,14 @@ export declare type GrowthRecRerankCandidate = {
|
|
|
57897
57942
|
context?: InputMaybe<Scalars['JSON']['input']>;
|
|
57898
57943
|
entityId: Scalars['String']['input'];
|
|
57899
57944
|
};
|
|
57945
|
+
export declare type GrowthUnifiedProfileAccountProfileResult = {
|
|
57946
|
+
__typename?: 'GrowthUnifiedProfileAccountProfileResult';
|
|
57947
|
+
userProfile?: Maybe<GrowthUnifiedProfileAccountUserProfile>;
|
|
57948
|
+
};
|
|
57949
|
+
export declare type GrowthUnifiedProfileAccountUserProfile = {
|
|
57950
|
+
__typename?: 'GrowthUnifiedProfileAccountUserProfile';
|
|
57951
|
+
inferredTimezone?: Maybe<Scalars['String']['output']>;
|
|
57952
|
+
};
|
|
57900
57953
|
export declare type GrowthUnifiedProfileAnchor = {
|
|
57901
57954
|
__typename?: 'GrowthUnifiedProfileAnchor';
|
|
57902
57955
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -75990,6 +76043,7 @@ export declare type JiraQueryJiraIssueSearchViewArgs = {
|
|
|
75990
76043
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
75991
76044
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
75992
76045
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
76046
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
75993
76047
|
viewConfigInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
75994
76048
|
viewId?: InputMaybe<Scalars['String']['input']>;
|
|
75995
76049
|
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
@@ -82750,6 +82804,25 @@ export declare type JsmChannelsOrchestratorConversationsFilter = {
|
|
|
82750
82804
|
startDate: Scalars['DateTime']['input'];
|
|
82751
82805
|
states?: InputMaybe<Array<JsmChannelsOrchestratorConversationState>>;
|
|
82752
82806
|
};
|
|
82807
|
+
export declare type JsmChannelsServiceAgentResolutionPlan = {
|
|
82808
|
+
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
82809
|
+
planId?: Maybe<Scalars['ID']['output']>;
|
|
82810
|
+
runbooks?: Maybe<Array<Maybe<JsmChannelsServiceAgentResolutionRunbook>>>;
|
|
82811
|
+
};
|
|
82812
|
+
export declare type JsmChannelsServiceAgentResolutionRunbook = {
|
|
82813
|
+
__typename?: 'JsmChannelsServiceAgentResolutionRunbook';
|
|
82814
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
82815
|
+
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
82816
|
+
title: Scalars['String']['output'];
|
|
82817
|
+
url: Scalars['String']['output'];
|
|
82818
|
+
};
|
|
82819
|
+
export declare type JsmChannelsTicketServiceAgentResolutionState = {
|
|
82820
|
+
__typename?: 'JsmChannelsTicketServiceAgentResolutionState';
|
|
82821
|
+
isLoading: Scalars['Boolean']['output'];
|
|
82822
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
82823
|
+
plan?: Maybe<JsmChannelsServiceAgentResolutionPlan>;
|
|
82824
|
+
};
|
|
82825
|
+
export declare type JsmChannelsTicketServiceAgentResolutionStateResult = JsmChannelsTicketServiceAgentResolutionState | QueryError;
|
|
82753
82826
|
export declare type JsmChatAppendixActionItem = {
|
|
82754
82827
|
__typename?: 'JsmChatAppendixActionItem';
|
|
82755
82828
|
id: Scalars['String']['output'];
|
|
@@ -84018,6 +84091,11 @@ export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
|
|
|
84018
84091
|
success: Scalars['Boolean']['output'];
|
|
84019
84092
|
successCount?: Maybe<Scalars['Int']['output']>;
|
|
84020
84093
|
};
|
|
84094
|
+
export declare enum KnowledgeDiscoveryDetectionType {
|
|
84095
|
+
EntityRecognition = "ENTITY_RECOGNITION",
|
|
84096
|
+
Heuristic = "HEURISTIC",
|
|
84097
|
+
Llm = "LLM"
|
|
84098
|
+
}
|
|
84021
84099
|
export declare type KnowledgeDiscoveryDismissAdminhubBookmarkSuggestionInput = {
|
|
84022
84100
|
bookmarkAdminhubId: Scalars['ID']['input'];
|
|
84023
84101
|
cloudId: Scalars['ID']['input'];
|
|
@@ -84036,6 +84114,11 @@ export declare type KnowledgeDiscoveryEntityGroup = {
|
|
|
84036
84114
|
entities?: Maybe<Array<Maybe<KnowledgeDiscoveryEntity>>>;
|
|
84037
84115
|
entityType: KnowledgeDiscoveryEntityType;
|
|
84038
84116
|
};
|
|
84117
|
+
export declare type KnowledgeDiscoveryEntityMetadata = {
|
|
84118
|
+
__typename?: 'KnowledgeDiscoveryEntityMetadata';
|
|
84119
|
+
entityCount?: Maybe<Scalars['Int']['output']>;
|
|
84120
|
+
entityType: Scalars['String']['output'];
|
|
84121
|
+
};
|
|
84039
84122
|
export declare enum KnowledgeDiscoveryEntityType {
|
|
84040
84123
|
ConfluenceBlogpost = "CONFLUENCE_BLOGPOST",
|
|
84041
84124
|
ConfluenceDocument = "CONFLUENCE_DOCUMENT",
|
|
@@ -84046,11 +84129,48 @@ export declare enum KnowledgeDiscoveryEntityType {
|
|
|
84046
84129
|
Topic = "TOPIC",
|
|
84047
84130
|
User = "USER"
|
|
84048
84131
|
}
|
|
84132
|
+
export declare type KnowledgeDiscoveryIntent = {
|
|
84133
|
+
classification: KnowledgeDiscoveryQueryClassification;
|
|
84134
|
+
detectionType: KnowledgeDiscoveryDetectionType;
|
|
84135
|
+
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
84136
|
+
transformedQuery: Scalars['String']['output'];
|
|
84137
|
+
};
|
|
84138
|
+
export declare type KnowledgeDiscoveryIntentDetectionMetadata = {
|
|
84139
|
+
__typename?: 'KnowledgeDiscoveryIntentDetectionMetadata';
|
|
84140
|
+
cacheHit?: Maybe<Scalars['Boolean']['output']>;
|
|
84141
|
+
entityMetadata?: Maybe<Array<KnowledgeDiscoveryEntityMetadata>>;
|
|
84142
|
+
latencyMs?: Maybe<Scalars['Int']['output']>;
|
|
84143
|
+
method: Scalars['String']['output'];
|
|
84144
|
+
model?: Maybe<Scalars['String']['output']>;
|
|
84145
|
+
timestamp?: Maybe<Scalars['String']['output']>;
|
|
84146
|
+
};
|
|
84147
|
+
export declare type KnowledgeDiscoveryIntentDetectionResult = KnowledgeDiscoveryIntentDetectionSuccess | QueryError;
|
|
84148
|
+
export declare type KnowledgeDiscoveryIntentDetectionSuccess = {
|
|
84149
|
+
__typename?: 'KnowledgeDiscoveryIntentDetectionSuccess';
|
|
84150
|
+
detectionMetadata: KnowledgeDiscoveryIntentDetectionMetadata;
|
|
84151
|
+
errors?: Maybe<Array<QueryErrorExtension>>;
|
|
84152
|
+
intent: KnowledgeDiscoveryIntent;
|
|
84153
|
+
success: Scalars['Boolean']['output'];
|
|
84154
|
+
};
|
|
84155
|
+
export declare type KnowledgeDiscoveryJiraIntent = KnowledgeDiscoveryIntent & {
|
|
84156
|
+
__typename?: 'KnowledgeDiscoveryJiraIntent';
|
|
84157
|
+
classification: KnowledgeDiscoveryQueryClassification;
|
|
84158
|
+
detectionType: KnowledgeDiscoveryDetectionType;
|
|
84159
|
+
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
84160
|
+
transformedQuery: Scalars['String']['output'];
|
|
84161
|
+
};
|
|
84049
84162
|
export declare type KnowledgeDiscoveryJiraProject = KnowledgeDiscoveryEntity & {
|
|
84050
84163
|
__typename?: 'KnowledgeDiscoveryJiraProject';
|
|
84051
84164
|
id: Scalars['ID']['output'];
|
|
84052
84165
|
jiraProject?: Maybe<JiraProject>;
|
|
84053
84166
|
};
|
|
84167
|
+
export declare type KnowledgeDiscoveryJobTitleIntent = KnowledgeDiscoveryIntent & {
|
|
84168
|
+
__typename?: 'KnowledgeDiscoveryJobTitleIntent';
|
|
84169
|
+
classification: KnowledgeDiscoveryQueryClassification;
|
|
84170
|
+
detectionType: KnowledgeDiscoveryDetectionType;
|
|
84171
|
+
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
84172
|
+
transformedQuery: Scalars['String']['output'];
|
|
84173
|
+
};
|
|
84054
84174
|
export declare type KnowledgeDiscoveryKeyPhrase = {
|
|
84055
84175
|
__typename?: 'KnowledgeDiscoveryKeyPhrase';
|
|
84056
84176
|
category: KnowledgeDiscoveryKeyPhraseCategory;
|
|
@@ -84077,6 +84197,13 @@ export declare enum KnowledgeDiscoveryKeyPhraseInputTextFormat {
|
|
|
84077
84197
|
Plain = "PLAIN"
|
|
84078
84198
|
}
|
|
84079
84199
|
export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPhraseConnection | QueryError;
|
|
84200
|
+
export declare type KnowledgeDiscoveryKeywordOrAcronymIntent = KnowledgeDiscoveryIntent & {
|
|
84201
|
+
__typename?: 'KnowledgeDiscoveryKeywordOrAcronymIntent';
|
|
84202
|
+
classification: KnowledgeDiscoveryQueryClassification;
|
|
84203
|
+
detectionType: KnowledgeDiscoveryDetectionType;
|
|
84204
|
+
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
84205
|
+
transformedQuery: Scalars['String']['output'];
|
|
84206
|
+
};
|
|
84080
84207
|
export declare type KnowledgeDiscoveryMarkZeroQueryInteractedInput = {
|
|
84081
84208
|
cloudId: Scalars['String']['input'];
|
|
84082
84209
|
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
@@ -84133,6 +84260,27 @@ export declare type KnowledgeDiscoveryMutationApiUpdateRelatedEntitiesArgs = {
|
|
|
84133
84260
|
export declare type KnowledgeDiscoveryMutationApiUpdateUserKeyPhraseInteractionArgs = {
|
|
84134
84261
|
input: KnowledgeDiscoveryUpdateUserKeyPhraseInteractionInput;
|
|
84135
84262
|
};
|
|
84263
|
+
export declare type KnowledgeDiscoveryNaturalLanguageIntent = KnowledgeDiscoveryIntent & {
|
|
84264
|
+
__typename?: 'KnowledgeDiscoveryNaturalLanguageIntent';
|
|
84265
|
+
classification: KnowledgeDiscoveryQueryClassification;
|
|
84266
|
+
detectionType: KnowledgeDiscoveryDetectionType;
|
|
84267
|
+
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
84268
|
+
transformedQuery: Scalars['String']['output'];
|
|
84269
|
+
};
|
|
84270
|
+
export declare type KnowledgeDiscoveryNavigationalIntent = KnowledgeDiscoveryIntent & {
|
|
84271
|
+
__typename?: 'KnowledgeDiscoveryNavigationalIntent';
|
|
84272
|
+
classification: KnowledgeDiscoveryQueryClassification;
|
|
84273
|
+
detectionType: KnowledgeDiscoveryDetectionType;
|
|
84274
|
+
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
84275
|
+
transformedQuery: Scalars['String']['output'];
|
|
84276
|
+
};
|
|
84277
|
+
export declare type KnowledgeDiscoveryNoneIntent = KnowledgeDiscoveryIntent & {
|
|
84278
|
+
__typename?: 'KnowledgeDiscoveryNoneIntent';
|
|
84279
|
+
classification: KnowledgeDiscoveryQueryClassification;
|
|
84280
|
+
detectionType: KnowledgeDiscoveryDetectionType;
|
|
84281
|
+
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
84282
|
+
transformedQuery: Scalars['String']['output'];
|
|
84283
|
+
};
|
|
84136
84284
|
export declare type KnowledgeDiscoveryPageInfo = {
|
|
84137
84285
|
__typename?: 'KnowledgeDiscoveryPageInfo';
|
|
84138
84286
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -84140,6 +84288,13 @@ export declare type KnowledgeDiscoveryPageInfo = {
|
|
|
84140
84288
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
84141
84289
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
84142
84290
|
};
|
|
84291
|
+
export declare type KnowledgeDiscoveryPersonIntent = KnowledgeDiscoveryIntent & {
|
|
84292
|
+
__typename?: 'KnowledgeDiscoveryPersonIntent';
|
|
84293
|
+
classification: KnowledgeDiscoveryQueryClassification;
|
|
84294
|
+
detectionType: KnowledgeDiscoveryDetectionType;
|
|
84295
|
+
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
84296
|
+
transformedQuery: Scalars['String']['output'];
|
|
84297
|
+
};
|
|
84143
84298
|
export declare type KnowledgeDiscoveryPopularSearchQuery = {
|
|
84144
84299
|
__typename?: 'KnowledgeDiscoveryPopularSearchQuery';
|
|
84145
84300
|
isPopular: Scalars['Boolean']['output'];
|
|
@@ -84159,6 +84314,7 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
84159
84314
|
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
84160
84315
|
definitionHistoryV2?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
84161
84316
|
definitionV2?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
84317
|
+
intentDetection?: Maybe<KnowledgeDiscoveryIntentDetectionResult>;
|
|
84162
84318
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
84163
84319
|
popularSearchQuery?: Maybe<KnowledgeDiscoveryPopularSearchQueryResult>;
|
|
84164
84320
|
querySuggestions?: Maybe<KnowledgeDiscoveryQuerySuggestionsResult>;
|
|
@@ -84218,6 +84374,11 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionV2Args = {
|
|
|
84218
84374
|
scopes?: InputMaybe<Array<KnowledgeDiscoveryScopeInput>>;
|
|
84219
84375
|
workspaceId: Scalars['String']['input'];
|
|
84220
84376
|
};
|
|
84377
|
+
export declare type KnowledgeDiscoveryQueryApiIntentDetectionArgs = {
|
|
84378
|
+
locale: Scalars['String']['input'];
|
|
84379
|
+
query: Scalars['String']['input'];
|
|
84380
|
+
siteId: Scalars['String']['input'];
|
|
84381
|
+
};
|
|
84221
84382
|
export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
84222
84383
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84223
84384
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -84282,6 +84443,26 @@ export declare type KnowledgeDiscoveryQueryApiZeroQueriesArgs = {
|
|
|
84282
84443
|
cloudId: Scalars['String']['input'];
|
|
84283
84444
|
product?: InputMaybe<KnowledgeDiscoveryProduct>;
|
|
84284
84445
|
};
|
|
84446
|
+
export declare enum KnowledgeDiscoveryQueryClassification {
|
|
84447
|
+
JiraNaturalLanguageQuery = "JIRA_NATURAL_LANGUAGE_QUERY",
|
|
84448
|
+
JobTitle = "JOB_TITLE",
|
|
84449
|
+
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
84450
|
+
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
84451
|
+
Navigational = "NAVIGATIONAL",
|
|
84452
|
+
None = "NONE",
|
|
84453
|
+
Person = "PERSON",
|
|
84454
|
+
Team = "TEAM",
|
|
84455
|
+
Topic = "TOPIC"
|
|
84456
|
+
}
|
|
84457
|
+
export declare enum KnowledgeDiscoveryQuerySubType {
|
|
84458
|
+
Command = "COMMAND",
|
|
84459
|
+
Confluence = "CONFLUENCE",
|
|
84460
|
+
Evaluate = "EVALUATE",
|
|
84461
|
+
Jira = "JIRA",
|
|
84462
|
+
JobTitle = "JOB_TITLE",
|
|
84463
|
+
Llm = "LLM",
|
|
84464
|
+
Question = "QUESTION"
|
|
84465
|
+
}
|
|
84285
84466
|
export declare type KnowledgeDiscoveryQuerySuggestion = {
|
|
84286
84467
|
__typename?: 'KnowledgeDiscoveryQuerySuggestion';
|
|
84287
84468
|
query: Scalars['String']['output'];
|
|
@@ -84367,6 +84548,13 @@ export declare type KnowledgeDiscoveryTeam = {
|
|
|
84367
84548
|
__typename?: 'KnowledgeDiscoveryTeam';
|
|
84368
84549
|
id: Scalars['String']['output'];
|
|
84369
84550
|
};
|
|
84551
|
+
export declare type KnowledgeDiscoveryTeamIntent = KnowledgeDiscoveryIntent & {
|
|
84552
|
+
__typename?: 'KnowledgeDiscoveryTeamIntent';
|
|
84553
|
+
classification: KnowledgeDiscoveryQueryClassification;
|
|
84554
|
+
detectionType: KnowledgeDiscoveryDetectionType;
|
|
84555
|
+
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
84556
|
+
transformedQuery: Scalars['String']['output'];
|
|
84557
|
+
};
|
|
84370
84558
|
export declare type KnowledgeDiscoveryTeamSearchResult = KnowledgeDiscoveryTeam | QueryError;
|
|
84371
84559
|
export declare type KnowledgeDiscoveryTopic = KnowledgeDiscoveryEntity & {
|
|
84372
84560
|
__typename?: 'KnowledgeDiscoveryTopic';
|
|
@@ -84392,6 +84580,13 @@ export declare type KnowledgeDiscoveryTopicByAri = Node & {
|
|
|
84392
84580
|
export declare type KnowledgeDiscoveryTopicByAriRelatedEntitiesArgs = {
|
|
84393
84581
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84394
84582
|
};
|
|
84583
|
+
export declare type KnowledgeDiscoveryTopicIntent = KnowledgeDiscoveryIntent & {
|
|
84584
|
+
__typename?: 'KnowledgeDiscoveryTopicIntent';
|
|
84585
|
+
classification: KnowledgeDiscoveryQueryClassification;
|
|
84586
|
+
detectionType: KnowledgeDiscoveryDetectionType;
|
|
84587
|
+
subTypes: Array<KnowledgeDiscoveryQuerySubType>;
|
|
84588
|
+
transformedQuery: Scalars['String']['output'];
|
|
84589
|
+
};
|
|
84395
84590
|
export declare type KnowledgeDiscoveryTopicResult = KnowledgeDiscoveryTopic | QueryError;
|
|
84396
84591
|
export declare enum KnowledgeDiscoveryTopicType {
|
|
84397
84592
|
Area = "AREA",
|
|
@@ -90852,6 +91047,7 @@ export declare type Mutation = {
|
|
|
90852
91047
|
confluence_batchFollowTeammates?: Maybe<ConfluenceBatchFollowTeammatesPayload>;
|
|
90853
91048
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
90854
91049
|
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
91050
|
+
confluence_convertToBlogpost?: Maybe<ConfluenceConvertContentToBlogpostPayload>;
|
|
90855
91051
|
confluence_copyNote?: Maybe<ConfluenceCopyNotePayload>;
|
|
90856
91052
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
90857
91053
|
confluence_createAnswer?: Maybe<ConfluenceCreateAnswerPayload>;
|
|
@@ -91918,6 +92114,10 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
|
91918
92114
|
export declare type MutationConfluence_ConvertNoteArgs = {
|
|
91919
92115
|
input: ConfluenceConvertNoteInput;
|
|
91920
92116
|
};
|
|
92117
|
+
export declare type MutationConfluence_ConvertToBlogpostArgs = {
|
|
92118
|
+
cloudId: Scalars['ID']['input'];
|
|
92119
|
+
input: ConfluenceConvertContentToBlogpostInput;
|
|
92120
|
+
};
|
|
91921
92121
|
export declare type MutationConfluence_CopyNoteArgs = {
|
|
91922
92122
|
id: Scalars['ID']['input'];
|
|
91923
92123
|
};
|
|
@@ -96850,6 +97050,7 @@ export declare type Query = {
|
|
|
96850
97050
|
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
96851
97051
|
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
96852
97052
|
agentStudio_agentById?: Maybe<AgentStudioAgentResult>;
|
|
97053
|
+
agentStudio_agentByIdentityAccountId?: Maybe<AgentStudioAgentResult>;
|
|
96853
97054
|
agentStudio_batchEvaluationJob?: Maybe<AgentStudioBatchEvaluationJob>;
|
|
96854
97055
|
agentStudio_batchEvaluationJobs: Array<AgentStudioBatchEvaluationJob>;
|
|
96855
97056
|
agentStudio_batchEvaluationResults: Array<AgentStudioEvaluationResult>;
|
|
@@ -96865,6 +97066,7 @@ export declare type Query = {
|
|
|
96865
97066
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
96866
97067
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
96867
97068
|
agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
|
|
97069
|
+
agentStudio_insightsConfiguration?: Maybe<AgentStudioInsightsConfigurationResult>;
|
|
96868
97070
|
agentStudio_scenarioById?: Maybe<AgentStudioScenarioResult>;
|
|
96869
97071
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
96870
97072
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
@@ -97265,6 +97467,7 @@ export declare type Query = {
|
|
|
97265
97467
|
groupsUserSpaceAccess?: Maybe<PaginatedGroupList>;
|
|
97266
97468
|
groupsWithContentRestrictions?: Maybe<Array<Maybe<GroupWithRestrictions>>>;
|
|
97267
97469
|
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
97470
|
+
growthUnifiedProfile_getAccountProfile?: Maybe<GrowthUnifiedProfileAccountProfileResult>;
|
|
97268
97471
|
growthUnifiedProfile_getEntitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
97269
97472
|
growthUnifiedProfile_getOrgProfile?: Maybe<GrowthUnifiedProfileOrgProfileResult>;
|
|
97270
97473
|
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
@@ -97338,6 +97541,7 @@ export declare type Query = {
|
|
|
97338
97541
|
jsmChannels_conversationsByContainerAri?: Maybe<JsmChannelsConversationsByContainerAriResult>;
|
|
97339
97542
|
jsmChannels_conversationsByIds?: Maybe<Array<Maybe<JsmChannelsOrchestratorConversation>>>;
|
|
97340
97543
|
jsmChannels_getExperienceConfigurationByProjectId: JsmChannelsExperienceConfigurationResult;
|
|
97544
|
+
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
97341
97545
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
97342
97546
|
jsw?: Maybe<JswQuery>;
|
|
97343
97547
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -97484,6 +97688,7 @@ export declare type Query = {
|
|
|
97484
97688
|
radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
|
|
97485
97689
|
radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
|
|
97486
97690
|
radar_positionByAri?: Maybe<RadarPosition>;
|
|
97691
|
+
radar_positionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
97487
97692
|
radar_positionsByAris?: Maybe<Array<RadarPosition>>;
|
|
97488
97693
|
radar_positionsByEntitySearch?: Maybe<RadarPositionsByEntityConnection>;
|
|
97489
97694
|
radar_positionsSearch?: Maybe<RadarPositionConnection>;
|
|
@@ -97703,9 +97908,7 @@ export declare type QueryAdmin_UnitValidateNameArgs = {
|
|
|
97703
97908
|
};
|
|
97704
97909
|
export declare type QueryAdmin_UnitsForOrgArgs = {
|
|
97705
97910
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
97706
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
97707
97911
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
97708
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
97709
97912
|
orgId: Scalars['ID']['input'];
|
|
97710
97913
|
search?: InputMaybe<AdminUnitsForOrgSearchInput>;
|
|
97711
97914
|
sort?: InputMaybe<AdminUnitsForOrgSortInput>;
|
|
@@ -97762,6 +97965,10 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
97762
97965
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
97763
97966
|
id: Scalars['ID']['input'];
|
|
97764
97967
|
};
|
|
97968
|
+
export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
97969
|
+
cloudId: Scalars['String']['input'];
|
|
97970
|
+
id: Scalars['ID']['input'];
|
|
97971
|
+
};
|
|
97765
97972
|
export declare type QueryAgentStudio_BatchEvaluationJobArgs = {
|
|
97766
97973
|
cloudId: Scalars['String']['input'];
|
|
97767
97974
|
jobId: Scalars['ID']['input'];
|
|
@@ -97844,6 +98051,10 @@ export declare type QueryAgentStudio_GetWidgetContainersByAgentIdArgs = {
|
|
|
97844
98051
|
agentId: Scalars['ID']['input'];
|
|
97845
98052
|
cloudId: Scalars['String']['input'];
|
|
97846
98053
|
};
|
|
98054
|
+
export declare type QueryAgentStudio_InsightsConfigurationArgs = {
|
|
98055
|
+
cloudId: Scalars['String']['input'];
|
|
98056
|
+
id: Scalars['ID']['input'];
|
|
98057
|
+
};
|
|
97847
98058
|
export declare type QueryAgentStudio_ScenarioByIdArgs = {
|
|
97848
98059
|
containerId: Scalars['ID']['input'];
|
|
97849
98060
|
id: Scalars['ID']['input'];
|
|
@@ -99666,6 +99877,9 @@ export declare type QueryGroupsWithContentRestrictionsArgs = {
|
|
|
99666
99877
|
contentId: Scalars['ID']['input'];
|
|
99667
99878
|
groupIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
99668
99879
|
};
|
|
99880
|
+
export declare type QueryGrowthUnifiedProfile_GetAccountProfileArgs = {
|
|
99881
|
+
accountId: Scalars['ID']['input'];
|
|
99882
|
+
};
|
|
99669
99883
|
export declare type QueryGrowthUnifiedProfile_GetEntitlementProfileArgs = {
|
|
99670
99884
|
entitlementId: Scalars['ID']['input'];
|
|
99671
99885
|
};
|
|
@@ -99915,6 +100129,10 @@ export declare type QueryJsmChannels_GetExperienceConfigurationByProjectIdArgs =
|
|
|
99915
100129
|
experience: JsmChannelsExperience;
|
|
99916
100130
|
jiraProjectAri: Scalars['ID']['input'];
|
|
99917
100131
|
};
|
|
100132
|
+
export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArgs = {
|
|
100133
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
100134
|
+
ticketId: Scalars['ID']['input'];
|
|
100135
|
+
};
|
|
99918
100136
|
export declare type QueryKnowledgeBaseArgs = {
|
|
99919
100137
|
cloudId: Scalars['ID']['input'];
|
|
99920
100138
|
};
|
|
@@ -100401,6 +100619,9 @@ export declare type QueryRadar_GroupMetricsArgs = {
|
|
|
100401
100619
|
export declare type QueryRadar_PositionByAriArgs = {
|
|
100402
100620
|
id: Scalars['ID']['input'];
|
|
100403
100621
|
};
|
|
100622
|
+
export declare type QueryRadar_PositionLaborCostEstimateSettingsArgs = {
|
|
100623
|
+
cloudId: Scalars['ID']['input'];
|
|
100624
|
+
};
|
|
100404
100625
|
export declare type QueryRadar_PositionsByArisArgs = {
|
|
100405
100626
|
ids: Array<Scalars['ID']['input']>;
|
|
100406
100627
|
};
|
|
@@ -101244,6 +101465,16 @@ export declare type RadarFieldValuesEdge = RadarEdge & {
|
|
|
101244
101465
|
cursor: Scalars['String']['output'];
|
|
101245
101466
|
node: RadarFieldValue;
|
|
101246
101467
|
};
|
|
101468
|
+
export declare type RadarFields = {
|
|
101469
|
+
__typename?: 'RadarFields';
|
|
101470
|
+
focusAreaFields: Array<RadarFieldDefinition>;
|
|
101471
|
+
focusAreaTypeFields: Array<RadarFieldDefinition>;
|
|
101472
|
+
positionFields: Array<RadarFieldDefinition>;
|
|
101473
|
+
proposalFields: Array<RadarFieldDefinition>;
|
|
101474
|
+
proposedMovementFields: Array<RadarFieldDefinition>;
|
|
101475
|
+
teamFields: Array<RadarFieldDefinition>;
|
|
101476
|
+
workerFields: Array<RadarFieldDefinition>;
|
|
101477
|
+
};
|
|
101247
101478
|
export declare enum RadarFilterInputType {
|
|
101248
101479
|
Checkbox = "CHECKBOX",
|
|
101249
101480
|
Radio = "RADIO",
|
|
@@ -101416,6 +101647,13 @@ export declare type RadarPositionEdge = RadarEdge & {
|
|
|
101416
101647
|
cursor: Scalars['String']['output'];
|
|
101417
101648
|
node: RadarPosition;
|
|
101418
101649
|
};
|
|
101650
|
+
export declare type RadarPositionLaborCostEstimateSettings = {
|
|
101651
|
+
__typename?: 'RadarPositionLaborCostEstimateSettings';
|
|
101652
|
+
defaultAmount?: Maybe<RadarMoney>;
|
|
101653
|
+
fieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
101654
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
101655
|
+
lastImportedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
101656
|
+
};
|
|
101419
101657
|
export declare type RadarPositionProposalChangeInput = {
|
|
101420
101658
|
changeProposalAri: Scalars['ID']['input'];
|
|
101421
101659
|
positionAri: Scalars['ID']['input'];
|
|
@@ -101565,6 +101803,7 @@ export declare type RadarWorkerEdge = RadarEdge & {
|
|
|
101565
101803
|
export declare type RadarWorkspace = {
|
|
101566
101804
|
__typename?: 'RadarWorkspace';
|
|
101567
101805
|
entityId: Scalars['ID']['output'];
|
|
101806
|
+
fields: RadarFields;
|
|
101568
101807
|
focusAreaFields: Array<RadarFieldDefinition>;
|
|
101569
101808
|
focusAreaTypeFields: Array<RadarFieldDefinition>;
|
|
101570
101809
|
functions: Array<RadarFunction>;
|
|
@@ -103736,6 +103975,7 @@ export declare type SearchResultAssetsObject = SearchResult & {
|
|
|
103736
103975
|
id: Scalars['ID']['output'];
|
|
103737
103976
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
103738
103977
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
103978
|
+
objectEntity?: Maybe<AssetsObject>;
|
|
103739
103979
|
objectSchemaEntity?: Maybe<AssetsSchema>;
|
|
103740
103980
|
objectTypeEntity?: Maybe<AssetsObjectType>;
|
|
103741
103981
|
schemaAri: Scalars['ID']['output'];
|
|
@@ -103752,6 +103992,7 @@ export declare type SearchResultAssetsObjectSchema = SearchResult & {
|
|
|
103752
103992
|
id: Scalars['ID']['output'];
|
|
103753
103993
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
103754
103994
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
103995
|
+
objectSchemaEntity?: Maybe<AssetsSchema>;
|
|
103755
103996
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
103756
103997
|
title: Scalars['String']['output'];
|
|
103757
103998
|
type: SearchResultType;
|
|
@@ -103765,6 +104006,7 @@ export declare type SearchResultAssetsObjectType = SearchResult & {
|
|
|
103765
104006
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
103766
104007
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
103767
104008
|
objectSchemaEntity?: Maybe<AssetsSchema>;
|
|
104009
|
+
objectTypeEntity?: Maybe<AssetsObjectType>;
|
|
103768
104010
|
schemaAri: Scalars['ID']['output'];
|
|
103769
104011
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
103770
104012
|
title: Scalars['String']['output'];
|
|
@@ -104202,8 +104444,7 @@ export declare enum SearchResultType {
|
|
|
104202
104444
|
Issue = "issue",
|
|
104203
104445
|
Learning = "learning",
|
|
104204
104446
|
Message = "message",
|
|
104205
|
-
|
|
104206
|
-
ObjectType = "object_type",
|
|
104447
|
+
Object = "object",
|
|
104207
104448
|
Page = "page",
|
|
104208
104449
|
Plan = "plan",
|
|
104209
104450
|
Presentation = "presentation",
|
|
@@ -104211,9 +104452,11 @@ export declare enum SearchResultType {
|
|
|
104211
104452
|
ProjectUpdate = "project_update",
|
|
104212
104453
|
Question = "question",
|
|
104213
104454
|
Repository = "repository",
|
|
104455
|
+
Schema = "schema",
|
|
104214
104456
|
Space = "space",
|
|
104215
104457
|
Spreadsheet = "spreadsheet",
|
|
104216
104458
|
Tag = "tag",
|
|
104459
|
+
Type = "type",
|
|
104217
104460
|
Unrecognised = "unrecognised",
|
|
104218
104461
|
Whiteboard = "whiteboard"
|
|
104219
104462
|
}
|
|
@@ -128098,6 +128341,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
128098
128341
|
key: Scalars['String']['output'];
|
|
128099
128342
|
latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
128100
128343
|
latestUserUpdate?: Maybe<TownsquareProjectUpdate>;
|
|
128344
|
+
linkedJiraWorkItems?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
128101
128345
|
links?: Maybe<TownsquareLinkConnection>;
|
|
128102
128346
|
members?: Maybe<TownsquareUserConnection>;
|
|
128103
128347
|
mercuryOriginalProjectStatus?: Maybe<MercuryOriginalProjectStatus>;
|
|
@@ -128165,6 +128409,11 @@ export declare type TownsquareProjectHighlightsArgs = {
|
|
|
128165
128409
|
sort?: InputMaybe<Array<InputMaybe<TownsquareHighlightSortEnum>>>;
|
|
128166
128410
|
type?: InputMaybe<TownsquareHighlightType>;
|
|
128167
128411
|
};
|
|
128412
|
+
export declare type TownsquareProjectLinkedJiraWorkItemsArgs = {
|
|
128413
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128414
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128415
|
+
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
128416
|
+
};
|
|
128168
128417
|
export declare type TownsquareProjectLinksArgs = {
|
|
128169
128418
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
128170
128419
|
first?: InputMaybe<Scalars['Int']['input']>;
|