@forge/cli-shared 6.8.0-next.24 → 6.8.0-next.25
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
|
@@ -25644,6 +25644,11 @@ export declare type ExternalPosition = Node & {
|
|
|
25644
25644
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
25645
25645
|
url?: Maybe<Scalars['String']['output']>;
|
|
25646
25646
|
};
|
|
25647
|
+
export declare type ExternalProject = {
|
|
25648
|
+
__typename?: 'ExternalProject';
|
|
25649
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
25650
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
25651
|
+
};
|
|
25647
25652
|
export declare type ExternalProvider = {
|
|
25648
25653
|
__typename?: 'ExternalProvider';
|
|
25649
25654
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -25902,6 +25907,7 @@ export declare type ExternalWorkItem = Node & {
|
|
|
25902
25907
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
25903
25908
|
parent?: Maybe<ExternalEntity>;
|
|
25904
25909
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
25910
|
+
project?: Maybe<ExternalProject>;
|
|
25905
25911
|
provider?: Maybe<ExternalProvider>;
|
|
25906
25912
|
status?: Maybe<Scalars['String']['output']>;
|
|
25907
25913
|
subtype?: Maybe<ExternalWorkItemSubtype>;
|
|
@@ -54078,6 +54084,7 @@ export declare type JiraApplicationLink = {
|
|
|
54078
54084
|
isSystem?: Maybe<Scalars['Boolean']['output']>;
|
|
54079
54085
|
name?: Maybe<Scalars['String']['output']>;
|
|
54080
54086
|
rpcUrl?: Maybe<Scalars['URL']['output']>;
|
|
54087
|
+
targetType?: Maybe<JiraApplicationLinkTargetType>;
|
|
54081
54088
|
typeId?: Maybe<Scalars['String']['output']>;
|
|
54082
54089
|
userContext?: Maybe<JiraApplicationLinkUserContext>;
|
|
54083
54090
|
};
|
|
@@ -54092,6 +54099,10 @@ export declare type JiraApplicationLinkEdge = {
|
|
|
54092
54099
|
cursor: Scalars['String']['output'];
|
|
54093
54100
|
node?: Maybe<JiraApplicationLink>;
|
|
54094
54101
|
};
|
|
54102
|
+
export declare enum JiraApplicationLinkTargetType {
|
|
54103
|
+
Cloud = "CLOUD",
|
|
54104
|
+
Dc = "DC"
|
|
54105
|
+
}
|
|
54095
54106
|
export declare type JiraApplicationLinkUserContext = {
|
|
54096
54107
|
__typename?: 'JiraApplicationLinkUserContext';
|
|
54097
54108
|
authenticationUrl?: Maybe<Scalars['URL']['output']>;
|
|
@@ -60561,6 +60572,7 @@ export declare type JiraJourneyParentIssueValueType = JiraServiceManagementReque
|
|
|
60561
60572
|
export declare type JiraJourneySettings = {
|
|
60562
60573
|
__typename?: 'JiraJourneySettings';
|
|
60563
60574
|
maxJourneyItems?: Maybe<Scalars['Long']['output']>;
|
|
60575
|
+
maxJourneysPerProject?: Maybe<Scalars['Long']['output']>;
|
|
60564
60576
|
};
|
|
60565
60577
|
export declare enum JiraJourneyStatus {
|
|
60566
60578
|
Archived = "ARCHIVED",
|
|
@@ -64522,6 +64534,7 @@ export declare type JiraProjectsSidebarMenu = {
|
|
|
64522
64534
|
displayMode?: Maybe<JiraSidebarMenuDisplayMode>;
|
|
64523
64535
|
favouriteLimit?: Maybe<Scalars['Int']['output']>;
|
|
64524
64536
|
favourites?: Maybe<JiraProjectConnection>;
|
|
64537
|
+
hasMore?: Maybe<Scalars['Boolean']['output']>;
|
|
64525
64538
|
id: Scalars['ID']['output'];
|
|
64526
64539
|
more?: Maybe<JiraProjectConnection>;
|
|
64527
64540
|
moreFavourites?: Maybe<JiraProjectConnection>;
|
|
@@ -64592,6 +64605,7 @@ export declare type JiraQuery = {
|
|
|
64592
64605
|
allJiraUserBroadcastMessages?: Maybe<JiraUserBroadcastMessageConnection>;
|
|
64593
64606
|
allNotificationProjectPreferences?: Maybe<JiraNotificationProjectPreferenceConnection>;
|
|
64594
64607
|
announcementBanner?: Maybe<JiraAnnouncementBanner>;
|
|
64608
|
+
applicationLinkByOauth2ClientId?: Maybe<JiraApplicationLink>;
|
|
64595
64609
|
applicationLinksByTypeId?: Maybe<JiraApplicationLinkConnection>;
|
|
64596
64610
|
applicationPropertiesByKey?: Maybe<Array<JiraApplicationProperty>>;
|
|
64597
64611
|
associatedFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
@@ -64840,6 +64854,10 @@ export declare type JiraQueryAllNotificationProjectPreferencesArgs = {
|
|
|
64840
64854
|
export declare type JiraQueryAnnouncementBannerArgs = {
|
|
64841
64855
|
cloudId: Scalars['ID']['input'];
|
|
64842
64856
|
};
|
|
64857
|
+
export declare type JiraQueryApplicationLinkByOauth2ClientIdArgs = {
|
|
64858
|
+
cloudId: Scalars['ID']['input'];
|
|
64859
|
+
oauthClientId: Scalars['String']['input'];
|
|
64860
|
+
};
|
|
64843
64861
|
export declare type JiraQueryApplicationLinksByTypeIdArgs = {
|
|
64844
64862
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64845
64863
|
before?: InputMaybe<Scalars['String']['input']>;
|