@forge/cli-shared 4.2.0-next.0 → 4.2.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/out/graphql/graphql-types.d.ts +180 -31
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -0
- package/out/ui/text.d.ts +1 -3
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +2 -37
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 4.2.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8ace637: Fix egress related error messages during deployment
|
|
8
|
+
|
|
9
|
+
## 4.2.0-next.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [6f17340]
|
|
14
|
+
- @forge/manifest@7.2.2-next.0
|
|
15
|
+
|
|
3
16
|
## 4.2.0-next.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
|
@@ -7041,6 +7041,7 @@ export declare type ContentPlatformAnchorContentSearchConnection = {
|
|
|
7041
7041
|
export declare type ContentPlatformAnchorHeadline = {
|
|
7042
7042
|
__typename?: 'ContentPlatformAnchorHeadline';
|
|
7043
7043
|
anchorTopic?: Maybe<Array<ContentPlatformTaxonomyAnchorTopic>>;
|
|
7044
|
+
animatedTour?: Maybe<ContentPlatformAnimatedTour>;
|
|
7044
7045
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7045
7046
|
id: Scalars['String']['output'];
|
|
7046
7047
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -7089,6 +7090,23 @@ export declare type ContentPlatformAnchorSocialProof = {
|
|
|
7089
7090
|
product?: Maybe<Array<ContentPlatformProduct>>;
|
|
7090
7091
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7091
7092
|
};
|
|
7093
|
+
export declare type ContentPlatformAnimatedTour = {
|
|
7094
|
+
__typename?: 'ContentPlatformAnimatedTour';
|
|
7095
|
+
cardOverride?: Maybe<ContentPlatformAnimatedTourCard>;
|
|
7096
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7097
|
+
doneCardsOverride?: Maybe<Array<ContentPlatformAnimatedTourCard>>;
|
|
7098
|
+
inProgressCardsOverride?: Maybe<Array<ContentPlatformAnimatedTourCard>>;
|
|
7099
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7100
|
+
};
|
|
7101
|
+
export declare type ContentPlatformAnimatedTourCard = {
|
|
7102
|
+
__typename?: 'ContentPlatformAnimatedTourCard';
|
|
7103
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
7104
|
+
epicName?: Maybe<Scalars['String']['output']>;
|
|
7105
|
+
issueTypeName?: Maybe<Scalars['String']['output']>;
|
|
7106
|
+
priority?: Maybe<Scalars['String']['output']>;
|
|
7107
|
+
summary: Scalars['String']['output'];
|
|
7108
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
7109
|
+
};
|
|
7092
7110
|
export declare type ContentPlatformAnyContext = ContentPlatformContextApp | ContentPlatformContextProduct | ContentPlatformContextTheme;
|
|
7093
7111
|
export declare type ContentPlatformAssetComponent = {
|
|
7094
7112
|
__typename?: 'ContentPlatformAssetComponent';
|
|
@@ -9608,6 +9626,7 @@ export declare type DetachEventSourcePayload = Payload & {
|
|
|
9608
9626
|
export declare type DevAi = {
|
|
9609
9627
|
__typename?: 'DevAi';
|
|
9610
9628
|
autofixConfigurations?: Maybe<DevAiAutofixConfigurationConnection>;
|
|
9629
|
+
getSupportedRepos?: Maybe<Array<Maybe<Scalars['URL']['output']>>>;
|
|
9611
9630
|
};
|
|
9612
9631
|
export declare type DevAiAutofixConfigurationsArgs = {
|
|
9613
9632
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -9617,6 +9636,10 @@ export declare type DevAiAutofixConfigurationsArgs = {
|
|
|
9617
9636
|
repositoryUrls: Array<Scalars['URL']['input']>;
|
|
9618
9637
|
workspaceId: Scalars['ID']['input'];
|
|
9619
9638
|
};
|
|
9639
|
+
export declare type DevAiGetSupportedReposArgs = {
|
|
9640
|
+
repoUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
|
|
9641
|
+
workspaceId: Scalars['ID']['input'];
|
|
9642
|
+
};
|
|
9620
9643
|
export declare type DevAiAutofixConfiguration = {
|
|
9621
9644
|
__typename?: 'DevAiAutofixConfiguration';
|
|
9622
9645
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -9713,7 +9736,9 @@ export declare type DevOps = {
|
|
|
9713
9736
|
providers?: Maybe<DevOpsProviders>;
|
|
9714
9737
|
providersByDomain?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
9715
9738
|
providersByIds?: Maybe<Array<Maybe<DevOpsDataProvider>>>;
|
|
9739
|
+
summarisedBuildsByAgsIssues?: Maybe<Array<Maybe<DevOpsSummarisedBuilds>>>;
|
|
9716
9740
|
summarisedDeployments?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
9741
|
+
summarisedDeploymentsByAgsIssues?: Maybe<Array<Maybe<DevOpsSummarisedDeployments>>>;
|
|
9717
9742
|
summarisedEntities?: Maybe<Array<Maybe<DevOpsSummarisedEntities>>>;
|
|
9718
9743
|
toolchain?: Maybe<Toolchain>;
|
|
9719
9744
|
};
|
|
@@ -9743,9 +9768,15 @@ export declare type DevOpsProvidersByIdsArgs = {
|
|
|
9743
9768
|
providerIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
9744
9769
|
providerTypes?: InputMaybe<Array<DevOpsProviderType>>;
|
|
9745
9770
|
};
|
|
9771
|
+
export declare type DevOpsSummarisedBuildsByAgsIssuesArgs = {
|
|
9772
|
+
ids: Array<Scalars['ID']['input']>;
|
|
9773
|
+
};
|
|
9746
9774
|
export declare type DevOpsSummarisedDeploymentsArgs = {
|
|
9747
9775
|
ids: Array<Scalars['ID']['input']>;
|
|
9748
9776
|
};
|
|
9777
|
+
export declare type DevOpsSummarisedDeploymentsByAgsIssuesArgs = {
|
|
9778
|
+
ids: Array<Scalars['ID']['input']>;
|
|
9779
|
+
};
|
|
9749
9780
|
export declare type DevOpsSummarisedEntitiesArgs = {
|
|
9750
9781
|
ids: Array<Scalars['ID']['input']>;
|
|
9751
9782
|
};
|
|
@@ -10845,6 +10876,7 @@ export declare type DevOpsSummarisedBuilds = {
|
|
|
10845
10876
|
__typename?: 'DevOpsSummarisedBuilds';
|
|
10846
10877
|
buildStates?: Maybe<Array<Maybe<DevOpsSummarisedBuildState>>>;
|
|
10847
10878
|
count?: Maybe<Scalars['Int']['output']>;
|
|
10879
|
+
id: Scalars['ID']['output'];
|
|
10848
10880
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
10849
10881
|
mostRelevantCount?: Maybe<Scalars['Int']['output']>;
|
|
10850
10882
|
singleClickUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -10856,6 +10888,7 @@ export declare type DevOpsSummarisedDeployments = {
|
|
|
10856
10888
|
deploymentEnvironment?: Maybe<DevOpsEnvironment>;
|
|
10857
10889
|
deploymentState?: Maybe<DeploymentState>;
|
|
10858
10890
|
entityId: Scalars['ID']['output'];
|
|
10891
|
+
id: Scalars['ID']['output'];
|
|
10859
10892
|
lastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
10860
10893
|
mostRelevantCount?: Maybe<Scalars['Int']['output']>;
|
|
10861
10894
|
mostRelevantLastUpdated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -29070,6 +29103,13 @@ export declare type JiraBulkTransitionScreenInput = {
|
|
|
29070
29103
|
issueIds: Array<Scalars['ID']['input']>;
|
|
29071
29104
|
transitionId: Scalars['Long']['input'];
|
|
29072
29105
|
};
|
|
29106
|
+
export declare type JiraBulkTransitionScreenLayout = Node & {
|
|
29107
|
+
__typename?: 'JiraBulkTransitionScreenLayout';
|
|
29108
|
+
content?: Maybe<JiraScreenTabLayout>;
|
|
29109
|
+
id: Scalars['ID']['output'];
|
|
29110
|
+
issues: Array<JiraIssue>;
|
|
29111
|
+
transition: JiraTransition;
|
|
29112
|
+
};
|
|
29073
29113
|
export declare type JiraBulkTransitionScreenResponse = {
|
|
29074
29114
|
__typename?: 'JiraBulkTransitionScreenResponse';
|
|
29075
29115
|
bulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenConnection>;
|
|
@@ -29114,6 +29154,7 @@ export declare type JiraCmdbFieldSelectedCmdbObjectsConnectionArgs = {
|
|
|
29114
29154
|
export declare type JiraCalendar = {
|
|
29115
29155
|
__typename?: 'JiraCalendar';
|
|
29116
29156
|
issues?: Maybe<JiraIssueConnection>;
|
|
29157
|
+
projects?: Maybe<JiraProjectConnection>;
|
|
29117
29158
|
sprints?: Maybe<JiraSprintConnection>;
|
|
29118
29159
|
unscheduledIssues?: Maybe<JiraIssueConnection>;
|
|
29119
29160
|
versions?: Maybe<JiraVersionConnection>;
|
|
@@ -29125,6 +29166,12 @@ export declare type JiraCalendarIssuesArgs = {
|
|
|
29125
29166
|
input?: InputMaybe<JiraCalendarIssuesInput>;
|
|
29126
29167
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29127
29168
|
};
|
|
29169
|
+
export declare type JiraCalendarProjectsArgs = {
|
|
29170
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
29171
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
29172
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
29173
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29174
|
+
};
|
|
29128
29175
|
export declare type JiraCalendarSprintsArgs = {
|
|
29129
29176
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29130
29177
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30017,6 +30064,12 @@ export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
|
30017
30064
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
30018
30065
|
success: Scalars['Boolean']['output'];
|
|
30019
30066
|
};
|
|
30067
|
+
export declare type JiraCreateCalendarIssuePayload = Payload & {
|
|
30068
|
+
__typename?: 'JiraCreateCalendarIssuePayload';
|
|
30069
|
+
errors?: Maybe<Array<MutationError>>;
|
|
30070
|
+
issue?: Maybe<JiraIssue>;
|
|
30071
|
+
success: Scalars['Boolean']['output'];
|
|
30072
|
+
};
|
|
30020
30073
|
export declare type JiraCreateCustomFilterInput = {
|
|
30021
30074
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
30022
30075
|
editGrants: Array<InputMaybe<JiraShareableEntityEditGrantInput>>;
|
|
@@ -33582,6 +33635,7 @@ export declare type JiraMutation = {
|
|
|
33582
33635
|
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
33583
33636
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
33584
33637
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
33638
|
+
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
33585
33639
|
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
33586
33640
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
33587
33641
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
@@ -33739,6 +33793,14 @@ export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
|
33739
33793
|
cloudId: Scalars['ID']['input'];
|
|
33740
33794
|
input: JiraCreateApproverListFieldInput;
|
|
33741
33795
|
};
|
|
33796
|
+
export declare type JiraMutationCreateCalendarIssueArgs = {
|
|
33797
|
+
configuration: JiraCalendarViewConfigurationInput;
|
|
33798
|
+
endDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
33799
|
+
issueTypeId: Scalars['ID']['input'];
|
|
33800
|
+
scope?: InputMaybe<JiraViewScopeInput>;
|
|
33801
|
+
startDateInput?: InputMaybe<Scalars['DateTime']['input']>;
|
|
33802
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
33803
|
+
};
|
|
33742
33804
|
export declare type JiraMutationCreateIssueLinksArgs = {
|
|
33743
33805
|
cloudId: Scalars['ID']['input'];
|
|
33744
33806
|
input: JiraBulkCreateIssueLinksInput;
|
|
@@ -35695,6 +35757,7 @@ export declare type JiraQuery = {
|
|
|
35695
35757
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
35696
35758
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
35697
35759
|
jiraBulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenResponse>;
|
|
35760
|
+
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
35698
35761
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
35699
35762
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
35700
35763
|
jiraProject?: Maybe<JiraProject>;
|
|
@@ -36080,6 +36143,10 @@ export declare type JiraQueryIssuesByKeyArgs = {
|
|
|
36080
36143
|
export declare type JiraQueryJiraBulkTransitionsScreenArgs = {
|
|
36081
36144
|
input: Array<JiraBulkTransitionScreenInput>;
|
|
36082
36145
|
};
|
|
36146
|
+
export declare type JiraQueryJiraBulkTransitionsScreenDetailsArgs = {
|
|
36147
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
36148
|
+
transitionId: Scalars['Int']['input'];
|
|
36149
|
+
};
|
|
36083
36150
|
export declare type JiraQueryJiraCalendarArgs = {
|
|
36084
36151
|
configuration?: InputMaybe<JiraCalendarViewConfigurationInput>;
|
|
36085
36152
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
@@ -39456,8 +39523,9 @@ export declare type JiraUserMetadata = {
|
|
|
39456
39523
|
info?: Maybe<User>;
|
|
39457
39524
|
status?: Maybe<JiraProjectRoleActorUserStatus>;
|
|
39458
39525
|
};
|
|
39459
|
-
export declare type JiraUserNavigationConfiguration = {
|
|
39526
|
+
export declare type JiraUserNavigationConfiguration = Node & {
|
|
39460
39527
|
__typename?: 'JiraUserNavigationConfiguration';
|
|
39528
|
+
id: Scalars['ID']['output'];
|
|
39461
39529
|
navItems: Array<JiraConfigurableNavigationItem>;
|
|
39462
39530
|
navKey: Scalars['String']['output'];
|
|
39463
39531
|
};
|
|
@@ -40608,8 +40676,7 @@ export declare type JsmChatChannelRequestTypeMapping = {
|
|
|
40608
40676
|
channelUrl?: Maybe<Scalars['String']['output']>;
|
|
40609
40677
|
isPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
40610
40678
|
projectId?: Maybe<Scalars['String']['output']>;
|
|
40611
|
-
|
|
40612
|
-
requestTypeName?: Maybe<Scalars['String']['output']>;
|
|
40679
|
+
requestTypes?: Maybe<Array<Maybe<JsmChatRequestTypesMappedResponse>>>;
|
|
40613
40680
|
settings?: Maybe<JsmChatChannelSettings>;
|
|
40614
40681
|
};
|
|
40615
40682
|
export declare type JsmChatChannelSettings = {
|
|
@@ -40623,12 +40690,11 @@ export declare enum JsmChatChannelType {
|
|
|
40623
40690
|
Request = "REQUEST"
|
|
40624
40691
|
}
|
|
40625
40692
|
export declare type JsmChatCreateChannelInput = {
|
|
40626
|
-
aaid: Scalars['String']['input'];
|
|
40627
40693
|
channelName: Scalars['String']['input'];
|
|
40628
40694
|
channelType: JsmChatChannelType;
|
|
40629
|
-
|
|
40695
|
+
isVirtualAgentChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40630
40696
|
isVirtualAgentTestChannel?: InputMaybe<Scalars['Boolean']['input']>;
|
|
40631
|
-
requestTypeIds
|
|
40697
|
+
requestTypeIds: Array<Scalars['String']['input']>;
|
|
40632
40698
|
};
|
|
40633
40699
|
export declare type JsmChatCreateChannelOutput = {
|
|
40634
40700
|
__typename?: 'JsmChatCreateChannelOutput';
|
|
@@ -40728,10 +40794,16 @@ export declare type JsmChatQueryInitializeConfigArgs = {
|
|
|
40728
40794
|
export declare type JsmChatQueryInitializeNativeConfigArgs = {
|
|
40729
40795
|
jiraProjectAri: Scalars['ID']['input'];
|
|
40730
40796
|
};
|
|
40797
|
+
export declare type JsmChatRequestTypesMappedResponse = {
|
|
40798
|
+
__typename?: 'JsmChatRequestTypesMappedResponse';
|
|
40799
|
+
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
40800
|
+
requestTypeName?: Maybe<Scalars['String']['output']>;
|
|
40801
|
+
};
|
|
40731
40802
|
export declare type JsmChatSlackConfig = {
|
|
40732
40803
|
__typename?: 'JsmChatSlackConfig';
|
|
40733
40804
|
botUserId?: Maybe<Scalars['String']['output']>;
|
|
40734
40805
|
channelRequestTypeMapping: Array<JsmChatChannelRequestTypeMapping>;
|
|
40806
|
+
projectKey?: Maybe<Scalars['String']['output']>;
|
|
40735
40807
|
projectSettings?: Maybe<JsmChatProjectSettingsSlack>;
|
|
40736
40808
|
siteId: Scalars['ID']['output'];
|
|
40737
40809
|
slackTeamDomain?: Maybe<Scalars['String']['output']>;
|
|
@@ -40785,6 +40857,51 @@ export declare type JswQuery = {
|
|
|
40785
40857
|
export declare type JswQueryBoardScopeArgs = {
|
|
40786
40858
|
boardId: Scalars['ID']['input'];
|
|
40787
40859
|
};
|
|
40860
|
+
export declare type KnowledgeBaseMutationApi = {
|
|
40861
|
+
__typename?: 'KnowledgeBaseMutationApi';
|
|
40862
|
+
linkKnowledgeBaseSource?: Maybe<KnowledgeBaseMutationResponse>;
|
|
40863
|
+
unlinkKnowledgeBaseSource?: Maybe<KnowledgeBaseMutationResponse>;
|
|
40864
|
+
};
|
|
40865
|
+
export declare type KnowledgeBaseMutationApiLinkKnowledgeBaseSourceArgs = {
|
|
40866
|
+
container: Scalars['ID']['input'];
|
|
40867
|
+
url: Scalars['String']['input'];
|
|
40868
|
+
};
|
|
40869
|
+
export declare type KnowledgeBaseMutationApiUnlinkKnowledgeBaseSourceArgs = {
|
|
40870
|
+
id: Scalars['ID']['input'];
|
|
40871
|
+
};
|
|
40872
|
+
export declare type KnowledgeBaseMutationResponse = {
|
|
40873
|
+
__typename?: 'KnowledgeBaseMutationResponse';
|
|
40874
|
+
mutationError: MutationError;
|
|
40875
|
+
success: Scalars['Boolean']['output'];
|
|
40876
|
+
};
|
|
40877
|
+
export declare type KnowledgeBaseQueryApi = {
|
|
40878
|
+
__typename?: 'KnowledgeBaseQueryApi';
|
|
40879
|
+
knowledgeBase?: Maybe<KnowledgeBaseResponse>;
|
|
40880
|
+
};
|
|
40881
|
+
export declare type KnowledgeBaseQueryApiKnowledgeBaseArgs = {
|
|
40882
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
40883
|
+
container: Scalars['ID']['input'];
|
|
40884
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
40885
|
+
};
|
|
40886
|
+
export declare type KnowledgeBaseResponse = KnowledgeBaseSources | QueryError;
|
|
40887
|
+
export declare type KnowledgeBaseSource = {
|
|
40888
|
+
__typename?: 'KnowledgeBaseSource';
|
|
40889
|
+
containerAri: Scalars['ID']['output'];
|
|
40890
|
+
entityReference: Scalars['String']['output'];
|
|
40891
|
+
id: Scalars['ID']['output'];
|
|
40892
|
+
name: Scalars['String']['output'];
|
|
40893
|
+
url: Scalars['String']['output'];
|
|
40894
|
+
};
|
|
40895
|
+
export declare type KnowledgeBaseSourceEdge = {
|
|
40896
|
+
__typename?: 'KnowledgeBaseSourceEdge';
|
|
40897
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40898
|
+
node: KnowledgeBaseSource;
|
|
40899
|
+
};
|
|
40900
|
+
export declare type KnowledgeBaseSources = {
|
|
40901
|
+
__typename?: 'KnowledgeBaseSources';
|
|
40902
|
+
edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
|
|
40903
|
+
totalCount: Scalars['Int']['output'];
|
|
40904
|
+
};
|
|
40788
40905
|
export declare type KnowledgeDiscoveryConfluenceEntity = ConfluenceBlogPost | ConfluencePage;
|
|
40789
40906
|
export declare type KnowledgeDiscoveryCreateDefinitionInput = {
|
|
40790
40907
|
definition: Scalars['String']['input'];
|
|
@@ -41535,10 +41652,21 @@ export declare type MarketplaceStoreLoggedInUser = {
|
|
|
41535
41652
|
__typename?: 'MarketplaceStoreLoggedInUser';
|
|
41536
41653
|
email: Scalars['String']['output'];
|
|
41537
41654
|
id: Scalars['ID']['output'];
|
|
41655
|
+
lastVisitedDeveloperSpace?: Maybe<MarketplaceStoreLoggedInUserDeveloperSpace>;
|
|
41538
41656
|
links?: Maybe<MarketplaceStoreLoggedInUserLinks>;
|
|
41539
41657
|
name: Scalars['String']['output'];
|
|
41540
41658
|
picture: Scalars['String']['output'];
|
|
41541
41659
|
};
|
|
41660
|
+
export declare type MarketplaceStoreLoggedInUserLastVisitedDeveloperSpaceArgs = {
|
|
41661
|
+
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
41662
|
+
vendorId?: InputMaybe<Scalars['ID']['input']>;
|
|
41663
|
+
};
|
|
41664
|
+
export declare type MarketplaceStoreLoggedInUserDeveloperSpace = {
|
|
41665
|
+
__typename?: 'MarketplaceStoreLoggedInUserDeveloperSpace';
|
|
41666
|
+
id: Scalars['ID']['output'];
|
|
41667
|
+
name: Scalars['String']['output'];
|
|
41668
|
+
vendorId: Scalars['ID']['output'];
|
|
41669
|
+
};
|
|
41542
41670
|
export declare type MarketplaceStoreLoggedInUserLinks = {
|
|
41543
41671
|
__typename?: 'MarketplaceStoreLoggedInUserLinks';
|
|
41544
41672
|
addons: Scalars['String']['output'];
|
|
@@ -42137,6 +42265,7 @@ export declare type Mutation = {
|
|
|
42137
42265
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
42138
42266
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
42139
42267
|
jsw?: Maybe<JswMutation>;
|
|
42268
|
+
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
42140
42269
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
42141
42270
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
42142
42271
|
mercuryGoal?: Maybe<MercuryGoalMutationApi>;
|
|
@@ -42438,6 +42567,9 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
42438
42567
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
42439
42568
|
input: InvokePolarisObjectInput;
|
|
42440
42569
|
};
|
|
42570
|
+
export declare type MutationKnowledgeBaseArgs = {
|
|
42571
|
+
cloudId: Scalars['ID']['input'];
|
|
42572
|
+
};
|
|
42441
42573
|
export declare type MutationMoveSprintDownArgs = {
|
|
42442
42574
|
input?: InputMaybe<MoveSprintDownInput>;
|
|
42443
42575
|
};
|
|
@@ -44873,6 +45005,7 @@ export declare type Query = {
|
|
|
44873
45005
|
jiraReleases?: Maybe<JiraReleases>;
|
|
44874
45006
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
44875
45007
|
jsw?: Maybe<JswQuery>;
|
|
45008
|
+
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
44876
45009
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
44877
45010
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
44878
45011
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
@@ -45210,6 +45343,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
45210
45343
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45211
45344
|
id: Scalars['ID']['input'];
|
|
45212
45345
|
};
|
|
45346
|
+
export declare type QueryKnowledgeBaseArgs = {
|
|
45347
|
+
cloudId: Scalars['ID']['input'];
|
|
45348
|
+
};
|
|
45213
45349
|
export declare type QueryMarketplaceAppArgs = {
|
|
45214
45350
|
appId: Scalars['ID']['input'];
|
|
45215
45351
|
};
|
|
@@ -45448,6 +45584,7 @@ export declare enum RateLimitingCurrency {
|
|
|
45448
45584
|
HelpCenterCurrency = "HELP_CENTER_CURRENCY",
|
|
45449
45585
|
HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
|
|
45450
45586
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
45587
|
+
KnowledgeBaseCurrency = "KNOWLEDGE_BASE_CURRENCY",
|
|
45451
45588
|
PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
|
|
45452
45589
|
PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
|
|
45453
45590
|
PolarisCommentCurrency = "POLARIS_COMMENT_CURRENCY",
|
|
@@ -47476,6 +47613,7 @@ export declare enum ShepherdAlertStatus {
|
|
|
47476
47613
|
}
|
|
47477
47614
|
export declare type ShepherdAlertSupportingData = {
|
|
47478
47615
|
__typename?: 'ShepherdAlertSupportingData';
|
|
47616
|
+
bitbucketDetectionHighlight?: Maybe<ShepherdBitbucketDetectionHighlight>;
|
|
47479
47617
|
customDetectionHighlight?: Maybe<ShepherdCustomDetectionHighlight>;
|
|
47480
47618
|
highlight: ShepherdHighlight;
|
|
47481
47619
|
marketplaceAppHighlight?: Maybe<ShepherdMarketplaceAppHighlight>;
|
|
@@ -47587,12 +47725,27 @@ export declare type ShepherdAuditLogContext = {
|
|
|
47587
47725
|
attributes: Array<ShepherdAuditLogAttribute>;
|
|
47588
47726
|
id: Scalars['String']['output'];
|
|
47589
47727
|
};
|
|
47728
|
+
export declare type ShepherdBitbucketDetectionHighlight = {
|
|
47729
|
+
__typename?: 'ShepherdBitbucketDetectionHighlight';
|
|
47730
|
+
repository?: Maybe<ShepherdBitbucketRepositoryInfo>;
|
|
47731
|
+
workspace?: Maybe<ShepherdBitbucketWorkspaceInfo>;
|
|
47732
|
+
};
|
|
47733
|
+
export declare type ShepherdBitbucketRepositoryInfo = {
|
|
47734
|
+
__typename?: 'ShepherdBitbucketRepositoryInfo';
|
|
47735
|
+
name: Scalars['String']['output'];
|
|
47736
|
+
url: Scalars['URL']['output'];
|
|
47737
|
+
};
|
|
47590
47738
|
export declare type ShepherdBitbucketWorkspace = {
|
|
47591
47739
|
__typename?: 'ShepherdBitbucketWorkspace';
|
|
47592
47740
|
ari: Scalars['ID']['output'];
|
|
47593
47741
|
slug?: Maybe<Scalars['String']['output']>;
|
|
47594
47742
|
url?: Maybe<Scalars['String']['output']>;
|
|
47595
47743
|
};
|
|
47744
|
+
export declare type ShepherdBitbucketWorkspaceInfo = {
|
|
47745
|
+
__typename?: 'ShepherdBitbucketWorkspaceInfo';
|
|
47746
|
+
name: Scalars['String']['output'];
|
|
47747
|
+
url: Scalars['URL']['output'];
|
|
47748
|
+
};
|
|
47596
47749
|
export declare type ShepherdCategorizedAlertMetadata = {
|
|
47597
47750
|
__typename?: 'ShepherdCategorizedAlertMetadata';
|
|
47598
47751
|
category: Scalars['String']['output'];
|
|
@@ -49683,6 +49836,7 @@ export declare type ToolchainDisassociateEntitiesInput = {
|
|
|
49683
49836
|
};
|
|
49684
49837
|
export declare type ToolchainDisassociateEntitiesPayload = Payload & {
|
|
49685
49838
|
__typename?: 'ToolchainDisassociateEntitiesPayload';
|
|
49839
|
+
entities?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
49686
49840
|
errors?: Maybe<Array<MutationError>>;
|
|
49687
49841
|
fromEntities?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
49688
49842
|
success: Scalars['Boolean']['output'];
|
|
@@ -51447,8 +51601,8 @@ export declare type UnifiedMutation = {
|
|
|
51447
51601
|
__typename?: 'UnifiedMutation';
|
|
51448
51602
|
createLinkedAccount: UnifiedLinkedCreateAccountUnion;
|
|
51449
51603
|
createParentAccount: UnifiedCreateAccountUnion;
|
|
51450
|
-
createUnifiedProfile: UnifiedCreateProfileUnion;
|
|
51451
51604
|
createUnifiedSystem: UnifiedSystemCreateAccountUnion;
|
|
51605
|
+
updateUnifiedProfile: UnifiedCreateProfileUnion;
|
|
51452
51606
|
};
|
|
51453
51607
|
export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
51454
51608
|
input: UnifiedLinkedAccountInput;
|
|
@@ -51456,12 +51610,12 @@ export declare type UnifiedMutationCreateLinkedAccountArgs = {
|
|
|
51456
51610
|
export declare type UnifiedMutationCreateParentAccountArgs = {
|
|
51457
51611
|
input: UnifiedParentAccountInput;
|
|
51458
51612
|
};
|
|
51459
|
-
export declare type UnifiedMutationCreateUnifiedProfileArgs = {
|
|
51460
|
-
input: UnifiedProfileInput;
|
|
51461
|
-
};
|
|
51462
51613
|
export declare type UnifiedMutationCreateUnifiedSystemArgs = {
|
|
51463
51614
|
input: UnifiedSystemInput;
|
|
51464
51615
|
};
|
|
51616
|
+
export declare type UnifiedMutationUpdateUnifiedProfileArgs = {
|
|
51617
|
+
input: UnifiedProfileInput;
|
|
51618
|
+
};
|
|
51465
51619
|
export declare type UnifiedParentAccount = {
|
|
51466
51620
|
__typename?: 'UnifiedParentAccount';
|
|
51467
51621
|
parentAccountEmailId?: Maybe<Scalars['String']['output']>;
|
|
@@ -51480,11 +51634,14 @@ export declare type UnifiedProfile = {
|
|
|
51480
51634
|
location?: Maybe<Scalars['String']['output']>;
|
|
51481
51635
|
parentAccountInternalId?: Maybe<Scalars['String']['output']>;
|
|
51482
51636
|
photoUrl?: Maybe<Scalars['String']['output']>;
|
|
51637
|
+
products?: Maybe<Scalars['String']['output']>;
|
|
51483
51638
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
51484
51639
|
role?: Maybe<Scalars['String']['output']>;
|
|
51485
|
-
|
|
51486
|
-
|
|
51640
|
+
unifiedProfileInternalId?: Maybe<Scalars['ID']['output']>;
|
|
51641
|
+
unifiedProfileUsername?: Maybe<Scalars['String']['output']>;
|
|
51487
51642
|
websiteUrl?: Maybe<Scalars['String']['output']>;
|
|
51643
|
+
xUrl?: Maybe<Scalars['String']['output']>;
|
|
51644
|
+
youtubeUrl?: Maybe<Scalars['String']['output']>;
|
|
51488
51645
|
};
|
|
51489
51646
|
export declare type UnifiedProfileInput = {
|
|
51490
51647
|
bio?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -51495,11 +51652,15 @@ export declare type UnifiedProfileInput = {
|
|
|
51495
51652
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
51496
51653
|
parentAccountInternalId?: InputMaybe<Scalars['String']['input']>;
|
|
51497
51654
|
photoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
51655
|
+
products?: InputMaybe<Scalars['String']['input']>;
|
|
51498
51656
|
publicName?: InputMaybe<Scalars['String']['input']>;
|
|
51499
51657
|
role?: InputMaybe<Scalars['String']['input']>;
|
|
51500
|
-
|
|
51658
|
+
unifiedProfileInternalId?: InputMaybe<Scalars['String']['input']>;
|
|
51659
|
+
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
51501
51660
|
updatedAt?: InputMaybe<Scalars['String']['input']>;
|
|
51502
51661
|
websiteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
51662
|
+
xUrl?: InputMaybe<Scalars['String']['input']>;
|
|
51663
|
+
youtubeUrl?: InputMaybe<Scalars['String']['input']>;
|
|
51503
51664
|
};
|
|
51504
51665
|
export declare type UnifiedQuery = {
|
|
51505
51666
|
__typename?: 'UnifiedQuery';
|
|
@@ -51514,13 +51675,15 @@ export declare type UnifiedQueryForumSnapshotArgs = {
|
|
|
51514
51675
|
aaid: Scalars['String']['input'];
|
|
51515
51676
|
};
|
|
51516
51677
|
export declare type UnifiedQueryLearningCertificationArgs = {
|
|
51517
|
-
aaid
|
|
51678
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
51679
|
+
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
51518
51680
|
};
|
|
51519
51681
|
export declare type UnifiedQueryUnifiedAccountArgs = {
|
|
51520
51682
|
aaid: Scalars['String']['input'];
|
|
51521
51683
|
};
|
|
51522
51684
|
export declare type UnifiedQueryUnifiedProfileArgs = {
|
|
51523
|
-
aaid
|
|
51685
|
+
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
51686
|
+
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
51524
51687
|
};
|
|
51525
51688
|
export declare type UnifiedQueryAccountSuccess = {
|
|
51526
51689
|
__typename?: 'UnifiedQueryAccountSuccess';
|
|
@@ -51554,8 +51717,9 @@ export declare type UnifiedSystemCreateAccountSuccess = {
|
|
|
51554
51717
|
export declare type UnifiedSystemCreateAccountUnion = UnifiedError | UnifiedSystemCreateAccountSuccess;
|
|
51555
51718
|
export declare type UnifiedSystemInput = {
|
|
51556
51719
|
aaid: Scalars['String']['input'];
|
|
51720
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
51557
51721
|
parentAccountEmailId: Scalars['String']['input'];
|
|
51558
|
-
unifiedProfileUsername
|
|
51722
|
+
unifiedProfileUsername?: InputMaybe<Scalars['String']['input']>;
|
|
51559
51723
|
};
|
|
51560
51724
|
export declare type UnifiedUserCertificateDataRes = {
|
|
51561
51725
|
__typename?: 'UnifiedUserCertificateDataRes';
|
|
@@ -52199,7 +52363,6 @@ export declare type VirtualAgentConfiguration = Node & {
|
|
|
52199
52363
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjectionResult>;
|
|
52200
52364
|
intentRuleProjections?: Maybe<VirtualAgentIntentRuleProjectionsConnection>;
|
|
52201
52365
|
isAiResponsesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
52202
|
-
isEnabledOnJsmPortal?: Maybe<Scalars['Boolean']['output']>;
|
|
52203
52366
|
respondToQueries: Scalars['Boolean']['output'];
|
|
52204
52367
|
standardFlowEditors?: Maybe<VirtualAgentFlowEditorsConnection>;
|
|
52205
52368
|
virtualAgentChannelConfig?: Maybe<VirtualAgentChannelConfig>;
|
|
@@ -52488,7 +52651,6 @@ export declare type VirtualAgentMutationApi = {
|
|
|
52488
52651
|
updateFlowEditorFlow?: Maybe<VirtualAgentFlowEditorPayload>;
|
|
52489
52652
|
updateIntentRuleProjection?: Maybe<VirtualAgentUpdateIntentRuleProjectionPayload>;
|
|
52490
52653
|
updateIntentRuleProjectionQuestions?: Maybe<VirtualAgentUpdateIntentRuleProjectionQuestionsPayload>;
|
|
52491
|
-
updateJsmPortalConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
52492
52654
|
updateVirtualAgentConfiguration?: Maybe<VirtualAgentUpdateConfigurationPayload>;
|
|
52493
52655
|
};
|
|
52494
52656
|
export declare type VirtualAgentMutationApiCreateChatChannelArgs = {
|
|
@@ -52526,10 +52688,6 @@ export declare type VirtualAgentMutationApiUpdateIntentRuleProjectionQuestionsAr
|
|
|
52526
52688
|
input: VirtualAgentUpdateIntentRuleProjectionQuestionsInput;
|
|
52527
52689
|
virtualAgentIntentRuleProjectionId: Scalars['ID']['input'];
|
|
52528
52690
|
};
|
|
52529
|
-
export declare type VirtualAgentMutationApiUpdateJsmPortalConfigurationArgs = {
|
|
52530
|
-
input: VirtualAgentUpdateJsmPortalSettingsInput;
|
|
52531
|
-
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
52532
|
-
};
|
|
52533
52691
|
export declare type VirtualAgentMutationApiUpdateVirtualAgentConfigurationArgs = {
|
|
52534
52692
|
input: VirtualAgentUpdateConfigurationInput;
|
|
52535
52693
|
virtualAgentConfigurationId: Scalars['ID']['input'];
|
|
@@ -52634,15 +52792,6 @@ export declare type VirtualAgentUpdateIntentRuleProjectionQuestionsPayload = Pay
|
|
|
52634
52792
|
intentRuleProjection?: Maybe<VirtualAgentIntentRuleProjection>;
|
|
52635
52793
|
success: Scalars['Boolean']['output'];
|
|
52636
52794
|
};
|
|
52637
|
-
export declare type VirtualAgentUpdateJsmPortalSettingsInput = {
|
|
52638
|
-
isEnabledOnJsmPortal: Scalars['Boolean']['input'];
|
|
52639
|
-
};
|
|
52640
|
-
export declare type VirtualAgentUpdateJsmPortalSettingsPayload = Payload & {
|
|
52641
|
-
__typename?: 'VirtualAgentUpdateJsmPortalSettingsPayload';
|
|
52642
|
-
errors?: Maybe<Array<MutationError>>;
|
|
52643
|
-
success: Scalars['Boolean']['output'];
|
|
52644
|
-
virtualAgentConfiguration?: Maybe<VirtualAgentConfiguration>;
|
|
52645
|
-
};
|
|
52646
52795
|
export declare type VirtualAgentUpdatedQuestionInput = {
|
|
52647
52796
|
id: Scalars['ID']['input'];
|
|
52648
52797
|
question: Scalars['String']['input'];
|