npm package diff

Package: @forge/cli-shared

Versions: 6.8.0-next.5-experimental-c9be087 - 6.8.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
@@ -5273,8 +5273,9 @@
     links?: Maybe<Array<CompassLink>>;
     metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
     name: Scalars['String']['output'];
     ownerId?: Maybe<Scalars['ID']['output']>;
+    packageDependencies?: Maybe<CompassComponentPackageDependencyConnection>;
     relationships?: Maybe<CompassRelationshipConnectionResult>;
     scorecardScore?: Maybe<CompassScorecardScore>;
     scorecardScores?: Maybe<Array<CompassScorecardScore>>;
     scorecards?: Maybe<Array<CompassScorecard>>;
@@ -5300,8 +5301,12 @@
 };
 export declare type CompassComponentMetricSourcesArgs = {
     query?: InputMaybe<CompassComponentMetricSourcesQuery>;
 };
+export declare type CompassComponentPackageDependenciesArgs = {
+    after?: InputMaybe<Scalars['String']['input']>;
+    first?: InputMaybe<Scalars['Int']['input']>;
+};
 export declare type CompassComponentRelationshipsArgs = {
     query?: InputMaybe<CompassRelationshipQuery>;
 };
 export declare type CompassComponentScorecardScoreArgs = {
@@ -5531,8 +5536,43 @@
     after?: InputMaybe<Scalars['String']['input']>;
     first?: InputMaybe<Scalars['Int']['input']>;
 };
 export declare type CompassComponentMetricSourcesQueryResult = CompassComponentMetricSourcesConnection | QueryError;
+export declare type CompassComponentPackageDependencyConnection = {
+    __typename?: 'CompassComponentPackageDependencyConnection';
+    edges?: Maybe<Array<CompassComponentPackageDependencyEdge>>;
+    nodes?: Maybe<Array<CompassPackage>>;
+    pageInfo?: Maybe<PageInfo>;
+    totalCount?: Maybe<Scalars['Int']['output']>;
+};
+export declare type CompassComponentPackageDependencyEdge = {
+    __typename?: 'CompassComponentPackageDependencyEdge';
+    changeMetadata?: Maybe<CompassChangeMetadata>;
+    cursor?: Maybe<Scalars['String']['output']>;
+    node?: Maybe<CompassPackage>;
+    versionsBySource?: Maybe<CompassComponentPackageDependencyVersionsBySourceConnection>;
+};
+export declare type CompassComponentPackageDependencyEdgeVersionsBySourceArgs = {
+    after?: InputMaybe<Scalars['String']['input']>;
+    first?: InputMaybe<Scalars['Int']['input']>;
+};
+export declare type CompassComponentPackageDependencyVersionsBySourceConnection = {
+    __typename?: 'CompassComponentPackageDependencyVersionsBySourceConnection';
+    edges?: Maybe<Array<CompassComponentPackageDependencyVersionsBySourceEdge>>;
+    nodes?: Maybe<Array<CompassComponentPackageVersionsBySource>>;
+    pageInfo?: Maybe<PageInfo>;
+};
+export declare type CompassComponentPackageDependencyVersionsBySourceEdge = {
+    __typename?: 'CompassComponentPackageDependencyVersionsBySourceEdge';
+    cursor?: Maybe<Scalars['String']['output']>;
+    node?: Maybe<CompassComponentPackageVersionsBySource>;
+};
+export declare type CompassComponentPackageVersionsBySource = {
+    __typename?: 'CompassComponentPackageVersionsBySource';
+    dependentOnVersions?: Maybe<Array<Scalars['String']['output']>>;
+    sourceId?: Maybe<Scalars['String']['output']>;
+    sourceUrl?: Maybe<Scalars['String']['output']>;
+};
 export declare type CompassComponentQueryResult = CompassSearchComponentConnection | QueryError;
 export declare type CompassComponentResult = CompassComponent | QueryError;
 export declare type CompassComponentScorecardJiraIssueConnection = {
     __typename?: 'CompassComponentScorecardJiraIssueConnection';
@@ -7433,8 +7473,13 @@
     __typename?: 'CompassMetricValuesTimeseries';
     values?: Maybe<Array<Maybe<CompassMetricValue>>>;
 };
 export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTimeseries | QueryError;
