@forge/cli-shared 6.4.0-next.10 → 6.4.0-next.11

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
@@ -1,5 +1,11 @@
1
1
  # @forge/cli-shared
2
2
 
3
+ ## 6.4.0-next.11
4
+
5
+ ### Minor Changes
6
+
7
+ - 94b5a3d: Add RoA eligibility message post deployment
8
+
3
9
  ## 6.4.0-next.10
4
10
 
5
11
  ### Patch Changes
@@ -1307,6 +1307,35 @@ export declare type AppStorageMutationDeleteAppStoredEntityArgs = {
1307
1307
  export declare type AppStorageMutationSetAppStoredEntityArgs = {
1308
1308
  input: SetAppStoredEntityMutationInput;
1309
1309
  };
1310
+ export declare type AppStorageSqlDatabaseColumn = {
1311
+ __typename?: 'AppStorageSqlDatabaseColumn';
1312
+ default: Scalars['String']['output'];
1313
+ extra: Scalars['String']['output'];
1314
+ field: Scalars['String']['output'];
1315
+ key: Scalars['String']['output'];
1316
+ null: Scalars['String']['output'];
1317
+ type: Scalars['String']['output'];
1318
+ };
1319
+ export declare type AppStorageSqlDatabaseInput = {
1320
+ installationId: Scalars['ID']['input'];
1321
+ };
1322
+ export declare type AppStorageSqlDatabaseMigration = {
1323
+ __typename?: 'AppStorageSqlDatabaseMigration';
1324
+ id: Scalars['Int']['output'];
1325
+ migratedAt: Scalars['String']['output'];
1326
+ name: Scalars['String']['output'];
1327
+ };
1328
+ export declare type AppStorageSqlDatabasePayload = {
1329
+ __typename?: 'AppStorageSqlDatabasePayload';
1330
+ databaseSize: Scalars['Int']['output'];
1331
+ migrations: Array<Maybe<AppStorageSqlDatabaseMigration>>;
1332
+ tables: Array<Maybe<AppStorageSqlDatabaseTable>>;
1333
+ };
1334
+ export declare type AppStorageSqlDatabaseTable = {
1335
+ __typename?: 'AppStorageSqlDatabaseTable';
1336
+ columns: Array<AppStorageSqlDatabaseColumn>;
1337
+ name: Scalars['String']['output'];
1338
+ };
1310
1339
  export declare type AppStoredCustomEntity = {
1311
1340
  __typename?: 'AppStoredCustomEntity';
1312
1341
  entityName: Scalars['String']['output'];
@@ -1954,9 +1983,21 @@ export declare type BasicBoardFeatureView = Node & {
1954
1983
  status?: Maybe<Scalars['String']['output']>;
1955
1984
  title?: Maybe<Scalars['String']['output']>;
1956
1985
  };
1986
+ export declare type BitbucketPrAuthor = {
1987
+ __typename?: 'BitbucketPRAuthor';
1988
+ authorAccountId?: Maybe<Scalars['String']['output']>;
1989
+ };
1957
1990
  export declare enum BitbucketPermission {
1958
1991
  Admin = "ADMIN"
1959
1992
  }
1993
+ export declare type BitbucketPullRequest = Node & {
1994
+ __typename?: 'BitbucketPullRequest';
1995
+ author?: Maybe<BitbucketPrAuthor>;
1996
+ createdDate?: Maybe<Scalars['DateTime']['output']>;
1997
+ id: Scalars['ID']['output'];
1998
+ state?: Maybe<Scalars['String']['output']>;
1999
+ title: Scalars['String']['output'];
2000
+ };
1960
2001
  export declare type BitbucketQuery = {
1961
2002
  __typename?: 'BitbucketQuery';
1962
2003
  bitbucketRepositories?: Maybe<Array<Maybe<BitbucketRepository>>>;
@@ -16687,6 +16728,10 @@ export declare enum CustomerServiceCustomDetailsEntityType {
16687
16728
  Organization = "ORGANIZATION"
16688
16729
  }
16689
16730
  export declare type CustomerServiceCustomDetailsQueryResult = CustomerServiceCustomDetails | QueryError;
16731
+ export declare type CustomerServiceDefaultRoutingRuleInput = {
16732
+ issueTypeId: Scalars['String']['input'];
16733
+ projectId: Scalars['ID']['input'];
16734
+ };
16690
16735
  export declare type CustomerServiceEntitledEntity = CustomerServiceIndividual | CustomerServiceOrganization;
16691
16736
  export declare type CustomerServiceEntitlement = Node & {
16692
16737
  __typename?: 'CustomerServiceEntitlement';
@@ -16794,12 +16839,14 @@ export declare type CustomerServiceMutationApi = {
16794
16839
  createOrganization?: Maybe<CustomerServiceOrganizationCreatePayload>;
16795
16840
  createOrganizationAttribute?: Maybe<CustomerServiceAttributeCreatePayload>;
16796
16841
  createProduct?: Maybe<CustomerServiceProductCreatePayload>;
16842
+ createTemplateForm?: Maybe<CustomerServiceTemplateFormCreatePayload>;
16797
16843
  deleteCustomDetail?: Maybe<CustomerServiceCustomDetailDeletePayload>;
16798
16844
  deleteIndividualAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
16799
16845
  deleteNote?: Maybe<CustomerServiceNoteDeletePayload>;
16800
16846
  deleteOrganization?: Maybe<CustomerServiceOrganizationDeletePayload>;
16801
16847
  deleteOrganizationAttribute?: Maybe<CustomerServiceAttributeDeletePayload>;
16802
16848
  deleteProduct?: Maybe<CustomerServiceProductDeletePayload>;
16849
+ deleteTemplateForm?: Maybe<CustomerServiceTemplateFormDeletePayload>;
16803
16850
  removeEntitlement?: Maybe<CustomerServiceEntitlementRemovePayload>;
16804
16851
  updateCustomDetail?: Maybe<CustomerServiceCustomDetailUpdatePayload>;
16805
16852
  updateCustomDetailConfig?: Maybe<CustomerServiceCustomDetailConfigMetadataUpdatePayload>;
@@ -16818,6 +16865,7 @@ export declare type CustomerServiceMutationApi = {
16818
16865
  updateOrganizationAttributeValue?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
16819
16866
  updateOrganizationAttributeValueByName?: Maybe<CustomerServiceOrganizationUpdateAttributeValuePayload>;
16820
16867
  updateProduct?: Maybe<CustomerServiceProductUpdatePayload>;
16868
+ updateTemplateForm?: Maybe<CustomerServiceTemplateFormUpdatePayload>;
16821
16869
  };
16822
16870
  export declare type CustomerServiceMutationApiAddEntitlementArgs = {
16823
16871
  input: CustomerServiceEntitlementAddInput;
@@ -16840,6 +16888,9 @@ export declare type CustomerServiceMutationApiCreateOrganizationAttributeArgs =
16840
16888
  export declare type CustomerServiceMutationApiCreateProductArgs = {
16841
16889
  input: CustomerServiceProductCreateInput;
16842
16890
  };
16891
+ export declare type CustomerServiceMutationApiCreateTemplateFormArgs = {
16892
+ input: CustomerServiceTemplateFormCreateInput;
16893
+ };
16843
16894
  export declare type CustomerServiceMutationApiDeleteCustomDetailArgs = {
16844
16895
  input: CustomerServiceCustomDetailDeleteInput;
16845
16896
  };
@@ -16858,6 +16909,9 @@ export declare type CustomerServiceMutationApiDeleteOrganizationAttributeArgs =
16858
16909
  export declare type CustomerServiceMutationApiDeleteProductArgs = {
16859
16910
  input: CustomerServiceProductDeleteInput;
16860
16911
  };
16912
+ export declare type CustomerServiceMutationApiDeleteTemplateFormArgs = {
16913
+ input: CustomerServiceTemplateFormDeleteInput;
16914
+ };
16861
16915
  export declare type CustomerServiceMutationApiRemoveEntitlementArgs = {
16862
16916
  input: CustomerServiceEntitlementRemoveInput;
16863
16917
  };
@@ -16912,6 +16966,11 @@ export declare type CustomerServiceMutationApiUpdateOrganizationAttributeValueBy
16912
16966
  export declare type CustomerServiceMutationApiUpdateProductArgs = {
16913
16967
  input: CustomerServiceProductUpdateInput;
16914
16968
  };
16969
+ export declare type CustomerServiceMutationApiUpdateTemplateFormArgs = {
16970
+ helpCenterId: Scalars['ID']['input'];
16971
+ input: CustomerServiceTemplateFormUpdateInput;
16972
+ templateFormId: Scalars['ID']['input'];
16973
+ };
16915
16974
  export declare type CustomerServiceNote = {
16916
16975
  __typename?: 'CustomerServiceNote';
16917
16976
  author: CustomerServiceNoteAuthor;
@@ -17124,6 +17183,7 @@ export declare type CustomerServiceQueryApi = {
17124
17183
  productConnections?: Maybe<CustomerServiceProductConnection>;
17125
17184
  products?: Maybe<CustomerServiceProductQueryResult>;
17126
17185
  templateFormById?: Maybe<CustomerServiceTemplateFormQueryResult>;
17186
+ templateForms?: Maybe<CustomerServiceTemplateFormConnection>;
17127
17187
  };
17128
17188
  export declare type CustomerServiceQueryApiCustomDetailsByEntityTypeArgs = {
17129
17189
  customDetailsEntityType: CustomerServiceCustomDetailsEntityType;
@@ -17154,6 +17214,11 @@ export declare type CustomerServiceQueryApiTemplateFormByIdArgs = {
17154
17214
  helpCenterId: Scalars['ID']['input'];
17155
17215
  templateFormId: Scalars['ID']['input'];
17156
17216
  };
17217
+ export declare type CustomerServiceQueryApiTemplateFormsArgs = {
17218
+ after?: InputMaybe<Scalars['String']['input']>;
17219
+ first?: InputMaybe<Scalars['Int']['input']>;
17220
+ helpCenterId: Scalars['ID']['input'];
17221
+ };
17157
17222
  export declare type CustomerServiceRoutingRule = {
17158
17223
  __typename?: 'CustomerServiceRoutingRule';
17159
17224
  id: Scalars['ID']['output'];
@@ -17176,7 +17241,47 @@ export declare type CustomerServiceTemplateForm = Node & {
17176
17241
  id: Scalars['ID']['output'];
17177
17242
  name?: Maybe<Scalars['String']['output']>;
17178
17243
  };
17244
+ export declare type CustomerServiceTemplateFormConnection = {
17245
+ __typename?: 'CustomerServiceTemplateFormConnection';
17246
+ edges: Array<CustomerServiceTemplateFormEdge>;
17247
+ pageInfo: PageInfo;
17248
+ };
17249
+ export declare type CustomerServiceTemplateFormCreateInput = {
17250
+ defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
17251
+ helpCenterId: Scalars['ID']['input'];
17252
+ name: Scalars['String']['input'];
17253
+ };
17254
+ export declare type CustomerServiceTemplateFormCreatePayload = Payload & {
17255
+ __typename?: 'CustomerServiceTemplateFormCreatePayload';
17256
+ errors?: Maybe<Array<MutationError>>;
17257
+ success: Scalars['Boolean']['output'];
17258
+ successfullyCreatedTemplateForm?: Maybe<CustomerServiceTemplateFormEdge>;
17259
+ };
17260
+ export declare type CustomerServiceTemplateFormDeleteInput = {
17261
+ helpCenterId: Scalars['ID']['input'];
17262
+ templateFormId: Scalars['ID']['input'];
17263
+ };
17264
+ export declare type CustomerServiceTemplateFormDeletePayload = Payload & {
17265
+ __typename?: 'CustomerServiceTemplateFormDeletePayload';
17266
+ errors?: Maybe<Array<MutationError>>;
17267
+ success: Scalars['Boolean']['output'];
17268
+ };
17269
+ export declare type CustomerServiceTemplateFormEdge = {
17270
+ __typename?: 'CustomerServiceTemplateFormEdge';
17271
+ cursor: Scalars['String']['output'];
17272
+ node?: Maybe<CustomerServiceTemplateForm>;
17273
+ };
17179
17274
  export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemplateForm | QueryError;
17275
+ export declare type CustomerServiceTemplateFormUpdateInput = {
17276
+ defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
17277
+ name?: InputMaybe<Scalars['String']['input']>;
17278
+ };
17279
+ export declare type CustomerServiceTemplateFormUpdatePayload = Payload & {
17280
+ __typename?: 'CustomerServiceTemplateFormUpdatePayload';
17281
+ errors?: Maybe<Array<MutationError>>;
17282
+ success: Scalars['Boolean']['output'];
17283
+ successfullyCreatedTemplateForm?: Maybe<CustomerServiceTemplateFormEdge>;
17284
+ };
17180
17285
  export declare type CustomerServiceUpdateCustomDetailContextConfigsPayload = Payload & {
17181
17286
  __typename?: 'CustomerServiceUpdateCustomDetailContextConfigsPayload';
17182
17287
  errors?: Maybe<Array<MutationError>>;
@@ -43314,6 +43419,7 @@ export declare type JiraDetailedView = JiraIssueSearchViewType & JiraView & Node
43314
43419
  export declare type JiraDetailedViewIssuesArgs = {
43315
43420
  after?: InputMaybe<Scalars['String']['input']>;
43316
43421
  before?: InputMaybe<Scalars['String']['input']>;
43422
+ fieldSetsInput?: InputMaybe<JiraIssueSearchFieldSetsInput>;
43317
43423
  first?: InputMaybe<Scalars['Int']['input']>;
43318
43424
  issueSearchInput: JiraIssueSearchInput;
43319
43425
  last?: InputMaybe<Scalars['Int']['input']>;
@@ -44816,6 +44922,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
44816
44922
  fields?: Maybe<JiraIssueFieldConnection>;
44817
44923
  fieldsById?: Maybe<JiraIssueFieldConnection>;
44818
44924
  fieldsByIdOrAlias?: Maybe<Array<Maybe<JiraIssueField>>>;
44925
+ groupsByFieldId?: Maybe<JiraSpreadsheetGroupConnection>;
44819
44926
  hasChildren?: Maybe<Scalars['Boolean']['output']>;
44820
44927
  hasCustomisedContentPanels?: Maybe<Scalars['Boolean']['output']>;
44821
44928
  hasProjectPermission?: Maybe<Scalars['Boolean']['output']>;
@@ -44969,6 +45076,15 @@ export declare type JiraIssueFieldsByIdOrAliasArgs = {
44969
45076
  idsOrAliases: Array<InputMaybe<Scalars['String']['input']>>;
44970
45077
  ignoreMissingFields?: InputMaybe<Scalars['Boolean']['input']>;
44971
45078
  };
45079
+ export declare type JiraIssueGroupsByFieldIdArgs = {
45080
+ after?: InputMaybe<Scalars['String']['input']>;
45081
+ before?: InputMaybe<Scalars['String']['input']>;
45082
+ fieldId: Scalars['String']['input'];
45083
+ first?: InputMaybe<Scalars['Int']['input']>;
45084
+ firstNGroupsToSearch?: InputMaybe<Scalars['Int']['input']>;
45085
+ issueSearchInput: JiraIssueSearchInput;
45086
+ last?: InputMaybe<Scalars['Int']['input']>;
45087
+ };
44972
45088
  export declare type JiraIssueHasChildrenArgs = {
44973
45089
  filterByProjectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
44974
45090
  };
@@ -53112,6 +53228,8 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
53112
53228
  };
53113
53229
  export declare type JiraSpreadsheetGroup = {
53114
53230
  __typename?: 'JiraSpreadsheetGroup';
53231
+ afterGroupId?: Maybe<Scalars['String']['output']>;
53232
+ beforeGroupId?: Maybe<Scalars['String']['output']>;
53115
53233
  fieldId?: Maybe<Scalars['String']['output']>;
53116
53234
  fieldType?: Maybe<Scalars['String']['output']>;
53117
53235
  fieldValue?: Maybe<JiraJqlFieldValue>;
@@ -53153,6 +53271,7 @@ export declare type JiraSpreadsheetGroupConnection = {
53153
53271
  edges?: Maybe<Array<Maybe<JiraSpreadsheetGroupEdge>>>;
53154
53272
  errors?: Maybe<Array<QueryError>>;
53155
53273
  firstGroup?: Maybe<JiraSpreadsheetGroup>;
53274
+ jql?: Maybe<Scalars['String']['output']>;
53156
53275
  pageInfo: PageInfo;
53157
53276
  totalCount?: Maybe<Scalars['Int']['output']>;
53158
53277
  };
@@ -59235,6 +59354,7 @@ export declare type MercuryFocusArea = Node & {
59235
59354
  headcountAggregation?: Maybe<MercuryHeadcountAggregation>;
59236
59355
  health?: Maybe<MercuryFocusAreaHealth>;
59237
59356
  id: Scalars['ID']['output'];
59357
+ linkedGoalSummary?: Maybe<MercuryFocusAreaLinkedGoalSummary>;
59238
59358
  linkedWorkSummary?: Maybe<MercuryFocusAreaLinkedWorkSummary>;
59239
59359
  name: Scalars['String']['output'];
59240
59360
  owner?: Maybe<User>;
@@ -59357,9 +59477,15 @@ export declare type MercuryFocusAreaLink = Node & {
59357
59477
  id: Scalars['ID']['output'];
59358
59478
  parentFocusAreaId: Scalars['String']['output'];
59359
59479
  };
59480
+ export declare type MercuryFocusAreaLinkedGoalSummary = {
59481
+ __typename?: 'MercuryFocusAreaLinkedGoalSummary';
59482
+ count: Scalars['Int']['output'];
59483
+ countIncludingSubFocusAreas?: Maybe<Scalars['Int']['output']>;
59484
+ };
59360
59485
  export declare type MercuryFocusAreaLinkedWorkSummary = {
59361
59486
  __typename?: 'MercuryFocusAreaLinkedWorkSummary';
59362
59487
  count: Scalars['Int']['output'];
59488
+ countIncludingSubFocusAreas?: Maybe<Scalars['Int']['output']>;
59363
59489
  };
59364
59490
  export declare type MercuryFocusAreaLinks = {
59365
59491
  __typename?: 'MercuryFocusAreaLinks';
@@ -59741,6 +59867,7 @@ export declare type MercuryPortfolio = Node & {
59741
59867
  ari: Scalars['String']['output'];
59742
59868
  funding?: Maybe<MercuryPortfolioFunding>;
59743
59869
  id: Scalars['ID']['output'];
59870
+ label?: Maybe<Scalars['String']['output']>;
59744
59871
  linkedFocusAreaGoalCount: Scalars['Int']['output'];
59745
59872
  linkedFocusAreaSummary?: Maybe<MercuryPortfolioFocusAreaSummary>;
59746
59873
  name: Scalars['String']['output'];
@@ -62127,6 +62254,7 @@ export declare type PeapProgram = {
62127
62254
  __typename?: 'PEAPProgram';
62128
62255
  activatedAt?: Maybe<Scalars['Date']['output']>;
62129
62256
  cdacCategory?: Maybe<Scalars['Int']['output']>;
62257
+ cdacCategoryURL?: Maybe<Scalars['String']['output']>;
62130
62258
  changeTicket?: Maybe<Scalars['String']['output']>;
62131
62259
  completedAt?: Maybe<Scalars['Date']['output']>;
62132
62260
  createdAt: Scalars['Date']['output'];
@@ -62171,6 +62299,8 @@ export declare type PeapProgramEnrollmentQueryJiraArgs = {
62171
62299
  export declare type PeapProgramInternalData = {
62172
62300
  __typename?: 'PEAPProgramInternalData';
62173
62301
  cdacGroup?: Maybe<Scalars['String']['output']>;
62302
+ cdacGroupURL?: Maybe<Scalars['String']['output']>;
62303
+ changeTicketURL?: Maybe<Scalars['String']['output']>;
62174
62304
  owner?: Maybe<User>;
62175
62305
  };
62176
62306
  export declare type PeapProgramMutationResponse = Payload & {
@@ -63304,6 +63434,7 @@ export declare type Query = {
63304
63434
  appLogs?: Maybe<AppLogConnection>;
63305
63435
  appLogsWithMetaData?: Maybe<AppLogsWithMetaDataResponse>;
63306
63436
  appRecommendations?: Maybe<AppRecQuery>;
63437
+ appStorage_sqlDatabase?: Maybe<AppStorageSqlDatabasePayload>;
63307
63438
  appStoredCustomEntities?: Maybe<AppStoredCustomEntityConnection>;
63308
63439
  appStoredCustomEntity?: Maybe<AppStoredCustomEntity>;
63309
63440
  appStoredEntities?: Maybe<AppStoredEntityConnection>;
@@ -63657,6 +63788,7 @@ export declare type Query = {
63657
63788
  productListing?: Maybe<ProductListingResult>;
63658
63789
  productListings: Array<ProductListingResult>;
63659
63790
  radar_fieldValues?: Maybe<RadarFieldValuesConnection>;
63791
+ radar_groupMetrics?: Maybe<RadarGroupMetricsConnection>;
63660
63792
  radar_positions?: Maybe<RadarPositionConnection>;
63661
63793
  radar_workspace: RadarWorkspace;
63662
63794
  releaseNote?: Maybe<ContentPlatformReleaseNote>;
@@ -63752,6 +63884,9 @@ export declare type QueryAppLogsWithMetaDataArgs = {
63752
63884
  query?: InputMaybe<LogQueryInput>;
63753
63885
  queryStartTime: Scalars['String']['input'];
63754
63886
  };
63887
+ export declare type QueryAppStorage_SqlDatabaseArgs = {
63888
+ input?: InputMaybe<AppStorageSqlDatabaseInput>;
63889
+ };
63755
63890
  export declare type QueryAppStoredCustomEntitiesArgs = {
63756
63891
  contextAri: Scalars['ID']['input'];
63757
63892
  cursor?: InputMaybe<Scalars['String']['input']>;
@@ -65071,6 +65206,15 @@ export declare type QueryRadar_FieldValuesArgs = {
65071
65206
  rql?: InputMaybe<Scalars['String']['input']>;
65072
65207
  uniqueFieldId: Scalars['ID']['input'];
65073
65208
  };
65209
+ export declare type QueryRadar_GroupMetricsArgs = {
65210
+ after?: InputMaybe<Scalars['String']['input']>;
65211
+ before?: InputMaybe<Scalars['String']['input']>;
65212
+ cloudId: Scalars['ID']['input'];
65213
+ first?: InputMaybe<Scalars['Int']['input']>;
65214
+ last?: InputMaybe<Scalars['Int']['input']>;
65215
+ rql?: InputMaybe<Scalars['String']['input']>;
65216
+ uniqueFieldIdIsIn: Array<Scalars['ID']['input']>;
65217
+ };
65074
65218
  export declare type QueryRadar_PositionsArgs = {
65075
65219
  after?: InputMaybe<Scalars['String']['input']>;
65076
65220
  before?: InputMaybe<Scalars['String']['input']>;
@@ -65307,6 +65451,25 @@ export declare type RadarFocusAreaMappingsInput = {
65307
65451
  focusAreaAri: Scalars['ID']['input'];
65308
65452
  positionId: Scalars['ID']['input'];
65309
65453
  };
65454
+ export declare type RadarGroupMetrics = {
65455
+ __typename?: 'RadarGroupMetrics';
65456
+ count: Scalars['Int']['output'];
65457
+ field: RadarFieldValueIdPair;
65458
+ subGroups: Array<RadarGroupMetrics>;
65459
+ };
65460
+ export declare type RadarGroupMetricsConnection = RadarConnection & {
65461
+ __typename?: 'RadarGroupMetricsConnection';
65462
+ edges?: Maybe<Array<RadarGroupMetricsEdge>>;
65463
+ nodes?: Maybe<Array<RadarGroupMetrics>>;
65464
+ pageInfo: PageInfo;
65465
+ rowCount: Scalars['Int']['output'];
65466
+ totalCount: Scalars['Int']['output'];
65467
+ };
65468
+ export declare type RadarGroupMetricsEdge = RadarEdge & {
65469
+ __typename?: 'RadarGroupMetricsEdge';
65470
+ cursor: Scalars['String']['output'];
65471
+ node: RadarGroupMetrics;
65472
+ };
65310
65473
  export declare type RadarMutationResponse = {
65311
65474
  __typename?: 'RadarMutationResponse';
65312
65475
  success?: Maybe<Scalars['Boolean']['output']>;
@@ -66865,6 +67028,7 @@ export declare type SearchJiraFilter = {
66865
67028
  };
66866
67029
  export declare type SearchJiraIssueFilter = {
66867
67030
  assigneeARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
67031
+ issueTypeIDs?: InputMaybe<Array<Scalars['ID']['input']>>;
66868
67032
  projectARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
66869
67033
  reporterARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
66870
67034
  statusCategories?: InputMaybe<Array<SearchIssueStatusCategory>>;
@@ -67134,6 +67298,7 @@ export declare type SearchResultJiraIssue = SearchResult & {
67134
67298
  iconUrl?: Maybe<Scalars['URL']['output']>;
67135
67299
  id: Scalars['ID']['output'];
67136
67300
  issue?: Maybe<JiraIssue>;
67301
+ issueTypeId: Scalars['String']['output'];
67137
67302
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
67138
67303
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
67139
67304
  socialSignal?: Maybe<SocialSignalSearch>;
@@ -71023,7 +71188,6 @@ export declare type TrelloAssignCardToPlannerCalendarEventPayload = Payload & {
71023
71188
  __typename?: 'TrelloAssignCardToPlannerCalendarEventPayload';
71024
71189
  errors?: Maybe<Array<MutationError>>;
71025
71190
  event?: Maybe<TrelloPlannerCalendarEvent>;
71026
- eventCard?: Maybe<TrelloPlannerCalendarEventCardConnectionUpdated>;
71027
71191
  success: Scalars['Boolean']['output'];
71028
71192
  };
71029
71193
  export declare type TrelloAtlassianIntelligence = {
@@ -71575,6 +71739,7 @@ export declare type TrelloCreateOrUpdatePlannerCalendarPayload = Payload & {
71575
71739
  __typename?: 'TrelloCreateOrUpdatePlannerCalendarPayload';
71576
71740
  errors?: Maybe<Array<MutationError>>;
71577
71741
  plannerCalendar?: Maybe<TrelloPlannerCalendarConnection>;
71742
+ plannerCalendarAccount?: Maybe<TrelloPlannerCalendarAccount>;
71578
71743
  plannerCalendarUpdated?: Maybe<TrelloPlannerCalendarConnectionUpdated>;
71579
71744
  success: Scalars['Boolean']['output'];
71580
71745
  };
@@ -72103,11 +72268,6 @@ export declare type TrelloPlannerCalendarEventCardConnection = {
72103
72268
  nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
72104
72269
  pageInfo: PageInfo;
72105
72270
  };
72106
- export declare type TrelloPlannerCalendarEventCardConnectionUpdated = {
72107
- __typename?: 'TrelloPlannerCalendarEventCardConnectionUpdated';
72108
- edges?: Maybe<Array<TrelloPlannerCalendarEventCardEdge>>;
72109
- nodes?: Maybe<Array<TrelloPlannerCalendarEventCard>>;
72110
- };
72111
72271
  export declare type TrelloPlannerCalendarEventCardEdge = {
72112
72272
  __typename?: 'TrelloPlannerCalendarEventCardEdge';
72113
72273
  cursor?: Maybe<Scalars['String']['output']>;
@@ -72645,6 +72805,7 @@ export declare type UnifiedAccount = UnifiedINode & {
72645
72805
  export declare type UnifiedAccount2 = UnifiedINode & {
72646
72806
  __typename?: 'UnifiedAccount2';
72647
72807
  aaid?: Maybe<Scalars['String']['output']>;
72808
+ emailId?: Maybe<Scalars['String']['output']>;
72648
72809
  id: Scalars['ID']['output'];
72649
72810
  internalId?: Maybe<Scalars['String']['output']>;
72650
72811
  isLinked?: Maybe<Scalars['Boolean']['output']>;