@forge/cli-shared 8.8.0-next.4 → 8.8.0-next.5
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
|
@@ -21885,6 +21885,7 @@ export declare type CplsContributor = {
|
|
|
21885
21885
|
__typename?: 'CplsContributor';
|
|
21886
21886
|
contributionAggregations: Array<CplsContributionAggregation>;
|
|
21887
21887
|
contributorData?: Maybe<CplsContributorData>;
|
|
21888
|
+
contributorDataId?: Maybe<Scalars['ID']['output']>;
|
|
21888
21889
|
contributorId: Scalars['ID']['output'];
|
|
21889
21890
|
contributorWork: CplsContributorWorkConnection;
|
|
21890
21891
|
id: Scalars['ID']['output'];
|
|
@@ -29659,6 +29660,8 @@ export declare type ExternalTest = Node & {
|
|
|
29659
29660
|
export declare type ExternalTestExecution = Node & {
|
|
29660
29661
|
__typename?: 'ExternalTestExecution';
|
|
29661
29662
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
29663
|
+
container?: Maybe<ExternalEntity>;
|
|
29664
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
29662
29665
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
29663
29666
|
createdBy?: Maybe<ExternalUser>;
|
|
29664
29667
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -29688,6 +29691,8 @@ export declare type ExternalTestInfo = {
|
|
|
29688
29691
|
export declare type ExternalTestPlan = Node & {
|
|
29689
29692
|
__typename?: 'ExternalTestPlan';
|
|
29690
29693
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
29694
|
+
container?: Maybe<ExternalEntity>;
|
|
29695
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
29691
29696
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
29692
29697
|
createdBy?: Maybe<ExternalUser>;
|
|
29693
29698
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -29708,6 +29713,8 @@ export declare type ExternalTestRun = Node & {
|
|
|
29708
29713
|
__typename?: 'ExternalTestRun';
|
|
29709
29714
|
assignee?: Maybe<ExternalUser>;
|
|
29710
29715
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
29716
|
+
container?: Maybe<ExternalEntity>;
|
|
29717
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
29711
29718
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
29712
29719
|
createdBy?: Maybe<ExternalUser>;
|
|
29713
29720
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -62451,6 +62458,7 @@ export declare type JiraApplySuggestionActionsPayload = Payload & {
|
|
|
62451
62458
|
errors?: Maybe<Array<MutationError>>;
|
|
62452
62459
|
ids?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
62453
62460
|
success: Scalars['Boolean']['output'];
|
|
62461
|
+
suggestions?: Maybe<Array<Maybe<JiraSuggestion>>>;
|
|
62454
62462
|
};
|
|
62455
62463
|
export declare enum JiraApprovalDecision {
|
|
62456
62464
|
Approved = "APPROVED",
|
|
@@ -66866,6 +66874,7 @@ export declare type JiraDuplicateJourneyConfigurationInput = {
|
|
|
66866
66874
|
export declare type JiraDuplicateWorkItemsSuggestion = JiraSuggestion & {
|
|
66867
66875
|
__typename?: 'JiraDuplicateWorkItemsSuggestion';
|
|
66868
66876
|
actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
|
|
66877
|
+
appliedAction?: Maybe<JiraSuggestionAction>;
|
|
66869
66878
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
66870
66879
|
id?: Maybe<Scalars['ID']['output']>;
|
|
66871
66880
|
relatedEntityId?: Maybe<Scalars['String']['output']>;
|
|
@@ -71542,6 +71551,14 @@ export declare enum JiraJqlSyntaxError {
|
|
|
71542
71551
|
UnfinishedString = "UNFINISHED_STRING",
|
|
71543
71552
|
Unknown = "UNKNOWN"
|
|
71544
71553
|
}
|
|
71554
|
+
export declare type JiraJqlTownsquareProjectFieldValue = JiraJqlFieldValue & {
|
|
71555
|
+
__typename?: 'JiraJqlTownsquareProjectFieldValue';
|
|
71556
|
+
displayName: Scalars['String']['output'];
|
|
71557
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
71558
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
71559
|
+
jqlTerm: Scalars['String']['output'];
|
|
71560
|
+
project?: Maybe<JiraTownsquareProject>;
|
|
71561
|
+
};
|
|
71545
71562
|
export declare type JiraJqlUserFieldValue = JiraJqlFieldValue & {
|
|
71546
71563
|
__typename?: 'JiraJqlUserFieldValue';
|
|
71547
71564
|
displayName: Scalars['String']['output'];
|
|
@@ -80101,6 +80118,7 @@ export declare type JiraSprintUpdateInput = {
|
|
|
80101
80118
|
export declare type JiraStaleWorkItemsSuggestion = JiraSuggestion & {
|
|
80102
80119
|
__typename?: 'JiraStaleWorkItemsSuggestion';
|
|
80103
80120
|
actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
|
|
80121
|
+
appliedAction?: Maybe<JiraSuggestionAction>;
|
|
80104
80122
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
80105
80123
|
id?: Maybe<Scalars['ID']['output']>;
|
|
80106
80124
|
status?: Maybe<JiraSuggestionStatus>;
|
|
@@ -80479,6 +80497,7 @@ export declare type JiraSuggestedIssueInput = {
|
|
|
80479
80497
|
};
|
|
80480
80498
|
export declare type JiraSuggestion = {
|
|
80481
80499
|
actions?: Maybe<Array<Maybe<JiraSuggestionAction>>>;
|
|
80500
|
+
appliedAction?: Maybe<JiraSuggestionAction>;
|
|
80482
80501
|
entityId?: Maybe<Scalars['String']['output']>;
|
|
80483
80502
|
id?: Maybe<Scalars['ID']['output']>;
|
|
80484
80503
|
status?: Maybe<JiraSuggestionStatus>;
|
|
@@ -101948,6 +101967,7 @@ export declare enum RadarCustomFieldSyncStatus {
|
|
|
101948
101967
|
}
|
|
101949
101968
|
export declare type RadarDateFieldValue = {
|
|
101950
101969
|
__typename?: 'RadarDateFieldValue';
|
|
101970
|
+
dateValue?: Maybe<Scalars['Date']['output']>;
|
|
101951
101971
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
101952
101972
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
101953
101973
|
};
|
|
@@ -126517,6 +126537,10 @@ export declare type StakeholderCommsStakeholderResponse = {
|
|
|
126517
126537
|
export declare enum StakeholderCommsStakeholderStatus {
|
|
126518
126538
|
Active = "ACTIVE",
|
|
126519
126539
|
Deleted = "DELETED",
|
|
126540
|
+
Invited = "INVITED",
|
|
126541
|
+
InvitedPendingApproval = "INVITED_PENDING_APPROVAL",
|
|
126542
|
+
NotInvited = "NOT_INVITED",
|
|
126543
|
+
PendingIdentitySetup = "PENDING_IDENTITY_SETUP",
|
|
126520
126544
|
Quarantined = "QUARANTINED"
|
|
126521
126545
|
}
|
|
126522
126546
|
export declare enum StakeholderCommsStakeholderType {
|