@forge/cli-shared 2.6.1-next.2 → 2.6.1-next.3
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
|
@@ -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']>;
|
|
@@ -16923,6 +16993,7 @@ export declare type SupportRequestCatalogMutationApi = {
|
|
|
16923
16993
|
addRequestParticipants?: Maybe<SupportRequestParticipants>;
|
|
16924
16994
|
createNamedContactOperationRequest?: Maybe<SupportRequestTicket>;
|
|
16925
16995
|
updateSupportRequest?: Maybe<SupportRequest>;
|
|
16996
|
+
supportRequestContext?: Maybe<SupportRequestContextMutationApi>;
|
|
16926
16997
|
};
|
|
16927
16998
|
export declare type SupportRequestCatalogMutationApiAddCommentArgs = {
|
|
16928
16999
|
input?: Maybe<SupportRequestAddCommentInput>;
|
|
@@ -16950,6 +17021,7 @@ export declare type SupportRequestCatalogQueryApi = {
|
|
|
16950
17021
|
me?: Maybe<SupportRequestPage>;
|
|
16951
17022
|
supportRequest?: Maybe<SupportRequest>;
|
|
16952
17023
|
users?: Maybe<SupportRequestUsers>;
|
|
17024
|
+
supportRequestContext?: Maybe<SupportRequestContextQueryApi>;
|
|
16953
17025
|
};
|
|
16954
17026
|
export declare type SupportRequestCatalogQueryApiSupportRequestArgs = {
|
|
16955
17027
|
key: Scalars['ID'];
|
|
@@ -16974,6 +17046,24 @@ export declare type SupportRequestContactRelation = {
|
|
|
16974
17046
|
openRequest?: Maybe<SupportRequestTicket>;
|
|
16975
17047
|
contact?: Maybe<SupportRequestUser>;
|
|
16976
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
|
+
};
|
|
16977
17067
|
export declare type SupportRequestDisplayableDateTime = {
|
|
16978
17068
|
__typename?: 'SupportRequestDisplayableDateTime';
|
|
16979
17069
|
dateTime: Scalars['String'];
|
|
@@ -17038,6 +17128,10 @@ export declare type SupportRequestNamedContactRelations = {
|
|
|
17038
17128
|
cloudEnterpriseRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
17039
17129
|
premierSupportRelations?: Maybe<Array<Maybe<SupportRequestNamedContactRelation>>>;
|
|
17040
17130
|
};
|
|
17131
|
+
export declare type SupportRequestNotification = {
|
|
17132
|
+
__typename?: 'SupportRequestNotification';
|
|
17133
|
+
status?: Maybe<Scalars['Boolean']>;
|
|
17134
|
+
};
|
|
17041
17135
|
export declare type SupportRequestPage = {
|
|
17042
17136
|
__typename?: 'SupportRequestPage';
|
|
17043
17137
|
profile?: Maybe<SupportRequestUser>;
|