@forge/cli-shared 8.11.1-next.2 → 8.11.1-next.2-experimental-e14a289

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.
@@ -2816,6 +2816,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
2816
2816
  forgeCreator?: Maybe<Scalars['String']['output']>;
2817
2817
  icon?: Maybe<Scalars['String']['output']>;
2818
2818
  id: Scalars['ID']['output'];
2819
+ identityAccount?: Maybe<User>;
2819
2820
  identityAccountId?: Maybe<Scalars['String']['output']>;
2820
2821
  instructions?: Maybe<Scalars['String']['output']>;
2821
2822
  isFavourite?: Maybe<Scalars['Boolean']['output']>;
@@ -2865,6 +2866,7 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
2865
2866
  mcpServerIds: Array<Scalars['ID']['output']>;
2866
2867
  mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
2867
2868
  mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
2869
+ mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
2868
2870
  name: Scalars['String']['output'];
2869
2871
  scenarioVersion?: Maybe<Scalars['Int']['output']>;
2870
2872
  tools?: Maybe<Array<AgentStudioTool>>;
@@ -3238,7 +3240,10 @@ export declare type AgentStudioJobExecutionHistoryNode = {
3238
3240
  datasetName?: Maybe<Scalars['String']['output']>;
3239
3241
  failureCount?: Maybe<Scalars['Int']['output']>;
3240
3242
  jobId: Scalars['ID']['output'];
3243
+ judgeFailureCount?: Maybe<Scalars['Int']['output']>;
3244
+ judgeSuccessCount?: Maybe<Scalars['Int']['output']>;
3241
3245
  projectId?: Maybe<Scalars['String']['output']>;
3246
+ resolutionRate?: Maybe<Scalars['Float']['output']>;
3242
3247
  runId: Scalars['ID']['output'];
3243
3248
  runNumber?: Maybe<Scalars['Int']['output']>;
3244
3249
  startedAt?: Maybe<Scalars['String']['output']>;
@@ -3342,6 +3347,7 @@ export declare type AgentStudioScenario = {
3342
3347
  mcpServerIds: Array<Scalars['ID']['output']>;
3343
3348
  mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
3344
3349
  mcpToolIds?: Maybe<Array<Scalars['ID']['output']>>;
3350
+ mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
3345
3351
  name: Scalars['String']['output'];
3346
3352
  scenarioVersion?: Maybe<Scalars['Int']['output']>;
3347
3353
  tools?: Maybe<Array<AgentStudioTool>>;
@@ -5496,6 +5502,14 @@ export declare type AssetsDmCleansingStatisticsResponse = {
5496
5502
  filteredReasons: Scalars['Int']['output'];
5497
5503
  objects: Array<AssetsDmCleansingStatisticsObjectData>;
5498
5504
  };
5505
+ export declare type AssetsDmCreateCleansingReasonInput = {
5506
+ reason: Scalars['String']['input'];
5507
+ };
5508
+ export declare type AssetsDmCreateCleansingReasonResponse = {
5509
+ __typename?: 'AssetsDMCreateCleansingReasonResponse';
5510
+ isSuccessful: Scalars['Boolean']['output'];
5511
+ message: Scalars['String']['output'];
5512
+ };
5499
5513
  export declare type AssetsDmCreateDataSourceTypeInput = {
5500
5514
  defaultGap?: InputMaybe<Scalars['Int']['input']>;
5501
5515
  name: Scalars['String']['input'];
@@ -7109,6 +7123,75 @@ export declare type BitbucketWorkspaceRepositoriesArgs = {
7109
7123
  first?: InputMaybe<Scalars['Int']['input']>;
7110
7124
  permissionFilter?: InputMaybe<BitbucketPermission>;
7111
7125
  };
7126
+ export declare type BlockServiceEvent = {
7127
+ __typename?: 'BlockServiceEvent';
7128
+ event: BlockServiceEventType;
7129
+ hydration: BlockServiceHydration;
7130
+ id: BlockServiceTargetIdentifier;
7131
+ imageData?: Maybe<BlockServiceImageData>;
7132
+ service: BlockServiceTdpService;
7133
+ shardingContext?: Maybe<BlockServiceShardingContext>;
7134
+ systemData?: Maybe<BlockServiceSystemData>;
7135
+ };
7136
+ export declare enum BlockServiceEventType {
7137
+ Create = "CREATE",
7138
+ Delete = "DELETE",
7139
+ Update = "UPDATE"
7140
+ }
7141
+ export declare enum BlockServiceHydration {
7142
+ Full = "FULL",
7143
+ Metadata = "METADATA",
7144
+ None = "NONE"
7145
+ }
7146
+ export declare type BlockServiceImageData = {
7147
+ __typename?: 'BlockServiceImageData';
7148
+ newImage?: Maybe<Array<BlockServiceItemData>>;
7149
+ oldImage?: Maybe<Array<BlockServiceItemData>>;
7150
+ };
7151
+ export declare type BlockServiceItemData = {
7152
+ __typename?: 'BlockServiceItemData';
7153
+ name?: Maybe<Scalars['String']['output']>;
7154
+ value?: Maybe<Scalars['String']['output']>;
7155
+ };
7156
+ export declare type BlockServiceItemIdentifier = {
7157
+ __typename?: 'BlockServiceItemIdentifier';
7158
+ id: Scalars['String']['output'];
7159
+ itemType?: Maybe<Scalars['String']['output']>;
7160
+ itemTypeVersion?: Maybe<Scalars['String']['output']>;
7161
+ version?: Maybe<Scalars['String']['output']>;
7162
+ };
7163
+ export declare enum BlockServicePlatformType {
7164
+ Bucket = "BUCKET",
7165
+ Node = "NODE",
7166
+ Object = "OBJECT",
7167
+ Partition = "PARTITION",
7168
+ Schema = "SCHEMA"
7169
+ }
7170
+ export declare type BlockServiceShardingContext = {
7171
+ __typename?: 'BlockServiceShardingContext';
7172
+ ownerEntity?: Maybe<Scalars['String']['output']>;
7173
+ partitionId: Scalars['String']['output'];
7174
+ productHost?: Maybe<Scalars['String']['output']>;
7175
+ providerHost?: Maybe<Scalars['String']['output']>;
7176
+ };
7177
+ export declare type BlockServiceSystemData = {
7178
+ __typename?: 'BlockServiceSystemData';
7179
+ createdAt?: Maybe<Scalars['String']['output']>;
7180
+ createdBy?: Maybe<Scalars['String']['output']>;
7181
+ updatedAt?: Maybe<Scalars['String']['output']>;
7182
+ updatedBy?: Maybe<Scalars['String']['output']>;
7183
+ };
7184
+ export declare type BlockServiceTargetIdentifier = {
7185
+ __typename?: 'BlockServiceTargetIdentifier';
7186
+ itemIdentifier?: Maybe<BlockServiceItemIdentifier>;
7187
+ platformType?: Maybe<BlockServicePlatformType>;
7188
+ };
7189
+ export declare enum BlockServiceTdpService {
7190
+ Control = "CONTROL",
7191
+ Ers = "ERS",
7192
+ Os = "OS",
7193
+ Sql = "SQL"
7194
+ }
7112
7195
  export declare type BlockSmartLink = SmartLink & {
7113
7196
  __typename?: 'BlockSmartLink';
7114
7197
  url: Scalars['String']['output'];
@@ -10521,6 +10604,18 @@ export declare type CommerceEntitlementRelationship = {
10521
10604
  relationshipId?: Maybe<Scalars['ID']['output']>;
10522
10605
  relationshipType?: Maybe<Scalars['String']['output']>;
10523
10606
  };
10607
+ export declare type CommerceExpCcpQuery = {
10608
+ __typename?: 'CommerceExpCcpQuery';
10609
+ commerceExp_testField?: Maybe<CommerceExpTestField>;
10610
+ };
10611
+ export declare type CommerceExpCcpQueryCommerceExp_TestFieldArgs = {
10612
+ id?: InputMaybe<Scalars['ID']['input']>;
10613
+ };
10614
+ export declare type CommerceExpTestField = {
10615
+ __typename?: 'CommerceExpTestField';
10616
+ age?: Maybe<Scalars['Int']['output']>;
10617
+ name?: Maybe<Scalars['String']['output']>;
10618
+ };
10524
10619
  export declare type CommerceExperienceCapability = {
10525
10620
  experienceUrl?: Maybe<Scalars['String']['output']>;
10526
10621
  isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
@@ -18802,6 +18897,7 @@ export declare type ConfluenceNbmVerificationEntry = {
18802
18897
  pageCount?: Maybe<Scalars['Int']['output']>;
18803
18898
  screenshotId?: Maybe<Scalars['ID']['output']>;
18804
18899
  screenshotPageId?: Maybe<Scalars['ID']['output']>;
18900
+ taskId?: Maybe<Scalars['ID']['output']>;
18805
18901
  };
18806
18902
  export declare type ConfluenceNbmVerificationEntryInput = {
18807
18903
  id: Scalars['ID']['input'];
@@ -19299,7 +19395,6 @@ export declare type ConfluencePersonWithPermissionsConnection = {
19299
19395
  export declare type ConfluencePlaylist = {
19300
19396
  __typename?: 'ConfluencePlaylist';
19301
19397
  accountId: Scalars['ID']['output'];
19302
- preference: ConfluencePlaylistPreference;
19303
19398
  tracks: ConfluencePaginatedTracks;
19304
19399
  user?: Maybe<Person>;
19305
19400
  };
@@ -19316,11 +19411,6 @@ export declare type ConfluencePlaylistPageInfo = {
19316
19411
  hasPreviousPage: Scalars['Boolean']['output'];
19317
19412
  startCursor?: Maybe<Scalars['String']['output']>;
19318
19413
  };
19319
- export declare type ConfluencePlaylistPreference = {
19320
- __typename?: 'ConfluencePlaylistPreference';
19321
- length: ConfluenceLength;
19322
- tone: ConfluenceTone;
19323
- };
19324
19414
  export declare enum ConfluencePolicyEnabledStatus {
19325
19415
  Disabled = "DISABLED",
19326
19416
  Enabled = "ENABLED",
@@ -23786,6 +23876,7 @@ export declare type CplsCapacityPlanningPeopleView = {
23786
23876
  contributor?: Maybe<CplsContributor>;
23787
23877
  contributorDataIds?: Maybe<CplsContributorDataIdConnection>;
23788
23878
  contributors?: Maybe<CplsContributorConnection>;
23879
+ filters?: Maybe<CplsFilters>;
23789
23880
  id: Scalars['ID']['output'];
23790
23881
  timeCells?: Maybe<Array<CplsTimeCell>>;
23791
23882
  viewSettings?: Maybe<CplsViewSettings>;
@@ -23810,16 +23901,20 @@ export declare type CplsContribution = {
23810
23901
  endDate: Scalars['Date']['output'];
23811
23902
  startDate: Scalars['Date']['output'];
23812
23903
  value?: Maybe<Scalars['Float']['output']>;
23904
+ valueFormats?: Maybe<CplsValueFormats>;
23813
23905
  valueType: CplsContributionValueType;
23814
23906
  };
23815
23907
  export declare type CplsContributionAggregation = {
23816
23908
  __typename?: 'CplsContributionAggregation';
23817
23909
  availability: Scalars['Float']['output'];
23910
+ availabilityFormats?: Maybe<CplsValueFormats>;
23818
23911
  endDate: Scalars['Date']['output'];
23819
23912
  startDate: Scalars['Date']['output'];
23913
+ totalContributionFormats?: Maybe<CplsValueFormats>;
23820
23914
  totalContributionHours: Scalars['Float']['output'];
23821
23915
  };
23822
23916
  export declare enum CplsContributionValueType {
23917
+ Days = "DAYS",
23823
23918
  Hours = "HOURS",
23824
23919
  Percentage = "PERCENTAGE"
23825
23920
  }
@@ -23957,6 +24052,8 @@ export declare type CplsDeleteContributorWorkAssociationPayload = Payload & {
23957
24052
  export declare type CplsFilterConfiguration = {
23958
24053
  __typename?: 'CplsFilterConfiguration';
23959
24054
  contributorDataEntities?: Maybe<CplsContributorDataEntityConnection>;
24055
+ customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
24056
+ jiraWorkItems?: Maybe<CplsJiraWorkItemConnection>;
23960
24057
  };
23961
24058
  export declare type CplsFilterConfigurationContributorDataEntitiesArgs = {
23962
24059
  after?: InputMaybe<Scalars['String']['input']>;
@@ -23964,7 +24061,47 @@ export declare type CplsFilterConfigurationContributorDataEntitiesArgs = {
23964
24061
  first?: InputMaybe<Scalars['Int']['input']>;
23965
24062
  last?: InputMaybe<Scalars['Int']['input']>;
23966
24063
  };
23967
- export declare type CplsFilters = CplsFilterConfiguration | QueryError;
24064
+ export declare type CplsFilterConfigurationCustomContributionTargetsArgs = {
24065
+ after?: InputMaybe<Scalars['String']['input']>;
24066
+ before?: InputMaybe<Scalars['String']['input']>;
24067
+ first?: InputMaybe<Scalars['Int']['input']>;
24068
+ last?: InputMaybe<Scalars['Int']['input']>;
24069
+ };
24070
+ export declare type CplsFilterConfigurationJiraWorkItemsArgs = {
24071
+ after?: InputMaybe<Scalars['String']['input']>;
24072
+ before?: InputMaybe<Scalars['String']['input']>;
24073
+ first?: InputMaybe<Scalars['Int']['input']>;
24074
+ last?: InputMaybe<Scalars['Int']['input']>;
24075
+ };
24076
+ export declare type CplsFilterConfigurationType = CplsFilterConfiguration | QueryError;
24077
+ export declare type CplsFilters = {
24078
+ __typename?: 'CplsFilters';
24079
+ contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
24080
+ customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
24081
+ jiraWorkItems?: Maybe<Array<Scalars['ID']['output']>>;
24082
+ workTypes?: Maybe<Array<CplsWorkType>>;
24083
+ };
24084
+ export declare type CplsFiltersInput = {
24085
+ contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
24086
+ customContributionTargets?: InputMaybe<Array<Scalars['ID']['input']>>;
24087
+ jiraWorkItems?: InputMaybe<Array<Scalars['ID']['input']>>;
24088
+ workTypes?: InputMaybe<Array<CplsWorkType>>;
24089
+ };
24090
+ export declare type CplsJiraWorkItem = {
24091
+ __typename?: 'CplsJiraWorkItem';
24092
+ jiraWorkItem?: Maybe<JiraIssue>;
24093
+ jiraWorkItemId: Scalars['ID']['output'];
24094
+ };
24095
+ export declare type CplsJiraWorkItemConnection = HasPageInfo & {
24096
+ __typename?: 'CplsJiraWorkItemConnection';
24097
+ edges?: Maybe<Array<CplsJiraWorkItemEdge>>;
24098
+ pageInfo: PageInfo;
24099
+ };
24100
+ export declare type CplsJiraWorkItemEdge = {
24101
+ __typename?: 'CplsJiraWorkItemEdge';
24102
+ cursor: Scalars['String']['output'];
24103
+ node?: Maybe<CplsJiraWorkItem>;
24104
+ };
23968
24105
  export declare type CplsMutationErrorExtension = MutationErrorExtension & {
23969
24106
  __typename?: 'CplsMutationErrorExtension';
23970
24107
  errorId?: Maybe<Scalars['String']['output']>;
@@ -24004,8 +24141,21 @@ export declare type CplsUpdateCustomContributionTargetPayload = Payload & {
24004
24141
  errors?: Maybe<Array<MutationError>>;
24005
24142
  success: Scalars['Boolean']['output'];
24006
24143
  };
24007
- export declare type CplsViewFiltersInput = {
24008
- workTypes?: InputMaybe<Array<CplsWorkType>>;
24144
+ export declare type CplsUpdateFiltersInput = {
24145
+ filters: CplsFiltersInput;
24146
+ scopeId: Scalars['ID']['input'];
24147
+ };
24148
+ export declare type CplsUpdateFiltersPayload = Payload & {
24149
+ __typename?: 'CplsUpdateFiltersPayload';
24150
+ errors?: Maybe<Array<MutationError>>;
24151
+ filters?: Maybe<CplsFilters>;
24152
+ success: Scalars['Boolean']['output'];
24153
+ };
24154
+ export declare type CplsValueFormats = {
24155
+ __typename?: 'CplsValueFormats';
24156
+ days?: Maybe<Scalars['Float']['output']>;
24157
+ hours?: Maybe<Scalars['Float']['output']>;
24158
+ percentage?: Maybe<Scalars['Float']['output']>;
24009
24159
  };
24010
24160
  export declare type CplsViewSettings = {
24011
24161
  __typename?: 'CplsViewSettings';
@@ -26592,6 +26742,7 @@ export declare type CustomerServiceTemplateForm = Node & {
26592
26742
  __typename?: 'CustomerServiceTemplateForm';
26593
26743
  defaultRouteRule?: Maybe<CustomerServiceRoutingRule>;
26594
26744
  description?: Maybe<Scalars['String']['output']>;
26745
+ enabledChannels?: Maybe<Array<CustomerServiceTemplateFormEnabledChannels>>;
26595
26746
  helpCenter?: Maybe<HelpCenterQueryResult>;
26596
26747
  helpCenterId: Scalars['ID']['output'];
26597
26748
  id: Scalars['ID']['output'];
@@ -26599,6 +26750,11 @@ export declare type CustomerServiceTemplateForm = Node & {
26599
26750
  isEnabled?: Maybe<Scalars['Boolean']['output']>;
26600
26751
  name?: Maybe<Scalars['String']['output']>;
26601
26752
  };
26753
+ export declare enum CustomerServiceTemplateFormChannelType {
26754
+ Email = "EMAIL",
26755
+ Embed = "EMBED",
26756
+ SupportSite = "SUPPORT_SITE"
26757
+ }
26602
26758
  export declare type CustomerServiceTemplateFormConnection = {
26603
26759
  __typename?: 'CustomerServiceTemplateFormConnection';
26604
26760
  edges: Array<CustomerServiceTemplateFormEdge>;
@@ -26629,6 +26785,15 @@ export declare type CustomerServiceTemplateFormEdge = {
26629
26785
  cursor: Scalars['String']['output'];
26630
26786
  node?: Maybe<CustomerServiceTemplateForm>;
26631
26787
  };
26788
+ export declare type CustomerServiceTemplateFormEnabledChannels = {
26789
+ __typename?: 'CustomerServiceTemplateFormEnabledChannels';
26790
+ channelType: CustomerServiceTemplateFormChannelType;
26791
+ isEnabled?: Maybe<Scalars['Boolean']['output']>;
26792
+ };
26793
+ export declare type CustomerServiceTemplateFormEnabledChannelsInput = {
26794
+ channelType: CustomerServiceTemplateFormChannelType;
26795
+ isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
26796
+ };
26632
26797
  export declare type CustomerServiceTemplateFormFilterInput = {
26633
26798
  isAiFillable?: InputMaybe<Scalars['Boolean']['input']>;
26634
26799
  };
@@ -26636,6 +26801,7 @@ export declare type CustomerServiceTemplateFormQueryResult = CustomerServiceTemp
26636
26801
  export declare type CustomerServiceTemplateFormUpdateInput = {
26637
26802
  defaultRoutingRule?: InputMaybe<CustomerServiceDefaultRoutingRuleInput>;
26638
26803
  description?: InputMaybe<Scalars['String']['input']>;
26804
+ enabledChannels?: InputMaybe<Array<CustomerServiceTemplateFormEnabledChannelsInput>>;
26639
26805
  isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
26640
26806
  };
26641
26807
  export declare type CustomerServiceTemplateFormUpdatePayload = Payload & {
@@ -27997,6 +28163,7 @@ export declare type DevAiRovoDevSession = Node & {
27997
28163
  repository?: Maybe<DevAiRovoDevRepository>;
27998
28164
  sandboxStatus?: Maybe<DevAiRovoDevSandboxStatus>;
27999
28165
  sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
28166
+ sessionTitle?: Maybe<Scalars['String']['output']>;
28000
28167
  updatedAt?: Maybe<Scalars['DateTime']['output']>;
28001
28168
  workspaceAri?: Maybe<Scalars['ID']['output']>;
28002
28169
  };
@@ -31918,6 +32085,7 @@ export declare enum ExternalSpaceSubtype {
31918
32085
  Business = "BUSINESS",
31919
32086
  Project = "PROJECT",
31920
32087
  ServiceDesk = "SERVICE_DESK",
32088
+ Site = "SITE",
31921
32089
  Software = "SOFTWARE",
31922
32090
  Space = "SPACE"
31923
32091
  }
@@ -37762,6 +37930,7 @@ export declare type GraphStore = {
37762
37930
  askHasSubmitterInverse?: Maybe<GraphStoreSimplifiedAskHasSubmitterInverseConnection>;
37763
37931
  askHasSubmittingTeam?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamConnection>;
37764
37932
  askHasSubmittingTeamInverse?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamInverseConnection>;
37933
+ atlasGoalHasAtlasTagInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseConnection>;
37765
37934
  atlasGoalHasContributor?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorConnection>;
37766
37935
  atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
37767
37936
  atlasGoalHasFollower?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerConnection>;
@@ -37785,6 +37954,7 @@ export declare type GraphStore = {
37785
37954
  atlasProjectContributesToAtlasGoalRelationship?: Maybe<GraphStoreFullAtlasProjectContributesToAtlasGoalConnection>;
37786
37955
  atlasProjectDependsOnAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectConnection>;
37787
37956
  atlasProjectDependsOnAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseConnection>;
37957
+ atlasProjectHasAtlasTagInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseConnection>;
37788
37958
  atlasProjectHasContributor?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorConnection>;
37789
37959
  atlasProjectHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasContributorInverseConnection>;
37790
37960
  atlasProjectHasFollower?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerConnection>;
@@ -38730,6 +38900,14 @@ export declare type GraphStoreAskHasSubmittingTeamInverseArgs = {
38730
38900
  queryContext?: InputMaybe<Scalars['String']['input']>;
38731
38901
  sort?: InputMaybe<GraphStoreAskHasSubmittingTeamSortInput>;
38732
38902
  };
38903
+ export declare type GraphStoreAtlasGoalHasAtlasTagInverseArgs = {
38904
+ after?: InputMaybe<Scalars['String']['input']>;
38905
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
38906
+ first?: InputMaybe<Scalars['Int']['input']>;
38907
+ id: Scalars['ID']['input'];
38908
+ queryContext?: InputMaybe<Scalars['String']['input']>;
38909
+ sort?: InputMaybe<GraphStoreAtlasGoalHasAtlasTagSortInput>;
38910
+ };
38733
38911
  export declare type GraphStoreAtlasGoalHasContributorArgs = {
38734
38912
  after?: InputMaybe<Scalars['String']['input']>;
38735
38913
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -38904,6 +39082,14 @@ export declare type GraphStoreAtlasProjectDependsOnAtlasProjectInverseArgs = {
38904
39082
  queryContext?: InputMaybe<Scalars['String']['input']>;
38905
39083
  sort?: InputMaybe<GraphStoreAtlasProjectDependsOnAtlasProjectSortInput>;
38906
39084
  };
39085
+ export declare type GraphStoreAtlasProjectHasAtlasTagInverseArgs = {
39086
+ after?: InputMaybe<Scalars['String']['input']>;
39087
+ consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
39088
+ first?: InputMaybe<Scalars['Int']['input']>;
39089
+ id: Scalars['ID']['input'];
39090
+ queryContext?: InputMaybe<Scalars['String']['input']>;
39091
+ sort?: InputMaybe<GraphStoreAtlasProjectHasAtlasTagSortInput>;
39092
+ };
38907
39093
  export declare type GraphStoreAtlasProjectHasContributorArgs = {
38908
39094
  after?: InputMaybe<Scalars['String']['input']>;
38909
39095
  consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
@@ -45401,6 +45587,9 @@ export declare type GraphStoreAtiFilterInput = {
45401
45587
  is?: InputMaybe<Array<Scalars['String']['input']>>;
45402
45588
  isNot?: InputMaybe<Array<Scalars['String']['input']>>;
45403
45589
  };
45590
+ export declare type GraphStoreAtlasGoalHasAtlasTagSortInput = {
45591
+ lastModified?: InputMaybe<GraphStoreSortInput>;
45592
+ };
45404
45593
  export declare type GraphStoreAtlasGoalHasContributorSortInput = {
45405
45594
  lastModified?: InputMaybe<GraphStoreSortInput>;
45406
45595
  };
@@ -45476,6 +45665,9 @@ export declare type GraphStoreAtlasProjectContributesToAtlasGoalSortInput = {
45476
45665
  export declare type GraphStoreAtlasProjectDependsOnAtlasProjectSortInput = {
45477
45666
  lastModified?: InputMaybe<GraphStoreSortInput>;
45478
45667
  };
45668
+ export declare type GraphStoreAtlasProjectHasAtlasTagSortInput = {
45669
+ lastModified?: InputMaybe<GraphStoreSortInput>;
45670
+ };
45479
45671
  export declare type GraphStoreAtlasProjectHasContributorSortInput = {
45480
45672
  lastModified?: InputMaybe<GraphStoreSortInput>;
45481
45673
  };
@@ -52930,6 +53122,20 @@ export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseEdge = {
52930
53122
  };
52931
53123
  export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseUnion = SpfAsk;
52932
53124
  export declare type GraphStoreSimplifiedAskHasSubmittingTeamUnion = TeamV2;
53125
+ export declare type GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseConnection = HasPageInfo & {
53126
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseConnection';
53127
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseEdge>>>;
53128
+ pageInfo: PageInfo;
53129
+ };
53130
+ export declare type GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseEdge = {
53131
+ __typename?: 'GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseEdge';
53132
+ createdAt: Scalars['DateTime']['output'];
53133
+ cursor?: Maybe<Scalars['String']['output']>;
53134
+ id: Scalars['ID']['output'];
53135
+ lastUpdated: Scalars['DateTime']['output'];
53136
+ node?: Maybe<GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseUnion>;
53137
+ };
53138
+ export declare type GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseUnion = TownsquareGoal;
52933
53139
  export declare type GraphStoreSimplifiedAtlasGoalHasContributorConnection = HasPageInfo & {
52934
53140
  __typename?: 'GraphStoreSimplifiedAtlasGoalHasContributorConnection';
52935
53141
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasContributorEdge>>>;
@@ -53154,6 +53360,20 @@ export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverse
53154
53360
  };
53155
53361
  export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectInverseUnion = TownsquareProject;
53156
53362
  export declare type GraphStoreSimplifiedAtlasProjectDependsOnAtlasProjectUnion = TownsquareProject;
53363
+ export declare type GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseConnection = HasPageInfo & {
53364
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseConnection';
53365
+ edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseEdge>>>;
53366
+ pageInfo: PageInfo;
53367
+ };
53368
+ export declare type GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseEdge = {
53369
+ __typename?: 'GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseEdge';
53370
+ createdAt: Scalars['DateTime']['output'];
53371
+ cursor?: Maybe<Scalars['String']['output']>;
53372
+ id: Scalars['ID']['output'];
53373
+ lastUpdated: Scalars['DateTime']['output'];
53374
+ node?: Maybe<GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseUnion>;
53375
+ };
53376
+ export declare type GraphStoreSimplifiedAtlasProjectHasAtlasTagInverseUnion = TownsquareProject;
53157
53377
  export declare type GraphStoreSimplifiedAtlasProjectHasContributorConnection = HasPageInfo & {
53158
53378
  __typename?: 'GraphStoreSimplifiedAtlasProjectHasContributorConnection';
53159
53379
  edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasContributorEdge>>>;
@@ -64255,6 +64475,7 @@ export declare type HelpCenterHomePageTitleInput = {
64255
64475
  };
64256
64476
  export declare type HelpCenterHubProductEntityResult = {
64257
64477
  __typename?: 'HelpCenterHubProductEntityResult';
64478
+ data?: Maybe<HelpCenterProductEntityConnection>;
64258
64479
  entityType: Scalars['String']['output'];
64259
64480
  filterCriteria: HelpCenterProductEntityFilterCriteria;
64260
64481
  parentFilters?: Maybe<Array<HelpCenterProductEntityFilterOutput>>;
@@ -64534,6 +64755,7 @@ export declare enum HelpCenterPortalsType {
64534
64755
  Hidden = "HIDDEN",
64535
64756
  Visible = "VISIBLE"
64536
64757
  }
64758
+ export declare type HelpCenterProductEntityConnection = HelpObjectStoreProductEntityConnection | QueryError;
64537
64759
  export declare type HelpCenterProductEntityFilter = {
64538
64760
  parentId?: InputMaybe<Scalars['String']['input']>;
64539
64761
  subEntityTypes?: InputMaybe<Array<Scalars['String']['input']>>;
@@ -78237,6 +78459,7 @@ export declare type JiraMutation = {
78237
78459
  setPlanAutoSchedulerEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
78238
78460
  setPlanMultiScenarioEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
78239
78461
  setPlanReleaseEnabled?: Maybe<JiraEnablePlanFeaturePayloadGraphQl>;
78462
+ setProjectAccessRequestAllowed?: Maybe<JiraProjectAccessRequestMutationPayload>;
78240
78463
  setUserBroadcastMessageDismissed?: Maybe<JiraUserBroadcastMessageActionPayload>;
78241
78464
  sprintUpdate?: Maybe<JiraSprintMutationPayload>;
78242
78465
  submitBulkOperation?: Maybe<JiraSubmitBulkOperationPayload>;
@@ -78767,6 +78990,9 @@ export declare type JiraMutationSetPlanMultiScenarioEnabledArgs = {
78767
78990
  export declare type JiraMutationSetPlanReleaseEnabledArgs = {
78768
78991
  input?: InputMaybe<JiraPlanReleaseFeatureMutationInput>;
78769
78992
  };
78993
+ export declare type JiraMutationSetProjectAccessRequestAllowedArgs = {
78994
+ input: JiraSetProjectAccessRequestAllowedPropertyInput;
78995
+ };
78770
78996
  export declare type JiraMutationSetUserBroadcastMessageDismissedArgs = {
78771
78997
  cloudId: Scalars['ID']['input'];
78772
78998
  id: Scalars['ID']['input'];
@@ -79222,6 +79448,7 @@ export declare enum JiraNotificationCategoryType {
79222
79448
  IssueMiscellaneous = "ISSUE_MISCELLANEOUS",
79223
79449
  IssueWorklogChanges = "ISSUE_WORKLOG_CHANGES",
79224
79450
  Recurring = "RECURRING",
79451
+ SpaceAccessRequest = "SPACE_ACCESS_REQUEST",
79225
79452
  UserJoin = "USER_JOIN"
79226
79453
  }
79227
79454
  export declare type JiraNotificationChannel = {
@@ -79285,6 +79512,7 @@ export declare type JiraNotificationPreferences = {
79285
79512
  mentionsCombined?: Maybe<JiraNotificationPreference>;
79286
79513
  miscellaneousIssueEventCombined?: Maybe<JiraNotificationPreference>;
79287
79514
  projectRecapNotification?: Maybe<JiraNotificationPreference>;
79515
+ spaceAccessRequestNotification?: Maybe<JiraNotificationPreference>;
79288
79516
  worklogCombined?: Maybe<JiraNotificationPreference>;
79289
79517
  };
79290
79518
  export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
@@ -79313,6 +79541,7 @@ export declare enum JiraNotificationType {
79313
79541
  MentionsCombined = "MENTIONS_COMBINED",
79314
79542
  MiscellaneousIssueEventCombined = "MISCELLANEOUS_ISSUE_EVENT_COMBINED",
79315
79543
  ProjectRecapNotification = "PROJECT_RECAP_NOTIFICATION",
79544
+ SpaceAccessRequestNotification = "SPACE_ACCESS_REQUEST_NOTIFICATION",
79316
79545
  WorklogCombined = "WORKLOG_COMBINED"
79317
79546
  }
79318
79547
  export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
@@ -80722,6 +80951,7 @@ export declare type JiraProject = Node & {
80722
80951
  id: Scalars['ID']['output'];
80723
80952
  intentTemplates?: Maybe<VirtualAgentIntentTemplatesConnection>;
80724
80953
  isAIEnabled?: Maybe<Scalars['Boolean']['output']>;
80954
+ isAccessRequestsEnabled?: Maybe<Scalars['Boolean']['output']>;
80725
80955
  isAiContextFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
80726
80956
  isAutomationDiscoverabilityEnabled?: Maybe<Scalars['Boolean']['output']>;
80727
80957
  isExplicitFieldAssociationsEnabled?: Maybe<Scalars['Boolean']['output']>;
@@ -85558,6 +85788,11 @@ export declare type JiraSetMostRecentlyViewedBoardPayload = Payload & {
85558
85788
  errors?: Maybe<Array<MutationError>>;
85559
85789
  success: Scalars['Boolean']['output'];
85560
85790
  };
85791
+ export declare type JiraSetProjectAccessRequestAllowedPropertyInput = {
85792
+ allowAccessRequests: Scalars['Boolean']['input'];
85793
+ cloudId: Scalars['ID']['input'];
85794
+ projectId: Scalars['ID']['input'];
85795
+ };
85561
85796
  export declare type JiraSetProjectSelectedDeploymentAppsPropertyInput = {
85562
85797
  deploymentApps?: InputMaybe<Array<JiraDeploymentAppInput>>;
85563
85798
  projectId: Scalars['ID']['input'];
@@ -90350,6 +90585,8 @@ export declare enum JsmConversationMessageSource {
90350
90585
  }
90351
90586
  export declare enum JsmConversationStatus {
90352
90587
  Closed = "CLOSED",
90588
+ InProgress = "IN_PROGRESS",
90589
+ Missed = "MISSED",
90353
90590
  Requested = "REQUESTED",
90354
90591
  Unassigned = "UNASSIGNED"
90355
90592
  }
@@ -99719,6 +99956,7 @@ export declare type Mutation = {
99719
99956
  assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
99720
99957
  assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
99721
99958
  assetsDM_configureDefaultDataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
99959
+ assetsDM_createCleansingReason?: Maybe<AssetsDmCreateCleansingReasonResponse>;
99722
99960
  assetsDM_createDataSourceType?: Maybe<AssetsDmCreateDataSourceTypeResponse>;
99723
99961
  assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
99724
99962
  assetsDM_createObjectsListExportRequest?: Maybe<AssetsDmObjectsListExportRequestCreateResponse>;
@@ -99900,6 +100138,7 @@ export declare type Mutation = {
99900
100138
  cpls_deleteContributorScopeAssociation?: Maybe<CplsDeleteContributorScopeAssociationPayload>;
99901
100139
  cpls_deleteContributorWorkAssociation?: Maybe<CplsDeleteContributorWorkAssociationPayload>;
99902
100140
  cpls_updateCustomContributionTarget?: Maybe<CplsUpdateCustomContributionTargetPayload>;
100141
+ cpls_updateFilters?: Maybe<CplsUpdateFiltersPayload>;
99903
100142
  createAdminAnnouncementBanner?: Maybe<ConfluenceAdminAnnouncementBannerPayload>;
99904
100143
  createApp?: Maybe<CreateAppResponse>;
99905
100144
  createAppContainer?: Maybe<CreateAppContainerPayload>;
@@ -100075,8 +100314,12 @@ export declare type Mutation = {
100075
100314
  goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
100076
100315
  goals_grantAccess?: Maybe<TownsquareGoalGrantAccessPayload>;
100077
100316
  goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
100317
+ goals_removeDropdownCustomFieldValue?: Maybe<TownsquareGoalsRemoveDropdownCustomFieldValuePayload>;
100078
100318
  goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
100079
100319
  goals_removeMetricTarget?: Maybe<TownsquareGoalsRemoveMetricTargetPayload>;
100320
+ goals_removeNumericCustomFieldValue?: Maybe<TownsquareGoalsRemoveNumericCustomFieldValuePayload>;
100321
+ goals_removeTextCustomFieldValue?: Maybe<TownsquareGoalsRemoveTextCustomFieldValuePayload>;
100322
+ goals_removeUserCustomFieldValue?: Maybe<TownsquareGoalsRemoveUserCustomFieldValuePayload>;
100080
100323
  goals_revokeAccess?: Maybe<TownsquareGoalRevokeAccessPayload>;
100081
100324
  goals_setRollupProgress?: Maybe<TownsquareGoalsSetRollupProgressPayload>;
100082
100325
  goals_setUserWatchingTeam?: Maybe<TownsquareGoalsSetUserWatchingTeamPayload>;
@@ -100296,10 +100539,14 @@ export declare type Mutation = {
100296
100539
  projects_editRisk?: Maybe<TownsquareProjectsEditRiskPayload>;
100297
100540
  projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
100298
100541
  projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
100542
+ projects_removeDropdownCustomFieldValue?: Maybe<TownsquareProjectsRemoveDropdownCustomFieldValuePayload>;
100299
100543
  projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
100300
100544
  projects_removeJiraWorkItemLink?: Maybe<TownsquareProjectsRemoveJiraWorkItemLinkPayload>;
100301
100545
  projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
100546
+ projects_removeNumericCustomFieldValue?: Maybe<TownsquareProjectsRemoveNumericCustomFieldValuePayload>;
100302
100547
  projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
100548
+ projects_removeTextCustomFieldValue?: Maybe<TownsquareProjectsRemoveTextCustomFieldValuePayload>;
100549
+ projects_removeUserCustomFieldValue?: Maybe<TownsquareProjectsRemoveUserCustomFieldValuePayload>;
100303
100550
  projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
100304
100551
  projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
100305
100552
  projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
@@ -100313,6 +100560,7 @@ export declare type Mutation = {
100313
100560
  radar_deleteConnector?: Maybe<RadarMutationResponse>;
100314
100561
  radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
100315
100562
  radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
100563
+ radar_deleteLaborCostEstimateData?: Maybe<RadarDeleteLaborCostEstimateDataResponse>;
100316
100564
  radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
100317
100565
  radar_deleteView?: Maybe<RadarView>;
100318
100566
  radar_updateConnector?: Maybe<RadarConnector>;
@@ -100789,6 +101037,11 @@ export declare type MutationAssetsDm_ConfigureDefaultDataSourceMappingArgs = {
100789
101037
  objectClassName: Scalars['String']['input'];
100790
101038
  workspaceId: Scalars['ID']['input'];
100791
101039
  };
101040
+ export declare type MutationAssetsDm_CreateCleansingReasonArgs = {
101041
+ cloudId: Scalars['ID']['input'];
101042
+ input: AssetsDmCreateCleansingReasonInput;
101043
+ workspaceId: Scalars['ID']['input'];
101044
+ };
100792
101045
  export declare type MutationAssetsDm_CreateDataSourceTypeArgs = {
100793
101046
  cloudId: Scalars['String']['input'];
100794
101047
  input: AssetsDmCreateDataSourceTypeInput;
@@ -101481,6 +101734,9 @@ export declare type MutationCpls_DeleteContributorWorkAssociationArgs = {
101481
101734
  export declare type MutationCpls_UpdateCustomContributionTargetArgs = {
101482
101735
  input: CplsUpdateCustomContributionTargetInput;
101483
101736
  };
101737
+ export declare type MutationCpls_UpdateFiltersArgs = {
101738
+ input: CplsUpdateFiltersInput;
101739
+ };
101484
101740
  export declare type MutationCreateAdminAnnouncementBannerArgs = {
101485
101741
  announcementBanner: ConfluenceCreateAdminAnnouncementBannerInput;
101486
101742
  };
@@ -102084,12 +102340,24 @@ export declare type MutationGoals_GrantAccessArgs = {
102084
102340
  export declare type MutationGoals_LinkWorkItemArgs = {
102085
102341
  input: TownsquareGoalsLinkWorkItemInput;
102086
102342
  };
102343
+ export declare type MutationGoals_RemoveDropdownCustomFieldValueArgs = {
102344
+ input: TownsquareGoalsRemoveDropdownCustomFieldValueInput;
102345
+ };
102087
102346
  export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
102088
102347
  input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
102089
102348
  };
102090
102349
  export declare type MutationGoals_RemoveMetricTargetArgs = {
102091
102350
  input: TownsquareGoalsRemoveMetricTargetInput;
102092
102351
  };
102352
+ export declare type MutationGoals_RemoveNumericCustomFieldValueArgs = {
102353
+ input: TownsquareGoalsRemoveNumericCustomFieldValueInput;
102354
+ };
102355
+ export declare type MutationGoals_RemoveTextCustomFieldValueArgs = {
102356
+ input: TownsquareGoalsRemoveTextCustomFieldValueInput;
102357
+ };
102358
+ export declare type MutationGoals_RemoveUserCustomFieldValueArgs = {
102359
+ input: TownsquareGoalsRemoveUserCustomFieldValueInput;
102360
+ };
102093
102361
  export declare type MutationGoals_RevokeAccessArgs = {
102094
102362
  input: TownsquareGoalRevokeAccessInput;
102095
102363
  };
@@ -102745,6 +103013,9 @@ export declare type MutationProjects_EditUpdateArgs = {
102745
103013
  export declare type MutationProjects_RemoveDependencyArgs = {
102746
103014
  input: TownsquareProjectsRemoveDependencyInput;
102747
103015
  };
103016
+ export declare type MutationProjects_RemoveDropdownCustomFieldValueArgs = {
103017
+ input: TownsquareProjectsRemoveDropdownCustomFieldValueInput;
103018
+ };
102748
103019
  export declare type MutationProjects_RemoveGoalLinkArgs = {
102749
103020
  input: TownsquareProjectsRemoveGoalLinkInput;
102750
103021
  };
@@ -102754,9 +103025,18 @@ export declare type MutationProjects_RemoveJiraWorkItemLinkArgs = {
102754
103025
  export declare type MutationProjects_RemoveMemberArgs = {
102755
103026
  input: TownsquareProjectsRemoveMemberInput;
102756
103027
  };
103028
+ export declare type MutationProjects_RemoveNumericCustomFieldValueArgs = {
103029
+ input: TownsquareProjectsRemoveNumericCustomFieldValueInput;
103030
+ };
102757
103031
  export declare type MutationProjects_RemoveTeamContributorsArgs = {
102758
103032
  input: TownsquareProjectsRemoveTeamContributorsInput;
102759
103033
  };
103034
+ export declare type MutationProjects_RemoveTextCustomFieldValueArgs = {
103035
+ input: TownsquareProjectsRemoveTextCustomFieldValueInput;
103036
+ };
103037
+ export declare type MutationProjects_RemoveUserCustomFieldValueArgs = {
103038
+ input: TownsquareProjectsRemoveUserCustomFieldValueInput;
103039
+ };
102760
103040
  export declare type MutationProjects_SetDependencyArgs = {
102761
103041
  input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
102762
103042
  };
@@ -102804,6 +103084,10 @@ export declare type MutationRadar_DeleteFocusAreaProposalChangesArgs = {
102804
103084
  cloudId: Scalars['ID']['input'];
102805
103085
  input: Array<RadarDeleteFocusAreaProposalChangesInput>;
102806
103086
  };
103087
+ export declare type MutationRadar_DeleteLaborCostEstimateDataArgs = {
103088
+ cloudId: Scalars['ID']['input'];
103089
+ input: RadarDeleteLaborCostEstimateDataInput;
103090
+ };
102807
103091
  export declare type MutationRadar_DeleteRoleAssignmentArgs = {
102808
103092
  cloudId: Scalars['ID']['input'];
102809
103093
  input: RadarRoleAssignmentRequest;
@@ -106484,6 +106768,7 @@ export declare type Query = {
106484
106768
  avp_getDashboardTemplates?: Maybe<Array<AvpDashboardTemplate>>;
106485
106769
  bitbucket?: Maybe<BitbucketQuery>;
106486
106770
  bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
106771
+ blockService_health?: Maybe<Scalars['String']['output']>;
106487
106772
  blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
106488
106773
  boardScope?: Maybe<BoardScope>;
106489
106774
  buildsByApp?: Maybe<BuildConnection>;
@@ -106539,6 +106824,7 @@ export declare type Query = {
106539
106824
  collabToken?: Maybe<CollabTokenResponse>;
106540
106825
  collaboratorsLinkedToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
106541
106826
  comments?: Maybe<PaginatedCommentList>;
106827
+ commerceExp_ccp?: Maybe<CommerceExpCcpQuery>;
106542
106828
  compass?: Maybe<CompassCatalogQueryApi>;
106543
106829
  confluence?: Maybe<ConfluenceQueryApi>;
106544
106830
  confluenceUsers?: Maybe<PaginatedPersonList>;
@@ -106690,7 +106976,7 @@ export declare type Query = {
106690
106976
  cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
106691
106977
  cpls_customContributionTargets?: Maybe<CplsCustomContributionTargetConnection>;
106692
106978
  cpls_customContributionTargetsByIds?: Maybe<Array<Maybe<CplsCustomContributionTarget>>>;
106693
- cpls_filters?: Maybe<CplsFilters>;
106979
+ cpls_filters?: Maybe<CplsFilterConfigurationType>;
106694
106980
  cpls_peopleView?: Maybe<CplsPeopleView>;
106695
106981
  cqlMetaData?: Maybe<Confluence_CqlMetaData>;
106696
106982
  crossProjectIssueMentionsInComments?: Maybe<GraphStoreCypherQueryV2Connection>;
@@ -107168,6 +107454,10 @@ export declare type Query = {
107168
107454
  spf_asks?: Maybe<SpfAskConnection>;
107169
107455
  spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
107170
107456
  spf_getMediaToken?: Maybe<SpfMediaTokenResult>;
107457
+ spf_plan?: Maybe<SpfPlanResult>;
107458
+ spf_planScenariosByIds?: Maybe<Array<Maybe<SpfPlanScenario>>>;
107459
+ spf_plans?: Maybe<SpfPlanConnection>;
107460
+ spf_plansByIds?: Maybe<Array<Maybe<SpfPlan>>>;
107171
107461
  spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
107172
107462
  sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
107173
107463
  sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
@@ -108344,6 +108634,9 @@ export declare type QueryCommentsArgs = {
108344
108634
  singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
108345
108635
  type?: InputMaybe<Array<InputMaybe<CommentType>>>;
108346
108636
  };
108637
+ export declare type QueryCommerceExp_CcpArgs = {
108638
+ id?: InputMaybe<Scalars['ID']['input']>;
108639
+ };
108347
108640
  export declare type QueryConfluenceArgs = {
108348
108641
  cloudId?: InputMaybe<Scalars['ID']['input']>;
108349
108642
  };
@@ -109143,7 +109436,7 @@ export declare type QueryCpls_FiltersArgs = {
109143
109436
  scopeId: Scalars['ID']['input'];
109144
109437
  };
109145
109438
  export declare type QueryCpls_PeopleViewArgs = {
109146
- filters?: InputMaybe<CplsViewFiltersInput>;
109439
+ filters?: InputMaybe<CplsFiltersInput>;
109147
109440
  id: Scalars['ID']['input'];
109148
109441
  };
109149
109442
  export declare type QueryCrossProjectIssueMentionsInCommentsArgs = {
@@ -110903,6 +111196,21 @@ export declare type QuerySpf_GetMediaTokenArgs = {
110903
111196
  id: Scalars['ID']['input'];
110904
111197
  usageType: SpfMediaTokenUsageType;
110905
111198
  };
111199
+ export declare type QuerySpf_PlanArgs = {
111200
+ id: Scalars['ID']['input'];
111201
+ };
111202
+ export declare type QuerySpf_PlanScenariosByIdsArgs = {
111203
+ ids: Array<Scalars['ID']['input']>;
111204
+ };
111205
+ export declare type QuerySpf_PlansArgs = {
111206
+ after?: InputMaybe<Scalars['String']['input']>;
111207
+ cloudId: Scalars['ID']['input'];
111208
+ first?: InputMaybe<Scalars['Int']['input']>;
111209
+ q?: InputMaybe<Scalars['String']['input']>;
111210
+ };
111211
+ export declare type QuerySpf_PlansByIdsArgs = {
111212
+ ids: Array<Scalars['ID']['input']>;
111213
+ };
110906
111214
  export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
110907
111215
  cloudId: Scalars['ID']['input'];
110908
111216
  url: Scalars['String']['input'];
@@ -111534,6 +111842,15 @@ export declare type RadarDeleteFocusAreaProposalChangesInput = {
111534
111842
  changeAri: Scalars['ID']['input'];
111535
111843
  positionAri: Scalars['ID']['input'];
111536
111844
  };
111845
+ export declare type RadarDeleteLaborCostEstimateDataInput = {
111846
+ defaultAmount: Scalars['Boolean']['input'];
111847
+ importedData: Scalars['Boolean']['input'];
111848
+ };
111849
+ export declare type RadarDeleteLaborCostEstimateDataResponse = {
111850
+ __typename?: 'RadarDeleteLaborCostEstimateDataResponse';
111851
+ radarPositionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
111852
+ success: Scalars['Boolean']['output'];
111853
+ };
111537
111854
  export declare type RadarDynamicFilterOptions = RadarFilterOptions & {
111538
111855
  __typename?: 'RadarDynamicFilterOptions';
111539
111856
  functionOptions: Array<RadarFunction>;
@@ -113900,6 +114217,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
113900
114217
  latestUserAction?: Maybe<Scalars['String']['output']>;
113901
114218
  latestUserActionTs?: Maybe<Scalars['String']['output']>;
113902
114219
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114220
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
113903
114221
  pageEntity?: Maybe<ConfluencePage>;
113904
114222
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
113905
114223
  socialSignal?: Maybe<SocialSignalSearch>;
@@ -113943,6 +114261,7 @@ export declare type SearchConfluenceSpace = SearchL2FeatureProvider & SearchResu
113943
114261
  lastModified?: Maybe<Scalars['String']['output']>;
113944
114262
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
113945
114263
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114264
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
113946
114265
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
113947
114266
  socialSignal?: Maybe<SocialSignalSearch>;
113948
114267
  spaceEntity?: Maybe<ConfluenceSpace>;
@@ -113965,6 +114284,7 @@ export declare type SearchDefaultResult = SearchResult & {
113965
114284
  id: Scalars['ID']['output'];
113966
114285
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
113967
114286
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114287
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
113968
114288
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
113969
114289
  title: Scalars['String']['output'];
113970
114290
  type: SearchResultType;
@@ -114123,6 +114443,7 @@ export declare type SearchLinkedResult = SearchResult & {
114123
114443
  integrationId?: Maybe<Scalars['String']['output']>;
114124
114444
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114125
114445
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114446
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114126
114447
  providerId?: Maybe<Scalars['String']['output']>;
114127
114448
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114128
114449
  subtype?: Maybe<Scalars['String']['output']>;
@@ -114224,6 +114545,7 @@ export declare type SearchResult = {
114224
114545
  iconUrl?: Maybe<Scalars['String']['output']>;
114225
114546
  id: Scalars['ID']['output'];
114226
114547
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114548
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114227
114549
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114228
114550
  title: Scalars['String']['output'];
114229
114551
  type: SearchResultType;
@@ -114236,6 +114558,7 @@ export declare type SearchResultAssetsObject = SearchResult & {
114236
114558
  id: Scalars['ID']['output'];
114237
114559
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114238
114560
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114561
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114239
114562
  objectEntity?: Maybe<AssetsObject>;
114240
114563
  objectSchemaEntity?: Maybe<AssetsSchema>;
114241
114564
  objectTypeEntity?: Maybe<AssetsObjectType>;
@@ -114253,6 +114576,7 @@ export declare type SearchResultAssetsObjectSchema = SearchResult & {
114253
114576
  id: Scalars['ID']['output'];
114254
114577
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114255
114578
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114579
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114256
114580
  objectSchemaEntity?: Maybe<AssetsSchema>;
114257
114581
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114258
114582
  title: Scalars['String']['output'];
@@ -114266,6 +114590,7 @@ export declare type SearchResultAssetsObjectType = SearchResult & {
114266
114590
  id: Scalars['ID']['output'];
114267
114591
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114268
114592
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114593
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114269
114594
  objectSchemaEntity?: Maybe<AssetsSchema>;
114270
114595
  objectTypeEntity?: Maybe<AssetsObjectType>;
114271
114596
  schemaAri: Scalars['ID']['output'];
@@ -114282,6 +114607,7 @@ export declare type SearchResultAtlasGoal = SearchResult & {
114282
114607
  id: Scalars['ID']['output'];
114283
114608
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114284
114609
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114610
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114285
114611
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114286
114612
  title: Scalars['String']['output'];
114287
114613
  type: SearchResultType;
@@ -114294,6 +114620,7 @@ export declare type SearchResultAtlasGoalUpdate = SearchResult & {
114294
114620
  id: Scalars['ID']['output'];
114295
114621
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114296
114622
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114623
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114297
114624
  score?: Maybe<Scalars['Float']['output']>;
114298
114625
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114299
114626
  title: Scalars['String']['output'];
@@ -114307,6 +114634,7 @@ export declare type SearchResultAtlasProject = SearchResult & {
114307
114634
  id: Scalars['ID']['output'];
114308
114635
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114309
114636
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114637
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114310
114638
  project?: Maybe<TownsquareProject>;
114311
114639
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114312
114640
  title: Scalars['String']['output'];
@@ -114320,6 +114648,7 @@ export declare type SearchResultAtlasProjectUpdate = SearchResult & {
114320
114648
  id: Scalars['ID']['output'];
114321
114649
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114322
114650
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114651
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114323
114652
  score?: Maybe<Scalars['Float']['output']>;
114324
114653
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114325
114654
  title: Scalars['String']['output'];
@@ -114351,6 +114680,7 @@ export declare type SearchResultBitbucketRepository = SearchResult & {
114351
114680
  id: Scalars['ID']['output'];
114352
114681
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114353
114682
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114683
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114354
114684
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114355
114685
  title: Scalars['String']['output'];
114356
114686
  type: SearchResultType;
@@ -114365,6 +114695,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
114365
114695
  id: Scalars['ID']['output'];
114366
114696
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114367
114697
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114698
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114368
114699
  ownerId?: Maybe<Scalars['String']['output']>;
114369
114700
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114370
114701
  state: Scalars['String']['output'];
@@ -114383,6 +114714,7 @@ export declare type SearchResultFederated = SearchResult & {
114383
114714
  id: Scalars['ID']['output'];
114384
114715
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114385
114716
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114717
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114386
114718
  score?: Maybe<Scalars['Float']['output']>;
114387
114719
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114388
114720
  title: Scalars['String']['output'];
@@ -114400,6 +114732,7 @@ export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & Searc
114400
114732
  l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
114401
114733
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114402
114734
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114735
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114403
114736
  permissionLevel?: Maybe<Scalars['String']['output']>;
114404
114737
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114405
114738
  title: Scalars['String']['output'];
@@ -114417,6 +114750,7 @@ export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & S
114417
114750
  l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
114418
114751
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114419
114752
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114753
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114420
114754
  permissionLevel?: Maybe<Scalars['String']['output']>;
114421
114755
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114422
114756
  title: Scalars['String']['output'];
@@ -114434,6 +114768,7 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
114434
114768
  l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
114435
114769
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114436
114770
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114771
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114437
114772
  permissionLevel?: Maybe<Scalars['String']['output']>;
114438
114773
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114439
114774
  title: Scalars['String']['output'];
@@ -114457,6 +114792,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
114457
114792
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114458
114793
  linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
114459
114794
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114795
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114460
114796
  owner?: Maybe<ThirdPartyUser>;
114461
114797
  permissionLevel?: Maybe<Scalars['String']['output']>;
114462
114798
  providerId?: Maybe<Scalars['String']['output']>;
@@ -114483,6 +114819,7 @@ export declare type SearchResultJiraBoard = SearchResult & {
114483
114819
  isSimpleBoard: Scalars['Boolean']['output'];
114484
114820
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114485
114821
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114822
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114486
114823
  product: SearchBoardProductType;
114487
114824
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114488
114825
  socialSignal?: Maybe<SocialSignalSearch>;
@@ -114514,6 +114851,7 @@ export declare type SearchResultJiraDashboard = SearchResult & {
114514
114851
  id: Scalars['ID']['output'];
114515
114852
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114516
114853
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114854
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114517
114855
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114518
114856
  socialSignal?: Maybe<SocialSignalSearch>;
114519
114857
  title: Scalars['String']['output'];
@@ -114531,6 +114869,7 @@ export declare type SearchResultJiraFilter = SearchResult & {
114531
114869
  id: Scalars['ID']['output'];
114532
114870
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114533
114871
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114872
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114534
114873
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114535
114874
  socialSignal?: Maybe<SocialSignalSearch>;
114536
114875
  title: Scalars['String']['output'];
@@ -114549,6 +114888,7 @@ export declare type SearchResultJiraIssue = SearchResult & {
114549
114888
  issueTypeId: Scalars['String']['output'];
114550
114889
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114551
114890
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114891
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114552
114892
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114553
114893
  socialSignal?: Maybe<SocialSignalSearch>;
114554
114894
  status?: Maybe<SearchResultJiraIssueStatus>;
@@ -114580,6 +114920,7 @@ export declare type SearchResultJiraPlan = SearchResult & {
114580
114920
  id: Scalars['ID']['output'];
114581
114921
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114582
114922
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114923
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114583
114924
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114584
114925
  title: Scalars['String']['output'];
114585
114926
  type: SearchResultType;
@@ -114594,6 +114935,7 @@ export declare type SearchResultJiraProject = SearchResult & {
114594
114935
  id: Scalars['ID']['output'];
114595
114936
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114596
114937
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114938
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114597
114939
  project?: Maybe<JiraProject>;
114598
114940
  projectId: Scalars['String']['output'];
114599
114941
  projectKey: Scalars['String']['output'];
@@ -114617,6 +114959,7 @@ export declare type SearchResultMercuryFocusArea = SearchResult & {
114617
114959
  id: Scalars['ID']['output'];
114618
114960
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114619
114961
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114962
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114620
114963
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114621
114964
  title: Scalars['String']['output'];
114622
114965
  type: SearchResultType;
@@ -114630,6 +114973,7 @@ export declare type SearchResultMercuryFocusAreaStatusUpdate = SearchResult & {
114630
114973
  id: Scalars['ID']['output'];
114631
114974
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114632
114975
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114976
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114633
114977
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114634
114978
  title: Scalars['String']['output'];
114635
114979
  type: SearchResultType;
@@ -114646,6 +114990,7 @@ export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & Se
114646
114990
  l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
114647
114991
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114648
114992
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114993
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114649
114994
  permissionLevel?: Maybe<Scalars['String']['output']>;
114650
114995
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114651
114996
  title: Scalars['String']['output'];
@@ -114665,6 +115010,7 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
114665
115010
  linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
114666
115011
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
114667
115012
  mentions?: Maybe<Array<ThirdPartyUser>>;
115013
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114668
115014
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114669
115015
  subtype?: Maybe<Scalars['String']['output']>;
114670
115016
  title: Scalars['String']['output'];
@@ -114679,6 +115025,7 @@ export declare type SearchResultSpfAsk = SearchResult & {
114679
115025
  id: Scalars['ID']['output'];
114680
115026
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114681
115027
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
115028
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114682
115029
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114683
115030
  title: Scalars['String']['output'];
114684
115031
  type: SearchResultType;
@@ -114691,6 +115038,7 @@ export declare type SearchResultTalentPosition = SearchResult & {
114691
115038
  id: Scalars['ID']['output'];
114692
115039
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114693
115040
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
115041
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114694
115042
  position?: Maybe<RadarPosition>;
114695
115043
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114696
115044
  title: Scalars['String']['output'];
@@ -114704,6 +115052,7 @@ export declare type SearchResultTrelloBoard = SearchResult & {
114704
115052
  id: Scalars['ID']['output'];
114705
115053
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114706
115054
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
115055
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114707
115056
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114708
115057
  title: Scalars['String']['output'];
114709
115058
  type: SearchResultType;
@@ -114718,6 +115067,7 @@ export declare type SearchResultTrelloCard = SearchResult & {
114718
115067
  id: Scalars['ID']['output'];
114719
115068
  lastModifiedDate?: Maybe<Scalars['String']['output']>;
114720
115069
  linkedResults?: Maybe<Array<SearchLinkedResult>>;
115070
+ navBoostScore?: Maybe<Scalars['Float']['output']>;
114721
115071
  scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
114722
115072
  title: Scalars['String']['output'];
114723
115073
  type: SearchResultType;
@@ -132532,6 +132882,7 @@ export declare type ShepherdAlertQueries = {
132532
132882
  alertSnippets?: Maybe<ShepherdAlertSnippetResult>;
132533
132883
  authorizedActions?: Maybe<ShepherdAlertAuthorizedActionsResult>;
132534
132884
  byAri?: Maybe<ShepherdAlertResult>;
132885
+ byTypeAndStatus?: Maybe<ShepherdAlertsResult>;
132535
132886
  byWorkspace?: Maybe<ShepherdAlertsResult>;
132536
132887
  };
132537
132888
  export declare type ShepherdAlertQueriesAlertExportsArgs = {
@@ -132547,6 +132898,13 @@ export declare type ShepherdAlertQueriesAuthorizedActionsArgs = {
132547
132898
  export declare type ShepherdAlertQueriesByAriArgs = {
132548
132899
  id: Scalars['ID']['input'];
132549
132900
  };
132901
+ export declare type ShepherdAlertQueriesByTypeAndStatusArgs = {
132902
+ after?: InputMaybe<Scalars['String']['input']>;
132903
+ alertStatuses: Array<Scalars['String']['input']>;
132904
+ alertType: Scalars['String']['input'];
132905
+ first?: InputMaybe<Scalars['Int']['input']>;
132906
+ workspaceId: Scalars['ID']['input'];
132907
+ };
132550
132908
  export declare type ShepherdAlertQueriesByWorkspaceArgs = {
132551
132909
  aaid?: InputMaybe<Scalars['ID']['input']>;
132552
132910
  after?: InputMaybe<Scalars['String']['input']>;
@@ -132780,6 +133138,42 @@ export declare type ShepherdBitbucketWorkspaceInfo = {
132780
133138
  name: Scalars['String']['output'];
132781
133139
  url: Scalars['URL']['output'];
132782
133140
  };
133141
+ export declare type ShepherdBulkRedactionInput = {
133142
+ redactions: Array<ShepherdBulkRedactionItemInput>;
133143
+ workspaceId: Scalars['ID']['input'];
133144
+ };
133145
+ export declare type ShepherdBulkRedactionItemInput = {
133146
+ contentHash?: InputMaybe<Scalars['String']['input']>;
133147
+ detection: Scalars['String']['input'];
133148
+ end: ShepherdContentLocationInput;
133149
+ fieldId: Scalars['String']['input'];
133150
+ id?: InputMaybe<Scalars['ID']['input']>;
133151
+ resourceAri: Scalars['ID']['input'];
133152
+ start: ShepherdContentLocationInput;
133153
+ timestamp?: InputMaybe<Scalars['DateTime']['input']>;
133154
+ };
133155
+ export declare enum ShepherdBulkRedactionItemStatus {
133156
+ Failed = "FAILED",
133157
+ Pending = "PENDING",
133158
+ Succeeded = "SUCCEEDED"
133159
+ }
133160
+ export declare type ShepherdBulkRedactionItemStatusPayload = {
133161
+ __typename?: 'ShepherdBulkRedactionItemStatusPayload';
133162
+ errors?: Maybe<Array<Scalars['String']['output']>>;
133163
+ id: Scalars['ID']['output'];
133164
+ status?: Maybe<ShepherdBulkRedactionItemStatus>;
133165
+ };
133166
+ export declare type ShepherdBulkRedactionPayload = {
133167
+ __typename?: 'ShepherdBulkRedactionPayload';
133168
+ errors?: Maybe<Array<MutationError>>;
133169
+ jobId?: Maybe<Scalars['ID']['output']>;
133170
+ redactionIds: Array<Scalars['ID']['output']>;
133171
+ success: Scalars['Boolean']['output'];
133172
+ };
133173
+ export declare type ShepherdBulkRedactionStatusPayload = {
133174
+ __typename?: 'ShepherdBulkRedactionStatusPayload';
133175
+ redactionStatuses: Array<ShepherdBulkRedactionItemStatusPayload>;
133176
+ };
132783
133177
  export declare type ShepherdCategorizedAlertMetadata = {
132784
133178
  __typename?: 'ShepherdCategorizedAlertMetadata';
132785
133179
  category: Scalars['String']['output'];
@@ -132828,6 +133222,10 @@ export declare type ShepherdClassificationsQueriesByResourceArgs = {
132828
133222
  workspaceId: Scalars['ID']['input'];
132829
133223
  };
132830
133224
  export declare type ShepherdClassificationsResult = QueryError | ShepherdClassificationsConnection;
133225
+ export declare type ShepherdContentLocationInput = {
133226
+ index: Scalars['Int']['input'];
133227
+ pointer: Scalars['String']['input'];
133228
+ };
132831
133229
  export declare type ShepherdCreateAlertInput = {
132832
133230
  actor?: InputMaybe<ShepherdActorInput>;
132833
133231
  assignee?: InputMaybe<Scalars['ID']['input']>;
@@ -133231,6 +133629,7 @@ export declare type ShepherdQuery = {
133231
133629
  classifications?: Maybe<ShepherdClassificationsQueries>;
133232
133630
  enabledWorkspaceByUserContext?: Maybe<ShepherdEnabledWorkspaceByUserContext>;
133233
133631
  exclusions?: Maybe<ShepherdExclusionsQueries>;
133632
+ redaction?: Maybe<ShepherdRedactionQueries>;
133234
133633
  serviceShardAppInfo?: Maybe<ShepherdServiceShardAppInfoResult>;
133235
133634
  shepherdActivity?: Maybe<ShepherdActivityResult>;
133236
133635
  shepherdActor?: Maybe<ShepherdActorResult>;
@@ -133325,9 +133724,13 @@ export declare type ShepherdRedactionInput = {
133325
133724
  };
133326
133725
  export declare type ShepherdRedactionMutations = {
133327
133726
  __typename?: 'ShepherdRedactionMutations';
133727
+ bulkRedact?: Maybe<ShepherdBulkRedactionPayload>;
133328
133728
  redact?: Maybe<ShepherdRedactionPayload>;
133329
133729
  restore?: Maybe<ShepherdRestoreRedactionPayload>;
133330
133730
  };
133731
+ export declare type ShepherdRedactionMutationsBulkRedactArgs = {
133732
+ input: ShepherdBulkRedactionInput;
133733
+ };
133331
133734
  export declare type ShepherdRedactionMutationsRedactArgs = {
133332
133735
  input: ShepherdRedactionInput;
133333
133736
  };
@@ -133341,6 +133744,14 @@ export declare type ShepherdRedactionPayload = Payload & {
133341
133744
  node?: Maybe<ShepherdRedaction>;
133342
133745
  success: Scalars['Boolean']['output'];
133343
133746
  };
133747
+ export declare type ShepherdRedactionQueries = {
133748
+ __typename?: 'ShepherdRedactionQueries';
133749
+ checkBulkRedactionStatus?: Maybe<ShepherdBulkRedactionStatusPayload>;
133750
+ };
133751
+ export declare type ShepherdRedactionQueriesCheckBulkRedactionStatusArgs = {
133752
+ jobId: Scalars['ID']['input'];
133753
+ workspaceId: Scalars['ID']['input'];
133754
+ };
133344
133755
  export declare enum ShepherdRedactionStatus {
133345
133756
  Failed = "FAILED",
133346
133757
  PartiallyRedacted = "PARTIALLY_REDACTED",
@@ -135295,6 +135706,82 @@ export declare enum SpfMediaTokenUsageType {
135295
135706
  Read = "READ",
135296
135707
  Write = "WRITE"
135297
135708
  }
135709
+ export declare type SpfPlan = Node & {
135710
+ __typename?: 'SpfPlan';
135711
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
135712
+ createdBy?: Maybe<User>;
135713
+ createdByUserId?: Maybe<Scalars['String']['output']>;
135714
+ description?: Maybe<Scalars['String']['output']>;
135715
+ id: Scalars['ID']['output'];
135716
+ name: Scalars['String']['output'];
135717
+ portfolio?: Maybe<MercuryFocusArea>;
135718
+ portfolioId: Scalars['String']['output'];
135719
+ scenarios?: Maybe<SpfPlanScenarioConnection>;
135720
+ status: SpfPlanStatus;
135721
+ timeframe: SpfPlanTimeframe;
135722
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
135723
+ updatedBy?: Maybe<User>;
135724
+ updatedByUserId?: Maybe<Scalars['String']['output']>;
135725
+ };
135726
+ export declare type SpfPlanScenariosArgs = {
135727
+ after?: InputMaybe<Scalars['String']['input']>;
135728
+ first?: InputMaybe<Scalars['Int']['input']>;
135729
+ q?: InputMaybe<Scalars['String']['input']>;
135730
+ };
135731
+ export declare type SpfPlanConnection = {
135732
+ __typename?: 'SpfPlanConnection';
135733
+ edges?: Maybe<Array<Maybe<SpfPlanEdge>>>;
135734
+ pageInfo: PageInfo;
135735
+ totalCount?: Maybe<Scalars['Int']['output']>;
135736
+ };
135737
+ export declare type SpfPlanEdge = {
135738
+ __typename?: 'SpfPlanEdge';
135739
+ cursor: Scalars['String']['output'];
135740
+ node?: Maybe<SpfPlanResult>;
135741
+ };
135742
+ export declare type SpfPlanResult = QueryError | SpfPlan;
135743
+ export declare type SpfPlanScenario = Node & {
135744
+ __typename?: 'SpfPlanScenario';
135745
+ createdAt?: Maybe<Scalars['DateTime']['output']>;
135746
+ createdBy?: Maybe<User>;
135747
+ createdByUserId?: Maybe<Scalars['String']['output']>;
135748
+ id: Scalars['ID']['output'];
135749
+ name: Scalars['String']['output'];
135750
+ planId: Scalars['String']['output'];
135751
+ status: SpfPlanScenarioStatus;
135752
+ updatedAt?: Maybe<Scalars['DateTime']['output']>;
135753
+ updatedBy?: Maybe<User>;
135754
+ updatedByUserId?: Maybe<Scalars['String']['output']>;
135755
+ };
135756
+ export declare type SpfPlanScenarioConnection = {
135757
+ __typename?: 'SpfPlanScenarioConnection';
135758
+ edges?: Maybe<Array<Maybe<SpfPlanScenarioEdge>>>;
135759
+ pageInfo: PageInfo;
135760
+ totalCount?: Maybe<Scalars['Int']['output']>;
135761
+ };
135762
+ export declare type SpfPlanScenarioEdge = {
135763
+ __typename?: 'SpfPlanScenarioEdge';
135764
+ cursor: Scalars['String']['output'];
135765
+ node?: Maybe<SpfPlanScenarioResult>;
135766
+ };
135767
+ export declare type SpfPlanScenarioResult = QueryError | SpfPlanScenario;
135768
+ export declare enum SpfPlanScenarioStatus {
135769
+ Draft = "DRAFT"
135770
+ }
135771
+ export declare enum SpfPlanStatus {
135772
+ Draft = "DRAFT"
135773
+ }
135774
+ export declare type SpfPlanTimeframe = {
135775
+ __typename?: 'SpfPlanTimeframe';
135776
+ endDate: Scalars['String']['output'];
135777
+ startDate: Scalars['String']['output'];
135778
+ timeframeGranularity: SpfPlanTimeframeGranularity;
135779
+ };
135780
+ export declare enum SpfPlanTimeframeGranularity {
135781
+ Month = "MONTH",
135782
+ Quarter = "QUARTER",
135783
+ Week = "WEEK"
135784
+ }
135298
135785
  export declare type SpfResolveImpactedWorkUrlPayload = {
135299
135786
  __typename?: 'SpfResolveImpactedWorkUrlPayload';
135300
135787
  impactedWorkId?: Maybe<Scalars['String']['output']>;
@@ -136086,7 +136573,9 @@ export declare type StakeholderCommsOpsgenieRiskAssessmentResult = {
136086
136573
  export declare type StakeholderCommsOpsgenieRiskCategory = {
136087
136574
  __typename?: 'StakeholderCommsOpsgenieRiskCategory';
136088
136575
  count: Scalars['Int']['output'];
136576
+ description: Scalars['String']['output'];
136089
136577
  items: Array<StakeholderCommsOpsgenieRiskItem>;
136578
+ severity: StakeholderCommsOpsgenieRiskScore;
136090
136579
  type: StakeholderCommsOpsgenieRiskCategoryType;
136091
136580
  };
136092
136581
  export declare enum StakeholderCommsOpsgenieRiskCategoryType {
@@ -136773,6 +137262,7 @@ export declare type Subscription = {
136773
137262
  __typename?: 'Subscription';
136774
137263
  aqua?: Maybe<AquaLiveChatSubscription>;
136775
137264
  bitbucket?: Maybe<BitbucketSubscription>;
137265
+ blockService_onBlockUpdated: BlockServiceEvent;
136776
137266
  confluence_onContentModified?: Maybe<ConfluenceContentModified>;
136777
137267
  convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
136778
137268
  devOps?: Maybe<AriGraphSubscriptions>;
@@ -136801,6 +137291,9 @@ export declare type Subscription = {
136801
137291
  testing?: Maybe<TestingSubscription>;
136802
137292
  trello: TrelloSubscriptionApi;
136803
137293
  };
137294
+ export declare type SubscriptionBlockService_OnBlockUpdatedArgs = {
137295
+ resourceId: Scalars['ID']['input'];
137296
+ };
136804
137297
  export declare type SubscriptionConfluence_OnContentModifiedArgs = {
136805
137298
  id: Scalars['ID']['input'];
136806
137299
  };
@@ -138601,6 +139094,24 @@ export declare type TownsquareCustomFieldNode = {
138601
139094
  lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
138602
139095
  uuid?: Maybe<Scalars['UUID']['output']>;
138603
139096
  };
139097
+ export declare type TownsquareCustomFieldNumberSavedValueConnection = {
139098
+ __typename?: 'TownsquareCustomFieldNumberSavedValueConnection';
139099
+ edges?: Maybe<Array<Maybe<TownsquareCustomFieldNumberSavedValueEdge>>>;
139100
+ pageInfo: PageInfo;
139101
+ };
139102
+ export declare type TownsquareCustomFieldNumberSavedValueEdge = {
139103
+ __typename?: 'TownsquareCustomFieldNumberSavedValueEdge';
139104
+ cursor: Scalars['String']['output'];
139105
+ node?: Maybe<TownsquareCustomFieldNumberSavedValueNode>;
139106
+ };
139107
+ export declare type TownsquareCustomFieldNumberSavedValueNode = Node & TownsquareCustomFieldSavedValueNode & {
139108
+ __typename?: 'TownsquareCustomFieldNumberSavedValueNode';
139109
+ id: Scalars['ID']['output'];
139110
+ value?: Maybe<Scalars['Float']['output']>;
139111
+ };
139112
+ export declare type TownsquareCustomFieldSavedValueNode = {
139113
+ id: Scalars['ID']['output'];
139114
+ };
138604
139115
  export declare type TownsquareCustomFieldTextSavedValueConnection = {
138605
139116
  __typename?: 'TownsquareCustomFieldTextSavedValueConnection';
138606
139117
  edges?: Maybe<Array<Maybe<TownsquareCustomFieldTextSavedValueEdge>>>;
@@ -138611,7 +139122,7 @@ export declare type TownsquareCustomFieldTextSavedValueEdge = {
138611
139122
  cursor: Scalars['String']['output'];
138612
139123
  node?: Maybe<TownsquareCustomFieldTextSavedValueNode>;
138613
139124
  };
138614
- export declare type TownsquareCustomFieldTextSavedValueNode = Node & {
139125
+ export declare type TownsquareCustomFieldTextSavedValueNode = Node & TownsquareCustomFieldSavedValueNode & {
138615
139126
  __typename?: 'TownsquareCustomFieldTextSavedValueNode';
138616
139127
  id: Scalars['ID']['output'];
138617
139128
  value?: Maybe<Scalars['String']['output']>;
@@ -139442,6 +139953,17 @@ export declare type TownsquareGoalsLinkWorkItemPayload = {
139442
139953
  success: Scalars['Boolean']['output'];
139443
139954
  workItem?: Maybe<JiraIssue>;
139444
139955
  };
139956
+ export declare type TownsquareGoalsRemoveDropdownCustomFieldValueInput = {
139957
+ customFieldDefinitionId: Scalars['ID']['input'];
139958
+ goalId: Scalars['ID']['input'];
139959
+ valueId: Scalars['ID']['input'];
139960
+ };
139961
+ export declare type TownsquareGoalsRemoveDropdownCustomFieldValuePayload = {
139962
+ __typename?: 'TownsquareGoalsRemoveDropdownCustomFieldValuePayload';
139963
+ errors?: Maybe<Array<MutationError>>;
139964
+ success: Scalars['Boolean']['output'];
139965
+ valueId?: Maybe<Scalars['ID']['output']>;
139966
+ };
139445
139967
  export declare type TownsquareGoalsRemoveGoalTeamLinkInput = {
139446
139968
  goalId: Scalars['ID']['input'];
139447
139969
  teamId: Scalars['ID']['input'];
@@ -139464,6 +139986,39 @@ export declare type TownsquareGoalsRemoveMetricTargetPayload = {
139464
139986
  goal?: Maybe<TownsquareGoal>;
139465
139987
  success: Scalars['Boolean']['output'];
139466
139988
  };
139989
+ export declare type TownsquareGoalsRemoveNumericCustomFieldValueInput = {
139990
+ customFieldDefinitionId: Scalars['ID']['input'];
139991
+ goalId: Scalars['ID']['input'];
139992
+ valueId: Scalars['ID']['input'];
139993
+ };
139994
+ export declare type TownsquareGoalsRemoveNumericCustomFieldValuePayload = {
139995
+ __typename?: 'TownsquareGoalsRemoveNumericCustomFieldValuePayload';
139996
+ errors?: Maybe<Array<MutationError>>;
139997
+ success: Scalars['Boolean']['output'];
139998
+ valueId?: Maybe<Scalars['ID']['output']>;
139999
+ };
140000
+ export declare type TownsquareGoalsRemoveTextCustomFieldValueInput = {
140001
+ customFieldDefinitionId: Scalars['ID']['input'];
140002
+ goalId: Scalars['ID']['input'];
140003
+ valueId: Scalars['ID']['input'];
140004
+ };
140005
+ export declare type TownsquareGoalsRemoveTextCustomFieldValuePayload = {
140006
+ __typename?: 'TownsquareGoalsRemoveTextCustomFieldValuePayload';
140007
+ errors?: Maybe<Array<MutationError>>;
140008
+ success: Scalars['Boolean']['output'];
140009
+ valueId?: Maybe<Scalars['ID']['output']>;
140010
+ };
140011
+ export declare type TownsquareGoalsRemoveUserCustomFieldValueInput = {
140012
+ customFieldDefinitionId: Scalars['ID']['input'];
140013
+ goalId: Scalars['ID']['input'];
140014
+ userId: Scalars['ID']['input'];
140015
+ };
140016
+ export declare type TownsquareGoalsRemoveUserCustomFieldValuePayload = {
140017
+ __typename?: 'TownsquareGoalsRemoveUserCustomFieldValuePayload';
140018
+ errors?: Maybe<Array<MutationError>>;
140019
+ success: Scalars['Boolean']['output'];
140020
+ userId?: Maybe<Scalars['ID']['output']>;
140021
+ };
139467
140022
  export declare type TownsquareGoalsSetRollupProgressInput = {
139468
140023
  enableRollupProgress: Scalars['Boolean']['input'];
139469
140024
  goalId: Scalars['ID']['input'];
@@ -139800,6 +140355,7 @@ export declare type TownsquareNumberCustomField = TownsquareCustomFieldNode & {
139800
140355
  definition?: Maybe<TownsquareCustomFieldDefinition>;
139801
140356
  lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
139802
140357
  uuid?: Maybe<Scalars['UUID']['output']>;
140358
+ value?: Maybe<TownsquareCustomFieldNumberSavedValueNode>;
139803
140359
  };
139804
140360
  export declare type TownsquareNumberCustomFieldDefinition = Node & TownsquareCustomFieldDefinitionNode & {
139805
140361
  __typename?: 'TownsquareNumberCustomFieldDefinition';
@@ -140470,6 +141026,17 @@ export declare type TownsquareProjectsRemoveDependencyPayload = {
140470
141026
  outgoingProject?: Maybe<TownsquareProject>;
140471
141027
  success: Scalars['Boolean']['output'];
140472
141028
  };
141029
+ export declare type TownsquareProjectsRemoveDropdownCustomFieldValueInput = {
141030
+ customFieldDefinitionId: Scalars['ID']['input'];
141031
+ projectId: Scalars['ID']['input'];
141032
+ valueId: Scalars['ID']['input'];
141033
+ };
141034
+ export declare type TownsquareProjectsRemoveDropdownCustomFieldValuePayload = {
141035
+ __typename?: 'TownsquareProjectsRemoveDropdownCustomFieldValuePayload';
141036
+ errors?: Maybe<Array<MutationError>>;
141037
+ success: Scalars['Boolean']['output'];
141038
+ valueId?: Maybe<Scalars['ID']['output']>;
141039
+ };
140473
141040
  export declare type TownsquareProjectsRemoveGoalLinkInput = {
140474
141041
  goalId: Scalars['ID']['input'];
140475
141042
  projectId: Scalars['ID']['input'];
@@ -140502,6 +141069,17 @@ export declare type TownsquareProjectsRemoveMemberPayload = {
140502
141069
  success: Scalars['Boolean']['output'];
140503
141070
  userId?: Maybe<Scalars['ID']['output']>;
140504
141071
  };
141072
+ export declare type TownsquareProjectsRemoveNumericCustomFieldValueInput = {
141073
+ customFieldDefinitionId: Scalars['ID']['input'];
141074
+ projectId: Scalars['ID']['input'];
141075
+ valueId: Scalars['ID']['input'];
141076
+ };
141077
+ export declare type TownsquareProjectsRemoveNumericCustomFieldValuePayload = {
141078
+ __typename?: 'TownsquareProjectsRemoveNumericCustomFieldValuePayload';
141079
+ errors?: Maybe<Array<MutationError>>;
141080
+ success: Scalars['Boolean']['output'];
141081
+ valueId?: Maybe<Scalars['ID']['output']>;
141082
+ };
140505
141083
  export declare type TownsquareProjectsRemoveTeamContributorsInput = {
140506
141084
  projectId: Scalars['ID']['input'];
140507
141085
  teamId: Scalars['ID']['input'];
@@ -140513,6 +141091,28 @@ export declare type TownsquareProjectsRemoveTeamContributorsPayload = {
140513
141091
  success: Scalars['Boolean']['output'];
140514
141092
  team?: Maybe<TeamV2>;
140515
141093
  };
141094
+ export declare type TownsquareProjectsRemoveTextCustomFieldValueInput = {
141095
+ customFieldDefinitionId: Scalars['ID']['input'];
141096
+ projectId: Scalars['ID']['input'];
141097
+ valueId: Scalars['ID']['input'];
141098
+ };
141099
+ export declare type TownsquareProjectsRemoveTextCustomFieldValuePayload = {
141100
+ __typename?: 'TownsquareProjectsRemoveTextCustomFieldValuePayload';
141101
+ errors?: Maybe<Array<MutationError>>;
141102
+ success: Scalars['Boolean']['output'];
141103
+ valueId?: Maybe<Scalars['ID']['output']>;
141104
+ };
141105
+ export declare type TownsquareProjectsRemoveUserCustomFieldValueInput = {
141106
+ customFieldDefinitionId: Scalars['ID']['input'];
141107
+ projectId: Scalars['ID']['input'];
141108
+ userId: Scalars['ID']['input'];
141109
+ };
141110
+ export declare type TownsquareProjectsRemoveUserCustomFieldValuePayload = {
141111
+ __typename?: 'TownsquareProjectsRemoveUserCustomFieldValuePayload';
141112
+ errors?: Maybe<Array<MutationError>>;
141113
+ success: Scalars['Boolean']['output'];
141114
+ userId?: Maybe<Scalars['ID']['output']>;
141115
+ };
140516
141116
  export declare type TownsquareProjectsSetDependencyInput = {
140517
141117
  incomingProjectId: Scalars['ID']['input'];
140518
141118
  outgoingProjectId: Scalars['ID']['input'];
@@ -142560,6 +143160,7 @@ export declare type TrelloCreateApplicationPayload = Payload & {
142560
143160
  };
142561
143161
  export declare type TrelloCreateBoardWithAiInput = {
142562
143162
  userInput: TrelloAiBoardUserInput;
143163
+ workspaceId: Scalars['ID']['input'];
142563
143164
  };
142564
143165
  export declare type TrelloCreateBoardWithAiPayload = Payload & {
142565
143166
  __typename?: 'TrelloCreateBoardWithAiPayload';
@@ -143597,6 +144198,7 @@ export declare type TrelloMutationApi = {
143597
144198
  updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
143598
144199
  updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
143599
144200
  updatePrimaryPlannerAccount?: Maybe<TrelloUpdatePrimaryPlannerAccountPayload>;
144201
+ updateProactiveSmartScheduleStatus?: Maybe<TrelloUpdateProactiveSmartScheduleStatusPayload>;
143600
144202
  updateProposedEvent?: Maybe<TrelloUpdateProposedEventPayload>;
143601
144203
  updateWorkspaceTag?: Maybe<TrelloUpdateWorkspaceTagPayload>;
143602
144204
  watchCard?: Maybe<TrelloWatchCardPayload>;
@@ -143787,6 +144389,9 @@ export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
143787
144389
  export declare type TrelloMutationApiUpdatePrimaryPlannerAccountArgs = {
143788
144390
  input: TrelloUpdatePrimaryPlannerAccountInput;
143789
144391
  };
144392
+ export declare type TrelloMutationApiUpdateProactiveSmartScheduleStatusArgs = {
144393
+ input: TrelloUpdateProactiveSmartScheduleStatusInput;
144394
+ };
143790
144395
  export declare type TrelloMutationApiUpdateProposedEventArgs = {
143791
144396
  input: TrelloUpdateProposedEventInput;
143792
144397
  };
@@ -143805,7 +144410,6 @@ export declare type TrelloMutationErrorExtension = MutationErrorExtension & {
143805
144410
  };
143806
144411
  export declare type TrelloNewYearsResolutionAiBoardInput = {
143807
144412
  resolution: Scalars['String']['input'];
143808
- workspaceId: Scalars['ID']['input'];
143809
144413
  };
143810
144414
  export declare type TrelloNotification = TrelloQuickCaptureNotification;
143811
144415
  export declare type TrelloNotificationConnection = {
@@ -144324,8 +144928,8 @@ export declare type TrelloPowerUpUpdated = {
144324
144928
  objectId?: Maybe<Scalars['ID']['output']>;
144325
144929
  };
144326
144930
  export declare type TrelloProposePlannerEventsInput = {
144327
- cardIds: Array<Scalars['ID']['input']>;
144328
- timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
144931
+ cardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
144932
+ timezoneOffsetHours: Scalars['Float']['input'];
144329
144933
  };
144330
144934
  export declare type TrelloProposePlannerEventsPayload = Payload & {
144331
144935
  __typename?: 'TrelloProposePlannerEventsPayload';
@@ -144723,6 +145327,11 @@ export declare type TrelloSmartScheduleCardsWithSmartSelectionInput = {
144723
145327
  startDate?: InputMaybe<Scalars['DateTime']['input']>;
144724
145328
  timezoneOffsetHours?: InputMaybe<Scalars['Float']['input']>;
144725
145329
  };
145330
+ export declare enum TrelloSmartScheduleStatus {
145331
+ Active = "ACTIVE",
145332
+ Dormant = "DORMANT",
145333
+ Inactive = "INACTIVE"
145334
+ }
144726
145335
  export declare type TrelloSortInboxCardsInput = {
144727
145336
  sortBy: TrelloListCardSortBy;
144728
145337
  };
@@ -145197,6 +145806,15 @@ export declare type TrelloUpdatePrimaryPlannerAccountPayload = Payload & {
145197
145806
  planner?: Maybe<TrelloPlanner>;
145198
145807
  success: Scalars['Boolean']['output'];
145199
145808
  };
145809
+ export declare type TrelloUpdateProactiveSmartScheduleStatusInput = {
145810
+ status: TrelloSmartScheduleStatus;
145811
+ userId: Scalars['ID']['input'];
145812
+ };
145813
+ export declare type TrelloUpdateProactiveSmartScheduleStatusPayload = Payload & {
145814
+ __typename?: 'TrelloUpdateProactiveSmartScheduleStatusPayload';
145815
+ errors?: Maybe<Array<MutationError>>;
145816
+ success: Scalars['Boolean']['output'];
145817
+ };
145200
145818
  export declare type TrelloUpdateProposedEventInput = {
145201
145819
  endTime?: InputMaybe<Scalars['DateTime']['input']>;
145202
145820
  proposedEventId: Scalars['ID']['input'];