+export declare type CompassPackage = {
+    __typename?: 'CompassPackage';
+    id: Scalars['ID']['output'];
+    packageName: Scalars['String']['output'];
+};
 export declare type CompassPermissionResult = {
     __typename?: 'CompassPermissionResult';
     allowed: Scalars['Boolean']['output'];
     denialReasons: Array<Scalars['String']['output']>;
@@ -9016,8 +9061,9 @@
     date?: Maybe<Scalars['String']['output']>;
     link?: Maybe<Scalars['String']['output']>;
     reportId?: Maybe<Scalars['ID']['output']>;
     requesterId?: Maybe<Scalars['ID']['output']>;
+    user?: Maybe<AtlassianUser>;
 };
 export declare type ConfluenceAdminReportPayload = {
     __typename?: 'ConfluenceAdminReportPayload';
     errors?: Maybe<Array<MutationError>>;
@@ -17111,9 +17157,11 @@
     lastVersionViewed: Scalars['Int']['output'];
     lastVersionViewedNumber?: Maybe<Scalars['Int']['output']>;
     lastVersionViewedUrl?: Maybe<Scalars['String']['output']>;
     lastViewedAt: Scalars['String']['output'];
+    user?: Maybe<AtlassianUser>;
     userId: Scalars['ID']['output'];
+    userProfile?: Maybe<AtlassianUser>;
     views: Scalars['Int']['output'];
 };
 export declare type ContentAnalyticsTotalViewsByPage = {
     __typename?: 'ContentAnalyticsTotalViewsByPage';
@@ -18953,8 +19001,9 @@
 };
 export declare type CountGroupByUserItem = {
     __typename?: 'CountGroupByUserItem';
     count: Scalars['Int']['output'];
+    user?: Maybe<AtlassianUser>;
     userId: Scalars['String']['output'];
 };
 export declare type CountUsersGroupByPage = {
     __typename?: 'CountUsersGroupByPage';
@@ -20782,8 +20831,37 @@
     name: Scalars['String']['output'];
     picture: Scalars['URL']['output'];
     zoneinfo?: Maybe<Scalars['String']['output']>;
 };
