@forge/cli-shared 5.3.0-next.3 → 5.3.0-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 +6 -0
- package/out/graphql/graphql-types.d.ts +12 -8
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/ui/text.d.ts +6 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +7 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -65766,6 +65766,14 @@ export declare enum WorkSuggestionsApprovalStatus {
|
|
|
65766
65766
|
Unapproved = "UNAPPROVED",
|
|
65767
65767
|
Unknown = "UNKNOWN"
|
|
65768
65768
|
}
|
|
65769
|
+
export declare type WorkSuggestionsAutoDevJobJiraIssue = {
|
|
65770
|
+
__typename?: 'WorkSuggestionsAutoDevJobJiraIssue';
|
|
65771
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
65772
|
+
id: Scalars['String']['output'];
|
|
65773
|
+
key: Scalars['String']['output'];
|
|
65774
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
65775
|
+
webUrl?: Maybe<Scalars['String']['output']>;
|
|
65776
|
+
};
|
|
65769
65777
|
export declare enum WorkSuggestionsAutoDevJobState {
|
|
65770
65778
|
Cancelled = "CANCELLED",
|
|
65771
65779
|
CodeGenerating = "CODE_GENERATING",
|
|
@@ -65785,10 +65793,8 @@ export declare type WorkSuggestionsAutoDevJobTask = {
|
|
|
65785
65793
|
autoDevJobId: Scalars['String']['output'];
|
|
65786
65794
|
autoDevState?: Maybe<WorkSuggestionsAutoDevJobState>;
|
|
65787
65795
|
id: Scalars['String']['output'];
|
|
65788
|
-
|
|
65789
|
-
|
|
65790
|
-
issueSummary?: Maybe<Scalars['String']['output']>;
|
|
65791
|
-
issueWebUrl?: Maybe<Scalars['String']['output']>;
|
|
65796
|
+
issue: WorkSuggestionsAutoDevJobJiraIssue;
|
|
65797
|
+
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
65792
65798
|
};
|
|
65793
65799
|
export declare type WorkSuggestionsAutoDevJobsPlanSuccessTask = WorkSuggestionsAutoDevJobTask & {
|
|
65794
65800
|
__typename?: 'WorkSuggestionsAutoDevJobsPlanSuccessTask';
|
|
@@ -65796,10 +65802,8 @@ export declare type WorkSuggestionsAutoDevJobsPlanSuccessTask = WorkSuggestionsA
|
|
|
65796
65802
|
autoDevPlanState?: Maybe<Scalars['String']['output']>;
|
|
65797
65803
|
autoDevState?: Maybe<WorkSuggestionsAutoDevJobState>;
|
|
65798
65804
|
id: Scalars['String']['output'];
|
|
65799
|
-
|
|
65800
|
-
|
|
65801
|
-
issueSummary?: Maybe<Scalars['String']['output']>;
|
|
65802
|
-
issueWebUrl?: Maybe<Scalars['String']['output']>;
|
|
65805
|
+
issue: WorkSuggestionsAutoDevJobJiraIssue;
|
|
65806
|
+
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
65803
65807
|
};
|
|
65804
65808
|
export declare type WorkSuggestionsBlockedIssue = {
|
|
65805
65809
|
__typename?: 'WorkSuggestionsBlockedIssue';
|