npm package diff

Package: @forge/cli-shared

Versions: 6.4.0-next.10 - 6.4.0-next.11

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
@@ -1306,8 +1306,37 @@
 };
 export declare type AppStorageMutationSetAppStoredEntityArgs = {
     input: SetAppStoredEntityMutationInput;
 };
+export declare type AppStorageSqlDatabaseColumn = {
+    __typename?: 'AppStorageSqlDatabaseColumn';
+    default: Scalars['String']['output'];
+    extra: Scalars['String']['output'];
+    field: Scalars['String']['output'];
+    key: Scalars['String']['output'];
+    null: Scalars['String']['output'];
+    type: Scalars['String']['output'];
+};
+export declare type AppStorageSqlDatabaseInput = {
+    installationId: Scalars['ID']['input'];
+};
+export declare type AppStorageSqlDatabaseMigration = {
+    __typename?: 'AppStorageSqlDatabaseMigration';
+    id: Scalars['Int']['output'];
+    migratedAt: Scalars['String']['output'];
+    name: Scalars['String']['output'];
+};
+export declare type AppStorageSqlDatabasePayload = {
+    __typename?: 'AppStorageSqlDatabasePayload';
+    databaseSize: Scalars['Int']['output'];
+    migrations: Array<Maybe<AppStorageSqlDatabaseMigration>>;
+    tables: Array<Maybe<AppStorageSqlDatabaseTable>>;
+};
+export declare type AppStorageSqlDatabaseTable = {
+    __typename?: 'AppStorageSqlDatabaseTable';
+    columns: Array<AppStorageSqlDatabaseColumn>;
+    name: Scalars['String']['output'];
+};
 export declare type AppStoredCustomEntity = {
     __typename?: 'AppStoredCustomEntity';
     entityName: Scalars['String']['output'];
     key: Scalars['ID']['output'];
@@ -1953,11 +1982,23 @@
     prerequisites?: Maybe<Array<Maybe<BoardFeatureView>>>;
     status?: Maybe<Scalars['String']['output']>;
     title?: Maybe<Scalars['String']['output']>;
 };
+export declare type BitbucketPrAuthor = {
+    __typename?: 'BitbucketPRAuthor';
+    authorAccountId?: Maybe<Scalars['String']['output']>;
+};
 export declare enum BitbucketPermission {
     Admin = "ADMIN"
 }
+export declare type BitbucketPullRequest = Node & {
+    __typename?: 'BitbucketPullRequest';
+    author?: Maybe<BitbucketPrAuthor>;
+    createdDate?: Maybe<Scalars['DateTime']['output']>;
+    id: Scalars['ID']['output'];
+    state?: Maybe<Scalars['String']['output']>;
+    title: Scalars['String']['output'];
+};
 export declare type BitbucketQuery = {
     __typename?: 'BitbucketQuery';
     bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
     bitbucketRepository?: Maybe<BitbucketRepository>;
@@ -16686,8 +16727,12 @@
     Entitlement = "ENTITLEMENT",
     Organization = "ORGANIZATION"
 }
 export declare type CustomerServiceCustomDetailsQueryResult = CustomerServiceCustomDetails | QueryError;
+export declare type CustomerServiceDefaultRoutingRuleInput = {
+    issueTypeId: Scalars['String']['input'];
+    projectId: Scalars['ID']['input'];
+};
 export declare type CustomerServiceEntitledEntity = CustomerServiceIndividual | CustomerServiceOrganization;
 export declare type CustomerServiceEntitlement = Node & {
     __typename?: 'CustomerServiceEntitlement';
     customDetails: Array<CustomerServiceCustomDetailValue>;
@@ -16793,14 +16838,16 @@
     createNote?: Maybe<CustomerServiceNoteCreatePayload>;
     createOrganization?: Maybe<CustomerServiceOrganizationCreatePayload>;
     createOrganizationAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
     createProduct?: Maybe<CustomerServiceProductCreatePayload>;
+    createTemplateForm?: Maybe<CustomerServiceTemplateFormCreatePayload>;
     deleteCustomDetail?: Maybe<CustomerServiceCustomDetailDeletePayload>;
     deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
     deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
     deleteOrganization?: Maybe<CustomerServiceOrganizationDeletePayload>;
     deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
     deleteProduct?: Maybe<CustomerServiceProductDeletePayload>;
+    deleteTemplateForm?: Maybe<CustomerServiceTemplateFormDeletePayload>;
     removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
     updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
     updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
     updateCustomDetailContextConfigs?: Maybe<CustomerServiceUpdateCustomDetailContextConfigsPayload>;
@@ -16817,8 +16864,9 @@
     updateOrganizationAttributeMultiValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
     updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
     updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
     updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
+    updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
 };
 export declare type CustomerServiceMutationApiAddEntitlementArgs = {
     input: CustomerServiceEntitlementAddInput;
 };