+export declare type DailyToplineTrendSeries = {
+    __typename?: 'DailyToplineTrendSeries';
+    cohortType: Scalars['String']['output'];
+    cohortValue: Scalars['String']['output'];
+    data: Array<DailyToplineTrendSeriesData>;
+    env: GlanceEnvironment;
+    goals: Array<ExperienceToplineGoal>;
+    id: Scalars['ID']['output'];
+    metric: Scalars['String']['output'];
+    missingDays?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
+    pageLoadType?: Maybe<PageLoadType>;
+    percentile: Scalars['Int']['output'];
+};
+export declare type DailyToplineTrendSeriesData = {
+    __typename?: 'DailyToplineTrendSeriesData';
+    aggregatedAt?: Maybe<Scalars['DateTime']['output']>;
+    approxVolumePercentage?: Maybe<Scalars['Float']['output']>;
+    count: Scalars['Int']['output'];
+    day: Scalars['Date']['output'];
+    id: Scalars['ID']['output'];
+    isPartialDayAggregation?: Maybe<Scalars['Boolean']['output']>;
+    overrideAt?: Maybe<Scalars['DateTime']['output']>;
+    overrideSourceName?: Maybe<Scalars['String']['output']>;
+    overrideUserId?: Maybe<Scalars['String']['output']>;
+    projectedValueEod?: Maybe<Scalars['Float']['output']>;
+    projectedValueHigh?: Maybe<Scalars['Float']['output']>;
+    projectedValueLow?: Maybe<Scalars['Float']['output']>;
+    value: Scalars['Float']['output'];
+};
 export declare type DataAccessAndStorage = {
     __typename?: 'DataAccessAndStorage';
     appProcessEUDOutsideAtlassian?: Maybe<Scalars['Boolean']['output']>;
     appStoresEUDOutsideAtlassian?: Maybe<Scalars['Boolean']['output']>;
@@ -20886,8 +20964,9 @@
 export declare type DeactivatedUserPageCountEntity = {
     __typename?: 'DeactivatedUserPageCountEntity';
     accountId?: Maybe<Scalars['ID']['output']>;
     pageCount?: Maybe<Scalars['Int']['output']>;
+    user?: Maybe<AtlassianUser>;
 };
 export declare type DeactivatedUserPageCountEntityEdge = {
     __typename?: 'DeactivatedUserPageCountEntityEdge';
     cursor?: Maybe<Scalars['String']['output']>;
@@ -24250,8 +24329,49 @@
     __typename?: 'EventTimeseriesCTRItems';
     ctr: Scalars['Float']['output'];
     timestamp: Scalars['String']['output'];
 };
+export declare type Experience = {
+    __typename?: 'Experience';
+    dailyToplineTrend: Array<DailyToplineTrendSeries>;
+    experienceEventType: ExperienceEventType;
+    experienceKey: Scalars['String']['output'];
+    experienceLink: Scalars['String']['output'];
+    id: Scalars['ID']['output'];
+    name: Scalars['String']['output'];
+    product: Product;
+};
+export declare type ExperienceDailyToplineTrendArgs = {
+    cohortType?: InputMaybe<Scalars['String']['input']>;
+    cohortTypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
+    cohortValue?: InputMaybe<Scalars['String']['input']>;
+    dateFrom: Scalars['Date']['input'];
+    dateTo: Scalars['Date']['input'];
+    env: GlanceEnvironment;
+    metric: Scalars['String']['input'];
+    pageLoadType?: InputMaybe<PageLoadType>;
+    percentile: Scalars['Int']['input'];
+};
+export declare enum ExperienceEventType {
+    Custom = "CUSTOM",
+    Database = "DATABASE",
+    InlineResult = "INLINE_RESULT",
+    PageLoad = "PAGE_LOAD",
+    PageSegmentLoad = "PAGE_SEGMENT_LOAD",
+    WebVitals = "WEB_VITALS"
+}
+export declare type ExperienceToplineGoal = {
+    __typename?: 'ExperienceToplineGoal';
+    cohort?: Maybe<Scalars['String']['output']>;
+    cohortType: Scalars['String']['output'];
+    env: GlanceEnvironment;
+    id: Scalars['ID']['output'];
+    metric: Scalars['String']['output'];
+    name: Scalars['String']['output'];
+    pageLoadType?: Maybe<PageLoadType>;
+    percentile: Scalars['Int']['output'];
+    value: Scalars['Float']['output'];
+};
 export declare type Extension = {
     __typename?: 'Extension';
     appId: Scalars['ID']['output'];
     appOwner?: Maybe<User>;
@@ -26594,8 +26714,13 @@
     __typename?: 'GenericQueryErrorExtension';
     errorType?: Maybe<Scalars['String']['output']>;
     statusCode?: Maybe<Scalars['Int']['output']>;
 };
+export declare enum GlanceEnvironment {
+    Dev = "DEV",
+    Prod = "PROD",
+    Staging = "STAGING"
+}
 export declare type GlanceUserInsights = {
     __typename?: 'GlanceUserInsights';
     additional_data?: Maybe<Scalars['String']['output']>;
     created_at?: Maybe<Scalars['String']['output']>;
@@ -59444,8 +59569,15 @@
     encodedJqlTerm?: Maybe<Scalars['String']['output']>;
     isSelected?: Maybe<Scalars['Boolean']['output']>;
     jqlTerm: Scalars['String']['output'];
 };
+export declare type JiraJqlEmptyFieldValue = JiraJqlFieldValue & {
+    __typename?: 'JiraJqlEmptyFieldValue';
+    displayName: Scalars['String']['output'];
+    encodedJqlTerm?: Maybe<Scalars['String']['output']>;
+    isSelected?: Maybe<Scalars['Boolean']['output']>;
+    jqlTerm: Scalars['String']['output'];
+};
 export declare type JiraJqlField = {
     __typename?: 'JiraJqlField';
     allowedClauseTypes: Array<JiraJqlClauseType>;
     autoCompleteTemplate?: Maybe<JiraJqlAutocompleteType>;
@@ -70921,8 +71053,9 @@
 export declare type KnowledgeDiscoveryQueryApiAdminhubBookmarksArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
     cloudId: Scalars['ID']['input'];
     first?: InputMaybe<Scalars['Int']['input']>;
+    isSuggestion?: InputMaybe<Scalars['Boolean']['input']>;
     orgId: Scalars['String']['input'];
 };
 export declare type KnowledgeDiscoveryQueryApiAutoDefinitionArgs = {
     contentId: Scalars['String']['input'];
@@ -71065,8 +71198,9 @@
     description: Scalars['String']['output'];
     documentCount?: Maybe<Scalars['Int']['output']>;
     id: Scalars['ID']['output'];
     name: Scalars['String']['output'];
+    relatedQuestion?: Maybe<Scalars['String']['output']>;
     type?: Maybe<KnowledgeDiscoveryTopicType>;
     updatedAt: Scalars['String']['output'];
 };
 export declare type KnowledgeDiscoveryTopicResult = KnowledgeDiscoveryTopic | QueryError;
@@ -78762,8 +78896,9 @@
     comment?: Maybe<Comment>;
     commentType: AnalyticsCommentType;
     groupSize: Scalars['Int']['output'];
     timestamp: Scalars['String']['output'];
+    user?: Maybe<AtlassianUser>;
 };
 export declare type PageActivityEventCreatedPage = PageActivityEvent & {
     __typename?: 'PageActivityEventCreatedPage';
     accountId: Scalars['String']['output'];
@@ -78771,8 +78906,9 @@
     actionSubject: PageActivityActionSubject;
     groupSize: Scalars['Int']['output'];
     pageVersion: Scalars['Int']['output'];
     timestamp: Scalars['String']['output'];
+    user?: Maybe<AtlassianUser>;
 };
 export declare type PageActivityEventPublishedPage = PageActivityEvent & {
     __typename?: 'PageActivityEventPublishedPage';
     accountId: Scalars['String']['output'];
@@ -78780,8 +78916,9 @@
     actionSubject: PageActivityActionSubject;
     groupSize: Scalars['Int']['output'];
     pageVersion: Scalars['Int']['output'];
     timestamp: Scalars['String']['output'];
+    user?: Maybe<AtlassianUser>;
 };
 export declare type PageActivityEventSnapshottedPage = PageActivityEvent & {
     __typename?: 'PageActivityEventSnapshottedPage';
     accountId: Scalars['String']['output'];
@@ -78789,8 +78926,9 @@
     actionSubject: PageActivityActionSubject;
     groupSize: Scalars['Int']['output'];
     pageVersion: Scalars['Int']['output'];
     timestamp: Scalars['String']['output'];
+    user?: Maybe<AtlassianUser>;
 };
 export declare type PageActivityEventStartedPage = PageActivityEvent & {
     __typename?: 'PageActivityEventStartedPage';
     accountId: Scalars['String']['output'];
@@ -78798,8 +78936,9 @@
     actionSubject: PageActivityActionSubject;
     groupSize: Scalars['Int']['output'];
     pageVersion: Scalars['Int']['output'];
     timestamp: Scalars['String']['output'];
+    user?: Maybe<AtlassianUser>;
 };
 export declare type PageActivityEventUpdatedPage = PageActivityEvent & {
     __typename?: 'PageActivityEventUpdatedPage';
     accountId: Scalars['String']['output'];
@@ -78807,8 +78946,9 @@
     actionSubject: PageActivityActionSubject;
     groupSize: Scalars['Int']['output'];
     pageVersion: Scalars['Int']['output'];
     timestamp: Scalars['String']['output'];
+    user?: Maybe<AtlassianUser>;
 };
 export declare type PageActivityPageInfo = {
     __typename?: 'PageActivityPageInfo';
     endCursor: Scalars['String']['output'];
@@ -78873,8 +79013,13 @@
     parentId?: InputMaybe<Scalars['ID']['input']>;
     status?: InputMaybe<PageStatusInput>;
     title?: InputMaybe<Scalars['String']['input']>;
 };
