@forge/cli-shared 6.8.0-next.15-experimental-8477be1 → 6.8.0-next.15-experimental-beb5acf
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,6 +1,6 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
-
## 6.8.0-next.15-experimental-
|
|
3
|
+
## 6.8.0-next.15-experimental-beb5acf
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
- Updated dependencies [64daaa5]
|
|
31
31
|
- Updated dependencies [3a703de]
|
|
32
32
|
- Updated dependencies [003b1ed]
|
|
33
|
-
- @forge/manifest@8.9.0-next.8-experimental-
|
|
34
|
-
- @forge/i18n@0.0.5-next.0-experimental-
|
|
33
|
+
- @forge/manifest@8.9.0-next.8-experimental-beb5acf
|
|
34
|
+
- @forge/i18n@0.0.5-next.0-experimental-beb5acf
|
|
35
35
|
|
|
36
36
|
## 6.8.0-next.15
|
|
37
37
|
|
|
@@ -2619,32 +2619,6 @@ export declare type Author = {
|
|
|
2619
2619
|
id?: Maybe<Scalars['String']['output']>;
|
|
2620
2620
|
name?: Maybe<Scalars['String']['output']>;
|
|
2621
2621
|
};
|
|
2622
|
-
export declare type AutoSuggestionApi = {
|
|
2623
|
-
__typename?: 'AutoSuggestionAPI';
|
|
2624
|
-
suggest?: Maybe<AutoSuggestionNodes>;
|
|
2625
|
-
};
|
|
2626
|
-
export declare type AutoSuggestionApiSuggestArgs = {
|
|
2627
|
-
filters: AutoSuggestionFilters;
|
|
2628
|
-
limit: Scalars['Int']['input'];
|
|
2629
|
-
query?: InputMaybe<Scalars['String']['input']>;
|
|
2630
|
-
};
|
|
2631
|
-
export declare type AutoSuggestionFilters = {
|
|
2632
|
-
contextType: Scalars['String']['input'];
|
|
2633
|
-
organizationId: Scalars['String']['input'];
|
|
2634
|
-
principalId: Scalars['String']['input'];
|
|
2635
|
-
productKey: Scalars['String']['input'];
|
|
2636
|
-
siteId: Scalars['String']['input'];
|
|
2637
|
-
};
|
|
2638
|
-
export declare type AutoSuggestionNodes = {
|
|
2639
|
-
__typename?: 'AutoSuggestionNodes';
|
|
2640
|
-
nodes: Array<AutoSuggestionResult>;
|
|
2641
|
-
totalCount: Scalars['Int']['output'];
|
|
2642
|
-
};
|
|
2643
|
-
export declare type AutoSuggestionResult = {
|
|
2644
|
-
__typename?: 'AutoSuggestionResult';
|
|
2645
|
-
title: Scalars['String']['output'];
|
|
2646
|
-
type: Scalars['String']['output'];
|
|
2647
|
-
};
|
|
2648
2622
|
export declare type AuxEffectsInvocationPayload = {
|
|
2649
2623
|
config?: InputMaybe<Scalars['JSON']['input']>;
|
|
2650
2624
|
context: Scalars['JSON']['input'];
|
|
@@ -21953,6 +21927,7 @@ export declare type DevAiFlowSession = {
|
|
|
21953
21927
|
createdBy?: Maybe<Scalars['String']['output']>;
|
|
21954
21928
|
id: Scalars['ID']['output'];
|
|
21955
21929
|
issueARI?: Maybe<Scalars['ID']['output']>;
|
|
21930
|
+
jiraHost?: Maybe<Scalars['String']['output']>;
|
|
21956
21931
|
pipelines?: Maybe<Array<Maybe<DevAiFlowPipeline>>>;
|
|
21957
21932
|
repoUrl?: Maybe<Scalars['String']['output']>;
|
|
21958
21933
|
sessionARI: Scalars['ID']['output'];
|
|
@@ -77089,6 +77064,8 @@ export declare type Mutation = {
|
|
|
77089
77064
|
devOps?: Maybe<DevOpsMutation>;
|
|
77090
77065
|
devai_continueJobWithPrompt?: Maybe<DevAiAutodevContinueJobWithPromptPayload>;
|
|
77091
77066
|
devai_createTechnicalPlannerJob?: Maybe<DevAiCreateTechnicalPlannerJobPayload>;
|
|
77067
|
+
devai_flowCreate?: Maybe<DevAiFlowSession>;
|
|
77068
|
+
devai_flowSessionComplete?: Maybe<DevAiFlowSession>;
|
|
77092
77069
|
devai_flowSessionCreate?: Maybe<DevAiFlowSession>;
|
|
77093
77070
|
devai_invokeAutodevRovoAgent?: Maybe<DevAiInvokeAutodevRovoAgentPayload>;
|
|
77094
77071
|
devai_invokeAutodevRovoAgentInBulk?: Maybe<DevAiInvokeAutodevRovoAgentInBulkPayload>;
|
|
@@ -78336,6 +78313,16 @@ export declare type MutationDevai_CreateTechnicalPlannerJobArgs = {
|
|
|
78336
78313
|
repoUrl: Scalars['URL']['input'];
|
|
78337
78314
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
78338
78315
|
};
|
|
78316
|
+
export declare type MutationDevai_FlowCreateArgs = {
|
|
78317
|
+
cloudId: Scalars['String']['input'];
|
|
78318
|
+
createdBy: Scalars['String']['input'];
|
|
78319
|
+
issueARI?: InputMaybe<Scalars['ID']['input']>;
|
|
78320
|
+
jiraHost: Scalars['String']['input'];
|
|
78321
|
+
repoUrl: Scalars['URL']['input'];
|
|
78322
|
+
};
|
|
78323
|
+
export declare type MutationDevai_FlowSessionCompleteArgs = {
|
|
78324
|
+
id: Scalars['ID']['input'];
|
|
78325
|
+
};
|
|
78339
78326
|
export declare type MutationDevai_FlowSessionCreateArgs = {
|
|
78340
78327
|
cloudId: Scalars['String']['input'];
|
|
78341
78328
|
createdBy: Scalars['String']['input'];
|
|
@@ -82275,7 +82262,6 @@ export declare type Query = {
|
|
|
82275
82262
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
82276
82263
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
82277
82264
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
82278
|
-
suggestions?: Maybe<AutoSuggestionApi>;
|
|
82279
82265
|
team?: Maybe<TeamQuery>;
|
|
82280
82266
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
82281
82267
|
teamLabels?: Maybe<PaginatedLabelList>;
|