@@ -16839,8 +16887,11 @@
 };
 export declare type CustomerServiceMutationApiCreateProductArgs = {
     input: CustomerServiceProductCreateInput;
 };
+export declare type CustomerServiceMutationApiCreateTemplateFormArgs = {
+    input: CustomerServiceTemplateFormCreateInput;
+};
 export declare type CustomerServiceMutationApiDeleteCustomDetailArgs = {
     input: CustomerServiceCustomDetailDeleteInput;
 };
 export declare type CustomerServiceMutationApiDeleteIndividualAttributeArgs = {
@@ -16857,8 +16908,11 @@
 };
 export declare type CustomerServiceMutationApiDeleteProductArgs = {
     input: CustomerServiceProductDeleteInput;
 };
+export declare type CustomerServiceMutationApiDeleteTemplateFormArgs = {
+    input: CustomerServiceTemplateFormDeleteInput;
+};
 export declare type CustomerServiceMutationApiRemoveEntitlementArgs = {
     input: CustomerServiceEntitlementRemoveInput;
 };
 export declare type CustomerServiceMutationApiUpdateCustomDetailArgs = {
@@ -16911,8 +16965,13 @@
 };
 export declare type CustomerServiceMutationApiUpdateProductArgs = {
     input: CustomerServiceProductUpdateInput;
 };
+export declare type CustomerServiceMutationApiUpdateTemplateFormArgs = {
+    helpCenterId: Scalars['ID']['input'];
+    input: CustomerServiceTemplateFormUpdateInput;
+    templateFormId: Scalars['ID']['input'];
+};
 export declare type CustomerServiceNote = {
     __typename?: 'CustomerServiceNote';
     author: CustomerServiceNoteAuthor;
     body: Scalars['String']['output'];
@@ -17123,8 +17182,9 @@
     organizationByOrganizationId?: Maybe<CustomerServiceOrganizationQueryResult>;
     productConnections?: Maybe<CustomerServiceProductConnection>;
     products?: Maybe<CustomerServiceProductQueryResult>;
     templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
+    templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
 };
 export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
     customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
 };
@@ -17153,8 +17213,13 @@
 export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
     helpCenterId: Scalars['ID']['input'];
     templateFormId: Scalars['ID']['input'];
 };
+export declare type CustomerServiceQueryApiTemplateFormsArgs = {
+    after?: InputMaybe<Scalars['String']['input']>;
+    first?: InputMaybe<Scalars['Int']['input']>;
+    helpCenterId: Scalars['ID']['input'];
+};
 export declare type CustomerServiceRoutingRule = {
     __typename?: 'CustomerServiceRoutingRule';
     id: Scalars['ID']['output'];
     issueTypeIconUrl?: Maybe<Scalars['String']['output']>;
@@ -17175,9 +17240,49 @@
     helpCenterId: Scalars['ID']['output'];
     id: Scalars['ID']['output'];
     name?: Maybe<Scalars['String']['output']>;
 };
+export declare type CustomerServiceTemplateFormConnection = {
+    __typename?: 'CustomerServiceTemplateFormConnection';
+    edges: Array<CustomerServiceTemplateFormEdge>;
+    pageInfo: PageInfo;
+};
+export declare type CustomerServiceTemplateFormCreateInput = {
+    defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
+    helpCenterId: Scalars['ID']['input'];
+    name: Scalars['String']['input'];
+};
+export declare type CustomerServiceTemplateFormCreatePayload = Payload & {
+    __typename?: 'CustomerServiceTemplateFormCreatePayload';
+    errors?: Maybe<Array<MutationError>>;
+    success: Scalars['Boolean']['output'];
+    successfullyCreatedTemplateForm?: Maybe<CustomerServiceTemplateFormEdge>;
+};
+export declare type CustomerServiceTemplateFormDeleteInput = {
+    helpCenterId: Scalars['ID']['input'];
+    templateFormId: Scalars['ID']['input'];
+};
+export declare type CustomerServiceTemplateFormDeletePayload = Payload & {
+    __typename?: 'CustomerServiceTemplateFormDeletePayload';
+    errors?: Maybe<Array<MutationError>>;
+    success: Scalars['Boolean']['output'];
+};
+export declare type CustomerServiceTemplateFormEdge = {
+    __typename?: 'CustomerServiceTemplateFormEdge';
+    cursor: Scalars['String']['output'];
+    node?: Maybe<CustomerServiceTemplateForm>;
+};
 export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemplateForm | QueryError;
