@forge/cli-shared 2.1.2-next.3 → 2.1.2-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
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.1.2-next.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [a98d79c]
|
|
8
|
+
- Updated dependencies [ea2dcfd]
|
|
9
|
+
- Updated dependencies [915bb3a]
|
|
10
|
+
- Updated dependencies [3a3a508]
|
|
11
|
+
- @forge/manifest@2.2.1-next.4
|
|
12
|
+
|
|
3
13
|
## 2.1.2-next.3
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -1206,6 +1206,24 @@ export declare type CardParent = {
|
|
|
1206
1206
|
startDate?: Maybe<Scalars['String']>;
|
|
1207
1207
|
dueDate?: Maybe<Scalars['String']>;
|
|
1208
1208
|
};
|
|
1209
|
+
export declare type CardParentCreateInput = {
|
|
1210
|
+
boardId: Scalars['ID'];
|
|
1211
|
+
newIssueParents: Array<NewCardParent>;
|
|
1212
|
+
};
|
|
1213
|
+
export declare type CardParentCreateOutput = MutationResponse & {
|
|
1214
|
+
__typename?: 'CardParentCreateOutput';
|
|
1215
|
+
newCardParents?: Maybe<Array<Maybe<CardParent>>>;
|
|
1216
|
+
statusCode: Scalars['Int'];
|
|
1217
|
+
success: Scalars['Boolean'];
|
|
1218
|
+
message: Scalars['String'];
|
|
1219
|
+
clientMutationId?: Maybe<Scalars['ID']>;
|
|
1220
|
+
};
|
|
1221
|
+
export declare type CardParentRankInput = {
|
|
1222
|
+
issueParentIds: Array<Scalars['ID']>;
|
|
1223
|
+
boardId: Scalars['ID'];
|
|
1224
|
+
rankBeforeIssueParentId?: Maybe<Scalars['Long']>;
|
|
1225
|
+
rankAfterIssueParentId?: Maybe<Scalars['Long']>;
|
|
1226
|
+
};
|
|
1209
1227
|
export declare type CardPriority = {
|
|
1210
1228
|
__typename?: 'CardPriority';
|
|
1211
1229
|
name?: Maybe<Scalars['String']>;
|
|
@@ -1265,6 +1283,7 @@ export declare type CodeInJiraVcsProvider = {
|
|
|
1265
1283
|
name?: Maybe<Scalars['String']>;
|
|
1266
1284
|
providerNamespace?: Maybe<Scalars['String']>;
|
|
1267
1285
|
providerId?: Maybe<Scalars['String']>;
|
|
1286
|
+
baseUrl?: Maybe<Scalars['String']>;
|
|
1268
1287
|
};
|
|
1269
1288
|
export declare type Column = {
|
|
1270
1289
|
__typename?: 'Column';
|
|
@@ -7218,6 +7237,8 @@ export declare type Mutation = {
|
|
|
7218
7237
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
7219
7238
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
7220
7239
|
unassignIssueParent?: Maybe<UnassignIssueParentOutput>;
|
|
7240
|
+
createCardParent?: Maybe<CardParentCreateOutput>;
|
|
7241
|
+
rankCardParent?: Maybe<GenericMutationResponse>;
|
|
7221
7242
|
createDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<CreateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
7222
7243
|
updateDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<UpdateDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
7223
7244
|
deleteDevOpsServiceAndOpsgenieTeamRelationship?: Maybe<DeleteDevOpsServiceAndOpsgenieTeamRelationshipPayload>;
|
|
@@ -7385,6 +7406,12 @@ export declare type MutationAssignIssueParentArgs = {
|
|
|
7385
7406
|
export declare type MutationUnassignIssueParentArgs = {
|
|
7386
7407
|
input?: Maybe<UnassignIssueParentInput>;
|
|
7387
7408
|
};
|
|
7409
|
+
export declare type MutationCreateCardParentArgs = {
|
|
7410
|
+
input: CardParentCreateInput;
|
|
7411
|
+
};
|
|
7412
|
+
export declare type MutationRankCardParentArgs = {
|
|
7413
|
+
input: CardParentRankInput;
|
|
7414
|
+
};
|
|
7388
7415
|
export declare type MutationCreateDevOpsServiceAndOpsgenieTeamRelationshipArgs = {
|
|
7389
7416
|
input: CreateDevOpsServiceAndOpsgenieTeamRelationshipInput;
|
|
7390
7417
|
};
|
|
@@ -7699,6 +7726,10 @@ export declare type NadelHydrationArgument = {
|
|
|
7699
7726
|
name: Scalars['String'];
|
|
7700
7727
|
value: Scalars['String'];
|
|
7701
7728
|
};
|
|
7729
|
+
export declare type NewCardParent = {
|
|
7730
|
+
summary: Scalars['String'];
|
|
7731
|
+
issueTypeId: Scalars['ID'];
|
|
7732
|
+
};
|
|
7702
7733
|
export declare type Node = {
|
|
7703
7734
|
id: Scalars['ID'];
|
|
7704
7735
|
};
|
|
@@ -8627,6 +8658,7 @@ export declare type PolarisView = {
|
|
|
8627
8658
|
description?: Maybe<Scalars['JSON']>;
|
|
8628
8659
|
projectId: Scalars['Int'];
|
|
8629
8660
|
viewSetId: Scalars['ID'];
|
|
8661
|
+
tableColumnSizes?: Maybe<Array<PolarisViewTableColumnSize>>;
|
|
8630
8662
|
fields: Array<PolarisIdeaField>;
|
|
8631
8663
|
jql?: Maybe<Scalars['String']>;
|
|
8632
8664
|
immutable?: Maybe<Scalars['Boolean']>;
|
|
@@ -8713,6 +8745,15 @@ export declare enum PolarisViewSetType {
|
|
|
8713
8745
|
Single = "SINGLE",
|
|
8714
8746
|
Section = "SECTION"
|
|
8715
8747
|
}
|
|
8748
|
+
export declare type PolarisViewTableColumnSize = {
|
|
8749
|
+
__typename?: 'PolarisViewTableColumnSize';
|
|
8750
|
+
field: PolarisIdeaField;
|
|
8751
|
+
size: Scalars['Int'];
|
|
8752
|
+
};
|
|
8753
|
+
export declare type PolarisViewTableColumnSizeInput = {
|
|
8754
|
+
field: Scalars['ID'];
|
|
8755
|
+
size: Scalars['Int'];
|
|
8756
|
+
};
|
|
8716
8757
|
export declare enum PolarisVisualizationType {
|
|
8717
8758
|
Table = "TABLE",
|
|
8718
8759
|
Board = "BOARD",
|
|
@@ -8750,6 +8791,7 @@ export declare type Query = {
|
|
|
8750
8791
|
me: AuthenticationContext;
|
|
8751
8792
|
user?: Maybe<User>;
|
|
8752
8793
|
users: Array<User>;
|
|
8794
|
+
townsquare?: Maybe<TownsquareQueryApi>;
|
|
8753
8795
|
opsgenieTeamRelationshipForDevOpsService?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
8754
8796
|
devOpsServiceRelationshipsForOpsgenieTeam?: Maybe<DevOpsServiceAndOpsgenieTeamRelationshipConnection>;
|
|
8755
8797
|
devOpsServiceAndOpsgenieTeamRelationship?: Maybe<DevOpsServiceAndOpsgenieTeamRelationship>;
|
|
@@ -9778,7 +9820,9 @@ export declare type SupportRequest = SupportRequestCommonRequest & {
|
|
|
9778
9820
|
fields: Array<SupportRequestField>;
|
|
9779
9821
|
comments: SupportRequestComments;
|
|
9780
9822
|
statuses: SupportRequestStatuses;
|
|
9823
|
+
transitions: SupportRequestTransitions;
|
|
9781
9824
|
routeToSupportPortal: Scalars['Boolean'];
|
|
9825
|
+
targetScreen: Scalars['String'];
|
|
9782
9826
|
};
|
|
9783
9827
|
export declare type SupportRequestCommentsArgs = {
|
|
9784
9828
|
offset?: Maybe<Scalars['Int']>;
|
|
@@ -9788,6 +9832,10 @@ export declare type SupportRequestStatusesArgs = {
|
|
|
9788
9832
|
offset?: Maybe<Scalars['Int']>;
|
|
9789
9833
|
size?: Maybe<Scalars['Int']>;
|
|
9790
9834
|
};
|
|
9835
|
+
export declare type SupportRequestTransitionsArgs = {
|
|
9836
|
+
offset?: Maybe<Scalars['Int']>;
|
|
9837
|
+
size?: Maybe<Scalars['Int']>;
|
|
9838
|
+
};
|
|
9791
9839
|
export declare type SupportRequestAddCommentInput = {
|
|
9792
9840
|
message: Scalars['String'];
|
|
9793
9841
|
issueKey: Scalars['String'];
|
|
@@ -9936,6 +9984,19 @@ export declare type SupportRequestTicket = {
|
|
|
9936
9984
|
__typename?: 'SupportRequestTicket';
|
|
9937
9985
|
issueKey?: Maybe<Scalars['String']>;
|
|
9938
9986
|
};
|
|
9987
|
+
export declare type SupportRequestTransition = {
|
|
9988
|
+
__typename?: 'SupportRequestTransition';
|
|
9989
|
+
id: Scalars['String'];
|
|
9990
|
+
name: Scalars['String'];
|
|
9991
|
+
};
|
|
9992
|
+
export declare type SupportRequestTransitions = {
|
|
9993
|
+
__typename?: 'SupportRequestTransitions';
|
|
9994
|
+
offset: Scalars['Int'];
|
|
9995
|
+
limit: Scalars['Int'];
|
|
9996
|
+
size: Scalars['Int'];
|
|
9997
|
+
lastPage: Scalars['Boolean'];
|
|
9998
|
+
values: Array<SupportRequestTransition>;
|
|
9999
|
+
};
|
|
9939
10000
|
export declare type SupportRequestUser = {
|
|
9940
10001
|
__typename?: 'SupportRequestUser';
|
|
9941
10002
|
user?: Maybe<User>;
|
|
@@ -10018,6 +10079,70 @@ export declare type TimeSeriesPoint = {
|
|
|
10018
10079
|
x: Scalars['DateTime'];
|
|
10019
10080
|
y: Scalars['Int'];
|
|
10020
10081
|
};
|
|
10082
|
+
export declare type TownsquareGoal = Node & {
|
|
10083
|
+
__typename?: 'TownsquareGoal';
|
|
10084
|
+
archived: Scalars['Boolean'];
|
|
10085
|
+
iconData?: Maybe<Scalars['String']>;
|
|
10086
|
+
id: Scalars['ID'];
|
|
10087
|
+
key: Scalars['String'];
|
|
10088
|
+
name: Scalars['String'];
|
|
10089
|
+
uuid: Scalars['String'];
|
|
10090
|
+
owner?: Maybe<TownsquareUser>;
|
|
10091
|
+
url: Scalars['String'];
|
|
10092
|
+
};
|
|
10093
|
+
export declare type TownsquareGoalConnection = {
|
|
10094
|
+
__typename?: 'TownsquareGoalConnection';
|
|
10095
|
+
count: Scalars['Int'];
|
|
10096
|
+
edges?: Maybe<Array<Maybe<TownsquareGoalEdge>>>;
|
|
10097
|
+
pageInfo: PageInfo;
|
|
10098
|
+
};
|
|
10099
|
+
export declare type TownsquareGoalEdge = {
|
|
10100
|
+
__typename?: 'TownsquareGoalEdge';
|
|
10101
|
+
cursor: Scalars['String'];
|
|
10102
|
+
node?: Maybe<TownsquareGoal>;
|
|
10103
|
+
};
|
|
10104
|
+
export declare type TownsquareProject = Node & {
|
|
10105
|
+
__typename?: 'TownsquareProject';
|
|
10106
|
+
archived: Scalars['Boolean'];
|
|
10107
|
+
iconData?: Maybe<Scalars['String']>;
|
|
10108
|
+
id: Scalars['ID'];
|
|
10109
|
+
key: Scalars['String'];
|
|
10110
|
+
name: Scalars['String'];
|
|
10111
|
+
uuid: Scalars['String'];
|
|
10112
|
+
owner?: Maybe<TownsquareUser>;
|
|
10113
|
+
url: Scalars['String'];
|
|
10114
|
+
};
|
|
10115
|
+
export declare type TownsquareProjectConnection = {
|
|
10116
|
+
__typename?: 'TownsquareProjectConnection';
|
|
10117
|
+
count: Scalars['Int'];
|
|
10118
|
+
edges?: Maybe<Array<Maybe<TownsquareProjectEdge>>>;
|
|
10119
|
+
pageInfo: PageInfo;
|
|
10120
|
+
};
|
|
10121
|
+
export declare type TownsquareProjectEdge = {
|
|
10122
|
+
__typename?: 'TownsquareProjectEdge';
|
|
10123
|
+
cursor: Scalars['String'];
|
|
10124
|
+
node?: Maybe<TownsquareProject>;
|
|
10125
|
+
};
|
|
10126
|
+
export declare type TownsquareQueryApi = {
|
|
10127
|
+
__typename?: 'TownsquareQueryApi';
|
|
10128
|
+
projectsByAri?: Maybe<TownsquareProjectConnection>;
|
|
10129
|
+
goalsByAri?: Maybe<TownsquareGoalConnection>;
|
|
10130
|
+
};
|
|
10131
|
+
export declare type TownsquareQueryApiProjectsByAriArgs = {
|
|
10132
|
+
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
10133
|
+
after?: Maybe<Scalars['String']>;
|
|
10134
|
+
first?: Maybe<Scalars['Int']>;
|
|
10135
|
+
};
|
|
10136
|
+
export declare type TownsquareQueryApiGoalsByAriArgs = {
|
|
10137
|
+
aris?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
10138
|
+
after?: Maybe<Scalars['String']>;
|
|
10139
|
+
first?: Maybe<Scalars['Int']>;
|
|
10140
|
+
};
|
|
10141
|
+
export declare type TownsquareUser = {
|
|
10142
|
+
__typename?: 'TownsquareUser';
|
|
10143
|
+
aaid?: Maybe<Scalars['String']>;
|
|
10144
|
+
profile?: Maybe<User>;
|
|
10145
|
+
};
|
|
10021
10146
|
export declare type TunnelDefinitionsInput = {
|
|
10022
10147
|
faasTunnelUrl?: Maybe<Scalars['URL']>;
|
|
10023
10148
|
customUI?: Maybe<Array<Maybe<CustomUiTunnelDefinitionInput>>>;
|
|
@@ -10418,6 +10543,7 @@ export declare type UpdatePolarisViewInput = {
|
|
|
10418
10543
|
description?: Maybe<Scalars['JSON']>;
|
|
10419
10544
|
jql?: Maybe<Scalars['String']>;
|
|
10420
10545
|
userJql?: Maybe<Scalars['String']>;
|
|
10546
|
+
tableColumnSizes?: Maybe<Array<PolarisViewTableColumnSizeInput>>;
|
|
10421
10547
|
fields?: Maybe<Array<Scalars['ID']>>;
|
|
10422
10548
|
groupBy?: Maybe<Scalars['ID']>;
|
|
10423
10549
|
groupValues?: Maybe<Array<PolarisGroupValueInput>>;
|