@forge/cli-shared 8.8.0-next.7 → 8.8.0-next.9
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 +58 -10
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +1 -0
- package/out/ui/text.d.ts +27 -22
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +28 -23
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.8.0-next.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [b1f257c]
|
|
8
|
+
- @forge/manifest@10.7.0-next.5
|
|
9
|
+
|
|
10
|
+
## 8.8.0-next.8
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- d3008b5: Create new commands for listing repositories and images
|
|
15
|
+
|
|
3
16
|
## 8.8.0-next.7
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -9670,6 +9670,16 @@ export declare type CompassAttentionItemQuery = {
|
|
|
9670
9670
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
9671
9671
|
};
|
|
9672
9672
|
export declare type CompassAttentionItemQueryResult = CompassAttentionItemConnection | QueryError;
|
|
9673
|
+
export declare type CompassAutoPopulationMetadata = {
|
|
9674
|
+
__typename?: 'CompassAutoPopulationMetadata';
|
|
9675
|
+
fieldId: Scalars['String']['output'];
|
|
9676
|
+
source?: Maybe<CompassAutoPopulationSource>;
|
|
9677
|
+
};
|
|
9678
|
+
export declare type CompassAutoPopulationSource = {
|
|
9679
|
+
__typename?: 'CompassAutoPopulationSource';
|
|
9680
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
9681
|
+
name: Scalars['String']['output'];
|
|
9682
|
+
};
|
|
9673
9683
|
export declare type CompassBooleanField = CompassField & {
|
|
9674
9684
|
__typename?: 'CompassBooleanField';
|
|
9675
9685
|
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -10419,6 +10429,7 @@ export declare type CompassComponent = Node & {
|
|
|
10419
10429
|
announcements?: Maybe<Array<CompassAnnouncement>>;
|
|
10420
10430
|
api?: Maybe<CompassComponentApi>;
|
|
10421
10431
|
appliedScorecards?: Maybe<CompassComponentHasScorecardsAppliedConnection>;
|
|
10432
|
+
autoPopulationMetadata?: Maybe<Array<CompassAutoPopulationMetadata>>;
|
|
10422
10433
|
changeMetadata: CompassChangeMetadata;
|
|
10423
10434
|
componentDescriptionDetails?: Maybe<CompassComponentDescriptionDetails>;
|
|
10424
10435
|
customFields?: Maybe<Array<CompassCustomField>>;
|
|
@@ -12007,6 +12018,7 @@ export declare enum CompassDeploymentEventState {
|
|
|
12007
12018
|
}
|
|
12008
12019
|
export declare type CompassDocument = Node & {
|
|
12009
12020
|
__typename?: 'CompassDocument';
|
|
12021
|
+
autoPopulationMetadata?: Maybe<Array<CompassAutoPopulationMetadata>>;
|
|
12010
12022
|
changeMetadata: CompassChangeMetadata;
|
|
12011
12023
|
componentId: Scalars['ID']['output'];
|
|
12012
12024
|
documentationCategoryId: Scalars['ID']['output'];
|
|
@@ -15665,6 +15677,33 @@ export declare type ConfluenceCopyNotePayload = {
|
|
|
15665
15677
|
note?: Maybe<NoteResponse>;
|
|
15666
15678
|
success: Scalars['Boolean']['output'];
|
|
15667
15679
|
};
|
|
15680
|
+
export declare type ConfluenceCopyPageHierarchyInput = {
|
|
15681
|
+
copyAsDraft: Scalars['Boolean']['input'];
|
|
15682
|
+
copyAttachments?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15683
|
+
copyCustomContents?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15684
|
+
copyDescendants?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15685
|
+
copyLabels?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15686
|
+
copyPermissions?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15687
|
+
copyProperties?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15688
|
+
destinationPageId: Scalars['ID']['input'];
|
|
15689
|
+
mentionOptions: ConfluenceCopyPageHierarchyMentionOptionsInput;
|
|
15690
|
+
sourcePageId: Scalars['ID']['input'];
|
|
15691
|
+
titleOptions: ConfluenceCopyPageHierarchyTitleOptionsInput;
|
|
15692
|
+
};
|
|
15693
|
+
export declare type ConfluenceCopyPageHierarchyMentionOptionsInput = {
|
|
15694
|
+
notificationAction?: InputMaybe<NotificationAction>;
|
|
15695
|
+
};
|
|
15696
|
+
export declare type ConfluenceCopyPageHierarchyPayload = Payload & {
|
|
15697
|
+
__typename?: 'ConfluenceCopyPageHierarchyPayload';
|
|
15698
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15699
|
+
success: Scalars['Boolean']['output'];
|
|
15700
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
15701
|
+
};
|
|
15702
|
+
export declare type ConfluenceCopyPageHierarchyTitleOptionsInput = {
|
|
15703
|
+
prefix?: InputMaybe<Scalars['String']['input']>;
|
|
15704
|
+
replace?: InputMaybe<Scalars['String']['input']>;
|
|
15705
|
+
search?: InputMaybe<Scalars['String']['input']>;
|
|
15706
|
+
};
|
|
15668
15707
|
export declare type ConfluenceCopyPageTaskResult = {
|
|
15669
15708
|
__typename?: 'ConfluenceCopyPageTaskResult';
|
|
15670
15709
|
page?: Maybe<ConfluencePage>;
|
|
@@ -16968,6 +17007,7 @@ export declare type ConfluenceMutationApi = {
|
|
|
16968
17007
|
__typename?: 'ConfluenceMutationApi';
|
|
16969
17008
|
addCustomApplicationLink?: Maybe<ConfluenceAddCustomApplicationLinkPayload>;
|
|
16970
17009
|
changeOrderOfCustomApplicationLink?: Maybe<ConfluenceChangeOrderOfCustomApplicationLinkPayload>;
|
|
17010
|
+
confluence_copyPageHierarchy?: Maybe<ConfluenceCopyPageHierarchyPayload>;
|
|
16971
17011
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
16972
17012
|
createBlogPostProperty?: Maybe<ConfluenceCreateBlogPostPropertyPayload>;
|
|
16973
17013
|
createFooterCommentOnBlogPost?: Maybe<ConfluenceCreateFooterCommentOnBlogPostPayload>;
|
|
@@ -17048,6 +17088,9 @@ export declare type ConfluenceMutationApiAddCustomApplicationLinkArgs = {
|
|
|
17048
17088
|
export declare type ConfluenceMutationApiChangeOrderOfCustomApplicationLinkArgs = {
|
|
17049
17089
|
input: ConfluenceChangeOrderOfCustomApplicationLinkInput;
|
|
17050
17090
|
};
|
|
17091
|
+
export declare type ConfluenceMutationApiConfluence_CopyPageHierarchyArgs = {
|
|
17092
|
+
input: ConfluenceCopyPageHierarchyInput;
|
|
17093
|
+
};
|
|
17051
17094
|
export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
17052
17095
|
input: ConfluenceCreateBlogPostInput;
|
|
17053
17096
|
};
|
|
@@ -65203,6 +65246,7 @@ export declare enum JiraConfigFieldType {
|
|
|
65203
65246
|
CustomSelect = "CUSTOM_SELECT",
|
|
65204
65247
|
CustomTextarea = "CUSTOM_TEXTAREA",
|
|
65205
65248
|
CustomTextField = "CUSTOM_TEXT_FIELD",
|
|
65249
|
+
CustomTownsquareProject = "CUSTOM_TOWNSQUARE_PROJECT",
|
|
65206
65250
|
CustomUrl = "CUSTOM_URL",
|
|
65207
65251
|
CustomUserPicker = "CUSTOM_USER_PICKER",
|
|
65208
65252
|
CustomVersion = "CUSTOM_VERSION",
|
|
@@ -92138,8 +92182,6 @@ export declare type Mutation = {
|
|
|
92138
92182
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
92139
92183
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
92140
92184
|
radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
92141
|
-
radar_grantFieldPermissions?: Maybe<RadarMutationResponse>;
|
|
92142
|
-
radar_removeFieldPermissions?: Maybe<RadarMutationResponse>;
|
|
92143
92185
|
radar_updateConnector?: Maybe<RadarConnector>;
|
|
92144
92186
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
92145
92187
|
radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
|
|
@@ -94227,14 +94269,6 @@ export declare type MutationRadar_DeleteRoleAssignmentArgs = {
|
|
|
94227
94269
|
cloudId: Scalars['ID']['input'];
|
|
94228
94270
|
input: RadarRoleAssignmentRequest;
|
|
94229
94271
|
};
|
|
94230
|
-
export declare type MutationRadar_GrantFieldPermissionsArgs = {
|
|
94231
|
-
cloudId: Scalars['ID']['input'];
|
|
94232
|
-
input: Array<RadarFieldPermissionsInput>;
|
|
94233
|
-
};
|
|
94234
|
-
export declare type MutationRadar_RemoveFieldPermissionsArgs = {
|
|
94235
|
-
cloudId: Scalars['ID']['input'];
|
|
94236
|
-
input: Array<RadarFieldPermissionsInput>;
|
|
94237
|
-
};
|
|
94238
94272
|
export declare type MutationRadar_UpdateConnectorArgs = {
|
|
94239
94273
|
cloudId: Scalars['ID']['input'];
|
|
94240
94274
|
input: RadarConnectorsInput;
|
|
@@ -98471,6 +98505,7 @@ export declare type Query = {
|
|
|
98471
98505
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
98472
98506
|
stakeholderComms_getFlattenedStakeholdersList?: Maybe<StakeholderCommsGetStakeholderListResponse>;
|
|
98473
98507
|
stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
98508
|
+
stakeholderComms_getLicenseUsageLimit?: Maybe<StakeholderCommsLicenseUsage>;
|
|
98474
98509
|
stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
98475
98510
|
stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
98476
98511
|
stakeholderComms_getPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
@@ -101667,6 +101702,9 @@ export declare type QueryStakeholderComms_GetFlattenedStakeholdersListArgs = {
|
|
|
101667
101702
|
export declare type QueryStakeholderComms_GetIncidentArgs = {
|
|
101668
101703
|
getIncidentInput?: InputMaybe<StakeholderCommsGetIncidentInput>;
|
|
101669
101704
|
};
|
|
101705
|
+
export declare type QueryStakeholderComms_GetLicenseUsageLimitArgs = {
|
|
101706
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
101707
|
+
};
|
|
101670
101708
|
export declare type QueryStakeholderComms_GetMembershipsArgs = {
|
|
101671
101709
|
groupId: Scalars['String']['input'];
|
|
101672
101710
|
};
|
|
@@ -126247,6 +126285,16 @@ export declare type StakeholderCommsIncidentWithUpdates = {
|
|
|
126247
126285
|
incident?: Maybe<StakeholderCommsIncident>;
|
|
126248
126286
|
incidentUpdates?: Maybe<Array<Maybe<StakeholderCommsIncidentUpdate>>>;
|
|
126249
126287
|
};
|
|
126288
|
+
export declare type StakeholderCommsLicenseLimit = {
|
|
126289
|
+
__typename?: 'StakeholderCommsLicenseLimit';
|
|
126290
|
+
availableLimit?: Maybe<Scalars['Int']['output']>;
|
|
126291
|
+
totalLimit?: Maybe<Scalars['Int']['output']>;
|
|
126292
|
+
};
|
|
126293
|
+
export declare type StakeholderCommsLicenseUsage = {
|
|
126294
|
+
__typename?: 'StakeholderCommsLicenseUsage';
|
|
126295
|
+
stakeholderLicenseUsage?: Maybe<StakeholderCommsLicenseLimit>;
|
|
126296
|
+
subscriberLicenseUsage?: Maybe<StakeholderCommsLicenseLimit>;
|
|
126297
|
+
};
|
|
126250
126298
|
export declare type StakeholderCommsLinkInput = {
|
|
126251
126299
|
label?: InputMaybe<Scalars['String']['input']>;
|
|
126252
126300
|
position?: InputMaybe<Scalars['Int']['input']>;
|