@forge/cli-shared 2.6.1-next.1 → 2.6.1-next.4
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 +23 -0
- package/out/graphql/graphql-types.d.ts +126 -21
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +10 -1
- package/out/service/feature-flag-service.d.ts.map +1 -1
- package/out/service/feature-flag-service.js +1 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.6.1-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [9298536]
|
|
8
|
+
- @forge/manifest@3.10.0-next.4
|
|
9
|
+
|
|
10
|
+
## 2.6.1-next.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [d486898]
|
|
15
|
+
- Updated dependencies [f890e0e]
|
|
16
|
+
- Updated dependencies [91daffc]
|
|
17
|
+
- @forge/manifest@3.10.0-next.3
|
|
18
|
+
|
|
19
|
+
## 2.6.1-next.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies [7558a5d9]
|
|
24
|
+
- @forge/manifest@3.9.1-next.2
|
|
25
|
+
|
|
3
26
|
## 2.6.1-next.1
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
|
@@ -251,7 +251,7 @@ export declare type ActivityObject = {
|
|
|
251
251
|
contributors?: Maybe<Array<ActivityContributor>>;
|
|
252
252
|
data?: Maybe<ActivityObjectData>;
|
|
253
253
|
};
|
|
254
|
-
export declare type ActivityObjectData = AvocadoQuestion | AvocadoAnswer | TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
254
|
+
export declare type ActivityObjectData = AvocadoQuestion | AvocadoAnswer | TownsquareProject | TownsquareGoal | TownsquareComment | ConfluencePage | ConfluenceBlogPost | ConfluenceComment | ConfluenceFooterComment | ConfluenceInlineComment | JiraIssue | JiraPlatformComment | JiraServiceManagementComment;
|
|
255
255
|
export declare enum ActivityObjectType {
|
|
256
256
|
Site = "SITE",
|
|
257
257
|
Project = "PROJECT",
|
|
@@ -878,37 +878,39 @@ export declare type AriGraphRelationshipsArgs = {
|
|
|
878
878
|
first?: Maybe<Scalars['Int']>;
|
|
879
879
|
after?: Maybe<Scalars['String']>;
|
|
880
880
|
};
|
|
881
|
-
export declare type
|
|
882
|
-
|
|
883
|
-
from: Scalars['ID'];
|
|
884
|
-
to: Scalars['ID'];
|
|
885
|
-
type: Scalars['ID'];
|
|
886
|
-
};
|
|
887
|
-
export declare type AriGraphCreateRelationshipInput = {
|
|
888
|
-
relationships: Array<AriGraphCreateRelationshipInputRelationship>;
|
|
881
|
+
export declare type AriGraphCreateRelationshipsInput = {
|
|
882
|
+
relationships: Array<AriGraphCreateRelationshipsInputRelationship>;
|
|
889
883
|
};
|
|
890
|
-
export declare type
|
|
884
|
+
export declare type AriGraphCreateRelationshipsInputRelationship = {
|
|
891
885
|
from: Scalars['ID'];
|
|
892
886
|
to: Scalars['ID'];
|
|
893
887
|
type: Scalars['ID'];
|
|
894
888
|
};
|
|
895
|
-
export declare type
|
|
896
|
-
__typename?: '
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
reference: AriGraphCreateRelationshipErrorReference;
|
|
889
|
+
export declare type AriGraphCreateRelationshipsPayload = Payload & {
|
|
890
|
+
__typename?: 'AriGraphCreateRelationshipsPayload';
|
|
891
|
+
success: Scalars['Boolean'];
|
|
892
|
+
errors?: Maybe<Array<MutationError>>;
|
|
900
893
|
};
|
|
901
|
-
export declare type
|
|
902
|
-
|
|
894
|
+
export declare type AriGraphDeleteRelationshipsInput = {
|
|
895
|
+
from?: Maybe<Scalars['ID']>;
|
|
896
|
+
to?: Maybe<Scalars['ID']>;
|
|
897
|
+
type?: Maybe<Scalars['ID']>;
|
|
898
|
+
};
|
|
899
|
+
export declare type AriGraphDeleteRelationshipsPayload = Payload & {
|
|
900
|
+
__typename?: 'AriGraphDeleteRelationshipsPayload';
|
|
903
901
|
success: Scalars['Boolean'];
|
|
904
902
|
errors?: Maybe<Array<MutationError>>;
|
|
905
903
|
};
|
|
906
904
|
export declare type AriGraphMutation = {
|
|
907
905
|
__typename?: 'AriGraphMutation';
|
|
908
|
-
|
|
906
|
+
createRelationships?: Maybe<AriGraphCreateRelationshipsPayload>;
|
|
907
|
+
deleteRelationships?: Maybe<AriGraphDeleteRelationshipsPayload>;
|
|
908
|
+
};
|
|
909
|
+
export declare type AriGraphMutationCreateRelationshipsArgs = {
|
|
910
|
+
input: AriGraphCreateRelationshipsInput;
|
|
909
911
|
};
|
|
910
|
-
export declare type
|
|
911
|
-
input:
|
|
912
|
+
export declare type AriGraphMutationDeleteRelationshipsArgs = {
|
|
913
|
+
input: AriGraphDeleteRelationshipsInput;
|
|
912
914
|
};
|
|
913
915
|
export declare type AriGraphRelationship = {
|
|
914
916
|
__typename?: 'AriGraphRelationship';
|
|
@@ -933,6 +935,12 @@ export declare type AriGraphRelationshipNode = {
|
|
|
933
935
|
id: Scalars['ID'];
|
|
934
936
|
data?: Maybe<DeploymentSummary>;
|
|
935
937
|
};
|
|
938
|
+
export declare type AriGraphRelationshipsErrorReference = {
|
|
939
|
+
__typename?: 'AriGraphRelationshipsErrorReference';
|
|
940
|
+
from?: Maybe<Scalars['ID']>;
|
|
941
|
+
to?: Maybe<Scalars['ID']>;
|
|
942
|
+
type: Scalars['ID'];
|
|
943
|
+
};
|
|
936
944
|
export declare type AriGraphRelationshipsFilter = {
|
|
937
945
|
type: Scalars['ID'];
|
|
938
946
|
from?: Maybe<Scalars['ID']>;
|
|
@@ -940,6 +948,12 @@ export declare type AriGraphRelationshipsFilter = {
|
|
|
940
948
|
updatedFrom?: Maybe<Scalars['DateTime']>;
|
|
941
949
|
updatedTo?: Maybe<Scalars['DateTime']>;
|
|
942
950
|
};
|
|
951
|
+
export declare type AriGraphRelationshipsMutationErrorExtension = MutationErrorExtension & {
|
|
952
|
+
__typename?: 'AriGraphRelationshipsMutationErrorExtension';
|
|
953
|
+
statusCode?: Maybe<Scalars['Int']>;
|
|
954
|
+
errorType?: Maybe<Scalars['String']>;
|
|
955
|
+
reference: AriGraphRelationshipsErrorReference;
|
|
956
|
+
};
|
|
943
957
|
export declare type ArjConfiguration = {
|
|
944
958
|
__typename?: 'ArjConfiguration';
|
|
945
959
|
parentCustomFieldId?: Maybe<Scalars['String']>;
|
|
@@ -3521,6 +3535,26 @@ export declare type ConfluenceDeleteUserPropertyPayload = Payload & {
|
|
|
3521
3535
|
errors?: Maybe<Array<MutationError>>;
|
|
3522
3536
|
success: Scalars['Boolean'];
|
|
3523
3537
|
};
|
|
3538
|
+
export declare type ConfluenceFooterComment = {
|
|
3539
|
+
__typename?: 'ConfluenceFooterComment';
|
|
3540
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3541
|
+
commentId?: Maybe<Scalars['ID']>;
|
|
3542
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
3543
|
+
id: Scalars['ID'];
|
|
3544
|
+
links?: Maybe<ConfluenceCommentLinks>;
|
|
3545
|
+
name?: Maybe<Scalars['String']>;
|
|
3546
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
3547
|
+
};
|
|
3548
|
+
export declare type ConfluenceInlineComment = {
|
|
3549
|
+
__typename?: 'ConfluenceInlineComment';
|
|
3550
|
+
author?: Maybe<ConfluenceUserInfo>;
|
|
3551
|
+
commentId?: Maybe<Scalars['ID']>;
|
|
3552
|
+
container?: Maybe<ConfluenceCommentContainer>;
|
|
3553
|
+
id: Scalars['ID'];
|
|
3554
|
+
links?: Maybe<ConfluenceCommentLinks>;
|
|
3555
|
+
name?: Maybe<Scalars['String']>;
|
|
3556
|
+
status?: Maybe<ConfluenceCommentStatus>;
|
|
3557
|
+
};
|
|
3524
3558
|
export declare type ConfluenceInlineTask = {
|
|
3525
3559
|
__typename?: 'ConfluenceInlineTask';
|
|
3526
3560
|
assignedTo?: Maybe<ConfluenceUserInfo>;
|
|
@@ -8051,6 +8085,23 @@ export declare type JiraEstimate = {
|
|
|
8051
8085
|
__typename?: 'JiraEstimate';
|
|
8052
8086
|
timeInSeconds?: Maybe<Scalars['Long']>;
|
|
8053
8087
|
};
|
|
8088
|
+
export declare type JiraFavourite = JiraProject;
|
|
8089
|
+
export declare type JiraFavouriteConnection = {
|
|
8090
|
+
__typename?: 'JiraFavouriteConnection';
|
|
8091
|
+
edges?: Maybe<Array<Maybe<JiraFavouriteEdge>>>;
|
|
8092
|
+
pageInfo: PageInfo;
|
|
8093
|
+
};
|
|
8094
|
+
export declare type JiraFavouriteEdge = {
|
|
8095
|
+
__typename?: 'JiraFavouriteEdge';
|
|
8096
|
+
node?: Maybe<JiraFavourite>;
|
|
8097
|
+
cursor: Scalars['String'];
|
|
8098
|
+
};
|
|
8099
|
+
export declare type JiraFavouriteFilter = {
|
|
8100
|
+
type: JiraFavouriteType;
|
|
8101
|
+
};
|
|
8102
|
+
export declare enum JiraFavouriteType {
|
|
8103
|
+
Project = "PROJECT"
|
|
8104
|
+
}
|
|
8054
8105
|
export declare type JiraFieldConfig = {
|
|
8055
8106
|
__typename?: 'JiraFieldConfig';
|
|
8056
8107
|
isRequired?: Maybe<Scalars['Boolean']>;
|
|
@@ -10596,6 +10647,7 @@ export declare type JiraQuery = {
|
|
|
10596
10647
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
10597
10648
|
issueContainersByType?: Maybe<JiraIssueItemContainersResult>;
|
|
10598
10649
|
issueContainersByTypeByKey?: Maybe<JiraIssueItemContainersResult>;
|
|
10650
|
+
favourites?: Maybe<JiraFavouriteConnection>;
|
|
10599
10651
|
issueByKey?: Maybe<JiraIssue>;
|
|
10600
10652
|
issueById?: Maybe<JiraIssue>;
|
|
10601
10653
|
issue?: Maybe<JiraIssue>;
|
|
@@ -10624,6 +10676,7 @@ export declare type JiraQuery = {
|
|
|
10624
10676
|
issueSearchStable?: Maybe<JiraIssueConnection>;
|
|
10625
10677
|
devOps?: Maybe<JiraDevOpsQuery>;
|
|
10626
10678
|
deploymentsFeaturePrecondition?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
10679
|
+
deploymentsFeaturePreconditionByProjectKey?: Maybe<JiraDeploymentsFeaturePrecondition>;
|
|
10627
10680
|
installDeploymentsBannerPrecondition?: Maybe<JiraInstallDeploymentsBannerPrecondition>;
|
|
10628
10681
|
};
|
|
10629
10682
|
export declare type JiraQueryJiraProjectArgs = {
|
|
@@ -10676,6 +10729,14 @@ export declare type JiraQueryIssueContainersByTypeArgs = {
|
|
|
10676
10729
|
export declare type JiraQueryIssueContainersByTypeByKeyArgs = {
|
|
10677
10730
|
input: JiraIssueItemSystemContainerTypeWithKeyInput;
|
|
10678
10731
|
};
|
|
10732
|
+
export declare type JiraQueryFavouritesArgs = {
|
|
10733
|
+
cloudId: Scalars['ID'];
|
|
10734
|
+
filter: JiraFavouriteFilter;
|
|
10735
|
+
first?: Maybe<Scalars['Int']>;
|
|
10736
|
+
after?: Maybe<Scalars['String']>;
|
|
10737
|
+
last?: Maybe<Scalars['Int']>;
|
|
10738
|
+
before?: Maybe<Scalars['String']>;
|
|
10739
|
+
};
|
|
10679
10740
|
export declare type JiraQueryIssueByKeyArgs = {
|
|
10680
10741
|
key: Scalars['String'];
|
|
10681
10742
|
cloudId: Scalars['ID'];
|
|
@@ -10791,6 +10852,10 @@ export declare type JiraQueryIssueSearchStableArgs = {
|
|
|
10791
10852
|
export declare type JiraQueryDeploymentsFeaturePreconditionArgs = {
|
|
10792
10853
|
projectId: Scalars['ID'];
|
|
10793
10854
|
};
|
|
10855
|
+
export declare type JiraQueryDeploymentsFeaturePreconditionByProjectKeyArgs = {
|
|
10856
|
+
cloudId: Scalars['ID'];
|
|
10857
|
+
projectKey: Scalars['String'];
|
|
10858
|
+
};
|
|
10794
10859
|
export declare type JiraQueryInstallDeploymentsBannerPreconditionArgs = {
|
|
10795
10860
|
projectId: Scalars['ID'];
|
|
10796
10861
|
};
|
|
@@ -11088,6 +11153,7 @@ export declare type JiraServiceManagementActiveApproval = Node & {
|
|
|
11088
11153
|
status?: Maybe<JiraServiceManagementApprovalStatus>;
|
|
11089
11154
|
approverPrincipals?: Maybe<JiraServiceManagementApproverPrincipalConnection>;
|
|
11090
11155
|
pendingApprovalCount?: Maybe<Scalars['Int']>;
|
|
11156
|
+
approvalState?: Maybe<JiraServiceManagementApprovalState>;
|
|
11091
11157
|
};
|
|
11092
11158
|
export declare type JiraServiceManagementActiveApprovalApproversArgs = {
|
|
11093
11159
|
first?: Maybe<Scalars['Int']>;
|
|
@@ -11148,6 +11214,10 @@ export declare type JiraServiceManagementApprovalFieldCompletedApprovalsConnecti
|
|
|
11148
11214
|
last?: Maybe<Scalars['Int']>;
|
|
11149
11215
|
before?: Maybe<Scalars['String']>;
|
|
11150
11216
|
};
|
|
11217
|
+
export declare enum JiraServiceManagementApprovalState {
|
|
11218
|
+
InsufficientApprovers = "INSUFFICIENT_APPROVERS",
|
|
11219
|
+
Ok = "OK"
|
|
11220
|
+
}
|
|
11151
11221
|
export declare type JiraServiceManagementApprovalStatus = {
|
|
11152
11222
|
__typename?: 'JiraServiceManagementApprovalStatus';
|
|
11153
11223
|
id?: Maybe<Scalars['String']>;
|
|
@@ -16285,7 +16355,7 @@ export declare type ShepherdAlert = {
|
|
|
16285
16355
|
assignee?: Maybe<ShepherdUser>;
|
|
16286
16356
|
cloudId?: Maybe<Scalars['ID']>;
|
|
16287
16357
|
createdOn: Scalars['DateTime'];
|
|
16288
|
-
description?: Maybe<
|
|
16358
|
+
description?: Maybe<ShepherdDescriptionTemplate>;
|
|
16289
16359
|
id: Scalars['ID'];
|
|
16290
16360
|
orgId: Scalars['ID'];
|
|
16291
16361
|
status: ShepherdAlertStatus;
|
|
@@ -16335,6 +16405,11 @@ export declare type ShepherdAppInfo = {
|
|
|
16335
16405
|
env: Scalars['String'];
|
|
16336
16406
|
loginUrl: Scalars['String'];
|
|
16337
16407
|
};
|
|
16408
|
+
export declare type ShepherdConfig = {
|
|
16409
|
+
__typename?: 'ShepherdConfig';
|
|
16410
|
+
descriptionTemplates?: Maybe<Array<Maybe<ShepherdDescriptionTemplate>>>;
|
|
16411
|
+
};
|
|
16412
|
+
export declare type ShepherdConfigResult = QueryError | ShepherdConfig;
|
|
16338
16413
|
export declare type ShepherdCreateAlertInput = {
|
|
16339
16414
|
assignee?: Maybe<Scalars['ID']>;
|
|
16340
16415
|
cloudId?: Maybe<Scalars['ID']>;
|
|
@@ -16394,6 +16469,11 @@ export declare type ShepherdDescriptionSection = {
|
|
|
16394
16469
|
text?: Maybe<Scalars['JSON']>;
|
|
16395
16470
|
type?: Maybe<ShepherdAlertDescriptionType>;
|
|
16396
16471
|
};
|
|
16472
|
+
export declare type ShepherdDescriptionTemplate = {
|
|
16473
|
+
__typename?: 'ShepherdDescriptionTemplate';
|
|
16474
|
+
text?: Maybe<Scalars['JSON']>;
|
|
16475
|
+
type?: Maybe<ShepherdAlertTemplateType>;
|
|
16476
|
+
};
|
|
16397
16477
|
export declare type ShepherdEmailConnection = {
|
|
16398
16478
|
__typename?: 'ShepherdEmailConnection';
|
|
16399
16479
|
edges?: Maybe<Array<Maybe<ShepherdEmailEdge>>>;
|
|
@@ -16471,6 +16551,7 @@ export declare type ShepherdQuery = {
|
|
|
16471
16551
|
shepherdAlert?: Maybe<ShepherdAlertResult>;
|
|
16472
16552
|
shepherdAlerts?: Maybe<ShepherdAlertsResult>;
|
|
16473
16553
|
shepherdAppInfo: ShepherdAppInfo;
|
|
16554
|
+
shepherdConfig?: Maybe<ShepherdConfigResult>;
|
|
16474
16555
|
shepherdOrganization?: Maybe<ShepherdOrganizationResult>;
|
|
16475
16556
|
shepherdUser?: Maybe<ShepherdUser>;
|
|
16476
16557
|
};
|
|
@@ -16912,6 +16993,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
16912
16993
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
16913
16994
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
16914
16995
|
updateSupportRequest?: Maybe<SupportRequest>;
|
|
16996
|
+
supportRequestContext?: Maybe<SupportRequestContextMutationApi>;
|
|
16915
16997
|
};
|
|
16916
16998
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
16917
16999
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -16939,6 +17021,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
16939
17021
|
me?: Maybe<SupportRequestPage>;
|
|
16940
17022
|
supportRequest?: Maybe<SupportRequest>;
|
|
16941
17023
|
users?: Maybe<SupportRequestUsers>;
|
|
17024
|
+
supportRequestContext?: Maybe<SupportRequestContextQueryApi>;
|
|
16942
17025
|
};
|
|
16943
17026
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
16944
17027
|
key: Scalars['ID'];
|
|
@@ -16963,6 +17046,24 @@ export declare type SupportRequestContactRelation = {
|
|
|
16963
17046
|
openRequest?: Maybe<SupportRequestTicket>;
|
|
16964
17047
|
contact?: Maybe<SupportRequestUser>;
|
|
16965
17048
|
};
|
|
17049
|
+
export declare type SupportRequestContextMutationApi = {
|
|
17050
|
+
__typename?: 'SupportRequestContextMutationApi';
|
|
17051
|
+
setNotifications: SupportRequestNotification;
|
|
17052
|
+
};
|
|
17053
|
+
export declare type SupportRequestContextMutationApiSetNotificationsArgs = {
|
|
17054
|
+
input: SupportRequestContextSetNotificationInput;
|
|
17055
|
+
};
|
|
17056
|
+
export declare type SupportRequestContextQueryApi = {
|
|
17057
|
+
__typename?: 'SupportRequestContextQueryApi';
|
|
17058
|
+
getNotificationStatus?: Maybe<SupportRequestNotification>;
|
|
17059
|
+
};
|
|
17060
|
+
export declare type SupportRequestContextQueryApiGetNotificationStatusArgs = {
|
|
17061
|
+
key: Scalars['ID'];
|
|
17062
|
+
};
|
|
17063
|
+
export declare type SupportRequestContextSetNotificationInput = {
|
|
17064
|
+
requestKey: Scalars['String'];
|
|
17065
|
+
status: Scalars['Boolean'];
|
|
17066
|
+
};
|
|
16966
17067
|
export declare type SupportRequestDisplayableDateTime = {
|
|
16967
17068
|
__typename?: 'SupportRequestDisplayableDateTime';
|
|
16968
17069
|
dateTime: Scalars['String'];
|
|
@@ -17027,6 +17128,10 @@ export declare type SupportRequestNamedContactRelations = {
|
|
|
17027
17128
|
cloudEnterpriseRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
17028
17129
|
premierSupportRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
17029
17130
|
};
|
|
17131
|
+
export declare type SupportRequestNotification = {
|
|
17132
|
+
__typename?: 'SupportRequestNotification';
|
|
17133
|
+
status?: Maybe<Scalars['Boolean']>;
|
|
17134
|
+
};
|
|
17030
17135
|
export declare type SupportRequestPage = {
|
|
17031
17136
|
__typename?: 'SupportRequestPage';
|
|
17032
17137
|
profile?: Maybe<SupportRequestUser>;
|