+export declare type CustomerServiceTemplateFormUpdateInput = {
+    defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
+    name?: InputMaybe<Scalars['String']['input']>;
+};
+export declare type CustomerServiceTemplateFormUpdatePayload = Payload & {
+    __typename?: 'CustomerServiceTemplateFormUpdatePayload';
+    errors?: Maybe<Array<MutationError>>;
+    success: Scalars['Boolean']['output'];
+    successfullyCreatedTemplateForm?: Maybe<CustomerServiceTemplateFormEdge>;
+};
 export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
     __typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
     errors?: Maybe<Array<MutationError>>;
     success: Scalars['Boolean']['output'];
@@ -43313,8 +43418,9 @@
 };
 export declare type JiraDetailedViewIssuesArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
     before?: InputMaybe<Scalars['String']['input']>;
+    fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
     first?: InputMaybe<Scalars['Int']['input']>;
     issueSearchInput: JiraIssueSearchInput;
     last?: InputMaybe<Scalars['Int']['input']>;
     options?: InputMaybe<JiraIssueSearchOptions>;
@@ -44815,8 +44921,9 @@
     fieldSetsForIssueSearchView?: Maybe<JiraIssueFieldSetConnection>;
     fields?: Maybe<JiraIssueFieldConnection>;
     fieldsById?: Maybe<JiraIssueFieldConnection>;
     fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
+    groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
     hasChildren?: Maybe<Scalars['Boolean']['output']>;
     hasCustomisedContentPanels?: Maybe<Scalars['Boolean']['output']>;
     hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
     hasRelationshipToVersion?: Maybe<Scalars['Boolean']['output']>;
@@ -44968,8 +45075,17 @@
 export declare type JiraIssueFieldsByIdOrAliasArgs = {
     idsOrAliases: Array<InputMaybe<Scalars['String']['input']>>;
     ignoreMissingFields?: InputMaybe<Scalars['Boolean']['input']>;
 };
+export declare type JiraIssueGroupsByFieldIdArgs = {
+    after?: InputMaybe<Scalars['String']['input']>;
+    before?: InputMaybe<Scalars['String']['input']>;
+    fieldId: Scalars['String']['input'];
+    first?: InputMaybe<Scalars['Int']['input']>;
+    firstNGroupsToSearch?: InputMaybe<Scalars['Int']['input']>;
+    issueSearchInput: JiraIssueSearchInput;
+    last?: InputMaybe<Scalars['Int']['input']>;
+};
 export declare type JiraIssueHasChildrenArgs = {
     filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
 };
 export declare type JiraIssueHasProjectPermissionArgs = {
@@ -53111,8 +53227,10 @@
     totalBoardsInProject: Scalars['Long']['output'];
 };
 export declare type JiraSpreadsheetGroup = {
     __typename?: 'JiraSpreadsheetGroup';
+    afterGroupId?: Maybe<Scalars['String']['output']>;
+    beforeGroupId?: Maybe<Scalars['String']['output']>;
     fieldId?: Maybe<Scalars['String']['output']>;
     fieldType?: Maybe<Scalars['String']['output']>;
     fieldValue?: Maybe<JiraJqlFieldValue>;
     id: Scalars['ID']['output'];
@@ -53152,8 +53270,9 @@
     __typename?: 'JiraSpreadsheetGroupConnection';
     edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupEdge>>>;
     errors?: Maybe<Array<QueryError>>;
     firstGroup?: Maybe<JiraSpreadsheetGroup>;
+    jql?: Maybe<Scalars['String']['output']>;
     pageInfo: PageInfo;
     totalCount?: Maybe<Scalars['Int']['output']>;
 };
 export declare type JiraSpreadsheetGroupEdge = {
@@ -59234,8 +59353,9 @@
     goalLinks?: Maybe<MercuryFocusAreaGoalLinks>;
     headcountAggregation?: Maybe<MercuryHeadcountAggregation>;
     health?: Maybe<MercuryFocusAreaHealth>;
     id: Scalars['ID']['output'];
+    linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
     linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
     name: Scalars['String']['output'];
     owner?: Maybe<User>;
     parent?: Maybe<MercuryFocusArea>;
@@ -59356,11 +59476,17 @@
     createdDate: Scalars['String']['output'];
     id: Scalars['ID']['output'];
     parentFocusAreaId: Scalars['String']['output'];
 };
