@forge/cli-shared 8.2.0-next.15 → 8.2.0-next.16
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
|
@@ -14413,6 +14413,7 @@ export declare type Content = {
|
|
|
14413
14413
|
archivedContentMetadata?: Maybe<ArchivedContentMetadata>;
|
|
14414
14414
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
14415
14415
|
attachments?: Maybe<PaginatedContentList>;
|
|
14416
|
+
base64EncodedAri?: Maybe<Scalars['ID']['output']>;
|
|
14416
14417
|
blank: Scalars['Boolean']['output'];
|
|
14417
14418
|
body?: Maybe<ContentBodyPerRepresentation>;
|
|
14418
14419
|
childTypes?: Maybe<ChildContentTypesAvailable>;
|
|
@@ -19958,7 +19959,7 @@ export declare type DevAiRovoDevRepositoryInput = {
|
|
|
19958
19959
|
targetBranch?: InputMaybe<Scalars['String']['input']>;
|
|
19959
19960
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
19960
19961
|
};
|
|
19961
|
-
export declare type DevAiRovoDevSession = {
|
|
19962
|
+
export declare type DevAiRovoDevSession = Node & {
|
|
19962
19963
|
__typename?: 'DevAiRovoDevSession';
|
|
19963
19964
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
19964
19965
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -52615,7 +52616,7 @@ export declare type HelpObjectStoreSupportSiteArticleSearchInput = {
|
|
|
52615
52616
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
52616
52617
|
topLevelArticlesOnly?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52617
52618
|
};
|
|
52618
|
-
export declare type HelpObjectStoreSupportSiteArticleSearchResponse =
|
|
52619
|
+
export declare type HelpObjectStoreSupportSiteArticleSearchResponse = HelpObjectStoreSupportSiteArticleSearchResult | QueryError;
|
|
52619
52620
|
export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
|
|
52620
52621
|
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResult';
|
|
52621
52622
|
ancestors?: Maybe<Array<HelpObjectStoreArticleRelative>>;
|
|
@@ -52630,14 +52631,14 @@ export declare type HelpObjectStoreSupportSiteArticleSearchResult = {
|
|
|
52630
52631
|
};
|
|
52631
52632
|
export declare type HelpObjectStoreSupportSiteArticleSearchResultConnection = {
|
|
52632
52633
|
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultConnection';
|
|
52633
|
-
edges?: Maybe<Array<HelpObjectStoreSupportSiteArticleSearchResultEdge
|
|
52634
|
-
nodes?: Maybe<Array<
|
|
52634
|
+
edges?: Maybe<Array<Maybe<HelpObjectStoreSupportSiteArticleSearchResultEdge>>>;
|
|
52635
|
+
nodes?: Maybe<Array<Maybe<HelpObjectStoreSupportSiteArticleSearchResponse>>>;
|
|
52635
52636
|
pageInfo: PageInfo;
|
|
52636
52637
|
};
|
|
52637
52638
|
export declare type HelpObjectStoreSupportSiteArticleSearchResultEdge = {
|
|
52638
52639
|
__typename?: 'HelpObjectStoreSupportSiteArticleSearchResultEdge';
|
|
52639
52640
|
cursor: Scalars['String']['output'];
|
|
52640
|
-
node
|
|
52641
|
+
node?: Maybe<HelpObjectStoreSupportSiteArticleSearchResponse>;
|
|
52641
52642
|
};
|
|
52642
52643
|
export declare type History = {
|
|
52643
52644
|
__typename?: 'History';
|
|
@@ -63538,6 +63539,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
63538
63539
|
Requests = "REQUESTS",
|
|
63539
63540
|
Security = "SECURITY",
|
|
63540
63541
|
Shortcuts = "SHORTCUTS",
|
|
63542
|
+
Staffing = "STAFFING",
|
|
63541
63543
|
Summary = "SUMMARY",
|
|
63542
63544
|
Teams = "TEAMS",
|
|
63543
63545
|
Timeline = "TIMELINE"
|
|
@@ -85432,6 +85434,7 @@ export declare type Query = {
|
|
|
85432
85434
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
85433
85435
|
devai_rovodevSessionById?: Maybe<DevAiRovoDevSession>;
|
|
85434
85436
|
devai_rovodevSessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
85437
|
+
devai_rovodevSessionsByAri?: Maybe<Array<DevAiRovoDevSession>>;
|
|
85435
85438
|
devai_technicalPlannerJobById?: Maybe<DevAiTechnicalPlannerJob>;
|
|
85436
85439
|
devai_technicalPlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
85437
85440
|
developerLogAccess?: Maybe<Array<Maybe<DeveloperLogAccessResult>>>;
|
|
@@ -85503,7 +85506,7 @@ export declare type Query = {
|
|
|
85503
85506
|
helpLayout?: Maybe<HelpLayoutQueryApi>;
|
|
85504
85507
|
helpObjectStore?: Maybe<HelpObjectStoreQueryApi>;
|
|
85505
85508
|
helpObjectStore_searchArticles?: Maybe<HelpObjectStoreArticleSearchResponse>;
|
|
85506
|
-
helpObjectStore_searchArticlesForSupportSite?: Maybe<
|
|
85509
|
+
helpObjectStore_searchArticlesForSupportSite?: Maybe<HelpObjectStoreSupportSiteArticleSearchResultConnection>;
|
|
85507
85510
|
helpObjectStore_searchPortals?: Maybe<HelpObjectStorePortalSearchResponse>;
|
|
85508
85511
|
helpObjectStore_searchRequestTypes?: Maybe<HelpObjectStoreRequestTypeSearchResponse>;
|
|
85509
85512
|
homeUserSettings?: Maybe<HomeUserSettings>;
|
|
@@ -86887,6 +86890,9 @@ export declare type QueryDevai_RovodevSessionsArgs = {
|
|
|
86887
86890
|
sessionStatus?: InputMaybe<DevAiRovoDevSessionStatus>;
|
|
86888
86891
|
workspaceAri: Scalars['ID']['input'];
|
|
86889
86892
|
};
|
|
86893
|
+
export declare type QueryDevai_RovodevSessionsByAriArgs = {
|
|
86894
|
+
sessionAris: Array<Scalars['ID']['input']>;
|
|
86895
|
+
};
|
|
86890
86896
|
export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
|
|
86891
86897
|
cloudId: Scalars['ID']['input'];
|
|
86892
86898
|
jobId: Scalars['ID']['input'];
|
|
@@ -92062,6 +92068,7 @@ export declare type ShepherdClassification = {
|
|
|
92062
92068
|
orgId: Scalars['ID']['output'];
|
|
92063
92069
|
sensitivity: Scalars['Int']['output'];
|
|
92064
92070
|
status: ShepherdClassificationStatus;
|
|
92071
|
+
tagColor?: Maybe<Scalars['String']['output']>;
|
|
92065
92072
|
};
|
|
92066
92073
|
export declare type ShepherdClassificationEdge = {
|
|
92067
92074
|
__typename?: 'ShepherdClassificationEdge';
|
|
@@ -99418,8 +99425,10 @@ export declare type TrelloMutationApiWatchCardArgs = {
|
|
|
99418
99425
|
};
|
|
99419
99426
|
export declare type TrelloOAuth2Client = {
|
|
99420
99427
|
__typename?: 'TrelloOAuth2Client';
|
|
99428
|
+
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
99421
99429
|
clientId: Scalars['String']['output'];
|
|
99422
99430
|
clientSecret: Scalars['String']['output'];
|
|
99431
|
+
profile: Scalars['String']['output'];
|
|
99423
99432
|
scopes?: Maybe<Array<TrelloOAuth2Scope>>;
|
|
99424
99433
|
};
|
|
99425
99434
|
export declare type TrelloOAuth2Scope = {
|