+export declare enum PageLoadType {
+    Combined = "COMBINED",
+    Initial = "INITIAL",
+    Transition = "TRANSITION"
+}
 export declare type PageRestriction = {
     __typename?: 'PageRestriction';
     group?: Maybe<Array<PageGroupRestriction>>;
     user?: Maybe<Array<PageUserRestriction>>;
@@ -80855,8 +81000,9 @@
     contentAnalyticsViewedComments?: Maybe<ViewedComments>;
     contentAnalyticsViewers?: Maybe<ContentAnalyticsViewers>;
     contentAnalyticsViews?: Maybe<ContentAnalyticsViews>;
     contentAnalyticsViewsByDate?: Maybe<ContentAnalyticsViewsByDate>;
+    contentAnalyticsViewsByUser?: Maybe<ContentAnalyticsViewsByUser>;
     contentBody?: Maybe<ContentBodyPerRepresentation>;
     contentByState?: Maybe<PaginatedContentList>;
     contentContributors?: Maybe<ContentContributors>;
     contentConverter?: Maybe<ConfluenceBody>;
@@ -80967,8 +81113,9 @@
     getRecommendedPagesSpaceStatus?: Maybe<RecommendedPagesSpaceStatus>;
     getSmartContentFeature?: Maybe<SmartPageFeatures>;
     getSmartFeatures?: Maybe<SmartFeaturesResponse>;
     getSummary?: Maybe<SmartFeaturesContentSummary>;
+    glance_getCurrentUserSettings?: Maybe<UserSettings>;
     glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
     globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
     globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
     graphStore?: Maybe<GraphStore>;
@@ -82602,8 +82749,14 @@
     timezone: Scalars['String']['input'];
     toDate: Scalars['String']['input'];
     type: Scalars['String']['input'];
 };
