@forge/cli-shared 4.2.0-next.1 → 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 +6 -0
- package/out/graphql/graphql-types.d.ts +125 -1
- 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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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']>;
|
|
@@ -29080,6 +29103,13 @@ export declare type JiraBulkTransitionScreenInput = {
|
|
|
29080
29103
|
issueIds: Array<Scalars['ID']['input']>;
|
|
29081
29104
|
transitionId: Scalars['Long']['input'];
|
|
29082
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
|
+
};
|
|
29083
29113
|
export declare type JiraBulkTransitionScreenResponse = {
|
|
29084
29114
|
__typename?: 'JiraBulkTransitionScreenResponse';
|
|
29085
29115
|
bulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenConnection>;
|
|
@@ -29124,6 +29154,7 @@ export declare type JiraCmdbFieldSelectedCmdbObjectsConnectionArgs = {
|
|
|
29124
29154
|
export declare type JiraCalendar = {
|
|
29125
29155
|
__typename?: 'JiraCalendar';
|
|
29126
29156
|
issues?: Maybe<JiraIssueConnection>;
|
|
29157
|
+
projects?: Maybe<JiraProjectConnection>;
|
|
29127
29158
|
sprints?: Maybe<JiraSprintConnection>;
|
|
29128
29159
|
unscheduledIssues?: Maybe<JiraIssueConnection>;
|
|
29129
29160
|
versions?: Maybe<JiraVersionConnection>;
|
|
@@ -29135,6 +29166,12 @@ export declare type JiraCalendarIssuesArgs = {
|
|
|
29135
29166
|
input?: InputMaybe<JiraCalendarIssuesInput>;
|
|
29136
29167
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
29137
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
|
+
};
|
|
29138
29175
|
export declare type JiraCalendarSprintsArgs = {
|
|
29139
29176
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
29140
29177
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -30027,6 +30064,12 @@ export declare type JiraCreateApproverListFieldPayload = Payload & {
|
|
|
30027
30064
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
30028
30065
|
success: Scalars['Boolean']['output'];
|
|
30029
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
|
+
};
|
|
30030
30073
|
export declare type JiraCreateCustomFilterInput = {
|
|
30031
30074
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
30032
30075
|
editGrants: Array<InputMaybe<JiraShareableEntityEditGrantInput>>;
|
|
@@ -33592,6 +33635,7 @@ export declare type JiraMutation = {
|
|
|
33592
33635
|
createAgileReleaseTrain?: Maybe<JiraCreateAgileReleaseTrainPayload>;
|
|
33593
33636
|
createAndAssociateWorkflowFromJsmTemplate?: Maybe<JiraServiceManagementCreateAndAssociateWorkflowFromTemplatePayload>;
|
|
33594
33637
|
createApproverListField?: Maybe<JiraCreateApproverListFieldPayload>;
|
|
33638
|
+
createCalendarIssue?: Maybe<JiraCreateCalendarIssuePayload>;
|
|
33595
33639
|
createIssueLinks?: Maybe<JiraBulkCreateIssueLinksPayload>;
|
|
33596
33640
|
createJiraVersion?: Maybe<JiraUpdateVersionPayload>;
|
|
33597
33641
|
createJwmFilter?: Maybe<JiraWorkManagementCreateFilterPayload>;
|
|
@@ -33749,6 +33793,14 @@ export declare type JiraMutationCreateApproverListFieldArgs = {
|
|
|
33749
33793
|
cloudId: Scalars['ID']['input'];
|
|
33750
33794
|
input: JiraCreateApproverListFieldInput;
|
|
33751
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
|
+
};
|
|
33752
33804
|
export declare type JiraMutationCreateIssueLinksArgs = {
|
|
33753
33805
|
cloudId: Scalars['ID']['input'];
|
|
33754
33806
|
input: JiraBulkCreateIssueLinksInput;
|
|
@@ -35705,6 +35757,7 @@ export declare type JiraQuery = {
|
|
|
35705
35757
|
issueSearchViewByNamespaceAndViewId?: Maybe<JiraIssueSearchView>;
|
|
35706
35758
|
issuesByKey?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
35707
35759
|
jiraBulkTransitionsScreen?: Maybe<JiraBulkTransitionScreenResponse>;
|
|
35760
|
+
jiraBulkTransitionsScreenDetails?: Maybe<JiraBulkTransitionScreenLayout>;
|
|
35708
35761
|
jiraCalendar?: Maybe<JiraCalendar>;
|
|
35709
35762
|
jiraFetchBulkOperationDetails?: Maybe<JiraFetchBulkOperationDetailsResponse>;
|
|
35710
35763
|
jiraProject?: Maybe<JiraProject>;
|
|
@@ -36090,6 +36143,10 @@ export declare type JiraQueryIssuesByKeyArgs = {
|
|
|
36090
36143
|
export declare type JiraQueryJiraBulkTransitionsScreenArgs = {
|
|
36091
36144
|
input: Array<JiraBulkTransitionScreenInput>;
|
|
36092
36145
|
};
|
|
36146
|
+
export declare type JiraQueryJiraBulkTransitionsScreenDetailsArgs = {
|
|
36147
|
+
issueIds: Array<Scalars['ID']['input']>;
|
|
36148
|
+
transitionId: Scalars['Int']['input'];
|
|
36149
|
+
};
|
|
36093
36150
|
export declare type JiraQueryJiraCalendarArgs = {
|
|
36094
36151
|
configuration?: InputMaybe<JiraCalendarViewConfigurationInput>;
|
|
36095
36152
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
@@ -39466,8 +39523,9 @@ export declare type JiraUserMetadata = {
|
|
|
39466
39523
|
info?: Maybe<User>;
|
|
39467
39524
|
status?: Maybe<JiraProjectRoleActorUserStatus>;
|
|
39468
39525
|
};
|
|
39469
|
-
export declare type JiraUserNavigationConfiguration = {
|
|
39526
|
+
export declare type JiraUserNavigationConfiguration = Node & {
|
|
39470
39527
|
__typename?: 'JiraUserNavigationConfiguration';
|
|
39528
|
+
id: Scalars['ID']['output'];
|
|
39471
39529
|
navItems: Array<JiraConfigurableNavigationItem>;
|
|
39472
39530
|
navKey: Scalars['String']['output'];
|
|
39473
39531
|
};
|
|
@@ -40799,6 +40857,51 @@ export declare type JswQuery = {
|
|
|
40799
40857
|
export declare type JswQueryBoardScopeArgs = {
|
|
40800
40858
|
boardId: Scalars['ID']['input'];
|
|
40801
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
|
+
};
|
|
40802
40905
|
export declare type KnowledgeDiscoveryConfluenceEntity = ConfluenceBlogPost | ConfluencePage;
|
|
40803
40906
|
export declare type KnowledgeDiscoveryCreateDefinitionInput = {
|
|
40804
40907
|
definition: Scalars['String']['input'];
|
|
@@ -41549,10 +41652,21 @@ export declare type MarketplaceStoreLoggedInUser = {
|
|
|
41549
41652
|
__typename?: 'MarketplaceStoreLoggedInUser';
|
|
41550
41653
|
email: Scalars['String']['output'];
|
|
41551
41654
|
id: Scalars['ID']['output'];
|
|
41655
|
+
lastVisitedDeveloperSpace?: Maybe<MarketplaceStoreLoggedInUserDeveloperSpace>;
|
|
41552
41656
|
links?: Maybe<MarketplaceStoreLoggedInUserLinks>;
|
|
41553
41657
|
name: Scalars['String']['output'];
|
|
41554
41658
|
picture: Scalars['String']['output'];
|
|
41555
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
|
+
};
|
|
41556
41670
|
export declare type MarketplaceStoreLoggedInUserLinks = {
|
|
41557
41671
|
__typename?: 'MarketplaceStoreLoggedInUserLinks';
|
|
41558
41672
|
addons: Scalars['String']['output'];
|
|
@@ -42151,6 +42265,7 @@ export declare type Mutation = {
|
|
|
42151
42265
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
42152
42266
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
42153
42267
|
jsw?: Maybe<JswMutation>;
|
|
42268
|
+
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
42154
42269
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
42155
42270
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
42156
42271
|
mercuryGoal?: Maybe<MercuryGoalMutationApi>;
|
|
@@ -42452,6 +42567,9 @@ export declare type MutationInvokeExtensionArgs = {
|
|
|
42452
42567
|
export declare type MutationInvokePolarisObjectArgs = {
|
|
42453
42568
|
input: InvokePolarisObjectInput;
|
|
42454
42569
|
};
|
|
42570
|
+
export declare type MutationKnowledgeBaseArgs = {
|
|
42571
|
+
cloudId: Scalars['ID']['input'];
|
|
42572
|
+
};
|
|
42455
42573
|
export declare type MutationMoveSprintDownArgs = {
|
|
42456
42574
|
input?: InputMaybe<MoveSprintDownInput>;
|
|
42457
42575
|
};
|
|
@@ -44887,6 +45005,7 @@ export declare type Query = {
|
|
|
44887
45005
|
jiraReleases?: Maybe<JiraReleases>;
|
|
44888
45006
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
44889
45007
|
jsw?: Maybe<JswQuery>;
|
|
45008
|
+
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
44890
45009
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
44891
45010
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
44892
45011
|
marketplaceAppByCloudAppId?: Maybe<MarketplaceApp>;
|
|
@@ -45224,6 +45343,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
45224
45343
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
45225
45344
|
id: Scalars['ID']['input'];
|
|
45226
45345
|
};
|
|
45346
|
+
export declare type QueryKnowledgeBaseArgs = {
|
|
45347
|
+
cloudId: Scalars['ID']['input'];
|
|
45348
|
+
};
|
|
45227
45349
|
export declare type QueryMarketplaceAppArgs = {
|
|
45228
45350
|
appId: Scalars['ID']['input'];
|
|
45229
45351
|
};
|
|
@@ -45462,6 +45584,7 @@ export declare enum RateLimitingCurrency {
|
|
|
45462
45584
|
HelpCenterCurrency = "HELP_CENTER_CURRENCY",
|
|
45463
45585
|
HelpLayoutCurrency = "HELP_LAYOUT_CURRENCY",
|
|
45464
45586
|
HelpObjectStoreCurrency = "HELP_OBJECT_STORE_CURRENCY",
|
|
45587
|
+
KnowledgeBaseCurrency = "KNOWLEDGE_BASE_CURRENCY",
|
|
45465
45588
|
PolarisBetaUserCurrency = "POLARIS_BETA_USER_CURRENCY",
|
|
45466
45589
|
PolarisCollabTokenQueryCurrency = "POLARIS_COLLAB_TOKEN_QUERY_CURRENCY",
|
|
45467
45590
|
PolarisCommentCurrency = "POLARIS_COMMENT_CURRENCY",
|
|
@@ -49713,6 +49836,7 @@ export declare type ToolchainDisassociateEntitiesInput = {
|
|
|
49713
49836
|
};
|
|
49714
49837
|
export declare type ToolchainDisassociateEntitiesPayload = Payload & {
|
|
49715
49838
|
__typename?: 'ToolchainDisassociateEntitiesPayload';
|
|
49839
|
+
entities?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
49716
49840
|
errors?: Maybe<Array<MutationError>>;
|
|
49717
49841
|
fromEntities?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
49718
49842
|
success: Scalars['Boolean']['output'];
|