@forge/cli-shared 8.8.1-next.4 → 8.8.1-next.5

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.
@@ -583,6 +583,15 @@ export declare type AvpDeleteDashboardFilterPayload = Payload & {
583
583
  errors?: Maybe<Array<MutationError>>;
584
584
  success: Scalars['Boolean']['output'];
585
585
  };
586
+ export declare type AvpDeleteVariableInput = {
587
+ dashboardAri: Scalars['ID']['input'];
588
+ name: Scalars['String']['input'];
589
+ };
590
+ export declare type AvpDeleteVariablePayload = Payload & {
591
+ __typename?: 'AVPDeleteVariablePayload';
592
+ errors?: Maybe<Array<MutationError>>;
593
+ success: Scalars['Boolean']['output'];
594
+ };
586
595
  export declare type AvpEnvVar = {
587
596
  __typename?: 'AVPEnvVar';
588
597
  chartId?: Maybe<Scalars['ID']['output']>;
@@ -832,8 +841,23 @@ export declare type AvpUpdateDashboardStatusPayload = Payload & {
832
841
  errors?: Maybe<Array<MutationError>>;
833
842
  success: Scalars['Boolean']['output'];
834
843
  };
844
+ export declare type AvpUpdateVariableInput = {
845
+ dashboardAri: Scalars['ID']['input'];
846
+ envVar: AvpVariableEnvVarInput;
847
+ };
848
+ export declare type AvpUpdateVariablePayload = Payload & {
849
+ __typename?: 'AVPUpdateVariablePayload';
850
+ envVar?: Maybe<AvpEnvVarWithChart>;
851
+ errors?: Maybe<Array<MutationError>>;
852
+ success: Scalars['Boolean']['output'];
853
+ };
854
+ export declare type AvpVariableEnvVarInput = {
855
+ defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
856
+ metadata?: InputMaybe<Scalars['String']['input']>;
857
+ name?: InputMaybe<Scalars['String']['input']>;
858
+ };
835
859
  export declare type AvpVariableInput = {
836
- chartType?: InputMaybe<AvpEnvVarChartType>;
860
+ chartType?: InputMaybe<Scalars['String']['input']>;
837
861
  dataType?: InputMaybe<AvpEnvVarDataType>;
838
862
  defaultValues?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
839
863
  metadata?: InputMaybe<Scalars['String']['input']>;
@@ -1673,6 +1697,10 @@ export declare type AdminErrorExtension = {
1673
1697
  errorType?: Maybe<Scalars['String']['output']>;
1674
1698
  statusCode?: Maybe<Scalars['Int']['output']>;
1675
1699
  };
1700
+ export declare type AdminEventAction = {
1701
+ __typename?: 'AdminEventAction';
1702
+ name: Scalars['String']['output'];
1703
+ };
1676
1704
  export declare type AdminExternalCollaboratorFeature = {
1677
1705
  __typename?: 'AdminExternalCollaboratorFeature';
1678
1706
  enabled?: Maybe<Scalars['Boolean']['output']>;
@@ -1731,6 +1759,21 @@ export declare type AdminGroupEdge = {
1731
1759
  cursor: Scalars['String']['output'];
1732
1760
  node?: Maybe<AdminGroup>;
1733
1761
  };
1762
+ export declare type AdminGroupEventAction = {
1763
+ __typename?: 'AdminGroupEventAction';
1764
+ eventActions: Array<AdminEventAction>;
1765
+ name: Scalars['String']['output'];
1766
+ };
1767
+ export declare type AdminGroupEventActionConnection = {
1768
+ __typename?: 'AdminGroupEventActionConnection';
1769
+ edges?: Maybe<Array<AdminGroupEventActionEdge>>;
1770
+ pageInfo: PageInfo;
1771
+ };
1772
+ export declare type AdminGroupEventActionEdge = {
1773
+ __typename?: 'AdminGroupEventActionEdge';
1774
+ cursor: Scalars['String']['output'];
1775
+ node?: Maybe<AdminGroupEventAction>;
1776
+ };
1734
1777
  export declare type AdminGroupStatsQueryInput = {
1735
1778
  includeResources?: InputMaybe<Scalars['Boolean']['input']>;
1736
1779
  includeUsers?: InputMaybe<Scalars['Boolean']['input']>;
@@ -22219,6 +22262,7 @@ export declare type CplsAddContributorWorkAssociationPayload = Payload & {
22219
22262
  export declare type CplsCapacityPlanningPeopleView = {
22220
22263
  __typename?: 'CplsCapacityPlanningPeopleView';
22221
22264
  contributor?: Maybe<CplsContributor>;
22265
+ contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
22222
22266
  contributors: CplsContributorConnection;
22223
22267
  id: Scalars['ID']['output'];
22224
22268
  timeCells: Array<CplsTimeCell>;
@@ -26207,6 +26251,11 @@ export declare type DevAiRovoDevRepositoryInput = {
26207
26251
  targetBranch?: InputMaybe<Scalars['String']['input']>;
26208
26252
  url?: InputMaybe<Scalars['String']['input']>;
26209
26253
  };
26254
+ export declare enum DevAiRovoDevSandboxStatus {
26255
+ Created = "CREATED",
26256
+ Started = "STARTED",
26257
+ Stopped = "STOPPED"
26258
+ }
26210
26259
  export declare type DevAiRovoDevSession = Node & {
26211
26260
  __typename?: 'DevAiRovoDevSession';
26212
26261
  accountId?: Maybe<Scalars['ID']['output']>;
@@ -26224,6 +26273,7 @@ export declare type DevAiRovoDevSession = Node & {
26224
26273
  prUrl?: Maybe<Scalars['String']['output']>;
26225
26274
  promptAdf?: Maybe<Scalars['JSON']['output']>;
26226
26275
  repository?: Maybe<DevAiRovoDevRepository>;
26276
+ sandboxStatus?: Maybe<DevAiRovoDevSandboxStatus>;
26227
26277
  sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
26228
26278
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
26229
26279
  workspaceAri?: Maybe<Scalars['ID']['output']>;
@@ -32998,6 +33048,12 @@ export declare enum GraphIntegrationStatus {
32998
33048
  Disabled = "DISABLED",
32999
33049
  Enabled = "ENABLED"
33000
33050
  }
33051
+ export declare enum GraphIntegrationSurface {
33052
+ Automation = "AUTOMATION",
33053
+ Pollinator = "POLLINATOR",
33054
+ Rovo = "ROVO",
33055
+ Studio = "STUDIO"
33056
+ }
33001
33057
  export declare type GraphIntegrationTwgCapabilityContainer = {
33002
33058
  __typename?: 'GraphIntegrationTwgCapabilityContainer';
33003
33059
  connections: Array<GraphIntegrationDataConnectorConnection>;
@@ -36373,8 +36429,6 @@ export declare type GraphStore = {
36373
36429
  userHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseConnection>;
36374
36430
  userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
36375
36431
  userHasRelevantProjectInverse?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectInverseConnection>;
36376
- userHasTopCollaborator?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorConnection>;
36377
- userHasTopCollaboratorInverse?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorInverseConnection>;
36378
36432
  userHasTopProject?: Maybe<GraphStoreSimplifiedUserHasTopProjectConnection>;
36379
36433
  userHasTopProjectInverse?: Maybe<GraphStoreSimplifiedUserHasTopProjectInverseConnection>;
36380
36434
  userIsInTeam?: Maybe<GraphStoreSimplifiedUserIsInTeamConnection>;
@@ -40917,20 +40971,6 @@ export declare type GraphStoreUserHasRelevantProjectInverseArgs = {
40917
40971
  id: Scalars['ID']['input'];
40918
40972
  sort?: InputMaybe<GraphStoreUserHasRelevantProjectSortInput>;
40919
40973
  };
40920
- export declare type GraphStoreUserHasTopCollaboratorArgs = {
40921
- after?: InputMaybe<Scalars['String']['input']>;
40922
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40923
- first?: InputMaybe<Scalars['Int']['input']>;
40924
- id: Scalars['ID']['input'];
40925
- sort?: InputMaybe<GraphStoreUserHasTopCollaboratorSortInput>;
40926
- };
40927
- export declare type GraphStoreUserHasTopCollaboratorInverseArgs = {
40928
- after?: InputMaybe<Scalars['String']['input']>;
40929
- consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
40930
- first?: InputMaybe<Scalars['Int']['input']>;
40931
- id: Scalars['ID']['input'];
40932
- sort?: InputMaybe<GraphStoreUserHasTopCollaboratorSortInput>;
40933
- };
40934
40974
  export declare type GraphStoreUserHasTopProjectArgs = {
40935
40975
  after?: InputMaybe<Scalars['String']['input']>;
40936
40976
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -43905,7 +43945,7 @@ export declare type GraphStoreCypherQueryResultRowItem = {
43905
43945
  value: Array<GraphStoreCypherQueryValueNode>;
43906
43946
  valueUnion?: Maybe<GraphStoreCypherQueryResultRowItemValueUnion>;
43907
43947
  };
43908
- export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject;
43948
+ export declare type GraphStoreCypherQueryResultRowItemValueUnion = GraphStoreCypherQueryBooleanObject | GraphStoreCypherQueryFloatObject | GraphStoreCypherQueryIntObject | GraphStoreCypherQueryResultNodeList | GraphStoreCypherQueryStringObject | GraphStoreCypherQueryTimestampObject;
43909
43949
  export declare type GraphStoreCypherQueryRowItemNode = {
43910
43950
  __typename?: 'GraphStoreCypherQueryRowItemNode';
43911
43951
  data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
@@ -43916,6 +43956,10 @@ export declare type GraphStoreCypherQueryStringObject = {
43916
43956
  __typename?: 'GraphStoreCypherQueryStringObject';
43917
43957
  value: Scalars['String']['output'];
43918
43958
  };
43959
+ export declare type GraphStoreCypherQueryTimestampObject = {
43960
+ __typename?: 'GraphStoreCypherQueryTimestampObject';
43961
+ value: Scalars['Long']['output'];
43962
+ };
43919
43963
  export declare type GraphStoreCypherQueryV2AriNode = {
43920
43964
  __typename?: 'GraphStoreCypherQueryV2AriNode';
43921
43965
  data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
@@ -43974,11 +44018,15 @@ export declare type GraphStoreCypherQueryV2BatchQueryResult = {
43974
44018
  pageInfo: PageInfo;
43975
44019
  version: Scalars['String']['output'];
43976
44020
  };
43977
- export declare type GraphStoreCypherQueryV2BatchResultRowItemValueUnion = GraphStoreCypherQueryV2BatchAriNode | GraphStoreCypherQueryV2BatchBooleanObject | GraphStoreCypherQueryV2BatchFloatObject | GraphStoreCypherQueryV2BatchIntObject | GraphStoreCypherQueryV2BatchNodeList | GraphStoreCypherQueryV2BatchStringObject;
44021
+ export declare type GraphStoreCypherQueryV2BatchResultRowItemValueUnion = GraphStoreCypherQueryV2BatchAriNode | GraphStoreCypherQueryV2BatchBooleanObject | GraphStoreCypherQueryV2BatchFloatObject | GraphStoreCypherQueryV2BatchIntObject | GraphStoreCypherQueryV2BatchNodeList | GraphStoreCypherQueryV2BatchStringObject | GraphStoreCypherQueryV2BatchTimestampObject;
43978
44022
  export declare type GraphStoreCypherQueryV2BatchStringObject = {
43979
44023
  __typename?: 'GraphStoreCypherQueryV2BatchStringObject';
43980
44024
  value: Scalars['String']['output'];
43981
44025
  };
44026
+ export declare type GraphStoreCypherQueryV2BatchTimestampObject = {
44027
+ __typename?: 'GraphStoreCypherQueryV2BatchTimestampObject';
44028
+ value: Scalars['Long']['output'];
44029
+ };
43982
44030
  export declare enum GraphStoreCypherQueryV2BatchVersionEnum {
43983
44031
  V2 = "V2",
43984
44032
  V3 = "V3"
@@ -44019,11 +44067,15 @@ export declare type GraphStoreCypherQueryV2NodeList = {
44019
44067
  __typename?: 'GraphStoreCypherQueryV2NodeList';
44020
44068
  nodes: Array<GraphStoreCypherQueryV2AriNode>;
44021
44069
  };
44022
- export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2StringObject;
44070
+ export declare type GraphStoreCypherQueryV2ResultRowItemValueUnion = GraphStoreCypherQueryV2AriNode | GraphStoreCypherQueryV2BooleanObject | GraphStoreCypherQueryV2FloatObject | GraphStoreCypherQueryV2IntObject | GraphStoreCypherQueryV2NodeList | GraphStoreCypherQueryV2StringObject | GraphStoreCypherQueryV2TimestampObject;
44023
44071
  export declare type GraphStoreCypherQueryV2StringObject = {
44024
44072
  __typename?: 'GraphStoreCypherQueryV2StringObject';
44025
44073
  value: Scalars['String']['output'];
44026
44074
  };
44075
+ export declare type GraphStoreCypherQueryV2TimestampObject = {
44076
+ __typename?: 'GraphStoreCypherQueryV2TimestampObject';
44077
+ value: Scalars['Long']['output'];
44078
+ };
44027
44079
  export declare enum GraphStoreCypherQueryV2VersionEnum {
44028
44080
  V2 = "V2",
44029
44081
  V3 = "V3"
@@ -55907,34 +55959,6 @@ export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseEdge = {
55907
55959
  };
55908
55960
  export declare type GraphStoreSimplifiedUserHasRelevantProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
55909
55961
  export declare type GraphStoreSimplifiedUserHasRelevantProjectUnion = JiraProject;
55910
- export declare type GraphStoreSimplifiedUserHasTopCollaboratorConnection = HasPageInfo & {
55911
- __typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorConnection';
55912
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopCollaboratorEdge>>>;
55913
- pageInfo: PageInfo;
55914
- };
55915
- export declare type GraphStoreSimplifiedUserHasTopCollaboratorEdge = {
55916
- __typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorEdge';
55917
- createdAt: Scalars['DateTime']['output'];
55918
- cursor?: Maybe<Scalars['String']['output']>;
55919
- id: Scalars['ID']['output'];
55920
- lastUpdated: Scalars['DateTime']['output'];
55921
- node?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorUnion>;
55922
- };
55923
- export declare type GraphStoreSimplifiedUserHasTopCollaboratorInverseConnection = HasPageInfo & {
55924
- __typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorInverseConnection';
55925
- edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopCollaboratorInverseEdge>>>;
55926
- pageInfo: PageInfo;
55927
- };
55928
- export declare type GraphStoreSimplifiedUserHasTopCollaboratorInverseEdge = {
55929
- __typename?: 'GraphStoreSimplifiedUserHasTopCollaboratorInverseEdge';
55930
- createdAt: Scalars['DateTime']['output'];
55931
- cursor?: Maybe<Scalars['String']['output']>;
55932
- id: Scalars['ID']['output'];
55933
- lastUpdated: Scalars['DateTime']['output'];
55934
- node?: Maybe<GraphStoreSimplifiedUserHasTopCollaboratorInverseUnion>;
55935
- };
55936
- export declare type GraphStoreSimplifiedUserHasTopCollaboratorInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
55937
- export declare type GraphStoreSimplifiedUserHasTopCollaboratorUnion = AppUser | AtlassianAccountUser | CustomerUser;
55938
55962
  export declare type GraphStoreSimplifiedUserHasTopProjectConnection = HasPageInfo & {
55939
55963
  __typename?: 'GraphStoreSimplifiedUserHasTopProjectConnection';
55940
55964
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasTopProjectEdge>>>;
@@ -58276,9 +58300,6 @@ export declare type GraphStoreUserHasRelevantProjectSortInput = {
58276
58300
  lastModified?: InputMaybe<GraphStoreSortInput>;
58277
58301
  toAti?: InputMaybe<GraphStoreSortInput>;
58278
58302
  };
58279
- export declare type GraphStoreUserHasTopCollaboratorSortInput = {
58280
- lastModified?: InputMaybe<GraphStoreSortInput>;
58281
- };
58282
58303
  export declare type GraphStoreUserHasTopProjectSortInput = {
58283
58304
  lastModified?: InputMaybe<GraphStoreSortInput>;
58284
58305
  };
@@ -63730,6 +63751,8 @@ export declare type JiraBacklogColorConfig = {
63730
63751
  export declare type JiraBacklogColumn = {
63731
63752
  __typename?: 'JiraBacklogColumn';
63732
63753
  id?: Maybe<Scalars['Long']['output']>;
63754
+ max?: Maybe<Scalars['Int']['output']>;
63755
+ min?: Maybe<Scalars['Int']['output']>;
63733
63756
  name?: Maybe<Scalars['String']['output']>;
63734
63757
  statusIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
63735
63758
  };
@@ -63752,6 +63775,11 @@ export declare type JiraBacklogData = {
63752
63775
  supportsPages?: Maybe<Scalars['Boolean']['output']>;
63753
63776
  versionData?: Maybe<JiraBacklogVersionData>;
63754
63777
  };
63778
+ export declare enum JiraBacklogDestination {
63779
+ Backlog = "BACKLOG",
63780
+ Board = "BOARD",
63781
+ Sprint = "SPRINT"
63782
+ }
63755
63783
  export declare type JiraBacklogEpicConfig = {
63756
63784
  __typename?: 'JiraBacklogEpicConfig';
63757
63785
  colorFieldId?: Maybe<Scalars['String']['output']>;
@@ -69247,6 +69275,38 @@ export declare type JiraInitializeProjectNotificationPreferencesPayload = Payloa
69247
69275
  projectPreferences?: Maybe<JiraNotificationProjectPreferences>;
69248
69276
  success: Scalars['Boolean']['output'];
69249
69277
  };
69278
+ export declare type JiraInlineIssueCreateField = {
69279
+ __typename?: 'JiraInlineIssueCreateField';
69280
+ error?: Maybe<JiraInlineIssueCreateFieldError>;
69281
+ fieldId: Scalars['String']['output'];
69282
+ fieldName?: Maybe<Scalars['String']['output']>;
69283
+ };
69284
+ export declare type JiraInlineIssueCreateFieldError = {
69285
+ __typename?: 'JiraInlineIssueCreateFieldError';
69286
+ errorMessage?: Maybe<Scalars['String']['output']>;
69287
+ errorType?: Maybe<Scalars['String']['output']>;
69288
+ };
69289
+ export declare type JiraInlineIssueCreateInput = {
69290
+ boardId?: InputMaybe<Scalars['ID']['input']>;
69291
+ destination?: InputMaybe<JiraBacklogDestination>;
69292
+ fields: JiraIssueFieldsInput;
69293
+ issueTypeId: Scalars['ID']['input'];
69294
+ projectId: Scalars['ID']['input'];
69295
+ rank?: InputMaybe<JiraIssueCreateRankInput>;
69296
+ };
69297
+ export declare type JiraInlineIssueCreatePayload = Payload & {
69298
+ __typename?: 'JiraInlineIssueCreatePayload';
69299
+ errors?: Maybe<Array<MutationError>>;
69300
+ issue?: Maybe<JiraIssue>;
69301
+ skippedFields?: Maybe<Array<JiraInlineIssueCreateField>>;
69302
+ success: Scalars['Boolean']['output'];
69303
+ };
69304
+ export declare type JiraInlineIssuesCreatePayload = Payload & {
69305
+ __typename?: 'JiraInlineIssuesCreatePayload';
69306
+ errors?: Maybe<Array<MutationError>>;
69307
+ issues?: Maybe<Array<JiraInlineIssueCreatePayload>>;
69308
+ success: Scalars['Boolean']['output'];
69309
+ };
69250
69310
  export declare enum JiraInstallDeploymentsBannerPrecondition {
69251
69311
  DeploymentsEmptyState = "DEPLOYMENTS_EMPTY_STATE",
69252
69312
  FeatureNotEnabled = "FEATURE_NOT_ENABLED",
@@ -82707,6 +82767,7 @@ export declare type JiraUserPreferences = {
82707
82767
  issueViewActivityLayout?: Maybe<JiraIssueViewActivityLayout>;
82708
82768
  issueViewAttachmentPanelViewMode?: Maybe<JiraIssueViewAttachmentPanelViewMode>;
82709
82769
  issueViewCollapsibleSectionsState?: Maybe<JiraIssueViewCollapsibleSections>;
82770
+ issueViewContextPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
82710
82771
  issueViewDefaultPinnedFieldsBannerProject?: Maybe<Scalars['String']['output']>;
82711
82772
  issueViewDetailsPanelFieldsOrder?: Maybe<Scalars['String']['output']>;
82712
82773
  issueViewPinnedFields?: Maybe<Scalars['String']['output']>;
@@ -82731,6 +82792,9 @@ export declare type JiraUserPreferencesDismissedAutomationDiscoverabilityTemplat
82731
82792
  export declare type JiraUserPreferencesIssueViewCollapsibleSectionsStateArgs = {
82732
82793
  projectKey: Scalars['String']['input'];
82733
82794
  };
82795
+ export declare type JiraUserPreferencesIssueViewContextPanelFieldsOrderArgs = {
82796
+ projectKey: Scalars['String']['input'];
82797
+ };
82734
82798
  export declare type JiraUserPreferencesIssueViewDefaultPinnedFieldsBannerProjectArgs = {
82735
82799
  projectKey: Scalars['String']['input'];
82736
82800
  };
@@ -90155,6 +90219,7 @@ export declare type MercuryCustomFieldDefinition = {
90155
90219
  id: Scalars['ID']['output'];
90156
90220
  name: Scalars['String']['output'];
90157
90221
  scope: MercuryCustomFieldDefinitionScope;
90222
+ searchKey?: Maybe<Scalars['String']['output']>;
90158
90223
  updatedBy?: Maybe<User>;
90159
90224
  updatedDate: Scalars['DateTime']['output'];
90160
90225
  };
@@ -90443,6 +90508,7 @@ export declare type MercuryFocusArea = Node & {
90443
90508
  targetDate?: Maybe<MercuryTargetDate>;
90444
90509
  updatedDate: Scalars['String']['output'];
90445
90510
  url?: Maybe<Scalars['String']['output']>;
90511
+ userPermissions?: Maybe<Array<MercuryFocusAreaPermission>>;
90446
90512
  uuid: Scalars['UUID']['output'];
90447
90513
  watchers?: Maybe<MercuryUserConnection>;
90448
90514
  watching: Scalars['Boolean']['output'];
@@ -90621,6 +90687,24 @@ export declare type MercuryFocusAreaLinks = {
90621
90687
  __typename?: 'MercuryFocusAreaLinks';
90622
90688
  links: Array<MercuryFocusAreaLink>;
90623
90689
  };
90690
+ export declare enum MercuryFocusAreaPermission {
90691
+ Archive = "ARCHIVE",
90692
+ CreateGoalLink = "CREATE_GOAL_LINK",
90693
+ CreateLink = "CREATE_LINK",
90694
+ CreateUpdate = "CREATE_UPDATE",
90695
+ CreateWorkLink = "CREATE_WORK_LINK",
90696
+ Delete = "DELETE",
90697
+ DeleteGoalLink = "DELETE_GOAL_LINK",
90698
+ DeleteLink = "DELETE_LINK",
90699
+ DeleteUpdate = "DELETE_UPDATE",
90700
+ DeleteWorkLink = "DELETE_WORK_LINK",
90701
+ EditAbout = "EDIT_ABOUT",
90702
+ EditName = "EDIT_NAME",
90703
+ EditOwner = "EDIT_OWNER",
90704
+ EditType = "EDIT_TYPE",
90705
+ Export = "EXPORT",
90706
+ ViewFund = "VIEW_FUND"
90707
+ }
90624
90708
  export declare type MercuryFocusAreaPositionChangeSummary = {
90625
90709
  __typename?: 'MercuryFocusAreaPositionChangeSummary';
90626
90710
  movedInCount?: Maybe<Scalars['Int']['output']>;
@@ -91258,6 +91342,7 @@ export declare type MercuryNumberCustomFieldDefinition = MercuryCustomFieldDefin
91258
91342
  id: Scalars['ID']['output'];
91259
91343
  name: Scalars['String']['output'];
91260
91344
  scope: MercuryCustomFieldDefinitionScope;
91345
+ searchKey?: Maybe<Scalars['String']['output']>;
91261
91346
  updatedBy?: Maybe<User>;
91262
91347
  updatedDate: Scalars['DateTime']['output'];
91263
91348
  };
@@ -91901,6 +91986,7 @@ export declare type MercurySingleSelectCustomFieldDefinition = MercuryCustomFiel
91901
91986
  name: Scalars['String']['output'];
91902
91987
  options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
91903
91988
  scope: MercuryCustomFieldDefinitionScope;
91989
+ searchKey?: Maybe<Scalars['String']['output']>;
91904
91990
  updatedBy?: Maybe<User>;
91905
91991
  updatedDate: Scalars['DateTime']['output'];
91906
91992
  };
@@ -92322,6 +92408,7 @@ export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinit
92322
92408
  id: Scalars['ID']['output'];
92323
92409
  name: Scalars['String']['output'];
92324
92410
  scope: MercuryCustomFieldDefinitionScope;
92411
+ searchKey?: Maybe<Scalars['String']['output']>;
92325
92412
  updatedBy?: Maybe<User>;
92326
92413
  updatedDate: Scalars['DateTime']['output'];
92327
92414
  };
@@ -92982,6 +93069,7 @@ export declare type Mutation = {
92982
93069
  avp_createVariable?: Maybe<AvpCreateVariablePayload>;
92983
93070
  avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
92984
93071
  avp_deleteDashboardFilter?: Maybe<AvpDeleteDashboardFilterPayload>;
93072
+ avp_deleteVariable?: Maybe<AvpDeleteVariablePayload>;
92985
93073
  avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
92986
93074
  avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
92987
93075
  avp_moveDashboardRow?: Maybe<AvpMoveDashboardRowPayload>;
@@ -92994,6 +93082,7 @@ export declare type Mutation = {
92994
93082
  avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
92995
93083
  avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
92996
93084
  avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
93085
+ avp_updateVariable?: Maybe<AvpUpdateVariablePayload>;
92997
93086
  boardCardMove?: Maybe<MoveCardOutput>;
92998
93087
  bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
92999
93088
  bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
@@ -93303,6 +93392,7 @@ export declare type Mutation = {
93303
93392
  jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
93304
93393
  jira_archiveIssueAsync?: Maybe<JiraIssueArchiveAsyncPayload>;
93305
93394
  jira_associateProjectToFieldScheme?: Maybe<JiraAssociateProjectToFieldSchemePayload>;
93395
+ jira_bulkCreateInlineIssuesOptimistic?: Maybe<JiraInlineIssuesCreatePayload>;
93306
93396
  jira_bulkSetBoardViewColumnState?: Maybe<JiraBulkSetBoardViewColumnStatePayload>;
93307
93397
  jira_clearBoardIssueCardCover?: Maybe<JiraClearBoardIssueCardCoverPayload>;
93308
93398
  jira_createBoardViewStatusColumn?: Maybe<JiraCreateBoardViewStatusColumnPayload>;
@@ -94009,6 +94099,9 @@ export declare type MutationAvp_DeleteChartArgs = {
94009
94099
  export declare type MutationAvp_DeleteDashboardFilterArgs = {
94010
94100
  input: AvpDeleteDashboardFilterInput;
94011
94101
  };
94102
+ export declare type MutationAvp_DeleteVariableArgs = {
94103
+ input: AvpDeleteVariableInput;
94104
+ };
94012
94105
  export declare type MutationAvp_MoveCanvasElementArgs = {
94013
94106
  input: AvpMoveCanvasElementInput;
94014
94107
  };
@@ -94045,6 +94138,9 @@ export declare type MutationAvp_UpdateDashboardRowNumElementsArgs = {
94045
94138
  export declare type MutationAvp_UpdateDashboardStatusArgs = {
94046
94139
  input: AvpUpdateDashboardStatusInput;
94047
94140
  };
94141
+ export declare type MutationAvp_UpdateVariableArgs = {
94142
+ input: AvpUpdateVariableInput;
94143
+ };
94048
94144
  export declare type MutationBoardCardMoveArgs = {
94049
94145
  input?: InputMaybe<BoardCardMoveInput>;
94050
94146
  };
@@ -95117,6 +95213,9 @@ export declare type MutationJira_AssociateProjectToFieldSchemeArgs = {
95117
95213
  cloudId: Scalars['ID']['input'];
95118
95214
  input: JiraAssociateProjectToFieldSchemeInput;
95119
95215
  };
95216
+ export declare type MutationJira_BulkCreateInlineIssuesOptimisticArgs = {
95217
+ input: Array<JiraInlineIssueCreateInput>;
95218
+ };
95120
95219
  export declare type MutationJira_BulkSetBoardViewColumnStateArgs = {
95121
95220
  input: JiraBulkSetBoardViewColumnStateInput;
95122
95221
  };
@@ -99105,6 +99204,7 @@ export declare type Query = {
99105
99204
  admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
99106
99205
  admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
99107
99206
  admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
99207
+ admin_eventActions?: Maybe<AdminGroupEventActionConnection>;
99108
99208
  admin_group?: Maybe<AdminGroup>;
99109
99209
  admin_groups?: Maybe<AdminGroupConnection>;
99110
99210
  admin_invitePolicies?: Maybe<AdminInvitePolicyConnection>;
@@ -99847,6 +99947,7 @@ export declare type Query = {
99847
99947
  stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
99848
99948
  stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
99849
99949
  stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
99950
+ stakeholderComms_getFileReadMediaToken?: Maybe<StakeholderCommsMediaToken>;
99850
99951
  stakeholderComms_getFlattenedStakeholdersList?: Maybe<StakeholderCommsGetStakeholderListResponse>;
99851
99952
  stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
99852
99953
  stakeholderComms_getLicenseUsageLimit?: Maybe<StakeholderCommsLicenseUsage>;
@@ -99865,6 +99966,7 @@ export declare type Query = {
99865
99966
  stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
99866
99967
  stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
99867
99968
  stakeholderComms_getStakeholdersbyAri?: Maybe<Array<Maybe<StakeholderCommsSimplifiedStakeholder>>>;
99969
+ stakeholderComms_getUploadMediaToken?: Maybe<StakeholderCommsMediaToken>;
99868
99970
  stakeholderComms_getWorkspaceAriMappingByCustomDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
99869
99971
  stakeholderComms_getWorkspaceAriMappingByPageId?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
99870
99972
  stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
@@ -99969,6 +100071,13 @@ export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
99969
100071
  orgId: Scalars['ID']['input'];
99970
100072
  principal: Scalars['ID']['input'];
99971
100073
  };
100074
+ export declare type QueryAdmin_EventActionsArgs = {
100075
+ after?: InputMaybe<Scalars['String']['input']>;
100076
+ before?: InputMaybe<Scalars['String']['input']>;
100077
+ first?: InputMaybe<Scalars['Int']['input']>;
100078
+ last?: InputMaybe<Scalars['Int']['input']>;
100079
+ orgId: Scalars['ID']['input'];
100080
+ };
99972
100081
  export declare type QueryAdmin_GroupArgs = {
99973
100082
  input?: InputMaybe<AdminFetchGroupInput>;
99974
100083
  };
@@ -101941,6 +102050,7 @@ export declare type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
101941
102050
  cloudId: Scalars['ID']['input'];
101942
102051
  first?: InputMaybe<Scalars['Int']['input']>;
101943
102052
  relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
102053
+ surface?: InputMaybe<GraphIntegrationSurface>;
101944
102054
  };
101945
102055
  export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
101946
102056
  after?: InputMaybe<Scalars['String']['input']>;
@@ -101949,6 +102059,7 @@ export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
101949
102059
  first?: InputMaybe<Scalars['Int']['input']>;
101950
102060
  relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
101951
102061
  searchKeyword?: InputMaybe<Scalars['String']['input']>;
102062
+ surface?: InputMaybe<GraphIntegrationSurface>;
101952
102063
  };
101953
102064
  export declare type QueryGraphIntegration_McpAdminManagementMcpServerArgs = {
101954
102065
  cloudId: Scalars['ID']['input'];
@@ -103911,6 +104022,7 @@ export declare type RadarPositionsByEntity = {
103911
104022
  fieldValues: Array<RadarFieldValueIdPair>;
103912
104023
  id: Scalars['ID']['output'];
103913
104024
  type: RadarEntityType;
104025
+ workTypeAllocation?: Maybe<Array<RadarWorkAllocationUnit>>;
103914
104026
  };
103915
104027
  export declare type RadarPositionsByEntityFieldValuesArgs = {
103916
104028
  aggregateRql?: InputMaybe<Scalars['String']['input']>;
@@ -104015,6 +104127,11 @@ export declare enum RadarUserFieldPermission {
104015
104127
  PartialOnSelfOrBelowReportingLine = "PartialOnSelfOrBelowReportingLine",
104016
104128
  PartialOnlySelf = "PartialOnlySelf"
104017
104129
  }
104130
+ export declare type RadarWorkAllocationUnit = {
104131
+ __typename?: 'RadarWorkAllocationUnit';
104132
+ name: Scalars['String']['output'];
104133
+ percentage: Scalars['Float']['output'];
104134
+ };
104018
104135
  export declare type RadarWorkTypeAllocationInput = {
104019
104136
  ctb: Scalars['Int']['input'];
104020
104137
  organisationId: Scalars['ID']['input'];
@@ -104066,6 +104183,7 @@ export declare type RadarWorkspaceSettingsInput = {
104066
104183
  };
104067
104184
  export declare type RadarWorktypeAllocation = {
104068
104185
  __typename?: 'RadarWorktypeAllocation';
104186
+ allocations?: Maybe<Array<RadarWorkAllocationUnit>>;
104069
104187
  ctb?: Maybe<Scalars['Int']['output']>;
104070
104188
  id: Scalars['ID']['output'];
104071
104189
  organisationARI: Scalars['ID']['output'];
@@ -105231,6 +105349,7 @@ export declare type RoadmapsQueryRoadmapFilterConfigurationArgs = {
105231
105349
  };
105232
105350
  export declare type RoadmapsQueryRoadmapFilterItemsArgs = {
105233
105351
  customFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
105352
+ itemIds?: InputMaybe<Array<Scalars['ID']['input']>>;
105234
105353
  quickFilterIds?: InputMaybe<Array<Scalars['ID']['input']>>;
105235
105354
  sourceARI: Scalars['ID']['input'];
105236
105355
  };
@@ -106347,6 +106466,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
106347
106466
  export declare type SearchResultEntity = ConfluencePage | ConfluenceSpace | DevOpsService | ExternalBranch | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSpace | ExternalVideo | ExternalVulnerability | ExternalWorkItem | JiraIssue | JiraPostIncidentReviewLink | JiraProject | JiraVersion | OpsgenieTeam | ThirdPartySecurityContainer | ThirdPartySecurityWorkspace | TownsquareComment | TownsquareGoal | TownsquareProject;
106348
106467
  export declare type SearchResultFederated = SearchResult & {
106349
106468
  __typename?: 'SearchResultFederated';
106469
+ connectorType?: Maybe<Scalars['String']['output']>;
106350
106470
  description: Scalars['String']['output'];
106351
106471
  entity?: Maybe<SearchFederatedEntity>;
106352
106472
  iconUrl?: Maybe<Scalars['String']['output']>;
@@ -106362,6 +106482,7 @@ export declare type SearchResultFederated = SearchResult & {
106362
106482
  export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & SearchResult & {
106363
106483
  __typename?: 'SearchResultGoogleDocument';
106364
106484
  bodyText: Scalars['String']['output'];
106485
+ connectorType?: Maybe<Scalars['String']['output']>;
106365
106486
  description: Scalars['String']['output'];
106366
106487
  excerpt?: Maybe<Scalars['String']['output']>;
106367
106488
  iconUrl?: Maybe<Scalars['String']['output']>;
@@ -106378,6 +106499,7 @@ export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & Searc
106378
106499
  export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & SearchResult & {
106379
106500
  __typename?: 'SearchResultGooglePresentation';
106380
106501
  bodyText: Scalars['String']['output'];
106502
+ connectorType?: Maybe<Scalars['String']['output']>;
106381
106503
  description: Scalars['String']['output'];
106382
106504
  excerpt?: Maybe<Scalars['String']['output']>;
106383
106505
  iconUrl?: Maybe<Scalars['String']['output']>;
@@ -106394,6 +106516,7 @@ export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & S
106394
106516
  export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & SearchResult & {
106395
106517
  __typename?: 'SearchResultGoogleSpreadsheet';
106396
106518
  bodyText: Scalars['String']['output'];
106519
+ connectorType?: Maybe<Scalars['String']['output']>;
106397
106520
  description: Scalars['String']['output'];
106398
106521
  excerpt?: Maybe<Scalars['String']['output']>;
106399
106522
  iconUrl?: Maybe<Scalars['String']['output']>;
@@ -106605,6 +106728,7 @@ export declare type SearchResultMercuryFocusAreaStatusUpdate = SearchResult & {
106605
106728
  export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & SearchResult & {
106606
106729
  __typename?: 'SearchResultMicrosoftDocument';
106607
106730
  bodyText: Scalars['String']['output'];
106731
+ connectorType?: Maybe<Scalars['String']['output']>;
106608
106732
  description: Scalars['String']['output'];
106609
106733
  excerpt?: Maybe<Scalars['String']['output']>;
106610
106734
  iconUrl?: Maybe<Scalars['String']['output']>;
@@ -106621,6 +106745,7 @@ export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & Se
106621
106745
  export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchResult & {
106622
106746
  __typename?: 'SearchResultSlackMessage';
106623
106747
  channelName?: Maybe<Scalars['String']['output']>;
106748
+ connectorType?: Maybe<Scalars['String']['output']>;
106624
106749
  description: Scalars['String']['output'];
106625
106750
  iconUrl?: Maybe<Scalars['String']['output']>;
106626
106751
  id: Scalars['ID']['output'];
@@ -106649,6 +106774,19 @@ export declare type SearchResultSpfAsk = SearchResult & {
106649
106774
  type: SearchResultType;
106650
106775
  url: Scalars['String']['output'];
106651
106776
  };
106777
+ export declare type SearchResultTalentPosition = SearchResult & {
106778
+ __typename?: 'SearchResultTalentPosition';
106779
+ description: Scalars['String']['output'];
106780
+ iconUrl?: Maybe<Scalars['String']['output']>;
106781
+ id: Scalars['ID']['output'];
106782
+ lastModifiedDate?: Maybe<Scalars['String']['output']>;
106783
+ linkedResults?: Maybe<Array<SearchLinkedResult>>;
106784
+ position?: Maybe<RadarPosition>;
106785
+ scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
106786
+ title: Scalars['String']['output'];
106787
+ type: SearchResultType;
106788
+ url: Scalars['String']['output'];
106789
+ };
106652
106790
  export declare type SearchResultTrelloBoard = SearchResult & {
106653
106791
  __typename?: 'SearchResultTrelloBoard';
106654
106792
  description: Scalars['String']['output'];
@@ -106720,6 +106858,14 @@ export declare enum SearchSortOrder {
106720
106858
  Asc = "ASC",
106721
106859
  Desc = "DESC"
106722
106860
  }
106861
+ export declare type SearchTalentFilter = {
106862
+ employmentTypes?: InputMaybe<Array<Scalars['String']['input']>>;
106863
+ focusAreas?: InputMaybe<Array<Scalars['String']['input']>>;
106864
+ jobFamilies?: InputMaybe<Array<Scalars['String']['input']>>;
106865
+ owners?: InputMaybe<Array<Scalars['String']['input']>>;
106866
+ statuses?: InputMaybe<Array<Scalars['String']['input']>>;
106867
+ teams?: InputMaybe<Array<Scalars['String']['input']>>;
106868
+ };
106723
106869
  export declare type SearchThirdPartyFilter = {
106724
106870
  additionalTexts?: InputMaybe<Array<Scalars['String']['input']>>;
106725
106871
  ancestorAris?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -127794,6 +127940,12 @@ export declare type StakeholderCommsListIncidentResponse = {
127794
127940
  error?: Maybe<Scalars['String']['output']>;
127795
127941
  incidentNodes?: Maybe<Array<Maybe<StakeholderCommsIncidentWithUpdates>>>;
127796
127942
  };
127943
+ export declare type StakeholderCommsMediaToken = {
127944
+ __typename?: 'StakeholderCommsMediaToken';
127945
+ error?: Maybe<Scalars['String']['output']>;
127946
+ mediaClientId?: Maybe<Scalars['String']['output']>;
127947
+ token?: Maybe<Scalars['String']['output']>;
127948
+ };
127797
127949
  export declare type StakeholderCommsModePreference = {
127798
127950
  __typename?: 'StakeholderCommsModePreference';
127799
127951
  enabled?: Maybe<Scalars['Boolean']['output']>;
@@ -129144,6 +129296,7 @@ export declare type TeamMutation = {
129144
129296
  __typename?: 'TeamMutation';
129145
129297
  addChild?: Maybe<TeamV2>;
129146
129298
  addParent?: Maybe<TeamV2>;
129299
+ assignTeamToType?: Maybe<TeamV2>;
129147
129300
  createTeamType?: Maybe<TeamType>;
129148
129301
  removeChild?: Maybe<TeamV2>;
129149
129302
  removeParent?: Maybe<TeamV2>;
@@ -129160,6 +129313,10 @@ export declare type TeamMutationAddParentArgs = {
129160
129313
  siteId: Scalars['ID']['input'];
129161
129314
  teamId: Scalars['ID']['input'];
129162
129315
  };
129316
+ export declare type TeamMutationAssignTeamToTypeArgs = {
129317
+ teamId: Scalars['ID']['input'];
129318
+ typeId: Scalars['ID']['input'];
129319
+ };
129163
129320
  export declare type TeamMutationCreateTeamTypeArgs = {
129164
129321
  scopeId: Scalars['ID']['input'];
129165
129322
  typeData: TeamTypeCreationPayload;
@@ -129379,6 +129536,7 @@ export declare type TeamV2 = Node & {
129379
129536
  smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
129380
129537
  smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
129381
129538
  state?: Maybe<TeamStateV2>;
129539
+ type?: Maybe<TeamType>;
129382
129540
  };
129383
129541
  export declare type TeamV2MembersArgs = {
129384
129542
  after?: InputMaybe<Scalars['String']['input']>;
@@ -130447,6 +130605,7 @@ export declare type TownsquareGoalUpdate = Node & {
130447
130605
  creator?: Maybe<User>;
130448
130606
  editDate?: Maybe<Scalars['DateTime']['output']>;
130449
130607
  goal?: Maybe<TownsquareGoal>;
130608
+ highlights?: Maybe<TownsquareHighlightConnection>;
130450
130609
  id: Scalars['ID']['output'];
130451
130610
  lastEditedBy?: Maybe<User>;
130452
130611
  missedUpdate: Scalars['Boolean']['output'];
@@ -130470,6 +130629,10 @@ export declare type TownsquareGoalUpdateCommentsArgs = {
130470
130629
  after?: InputMaybe<Scalars['String']['input']>;
130471
130630
  first?: InputMaybe<Scalars['Int']['input']>;
130472
130631
  };
130632
+ export declare type TownsquareGoalUpdateHighlightsArgs = {
130633
+ after?: InputMaybe<Scalars['String']['input']>;
130634
+ first?: InputMaybe<Scalars['Int']['input']>;
130635
+ };
130473
130636
  export declare type TownsquareGoalUpdateUpdateNotesArgs = {
130474
130637
  after?: InputMaybe<Scalars['String']['input']>;
130475
130638
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -131108,6 +131271,7 @@ export declare type TownsquareProjectUpdate = Node & {
131108
131271
  creationDate?: Maybe<Scalars['DateTime']['output']>;
131109
131272
  creator?: Maybe<User>;
131110
131273
  editDate?: Maybe<Scalars['DateTime']['output']>;
131274
+ highlights?: Maybe<TownsquareHighlightConnection>;
131111
131275
  id: Scalars['ID']['output'];
131112
131276
  lastEditedBy?: Maybe<User>;
131113
131277
  missedUpdate: Scalars['Boolean']['output'];
@@ -131134,6 +131298,10 @@ export declare type TownsquareProjectUpdateCommentsArgs = {
131134
131298
  after?: InputMaybe<Scalars['String']['input']>;
131135
131299
  first?: InputMaybe<Scalars['Int']['input']>;
131136
131300
  };
131301
+ export declare type TownsquareProjectUpdateHighlightsArgs = {
131302
+ after?: InputMaybe<Scalars['String']['input']>;
131303
+ first?: InputMaybe<Scalars['Int']['input']>;
131304
+ };
131137
131305
  export declare type TownsquareProjectUpdateUpdateNotesArgs = {
131138
131306
  after?: InputMaybe<Scalars['String']['input']>;
131139
131307
  first?: InputMaybe<Scalars['Int']['input']>;