@forge/cli-shared 6.11.0-next.10 → 6.11.0-next.11
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 +49 -0
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.d.ts +1 -2
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +3 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -833,6 +833,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
833
833
|
description?: Maybe<Scalars['String']['output']>;
|
|
834
834
|
id: Scalars['ID']['output'];
|
|
835
835
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
836
|
+
isFavourite?: Maybe<Scalars['Boolean']['output']>;
|
|
836
837
|
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
837
838
|
name?: Maybe<Scalars['String']['output']>;
|
|
838
839
|
};
|
|
@@ -1057,6 +1058,20 @@ export declare type AgentStudioUpdateConversationStartersPayload = Payload & {
|
|
|
1057
1058
|
errors?: Maybe<Array<MutationError>>;
|
|
1058
1059
|
success: Scalars['Boolean']['output'];
|
|
1059
1060
|
};
|
|
1061
|
+
export declare type AgentStudioUpdateCustomActionInput = {
|
|
1062
|
+
action?: InputMaybe<AgentStudioActionInput>;
|
|
1063
|
+
creatorId: Scalars['ID']['input'];
|
|
1064
|
+
instructions: Scalars['String']['input'];
|
|
1065
|
+
invocationDescription: Scalars['String']['input'];
|
|
1066
|
+
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
1067
|
+
name: Scalars['String']['input'];
|
|
1068
|
+
};
|
|
1069
|
+
export declare type AgentStudioUpdateCustomActionPayload = Payload & {
|
|
1070
|
+
__typename?: 'AgentStudioUpdateCustomActionPayload';
|
|
1071
|
+
customAction?: Maybe<AgentStudioCustomAction>;
|
|
1072
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1073
|
+
success: Scalars['Boolean']['output'];
|
|
1074
|
+
};
|
|
1060
1075
|
export declare type AiCoreApiVsaQuestions = {
|
|
1061
1076
|
__typename?: 'AiCoreApiVSAQuestions';
|
|
1062
1077
|
projectAri: Scalars['ID']['output'];
|
|
@@ -17517,6 +17532,12 @@ export declare type ConfluenceUserContentAccessResult = {
|
|
|
17517
17532
|
canAccessList: Array<Maybe<Scalars['String']['output']>>;
|
|
17518
17533
|
cannotAccessList: Array<Maybe<Scalars['String']['output']>>;
|
|
17519
17534
|
};
|
|
17535
|
+
export declare type ConfluenceUserHasPermission = {
|
|
17536
|
+
__typename?: 'ConfluenceUserHasPermission';
|
|
17537
|
+
hasPermission: Scalars['Boolean']['output'];
|
|
17538
|
+
principalId: Scalars['String']['output'];
|
|
17539
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
17540
|
+
};
|
|
17520
17541
|
export declare type ConfluenceUserInfo = {
|
|
17521
17542
|
__typename?: 'ConfluenceUserInfo';
|
|
17522
17543
|
type: ConfluenceUserType;
|
|
@@ -17526,6 +17547,10 @@ export declare enum ConfluenceUserType {
|
|
|
17526
17547
|
Anonymous = "ANONYMOUS",
|
|
17527
17548
|
Known = "KNOWN"
|
|
17528
17549
|
}
|
|
17550
|
+
export declare type ConfluenceUsersHavePermissionList = {
|
|
17551
|
+
__typename?: 'ConfluenceUsersHavePermissionList';
|
|
17552
|
+
usersHavePermissionList: Array<Maybe<ConfluenceUserHasPermission>>;
|
|
17553
|
+
};
|
|
17529
17554
|
export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
17530
17555
|
__typename?: 'ConfluenceValidateSpaceKeyResponse';
|
|
17531
17556
|
generatedUniqueKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -17746,6 +17771,7 @@ export declare type Content = {
|
|
|
17746
17771
|
archivableDescendantsCount: Scalars['Long']['output'];
|
|
17747
17772
|
archiveNote?: Maybe<Scalars['String']['output']>;
|
|
17748
17773
|
archivedContentMetadata?: Maybe<ArchivedContentMetadata>;
|
|
17774
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
17749
17775
|
attachments?: Maybe<PaginatedContentList>;
|
|
17750
17776
|
blank: Scalars['Boolean']['output'];
|
|
17751
17777
|
body?: Maybe<ContentBodyPerRepresentation>;
|
|
@@ -17770,6 +17796,7 @@ export declare type Content = {
|
|
|
17770
17796
|
dataClassificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
17771
17797
|
dataClassificationLevelId?: Maybe<Scalars['String']['output']>;
|
|
17772
17798
|
deletableDescendantsCount: Scalars['Long']['output'];
|
|
17799
|
+
draftVersion?: Maybe<Version>;
|
|
17773
17800
|
dynamicMobileBody?: Maybe<ContentBody>;
|
|
17774
17801
|
embeddedProduct?: Maybe<Scalars['String']['output']>;
|
|
17775
17802
|
excerpt: Scalars['String']['output'];
|
|
@@ -80730,6 +80757,7 @@ export declare type Mutation = {
|
|
|
80730
80757
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
80731
80758
|
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
80732
80759
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
80760
|
+
agentStudio_updateCustomAction?: Maybe<AgentStudioUpdateCustomActionPayload>;
|
|
80733
80761
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
80734
80762
|
appStorage?: Maybe<AppStorageMutation>;
|
|
80735
80763
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -81376,6 +81404,10 @@ export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
|
81376
81404
|
id: Scalars['ID']['input'];
|
|
81377
81405
|
input: AgentStudioUpdateConversationStartersInput;
|
|
81378
81406
|
};
|
|
81407
|
+
export declare type MutationAgentStudio_UpdateCustomActionArgs = {
|
|
81408
|
+
id: Scalars['ID']['input'];
|
|
81409
|
+
input: AgentStudioUpdateCustomActionInput;
|
|
81410
|
+
};
|
|
81379
81411
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
81380
81412
|
input: ApplyPolarisProjectTemplateInput;
|
|
81381
81413
|
};
|
|
@@ -86176,6 +86208,7 @@ export declare type Query = {
|
|
|
86176
86208
|
confluence_template?: Maybe<ContentTemplate>;
|
|
86177
86209
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
86178
86210
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
86211
|
+
confluence_usersHavePermission?: Maybe<ConfluenceUsersHavePermissionList>;
|
|
86179
86212
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
86180
86213
|
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
86181
86214
|
contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
|
|
@@ -87897,6 +87930,13 @@ export declare type QueryConfluence_UserContentAccessArgs = {
|
|
|
87897
87930
|
cloudId: Scalars['ID']['input'];
|
|
87898
87931
|
contentId: Scalars['ID']['input'];
|
|
87899
87932
|
};
|
|
87933
|
+
export declare type QueryConfluence_UsersHavePermissionArgs = {
|
|
87934
|
+
cloudId: Scalars['ID']['input'];
|
|
87935
|
+
permission: Scalars['String']['input'];
|
|
87936
|
+
principalIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
87937
|
+
resourceId: Scalars['ID']['input'];
|
|
87938
|
+
resourceType: Scalars['String']['input'];
|
|
87939
|
+
};
|
|
87900
87940
|
export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
87901
87941
|
applicationId: Scalars['ID']['input'];
|
|
87902
87942
|
cloudId: Scalars['ID']['input'];
|
|
@@ -88119,6 +88159,9 @@ export declare type QueryCustomerStoryArgs = {
|
|
|
88119
88159
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
88120
88160
|
publishedOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88121
88161
|
};
|
|
88162
|
+
export declare type QueryDataSecurityPolicyArgs = {
|
|
88163
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
88164
|
+
};
|
|
88122
88165
|
export declare type QueryDeactivatedOwnerPagesArgs = {
|
|
88123
88166
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
88124
88167
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -94968,12 +95011,14 @@ export declare type SpaceOrContent = {
|
|
|
94968
95011
|
__typename?: 'SpaceOrContent';
|
|
94969
95012
|
alias?: Maybe<Scalars['String']['output']>;
|
|
94970
95013
|
ancestors?: Maybe<Array<Maybe<Content>>>;
|
|
95014
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
94971
95015
|
body?: Maybe<ContentBodyPerRepresentation>;
|
|
94972
95016
|
childTypes?: Maybe<ChildContentTypesAvailable>;
|
|
94973
95017
|
container?: Maybe<SpaceOrContent>;
|
|
94974
95018
|
creatorAccountId?: Maybe<Scalars['String']['output']>;
|
|
94975
95019
|
dataClassificationTags: Array<Maybe<Scalars['String']['output']>>;
|
|
94976
95020
|
description?: Maybe<SpaceDescriptions>;
|
|
95021
|
+
draftVersion?: Maybe<Version>;
|
|
94977
95022
|
extensions?: Maybe<Array<Maybe<KeyValueHierarchyMap>>>;
|
|
94978
95023
|
history?: Maybe<History>;
|
|
94979
95024
|
homepage?: Maybe<Content>;
|
|
@@ -95120,6 +95165,8 @@ export declare type SpacePermissionsSubjectsWithPermissionsArgs = {
|
|
|
95120
95165
|
};
|
|
95121
95166
|
export declare type SpaceRole = {
|
|
95122
95167
|
__typename?: 'SpaceRole';
|
|
95168
|
+
inUseByDefaultSpaceRoleAssignments?: Maybe<Scalars['Boolean']['output']>;
|
|
95169
|
+
inUseByPrincipals?: Maybe<Scalars['Boolean']['output']>;
|
|
95123
95170
|
roleDescription: Scalars['String']['output'];
|
|
95124
95171
|
roleDisplayName: Scalars['String']['output'];
|
|
95125
95172
|
roleId: Scalars['ID']['output'];
|
|
@@ -100641,6 +100688,7 @@ export declare type UnifiedAccount = UnifiedINode & {
|
|
|
100641
100688
|
isLinked: Scalars['Boolean']['output'];
|
|
100642
100689
|
isManaged: Scalars['Boolean']['output'];
|
|
100643
100690
|
isPrimary: Scalars['Boolean']['output'];
|
|
100691
|
+
isProfileOwnerConsented: Scalars['Boolean']['output'];
|
|
100644
100692
|
khorosUserId: Scalars['Int']['output'];
|
|
100645
100693
|
linkedAccounts?: Maybe<UnifiedULinkedAccountResult>;
|
|
100646
100694
|
nickname: Scalars['String']['output'];
|
|
@@ -101248,6 +101296,7 @@ export declare type UnifiedProfile = UnifiedINode & {
|
|
|
101248
101296
|
isPersonalView?: Maybe<Scalars['Boolean']['output']>;
|
|
101249
101297
|
isPrivate: Scalars['Boolean']['output'];
|
|
101250
101298
|
isProfileBanned?: Maybe<Scalars['Boolean']['output']>;
|
|
101299
|
+
isProfileOwnerConsented?: Maybe<Scalars['Boolean']['output']>;
|
|
101251
101300
|
learning?: Maybe<UnifiedULearningResult>;
|
|
101252
101301
|
linkedinUrl?: Maybe<Scalars['String']['output']>;
|
|
101253
101302
|
location?: Maybe<Scalars['String']['output']>;
|