+export declare type QueryContentAnalyticsViewsByUserArgs = {
+    accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
+    contentId: Scalars['ID']['input'];
+    engageTimeThreshold?: InputMaybe<Scalars['Int']['input']>;
+    limit?: InputMaybe<Scalars['Int']['input']>;
+};
 export declare type QueryContentBodyArgs = {
     id: Scalars['ID']['input'];
 };
 export declare type QueryContentByStateArgs = {
@@ -84328,8 +84481,9 @@
     functions: Array<RadarFunction>;
     id: Scalars['ID']['output'];
     positionFields: Array<RadarFieldDefinition>;
     userContext?: Maybe<RadarUserContext>;
+    workerFields: Array<RadarFieldDefinition>;
 };
 export declare type RankColumnInput = {
     boardId: Scalars['ID']['input'];
     columnId: Scalars['ID']['input'];
@@ -84525,8 +84679,9 @@
 export declare type RecommendedPeopleItem = {
     __typename?: 'RecommendedPeopleItem';
     accountId: Scalars['String']['output'];
     score: Scalars['Float']['output'];
+    user?: Maybe<AtlassianUser>;
 };
 export declare type RecommendedSpaceItem = {
     __typename?: 'RecommendedSpaceItem';
     score: Scalars['Float']['output'];
@@ -93129,9 +93284,9 @@
     uses?: Maybe<Scalars['Int']['output']>;
 };
 export declare type TrelloLabelUpdatedConnection = {
     __typename?: 'TrelloLabelUpdatedConnection';
-    nodes: Array<TrelloLabel>;
+    nodes?: Maybe<Array<TrelloLabel>>;
 };
 export declare type TrelloLimitProps = {
     __typename?: 'TrelloLimitProps';
     count?: Maybe<Scalars['Int']['output']>;
@@ -93246,9 +93401,9 @@
 };
 export declare type TrelloMemberConnection = {
     __typename?: 'TrelloMemberConnection';
     edges?: Maybe<Array<Maybe<TrelloMemberEdge>>>;
-    nodes?: Maybe<Array<Maybe<TrelloMember>>>;
+    nodes?: Maybe<Array<TrelloMember>>;
     pageInfo: PageInfo;
 };
 export declare type TrelloMemberEdge = {
     __typename?: 'TrelloMemberEdge';
@@ -93486,8 +93641,9 @@
 export declare type TrelloPlannerCalendarAccountUpdated = {
     __typename?: 'TrelloPlannerCalendarAccountUpdated';
     enabledCalendars?: Maybe<TrelloPlannerCalendarConnectionUpdated>;
     id: Scalars['ID']['output'];
+    providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnectionUpdated>;
 };
 export declare enum TrelloPlannerCalendarColor {
     BlueSubtler = "BLUE_SUBTLER",
     BlueSubtlest = "BLUE_SUBTLEST",
@@ -93637,11 +93793,26 @@
     PlannerEvent = "PLANNER_EVENT"
 }
 export declare type TrelloPlannerCalendarEventUpdated = {
     __typename?: 'TrelloPlannerCalendarEventUpdated';
+    allDay?: Maybe<Scalars['Boolean']['output']>;
+    busy?: Maybe<Scalars['Boolean']['output']>;
     cards?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
+    color?: Maybe<TrelloPlannerCalendarColor>;
+    conferencing?: Maybe<TrelloPlannerCalendarEventConferencing>;
+    createdByTrello?: Maybe<Scalars['Boolean']['output']>;
+    description?: Maybe<Scalars['String']['output']>;
+    endAt?: Maybe<Scalars['DateTime']['output']>;
+    eventType?: Maybe<TrelloPlannerCalendarEventType>;
     id: Scalars['ID']['output'];
+    link?: Maybe<Scalars['String']['output']>;
     onPlannerCalendarEventCardDeleted?: Maybe<Array<TrelloPlannerCalendarEventCardDeleted>>;
+    parentEventId?: Maybe<Scalars['ID']['output']>;
+    readOnly?: Maybe<Scalars['Boolean']['output']>;
+    startAt?: Maybe<Scalars['DateTime']['output']>;
+    status?: Maybe<TrelloPlannerCalendarEventStatus>;
+    title?: Maybe<Scalars['String']['output']>;
+    visibility?: Maybe<TrelloPlannerCalendarEventVisibility>;
 };
 export declare enum TrelloPlannerCalendarEventVisibility {
     Default = "DEFAULT",
     Private = "PRIVATE",
@@ -93661,10 +93832,19 @@
     updateCursor?: InputMaybe<Scalars['String']['input']>;
 };
 export declare type TrelloPlannerCalendarUpdated = {
     __typename?: 'TrelloPlannerCalendarUpdated';
+    color?: Maybe<TrelloPlannerCalendarColor>;
+    enabled?: Maybe<Scalars['Boolean']['output']>;
     events?: Maybe<TrelloPlannerCalendarEventConnectionUpdated>;
     id: Scalars['ID']['output'];
+    isPrimary?: Maybe<Scalars['Boolean']['output']>;
+    objectId?: Maybe<Scalars['ID']['output']>;
+    providerCalendarId?: Maybe<Scalars['ID']['output']>;
+    readOnly?: Maybe<Scalars['Boolean']['output']>;
+    timezone?: Maybe<Scalars['String']['output']>;
+    title?: Maybe<Scalars['String']['output']>;
+    type?: Maybe<TrelloSupportedPlannerProviders>;
 };
 export declare type TrelloPlannerCalendarUpdatedEventsArgs = {
     filter: TrelloPlannerCalendarEventsUpdatedFilter;
 };
@@ -93684,14 +93864,32 @@
     nodes?: Maybe<Array<TrelloPlannerProviderCalendar>>;
     pageInfo: PageInfo;
     updateCursor?: Maybe<Scalars['String']['output']>;
 };
+export declare type TrelloPlannerProviderCalendarConnectionUpdated = {
+    __typename?: 'TrelloPlannerProviderCalendarConnectionUpdated';
+    edges?: Maybe<Array<TrelloPlannerProviderCalendarEdgeUpdated>>;
+};
 export declare type TrelloPlannerProviderCalendarEdge = {
     __typename?: 'TrelloPlannerProviderCalendarEdge';
     cursor?: Maybe<Scalars['String']['output']>;
     deletedCalendar?: Maybe<TrelloProviderCalendarDeleted>;
     node?: Maybe<TrelloPlannerProviderCalendar>;
 };
+export declare type TrelloPlannerProviderCalendarEdgeUpdated = {
+    __typename?: 'TrelloPlannerProviderCalendarEdgeUpdated';
+    node?: Maybe<TrelloPlannerProviderCalendarUpdated>;
+};
+export declare type TrelloPlannerProviderCalendarUpdated = {
+    __typename?: 'TrelloPlannerProviderCalendarUpdated';
+    color?: Maybe<TrelloPlannerCalendarColor>;
+    id: Scalars['ID']['output'];
+    isPrimary?: Maybe<Scalars['Boolean']['output']>;
+    readOnly?: Maybe<Scalars['Boolean']['output']>;
+    timezone?: Maybe<Scalars['String']['output']>;
+    title?: Maybe<Scalars['String']['output']>;
+    type?: Maybe<TrelloSupportedPlannerProviders>;
+};
 export declare type TrelloPlannerUpdated = {
     __typename?: 'TrelloPlannerUpdated';
     accounts?: Maybe<TrelloPlannerCalendarAccountConnectionUpdated>;
     id: Scalars['ID']['output'];
@@ -93962,18 +94160,18 @@
     nodes?: Maybe<Array<TrelloStickerEdge>>;
 };
 export declare type TrelloSubscriptionApi = {
     __typename?: 'TrelloSubscriptionApi';
+    onBoardCardSetUpdated?: Maybe<TrelloBoardUpdated>;
     onBoardUpdated?: Maybe<TrelloBoardUpdated>;
-    onCardsUpdated?: Maybe<TrelloBoardUpdated>;
     onMemberUpdated?: Maybe<TrelloMemberUpdated>;
     onWorkspaceUpdated?: Maybe<TrelloWorkspaceUpdated>;
 };
-export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
+export declare type TrelloSubscriptionApiOnBoardCardSetUpdatedArgs = {
     cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
     id: Scalars['ID']['input'];
 };
-export declare type TrelloSubscriptionApiOnCardsUpdatedArgs = {
+export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
     cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
     id: Scalars['ID']['input'];
 };
 export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
@@ -96103,8 +96301,14 @@
     templateEntityFavouriteStatus?: InputMaybe<TemplateEntityFavouriteStatus>;
     theme?: InputMaybe<Scalars['String']['input']>;
     topNavigationOptedOut?: InputMaybe<Scalars['Boolean']['input']>;
 };
+export declare type UserSettings = {
+    __typename?: 'UserSettings';
+    id: Scalars['ID']['output'];
+    starredExperiences: Array<Experience>;
+    username: Scalars['String']['output'];
+};
 export declare type UserWithPermissionsInput = {
     accountId: Scalars['ID']['input'];
     operations: Array<InputMaybe<OperationCheckResultInput>>;
 };