@forge/cli-shared 5.5.0-next.15 → 5.5.0-next.16
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
|
@@ -36355,7 +36355,6 @@ export declare type HelpCenter = Node & {
|
|
|
36355
36355
|
__typename?: 'HelpCenter';
|
|
36356
36356
|
announcements?: Maybe<HelpCenterAnnouncements>;
|
|
36357
36357
|
canCreateHelpDesks?: Maybe<Scalars['Boolean']['output']>;
|
|
36358
|
-
conversation?: Maybe<HelpCenterConversation>;
|
|
36359
36358
|
helpCenterBranding?: Maybe<HelpCenterBranding>;
|
|
36360
36359
|
helpDesks: HelpCenterHelpDeskItemConnection;
|
|
36361
36360
|
homePageLayout?: Maybe<HelpCenterHomePageLayout>;
|
|
@@ -36463,22 +36462,6 @@ export declare type HelpCenterContentGapIndicatorsWithMetaData = {
|
|
|
36463
36462
|
__typename?: 'HelpCenterContentGapIndicatorsWithMetaData';
|
|
36464
36463
|
contentGapIndicators?: Maybe<Array<HelpCenterContentGapIndicator>>;
|
|
36465
36464
|
};
|
|
36466
|
-
export declare type HelpCenterConversation = {
|
|
36467
|
-
__typename?: 'HelpCenterConversation';
|
|
36468
|
-
compositeFailureMessageAdf?: Maybe<Scalars['String']['output']>;
|
|
36469
|
-
fallbackMessage?: Maybe<Scalars['String']['output']>;
|
|
36470
|
-
};
|
|
36471
|
-
export declare type HelpCenterConversationCompositeFailureMessageAdfArgs = {
|
|
36472
|
-
type: HelpCenterConversationFailureMessageType;
|
|
36473
|
-
};
|
|
36474
|
-
export declare enum HelpCenterConversationFailureMessageType {
|
|
36475
|
-
ConversationFailureMessage = "CONVERSATION_FAILURE_MESSAGE",
|
|
36476
|
-
ConversationUnhelpfulMessage = "CONVERSATION_UNHELPFUL_MESSAGE",
|
|
36477
|
-
CustomMessage = "CUSTOM_MESSAGE"
|
|
36478
|
-
}
|
|
36479
|
-
export declare type HelpCenterConversationInput = {
|
|
36480
|
-
fallbackMessage?: InputMaybe<Scalars['String']['input']>;
|
|
36481
|
-
};
|
|
36482
36465
|
export declare type HelpCenterCreateInput = {
|
|
36483
36466
|
name: HelpCenterNameInput;
|
|
36484
36467
|
slug: Scalars['String']['input'];
|
|
@@ -36917,7 +36900,6 @@ export declare enum HelpCenterType {
|
|
|
36917
36900
|
Unified = "UNIFIED"
|
|
36918
36901
|
}
|
|
36919
36902
|
export declare type HelpCenterUpdateInput = {
|
|
36920
|
-
conversation?: InputMaybe<HelpCenterConversationInput>;
|
|
36921
36903
|
helpCenterAri: Scalars['String']['input'];
|
|
36922
36904
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
36923
36905
|
name?: InputMaybe<HelpCenterNameInput>;
|
|
@@ -53795,6 +53777,49 @@ export declare type KnowledgeBaseSources = {
|
|
|
53795
53777
|
edge: Array<Maybe<KnowledgeBaseSourceEdge>>;
|
|
53796
53778
|
totalCount: Scalars['Int']['output'];
|
|
53797
53779
|
};
|
|
53780
|
+
export declare type KnowledgeBaseSpacePermission = {
|
|
53781
|
+
__typename?: 'KnowledgeBaseSpacePermission';
|
|
53782
|
+
editPermission: KnowledgeBaseSpacePermissionDetail;
|
|
53783
|
+
viewPermission: KnowledgeBaseSpacePermissionDetail;
|
|
53784
|
+
};
|
|
53785
|
+
export declare type KnowledgeBaseSpacePermissionBulkQueryApi = {
|
|
53786
|
+
__typename?: 'KnowledgeBaseSpacePermissionBulkQueryApi';
|
|
53787
|
+
knowledgeBaseSpacePermission_bulkQuery: KnowledgeBaseSpacePermissionBulkResponse;
|
|
53788
|
+
};
|
|
53789
|
+
export declare type KnowledgeBaseSpacePermissionBulkQueryApiKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
53790
|
+
input: KnowledgeBaseSpacePermissionInput;
|
|
53791
|
+
};
|
|
53792
|
+
export declare type KnowledgeBaseSpacePermissionBulkResponse = KnowledgeBaseSpacePermissions | QueryError;
|
|
53793
|
+
export declare type KnowledgeBaseSpacePermissionDetail = {
|
|
53794
|
+
__typename?: 'KnowledgeBaseSpacePermissionDetail';
|
|
53795
|
+
currentPermission: KnowledgeBaseSpacePermissionType;
|
|
53796
|
+
invalidPermissions: Array<Maybe<KnowledgeBaseSpacePermissionType>>;
|
|
53797
|
+
validPermissions: Array<KnowledgeBaseSpacePermissionType>;
|
|
53798
|
+
};
|
|
53799
|
+
export declare type KnowledgeBaseSpacePermissionInput = {
|
|
53800
|
+
spaceAris: Array<Scalars['String']['input']>;
|
|
53801
|
+
};
|
|
53802
|
+
export declare type KnowledgeBaseSpacePermissionMutationApi = {
|
|
53803
|
+
__typename?: 'KnowledgeBaseSpacePermissionMutationApi';
|
|
53804
|
+
knowledgeBaseSpacePermission_updateView: KnowledgeBaseSpacePermissionUpdateResponse;
|
|
53805
|
+
};
|
|
53806
|
+
export declare type KnowledgeBaseSpacePermissionMutationApiKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
53807
|
+
input: KnowledgeBaseSpacePermissionUpdateViewInput;
|
|
53808
|
+
};
|
|
53809
|
+
export declare enum KnowledgeBaseSpacePermissionType {
|
|
53810
|
+
AnonymousUsers = "ANONYMOUS_USERS",
|
|
53811
|
+
ConfluenceLicensedUsers = "CONFLUENCE_LICENSED_USERS",
|
|
53812
|
+
ConfluenceUnlicensedUsers = "CONFLUENCE_UNLICENSED_USERS"
|
|
53813
|
+
}
|
|
53814
|
+
export declare type KnowledgeBaseSpacePermissionUpdateResponse = KnowledgeBaseSpacePermission | MutationError;
|
|
53815
|
+
export declare type KnowledgeBaseSpacePermissionUpdateViewInput = {
|
|
53816
|
+
spaceAri: Scalars['String']['input'];
|
|
53817
|
+
viewPermission: KnowledgeBaseSpacePermissionType;
|
|
53818
|
+
};
|
|
53819
|
+
export declare type KnowledgeBaseSpacePermissions = {
|
|
53820
|
+
__typename?: 'KnowledgeBaseSpacePermissions';
|
|
53821
|
+
permissions: Array<Maybe<KnowledgeBaseSpacePermissions>>;
|
|
53822
|
+
};
|
|
53798
53823
|
export declare type KnowledgeBaseUnlinkResponse = {
|
|
53799
53824
|
__typename?: 'KnowledgeBaseUnlinkResponse';
|
|
53800
53825
|
mutationError?: Maybe<MutationError>;
|
|
@@ -56031,8 +56056,10 @@ export declare type MercuryDeleteCommentPayload = Payload & {
|
|
|
56031
56056
|
success: Scalars['Boolean']['output'];
|
|
56032
56057
|
};
|
|
56033
56058
|
export declare type MercuryDeleteFocusAreaGoalLinkInput = {
|
|
56059
|
+
atlasGoalAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56034
56060
|
cloudId: Scalars['ID']['input'];
|
|
56035
|
-
|
|
56061
|
+
focusAreaAri?: InputMaybe<Scalars['String']['input']>;
|
|
56062
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
56036
56063
|
};
|
|
56037
56064
|
export declare type MercuryDeleteFocusAreaGoalLinkPayload = Payload & {
|
|
56038
56065
|
__typename?: 'MercuryDeleteFocusAreaGoalLinkPayload';
|
|
@@ -56404,16 +56431,6 @@ export declare type MercuryLinkFocusAreasToFocusAreaPayload = Payload & {
|
|
|
56404
56431
|
errors?: Maybe<Array<MutationError>>;
|
|
56405
56432
|
success: Scalars['Boolean']['output'];
|
|
56406
56433
|
};
|
|
56407
|
-
export declare type MercuryLinkFocusAreasToGoalInput = {
|
|
56408
|
-
atlasGoalId: Scalars['ID']['input'];
|
|
56409
|
-
cloudId: Scalars['ID']['input'];
|
|
56410
|
-
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
56411
|
-
};
|
|
56412
|
-
export declare type MercuryLinkFocusAreasToGoalPayload = Payload & {
|
|
56413
|
-
__typename?: 'MercuryLinkFocusAreasToGoalPayload';
|
|
56414
|
-
errors?: Maybe<Array<MutationError>>;
|
|
56415
|
-
success: Scalars['Boolean']['output'];
|
|
56416
|
-
};
|
|
56417
56434
|
export declare type MercuryLinkFocusAreasToPortfolioInput = {
|
|
56418
56435
|
cloudId: Scalars['ID']['input'];
|
|
56419
56436
|
focusAreaIds: Array<Scalars['ID']['input']>;
|
|
@@ -56425,9 +56442,11 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
|
|
|
56425
56442
|
success: Scalars['Boolean']['output'];
|
|
56426
56443
|
};
|
|
56427
56444
|
export declare type MercuryLinkGoalsToFocusAreaInput = {
|
|
56428
|
-
|
|
56445
|
+
atlasGoalAris?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
56446
|
+
atlasGoalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
56429
56447
|
cloudId: Scalars['ID']['input'];
|
|
56430
|
-
|
|
56448
|
+
focusAreaAri?: InputMaybe<Scalars['String']['input']>;
|
|
56449
|
+
parentFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
56431
56450
|
};
|
|
56432
56451
|
export declare type MercuryLinkGoalsToFocusAreaPayload = Payload & {
|
|
56433
56452
|
__typename?: 'MercuryLinkGoalsToFocusAreaPayload';
|
|
@@ -56455,7 +56474,6 @@ export declare type MercuryMutationApi = {
|
|
|
56455
56474
|
deletePortfolioFocusAreaLink?: Maybe<MercuryDeletePortfolioFocusAreaLinkPayload>;
|
|
56456
56475
|
deletePreference?: Maybe<MercuryDeletePreferencePayload>;
|
|
56457
56476
|
linkFocusAreasToFocusArea?: Maybe<MercuryLinkFocusAreasToFocusAreaPayload>;
|
|
56458
|
-
linkFocusAreasToGoal?: Maybe<MercuryLinkFocusAreasToGoalPayload>;
|
|
56459
56477
|
linkFocusAreasToPortfolio?: Maybe<MercuryLinkFocusAreasToPortfolioPayload>;
|
|
56460
56478
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
56461
56479
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
@@ -56515,9 +56533,6 @@ export declare type MercuryMutationApiDeletePreferenceArgs = {
|
|
|
56515
56533
|
export declare type MercuryMutationApiLinkFocusAreasToFocusAreaArgs = {
|
|
56516
56534
|
input: MercuryLinkFocusAreasToFocusAreaInput;
|
|
56517
56535
|
};
|
|
56518
|
-
export declare type MercuryMutationApiLinkFocusAreasToGoalArgs = {
|
|
56519
|
-
input: MercuryLinkFocusAreasToGoalInput;
|
|
56520
|
-
};
|
|
56521
56536
|
export declare type MercuryMutationApiLinkFocusAreasToPortfolioArgs = {
|
|
56522
56537
|
input: MercuryLinkFocusAreasToPortfolioInput;
|
|
56523
56538
|
};
|
|
@@ -57415,6 +57430,7 @@ export declare type Mutation = {
|
|
|
57415
57430
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
57416
57431
|
jsw?: Maybe<JswMutation>;
|
|
57417
57432
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
57433
|
+
knowledgeBaseSpacePermission_updateView?: Maybe<KnowledgeBaseSpacePermissionMutationApi>;
|
|
57418
57434
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryMutationApi>;
|
|
57419
57435
|
marketplaceConsole: MarketplaceConsoleMutationApi;
|
|
57420
57436
|
marketplaceStore?: Maybe<MarketplaceStoreMutationApi>;
|
|
@@ -58212,6 +58228,9 @@ export declare type MutationInvokePolarisObjectArgs = {
|
|
|
58212
58228
|
export declare type MutationKnowledgeBaseArgs = {
|
|
58213
58229
|
cloudId: Scalars['ID']['input'];
|
|
58214
58230
|
};
|
|
58231
|
+
export declare type MutationKnowledgeBaseSpacePermission_UpdateViewArgs = {
|
|
58232
|
+
input: KnowledgeBaseSpacePermissionUpdateViewInput;
|
|
58233
|
+
};
|
|
58215
58234
|
export declare type MutationMoveSprintDownArgs = {
|
|
58216
58235
|
input?: InputMaybe<MoveSprintDownInput>;
|
|
58217
58236
|
};
|
|
@@ -60925,6 +60944,7 @@ export declare type Query = {
|
|
|
60925
60944
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
60926
60945
|
jsw?: Maybe<JswQuery>;
|
|
60927
60946
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
60947
|
+
knowledgeBaseSpacePermission_bulkQuery?: Maybe<KnowledgeBaseSpacePermissionBulkQueryApi>;
|
|
60928
60948
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
60929
60949
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
60930
60950
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -62229,6 +62249,9 @@ export declare type QueryJiraProjectRelationshipsForServiceArgs = {
|
|
|
62229
62249
|
export declare type QueryKnowledgeBaseArgs = {
|
|
62230
62250
|
cloudId: Scalars['ID']['input'];
|
|
62231
62251
|
};
|
|
62252
|
+
export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
62253
|
+
input: KnowledgeBaseSpacePermissionInput;
|
|
62254
|
+
};
|
|
62232
62255
|
export declare type QueryMarketplaceAppArgs = {
|
|
62233
62256
|
appId: Scalars['ID']['input'];
|
|
62234
62257
|
};
|