+export declare type MercuryFocusAreaLinkedGoalSummary = {
+    __typename?: 'MercuryFocusAreaLinkedGoalSummary';
+    count: Scalars['Int']['output'];
+    countIncludingSubFocusAreas?: Maybe<Scalars['Int']['output']>;
+};
 export declare type MercuryFocusAreaLinkedWorkSummary = {
     __typename?: 'MercuryFocusAreaLinkedWorkSummary';
     count: Scalars['Int']['output'];
+    countIncludingSubFocusAreas?: Maybe<Scalars['Int']['output']>;
 };
 export declare type MercuryFocusAreaLinks = {
     __typename?: 'MercuryFocusAreaLinks';
     links: Array<MercuryFocusAreaLink>;
@@ -59740,8 +59866,9 @@
     allocations?: Maybe<MercuryPortfolioAllocations>;
     ari: Scalars['String']['output'];
     funding?: Maybe<MercuryPortfolioFunding>;
     id: Scalars['ID']['output'];
+    label?: Maybe<Scalars['String']['output']>;
     linkedFocusAreaGoalCount: Scalars['Int']['output'];
     linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
     name: Scalars['String']['output'];
     owner?: Maybe<User>;
@@ -62126,8 +62253,9 @@
 export declare type PeapProgram = {
     __typename?: 'PEAPProgram';
     activatedAt?: Maybe<Scalars['Date']['output']>;
     cdacCategory?: Maybe<Scalars['Int']['output']>;
+    cdacCategoryURL?: Maybe<Scalars['String']['output']>;
     changeTicket?: Maybe<Scalars['String']['output']>;
     completedAt?: Maybe<Scalars['Date']['output']>;
     createdAt: Scalars['Date']['output'];
     id: Scalars['ID']['output'];
@@ -62170,8 +62298,10 @@
 };
 export declare type PeapProgramInternalData = {
     __typename?: 'PEAPProgramInternalData';
     cdacGroup?: Maybe<Scalars['String']['output']>;
+    cdacGroupURL?: Maybe<Scalars['String']['output']>;
+    changeTicketURL?: Maybe<Scalars['String']['output']>;
     owner?: Maybe<User>;
 };
 export declare type PeapProgramMutationResponse = Payload & {
     __typename?: 'PEAPProgramMutationResponse';
@@ -63303,8 +63433,9 @@
     appLogLines?: Maybe<AppLogLineConnection>;
     appLogs?: Maybe<AppLogConnection>;
     appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
     appRecommendations?: Maybe<AppRecQuery>;
+    appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
     appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
     appStoredCustomEntity?: Maybe<AppStoredCustomEntity>;
     appStoredEntities?: Maybe<AppStoredEntityConnection>;
     appStoredEntitiesForCleanup?: Maybe<AppStoredEntityConnection>;
@@ -63656,8 +63787,9 @@
     pricings: ContentPlatformPricingSearchConnection;
     productListing?: Maybe<ProductListingResult>;
     productListings: Array<ProductListingResult>;
     radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
+    radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
     radar_positions?: Maybe<RadarPositionConnection>;
     radar_workspace: RadarWorkspace;
     releaseNote?: Maybe<ContentPlatformReleaseNote>;
     releaseNotes: ContentPlatformReleaseNotesConnection;
@@ -63751,8 +63883,11 @@
     offset: Scalars['Int']['input'];
     query?: InputMaybe<LogQueryInput>;
     queryStartTime: Scalars['String']['input'];
 };
+export declare type QueryAppStorage_SqlDatabaseArgs = {
+    input?: InputMaybe<AppStorageSqlDatabaseInput>;
+};
 export declare type QueryAppStoredCustomEntitiesArgs = {
     contextAri: Scalars['ID']['input'];
     cursor?: InputMaybe<Scalars['String']['input']>;
     entityName: Scalars['String']['input'];
@@ -65070,8 +65205,17 @@
     last?: InputMaybe<Scalars['Int']['input']>;
     rql?: InputMaybe<Scalars['String']['input']>;
     uniqueFieldId: Scalars['ID']['input'];
 };
+export declare type QueryRadar_GroupMetricsArgs = {
+    after?: InputMaybe<Scalars['String']['input']>;
+    before?: InputMaybe<Scalars['String']['input']>;
+    cloudId: Scalars['ID']['input'];
+    first?: InputMaybe<Scalars['Int']['input']>;
+    last?: InputMaybe<Scalars['Int']['input']>;
+    rql?: InputMaybe<Scalars['String']['input']>;
+    uniqueFieldIdIsIn: Array<Scalars['ID']['input']>;
+};
 export declare type QueryRadar_PositionsArgs = {
     after?: InputMaybe<Scalars['String']['input']>;
     before?: InputMaybe<Scalars['String']['input']>;
     cloudId: Scalars['ID']['input'];
@@ -65306,8 +65450,27 @@
 export declare type RadarFocusAreaMappingsInput = {
     focusAreaAri: Scalars['ID']['input'];
     positionId: Scalars['ID']['input'];
 };
+export declare type RadarGroupMetrics = {
+    __typename?: 'RadarGroupMetrics';
+    count: Scalars['Int']['output'];
+    field: RadarFieldValueIdPair;
+    subGroups: Array<RadarGroupMetrics>;
+};
+export declare type RadarGroupMetricsConnection = RadarConnection & {
+    __typename?: 'RadarGroupMetricsConnection';
+    edges?: Maybe<Array<RadarGroupMetricsEdge>>;
+    nodes?: Maybe<Array<RadarGroupMetrics>>;
+    pageInfo: PageInfo;
+    rowCount: Scalars['Int']['output'];
+    totalCount: Scalars['Int']['output'];
+};
+export declare type RadarGroupMetricsEdge = RadarEdge & {
+    __typename?: 'RadarGroupMetricsEdge';
+    cursor: Scalars['String']['output'];
+    node: RadarGroupMetrics;
+};
 export declare type RadarMutationResponse = {
     __typename?: 'RadarMutationResponse';
     success?: Maybe<Scalars['Boolean']['output']>;
 };
@@ -66864,8 +67027,9 @@
     projectFilter?: InputMaybe<SearchJiraProjectFilter>;
 };
 export declare type SearchJiraIssueFilter = {
     assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
+    issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
     projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
     reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
     statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
 };
@@ -67133,8 +67297,9 @@
     description: Scalars['String']['output'];
     iconUrl?: Maybe<Scalars['URL']['output']>;
     id: Scalars['ID']['output'];
     issue?: Maybe<JiraIssue>;
+    issueTypeId: Scalars['String']['output'];
     lastModifiedDate?: Maybe<Scalars['String']['output']>;
     scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
     socialSignal?: Maybe<SocialSignalSearch>;
     status?: Maybe<SearchResultJiraIssueStatus>;
@@ -71022,9 +71187,8 @@
 export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
     __typename?: 'TrelloAssignCardToPlannerCalendarEventPayload';
     errors?: Maybe<Array<MutationError>>;
     event?: Maybe<TrelloPlannerCalendarEvent>;
-    eventCard?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
     success: Scalars['Boolean']['output'];
 };
 export declare type TrelloAtlassianIntelligence = {
     __typename?: 'TrelloAtlassianIntelligence';
@@ -71574,8 +71738,9 @@
 export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
     __typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
     errors?: Maybe<Array<MutationError>>;
     plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
+    plannerCalendarAccount?: Maybe<TrelloPlannerCalendarAccount>;
     plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarConnectionUpdated>;
     success: Scalars['Boolean']['output'];
 };
 export declare type TrelloCreateOrUpdatePlannerCalendarPayloadPlannerCalendarArgs = {
@@ -72102,13 +72267,8 @@
     edges?: Maybe<Array<TrelloPlannerCalendarEventCardEdge>>;
     nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
     pageInfo: PageInfo;
 };
-export declare type TrelloPlannerCalendarEventCardConnectionUpdated = {
-    __typename?: 'TrelloPlannerCalendarEventCardConnectionUpdated';
-    edges?: Maybe<Array<TrelloPlannerCalendarEventCardEdge>>;
-    nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
-};
 export declare type TrelloPlannerCalendarEventCardEdge = {
     __typename?: 'TrelloPlannerCalendarEventCardEdge';
     cursor?: Maybe<Scalars['String']['output']>;
     node?: Maybe<TrelloPlannerCalendarEventCard>;
@@ -72644,8 +72804,9 @@
 };
 export declare type UnifiedAccount2 = UnifiedINode & {
     __typename?: 'UnifiedAccount2';
     aaid?: Maybe<Scalars['String']['output']>;
+    emailId?: Maybe<Scalars['String']['output']>;
     id: Scalars['ID']['output'];
     internalId?: Maybe<Scalars['String']['output']>;
     isLinked?: Maybe<Scalars['Boolean']['output']>;
     isManaged?: Maybe<Scalars['Boolean']['output']>;