@forge/cli-shared 2.2.2-next.6 → 2.2.2
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,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 2.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [7f869f7]
|
|
8
|
+
- Updated dependencies [72e020c]
|
|
9
|
+
- Updated dependencies [b2cef71]
|
|
10
|
+
- Updated dependencies [254b239]
|
|
11
|
+
- Updated dependencies [47744fc]
|
|
12
|
+
- Updated dependencies [860c4fb]
|
|
13
|
+
- Updated dependencies [66e969f]
|
|
14
|
+
- Updated dependencies [2c635f9]
|
|
15
|
+
- @forge/manifest@3.2.0
|
|
16
|
+
|
|
3
17
|
## 2.2.2-next.6
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -192,8 +192,8 @@ export declare type ActivityEdge = {
|
|
|
192
192
|
export declare type ActivityEvent = {
|
|
193
193
|
__typename?: 'ActivityEvent';
|
|
194
194
|
id: Scalars['ID'];
|
|
195
|
-
timestamp
|
|
196
|
-
eventType
|
|
195
|
+
timestamp: Scalars['DateTime'];
|
|
196
|
+
eventType: Scalars['String'];
|
|
197
197
|
actor?: Maybe<User>;
|
|
198
198
|
extension?: Maybe<ActivitiesEventExtension>;
|
|
199
199
|
};
|
|
@@ -232,15 +232,15 @@ export declare type ActivityItemEdge = {
|
|
|
232
232
|
export declare type ActivityNode = Node & {
|
|
233
233
|
__typename?: 'ActivityNode';
|
|
234
234
|
id: Scalars['ID'];
|
|
235
|
-
object
|
|
236
|
-
event
|
|
235
|
+
object: ActivityObject;
|
|
236
|
+
event: ActivityEvent;
|
|
237
237
|
};
|
|
238
238
|
export declare type ActivityObject = {
|
|
239
239
|
__typename?: 'ActivityObject';
|
|
240
240
|
id: Scalars['ID'];
|
|
241
|
-
rootContainerId
|
|
242
|
-
type
|
|
243
|
-
product
|
|
241
|
+
rootContainerId: Scalars['ID'];
|
|
242
|
+
type: Scalars['String'];
|
|
243
|
+
product: Scalars['String'];
|
|
244
244
|
subProduct?: Maybe<Scalars['String']>;
|
|
245
245
|
contributors?: Maybe<Array<ActivitiesContributor>>;
|
|
246
246
|
data?: Maybe<ActivityObjectData>;
|
|
@@ -1479,6 +1479,49 @@ export declare type CompassAnnouncementAcknowledgement = {
|
|
|
1479
1479
|
component?: Maybe<CompassComponent>;
|
|
1480
1480
|
hasAcknowledged?: Maybe<Scalars['Boolean']>;
|
|
1481
1481
|
};
|
|
1482
|
+
export declare type CompassBuildEvent = CompassEvent & {
|
|
1483
|
+
__typename?: 'CompassBuildEvent';
|
|
1484
|
+
eventType: CompassEventType;
|
|
1485
|
+
lastUpdated: Scalars['DateTime'];
|
|
1486
|
+
displayName: Scalars['String'];
|
|
1487
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1488
|
+
url?: Maybe<Scalars['URL']>;
|
|
1489
|
+
description?: Maybe<Scalars['String']>;
|
|
1490
|
+
buildProperties: CompassBuildEventProperties;
|
|
1491
|
+
};
|
|
1492
|
+
export declare type CompassBuildEventPipeline = {
|
|
1493
|
+
__typename?: 'CompassBuildEventPipeline';
|
|
1494
|
+
pipelineId: Scalars['String'];
|
|
1495
|
+
url: Scalars['String'];
|
|
1496
|
+
displayName: Scalars['String'];
|
|
1497
|
+
};
|
|
1498
|
+
export declare type CompassBuildEventPipelineInput = {
|
|
1499
|
+
pipelineId: Scalars['String'];
|
|
1500
|
+
url: Scalars['String'];
|
|
1501
|
+
displayName: Scalars['String'];
|
|
1502
|
+
};
|
|
1503
|
+
export declare type CompassBuildEventProperties = {
|
|
1504
|
+
__typename?: 'CompassBuildEventProperties';
|
|
1505
|
+
state: CompassBuildEventState;
|
|
1506
|
+
pipeline?: Maybe<CompassBuildEventPipeline>;
|
|
1507
|
+
startedAt: Scalars['DateTime'];
|
|
1508
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
1509
|
+
};
|
|
1510
|
+
export declare type CompassBuildEventPropertiesInput = {
|
|
1511
|
+
state: CompassBuildEventState;
|
|
1512
|
+
pipeline: CompassBuildEventPipelineInput;
|
|
1513
|
+
startedAt: Scalars['DateTime'];
|
|
1514
|
+
completedAt?: Maybe<Scalars['DateTime']>;
|
|
1515
|
+
};
|
|
1516
|
+
export declare enum CompassBuildEventState {
|
|
1517
|
+
InProgress = "IN_PROGRESS",
|
|
1518
|
+
Successful = "SUCCESSFUL",
|
|
1519
|
+
Cancelled = "CANCELLED",
|
|
1520
|
+
Failed = "FAILED",
|
|
1521
|
+
Error = "ERROR",
|
|
1522
|
+
TimedOut = "TIMED_OUT",
|
|
1523
|
+
Unknown = "UNKNOWN"
|
|
1524
|
+
}
|
|
1482
1525
|
export declare type CompassCatalogMutationApi = {
|
|
1483
1526
|
__typename?: 'CompassCatalogMutationApi';
|
|
1484
1527
|
createComponent?: Maybe<CreateCompassComponentPayload>;
|
|
@@ -1829,6 +1872,15 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
|
1829
1872
|
success: Scalars['Boolean'];
|
|
1830
1873
|
errors?: Maybe<Array<MutationError>>;
|
|
1831
1874
|
};
|
|
1875
|
+
export declare type CompassCreateBuildEventInput = {
|
|
1876
|
+
displayName: Scalars['String'];
|
|
1877
|
+
lastUpdated: Scalars['DateTime'];
|
|
1878
|
+
updateSequenceNumber: Scalars['Long'];
|
|
1879
|
+
description?: Maybe<Scalars['String']>;
|
|
1880
|
+
url?: Maybe<Scalars['URL']>;
|
|
1881
|
+
externalEventSourceId: Scalars['ID'];
|
|
1882
|
+
buildProperties: CompassBuildEventPropertiesInput;
|
|
1883
|
+
};
|
|
1832
1884
|
export declare type CompassCreateCustomEventInput = {
|
|
1833
1885
|
displayName: Scalars['String'];
|
|
1834
1886
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -2105,6 +2157,7 @@ export declare type CompassEventEdge = {
|
|
|
2105
2157
|
};
|
|
2106
2158
|
export declare type CompassEventInput = {
|
|
2107
2159
|
deployment?: Maybe<CompassCreateDeploymentEventInput>;
|
|
2160
|
+
build?: Maybe<CompassCreateBuildEventInput>;
|
|
2108
2161
|
incident?: Maybe<CompassCreateIncidentEventInput>;
|
|
2109
2162
|
flag?: Maybe<CompassCreateFlagEventInput>;
|
|
2110
2163
|
alert?: Maybe<CompassCreateAlertEventInput>;
|
|
@@ -2118,6 +2171,7 @@ export declare type CompassEventTimeParameters = {
|
|
|
2118
2171
|
};
|
|
2119
2172
|
export declare enum CompassEventType {
|
|
2120
2173
|
Deployment = "DEPLOYMENT",
|
|
2174
|
+
Build = "BUILD",
|
|
2121
2175
|
Incident = "INCIDENT",
|
|
2122
2176
|
Flag = "FLAG",
|
|
2123
2177
|
Alert = "ALERT",
|
|
@@ -7553,6 +7607,7 @@ export declare type JiraIssueSearchFieldConfigSetConnection = {
|
|
|
7553
7607
|
totalCount?: Maybe<Scalars['Int']>;
|
|
7554
7608
|
pageInfo: PageInfo;
|
|
7555
7609
|
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldConfigSetEdge>>>;
|
|
7610
|
+
isWithholdingUnsupportedSelectedFields?: Maybe<Scalars['Boolean']>;
|
|
7556
7611
|
};
|
|
7557
7612
|
export declare type JiraIssueSearchFieldConfigSetEdge = {
|
|
7558
7613
|
__typename?: 'JiraIssueSearchFieldConfigSetEdge';
|
|
@@ -13412,6 +13467,21 @@ export declare enum RoadmapTimelineMode {
|
|
|
13412
13467
|
Months = "MONTHS",
|
|
13413
13468
|
Quarters = "QUARTERS"
|
|
13414
13469
|
}
|
|
13470
|
+
export declare type RoadmapToggleDependencyInput = {
|
|
13471
|
+
dependee: Scalars['ID'];
|
|
13472
|
+
dependency: Scalars['ID'];
|
|
13473
|
+
};
|
|
13474
|
+
export declare type RoadmapToggleDependencyPayload = Payload & {
|
|
13475
|
+
__typename?: 'RoadmapToggleDependencyPayload';
|
|
13476
|
+
success: Scalars['Boolean'];
|
|
13477
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13478
|
+
output?: Maybe<RoadmapToggleDependencyResponse>;
|
|
13479
|
+
};
|
|
13480
|
+
export declare type RoadmapToggleDependencyResponse = {
|
|
13481
|
+
__typename?: 'RoadmapToggleDependencyResponse';
|
|
13482
|
+
dependee: Scalars['ID'];
|
|
13483
|
+
dependency: Scalars['ID'];
|
|
13484
|
+
};
|
|
13415
13485
|
export declare type RoadmapUserConfiguration = {
|
|
13416
13486
|
__typename?: 'RoadmapUserConfiguration';
|
|
13417
13487
|
hasCompletedOnboarding: Scalars['Boolean'];
|
|
@@ -13444,6 +13514,8 @@ export declare type RoadmapsMutation = {
|
|
|
13444
13514
|
__typename?: 'RoadmapsMutation';
|
|
13445
13515
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13446
13516
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13517
|
+
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13518
|
+
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13447
13519
|
};
|
|
13448
13520
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13449
13521
|
input?: Maybe<RoadmapFeatureToggleInput>;
|
|
@@ -13452,6 +13524,14 @@ export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
|
13452
13524
|
input?: Maybe<RoadmapAddItemInput>;
|
|
13453
13525
|
sourceARI?: Maybe<Scalars['ID']>;
|
|
13454
13526
|
};
|
|
13527
|
+
export declare type RoadmapsMutationAddRoadmapDependencyArgs = {
|
|
13528
|
+
sourceARI: Scalars['ID'];
|
|
13529
|
+
input: RoadmapToggleDependencyInput;
|
|
13530
|
+
};
|
|
13531
|
+
export declare type RoadmapsMutationRemoveRoadmapDependencyArgs = {
|
|
13532
|
+
sourceARI: Scalars['ID'];
|
|
13533
|
+
input: RoadmapToggleDependencyInput;
|
|
13534
|
+
};
|
|
13455
13535
|
export declare type RoadmapsQuery = {
|
|
13456
13536
|
__typename?: 'RoadmapsQuery';
|
|
13457
13537
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
@@ -14148,6 +14228,7 @@ export declare type SupportRequest = {
|
|
|
14148
14228
|
statuses: SupportRequestStatuses;
|
|
14149
14229
|
transitions?: Maybe<SupportRequestTransitions>;
|
|
14150
14230
|
targetScreen: Scalars['String'];
|
|
14231
|
+
tracAttachmentComponentsEnabled?: Maybe<Scalars['Boolean']>;
|
|
14151
14232
|
lastComment: SupportRequestComments;
|
|
14152
14233
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
14153
14234
|
};
|