@forge/cli-shared 2.2.2-next.4 → 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,33 @@
|
|
|
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
|
+
|
|
17
|
+
## 2.2.2-next.6
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [860c4fb0]
|
|
22
|
+
- @forge/manifest@3.2.0-next.6
|
|
23
|
+
|
|
24
|
+
## 2.2.2-next.5
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [72e020c]
|
|
29
|
+
- @forge/manifest@3.2.0-next.5
|
|
30
|
+
|
|
3
31
|
## 2.2.2-next.4
|
|
4
32
|
|
|
5
33
|
### 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>;
|
|
@@ -963,6 +963,7 @@ export declare type AuxEffectsInvocationPayload = {
|
|
|
963
963
|
export declare type AuxEffectsResult = {
|
|
964
964
|
__typename?: 'AuxEffectsResult';
|
|
965
965
|
effects: Array<Scalars['JSON']>;
|
|
966
|
+
contextToken?: Maybe<ForgeContextToken>;
|
|
966
967
|
};
|
|
967
968
|
export declare type AvailableEstimations = {
|
|
968
969
|
__typename?: 'AvailableEstimations';
|
|
@@ -1478,6 +1479,49 @@ export declare type CompassAnnouncementAcknowledgement = {
|
|
|
1478
1479
|
component?: Maybe<CompassComponent>;
|
|
1479
1480
|
hasAcknowledged?: Maybe<Scalars['Boolean']>;
|
|
1480
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
|
+
}
|
|
1481
1525
|
export declare type CompassCatalogMutationApi = {
|
|
1482
1526
|
__typename?: 'CompassCatalogMutationApi';
|
|
1483
1527
|
createComponent?: Maybe<CreateCompassComponentPayload>;
|
|
@@ -1828,6 +1872,15 @@ export declare type CompassCreateAnnouncementPayload = Payload & {
|
|
|
1828
1872
|
success: Scalars['Boolean'];
|
|
1829
1873
|
errors?: Maybe<Array<MutationError>>;
|
|
1830
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
|
+
};
|
|
1831
1884
|
export declare type CompassCreateCustomEventInput = {
|
|
1832
1885
|
displayName: Scalars['String'];
|
|
1833
1886
|
lastUpdated: Scalars['DateTime'];
|
|
@@ -2104,6 +2157,7 @@ export declare type CompassEventEdge = {
|
|
|
2104
2157
|
};
|
|
2105
2158
|
export declare type CompassEventInput = {
|
|
2106
2159
|
deployment?: Maybe<CompassCreateDeploymentEventInput>;
|
|
2160
|
+
build?: Maybe<CompassCreateBuildEventInput>;
|
|
2107
2161
|
incident?: Maybe<CompassCreateIncidentEventInput>;
|
|
2108
2162
|
flag?: Maybe<CompassCreateFlagEventInput>;
|
|
2109
2163
|
alert?: Maybe<CompassCreateAlertEventInput>;
|
|
@@ -2117,6 +2171,7 @@ export declare type CompassEventTimeParameters = {
|
|
|
2117
2171
|
};
|
|
2118
2172
|
export declare enum CompassEventType {
|
|
2119
2173
|
Deployment = "DEPLOYMENT",
|
|
2174
|
+
Build = "BUILD",
|
|
2120
2175
|
Incident = "INCIDENT",
|
|
2121
2176
|
Flag = "FLAG",
|
|
2122
2177
|
Alert = "ALERT",
|
|
@@ -5365,6 +5420,11 @@ export declare type FilterQuery = {
|
|
|
5365
5420
|
sanitisedJql: Scalars['String'];
|
|
5366
5421
|
errors?: Maybe<Array<Maybe<Scalars['String']>>>;
|
|
5367
5422
|
};
|
|
5423
|
+
export declare type ForgeContextToken = {
|
|
5424
|
+
__typename?: 'ForgeContextToken';
|
|
5425
|
+
jwt: Scalars['String'];
|
|
5426
|
+
expiresAt: Scalars['String'];
|
|
5427
|
+
};
|
|
5368
5428
|
export declare type ForgeMetricsData = {
|
|
5369
5429
|
name: Scalars['String'];
|
|
5370
5430
|
type: ForgeMetricsDataType;
|
|
@@ -5607,6 +5667,7 @@ export declare type InvokeExtensionResponse = Payload & {
|
|
|
5607
5667
|
errors?: Maybe<Array<MutationError>>;
|
|
5608
5668
|
response?: Maybe<InvocationResponsePayload>;
|
|
5609
5669
|
externalAuth?: Maybe<Array<Maybe<ExternalAuthProvider>>>;
|
|
5670
|
+
contextToken?: Maybe<ForgeContextToken>;
|
|
5610
5671
|
};
|
|
5611
5672
|
export declare type InvokePolarisObjectInput = {
|
|
5612
5673
|
project: Scalars['ID'];
|
|
@@ -7546,6 +7607,7 @@ export declare type JiraIssueSearchFieldConfigSetConnection = {
|
|
|
7546
7607
|
totalCount?: Maybe<Scalars['Int']>;
|
|
7547
7608
|
pageInfo: PageInfo;
|
|
7548
7609
|
edges?: Maybe<Array<Maybe<JiraIssueSearchFieldConfigSetEdge>>>;
|
|
7610
|
+
isWithholdingUnsupportedSelectedFields?: Maybe<Scalars['Boolean']>;
|
|
7549
7611
|
};
|
|
7550
7612
|
export declare type JiraIssueSearchFieldConfigSetEdge = {
|
|
7551
7613
|
__typename?: 'JiraIssueSearchFieldConfigSetEdge';
|
|
@@ -13405,6 +13467,21 @@ export declare enum RoadmapTimelineMode {
|
|
|
13405
13467
|
Months = "MONTHS",
|
|
13406
13468
|
Quarters = "QUARTERS"
|
|
13407
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
|
+
};
|
|
13408
13485
|
export declare type RoadmapUserConfiguration = {
|
|
13409
13486
|
__typename?: 'RoadmapUserConfiguration';
|
|
13410
13487
|
hasCompletedOnboarding: Scalars['Boolean'];
|
|
@@ -13437,6 +13514,8 @@ export declare type RoadmapsMutation = {
|
|
|
13437
13514
|
__typename?: 'RoadmapsMutation';
|
|
13438
13515
|
toggleRoadmapFeature?: Maybe<RoadmapFeatureTogglePayload>;
|
|
13439
13516
|
addRoadmapItem?: Maybe<RoadmapAddItemPayload>;
|
|
13517
|
+
addRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13518
|
+
removeRoadmapDependency?: Maybe<RoadmapToggleDependencyPayload>;
|
|
13440
13519
|
};
|
|
13441
13520
|
export declare type RoadmapsMutationToggleRoadmapFeatureArgs = {
|
|
13442
13521
|
input?: Maybe<RoadmapFeatureToggleInput>;
|
|
@@ -13445,6 +13524,14 @@ export declare type RoadmapsMutationAddRoadmapItemArgs = {
|
|
|
13445
13524
|
input?: Maybe<RoadmapAddItemInput>;
|
|
13446
13525
|
sourceARI?: Maybe<Scalars['ID']>;
|
|
13447
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
|
+
};
|
|
13448
13535
|
export declare type RoadmapsQuery = {
|
|
13449
13536
|
__typename?: 'RoadmapsQuery';
|
|
13450
13537
|
roadmapForSource?: Maybe<RoadmapDetails>;
|
|
@@ -14141,6 +14228,7 @@ export declare type SupportRequest = {
|
|
|
14141
14228
|
statuses: SupportRequestStatuses;
|
|
14142
14229
|
transitions?: Maybe<SupportRequestTransitions>;
|
|
14143
14230
|
targetScreen: Scalars['String'];
|
|
14231
|
+
tracAttachmentComponentsEnabled?: Maybe<Scalars['Boolean']>;
|
|
14144
14232
|
lastComment: SupportRequestComments;
|
|
14145
14233
|
relatedRequests?: Maybe<Array<Maybe<SupportRequest>>>;
|
|
14146
14234
|
};
|