npm package diff
Package: @forge/cli-shared
Versions: 6.4.0-next.5 - 6.4.0-next.6
File: package/out/graphql/graphql-types.d.ts
Index: package/out/graphql/graphql-types.d.ts
===================================================================
--- package/out/graphql/graphql-types.d.ts
+++ package/out/graphql/graphql-types.d.ts
@@ -4330,9 +4330,9 @@
__typename?: 'CompassComponentTypeEdge';
cursor: Scalars['String']['output'];
node?: Maybe<CompassComponentTypeObject>;
};
-export declare type CompassComponentTypeObject = {
+export declare type CompassComponentTypeObject = Node & {
__typename?: 'CompassComponentTypeObject';
componentCount?: Maybe<Scalars['Int']['output']>;
description?: Maybe<Scalars['String']['output']>;
fieldDefinitions?: Maybe<CompassFieldDefinitionsResult>;
@@ -5806,9 +5806,9 @@
cloudId: Scalars['ID']['input'];
first?: InputMaybe<Scalars['Int']['input']>;
};
export declare type CompassMetricDefinitionsQueryResult = CompassMetricDefinitionsConnection | QueryError;
-export declare type CompassMetricSource = {
+export declare type CompassMetricSource = Node & {
__typename?: 'CompassMetricSource';
component?: Maybe<CompassComponent>;
derivedFrom?: Maybe<Array<EventSource>>;
externalMetricSourceId?: Maybe<Scalars['ID']['output']>;
@@ -15009,13 +15009,15 @@
body: Scalars['JSON']['output'];
createdAt?: Maybe<Scalars['String']['output']>;
featuredImage?: Maybe<ContentPlatformIpmCompImage>;
id: Scalars['String']['output'];
+ ipmNumber: Scalars['String']['output'];
primaryButton: ContentPlatformIpmComponentLinkButtonAndIpmComponentGsacButtonUnion;
secondaryButton?: Maybe<ContentPlatformIpmComponentRemindMeLater>;
title: Scalars['String']['output'];
trigger: ContentPlatformIpmTrigger;
updatedAt?: Maybe<Scalars['String']['output']>;
+ variant: Scalars['String']['output'];
};
export declare type ContentPlatformIpmInlineDialogResultEdge = {
__typename?: 'ContentPlatformIpmInlineDialogResultEdge';
cursor: Scalars['String']['output'];
@@ -44073,8 +44075,9 @@
license?: Maybe<JiraForgeExtensionLicense>;
properties: Scalars['JSON']['output'];
scopes: Array<Scalars['String']['output']>;
type: Scalars['String']['output'];
+ userAccess?: Maybe<JiraUserAppAccess>;
};
export declare type JiraForgeExtensionLicense = {
__typename?: 'JiraForgeExtensionLicense';
active: Scalars['Boolean']['output'];
@@ -45508,8 +45511,9 @@
};
export declare enum JiraIssueItemSystemContainerType {
Content = "CONTENT",
Context = "CONTEXT",
+ CustomerContext = "CUSTOMER_CONTEXT",
HiddenItems = "HIDDEN_ITEMS",
Primary = "PRIMARY",
Request = "REQUEST",
RequestPortal = "REQUEST_PORTAL",
@@ -54285,8 +54289,12 @@
avatarUrl?: Maybe<Scalars['String']['output']>;
displayName?: Maybe<Scalars['String']['output']>;
email?: Maybe<Scalars['String']['output']>;
};
+export declare type JiraUserAppAccess = {
+ __typename?: 'JiraUserAppAccess';
+ hasAccess: Scalars['Boolean']['output'];
+};
export declare type JiraUserBroadcastMessage = Node & {
__typename?: 'JiraUserBroadcastMessage';
id: Scalars['ID']['output'];
isDismissed?: Maybe<Scalars['Boolean']['output']>;
@@ -60576,9 +60584,9 @@
polaris?: Maybe<PolarisMutationNamespace>;
polarisAddReaction?: Maybe<PolarisAddReactionPayload>;
polarisDeleteReaction?: Maybe<PolarisDeleteReactionPayload>;
publishReleaseNote: ContentPlatformReleaseNote;
- radar_updateFocusAreaMappings: RadarMutationResponse;
+ radar_updateFocusAreaMappings?: Maybe<RadarMutationResponse>;
rankCardParent?: Maybe<GenericMutationResponse>;
rankColumn?: Maybe<RankColumnOutput>;
rankCustomFilter?: Maybe<GenericMutationResponse>;
rateLimitTest?: Maybe<GenericMutationResponse>;
@@ -63561,10 +63569,10 @@
pricing?: Maybe<ContentPlatformPricing>;
pricings: ContentPlatformPricingSearchConnection;
productListing?: Maybe<ProductListingResult>;
productListings: Array<ProductListingResult>;
- radar_fieldValues: RadarFieldValuesConnectionResult;
- radar_positions: RadarPositionConnectionResult;
+ radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
+ radar_positions?: Maybe<RadarPositionConnection>;
radar_workspace: RadarWorkspace;
releaseNote?: Maybe<ContentPlatformReleaseNote>;
releaseNotes: ContentPlatformReleaseNotesConnection;
repositoryRelationshipsForDevOpsService?: Maybe<DevOpsServiceAndRepositoryRelationshipConnection>;
@@ -65137,32 +65145,17 @@
export declare type RadarEdge = {
cursor: Scalars['String']['output'];
};
export declare type RadarEntity = {
- fieldValues?: Maybe<Array<Maybe<RadarFieldValueIdPair>>>;
+ fieldValues: Array<RadarFieldValueIdPair>;
id: Scalars['ID']['output'];
type?: Maybe<RadarEntityType>;
};
export declare enum RadarEntityType {
FocusArea = "focusArea",
Person = "person",
Position = "position"
}
-export declare type RadarError = {
- __typename?: 'RadarError';
- errorCode: Scalars['String']['output'];
- errorType?: Maybe<Scalars['String']['output']>;
- extensions?: Maybe<Array<RadarErrorExtension>>;
- location?: Maybe<Array<RadarLocation>>;
- message?: Maybe<Scalars['String']['output']>;
- stackTrace?: Maybe<Array<Scalars['String']['output']>>;
- statusCode?: Maybe<Scalars['Int']['output']>;
-};
-export declare type RadarErrorExtension = {
- __typename?: 'RadarErrorExtension';
- property: Scalars['String']['output'];
- value?: Maybe<Scalars['String']['output']>;
-};
export declare type RadarFieldDefinition = Node & {
__typename?: 'RadarFieldDefinition';
displayName: Scalars['String']['output'];
entity: RadarEntityType;
@@ -65193,19 +65186,8 @@
nodes?: Maybe<Array<RadarFieldValue>>;
pageInfo: PageInfo;
totalCount: Scalars['Int']['output'];
};
-export declare type RadarFieldValuesConnectionResult = {
- __typename?: 'RadarFieldValuesConnectionResult';
- errors?: Maybe<Array<RadarError>>;
- result?: Maybe<RadarFieldValuesConnection>;
-};
-export declare type RadarFieldValuesConnectionResultResultArgs = {
- after?: InputMaybe<Scalars['String']['input']>;
- before?: InputMaybe<Scalars['String']['input']>;
- first?: InputMaybe<Scalars['Int']['input']>;
- last?: InputMaybe<Scalars['Int']['input']>;
-};
export declare type RadarFieldValuesEdge = RadarEdge & {
__typename?: 'RadarFieldValuesEdge';
cursor: Scalars['String']['output'];
node: RadarFieldValue;
@@ -65238,16 +65220,10 @@
export declare type RadarFocusAreaMappingsInput = {
focusAreaAri: Scalars['ID']['input'];
positionId: Scalars['ID']['input'];
};
-export declare type RadarLocation = {
- __typename?: 'RadarLocation';
- column: Scalars['Int']['output'];
- line: Scalars['Int']['output'];
-};
export declare type RadarMutationResponse = {
__typename?: 'RadarMutationResponse';
- errors?: Maybe<Array<RadarError>>;
success?: Maybe<Scalars['Boolean']['output']>;
};
export declare type RadarNumericFieldValue = {
__typename?: 'RadarNumericFieldValue';
@@ -65255,9 +65231,9 @@
value?: Maybe<Scalars['Int']['output']>;
};
export declare type RadarPosition = Node & RadarEntity & {
__typename?: 'RadarPosition';
- fieldValues?: Maybe<Array<Maybe<RadarFieldValueIdPair>>>;
+ fieldValues: Array<RadarFieldValueIdPair>;
id: Scalars['ID']['output'];
type?: Maybe<RadarEntityType>;
};
export declare type RadarPositionConnection = RadarConnection & {
@@ -65266,19 +65242,8 @@
nodes?: Maybe<Array<RadarPosition>>;
pageInfo: PageInfo;
totalCount: Scalars['Int']['output'];
};
-export declare type RadarPositionConnectionResult = {
- __typename?: 'RadarPositionConnectionResult';
- errors?: Maybe<Array<RadarError>>;
- result?: Maybe<RadarPositionConnection>;
-};
-export declare type RadarPositionConnectionResultResultArgs = {
- after?: InputMaybe<Scalars['String']['input']>;
- before?: InputMaybe<Scalars['String']['input']>;
- first?: InputMaybe<Scalars['Int']['input']>;
- last?: InputMaybe<Scalars['Int']['input']>;
-};
export declare type RadarPositionEdge = RadarEdge & {
__typename?: 'RadarPositionEdge';
cursor: Scalars['String']['output'];
node: RadarPosition;
@@ -72186,8 +72151,10 @@
member?: Maybe<TrelloMember>;
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
plannerByWorkspaceId?: Maybe<TrelloPlanner>;
plannerCalendarAccountById?: Maybe<TrelloPlannerCalendarAccount>;
+ plannerCalendarById?: Maybe<TrelloPlannerCalendar>;
+ plannerCalendarEventById?: Maybe<TrelloPlannerCalendarEvent>;
plannerCalendarEventsByCalendarId?: Maybe<TrelloPlannerCalendarEventConnection>;
providerPlannerCalendarsByAccountId?: Maybe<TrelloPlannerProviderCalendarConnection>;
recentBoardsByIds?: Maybe<Array<Maybe<TrelloBoard>>>;
templateCategories?: Maybe<Array<TrelloTemplateGalleryCategory>>;
@@ -72241,8 +72208,17 @@
export declare type TrelloQueryApiPlannerCalendarAccountByIdArgs = {
id: Scalars['ID']['input'];
workspaceId: Scalars['ID']['input'];
};
+export declare type TrelloQueryApiPlannerCalendarByIdArgs = {
+ id: Scalars['ID']['input'];
+ providerAccountId: Scalars['ID']['input'];
+};
+export declare type TrelloQueryApiPlannerCalendarEventByIdArgs = {
+ id: Scalars['ID']['input'];
+ plannerCalendarId: Scalars['ID']['input'];
+ providerAccountId: Scalars['ID']['input'];
+};
export declare type TrelloQueryApiPlannerCalendarEventsByCalendarIdArgs = {
accountId: Scalars['ID']['input'];
after?: InputMaybe<Scalars['String']['input']>;
filter?: InputMaybe<TrelloPlannerCalendarEventsFilter>;
@@ -72586,8 +72562,25 @@
id: Scalars['ID']['output'];
linkedAccount?: Maybe<UnifiedLinkedAccount>;
parentAccount?: Maybe<UnifiedParentAccount>;
};
+export declare type UnifiedAccount2 = UnifiedINode & {
+ __typename?: 'UnifiedAccount2';
+ aaid?: Maybe<Scalars['String']['output']>;
+ id: Scalars['ID']['output'];
+ internalId?: Maybe<Scalars['String']['output']>;
+ isLinked?: Maybe<Scalars['Boolean']['output']>;
+ isManaged?: Maybe<Scalars['Boolean']['output']>;
+ isPrimary?: Maybe<Scalars['Boolean']['output']>;
+ linkedAccounts?: Maybe<UnifiedULinkedAccount2Result>;
+};
+export declare type UnifiedAccountDetails = UnifiedINode & {
+ __typename?: 'UnifiedAccountDetails';
+ aaid?: Maybe<Scalars['String']['output']>;
+ emailId?: Maybe<Scalars['String']['output']>;
+ id: Scalars['ID']['output'];
+ orgId?: Maybe<Scalars['String']['output']>;
+};
export declare type UnifiedAdmins = UnifiedINode & {
__typename?: 'UnifiedAdmins';
admins?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
id: Scalars['ID']['output'];
@@ -72858,8 +72851,13 @@
__typename?: 'UnifiedLearningCertificationEdge';
cursor?: Maybe<Scalars['String']['output']>;
node?: Maybe<UnifiedLearningCertification>;
};
+export declare type UnifiedLinkTransaction = {
+ __typename?: 'UnifiedLinkTransaction';
+ id: Scalars['ID']['output'];
+ transactionId?: Maybe<Scalars['String']['output']>;
+};
export declare type UnifiedLinkedAccount = UnifiedINode & {
__typename?: 'UnifiedLinkedAccount';
aaid?: Maybe<Scalars['String']['output']>;
connectedProductsReferenceId?: Maybe<Scalars['String']['output']>;
@@ -72869,20 +72867,49 @@
learning?: Maybe<UnifiedULearningResult>;
linkedAccountInternalId?: Maybe<Scalars['ID']['output']>;
parentAccountInternalId?: Maybe<Scalars['ID']['output']>;
};
+export declare type UnifiedLinkedAccount2Connection = UnifiedIConnection & {
+ __typename?: 'UnifiedLinkedAccount2Connection';
+ edges?: Maybe<Array<Maybe<UnifiedLinkedAccount2Edge>>>;
+ pageInfo: UnifiedPageInfo;
+ totalCount?: Maybe<Scalars['Int']['output']>;
+};
+export declare type UnifiedLinkedAccount2Edge = UnifiedIEdge & {
+ __typename?: 'UnifiedLinkedAccount2Edge';
+ cursor?: Maybe<Scalars['String']['output']>;
+ node?: Maybe<UnifiedAccount2>;
+};
export declare type UnifiedLinkedAccountPayload = UnifiedPayload & {
__typename?: 'UnifiedLinkedAccountPayload';
errors?: Maybe<Array<UnifiedMutationError>>;
success: Scalars['Boolean']['output'];
unifiedLinkedAccount?: Maybe<UnifiedLinkedAccount>;
};
+export declare type UnifiedLinkingMutation = {
+ __typename?: 'UnifiedLinkingMutation';
+ authenticateTransaction?: Maybe<UnifiedULinkTransactionResult>;
+ completeTransaction?: Maybe<UnifiedULinkTransactionResult>;
+ initializeTransaction?: Maybe<UnifiedULinkTransactionResult>;
+};
+export declare type UnifiedLinkingMutationAuthenticateTransactionArgs = {
+ isLoggedInPrimary?: InputMaybe<Scalars['Boolean']['input']>;
+ token: Scalars['String']['input'];
+};
+export declare type UnifiedLinkingMutationCompleteTransactionArgs = {
+ token: Scalars['String']['input'];
+};
+export declare type UnifiedLinkingMutationInitializeTransactionArgs = {
+ account2Aaid?: InputMaybe<Scalars['String']['input']>;
+ primaryAccountType?: InputMaybe<UnifiedPrimaryAccountType>;
+};
export declare type UnifiedMutation = {
__typename?: 'UnifiedMutation';
createLinkedAccount?: Maybe<UnifiedLinkedAccountPayload>;
createParentAccount?: Maybe<UnifiedParentAccountPayload>;
createUnifiedSystem?: Maybe<UnifiedProfilePayload>;
gating?: Maybe<UnifiedGatingMutation>;
+ linking?: Maybe<UnifiedLinkingMutation>;
updateUnifiedProfile?: Maybe<UnifiedProfilePayload>;
};
export declare type UnifiedMutationCreateLinkedAccountArgs = {
aaid: Scalars['String']['input'];
@@ -72932,8 +72959,12 @@
export declare type UnifiedPayload = {
errors?: Maybe<Array<UnifiedMutationError>>;
success: Scalars['Boolean']['output'];
};
+export declare enum UnifiedPrimaryAccountType {
+ Input = "INPUT",
+ LoggedIn = "LOGGED_IN"
+}
export declare type UnifiedProfile = UnifiedINode & {
__typename?: 'UnifiedProfile';
badges?: Maybe<UnifiedUProfileBadgesResult>;
bio?: Maybe<Scalars['String']['output']>;
@@ -73006,16 +73037,25 @@
unifiedProfile?: Maybe<UnifiedProfile>;
};
export declare type UnifiedQuery = {
__typename?: 'UnifiedQuery';
+ account?: Maybe<UnifiedUAccount2Result>;
+ accountDetails?: Maybe<UnifiedUAccountDetailsResult>;
atlassianProducts?: Maybe<UnifiedUAtlassianProductResult>;
gating?: Maybe<UnifiedGatingQuery>;
node?: Maybe<UnifiedINode>;
unifiedAccount?: Maybe<UnifiedUAccountResult>;
unifiedAccounts?: Maybe<Array<Maybe<UnifiedUAccountResult>>>;
unifiedProfile?: Maybe<UnifiedUProfileResult>;
unifiedProfiles?: Maybe<Array<Maybe<UnifiedUProfileResult>>>;
};
+export declare type UnifiedQueryAccountArgs = {
+ aaid?: InputMaybe<Scalars['String']['input']>;
+};
+export declare type UnifiedQueryAccountDetailsArgs = {
+ aaid?: InputMaybe<Scalars['String']['input']>;
+ emailId?: InputMaybe<Scalars['String']['input']>;
+};
export declare type UnifiedQueryAtlassianProductsArgs = {
after?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
};
@@ -73057,8 +73097,10 @@
__typename?: 'UnifiedRecentCourseEdge';
cursor?: Maybe<Scalars['String']['output']>;
node?: Maybe<UnifiedRecentCourse>;
};
+export declare type UnifiedUAccount2Result = UnifiedAccount2 | UnifiedQueryError;
+export declare type UnifiedUAccountDetailsResult = UnifiedAccountDetails | UnifiedQueryError;
export declare type UnifiedUAccountResult = UnifiedAccount | UnifiedQueryError;
export declare type UnifiedUAdminsResult = UnifiedAdmins | UnifiedQueryError;
export declare type UnifiedUAllowListResult = UnifiedAllowList | UnifiedQueryError;
export declare type UnifiedUAtlassianProductResult = UnifiedAtlassianProductConnection | UnifiedQueryError;
@@ -73072,8 +73114,10 @@
export declare type UnifiedUGamificationResult = UnifiedGamification | UnifiedQueryError;
export declare type UnifiedUGatingStatusResult = UnifiedAccessStatus | UnifiedQueryError;
export declare type UnifiedULearningCertificationResult = UnifiedLearningCertificationConnection | UnifiedQueryError;
export declare type UnifiedULearningResult = UnifiedLearning | UnifiedQueryError;
+export declare type UnifiedULinkTransactionResult = UnifiedLinkTransaction | UnifiedQueryError;
+export declare type UnifiedULinkedAccount2Result = UnifiedLinkedAccount2Connection | UnifiedQueryError;
export declare type UnifiedUProfileBadgesResult = UnifiedProfileBadgesConnection | UnifiedQueryError;
export declare type UnifiedUProfileResult = UnifiedProfile | UnifiedQueryError;
export declare type UnifiedURecentCourseResult = UnifiedQueryError | UnifiedRecentCourseConnection;
export declare type UnlinkExternalSourceInput = {